
    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_6c55a1d356223b4c9885286e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_27180f21b9bc9dcbdbcd26d7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_f60dd7d85df5d7f6c38bdaec.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_531694b6afea4a37b67f1401.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.906000;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_ea46c9e3e38d2d6a0d1cc190.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.714046;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_a83d4ee93e56d431a2eefbbf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666000;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_f06caac0606216bc315f7645.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.719000;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_2ca41ee8d1394c029fcc2566.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.906000;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_7733e5a149e259fb72a0a782.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.906000;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_bc9d5b44585a9f019d23542a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_16cc0f503e344a52d3ff2cf1.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_1a67aa109830ec0c5b53fc99.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b4a580cdfd2b89f252ce2208.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ff9a94e7180e6a78b519564d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_7733e5a149e259fb72a0a782.woff2')format("woff");}.fff{font-family:fff;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_8544035dfc43624c205aaefc.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_a9c2da9388e94619126de501.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_0f1075e4857bc41f021ac7ee.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_b4a580cdfd2b89f252ce2208.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_bc9d5b44585a9f019d23542a.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_c7038ba333275d1c0444c2e7.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_c2b218301ba9b69932d9e305.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_5dfddbb938f35aed7c9372b7.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_2bf586b1fffe21ea2486a3c4.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_f8fddcbefe11d772db117466.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_59489ef23306c8718f58b449.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_a1159605fd00cb1eb3cdf02d.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_7a2ef83dfd4a3fa502f180d6.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.719000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_1f7ff178d8446eef53c83800.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:2.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_07186d0b9679fab9c7879764.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_25f05b2bebde869fa40f4380.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_da678293ac126e7c5333775d.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_c76ae55f29de0efaeafd2422.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_a1f7b04d548099a63517ba12.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.989746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_048a4e5fb2c06f65c29f30d6.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_8fe5ef26ddd64af570cb051a.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.402354;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:ff25;src:url('chunks/assets/font_0f64a4907f11db27f4e1a7c3.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.861816;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:ff26;src:url('chunks/assets/font_c70f2693f905c2924181c74f.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.707031;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:ff27;src:url('chunks/assets/font_c2010610766968fcc2a3899a.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.002930;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:ff28;src:url('chunks/assets/font_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.910156;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:10.086000px;}
.v5{vertical-align:20.622000px;}
.v1{vertical-align:21.702000px;}
.v4{vertical-align:23.556000px;}
.va{vertical-align:30.240000px;}
.v3{vertical-align:35.862000px;}
.v7{vertical-align:40.470000px;}
.v8{vertical-align:57.744000px;}
.v6{vertical-align:98.112000px;}
.ls41{letter-spacing:-0.305400px;}
.ls53{letter-spacing:-0.303000px;}
.ls52{letter-spacing:-0.172200px;}
.ls4b{letter-spacing:-0.107400px;}
.ls51{letter-spacing:-0.058320px;}
.ls5{letter-spacing:0.000000px;}
.ls2f{letter-spacing:0.000017px;}
.ls31{letter-spacing:0.000925px;}
.ls9{letter-spacing:0.001161px;}
.ls15{letter-spacing:0.004200px;}
.ls43{letter-spacing:0.174000px;}
.ls50{letter-spacing:0.256200px;}
.ls42{letter-spacing:0.291000px;}
.ls4e{letter-spacing:0.390240px;}
.ls4a{letter-spacing:0.457800px;}
.ls55{letter-spacing:0.479520px;}
.ls54{letter-spacing:0.547800px;}
.ls4f{letter-spacing:0.660000px;}
.ls2d{letter-spacing:2.394925px;}
.ls8{letter-spacing:2.987100px;}
.ls13{letter-spacing:2.989200px;}
.ls10{letter-spacing:2.993100px;}
.ls1{letter-spacing:4.269444px;}
.ls2{letter-spacing:4.302262px;}
.ls0{letter-spacing:4.302508px;}
.ls4{letter-spacing:4.303369px;}
.ls3{letter-spacing:4.304831px;}
.lsf{letter-spacing:4.959254px;}
.lse{letter-spacing:4.965254px;}
.ls1a{letter-spacing:6.640200px;}
.ls26{letter-spacing:7.119269px;}
.ls2c{letter-spacing:7.172400px;}
.ls24{letter-spacing:7.290538px;}
.ls19{letter-spacing:7.320538px;}
.ls22{letter-spacing:8.250538px;}
.ls23{letter-spacing:8.256538px;}
.ls2b{letter-spacing:8.302200px;}
.ls27{letter-spacing:8.321100px;}
.ls18{letter-spacing:10.355100px;}
.ls2e{letter-spacing:11.291100px;}
.ls25{letter-spacing:12.177196px;}
.ls21{letter-spacing:13.236538px;}
.ls2a{letter-spacing:13.282200px;}
.ls14{letter-spacing:13.884538px;}
.ls35{letter-spacing:14.066100px;}
.ls16{letter-spacing:14.892538px;}
.ls17{letter-spacing:14.898538px;}
.ls29{letter-spacing:14.940017px;}
.ls1e{letter-spacing:14.942383px;}
.ls1b{letter-spacing:14.948383px;}
.ls3f{letter-spacing:16.956538px;}
.ls1f{letter-spacing:17.261100px;}
.ls20{letter-spacing:17.933100px;}
.ls11{letter-spacing:18.629100px;}
.ls12{letter-spacing:21.197100px;}
.ls46{letter-spacing:23.706720px;}
.ls28{letter-spacing:23.808925px;}
.ls48{letter-spacing:25.146720px;}
.ls40{letter-spacing:25.505280px;}
.ls45{letter-spacing:26.586720px;}
.ls44{letter-spacing:29.105280px;}
.ls47{letter-spacing:29.466720px;}
.lsb{letter-spacing:29.884200px;}
.ls6{letter-spacing:29.887800px;}
.lsd{letter-spacing:29.890200px;}
.ls1d{letter-spacing:29.954383px;}
.ls1c{letter-spacing:29.960383px;}
.ls49{letter-spacing:36.666720px;}
.ls4c{letter-spacing:38.465280px;}
.ls4d{letter-spacing:64.026720px;}
.ls56{letter-spacing:83.466720px;}
.ls33{letter-spacing:90.966538px;}
.ls34{letter-spacing:94.428538px;}
.ls32{letter-spacing:159.294538px;}
.ls37{letter-spacing:221.171675px;}
.ls3b{letter-spacing:224.490583px;}
.ls38{letter-spacing:227.838017px;}
.ls3e{letter-spacing:231.125675px;}
.ls36{letter-spacing:232.830017px;}
.ls39{letter-spacing:236.117675px;}
.ls3d{letter-spacing:239.430583px;}
.ls3a{letter-spacing:239.465108px;}
.ls3c{letter-spacing:246.100200px;}
.ls30{letter-spacing:941.350200px;}
.ls7{letter-spacing:2039.746200px;}
.lsc{letter-spacing:2091.034200px;}
.lsa{letter-spacing:2225.764200px;}
.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;}
}
.ws1a1{word-spacing:-59.760000px;}
.ws20{word-spacing:-37.180650px;}
.ws55{word-spacing:-35.267604px;}
.ws4e{word-spacing:-35.207828px;}
.ws3d{word-spacing:-34.490521px;}
.ws38{word-spacing:-33.175458px;}
.ws34{word-spacing:-31.740844px;}
.ws40{word-spacing:-31.501741px;}
.ws3f{word-spacing:-27.855430px;}
.ws36{word-spacing:-26.241488px;}
.ws3e{word-spacing:-24.866650px;}
.ws4d{word-spacing:-24.507996px;}
.ws3c{word-spacing:-23.252708px;}
.ws39{word-spacing:-22.953830px;}
.ws48{word-spacing:-22.834279px;}
.ws0{word-spacing:-21.519300px;}
.ws3b{word-spacing:-20.742133px;}
.ws54{word-spacing:-19.606397px;}
.ws42{word-spacing:-19.546621px;}
.ws3a{word-spacing:-17.813129px;}
.ws4{word-spacing:-17.215500px;}
.ws19d{word-spacing:-17.017800px;}
.ws19b{word-spacing:-16.254600px;}
.ws46{word-spacing:-15.481880px;}
.ws1a0{word-spacing:-15.226440px;}
.ws31{word-spacing:-14.943900px;}
.ws19f{word-spacing:-14.165760px;}
.ws19c{word-spacing:-13.505760px;}
.ws1a2{word-spacing:-13.447440px;}
.ws19e{word-spacing:-13.398360px;}
.ws1a4{word-spacing:-13.333560px;}
.ws1a5{word-spacing:-13.202760px;}
.wse4{word-spacing:-11.955150px;}
.ws33{word-spacing:-11.955120px;}
.ws15d{word-spacing:-11.058450px;}
.ws1a3{word-spacing:-8.786880px;}
.ws147{word-spacing:-6.645300px;}
.ws141{word-spacing:-6.644066px;}
.ws149{word-spacing:-6.643526px;}
.ws13f{word-spacing:-6.643500px;}
.ws13e{word-spacing:-6.642025px;}
.ws14a{word-spacing:-6.640834px;}
.ws143{word-spacing:-6.638633px;}
.ws140{word-spacing:-6.637500px;}
.ws142{word-spacing:-5.977560px;}
.ws9f{word-spacing:-3.586536px;}
.wse7{word-spacing:-3.526760px;}
.ws11b{word-spacing:-3.466985px;}
.ws12e{word-spacing:-3.407209px;}
.wse3{word-spacing:-3.287658px;}
.wsdf{word-spacing:-3.227882px;}
.wsbd{word-spacing:-3.168107px;}
.ws135{word-spacing:-3.108331px;}
.ws148{word-spacing:-3.058267px;}
.wse1{word-spacing:-3.048556px;}
.ws37{word-spacing:-2.988780px;}
.ws188{word-spacing:-2.929004px;}
.wse8{word-spacing:-2.869229px;}
.ws7b{word-spacing:-2.809453px;}
.ws5e{word-spacing:-2.749678px;}
.wsa3{word-spacing:-2.689902px;}
.ws145{word-spacing:-2.570351px;}
.ws4c{word-spacing:-2.510575px;}
.ws5f{word-spacing:-2.450800px;}
.ws94{word-spacing:-2.391024px;}
.wsd8{word-spacing:-2.331248px;}
.wscc{word-spacing:-2.271473px;}
.ws132{word-spacing:-2.255100px;}
.ws131{word-spacing:-2.252958px;}
.ws99{word-spacing:-2.211697px;}
.ws83{word-spacing:-2.151922px;}
.ws134{word-spacing:-2.092146px;}
.ws8b{word-spacing:-2.032370px;}
.ws7e{word-spacing:-1.972595px;}
.ws69{word-spacing:-1.912819px;}
.wsd9{word-spacing:-1.853044px;}
.ws98{word-spacing:-1.793268px;}
.ws17a{word-spacing:-1.769774px;}
.ws6f{word-spacing:-1.733492px;}
.ws6a{word-spacing:-1.673717px;}
.ws13d{word-spacing:-1.662991px;}
.ws14c{word-spacing:-1.661825px;}
.ws76{word-spacing:-1.613941px;}
.ws59{word-spacing:-1.554166px;}
.ws8a{word-spacing:-1.494390px;}
.wsbb{word-spacing:-1.434614px;}
.wsb6{word-spacing:-1.374839px;}
.ws26{word-spacing:-1.315063px;}
.ws13{word-spacing:-1.255288px;}
.ws81{word-spacing:-1.195512px;}
.wsc4{word-spacing:-1.135736px;}
.ws17f{word-spacing:-1.125530px;}
.ws180{word-spacing:-1.095866px;}
.ws90{word-spacing:-1.075961px;}
.ws88{word-spacing:-1.016185px;}
.ws1c{word-spacing:-0.956410px;}
.ws14{word-spacing:-0.896634px;}
.wsae{word-spacing:-0.836858px;}
.ws11c{word-spacing:-0.777083px;}
.ws30{word-spacing:-0.717307px;}
.ws7c{word-spacing:-0.657532px;}
.ws74{word-spacing:-0.597756px;}
.wsba{word-spacing:-0.537980px;}
.ws95{word-spacing:-0.478205px;}
.wsdd{word-spacing:-0.418429px;}
.ws52{word-spacing:-0.358654px;}
.wsb9{word-spacing:-0.298878px;}
.ws4b{word-spacing:-0.239102px;}
.ws7d{word-spacing:-0.179327px;}
.ws12f{word-spacing:-0.170958px;}
.ws16{word-spacing:-0.119551px;}
.ws7f{word-spacing:-0.059776px;}
.ws15e{word-spacing:-0.044234px;}
.wsf8{word-spacing:-0.006722px;}
.wsef{word-spacing:-0.006049px;}
.ws112{word-spacing:-0.005100px;}
.wsed{word-spacing:-0.004724px;}
.ws10f{word-spacing:-0.004378px;}
.wsf3{word-spacing:-0.004334px;}
.ws199{word-spacing:-0.003998px;}
.wsf6{word-spacing:-0.003761px;}
.ws110{word-spacing:-0.003608px;}
.wsfc{word-spacing:-0.003000px;}
.ws104{word-spacing:-0.002380px;}
.ws10c{word-spacing:-0.002050px;}
.wsff{word-spacing:-0.001200px;}
.wsf4{word-spacing:-0.000722px;}
.wsf0{word-spacing:-0.000558px;}
.ws2{word-spacing:0.000000px;}
.ws111{word-spacing:0.000600px;}
.ws100{word-spacing:0.000900px;}
.wsfd{word-spacing:0.001622px;}
.wsfe{word-spacing:0.002392px;}
.wsfb{word-spacing:0.003000px;}
.wsf9{word-spacing:0.003950px;}
.ws10e{word-spacing:0.004800px;}
.ws3{word-spacing:0.057372px;}
.ws23{word-spacing:0.059776px;}
.ws24{word-spacing:0.119551px;}
.ws1e{word-spacing:0.179327px;}
.ws5b{word-spacing:0.239102px;}
.ws5a{word-spacing:0.298878px;}
.ws139{word-spacing:0.327934px;}
.ws136{word-spacing:0.328309px;}
.ws138{word-spacing:0.328500px;}
.ws137{word-spacing:0.329975px;}
.ws51{word-spacing:0.358654px;}
.ws6e{word-spacing:0.418429px;}
.ws133{word-spacing:0.441850px;}
.wsc{word-spacing:0.478205px;}
.ws11{word-spacing:0.537980px;}
.wsa7{word-spacing:0.597756px;}
.ws12{word-spacing:0.657532px;}
.ws8d{word-spacing:0.717307px;}
.wscd{word-spacing:0.777083px;}
.ws8c{word-spacing:0.836858px;}
.ws45{word-spacing:0.896634px;}
.ws53{word-spacing:0.956410px;}
.ws8{word-spacing:1.016185px;}
.ws7{word-spacing:1.075961px;}
.wsa9{word-spacing:1.135736px;}
.ws78{word-spacing:1.195512px;}
.wsa4{word-spacing:1.255288px;}
.ws50{word-spacing:1.315063px;}
.ws80{word-spacing:1.374839px;}
.ws14e{word-spacing:1.385928px;}
.ws89{word-spacing:1.434614px;}
.ws66{word-spacing:1.494390px;}
.ws65{word-spacing:1.554166px;}
.ws2b{word-spacing:1.613941px;}
.wse{word-spacing:1.673717px;}
.ws9b{word-spacing:1.733492px;}
.ws86{word-spacing:1.793268px;}
.ws194{word-spacing:1.799182px;}
.ws75{word-spacing:1.853044px;}
.ws18{word-spacing:1.912819px;}
.ws21{word-spacing:1.972595px;}
.wsd{word-spacing:2.032370px;}
.wsec{word-spacing:2.035835px;}
.wsda{word-spacing:2.092146px;}
.ws61{word-spacing:2.151922px;}
.ws10{word-spacing:2.211697px;}
.ws2f{word-spacing:2.271473px;}
.ws93{word-spacing:2.331248px;}
.ws22{word-spacing:2.391024px;}
.ws5d{word-spacing:2.450800px;}
.ws91{word-spacing:2.510575px;}
.ws6b{word-spacing:2.570351px;}
.ws2e{word-spacing:2.630126px;}
.ws77{word-spacing:2.689902px;}
.wsf{word-spacing:2.749678px;}
.ws1d{word-spacing:2.809453px;}
.ws49{word-spacing:2.869229px;}
.ws4f{word-spacing:2.929004px;}
.wsab{word-spacing:2.988780px;}
.ws2c{word-spacing:3.048556px;}
.ws79{word-spacing:3.108331px;}
.ws6c{word-spacing:3.168107px;}
.ws71{word-spacing:3.227882px;}
.ws129{word-spacing:3.237334px;}
.wse2{word-spacing:3.265842px;}
.ws87{word-spacing:3.287658px;}
.wse5{word-spacing:3.347434px;}
.ws179{word-spacing:3.364517px;}
.ws178{word-spacing:3.366317px;}
.ws60{word-spacing:3.407209px;}
.ws84{word-spacing:3.466985px;}
.wsbe{word-spacing:3.526760px;}
.ws128{word-spacing:3.582228px;}
.wsd0{word-spacing:3.583567px;}
.wsce{word-spacing:3.584015px;}
.wscf{word-spacing:3.584683px;}
.wsbc{word-spacing:3.584734px;}
.wsd1{word-spacing:3.586424px;}
.ws5c{word-spacing:3.586536px;}
.ws117{word-spacing:3.588025px;}
.ws118{word-spacing:3.588592px;}
.wsa5{word-spacing:3.646312px;}
.ws17e{word-spacing:3.656650px;}
.ws17d{word-spacing:3.658853px;}
.ws17c{word-spacing:3.662134px;}
.ws17b{word-spacing:3.662527px;}
.ws12b{word-spacing:3.663042px;}
.ws12c{word-spacing:3.671442px;}
.ws25{word-spacing:3.706087px;}
.ws28{word-spacing:3.765863px;}
.ws12a{word-spacing:3.798833px;}
.ws73{word-spacing:3.825638px;}
.ws2a{word-spacing:3.885414px;}
.wsa6{word-spacing:3.945190px;}
.wsdb{word-spacing:4.004965px;}
.wsca{word-spacing:4.050600px;}
.wsc9{word-spacing:4.064741px;}
.wsb2{word-spacing:4.124516px;}
.ws13b{word-spacing:4.125367px;}
.ws13c{word-spacing:4.125934px;}
.ws85{word-spacing:4.184292px;}
.ws1f{word-spacing:4.244068px;}
.ws2d{word-spacing:4.303843px;}
.ws6{word-spacing:4.363619px;}
.ws63{word-spacing:4.423394px;}
.wsaf{word-spacing:4.483170px;}
.wsc0{word-spacing:4.542946px;}
.wsb1{word-spacing:4.602721px;}
.wsb3{word-spacing:4.662497px;}
.wsc8{word-spacing:4.722272px;}
.ws47{word-spacing:4.782048px;}
.ws9{word-spacing:4.841824px;}
.ws9c{word-spacing:4.901599px;}
.ws1b{word-spacing:4.961375px;}
.ws72{word-spacing:5.021150px;}
.wsa{word-spacing:5.080926px;}
.ws114{word-spacing:5.140702px;}
.ws27{word-spacing:5.200477px;}
.ws15{word-spacing:5.260253px;}
.ws6d{word-spacing:5.320028px;}
.wsa1{word-spacing:5.379804px;}
.wsb7{word-spacing:5.439580px;}
.ws68{word-spacing:5.499355px;}
.ws8e{word-spacing:5.559131px;}
.ws17{word-spacing:5.618906px;}
.ws29{word-spacing:5.678682px;}
.ws64{word-spacing:5.738458px;}
.ws82{word-spacing:5.798233px;}
.wsbf{word-spacing:5.858009px;}
.wsb4{word-spacing:5.917784px;}
.ws109{word-spacing:5.940649px;}
.wsad{word-spacing:5.977560px;}
.wsb{word-spacing:6.037336px;}
.ws96{word-spacing:6.097111px;}
.wsc2{word-spacing:6.156887px;}
.ws70{word-spacing:6.216662px;}
.ws1a{word-spacing:6.276438px;}
.ws105{word-spacing:6.336214px;}
.wsc3{word-spacing:6.395989px;}
.wsa0{word-spacing:6.455765px;}
.ws130{word-spacing:6.515540px;}
.ws18b{word-spacing:6.570634px;}
.ws193{word-spacing:6.572658px;}
.ws197{word-spacing:6.572725px;}
.ws18d{word-spacing:6.574626px;}
.wsc1{word-spacing:6.575316px;}
.ws192{word-spacing:6.576414px;}
.ws18e{word-spacing:6.576634px;}
.ws106{word-spacing:6.635092px;}
.wsea{word-spacing:6.694867px;}
.wsc7{word-spacing:6.754643px;}
.ws9e{word-spacing:6.814418px;}
.ws7a{word-spacing:6.874194px;}
.ws195{word-spacing:6.892501px;}
.wsa2{word-spacing:6.933970px;}
.wsb0{word-spacing:6.993745px;}
.wse0{word-spacing:7.053521px;}
.wsb8{word-spacing:7.113296px;}
.ws127{word-spacing:7.173072px;}
.ws12d{word-spacing:7.224148px;}
.wsc5{word-spacing:7.232848px;}
.ws159{word-spacing:7.256827px;}
.wse6{word-spacing:7.292623px;}
.wsc6{word-spacing:7.352399px;}
.ws92{word-spacing:7.412174px;}
.ws107{word-spacing:7.471950px;}
.ws151{word-spacing:7.531726px;}
.ws189{word-spacing:7.591501px;}
.ws103{word-spacing:7.651277px;}
.ws115{word-spacing:7.711052px;}
.ws67{word-spacing:7.770828px;}
.wsaa{word-spacing:7.830604px;}
.ws177{word-spacing:7.950155px;}
.ws102{word-spacing:8.069706px;}
.ws9d{word-spacing:8.189257px;}
.ws150{word-spacing:8.249033px;}
.wscb{word-spacing:8.308808px;}
.wsde{word-spacing:8.428360px;}
.ws154{word-spacing:8.488135px;}
.ws19a{word-spacing:8.523025px;}
.wse9{word-spacing:8.547911px;}
.ws5{word-spacing:8.572494px;}
.ws1{word-spacing:8.579592px;}
.wsdc{word-spacing:8.667462px;}
.ws8f{word-spacing:8.787013px;}
.ws108{word-spacing:8.846789px;}
.ws198{word-spacing:8.906564px;}
.wsac{word-spacing:8.966340px;}
.ws158{word-spacing:9.085891px;}
.wsb5{word-spacing:9.623872px;}
.wsa8{word-spacing:9.803198px;}
.ws116{word-spacing:9.982525px;}
.ws191{word-spacing:10.460730px;}
.ws190{word-spacing:10.520506px;}
.ws4a{word-spacing:10.759608px;}
.ws19{word-spacing:11.178037px;}
.ws196{word-spacing:12.373549px;}
.ws13a{word-spacing:12.854683px;}
.ws146{word-spacing:13.150632px;}
.ws11a{word-spacing:14.942400px;}
.ws35{word-spacing:14.943900px;}
.ws119{word-spacing:14.948400px;}
.ws32{word-spacing:44.831700px;}
.ws97{word-spacing:53.798400px;}
.ws170{word-spacing:56.779842px;}
.ws162{word-spacing:56.780425px;}
.wsf5{word-spacing:56.784329px;}
.ws15a{word-spacing:56.785094px;}
.ws11e{word-spacing:56.786308px;}
.ws163{word-spacing:56.791200px;}
.ws11f{word-spacing:61.804530px;}
.ws120{word-spacing:61.808167px;}
.ws62{word-spacing:64.557900px;}
.wsd2{word-spacing:69.100594px;}
.wsf2{word-spacing:72.330329px;}
.ws15b{word-spacing:86.672425px;}
.ws15c{word-spacing:86.674800px;}
.ws164{word-spacing:101.611825px;}
.ws144{word-spacing:111.242392px;}
.ws174{word-spacing:114.021000px;}
.ws16c{word-spacing:128.961000px;}
.ws15f{word-spacing:131.503825px;}
.ws160{word-spacing:132.102350px;}
.ws155{word-spacing:132.343178px;}
.wsd5{word-spacing:144.178747px;}
.wsd6{word-spacing:149.917205px;}
.ws10a{word-spacing:155.504150px;}
.ws10b{word-spacing:165.876329px;}
.ws161{word-spacing:171.912900px;}
.ws121{word-spacing:182.970600px;}
.ws124{word-spacing:195.198600px;}
.ws126{word-spacing:205.386300px;}
.ws184{word-spacing:209.546683px;}
.ws16f{word-spacing:210.496800px;}
.wsd7{word-spacing:212.263156px;}
.ws123{word-spacing:217.614600px;}
.ws185{word-spacing:222.845392px;}
.ws172{word-spacing:225.442800px;}
.ws167{word-spacing:227.384694px;}
.ws122{word-spacing:227.802300px;}
.ws57{word-spacing:232.825962px;}
.ws16d{word-spacing:240.388800px;}
.ws113{word-spacing:250.458883px;}
.wsd3{word-spacing:253.747422px;}
.wsf7{word-spacing:258.444329px;}
.ws16a{word-spacing:267.790800px;}
.ws168{word-spacing:267.795000px;}
.ws10d{word-spacing:270.420883px;}
.ws166{word-spacing:282.736800px;}
.ws101{word-spacing:284.196883px;}
.wsd4{word-spacing:301.029922px;}
.wsfa{word-spacing:304.164883px;}
.ws183{word-spacing:348.189000px;}
.ws182{word-spacing:348.191725px;}
.ws157{word-spacing:362.476500px;}
.ws181{word-spacing:363.133525px;}
.ws186{word-spacing:363.136800px;}
.wsf1{word-spacing:365.794529px;}
.ws156{word-spacing:377.418300px;}
.ws16e{word-spacing:425.839686px;}
.ws169{word-spacing:471.265242px;}
.ws173{word-spacing:503.069761px;}
.ws16b{word-spacing:506.118317px;}
.wsee{word-spacing:523.606529px;}
.ws171{word-spacing:585.201436px;}
.ws14b{word-spacing:601.487040px;}
.ws176{word-spacing:615.686992px;}
.ws175{word-spacing:631.706852px;}
.ws152{word-spacing:663.383278px;}
.ws11d{word-spacing:697.695300px;}
.ws125{word-spacing:801.433708px;}
.ws14d{word-spacing:812.593166px;}
.ws14f{word-spacing:853.417733px;}
.ws165{word-spacing:895.790345px;}
.ws58{word-spacing:1986.481273px;}
.ws56{word-spacing:2020.373066px;}
.ws9a{word-spacing:2046.202500px;}
.ws18f{word-spacing:2101.129108px;}
.ws18c{word-spacing:2101.132500px;}
.ws41{word-spacing:2144.347450px;}
.wseb{word-spacing:2154.334500px;}
.ws43{word-spacing:2198.742662px;}
.ws18a{word-spacing:2204.128500px;}
.ws187{word-spacing:2214.112500px;}
.ws44{word-spacing:2228.809789px;}
.ws153{word-spacing:2300.428500px;}
._24{margin-left:-33.055907px;}
._18{margin-left:-31.382190px;}
._17{margin-left:-29.887800px;}
._91{margin-left:-21.316639px;}
._20{margin-left:-14.405920px;}
._19{margin-left:-11.656242px;}
._21{margin-left:-9.564096px;}
._6{margin-left:-7.962163px;}
._12{margin-left:-6.313481px;}
._7{margin-left:-4.540272px;}
._0{margin-left:-2.667169px;}
._4{margin-left:-1.497064px;}
._2{width:1.101792px;}
._71{width:2.211697px;}
._3{width:3.333534px;}
._1{width:4.682616px;}
._32{width:6.336214px;}
._72{width:7.591501px;}
._93{width:9.257224px;}
._92{width:10.301520px;}
._43{width:11.426102px;}
._42{width:12.589919px;}
._4b{width:13.628837px;}
._e{width:14.710145px;}
._15{width:16.199188px;}
._11{width:17.972396px;}
._d{width:19.165235px;}
._9{width:20.981236px;}
._5{width:22.236672px;}
._b{width:23.910240px;}
._c{width:25.528526px;}
._14{width:27.223304px;}
._30{width:28.458533px;}
._13{width:30.257148px;}
._8{width:31.681068px;}
._47{width:32.757029px;}
._a{width:33.832990px;}
._31{width:34.941990px;}
._f{width:36.021805px;}
._10{width:37.427398px;}
._27{width:38.549915px;}
._28{width:40.142467px;}
._22{width:41.842920px;}
._2b{width:42.897492px;}
._45{width:44.413271px;}
._2f{width:46.603579px;}
._2c{width:48.908479px;}
._37{width:50.089279px;}
._34{width:51.947670px;}
._1c{width:54.260203px;}
._23{width:56.189064px;}
._2a{width:57.841392px;}
._1e{width:59.775600px;}
._1b{width:62.764380px;}
._25{width:71.730720px;}
._75{width:74.480815px;}
._8b{width:78.098675px;}
._54{width:79.561324px;}
._36{width:80.762183px;}
._1a{width:85.419332px;}
._35{width:86.431127px;}
._76{width:87.937763px;}
._55{width:91.038239px;}
._85{width:94.343866px;}
._79{width:98.868842px;}
._65{width:101.620500px;}
._74{width:103.114356px;}
._5b{width:106.121975px;}
._33{width:110.649983px;}
._5d{width:113.544900px;}
._1d{width:115.307132px;}
._64{width:122.659259px;}
._5a{width:127.566413px;}
._87{width:128.922108px;}
._5c{width:136.918955px;}
._7c{width:138.562514px;}
._7f{width:141.668172px;}
._86{width:143.904900px;}
._3a{width:148.123937px;}
._5e{width:156.403259px;}
._60{width:158.372700px;}
._83{width:163.721843px;}
._3c{width:168.088987px;}
._3e{width:171.376645px;}
._38{width:174.724079px;}
._4d{width:180.402761px;}
._6c{width:182.218267px;}
._69{width:184.669217px;}
._59{width:185.960700px;}
._41{width:187.994262px;}
._39{width:194.629354px;}
._5f{width:197.108158px;}
._95{width:198.870240px;}
._80{width:203.954347px;}
._3f{width:207.279048px;}
._3d{width:211.246970px;}
._3b{width:215.787242px;}
._6f{width:220.330500px;}
._84{width:224.009294px;}
._40{width:231.152245px;}
._68{width:232.917602px;}
._51{width:241.433648px;}
._52{width:242.686262px;}
._6d{width:246.694500px;}
._6b{width:254.974200px;}
._4e{width:268.751098px;}
._4c{width:270.960121px;}
._57{width:274.432453px;}
._56{width:277.896764px;}
._6e{width:287.998346px;}
._6a{width:291.526200px;}
._4f{width:322.788240px;}
._53{width:339.405857px;}
._50{width:344.427007px;}
._8e{width:361.488900px;}
._7e{width:416.613199px;}
._66{width:423.684650px;}
._61{width:428.168700px;}
._89{width:526.840391px;}
._7b{width:542.284243px;}
._7a{width:545.571901px;}
._78{width:548.919335px;}
._8d{width:563.233492px;}
._8f{width:571.537834px;}
._8c{width:583.132766px;}
._81{width:662.072700px;}
._67{width:686.963434px;}
._73{width:735.056675px;}
._88{width:738.147137px;}
._94{width:847.620000px;}
._77{width:860.088376px;}
._70{width:950.568359px;}
._82{width:1176.460351px;}
._90{width:1201.210123px;}
._7d{width:1325.899351px;}
._4a{width:1383.941459px;}
._49{width:1774.216351px;}
._8a{width:1951.809659px;}
._1f{width:1966.694657px;}
._63{width:2033.164250px;}
._62{width:2046.494209px;}
._26{width:2066.339708px;}
._58{width:2106.150258px;}
._16{width:2107.645522px;}
._2e{width:2116.073008px;}
._48{width:2124.441592px;}
._2d{width:2132.690624px;}
._46{width:2154.327592px;}
._44{width:2177.463422px;}
._29{width:2215.778708px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fse{font-size:38.880000px;}
.fs5{font-size:44.233800px;}
.fs8{font-size:47.820600px;}
.fsd{font-size:54.000000px;}
.fsc{font-size:59.760000px;}
.fs4{font-size:59.775600px;}
.fs9{font-size:66.240000px;}
.fs1{font-size:68.862000px;}
.fs3{font-size:71.731200px;}
.fsb{font-size:84.240000px;}
.fs0{font-size:86.077200px;}
.fs6{font-size:123.975000px;}
.fsa{font-size:146.880000px;}
.fs2{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y6d6{bottom:4.485000px;}
.y6cc{bottom:4.500000px;}
.y743{bottom:6.120000px;}
.y749{bottom:6.300000px;}
.y6e0{bottom:6.840000px;}
.y6be{bottom:7.920000px;}
.y6c0{bottom:8.100000px;}
.y745{bottom:18.000000px;}
.y6d3{bottom:31.500000px;}
.y6cb{bottom:31.530000px;}
.y6b5{bottom:57.096000px;}
.y747{bottom:72.180000px;}
.y6b4{bottom:75.996000px;}
.y31{bottom:84.292500px;}
.y783{bottom:118.116000px;}
.y751{bottom:123.336000px;}
.y350{bottom:129.123000px;}
.y5e{bottom:129.124500px;}
.y2bc{bottom:133.464000px;}
.y580{bottom:135.102000px;}
.y7d8{bottom:138.096000px;}
.y782{bottom:138.276000px;}
.y6da{bottom:141.516000px;}
.ya{bottom:145.422000px;}
.y62d{bottom:147.057000px;}
.y5d{bottom:147.442500px;}
.y91{bottom:147.568500px;}
.y2bb{bottom:148.141500px;}
.y170{bottom:149.448000px;}
.y750{bottom:150.330000px;}
.y34f{bottom:151.539000px;}
.yd0{bottom:151.540500px;}
.y57f{bottom:153.631500px;}
.y781{bottom:157.710000px;}
.y471{bottom:157.795500px;}
.y386{bottom:160.060500px;}
.y653{bottom:160.525500px;}
.y140{bottom:163.611000px;}
.y679{bottom:164.989500px;}
.y5c{bottom:165.762000px;}
.y90{bottom:166.012500px;}
.y16f{bottom:167.380500px;}
.y2ba{bottom:169.332000px;}
.y149{bottom:169.653000px;}
.y57e{bottom:172.162500px;}
.y260{bottom:173.955000px;}
.ycf{bottom:173.956500px;}
.y241{bottom:174.273000px;}
.y398{bottom:174.427500px;}
.y7d7{bottom:174.630000px;}
.y5e0{bottom:175.287000px;}
.y287{bottom:175.380000px;}
.y193{bottom:175.446000px;}
.y780{bottom:176.070000px;}
.y62c{bottom:176.071500px;}
.y74f{bottom:177.330000px;}
.y69e{bottom:178.209000px;}
.y652{bottom:178.458000px;}
.y470{bottom:180.210000px;}
.yf7{bottom:180.724500px;}
.y441{bottom:181.152000px;}
.y291{bottom:181.354500px;}
.y6d9{bottom:181.830000px;}
.y385{bottom:182.476500px;}
.y5b{bottom:184.080000px;}
.y8f{bottom:184.456500px;}
.y4f6{bottom:185.313000px;}
.y727{bottom:185.970000px;}
.y41d{bottom:189.762000px;}
.y57d{bottom:190.693500px;}
.y440{bottom:191.403000px;}
.y2b9{bottom:191.748000px;}
.y7d6{bottom:193.710000px;}
.y62b{bottom:194.004000px;}
.y77f{bottom:194.250000px;}
.y69d{bottom:196.141500px;}
.y1b8{bottom:196.371000px;}
.yce{bottom:196.372500px;}
.y557{bottom:196.465500px;}
.y1fc{bottom:196.495500px;}
.y240{bottom:196.689000px;}
.y397{bottom:196.843500px;}
.y678{bottom:196.920000px;}
.y488{bottom:197.316000px;}
.y5df{bottom:197.703000px;}
.y286{bottom:197.796000px;}
.y192{bottom:197.862000px;}
.y329{bottom:197.896500px;}
.y6d8{bottom:198.045000px;}
.y13f{bottom:198.097500px;}
.y21e{bottom:201.096000px;}
.y5a{bottom:202.399500px;}
.y46f{bottom:202.626000px;}
.y8e{bottom:202.900500px;}
.yf6{bottom:203.140500px;}
.y74e{bottom:204.330000px;}
.y384{bottom:205.851000px;}
.y451{bottom:206.566500px;}
.y53b{bottom:206.775000px;}
.y4e0{bottom:207.757500px;}
.y57c{bottom:209.223000px;}
.y651{bottom:209.859000px;}
.y7d5{bottom:211.890000px;}
.y5b9{bottom:212.442000px;}
.y77e{bottom:213.510000px;}
.y2b8{bottom:214.164000px;}
.y556{bottom:214.398000px;}
.y677{bottom:214.852500px;}
.y487{bottom:215.248500px;}
.y3fe{bottom:217.359000px;}
.y15b{bottom:218.787000px;}
.y114{bottom:218.788500px;}
.y1fb{bottom:218.911500px;}
.y1da{bottom:219.051000px;}
.y23f{bottom:219.105000px;}
.y396{bottom:219.259500px;}
.y5de{bottom:220.119000px;}
.y285{bottom:220.212000px;}
.y191{bottom:220.278000px;}
.y328{bottom:220.312500px;}
.y59{bottom:220.717500px;}
.y9{bottom:220.818000px;}
.y8d{bottom:221.344500px;}
.y51b{bottom:221.424000px;}
.y509{bottom:222.262500px;}
.y726{bottom:222.870000px;}
.y62a{bottom:223.018500px;}
.y553{bottom:223.363500px;}
.y21d{bottom:223.512000px;}
.y3dd{bottom:223.956000px;}
.y515{bottom:224.005500px;}
.y46e{bottom:225.042000px;}
.yf5{bottom:225.556500px;}
.y69c{bottom:227.295000px;}
.y57b{bottom:227.754000px;}
.y650{bottom:227.791500px;}
.y41c{bottom:227.983500px;}
.y383{bottom:228.267000px;}
.y450{bottom:228.982500px;}
.y3c7{bottom:229.390500px;}
.y7d4{bottom:231.150000px;}
.y74d{bottom:231.330000px;}
.y77d{bottom:231.870000px;}
.y555{bottom:232.330500px;}
.y6d7{bottom:232.965000px;}
.y486{bottom:233.181000px;}
.y3f3{bottom:233.289000px;}
.ycd{bottom:234.435000px;}
.y3fd{bottom:235.293000px;}
.y13e{bottom:235.573500px;}
.y3b5{bottom:235.978500px;}
.y2b7{bottom:236.580000px;}
.y58{bottom:239.037000px;}
.y3a0{bottom:239.283000px;}
.y8c{bottom:239.788500px;}
.y629{bottom:240.951000px;}
.y1b7{bottom:241.203000px;}
.y2d5{bottom:241.204500px;}
.y5a7{bottom:241.312500px;}
.y1fa{bottom:241.327500px;}
.y1d9{bottom:241.467000px;}
.y23e{bottom:241.521000px;}
.y34e{bottom:241.543500px;}
.y395{bottom:241.675500px;}
.y130{bottom:241.890000px;}
.y25f{bottom:242.259000px;}
.y15a{bottom:242.310000px;}
.y3dc{bottom:242.487000px;}
.y5dd{bottom:242.535000px;}
.y284{bottom:242.628000px;}
.y190{bottom:242.694000px;}
.y327{bottom:242.728500px;}
.y51a{bottom:243.840000px;}
.y1a7{bottom:244.518000px;}
.y508{bottom:244.678500px;}
.y69b{bottom:245.227500px;}
.y21c{bottom:245.928000px;}
.y57a{bottom:246.285000px;}
.y514{bottom:246.421500px;}
.y676{bottom:246.783000px;}
.y43f{bottom:247.246500px;}
.y46d{bottom:247.458000px;}
.yf4{bottom:247.972500px;}
.y7d3{bottom:249.330000px;}
.y77c{bottom:250.050000px;}
.y554{bottom:250.263000px;}
.y41b{bottom:250.399500px;}
.y382{bottom:250.683000px;}
.y44f{bottom:251.398500px;}
.y725{bottom:251.490000px;}
.y8{bottom:251.802000px;}
.y3b4{bottom:253.911000px;}
.y53a{bottom:255.694500px;}
.y3f2{bottom:255.705000px;}
.y113{bottom:256.815000px;}
.y8b{bottom:257.721000px;}
.y13d{bottom:257.989500px;}
.y74c{bottom:258.330000px;}
.y2b6{bottom:258.996000px;}
.y64f{bottom:259.192500px;}
.y30{bottom:259.488000px;}
.y3db{bottom:261.016500px;}
.y39f{bottom:261.699000px;}
.y3c6{bottom:263.367000px;}
.y4ac{bottom:263.619000px;}
.y2d4{bottom:263.620500px;}
.y5a6{bottom:263.728500px;}
.y1f9{bottom:263.743500px;}
.y1d8{bottom:263.883000px;}
.y23d{bottom:263.937000px;}
.y34d{bottom:263.959500px;}
.y394{bottom:264.091500px;}
.y12f{bottom:264.306000px;}
.y25e{bottom:264.675000px;}
.y675{bottom:264.715500px;}
.y159{bottom:264.726000px;}
.y579{bottom:264.814500px;}
.y5dc{bottom:264.951000px;}
.y283{bottom:265.044000px;}
.y18f{bottom:265.110000px;}
.y326{bottom:265.144500px;}
.y1a6{bottom:266.934000px;}
.y507{bottom:267.094500px;}
.y6d5{bottom:267.705000px;}
.y21b{bottom:268.344000px;}
.y7d2{bottom:268.410000px;}
.y1b6{bottom:268.534500px;}
.y552{bottom:268.794000px;}
.y513{bottom:268.837500px;}
.y77b{bottom:269.130000px;}
.y43e{bottom:269.662500px;}
.y628{bottom:269.967000px;}
.y4c1{bottom:270.289500px;}
.y5b8{bottom:271.350000px;}
.y57{bottom:272.556000px;}
.y381{bottom:274.056000px;}
.y36b{bottom:275.472000px;}
.y2ef{bottom:275.652000px;}
.y8a{bottom:275.655000px;}
.y2a3{bottom:275.898000px;}
.y69a{bottom:276.381000px;}
.y64e{bottom:277.125000px;}
.yf3{bottom:277.156500px;}
.y2f{bottom:277.422000px;}
.y551{bottom:277.759500px;}
.y539{bottom:278.110500px;}
.y3da{bottom:279.547500px;}
.y724{bottom:279.975000px;}
.y4df{bottom:280.189500px;}
.y13c{bottom:280.405500px;}
.y2b5{bottom:281.412000px;}
.y30e{bottom:282.300000px;}
.y674{bottom:282.648000px;}
.y578{bottom:283.345500px;}
.y39e{bottom:284.115000px;}
.y44e{bottom:284.890500px;}
.y74b{bottom:285.375000px;}
.y3c5{bottom:285.783000px;}
.y4ab{bottom:286.035000px;}
.y2d3{bottom:286.036500px;}
.y46c{bottom:286.086000px;}
.y5a5{bottom:286.143000px;}
.y1f8{bottom:286.159500px;}
.y34c{bottom:286.375500px;}
.y393{bottom:286.507500px;}
.y1d7{bottom:286.561500px;}
.y12e{bottom:286.722000px;}
.y158{bottom:287.142000px;}
.y5db{bottom:287.367000px;}
.y18e{bottom:287.526000px;}
.y7d1{bottom:287.535000px;}
.y627{bottom:287.899500px;}
.y25d{bottom:288.145500px;}
.y4c0{bottom:288.222000px;}
.y77a{bottom:288.435000px;}
.y282{bottom:288.883500px;}
.y1a5{bottom:289.350000px;}
.y506{bottom:289.510500px;}
.y21a{bottom:290.760000px;}
.y56{bottom:290.875500px;}
.y1b5{bottom:290.950500px;}
.y7{bottom:291.291000px;}
.y41a{bottom:291.609000px;}
.y43d{bottom:292.077000px;}
.ycc{bottom:292.117500px;}
.y3f1{bottom:293.470500px;}
.y5b7{bottom:293.766000px;}
.y699{bottom:294.313500px;}
.y6d4{bottom:294.735000px;}
.y2e{bottom:295.354500px;}
.y380{bottom:296.472000px;}
.y3d9{bottom:298.078500px;}
.yf2{bottom:299.572500px;}
.y538{bottom:300.526500px;}
.y30d{bottom:300.831000px;}
.y577{bottom:301.876500px;}
.y23c{bottom:302.424000px;}
.y4de{bottom:302.605500px;}
.y13b{bottom:302.820000px;}
.y118{bottom:303.523500px;}
.y2b4{bottom:303.828000px;}
.y550{bottom:305.257500px;}
.y626{bottom:305.832000px;}
.y4bf{bottom:306.154500px;}
.y39d{bottom:306.529500px;}
.y779{bottom:306.615000px;}
.y7d0{bottom:306.795000px;}
.y44d{bottom:307.306500px;}
.y6b3{bottom:307.309500px;}
.y3c4{bottom:308.199000px;}
.y723{bottom:308.415000px;}
.y60c{bottom:308.451000px;}
.y64d{bottom:308.526000px;}
.y5a4{bottom:308.559000px;}
.y1f7{bottom:308.575500px;}
.y519{bottom:308.784000px;}
.y34b{bottom:308.791500px;}
.y1d6{bottom:308.977500px;}
.y89{bottom:309.042000px;}
.y55{bottom:309.193500px;}
.y392{bottom:309.394500px;}
.y157{bottom:309.558000px;}
.y5da{bottom:309.783000px;}
.y12d{bottom:309.823500px;}
.y25c{bottom:310.561500px;}
.y281{bottom:311.299500px;}
.y1a4{bottom:311.766000px;}
.y219{bottom:313.176000px;}
.y2d{bottom:313.287000px;}
.y1b4{bottom:313.366500px;}
.y419{bottom:314.025000px;}
.y112{bottom:314.395500px;}
.y43c{bottom:314.493000px;}
.ycb{bottom:314.533500px;}
.y74a{bottom:314.535000px;}
.y673{bottom:314.578500px;}
.y505{bottom:315.402000px;}
.y5b6{bottom:316.182000px;}
.y3d8{bottom:316.608000px;}
.y37f{bottom:318.888000px;}
.y2d2{bottom:319.209000px;}
.y576{bottom:320.406000px;}
.yf1{bottom:321.988500px;}
.y18d{bottom:322.858500px;}
.y537{bottom:322.942500px;}
.y54f{bottom:323.190000px;}
.y4be{bottom:324.087000px;}
.y4dd{bottom:325.021500px;}
.y6b2{bottom:325.242000px;}
.y698{bottom:325.465500px;}
.y3d7{bottom:325.575000px;}
.y325{bottom:325.630500px;}
.y7cf{bottom:325.695000px;}
.y778{bottom:325.875000px;}
.y2b3{bottom:326.244000px;}
.y64c{bottom:326.458500px;}
.y2a2{bottom:326.511000px;}
.y722{bottom:327.315000px;}
.y88{bottom:327.486000px;}
.y54{bottom:327.513000px;}
.y39c{bottom:328.945500px;}
.y2ee{bottom:329.287500px;}
.y6d2{bottom:329.475000px;}
.y44c{bottom:329.722500px;}
.y4aa{bottom:330.169500px;}
.y3f0{bottom:330.387000px;}
.y3c3{bottom:330.615000px;}
.y36a{bottom:330.829500px;}
.y60b{bottom:330.867000px;}
.y5a3{bottom:330.975000px;}
.y1f6{bottom:330.991500px;}
.y34a{bottom:331.207500px;}
.y2c{bottom:331.219500px;}
.y1d5{bottom:331.393500px;}
.y391{bottom:331.810500px;}
.y12c{bottom:332.239500px;}
.y672{bottom:332.512500px;}
.y25b{bottom:332.977500px;}
.y5d9{bottom:333.529500px;}
.y280{bottom:333.715500px;}
.y1a3{bottom:334.182000px;}
.y30c{bottom:334.305000px;}
.y625{bottom:334.846500px;}
.y13a{bottom:335.379000px;}
.y218{bottom:335.592000px;}
.y1b3{bottom:335.782500px;}
.y418{bottom:336.441000px;}
.y111{bottom:336.811500px;}
.y43b{bottom:336.909000px;}
.yca{bottom:336.949500px;}
.y504{bottom:337.818000px;}
.y5b5{bottom:338.598000px;}
.y575{bottom:338.937000px;}
.y54e{bottom:341.122500px;}
.y37e{bottom:341.304000px;}
.y2d1{bottom:341.625000px;}
.y4bd{bottom:342.021000px;}
.y6b1{bottom:343.174500px;}
.y697{bottom:343.399500px;}
.y324{bottom:343.563000px;}
.y777{bottom:344.055000px;}
.y156{bottom:344.163000px;}
.yf0{bottom:344.404500px;}
.y7ce{bottom:345.315000px;}
.y536{bottom:345.358500px;}
.y46b{bottom:345.402000px;}
.y721{bottom:345.675000px;}
.y53{bottom:345.831000px;}
.y87{bottom:345.931500px;}
.y2b2{bottom:348.660000px;}
.y4a9{bottom:348.700500px;}
.y2a1{bottom:348.927000px;}
.y2b{bottom:349.152000px;}
.y369{bottom:349.360500px;}
.y54a{bottom:350.089500px;}
.y671{bottom:350.445000px;}
.y2ed{bottom:351.703500px;}
.y44b{bottom:352.138500px;}
.y30b{bottom:352.237500px;}
.y624{bottom:352.779000px;}
.y3ef{bottom:352.803000px;}
.y3c2{bottom:353.031000px;}
.y5a2{bottom:353.391000px;}
.y1f5{bottom:353.407500px;}
.y1d4{bottom:353.809500px;}
.y390{bottom:354.226500px;}
.y12b{bottom:354.655500px;}
.y25a{bottom:355.393500px;}
.y5d8{bottom:355.945500px;}
.y1a2{bottom:356.598000px;}
.y60a{bottom:356.998500px;}
.y64b{bottom:357.859500px;}
.y217{bottom:358.008000px;}
.y417{bottom:358.857000px;}
.y54d{bottom:359.055000px;}
.y43a{bottom:359.325000px;}
.yc9{bottom:359.365500px;}
.y4bc{bottom:359.953500px;}
.y574{bottom:360.456000px;}
.y5b4{bottom:361.014000px;}
.y23b{bottom:361.332000px;}
.y776{bottom:362.235000px;}
.y7cd{bottom:363.675000px;}
.y37d{bottom:363.720000px;}
.y720{bottom:364.035000px;}
.y2d0{bottom:364.041000px;}
.y52{bottom:364.150500px;}
.y86{bottom:364.375500px;}
.yef{bottom:366.820500px;}
.y2a{bottom:367.084500px;}
.y4a8{bottom:367.231500px;}
.y535{bottom:367.774500px;}
.y46a{bottom:367.818000px;}
.y368{bottom:367.891500px;}
.y3d6{bottom:368.016000px;}
.y27f{bottom:368.923500px;}
.y748{bottom:370.515000px;}
.y623{bottom:370.713000px;}
.y2b1{bottom:371.076000px;}
.y2a0{bottom:371.343000px;}
.y110{bottom:371.487000px;}
.y39b{bottom:371.857500px;}
.y6b0{bottom:373.063500px;}
.y349{bottom:373.260000px;}
.y2ec{bottom:374.119500px;}
.y696{bottom:374.551500px;}
.y3c1{bottom:375.447000px;}
.y4dc{bottom:375.736500px;}
.y5a1{bottom:375.807000px;}
.y1f4{bottom:375.823500px;}
.y3ee{bottom:376.068000px;}
.y1d3{bottom:376.225500px;}
.y38f{bottom:376.642500px;}
.y54c{bottom:376.987500px;}
.y12a{bottom:377.758500px;}
.y259{bottom:377.809500px;}
.y5d7{bottom:378.361500px;}
.y1a1{bottom:379.014000px;}
.y18c{bottom:379.059000px;}
.y609{bottom:379.413000px;}
.y139{bottom:379.809000px;}
.y216{bottom:380.424000px;}
.y416{bottom:381.273000px;}
.y775{bottom:381.495000px;}
.y439{bottom:381.741000px;}
.y7cc{bottom:381.855000px;}
.yc8{bottom:381.877500px;}
.y670{bottom:382.375500px;}
.y71f{bottom:382.395000px;}
.y51{bottom:382.468500px;}
.y85{bottom:382.819500px;}
.y1b2{bottom:383.004000px;}
.y5b3{bottom:383.430000px;}
.y6d1{bottom:383.475000px;}
.y23a{bottom:383.748000px;}
.y30a{bottom:383.964000px;}
.y29{bottom:385.018500px;}
.y44a{bottom:385.629000px;}
.y4a7{bottom:385.761000px;}
.y512{bottom:386.136000px;}
.y367{bottom:386.421000px;}
.y2cf{bottom:386.457000px;}
.y37c{bottom:387.094500px;}
.y4bb{bottom:389.125500px;}
.y64a{bottom:389.260500px;}
.y746{bottom:389.595000px;}
.y469{bottom:390.234000px;}
.y6af{bottom:390.996000px;}
.y695{bottom:392.484000px;}
.y4db{bottom:393.669000px;}
.y29f{bottom:393.759000px;}
.y10f{bottom:393.903000px;}
.y573{bottom:393.931500px;}
.y39a{bottom:394.272000px;}
.y54b{bottom:394.921500px;}
.y503{bottom:395.544000px;}
.y348{bottom:395.676000px;}
.yee{bottom:396.006000px;}
.y2eb{bottom:396.535500px;}
.y3c0{bottom:397.863000px;}
.y5a0{bottom:398.223000px;}
.y1f3{bottom:398.239500px;}
.y3ed{bottom:398.484000px;}
.y1d2{bottom:398.641500px;}
.y33{bottom:399.285000px;}
.y622{bottom:399.727500px;}
.y129{bottom:400.174500px;}
.y258{bottom:400.225500px;}
.y66f{bottom:400.308000px;}
.y71e{bottom:400.575000px;}
.y84{bottom:400.752000px;}
.y5d6{bottom:400.777500px;}
.y50{bottom:400.788000px;}
.y7cb{bottom:400.935000px;}
.y1a0{bottom:401.430000px;}
.y18b{bottom:401.475000px;}
.y608{bottom:401.829000px;}
.y138{bottom:402.225000px;}
.y28{bottom:402.951000px;}
.y415{bottom:403.689000px;}
.y438{bottom:404.157000px;}
.yc7{bottom:404.293500px;}
.y366{bottom:404.952000px;}
.y5b2{bottom:405.846000px;}
.y239{bottom:406.164000px;}
.y309{bottom:406.380000px;}
.y649{bottom:407.193000px;}
.y4a6{bottom:407.281500px;}
.y215{bottom:407.563500px;}
.y449{bottom:408.045000px;}
.y3d5{bottom:408.645000px;}
.y2ce{bottom:408.873000px;}
.y37b{bottom:409.510500px;}
.y694{bottom:410.418000px;}
.y4da{bottom:411.601500px;}
.y572{bottom:411.864000px;}
.y29e{bottom:416.175000px;}
.y10e{bottom:416.319000px;}
.y549{bottom:416.440500px;}
.y621{bottom:417.660000px;}
.y347{bottom:418.092000px;}
.y66e{bottom:418.240500px;}
.y6d0{bottom:418.395000px;}
.yed{bottom:418.422000px;}
.y71d{bottom:418.935000px;}
.y2ea{bottom:418.951500px;}
.y4f{bottom:419.106000px;}
.y83{bottom:419.196000px;}
.y7ca{bottom:419.295000px;}
.y774{bottom:419.835000px;}
.y59f{bottom:420.639000px;}
.y1f2{bottom:420.655500px;}
.y27{bottom:420.883500px;}
.y3ec{bottom:420.900000px;}
.y1d1{bottom:421.057500px;}
.y534{bottom:421.756500px;}
.y128{bottom:422.590500px;}
.y365{bottom:422.884500px;}
.y5d5{bottom:423.193500px;}
.y19f{bottom:423.846000px;}
.y18a{bottom:423.891000px;}
.y607{bottom:424.245000px;}
.y137{bottom:424.641000px;}
.y27e{bottom:424.761000px;}
.y548{bottom:425.406000px;}
.y468{bottom:426.171000px;}
.yc6{bottom:426.708000px;}
.y2b0{bottom:426.940500px;}
.y414{bottom:427.068000px;}
.y4ba{bottom:427.380000px;}
.y5b1{bottom:428.262000px;}
.y238{bottom:428.578500px;}
.y308{bottom:428.796000px;}
.y3bf{bottom:429.528000px;}
.y4d9{bottom:429.534000px;}
.y571{bottom:429.796500px;}
.y214{bottom:429.979500px;}
.y448{bottom:430.461000px;}
.y155{bottom:430.648500px;}
.y3d4{bottom:431.061000px;}
.y37a{bottom:431.926500px;}
.y590{bottom:434.382000px;}
.y257{bottom:434.734500px;}
.y620{bottom:435.592500px;}
.y511{bottom:436.185000px;}
.y82{bottom:437.128500px;}
.y71c{bottom:437.295000px;}
.y4e{bottom:437.425500px;}
.y7c9{bottom:437.475000px;}
.y532{bottom:438.195000px;}
.y773{bottom:438.555000px;}
.y29d{bottom:438.591000px;}
.y648{bottom:438.594000px;}
.y38e{bottom:438.730500px;}
.y10d{bottom:438.735000px;}
.y26{bottom:438.816000px;}
.y437{bottom:439.053000px;}
.y346{bottom:440.508000px;}
.y4a5{bottom:440.755500px;}
.yec{bottom:440.838000px;}
.y2e9{bottom:441.367500px;}
.y693{bottom:441.570000px;}
.y59e{bottom:443.163000px;}
.y1f1{bottom:443.196000px;}
.y3eb{bottom:443.316000px;}
.y1d0{bottom:443.736000px;}
.y2af{bottom:444.873000px;}
.y4b9{bottom:445.312500px;}
.y19e{bottom:446.262000px;}
.y189{bottom:446.307000px;}
.y606{bottom:446.661000px;}
.y5d4{bottom:446.941500px;}
.y136{bottom:447.057000px;}
.y533{bottom:447.160500px;}
.y27d{bottom:447.177000px;}
.y4d8{bottom:447.468000px;}
.y467{bottom:448.587000px;}
.yc5{bottom:449.124000px;}
.y413{bottom:449.482500px;}
.y5f6{bottom:449.875500px;}
.y66d{bottom:450.171000px;}
.y237{bottom:450.994500px;}
.y307{bottom:451.212000px;}
.y6{bottom:451.629000px;}
.y3be{bottom:451.944000px;}
.y213{bottom:452.395500px;}
.y447{bottom:452.877000px;}
.y6cf{bottom:453.135000px;}
.y502{bottom:453.270000px;}
.y3d3{bottom:453.477000px;}
.y379{bottom:454.342500px;}
.y81{bottom:455.572500px;}
.y71b{bottom:455.655000px;}
.y4d{bottom:455.743500px;}
.y364{bottom:455.761500px;}
.y127{bottom:456.397500px;}
.y647{bottom:456.526500px;}
.y7c8{bottom:456.555000px;}
.y25{bottom:456.748500px;}
.y58f{bottom:456.798000px;}
.y772{bottom:458.175000px;}
.y4a4{bottom:458.688000px;}
.y399{bottom:459.214500px;}
.y692{bottom:459.502500px;}
.y436{bottom:461.469000px;}
.y2cd{bottom:461.814000px;}
.y7a7{bottom:462.675000px;}
.y345{bottom:462.924000px;}
.yeb{bottom:463.254000px;}
.y570{bottom:463.903500px;}
.y61f{bottom:464.607000px;}
.y4d7{bottom:465.400500px;}
.y59d{bottom:465.579000px;}
.y1f0{bottom:465.612000px;}
.y3ea{bottom:465.732000px;}
.y1cf{bottom:466.152000px;}
.y1b1{bottom:467.199000px;}
.y547{bottom:467.847000px;}
.y66c{bottom:468.103500px;}
.y6f6{bottom:468.615000px;}
.y6ae{bottom:468.703500px;}
.y188{bottom:468.723000px;}
.y5d3{bottom:469.357500px;}
.y27c{bottom:469.593000px;}
.yc4{bottom:471.540000px;}
.y412{bottom:471.898500px;}
.y19d{bottom:471.993000px;}
.y5f5{bottom:472.291500px;}
.y605{bottom:472.792500px;}
.y531{bottom:473.163000px;}
.y10c{bottom:473.410500px;}
.y306{bottom:473.628000px;}
.y363{bottom:473.694000px;}
.y71a{bottom:473.835000px;}
.y80{bottom:474.016500px;}
.y4c{bottom:474.063000px;}
.y744{bottom:474.555000px;}
.y24{bottom:474.682500px;}
.y212{bottom:474.811500px;}
.y501{bottom:475.686000px;}
.y7c7{bottom:475.815000px;}
.y3d2{bottom:475.893000px;}
.y771{bottom:476.355000px;}
.y378{bottom:476.758500px;}
.y4b8{bottom:478.099500px;}
.y466{bottom:478.722000px;}
.y58e{bottom:479.214000px;}
.y2e8{bottom:481.195500px;}
.y61e{bottom:482.539500px;}
.y435{bottom:483.885000px;}
.y148{bottom:484.582500px;}
.y256{bottom:484.809000px;}
.y3bd{bottom:484.962000px;}
.y344{bottom:485.340000px;}
.y446{bottom:485.487000px;}
.y546{bottom:485.779500px;}
.y56f{bottom:486.319500px;}
.y6ad{bottom:486.637500px;}
.y6ce{bottom:487.875000px;}
.y646{bottom:487.927500px;}
.y59c{bottom:487.995000px;}
.y1ef{bottom:488.028000px;}
.y1ce{bottom:488.568000px;}
.y465{bottom:488.973000px;}
.y52f{bottom:489.601500px;}
.y1b0{bottom:489.615000px;}
.y7a6{bottom:490.215000px;}
.y691{bottom:490.656000px;}
.y187{bottom:491.139000px;}
.y5d2{bottom:491.773500px;}
.y7f{bottom:491.950500px;}
.y719{bottom:492.195000px;}
.y4b{bottom:492.381000px;}
.yea{bottom:492.438000px;}
.y23{bottom:492.615000px;}
.y27b{bottom:493.432500px;}
.y4a3{bottom:493.452000px;}
.yc3{bottom:493.956000px;}
.y411{bottom:494.314500px;}
.y19c{bottom:494.409000px;}
.y4d6{bottom:494.572500px;}
.y5f4{bottom:494.707500px;}
.y7c6{bottom:494.895000px;}
.y604{bottom:495.208500px;}
.y770{bottom:495.615000px;}
.y10b{bottom:495.826500px;}
.y305{bottom:496.044000px;}
.y6f5{bottom:497.055000px;}
.y211{bottom:497.227500px;}
.y500{bottom:498.102000px;}
.y3d1{bottom:498.309000px;}
.y530{bottom:498.568500px;}
.y29c{bottom:499.171500px;}
.y377{bottom:499.174500px;}
.y3e9{bottom:499.848000px;}
.y66b{bottom:500.034000px;}
.y4b7{bottom:500.515500px;}
.y58d{bottom:501.630000px;}
.y545{bottom:503.713500px;}
.y645{bottom:505.860000px;}
.y434{bottom:506.301000px;}
.y147{bottom:506.998500px;}
.y255{bottom:507.225000px;}
.y362{bottom:507.681000px;}
.y343{bottom:507.756000px;}
.y445{bottom:507.903000px;}
.y126{bottom:508.179000px;}
.y7a5{bottom:508.575000px;}
.y690{bottom:508.588500px;}
.y56e{bottom:508.735500px;}
.y7e{bottom:510.394500px;}
.y59b{bottom:510.411000px;}
.y1ee{bottom:510.444000px;}
.y22{bottom:510.547500px;}
.y718{bottom:510.555000px;}
.y4a{bottom:510.700500px;}
.y1cd{bottom:510.984000px;}
.y61d{bottom:511.555500px;}
.y3fc{bottom:511.689000px;}
.y1af{bottom:512.031000px;}
.y135{bottom:512.269500px;}
.y510{bottom:512.511000px;}
.y7c5{bottom:513.255000px;}
.y186{bottom:513.555000px;}
.y76f{bottom:513.975000px;}
.y5d1{bottom:514.188000px;}
.ye9{bottom:514.854000px;}
.y6cd{bottom:514.875000px;}
.y27a{bottom:515.848500px;}
.y4a2{bottom:515.868000px;}
.y6f4{bottom:515.955000px;}
.yc2{bottom:516.372000px;}
.y6ac{bottom:516.525000px;}
.y3bc{bottom:516.627000px;}
.y29b{bottom:517.104000px;}
.y5f3{bottom:517.123500px;}
.y603{bottom:517.624500px;}
.y742{bottom:517.935000px;}
.y66a{bottom:517.966500px;}
.y5b0{bottom:518.242500px;}
.y304{bottom:518.460000px;}
.y236{bottom:518.560500px;}
.ya6{bottom:519.513000px;}
.y210{bottom:519.643500px;}
.y4ff{bottom:520.518000px;}
.y3d0{bottom:520.725000px;}
.y376{bottom:521.590500px;}
.y544{bottom:521.646000px;}
.y52e{bottom:524.571000px;}
.y68f{bottom:526.521000px;}
.y7a4{bottom:526.755000px;}
.y21{bottom:528.480000px;}
.y410{bottom:528.646500px;}
.y717{bottom:528.735000px;}
.y7d{bottom:528.838500px;}
.y5{bottom:529.438500px;}
.y61c{bottom:529.488000px;}
.y254{bottom:529.641000px;}
.y485{bottom:529.827000px;}
.y361{bottom:530.097000px;}
.y342{bottom:530.172000px;}
.y134{bottom:530.203500px;}
.y10a{bottom:530.425500px;}
.y50f{bottom:530.445000px;}
.y125{bottom:530.595000px;}
.y7c4{bottom:531.615000px;}
.y76e{bottom:532.155000px;}
.y4d5{bottom:532.827000px;}
.y1ed{bottom:532.860000px;}
.y19b{bottom:533.209500px;}
.y1cc{bottom:533.400000px;}
.y3fb{bottom:534.105000px;}
.y1ae{bottom:534.447000px;}
.y6ab{bottom:534.457500px;}
.y4b6{bottom:535.065000px;}
.y669{bottom:535.900500px;}
.y185{bottom:535.971000px;}
.y5d0{bottom:536.604000px;}
.y644{bottom:537.261000px;}
.ye8{bottom:537.270000px;}
.ya5{bottom:537.447000px;}
.y279{bottom:538.264500px;}
.y4a1{bottom:538.284000px;}
.yc1{bottom:538.788000px;}
.y3bb{bottom:539.043000px;}
.y602{bottom:540.039000px;}
.y3b3{bottom:540.165000px;}
.y5af{bottom:540.658500px;}
.y303{bottom:540.876000px;}
.y235{bottom:540.976500px;}
.y52c{bottom:541.008000px;}
.y433{bottom:541.195500px;}
.y58c{bottom:541.497000px;}
.y464{bottom:541.522500px;}
.y20f{bottom:542.059500px;}
.y6f3{bottom:542.955000px;}
.y3cf{bottom:543.141000px;}
.y2e7{bottom:543.985500px;}
.y375{bottom:544.006500px;}
.y49{bottom:544.219500px;}
.y7a3{bottom:546.015000px;}
.y20{bottom:546.412500px;}
.y716{bottom:547.095000px;}
.y7c{bottom:547.282500px;}
.y61b{bottom:547.420500px;}
.y56d{bottom:547.518000px;}
.y50e{bottom:548.377500px;}
.y3e8{bottom:548.787000px;}
.y6ca{bottom:549.795000px;}
.y52d{bottom:549.975000px;}
.y146{bottom:550.458000px;}
.y76d{bottom:551.415000px;}
.y463{bottom:551.773500px;}
.y484{bottom:552.243000px;}
.y360{bottom:552.513000px;}
.y341{bottom:552.588000px;}
.y124{bottom:553.011000px;}
.y5f2{bottom:554.482500px;}
.y643{bottom:555.193500px;}
.y59a{bottom:555.243000px;}
.y1ec{bottom:555.276000px;}
.ya4{bottom:555.379500px;}
.y323{bottom:556.122000px;}
.y3fa{bottom:556.521000px;}
.y1ad{bottom:556.863000px;}
.y543{bottom:557.200500px;}
.y68e{bottom:557.674500px;}
.y184{bottom:558.387000px;}
.y432{bottom:558.456000px;}
.y5cf{bottom:559.020000px;}
.ye7{bottom:559.686000px;}
.y278{bottom:560.680500px;}
.yc0{bottom:561.300000px;}
.y3ba{bottom:561.459000px;}
.y741{bottom:561.885000px;}
.y601{bottom:562.455000px;}
.y48{bottom:562.539000px;}
.y3b2{bottom:562.581000px;}
.y5ae{bottom:563.074500px;}
.y302{bottom:563.292000px;}
.y234{bottom:563.392500px;}
.y431{bottom:563.611500px;}
.y7a2{bottom:564.225000px;}
.y1f{bottom:564.345000px;}
.y444{bottom:564.460500px;}
.y4d4{bottom:564.828000px;}
.y7b{bottom:565.215000px;}
.y2cc{bottom:565.248000px;}
.y715{bottom:565.485000px;}
.y16e{bottom:565.615500px;}
.y50d{bottom:566.310000px;}
.y2e6{bottom:566.401500px;}
.y1cb{bottom:566.403000px;}
.y253{bottom:567.178500px;}
.y290{bottom:567.375000px;}
.y668{bottom:567.831000px;}
.y7c3{bottom:568.185000px;}
.y109{bottom:568.453500px;}
.y52b{bottom:568.506000px;}
.y3ce{bottom:569.011500px;}
.y20e{bottom:569.199000px;}
.y76c{bottom:569.625000px;}
.y3e7{bottom:571.203000px;}
.y4a0{bottom:571.779000px;}
.y145{bottom:572.874000px;}
.y642{bottom:573.126000px;}
.ya3{bottom:573.312000px;}
.y483{bottom:574.659000px;}
.y35f{bottom:574.929000px;}
.y340{bottom:575.004000px;}
.y68d{bottom:575.607000px;}
.y123{bottom:576.112500px;}
.y61a{bottom:576.435000px;}
.y5f1{bottom:576.898500px;}
.y599{bottom:577.659000px;}
.y1eb{bottom:577.692000px;}
.y374{bottom:578.329500px;}
.y322{bottom:578.538000px;}
.y3f9{bottom:578.937000px;}
.y1ac{bottom:579.279000px;}
.y542{bottom:579.616500px;}
.y183{bottom:580.803000px;}
.y47{bottom:580.857000px;}
.y740{bottom:580.965000px;}
.y5ce{bottom:581.436000px;}
.y40f{bottom:581.949000px;}
.ye6{bottom:582.102000px;}
.y1e{bottom:582.279000px;}
.y443{bottom:582.393000px;}
.y7a1{bottom:582.585000px;}
.y277{bottom:583.096500px;}
.y4f5{bottom:583.219500px;}
.y7a{bottom:583.659000px;}
.ybf{bottom:583.716000px;}
.y714{bottom:583.845000px;}
.y3b9{bottom:583.875000px;}
.y6f2{bottom:584.745000px;}
.y600{bottom:584.871000px;}
.y4b5{bottom:585.256500px;}
.y5ad{bottom:585.490500px;}
.y301{bottom:585.708000px;}
.y3b1{bottom:585.745500px;}
.y667{bottom:585.763500px;}
.y233{bottom:585.808500px;}
.y430{bottom:586.027500px;}
.y7c2{bottom:586.365000px;}
.y4d3{bottom:587.244000px;}
.y2cb{bottom:587.664000px;}
.y16d{bottom:588.031500px;}
.y2e5{bottom:588.817500px;}
.y76b{bottom:588.885000px;}
.y28f{bottom:589.791000px;}
.ya2{bottom:591.244500px;}
.y3cd{bottom:591.427500px;}
.y20d{bottom:591.615000px;}
.y68c{bottom:593.539500px;}
.y3e6{bottom:593.619000px;}
.y19a{bottom:595.711500px;}
.y482{bottom:597.075000px;}
.y35e{bottom:597.345000px;}
.y33f{bottom:597.760500px;}
.y122{bottom:598.528500px;}
.y46{bottom:599.176500px;}
.y73f{bottom:599.865000px;}
.y598{bottom:600.075000px;}
.y1ea{bottom:600.106500px;}
.y1d{bottom:600.211500px;}
.y442{bottom:600.327000px;}
.y7a0{bottom:600.945000px;}
.y321{bottom:600.954000px;}
.y3f8{bottom:601.353000px;}
.y52a{bottom:601.980000px;}
.y713{bottom:602.025000px;}
.y541{bottom:602.032500px;}
.y182{bottom:603.219000px;}
.y5cd{bottom:603.852000px;}
.y462{bottom:604.323000px;}
.y40e{bottom:604.365000px;}
.y58b{bottom:604.404000px;}
.y641{bottom:604.527000px;}
.y619{bottom:605.449500px;}
.y7c1{bottom:605.625000px;}
.y4f4{bottom:605.635500px;}
.y252{bottom:605.770500px;}
.ybe{bottom:606.132000px;}
.y6f1{bottom:606.525000px;}
.y1ab{bottom:606.610500px;}
.y276{bottom:606.936000px;}
.y76a{bottom:607.065000px;}
.y56c{bottom:607.284000px;}
.y5ff{bottom:607.287000px;}
.y4b4{bottom:607.672500px;}
.y5ac{bottom:607.906500px;}
.y4fd{bottom:607.929000px;}
.y300{bottom:608.124000px;}
.y3b0{bottom:608.161500px;}
.y232{bottom:608.224500px;}
.y42f{bottom:608.443500px;}
.ya1{bottom:609.177000px;}
.y4d2{bottom:609.660000px;}
.y2ca{bottom:610.080000px;}
.y16c{bottom:610.447500px;}
.y4{bottom:610.770000px;}
.y5f0{bottom:611.269500px;}
.ye5{bottom:611.287500px;}
.y6aa{bottom:612.166500px;}
.y28e{bottom:612.207000px;}
.y3cc{bottom:613.843500px;}
.y20c{bottom:614.031000px;}
.y461{bottom:614.575500px;}
.y1ca{bottom:615.858000px;}
.y3e5{bottom:616.035000px;}
.y144{bottom:616.333500px;}
.y79{bottom:617.047500px;}
.y45{bottom:617.494500px;}
.y666{bottom:617.694000px;}
.y199{bottom:618.127500px;}
.y1c{bottom:618.144000px;}
.y73e{bottom:618.765000px;}
.y79f{bottom:619.125000px;}
.y481{bottom:619.491000px;}
.y529{bottom:619.912500px;}
.y33e{bottom:620.176500px;}
.y712{bottom:620.385000px;}
.y35d{bottom:620.689500px;}
.y121{bottom:620.944500px;}
.y640{bottom:622.459500px;}
.y1e9{bottom:622.522500px;}
.y49f{bottom:622.656000px;}
.y618{bottom:623.383500px;}
.y4fe{bottom:623.451000px;}
.y3f7{bottom:623.769000px;}
.y7c0{bottom:623.985000px;}
.y540{bottom:624.448500px;}
.y68b{bottom:624.693000px;}
.y320{bottom:624.894000px;}
.y181{bottom:625.635000px;}
.y108{bottom:626.032500px;}
.y769{bottom:626.145000px;}
.y6c9{bottom:626.325000px;}
.y40d{bottom:626.781000px;}
.y58a{bottom:626.820000px;}
.ya0{bottom:627.109500px;}
.y5cc{bottom:627.600000px;}
.y373{bottom:627.871500px;}
.y4f3{bottom:628.051500px;}
.y6f0{bottom:628.305000px;}
.ybd{bottom:628.546500px;}
.y2e4{bottom:628.645500px;}
.y1aa{bottom:629.026500px;}
.y275{bottom:629.352000px;}
.y56b{bottom:629.700000px;}
.y5fe{bottom:629.703000px;}
.y6a9{bottom:630.099000px;}
.y4fc{bottom:630.345000px;}
.y2ff{bottom:630.540000px;}
.y3af{bottom:630.577500px;}
.y231{bottom:630.640500px;}
.y4d1{bottom:632.076000px;}
.y2c9{bottom:632.496000px;}
.y16b{bottom:632.863500px;}
.y5ef{bottom:633.685500px;}
.ye4{bottom:633.703500px;}
.y28d{bottom:634.623000px;}
.y78{bottom:635.491500px;}
.y665{bottom:635.626500px;}
.y44{bottom:635.814000px;}
.y1b{bottom:636.076500px;}
.y20b{bottom:636.447000px;}
.y73d{bottom:637.845000px;}
.y597{bottom:638.164500px;}
.y1c9{bottom:638.274000px;}
.y79e{bottom:638.385000px;}
.y711{bottom:638.745000px;}
.y143{bottom:638.749500px;}
.y63f{bottom:640.393500px;}
.y198{bottom:640.543500px;}
.y617{bottom:641.316000px;}
.y35{bottom:641.604000px;}
.y480{bottom:641.907000px;}
.y4b3{bottom:642.222000px;}
.y7bf{bottom:642.345000px;}
.y33d{bottom:642.592500px;}
.y3b8{bottom:643.044000px;}
.y35c{bottom:643.105500px;}
.y42e{bottom:643.339500px;}
.y251{bottom:644.362500px;}
.y9f{bottom:645.043500px;}
.y1e8{bottom:645.063000px;}
.y49e{bottom:645.072000px;}
.y768{bottom:645.225000px;}
.y3f6{bottom:646.185000px;}
.y6c8{bottom:646.485000px;}
.y496{bottom:647.136000px;}
.y31f{bottom:647.310000px;}
.y6a8{bottom:648.031500px;}
.y107{bottom:648.448500px;}
.y40c{bottom:649.197000px;}
.y589{bottom:649.236000px;}
.y180{bottom:649.540500px;}
.y5cb{bottom:650.016000px;}
.y6ef{bottom:650.085000px;}
.y372{bottom:650.287500px;}
.y4f2{bottom:650.467500px;}
.y528{bottom:650.880000px;}
.ybc{bottom:651.058500px;}
.y274{bottom:651.768000px;}
.y56a{bottom:652.116000px;}
.y5fd{bottom:652.119000px;}
.y4fb{bottom:652.761000px;}
.y2fe{bottom:652.956000px;}
.y230{bottom:653.056500px;}
.y3ae{bottom:653.743500px;}
.y77{bottom:653.935500px;}
.y1a{bottom:654.009000px;}
.y43{bottom:654.132000px;}
.y4d0{bottom:654.492000px;}
.y2c8{bottom:654.912000px;}
.y68a{bottom:655.845000px;}
.y16a{bottom:655.849500px;}
.ye3{bottom:656.119500px;}
.y79d{bottom:656.565000px;}
.y73c{bottom:656.745000px;}
.y710{bottom:657.105000px;}
.y53f{bottom:658.693500px;}
.y120{bottom:660.132000px;}
.y7be{bottom:660.525000px;}
.y1c8{bottom:660.690000px;}
.y3b7{bottom:660.978000px;}
.y197{bottom:662.959500px;}
.y9e{bottom:662.976000px;}
.y47f{bottom:664.323000px;}
.y767{bottom:664.485000px;}
.y3{bottom:664.569000px;}
.y33c{bottom:665.008500px;}
.y3cb{bottom:665.022000px;}
.y35b{bottom:665.521500px;}
.y42d{bottom:665.755500px;}
.y460{bottom:666.168000px;}
.y6c7{bottom:666.465000px;}
.y1e7{bottom:667.479000px;}
.y49d{bottom:667.488000px;}
.y664{bottom:667.557000px;}
.y3f5{bottom:668.601000px;}
.y495{bottom:669.552000px;}
.y31e{bottom:669.726000px;}
.y616{bottom:670.330500px;}
.y106{bottom:670.864500px;}
.y1a9{bottom:670.867500px;}
.y28c{bottom:671.013000px;}
.y5ee{bottom:671.046000px;}
.y588{bottom:671.652000px;}
.y63e{bottom:671.794500px;}
.y6ee{bottom:671.865000px;}
.y19{bottom:671.941500px;}
.y17f{bottom:671.956500px;}
.y76{bottom:672.379500px;}
.y5ca{bottom:672.432000px;}
.y42{bottom:672.451500px;}
.y40b{bottom:672.574500px;}
.y371{bottom:672.703500px;}
.y4f1{bottom:672.883500px;}
.y527{bottom:673.296000px;}
.ybb{bottom:673.474500px;}
.y689{bottom:673.777500px;}
.y569{bottom:674.530500px;}
.y3e4{bottom:675.169500px;}
.y4fa{bottom:675.177000px;}
.y70f{bottom:675.285000px;}
.yb4{bottom:675.381000px;}
.y22f{bottom:675.472500px;}
.y273{bottom:675.607500px;}
.y79c{bottom:675.825000px;}
.y3ad{bottom:676.159500px;}
.y73b{bottom:676.365000px;}
.y2c7{bottom:677.328000px;}
.y6a7{bottom:677.919000px;}
.y20a{bottom:677.926500px;}
.y5fc{bottom:678.250500px;}
.y169{bottom:678.265500px;}
.ye2{bottom:678.535500px;}
.y7bd{bottom:678.885000px;}
.y3b6{bottom:678.910500px;}
.y518{bottom:679.063500px;}
.y9d{bottom:680.908500px;}
.y766{bottom:682.665000px;}
.y250{bottom:682.954500px;}
.y1c7{bottom:683.106000px;}
.y142{bottom:685.197000px;}
.y196{bottom:685.375500px;}
.y2fd{bottom:685.459500px;}
.y47e{bottom:686.739000px;}
.y33b{bottom:687.424500px;}
.y35a{bottom:687.937500px;}
.y42c{bottom:688.171500px;}
.y615{bottom:688.263000px;}
.y4cf{bottom:688.293000px;}
.y45f{bottom:688.584000px;}
.y63d{bottom:689.727000px;}
.y6c6{bottom:689.865000px;}
.y18{bottom:689.875500px;}
.y1e6{bottom:689.895000px;}
.y41{bottom:690.769500px;}
.y75{bottom:690.823500px;}
.y2e3{bottom:691.435500px;}
.y494{bottom:691.968000px;}
.y31d{bottom:692.142000px;}
.y3e3{bottom:693.102000px;}
.yb3{bottom:693.315000px;}
.y28b{bottom:693.429000px;}
.y5ed{bottom:693.462000px;}
.y70e{bottom:693.645000px;}
.y6ed{bottom:693.825000px;}
.y79b{bottom:694.005000px;}
.y17e{bottom:694.372500px;}
.y5c9{bottom:694.848000px;}
.y40a{bottom:694.990500px;}
.y587{bottom:695.113500px;}
.y370{bottom:695.119500px;}
.y4f0{bottom:695.299500px;}
.y526{bottom:695.712000px;}
.y6a6{bottom:695.853000px;}
.yba{bottom:695.890500px;}
.y596{bottom:695.920500px;}
.y568{bottom:696.946500px;}
.y517{bottom:696.996000px;}
.y7bc{bottom:697.245000px;}
.y73a{bottom:697.425000px;}
.y4f9{bottom:697.593000px;}
.y5ab{bottom:697.888500px;}
.y272{bottom:698.023500px;}
.y22e{bottom:698.206500px;}
.y3ac{bottom:698.575500px;}
.y9c{bottom:698.841000px;}
.y663{bottom:699.487500px;}
.y2c6{bottom:699.744000px;}
.y5fb{bottom:700.666500px;}
.y168{bottom:700.681500px;}
.y765{bottom:701.925000px;}
.y688{bottom:704.931000px;}
.y1c6{bottom:705.522000px;}
.y49c{bottom:706.362000px;}
.ye1{bottom:707.719500px;}
.y195{bottom:707.790000px;}
.y17{bottom:707.808000px;}
.y105{bottom:708.529500px;}
.y40{bottom:709.089000px;}
.y47d{bottom:709.155000px;}
.y74{bottom:709.267500px;}
.y33a{bottom:709.840500px;}
.y42b{bottom:710.587500px;}
.y45e{bottom:711.000000px;}
.y3e2{bottom:711.034500px;}
.yb2{bottom:711.247500px;}
.y359{bottom:711.283500px;}
.y70d{bottom:712.005000px;}
.y79a{bottom:712.365000px;}
.y3ca{bottom:713.211000px;}
.y2e2{bottom:713.851500px;}
.y493{bottom:714.384000px;}
.y516{bottom:714.928500px;}
.y7bb{bottom:715.425000px;}
.y6ec{bottom:715.605000px;}
.y28a{bottom:715.845000px;}
.y5ec{bottom:715.878000px;}
.y9b{bottom:716.773500px;}
.y17d{bottom:716.788500px;}
.y5c8{bottom:717.264000px;}
.y614{bottom:717.277500px;}
.y662{bottom:717.420000px;}
.y586{bottom:717.529500px;}
.y36f{bottom:717.535500px;}
.y525{bottom:718.128000px;}
.y595{bottom:718.336500px;}
.y2{bottom:718.366500px;}
.y409{bottom:718.369500px;}
.yb9{bottom:718.401000px;}
.y739{bottom:718.485000px;}
.y567{bottom:719.836500px;}
.y764{bottom:720.105000px;}
.y271{bottom:720.439500px;}
.y24f{bottom:720.490500px;}
.y22d{bottom:720.622500px;}
.y3ab{bottom:720.991500px;}
.y11f{bottom:721.066500px;}
.y63c{bottom:721.128000px;}
.y2ae{bottom:721.257000px;}
.y2c5{bottom:722.160000px;}
.y1e5{bottom:722.634000px;}
.y687{bottom:722.863500px;}
.y4ef{bottom:722.907000px;}
.y5fa{bottom:723.081000px;}
.y167{bottom:723.097500px;}
.y6c5{bottom:723.885000px;}
.y16{bottom:725.740500px;}
.y34{bottom:726.306000px;}
.y3f{bottom:727.408500px;}
.y31c{bottom:727.540500px;}
.y73{bottom:727.711500px;}
.y1c5{bottom:727.938000px;}
.y3e1{bottom:728.967000px;}
.yb1{bottom:729.180000px;}
.ye0{bottom:730.135500px;}
.y70c{bottom:730.185000px;}
.y799{bottom:730.725000px;}
.y104{bottom:730.945500px;}
.y47c{bottom:731.571000px;}
.y53e{bottom:732.069000px;}
.y4b2{bottom:732.247500px;}
.y339{bottom:732.256500px;}
.y2fc{bottom:732.568500px;}
.y42a{bottom:733.003500px;}
.y45d{bottom:733.416000px;}
.y358{bottom:733.698000px;}
.y7ba{bottom:733.785000px;}
.y613{bottom:735.210000px;}
.y2e1{bottom:736.267500px;}
.y492{bottom:736.798500px;}
.y6eb{bottom:737.385000px;}
.y5eb{bottom:738.294000px;}
.y763{bottom:738.465000px;}
.y3f4{bottom:739.053000px;}
.y63b{bottom:739.060500px;}
.y17c{bottom:739.204500px;}
.y738{bottom:739.545000px;}
.y5c7{bottom:739.680000px;}
.y585{bottom:739.944000px;}
.y36e{bottom:739.951500px;}
.y594{bottom:740.752500px;}
.y408{bottom:740.785500px;}
.y686{bottom:740.796000px;}
.yb8{bottom:740.817000px;}
.y566{bottom:742.252500px;}
.y4f8{bottom:742.771500px;}
.y270{bottom:742.855500px;}
.y24e{bottom:742.906500px;}
.y22c{bottom:743.037000px;}
.y5aa{bottom:743.038500px;}
.y3aa{bottom:743.407500px;}
.y11e{bottom:743.482500px;}
.y15{bottom:743.673000px;}
.y4ee{bottom:745.323000px;}
.y5f9{bottom:745.497000px;}
.y72{bottom:745.645500px;}
.y3e{bottom:745.726500px;}
.y1a8{bottom:745.854000px;}
.yb0{bottom:747.112500px;}
.y70b{bottom:748.545000px;}
.y798{bottom:748.905000px;}
.y661{bottom:749.350500px;}
.y9a{bottom:749.650500px;}
.y53d{bottom:750.001500px;}
.y4b1{bottom:750.181500px;}
.y141{bottom:750.265500px;}
.y1c4{bottom:750.354000px;}
.y524{bottom:750.946500px;}
.y209{bottom:751.917000px;}
.ydf{bottom:752.551500px;}
.y7b9{bottom:752.865000px;}
.y47b{bottom:753.987000px;}
.y338{bottom:754.672500px;}
.y2fb{bottom:754.984500px;}
.y2c4{bottom:755.332500px;}
.y45c{bottom:755.832000px;}
.y357{bottom:756.114000px;}
.y166{bottom:756.682500px;}
.y4ce{bottom:756.988500px;}
.y762{bottom:757.545000px;}
.y6c4{bottom:758.625000px;}
.y2e0{bottom:758.683500px;}
.y6ea{bottom:759.165000px;}
.y491{bottom:759.214500px;}
.y737{bottom:760.605000px;}
.y5ea{bottom:760.710000px;}
.y14{bottom:761.605500px;}
.y17b{bottom:761.620500px;}
.y593{bottom:763.167000px;}
.y407{bottom:763.201500px;}
.yb7{bottom:763.233000px;}
.y5c6{bottom:763.426500px;}
.y3d{bottom:764.046000px;}
.y71{bottom:764.089500px;}
.y612{bottom:764.226000px;}
.y565{bottom:764.668500px;}
.yaf{bottom:765.045000px;}
.y26f{bottom:765.271500px;}
.y24d{bottom:765.322500px;}
.y22b{bottom:765.453000px;}
.y5a9{bottom:765.454500px;}
.y103{bottom:765.621000px;}
.y11d{bottom:765.898500px;}
.y2ad{bottom:766.089000px;}
.y49b{bottom:766.392000px;}
.y70a{bottom:766.905000px;}
.y660{bottom:767.283000px;}
.y99{bottom:767.583000px;}
.y4ed{bottom:767.739000px;}
.y429{bottom:767.898000px;}
.y53c{bottom:767.934000px;}
.y797{bottom:767.985000px;}
.y63a{bottom:770.461500px;}
.y7b8{bottom:771.225000px;}
.y1e4{bottom:771.325500px;}
.y194{bottom:771.858000px;}
.y685{bottom:771.949500px;}
.y1c3{bottom:772.770000px;}
.y6a5{bottom:773.560500px;}
.y208{bottom:774.333000px;}
.yde{bottom:774.967500px;}
.y761{bottom:775.905000px;}
.y47a{bottom:776.403000px;}
.y337{bottom:777.088500px;}
.y3a9{bottom:777.334500px;}
.y2fa{bottom:777.400500px;}
.y2c3{bottom:777.748500px;}
.y45b{bottom:778.248000px;}
.y4cd{bottom:779.404500px;}
.y13{bottom:779.538000px;}
.y6e9{bottom:780.945000px;}
.y490{bottom:781.630500px;}
.y736{bottom:781.665000px;}
.y611{bottom:782.158500px;}
.y3c{bottom:782.364000px;}
.y70{bottom:782.533500px;}
.yae{bottom:782.979000px;}
.y5e9{bottom:783.126000px;}
.y31b{bottom:783.931500px;}
.y65f{bottom:785.215500px;}
.y709{bottom:785.265000px;}
.y3c9{bottom:785.275500px;}
.y98{bottom:785.517000px;}
.y17a{bottom:785.526000px;}
.y5c5{bottom:785.842500px;}
.y406{bottom:786.580500px;}
.y564{bottom:787.084500px;}
.y796{bottom:787.245000px;}
.y26e{bottom:787.687500px;}
.y24c{bottom:787.738500px;}
.y22a{bottom:787.869000px;}
.y102{bottom:788.037000px;}
.y11c{bottom:788.314500px;}
.y639{bottom:788.394000px;}
.y2ac{bottom:788.505000px;}
.y49a{bottom:788.808000px;}
.y7b7{bottom:789.585000px;}
.y684{bottom:789.882000px;}
.y4ec{bottom:790.155000px;}
.y428{bottom:790.314000px;}
.y356{bottom:790.383000px;}
.y6c3{bottom:792.645000px;}
.y1e3{bottom:793.741500px;}
.y760{bottom:794.265000px;}
.y1c2{bottom:795.448500px;}
.ydd{bottom:797.383500px;}
.y12{bottom:797.472000px;}
.y479{bottom:798.819000px;}
.y36d{bottom:799.305000px;}
.y336{bottom:799.504500px;}
.y2f9{bottom:799.816500px;}
.y523{bottom:799.867500px;}
.y2c2{bottom:800.164500px;}
.y45a{bottom:800.664000px;}
.yad{bottom:800.911500px;}
.y6f{bottom:800.977500px;}
.y207{bottom:801.472500px;}
.y4cc{bottom:801.820500px;}
.y6e8{bottom:802.725000px;}
.y3c8{bottom:803.208000px;}
.y708{bottom:803.445000px;}
.y97{bottom:803.449500px;}
.y584{bottom:803.751000px;}
.y165{bottom:804.087000px;}
.y795{bottom:805.425000px;}
.y5e8{bottom:805.542000px;}
.y31a{bottom:806.347500px;}
.y179{bottom:807.942000px;}
.y5c4{bottom:808.258500px;}
.y7b6{bottom:808.485000px;}
.y289{bottom:808.948500px;}
.y405{bottom:808.996500px;}
.y563{bottom:809.500500px;}
.y26d{bottom:810.103500px;}
.y24b{bottom:810.154500px;}
.y229{bottom:810.285000px;}
.y11b{bottom:810.730500px;}
.y2ab{bottom:810.921000px;}
.y610{bottom:811.173000px;}
.y499{bottom:811.224000px;}
.y75f{bottom:812.445000px;}
.y4eb{bottom:812.569500px;}
.y427{bottom:812.730000px;}
.y11{bottom:815.404500px;}
.y3b{bottom:815.884500px;}
.y1e2{bottom:816.157500px;}
.y65e{bottom:817.146000px;}
.y36c{bottom:817.237500px;}
.y1c1{bottom:817.864500px;}
.yac{bottom:818.844000px;}
.y6e{bottom:819.421500px;}
.y48f{bottom:819.514500px;}
.y638{bottom:819.795000px;}
.ydc{bottom:819.799500px;}
.y683{bottom:821.035500px;}
.y478{bottom:821.235000px;}
.y96{bottom:821.382000px;}
.y583{bottom:821.685000px;}
.y707{bottom:821.805000px;}
.y335{bottom:822.261000px;}
.y522{bottom:822.283500px;}
.y2c1{bottom:822.580500px;}
.y101{bottom:822.712500px;}
.y459{bottom:823.080000px;}
.y735{bottom:823.785000px;}
.y4f7{bottom:823.812000px;}
.y206{bottom:823.888500px;}
.y794{bottom:824.505000px;}
.y6e7{bottom:824.685000px;}
.y3a8{bottom:825.727500px;}
.y164{bottom:826.503000px;}
.y288{bottom:826.881000px;}
.y6c2{bottom:827.565000px;}
.y7b5{bottom:827.925000px;}
.y5e7{bottom:827.958000px;}
.y319{bottom:828.763500px;}
.y60f{bottom:829.105500px;}
.y178{bottom:830.358000px;}
.y5c3{bottom:830.674500px;}
.y75e{bottom:830.805000px;}
.y404{bottom:831.412500px;}
.y562{bottom:831.916500px;}
.y26c{bottom:832.519500px;}
.y5a8{bottom:832.701000px;}
.y228{bottom:833.019000px;}
.y10{bottom:833.337000px;}
.y24a{bottom:833.626500px;}
.y3a{bottom:834.202500px;}
.y65d{bottom:835.080000px;}
.y426{bottom:835.146000px;}
.yab{bottom:836.776500px;}
.y637{bottom:837.727500px;}
.y6d{bottom:837.865500px;}
.y1e1{bottom:838.573500px;}
.y682{bottom:838.968000px;}
.y95{bottom:839.314500px;}
.y4ea{bottom:840.178500px;}
.y706{bottom:840.210000px;}
.y1c0{bottom:840.280500px;}
.ydb{bottom:842.215500px;}
.y154{bottom:842.457000px;}
.y355{bottom:843.499500px;}
.y793{bottom:843.630000px;}
.y477{bottom:843.651000px;}
.y2f8{bottom:844.149000px;}
.y334{bottom:844.677000px;}
.y734{bottom:844.890000px;}
.y2c0{bottom:844.996500px;}
.y100{bottom:845.128500px;}
.y458{bottom:845.496000px;}
.y133{bottom:846.135000px;}
.y205{bottom:846.304500px;}
.y7b4{bottom:846.330000px;}
.y6e6{bottom:846.510000px;}
.y3a7{bottom:848.143500px;}
.y163{bottom:848.919000px;}
.y4cb{bottom:849.450000px;}
.y75d{bottom:849.930000px;}
.y5e6{bottom:850.372500px;}
.y318{bottom:851.179500px;}
.yf{bottom:851.269500px;}
.y39{bottom:852.522000px;}
.y177{bottom:852.774000px;}
.y5c2{bottom:853.090500px;}
.y403{bottom:853.827000px;}
.yaa{bottom:854.709000px;}
.y561{bottom:854.806500px;}
.y26b{bottom:854.935500px;}
.y227{bottom:855.435000px;}
.y2aa{bottom:855.753000px;}
.y6c{bottom:855.798000px;}
.y249{bottom:856.042500px;}
.y94{bottom:857.247000px;}
.y425{bottom:857.562000px;}
.y60e{bottom:858.120000px;}
.y705{bottom:858.390000px;}
.y521{bottom:860.481000px;}
.y1e0{bottom:860.989500px;}
.y6c1{bottom:862.350000px;}
.y4e9{bottom:862.594500px;}
.y2f7{bottom:862.678500px;}
.y1bf{bottom:862.696500px;}
.y792{bottom:862.890000px;}
.y69{bottom:863.224500px;}
.y132{bottom:864.069000px;}
.yda{bottom:864.631500px;}
.y7b3{bottom:864.690000px;}
.y153{bottom:864.873000px;}
.y354{bottom:865.915500px;}
.y733{bottom:865.950000px;}
.y476{bottom:866.067000px;}
.y65c{bottom:867.010500px;}
.y333{bottom:867.093000px;}
.y4ca{bottom:867.382500px;}
.y2bf{bottom:867.412500px;}
.y457{bottom:867.912000px;}
.y75c{bottom:868.110000px;}
.y6e5{bottom:868.290000px;}
.y204{bottom:868.720500px;}
.y636{bottom:869.128500px;}
.ye{bottom:869.202000px;}
.y681{bottom:870.120000px;}
.y3a6{bottom:870.559500px;}
.y38{bottom:870.840000px;}
.ya9{bottom:872.641500px;}
.y5e5{bottom:872.788500px;}
.y317{bottom:873.595500px;}
.y176{bottom:875.190000px;}
.y5c1{bottom:875.506500px;}
.y60d{bottom:876.052500px;}
.y402{bottom:876.243000px;}
.y48e{bottom:876.675000px;}
.y704{bottom:876.750000px;}
.y560{bottom:877.222500px;}
.y226{bottom:877.851000px;}
.y2a9{bottom:878.169000px;}
.y248{bottom:878.458500px;}
.y38d{bottom:879.535500px;}
.yff{bottom:879.804000px;}
.y2f6{bottom:881.209500px;}
.y791{bottom:881.250000px;}
.y131{bottom:882.001500px;}
.y7b2{bottom:882.870000px;}
.y65b{bottom:884.943000px;}
.y4e8{bottom:885.009000px;}
.y1be{bottom:885.112500px;}
.y4c9{bottom:885.315000px;}
.y732{bottom:887.010000px;}
.yd9{bottom:887.047500px;}
.y635{bottom:887.061000px;}
.yd{bottom:887.136000px;}
.y152{bottom:887.289000px;}
.y75b{bottom:887.370000px;}
.y5f8{bottom:887.551500px;}
.y29a{bottom:888.306000px;}
.y353{bottom:888.331500px;}
.y475{bottom:888.483000px;}
.y162{bottom:888.558000px;}
.y37{bottom:889.159500px;}
.y6b{bottom:889.186500px;}
.y332{bottom:889.509000px;}
.y2be{bottom:889.828500px;}
.y6e4{bottom:890.070000px;}
.y93{bottom:890.124000px;}
.y456{bottom:890.328000px;}
.ya8{bottom:890.575500px;}
.y203{bottom:891.136500px;}
.y424{bottom:892.458000px;}
.y2df{bottom:892.933500px;}
.y3a5{bottom:892.975500px;}
.y11a{bottom:893.608500px;}
.y498{bottom:893.937000px;}
.y592{bottom:894.765000px;}
.yb6{bottom:894.790500px;}
.y703{bottom:895.110000px;}
.y5e4{bottom:895.204500px;}
.y1df{bottom:895.732500px;}
.y68{bottom:896.101500px;}
.y6bf{bottom:897.090000px;}
.y316{bottom:897.535500px;}
.y5c0{bottom:897.922500px;}
.y48d{bottom:899.091000px;}
.y175{bottom:899.095500px;}
.y790{bottom:899.610000px;}
.y401{bottom:899.622000px;}
.y55f{bottom:899.637000px;}
.y2f5{bottom:899.740500px;}
.y225{bottom:900.267000px;}
.y2a8{bottom:900.585000px;}
.y680{bottom:901.273500px;}
.y7b1{bottom:902.130000px;}
.y4c8{bottom:903.249000px;}
.y634{bottom:904.993500px;}
.yc{bottom:905.068500px;}
.y75a{bottom:905.730000px;}
.y1bd{bottom:907.528500px;}
.y2dd{bottom:907.533000px;}
.y731{bottom:908.070000px;}
.ya7{bottom:908.508000px;}
.yd8{bottom:909.463500px;}
.y151{bottom:909.705000px;}
.y299{bottom:910.722000px;}
.y352{bottom:910.747500px;}
.y474{bottom:910.899000px;}
.y26a{bottom:911.764500px;}
.y6e3{bottom:911.850000px;}
.y331{bottom:911.925000px;}
.y2bd{bottom:912.244500px;}
.y4e7{bottom:912.618000px;}
.y247{bottom:912.966000px;}
.y702{bottom:913.470000px;}
.y202{bottom:913.552500px;}
.yfe{bottom:914.479500px;}
.y423{bottom:914.874000px;}
.y38c{bottom:915.793500px;}
.y65a{bottom:916.873500px;}
.y6a4{bottom:917.023500px;}
.y5e3{bottom:917.620500px;}
.y78f{bottom:917.790000px;}
.y1de{bottom:918.148500px;}
.y2f4{bottom:918.270000px;}
.y67f{bottom:919.206000px;}
.y315{bottom:919.951500px;}
.y7b0{bottom:920.310000px;}
.y48c{bottom:921.507000px;}
.y174{bottom:921.511500px;}
.y5bf{bottom:921.669000px;}
.y400{bottom:922.038000px;}
.y55e{bottom:922.053000px;}
.y224{bottom:922.683000px;}
.y2a7{bottom:923.001000px;}
.y759{bottom:924.090000px;}
.y161{bottom:925.207500px;}
.y3a4{bottom:926.902500px;}
.y67{bottom:928.978500px;}
.y730{bottom:929.130000px;}
.y455{bottom:929.254500px;}
.y269{bottom:929.697000px;}
.y2dc{bottom:929.949000px;}
.y701{bottom:931.650000px;}
.yd7{bottom:931.879500px;}
.y6bd{bottom:932.010000px;}
.y4c7{bottom:932.419500px;}
.y298{bottom:933.138000px;}
.y150{bottom:933.226500px;}
.y473{bottom:933.315000px;}
.y6e2{bottom:933.630000px;}
.y330{bottom:934.341000px;}
.y659{bottom:934.806000px;}
.y4e6{bottom:935.034000px;}
.y78e{bottom:936.150000px;}
.y2f3{bottom:936.204000px;}
.y633{bottom:936.394500px;}
.yfd{bottom:936.895500px;}
.y422{bottom:937.290000px;}
.y7af{bottom:939.570000px;}
.y5e2{bottom:940.036500px;}
.y1bc{bottom:940.531500px;}
.y201{bottom:940.692000px;}
.y314{bottom:942.367500px;}
.y758{bottom:942.990000px;}
.y173{bottom:943.927500px;}
.y5be{bottom:944.085000px;}
.y3ff{bottom:944.454000px;}
.y55d{bottom:944.943000px;}
.y223{bottom:945.099000px;}
.y2a6{bottom:945.417000px;}
.y520{bottom:945.654000px;}
.y6a3{bottom:946.911000px;}
.y160{bottom:947.623500px;}
.y268{bottom:947.629500px;}
.y700{bottom:950.010000px;}
.y72f{bottom:950.190000px;}
.y67e{bottom:950.359500px;}
.y351{bottom:950.395500px;}
.y454{bottom:951.670500px;}
.y38b{bottom:952.051500px;}
.y2db{bottom:952.365000px;}
.y658{bottom:952.738500px;}
.y1dd{bottom:953.016000px;}
.y2f2{bottom:954.136500px;}
.y632{bottom:954.327000px;}
.y78d{bottom:954.330000px;}
.y6e1{bottom:955.410000px;}
.y297{bottom:955.554000px;}
.y14f{bottom:955.642500px;}
.y48b{bottom:955.878000px;}
.y32f{bottom:956.757000px;}
.y4e5{bottom:957.448500px;}
.y7ae{bottom:958.470000px;}
.yd6{bottom:961.063500px;}
.y66{bottom:961.855500px;}
.y757{bottom:962.430000px;}
.y200{bottom:963.108000px;}
.y51f{bottom:963.586500px;}
.y267{bottom:965.562000px;}
.y472{bottom:965.818500px;}
.y313{bottom:966.309000px;}
.y172{bottom:966.343500px;}
.y5bd{bottom:966.501000px;}
.y246{bottom:966.777000px;}
.y55c{bottom:967.359000px;}
.y222{bottom:967.515000px;}
.y2a5{bottom:967.833000px;}
.y67d{bottom:968.292000px;}
.y6ff{bottom:968.370000px;}
.y4c6{bottom:970.674000px;}
.y6bc{bottom:970.710000px;}
.y72e{bottom:971.250000px;}
.y78c{bottom:973.590000px;}
.y453{bottom:974.086500px;}
.y38a{bottom:974.467500px;}
.yfc{bottom:974.560500px;}
.y2da{bottom:974.781000px;}
.y421{bottom:975.174000px;}
.y3a3{bottom:975.295500px;}
.y6a2{bottom:976.798500px;}
.y5f7{bottom:977.194500px;}
.y6df{bottom:977.370000px;}
.y7ad{bottom:977.910000px;}
.y5e1{bottom:977.920500px;}
.y296{bottom:977.970000px;}
.y14e{bottom:978.058500px;}
.y48a{bottom:978.294000px;}
.y32e{bottom:979.173000px;}
.y65{bottom:979.788000px;}
.y2de{bottom:979.885500px;}
.y119{bottom:980.223000px;}
.y497{bottom:980.386500px;}
.y756{bottom:980.790000px;}
.y591{bottom:980.800500px;}
.yb5{bottom:980.814000px;}
.y6a{bottom:982.350000px;}
.y36{bottom:982.455000px;}
.yb{bottom:982.776000px;}
.yd5{bottom:983.479500px;}
.y266{bottom:983.494500px;}
.y15f{bottom:984.273000px;}
.y657{bottom:984.669000px;}
.y4e4{bottom:985.057500px;}
.y1ff{bottom:985.524000px;}
.y631{bottom:985.728000px;}
.y67c{bottom:986.224500px;}
.y6fe{bottom:986.730000px;}
.y2f1{bottom:987.013500px;}
.y1dc{bottom:987.885000px;}
.y4c5{bottom:988.608000px;}
.y312{bottom:988.723500px;}
.y171{bottom:988.759500px;}
.y5bc{bottom:988.917000px;}
.y4b0{bottom:989.172000px;}
.y245{bottom:989.193000px;}
.y55b{bottom:989.775000px;}
.y221{bottom:989.931000px;}
.y1bb{bottom:989.985000px;}
.y2a4{bottom:990.249000px;}
.y6bb{bottom:991.770000px;}
.y72d{bottom:992.310000px;}
.y51e{bottom:992.758500px;}
.y7ac{bottom:996.270000px;}
.yfb{bottom:997.053000px;}
.y2d9{bottom:997.197000px;}
.y420{bottom:997.590000px;}
.y3a2{bottom:997.711500px;}
.y64{bottom:997.720500px;}
.y755{bottom:999.150000px;}
.y295{bottom:1000.386000px;}
.y14d{bottom:1000.474500px;}
.y489{bottom:1000.710000px;}
.y265{bottom:1001.427000px;}
.y32d{bottom:1001.929500px;}
.y656{bottom:1002.601500px;}
.y630{bottom:1003.660500px;}
.y6fd{bottom:1004.910000px;}
.y2f0{bottom:1004.946000px;}
.yd4{bottom:1005.895500px;}
.y6a1{bottom:1006.687500px;}
.y452{bottom:1007.334000px;}
.y4e3{bottom:1007.473500px;}
.y1fe{bottom:1007.940000px;}
.y389{bottom:1010.725500px;}
.y78b{bottom:1010.850000px;}
.y311{bottom:1011.139500px;}
.y5bb{bottom:1011.333000px;}
.y4af{bottom:1011.588000px;}
.y244{bottom:1011.609000px;}
.y55a{bottom:1012.191000px;}
.y220{bottom:1012.347000px;}
.y1ba{bottom:1012.401000px;}
.y117{bottom:1012.665000px;}
.y72c{bottom:1013.370000px;}
.y7ab{bottom:1014.630000px;}
.y63{bottom:1015.653000px;}
.y6ba{bottom:1016.430000px;}
.y754{bottom:1017.330000px;}
.y67b{bottom:1017.376500px;}
.y264{bottom:1019.361000px;}
.yfa{bottom:1019.469000px;}
.y2d8{bottom:1019.613000px;}
.y41f{bottom:1020.006000px;}
.y3a1{bottom:1020.127500px;}
.y6de{bottom:1021.470000px;}
.y1db{bottom:1022.752500px;}
.y294{bottom:1022.802000px;}
.y14c{bottom:1022.890500px;}
.y6fc{bottom:1023.270000px;}
.y3e0{bottom:1023.381000px;}
.y4c4{bottom:1023.694500px;}
.y15e{bottom:1023.910500px;}
.y32c{bottom:1024.345500px;}
.y6a0{bottom:1024.620000px;}
.yd3{bottom:1028.311500px;}
.y4e2{bottom:1029.888000px;}
.y78a{bottom:1029.930000px;}
.y1fd{bottom:1030.356000px;}
.y92{bottom:1030.597500px;}
.y51d{bottom:1031.013000px;}
.y7aa{bottom:1032.810000px;}
.y310{bottom:1033.555500px;}
.y5ba{bottom:1033.749000px;}
.y4ae{bottom:1034.004000px;}
.y243{bottom:1034.025000px;}
.y582{bottom:1034.035500px;}
.y50c{bottom:1034.184000px;}
.y72b{bottom:1034.430000px;}
.y655{bottom:1034.532000px;}
.y559{bottom:1034.607000px;}
.y21f{bottom:1034.763000px;}
.y1b9{bottom:1034.817000px;}
.y62f{bottom:1035.061500px;}
.y116{bottom:1035.081000px;}
.y67a{bottom:1035.310500px;}
.y753{bottom:1035.690000px;}
.y263{bottom:1037.293500px;}
.y6fb{bottom:1041.630000px;}
.yf9{bottom:1041.885000px;}
.y2d7{bottom:1042.029000px;}
.y293{bottom:1045.218000px;}
.y14b{bottom:1045.306500px;}
.y6b9{bottom:1045.410000px;}
.y3df{bottom:1045.797000px;}
.y4c3{bottom:1046.110500px;}
.y15d{bottom:1046.326500px;}
.y388{bottom:1046.512500px;}
.y32b{bottom:1046.761500px;}
.y62{bottom:1048.530000px;}
.y51c{bottom:1048.945500px;}
.y789{bottom:1049.190000px;}
.yd2{bottom:1050.727500px;}
.y7a9{bottom:1051.530000px;}
.y4e1{bottom:1052.304000px;}
.y654{bottom:1052.464500px;}
.y72a{bottom:1052.610000px;}
.y50b{bottom:1052.715000px;}
.y62e{bottom:1052.994000px;}
.y69f{bottom:1054.507500px;}
.y752{bottom:1055.670000px;}
.y30f{bottom:1055.971500px;}
.y4ad{bottom:1056.420000px;}
.y242{bottom:1056.441000px;}
.y581{bottom:1056.451500px;}
.y558{bottom:1057.023000px;}
.y115{bottom:1057.497000px;}
.y6fa{bottom:1059.810000px;}
.y6dd{bottom:1060.530000px;}
.y41e{bottom:1061.232000px;}
.y6b8{bottom:1063.950000px;}
.yf8{bottom:1064.301000px;}
.y2d6{bottom:1064.445000px;}
.y61{bottom:1066.462500px;}
.y262{bottom:1066.465500px;}
.y292{bottom:1067.634000px;}
.y14a{bottom:1067.722500px;}
.y3de{bottom:1068.213000px;}
.y788{bottom:1068.270000px;}
.y4c2{bottom:1068.526500px;}
.y15c{bottom:1068.742500px;}
.y387{bottom:1068.928500px;}
.y32a{bottom:1069.177500px;}
.y50a{bottom:1071.244500px;}
.y729{bottom:1079.610000px;}
.yd1{bottom:1079.913000px;}
.y60{bottom:1084.395000px;}
.y787{bottom:1086.450000px;}
.y6f9{bottom:1087.710000px;}
.y6b7{bottom:1091.310000px;}
.y6dc{bottom:1100.850000px;}
.y5f{bottom:1102.329000px;}
.y261{bottom:1104.720000px;}
.y786{bottom:1105.710000px;}
.y6f8{bottom:1106.250000px;}
.y728{bottom:1106.610000px;}
.y7a8{bottom:1114.710000px;}
.y6b6{bottom:1122.480000px;}
.y785{bottom:1124.100000px;}
.y6f7{bottom:1133.280000px;}
.y6db{bottom:1141.200000px;}
.y784{bottom:1142.460000px;}
.y1{bottom:1151.227500px;}
.y32{bottom:1160.011500px;}
.h38{height:18.885000px;}
.h3b{height:19.065000px;}
.h2f{height:21.045000px;}
.h32{height:21.060000px;}
.h31{height:21.082500px;}
.hd{height:24.675533px;}
.h2b{height:26.985000px;}
.h2d{height:27.021000px;}
.h26{height:34.005000px;}
.h29{height:34.020000px;}
.h28{height:34.042500px;}
.h1f{height:41.006062px;}
.h6{height:41.125613px;}
.h7{height:41.484266px;}
.ha{height:41.758762px;}
.h39{height:42.465000px;}
.h1c{height:43.261350px;}
.h37{height:43.822266px;}
.h36{height:44.534180px;}
.h12{height:44.831700px;}
.h35{height:46.316250px;}
.h2e{height:48.496641px;}
.h30{height:49.284492px;}
.h5{height:49.351066px;}
.hb{height:49.781453px;}
.he{height:51.155711px;}
.h10{height:51.161711px;}
.hc{height:52.128854px;}
.h8{height:52.134854px;}
.hf{height:52.394257px;}
.h24{height:53.755312px;}
.h13{height:53.900387px;}
.h2c{height:53.985000px;}
.h2a{height:54.030000px;}
.h27{height:54.628594px;}
.h4{height:59.221114px;}
.h2{height:59.737577px;}
.h34{height:61.423863px;}
.h3c{height:62.304609px;}
.h21{height:65.010937px;}
.h14{height:65.453700px;}
.h33{height:66.757500px;}
.h25{height:68.362734px;}
.h23{height:68.956875px;}
.h11{height:77.346266px;}
.h1e{height:77.352266px;}
.h1d{height:79.123350px;}
.h1b{height:79.129350px;}
.h1a{height:81.470062px;}
.h19{height:81.476062px;}
.h16{height:82.129613px;}
.h18{height:82.135613px;}
.h3a{height:84.945000px;}
.h17{height:85.295700px;}
.h9{height:86.038650px;}
.h22{height:99.545625px;}
.h15{height:100.503024px;}
.h3{height:103.213484px;}
.h0{height:1262.835000px;}
.h20{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:53.856000px;}
.wc{width:84.996000px;}
.w12{width:102.081000px;}
.w10{width:102.621000px;}
.w6{width:143.856000px;}
.w8{width:160.369500px;}
.w7{width:191.175000px;}
.w5{width:191.355000px;}
.w9{width:194.055000px;}
.w15{width:217.455000px;}
.w13{width:217.459500px;}
.w14{width:217.470000px;}
.wd{width:223.215000px;}
.wb{width:337.879500px;}
.w3{width:354.439500px;}
.w11{width:550.324500px;}
.wf{width:550.684500px;}
.we{width:652.410000px;}
.wa{width:689.670000px;}
.w0{width:892.914000px;}
.w2{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x55{left:8.089500px;}
.x64{left:21.045000px;}
.x62{left:28.965000px;}
.x63{left:33.283500px;}
.x60{left:41.203500px;}
.xe{left:106.299000px;}
.x61{left:108.720000px;}
.x4a{left:113.424000px;}
.x45{left:117.160500px;}
.x4f{left:119.544000px;}
.x33{left:122.587500px;}
.x36{left:124.978500px;}
.x53{left:127.656000px;}
.x16{left:128.715000px;}
.x2e{left:130.623000px;}
.x20{left:137.998500px;}
.x21{left:143.659500px;}
.x66{left:145.476000px;}
.xb{left:148.819500px;}
.x3a{left:154.591500px;}
.x52{left:156.291000px;}
.x17{left:157.785000px;}
.x44{left:159.679500px;}
.x15{left:163.086000px;}
.x2a{left:165.108000px;}
.x1a{left:167.499000px;}
.xc{left:171.235500px;}
.x2{left:173.899500px;}
.x67{left:175.890000px;}
.x1{left:179.134500px;}
.x1e{left:180.676500px;}
.x19{left:186.178500px;}
.x50{left:190.600500px;}
.x65{left:192.270000px;}
.x34{left:198.892500px;}
.x68{left:202.890000px;}
.x13{left:205.606500px;}
.x3{left:206.952000px;}
.x38{left:216.675000px;}
.x37{left:218.499000px;}
.x43{left:220.822500px;}
.x42{left:226.981500px;}
.x1b{left:238.534500px;}
.x35{left:244.959000px;}
.x2f{left:248.262000px;}
.x46{left:250.029000px;}
.x4{left:255.733500px;}
.x27{left:256.944000px;}
.x51{left:261.693000px;}
.x47{left:263.179500px;}
.x2d{left:265.044000px;}
.x22{left:267.091500px;}
.x49{left:268.575000px;}
.x1f{left:270.076500px;}
.x48{left:272.311500px;}
.x28{left:277.695000px;}
.x59{left:279.945000px;}
.x1d{left:289.587000px;}
.x24{left:295.761000px;}
.x25{left:297.412500px;}
.x8{left:299.823000px;}
.x23{left:301.701000px;}
.x26{left:304.884000px;}
.x4b{left:314.301000px;}
.x29{left:319.855500px;}
.x9{left:322.489500px;}
.x32{left:327.625500px;}
.x7{left:329.653500px;}
.x2b{left:331.357500px;}
.x5{left:336.493500px;}
.x2c{left:338.410500px;}
.x5c{left:343.875000px;}
.x5d{left:348.375000px;}
.x6{left:358.206000px;}
.x3e{left:366.229500px;}
.x4d{left:402.111000px;}
.x1c{left:421.012500px;}
.x3c{left:427.137000px;}
.x40{left:429.213000px;}
.xa{left:437.208000px;}
.x39{left:439.666500px;}
.x54{left:446.475000px;}
.x10{left:455.634000px;}
.x18{left:457.749000px;}
.x14{left:459.826500px;}
.xf{left:461.485500px;}
.x12{left:463.980000px;}
.xd{left:465.639000px;}
.x5e{left:469.695000px;}
.x56{left:474.015000px;}
.x31{left:475.681500px;}
.x30{left:477.819000px;}
.x41{left:485.437500px;}
.x3f{left:496.480500px;}
.x3d{left:515.172000px;}
.x57{left:528.060000px;}
.x5a{left:542.460000px;}
.x5f{left:554.520000px;}
.x4e{left:567.193500px;}
.x4c{left:572.722500px;}
.x58{left:618.060000px;}
.x11{left:668.581500px;}
.x5b{left:670.620000px;}
.x3b{left:739.372500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:8.965333pt;}
.v5{vertical-align:18.330667pt;}
.v1{vertical-align:19.290667pt;}
.v4{vertical-align:20.938667pt;}
.va{vertical-align:26.880000pt;}
.v3{vertical-align:31.877333pt;}
.v7{vertical-align:35.973333pt;}
.v8{vertical-align:51.328000pt;}
.v6{vertical-align:87.210667pt;}
.ls41{letter-spacing:-0.271467pt;}
.ls53{letter-spacing:-0.269333pt;}
.ls52{letter-spacing:-0.153067pt;}
.ls4b{letter-spacing:-0.095467pt;}
.ls51{letter-spacing:-0.051840pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:0.000015pt;}
.ls31{letter-spacing:0.000822pt;}
.ls9{letter-spacing:0.001032pt;}
.ls15{letter-spacing:0.003733pt;}
.ls43{letter-spacing:0.154667pt;}
.ls50{letter-spacing:0.227733pt;}
.ls42{letter-spacing:0.258667pt;}
.ls4e{letter-spacing:0.346880pt;}
.ls4a{letter-spacing:0.406933pt;}
.ls55{letter-spacing:0.426240pt;}
.ls54{letter-spacing:0.486933pt;}
.ls4f{letter-spacing:0.586667pt;}
.ls2d{letter-spacing:2.128822pt;}
.ls8{letter-spacing:2.655200pt;}
.ls13{letter-spacing:2.657067pt;}
.ls10{letter-spacing:2.660533pt;}
.ls1{letter-spacing:3.795061pt;}
.ls2{letter-spacing:3.824233pt;}
.ls0{letter-spacing:3.824451pt;}
.ls4{letter-spacing:3.825217pt;}
.ls3{letter-spacing:3.826516pt;}
.lsf{letter-spacing:4.408226pt;}
.lse{letter-spacing:4.413559pt;}
.ls1a{letter-spacing:5.902400pt;}
.ls26{letter-spacing:6.328239pt;}
.ls2c{letter-spacing:6.375467pt;}
.ls24{letter-spacing:6.480479pt;}
.ls19{letter-spacing:6.507145pt;}
.ls22{letter-spacing:7.333812pt;}
.ls23{letter-spacing:7.339145pt;}
.ls2b{letter-spacing:7.379733pt;}
.ls27{letter-spacing:7.396533pt;}
.ls18{letter-spacing:9.204533pt;}
.ls2e{letter-spacing:10.036533pt;}
.ls25{letter-spacing:10.824174pt;}
.ls21{letter-spacing:11.765812pt;}
.ls2a{letter-spacing:11.806400pt;}
.ls14{letter-spacing:12.341812pt;}
.ls35{letter-spacing:12.503200pt;}
.ls16{letter-spacing:13.237812pt;}
.ls17{letter-spacing:13.243145pt;}
.ls29{letter-spacing:13.280015pt;}
.ls1e{letter-spacing:13.282118pt;}
.ls1b{letter-spacing:13.287452pt;}
.ls3f{letter-spacing:15.072479pt;}
.ls1f{letter-spacing:15.343200pt;}
.ls20{letter-spacing:15.940533pt;}
.ls11{letter-spacing:16.559200pt;}
.ls12{letter-spacing:18.841867pt;}
.ls46{letter-spacing:21.072640pt;}
.ls28{letter-spacing:21.163489pt;}
.ls48{letter-spacing:22.352640pt;}
.ls40{letter-spacing:22.671360pt;}
.ls45{letter-spacing:23.632640pt;}
.ls44{letter-spacing:25.871360pt;}
.ls47{letter-spacing:26.192640pt;}
.lsb{letter-spacing:26.563733pt;}
.ls6{letter-spacing:26.566933pt;}
.lsd{letter-spacing:26.569067pt;}
.ls1d{letter-spacing:26.626118pt;}
.ls1c{letter-spacing:26.631452pt;}
.ls49{letter-spacing:32.592640pt;}
.ls4c{letter-spacing:34.191360pt;}
.ls4d{letter-spacing:56.912640pt;}
.ls56{letter-spacing:74.192640pt;}
.ls33{letter-spacing:80.859145pt;}
.ls34{letter-spacing:83.936479pt;}
.ls32{letter-spacing:141.595145pt;}
.ls37{letter-spacing:196.597044pt;}
.ls3b{letter-spacing:199.547185pt;}
.ls38{letter-spacing:202.522682pt;}
.ls3e{letter-spacing:205.445044pt;}
.ls36{letter-spacing:206.960015pt;}
.ls39{letter-spacing:209.882378pt;}
.ls3d{letter-spacing:212.827185pt;}
.ls3a{letter-spacing:212.857874pt;}
.ls3c{letter-spacing:218.755733pt;}
.ls30{letter-spacing:836.755733pt;}
.ls7{letter-spacing:1813.107733pt;}
.lsc{letter-spacing:1858.697067pt;}
.lsa{letter-spacing:1978.457067pt;}
.ws1a1{word-spacing:-53.120000pt;}
.ws20{word-spacing:-33.049467pt;}
.ws55{word-spacing:-31.348981pt;}
.ws4e{word-spacing:-31.295847pt;}
.ws3d{word-spacing:-30.658241pt;}
.ws38{word-spacing:-29.489296pt;}
.ws34{word-spacing:-28.214083pt;}
.ws40{word-spacing:-28.001548pt;}
.ws3f{word-spacing:-24.760382pt;}
.ws36{word-spacing:-23.325767pt;}
.ws3e{word-spacing:-22.103689pt;}
.ws4d{word-spacing:-21.784885pt;}
.ws3c{word-spacing:-20.669074pt;}
.ws39{word-spacing:-20.403405pt;}
.ws48{word-spacing:-20.297137pt;}
.ws0{word-spacing:-19.128267pt;}
.ws3b{word-spacing:-18.437452pt;}
.ws54{word-spacing:-17.427908pt;}
.ws42{word-spacing:-17.374774pt;}
.ws3a{word-spacing:-15.833892pt;}
.ws4{word-spacing:-15.302667pt;}
.ws19d{word-spacing:-15.126933pt;}
.ws19b{word-spacing:-14.448533pt;}
.ws46{word-spacing:-13.761671pt;}
.ws1a0{word-spacing:-13.534613pt;}
.ws31{word-spacing:-13.283467pt;}
.ws19f{word-spacing:-12.591787pt;}
.ws19c{word-spacing:-12.005120pt;}
.ws1a2{word-spacing:-11.953280pt;}
.ws19e{word-spacing:-11.909653pt;}
.ws1a4{word-spacing:-11.852053pt;}
.ws1a5{word-spacing:-11.735787pt;}
.wse4{word-spacing:-10.626800pt;}
.ws33{word-spacing:-10.626773pt;}
.ws15d{word-spacing:-9.829733pt;}
.ws1a3{word-spacing:-7.810560pt;}
.ws147{word-spacing:-5.906933pt;}
.ws141{word-spacing:-5.905837pt;}
.ws149{word-spacing:-5.905357pt;}
.ws13f{word-spacing:-5.905333pt;}
.ws13e{word-spacing:-5.904022pt;}
.ws14a{word-spacing:-5.902963pt;}
.ws143{word-spacing:-5.901007pt;}
.ws140{word-spacing:-5.900000pt;}
.ws142{word-spacing:-5.313387pt;}
.ws9f{word-spacing:-3.188032pt;}
.wse7{word-spacing:-3.134898pt;}
.ws11b{word-spacing:-3.081764pt;}
.ws12e{word-spacing:-3.028630pt;}
.wse3{word-spacing:-2.922363pt;}
.wsdf{word-spacing:-2.869229pt;}
.wsbd{word-spacing:-2.816095pt;}
.ws135{word-spacing:-2.762961pt;}
.ws148{word-spacing:-2.718460pt;}
.wse1{word-spacing:-2.709827pt;}
.ws37{word-spacing:-2.656693pt;}
.ws188{word-spacing:-2.603559pt;}
.wse8{word-spacing:-2.550426pt;}
.ws7b{word-spacing:-2.497292pt;}
.ws5e{word-spacing:-2.444158pt;}
.wsa3{word-spacing:-2.391024pt;}
.ws145{word-spacing:-2.284756pt;}
.ws4c{word-spacing:-2.231622pt;}
.ws5f{word-spacing:-2.178489pt;}
.ws94{word-spacing:-2.125355pt;}
.wsd8{word-spacing:-2.072221pt;}
.wscc{word-spacing:-2.019087pt;}
.ws132{word-spacing:-2.004533pt;}
.ws131{word-spacing:-2.002629pt;}
.ws99{word-spacing:-1.965953pt;}
.ws83{word-spacing:-1.912819pt;}
.ws134{word-spacing:-1.859685pt;}
.ws8b{word-spacing:-1.806551pt;}
.ws7e{word-spacing:-1.753418pt;}
.ws69{word-spacing:-1.700284pt;}
.wsd9{word-spacing:-1.647150pt;}
.ws98{word-spacing:-1.594016pt;}
.ws17a{word-spacing:-1.573133pt;}
.ws6f{word-spacing:-1.540882pt;}
.ws6a{word-spacing:-1.487748pt;}
.ws13d{word-spacing:-1.478214pt;}
.ws14c{word-spacing:-1.477178pt;}
.ws76{word-spacing:-1.434614pt;}
.ws59{word-spacing:-1.381481pt;}
.ws8a{word-spacing:-1.328347pt;}
.wsbb{word-spacing:-1.275213pt;}
.wsb6{word-spacing:-1.222079pt;}
.ws26{word-spacing:-1.168945pt;}
.ws13{word-spacing:-1.115811pt;}
.ws81{word-spacing:-1.062677pt;}
.wsc4{word-spacing:-1.009543pt;}
.ws17f{word-spacing:-1.000471pt;}
.ws180{word-spacing:-0.974103pt;}
.ws90{word-spacing:-0.956410pt;}
.ws88{word-spacing:-0.903276pt;}
.ws1c{word-spacing:-0.850142pt;}
.ws14{word-spacing:-0.797008pt;}
.wsae{word-spacing:-0.743874pt;}
.ws11c{word-spacing:-0.690740pt;}
.ws30{word-spacing:-0.637606pt;}
.ws7c{word-spacing:-0.584473pt;}
.ws74{word-spacing:-0.531339pt;}
.wsba{word-spacing:-0.478205pt;}
.ws95{word-spacing:-0.425071pt;}
.wsdd{word-spacing:-0.371937pt;}
.ws52{word-spacing:-0.318803pt;}
.wsb9{word-spacing:-0.265669pt;}
.ws4b{word-spacing:-0.212535pt;}
.ws7d{word-spacing:-0.159402pt;}
.ws12f{word-spacing:-0.151963pt;}
.ws16{word-spacing:-0.106268pt;}
.ws7f{word-spacing:-0.053134pt;}
.ws15e{word-spacing:-0.039319pt;}
.wsf8{word-spacing:-0.005975pt;}
.wsef{word-spacing:-0.005377pt;}
.ws112{word-spacing:-0.004533pt;}
.wsed{word-spacing:-0.004199pt;}
.ws10f{word-spacing:-0.003891pt;}
.wsf3{word-spacing:-0.003853pt;}
.ws199{word-spacing:-0.003554pt;}
.wsf6{word-spacing:-0.003343pt;}
.ws110{word-spacing:-0.003207pt;}
.wsfc{word-spacing:-0.002667pt;}
.ws104{word-spacing:-0.002115pt;}
.ws10c{word-spacing:-0.001822pt;}
.wsff{word-spacing:-0.001067pt;}
.wsf4{word-spacing:-0.000642pt;}
.wsf0{word-spacing:-0.000496pt;}
.ws2{word-spacing:0.000000pt;}
.ws111{word-spacing:0.000533pt;}
.ws100{word-spacing:0.000800pt;}
.wsfd{word-spacing:0.001442pt;}
.wsfe{word-spacing:0.002126pt;}
.wsfb{word-spacing:0.002667pt;}
.wsf9{word-spacing:0.003511pt;}
.ws10e{word-spacing:0.004267pt;}
.ws3{word-spacing:0.050997pt;}
.ws23{word-spacing:0.053134pt;}
.ws24{word-spacing:0.106268pt;}
.ws1e{word-spacing:0.159402pt;}
.ws5b{word-spacing:0.212535pt;}
.ws5a{word-spacing:0.265669pt;}
.ws139{word-spacing:0.291497pt;}
.ws136{word-spacing:0.291830pt;}
.ws138{word-spacing:0.292000pt;}
.ws137{word-spacing:0.293311pt;}
.ws51{word-spacing:0.318803pt;}
.ws6e{word-spacing:0.371937pt;}
.ws133{word-spacing:0.392755pt;}
.wsc{word-spacing:0.425071pt;}
.ws11{word-spacing:0.478205pt;}
.wsa7{word-spacing:0.531339pt;}
.ws12{word-spacing:0.584473pt;}
.ws8d{word-spacing:0.637606pt;}
.wscd{word-spacing:0.690740pt;}
.ws8c{word-spacing:0.743874pt;}
.ws45{word-spacing:0.797008pt;}
.ws53{word-spacing:0.850142pt;}
.ws8{word-spacing:0.903276pt;}
.ws7{word-spacing:0.956410pt;}
.wsa9{word-spacing:1.009543pt;}
.ws78{word-spacing:1.062677pt;}
.wsa4{word-spacing:1.115811pt;}
.ws50{word-spacing:1.168945pt;}
.ws80{word-spacing:1.222079pt;}
.ws14e{word-spacing:1.231936pt;}
.ws89{word-spacing:1.275213pt;}
.ws66{word-spacing:1.328347pt;}
.ws65{word-spacing:1.381481pt;}
.ws2b{word-spacing:1.434614pt;}
.wse{word-spacing:1.487748pt;}
.ws9b{word-spacing:1.540882pt;}
.ws86{word-spacing:1.594016pt;}
.ws194{word-spacing:1.599273pt;}
.ws75{word-spacing:1.647150pt;}
.ws18{word-spacing:1.700284pt;}
.ws21{word-spacing:1.753418pt;}
.wsd{word-spacing:1.806551pt;}
.wsec{word-spacing:1.809631pt;}
.wsda{word-spacing:1.859685pt;}
.ws61{word-spacing:1.912819pt;}
.ws10{word-spacing:1.965953pt;}
.ws2f{word-spacing:2.019087pt;}
.ws93{word-spacing:2.072221pt;}
.ws22{word-spacing:2.125355pt;}
.ws5d{word-spacing:2.178489pt;}
.ws91{word-spacing:2.231622pt;}
.ws6b{word-spacing:2.284756pt;}
.ws2e{word-spacing:2.337890pt;}
.ws77{word-spacing:2.391024pt;}
.wsf{word-spacing:2.444158pt;}
.ws1d{word-spacing:2.497292pt;}
.ws49{word-spacing:2.550426pt;}
.ws4f{word-spacing:2.603559pt;}
.wsab{word-spacing:2.656693pt;}
.ws2c{word-spacing:2.709827pt;}
.ws79{word-spacing:2.762961pt;}
.ws6c{word-spacing:2.816095pt;}
.ws71{word-spacing:2.869229pt;}
.ws129{word-spacing:2.877630pt;}
.wse2{word-spacing:2.902971pt;}
.ws87{word-spacing:2.922363pt;}
.wse5{word-spacing:2.975497pt;}
.ws179{word-spacing:2.990682pt;}
.ws178{word-spacing:2.992282pt;}
.ws60{word-spacing:3.028630pt;}
.ws84{word-spacing:3.081764pt;}
.wsbe{word-spacing:3.134898pt;}
.ws128{word-spacing:3.184203pt;}
.wsd0{word-spacing:3.185393pt;}
.wsce{word-spacing:3.185791pt;}
.wscf{word-spacing:3.186385pt;}
.wsbc{word-spacing:3.186430pt;}
.wsd1{word-spacing:3.187933pt;}
.ws5c{word-spacing:3.188032pt;}
.ws117{word-spacing:3.189356pt;}
.ws118{word-spacing:3.189859pt;}
.wsa5{word-spacing:3.241166pt;}
.ws17e{word-spacing:3.250355pt;}
.ws17d{word-spacing:3.252314pt;}
.ws17c{word-spacing:3.255230pt;}
.ws17b{word-spacing:3.255580pt;}
.ws12b{word-spacing:3.256037pt;}
.ws12c{word-spacing:3.263504pt;}
.ws25{word-spacing:3.294300pt;}
.ws28{word-spacing:3.347434pt;}
.ws12a{word-spacing:3.376740pt;}
.ws73{word-spacing:3.400567pt;}
.ws2a{word-spacing:3.453701pt;}
.wsa6{word-spacing:3.506835pt;}
.wsdb{word-spacing:3.559969pt;}
.wsca{word-spacing:3.600533pt;}
.wsc9{word-spacing:3.613103pt;}
.wsb2{word-spacing:3.666237pt;}
.ws13b{word-spacing:3.666993pt;}
.ws13c{word-spacing:3.667497pt;}
.ws85{word-spacing:3.719371pt;}
.ws1f{word-spacing:3.772505pt;}
.ws2d{word-spacing:3.825638pt;}
.ws6{word-spacing:3.878772pt;}
.ws63{word-spacing:3.931906pt;}
.wsaf{word-spacing:3.985040pt;}
.wsc0{word-spacing:4.038174pt;}
.wsb1{word-spacing:4.091308pt;}
.wsb3{word-spacing:4.144442pt;}
.wsc8{word-spacing:4.197575pt;}
.ws47{word-spacing:4.250709pt;}
.ws9{word-spacing:4.303843pt;}
.ws9c{word-spacing:4.356977pt;}
.ws1b{word-spacing:4.410111pt;}
.ws72{word-spacing:4.463245pt;}
.wsa{word-spacing:4.516379pt;}
.ws114{word-spacing:4.569513pt;}
.ws27{word-spacing:4.622646pt;}
.ws15{word-spacing:4.675780pt;}
.ws6d{word-spacing:4.728914pt;}
.wsa1{word-spacing:4.782048pt;}
.wsb7{word-spacing:4.835182pt;}
.ws68{word-spacing:4.888316pt;}
.ws8e{word-spacing:4.941450pt;}
.ws17{word-spacing:4.994583pt;}
.ws29{word-spacing:5.047717pt;}
.ws64{word-spacing:5.100851pt;}
.ws82{word-spacing:5.153985pt;}
.wsbf{word-spacing:5.207119pt;}
.wsb4{word-spacing:5.260253pt;}
.ws109{word-spacing:5.280577pt;}
.wsad{word-spacing:5.313387pt;}
.wsb{word-spacing:5.366521pt;}
.ws96{word-spacing:5.419654pt;}
.wsc2{word-spacing:5.472788pt;}
.ws70{word-spacing:5.525922pt;}
.ws1a{word-spacing:5.579056pt;}
.ws105{word-spacing:5.632190pt;}
.wsc3{word-spacing:5.685324pt;}
.wsa0{word-spacing:5.738458pt;}
.ws130{word-spacing:5.791591pt;}
.ws18b{word-spacing:5.840563pt;}
.ws193{word-spacing:5.842363pt;}
.ws197{word-spacing:5.842422pt;}
.ws18d{word-spacing:5.844112pt;}
.wsc1{word-spacing:5.844725pt;}
.ws192{word-spacing:5.845701pt;}
.ws18e{word-spacing:5.845897pt;}
.ws106{word-spacing:5.897859pt;}
.wsea{word-spacing:5.950993pt;}
.wsc7{word-spacing:6.004127pt;}
.ws9e{word-spacing:6.057261pt;}
.ws7a{word-spacing:6.110395pt;}
.ws195{word-spacing:6.126668pt;}
.wsa2{word-spacing:6.163529pt;}
.wsb0{word-spacing:6.216662pt;}
.wse0{word-spacing:6.269796pt;}
.wsb8{word-spacing:6.322930pt;}
.ws127{word-spacing:6.376064pt;}
.ws12d{word-spacing:6.421465pt;}
.wsc5{word-spacing:6.429198pt;}
.ws159{word-spacing:6.450513pt;}
.wse6{word-spacing:6.482332pt;}
.wsc6{word-spacing:6.535466pt;}
.ws92{word-spacing:6.588599pt;}
.ws107{word-spacing:6.641733pt;}
.ws151{word-spacing:6.694867pt;}
.ws189{word-spacing:6.748001pt;}
.ws103{word-spacing:6.801135pt;}
.ws115{word-spacing:6.854269pt;}
.ws67{word-spacing:6.907403pt;}
.wsaa{word-spacing:6.960537pt;}
.ws177{word-spacing:7.066804pt;}
.ws102{word-spacing:7.173072pt;}
.ws9d{word-spacing:7.279340pt;}
.ws150{word-spacing:7.332474pt;}
.wscb{word-spacing:7.385607pt;}
.wsde{word-spacing:7.491875pt;}
.ws154{word-spacing:7.545009pt;}
.ws19a{word-spacing:7.576022pt;}
.wse9{word-spacing:7.598143pt;}
.ws5{word-spacing:7.619995pt;}
.ws1{word-spacing:7.626304pt;}
.wsdc{word-spacing:7.704411pt;}
.ws8f{word-spacing:7.810678pt;}
.ws108{word-spacing:7.863812pt;}
.ws198{word-spacing:7.916946pt;}
.wsac{word-spacing:7.970080pt;}
.ws158{word-spacing:8.076348pt;}
.wsb5{word-spacing:8.554553pt;}
.wsa8{word-spacing:8.713954pt;}
.ws116{word-spacing:8.873356pt;}
.ws191{word-spacing:9.298427pt;}
.ws190{word-spacing:9.351561pt;}
.ws4a{word-spacing:9.564096pt;}
.ws19{word-spacing:9.936033pt;}
.ws196{word-spacing:10.998710pt;}
.ws13a{word-spacing:11.426385pt;}
.ws146{word-spacing:11.689451pt;}
.ws11a{word-spacing:13.282133pt;}
.ws35{word-spacing:13.283467pt;}
.ws119{word-spacing:13.287467pt;}
.ws32{word-spacing:39.850400pt;}
.ws97{word-spacing:47.820800pt;}
.ws170{word-spacing:50.470971pt;}
.ws162{word-spacing:50.471489pt;}
.wsf5{word-spacing:50.474959pt;}
.ws15a{word-spacing:50.475639pt;}
.ws11e{word-spacing:50.476718pt;}
.ws163{word-spacing:50.481067pt;}
.ws11f{word-spacing:54.937360pt;}
.ws120{word-spacing:54.940593pt;}
.ws62{word-spacing:57.384800pt;}
.wsd2{word-spacing:61.422750pt;}
.wsf2{word-spacing:64.293626pt;}
.ws15b{word-spacing:77.042156pt;}
.ws15c{word-spacing:77.044267pt;}
.ws164{word-spacing:90.321622pt;}
.ws144{word-spacing:98.882126pt;}
.ws174{word-spacing:101.352000pt;}
.ws16c{word-spacing:114.632000pt;}
.ws15f{word-spacing:116.892289pt;}
.ws160{word-spacing:117.424311pt;}
.ws155{word-spacing:117.638381pt;}
.wsd5{word-spacing:128.158886pt;}
.wsd6{word-spacing:133.259738pt;}
.ws10a{word-spacing:138.225911pt;}
.ws10b{word-spacing:147.445626pt;}
.ws161{word-spacing:152.811467pt;}
.ws121{word-spacing:162.640533pt;}
.ws124{word-spacing:173.509867pt;}
.ws126{word-spacing:182.565600pt;}
.ws184{word-spacing:186.263718pt;}
.ws16f{word-spacing:187.108267pt;}
.wsd7{word-spacing:188.678361pt;}
.ws123{word-spacing:193.435200pt;}
.ws185{word-spacing:198.084793pt;}
.ws172{word-spacing:200.393600pt;}
.ws167{word-spacing:202.119728pt;}
.ws122{word-spacing:202.490933pt;}
.ws57{word-spacing:206.956411pt;}
.ws16d{word-spacing:213.678933pt;}
.ws113{word-spacing:222.630118pt;}
.wsd3{word-spacing:225.553264pt;}
.wsf7{word-spacing:229.728292pt;}
.ws16a{word-spacing:238.036267pt;}
.ws168{word-spacing:238.040000pt;}
.ws10d{word-spacing:240.374118pt;}
.ws166{word-spacing:251.321600pt;}
.ws101{word-spacing:252.619452pt;}
.wsd4{word-spacing:267.582153pt;}
.wsfa{word-spacing:270.368785pt;}
.ws183{word-spacing:309.501333pt;}
.ws182{word-spacing:309.503756pt;}
.ws157{word-spacing:322.201333pt;}
.ws181{word-spacing:322.785356pt;}
.ws186{word-spacing:322.788267pt;}
.wsf1{word-spacing:325.150692pt;}
.ws156{word-spacing:335.482933pt;}
.ws16e{word-spacing:378.524165pt;}
.ws169{word-spacing:418.902437pt;}
.ws173{word-spacing:447.173121pt;}
.ws16b{word-spacing:449.882948pt;}
.wsee{word-spacing:465.428026pt;}
.ws171{word-spacing:520.179054pt;}
.ws14b{word-spacing:534.655147pt;}
.ws176{word-spacing:547.277326pt;}
.ws175{word-spacing:561.517202pt;}
.ws152{word-spacing:589.674025pt;}
.ws11d{word-spacing:620.173600pt;}
.ws125{word-spacing:712.385518pt;}
.ws14d{word-spacing:722.305037pt;}
.ws14f{word-spacing:758.593540pt;}
.ws165{word-spacing:796.258084pt;}
.ws58{word-spacing:1765.761132pt;}
.ws56{word-spacing:1795.887170pt;}
.ws9a{word-spacing:1818.846667pt;}
.ws18f{word-spacing:1867.670318pt;}
.ws18c{word-spacing:1867.673333pt;}
.ws41{word-spacing:1906.086622pt;}
.wseb{word-spacing:1914.964000pt;}
.ws43{word-spacing:1954.437922pt;}
.ws18a{word-spacing:1959.225333pt;}
.ws187{word-spacing:1968.100000pt;}
.ws44{word-spacing:1981.164257pt;}
.ws153{word-spacing:2044.825333pt;}
._24{margin-left:-29.383028pt;}
._18{margin-left:-27.895280pt;}
._17{margin-left:-26.566933pt;}
._91{margin-left:-18.948124pt;}
._20{margin-left:-12.805262pt;}
._19{margin-left:-10.361104pt;}
._21{margin-left:-8.501419pt;}
._6{margin-left:-7.077478pt;}
._12{margin-left:-5.611983pt;}
._7{margin-left:-4.035797pt;}
._0{margin-left:-2.370817pt;}
._4{margin-left:-1.330723pt;}
._2{width:0.979371pt;}
._71{width:1.965953pt;}
._3{width:2.963141pt;}
._1{width:4.162325pt;}
._32{width:5.632190pt;}
._72{width:6.748001pt;}
._93{width:8.228643pt;}
._92{width:9.156907pt;}
._43{width:10.156535pt;}
._42{width:11.191039pt;}
._4b{width:12.114522pt;}
._e{width:13.075684pt;}
._15{width:14.399278pt;}
._11{width:15.975463pt;}
._d{width:17.035764pt;}
._9{width:18.649987pt;}
._5{width:19.765931pt;}
._b{width:21.253547pt;}
._c{width:22.692023pt;}
._14{width:24.198493pt;}
._30{width:25.296474pt;}
._13{width:26.895243pt;}
._8{width:28.160949pt;}
._47{width:29.117359pt;}
._a{width:30.073769pt;}
._31{width:31.059547pt;}
._f{width:32.019382pt;}
._10{width:33.268798pt;}
._27{width:34.266591pt;}
._28{width:35.682193pt;}
._22{width:37.193707pt;}
._2b{width:38.131104pt;}
._45{width:39.478463pt;}
._2f{width:41.425404pt;}
._2c{width:43.474204pt;}
._37{width:44.523804pt;}
._34{width:46.175707pt;}
._1c{width:48.231292pt;}
._23{width:49.945835pt;}
._2a{width:51.414571pt;}
._1e{width:53.133867pt;}
._1b{width:55.790560pt;}
._25{width:63.760640pt;}
._75{width:66.205169pt;}
._8b{width:69.421044pt;}
._54{width:70.721177pt;}
._36{width:71.788607pt;}
._1a{width:75.928295pt;}
._35{width:76.827668pt;}
._76{width:78.166900pt;}
._55{width:80.922879pt;}
._85{width:83.861214pt;}
._79{width:87.883415pt;}
._65{width:90.329333pt;}
._74{width:91.657205pt;}
._5b{width:94.330644pt;}
._33{width:98.355540pt;}
._5d{width:100.928800pt;}
._1d{width:102.495229pt;}
._64{width:109.030452pt;}
._5a{width:113.392367pt;}
._87{width:114.597429pt;}
._5c{width:121.705738pt;}
._7c{width:123.166679pt;}
._7f{width:125.927264pt;}
._86{width:127.915467pt;}
._3a{width:131.665722pt;}
._5e{width:139.025119pt;}
._60{width:140.775733pt;}
._83{width:145.530527pt;}
._3c{width:149.412433pt;}
._3e{width:152.334796pt;}
._38{width:155.310292pt;}
._4d{width:160.358010pt;}
._6c{width:161.971793pt;}
._69{width:164.150415pt;}
._59{width:165.298400pt;}
._41{width:167.106011pt;}
._39{width:173.003870pt;}
._5f{width:175.207251pt;}
._95{width:176.773547pt;}
._80{width:181.292753pt;}
._3f{width:184.248043pt;}
._3d{width:187.775085pt;}
._3b{width:191.810882pt;}
._6f{width:195.849333pt;}
._84{width:199.119373pt;}
._40{width:205.468662pt;}
._68{width:207.037869pt;}
._51{width:214.607687pt;}
._52{width:215.721122pt;}
._6d{width:219.284000pt;}
._6b{width:226.643733pt;}
._4e{width:238.889865pt;}
._4c{width:240.853441pt;}
._57{width:243.939958pt;}
._56{width:247.019346pt;}
._6e{width:255.998530pt;}
._6a{width:259.134400pt;}
._4f{width:286.922880pt;}
._53{width:301.694095pt;}
._50{width:306.157340pt;}
._8e{width:321.323467pt;}
._7e{width:370.322844pt;}
._66{width:376.608578pt;}
._61{width:380.594400pt;}
._89{width:468.302570pt;}
._7b{width:482.030438pt;}
._7a{width:484.952801pt;}
._78{width:487.928298pt;}
._8d{width:500.651993pt;}
._8f{width:508.033630pt;}
._8c{width:518.340237pt;}
._81{width:588.509067pt;}
._67{width:610.634163pt;}
._73{width:653.383711pt;}
._88{width:656.130788pt;}
._94{width:753.440000pt;}
._77{width:764.523001pt;}
._70{width:844.949652pt;}
._82{width:1045.742534pt;}
._90{width:1067.742332pt;}
._7d{width:1178.577201pt;}
._4a{width:1230.170186pt;}
._49{width:1577.081201pt;}
._8a{width:1734.941919pt;}
._1f{width:1748.173028pt;}
._63{width:1807.257111pt;}
._62{width:1819.105964pt;}
._26{width:1836.746407pt;}
._58{width:1872.133563pt;}
._16{width:1873.462686pt;}
._2e{width:1880.953785pt;}
._48{width:1888.392526pt;}
._2d{width:1895.724999pt;}
._46{width:1914.957859pt;}
._44{width:1935.523042pt;}
._29{width:1969.581074pt;}
.fs7{font-size:31.880533pt;}
.fse{font-size:34.560000pt;}
.fs5{font-size:39.318933pt;}
.fs8{font-size:42.507200pt;}
.fsd{font-size:48.000000pt;}
.fsc{font-size:53.120000pt;}
.fs4{font-size:53.133867pt;}
.fs9{font-size:58.880000pt;}
.fs1{font-size:61.210667pt;}
.fs3{font-size:63.761067pt;}
.fsb{font-size:74.880000pt;}
.fs0{font-size:76.513067pt;}
.fs6{font-size:110.200000pt;}
.fsa{font-size:130.560000pt;}
.fs2{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y6d6{bottom:3.986667pt;}
.y6cc{bottom:4.000000pt;}
.y743{bottom:5.440000pt;}
.y749{bottom:5.600000pt;}
.y6e0{bottom:6.080000pt;}
.y6be{bottom:7.040000pt;}
.y6c0{bottom:7.200000pt;}
.y745{bottom:16.000000pt;}
.y6d3{bottom:28.000000pt;}
.y6cb{bottom:28.026667pt;}
.y6b5{bottom:50.752000pt;}
.y747{bottom:64.160000pt;}
.y6b4{bottom:67.552000pt;}
.y31{bottom:74.926667pt;}
.y783{bottom:104.992000pt;}
.y751{bottom:109.632000pt;}
.y350{bottom:114.776000pt;}
.y5e{bottom:114.777333pt;}
.y2bc{bottom:118.634667pt;}
.y580{bottom:120.090667pt;}
.y7d8{bottom:122.752000pt;}
.y782{bottom:122.912000pt;}
.y6da{bottom:125.792000pt;}
.ya{bottom:129.264000pt;}
.y62d{bottom:130.717333pt;}
.y5d{bottom:131.060000pt;}
.y91{bottom:131.172000pt;}
.y2bb{bottom:131.681333pt;}
.y170{bottom:132.842667pt;}
.y750{bottom:133.626667pt;}
.y34f{bottom:134.701333pt;}
.yd0{bottom:134.702667pt;}
.y57f{bottom:136.561333pt;}
.y781{bottom:140.186667pt;}
.y471{bottom:140.262667pt;}
.y386{bottom:142.276000pt;}
.y653{bottom:142.689333pt;}
.y140{bottom:145.432000pt;}
.y679{bottom:146.657333pt;}
.y5c{bottom:147.344000pt;}
.y90{bottom:147.566667pt;}
.y16f{bottom:148.782667pt;}
.y2ba{bottom:150.517333pt;}
.y149{bottom:150.802667pt;}
.y57e{bottom:153.033333pt;}
.y260{bottom:154.626667pt;}
.ycf{bottom:154.628000pt;}
.y241{bottom:154.909333pt;}
.y398{bottom:155.046667pt;}
.y7d7{bottom:155.226667pt;}
.y5e0{bottom:155.810667pt;}
.y287{bottom:155.893333pt;}
.y193{bottom:155.952000pt;}
.y780{bottom:156.506667pt;}
.y62c{bottom:156.508000pt;}
.y74f{bottom:157.626667pt;}
.y69e{bottom:158.408000pt;}
.y652{bottom:158.629333pt;}
.y470{bottom:160.186667pt;}
.yf7{bottom:160.644000pt;}
.y441{bottom:161.024000pt;}
.y291{bottom:161.204000pt;}
.y6d9{bottom:161.626667pt;}
.y385{bottom:162.201333pt;}
.y5b{bottom:163.626667pt;}
.y8f{bottom:163.961333pt;}
.y4f6{bottom:164.722667pt;}
.y727{bottom:165.306667pt;}
.y41d{bottom:168.677333pt;}
.y57d{bottom:169.505333pt;}
.y440{bottom:170.136000pt;}
.y2b9{bottom:170.442667pt;}
.y7d6{bottom:172.186667pt;}
.y62b{bottom:172.448000pt;}
.y77f{bottom:172.666667pt;}
.y69d{bottom:174.348000pt;}
.y1b8{bottom:174.552000pt;}
.yce{bottom:174.553333pt;}
.y557{bottom:174.636000pt;}
.y1fc{bottom:174.662667pt;}
.y240{bottom:174.834667pt;}
.y397{bottom:174.972000pt;}
.y678{bottom:175.040000pt;}
.y488{bottom:175.392000pt;}
.y5df{bottom:175.736000pt;}
.y286{bottom:175.818667pt;}
.y192{bottom:175.877333pt;}
.y329{bottom:175.908000pt;}
.y6d8{bottom:176.040000pt;}
.y13f{bottom:176.086667pt;}
.y21e{bottom:178.752000pt;}
.y5a{bottom:179.910667pt;}
.y46f{bottom:180.112000pt;}
.y8e{bottom:180.356000pt;}
.yf6{bottom:180.569333pt;}
.y74e{bottom:181.626667pt;}
.y384{bottom:182.978667pt;}
.y451{bottom:183.614667pt;}
.y53b{bottom:183.800000pt;}
.y4e0{bottom:184.673333pt;}
.y57c{bottom:185.976000pt;}
.y651{bottom:186.541333pt;}
.y7d5{bottom:188.346667pt;}
.y5b9{bottom:188.837333pt;}
.y77e{bottom:189.786667pt;}
.y2b8{bottom:190.368000pt;}
.y556{bottom:190.576000pt;}
.y677{bottom:190.980000pt;}
.y487{bottom:191.332000pt;}
.y3fe{bottom:193.208000pt;}
.y15b{bottom:194.477333pt;}
.y114{bottom:194.478667pt;}
.y1fb{bottom:194.588000pt;}
.y1da{bottom:194.712000pt;}
.y23f{bottom:194.760000pt;}
.y396{bottom:194.897333pt;}
.y5de{bottom:195.661333pt;}
.y285{bottom:195.744000pt;}
.y191{bottom:195.802667pt;}
.y328{bottom:195.833333pt;}
.y59{bottom:196.193333pt;}
.y9{bottom:196.282667pt;}
.y8d{bottom:196.750667pt;}
.y51b{bottom:196.821333pt;}
.y509{bottom:197.566667pt;}
.y726{bottom:198.106667pt;}
.y62a{bottom:198.238667pt;}
.y553{bottom:198.545333pt;}
.y21d{bottom:198.677333pt;}
.y3dd{bottom:199.072000pt;}
.y515{bottom:199.116000pt;}
.y46e{bottom:200.037333pt;}
.yf5{bottom:200.494667pt;}
.y69c{bottom:202.040000pt;}
.y57b{bottom:202.448000pt;}
.y650{bottom:202.481333pt;}
.y41c{bottom:202.652000pt;}
.y383{bottom:202.904000pt;}
.y450{bottom:203.540000pt;}
.y3c7{bottom:203.902667pt;}
.y7d4{bottom:205.466667pt;}
.y74d{bottom:205.626667pt;}
.y77d{bottom:206.106667pt;}
.y555{bottom:206.516000pt;}
.y6d7{bottom:207.080000pt;}
.y486{bottom:207.272000pt;}
.y3f3{bottom:207.368000pt;}
.ycd{bottom:208.386667pt;}
.y3fd{bottom:209.149333pt;}
.y13e{bottom:209.398667pt;}
.y3b5{bottom:209.758667pt;}
.y2b7{bottom:210.293333pt;}
.y58{bottom:212.477333pt;}
.y3a0{bottom:212.696000pt;}
.y8c{bottom:213.145333pt;}
.y629{bottom:214.178667pt;}
.y1b7{bottom:214.402667pt;}
.y2d5{bottom:214.404000pt;}
.y5a7{bottom:214.500000pt;}
.y1fa{bottom:214.513333pt;}
.y1d9{bottom:214.637333pt;}
.y23e{bottom:214.685333pt;}
.y34e{bottom:214.705333pt;}
.y395{bottom:214.822667pt;}
.y130{bottom:215.013333pt;}
.y25f{bottom:215.341333pt;}
.y15a{bottom:215.386667pt;}
.y3dc{bottom:215.544000pt;}
.y5dd{bottom:215.586667pt;}
.y284{bottom:215.669333pt;}
.y190{bottom:215.728000pt;}
.y327{bottom:215.758667pt;}
.y51a{bottom:216.746667pt;}
.y1a7{bottom:217.349333pt;}
.y508{bottom:217.492000pt;}
.y69b{bottom:217.980000pt;}
.y21c{bottom:218.602667pt;}
.y57a{bottom:218.920000pt;}
.y514{bottom:219.041333pt;}
.y676{bottom:219.362667pt;}
.y43f{bottom:219.774667pt;}
.y46d{bottom:219.962667pt;}
.yf4{bottom:220.420000pt;}
.y7d3{bottom:221.626667pt;}
.y77c{bottom:222.266667pt;}
.y554{bottom:222.456000pt;}
.y41b{bottom:222.577333pt;}
.y382{bottom:222.829333pt;}
.y44f{bottom:223.465333pt;}
.y725{bottom:223.546667pt;}
.y8{bottom:223.824000pt;}
.y3b4{bottom:225.698667pt;}
.y53a{bottom:227.284000pt;}
.y3f2{bottom:227.293333pt;}
.y113{bottom:228.280000pt;}
.y8b{bottom:229.085333pt;}
.y13d{bottom:229.324000pt;}
.y74c{bottom:229.626667pt;}
.y2b6{bottom:230.218667pt;}
.y64f{bottom:230.393333pt;}
.y30{bottom:230.656000pt;}
.y3db{bottom:232.014667pt;}
.y39f{bottom:232.621333pt;}
.y3c6{bottom:234.104000pt;}
.y4ac{bottom:234.328000pt;}
.y2d4{bottom:234.329333pt;}
.y5a6{bottom:234.425333pt;}
.y1f9{bottom:234.438667pt;}
.y1d8{bottom:234.562667pt;}
.y23d{bottom:234.610667pt;}
.y34d{bottom:234.630667pt;}
.y394{bottom:234.748000pt;}
.y12f{bottom:234.938667pt;}
.y25e{bottom:235.266667pt;}
.y675{bottom:235.302667pt;}
.y159{bottom:235.312000pt;}
.y579{bottom:235.390667pt;}
.y5dc{bottom:235.512000pt;}
.y283{bottom:235.594667pt;}
.y18f{bottom:235.653333pt;}
.y326{bottom:235.684000pt;}
.y1a6{bottom:237.274667pt;}
.y507{bottom:237.417333pt;}
.y6d5{bottom:237.960000pt;}
.y21b{bottom:238.528000pt;}
.y7d2{bottom:238.586667pt;}
.y1b6{bottom:238.697333pt;}
.y552{bottom:238.928000pt;}
.y513{bottom:238.966667pt;}
.y77b{bottom:239.226667pt;}
.y43e{bottom:239.700000pt;}
.y628{bottom:239.970667pt;}
.y4c1{bottom:240.257333pt;}
.y5b8{bottom:241.200000pt;}
.y57{bottom:242.272000pt;}
.y381{bottom:243.605333pt;}
.y36b{bottom:244.864000pt;}
.y2ef{bottom:245.024000pt;}
.y8a{bottom:245.026667pt;}
.y2a3{bottom:245.242667pt;}
.y69a{bottom:245.672000pt;}
.y64e{bottom:246.333333pt;}
.yf3{bottom:246.361333pt;}
.y2f{bottom:246.597333pt;}
.y551{bottom:246.897333pt;}
.y539{bottom:247.209333pt;}
.y3da{bottom:248.486667pt;}
.y724{bottom:248.866667pt;}
.y4df{bottom:249.057333pt;}
.y13c{bottom:249.249333pt;}
.y2b5{bottom:250.144000pt;}
.y30e{bottom:250.933333pt;}
.y674{bottom:251.242667pt;}
.y578{bottom:251.862667pt;}
.y39e{bottom:252.546667pt;}
.y44e{bottom:253.236000pt;}
.y74b{bottom:253.666667pt;}
.y3c5{bottom:254.029333pt;}
.y4ab{bottom:254.253333pt;}
.y2d3{bottom:254.254667pt;}
.y46c{bottom:254.298667pt;}
.y5a5{bottom:254.349333pt;}
.y1f8{bottom:254.364000pt;}
.y34c{bottom:254.556000pt;}
.y393{bottom:254.673333pt;}
.y1d7{bottom:254.721333pt;}
.y12e{bottom:254.864000pt;}
.y158{bottom:255.237333pt;}
.y5db{bottom:255.437333pt;}
.y18e{bottom:255.578667pt;}
.y7d1{bottom:255.586667pt;}
.y627{bottom:255.910667pt;}
.y25d{bottom:256.129333pt;}
.y4c0{bottom:256.197333pt;}
.y77a{bottom:256.386667pt;}
.y282{bottom:256.785333pt;}
.y1a5{bottom:257.200000pt;}
.y506{bottom:257.342667pt;}
.y21a{bottom:258.453333pt;}
.y56{bottom:258.556000pt;}
.y1b5{bottom:258.622667pt;}
.y7{bottom:258.925333pt;}
.y41a{bottom:259.208000pt;}
.y43d{bottom:259.624000pt;}
.ycc{bottom:259.660000pt;}
.y3f1{bottom:260.862667pt;}
.y5b7{bottom:261.125333pt;}
.y699{bottom:261.612000pt;}
.y6d4{bottom:261.986667pt;}
.y2e{bottom:262.537333pt;}
.y380{bottom:263.530667pt;}
.y3d9{bottom:264.958667pt;}
.yf2{bottom:266.286667pt;}
.y538{bottom:267.134667pt;}
.y30d{bottom:267.405333pt;}
.y577{bottom:268.334667pt;}
.y23c{bottom:268.821333pt;}
.y4de{bottom:268.982667pt;}
.y13b{bottom:269.173333pt;}
.y118{bottom:269.798667pt;}
.y2b4{bottom:270.069333pt;}
.y550{bottom:271.340000pt;}
.y626{bottom:271.850667pt;}
.y4bf{bottom:272.137333pt;}
.y39d{bottom:272.470667pt;}
.y779{bottom:272.546667pt;}
.y7d0{bottom:272.706667pt;}
.y44d{bottom:273.161333pt;}
.y6b3{bottom:273.164000pt;}
.y3c4{bottom:273.954667pt;}
.y723{bottom:274.146667pt;}
.y60c{bottom:274.178667pt;}
.y64d{bottom:274.245333pt;}
.y5a4{bottom:274.274667pt;}
.y1f7{bottom:274.289333pt;}
.y519{bottom:274.474667pt;}
.y34b{bottom:274.481333pt;}
.y1d6{bottom:274.646667pt;}
.y89{bottom:274.704000pt;}
.y55{bottom:274.838667pt;}
.y392{bottom:275.017333pt;}
.y157{bottom:275.162667pt;}
.y5da{bottom:275.362667pt;}
.y12d{bottom:275.398667pt;}
.y25c{bottom:276.054667pt;}
.y281{bottom:276.710667pt;}
.y1a4{bottom:277.125333pt;}
.y219{bottom:278.378667pt;}
.y2d{bottom:278.477333pt;}
.y1b4{bottom:278.548000pt;}
.y419{bottom:279.133333pt;}
.y112{bottom:279.462667pt;}
.y43c{bottom:279.549333pt;}
.ycb{bottom:279.585333pt;}
.y74a{bottom:279.586667pt;}
.y673{bottom:279.625333pt;}
.y505{bottom:280.357333pt;}
.y5b6{bottom:281.050667pt;}
.y3d8{bottom:281.429333pt;}
.y37f{bottom:283.456000pt;}
.y2d2{bottom:283.741333pt;}
.y576{bottom:284.805333pt;}
.yf1{bottom:286.212000pt;}
.y18d{bottom:286.985333pt;}
.y537{bottom:287.060000pt;}
.y54f{bottom:287.280000pt;}
.y4be{bottom:288.077333pt;}
.y4dd{bottom:288.908000pt;}
.y6b2{bottom:289.104000pt;}
.y698{bottom:289.302667pt;}
.y3d7{bottom:289.400000pt;}
.y325{bottom:289.449333pt;}
.y7cf{bottom:289.506667pt;}
.y778{bottom:289.666667pt;}
.y2b3{bottom:289.994667pt;}
.y64c{bottom:290.185333pt;}
.y2a2{bottom:290.232000pt;}
.y722{bottom:290.946667pt;}
.y88{bottom:291.098667pt;}
.y54{bottom:291.122667pt;}
.y39c{bottom:292.396000pt;}
.y2ee{bottom:292.700000pt;}
.y6d2{bottom:292.866667pt;}
.y44c{bottom:293.086667pt;}
.y4aa{bottom:293.484000pt;}
.y3f0{bottom:293.677333pt;}
.y3c3{bottom:293.880000pt;}
.y36a{bottom:294.070667pt;}
.y60b{bottom:294.104000pt;}
.y5a3{bottom:294.200000pt;}
.y1f6{bottom:294.214667pt;}
.y34a{bottom:294.406667pt;}
.y2c{bottom:294.417333pt;}
.y1d5{bottom:294.572000pt;}
.y391{bottom:294.942667pt;}
.y12c{bottom:295.324000pt;}
.y672{bottom:295.566667pt;}
.y25b{bottom:295.980000pt;}
.y5d9{bottom:296.470667pt;}
.y280{bottom:296.636000pt;}
.y1a3{bottom:297.050667pt;}
.y30c{bottom:297.160000pt;}
.y625{bottom:297.641333pt;}
.y13a{bottom:298.114667pt;}
.y218{bottom:298.304000pt;}
.y1b3{bottom:298.473333pt;}
.y418{bottom:299.058667pt;}
.y111{bottom:299.388000pt;}
.y43b{bottom:299.474667pt;}
.yca{bottom:299.510667pt;}
.y504{bottom:300.282667pt;}
.y5b5{bottom:300.976000pt;}
.y575{bottom:301.277333pt;}
.y54e{bottom:303.220000pt;}
.y37e{bottom:303.381333pt;}
.y2d1{bottom:303.666667pt;}
.y4bd{bottom:304.018667pt;}
.y6b1{bottom:305.044000pt;}
.y697{bottom:305.244000pt;}
.y324{bottom:305.389333pt;}
.y777{bottom:305.826667pt;}
.y156{bottom:305.922667pt;}
.yf0{bottom:306.137333pt;}
.y7ce{bottom:306.946667pt;}
.y536{bottom:306.985333pt;}
.y46b{bottom:307.024000pt;}
.y721{bottom:307.266667pt;}
.y53{bottom:307.405333pt;}
.y87{bottom:307.494667pt;}
.y2b2{bottom:309.920000pt;}
.y4a9{bottom:309.956000pt;}
.y2a1{bottom:310.157333pt;}
.y2b{bottom:310.357333pt;}
.y369{bottom:310.542667pt;}
.y54a{bottom:311.190667pt;}
.y671{bottom:311.506667pt;}
.y2ed{bottom:312.625333pt;}
.y44b{bottom:313.012000pt;}
.y30b{bottom:313.100000pt;}
.y624{bottom:313.581333pt;}
.y3ef{bottom:313.602667pt;}
.y3c2{bottom:313.805333pt;}
.y5a2{bottom:314.125333pt;}
.y1f5{bottom:314.140000pt;}
.y1d4{bottom:314.497333pt;}
.y390{bottom:314.868000pt;}
.y12b{bottom:315.249333pt;}
.y25a{bottom:315.905333pt;}
.y5d8{bottom:316.396000pt;}
.y1a2{bottom:316.976000pt;}
.y60a{bottom:317.332000pt;}
.y64b{bottom:318.097333pt;}
.y217{bottom:318.229333pt;}
.y417{bottom:318.984000pt;}
.y54d{bottom:319.160000pt;}
.y43a{bottom:319.400000pt;}
.yc9{bottom:319.436000pt;}
.y4bc{bottom:319.958667pt;}
.y574{bottom:320.405333pt;}
.y5b4{bottom:320.901333pt;}
.y23b{bottom:321.184000pt;}
.y776{bottom:321.986667pt;}
.y7cd{bottom:323.266667pt;}
.y37d{bottom:323.306667pt;}
.y720{bottom:323.586667pt;}
.y2d0{bottom:323.592000pt;}
.y52{bottom:323.689333pt;}
.y86{bottom:323.889333pt;}
.yef{bottom:326.062667pt;}
.y2a{bottom:326.297333pt;}
.y4a8{bottom:326.428000pt;}
.y535{bottom:326.910667pt;}
.y46a{bottom:326.949333pt;}
.y368{bottom:327.014667pt;}
.y3d6{bottom:327.125333pt;}
.y27f{bottom:327.932000pt;}
.y748{bottom:329.346667pt;}
.y623{bottom:329.522667pt;}
.y2b1{bottom:329.845333pt;}
.y2a0{bottom:330.082667pt;}
.y110{bottom:330.210667pt;}
.y39b{bottom:330.540000pt;}
.y6b0{bottom:331.612000pt;}
.y349{bottom:331.786667pt;}
.y2ec{bottom:332.550667pt;}
.y696{bottom:332.934667pt;}
.y3c1{bottom:333.730667pt;}
.y4dc{bottom:333.988000pt;}
.y5a1{bottom:334.050667pt;}
.y1f4{bottom:334.065333pt;}
.y3ee{bottom:334.282667pt;}
.y1d3{bottom:334.422667pt;}
.y38f{bottom:334.793333pt;}
.y54c{bottom:335.100000pt;}
.y12a{bottom:335.785333pt;}
.y259{bottom:335.830667pt;}
.y5d7{bottom:336.321333pt;}
.y1a1{bottom:336.901333pt;}
.y18c{bottom:336.941333pt;}
.y609{bottom:337.256000pt;}
.y139{bottom:337.608000pt;}
.y216{bottom:338.154667pt;}
.y416{bottom:338.909333pt;}
.y775{bottom:339.106667pt;}
.y439{bottom:339.325333pt;}
.y7cc{bottom:339.426667pt;}
.yc8{bottom:339.446667pt;}
.y670{bottom:339.889333pt;}
.y71f{bottom:339.906667pt;}
.y51{bottom:339.972000pt;}
.y85{bottom:340.284000pt;}
.y1b2{bottom:340.448000pt;}
.y5b3{bottom:340.826667pt;}
.y6d1{bottom:340.866667pt;}
.y23a{bottom:341.109333pt;}
.y30a{bottom:341.301333pt;}
.y29{bottom:342.238667pt;}
.y44a{bottom:342.781333pt;}
.y4a7{bottom:342.898667pt;}
.y512{bottom:343.232000pt;}
.y367{bottom:343.485333pt;}
.y2cf{bottom:343.517333pt;}
.y37c{bottom:344.084000pt;}
.y4bb{bottom:345.889333pt;}
.y64a{bottom:346.009333pt;}
.y746{bottom:346.306667pt;}
.y469{bottom:346.874667pt;}
.y6af{bottom:347.552000pt;}
.y695{bottom:348.874667pt;}
.y4db{bottom:349.928000pt;}
.y29f{bottom:350.008000pt;}
.y10f{bottom:350.136000pt;}
.y573{bottom:350.161333pt;}
.y39a{bottom:350.464000pt;}
.y54b{bottom:351.041333pt;}
.y503{bottom:351.594667pt;}
.y348{bottom:351.712000pt;}
.yee{bottom:352.005333pt;}
.y2eb{bottom:352.476000pt;}
.y3c0{bottom:353.656000pt;}
.y5a0{bottom:353.976000pt;}
.y1f3{bottom:353.990667pt;}
.y3ed{bottom:354.208000pt;}
.y1d2{bottom:354.348000pt;}
.y33{bottom:354.920000pt;}
.y622{bottom:355.313333pt;}
.y129{bottom:355.710667pt;}
.y258{bottom:355.756000pt;}
.y66f{bottom:355.829333pt;}
.y71e{bottom:356.066667pt;}
.y84{bottom:356.224000pt;}
.y5d6{bottom:356.246667pt;}
.y50{bottom:356.256000pt;}
.y7cb{bottom:356.386667pt;}
.y1a0{bottom:356.826667pt;}
.y18b{bottom:356.866667pt;}
.y608{bottom:357.181333pt;}
.y138{bottom:357.533333pt;}
.y28{bottom:358.178667pt;}
.y415{bottom:358.834667pt;}
.y438{bottom:359.250667pt;}
.yc7{bottom:359.372000pt;}
.y366{bottom:359.957333pt;}
.y5b2{bottom:360.752000pt;}
.y239{bottom:361.034667pt;}
.y309{bottom:361.226667pt;}
.y649{bottom:361.949333pt;}
.y4a6{bottom:362.028000pt;}
.y215{bottom:362.278667pt;}
.y449{bottom:362.706667pt;}
.y3d5{bottom:363.240000pt;}
.y2ce{bottom:363.442667pt;}
.y37b{bottom:364.009333pt;}
.y694{bottom:364.816000pt;}
.y4da{bottom:365.868000pt;}
.y572{bottom:366.101333pt;}
.y29e{bottom:369.933333pt;}
.y10e{bottom:370.061333pt;}
.y549{bottom:370.169333pt;}
.y621{bottom:371.253333pt;}
.y347{bottom:371.637333pt;}
.y66e{bottom:371.769333pt;}
.y6d0{bottom:371.906667pt;}
.yed{bottom:371.930667pt;}
.y71d{bottom:372.386667pt;}
.y2ea{bottom:372.401333pt;}
.y4f{bottom:372.538667pt;}
.y83{bottom:372.618667pt;}
.y7ca{bottom:372.706667pt;}
.y774{bottom:373.186667pt;}
.y59f{bottom:373.901333pt;}
.y1f2{bottom:373.916000pt;}
.y27{bottom:374.118667pt;}
.y3ec{bottom:374.133333pt;}
.y1d1{bottom:374.273333pt;}
.y534{bottom:374.894667pt;}
.y128{bottom:375.636000pt;}
.y365{bottom:375.897333pt;}
.y5d5{bottom:376.172000pt;}
.y19f{bottom:376.752000pt;}
.y18a{bottom:376.792000pt;}
.y607{bottom:377.106667pt;}
.y137{bottom:377.458667pt;}
.y27e{bottom:377.565333pt;}
.y548{bottom:378.138667pt;}
.y468{bottom:378.818667pt;}
.yc6{bottom:379.296000pt;}
.y2b0{bottom:379.502667pt;}
.y414{bottom:379.616000pt;}
.y4ba{bottom:379.893333pt;}
.y5b1{bottom:380.677333pt;}
.y238{bottom:380.958667pt;}
.y308{bottom:381.152000pt;}
.y3bf{bottom:381.802667pt;}
.y4d9{bottom:381.808000pt;}
.y571{bottom:382.041333pt;}
.y214{bottom:382.204000pt;}
.y448{bottom:382.632000pt;}
.y155{bottom:382.798667pt;}
.y3d4{bottom:383.165333pt;}
.y37a{bottom:383.934667pt;}
.y590{bottom:386.117333pt;}
.y257{bottom:386.430667pt;}
.y620{bottom:387.193333pt;}
.y511{bottom:387.720000pt;}
.y82{bottom:388.558667pt;}
.y71c{bottom:388.706667pt;}
.y4e{bottom:388.822667pt;}
.y7c9{bottom:388.866667pt;}
.y532{bottom:389.506667pt;}
.y773{bottom:389.826667pt;}
.y29d{bottom:389.858667pt;}
.y648{bottom:389.861333pt;}
.y38e{bottom:389.982667pt;}
.y10d{bottom:389.986667pt;}
.y26{bottom:390.058667pt;}
.y437{bottom:390.269333pt;}
.y346{bottom:391.562667pt;}
.y4a5{bottom:391.782667pt;}
.yec{bottom:391.856000pt;}
.y2e9{bottom:392.326667pt;}
.y693{bottom:392.506667pt;}
.y59e{bottom:393.922667pt;}
.y1f1{bottom:393.952000pt;}
.y3eb{bottom:394.058667pt;}
.y1d0{bottom:394.432000pt;}
.y2af{bottom:395.442667pt;}
.y4b9{bottom:395.833333pt;}
.y19e{bottom:396.677333pt;}
.y189{bottom:396.717333pt;}
.y606{bottom:397.032000pt;}
.y5d4{bottom:397.281333pt;}
.y136{bottom:397.384000pt;}
.y533{bottom:397.476000pt;}
.y27d{bottom:397.490667pt;}
.y4d8{bottom:397.749333pt;}
.y467{bottom:398.744000pt;}
.yc5{bottom:399.221333pt;}
.y413{bottom:399.540000pt;}
.y5f6{bottom:399.889333pt;}
.y66d{bottom:400.152000pt;}
.y237{bottom:400.884000pt;}
.y307{bottom:401.077333pt;}
.y6{bottom:401.448000pt;}
.y3be{bottom:401.728000pt;}
.y213{bottom:402.129333pt;}
.y447{bottom:402.557333pt;}
.y6cf{bottom:402.786667pt;}
.y502{bottom:402.906667pt;}
.y3d3{bottom:403.090667pt;}
.y379{bottom:403.860000pt;}
.y81{bottom:404.953333pt;}
.y71b{bottom:405.026667pt;}
.y4d{bottom:405.105333pt;}
.y364{bottom:405.121333pt;}
.y127{bottom:405.686667pt;}
.y647{bottom:405.801333pt;}
.y7c8{bottom:405.826667pt;}
.y25{bottom:405.998667pt;}
.y58f{bottom:406.042667pt;}
.y772{bottom:407.266667pt;}
.y4a4{bottom:407.722667pt;}
.y399{bottom:408.190667pt;}
.y692{bottom:408.446667pt;}
.y436{bottom:410.194667pt;}
.y2cd{bottom:410.501333pt;}
.y7a7{bottom:411.266667pt;}
.y345{bottom:411.488000pt;}
.yeb{bottom:411.781333pt;}
.y570{bottom:412.358667pt;}
.y61f{bottom:412.984000pt;}
.y4d7{bottom:413.689333pt;}
.y59d{bottom:413.848000pt;}
.y1f0{bottom:413.877333pt;}
.y3ea{bottom:413.984000pt;}
.y1cf{bottom:414.357333pt;}
.y1b1{bottom:415.288000pt;}
.y547{bottom:415.864000pt;}
.y66c{bottom:416.092000pt;}
.y6f6{bottom:416.546667pt;}
.y6ae{bottom:416.625333pt;}
.y188{bottom:416.642667pt;}
.y5d3{bottom:417.206667pt;}
.y27c{bottom:417.416000pt;}
.yc4{bottom:419.146667pt;}
.y412{bottom:419.465333pt;}
.y19d{bottom:419.549333pt;}
.y5f5{bottom:419.814667pt;}
.y605{bottom:420.260000pt;}
.y531{bottom:420.589333pt;}
.y10c{bottom:420.809333pt;}
.y306{bottom:421.002667pt;}
.y363{bottom:421.061333pt;}
.y71a{bottom:421.186667pt;}
.y80{bottom:421.348000pt;}
.y4c{bottom:421.389333pt;}
.y744{bottom:421.826667pt;}
.y24{bottom:421.940000pt;}
.y212{bottom:422.054667pt;}
.y501{bottom:422.832000pt;}
.y7c7{bottom:422.946667pt;}
.y3d2{bottom:423.016000pt;}
.y771{bottom:423.426667pt;}
.y378{bottom:423.785333pt;}
.y4b8{bottom:424.977333pt;}
.y466{bottom:425.530667pt;}
.y58e{bottom:425.968000pt;}
.y2e8{bottom:427.729333pt;}
.y61e{bottom:428.924000pt;}
.y435{bottom:430.120000pt;}
.y148{bottom:430.740000pt;}
.y256{bottom:430.941333pt;}
.y3bd{bottom:431.077333pt;}
.y344{bottom:431.413333pt;}
.y446{bottom:431.544000pt;}
.y546{bottom:431.804000pt;}
.y56f{bottom:432.284000pt;}
.y6ad{bottom:432.566667pt;}
.y6ce{bottom:433.666667pt;}
.y646{bottom:433.713333pt;}
.y59c{bottom:433.773333pt;}
.y1ef{bottom:433.802667pt;}
.y1ce{bottom:434.282667pt;}
.y465{bottom:434.642667pt;}
.y52f{bottom:435.201333pt;}
.y1b0{bottom:435.213333pt;}
.y7a6{bottom:435.746667pt;}
.y691{bottom:436.138667pt;}
.y187{bottom:436.568000pt;}
.y5d2{bottom:437.132000pt;}
.y7f{bottom:437.289333pt;}
.y719{bottom:437.506667pt;}
.y4b{bottom:437.672000pt;}
.yea{bottom:437.722667pt;}
.y23{bottom:437.880000pt;}
.y27b{bottom:438.606667pt;}
.y4a3{bottom:438.624000pt;}
.yc3{bottom:439.072000pt;}
.y411{bottom:439.390667pt;}
.y19c{bottom:439.474667pt;}
.y4d6{bottom:439.620000pt;}
.y5f4{bottom:439.740000pt;}
.y7c6{bottom:439.906667pt;}
.y604{bottom:440.185333pt;}
.y770{bottom:440.546667pt;}
.y10b{bottom:440.734667pt;}
.y305{bottom:440.928000pt;}
.y6f5{bottom:441.826667pt;}
.y211{bottom:441.980000pt;}
.y500{bottom:442.757333pt;}
.y3d1{bottom:442.941333pt;}
.y530{bottom:443.172000pt;}
.y29c{bottom:443.708000pt;}
.y377{bottom:443.710667pt;}
.y3e9{bottom:444.309333pt;}
.y66b{bottom:444.474667pt;}
.y4b7{bottom:444.902667pt;}
.y58d{bottom:445.893333pt;}
.y545{bottom:447.745333pt;}
.y645{bottom:449.653333pt;}
.y434{bottom:450.045333pt;}
.y147{bottom:450.665333pt;}
.y255{bottom:450.866667pt;}
.y362{bottom:451.272000pt;}
.y343{bottom:451.338667pt;}
.y445{bottom:451.469333pt;}
.y126{bottom:451.714667pt;}
.y7a5{bottom:452.066667pt;}
.y690{bottom:452.078667pt;}
.y56e{bottom:452.209333pt;}
.y7e{bottom:453.684000pt;}
.y59b{bottom:453.698667pt;}
.y1ee{bottom:453.728000pt;}
.y22{bottom:453.820000pt;}
.y718{bottom:453.826667pt;}
.y4a{bottom:453.956000pt;}
.y1cd{bottom:454.208000pt;}
.y61d{bottom:454.716000pt;}
.y3fc{bottom:454.834667pt;}
.y1af{bottom:455.138667pt;}
.y135{bottom:455.350667pt;}
.y510{bottom:455.565333pt;}
.y7c5{bottom:456.226667pt;}
.y186{bottom:456.493333pt;}
.y76f{bottom:456.866667pt;}
.y5d1{bottom:457.056000pt;}
.ye9{bottom:457.648000pt;}
.y6cd{bottom:457.666667pt;}
.y27a{bottom:458.532000pt;}
.y4a2{bottom:458.549333pt;}
.y6f4{bottom:458.626667pt;}
.yc2{bottom:458.997333pt;}
.y6ac{bottom:459.133333pt;}
.y3bc{bottom:459.224000pt;}
.y29b{bottom:459.648000pt;}
.y5f3{bottom:459.665333pt;}
.y603{bottom:460.110667pt;}
.y742{bottom:460.386667pt;}
.y66a{bottom:460.414667pt;}
.y5b0{bottom:460.660000pt;}
.y304{bottom:460.853333pt;}
.y236{bottom:460.942667pt;}
.ya6{bottom:461.789333pt;}
.y210{bottom:461.905333pt;}
.y4ff{bottom:462.682667pt;}
.y3d0{bottom:462.866667pt;}
.y376{bottom:463.636000pt;}
.y544{bottom:463.685333pt;}
.y52e{bottom:466.285333pt;}
.y68f{bottom:468.018667pt;}
.y7a4{bottom:468.226667pt;}
.y21{bottom:469.760000pt;}
.y410{bottom:469.908000pt;}
.y717{bottom:469.986667pt;}
.y7d{bottom:470.078667pt;}
.y5{bottom:470.612000pt;}
.y61c{bottom:470.656000pt;}
.y254{bottom:470.792000pt;}
.y485{bottom:470.957333pt;}
.y361{bottom:471.197333pt;}
.y342{bottom:471.264000pt;}
.y134{bottom:471.292000pt;}
.y10a{bottom:471.489333pt;}
.y50f{bottom:471.506667pt;}
.y125{bottom:471.640000pt;}
.y7c4{bottom:472.546667pt;}
.y76e{bottom:473.026667pt;}
.y4d5{bottom:473.624000pt;}
.y1ed{bottom:473.653333pt;}
.y19b{bottom:473.964000pt;}
.y1cc{bottom:474.133333pt;}
.y3fb{bottom:474.760000pt;}
.y1ae{bottom:475.064000pt;}
.y6ab{bottom:475.073333pt;}
.y4b6{bottom:475.613333pt;}
.y669{bottom:476.356000pt;}
.y185{bottom:476.418667pt;}
.y5d0{bottom:476.981333pt;}
.y644{bottom:477.565333pt;}
.ye8{bottom:477.573333pt;}
.ya5{bottom:477.730667pt;}
.y279{bottom:478.457333pt;}
.y4a1{bottom:478.474667pt;}
.yc1{bottom:478.922667pt;}
.y3bb{bottom:479.149333pt;}
.y602{bottom:480.034667pt;}
.y3b3{bottom:480.146667pt;}
.y5af{bottom:480.585333pt;}
.y303{bottom:480.778667pt;}
.y235{bottom:480.868000pt;}
.y52c{bottom:480.896000pt;}
.y433{bottom:481.062667pt;}
.y58c{bottom:481.330667pt;}
.y464{bottom:481.353333pt;}
.y20f{bottom:481.830667pt;}
.y6f3{bottom:482.626667pt;}
.y3cf{bottom:482.792000pt;}
.y2e7{bottom:483.542667pt;}
.y375{bottom:483.561333pt;}
.y49{bottom:483.750667pt;}
.y7a3{bottom:485.346667pt;}
.y20{bottom:485.700000pt;}
.y716{bottom:486.306667pt;}
.y7c{bottom:486.473333pt;}
.y61b{bottom:486.596000pt;}
.y56d{bottom:486.682667pt;}
.y50e{bottom:487.446667pt;}
.y3e8{bottom:487.810667pt;}
.y6ca{bottom:488.706667pt;}
.y52d{bottom:488.866667pt;}
.y146{bottom:489.296000pt;}
.y76d{bottom:490.146667pt;}
.y463{bottom:490.465333pt;}
.y484{bottom:490.882667pt;}
.y360{bottom:491.122667pt;}
.y341{bottom:491.189333pt;}
.y124{bottom:491.565333pt;}
.y5f2{bottom:492.873333pt;}
.y643{bottom:493.505333pt;}
.y59a{bottom:493.549333pt;}
.y1ec{bottom:493.578667pt;}
.ya4{bottom:493.670667pt;}
.y323{bottom:494.330667pt;}
.y3fa{bottom:494.685333pt;}
.y1ad{bottom:494.989333pt;}
.y543{bottom:495.289333pt;}
.y68e{bottom:495.710667pt;}
.y184{bottom:496.344000pt;}
.y432{bottom:496.405333pt;}
.y5cf{bottom:496.906667pt;}
.ye7{bottom:497.498667pt;}
.y278{bottom:498.382667pt;}
.yc0{bottom:498.933333pt;}
.y3ba{bottom:499.074667pt;}
.y741{bottom:499.453333pt;}
.y601{bottom:499.960000pt;}
.y48{bottom:500.034667pt;}
.y3b2{bottom:500.072000pt;}
.y5ae{bottom:500.510667pt;}
.y302{bottom:500.704000pt;}
.y234{bottom:500.793333pt;}
.y431{bottom:500.988000pt;}
.y7a2{bottom:501.533333pt;}
.y1f{bottom:501.640000pt;}
.y444{bottom:501.742667pt;}
.y4d4{bottom:502.069333pt;}
.y7b{bottom:502.413333pt;}
.y2cc{bottom:502.442667pt;}
.y715{bottom:502.653333pt;}
.y16e{bottom:502.769333pt;}
.y50d{bottom:503.386667pt;}
.y2e6{bottom:503.468000pt;}
.y1cb{bottom:503.469333pt;}
.y253{bottom:504.158667pt;}
.y290{bottom:504.333333pt;}
.y668{bottom:504.738667pt;}
.y7c3{bottom:505.053333pt;}
.y109{bottom:505.292000pt;}
.y52b{bottom:505.338667pt;}
.y3ce{bottom:505.788000pt;}
.y20e{bottom:505.954667pt;}
.y76c{bottom:506.333333pt;}
.y3e7{bottom:507.736000pt;}
.y4a0{bottom:508.248000pt;}
.y145{bottom:509.221333pt;}
.y642{bottom:509.445333pt;}
.ya3{bottom:509.610667pt;}
.y483{bottom:510.808000pt;}
.y35f{bottom:511.048000pt;}
.y340{bottom:511.114667pt;}
.y68d{bottom:511.650667pt;}
.y123{bottom:512.100000pt;}
.y61a{bottom:512.386667pt;}
.y5f1{bottom:512.798667pt;}
.y599{bottom:513.474667pt;}
.y1eb{bottom:513.504000pt;}
.y374{bottom:514.070667pt;}
.y322{bottom:514.256000pt;}
.y3f9{bottom:514.610667pt;}
.y1ac{bottom:514.914667pt;}
.y542{bottom:515.214667pt;}
.y183{bottom:516.269333pt;}
.y47{bottom:516.317333pt;}
.y740{bottom:516.413333pt;}
.y5ce{bottom:516.832000pt;}
.y40f{bottom:517.288000pt;}
.ye6{bottom:517.424000pt;}
.y1e{bottom:517.581333pt;}
.y443{bottom:517.682667pt;}
.y7a1{bottom:517.853333pt;}
.y277{bottom:518.308000pt;}
.y4f5{bottom:518.417333pt;}
.y7a{bottom:518.808000pt;}
.ybf{bottom:518.858667pt;}
.y714{bottom:518.973333pt;}
.y3b9{bottom:519.000000pt;}
.y6f2{bottom:519.773333pt;}
.y600{bottom:519.885333pt;}
.y4b5{bottom:520.228000pt;}
.y5ad{bottom:520.436000pt;}
.y301{bottom:520.629333pt;}
.y3b1{bottom:520.662667pt;}
.y667{bottom:520.678667pt;}
.y233{bottom:520.718667pt;}
.y430{bottom:520.913333pt;}
.y7c2{bottom:521.213333pt;}
.y4d3{bottom:521.994667pt;}
.y2cb{bottom:522.368000pt;}
.y16d{bottom:522.694667pt;}
.y2e5{bottom:523.393333pt;}
.y76b{bottom:523.453333pt;}
.y28f{bottom:524.258667pt;}
.ya2{bottom:525.550667pt;}
.y3cd{bottom:525.713333pt;}
.y20d{bottom:525.880000pt;}
.y68c{bottom:527.590667pt;}
.y3e6{bottom:527.661333pt;}
.y19a{bottom:529.521333pt;}
.y482{bottom:530.733333pt;}
.y35e{bottom:530.973333pt;}
.y33f{bottom:531.342667pt;}
.y122{bottom:532.025333pt;}
.y46{bottom:532.601333pt;}
.y73f{bottom:533.213333pt;}
.y598{bottom:533.400000pt;}
.y1ea{bottom:533.428000pt;}
.y1d{bottom:533.521333pt;}
.y442{bottom:533.624000pt;}
.y7a0{bottom:534.173333pt;}
.y321{bottom:534.181333pt;}
.y3f8{bottom:534.536000pt;}
.y52a{bottom:535.093333pt;}
.y713{bottom:535.133333pt;}
.y541{bottom:535.140000pt;}
.y182{bottom:536.194667pt;}
.y5cd{bottom:536.757333pt;}
.y462{bottom:537.176000pt;}
.y40e{bottom:537.213333pt;}
.y58b{bottom:537.248000pt;}
.y641{bottom:537.357333pt;}
.y619{bottom:538.177333pt;}
.y7c1{bottom:538.333333pt;}
.y4f4{bottom:538.342667pt;}
.y252{bottom:538.462667pt;}
.ybe{bottom:538.784000pt;}
.y6f1{bottom:539.133333pt;}
.y1ab{bottom:539.209333pt;}
.y276{bottom:539.498667pt;}
.y76a{bottom:539.613333pt;}
.y56c{bottom:539.808000pt;}
.y5ff{bottom:539.810667pt;}
.y4b4{bottom:540.153333pt;}
.y5ac{bottom:540.361333pt;}
.y4fd{bottom:540.381333pt;}
.y300{bottom:540.554667pt;}
.y3b0{bottom:540.588000pt;}
.y232{bottom:540.644000pt;}
.y42f{bottom:540.838667pt;}
.ya1{bottom:541.490667pt;}
.y4d2{bottom:541.920000pt;}
.y2ca{bottom:542.293333pt;}
.y16c{bottom:542.620000pt;}
.y4{bottom:542.906667pt;}
.y5f0{bottom:543.350667pt;}
.ye5{bottom:543.366667pt;}
.y6aa{bottom:544.148000pt;}
.y28e{bottom:544.184000pt;}
.y3cc{bottom:545.638667pt;}
.y20c{bottom:545.805333pt;}
.y461{bottom:546.289333pt;}
.y1ca{bottom:547.429333pt;}
.y3e5{bottom:547.586667pt;}
.y144{bottom:547.852000pt;}
.y79{bottom:548.486667pt;}
.y45{bottom:548.884000pt;}
.y666{bottom:549.061333pt;}
.y199{bottom:549.446667pt;}
.y1c{bottom:549.461333pt;}
.y73e{bottom:550.013333pt;}
.y79f{bottom:550.333333pt;}
.y481{bottom:550.658667pt;}
.y529{bottom:551.033333pt;}
.y33e{bottom:551.268000pt;}
.y712{bottom:551.453333pt;}
.y35d{bottom:551.724000pt;}
.y121{bottom:551.950667pt;}
.y640{bottom:553.297333pt;}
.y1e9{bottom:553.353333pt;}
.y49f{bottom:553.472000pt;}
.y618{bottom:554.118667pt;}
.y4fe{bottom:554.178667pt;}
.y3f7{bottom:554.461333pt;}
.y7c0{bottom:554.653333pt;}
.y540{bottom:555.065333pt;}
.y68b{bottom:555.282667pt;}
.y320{bottom:555.461333pt;}
.y181{bottom:556.120000pt;}
.y108{bottom:556.473333pt;}
.y769{bottom:556.573333pt;}
.y6c9{bottom:556.733333pt;}
.y40d{bottom:557.138667pt;}
.y58a{bottom:557.173333pt;}
.ya0{bottom:557.430667pt;}
.y5cc{bottom:557.866667pt;}
.y373{bottom:558.108000pt;}
.y4f3{bottom:558.268000pt;}
.y6f0{bottom:558.493333pt;}
.ybd{bottom:558.708000pt;}
.y2e4{bottom:558.796000pt;}
.y1aa{bottom:559.134667pt;}
.y275{bottom:559.424000pt;}
.y56b{bottom:559.733333pt;}
.y5fe{bottom:559.736000pt;}
.y6a9{bottom:560.088000pt;}
.y4fc{bottom:560.306667pt;}
.y2ff{bottom:560.480000pt;}
.y3af{bottom:560.513333pt;}
.y231{bottom:560.569333pt;}
.y4d1{bottom:561.845333pt;}
.y2c9{bottom:562.218667pt;}
.y16b{bottom:562.545333pt;}
.y5ef{bottom:563.276000pt;}
.ye4{bottom:563.292000pt;}
.y28d{bottom:564.109333pt;}
.y78{bottom:564.881333pt;}
.y665{bottom:565.001333pt;}
.y44{bottom:565.168000pt;}
.y1b{bottom:565.401333pt;}
.y20b{bottom:565.730667pt;}
.y73d{bottom:566.973333pt;}
.y597{bottom:567.257333pt;}
.y1c9{bottom:567.354667pt;}
.y79e{bottom:567.453333pt;}
.y711{bottom:567.773333pt;}
.y143{bottom:567.777333pt;}
.y63f{bottom:569.238667pt;}
.y198{bottom:569.372000pt;}
.y617{bottom:570.058667pt;}
.y35{bottom:570.314667pt;}
.y480{bottom:570.584000pt;}
.y4b3{bottom:570.864000pt;}
.y7bf{bottom:570.973333pt;}
.y33d{bottom:571.193333pt;}
.y3b8{bottom:571.594667pt;}
.y35c{bottom:571.649333pt;}
.y42e{bottom:571.857333pt;}
.y251{bottom:572.766667pt;}
.y9f{bottom:573.372000pt;}
.y1e8{bottom:573.389333pt;}
.y49e{bottom:573.397333pt;}
.y768{bottom:573.533333pt;}
.y3f6{bottom:574.386667pt;}
.y6c8{bottom:574.653333pt;}
.y496{bottom:575.232000pt;}
.y31f{bottom:575.386667pt;}
.y6a8{bottom:576.028000pt;}
.y107{bottom:576.398667pt;}
.y40c{bottom:577.064000pt;}
.y589{bottom:577.098667pt;}
.y180{bottom:577.369333pt;}
.y5cb{bottom:577.792000pt;}
.y6ef{bottom:577.853333pt;}
.y372{bottom:578.033333pt;}
.y4f2{bottom:578.193333pt;}
.y528{bottom:578.560000pt;}
.ybc{bottom:578.718667pt;}
.y274{bottom:579.349333pt;}
.y56a{bottom:579.658667pt;}
.y5fd{bottom:579.661333pt;}
.y4fb{bottom:580.232000pt;}
.y2fe{bottom:580.405333pt;}
.y230{bottom:580.494667pt;}
.y3ae{bottom:581.105333pt;}
.y77{bottom:581.276000pt;}
.y1a{bottom:581.341333pt;}
.y43{bottom:581.450667pt;}
.y4d0{bottom:581.770667pt;}
.y2c8{bottom:582.144000pt;}
.y68a{bottom:582.973333pt;}
.y16a{bottom:582.977333pt;}
.ye3{bottom:583.217333pt;}
.y79d{bottom:583.613333pt;}
.y73c{bottom:583.773333pt;}
.y710{bottom:584.093333pt;}
.y53f{bottom:585.505333pt;}
.y120{bottom:586.784000pt;}
.y7be{bottom:587.133333pt;}
.y1c8{bottom:587.280000pt;}
.y3b7{bottom:587.536000pt;}
.y197{bottom:589.297333pt;}
.y9e{bottom:589.312000pt;}
.y47f{bottom:590.509333pt;}
.y767{bottom:590.653333pt;}
.y3{bottom:590.728000pt;}
.y33c{bottom:591.118667pt;}
.y3cb{bottom:591.130667pt;}
.y35b{bottom:591.574667pt;}
.y42d{bottom:591.782667pt;}
.y460{bottom:592.149333pt;}
.y6c7{bottom:592.413333pt;}
.y1e7{bottom:593.314667pt;}
.y49d{bottom:593.322667pt;}
.y664{bottom:593.384000pt;}
.y3f5{bottom:594.312000pt;}
.y495{bottom:595.157333pt;}
.y31e{bottom:595.312000pt;}
.y616{bottom:595.849333pt;}
.y106{bottom:596.324000pt;}
.y1a9{bottom:596.326667pt;}
.y28c{bottom:596.456000pt;}
.y5ee{bottom:596.485333pt;}
.y588{bottom:597.024000pt;}
.y63e{bottom:597.150667pt;}
.y6ee{bottom:597.213333pt;}
.y19{bottom:597.281333pt;}
.y17f{bottom:597.294667pt;}
.y76{bottom:597.670667pt;}
.y5ca{bottom:597.717333pt;}
.y42{bottom:597.734667pt;}
.y40b{bottom:597.844000pt;}
.y371{bottom:597.958667pt;}
.y4f1{bottom:598.118667pt;}
.y527{bottom:598.485333pt;}
.ybb{bottom:598.644000pt;}
.y689{bottom:598.913333pt;}
.y569{bottom:599.582667pt;}
.y3e4{bottom:600.150667pt;}
.y4fa{bottom:600.157333pt;}
.y70f{bottom:600.253333pt;}
.yb4{bottom:600.338667pt;}
.y22f{bottom:600.420000pt;}
.y273{bottom:600.540000pt;}
.y79c{bottom:600.733333pt;}
.y3ad{bottom:601.030667pt;}
.y73b{bottom:601.213333pt;}
.y2c7{bottom:602.069333pt;}
.y6a7{bottom:602.594667pt;}
.y20a{bottom:602.601333pt;}
.y5fc{bottom:602.889333pt;}
.y169{bottom:602.902667pt;}
.ye2{bottom:603.142667pt;}
.y7bd{bottom:603.453333pt;}
.y3b6{bottom:603.476000pt;}
.y518{bottom:603.612000pt;}
.y9d{bottom:605.252000pt;}
.y766{bottom:606.813333pt;}
.y250{bottom:607.070667pt;}
.y1c7{bottom:607.205333pt;}
.y142{bottom:609.064000pt;}
.y196{bottom:609.222667pt;}
.y2fd{bottom:609.297333pt;}
.y47e{bottom:610.434667pt;}
.y33b{bottom:611.044000pt;}
.y35a{bottom:611.500000pt;}
.y42c{bottom:611.708000pt;}
.y615{bottom:611.789333pt;}
.y4cf{bottom:611.816000pt;}
.y45f{bottom:612.074667pt;}
.y63d{bottom:613.090667pt;}
.y6c6{bottom:613.213333pt;}
.y18{bottom:613.222667pt;}
.y1e6{bottom:613.240000pt;}
.y41{bottom:614.017333pt;}
.y75{bottom:614.065333pt;}
.y2e3{bottom:614.609333pt;}
.y494{bottom:615.082667pt;}
.y31d{bottom:615.237333pt;}
.y3e3{bottom:616.090667pt;}
.yb3{bottom:616.280000pt;}
.y28b{bottom:616.381333pt;}
.y5ed{bottom:616.410667pt;}
.y70e{bottom:616.573333pt;}
.y6ed{bottom:616.733333pt;}
.y79b{bottom:616.893333pt;}
.y17e{bottom:617.220000pt;}
.y5c9{bottom:617.642667pt;}
.y40a{bottom:617.769333pt;}
.y587{bottom:617.878667pt;}
.y370{bottom:617.884000pt;}
.y4f0{bottom:618.044000pt;}
.y526{bottom:618.410667pt;}
.y6a6{bottom:618.536000pt;}
.yba{bottom:618.569333pt;}
.y596{bottom:618.596000pt;}
.y568{bottom:619.508000pt;}
.y517{bottom:619.552000pt;}
.y7bc{bottom:619.773333pt;}
.y73a{bottom:619.933333pt;}
.y4f9{bottom:620.082667pt;}
.y5ab{bottom:620.345333pt;}
.y272{bottom:620.465333pt;}
.y22e{bottom:620.628000pt;}
.y3ac{bottom:620.956000pt;}
.y9c{bottom:621.192000pt;}
.y663{bottom:621.766667pt;}
.y2c6{bottom:621.994667pt;}
.y5fb{bottom:622.814667pt;}
.y168{bottom:622.828000pt;}
.y765{bottom:623.933333pt;}
.y688{bottom:626.605333pt;}
.y1c6{bottom:627.130667pt;}
.y49c{bottom:627.877333pt;}
.ye1{bottom:629.084000pt;}
.y195{bottom:629.146667pt;}
.y17{bottom:629.162667pt;}
.y105{bottom:629.804000pt;}
.y40{bottom:630.301333pt;}
.y47d{bottom:630.360000pt;}
.y74{bottom:630.460000pt;}
.y33a{bottom:630.969333pt;}
.y42b{bottom:631.633333pt;}
.y45e{bottom:632.000000pt;}
.y3e2{bottom:632.030667pt;}
.yb2{bottom:632.220000pt;}
.y359{bottom:632.252000pt;}
.y70d{bottom:632.893333pt;}
.y79a{bottom:633.213333pt;}
.y3ca{bottom:633.965333pt;}
.y2e2{bottom:634.534667pt;}
.y493{bottom:635.008000pt;}
.y516{bottom:635.492000pt;}
.y7bb{bottom:635.933333pt;}
.y6ec{bottom:636.093333pt;}
.y28a{bottom:636.306667pt;}
.y5ec{bottom:636.336000pt;}
.y9b{bottom:637.132000pt;}
.y17d{bottom:637.145333pt;}
.y5c8{bottom:637.568000pt;}
.y614{bottom:637.580000pt;}
.y662{bottom:637.706667pt;}
.y586{bottom:637.804000pt;}
.y36f{bottom:637.809333pt;}
.y525{bottom:638.336000pt;}
.y595{bottom:638.521333pt;}
.y2{bottom:638.548000pt;}
.y409{bottom:638.550667pt;}
.yb9{bottom:638.578667pt;}
.y739{bottom:638.653333pt;}
.y567{bottom:639.854667pt;}
.y764{bottom:640.093333pt;}
.y271{bottom:640.390667pt;}
.y24f{bottom:640.436000pt;}
.y22d{bottom:640.553333pt;}
.y3ab{bottom:640.881333pt;}
.y11f{bottom:640.948000pt;}
.y63c{bottom:641.002667pt;}
.y2ae{bottom:641.117333pt;}
.y2c5{bottom:641.920000pt;}
.y1e5{bottom:642.341333pt;}
.y687{bottom:642.545333pt;}
.y4ef{bottom:642.584000pt;}
.y5fa{bottom:642.738667pt;}
.y167{bottom:642.753333pt;}
.y6c5{bottom:643.453333pt;}
.y16{bottom:645.102667pt;}
.y34{bottom:645.605333pt;}
.y3f{bottom:646.585333pt;}
.y31c{bottom:646.702667pt;}
.y73{bottom:646.854667pt;}
.y1c5{bottom:647.056000pt;}
.y3e1{bottom:647.970667pt;}
.yb1{bottom:648.160000pt;}
.ye0{bottom:649.009333pt;}
.y70c{bottom:649.053333pt;}
.y799{bottom:649.533333pt;}
.y104{bottom:649.729333pt;}
.y47c{bottom:650.285333pt;}
.y53e{bottom:650.728000pt;}
.y4b2{bottom:650.886667pt;}
.y339{bottom:650.894667pt;}
.y2fc{bottom:651.172000pt;}
.y42a{bottom:651.558667pt;}
.y45d{bottom:651.925333pt;}
.y358{bottom:652.176000pt;}
.y7ba{bottom:652.253333pt;}
.y613{bottom:653.520000pt;}
.y2e1{bottom:654.460000pt;}
.y492{bottom:654.932000pt;}
.y6eb{bottom:655.453333pt;}
.y5eb{bottom:656.261333pt;}
.y763{bottom:656.413333pt;}
.y3f4{bottom:656.936000pt;}
.y63b{bottom:656.942667pt;}
.y17c{bottom:657.070667pt;}
.y738{bottom:657.373333pt;}
.y5c7{bottom:657.493333pt;}
.y585{bottom:657.728000pt;}
.y36e{bottom:657.734667pt;}
.y594{bottom:658.446667pt;}
.y408{bottom:658.476000pt;}
.y686{bottom:658.485333pt;}
.yb8{bottom:658.504000pt;}
.y566{bottom:659.780000pt;}
.y4f8{bottom:660.241333pt;}
.y270{bottom:660.316000pt;}
.y24e{bottom:660.361333pt;}
.y22c{bottom:660.477333pt;}
.y5aa{bottom:660.478667pt;}
.y3aa{bottom:660.806667pt;}
.y11e{bottom:660.873333pt;}
.y15{bottom:661.042667pt;}
.y4ee{bottom:662.509333pt;}
.y5f9{bottom:662.664000pt;}
.y72{bottom:662.796000pt;}
.y3e{bottom:662.868000pt;}
.y1a8{bottom:662.981333pt;}
.yb0{bottom:664.100000pt;}
.y70b{bottom:665.373333pt;}
.y798{bottom:665.693333pt;}
.y661{bottom:666.089333pt;}
.y9a{bottom:666.356000pt;}
.y53d{bottom:666.668000pt;}
.y4b1{bottom:666.828000pt;}
.y141{bottom:666.902667pt;}
.y1c4{bottom:666.981333pt;}
.y524{bottom:667.508000pt;}
.y209{bottom:668.370667pt;}
.ydf{bottom:668.934667pt;}
.y7b9{bottom:669.213333pt;}
.y47b{bottom:670.210667pt;}
.y338{bottom:670.820000pt;}
.y2fb{bottom:671.097333pt;}
.y2c4{bottom:671.406667pt;}
.y45c{bottom:671.850667pt;}
.y357{bottom:672.101333pt;}
.y166{bottom:672.606667pt;}
.y4ce{bottom:672.878667pt;}
.y762{bottom:673.373333pt;}
.y6c4{bottom:674.333333pt;}
.y2e0{bottom:674.385333pt;}
.y6ea{bottom:674.813333pt;}
.y491{bottom:674.857333pt;}
.y737{bottom:676.093333pt;}
.y5ea{bottom:676.186667pt;}
.y14{bottom:676.982667pt;}
.y17b{bottom:676.996000pt;}
.y593{bottom:678.370667pt;}
.y407{bottom:678.401333pt;}
.yb7{bottom:678.429333pt;}
.y5c6{bottom:678.601333pt;}
.y3d{bottom:679.152000pt;}
.y71{bottom:679.190667pt;}
.y612{bottom:679.312000pt;}
.y565{bottom:679.705333pt;}
.yaf{bottom:680.040000pt;}
.y26f{bottom:680.241333pt;}
.y24d{bottom:680.286667pt;}
.y22b{bottom:680.402667pt;}
.y5a9{bottom:680.404000pt;}
.y103{bottom:680.552000pt;}
.y11d{bottom:680.798667pt;}
.y2ad{bottom:680.968000pt;}
.y49b{bottom:681.237333pt;}
.y70a{bottom:681.693333pt;}
.y660{bottom:682.029333pt;}
.y99{bottom:682.296000pt;}
.y4ed{bottom:682.434667pt;}
.y429{bottom:682.576000pt;}
.y53c{bottom:682.608000pt;}
.y797{bottom:682.653333pt;}
.y63a{bottom:684.854667pt;}
.y7b8{bottom:685.533333pt;}
.y1e4{bottom:685.622667pt;}
.y194{bottom:686.096000pt;}
.y685{bottom:686.177333pt;}
.y1c3{bottom:686.906667pt;}
.y6a5{bottom:687.609333pt;}
.y208{bottom:688.296000pt;}
.yde{bottom:688.860000pt;}
.y761{bottom:689.693333pt;}
.y47a{bottom:690.136000pt;}
.y337{bottom:690.745333pt;}
.y3a9{bottom:690.964000pt;}
.y2fa{bottom:691.022667pt;}
.y2c3{bottom:691.332000pt;}
.y45b{bottom:691.776000pt;}
.y4cd{bottom:692.804000pt;}
.y13{bottom:692.922667pt;}
.y6e9{bottom:694.173333pt;}
.y490{bottom:694.782667pt;}
.y736{bottom:694.813333pt;}
.y611{bottom:695.252000pt;}
.y3c{bottom:695.434667pt;}
.y70{bottom:695.585333pt;}
.yae{bottom:695.981333pt;}
.y5e9{bottom:696.112000pt;}
.y31b{bottom:696.828000pt;}
.y65f{bottom:697.969333pt;}
.y709{bottom:698.013333pt;}
.y3c9{bottom:698.022667pt;}
.y98{bottom:698.237333pt;}
.y17a{bottom:698.245333pt;}
.y5c5{bottom:698.526667pt;}
.y406{bottom:699.182667pt;}
.y564{bottom:699.630667pt;}
.y796{bottom:699.773333pt;}
.y26e{bottom:700.166667pt;}
.y24c{bottom:700.212000pt;}
.y22a{bottom:700.328000pt;}
.y102{bottom:700.477333pt;}
.y11c{bottom:700.724000pt;}
.y639{bottom:700.794667pt;}
.y2ac{bottom:700.893333pt;}
.y49a{bottom:701.162667pt;}
.y7b7{bottom:701.853333pt;}
.y684{bottom:702.117333pt;}
.y4ec{bottom:702.360000pt;}
.y428{bottom:702.501333pt;}
.y356{bottom:702.562667pt;}
.y6c3{bottom:704.573333pt;}
.y1e3{bottom:705.548000pt;}
.y760{bottom:706.013333pt;}
.y1c2{bottom:707.065333pt;}
.ydd{bottom:708.785333pt;}
.y12{bottom:708.864000pt;}
.y479{bottom:710.061333pt;}
.y36d{bottom:710.493333pt;}
.y336{bottom:710.670667pt;}
.y2f9{bottom:710.948000pt;}
.y523{bottom:710.993333pt;}
.y2c2{bottom:711.257333pt;}
.y45a{bottom:711.701333pt;}
.yad{bottom:711.921333pt;}
.y6f{bottom:711.980000pt;}
.y207{bottom:712.420000pt;}
.y4cc{bottom:712.729333pt;}
.y6e8{bottom:713.533333pt;}
.y3c8{bottom:713.962667pt;}
.y708{bottom:714.173333pt;}
.y97{bottom:714.177333pt;}
.y584{bottom:714.445333pt;}
.y165{bottom:714.744000pt;}
.y795{bottom:715.933333pt;}
.y5e8{bottom:716.037333pt;}
.y31a{bottom:716.753333pt;}
.y179{bottom:718.170667pt;}
.y5c4{bottom:718.452000pt;}
.y7b6{bottom:718.653333pt;}
.y289{bottom:719.065333pt;}
.y405{bottom:719.108000pt;}
.y563{bottom:719.556000pt;}
.y26d{bottom:720.092000pt;}
.y24b{bottom:720.137333pt;}
.y229{bottom:720.253333pt;}
.y11b{bottom:720.649333pt;}
.y2ab{bottom:720.818667pt;}
.y610{bottom:721.042667pt;}
.y499{bottom:721.088000pt;}
.y75f{bottom:722.173333pt;}
.y4eb{bottom:722.284000pt;}
.y427{bottom:722.426667pt;}
.y11{bottom:724.804000pt;}
.y3b{bottom:725.230667pt;}
.y1e2{bottom:725.473333pt;}
.y65e{bottom:726.352000pt;}
.y36c{bottom:726.433333pt;}
.y1c1{bottom:726.990667pt;}
.yac{bottom:727.861333pt;}
.y6e{bottom:728.374667pt;}
.y48f{bottom:728.457333pt;}
.y638{bottom:728.706667pt;}
.ydc{bottom:728.710667pt;}
.y683{bottom:729.809333pt;}
.y478{bottom:729.986667pt;}
.y96{bottom:730.117333pt;}
.y583{bottom:730.386667pt;}
.y707{bottom:730.493333pt;}
.y335{bottom:730.898667pt;}
.y522{bottom:730.918667pt;}
.y2c1{bottom:731.182667pt;}
.y101{bottom:731.300000pt;}
.y459{bottom:731.626667pt;}
.y735{bottom:732.253333pt;}
.y4f7{bottom:732.277333pt;}
.y206{bottom:732.345333pt;}
.y794{bottom:732.893333pt;}
.y6e7{bottom:733.053333pt;}
.y3a8{bottom:733.980000pt;}
.y164{bottom:734.669333pt;}
.y288{bottom:735.005333pt;}
.y6c2{bottom:735.613333pt;}
.y7b5{bottom:735.933333pt;}
.y5e7{bottom:735.962667pt;}
.y319{bottom:736.678667pt;}
.y60f{bottom:736.982667pt;}
.y178{bottom:738.096000pt;}
.y5c3{bottom:738.377333pt;}
.y75e{bottom:738.493333pt;}
.y404{bottom:739.033333pt;}
.y562{bottom:739.481333pt;}
.y26c{bottom:740.017333pt;}
.y5a8{bottom:740.178667pt;}
.y228{bottom:740.461333pt;}
.y10{bottom:740.744000pt;}
.y24a{bottom:741.001333pt;}
.y3a{bottom:741.513333pt;}
.y65d{bottom:742.293333pt;}
.y426{bottom:742.352000pt;}
.yab{bottom:743.801333pt;}
.y637{bottom:744.646667pt;}
.y6d{bottom:744.769333pt;}
.y1e1{bottom:745.398667pt;}
.y682{bottom:745.749333pt;}
.y95{bottom:746.057333pt;}
.y4ea{bottom:746.825333pt;}
.y706{bottom:746.853333pt;}
.y1c0{bottom:746.916000pt;}
.ydb{bottom:748.636000pt;}
.y154{bottom:748.850667pt;}
.y355{bottom:749.777333pt;}
.y793{bottom:749.893333pt;}
.y477{bottom:749.912000pt;}
.y2f8{bottom:750.354667pt;}
.y334{bottom:750.824000pt;}
.y734{bottom:751.013333pt;}
.y2c0{bottom:751.108000pt;}
.y100{bottom:751.225333pt;}
.y458{bottom:751.552000pt;}
.y133{bottom:752.120000pt;}
.y205{bottom:752.270667pt;}
.y7b4{bottom:752.293333pt;}
.y6e6{bottom:752.453333pt;}
.y3a7{bottom:753.905333pt;}
.y163{bottom:754.594667pt;}
.y4cb{bottom:755.066667pt;}
.y75d{bottom:755.493333pt;}
.y5e6{bottom:755.886667pt;}
.y318{bottom:756.604000pt;}
.yf{bottom:756.684000pt;}
.y39{bottom:757.797333pt;}
.y177{bottom:758.021333pt;}
.y5c2{bottom:758.302667pt;}
.y403{bottom:758.957333pt;}
.yaa{bottom:759.741333pt;}
.y561{bottom:759.828000pt;}
.y26b{bottom:759.942667pt;}
.y227{bottom:760.386667pt;}
.y2aa{bottom:760.669333pt;}
.y6c{bottom:760.709333pt;}
.y249{bottom:760.926667pt;}
.y94{bottom:761.997333pt;}
.y425{bottom:762.277333pt;}
.y60e{bottom:762.773333pt;}
.y705{bottom:763.013333pt;}
.y521{bottom:764.872000pt;}
.y1e0{bottom:765.324000pt;}
.y6c1{bottom:766.533333pt;}
.y4e9{bottom:766.750667pt;}
.y2f7{bottom:766.825333pt;}
.y1bf{bottom:766.841333pt;}
.y792{bottom:767.013333pt;}
.y69{bottom:767.310667pt;}
.y132{bottom:768.061333pt;}
.yda{bottom:768.561333pt;}
.y7b3{bottom:768.613333pt;}
.y153{bottom:768.776000pt;}
.y354{bottom:769.702667pt;}
.y733{bottom:769.733333pt;}
.y476{bottom:769.837333pt;}
.y65c{bottom:770.676000pt;}
.y333{bottom:770.749333pt;}
.y4ca{bottom:771.006667pt;}
.y2bf{bottom:771.033333pt;}
.y457{bottom:771.477333pt;}
.y75c{bottom:771.653333pt;}
.y6e5{bottom:771.813333pt;}
.y204{bottom:772.196000pt;}
.y636{bottom:772.558667pt;}
.ye{bottom:772.624000pt;}
.y681{bottom:773.440000pt;}
.y3a6{bottom:773.830667pt;}
.y38{bottom:774.080000pt;}
.ya9{bottom:775.681333pt;}
.y5e5{bottom:775.812000pt;}
.y317{bottom:776.529333pt;}
.y176{bottom:777.946667pt;}
.y5c1{bottom:778.228000pt;}
.y60d{bottom:778.713333pt;}
.y402{bottom:778.882667pt;}
.y48e{bottom:779.266667pt;}
.y704{bottom:779.333333pt;}
.y560{bottom:779.753333pt;}
.y226{bottom:780.312000pt;}
.y2a9{bottom:780.594667pt;}
.y248{bottom:780.852000pt;}
.y38d{bottom:781.809333pt;}
.yff{bottom:782.048000pt;}
.y2f6{bottom:783.297333pt;}
.y791{bottom:783.333333pt;}
.y131{bottom:784.001333pt;}
.y7b2{bottom:784.773333pt;}
.y65b{bottom:786.616000pt;}
.y4e8{bottom:786.674667pt;}
.y1be{bottom:786.766667pt;}
.y4c9{bottom:786.946667pt;}
.y732{bottom:788.453333pt;}
.yd9{bottom:788.486667pt;}
.y635{bottom:788.498667pt;}
.yd{bottom:788.565333pt;}
.y152{bottom:788.701333pt;}
.y75b{bottom:788.773333pt;}
.y5f8{bottom:788.934667pt;}
.y29a{bottom:789.605333pt;}
.y353{bottom:789.628000pt;}
.y475{bottom:789.762667pt;}
.y162{bottom:789.829333pt;}
.y37{bottom:790.364000pt;}
.y6b{bottom:790.388000pt;}
.y332{bottom:790.674667pt;}
.y2be{bottom:790.958667pt;}
.y6e4{bottom:791.173333pt;}
.y93{bottom:791.221333pt;}
.y456{bottom:791.402667pt;}
.ya8{bottom:791.622667pt;}
.y203{bottom:792.121333pt;}
.y424{bottom:793.296000pt;}
.y2df{bottom:793.718667pt;}
.y3a5{bottom:793.756000pt;}
.y11a{bottom:794.318667pt;}
.y498{bottom:794.610667pt;}
.y592{bottom:795.346667pt;}
.yb6{bottom:795.369333pt;}
.y703{bottom:795.653333pt;}
.y5e4{bottom:795.737333pt;}
.y1df{bottom:796.206667pt;}
.y68{bottom:796.534667pt;}
.y6bf{bottom:797.413333pt;}
.y316{bottom:797.809333pt;}
.y5c0{bottom:798.153333pt;}
.y48d{bottom:799.192000pt;}
.y175{bottom:799.196000pt;}
.y790{bottom:799.653333pt;}
.y401{bottom:799.664000pt;}
.y55f{bottom:799.677333pt;}
.y2f5{bottom:799.769333pt;}
.y225{bottom:800.237333pt;}
.y2a8{bottom:800.520000pt;}
.y680{bottom:801.132000pt;}
.y7b1{bottom:801.893333pt;}
.y4c8{bottom:802.888000pt;}
.y634{bottom:804.438667pt;}
.yc{bottom:804.505333pt;}
.y75a{bottom:805.093333pt;}
.y1bd{bottom:806.692000pt;}
.y2dd{bottom:806.696000pt;}
.y731{bottom:807.173333pt;}
.ya7{bottom:807.562667pt;}
.yd8{bottom:808.412000pt;}
.y151{bottom:808.626667pt;}
.y299{bottom:809.530667pt;}
.y352{bottom:809.553333pt;}
.y474{bottom:809.688000pt;}
.y26a{bottom:810.457333pt;}
.y6e3{bottom:810.533333pt;}
.y331{bottom:810.600000pt;}
.y2bd{bottom:810.884000pt;}
.y4e7{bottom:811.216000pt;}
.y247{bottom:811.525333pt;}
.y702{bottom:811.973333pt;}
.y202{bottom:812.046667pt;}
.yfe{bottom:812.870667pt;}
.y423{bottom:813.221333pt;}
.y38c{bottom:814.038667pt;}
.y65a{bottom:814.998667pt;}
.y6a4{bottom:815.132000pt;}
.y5e3{bottom:815.662667pt;}
.y78f{bottom:815.813333pt;}
.y1de{bottom:816.132000pt;}
.y2f4{bottom:816.240000pt;}
.y67f{bottom:817.072000pt;}
.y315{bottom:817.734667pt;}
.y7b0{bottom:818.053333pt;}
.y48c{bottom:819.117333pt;}
.y174{bottom:819.121333pt;}
.y5bf{bottom:819.261333pt;}
.y400{bottom:819.589333pt;}
.y55e{bottom:819.602667pt;}
.y224{bottom:820.162667pt;}
.y2a7{bottom:820.445333pt;}
.y759{bottom:821.413333pt;}
.y161{bottom:822.406667pt;}
.y3a4{bottom:823.913333pt;}
.y67{bottom:825.758667pt;}
.y730{bottom:825.893333pt;}
.y455{bottom:826.004000pt;}
.y269{bottom:826.397333pt;}
.y2dc{bottom:826.621333pt;}
.y701{bottom:828.133333pt;}
.yd7{bottom:828.337333pt;}
.y6bd{bottom:828.453333pt;}
.y4c7{bottom:828.817333pt;}
.y298{bottom:829.456000pt;}
.y150{bottom:829.534667pt;}
.y473{bottom:829.613333pt;}
.y6e2{bottom:829.893333pt;}
.y330{bottom:830.525333pt;}
.y659{bottom:830.938667pt;}
.y4e6{bottom:831.141333pt;}
.y78e{bottom:832.133333pt;}
.y2f3{bottom:832.181333pt;}
.y633{bottom:832.350667pt;}
.yfd{bottom:832.796000pt;}
.y422{bottom:833.146667pt;}
.y7af{bottom:835.173333pt;}
.y5e2{bottom:835.588000pt;}
.y1bc{bottom:836.028000pt;}
.y201{bottom:836.170667pt;}
.y314{bottom:837.660000pt;}
.y758{bottom:838.213333pt;}
.y173{bottom:839.046667pt;}
.y5be{bottom:839.186667pt;}
.y3ff{bottom:839.514667pt;}
.y55d{bottom:839.949333pt;}
.y223{bottom:840.088000pt;}
.y2a6{bottom:840.370667pt;}
.y520{bottom:840.581333pt;}
.y6a3{bottom:841.698667pt;}
.y160{bottom:842.332000pt;}
.y268{bottom:842.337333pt;}
.y700{bottom:844.453333pt;}
.y72f{bottom:844.613333pt;}
.y67e{bottom:844.764000pt;}
.y351{bottom:844.796000pt;}
.y454{bottom:845.929333pt;}
.y38b{bottom:846.268000pt;}
.y2db{bottom:846.546667pt;}
.y658{bottom:846.878667pt;}
.y1dd{bottom:847.125333pt;}
.y2f2{bottom:848.121333pt;}
.y632{bottom:848.290667pt;}
.y78d{bottom:848.293333pt;}
.y6e1{bottom:849.253333pt;}
.y297{bottom:849.381333pt;}
.y14f{bottom:849.460000pt;}
.y48b{bottom:849.669333pt;}
.y32f{bottom:850.450667pt;}
.y4e5{bottom:851.065333pt;}
.y7ae{bottom:851.973333pt;}
.yd6{bottom:854.278667pt;}
.y66{bottom:854.982667pt;}
.y757{bottom:855.493333pt;}
.y200{bottom:856.096000pt;}
.y51f{bottom:856.521333pt;}
.y267{bottom:858.277333pt;}
.y472{bottom:858.505333pt;}
.y313{bottom:858.941333pt;}
.y172{bottom:858.972000pt;}
.y5bd{bottom:859.112000pt;}
.y246{bottom:859.357333pt;}
.y55c{bottom:859.874667pt;}
.y222{bottom:860.013333pt;}
.y2a5{bottom:860.296000pt;}
.y67d{bottom:860.704000pt;}
.y6ff{bottom:860.773333pt;}
.y4c6{bottom:862.821333pt;}
.y6bc{bottom:862.853333pt;}
.y72e{bottom:863.333333pt;}
.y78c{bottom:865.413333pt;}
.y453{bottom:865.854667pt;}
.y38a{bottom:866.193333pt;}
.yfc{bottom:866.276000pt;}
.y2da{bottom:866.472000pt;}
.y421{bottom:866.821333pt;}
.y3a3{bottom:866.929333pt;}
.y6a2{bottom:868.265333pt;}
.y5f7{bottom:868.617333pt;}
.y6df{bottom:868.773333pt;}
.y7ad{bottom:869.253333pt;}
.y5e1{bottom:869.262667pt;}
.y296{bottom:869.306667pt;}
.y14e{bottom:869.385333pt;}
.y48a{bottom:869.594667pt;}
.y32e{bottom:870.376000pt;}
.y65{bottom:870.922667pt;}
.y2de{bottom:871.009333pt;}
.y119{bottom:871.309333pt;}
.y497{bottom:871.454667pt;}
.y756{bottom:871.813333pt;}
.y591{bottom:871.822667pt;}
.yb5{bottom:871.834667pt;}
.y6a{bottom:873.200000pt;}
.y36{bottom:873.293333pt;}
.yb{bottom:873.578667pt;}
.yd5{bottom:874.204000pt;}
.y266{bottom:874.217333pt;}
.y15f{bottom:874.909333pt;}
.y657{bottom:875.261333pt;}
.y4e4{bottom:875.606667pt;}
.y1ff{bottom:876.021333pt;}
.y631{bottom:876.202667pt;}
.y67c{bottom:876.644000pt;}
.y6fe{bottom:877.093333pt;}
.y2f1{bottom:877.345333pt;}
.y1dc{bottom:878.120000pt;}
.y4c5{bottom:878.762667pt;}
.y312{bottom:878.865333pt;}
.y171{bottom:878.897333pt;}
.y5bc{bottom:879.037333pt;}
.y4b0{bottom:879.264000pt;}
.y245{bottom:879.282667pt;}
.y55b{bottom:879.800000pt;}
.y221{bottom:879.938667pt;}
.y1bb{bottom:879.986667pt;}
.y2a4{bottom:880.221333pt;}
.y6bb{bottom:881.573333pt;}
.y72d{bottom:882.053333pt;}
.y51e{bottom:882.452000pt;}
.y7ac{bottom:885.573333pt;}
.yfb{bottom:886.269333pt;}
.y2d9{bottom:886.397333pt;}
.y420{bottom:886.746667pt;}
.y3a2{bottom:886.854667pt;}
.y64{bottom:886.862667pt;}
.y755{bottom:888.133333pt;}
.y295{bottom:889.232000pt;}
.y14d{bottom:889.310667pt;}
.y489{bottom:889.520000pt;}
.y265{bottom:890.157333pt;}
.y32d{bottom:890.604000pt;}
.y656{bottom:891.201333pt;}
.y630{bottom:892.142667pt;}
.y6fd{bottom:893.253333pt;}
.y2f0{bottom:893.285333pt;}
.yd4{bottom:894.129333pt;}
.y6a1{bottom:894.833333pt;}
.y452{bottom:895.408000pt;}
.y4e3{bottom:895.532000pt;}
.y1fe{bottom:895.946667pt;}
.y389{bottom:898.422667pt;}
.y78b{bottom:898.533333pt;}
.y311{bottom:898.790667pt;}
.y5bb{bottom:898.962667pt;}
.y4af{bottom:899.189333pt;}
.y244{bottom:899.208000pt;}
.y55a{bottom:899.725333pt;}
.y220{bottom:899.864000pt;}
.y1ba{bottom:899.912000pt;}
.y117{bottom:900.146667pt;}
.y72c{bottom:900.773333pt;}
.y7ab{bottom:901.893333pt;}
.y63{bottom:902.802667pt;}
.y6ba{bottom:903.493333pt;}
.y754{bottom:904.293333pt;}
.y67b{bottom:904.334667pt;}
.y264{bottom:906.098667pt;}
.yfa{bottom:906.194667pt;}
.y2d8{bottom:906.322667pt;}
.y41f{bottom:906.672000pt;}
.y3a1{bottom:906.780000pt;}
.y6de{bottom:907.973333pt;}
.y1db{bottom:909.113333pt;}
.y294{bottom:909.157333pt;}
.y14c{bottom:909.236000pt;}
.y6fc{bottom:909.573333pt;}
.y3e0{bottom:909.672000pt;}
.y4c4{bottom:909.950667pt;}
.y15e{bottom:910.142667pt;}
.y32c{bottom:910.529333pt;}
.y6a0{bottom:910.773333pt;}
.yd3{bottom:914.054667pt;}
.y4e2{bottom:915.456000pt;}
.y78a{bottom:915.493333pt;}
.y1fd{bottom:915.872000pt;}
.y92{bottom:916.086667pt;}
.y51d{bottom:916.456000pt;}
.y7aa{bottom:918.053333pt;}
.y310{bottom:918.716000pt;}
.y5ba{bottom:918.888000pt;}
.y4ae{bottom:919.114667pt;}
.y243{bottom:919.133333pt;}
.y582{bottom:919.142667pt;}
.y50c{bottom:919.274667pt;}
.y72b{bottom:919.493333pt;}
.y655{bottom:919.584000pt;}
.y559{bottom:919.650667pt;}
.y21f{bottom:919.789333pt;}
.y1b9{bottom:919.837333pt;}
.y62f{bottom:920.054667pt;}
.y116{bottom:920.072000pt;}
.y67a{bottom:920.276000pt;}
.y753{bottom:920.613333pt;}
.y263{bottom:922.038667pt;}
.y6fb{bottom:925.893333pt;}
.yf9{bottom:926.120000pt;}
.y2d7{bottom:926.248000pt;}
.y293{bottom:929.082667pt;}
.y14b{bottom:929.161333pt;}
.y6b9{bottom:929.253333pt;}
.y3df{bottom:929.597333pt;}
.y4c3{bottom:929.876000pt;}
.y15d{bottom:930.068000pt;}
.y388{bottom:930.233333pt;}
.y32b{bottom:930.454667pt;}
.y62{bottom:932.026667pt;}
.y51c{bottom:932.396000pt;}
.y789{bottom:932.613333pt;}
.yd2{bottom:933.980000pt;}
.y7a9{bottom:934.693333pt;}
.y4e1{bottom:935.381333pt;}
.y654{bottom:935.524000pt;}
.y72a{bottom:935.653333pt;}
.y50b{bottom:935.746667pt;}
.y62e{bottom:935.994667pt;}
.y69f{bottom:937.340000pt;}
.y752{bottom:938.373333pt;}
.y30f{bottom:938.641333pt;}
.y4ad{bottom:939.040000pt;}
.y242{bottom:939.058667pt;}
.y581{bottom:939.068000pt;}
.y558{bottom:939.576000pt;}
.y115{bottom:939.997333pt;}
.y6fa{bottom:942.053333pt;}
.y6dd{bottom:942.693333pt;}
.y41e{bottom:943.317333pt;}
.y6b8{bottom:945.733333pt;}
.yf8{bottom:946.045333pt;}
.y2d6{bottom:946.173333pt;}
.y61{bottom:947.966667pt;}
.y262{bottom:947.969333pt;}
.y292{bottom:949.008000pt;}
.y14a{bottom:949.086667pt;}
.y3de{bottom:949.522667pt;}
.y788{bottom:949.573333pt;}
.y4c2{bottom:949.801333pt;}
.y15c{bottom:949.993333pt;}
.y387{bottom:950.158667pt;}
.y32a{bottom:950.380000pt;}
.y50a{bottom:952.217333pt;}
.y729{bottom:959.653333pt;}
.yd1{bottom:959.922667pt;}
.y60{bottom:963.906667pt;}
.y787{bottom:965.733333pt;}
.y6f9{bottom:966.853333pt;}
.y6b7{bottom:970.053333pt;}
.y6dc{bottom:978.533333pt;}
.y5f{bottom:979.848000pt;}
.y261{bottom:981.973333pt;}
.y786{bottom:982.853333pt;}
.y6f8{bottom:983.333333pt;}
.y728{bottom:983.653333pt;}
.y7a8{bottom:990.853333pt;}
.y6b6{bottom:997.760000pt;}
.y785{bottom:999.200000pt;}
.y6f7{bottom:1007.360000pt;}
.y6db{bottom:1014.400000pt;}
.y784{bottom:1015.520000pt;}
.y1{bottom:1023.313333pt;}
.y32{bottom:1031.121333pt;}
.h38{height:16.786667pt;}
.h3b{height:16.946667pt;}
.h2f{height:18.706667pt;}
.h32{height:18.720000pt;}
.h31{height:18.740000pt;}
.hd{height:21.933807pt;}
.h2b{height:23.986667pt;}
.h2d{height:24.018667pt;}
.h26{height:30.226667pt;}
.h29{height:30.240000pt;}
.h28{height:30.260000pt;}
.h1f{height:36.449833pt;}
.h6{height:36.556100pt;}
.h7{height:36.874903pt;}
.ha{height:37.118900pt;}
.h39{height:37.746667pt;}
.h1c{height:38.454533pt;}
.h37{height:38.953125pt;}
.h36{height:39.585938pt;}
.h12{height:39.850400pt;}
.h35{height:41.170000pt;}
.h2e{height:43.108125pt;}
.h30{height:43.808438pt;}
.h5{height:43.867614pt;}
.hb{height:44.250180pt;}
.he{height:45.471743pt;}
.h10{height:45.477076pt;}
.hc{height:46.336759pt;}
.h8{height:46.342093pt;}
.hf{height:46.572673pt;}
.h24{height:47.782500pt;}
.h13{height:47.911455pt;}
.h2c{height:47.986667pt;}
.h2a{height:48.026667pt;}
.h27{height:48.558750pt;}
.h4{height:52.640990pt;}
.h2{height:53.100068pt;}
.h34{height:54.598989pt;}
.h3c{height:55.381875pt;}
.h21{height:57.787500pt;}
.h14{height:58.181067pt;}
.h33{height:59.340000pt;}
.h25{height:60.766875pt;}
.h23{height:61.295000pt;}
.h11{height:68.752237pt;}
.h1e{height:68.757570pt;}
.h1d{height:70.331867pt;}
.h1b{height:70.337200pt;}
.h1a{height:72.417833pt;}
.h19{height:72.423166pt;}
.h16{height:73.004100pt;}
.h18{height:73.009434pt;}
.h3a{height:75.506667pt;}
.h17{height:75.818400pt;}
.h9{height:76.478800pt;}
.h22{height:88.485000pt;}
.h15{height:89.336021pt;}
.h3{height:91.745319pt;}
.h0{height:1122.520000pt;}
.h20{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:47.872000pt;}
.wc{width:75.552000pt;}
.w12{width:90.738667pt;}
.w10{width:91.218667pt;}
.w6{width:127.872000pt;}
.w8{width:142.550667pt;}
.w7{width:169.933333pt;}
.w5{width:170.093333pt;}
.w9{width:172.493333pt;}
.w15{width:193.293333pt;}
.w13{width:193.297333pt;}
.w14{width:193.306667pt;}
.wd{width:198.413333pt;}
.wb{width:300.337333pt;}
.w3{width:315.057333pt;}
.w11{width:489.177333pt;}
.wf{width:489.497333pt;}
.we{width:579.920000pt;}
.wa{width:613.040000pt;}
.w0{width:793.701333pt;}
.w2{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x55{left:7.190667pt;}
.x64{left:18.706667pt;}
.x62{left:25.746667pt;}
.x63{left:29.585333pt;}
.x60{left:36.625333pt;}
.xe{left:94.488000pt;}
.x61{left:96.640000pt;}
.x4a{left:100.821333pt;}
.x45{left:104.142667pt;}
.x4f{left:106.261333pt;}
.x33{left:108.966667pt;}
.x36{left:111.092000pt;}
.x53{left:113.472000pt;}
.x16{left:114.413333pt;}
.x2e{left:116.109333pt;}
.x20{left:122.665333pt;}
.x21{left:127.697333pt;}
.x66{left:129.312000pt;}
.xb{left:132.284000pt;}
.x3a{left:137.414667pt;}
.x52{left:138.925333pt;}
.x17{left:140.253333pt;}
.x44{left:141.937333pt;}
.x15{left:144.965333pt;}
.x2a{left:146.762667pt;}
.x1a{left:148.888000pt;}
.xc{left:152.209333pt;}
.x2{left:154.577333pt;}
.x67{left:156.346667pt;}
.x1{left:159.230667pt;}
.x1e{left:160.601333pt;}
.x19{left:165.492000pt;}
.x50{left:169.422667pt;}
.x65{left:170.906667pt;}
.x34{left:176.793333pt;}
.x68{left:180.346667pt;}
.x13{left:182.761333pt;}
.x3{left:183.957333pt;}
.x38{left:192.600000pt;}
.x37{left:194.221333pt;}
.x43{left:196.286667pt;}
.x42{left:201.761333pt;}
.x1b{left:212.030667pt;}
.x35{left:217.741333pt;}
.x2f{left:220.677333pt;}
.x46{left:222.248000pt;}
.x4{left:227.318667pt;}
.x27{left:228.394667pt;}
.x51{left:232.616000pt;}
.x47{left:233.937333pt;}
.x2d{left:235.594667pt;}
.x22{left:237.414667pt;}
.x49{left:238.733333pt;}
.x1f{left:240.068000pt;}
.x48{left:242.054667pt;}
.x28{left:246.840000pt;}
.x59{left:248.840000pt;}
.x1d{left:257.410667pt;}
.x24{left:262.898667pt;}
.x25{left:264.366667pt;}
.x8{left:266.509333pt;}
.x23{left:268.178667pt;}
.x26{left:271.008000pt;}
.x4b{left:279.378667pt;}
.x29{left:284.316000pt;}
.x9{left:286.657333pt;}
.x32{left:291.222667pt;}
.x7{left:293.025333pt;}
.x2b{left:294.540000pt;}
.x5{left:299.105333pt;}
.x2c{left:300.809333pt;}
.x5c{left:305.666667pt;}
.x5d{left:309.666667pt;}
.x6{left:318.405333pt;}
.x3e{left:325.537333pt;}
.x4d{left:357.432000pt;}
.x1c{left:374.233333pt;}
.x3c{left:379.677333pt;}
.x40{left:381.522667pt;}
.xa{left:388.629333pt;}
.x39{left:390.814667pt;}
.x54{left:396.866667pt;}
.x10{left:405.008000pt;}
.x18{left:406.888000pt;}
.x14{left:408.734667pt;}
.xf{left:410.209333pt;}
.x12{left:412.426667pt;}
.xd{left:413.901333pt;}
.x5e{left:417.506667pt;}
.x56{left:421.346667pt;}
.x31{left:422.828000pt;}
.x30{left:424.728000pt;}
.x41{left:431.500000pt;}
.x3f{left:441.316000pt;}
.x3d{left:457.930667pt;}
.x57{left:469.386667pt;}
.x5a{left:482.186667pt;}
.x5f{left:492.906667pt;}
.x4e{left:504.172000pt;}
.x4c{left:509.086667pt;}
.x58{left:549.386667pt;}
.x11{left:594.294667pt;}
.x5b{left:596.106667pt;}
.x3b{left:657.220000pt;}
}




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