
    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_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.049000;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_437ec5ac29a940f10671545d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.711000;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_9935dbc9763d39f1214ba63f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.034000;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_4c4a0e67cf06bf9e9ab35c99.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.675781;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_c2d7bbdb15342b9484c33ece.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.049000;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_d7ef803e9ca41983814380fc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_14ea42cf3e5d7e22a6ac4aac.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_cc9e92056887a9424125047d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.095703;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_4db06a0f8845e180474ffc36.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.093262;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_7cde487c0441b60d485e77f7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.073242;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_cd88b23ca31a2b5932d4673d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.077148;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_cd9aa2240422f58aa7890178.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.104004;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_62c8ea204e76fc581ada0cab.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.943000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f2ea977563e1f7227cf44152.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.fff{font-family:fff;line-height:1.049000;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_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.049000;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_0030f75c2fde8737a09ea2b9.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.098633;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_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.049000;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_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.049000;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_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.049000;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_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.049000;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_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.049000;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_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.049000;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_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.049000;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_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.049000;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_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.049000;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_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.049000;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_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.049000;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_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.049000;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_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.049000;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_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.049000;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_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.049000;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_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.049000;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_4b6e093884f98fcc94360320.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.095703;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_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.049000;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_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.049000;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_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.049000;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_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.049000;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_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.049000;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_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.049000;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:ff29;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.049000;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:ff2a;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.049000;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:ff2b;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.049000;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:ff2c;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.049000;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:ff2d;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.049000;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:ff2e;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.049000;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:ff2f;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.049000;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:ff30;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.049000;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:ff31;src:url('chunks/assets/font_5a135c4a75f873780145f642.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.900391;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:ff32;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.049000;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:ff33;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.049000;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:ff34;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.049000;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:ff35;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.049000;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:ff36;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.049000;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:ff37;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.049000;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:ff38;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.049000;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:ff39;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.049000;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:ff3a;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:1.049000;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:ff3b;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.049000;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:ff3c;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.049000;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:ff3d;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:1.049000;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:ff3e;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:1.049000;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:ff3f;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.049000;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:ff40;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.049000;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:ff41;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff41{font-family:ff41;line-height:1.049000;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:ff42;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff42{font-family:ff42;line-height:1.049000;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:ff43;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff43{font-family:ff43;line-height:1.049000;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:ff44;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff44{font-family:ff44;line-height:1.049000;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:ff45;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff45{font-family:ff45;line-height:1.049000;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:ff46;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff46{font-family:ff46;line-height:1.049000;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:ff47;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff47{font-family:ff47;line-height:1.049000;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:ff48;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff48{font-family:ff48;line-height:1.049000;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:ff49;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff49{font-family:ff49;line-height:1.049000;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:ff4a;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:1.049000;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:ff4b;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:1.049000;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:ff4c;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:1.049000;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:ff4d;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:1.049000;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:ff4e;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:1.049000;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:ff4f;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:1.049000;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:ff50;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff50{font-family:ff50;line-height:1.049000;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:ff51;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff51{font-family:ff51;line-height:1.049000;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:ff52;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff52{font-family:ff52;line-height:1.049000;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:ff53;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff53{font-family:ff53;line-height:1.049000;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:ff54;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff54{font-family:ff54;line-height:1.049000;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:ff55;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff55{font-family:ff55;line-height:1.049000;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:ff56;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff56{font-family:ff56;line-height:1.049000;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:ff57;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff57{font-family:ff57;line-height:1.049000;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:ff58;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff58{font-family:ff58;line-height:1.049000;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:ff59;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff59{font-family:ff59;line-height:1.049000;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:ff5a;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff5a{font-family:ff5a;line-height:1.049000;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:ff5b;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff5b{font-family:ff5b;line-height:1.049000;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:ff5c;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff5c{font-family:ff5c;line-height:1.049000;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:ff5d;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff5d{font-family:ff5d;line-height:1.049000;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:ff5e;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff5e{font-family:ff5e;line-height:1.049000;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:ff5f;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff5f{font-family:ff5f;line-height:1.049000;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:ff60;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff60{font-family:ff60;line-height:1.049000;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:ff61;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff61{font-family:ff61;line-height:1.049000;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:ff62;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff62{font-family:ff62;line-height:1.049000;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:ff63;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff63{font-family:ff63;line-height:1.049000;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:ff64;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff64{font-family:ff64;line-height:1.049000;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:ff65;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff65{font-family:ff65;line-height:1.049000;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:ff66;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff66{font-family:ff66;line-height:1.049000;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:ff67;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff67{font-family:ff67;line-height:1.049000;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:ff68;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff68{font-family:ff68;line-height:1.049000;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:ff69;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff69{font-family:ff69;line-height:1.049000;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:ff6a;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff6a{font-family:ff6a;line-height:1.049000;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:ff6b;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff6b{font-family:ff6b;line-height:1.049000;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:ff6c;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff6c{font-family:ff6c;line-height:1.049000;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:ff6d;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff6d{font-family:ff6d;line-height:1.049000;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:ff6e;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff6e{font-family:ff6e;line-height:1.049000;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:ff6f;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff6f{font-family:ff6f;line-height:1.049000;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:ff70;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff70{font-family:ff70;line-height:1.049000;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:ff71;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff71{font-family:ff71;line-height:1.049000;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:ff72;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff72{font-family:ff72;line-height:1.049000;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:ff73;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff73{font-family:ff73;line-height:1.049000;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:ff74;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff74{font-family:ff74;line-height:1.049000;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:ff75;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff75{font-family:ff75;line-height:1.049000;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:ff76;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff76{font-family:ff76;line-height:1.049000;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:ff77;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff77{font-family:ff77;line-height:1.049000;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:ff78;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff78{font-family:ff78;line-height:1.049000;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:ff79;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff79{font-family:ff79;line-height:1.049000;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:ff7a;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff7a{font-family:ff7a;line-height:1.049000;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:ff7b;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff7b{font-family:ff7b;line-height:1.049000;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:ff7c;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff7c{font-family:ff7c;line-height:1.049000;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:ff7d;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff7d{font-family:ff7d;line-height:1.049000;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:ff7e;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff7e{font-family:ff7e;line-height:1.049000;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:ff7f;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff7f{font-family:ff7f;line-height:1.049000;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:ff80;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff80{font-family:ff80;line-height:1.049000;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:ff81;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff81{font-family:ff81;line-height:1.049000;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:ff82;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff82{font-family:ff82;line-height:1.049000;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:ff83;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff83{font-family:ff83;line-height:1.049000;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:ff84;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff84{font-family:ff84;line-height:1.049000;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:ff85;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff85{font-family:ff85;line-height:1.049000;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:ff86;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff86{font-family:ff86;line-height:1.049000;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:ff87;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff87{font-family:ff87;line-height:1.049000;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:ff88;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff88{font-family:ff88;line-height:1.049000;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:ff89;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff89{font-family:ff89;line-height:1.049000;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:ff8a;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff8a{font-family:ff8a;line-height:1.049000;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:ff8b;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff8b{font-family:ff8b;line-height:1.049000;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:ff8c;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff8c{font-family:ff8c;line-height:1.049000;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:ff8d;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff8d{font-family:ff8d;line-height:1.049000;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:ff8e;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff8e{font-family:ff8e;line-height:1.049000;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:ff8f;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff8f{font-family:ff8f;line-height:1.049000;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:ff90;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff90{font-family:ff90;line-height:1.049000;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:ff91;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff91{font-family:ff91;line-height:1.049000;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:ff92;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff92{font-family:ff92;line-height:1.049000;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:ff93;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff93{font-family:ff93;line-height:1.049000;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:ff94;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff94{font-family:ff94;line-height:1.049000;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:ff95;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff95{font-family:ff95;line-height:1.049000;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:ff96;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff96{font-family:ff96;line-height:1.049000;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:ff97;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff97{font-family:ff97;line-height:1.049000;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:ff98;src:url('chunks/assets/font_953d788086458ec22e03c121.woff2')format("woff");}.ff98{font-family:ff98;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff99;src:url('chunks/assets/font_d813bb149ac527f2b3e1e1f5.woff2')format("woff");}.ff99{font-family:ff99;line-height:1.049000;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:ff9a;src:url('chunks/assets/font_437ec5ac29a940f10671545d.woff2')format("woff");}.ff9a{font-family:ff9a;line-height:0.711000;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:ff9b;src:url('chunks/assets/font_9935dbc9763d39f1214ba63f.woff2')format("woff");}.ff9b{font-family:ff9b;line-height:1.034000;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:ff9c;src:url('chunks/assets/font_4c4a0e67cf06bf9e9ab35c99.woff2')format("woff");}.ff9c{font-family:ff9c;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.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);}
.v3{vertical-align:-23.976000px;}
.v1{vertical-align:-2.291040px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.980000px;}
.v2{vertical-align:23.976000px;}
.ls34{letter-spacing:-4.968000px;}
.ls21{letter-spacing:-3.106224px;}
.ls4b{letter-spacing:-1.080000px;}
.ls29{letter-spacing:-0.504000px;}
.ls28{letter-spacing:-0.072000px;}
.ls7{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000600px;}
.ls3b{letter-spacing:0.001200px;}
.lsf{letter-spacing:0.007800px;}
.ls23{letter-spacing:0.009600px;}
.ls3c{letter-spacing:0.010800px;}
.ls1d{letter-spacing:0.011400px;}
.lsc{letter-spacing:0.012000px;}
.ls15{letter-spacing:0.012600px;}
.ls18{letter-spacing:0.013200px;}
.ls13{letter-spacing:0.013800px;}
.ls11{letter-spacing:0.014400px;}
.ls42{letter-spacing:0.019800px;}
.ls41{letter-spacing:0.020400px;}
.lsb{letter-spacing:0.024600px;}
.ls1f{letter-spacing:0.026400px;}
.ls1a{letter-spacing:0.028200px;}
.ls27{letter-spacing:0.029400px;}
.ls49{letter-spacing:0.030000px;}
.ls1b{letter-spacing:0.031800px;}
.ls2e{letter-spacing:0.040200px;}
.ls3d{letter-spacing:0.057000px;}
.ls3f{letter-spacing:0.108000px;}
.ls40{letter-spacing:0.120000px;}
.ls20{letter-spacing:0.130200px;}
.ls37{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.159840px;}
.ls3e{letter-spacing:0.204600px;}
.ls26{letter-spacing:0.313800px;}
.ls2{letter-spacing:0.319680px;}
.ls3{letter-spacing:0.372960px;}
.ls4{letter-spacing:0.426240px;}
.ls8{letter-spacing:0.472320px;}
.lsa{letter-spacing:0.479520px;}
.ls0{letter-spacing:0.570240px;}
.ls1{letter-spacing:0.583200px;}
.ls6{letter-spacing:0.590400px;}
.ls30{letter-spacing:0.594000px;}
.ls4a{letter-spacing:0.648000px;}
.ls2f{letter-spacing:0.702000px;}
.ls9{letter-spacing:0.777600px;}
.ls44{letter-spacing:0.918000px;}
.ls47{letter-spacing:1.020000px;}
.ls43{letter-spacing:1.080600px;}
.ls33{letter-spacing:1.152000px;}
.ls46{letter-spacing:1.458000px;}
.ls48{letter-spacing:1.620000px;}
.ls45{letter-spacing:1.673400px;}
.ls2c{letter-spacing:2.160000px;}
.ls32{letter-spacing:2.304000px;}
.ls25{letter-spacing:2.448000px;}
.ls24{letter-spacing:2.529600px;}
.ls1c{letter-spacing:3.528000px;}
.ls38{letter-spacing:3.888000px;}
.ls3a{letter-spacing:4.290000px;}
.ls2a{letter-spacing:4.464000px;}
.ls2b{letter-spacing:4.536000px;}
.ls22{letter-spacing:4.752000px;}
.ls1e{letter-spacing:4.896000px;}
.ls10{letter-spacing:5.726400px;}
.ls35{letter-spacing:6.336000px;}
.ls31{letter-spacing:6.552000px;}
.lse{letter-spacing:7.114200px;}
.lsd{letter-spacing:7.114800px;}
.ls36{letter-spacing:7.488000px;}
.ls2d{letter-spacing:23.536800px;}
.ls16{letter-spacing:171.000000px;}
.ls12{letter-spacing:192.000000px;}
.ls17{letter-spacing:195.000000px;}
.ls19{letter-spacing:198.000000px;}
.ls39{letter-spacing:198.024000px;}
.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;}
}
.ws1d{word-spacing:-30.000000px;}
.ws150{word-spacing:-27.000000px;}
.ws10{word-spacing:-25.200000px;}
.ws1e{word-spacing:-21.000000px;}
.ws11{word-spacing:-18.000000px;}
.ws3b{word-spacing:-16.500000px;}
.ws175{word-spacing:-15.264000px;}
.ws6d{word-spacing:-15.000000px;}
.ws42{word-spacing:-14.982000px;}
.ws16e{word-spacing:-14.958000px;}
.ws3a{word-spacing:-14.700000px;}
.ws16d{word-spacing:-14.418000px;}
.ws176{word-spacing:-14.184000px;}
.ws41{word-spacing:-13.728000px;}
.wse8{word-spacing:-13.680000px;}
.ws4a{word-spacing:-13.662000px;}
.ws169{word-spacing:-13.608000px;}
.ws112{word-spacing:-13.500000px;}
.ws1f{word-spacing:-12.600000px;}
.ws44{word-spacing:-12.210000px;}
.ws83{word-spacing:-12.000000px;}
.ws2{word-spacing:-11.858400px;}
.ws5c{word-spacing:-11.448000px;}
.ws4{word-spacing:-11.295360px;}
.ws4b{word-spacing:-10.494000px;}
.ws46{word-spacing:-10.428000px;}
.ws5d{word-spacing:-9.828000px;}
.ws3{word-spacing:-9.750240px;}
.ws174{word-spacing:-8.745000px;}
.ws12e{word-spacing:-8.532000px;}
.ws48{word-spacing:-7.986000px;}
.ws60{word-spacing:-7.416000px;}
.ws99{word-spacing:-7.387776px;}
.wsf4{word-spacing:-7.056000px;}
.wsed{word-spacing:-6.192000px;}
.ws84{word-spacing:-6.120000px;}
.ws156{word-spacing:-5.472000px;}
.ws173{word-spacing:-5.280000px;}
.wsfa{word-spacing:-4.248000px;}
.ws152{word-spacing:-4.032000px;}
.ws10d{word-spacing:-3.960000px;}
.ws11f{word-spacing:-3.816000px;}
.ws15f{word-spacing:-3.630000px;}
.wsef{word-spacing:-3.600000px;}
.ws71{word-spacing:-3.528000px;}
.ws5f{word-spacing:-3.456000px;}
.wsaf{word-spacing:-3.384000px;}
.ws9e{word-spacing:-3.312000px;}
.wsd9{word-spacing:-3.240000px;}
.wscd{word-spacing:-3.168000px;}
.ws89{word-spacing:-3.096000px;}
.ws53{word-spacing:-3.024000px;}
.ws140{word-spacing:-2.970000px;}
.ws24{word-spacing:-2.952000px;}
.wscc{word-spacing:-2.880000px;}
.ws47{word-spacing:-2.838000px;}
.wsb0{word-spacing:-2.808000px;}
.ws49{word-spacing:-2.772000px;}
.ws12{word-spacing:-2.736000px;}
.ws3e{word-spacing:-2.664000px;}
.ws14a{word-spacing:-2.592000px;}
.ws85{word-spacing:-2.520000px;}
.ws40{word-spacing:-2.508000px;}
.ws3f{word-spacing:-2.448000px;}
.ws28{word-spacing:-2.376000px;}
.wsa7{word-spacing:-2.322000px;}
.ws136{word-spacing:-2.304000px;}
.ws66{word-spacing:-2.232000px;}
.ws91{word-spacing:-2.160000px;}
.ws132{word-spacing:-2.106000px;}
.wsd0{word-spacing:-2.088000px;}
.ws10f{word-spacing:-2.016000px;}
.ws56{word-spacing:-1.944000px;}
.wsb7{word-spacing:-1.890000px;}
.wsca{word-spacing:-1.872000px;}
.wsa1{word-spacing:-1.800000px;}
.ws3c{word-spacing:-1.782000px;}
.wsae{word-spacing:-1.728000px;}
.ws100{word-spacing:-1.674000px;}
.ws38{word-spacing:-1.656000px;}
.ws16a{word-spacing:-1.620000px;}
.ws14e{word-spacing:-1.584000px;}
.wsce{word-spacing:-1.512000px;}
.wsb6{word-spacing:-1.458000px;}
.ws39{word-spacing:-1.440000px;}
.ws27{word-spacing:-1.368000px;}
.ws81{word-spacing:-1.296000px;}
.wsb5{word-spacing:-1.242000px;}
.wsd5{word-spacing:-1.224000px;}
.wsa6{word-spacing:-1.188000px;}
.ws10a{word-spacing:-1.152000px;}
.wscb{word-spacing:-1.080000px;}
.ws79{word-spacing:-1.026000px;}
.ws16f{word-spacing:-1.020000px;}
.ws67{word-spacing:-1.008000px;}
.ws159{word-spacing:-0.990000px;}
.wsa8{word-spacing:-0.972000px;}
.ws110{word-spacing:-0.936000px;}
.ws31{word-spacing:-0.864000px;}
.ws167{word-spacing:-0.858000px;}
.ws12c{word-spacing:-0.810000px;}
.ws80{word-spacing:-0.792000px;}
.ws7c{word-spacing:-0.756000px;}
.ws172{word-spacing:-0.726000px;}
.wsbc{word-spacing:-0.720000px;}
.ws122{word-spacing:-0.702000px;}
.ws23{word-spacing:-0.648000px;}
.ws72{word-spacing:-0.594000px;}
.ws5{word-spacing:-0.590400px;}
.ws8{word-spacing:-0.583200px;}
.ws9f{word-spacing:-0.576000px;}
.ws55{word-spacing:-0.540000px;}
.ws43{word-spacing:-0.528000px;}
.wsd4{word-spacing:-0.504000px;}
.wsc{word-spacing:-0.479520px;}
.ws7{word-spacing:-0.472320px;}
.ws65{word-spacing:-0.432000px;}
.wsb{word-spacing:-0.426240px;}
.wse{word-spacing:-0.420000px;}
.ws160{word-spacing:-0.396000px;}
.ws133{word-spacing:-0.378000px;}
.ws9{word-spacing:-0.372960px;}
.ws4c{word-spacing:-0.360000px;}
.ws45{word-spacing:-0.330000px;}
.ws131{word-spacing:-0.324000px;}
.wsa{word-spacing:-0.319680px;}
.wscf{word-spacing:-0.288000px;}
.ws15d{word-spacing:-0.264000px;}
.ws15c{word-spacing:-0.240000px;}
.ws37{word-spacing:-0.216000px;}
.ws59{word-spacing:-0.144000px;}
.ws16b{word-spacing:-0.120000px;}
.ws134{word-spacing:-0.072000px;}
.ws6{word-spacing:0.000000px;}
.wsc3{word-spacing:0.072000px;}
.ws15e{word-spacing:0.132000px;}
.ws64{word-spacing:0.144000px;}
.ws58{word-spacing:0.216000px;}
.ws97{word-spacing:0.270000px;}
.wsba{word-spacing:0.288000px;}
.ws98{word-spacing:0.324000px;}
.ws103{word-spacing:0.360000px;}
.ws32{word-spacing:0.432000px;}
.ws104{word-spacing:0.486000px;}
.wsb1{word-spacing:0.504000px;}
.ws26{word-spacing:0.576000px;}
.ws143{word-spacing:0.594000px;}
.wsa3{word-spacing:0.648000px;}
.wsf{word-spacing:0.660000px;}
.wseb{word-spacing:0.720000px;}
.ws2c{word-spacing:0.792000px;}
.ws2e{word-spacing:0.864000px;}
.ws137{word-spacing:0.900000px;}
.ws4e{word-spacing:0.936000px;}
.ws16c{word-spacing:0.972000px;}
.ws21{word-spacing:1.008000px;}
.ws74{word-spacing:1.080000px;}
.ws166{word-spacing:1.122000px;}
.ws9c{word-spacing:1.152000px;}
.wsd3{word-spacing:1.188000px;}
.wsee{word-spacing:1.224000px;}
.wsa4{word-spacing:1.242000px;}
.ws171{word-spacing:1.254000px;}
.ws2a{word-spacing:1.296000px;}
.ws15b{word-spacing:1.320000px;}
.ws96{word-spacing:1.350000px;}
.ws126{word-spacing:1.368000px;}
.ws145{word-spacing:1.404000px;}
.ws75{word-spacing:1.440000px;}
.wsbd{word-spacing:1.512000px;}
.ws95{word-spacing:1.566000px;}
.ws4f{word-spacing:1.584000px;}
.wsd{word-spacing:1.620000px;}
.ws70{word-spacing:1.656000px;}
.ws170{word-spacing:1.710000px;}
.ws68{word-spacing:1.728000px;}
.ws5e{word-spacing:1.800000px;}
.ws7b{word-spacing:1.836000px;}
.wsc8{word-spacing:1.872000px;}
.ws128{word-spacing:1.920000px;}
.ws6f{word-spacing:1.944000px;}
.ws8a{word-spacing:2.016000px;}
.wsbb{word-spacing:2.040000px;}
.wsfe{word-spacing:2.052000px;}
.ws11e{word-spacing:2.088000px;}
.ws7a{word-spacing:2.160000px;}
.ws30{word-spacing:2.232000px;}
.wsa5{word-spacing:2.268000px;}
.ws129{word-spacing:2.304000px;}
.ws92{word-spacing:2.376000px;}
.ws61{word-spacing:2.448000px;}
.ws12d{word-spacing:2.484000px;}
.ws124{word-spacing:2.520000px;}
.wsc7{word-spacing:2.592000px;}
.ws138{word-spacing:2.646000px;}
.ws2b{word-spacing:2.664000px;}
.ws105{word-spacing:2.700000px;}
.ws13{word-spacing:2.736000px;}
.ws2d{word-spacing:2.808000px;}
.ws15a{word-spacing:2.838000px;}
.wsac{word-spacing:2.880000px;}
.ws6a{word-spacing:2.952000px;}
.ws13f{word-spacing:2.970000px;}
.ws8c{word-spacing:3.024000px;}
.ws6b{word-spacing:3.096000px;}
.ws164{word-spacing:3.102000px;}
.ws25{word-spacing:3.168000px;}
.ws139{word-spacing:3.186000px;}
.ws161{word-spacing:3.234000px;}
.ws6e{word-spacing:3.240000px;}
.ws1c{word-spacing:3.312000px;}
.ws73{word-spacing:3.348000px;}
.ws69{word-spacing:3.384000px;}
.wsa0{word-spacing:3.456000px;}
.wsb2{word-spacing:3.528000px;}
.ws76{word-spacing:3.600000px;}
.ws14{word-spacing:3.672000px;}
.ws13a{word-spacing:3.726000px;}
.ws36{word-spacing:3.744000px;}
.ws78{word-spacing:3.816000px;}
.ws121{word-spacing:3.888000px;}
.wsc2{word-spacing:3.942000px;}
.ws5b{word-spacing:3.960000px;}
.wsaa{word-spacing:4.032000px;}
.wsb8{word-spacing:4.050000px;}
.ws8d{word-spacing:4.104000px;}
.wsb4{word-spacing:4.158000px;}
.ws88{word-spacing:4.176000px;}
.ws142{word-spacing:4.212000px;}
.ws4d{word-spacing:4.248000px;}
.ws163{word-spacing:4.290000px;}
.ws93{word-spacing:4.320000px;}
.ws165{word-spacing:4.356000px;}
.ws125{word-spacing:4.374000px;}
.ws7e{word-spacing:4.392000px;}
.wsfb{word-spacing:4.464000px;}
.ws35{word-spacing:4.536000px;}
.ws10b{word-spacing:4.608000px;}
.ws135{word-spacing:4.680000px;}
.wsff{word-spacing:4.698000px;}
.wsb9{word-spacing:4.752000px;}
.ws22{word-spacing:4.824000px;}
.wsb3{word-spacing:4.860000px;}
.ws34{word-spacing:4.896000px;}
.ws106{word-spacing:4.968000px;}
.wsc6{word-spacing:5.040000px;}
.wsbe{word-spacing:5.112000px;}
.ws8e{word-spacing:5.184000px;}
.ws16{word-spacing:5.256000px;}
.ws13c{word-spacing:5.280000px;}
.ws153{word-spacing:5.328000px;}
.ws148{word-spacing:5.346000px;}
.ws19{word-spacing:5.400000px;}
.ws168{word-spacing:5.412000px;}
.ws157{word-spacing:5.472000px;}
.ws162{word-spacing:5.478000px;}
.ws29{word-spacing:5.544000px;}
.wsf9{word-spacing:5.616000px;}
.ws14b{word-spacing:5.688000px;}
.ws123{word-spacing:5.760000px;}
.ws17{word-spacing:5.832000px;}
.wsd1{word-spacing:5.904000px;}
.wsab{word-spacing:5.976000px;}
.ws13e{word-spacing:6.102000px;}
.ws94{word-spacing:6.120000px;}
.ws1b{word-spacing:6.192000px;}
.ws107{word-spacing:6.264000px;}
.ws87{word-spacing:6.336000px;}
.ws8b{word-spacing:6.408000px;}
.ws77{word-spacing:6.480000px;}
.ws127{word-spacing:6.552000px;}
.wsa2{word-spacing:6.624000px;}
.ws6c{word-spacing:6.696000px;}
.ws2f{word-spacing:6.768000px;}
.ws63{word-spacing:6.840000px;}
.ws52{word-spacing:6.912000px;}
.wsfd{word-spacing:6.984000px;}
.ws10c{word-spacing:7.056000px;}
.ws50{word-spacing:7.128000px;}
.ws109{word-spacing:7.200000px;}
.ws108{word-spacing:7.272000px;}
.wsf6{word-spacing:7.344000px;}
.ws86{word-spacing:7.416000px;}
.ws10e{word-spacing:7.488000px;}
.ws54{word-spacing:7.632000px;}
.ws130{word-spacing:7.704000px;}
.ws82{word-spacing:7.776000px;}
.ws155{word-spacing:7.848000px;}
.ws15{word-spacing:7.992000px;}
.ws11a{word-spacing:8.064000px;}
.wsfc{word-spacing:8.136000px;}
.ws33{word-spacing:8.208000px;}
.ws158{word-spacing:8.280000px;}
.ws9d{word-spacing:8.352000px;}
.ws7d{word-spacing:8.496000px;}
.wsa9{word-spacing:8.568000px;}
.ws7f{word-spacing:8.640000px;}
.ws9b{word-spacing:8.712000px;}
.wse4{word-spacing:8.784000px;}
.ws90{word-spacing:8.856000px;}
.ws51{word-spacing:8.928000px;}
.ws12b{word-spacing:9.000000px;}
.ws62{word-spacing:9.072000px;}
.ws8f{word-spacing:9.216000px;}
.ws120{word-spacing:9.288000px;}
.ws57{word-spacing:9.360000px;}
.wsad{word-spacing:9.432000px;}
.wsdf{word-spacing:9.504000px;}
.ws12a{word-spacing:9.576000px;}
.ws1a{word-spacing:9.648000px;}
.ws18{word-spacing:9.792000px;}
.wsc9{word-spacing:9.864000px;}
.ws154{word-spacing:9.936000px;}
.wsc4{word-spacing:10.008000px;}
.ws5a{word-spacing:10.152000px;}
.ws141{word-spacing:10.224000px;}
.ws14c{word-spacing:10.368000px;}
.wsf8{word-spacing:10.440000px;}
.wsd2{word-spacing:10.512000px;}
.ws13d{word-spacing:10.584000px;}
.ws11b{word-spacing:10.728000px;}
.wsf7{word-spacing:10.800000px;}
.ws111{word-spacing:10.944000px;}
.ws151{word-spacing:11.448000px;}
.ws119{word-spacing:11.808000px;}
.wsf5{word-spacing:11.880000px;}
.wsd7{word-spacing:12.600000px;}
.wse9{word-spacing:13.248000px;}
.ws14f{word-spacing:13.680000px;}
.ws115{word-spacing:13.896000px;}
.ws101{word-spacing:14.112000px;}
.ws118{word-spacing:14.544000px;}
.wsbf{word-spacing:14.616000px;}
.ws14d{word-spacing:14.688000px;}
.wsd6{word-spacing:15.048000px;}
.wsc0{word-spacing:15.912000px;}
.wsdc{word-spacing:16.128000px;}
.wse3{word-spacing:16.344000px;}
.wsdb{word-spacing:16.704000px;}
.wsd8{word-spacing:17.568000px;}
.wsf2{word-spacing:17.784000px;}
.wse5{word-spacing:18.000000px;}
.wse6{word-spacing:18.792000px;}
.wse0{word-spacing:19.152000px;}
.wsde{word-spacing:19.440000px;}
.wsdd{word-spacing:20.736000px;}
.wsc5{word-spacing:21.384000px;}
.ws102{word-spacing:21.816000px;}
.wsea{word-spacing:21.888000px;}
.wsf0{word-spacing:22.752000px;}
.ws11c{word-spacing:23.472000px;}
.wse7{word-spacing:23.616000px;}
.wse1{word-spacing:23.904000px;}
.ws9a{word-spacing:24.192000px;}
.ws116{word-spacing:24.624000px;}
.wsf3{word-spacing:25.128000px;}
.wsda{word-spacing:25.344000px;}
.wse2{word-spacing:25.560000px;}
.ws117{word-spacing:28.152000px;}
.wsf1{word-spacing:28.728000px;}
.ws114{word-spacing:38.520000px;}
.ws113{word-spacing:38.664000px;}
.wsec{word-spacing:109.872000px;}
.ws1{word-spacing:181.897920px;}
.ws20{word-spacing:198.000000px;}
.ws3d{word-spacing:199.518000px;}
.ws0{word-spacing:371.915400px;}
.ws13b{word-spacing:865.488000px;}
.ws12f{word-spacing:1004.064000px;}
.ws144{word-spacing:1103.616000px;}
.ws11d{word-spacing:1122.576000px;}
.ws146{word-spacing:1168.512000px;}
.wsc1{word-spacing:1169.520000px;}
.ws149{word-spacing:1267.296000px;}
.ws147{word-spacing:1404.576000px;}
._58{margin-left:-1749.522480px;}
._57{margin-left:-1738.074480px;}
._53{margin-left:-1496.988480px;}
._55{margin-left:-1453.104000px;}
._24{margin-left:-1034.820000px;}
._26{margin-left:-835.344000px;}
._4{margin-left:-673.725600px;}
._18{margin-left:-199.368000px;}
._13{margin-left:-197.064000px;}
._1c{margin-left:-193.536000px;}
._4a{margin-left:-34.848000px;}
._2f{margin-left:-31.464000px;}
._27{margin-left:-30.312000px;}
._32{margin-left:-26.856000px;}
._38{margin-left:-25.272000px;}
._3c{margin-left:-22.464000px;}
._6{margin-left:-17.794200px;}
._4e{margin-left:-16.632000px;}
._36{margin-left:-15.624000px;}
._45{margin-left:-14.165760px;}
._44{margin-left:-12.708000px;}
._11{margin-left:-10.855200px;}
._25{margin-left:-9.329760px;}
._14{margin-left:-8.226240px;}
._c{margin-left:-7.020000px;}
._10{margin-left:-5.274240px;}
._b{margin-left:-4.260000px;}
._9{margin-left:-2.340000px;}
._8{margin-left:-1.061760px;}
._0{width:1.121760px;}
._a{width:2.280000px;}
._d{width:3.888000px;}
._f{width:5.616000px;}
._12{width:7.133400px;}
._1a{width:8.208000px;}
._e{width:9.576000px;}
._23{width:10.584000px;}
._20{width:12.078000px;}
._2b{width:13.122000px;}
._1f{width:14.784000px;}
._31{width:15.786960px;}
._2c{width:16.901760px;}
._7{width:18.727200px;}
._3b{width:20.351040px;}
._2e{width:21.924000px;}
._2d{width:23.724000px;}
._35{width:25.092000px;}
._34{width:26.172000px;}
._41{width:28.260000px;}
._40{width:30.132000px;}
._61{width:35.238240px;}
._60{width:36.419760px;}
._5f{width:38.316240px;}
._49{width:48.996000px;}
._43{width:65.160000px;}
._42{width:66.384000px;}
._4d{width:70.380000px;}
._4c{width:72.252000px;}
._50{width:77.220000px;}
._51{width:80.208000px;}
._3f{width:94.644000px;}
._3e{width:96.516000px;}
._48{width:108.504000px;}
._47{width:110.700000px;}
._1d{width:133.992000px;}
._5b{width:139.680000px;}
._5a{width:141.120000px;}
._5d{width:145.656000px;}
._5c{width:147.240000px;}
._4b{width:169.272000px;}
._21{width:171.534000px;}
._30{width:172.656000px;}
._28{width:173.808000px;}
._33{width:177.264000px;}
._39{width:178.848000px;}
._3d{width:181.656000px;}
._59{width:184.320000px;}
._4f{width:187.488000px;}
._37{width:188.496000px;}
._52{width:189.629760px;}
._1b{width:191.232000px;}
._19{width:192.456000px;}
._5e{width:193.536000px;}
._17{width:194.832000px;}
._46{width:196.506240px;}
._15{width:198.000000px;}
._1e{width:199.518000px;}
._16{width:200.952000px;}
._22{width:202.290000px;}
._29{width:204.145800px;}
._54{width:228.021750px;}
._56{width:340.074000px;}
._5{width:425.707200px;}
._2a{width:478.512000px;}
._1{width:521.104320px;}
._2{width:979.020000px;}
._3{width:1096.704000px;}
._3a{width:1763.254200px;}
.fc6{color:rgb(236,0,140);}
.fc5{color:transparent;}
.fc4{color:rgb(65,64,66);}
.fc2{color:rgb(88,89,91);}
.fc7{color:rgb(77,77,77);}
.fc3{color:rgb(109,110,113);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:2.880000px;}
.fs18{font-size:14.850000px;}
.fs17{font-size:18.000000px;}
.fs1e{font-size:34.980000px;}
.fs1a{font-size:40.500000px;}
.fs12{font-size:41.976000px;}
.fs14{font-size:48.000000px;}
.fsc{font-size:50.400000px;}
.fs3{font-size:53.280000px;}
.fs13{font-size:54.000000px;}
.fs11{font-size:58.800000px;}
.fs0{font-size:59.040000px;}
.fs8{font-size:60.000000px;}
.fse{font-size:63.000000px;}
.fs2{font-size:64.800000px;}
.fs10{font-size:66.000000px;}
.fs16{font-size:69.000000px;}
.fs6{font-size:72.000000px;}
.fs1c{font-size:75.600000px;}
.fs19{font-size:78.000000px;}
.fs15{font-size:81.000000px;}
.fsb{font-size:84.000000px;}
.fsd{font-size:90.000000px;}
.fs1{font-size:95.040000px;}
.fsf{font-size:96.000000px;}
.fs9{font-size:100.800000px;}
.fs1b{font-size:108.000000px;}
.fsa{font-size:120.000000px;}
.fs7{font-size:144.000000px;}
.fs1d{font-size:156.000000px;}
.fs5{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.891000px;}
.y13e{bottom:6.468900px;}
.y201{bottom:6.469050px;}
.yf8{bottom:6.469200px;}
.y23d{bottom:6.469650px;}
.y18d{bottom:6.469800px;}
.y116{bottom:6.470100px;}
.y1ff{bottom:11.890050px;}
.yfe{bottom:11.890200px;}
.y236{bottom:11.890650px;}
.y168{bottom:11.890800px;}
.y110{bottom:11.891100px;}
.y137{bottom:11.891400px;}
.y62c{bottom:46.769850px;}
.y5e8{bottom:51.550350px;}
.y52e{bottom:51.813150px;}
.y5a4{bottom:52.665900px;}
.y534{bottom:53.103000px;}
.y731{bottom:53.206800px;}
.y54c{bottom:53.728950px;}
.y4e5{bottom:53.856450px;}
.y208{bottom:54.080850px;}
.y234{bottom:54.165900px;}
.y1fd{bottom:54.250950px;}
.yaf{bottom:54.254100px;}
.y563{bottom:54.269850px;}
.y15b{bottom:54.506100px;}
.y166{bottom:54.676200px;}
.y1b2{bottom:54.718650px;}
.y135{bottom:54.846300px;}
.y10e{bottom:55.186350px;}
.y6c6{bottom:55.228950px;}
.yf6{bottom:55.356450px;}
.yb0{bottom:55.370400px;}
.yf5{bottom:56.486400px;}
.y2cb{bottom:96.720300px;}
.y72e{bottom:96.732300px;}
.y2f4{bottom:96.932850px;}
.y33f{bottom:97.304400px;}
.y262{bottom:97.310250px;}
.y368{bottom:97.322250px;}
.y3b1{bottom:97.322700px;}
.y233{bottom:97.332900px;}
.y3e9{bottom:97.340400px;}
.y3c1{bottom:97.352250px;}
.y415{bottom:97.358250px;}
.y52d{bottom:97.485750px;}
.y2a9{bottom:97.582650px;}
.y48b{bottom:97.606350px;}
.y1c2{bottom:97.741200px;}
.y1b1{bottom:97.747200px;}
.y10d{bottom:97.765200px;}
.y18b{bottom:97.771200px;}
.yfc{bottom:97.777200px;}
.y165{bottom:97.783200px;}
.yf2{bottom:97.783350px;}
.yae{bottom:97.789200px;}
.y1c6{bottom:97.795200px;}
.y134{bottom:97.876350px;}
.y15a{bottom:97.955100px;}
.y4ad{bottom:98.503650px;}
.y463{bottom:98.834700px;}
.y22c{bottom:98.852250px;}
.y27a{bottom:99.683400px;}
.y4d6{bottom:99.726150px;}
.y23b{bottom:99.955200px;}
.y3eb{bottom:99.974250px;}
.y15e{bottom:100.198650px;}
.y2cf{bottom:100.203150px;}
.y286{bottom:100.352100px;}
.y3c4{bottom:100.359450px;}
.y3b7{bottom:100.749450px;}
.y419{bottom:100.870500px;}
.y4cd{bottom:101.212950px;}
.y114{bottom:101.468250px;}
.y1d8{bottom:101.479650px;}
.y1b7{bottom:101.647050px;}
.y2ab{bottom:101.901150px;}
.y139{bottom:102.123750px;}
.y1c9{bottom:102.299550px;}
.y467{bottom:102.536550px;}
.y4d1{bottom:102.732150px;}
.y4e8{bottom:102.834000px;}
.y530{bottom:103.140000px;}
.y102{bottom:103.665000px;}
.y48c{bottom:103.870500px;}
.y4df{bottom:104.232150px;}
.y264{bottom:104.255850px;}
.y54{bottom:104.453850px;}
.y38c{bottom:104.858100px;}
.y1a{bottom:105.457650px;}
.y1c{bottom:105.584700px;}
.y412{bottom:105.702600px;}
.y34{bottom:106.922850px;}
.y1c5{bottom:107.474250px;}
.y2f6{bottom:107.845050px;}
.y440{bottom:108.370500px;}
.y72{bottom:108.953850px;}
.y414{bottom:113.558250px;}
.y6c5{bottom:113.986050px;}
.y389{bottom:114.830550px;}
.y4de{bottom:114.854250px;}
.y319{bottom:115.144200px;}
.y5a3{bottom:115.271850px;}
.y671{bottom:115.277850px;}
.y1fc{bottom:115.291200px;}
.y1fa{bottom:115.378950px;}
.y207{bottom:115.581150px;}
.y54b{bottom:115.581300px;}
.y64d{bottom:115.583850px;}
.y608{bottom:115.774350px;}
.y5c4{bottom:115.917900px;}
.y342{bottom:115.982100px;}
.y43c{bottom:116.330550px;}
.y62b{bottom:116.332350px;}
.y72a{bottom:116.986050px;}
.y2ca{bottom:117.726300px;}
.y4dd{bottom:117.732150px;}
.y2f3{bottom:117.938850px;}
.y33e{bottom:118.310400px;}
.y261{bottom:118.316250px;}
.y367{bottom:118.328250px;}
.y3b0{bottom:118.328700px;}
.y72d{bottom:118.332300px;}
.y232{bottom:118.338900px;}
.y3e8{bottom:118.346400px;}
.y3c0{bottom:118.358250px;}
.y1c1{bottom:118.747200px;}
.y1b0{bottom:118.753200px;}
.y10c{bottom:118.771200px;}
.y18a{bottom:118.777200px;}
.yfb{bottom:118.783200px;}
.y164{bottom:118.789200px;}
.yf1{bottom:118.789350px;}
.yad{bottom:118.795200px;}
.y6e1{bottom:118.871250px;}
.y159{bottom:118.961100px;}
.y533{bottom:119.014350px;}
.y4ac{bottom:119.509650px;}
.y22b{bottom:119.858250px;}
.y279{bottom:120.689400px;}
.y4d5{bottom:120.732150px;}
.y23a{bottom:120.961200px;}
.y15d{bottom:121.204650px;}
.y2ce{bottom:121.209150px;}
.y285{bottom:121.358100px;}
.y3c3{bottom:121.365450px;}
.y3b6{bottom:121.755450px;}
.y4cc{bottom:122.218950px;}
.y113{bottom:122.474250px;}
.y1d7{bottom:122.485650px;}
.y1b6{bottom:122.653050px;}
.y138{bottom:123.129750px;}
.y1c8{bottom:123.305550px;}
.y4e7{bottom:123.840000px;}
.y101{bottom:124.671000px;}
.y6fd{bottom:125.112900px;}
.y40e{bottom:125.858250px;}
.y53{bottom:131.453850px;}
.y19{bottom:132.457650px;}
.y1b{bottom:132.584700px;}
.y27c{bottom:132.689400px;}
.y33{bottom:133.922850px;}
.y4d3{bottom:135.518550px;}
.y95{bottom:135.776700px;}
.y71{bottom:135.953850px;}
.y4e2{bottom:136.334850px;}
.y418{bottom:136.682100px;}
.y341{bottom:136.988100px;}
.y687{bottom:137.566950px;}
.y2c9{bottom:138.732300px;}
.y2f2{bottom:138.944850px;}
.y33d{bottom:139.316400px;}
.y260{bottom:139.322250px;}
.y366{bottom:139.334250px;}
.y3af{bottom:139.334700px;}
.y231{bottom:139.344900px;}
.y1c0{bottom:139.753200px;}
.y1af{bottom:139.759200px;}
.y10b{bottom:139.777200px;}
.y189{bottom:139.783200px;}
.yfa{bottom:139.789200px;}
.y163{bottom:139.795200px;}
.yf0{bottom:139.795350px;}
.y4ab{bottom:140.515650px;}
.y3ea{bottom:141.786000px;}
.y388{bottom:141.830550px;}
.y3bf{bottom:141.854250px;}
.y2a8{bottom:142.078650px;}
.y318{bottom:142.144200px;}
.y5a2{bottom:142.271850px;}
.y282{bottom:142.273650px;}
.y670{bottom:142.277850px;}
.y1fb{bottom:142.291200px;}
.y3c2{bottom:142.371450px;}
.y1f9{bottom:142.378950px;}
.y206{bottom:142.581150px;}
.y54a{bottom:142.581300px;}
.y64c{bottom:142.583850px;}
.y607{bottom:142.774350px;}
.y5c3{bottom:142.917900px;}
.y43b{bottom:143.330550px;}
.y62a{bottom:143.332350px;}
.y1d6{bottom:143.491650px;}
.y100{bottom:145.677000px;}
.y1c4{bottom:147.090600px;}
.y411{bottom:147.514350px;}
.y43f{bottom:150.182100px;}
.y6c4{bottom:151.486050px;}
.y38a{bottom:153.538050px;}
.y239{bottom:153.782100px;}
.y263{bottom:153.786000px;}
.y729{bottom:154.486050px;}
.y510{bottom:155.288100px;}
.y4d4{bottom:155.640300px;}
.y6e0{bottom:156.371250px;}
.y417{bottom:156.571050px;}
.yac{bottom:157.390800px;}
.y340{bottom:157.994100px;}
.y284{bottom:158.286000px;}
.y52{bottom:158.453850px;}
.y2aa{bottom:158.782050px;}
.y33c{bottom:160.322400px;}
.y25f{bottom:160.328250px;}
.y365{bottom:160.340250px;}
.y1bf{bottom:160.759200px;}
.y1ae{bottom:160.765200px;}
.y10a{bottom:160.783200px;}
.y188{bottom:160.789200px;}
.yf9{bottom:160.795200px;}
.y3b5{bottom:161.019300px;}
.y2f5{bottom:161.038050px;}
.y4aa{bottom:161.521650px;}
.y3b4{bottom:162.051300px;}
.y278{bottom:162.512100px;}
.y6fc{bottom:162.612900px;}
.y4cf{bottom:162.790200px;}
.y70{bottom:162.953850px;}
.y1d5{bottom:163.229100px;}
.y581{bottom:163.486050px;}
.y3ed{bottom:163.597050px;}
.y230{bottom:164.010000px;}
.y2cd{bottom:164.290350px;}
.y686{bottom:164.560950px;}
.y13b{bottom:165.782100px;}
.y111{bottom:165.786000px;}
.y1b5{bottom:166.010400px;}
.y13c{bottom:166.670100px;}
.y416{bottom:166.907550px;}
.y466{bottom:167.286000px;}
.y4cb{bottom:168.116550px;}
.y2c8{bottom:168.228150px;}
.y160{bottom:168.360750px;}
.y2f1{bottom:168.440700px;}
.y1d2{bottom:168.522000px;}
.y40d{bottom:168.612450px;}
.y161{bottom:168.780750px;}
.y3ae{bottom:168.813000px;}
.y387{bottom:168.830550px;}
.y3be{bottom:168.854250px;}
.y2a7{bottom:169.078650px;}
.y317{bottom:169.144200px;}
.y5e7{bottom:169.269900px;}
.y5a1{bottom:169.271850px;}
.y281{bottom:169.273650px;}
.y66f{bottom:169.277850px;}
.y1cf{bottom:169.291200px;}
.y133{bottom:169.372200px;}
.y1f8{bottom:169.378950px;}
.y48a{bottom:169.392300px;}
.y158{bottom:169.457100px;}
.y205{bottom:169.581150px;}
.y549{bottom:169.581300px;}
.y64b{bottom:169.583850px;}
.y606{bottom:169.774350px;}
.y43a{bottom:170.330550px;}
.y629{bottom:170.332350px;}
.y22a{bottom:170.354250px;}
.y462{bottom:170.620650px;}
.y69e{bottom:170.636100px;}
.y410{bottom:171.571050px;}
.y94{bottom:171.776700px;}
.y3ec{bottom:173.933550px;}
.y1d4{bottom:176.904600px;}
.y43e{bottom:177.097050px;}
.y3ca{bottom:177.509550px;}
.y27b{bottom:179.191500px;}
.y48f{bottom:180.514350px;}
.y33b{bottom:181.328400px;}
.y25e{bottom:181.334250px;}
.y364{bottom:181.346250px;}
.y1be{bottom:181.765200px;}
.y1ad{bottom:181.771200px;}
.y109{bottom:181.789200px;}
.y187{bottom:181.795200px;}
.y40f{bottom:181.907550px;}
.y31{bottom:182.123100px;}
.y4a9{bottom:182.527650px;}
.yab{bottom:184.390800px;}
.y51{bottom:185.453850px;}
.y18{bottom:186.457650px;}
.y43d{bottom:187.433550px;}
.y32{bottom:187.922850px;}
.y6c3{bottom:188.986050px;}
.y6f{bottom:189.953850px;}
.y580{bottom:190.486050px;}
.y465{bottom:192.097050px;}
.y6df{bottom:193.871250px;}
.y4ca{bottom:195.116550px;}
.y2c7{bottom:195.228150px;}
.y2f0{bottom:195.440700px;}
.y40c{bottom:195.612450px;}
.y3ad{bottom:195.813000px;}
.y386{bottom:195.830550px;}
.y3bd{bottom:195.854250px;}
.y2a6{bottom:196.078650px;}
.y3e7{bottom:196.132350px;}
.y316{bottom:196.144200px;}
.y5e6{bottom:196.269900px;}
.y5a0{bottom:196.271850px;}
.y280{bottom:196.273650px;}
.y66e{bottom:196.277850px;}
.yef{bottom:196.291200px;}
.y132{bottom:196.372200px;}
.y1f7{bottom:196.378950px;}
.y489{bottom:196.392300px;}
.y157{bottom:196.457100px;}
.y204{bottom:196.581150px;}
.y548{bottom:196.581300px;}
.y64a{bottom:196.583850px;}
.y3c6{bottom:196.865925px;}
.y5c2{bottom:196.917900px;}
.y439{bottom:197.330550px;}
.y628{bottom:197.332350px;}
.y229{bottom:197.354250px;}
.y461{bottom:197.620650px;}
.y69d{bottom:197.630100px;}
.y103{bottom:198.538050px;}
.y6fb{bottom:200.112900px;}
.yff{bottom:200.923800px;}
.y4e9{bottom:201.514350px;}
.y33a{bottom:202.334400px;}
.y25d{bottom:202.340250px;}
.y363{bottom:202.352250px;}
.y464{bottom:202.433550px;}
.y346{bottom:202.612500px;}
.y1bd{bottom:202.771200px;}
.y1ac{bottom:202.777200px;}
.y108{bottom:202.795200px;}
.y3c5{bottom:203.956800px;}
.y48e{bottom:206.623200px;}
.y93{bottom:207.776700px;}
.yaa{bottom:211.390800px;}
.y50{bottom:212.453850px;}
.y17{bottom:213.457650px;}
.y6e{bottom:216.953850px;}
.y48d{bottom:216.959700px;}
.y57f{bottom:217.486050px;}
.y685{bottom:218.565450px;}
.y4c9{bottom:222.116550px;}
.y2c6{bottom:222.228150px;}
.y2ef{bottom:222.440700px;}
.y40b{bottom:222.612450px;}
.y3ac{bottom:222.813000px;}
.y4db{bottom:222.830550px;}
.y3bc{bottom:222.854250px;}
.y2a5{bottom:223.078650px;}
.y3e6{bottom:223.132350px;}
.y315{bottom:223.144200px;}
.y5e5{bottom:223.269900px;}
.y50b{bottom:223.271700px;}
.y59f{bottom:223.271850px;}
.y186{bottom:223.273650px;}
.y66d{bottom:223.277850px;}
.y276{bottom:223.291050px;}
.yee{bottom:223.291200px;}
.y339{bottom:223.340400px;}
.y25c{bottom:223.346250px;}
.y362{bottom:223.358250px;}
.y131{bottom:223.372200px;}
.y1f6{bottom:223.378950px;}
.y488{bottom:223.392300px;}
.y1ce{bottom:223.581150px;}
.y547{bottom:223.581300px;}
.y649{bottom:223.583850px;}
.y605{bottom:223.774350px;}
.y1bc{bottom:223.777200px;}
.y1ab{bottom:223.783200px;}
.y5c1{bottom:223.917900px;}
.y438{bottom:224.330550px;}
.y627{bottom:224.332350px;}
.y228{bottom:224.354250px;}
.y460{bottom:224.620650px;}
.y6c2{bottom:226.486050px;}
.y6de{bottom:231.371250px;}
.y4{bottom:233.609700px;}
.y30{bottom:236.123100px;}
.y6fa{bottom:237.612900px;}
.ya9{bottom:238.390800px;}
.y4f{bottom:239.453850px;}
.y16{bottom:240.457650px;}
.y92{bottom:243.782700px;}
.y6d{bottom:243.953850px;}
.y338{bottom:244.346400px;}
.y25b{bottom:244.352250px;}
.y57e{bottom:244.486050px;}
.y1bb{bottom:244.783200px;}
.y1aa{bottom:244.789200px;}
.y684{bottom:245.559450px;}
.y4c8{bottom:249.116550px;}
.y2c5{bottom:249.228150px;}
.y2ee{bottom:249.440700px;}
.y40a{bottom:249.612450px;}
.y3ab{bottom:249.813000px;}
.y385{bottom:249.830550px;}
.y361{bottom:249.836550px;}
.y413{bottom:249.854250px;}
.y2a4{bottom:250.078650px;}
.y3e5{bottom:250.132350px;}
.y314{bottom:250.144200px;}
.y5e4{bottom:250.269900px;}
.y50a{bottom:250.271700px;}
.y59e{bottom:250.271850px;}
.y185{bottom:250.273650px;}
.y66c{bottom:250.277850px;}
.yed{bottom:250.291200px;}
.yce{bottom:250.292400px;}
.y130{bottom:250.372200px;}
.y1f5{bottom:250.378950px;}
.y487{bottom:250.392300px;}
.y156{bottom:250.457100px;}
.y1cd{bottom:250.581150px;}
.y546{bottom:250.581300px;}
.y648{bottom:250.583850px;}
.y604{bottom:250.774350px;}
.y6b1{bottom:250.885650px;}
.y5c0{bottom:250.917900px;}
.y437{bottom:251.330550px;}
.y227{bottom:251.354250px;}
.y45f{bottom:251.620650px;}
.y69c{bottom:251.634600px;}
.y2f{bottom:263.123100px;}
.y6c1{bottom:263.986050px;}
.y25a{bottom:265.358250px;}
.ya8{bottom:265.390800px;}
.y1ba{bottom:265.789200px;}
.y1a9{bottom:265.795200px;}
.y4e{bottom:266.453850px;}
.y6dd{bottom:268.871250px;}
.y91{bottom:270.776700px;}
.y6c{bottom:270.953850px;}
.y57d{bottom:271.486050px;}
.y683{bottom:272.553450px;}
.y6f9{bottom:275.112900px;}
.y4c7{bottom:276.116550px;}
.y2c4{bottom:276.228150px;}
.y2ed{bottom:276.440700px;}
.y409{bottom:276.612450px;}
.y3aa{bottom:276.813000px;}
.y384{bottom:276.830550px;}
.y360{bottom:276.836550px;}
.y337{bottom:276.842400px;}
.y3bb{bottom:276.854250px;}
.y2a3{bottom:277.078650px;}
.y3e4{bottom:277.132350px;}
.y5e3{bottom:277.269900px;}
.y509{bottom:277.271700px;}
.y59d{bottom:277.271850px;}
.y184{bottom:277.273650px;}
.y66b{bottom:277.277850px;}
.y275{bottom:277.291050px;}
.yec{bottom:277.291200px;}
.ycd{bottom:277.292400px;}
.y12f{bottom:277.372200px;}
.y1f4{bottom:277.378950px;}
.y486{bottom:277.392300px;}
.y155{bottom:277.457100px;}
.y1cc{bottom:277.581150px;}
.y545{bottom:277.581300px;}
.y647{bottom:277.583850px;}
.y603{bottom:277.774350px;}
.y6b0{bottom:277.879650px;}
.y5bf{bottom:277.917900px;}
.y436{bottom:278.330550px;}
.y626{bottom:278.332350px;}
.y226{bottom:278.354250px;}
.y45e{bottom:278.620650px;}
.y69b{bottom:278.628600px;}
.y1b9{bottom:286.795200px;}
.y2e{bottom:290.123100px;}
.ya7{bottom:292.390800px;}
.y4d{bottom:293.453850px;}
.y6b{bottom:297.953850px;}
.y57c{bottom:298.486050px;}
.y6c0{bottom:301.486050px;}
.y4c6{bottom:303.116550px;}
.y2ec{bottom:303.440700px;}
.y408{bottom:303.612450px;}
.y4da{bottom:303.830550px;}
.y35f{bottom:303.836550px;}
.y336{bottom:303.842400px;}
.y259{bottom:303.854250px;}
.y2a2{bottom:304.078650px;}
.y3e3{bottom:304.132350px;}
.y313{bottom:304.144200px;}
.y5e2{bottom:304.269900px;}
.y508{bottom:304.271700px;}
.y59c{bottom:304.271850px;}
.y183{bottom:304.273650px;}
.y66a{bottom:304.277850px;}
.y274{bottom:304.291050px;}
.yeb{bottom:304.291200px;}
.ycc{bottom:304.292400px;}
.y12e{bottom:304.372200px;}
.y1f3{bottom:304.378950px;}
.y485{bottom:304.392300px;}
.y154{bottom:304.457100px;}
.y1a8{bottom:304.581150px;}
.y544{bottom:304.581300px;}
.y602{bottom:304.774350px;}
.y6af{bottom:304.873650px;}
.y435{bottom:305.330550px;}
.y625{bottom:305.332350px;}
.y225{bottom:305.354250px;}
.y45d{bottom:305.620650px;}
.y6dc{bottom:306.371250px;}
.y6f8{bottom:312.612900px;}
.y90{bottom:315.776700px;}
.y238{bottom:315.782100px;}
.y715{bottom:316.068000px;}
.yb{bottom:318.601650px;}
.ya6{bottom:319.390800px;}
.y4c{bottom:320.453850px;}
.y6a{bottom:324.953850px;}
.y57b{bottom:325.486050px;}
.y682{bottom:326.557950px;}
.y4c5{bottom:330.116550px;}
.y2c3{bottom:330.228150px;}
.y2eb{bottom:330.440700px;}
.y3a9{bottom:330.813000px;}
.y383{bottom:330.830550px;}
.y35e{bottom:330.836550px;}
.y335{bottom:330.842400px;}
.y258{bottom:330.854250px;}
.y2a1{bottom:331.078650px;}
.y3e2{bottom:331.132350px;}
.y312{bottom:331.144200px;}
.y5e1{bottom:331.269900px;}
.y507{bottom:331.271700px;}
.y59b{bottom:331.271850px;}
.y182{bottom:331.273650px;}
.y669{bottom:331.277850px;}
.y273{bottom:331.291050px;}
.yea{bottom:331.291200px;}
.ycb{bottom:331.292400px;}
.y12d{bottom:331.372200px;}
.y1f2{bottom:331.378950px;}
.y484{bottom:331.392300px;}
.y153{bottom:331.457100px;}
.y1a7{bottom:331.581150px;}
.y543{bottom:331.581300px;}
.y646{bottom:331.583850px;}
.y6ae{bottom:331.867650px;}
.y5be{bottom:331.917900px;}
.y434{bottom:332.330550px;}
.y624{bottom:332.332350px;}
.y224{bottom:332.354250px;}
.y69a{bottom:332.633100px;}
.y6bf{bottom:338.980050px;}
.y6db{bottom:343.871250px;}
.y2d{bottom:344.123100px;}
.y3b3{bottom:346.263300px;}
.ya5{bottom:346.390800px;}
.y4b{bottom:347.453850px;}
.y6f7{bottom:350.112900px;}
.y69{bottom:351.953850px;}
.y57a{bottom:352.486050px;}
.y681{bottom:353.551950px;}
.y714{bottom:353.568000px;}
.ya{bottom:355.131000px;}
.y2c2{bottom:357.228150px;}
.y2ea{bottom:357.440700px;}
.y407{bottom:357.612450px;}
.y52c{bottom:357.769650px;}
.y3a8{bottom:357.813000px;}
.y382{bottom:357.830550px;}
.y334{bottom:357.842400px;}
.y257{bottom:357.854250px;}
.y2a0{bottom:358.078650px;}
.y3e1{bottom:358.132350px;}
.y311{bottom:358.144200px;}
.y5e0{bottom:358.269900px;}
.y506{bottom:358.271700px;}
.y59a{bottom:358.271850px;}
.y181{bottom:358.273650px;}
.y668{bottom:358.277850px;}
.y272{bottom:358.291050px;}
.ye9{bottom:358.291200px;}
.yca{bottom:358.292400px;}
.y12c{bottom:358.372200px;}
.y1f1{bottom:358.378950px;}
.y483{bottom:358.392300px;}
.y152{bottom:358.457100px;}
.y1a6{bottom:358.581150px;}
.y542{bottom:358.581300px;}
.y645{bottom:358.583850px;}
.y601{bottom:358.774350px;}
.y6ad{bottom:358.861650px;}
.y5bd{bottom:358.917900px;}
.y433{bottom:359.330550px;}
.y623{bottom:359.332350px;}
.y223{bottom:359.354250px;}
.y45c{bottom:359.620650px;}
.y699{bottom:359.627100px;}
.y6be{bottom:359.986050px;}
.y8f{bottom:360.830700px;}
.y2c{bottom:371.123100px;}
.ya4{bottom:373.390800px;}
.y4a{bottom:374.453850px;}
.y68{bottom:378.953850px;}
.y579{bottom:379.486050px;}
.y6da{bottom:381.371250px;}
.y4c4{bottom:384.116550px;}
.y2e9{bottom:384.440700px;}
.y406{bottom:384.612450px;}
.y52b{bottom:384.769650px;}
.y3a7{bottom:384.813000px;}
.y381{bottom:384.830550px;}
.y35d{bottom:384.836550px;}
.y333{bottom:384.842400px;}
.y256{bottom:384.854250px;}
.y29f{bottom:385.078650px;}
.y3e0{bottom:385.132350px;}
.y310{bottom:385.144200px;}
.y5df{bottom:385.269900px;}
.y505{bottom:385.271700px;}
.y599{bottom:385.271850px;}
.y180{bottom:385.273650px;}
.y667{bottom:385.277850px;}
.y271{bottom:385.291050px;}
.ye8{bottom:385.291200px;}
.yc9{bottom:385.292400px;}
.y1f0{bottom:385.378950px;}
.y482{bottom:385.392300px;}
.y151{bottom:385.457100px;}
.y1a5{bottom:385.581150px;}
.y541{bottom:385.581300px;}
.y644{bottom:385.583850px;}
.y600{bottom:385.774350px;}
.y6ac{bottom:385.855650px;}
.y5bc{bottom:385.917900px;}
.y622{bottom:386.332350px;}
.y222{bottom:386.354250px;}
.y45b{bottom:386.620650px;}
.y6f6{bottom:387.612900px;}
.y8e{bottom:387.824700px;}
.y713{bottom:391.068000px;}
.y1b4{bottom:397.010400px;}
.y4d2{bottom:397.190550px;}
.y6bd{bottom:397.486050px;}
.y4ce{bottom:399.526200px;}
.ya3{bottom:400.390800px;}
.y49{bottom:401.453850px;}
.y67{bottom:405.953850px;}
.y578{bottom:406.486050px;}
.y1c3{bottom:406.626600px;}
.y680{bottom:407.556450px;}
.y4c3{bottom:411.116550px;}
.y2e8{bottom:411.440700px;}
.y405{bottom:411.612450px;}
.y52a{bottom:411.769650px;}
.y3a6{bottom:411.813000px;}
.y380{bottom:411.830550px;}
.y35c{bottom:411.836550px;}
.y332{bottom:411.842400px;}
.y255{bottom:411.854250px;}
.y29e{bottom:412.078650px;}
.y3df{bottom:412.132350px;}
.y30f{bottom:412.144200px;}
.y5de{bottom:412.269900px;}
.y504{bottom:412.271700px;}
.y598{bottom:412.271850px;}
.y4d0{bottom:412.273650px;}
.y666{bottom:412.277850px;}
.y270{bottom:412.291050px;}
.ye7{bottom:412.291200px;}
.yc8{bottom:412.292400px;}
.y12b{bottom:412.372200px;}
.y1ef{bottom:412.378950px;}
.y481{bottom:412.392300px;}
.y150{bottom:412.457100px;}
.y1a4{bottom:412.581150px;}
.y540{bottom:412.581300px;}
.y643{bottom:412.583850px;}
.y5ff{bottom:412.774350px;}
.y6ab{bottom:412.849650px;}
.y5bb{bottom:412.917900px;}
.y432{bottom:413.330550px;}
.y221{bottom:413.354250px;}
.y45a{bottom:413.620650px;}
.y698{bottom:413.631600px;}
.y8d{bottom:414.818700px;}
.y6d9{bottom:418.871250px;}
.y13a{bottom:423.650100px;}
.y6f5{bottom:425.112900px;}
.y2b{bottom:425.123100px;}
.y50f{bottom:425.288100px;}
.y15f{bottom:426.360750px;}
.ya2{bottom:427.390800px;}
.y48{bottom:428.453850px;}
.y712{bottom:428.568000px;}
.y38b{bottom:431.290050px;}
.y66{bottom:432.953850px;}
.y577{bottom:433.486050px;}
.y67f{bottom:434.550450px;}
.y6bc{bottom:434.980050px;}
.y344{bottom:435.112500px;}
.y4c2{bottom:438.116550px;}
.y2c1{bottom:438.228150px;}
.y2e7{bottom:438.440700px;}
.y404{bottom:438.612450px;}
.y529{bottom:438.769650px;}
.y3a5{bottom:438.813000px;}
.y37f{bottom:438.830550px;}
.y3ba{bottom:438.854250px;}
.y29d{bottom:439.078650px;}
.y3de{bottom:439.132350px;}
.y30e{bottom:439.144200px;}
.y5dd{bottom:439.269900px;}
.y503{bottom:439.271700px;}
.y17f{bottom:439.273650px;}
.y665{bottom:439.277850px;}
.y26f{bottom:439.291050px;}
.yf4{bottom:439.291200px;}
.yc7{bottom:439.292400px;}
.y12a{bottom:439.372200px;}
.y1ee{bottom:439.378950px;}
.y480{bottom:439.392300px;}
.y14f{bottom:439.457100px;}
.y1a3{bottom:439.581150px;}
.y53f{bottom:439.581300px;}
.y642{bottom:439.583850px;}
.y5fe{bottom:439.774350px;}
.y6aa{bottom:439.843650px;}
.y5ba{bottom:439.917900px;}
.y4a8{bottom:440.023500px;}
.y431{bottom:440.330550px;}
.y621{bottom:440.332350px;}
.y220{bottom:440.354250px;}
.y459{bottom:440.620650px;}
.y697{bottom:440.625600px;}
.y8c{bottom:441.812700px;}
.yf3{bottom:449.286000px;}
.y283{bottom:450.786000px;}
.y2a{bottom:452.123100px;}
.ya1{bottom:454.390800px;}
.y47{bottom:455.453850px;}
.y6bb{bottom:455.986050px;}
.y6d8{bottom:456.371250px;}
.y65{bottom:459.953850px;}
.y4e0{bottom:460.334850px;}
.y576{bottom:460.486050px;}
.y6f4{bottom:462.612900px;}
.y4c1{bottom:465.116550px;}
.y2c0{bottom:465.228150px;}
.y2e6{bottom:465.440700px;}
.y403{bottom:465.612450px;}
.y528{bottom:465.769650px;}
.y3a4{bottom:465.813000px;}
.y4d9{bottom:465.830550px;}
.y331{bottom:465.842400px;}
.y254{bottom:465.854250px;}
.y711{bottom:466.068000px;}
.y29c{bottom:466.078650px;}
.y30d{bottom:466.144200px;}
.y5dc{bottom:466.269900px;}
.y502{bottom:466.271700px;}
.y597{bottom:466.271850px;}
.y17e{bottom:466.273650px;}
.y664{bottom:466.277850px;}
.y26e{bottom:466.291050px;}
.ye6{bottom:466.291200px;}
.yc6{bottom:466.292400px;}
.y129{bottom:466.372200px;}
.y47f{bottom:466.392300px;}
.y14e{bottom:466.457100px;}
.y1a2{bottom:466.581150px;}
.y53e{bottom:466.581300px;}
.y641{bottom:466.583850px;}
.y5fd{bottom:466.774350px;}
.y4a7{bottom:467.023500px;}
.y430{bottom:467.330550px;}
.y620{bottom:467.332350px;}
.y21f{bottom:467.354250px;}
.y696{bottom:467.619600px;}
.y458{bottom:467.620650px;}
.y8b{bottom:468.806700px;}
.y4dc{bottom:471.516300px;}
.y29{bottom:479.123100px;}
.ya0{bottom:481.390800px;}
.y46{bottom:482.453850px;}
.y6d7{bottom:483.371250px;}
.y64{bottom:486.953850px;}
.y575{bottom:487.486050px;}
.y67e{bottom:488.554950px;}
.y22f{bottom:489.510000px;}
.y106{bottom:490.848900px;}
.y4c0{bottom:492.116550px;}
.y402{bottom:492.612450px;}
.y527{bottom:492.769650px;}
.y3a3{bottom:492.813000px;}
.y37e{bottom:492.830550px;}
.y35b{bottom:492.836550px;}
.y330{bottom:492.842400px;}
.y253{bottom:492.854250px;}
.y29b{bottom:493.078650px;}
.y3dd{bottom:493.132350px;}
.y30c{bottom:493.144200px;}
.y105{bottom:493.236900px;}
.y5db{bottom:493.269900px;}
.y501{bottom:493.271700px;}
.y596{bottom:493.271850px;}
.y17d{bottom:493.273650px;}
.y663{bottom:493.277850px;}
.y26d{bottom:493.291050px;}
.ye5{bottom:493.291200px;}
.y128{bottom:493.372200px;}
.y1ed{bottom:493.378950px;}
.y47e{bottom:493.392300px;}
.y14d{bottom:493.457100px;}
.y6ba{bottom:493.486050px;}
.y1a1{bottom:493.581150px;}
.y640{bottom:493.583850px;}
.y6a9{bottom:493.848150px;}
.y5b9{bottom:493.917900px;}
.y4a6{bottom:494.023500px;}
.y42f{bottom:494.330550px;}
.y61f{bottom:494.332350px;}
.y21e{bottom:494.354250px;}
.y457{bottom:494.620650px;}
.y8a{bottom:495.800700px;}
.y6f3{bottom:500.112900px;}
.y562{bottom:503.317200px;}
.y710{bottom:503.568000px;}
.y1d1{bottom:504.042000px;}
.y1c7{bottom:504.786000px;}
.y28{bottom:506.123100px;}
.y9f{bottom:508.390800px;}
.y2cc{bottom:509.014350px;}
.y45{bottom:509.453850px;}
.y63{bottom:513.953850px;}
.y574{bottom:514.486050px;}
.y73a{bottom:515.529540px;}
.y67d{bottom:515.539950px;}
.y13{bottom:516.420540px;}
.y4bf{bottom:519.116550px;}
.y2bf{bottom:519.228150px;}
.y2e5{bottom:519.440700px;}
.y526{bottom:519.769650px;}
.y3a2{bottom:519.813000px;}
.y37d{bottom:519.830550px;}
.y35a{bottom:519.836550px;}
.y32f{bottom:519.842400px;}
.y252{bottom:519.854250px;}
.y29a{bottom:520.078650px;}
.y3dc{bottom:520.132350px;}
.y30b{bottom:520.144200px;}
.y5da{bottom:520.269900px;}
.y500{bottom:520.271700px;}
.y595{bottom:520.271850px;}
.y17c{bottom:520.273650px;}
.y662{bottom:520.277850px;}
.y26c{bottom:520.291050px;}
.ye4{bottom:520.291200px;}
.yc5{bottom:520.292400px;}
.y127{bottom:520.372200px;}
.y47d{bottom:520.392300px;}
.y14c{bottom:520.457100px;}
.y53d{bottom:520.581000px;}
.y1a0{bottom:520.581150px;}
.y5fc{bottom:520.774350px;}
.y6d6{bottom:520.871250px;}
.y5b8{bottom:520.917900px;}
.y4a5{bottom:521.023500px;}
.y42e{bottom:521.330550px;}
.y61e{bottom:521.332350px;}
.y21d{bottom:521.354250px;}
.y456{bottom:521.620650px;}
.y695{bottom:521.624100px;}
.y89{bottom:522.794700px;}
.y3c9{bottom:524.897550px;}
.y6b9{bottom:530.986050px;}
.y739{bottom:531.726660px;}
.y12{bottom:532.617660px;}
.y9e{bottom:535.390800px;}
.y44{bottom:536.453850px;}
.y6f2{bottom:537.612900px;}
.y62{bottom:540.953850px;}
.y70f{bottom:541.068000px;}
.y237{bottom:544.778100px;}
.y4be{bottom:546.116550px;}
.y2be{bottom:546.228150px;}
.y401{bottom:546.612450px;}
.y525{bottom:546.769650px;}
.y3a1{bottom:546.813000px;}
.y37c{bottom:546.830550px;}
.y359{bottom:546.836550px;}
.y32e{bottom:546.842400px;}
.y251{bottom:546.854250px;}
.y299{bottom:547.078650px;}
.y3db{bottom:547.132350px;}
.y30a{bottom:547.144200px;}
.y5d9{bottom:547.269900px;}
.y4ff{bottom:547.271700px;}
.y594{bottom:547.271850px;}
.y17b{bottom:547.273650px;}
.y661{bottom:547.277850px;}
.y26b{bottom:547.291050px;}
.ye3{bottom:547.291200px;}
.yc4{bottom:547.292400px;}
.y126{bottom:547.372200px;}
.y47c{bottom:547.392300px;}
.y14b{bottom:547.457100px;}
.y561{bottom:547.522950px;}
.y19f{bottom:547.581150px;}
.y63f{bottom:547.583850px;}
.y5fb{bottom:547.774350px;}
.y5b7{bottom:547.917900px;}
.y738{bottom:547.923780px;}
.y4a4{bottom:548.023500px;}
.y42d{bottom:548.330550px;}
.y61d{bottom:548.332350px;}
.y21c{bottom:548.354250px;}
.y455{bottom:548.620650px;}
.y11{bottom:548.814780px;}
.y88{bottom:549.788700px;}
.y345{bottom:550.888500px;}
.y6d5{bottom:558.371250px;}
.y27{bottom:560.123100px;}
.y9d{bottom:562.390800px;}
.y43{bottom:563.453850px;}
.y737{bottom:564.120900px;}
.y10{bottom:565.011900px;}
.y61{bottom:567.953850px;}
.y573{bottom:568.486050px;}
.y67c{bottom:569.544450px;}
.y4bd{bottom:573.116550px;}
.y2bd{bottom:573.228150px;}
.y2e4{bottom:573.440700px;}
.y400{bottom:573.612450px;}
.y524{bottom:573.769650px;}
.y3a0{bottom:573.813000px;}
.y37b{bottom:573.830550px;}
.y358{bottom:573.836550px;}
.y32d{bottom:573.842400px;}
.y3b9{bottom:573.854250px;}
.y298{bottom:574.078650px;}
.y3da{bottom:574.132350px;}
.y309{bottom:574.144200px;}
.y5d8{bottom:574.269900px;}
.y4fe{bottom:574.271700px;}
.y593{bottom:574.271850px;}
.y17a{bottom:574.273650px;}
.y660{bottom:574.277850px;}
.y26a{bottom:574.291050px;}
.ye2{bottom:574.291200px;}
.yc3{bottom:574.292400px;}
.y125{bottom:574.372200px;}
.y1ec{bottom:574.378950px;}
.y47b{bottom:574.392300px;}
.y14a{bottom:574.457100px;}
.y560{bottom:574.522950px;}
.y19e{bottom:574.581150px;}
.y63e{bottom:574.583850px;}
.y5fa{bottom:574.774350px;}
.y5b6{bottom:574.917900px;}
.y4a3{bottom:575.023500px;}
.y6f1{bottom:575.112900px;}
.y42c{bottom:575.330550px;}
.y61c{bottom:575.332350px;}
.y21b{bottom:575.354250px;}
.y454{bottom:575.620650px;}
.y87{bottom:576.782700px;}
.y70e{bottom:578.568000px;}
.y736{bottom:581.400150px;}
.yf{bottom:582.291150px;}
.y531{bottom:584.286000px;}
.y26{bottom:587.123100px;}
.y9c{bottom:589.390800px;}
.y42{bottom:590.453850px;}
.y60{bottom:594.953850px;}
.y572{bottom:595.486050px;}
.y6d4{bottom:595.871250px;}
.y67b{bottom:596.538450px;}
.y4bc{bottom:600.116550px;}
.y2bc{bottom:600.228150px;}
.y2e3{bottom:600.440700px;}
.y3ff{bottom:600.612450px;}
.y523{bottom:600.769650px;}
.y39f{bottom:600.813000px;}
.y37a{bottom:600.830550px;}
.y357{bottom:600.836550px;}
.y32c{bottom:600.842400px;}
.y250{bottom:600.854250px;}
.y297{bottom:601.078650px;}
.y3d9{bottom:601.132350px;}
.y308{bottom:601.144200px;}
.y5d7{bottom:601.269900px;}
.y4fd{bottom:601.271700px;}
.y179{bottom:601.273650px;}
.y65f{bottom:601.277850px;}
.ye1{bottom:601.291200px;}
.yc2{bottom:601.292400px;}
.y124{bottom:601.372200px;}
.y1eb{bottom:601.378950px;}
.y47a{bottom:601.392300px;}
.y149{bottom:601.457100px;}
.y55f{bottom:601.522950px;}
.y735{bottom:601.558950px;}
.y53c{bottom:601.581000px;}
.y19d{bottom:601.581150px;}
.y63d{bottom:601.583850px;}
.y5f9{bottom:601.774350px;}
.y6a8{bottom:601.840650px;}
.y5b5{bottom:601.917900px;}
.y4a2{bottom:602.023500px;}
.y42b{bottom:602.330550px;}
.ye{bottom:602.449950px;}
.y453{bottom:602.620650px;}
.y86{bottom:603.776700px;}
.y85{bottom:603.782700px;}
.y6b8{bottom:605.986050px;}
.y112{bottom:611.286000px;}
.y6f0{bottom:612.612900px;}
.y25{bottom:614.123100px;}
.y70d{bottom:616.068000px;}
.y9b{bottom:616.390800px;}
.y41{bottom:617.453850px;}
.y5f{bottom:621.953850px;}
.y571{bottom:622.486050px;}
.y734{bottom:623.158950px;}
.yd{bottom:624.049950px;}
.y4bb{bottom:627.116550px;}
.y2bb{bottom:627.228150px;}
.y2e2{bottom:627.440700px;}
.y3fe{bottom:627.612450px;}
.y522{bottom:627.769650px;}
.y39e{bottom:627.813000px;}
.y379{bottom:627.830550px;}
.y356{bottom:627.836550px;}
.y32b{bottom:627.842400px;}
.y24f{bottom:627.854250px;}
.y296{bottom:628.078650px;}
.y3d8{bottom:628.132350px;}
.y307{bottom:628.144200px;}
.y5d6{bottom:628.269900px;}
.y4fc{bottom:628.271700px;}
.y592{bottom:628.271850px;}
.y178{bottom:628.273650px;}
.y65e{bottom:628.277850px;}
.y269{bottom:628.291050px;}
.ye0{bottom:628.291200px;}
.yc1{bottom:628.292400px;}
.y123{bottom:628.372200px;}
.y1ea{bottom:628.378950px;}
.y479{bottom:628.392300px;}
.y148{bottom:628.457100px;}
.y55e{bottom:628.522950px;}
.y53b{bottom:628.581000px;}
.y19c{bottom:628.581150px;}
.y63c{bottom:628.583850px;}
.y5b4{bottom:628.917900px;}
.y4a1{bottom:629.023500px;}
.y42a{bottom:629.330550px;}
.y61b{bottom:629.332350px;}
.y21a{bottom:629.354250px;}
.y694{bottom:629.616600px;}
.y452{bottom:629.620650px;}
.y84{bottom:630.788700px;}
.y6d3{bottom:633.371250px;}
.y721{bottom:635.911350px;}
.y70c{bottom:643.068000px;}
.y9a{bottom:643.390800px;}
.y6b7{bottom:643.486050px;}
.y40{bottom:644.453850px;}
.y733{bottom:644.758950px;}
.yc{bottom:645.649950px;}
.y5e{bottom:648.953850px;}
.y570{bottom:649.486050px;}
.y6ef{bottom:650.112900px;}
.y67a{bottom:650.542950px;}
.y4ba{bottom:654.116550px;}
.y2e1{bottom:654.440700px;}
.y3fd{bottom:654.612450px;}
.y521{bottom:654.769650px;}
.y378{bottom:654.830550px;}
.y32a{bottom:654.842400px;}
.y24e{bottom:654.854250px;}
.y295{bottom:655.078650px;}
.y3d7{bottom:655.132350px;}
.y306{bottom:655.144200px;}
.y5d5{bottom:655.269900px;}
.y4fb{bottom:655.271700px;}
.y591{bottom:655.271850px;}
.y177{bottom:655.273650px;}
.y65d{bottom:655.277850px;}
.y268{bottom:655.291050px;}
.ydf{bottom:655.291200px;}
.yc0{bottom:655.292400px;}
.y122{bottom:655.372200px;}
.y1e9{bottom:655.378950px;}
.y478{bottom:655.392300px;}
.y147{bottom:655.457100px;}
.y55d{bottom:655.522950px;}
.y53a{bottom:655.581000px;}
.y19b{bottom:655.581150px;}
.y63b{bottom:655.583850px;}
.y5f8{bottom:655.774350px;}
.y6a7{bottom:655.845150px;}
.y5b3{bottom:655.917900px;}
.y4a0{bottom:656.023500px;}
.y429{bottom:656.330550px;}
.y61a{bottom:656.332350px;}
.y219{bottom:656.354250px;}
.y693{bottom:656.610600px;}
.y451{bottom:656.620650px;}
.y83{bottom:657.782700px;}
.y24{bottom:668.123100px;}
.y99{bottom:670.390800px;}
.y6d2{bottom:670.871250px;}
.y3f{bottom:671.453850px;}
.y3b2{bottom:673.707300px;}
.y4ea{bottom:674.326350px;}
.y4e4{bottom:675.343650px;}
.y5d{bottom:675.953850px;}
.y56f{bottom:676.486050px;}
.y679{bottom:677.536950px;}
.y511{bottom:678.512100px;}
.y4e1{bottom:678.782850px;}
.y70b{bottom:680.568000px;}
.y720{bottom:680.911350px;}
.y6b6{bottom:680.986050px;}
.y2ba{bottom:681.228150px;}
.y2e0{bottom:681.440700px;}
.y3fc{bottom:681.612450px;}
.y39d{bottom:681.813000px;}
.y377{bottom:681.830550px;}
.y355{bottom:681.836550px;}
.y329{bottom:681.842400px;}
.y24d{bottom:681.854250px;}
.y294{bottom:682.078650px;}
.y3d6{bottom:682.132350px;}
.y305{bottom:682.144200px;}
.y5d4{bottom:682.269900px;}
.y4fa{bottom:682.271700px;}
.y590{bottom:682.271850px;}
.y176{bottom:682.273650px;}
.y65c{bottom:682.277850px;}
.y267{bottom:682.291050px;}
.yde{bottom:682.291200px;}
.ybf{bottom:682.292400px;}
.y121{bottom:682.372200px;}
.y1e8{bottom:682.378950px;}
.y477{bottom:682.392300px;}
.y146{bottom:682.457100px;}
.y55c{bottom:682.522950px;}
.y539{bottom:682.581000px;}
.y19a{bottom:682.581150px;}
.y5f7{bottom:682.774350px;}
.y5b2{bottom:682.917900px;}
.y49f{bottom:683.023500px;}
.y619{bottom:683.332350px;}
.y218{bottom:683.354250px;}
.y450{bottom:683.620650px;}
.y82{bottom:684.776700px;}
.y4e3{bottom:685.680150px;}
.y6ee{bottom:687.612900px;}
.y23{bottom:695.123100px;}
.y50e{bottom:695.900100px;}
.y98{bottom:697.390800px;}
.y3e{bottom:698.453850px;}
.y5c{bottom:702.953850px;}
.y56e{bottom:703.486050px;}
.y3{bottom:703.604100px;}
.y70a{bottom:707.568000px;}
.y2b9{bottom:708.228150px;}
.y6d1{bottom:708.371250px;}
.y2df{bottom:708.440700px;}
.y3fb{bottom:708.612450px;}
.y520{bottom:708.769650px;}
.y39c{bottom:708.813000px;}
.y376{bottom:708.830550px;}
.y354{bottom:708.836550px;}
.y328{bottom:708.842400px;}
.y24c{bottom:708.854250px;}
.y293{bottom:709.078650px;}
.y3d5{bottom:709.132350px;}
.y304{bottom:709.144200px;}
.y5d3{bottom:709.269900px;}
.y4f9{bottom:709.271700px;}
.y58f{bottom:709.271850px;}
.y175{bottom:709.273650px;}
.y65b{bottom:709.277850px;}
.y266{bottom:709.291050px;}
.ydd{bottom:709.291200px;}
.ybe{bottom:709.292400px;}
.y120{bottom:709.372200px;}
.y1e7{bottom:709.378950px;}
.y476{bottom:709.392300px;}
.y145{bottom:709.457100px;}
.y55b{bottom:709.522950px;}
.y538{bottom:709.581000px;}
.y199{bottom:709.581150px;}
.y63a{bottom:709.583850px;}
.y5f6{bottom:709.774350px;}
.y6a6{bottom:709.849650px;}
.y49e{bottom:710.023500px;}
.y428{bottom:710.330550px;}
.y618{bottom:710.332350px;}
.y217{bottom:710.354250px;}
.y692{bottom:710.615100px;}
.y44f{bottom:710.620650px;}
.y81{bottom:714.776700px;}
.y71f{bottom:718.411350px;}
.y6b5{bottom:718.486050px;}
.y22{bottom:722.123100px;}
.y277{bottom:724.400100px;}
.y6ed{bottom:725.112900px;}
.y3d{bottom:725.453850px;}
.y343{bottom:726.388500px;}
.y5b{bottom:729.953850px;}
.y56d{bottom:730.486050px;}
.y678{bottom:731.541450px;}
.y104{bottom:732.348900px;}
.y4b9{bottom:735.116550px;}
.y2b8{bottom:735.228150px;}
.y2de{bottom:735.440700px;}
.y3c8{bottom:735.509550px;}
.y3fa{bottom:735.612450px;}
.y51f{bottom:735.769650px;}
.y39b{bottom:735.813000px;}
.y375{bottom:735.830550px;}
.y353{bottom:735.836550px;}
.y327{bottom:735.842400px;}
.y24b{bottom:735.854250px;}
.y3d4{bottom:736.132350px;}
.y5d2{bottom:736.269900px;}
.y4f8{bottom:736.271700px;}
.y58e{bottom:736.271850px;}
.y174{bottom:736.273650px;}
.y65a{bottom:736.277850px;}
.y265{bottom:736.291050px;}
.ydc{bottom:736.291200px;}
.ybd{bottom:736.292400px;}
.y50d{bottom:736.303125px;}
.y1e6{bottom:736.378950px;}
.y475{bottom:736.392300px;}
.y144{bottom:736.457100px;}
.y55a{bottom:736.522950px;}
.y537{bottom:736.581000px;}
.y198{bottom:736.581150px;}
.y639{bottom:736.583850px;}
.y5f5{bottom:736.774350px;}
.y5b1{bottom:736.917900px;}
.y49d{bottom:737.023500px;}
.y427{bottom:737.330550px;}
.y617{bottom:737.332350px;}
.y216{bottom:737.354250px;}
.y44e{bottom:737.620650px;}
.y709{bottom:745.068000px;}
.y21{bottom:749.123100px;}
.y97{bottom:751.390800px;}
.y3c{bottom:752.453850px;}
.y71e{bottom:755.911350px;}
.y6b4{bottom:755.986050px;}
.y5a{bottom:756.953850px;}
.y56c{bottom:757.486050px;}
.y677{bottom:758.535450px;}
.y80{bottom:759.776700px;}
.y4b8{bottom:762.116550px;}
.y2b7{bottom:762.228150px;}
.y2dd{bottom:762.440700px;}
.y3f9{bottom:762.612450px;}
.y6ec{bottom:762.612900px;}
.y51e{bottom:762.769650px;}
.y39a{bottom:762.813000px;}
.y374{bottom:762.830550px;}
.y352{bottom:762.836550px;}
.y326{bottom:762.842400px;}
.y24a{bottom:762.854250px;}
.y3d3{bottom:763.132350px;}
.y303{bottom:763.144200px;}
.y5d1{bottom:763.269900px;}
.y4f7{bottom:763.271700px;}
.y173{bottom:763.273650px;}
.ydb{bottom:763.291200px;}
.ybc{bottom:763.292400px;}
.y11f{bottom:763.372200px;}
.y1e5{bottom:763.378950px;}
.y474{bottom:763.392300px;}
.y143{bottom:763.457100px;}
.y536{bottom:763.581000px;}
.y197{bottom:763.581150px;}
.y638{bottom:763.583850px;}
.y6a5{bottom:763.854150px;}
.y5b0{bottom:763.917900px;}
.y49c{bottom:764.023500px;}
.y426{bottom:764.330550px;}
.y616{bottom:764.332350px;}
.y215{bottom:764.354250px;}
.y691{bottom:764.619600px;}
.y44d{bottom:764.620650px;}
.y20{bottom:776.123100px;}
.y3b{bottom:779.453850px;}
.y708{bottom:782.568000px;}
.y1d0{bottom:783.786000px;}
.y1d3{bottom:783.798000px;}
.y59{bottom:783.953850px;}
.y7f{bottom:786.776700px;}
.y4b7{bottom:789.116550px;}
.y2b6{bottom:789.228150px;}
.y2dc{bottom:789.440700px;}
.y51d{bottom:789.769650px;}
.y399{bottom:789.813000px;}
.y4d8{bottom:789.830550px;}
.y351{bottom:789.836550px;}
.y325{bottom:789.842400px;}
.y249{bottom:789.854250px;}
.y292{bottom:790.078650px;}
.y3d2{bottom:790.132350px;}
.y302{bottom:790.144200px;}
.y5d0{bottom:790.269900px;}
.y4f6{bottom:790.271700px;}
.y58d{bottom:790.271850px;}
.y172{bottom:790.273650px;}
.y659{bottom:790.277850px;}
.yda{bottom:790.291200px;}
.ybb{bottom:790.292400px;}
.y11e{bottom:790.372200px;}
.y1e4{bottom:790.378950px;}
.y473{bottom:790.392300px;}
.y142{bottom:790.457100px;}
.y559{bottom:790.522950px;}
.y535{bottom:790.581000px;}
.y196{bottom:790.581150px;}
.y637{bottom:790.583850px;}
.y5f4{bottom:790.774350px;}
.y425{bottom:791.330550px;}
.y615{bottom:791.332350px;}
.y214{bottom:791.354250px;}
.y690{bottom:791.613600px;}
.y44c{bottom:791.620650px;}
.y71d{bottom:793.411350px;}
.y6d0{bottom:795.371250px;}
.y6eb{bottom:800.112900px;}
.y728{bottom:802.486050px;}
.y1f{bottom:803.123100px;}
.y3a{bottom:806.453850px;}
.y707{bottom:809.568000px;}
.y58{bottom:810.953850px;}
.y56b{bottom:811.486050px;}
.y676{bottom:812.539950px;}
.y7e{bottom:813.776700px;}
.y50c{bottom:813.931500px;}
.y4b6{bottom:816.116550px;}
.y2b5{bottom:816.228150px;}
.y2db{bottom:816.440700px;}
.y3f8{bottom:816.612450px;}
.y51c{bottom:816.769650px;}
.y398{bottom:816.813000px;}
.y373{bottom:816.830550px;}
.y324{bottom:816.842400px;}
.y248{bottom:816.854250px;}
.y291{bottom:817.078650px;}
.y301{bottom:817.144200px;}
.y5cf{bottom:817.269900px;}
.y4f5{bottom:817.271700px;}
.y58c{bottom:817.271850px;}
.y27f{bottom:817.273650px;}
.y658{bottom:817.277850px;}
.yd9{bottom:817.291200px;}
.yba{bottom:817.292400px;}
.y11d{bottom:817.372200px;}
.y1e3{bottom:817.378950px;}
.y141{bottom:817.457100px;}
.y558{bottom:817.522950px;}
.y195{bottom:817.581150px;}
.y636{bottom:817.583850px;}
.y5f3{bottom:817.774350px;}
.y6a4{bottom:817.858650px;}
.y5af{bottom:817.917900px;}
.y49b{bottom:818.023500px;}
.y424{bottom:818.330550px;}
.y614{bottom:818.332350px;}
.y68f{bottom:818.607600px;}
.y44b{bottom:818.620650px;}
.y727{bottom:829.486050px;}
.y1e{bottom:830.123100px;}
.y71c{bottom:830.911350px;}
.y6cf{bottom:832.871250px;}
.y39{bottom:833.453850px;}
.y6ea{bottom:837.612900px;}
.y57{bottom:837.953850px;}
.y56a{bottom:838.486050px;}
.y7d{bottom:840.776700px;}
.y7c{bottom:840.782700px;}
.y22e{bottom:840.786000px;}
.y4b5{bottom:843.116550px;}
.y2b4{bottom:843.228150px;}
.y2da{bottom:843.440700px;}
.y3f7{bottom:843.612450px;}
.y51b{bottom:843.769650px;}
.y397{bottom:843.813000px;}
.y372{bottom:843.830550px;}
.y350{bottom:843.836550px;}
.y323{bottom:843.842400px;}
.y247{bottom:843.854250px;}
.y290{bottom:844.078650px;}
.y3d1{bottom:844.132350px;}
.y300{bottom:844.144200px;}
.y5ce{bottom:844.269900px;}
.y4f4{bottom:844.271700px;}
.y58b{bottom:844.271850px;}
.y171{bottom:844.273650px;}
.y657{bottom:844.277850px;}
.yd8{bottom:844.291200px;}
.yb9{bottom:844.292400px;}
.y11c{bottom:844.372200px;}
.y1e2{bottom:844.378950px;}
.y472{bottom:844.392300px;}
.y557{bottom:844.522950px;}
.y194{bottom:844.581150px;}
.y5f2{bottom:844.774350px;}
.y6a3{bottom:844.852650px;}
.y5ae{bottom:844.917900px;}
.y49a{bottom:845.023500px;}
.y423{bottom:845.330550px;}
.y613{bottom:845.332350px;}
.y213{bottom:845.354250px;}
.y44a{bottom:845.620650px;}
.y706{bottom:847.068000px;}
.y6b3{bottom:854.986050px;}
.y38{bottom:860.453850px;}
.y6e9{bottom:864.612900px;}
.y56{bottom:864.953850px;}
.y569{bottom:865.486050px;}
.y675{bottom:866.544450px;}
.y7b{bottom:867.776700px;}
.y71b{bottom:868.411350px;}
.y4b4{bottom:870.116550px;}
.y2b3{bottom:870.228150px;}
.y6ce{bottom:870.371250px;}
.y2d9{bottom:870.440700px;}
.y3f6{bottom:870.612450px;}
.y51a{bottom:870.769650px;}
.y396{bottom:870.813000px;}
.y371{bottom:870.830550px;}
.y34f{bottom:870.836550px;}
.y322{bottom:870.842400px;}
.y246{bottom:870.854250px;}
.y28f{bottom:871.078650px;}
.y2ff{bottom:871.144200px;}
.y5cd{bottom:871.269900px;}
.y4f3{bottom:871.271700px;}
.y58a{bottom:871.271850px;}
.y170{bottom:871.273650px;}
.y656{bottom:871.277850px;}
.yd7{bottom:871.291200px;}
.yb8{bottom:871.292400px;}
.y11b{bottom:871.372200px;}
.y471{bottom:871.392300px;}
.y140{bottom:871.457100px;}
.y556{bottom:871.522950px;}
.y193{bottom:871.581150px;}
.y635{bottom:871.583850px;}
.y5f1{bottom:871.774350px;}
.y5ad{bottom:871.917900px;}
.y499{bottom:872.023500px;}
.y422{bottom:872.330550px;}
.y612{bottom:872.332350px;}
.y212{bottom:872.354250px;}
.y68e{bottom:872.612100px;}
.y449{bottom:872.620650px;}
.y705{bottom:874.068000px;}
.y726{bottom:883.492050px;}
.y37{bottom:887.453850px;}
.y568{bottom:892.486050px;}
.y7a{bottom:894.776700px;}
.y4b3{bottom:897.116550px;}
.y2b2{bottom:897.228150px;}
.y2d8{bottom:897.440700px;}
.y3f5{bottom:897.612450px;}
.y519{bottom:897.769650px;}
.y395{bottom:897.813000px;}
.y370{bottom:897.830550px;}
.y34e{bottom:897.836550px;}
.y321{bottom:897.842400px;}
.y3b8{bottom:897.854250px;}
.y28e{bottom:898.078650px;}
.y3d0{bottom:898.132350px;}
.y2fe{bottom:898.144200px;}
.y5cc{bottom:898.269900px;}
.y4f2{bottom:898.271700px;}
.y589{bottom:898.271850px;}
.y16f{bottom:898.273650px;}
.y655{bottom:898.277850px;}
.yd6{bottom:898.291200px;}
.yb7{bottom:898.292400px;}
.y11a{bottom:898.372200px;}
.y1e1{bottom:898.378950px;}
.y470{bottom:898.392300px;}
.y555{bottom:898.522950px;}
.y192{bottom:898.581150px;}
.y634{bottom:898.583850px;}
.y5f0{bottom:898.774350px;}
.y6a2{bottom:898.857150px;}
.y5ac{bottom:898.917900px;}
.y498{bottom:899.023500px;}
.y421{bottom:899.330550px;}
.y611{bottom:899.332350px;}
.y211{bottom:899.354250px;}
.y68d{bottom:899.606100px;}
.y448{bottom:899.620650px;}
.y6e8{bottom:902.112900px;}
.y71a{bottom:905.911350px;}
.y6cd{bottom:907.865250px;}
.y725{bottom:910.486050px;}
.y704{bottom:911.568000px;}
.y96{bottom:913.390800px;}
.y36{bottom:914.453850px;}
.y567{bottom:919.486050px;}
.y674{bottom:920.548950px;}
.y79{bottom:921.776700px;}
.y4b2{bottom:924.116550px;}
.y2d7{bottom:924.440700px;}
.y3f4{bottom:924.612450px;}
.y518{bottom:924.769650px;}
.y394{bottom:924.813000px;}
.y36f{bottom:924.830550px;}
.y34d{bottom:924.836550px;}
.y320{bottom:924.842400px;}
.y245{bottom:924.854250px;}
.y28d{bottom:925.078650px;}
.y3cf{bottom:925.132350px;}
.y2fd{bottom:925.144200px;}
.y4f1{bottom:925.271700px;}
.y588{bottom:925.271850px;}
.y16e{bottom:925.273650px;}
.y654{bottom:925.277850px;}
.yd5{bottom:925.291200px;}
.yb6{bottom:925.292400px;}
.y1e0{bottom:925.378950px;}
.y46f{bottom:925.392300px;}
.y13f{bottom:925.457100px;}
.y554{bottom:925.522950px;}
.y191{bottom:925.581150px;}
.y633{bottom:925.583850px;}
.y5ef{bottom:925.774350px;}
.y5ab{bottom:925.917900px;}
.y497{bottom:926.023500px;}
.y420{bottom:926.330550px;}
.y610{bottom:926.332350px;}
.y210{bottom:926.354250px;}
.y447{bottom:926.620650px;}
.y6cc{bottom:928.871250px;}
.y6e7{bottom:929.112900px;}
.y3c7{bottom:936.809550px;}
.y703{bottom:938.568000px;}
.y719{bottom:943.411350px;}
.y566{bottom:946.486050px;}
.y78{bottom:948.776700px;}
.y2b1{bottom:951.228150px;}
.y2d6{bottom:951.440700px;}
.y3f3{bottom:951.612450px;}
.y517{bottom:951.769650px;}
.y393{bottom:951.813000px;}
.y36e{bottom:951.830550px;}
.y244{bottom:951.854250px;}
.y3ce{bottom:952.132350px;}
.y2fc{bottom:952.144200px;}
.y5cb{bottom:952.269900px;}
.y4f0{bottom:952.271700px;}
.y587{bottom:952.271850px;}
.y16d{bottom:952.273650px;}
.y653{bottom:952.277850px;}
.yd4{bottom:952.291200px;}
.yb5{bottom:952.292400px;}
.y119{bottom:952.372200px;}
.y1df{bottom:952.378950px;}
.y46e{bottom:952.392300px;}
.y553{bottom:952.522950px;}
.y190{bottom:952.581150px;}
.y632{bottom:952.583850px;}
.y6a1{bottom:952.861650px;}
.y5aa{bottom:952.917900px;}
.y496{bottom:953.023500px;}
.y41f{bottom:953.330550px;}
.y60f{bottom:953.332350px;}
.y20f{bottom:953.354250px;}
.y68c{bottom:953.610600px;}
.y446{bottom:953.620650px;}
.y724{bottom:964.486050px;}
.y6cb{bottom:966.371250px;}
.y6e6{bottom:966.612900px;}
.y55{bottom:972.953850px;}
.y77{bottom:975.776700px;}
.y702{bottom:976.068000px;}
.y2b0{bottom:978.228150px;}
.y2d5{bottom:978.440700px;}
.y3f2{bottom:978.612450px;}
.y516{bottom:978.769650px;}
.y392{bottom:978.813000px;}
.y4d7{bottom:978.830550px;}
.y34c{bottom:978.836550px;}
.y31f{bottom:978.842400px;}
.y243{bottom:978.854250px;}
.y28c{bottom:979.078650px;}
.y3cd{bottom:979.132350px;}
.y2fb{bottom:979.144200px;}
.y5ca{bottom:979.269900px;}
.y4ef{bottom:979.271700px;}
.y16c{bottom:979.273650px;}
.y652{bottom:979.277850px;}
.yd3{bottom:979.291200px;}
.yb4{bottom:979.292400px;}
.y118{bottom:979.372200px;}
.y1de{bottom:979.378950px;}
.y46d{bottom:979.392300px;}
.y552{bottom:979.522950px;}
.y1cb{bottom:979.581150px;}
.y5ee{bottom:979.774350px;}
.y5a9{bottom:979.917900px;}
.y495{bottom:980.023500px;}
.y41e{bottom:980.330550px;}
.y60e{bottom:980.332350px;}
.y20e{bottom:980.354250px;}
.y68b{bottom:980.604600px;}
.y445{bottom:980.620650px;}
.y718{bottom:980.911350px;}
.y1d{bottom:992.123100px;}
.y6b2{bottom:1000.486050px;}
.y701{bottom:1003.068000px;}
.y6ca{bottom:1003.871250px;}
.y6e5{bottom:1004.112900px;}
.y4b1{bottom:1005.116550px;}
.y2af{bottom:1005.228150px;}
.y2d4{bottom:1005.440700px;}
.y3f1{bottom:1005.612450px;}
.y515{bottom:1005.769650px;}
.y391{bottom:1005.813000px;}
.y36d{bottom:1005.830550px;}
.y34b{bottom:1005.836550px;}
.y31e{bottom:1005.842400px;}
.y242{bottom:1005.854250px;}
.y28b{bottom:1006.078650px;}
.y2fa{bottom:1006.144200px;}
.y5c9{bottom:1006.269900px;}
.y4ee{bottom:1006.271700px;}
.y586{bottom:1006.271850px;}
.y16b{bottom:1006.273650px;}
.yd2{bottom:1006.291200px;}
.yb3{bottom:1006.292400px;}
.y117{bottom:1006.372200px;}
.y1dd{bottom:1006.378950px;}
.y46c{bottom:1006.392300px;}
.y551{bottom:1006.522950px;}
.y18f{bottom:1006.581150px;}
.y631{bottom:1006.583850px;}
.y5ed{bottom:1006.774350px;}
.y6a0{bottom:1006.866150px;}
.y5a8{bottom:1006.917900px;}
.y494{bottom:1007.023500px;}
.y60d{bottom:1007.332350px;}
.y20d{bottom:1007.354250px;}
.y68a{bottom:1007.598600px;}
.y444{bottom:1007.620650px;}
.y717{bottom:1018.411350px;}
.y76{bottom:1020.782700px;}
.y35{bottom:1022.453850px;}
.y565{bottom:1027.486050px;}
.y4b0{bottom:1032.116550px;}
.y2ae{bottom:1032.228150px;}
.y2d3{bottom:1032.440700px;}
.y3f0{bottom:1032.612450px;}
.y514{bottom:1032.769650px;}
.y390{bottom:1032.813000px;}
.y36c{bottom:1032.830550px;}
.y34a{bottom:1032.836550px;}
.y31d{bottom:1032.842400px;}
.y241{bottom:1032.854250px;}
.y28a{bottom:1033.078650px;}
.y3cc{bottom:1033.132350px;}
.y2f9{bottom:1033.144200px;}
.y5c8{bottom:1033.269900px;}
.y4ed{bottom:1033.271700px;}
.y585{bottom:1033.271850px;}
.y16a{bottom:1033.273650px;}
.y651{bottom:1033.277850px;}
.yd1{bottom:1033.291200px;}
.yb2{bottom:1033.292400px;}
.y1dc{bottom:1033.378950px;}
.y46b{bottom:1033.392300px;}
.y550{bottom:1033.522950px;}
.y18e{bottom:1033.581150px;}
.y630{bottom:1033.583850px;}
.y5ec{bottom:1033.774350px;}
.y5a7{bottom:1033.917900px;}
.y493{bottom:1034.023500px;}
.y41d{bottom:1034.330550px;}
.y60c{bottom:1034.332350px;}
.y20c{bottom:1034.354250px;}
.y443{bottom:1034.620650px;}
.y723{bottom:1036.486050px;}
.y700{bottom:1040.568000px;}
.y6c9{bottom:1041.371250px;}
.y6e4{bottom:1041.612900px;}
.y716{bottom:1045.411350px;}
.y75{bottom:1047.776700px;}
.y9{bottom:1049.758950px;}
.y673{bottom:1055.548950px;}
.y2ad{bottom:1059.228150px;}
.y2d2{bottom:1059.440700px;}
.y3ef{bottom:1059.612450px;}
.y513{bottom:1059.769650px;}
.y38f{bottom:1059.813000px;}
.y36b{bottom:1059.830550px;}
.y349{bottom:1059.836550px;}
.y31c{bottom:1059.842400px;}
.y240{bottom:1059.854250px;}
.y289{bottom:1060.078650px;}
.y3cb{bottom:1060.132350px;}
.y2f8{bottom:1060.144200px;}
.y5c7{bottom:1060.269900px;}
.y584{bottom:1060.271850px;}
.y169{bottom:1060.273650px;}
.y650{bottom:1060.277850px;}
.yd0{bottom:1060.291200px;}
.yb1{bottom:1060.292400px;}
.y1db{bottom:1060.378950px;}
.y46a{bottom:1060.392300px;}
.y54f{bottom:1060.522950px;}
.y203{bottom:1060.581150px;}
.y62f{bottom:1060.583850px;}
.y5eb{bottom:1060.774350px;}
.y69f{bottom:1060.870650px;}
.y492{bottom:1061.023500px;}
.y41c{bottom:1061.330550px;}
.y60b{bottom:1061.332350px;}
.y20b{bottom:1061.354250px;}
.y689{bottom:1061.603100px;}
.y442{bottom:1061.620650px;}
.y72c{bottom:1074.130950px;}
.y74{bottom:1074.776700px;}
.y730{bottom:1075.194000px;}
.y6ff{bottom:1078.068000px;}
.y6c8{bottom:1078.871250px;}
.y6e3{bottom:1079.112900px;}
.y564{bottom:1081.486050px;}
.y4af{bottom:1086.109050px;}
.y2ac{bottom:1086.228150px;}
.y2d1{bottom:1086.440700px;}
.y512{bottom:1086.769650px;}
.y38e{bottom:1086.813000px;}
.y36a{bottom:1086.830550px;}
.y348{bottom:1086.836550px;}
.y31b{bottom:1086.842400px;}
.y23f{bottom:1086.854250px;}
.y288{bottom:1087.078650px;}
.y5c6{bottom:1087.269900px;}
.y4ec{bottom:1087.271700px;}
.y583{bottom:1087.271850px;}
.y27e{bottom:1087.273650px;}
.y64f{bottom:1087.277850px;}
.ycf{bottom:1087.291200px;}
.y1da{bottom:1087.378950px;}
.y469{bottom:1087.392300px;}
.y54e{bottom:1087.522950px;}
.y1ca{bottom:1087.581150px;}
.y62e{bottom:1087.583850px;}
.y5ea{bottom:1087.774350px;}
.y5a6{bottom:1087.917900px;}
.y491{bottom:1088.023500px;}
.y8{bottom:1088.287350px;}
.y41b{bottom:1088.330550px;}
.y60a{bottom:1088.332350px;}
.y688{bottom:1088.597100px;}
.y441{bottom:1088.620650px;}
.y7{bottom:1108.083750px;}
.y2{bottom:1108.440600px;}
.y722{bottom:1108.486050px;}
.y732{bottom:1109.331600px;}
.y672{bottom:1109.548950px;}
.y72b{bottom:1110.130950px;}
.y72f{bottom:1111.194000px;}
.y4ae{bottom:1113.116550px;}
.y2d0{bottom:1113.440700px;}
.y3ee{bottom:1113.612450px;}
.y38d{bottom:1113.813000px;}
.y369{bottom:1113.830550px;}
.y347{bottom:1113.836550px;}
.y31a{bottom:1113.842400px;}
.y23e{bottom:1113.854250px;}
.y287{bottom:1114.078650px;}
.y2f7{bottom:1114.144200px;}
.y5c5{bottom:1114.269900px;}
.y582{bottom:1114.271850px;}
.y27d{bottom:1114.273650px;}
.y64e{bottom:1114.277850px;}
.y107{bottom:1114.291200px;}
.y1d9{bottom:1114.378950px;}
.y468{bottom:1114.392300px;}
.y54d{bottom:1114.522950px;}
.y202{bottom:1114.581150px;}
.y62d{bottom:1114.583850px;}
.y5e9{bottom:1114.774350px;}
.y5a5{bottom:1114.917900px;}
.y490{bottom:1115.023500px;}
.y41a{bottom:1115.330550px;}
.y609{bottom:1115.332350px;}
.y20a{bottom:1115.354250px;}
.y6fe{bottom:1115.568000px;}
.y6c7{bottom:1116.371250px;}
.y6e2{bottom:1116.612900px;}
.y73{bottom:1127.276700px;}
.y73b{bottom:1139.760450px;}
.y6{bottom:1140.127350px;}
.y14{bottom:1140.651450px;}
.y5{bottom:1160.280150px;}
.y52f{bottom:1183.275000px;}
.y4e6{bottom:1185.319500px;}
.y209{bottom:1185.543000px;}
.y235{bottom:1185.628500px;}
.y1fe{bottom:1185.714000px;}
.y15c{bottom:1185.969000px;}
.y167{bottom:1186.138500px;}
.y1b3{bottom:1186.180500px;}
.y136{bottom:1186.308000px;}
.y10f{bottom:1186.648500px;}
.yfd{bottom:1186.819500px;}
.y532{bottom:1188.697500px;}
.y4eb{bottom:1190.740500px;}
.y22d{bottom:1190.964000px;}
.y23c{bottom:1191.049500px;}
.y200{bottom:1191.135000px;}
.y162{bottom:1191.390000px;}
.y18c{bottom:1191.559500px;}
.y1b8{bottom:1191.603000px;}
.y13d{bottom:1191.730500px;}
.y115{bottom:1192.069500px;}
.yf7{bottom:1192.240500px;}
.y73c{bottom:1241.999100px;}
.y15{bottom:1242.890100px;}
.h9{height:1.932188px;}
.h2e{height:12.310650px;}
.h2c{height:14.922000px;}
.h23{height:20.692500px;}
.h29{height:20.694000px;}
.h25{height:26.113500px;}
.h27{height:26.115000px;}
.h34{height:33.574500px;}
.h2a{height:38.934000px;}
.h22{height:42.117188px;}
.hd{height:44.169120px;}
.h7{height:44.328960px;}
.h1f{height:44.766000px;}
.h28{height:47.381836px;}
.h2b{height:47.513672px;}
.h26{height:47.961914px;}
.h3{height:48.944160px;}
.h2d{height:49.289062px;}
.h10{height:49.740000px;}
.h21{height:50.400000px;}
.h2f{height:52.646484px;}
.h32{height:52.792969px;}
.h39{height:53.291016px;}
.h30{height:53.396484px;}
.he{height:53.682240px;}
.h8{height:53.719200px;}
.h5{height:53.913600px;}
.h18{height:57.911133px;}
.h1d{height:58.072266px;}
.h38{height:58.620117px;}
.h20{height:59.688000px;}
.hc{height:59.904000px;}
.h1c{height:63.127781px;}
.h3b{height:63.151781px;}
.h12{height:63.175781px;}
.h13{height:63.351562px;}
.h33{height:63.562500px;}
.h1e{height:63.949219px;}
.h6{height:66.506400px;}
.h3c{height:66.507000px;}
.h4{height:66.528000px;}
.h31{height:69.278320px;}
.h24{height:71.942871px;}
.h19{height:74.607422px;}
.h35{height:74.608622px;}
.h3a{height:78.969727px;}
.h16{height:79.936523px;}
.h1a{height:84.234375px;}
.h17{height:85.265625px;}
.h15{height:89.528906px;}
.h36{height:95.923828px;}
.h14{height:106.582031px;}
.hf{height:119.808000px;}
.hb{height:126.000000px;}
.h11{height:127.898438px;}
.h37{height:138.556641px;}
.h1b{height:157.939453px;}
.ha{height:361.440000px;}
.h2{height:1261.944000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wd{width:-250.807500px;}
.w7{width:260.241750px;}
.w9{width:260.242200px;}
.w5{width:260.242500px;}
.wa{width:260.242650px;}
.w6{width:260.242800px;}
.w8{width:321.121500px;}
.w4{width:321.123000px;}
.wb{width:446.982000px;}
.wc{width:478.870500px;}
.w3{width:646.200000px;}
.w2{width:892.912500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x1{left:-376.448550px;}
.x8{left:-86.076300px;}
.x9{left:-83.565300px;}
.x4{left:-81.604500px;}
.x7{left:-73.893900px;}
.x3{left:-61.808100px;}
.x6{left:-51.871800px;}
.x2{left:-39.488400px;}
.xa{left:-37.888800px;}
.x5{left:-35.887800px;}
.x0{left:0.000000px;}
.x23{left:3.619500px;}
.xc{left:5.397450px;}
.xf{left:7.673700px;}
.x5a{left:25.759500px;}
.x57{left:28.621350px;}
.xe{left:36.472500px;}
.x21{left:46.938150px;}
.x35{left:57.198150px;}
.x5b{left:106.500000px;}
.x22{left:111.130500px;}
.x1d{left:113.740200px;}
.x14{left:114.803100px;}
.x24{left:116.097150px;}
.x3b{left:120.224400px;}
.xb{left:122.154000px;}
.xd{left:127.551450px;}
.x18{left:145.086600px;}
.x5c{left:152.964600px;}
.x47{left:155.998500px;}
.x10{left:157.322850px;}
.x36{left:159.389700px;}
.x55{left:163.505850px;}
.x1e{left:165.832200px;}
.x2d{left:168.377850px;}
.x38{left:178.505850px;}
.x54{left:184.877850px;}
.x1f{left:198.377850px;}
.x3a{left:200.492100px;}
.x39{left:207.118050px;}
.x1b{left:208.346400px;}
.x2c{left:216.850350px;}
.x32{left:223.410600px;}
.x1a{left:227.961600px;}
.x58{left:233.714850px;}
.x2e{left:235.871100px;}
.x4a{left:242.574750px;}
.x42{left:244.500000px;}
.x4f{left:249.637800px;}
.x2b{left:259.356600px;}
.x43{left:265.439400px;}
.x44{left:288.906900px;}
.x19{left:294.336600px;}
.x11{left:303.077850px;}
.x56{left:315.697500px;}
.x60{left:327.696750px;}
.x61{left:328.946100px;}
.x5f{left:335.196750px;}
.x13{left:340.833150px;}
.x34{left:347.586000px;}
.x5e{left:351.184050px;}
.x50{left:367.687800px;}
.x16{left:370.017300px;}
.x15{left:388.711650px;}
.x12{left:390.377850px;}
.x62{left:397.284900px;}
.x37{left:406.352400px;}
.x17{left:423.578850px;}
.x28{left:427.481850px;}
.x26{left:429.168600px;}
.x29{left:430.829850px;}
.x25{left:435.189000px;}
.x2a{left:437.053050px;}
.x27{left:438.383100px;}
.x3d{left:445.505850px;}
.x41{left:446.669250px;}
.x3e{left:460.690500px;}
.x20{left:472.594500px;}
.x33{left:487.322100px;}
.x59{left:492.005850px;}
.x30{left:517.500900px;}
.x3c{left:519.224400px;}
.x2f{left:527.387400px;}
.x5d{left:570.685050px;}
.x48{left:593.270700px;}
.x4b{left:594.770700px;}
.x4d{left:596.270700px;}
.x45{left:599.270700px;}
.x52{left:603.431100px;}
.x49{left:616.738200px;}
.x4c{left:618.238200px;}
.x4e{left:619.738200px;}
.x46{left:622.738200px;}
.x53{left:626.898600px;}
.x3f{left:638.187000px;}
.x6d{left:645.117900px;}
.x40{left:654.280687px;}
.x6c{left:738.908250px;}
.x6a{left:744.812100px;}
.x6b{left:747.512250px;}
.x68{left:748.916250px;}
.x51{left:751.259400px;}
.x69{left:753.146100px;}
.x67{left:754.820100px;}
.x31{left:757.810200px;}
.x1c{left:759.642750px;}
.x66{left:763.423950px;}
.x64{left:765.098100px;}
.x65{left:767.959950px;}
.x63{left:774.658650px;}
.x74{left:935.490150px;}
.x75{left:938.001150px;}
.x70{left:939.961800px;}
.x73{left:947.672550px;}
.x6f{left:959.758200px;}
.x72{left:969.694650px;}
.x6e{left:982.078050px;}
.x76{left:983.677650px;}
.x71{left:985.678650px;}
.x7a{left:1029.240150px;}
.x79{left:1058.038950px;}
.x77{left:1143.720000px;}
.x78{left:1149.117900px;}
@media print{
.v3{vertical-align:-21.312000pt;}
.v1{vertical-align:-2.036480pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.760000pt;}
.v2{vertical-align:21.312000pt;}
.ls34{letter-spacing:-4.416000pt;}
.ls21{letter-spacing:-2.761088pt;}
.ls4b{letter-spacing:-0.960000pt;}
.ls29{letter-spacing:-0.448000pt;}
.ls28{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000533pt;}
.ls3b{letter-spacing:0.001067pt;}
.lsf{letter-spacing:0.006933pt;}
.ls23{letter-spacing:0.008533pt;}
.ls3c{letter-spacing:0.009600pt;}
.ls1d{letter-spacing:0.010133pt;}
.lsc{letter-spacing:0.010667pt;}
.ls15{letter-spacing:0.011200pt;}
.ls18{letter-spacing:0.011733pt;}
.ls13{letter-spacing:0.012267pt;}
.ls11{letter-spacing:0.012800pt;}
.ls42{letter-spacing:0.017600pt;}
.ls41{letter-spacing:0.018133pt;}
.lsb{letter-spacing:0.021867pt;}
.ls1f{letter-spacing:0.023467pt;}
.ls1a{letter-spacing:0.025067pt;}
.ls27{letter-spacing:0.026133pt;}
.ls49{letter-spacing:0.026667pt;}
.ls1b{letter-spacing:0.028267pt;}
.ls2e{letter-spacing:0.035733pt;}
.ls3d{letter-spacing:0.050667pt;}
.ls3f{letter-spacing:0.096000pt;}
.ls40{letter-spacing:0.106667pt;}
.ls20{letter-spacing:0.115733pt;}
.ls37{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.142080pt;}
.ls3e{letter-spacing:0.181867pt;}
.ls26{letter-spacing:0.278933pt;}
.ls2{letter-spacing:0.284160pt;}
.ls3{letter-spacing:0.331520pt;}
.ls4{letter-spacing:0.378880pt;}
.ls8{letter-spacing:0.419840pt;}
.lsa{letter-spacing:0.426240pt;}
.ls0{letter-spacing:0.506880pt;}
.ls1{letter-spacing:0.518400pt;}
.ls6{letter-spacing:0.524800pt;}
.ls30{letter-spacing:0.528000pt;}
.ls4a{letter-spacing:0.576000pt;}
.ls2f{letter-spacing:0.624000pt;}
.ls9{letter-spacing:0.691200pt;}
.ls44{letter-spacing:0.816000pt;}
.ls47{letter-spacing:0.906667pt;}
.ls43{letter-spacing:0.960533pt;}
.ls33{letter-spacing:1.024000pt;}
.ls46{letter-spacing:1.296000pt;}
.ls48{letter-spacing:1.440000pt;}
.ls45{letter-spacing:1.487467pt;}
.ls2c{letter-spacing:1.920000pt;}
.ls32{letter-spacing:2.048000pt;}
.ls25{letter-spacing:2.176000pt;}
.ls24{letter-spacing:2.248533pt;}
.ls1c{letter-spacing:3.136000pt;}
.ls38{letter-spacing:3.456000pt;}
.ls3a{letter-spacing:3.813333pt;}
.ls2a{letter-spacing:3.968000pt;}
.ls2b{letter-spacing:4.032000pt;}
.ls22{letter-spacing:4.224000pt;}
.ls1e{letter-spacing:4.352000pt;}
.ls10{letter-spacing:5.090133pt;}
.ls35{letter-spacing:5.632000pt;}
.ls31{letter-spacing:5.824000pt;}
.lse{letter-spacing:6.323733pt;}
.lsd{letter-spacing:6.324267pt;}
.ls36{letter-spacing:6.656000pt;}
.ls2d{letter-spacing:20.921600pt;}
.ls16{letter-spacing:152.000000pt;}
.ls12{letter-spacing:170.666667pt;}
.ls17{letter-spacing:173.333333pt;}
.ls19{letter-spacing:176.000000pt;}
.ls39{letter-spacing:176.021333pt;}
.ws1d{word-spacing:-26.666667pt;}
.ws150{word-spacing:-24.000000pt;}
.ws10{word-spacing:-22.400000pt;}
.ws1e{word-spacing:-18.666667pt;}
.ws11{word-spacing:-16.000000pt;}
.ws3b{word-spacing:-14.666667pt;}
.ws175{word-spacing:-13.568000pt;}
.ws6d{word-spacing:-13.333333pt;}
.ws42{word-spacing:-13.317333pt;}
.ws16e{word-spacing:-13.296000pt;}
.ws3a{word-spacing:-13.066667pt;}
.ws16d{word-spacing:-12.816000pt;}
.ws176{word-spacing:-12.608000pt;}
.ws41{word-spacing:-12.202667pt;}
.wse8{word-spacing:-12.160000pt;}
.ws4a{word-spacing:-12.144000pt;}
.ws169{word-spacing:-12.096000pt;}
.ws112{word-spacing:-12.000000pt;}
.ws1f{word-spacing:-11.200000pt;}
.ws44{word-spacing:-10.853333pt;}
.ws83{word-spacing:-10.666667pt;}
.ws2{word-spacing:-10.540800pt;}
.ws5c{word-spacing:-10.176000pt;}
.ws4{word-spacing:-10.040320pt;}
.ws4b{word-spacing:-9.328000pt;}
.ws46{word-spacing:-9.269333pt;}
.ws5d{word-spacing:-8.736000pt;}
.ws3{word-spacing:-8.666880pt;}
.ws174{word-spacing:-7.773333pt;}
.ws12e{word-spacing:-7.584000pt;}
.ws48{word-spacing:-7.098667pt;}
.ws60{word-spacing:-6.592000pt;}
.ws99{word-spacing:-6.566912pt;}
.wsf4{word-spacing:-6.272000pt;}
.wsed{word-spacing:-5.504000pt;}
.ws84{word-spacing:-5.440000pt;}
.ws156{word-spacing:-4.864000pt;}
.ws173{word-spacing:-4.693333pt;}
.wsfa{word-spacing:-3.776000pt;}
.ws152{word-spacing:-3.584000pt;}
.ws10d{word-spacing:-3.520000pt;}
.ws11f{word-spacing:-3.392000pt;}
.ws15f{word-spacing:-3.226667pt;}
.wsef{word-spacing:-3.200000pt;}
.ws71{word-spacing:-3.136000pt;}
.ws5f{word-spacing:-3.072000pt;}
.wsaf{word-spacing:-3.008000pt;}
.ws9e{word-spacing:-2.944000pt;}
.wsd9{word-spacing:-2.880000pt;}
.wscd{word-spacing:-2.816000pt;}
.ws89{word-spacing:-2.752000pt;}
.ws53{word-spacing:-2.688000pt;}
.ws140{word-spacing:-2.640000pt;}
.ws24{word-spacing:-2.624000pt;}
.wscc{word-spacing:-2.560000pt;}
.ws47{word-spacing:-2.522667pt;}
.wsb0{word-spacing:-2.496000pt;}
.ws49{word-spacing:-2.464000pt;}
.ws12{word-spacing:-2.432000pt;}
.ws3e{word-spacing:-2.368000pt;}
.ws14a{word-spacing:-2.304000pt;}
.ws85{word-spacing:-2.240000pt;}
.ws40{word-spacing:-2.229333pt;}
.ws3f{word-spacing:-2.176000pt;}
.ws28{word-spacing:-2.112000pt;}
.wsa7{word-spacing:-2.064000pt;}
.ws136{word-spacing:-2.048000pt;}
.ws66{word-spacing:-1.984000pt;}
.ws91{word-spacing:-1.920000pt;}
.ws132{word-spacing:-1.872000pt;}
.wsd0{word-spacing:-1.856000pt;}
.ws10f{word-spacing:-1.792000pt;}
.ws56{word-spacing:-1.728000pt;}
.wsb7{word-spacing:-1.680000pt;}
.wsca{word-spacing:-1.664000pt;}
.wsa1{word-spacing:-1.600000pt;}
.ws3c{word-spacing:-1.584000pt;}
.wsae{word-spacing:-1.536000pt;}
.ws100{word-spacing:-1.488000pt;}
.ws38{word-spacing:-1.472000pt;}
.ws16a{word-spacing:-1.440000pt;}
.ws14e{word-spacing:-1.408000pt;}
.wsce{word-spacing:-1.344000pt;}
.wsb6{word-spacing:-1.296000pt;}
.ws39{word-spacing:-1.280000pt;}
.ws27{word-spacing:-1.216000pt;}
.ws81{word-spacing:-1.152000pt;}
.wsb5{word-spacing:-1.104000pt;}
.wsd5{word-spacing:-1.088000pt;}
.wsa6{word-spacing:-1.056000pt;}
.ws10a{word-spacing:-1.024000pt;}
.wscb{word-spacing:-0.960000pt;}
.ws79{word-spacing:-0.912000pt;}
.ws16f{word-spacing:-0.906667pt;}
.ws67{word-spacing:-0.896000pt;}
.ws159{word-spacing:-0.880000pt;}
.wsa8{word-spacing:-0.864000pt;}
.ws110{word-spacing:-0.832000pt;}
.ws31{word-spacing:-0.768000pt;}
.ws167{word-spacing:-0.762667pt;}
.ws12c{word-spacing:-0.720000pt;}
.ws80{word-spacing:-0.704000pt;}
.ws7c{word-spacing:-0.672000pt;}
.ws172{word-spacing:-0.645333pt;}
.wsbc{word-spacing:-0.640000pt;}
.ws122{word-spacing:-0.624000pt;}
.ws23{word-spacing:-0.576000pt;}
.ws72{word-spacing:-0.528000pt;}
.ws5{word-spacing:-0.524800pt;}
.ws8{word-spacing:-0.518400pt;}
.ws9f{word-spacing:-0.512000pt;}
.ws55{word-spacing:-0.480000pt;}
.ws43{word-spacing:-0.469333pt;}
.wsd4{word-spacing:-0.448000pt;}
.wsc{word-spacing:-0.426240pt;}
.ws7{word-spacing:-0.419840pt;}
.ws65{word-spacing:-0.384000pt;}
.wsb{word-spacing:-0.378880pt;}
.wse{word-spacing:-0.373333pt;}
.ws160{word-spacing:-0.352000pt;}
.ws133{word-spacing:-0.336000pt;}
.ws9{word-spacing:-0.331520pt;}
.ws4c{word-spacing:-0.320000pt;}
.ws45{word-spacing:-0.293333pt;}
.ws131{word-spacing:-0.288000pt;}
.wsa{word-spacing:-0.284160pt;}
.wscf{word-spacing:-0.256000pt;}
.ws15d{word-spacing:-0.234667pt;}
.ws15c{word-spacing:-0.213333pt;}
.ws37{word-spacing:-0.192000pt;}
.ws59{word-spacing:-0.128000pt;}
.ws16b{word-spacing:-0.106667pt;}
.ws134{word-spacing:-0.064000pt;}
.ws6{word-spacing:0.000000pt;}
.wsc3{word-spacing:0.064000pt;}
.ws15e{word-spacing:0.117333pt;}
.ws64{word-spacing:0.128000pt;}
.ws58{word-spacing:0.192000pt;}
.ws97{word-spacing:0.240000pt;}
.wsba{word-spacing:0.256000pt;}
.ws98{word-spacing:0.288000pt;}
.ws103{word-spacing:0.320000pt;}
.ws32{word-spacing:0.384000pt;}
.ws104{word-spacing:0.432000pt;}
.wsb1{word-spacing:0.448000pt;}
.ws26{word-spacing:0.512000pt;}
.ws143{word-spacing:0.528000pt;}
.wsa3{word-spacing:0.576000pt;}
.wsf{word-spacing:0.586667pt;}
.wseb{word-spacing:0.640000pt;}
.ws2c{word-spacing:0.704000pt;}
.ws2e{word-spacing:0.768000pt;}
.ws137{word-spacing:0.800000pt;}
.ws4e{word-spacing:0.832000pt;}
.ws16c{word-spacing:0.864000pt;}
.ws21{word-spacing:0.896000pt;}
.ws74{word-spacing:0.960000pt;}
.ws166{word-spacing:0.997333pt;}
.ws9c{word-spacing:1.024000pt;}
.wsd3{word-spacing:1.056000pt;}
.wsee{word-spacing:1.088000pt;}
.wsa4{word-spacing:1.104000pt;}
.ws171{word-spacing:1.114667pt;}
.ws2a{word-spacing:1.152000pt;}
.ws15b{word-spacing:1.173333pt;}
.ws96{word-spacing:1.200000pt;}
.ws126{word-spacing:1.216000pt;}
.ws145{word-spacing:1.248000pt;}
.ws75{word-spacing:1.280000pt;}
.wsbd{word-spacing:1.344000pt;}
.ws95{word-spacing:1.392000pt;}
.ws4f{word-spacing:1.408000pt;}
.wsd{word-spacing:1.440000pt;}
.ws70{word-spacing:1.472000pt;}
.ws170{word-spacing:1.520000pt;}
.ws68{word-spacing:1.536000pt;}
.ws5e{word-spacing:1.600000pt;}
.ws7b{word-spacing:1.632000pt;}
.wsc8{word-spacing:1.664000pt;}
.ws128{word-spacing:1.706667pt;}
.ws6f{word-spacing:1.728000pt;}
.ws8a{word-spacing:1.792000pt;}
.wsbb{word-spacing:1.813333pt;}
.wsfe{word-spacing:1.824000pt;}
.ws11e{word-spacing:1.856000pt;}
.ws7a{word-spacing:1.920000pt;}
.ws30{word-spacing:1.984000pt;}
.wsa5{word-spacing:2.016000pt;}
.ws129{word-spacing:2.048000pt;}
.ws92{word-spacing:2.112000pt;}
.ws61{word-spacing:2.176000pt;}
.ws12d{word-spacing:2.208000pt;}
.ws124{word-spacing:2.240000pt;}
.wsc7{word-spacing:2.304000pt;}
.ws138{word-spacing:2.352000pt;}
.ws2b{word-spacing:2.368000pt;}
.ws105{word-spacing:2.400000pt;}
.ws13{word-spacing:2.432000pt;}
.ws2d{word-spacing:2.496000pt;}
.ws15a{word-spacing:2.522667pt;}
.wsac{word-spacing:2.560000pt;}
.ws6a{word-spacing:2.624000pt;}
.ws13f{word-spacing:2.640000pt;}
.ws8c{word-spacing:2.688000pt;}
.ws6b{word-spacing:2.752000pt;}
.ws164{word-spacing:2.757333pt;}
.ws25{word-spacing:2.816000pt;}
.ws139{word-spacing:2.832000pt;}
.ws161{word-spacing:2.874667pt;}
.ws6e{word-spacing:2.880000pt;}
.ws1c{word-spacing:2.944000pt;}
.ws73{word-spacing:2.976000pt;}
.ws69{word-spacing:3.008000pt;}
.wsa0{word-spacing:3.072000pt;}
.wsb2{word-spacing:3.136000pt;}
.ws76{word-spacing:3.200000pt;}
.ws14{word-spacing:3.264000pt;}
.ws13a{word-spacing:3.312000pt;}
.ws36{word-spacing:3.328000pt;}
.ws78{word-spacing:3.392000pt;}
.ws121{word-spacing:3.456000pt;}
.wsc2{word-spacing:3.504000pt;}
.ws5b{word-spacing:3.520000pt;}
.wsaa{word-spacing:3.584000pt;}
.wsb8{word-spacing:3.600000pt;}
.ws8d{word-spacing:3.648000pt;}
.wsb4{word-spacing:3.696000pt;}
.ws88{word-spacing:3.712000pt;}
.ws142{word-spacing:3.744000pt;}
.ws4d{word-spacing:3.776000pt;}
.ws163{word-spacing:3.813333pt;}
.ws93{word-spacing:3.840000pt;}
.ws165{word-spacing:3.872000pt;}
.ws125{word-spacing:3.888000pt;}
.ws7e{word-spacing:3.904000pt;}
.wsfb{word-spacing:3.968000pt;}
.ws35{word-spacing:4.032000pt;}
.ws10b{word-spacing:4.096000pt;}
.ws135{word-spacing:4.160000pt;}
.wsff{word-spacing:4.176000pt;}
.wsb9{word-spacing:4.224000pt;}
.ws22{word-spacing:4.288000pt;}
.wsb3{word-spacing:4.320000pt;}
.ws34{word-spacing:4.352000pt;}
.ws106{word-spacing:4.416000pt;}
.wsc6{word-spacing:4.480000pt;}
.wsbe{word-spacing:4.544000pt;}
.ws8e{word-spacing:4.608000pt;}
.ws16{word-spacing:4.672000pt;}
.ws13c{word-spacing:4.693333pt;}
.ws153{word-spacing:4.736000pt;}
.ws148{word-spacing:4.752000pt;}
.ws19{word-spacing:4.800000pt;}
.ws168{word-spacing:4.810667pt;}
.ws157{word-spacing:4.864000pt;}
.ws162{word-spacing:4.869333pt;}
.ws29{word-spacing:4.928000pt;}
.wsf9{word-spacing:4.992000pt;}
.ws14b{word-spacing:5.056000pt;}
.ws123{word-spacing:5.120000pt;}
.ws17{word-spacing:5.184000pt;}
.wsd1{word-spacing:5.248000pt;}
.wsab{word-spacing:5.312000pt;}
.ws13e{word-spacing:5.424000pt;}
.ws94{word-spacing:5.440000pt;}
.ws1b{word-spacing:5.504000pt;}
.ws107{word-spacing:5.568000pt;}
.ws87{word-spacing:5.632000pt;}
.ws8b{word-spacing:5.696000pt;}
.ws77{word-spacing:5.760000pt;}
.ws127{word-spacing:5.824000pt;}
.wsa2{word-spacing:5.888000pt;}
.ws6c{word-spacing:5.952000pt;}
.ws2f{word-spacing:6.016000pt;}
.ws63{word-spacing:6.080000pt;}
.ws52{word-spacing:6.144000pt;}
.wsfd{word-spacing:6.208000pt;}
.ws10c{word-spacing:6.272000pt;}
.ws50{word-spacing:6.336000pt;}
.ws109{word-spacing:6.400000pt;}
.ws108{word-spacing:6.464000pt;}
.wsf6{word-spacing:6.528000pt;}
.ws86{word-spacing:6.592000pt;}
.ws10e{word-spacing:6.656000pt;}
.ws54{word-spacing:6.784000pt;}
.ws130{word-spacing:6.848000pt;}
.ws82{word-spacing:6.912000pt;}
.ws155{word-spacing:6.976000pt;}
.ws15{word-spacing:7.104000pt;}
.ws11a{word-spacing:7.168000pt;}
.wsfc{word-spacing:7.232000pt;}
.ws33{word-spacing:7.296000pt;}
.ws158{word-spacing:7.360000pt;}
.ws9d{word-spacing:7.424000pt;}
.ws7d{word-spacing:7.552000pt;}
.wsa9{word-spacing:7.616000pt;}
.ws7f{word-spacing:7.680000pt;}
.ws9b{word-spacing:7.744000pt;}
.wse4{word-spacing:7.808000pt;}
.ws90{word-spacing:7.872000pt;}
.ws51{word-spacing:7.936000pt;}
.ws12b{word-spacing:8.000000pt;}
.ws62{word-spacing:8.064000pt;}
.ws8f{word-spacing:8.192000pt;}
.ws120{word-spacing:8.256000pt;}
.ws57{word-spacing:8.320000pt;}
.wsad{word-spacing:8.384000pt;}
.wsdf{word-spacing:8.448000pt;}
.ws12a{word-spacing:8.512000pt;}
.ws1a{word-spacing:8.576000pt;}
.ws18{word-spacing:8.704000pt;}
.wsc9{word-spacing:8.768000pt;}
.ws154{word-spacing:8.832000pt;}
.wsc4{word-spacing:8.896000pt;}
.ws5a{word-spacing:9.024000pt;}
.ws141{word-spacing:9.088000pt;}
.ws14c{word-spacing:9.216000pt;}
.wsf8{word-spacing:9.280000pt;}
.wsd2{word-spacing:9.344000pt;}
.ws13d{word-spacing:9.408000pt;}
.ws11b{word-spacing:9.536000pt;}
.wsf7{word-spacing:9.600000pt;}
.ws111{word-spacing:9.728000pt;}
.ws151{word-spacing:10.176000pt;}
.ws119{word-spacing:10.496000pt;}
.wsf5{word-spacing:10.560000pt;}
.wsd7{word-spacing:11.200000pt;}
.wse9{word-spacing:11.776000pt;}
.ws14f{word-spacing:12.160000pt;}
.ws115{word-spacing:12.352000pt;}
.ws101{word-spacing:12.544000pt;}
.ws118{word-spacing:12.928000pt;}
.wsbf{word-spacing:12.992000pt;}
.ws14d{word-spacing:13.056000pt;}
.wsd6{word-spacing:13.376000pt;}
.wsc0{word-spacing:14.144000pt;}
.wsdc{word-spacing:14.336000pt;}
.wse3{word-spacing:14.528000pt;}
.wsdb{word-spacing:14.848000pt;}
.wsd8{word-spacing:15.616000pt;}
.wsf2{word-spacing:15.808000pt;}
.wse5{word-spacing:16.000000pt;}
.wse6{word-spacing:16.704000pt;}
.wse0{word-spacing:17.024000pt;}
.wsde{word-spacing:17.280000pt;}
.wsdd{word-spacing:18.432000pt;}
.wsc5{word-spacing:19.008000pt;}
.ws102{word-spacing:19.392000pt;}
.wsea{word-spacing:19.456000pt;}
.wsf0{word-spacing:20.224000pt;}
.ws11c{word-spacing:20.864000pt;}
.wse7{word-spacing:20.992000pt;}
.wse1{word-spacing:21.248000pt;}
.ws9a{word-spacing:21.504000pt;}
.ws116{word-spacing:21.888000pt;}
.wsf3{word-spacing:22.336000pt;}
.wsda{word-spacing:22.528000pt;}
.wse2{word-spacing:22.720000pt;}
.ws117{word-spacing:25.024000pt;}
.wsf1{word-spacing:25.536000pt;}
.ws114{word-spacing:34.240000pt;}
.ws113{word-spacing:34.368000pt;}
.wsec{word-spacing:97.664000pt;}
.ws1{word-spacing:161.687040pt;}
.ws20{word-spacing:176.000000pt;}
.ws3d{word-spacing:177.349333pt;}
.ws0{word-spacing:330.591467pt;}
.ws13b{word-spacing:769.322667pt;}
.ws12f{word-spacing:892.501333pt;}
.ws144{word-spacing:980.992000pt;}
.ws11d{word-spacing:997.845333pt;}
.ws146{word-spacing:1038.677333pt;}
.wsc1{word-spacing:1039.573333pt;}
.ws149{word-spacing:1126.485333pt;}
.ws147{word-spacing:1248.512000pt;}
._58{margin-left:-1555.131093pt;}
._57{margin-left:-1544.955093pt;}
._53{margin-left:-1330.656427pt;}
._55{margin-left:-1291.648000pt;}
._24{margin-left:-919.840000pt;}
._26{margin-left:-742.528000pt;}
._4{margin-left:-598.867200pt;}
._18{margin-left:-177.216000pt;}
._13{margin-left:-175.168000pt;}
._1c{margin-left:-172.032000pt;}
._4a{margin-left:-30.976000pt;}
._2f{margin-left:-27.968000pt;}
._27{margin-left:-26.944000pt;}
._32{margin-left:-23.872000pt;}
._38{margin-left:-22.464000pt;}
._3c{margin-left:-19.968000pt;}
._6{margin-left:-15.817067pt;}
._4e{margin-left:-14.784000pt;}
._36{margin-left:-13.888000pt;}
._45{margin-left:-12.591787pt;}
._44{margin-left:-11.296000pt;}
._11{margin-left:-9.649067pt;}
._25{margin-left:-8.293120pt;}
._14{margin-left:-7.312213pt;}
._c{margin-left:-6.240000pt;}
._10{margin-left:-4.688213pt;}
._b{margin-left:-3.786667pt;}
._9{margin-left:-2.080000pt;}
._8{margin-left:-0.943787pt;}
._0{width:0.997120pt;}
._a{width:2.026667pt;}
._d{width:3.456000pt;}
._f{width:4.992000pt;}
._12{width:6.340800pt;}
._1a{width:7.296000pt;}
._e{width:8.512000pt;}
._23{width:9.408000pt;}
._20{width:10.736000pt;}
._2b{width:11.664000pt;}
._1f{width:13.141333pt;}
._31{width:14.032853pt;}
._2c{width:15.023787pt;}
._7{width:16.646400pt;}
._3b{width:18.089813pt;}
._2e{width:19.488000pt;}
._2d{width:21.088000pt;}
._35{width:22.304000pt;}
._34{width:23.264000pt;}
._41{width:25.120000pt;}
._40{width:26.784000pt;}
._61{width:31.322880pt;}
._60{width:32.373120pt;}
._5f{width:34.058880pt;}
._49{width:43.552000pt;}
._43{width:57.920000pt;}
._42{width:59.008000pt;}
._4d{width:62.560000pt;}
._4c{width:64.224000pt;}
._50{width:68.640000pt;}
._51{width:71.296000pt;}
._3f{width:84.128000pt;}
._3e{width:85.792000pt;}
._48{width:96.448000pt;}
._47{width:98.400000pt;}
._1d{width:119.104000pt;}
._5b{width:124.160000pt;}
._5a{width:125.440000pt;}
._5d{width:129.472000pt;}
._5c{width:130.880000pt;}
._4b{width:150.464000pt;}
._21{width:152.474667pt;}
._30{width:153.472000pt;}
._28{width:154.496000pt;}
._33{width:157.568000pt;}
._39{width:158.976000pt;}
._3d{width:161.472000pt;}
._59{width:163.840000pt;}
._4f{width:166.656000pt;}
._37{width:167.552000pt;}
._52{width:168.559787pt;}
._1b{width:169.984000pt;}
._19{width:171.072000pt;}
._5e{width:172.032000pt;}
._17{width:173.184000pt;}
._46{width:174.672213pt;}
._15{width:176.000000pt;}
._1e{width:177.349333pt;}
._16{width:178.624000pt;}
._22{width:179.813333pt;}
._29{width:181.462933pt;}
._54{width:202.686000pt;}
._56{width:302.288000pt;}
._5{width:378.406400pt;}
._2a{width:425.344000pt;}
._1{width:463.203840pt;}
._2{width:870.240000pt;}
._3{width:974.848000pt;}
._3a{width:1567.337067pt;}
.fs4{font-size:2.560000pt;}
.fs18{font-size:13.200000pt;}
.fs17{font-size:16.000000pt;}
.fs1e{font-size:31.093333pt;}
.fs1a{font-size:36.000000pt;}
.fs12{font-size:37.312000pt;}
.fs14{font-size:42.666667pt;}
.fsc{font-size:44.800000pt;}
.fs3{font-size:47.360000pt;}
.fs13{font-size:48.000000pt;}
.fs11{font-size:52.266667pt;}
.fs0{font-size:52.480000pt;}
.fs8{font-size:53.333333pt;}
.fse{font-size:56.000000pt;}
.fs2{font-size:57.600000pt;}
.fs10{font-size:58.666667pt;}
.fs16{font-size:61.333333pt;}
.fs6{font-size:64.000000pt;}
.fs1c{font-size:67.200000pt;}
.fs19{font-size:69.333333pt;}
.fs15{font-size:72.000000pt;}
.fsb{font-size:74.666667pt;}
.fsd{font-size:80.000000pt;}
.fs1{font-size:84.480000pt;}
.fsf{font-size:85.333333pt;}
.fs9{font-size:89.600000pt;}
.fs1b{font-size:96.000000pt;}
.fsa{font-size:106.666667pt;}
.fs7{font-size:128.000000pt;}
.fs1d{font-size:138.666667pt;}
.fs5{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.792000pt;}
.y13e{bottom:5.750133pt;}
.y201{bottom:5.750267pt;}
.yf8{bottom:5.750400pt;}
.y23d{bottom:5.750800pt;}
.y18d{bottom:5.750933pt;}
.y116{bottom:5.751200pt;}
.y1ff{bottom:10.568933pt;}
.yfe{bottom:10.569067pt;}
.y236{bottom:10.569467pt;}
.y168{bottom:10.569600pt;}
.y110{bottom:10.569867pt;}
.y137{bottom:10.570133pt;}
.y62c{bottom:41.573200pt;}
.y5e8{bottom:45.822533pt;}
.y52e{bottom:46.056133pt;}
.y5a4{bottom:46.814133pt;}
.y534{bottom:47.202667pt;}
.y731{bottom:47.294933pt;}
.y54c{bottom:47.759067pt;}
.y4e5{bottom:47.872400pt;}
.y208{bottom:48.071867pt;}
.y234{bottom:48.147467pt;}
.y1fd{bottom:48.223067pt;}
.yaf{bottom:48.225867pt;}
.y563{bottom:48.239867pt;}
.y15b{bottom:48.449867pt;}
.y166{bottom:48.601067pt;}
.y1b2{bottom:48.638800pt;}
.y135{bottom:48.752267pt;}
.y10e{bottom:49.054533pt;}
.y6c6{bottom:49.092400pt;}
.yf6{bottom:49.205733pt;}
.yb0{bottom:49.218133pt;}
.yf5{bottom:50.210133pt;}
.y2cb{bottom:85.973600pt;}
.y72e{bottom:85.984267pt;}
.y2f4{bottom:86.162533pt;}
.y33f{bottom:86.492800pt;}
.y262{bottom:86.498000pt;}
.y368{bottom:86.508667pt;}
.y3b1{bottom:86.509067pt;}
.y233{bottom:86.518133pt;}
.y3e9{bottom:86.524800pt;}
.y3c1{bottom:86.535333pt;}
.y415{bottom:86.540667pt;}
.y52d{bottom:86.654000pt;}
.y2a9{bottom:86.740133pt;}
.y48b{bottom:86.761200pt;}
.y1c2{bottom:86.881067pt;}
.y1b1{bottom:86.886400pt;}
.y10d{bottom:86.902400pt;}
.y18b{bottom:86.907733pt;}
.yfc{bottom:86.913067pt;}
.y165{bottom:86.918400pt;}
.yf2{bottom:86.918533pt;}
.yae{bottom:86.923733pt;}
.y1c6{bottom:86.929067pt;}
.y134{bottom:87.001200pt;}
.y15a{bottom:87.071200pt;}
.y4ad{bottom:87.558800pt;}
.y463{bottom:87.853067pt;}
.y22c{bottom:87.868667pt;}
.y27a{bottom:88.607467pt;}
.y4d6{bottom:88.645467pt;}
.y23b{bottom:88.849067pt;}
.y3eb{bottom:88.866000pt;}
.y15e{bottom:89.065467pt;}
.y2cf{bottom:89.069467pt;}
.y286{bottom:89.201867pt;}
.y3c4{bottom:89.208400pt;}
.y3b7{bottom:89.555067pt;}
.y419{bottom:89.662667pt;}
.y4cd{bottom:89.967067pt;}
.y114{bottom:90.194000pt;}
.y1d8{bottom:90.204133pt;}
.y1b7{bottom:90.352933pt;}
.y2ab{bottom:90.578800pt;}
.y139{bottom:90.776667pt;}
.y1c9{bottom:90.932933pt;}
.y467{bottom:91.143600pt;}
.y4d1{bottom:91.317467pt;}
.y4e8{bottom:91.408000pt;}
.y530{bottom:91.680000pt;}
.y102{bottom:92.146667pt;}
.y48c{bottom:92.329333pt;}
.y4df{bottom:92.650800pt;}
.y264{bottom:92.671867pt;}
.y54{bottom:92.847867pt;}
.y38c{bottom:93.207200pt;}
.y1a{bottom:93.740133pt;}
.y1c{bottom:93.853067pt;}
.y412{bottom:93.957867pt;}
.y34{bottom:95.042533pt;}
.y1c5{bottom:95.532667pt;}
.y2f6{bottom:95.862267pt;}
.y440{bottom:96.329333pt;}
.y72{bottom:96.847867pt;}
.y414{bottom:100.940667pt;}
.y6c5{bottom:101.320933pt;}
.y389{bottom:102.071600pt;}
.y4de{bottom:102.092667pt;}
.y319{bottom:102.350400pt;}
.y5a3{bottom:102.463867pt;}
.y671{bottom:102.469200pt;}
.y1fc{bottom:102.481067pt;}
.y1fa{bottom:102.559067pt;}
.y207{bottom:102.738800pt;}
.y54b{bottom:102.738933pt;}
.y64d{bottom:102.741200pt;}
.y608{bottom:102.910533pt;}
.y5c4{bottom:103.038133pt;}
.y342{bottom:103.095200pt;}
.y43c{bottom:103.404933pt;}
.y62b{bottom:103.406533pt;}
.y72a{bottom:103.987600pt;}
.y2ca{bottom:104.645600pt;}
.y4dd{bottom:104.650800pt;}
.y2f3{bottom:104.834533pt;}
.y33e{bottom:105.164800pt;}
.y261{bottom:105.170000pt;}
.y367{bottom:105.180667pt;}
.y3b0{bottom:105.181067pt;}
.y72d{bottom:105.184267pt;}
.y232{bottom:105.190133pt;}
.y3e8{bottom:105.196800pt;}
.y3c0{bottom:105.207333pt;}
.y1c1{bottom:105.553067pt;}
.y1b0{bottom:105.558400pt;}
.y10c{bottom:105.574400pt;}
.y18a{bottom:105.579733pt;}
.yfb{bottom:105.585067pt;}
.y164{bottom:105.590400pt;}
.yf1{bottom:105.590533pt;}
.yad{bottom:105.595733pt;}
.y6e1{bottom:105.663333pt;}
.y159{bottom:105.743200pt;}
.y533{bottom:105.790533pt;}
.y4ac{bottom:106.230800pt;}
.y22b{bottom:106.540667pt;}
.y279{bottom:107.279467pt;}
.y4d5{bottom:107.317467pt;}
.y23a{bottom:107.521067pt;}
.y15d{bottom:107.737467pt;}
.y2ce{bottom:107.741467pt;}
.y285{bottom:107.873867pt;}
.y3c3{bottom:107.880400pt;}
.y3b6{bottom:108.227067pt;}
.y4cc{bottom:108.639067pt;}
.y113{bottom:108.866000pt;}
.y1d7{bottom:108.876133pt;}
.y1b6{bottom:109.024933pt;}
.y138{bottom:109.448667pt;}
.y1c8{bottom:109.604933pt;}
.y4e7{bottom:110.080000pt;}
.y101{bottom:110.818667pt;}
.y6fd{bottom:111.211467pt;}
.y40e{bottom:111.874000pt;}
.y53{bottom:116.847867pt;}
.y19{bottom:117.740133pt;}
.y1b{bottom:117.853067pt;}
.y27c{bottom:117.946133pt;}
.y33{bottom:119.042533pt;}
.y4d3{bottom:120.460933pt;}
.y95{bottom:120.690400pt;}
.y71{bottom:120.847867pt;}
.y4e2{bottom:121.186533pt;}
.y418{bottom:121.495200pt;}
.y341{bottom:121.767200pt;}
.y687{bottom:122.281733pt;}
.y2c9{bottom:123.317600pt;}
.y2f2{bottom:123.506533pt;}
.y33d{bottom:123.836800pt;}
.y260{bottom:123.842000pt;}
.y366{bottom:123.852667pt;}
.y3af{bottom:123.853067pt;}
.y231{bottom:123.862133pt;}
.y1c0{bottom:124.225067pt;}
.y1af{bottom:124.230400pt;}
.y10b{bottom:124.246400pt;}
.y189{bottom:124.251733pt;}
.yfa{bottom:124.257067pt;}
.y163{bottom:124.262400pt;}
.yf0{bottom:124.262533pt;}
.y4ab{bottom:124.902800pt;}
.y3ea{bottom:126.032000pt;}
.y388{bottom:126.071600pt;}
.y3bf{bottom:126.092667pt;}
.y2a8{bottom:126.292133pt;}
.y318{bottom:126.350400pt;}
.y5a2{bottom:126.463867pt;}
.y282{bottom:126.465467pt;}
.y670{bottom:126.469200pt;}
.y1fb{bottom:126.481067pt;}
.y3c2{bottom:126.552400pt;}
.y1f9{bottom:126.559067pt;}
.y206{bottom:126.738800pt;}
.y54a{bottom:126.738933pt;}
.y64c{bottom:126.741200pt;}
.y607{bottom:126.910533pt;}
.y5c3{bottom:127.038133pt;}
.y43b{bottom:127.404933pt;}
.y62a{bottom:127.406533pt;}
.y1d6{bottom:127.548133pt;}
.y100{bottom:129.490667pt;}
.y1c4{bottom:130.747200pt;}
.y411{bottom:131.123867pt;}
.y43f{bottom:133.495200pt;}
.y6c4{bottom:134.654267pt;}
.y38a{bottom:136.478267pt;}
.y239{bottom:136.695200pt;}
.y263{bottom:136.698667pt;}
.y729{bottom:137.320933pt;}
.y510{bottom:138.033867pt;}
.y4d4{bottom:138.346933pt;}
.y6e0{bottom:138.996667pt;}
.y417{bottom:139.174267pt;}
.yac{bottom:139.902933pt;}
.y340{bottom:140.439200pt;}
.y284{bottom:140.698667pt;}
.y52{bottom:140.847867pt;}
.y2aa{bottom:141.139600pt;}
.y33c{bottom:142.508800pt;}
.y25f{bottom:142.514000pt;}
.y365{bottom:142.524667pt;}
.y1bf{bottom:142.897067pt;}
.y1ae{bottom:142.902400pt;}
.y10a{bottom:142.918400pt;}
.y188{bottom:142.923733pt;}
.yf9{bottom:142.929067pt;}
.y3b5{bottom:143.128267pt;}
.y2f5{bottom:143.144933pt;}
.y4aa{bottom:143.574800pt;}
.y3b4{bottom:144.045600pt;}
.y278{bottom:144.455200pt;}
.y6fc{bottom:144.544800pt;}
.y4cf{bottom:144.702400pt;}
.y70{bottom:144.847867pt;}
.y1d5{bottom:145.092533pt;}
.y581{bottom:145.320933pt;}
.y3ed{bottom:145.419600pt;}
.y230{bottom:145.786667pt;}
.y2cd{bottom:146.035867pt;}
.y686{bottom:146.276400pt;}
.y13b{bottom:147.361867pt;}
.y111{bottom:147.365333pt;}
.y1b5{bottom:147.564800pt;}
.y13c{bottom:148.151200pt;}
.y416{bottom:148.362267pt;}
.y466{bottom:148.698667pt;}
.y4cb{bottom:149.436933pt;}
.y2c8{bottom:149.536133pt;}
.y160{bottom:149.654000pt;}
.y2f1{bottom:149.725067pt;}
.y1d2{bottom:149.797333pt;}
.y40d{bottom:149.877733pt;}
.y161{bottom:150.027333pt;}
.y3ae{bottom:150.056000pt;}
.y387{bottom:150.071600pt;}
.y3be{bottom:150.092667pt;}
.y2a7{bottom:150.292133pt;}
.y317{bottom:150.350400pt;}
.y5e7{bottom:150.462133pt;}
.y5a1{bottom:150.463867pt;}
.y281{bottom:150.465467pt;}
.y66f{bottom:150.469200pt;}
.y1cf{bottom:150.481067pt;}
.y133{bottom:150.553067pt;}
.y1f8{bottom:150.559067pt;}
.y48a{bottom:150.570933pt;}
.y158{bottom:150.628533pt;}
.y205{bottom:150.738800pt;}
.y549{bottom:150.738933pt;}
.y64b{bottom:150.741200pt;}
.y606{bottom:150.910533pt;}
.y43a{bottom:151.404933pt;}
.y629{bottom:151.406533pt;}
.y22a{bottom:151.426000pt;}
.y462{bottom:151.662800pt;}
.y69e{bottom:151.676533pt;}
.y410{bottom:152.507600pt;}
.y94{bottom:152.690400pt;}
.y3ec{bottom:154.607600pt;}
.y1d4{bottom:157.248533pt;}
.y43e{bottom:157.419600pt;}
.y3ca{bottom:157.786267pt;}
.y27b{bottom:159.281333pt;}
.y48f{bottom:160.457200pt;}
.y33b{bottom:161.180800pt;}
.y25e{bottom:161.186000pt;}
.y364{bottom:161.196667pt;}
.y1be{bottom:161.569067pt;}
.y1ad{bottom:161.574400pt;}
.y109{bottom:161.590400pt;}
.y187{bottom:161.595733pt;}
.y40f{bottom:161.695600pt;}
.y31{bottom:161.887200pt;}
.y4a9{bottom:162.246800pt;}
.yab{bottom:163.902933pt;}
.y51{bottom:164.847867pt;}
.y18{bottom:165.740133pt;}
.y43d{bottom:166.607600pt;}
.y32{bottom:167.042533pt;}
.y6c3{bottom:167.987600pt;}
.y6f{bottom:168.847867pt;}
.y580{bottom:169.320933pt;}
.y465{bottom:170.752933pt;}
.y6df{bottom:172.330000pt;}
.y4ca{bottom:173.436933pt;}
.y2c7{bottom:173.536133pt;}
.y2f0{bottom:173.725067pt;}
.y40c{bottom:173.877733pt;}
.y3ad{bottom:174.056000pt;}
.y386{bottom:174.071600pt;}
.y3bd{bottom:174.092667pt;}
.y2a6{bottom:174.292133pt;}
.y3e7{bottom:174.339867pt;}
.y316{bottom:174.350400pt;}
.y5e6{bottom:174.462133pt;}
.y5a0{bottom:174.463867pt;}
.y280{bottom:174.465467pt;}
.y66e{bottom:174.469200pt;}
.yef{bottom:174.481067pt;}
.y132{bottom:174.553067pt;}
.y1f7{bottom:174.559067pt;}
.y489{bottom:174.570933pt;}
.y157{bottom:174.628533pt;}
.y204{bottom:174.738800pt;}
.y548{bottom:174.738933pt;}
.y64a{bottom:174.741200pt;}
.y3c6{bottom:174.991933pt;}
.y5c2{bottom:175.038133pt;}
.y439{bottom:175.404933pt;}
.y628{bottom:175.406533pt;}
.y229{bottom:175.426000pt;}
.y461{bottom:175.662800pt;}
.y69d{bottom:175.671200pt;}
.y103{bottom:176.478267pt;}
.y6fb{bottom:177.878133pt;}
.yff{bottom:178.598933pt;}
.y4e9{bottom:179.123867pt;}
.y33a{bottom:179.852800pt;}
.y25d{bottom:179.858000pt;}
.y363{bottom:179.868667pt;}
.y464{bottom:179.940933pt;}
.y346{bottom:180.100000pt;}
.y1bd{bottom:180.241067pt;}
.y1ac{bottom:180.246400pt;}
.y108{bottom:180.262400pt;}
.y3c5{bottom:181.294933pt;}
.y48e{bottom:183.665067pt;}
.y93{bottom:184.690400pt;}
.yaa{bottom:187.902933pt;}
.y50{bottom:188.847867pt;}
.y17{bottom:189.740133pt;}
.y6e{bottom:192.847867pt;}
.y48d{bottom:192.853067pt;}
.y57f{bottom:193.320933pt;}
.y685{bottom:194.280400pt;}
.y4c9{bottom:197.436933pt;}
.y2c6{bottom:197.536133pt;}
.y2ef{bottom:197.725067pt;}
.y40b{bottom:197.877733pt;}
.y3ac{bottom:198.056000pt;}
.y4db{bottom:198.071600pt;}
.y3bc{bottom:198.092667pt;}
.y2a5{bottom:198.292133pt;}
.y3e6{bottom:198.339867pt;}
.y315{bottom:198.350400pt;}
.y5e5{bottom:198.462133pt;}
.y50b{bottom:198.463733pt;}
.y59f{bottom:198.463867pt;}
.y186{bottom:198.465467pt;}
.y66d{bottom:198.469200pt;}
.y276{bottom:198.480933pt;}
.yee{bottom:198.481067pt;}
.y339{bottom:198.524800pt;}
.y25c{bottom:198.530000pt;}
.y362{bottom:198.540667pt;}
.y131{bottom:198.553067pt;}
.y1f6{bottom:198.559067pt;}
.y488{bottom:198.570933pt;}
.y1ce{bottom:198.738800pt;}
.y547{bottom:198.738933pt;}
.y649{bottom:198.741200pt;}
.y605{bottom:198.910533pt;}
.y1bc{bottom:198.913067pt;}
.y1ab{bottom:198.918400pt;}
.y5c1{bottom:199.038133pt;}
.y438{bottom:199.404933pt;}
.y627{bottom:199.406533pt;}
.y228{bottom:199.426000pt;}
.y460{bottom:199.662800pt;}
.y6c2{bottom:201.320933pt;}
.y6de{bottom:205.663333pt;}
.y4{bottom:207.653067pt;}
.y30{bottom:209.887200pt;}
.y6fa{bottom:211.211467pt;}
.ya9{bottom:211.902933pt;}
.y4f{bottom:212.847867pt;}
.y16{bottom:213.740133pt;}
.y92{bottom:216.695733pt;}
.y6d{bottom:216.847867pt;}
.y338{bottom:217.196800pt;}
.y25b{bottom:217.202000pt;}
.y57e{bottom:217.320933pt;}
.y1bb{bottom:217.585067pt;}
.y1aa{bottom:217.590400pt;}
.y684{bottom:218.275067pt;}
.y4c8{bottom:221.436933pt;}
.y2c5{bottom:221.536133pt;}
.y2ee{bottom:221.725067pt;}
.y40a{bottom:221.877733pt;}
.y3ab{bottom:222.056000pt;}
.y385{bottom:222.071600pt;}
.y361{bottom:222.076933pt;}
.y413{bottom:222.092667pt;}
.y2a4{bottom:222.292133pt;}
.y3e5{bottom:222.339867pt;}
.y314{bottom:222.350400pt;}
.y5e4{bottom:222.462133pt;}
.y50a{bottom:222.463733pt;}
.y59e{bottom:222.463867pt;}
.y185{bottom:222.465467pt;}
.y66c{bottom:222.469200pt;}
.yed{bottom:222.481067pt;}
.yce{bottom:222.482133pt;}
.y130{bottom:222.553067pt;}
.y1f5{bottom:222.559067pt;}
.y487{bottom:222.570933pt;}
.y156{bottom:222.628533pt;}
.y1cd{bottom:222.738800pt;}
.y546{bottom:222.738933pt;}
.y648{bottom:222.741200pt;}
.y604{bottom:222.910533pt;}
.y6b1{bottom:223.009467pt;}
.y5c0{bottom:223.038133pt;}
.y437{bottom:223.404933pt;}
.y227{bottom:223.426000pt;}
.y45f{bottom:223.662800pt;}
.y69c{bottom:223.675200pt;}
.y2f{bottom:233.887200pt;}
.y6c1{bottom:234.654267pt;}
.y25a{bottom:235.874000pt;}
.ya8{bottom:235.902933pt;}
.y1ba{bottom:236.257067pt;}
.y1a9{bottom:236.262400pt;}
.y4e{bottom:236.847867pt;}
.y6dd{bottom:238.996667pt;}
.y91{bottom:240.690400pt;}
.y6c{bottom:240.847867pt;}
.y57d{bottom:241.320933pt;}
.y683{bottom:242.269733pt;}
.y6f9{bottom:244.544800pt;}
.y4c7{bottom:245.436933pt;}
.y2c4{bottom:245.536133pt;}
.y2ed{bottom:245.725067pt;}
.y409{bottom:245.877733pt;}
.y3aa{bottom:246.056000pt;}
.y384{bottom:246.071600pt;}
.y360{bottom:246.076933pt;}
.y337{bottom:246.082133pt;}
.y3bb{bottom:246.092667pt;}
.y2a3{bottom:246.292133pt;}
.y3e4{bottom:246.339867pt;}
.y5e3{bottom:246.462133pt;}
.y509{bottom:246.463733pt;}
.y59d{bottom:246.463867pt;}
.y184{bottom:246.465467pt;}
.y66b{bottom:246.469200pt;}
.y275{bottom:246.480933pt;}
.yec{bottom:246.481067pt;}
.ycd{bottom:246.482133pt;}
.y12f{bottom:246.553067pt;}
.y1f4{bottom:246.559067pt;}
.y486{bottom:246.570933pt;}
.y155{bottom:246.628533pt;}
.y1cc{bottom:246.738800pt;}
.y545{bottom:246.738933pt;}
.y647{bottom:246.741200pt;}
.y603{bottom:246.910533pt;}
.y6b0{bottom:247.004133pt;}
.y5bf{bottom:247.038133pt;}
.y436{bottom:247.404933pt;}
.y626{bottom:247.406533pt;}
.y226{bottom:247.426000pt;}
.y45e{bottom:247.662800pt;}
.y69b{bottom:247.669867pt;}
.y1b9{bottom:254.929067pt;}
.y2e{bottom:257.887200pt;}
.ya7{bottom:259.902933pt;}
.y4d{bottom:260.847867pt;}
.y6b{bottom:264.847867pt;}
.y57c{bottom:265.320933pt;}
.y6c0{bottom:267.987600pt;}
.y4c6{bottom:269.436933pt;}
.y2ec{bottom:269.725067pt;}
.y408{bottom:269.877733pt;}
.y4da{bottom:270.071600pt;}
.y35f{bottom:270.076933pt;}
.y336{bottom:270.082133pt;}
.y259{bottom:270.092667pt;}
.y2a2{bottom:270.292133pt;}
.y3e3{bottom:270.339867pt;}
.y313{bottom:270.350400pt;}
.y5e2{bottom:270.462133pt;}
.y508{bottom:270.463733pt;}
.y59c{bottom:270.463867pt;}
.y183{bottom:270.465467pt;}
.y66a{bottom:270.469200pt;}
.y274{bottom:270.480933pt;}
.yeb{bottom:270.481067pt;}
.ycc{bottom:270.482133pt;}
.y12e{bottom:270.553067pt;}
.y1f3{bottom:270.559067pt;}
.y485{bottom:270.570933pt;}
.y154{bottom:270.628533pt;}
.y1a8{bottom:270.738800pt;}
.y544{bottom:270.738933pt;}
.y602{bottom:270.910533pt;}
.y6af{bottom:270.998800pt;}
.y435{bottom:271.404933pt;}
.y625{bottom:271.406533pt;}
.y225{bottom:271.426000pt;}
.y45d{bottom:271.662800pt;}
.y6dc{bottom:272.330000pt;}
.y6f8{bottom:277.878133pt;}
.y90{bottom:280.690400pt;}
.y238{bottom:280.695200pt;}
.y715{bottom:280.949333pt;}
.yb{bottom:283.201467pt;}
.ya6{bottom:283.902933pt;}
.y4c{bottom:284.847867pt;}
.y6a{bottom:288.847867pt;}
.y57b{bottom:289.320933pt;}
.y682{bottom:290.273733pt;}
.y4c5{bottom:293.436933pt;}
.y2c3{bottom:293.536133pt;}
.y2eb{bottom:293.725067pt;}
.y3a9{bottom:294.056000pt;}
.y383{bottom:294.071600pt;}
.y35e{bottom:294.076933pt;}
.y335{bottom:294.082133pt;}
.y258{bottom:294.092667pt;}
.y2a1{bottom:294.292133pt;}
.y3e2{bottom:294.339867pt;}
.y312{bottom:294.350400pt;}
.y5e1{bottom:294.462133pt;}
.y507{bottom:294.463733pt;}
.y59b{bottom:294.463867pt;}
.y182{bottom:294.465467pt;}
.y669{bottom:294.469200pt;}
.y273{bottom:294.480933pt;}
.yea{bottom:294.481067pt;}
.ycb{bottom:294.482133pt;}
.y12d{bottom:294.553067pt;}
.y1f2{bottom:294.559067pt;}
.y484{bottom:294.570933pt;}
.y153{bottom:294.628533pt;}
.y1a7{bottom:294.738800pt;}
.y543{bottom:294.738933pt;}
.y646{bottom:294.741200pt;}
.y6ae{bottom:294.993467pt;}
.y5be{bottom:295.038133pt;}
.y434{bottom:295.404933pt;}
.y624{bottom:295.406533pt;}
.y224{bottom:295.426000pt;}
.y69a{bottom:295.673867pt;}
.y6bf{bottom:301.315600pt;}
.y6db{bottom:305.663333pt;}
.y2d{bottom:305.887200pt;}
.y3b3{bottom:307.789600pt;}
.ya5{bottom:307.902933pt;}
.y4b{bottom:308.847867pt;}
.y6f7{bottom:311.211467pt;}
.y69{bottom:312.847867pt;}
.y57a{bottom:313.320933pt;}
.y681{bottom:314.268400pt;}
.y714{bottom:314.282667pt;}
.ya{bottom:315.672000pt;}
.y2c2{bottom:317.536133pt;}
.y2ea{bottom:317.725067pt;}
.y407{bottom:317.877733pt;}
.y52c{bottom:318.017467pt;}
.y3a8{bottom:318.056000pt;}
.y382{bottom:318.071600pt;}
.y334{bottom:318.082133pt;}
.y257{bottom:318.092667pt;}
.y2a0{bottom:318.292133pt;}
.y3e1{bottom:318.339867pt;}
.y311{bottom:318.350400pt;}
.y5e0{bottom:318.462133pt;}
.y506{bottom:318.463733pt;}
.y59a{bottom:318.463867pt;}
.y181{bottom:318.465467pt;}
.y668{bottom:318.469200pt;}
.y272{bottom:318.480933pt;}
.ye9{bottom:318.481067pt;}
.yca{bottom:318.482133pt;}
.y12c{bottom:318.553067pt;}
.y1f1{bottom:318.559067pt;}
.y483{bottom:318.570933pt;}
.y152{bottom:318.628533pt;}
.y1a6{bottom:318.738800pt;}
.y542{bottom:318.738933pt;}
.y645{bottom:318.741200pt;}
.y601{bottom:318.910533pt;}
.y6ad{bottom:318.988133pt;}
.y5bd{bottom:319.038133pt;}
.y433{bottom:319.404933pt;}
.y623{bottom:319.406533pt;}
.y223{bottom:319.426000pt;}
.y45c{bottom:319.662800pt;}
.y699{bottom:319.668533pt;}
.y6be{bottom:319.987600pt;}
.y8f{bottom:320.738400pt;}
.y2c{bottom:329.887200pt;}
.ya4{bottom:331.902933pt;}
.y4a{bottom:332.847867pt;}
.y68{bottom:336.847867pt;}
.y579{bottom:337.320933pt;}
.y6da{bottom:338.996667pt;}
.y4c4{bottom:341.436933pt;}
.y2e9{bottom:341.725067pt;}
.y406{bottom:341.877733pt;}
.y52b{bottom:342.017467pt;}
.y3a7{bottom:342.056000pt;}
.y381{bottom:342.071600pt;}
.y35d{bottom:342.076933pt;}
.y333{bottom:342.082133pt;}
.y256{bottom:342.092667pt;}
.y29f{bottom:342.292133pt;}
.y3e0{bottom:342.339867pt;}
.y310{bottom:342.350400pt;}
.y5df{bottom:342.462133pt;}
.y505{bottom:342.463733pt;}
.y599{bottom:342.463867pt;}
.y180{bottom:342.465467pt;}
.y667{bottom:342.469200pt;}
.y271{bottom:342.480933pt;}
.ye8{bottom:342.481067pt;}
.yc9{bottom:342.482133pt;}
.y1f0{bottom:342.559067pt;}
.y482{bottom:342.570933pt;}
.y151{bottom:342.628533pt;}
.y1a5{bottom:342.738800pt;}
.y541{bottom:342.738933pt;}
.y644{bottom:342.741200pt;}
.y600{bottom:342.910533pt;}
.y6ac{bottom:342.982800pt;}
.y5bc{bottom:343.038133pt;}
.y622{bottom:343.406533pt;}
.y222{bottom:343.426000pt;}
.y45b{bottom:343.662800pt;}
.y6f6{bottom:344.544800pt;}
.y8e{bottom:344.733067pt;}
.y713{bottom:347.616000pt;}
.y1b4{bottom:352.898133pt;}
.y4d2{bottom:353.058267pt;}
.y6bd{bottom:353.320933pt;}
.y4ce{bottom:355.134400pt;}
.ya3{bottom:355.902933pt;}
.y49{bottom:356.847867pt;}
.y67{bottom:360.847867pt;}
.y578{bottom:361.320933pt;}
.y1c3{bottom:361.445867pt;}
.y680{bottom:362.272400pt;}
.y4c3{bottom:365.436933pt;}
.y2e8{bottom:365.725067pt;}
.y405{bottom:365.877733pt;}
.y52a{bottom:366.017467pt;}
.y3a6{bottom:366.056000pt;}
.y380{bottom:366.071600pt;}
.y35c{bottom:366.076933pt;}
.y332{bottom:366.082133pt;}
.y255{bottom:366.092667pt;}
.y29e{bottom:366.292133pt;}
.y3df{bottom:366.339867pt;}
.y30f{bottom:366.350400pt;}
.y5de{bottom:366.462133pt;}
.y504{bottom:366.463733pt;}
.y598{bottom:366.463867pt;}
.y4d0{bottom:366.465467pt;}
.y666{bottom:366.469200pt;}
.y270{bottom:366.480933pt;}
.ye7{bottom:366.481067pt;}
.yc8{bottom:366.482133pt;}
.y12b{bottom:366.553067pt;}
.y1ef{bottom:366.559067pt;}
.y481{bottom:366.570933pt;}
.y150{bottom:366.628533pt;}
.y1a4{bottom:366.738800pt;}
.y540{bottom:366.738933pt;}
.y643{bottom:366.741200pt;}
.y5ff{bottom:366.910533pt;}
.y6ab{bottom:366.977467pt;}
.y5bb{bottom:367.038133pt;}
.y432{bottom:367.404933pt;}
.y221{bottom:367.426000pt;}
.y45a{bottom:367.662800pt;}
.y698{bottom:367.672533pt;}
.y8d{bottom:368.727733pt;}
.y6d9{bottom:372.330000pt;}
.y13a{bottom:376.577867pt;}
.y6f5{bottom:377.878133pt;}
.y2b{bottom:377.887200pt;}
.y50f{bottom:378.033867pt;}
.y15f{bottom:378.987333pt;}
.ya2{bottom:379.902933pt;}
.y48{bottom:380.847867pt;}
.y712{bottom:380.949333pt;}
.y38b{bottom:383.368933pt;}
.y66{bottom:384.847867pt;}
.y577{bottom:385.320933pt;}
.y67f{bottom:386.267067pt;}
.y6bc{bottom:386.648933pt;}
.y344{bottom:386.766667pt;}
.y4c2{bottom:389.436933pt;}
.y2c1{bottom:389.536133pt;}
.y2e7{bottom:389.725067pt;}
.y404{bottom:389.877733pt;}
.y529{bottom:390.017467pt;}
.y3a5{bottom:390.056000pt;}
.y37f{bottom:390.071600pt;}
.y3ba{bottom:390.092667pt;}
.y29d{bottom:390.292133pt;}
.y3de{bottom:390.339867pt;}
.y30e{bottom:390.350400pt;}
.y5dd{bottom:390.462133pt;}
.y503{bottom:390.463733pt;}
.y17f{bottom:390.465467pt;}
.y665{bottom:390.469200pt;}
.y26f{bottom:390.480933pt;}
.yf4{bottom:390.481067pt;}
.yc7{bottom:390.482133pt;}
.y12a{bottom:390.553067pt;}
.y1ee{bottom:390.559067pt;}
.y480{bottom:390.570933pt;}
.y14f{bottom:390.628533pt;}
.y1a3{bottom:390.738800pt;}
.y53f{bottom:390.738933pt;}
.y642{bottom:390.741200pt;}
.y5fe{bottom:390.910533pt;}
.y6aa{bottom:390.972133pt;}
.y5ba{bottom:391.038133pt;}
.y4a8{bottom:391.132000pt;}
.y431{bottom:391.404933pt;}
.y621{bottom:391.406533pt;}
.y220{bottom:391.426000pt;}
.y459{bottom:391.662800pt;}
.y697{bottom:391.667200pt;}
.y8c{bottom:392.722400pt;}
.yf3{bottom:399.365333pt;}
.y283{bottom:400.698667pt;}
.y2a{bottom:401.887200pt;}
.ya1{bottom:403.902933pt;}
.y47{bottom:404.847867pt;}
.y6bb{bottom:405.320933pt;}
.y6d8{bottom:405.663333pt;}
.y65{bottom:408.847867pt;}
.y4e0{bottom:409.186533pt;}
.y576{bottom:409.320933pt;}
.y6f4{bottom:411.211467pt;}
.y4c1{bottom:413.436933pt;}
.y2c0{bottom:413.536133pt;}
.y2e6{bottom:413.725067pt;}
.y403{bottom:413.877733pt;}
.y528{bottom:414.017467pt;}
.y3a4{bottom:414.056000pt;}
.y4d9{bottom:414.071600pt;}
.y331{bottom:414.082133pt;}
.y254{bottom:414.092667pt;}
.y711{bottom:414.282667pt;}
.y29c{bottom:414.292133pt;}
.y30d{bottom:414.350400pt;}
.y5dc{bottom:414.462133pt;}
.y502{bottom:414.463733pt;}
.y597{bottom:414.463867pt;}
.y17e{bottom:414.465467pt;}
.y664{bottom:414.469200pt;}
.y26e{bottom:414.480933pt;}
.ye6{bottom:414.481067pt;}
.yc6{bottom:414.482133pt;}
.y129{bottom:414.553067pt;}
.y47f{bottom:414.570933pt;}
.y14e{bottom:414.628533pt;}
.y1a2{bottom:414.738800pt;}
.y53e{bottom:414.738933pt;}
.y641{bottom:414.741200pt;}
.y5fd{bottom:414.910533pt;}
.y4a7{bottom:415.132000pt;}
.y430{bottom:415.404933pt;}
.y620{bottom:415.406533pt;}
.y21f{bottom:415.426000pt;}
.y696{bottom:415.661867pt;}
.y458{bottom:415.662800pt;}
.y8b{bottom:416.717067pt;}
.y4dc{bottom:419.125600pt;}
.y29{bottom:425.887200pt;}
.ya0{bottom:427.902933pt;}
.y46{bottom:428.847867pt;}
.y6d7{bottom:429.663333pt;}
.y64{bottom:432.847867pt;}
.y575{bottom:433.320933pt;}
.y67e{bottom:434.271067pt;}
.y22f{bottom:435.120000pt;}
.y106{bottom:436.310133pt;}
.y4c0{bottom:437.436933pt;}
.y402{bottom:437.877733pt;}
.y527{bottom:438.017467pt;}
.y3a3{bottom:438.056000pt;}
.y37e{bottom:438.071600pt;}
.y35b{bottom:438.076933pt;}
.y330{bottom:438.082133pt;}
.y253{bottom:438.092667pt;}
.y29b{bottom:438.292133pt;}
.y3dd{bottom:438.339867pt;}
.y30c{bottom:438.350400pt;}
.y105{bottom:438.432800pt;}
.y5db{bottom:438.462133pt;}
.y501{bottom:438.463733pt;}
.y596{bottom:438.463867pt;}
.y17d{bottom:438.465467pt;}
.y663{bottom:438.469200pt;}
.y26d{bottom:438.480933pt;}
.ye5{bottom:438.481067pt;}
.y128{bottom:438.553067pt;}
.y1ed{bottom:438.559067pt;}
.y47e{bottom:438.570933pt;}
.y14d{bottom:438.628533pt;}
.y6ba{bottom:438.654267pt;}
.y1a1{bottom:438.738800pt;}
.y640{bottom:438.741200pt;}
.y6a9{bottom:438.976133pt;}
.y5b9{bottom:439.038133pt;}
.y4a6{bottom:439.132000pt;}
.y42f{bottom:439.404933pt;}
.y61f{bottom:439.406533pt;}
.y21e{bottom:439.426000pt;}
.y457{bottom:439.662800pt;}
.y8a{bottom:440.711733pt;}
.y6f3{bottom:444.544800pt;}
.y562{bottom:447.393067pt;}
.y710{bottom:447.616000pt;}
.y1d1{bottom:448.037333pt;}
.y1c7{bottom:448.698667pt;}
.y28{bottom:449.887200pt;}
.y9f{bottom:451.902933pt;}
.y2cc{bottom:452.457200pt;}
.y45{bottom:452.847867pt;}
.y63{bottom:456.847867pt;}
.y574{bottom:457.320933pt;}
.y73a{bottom:458.248480pt;}
.y67d{bottom:458.257733pt;}
.y13{bottom:459.040480pt;}
.y4bf{bottom:461.436933pt;}
.y2bf{bottom:461.536133pt;}
.y2e5{bottom:461.725067pt;}
.y526{bottom:462.017467pt;}
.y3a2{bottom:462.056000pt;}
.y37d{bottom:462.071600pt;}
.y35a{bottom:462.076933pt;}
.y32f{bottom:462.082133pt;}
.y252{bottom:462.092667pt;}
.y29a{bottom:462.292133pt;}
.y3dc{bottom:462.339867pt;}
.y30b{bottom:462.350400pt;}
.y5da{bottom:462.462133pt;}
.y500{bottom:462.463733pt;}
.y595{bottom:462.463867pt;}
.y17c{bottom:462.465467pt;}
.y662{bottom:462.469200pt;}
.y26c{bottom:462.480933pt;}
.ye4{bottom:462.481067pt;}
.yc5{bottom:462.482133pt;}
.y127{bottom:462.553067pt;}
.y47d{bottom:462.570933pt;}
.y14c{bottom:462.628533pt;}
.y53d{bottom:462.738667pt;}
.y1a0{bottom:462.738800pt;}
.y5fc{bottom:462.910533pt;}
.y6d6{bottom:462.996667pt;}
.y5b8{bottom:463.038133pt;}
.y4a5{bottom:463.132000pt;}
.y42e{bottom:463.404933pt;}
.y61e{bottom:463.406533pt;}
.y21d{bottom:463.426000pt;}
.y456{bottom:463.662800pt;}
.y695{bottom:463.665867pt;}
.y89{bottom:464.706400pt;}
.y3c9{bottom:466.575600pt;}
.y6b9{bottom:471.987600pt;}
.y739{bottom:472.645920pt;}
.y12{bottom:473.437920pt;}
.y9e{bottom:475.902933pt;}
.y44{bottom:476.847867pt;}
.y6f2{bottom:477.878133pt;}
.y62{bottom:480.847867pt;}
.y70f{bottom:480.949333pt;}
.y237{bottom:484.247200pt;}
.y4be{bottom:485.436933pt;}
.y2be{bottom:485.536133pt;}
.y401{bottom:485.877733pt;}
.y525{bottom:486.017467pt;}
.y3a1{bottom:486.056000pt;}
.y37c{bottom:486.071600pt;}
.y359{bottom:486.076933pt;}
.y32e{bottom:486.082133pt;}
.y251{bottom:486.092667pt;}
.y299{bottom:486.292133pt;}
.y3db{bottom:486.339867pt;}
.y30a{bottom:486.350400pt;}
.y5d9{bottom:486.462133pt;}
.y4ff{bottom:486.463733pt;}
.y594{bottom:486.463867pt;}
.y17b{bottom:486.465467pt;}
.y661{bottom:486.469200pt;}
.y26b{bottom:486.480933pt;}
.ye3{bottom:486.481067pt;}
.yc4{bottom:486.482133pt;}
.y126{bottom:486.553067pt;}
.y47c{bottom:486.570933pt;}
.y14b{bottom:486.628533pt;}
.y561{bottom:486.687067pt;}
.y19f{bottom:486.738800pt;}
.y63f{bottom:486.741200pt;}
.y5fb{bottom:486.910533pt;}
.y5b7{bottom:487.038133pt;}
.y738{bottom:487.043360pt;}
.y4a4{bottom:487.132000pt;}
.y42d{bottom:487.404933pt;}
.y61d{bottom:487.406533pt;}
.y21c{bottom:487.426000pt;}
.y455{bottom:487.662800pt;}
.y11{bottom:487.835360pt;}
.y88{bottom:488.701067pt;}
.y345{bottom:489.678667pt;}
.y6d5{bottom:496.330000pt;}
.y27{bottom:497.887200pt;}
.y9d{bottom:499.902933pt;}
.y43{bottom:500.847867pt;}
.y737{bottom:501.440800pt;}
.y10{bottom:502.232800pt;}
.y61{bottom:504.847867pt;}
.y573{bottom:505.320933pt;}
.y67c{bottom:506.261733pt;}
.y4bd{bottom:509.436933pt;}
.y2bd{bottom:509.536133pt;}
.y2e4{bottom:509.725067pt;}
.y400{bottom:509.877733pt;}
.y524{bottom:510.017467pt;}
.y3a0{bottom:510.056000pt;}
.y37b{bottom:510.071600pt;}
.y358{bottom:510.076933pt;}
.y32d{bottom:510.082133pt;}
.y3b9{bottom:510.092667pt;}
.y298{bottom:510.292133pt;}
.y3da{bottom:510.339867pt;}
.y309{bottom:510.350400pt;}
.y5d8{bottom:510.462133pt;}
.y4fe{bottom:510.463733pt;}
.y593{bottom:510.463867pt;}
.y17a{bottom:510.465467pt;}
.y660{bottom:510.469200pt;}
.y26a{bottom:510.480933pt;}
.ye2{bottom:510.481067pt;}
.yc3{bottom:510.482133pt;}
.y125{bottom:510.553067pt;}
.y1ec{bottom:510.559067pt;}
.y47b{bottom:510.570933pt;}
.y14a{bottom:510.628533pt;}
.y560{bottom:510.687067pt;}
.y19e{bottom:510.738800pt;}
.y63e{bottom:510.741200pt;}
.y5fa{bottom:510.910533pt;}
.y5b6{bottom:511.038133pt;}
.y4a3{bottom:511.132000pt;}
.y6f1{bottom:511.211467pt;}
.y42c{bottom:511.404933pt;}
.y61c{bottom:511.406533pt;}
.y21b{bottom:511.426000pt;}
.y454{bottom:511.662800pt;}
.y87{bottom:512.695733pt;}
.y70e{bottom:514.282667pt;}
.y736{bottom:516.800133pt;}
.yf{bottom:517.592133pt;}
.y531{bottom:519.365333pt;}
.y26{bottom:521.887200pt;}
.y9c{bottom:523.902933pt;}
.y42{bottom:524.847867pt;}
.y60{bottom:528.847867pt;}
.y572{bottom:529.320933pt;}
.y6d4{bottom:529.663333pt;}
.y67b{bottom:530.256400pt;}
.y4bc{bottom:533.436933pt;}
.y2bc{bottom:533.536133pt;}
.y2e3{bottom:533.725067pt;}
.y3ff{bottom:533.877733pt;}
.y523{bottom:534.017467pt;}
.y39f{bottom:534.056000pt;}
.y37a{bottom:534.071600pt;}
.y357{bottom:534.076933pt;}
.y32c{bottom:534.082133pt;}
.y250{bottom:534.092667pt;}
.y297{bottom:534.292133pt;}
.y3d9{bottom:534.339867pt;}
.y308{bottom:534.350400pt;}
.y5d7{bottom:534.462133pt;}
.y4fd{bottom:534.463733pt;}
.y179{bottom:534.465467pt;}
.y65f{bottom:534.469200pt;}
.ye1{bottom:534.481067pt;}
.yc2{bottom:534.482133pt;}
.y124{bottom:534.553067pt;}
.y1eb{bottom:534.559067pt;}
.y47a{bottom:534.570933pt;}
.y149{bottom:534.628533pt;}
.y55f{bottom:534.687067pt;}
.y735{bottom:534.719067pt;}
.y53c{bottom:534.738667pt;}
.y19d{bottom:534.738800pt;}
.y63d{bottom:534.741200pt;}
.y5f9{bottom:534.910533pt;}
.y6a8{bottom:534.969467pt;}
.y5b5{bottom:535.038133pt;}
.y4a2{bottom:535.132000pt;}
.y42b{bottom:535.404933pt;}
.ye{bottom:535.511067pt;}
.y453{bottom:535.662800pt;}
.y86{bottom:536.690400pt;}
.y85{bottom:536.695733pt;}
.y6b8{bottom:538.654267pt;}
.y112{bottom:543.365333pt;}
.y6f0{bottom:544.544800pt;}
.y25{bottom:545.887200pt;}
.y70d{bottom:547.616000pt;}
.y9b{bottom:547.902933pt;}
.y41{bottom:548.847867pt;}
.y5f{bottom:552.847867pt;}
.y571{bottom:553.320933pt;}
.y734{bottom:553.919067pt;}
.yd{bottom:554.711067pt;}
.y4bb{bottom:557.436933pt;}
.y2bb{bottom:557.536133pt;}
.y2e2{bottom:557.725067pt;}
.y3fe{bottom:557.877733pt;}
.y522{bottom:558.017467pt;}
.y39e{bottom:558.056000pt;}
.y379{bottom:558.071600pt;}
.y356{bottom:558.076933pt;}
.y32b{bottom:558.082133pt;}
.y24f{bottom:558.092667pt;}
.y296{bottom:558.292133pt;}
.y3d8{bottom:558.339867pt;}
.y307{bottom:558.350400pt;}
.y5d6{bottom:558.462133pt;}
.y4fc{bottom:558.463733pt;}
.y592{bottom:558.463867pt;}
.y178{bottom:558.465467pt;}
.y65e{bottom:558.469200pt;}
.y269{bottom:558.480933pt;}
.ye0{bottom:558.481067pt;}
.yc1{bottom:558.482133pt;}
.y123{bottom:558.553067pt;}
.y1ea{bottom:558.559067pt;}
.y479{bottom:558.570933pt;}
.y148{bottom:558.628533pt;}
.y55e{bottom:558.687067pt;}
.y53b{bottom:558.738667pt;}
.y19c{bottom:558.738800pt;}
.y63c{bottom:558.741200pt;}
.y5b4{bottom:559.038133pt;}
.y4a1{bottom:559.132000pt;}
.y42a{bottom:559.404933pt;}
.y61b{bottom:559.406533pt;}
.y21a{bottom:559.426000pt;}
.y694{bottom:559.659200pt;}
.y452{bottom:559.662800pt;}
.y84{bottom:560.701067pt;}
.y6d3{bottom:562.996667pt;}
.y721{bottom:565.254533pt;}
.y70c{bottom:571.616000pt;}
.y9a{bottom:571.902933pt;}
.y6b7{bottom:571.987600pt;}
.y40{bottom:572.847867pt;}
.y733{bottom:573.119067pt;}
.yc{bottom:573.911067pt;}
.y5e{bottom:576.847867pt;}
.y570{bottom:577.320933pt;}
.y6ef{bottom:577.878133pt;}
.y67a{bottom:578.260400pt;}
.y4ba{bottom:581.436933pt;}
.y2e1{bottom:581.725067pt;}
.y3fd{bottom:581.877733pt;}
.y521{bottom:582.017467pt;}
.y378{bottom:582.071600pt;}
.y32a{bottom:582.082133pt;}
.y24e{bottom:582.092667pt;}
.y295{bottom:582.292133pt;}
.y3d7{bottom:582.339867pt;}
.y306{bottom:582.350400pt;}
.y5d5{bottom:582.462133pt;}
.y4fb{bottom:582.463733pt;}
.y591{bottom:582.463867pt;}
.y177{bottom:582.465467pt;}
.y65d{bottom:582.469200pt;}
.y268{bottom:582.480933pt;}
.ydf{bottom:582.481067pt;}
.yc0{bottom:582.482133pt;}
.y122{bottom:582.553067pt;}
.y1e9{bottom:582.559067pt;}
.y478{bottom:582.570933pt;}
.y147{bottom:582.628533pt;}
.y55d{bottom:582.687067pt;}
.y53a{bottom:582.738667pt;}
.y19b{bottom:582.738800pt;}
.y63b{bottom:582.741200pt;}
.y5f8{bottom:582.910533pt;}
.y6a7{bottom:582.973467pt;}
.y5b3{bottom:583.038133pt;}
.y4a0{bottom:583.132000pt;}
.y429{bottom:583.404933pt;}
.y61a{bottom:583.406533pt;}
.y219{bottom:583.426000pt;}
.y693{bottom:583.653867pt;}
.y451{bottom:583.662800pt;}
.y83{bottom:584.695733pt;}
.y24{bottom:593.887200pt;}
.y99{bottom:595.902933pt;}
.y6d2{bottom:596.330000pt;}
.y3f{bottom:596.847867pt;}
.y3b2{bottom:598.850933pt;}
.y4ea{bottom:599.401200pt;}
.y4e4{bottom:600.305467pt;}
.y5d{bottom:600.847867pt;}
.y56f{bottom:601.320933pt;}
.y679{bottom:602.255067pt;}
.y511{bottom:603.121867pt;}
.y4e1{bottom:603.362533pt;}
.y70b{bottom:604.949333pt;}
.y720{bottom:605.254533pt;}
.y6b6{bottom:605.320933pt;}
.y2ba{bottom:605.536133pt;}
.y2e0{bottom:605.725067pt;}
.y3fc{bottom:605.877733pt;}
.y39d{bottom:606.056000pt;}
.y377{bottom:606.071600pt;}
.y355{bottom:606.076933pt;}
.y329{bottom:606.082133pt;}
.y24d{bottom:606.092667pt;}
.y294{bottom:606.292133pt;}
.y3d6{bottom:606.339867pt;}
.y305{bottom:606.350400pt;}
.y5d4{bottom:606.462133pt;}
.y4fa{bottom:606.463733pt;}
.y590{bottom:606.463867pt;}
.y176{bottom:606.465467pt;}
.y65c{bottom:606.469200pt;}
.y267{bottom:606.480933pt;}
.yde{bottom:606.481067pt;}
.ybf{bottom:606.482133pt;}
.y121{bottom:606.553067pt;}
.y1e8{bottom:606.559067pt;}
.y477{bottom:606.570933pt;}
.y146{bottom:606.628533pt;}
.y55c{bottom:606.687067pt;}
.y539{bottom:606.738667pt;}
.y19a{bottom:606.738800pt;}
.y5f7{bottom:606.910533pt;}
.y5b2{bottom:607.038133pt;}
.y49f{bottom:607.132000pt;}
.y619{bottom:607.406533pt;}
.y218{bottom:607.426000pt;}
.y450{bottom:607.662800pt;}
.y82{bottom:608.690400pt;}
.y4e3{bottom:609.493467pt;}
.y6ee{bottom:611.211467pt;}
.y23{bottom:617.887200pt;}
.y50e{bottom:618.577867pt;}
.y98{bottom:619.902933pt;}
.y3e{bottom:620.847867pt;}
.y5c{bottom:624.847867pt;}
.y56e{bottom:625.320933pt;}
.y3{bottom:625.425867pt;}
.y70a{bottom:628.949333pt;}
.y2b9{bottom:629.536133pt;}
.y6d1{bottom:629.663333pt;}
.y2df{bottom:629.725067pt;}
.y3fb{bottom:629.877733pt;}
.y520{bottom:630.017467pt;}
.y39c{bottom:630.056000pt;}
.y376{bottom:630.071600pt;}
.y354{bottom:630.076933pt;}
.y328{bottom:630.082133pt;}
.y24c{bottom:630.092667pt;}
.y293{bottom:630.292133pt;}
.y3d5{bottom:630.339867pt;}
.y304{bottom:630.350400pt;}
.y5d3{bottom:630.462133pt;}
.y4f9{bottom:630.463733pt;}
.y58f{bottom:630.463867pt;}
.y175{bottom:630.465467pt;}
.y65b{bottom:630.469200pt;}
.y266{bottom:630.480933pt;}
.ydd{bottom:630.481067pt;}
.ybe{bottom:630.482133pt;}
.y120{bottom:630.553067pt;}
.y1e7{bottom:630.559067pt;}
.y476{bottom:630.570933pt;}
.y145{bottom:630.628533pt;}
.y55b{bottom:630.687067pt;}
.y538{bottom:630.738667pt;}
.y199{bottom:630.738800pt;}
.y63a{bottom:630.741200pt;}
.y5f6{bottom:630.910533pt;}
.y6a6{bottom:630.977467pt;}
.y49e{bottom:631.132000pt;}
.y428{bottom:631.404933pt;}
.y618{bottom:631.406533pt;}
.y217{bottom:631.426000pt;}
.y692{bottom:631.657867pt;}
.y44f{bottom:631.662800pt;}
.y81{bottom:635.357067pt;}
.y71f{bottom:638.587867pt;}
.y6b5{bottom:638.654267pt;}
.y22{bottom:641.887200pt;}
.y277{bottom:643.911200pt;}
.y6ed{bottom:644.544800pt;}
.y3d{bottom:644.847867pt;}
.y343{bottom:645.678667pt;}
.y5b{bottom:648.847867pt;}
.y56d{bottom:649.320933pt;}
.y678{bottom:650.259067pt;}
.y104{bottom:650.976800pt;}
.y4b9{bottom:653.436933pt;}
.y2b8{bottom:653.536133pt;}
.y2de{bottom:653.725067pt;}
.y3c8{bottom:653.786267pt;}
.y3fa{bottom:653.877733pt;}
.y51f{bottom:654.017467pt;}
.y39b{bottom:654.056000pt;}
.y375{bottom:654.071600pt;}
.y353{bottom:654.076933pt;}
.y327{bottom:654.082133pt;}
.y24b{bottom:654.092667pt;}
.y3d4{bottom:654.339867pt;}
.y5d2{bottom:654.462133pt;}
.y4f8{bottom:654.463733pt;}
.y58e{bottom:654.463867pt;}
.y174{bottom:654.465467pt;}
.y65a{bottom:654.469200pt;}
.y265{bottom:654.480933pt;}
.ydc{bottom:654.481067pt;}
.ybd{bottom:654.482133pt;}
.y50d{bottom:654.491667pt;}
.y1e6{bottom:654.559067pt;}
.y475{bottom:654.570933pt;}
.y144{bottom:654.628533pt;}
.y55a{bottom:654.687067pt;}
.y537{bottom:654.738667pt;}
.y198{bottom:654.738800pt;}
.y639{bottom:654.741200pt;}
.y5f5{bottom:654.910533pt;}
.y5b1{bottom:655.038133pt;}
.y49d{bottom:655.132000pt;}
.y427{bottom:655.404933pt;}
.y617{bottom:655.406533pt;}
.y216{bottom:655.426000pt;}
.y44e{bottom:655.662800pt;}
.y709{bottom:662.282667pt;}
.y21{bottom:665.887200pt;}
.y97{bottom:667.902933pt;}
.y3c{bottom:668.847867pt;}
.y71e{bottom:671.921200pt;}
.y6b4{bottom:671.987600pt;}
.y5a{bottom:672.847867pt;}
.y56c{bottom:673.320933pt;}
.y677{bottom:674.253733pt;}
.y80{bottom:675.357067pt;}
.y4b8{bottom:677.436933pt;}
.y2b7{bottom:677.536133pt;}
.y2dd{bottom:677.725067pt;}
.y3f9{bottom:677.877733pt;}
.y6ec{bottom:677.878133pt;}
.y51e{bottom:678.017467pt;}
.y39a{bottom:678.056000pt;}
.y374{bottom:678.071600pt;}
.y352{bottom:678.076933pt;}
.y326{bottom:678.082133pt;}
.y24a{bottom:678.092667pt;}
.y3d3{bottom:678.339867pt;}
.y303{bottom:678.350400pt;}
.y5d1{bottom:678.462133pt;}
.y4f7{bottom:678.463733pt;}
.y173{bottom:678.465467pt;}
.ydb{bottom:678.481067pt;}
.ybc{bottom:678.482133pt;}
.y11f{bottom:678.553067pt;}
.y1e5{bottom:678.559067pt;}
.y474{bottom:678.570933pt;}
.y143{bottom:678.628533pt;}
.y536{bottom:678.738667pt;}
.y197{bottom:678.738800pt;}
.y638{bottom:678.741200pt;}
.y6a5{bottom:678.981467pt;}
.y5b0{bottom:679.038133pt;}
.y49c{bottom:679.132000pt;}
.y426{bottom:679.404933pt;}
.y616{bottom:679.406533pt;}
.y215{bottom:679.426000pt;}
.y691{bottom:679.661867pt;}
.y44d{bottom:679.662800pt;}
.y20{bottom:689.887200pt;}
.y3b{bottom:692.847867pt;}
.y708{bottom:695.616000pt;}
.y1d0{bottom:696.698667pt;}
.y1d3{bottom:696.709333pt;}
.y59{bottom:696.847867pt;}
.y7f{bottom:699.357067pt;}
.y4b7{bottom:701.436933pt;}
.y2b6{bottom:701.536133pt;}
.y2dc{bottom:701.725067pt;}
.y51d{bottom:702.017467pt;}
.y399{bottom:702.056000pt;}
.y4d8{bottom:702.071600pt;}
.y351{bottom:702.076933pt;}
.y325{bottom:702.082133pt;}
.y249{bottom:702.092667pt;}
.y292{bottom:702.292133pt;}
.y3d2{bottom:702.339867pt;}
.y302{bottom:702.350400pt;}
.y5d0{bottom:702.462133pt;}
.y4f6{bottom:702.463733pt;}
.y58d{bottom:702.463867pt;}
.y172{bottom:702.465467pt;}
.y659{bottom:702.469200pt;}
.yda{bottom:702.481067pt;}
.ybb{bottom:702.482133pt;}
.y11e{bottom:702.553067pt;}
.y1e4{bottom:702.559067pt;}
.y473{bottom:702.570933pt;}
.y142{bottom:702.628533pt;}
.y559{bottom:702.687067pt;}
.y535{bottom:702.738667pt;}
.y196{bottom:702.738800pt;}
.y637{bottom:702.741200pt;}
.y5f4{bottom:702.910533pt;}
.y425{bottom:703.404933pt;}
.y615{bottom:703.406533pt;}
.y214{bottom:703.426000pt;}
.y690{bottom:703.656533pt;}
.y44c{bottom:703.662800pt;}
.y71d{bottom:705.254533pt;}
.y6d0{bottom:706.996667pt;}
.y6eb{bottom:711.211467pt;}
.y728{bottom:713.320933pt;}
.y1f{bottom:713.887200pt;}
.y3a{bottom:716.847867pt;}
.y707{bottom:719.616000pt;}
.y58{bottom:720.847867pt;}
.y56b{bottom:721.320933pt;}
.y676{bottom:722.257733pt;}
.y7e{bottom:723.357067pt;}
.y50c{bottom:723.494667pt;}
.y4b6{bottom:725.436933pt;}
.y2b5{bottom:725.536133pt;}
.y2db{bottom:725.725067pt;}
.y3f8{bottom:725.877733pt;}
.y51c{bottom:726.017467pt;}
.y398{bottom:726.056000pt;}
.y373{bottom:726.071600pt;}
.y324{bottom:726.082133pt;}
.y248{bottom:726.092667pt;}
.y291{bottom:726.292133pt;}
.y301{bottom:726.350400pt;}
.y5cf{bottom:726.462133pt;}
.y4f5{bottom:726.463733pt;}
.y58c{bottom:726.463867pt;}
.y27f{bottom:726.465467pt;}
.y658{bottom:726.469200pt;}
.yd9{bottom:726.481067pt;}
.yba{bottom:726.482133pt;}
.y11d{bottom:726.553067pt;}
.y1e3{bottom:726.559067pt;}
.y141{bottom:726.628533pt;}
.y558{bottom:726.687067pt;}
.y195{bottom:726.738800pt;}
.y636{bottom:726.741200pt;}
.y5f3{bottom:726.910533pt;}
.y6a4{bottom:726.985467pt;}
.y5af{bottom:727.038133pt;}
.y49b{bottom:727.132000pt;}
.y424{bottom:727.404933pt;}
.y614{bottom:727.406533pt;}
.y68f{bottom:727.651200pt;}
.y44b{bottom:727.662800pt;}
.y727{bottom:737.320933pt;}
.y1e{bottom:737.887200pt;}
.y71c{bottom:738.587867pt;}
.y6cf{bottom:740.330000pt;}
.y39{bottom:740.847867pt;}
.y6ea{bottom:744.544800pt;}
.y57{bottom:744.847867pt;}
.y56a{bottom:745.320933pt;}
.y7d{bottom:747.357067pt;}
.y7c{bottom:747.362400pt;}
.y22e{bottom:747.365333pt;}
.y4b5{bottom:749.436933pt;}
.y2b4{bottom:749.536133pt;}
.y2da{bottom:749.725067pt;}
.y3f7{bottom:749.877733pt;}
.y51b{bottom:750.017467pt;}
.y397{bottom:750.056000pt;}
.y372{bottom:750.071600pt;}
.y350{bottom:750.076933pt;}
.y323{bottom:750.082133pt;}
.y247{bottom:750.092667pt;}
.y290{bottom:750.292133pt;}
.y3d1{bottom:750.339867pt;}
.y300{bottom:750.350400pt;}
.y5ce{bottom:750.462133pt;}
.y4f4{bottom:750.463733pt;}
.y58b{bottom:750.463867pt;}
.y171{bottom:750.465467pt;}
.y657{bottom:750.469200pt;}
.yd8{bottom:750.481067pt;}
.yb9{bottom:750.482133pt;}
.y11c{bottom:750.553067pt;}
.y1e2{bottom:750.559067pt;}
.y472{bottom:750.570933pt;}
.y557{bottom:750.687067pt;}
.y194{bottom:750.738800pt;}
.y5f2{bottom:750.910533pt;}
.y6a3{bottom:750.980133pt;}
.y5ae{bottom:751.038133pt;}
.y49a{bottom:751.132000pt;}
.y423{bottom:751.404933pt;}
.y613{bottom:751.406533pt;}
.y213{bottom:751.426000pt;}
.y44a{bottom:751.662800pt;}
.y706{bottom:752.949333pt;}
.y6b3{bottom:759.987600pt;}
.y38{bottom:764.847867pt;}
.y6e9{bottom:768.544800pt;}
.y56{bottom:768.847867pt;}
.y569{bottom:769.320933pt;}
.y675{bottom:770.261733pt;}
.y7b{bottom:771.357067pt;}
.y71b{bottom:771.921200pt;}
.y4b4{bottom:773.436933pt;}
.y2b3{bottom:773.536133pt;}
.y6ce{bottom:773.663333pt;}
.y2d9{bottom:773.725067pt;}
.y3f6{bottom:773.877733pt;}
.y51a{bottom:774.017467pt;}
.y396{bottom:774.056000pt;}
.y371{bottom:774.071600pt;}
.y34f{bottom:774.076933pt;}
.y322{bottom:774.082133pt;}
.y246{bottom:774.092667pt;}
.y28f{bottom:774.292133pt;}
.y2ff{bottom:774.350400pt;}
.y5cd{bottom:774.462133pt;}
.y4f3{bottom:774.463733pt;}
.y58a{bottom:774.463867pt;}
.y170{bottom:774.465467pt;}
.y656{bottom:774.469200pt;}
.yd7{bottom:774.481067pt;}
.yb8{bottom:774.482133pt;}
.y11b{bottom:774.553067pt;}
.y471{bottom:774.570933pt;}
.y140{bottom:774.628533pt;}
.y556{bottom:774.687067pt;}
.y193{bottom:774.738800pt;}
.y635{bottom:774.741200pt;}
.y5f1{bottom:774.910533pt;}
.y5ad{bottom:775.038133pt;}
.y499{bottom:775.132000pt;}
.y422{bottom:775.404933pt;}
.y612{bottom:775.406533pt;}
.y212{bottom:775.426000pt;}
.y68e{bottom:775.655200pt;}
.y449{bottom:775.662800pt;}
.y705{bottom:776.949333pt;}
.y726{bottom:785.326267pt;}
.y37{bottom:788.847867pt;}
.y568{bottom:793.320933pt;}
.y7a{bottom:795.357067pt;}
.y4b3{bottom:797.436933pt;}
.y2b2{bottom:797.536133pt;}
.y2d8{bottom:797.725067pt;}
.y3f5{bottom:797.877733pt;}
.y519{bottom:798.017467pt;}
.y395{bottom:798.056000pt;}
.y370{bottom:798.071600pt;}
.y34e{bottom:798.076933pt;}
.y321{bottom:798.082133pt;}
.y3b8{bottom:798.092667pt;}
.y28e{bottom:798.292133pt;}
.y3d0{bottom:798.339867pt;}
.y2fe{bottom:798.350400pt;}
.y5cc{bottom:798.462133pt;}
.y4f2{bottom:798.463733pt;}
.y589{bottom:798.463867pt;}
.y16f{bottom:798.465467pt;}
.y655{bottom:798.469200pt;}
.yd6{bottom:798.481067pt;}
.yb7{bottom:798.482133pt;}
.y11a{bottom:798.553067pt;}
.y1e1{bottom:798.559067pt;}
.y470{bottom:798.570933pt;}
.y555{bottom:798.687067pt;}
.y192{bottom:798.738800pt;}
.y634{bottom:798.741200pt;}
.y5f0{bottom:798.910533pt;}
.y6a2{bottom:798.984133pt;}
.y5ac{bottom:799.038133pt;}
.y498{bottom:799.132000pt;}
.y421{bottom:799.404933pt;}
.y611{bottom:799.406533pt;}
.y211{bottom:799.426000pt;}
.y68d{bottom:799.649867pt;}
.y448{bottom:799.662800pt;}
.y6e8{bottom:801.878133pt;}
.y71a{bottom:805.254533pt;}
.y6cd{bottom:806.991333pt;}
.y725{bottom:809.320933pt;}
.y704{bottom:810.282667pt;}
.y96{bottom:811.902933pt;}
.y36{bottom:812.847867pt;}
.y567{bottom:817.320933pt;}
.y674{bottom:818.265733pt;}
.y79{bottom:819.357067pt;}
.y4b2{bottom:821.436933pt;}
.y2d7{bottom:821.725067pt;}
.y3f4{bottom:821.877733pt;}
.y518{bottom:822.017467pt;}
.y394{bottom:822.056000pt;}
.y36f{bottom:822.071600pt;}
.y34d{bottom:822.076933pt;}
.y320{bottom:822.082133pt;}
.y245{bottom:822.092667pt;}
.y28d{bottom:822.292133pt;}
.y3cf{bottom:822.339867pt;}
.y2fd{bottom:822.350400pt;}
.y4f1{bottom:822.463733pt;}
.y588{bottom:822.463867pt;}
.y16e{bottom:822.465467pt;}
.y654{bottom:822.469200pt;}
.yd5{bottom:822.481067pt;}
.yb6{bottom:822.482133pt;}
.y1e0{bottom:822.559067pt;}
.y46f{bottom:822.570933pt;}
.y13f{bottom:822.628533pt;}
.y554{bottom:822.687067pt;}
.y191{bottom:822.738800pt;}
.y633{bottom:822.741200pt;}
.y5ef{bottom:822.910533pt;}
.y5ab{bottom:823.038133pt;}
.y497{bottom:823.132000pt;}
.y420{bottom:823.404933pt;}
.y610{bottom:823.406533pt;}
.y210{bottom:823.426000pt;}
.y447{bottom:823.662800pt;}
.y6cc{bottom:825.663333pt;}
.y6e7{bottom:825.878133pt;}
.y3c7{bottom:832.719600pt;}
.y703{bottom:834.282667pt;}
.y719{bottom:838.587867pt;}
.y566{bottom:841.320933pt;}
.y78{bottom:843.357067pt;}
.y2b1{bottom:845.536133pt;}
.y2d6{bottom:845.725067pt;}
.y3f3{bottom:845.877733pt;}
.y517{bottom:846.017467pt;}
.y393{bottom:846.056000pt;}
.y36e{bottom:846.071600pt;}
.y244{bottom:846.092667pt;}
.y3ce{bottom:846.339867pt;}
.y2fc{bottom:846.350400pt;}
.y5cb{bottom:846.462133pt;}
.y4f0{bottom:846.463733pt;}
.y587{bottom:846.463867pt;}
.y16d{bottom:846.465467pt;}
.y653{bottom:846.469200pt;}
.yd4{bottom:846.481067pt;}
.yb5{bottom:846.482133pt;}
.y119{bottom:846.553067pt;}
.y1df{bottom:846.559067pt;}
.y46e{bottom:846.570933pt;}
.y553{bottom:846.687067pt;}
.y190{bottom:846.738800pt;}
.y632{bottom:846.741200pt;}
.y6a1{bottom:846.988133pt;}
.y5aa{bottom:847.038133pt;}
.y496{bottom:847.132000pt;}
.y41f{bottom:847.404933pt;}
.y60f{bottom:847.406533pt;}
.y20f{bottom:847.426000pt;}
.y68c{bottom:847.653867pt;}
.y446{bottom:847.662800pt;}
.y724{bottom:857.320933pt;}
.y6cb{bottom:858.996667pt;}
.y6e6{bottom:859.211467pt;}
.y55{bottom:864.847867pt;}
.y77{bottom:867.357067pt;}
.y702{bottom:867.616000pt;}
.y2b0{bottom:869.536133pt;}
.y2d5{bottom:869.725067pt;}
.y3f2{bottom:869.877733pt;}
.y516{bottom:870.017467pt;}
.y392{bottom:870.056000pt;}
.y4d7{bottom:870.071600pt;}
.y34c{bottom:870.076933pt;}
.y31f{bottom:870.082133pt;}
.y243{bottom:870.092667pt;}
.y28c{bottom:870.292133pt;}
.y3cd{bottom:870.339867pt;}
.y2fb{bottom:870.350400pt;}
.y5ca{bottom:870.462133pt;}
.y4ef{bottom:870.463733pt;}
.y16c{bottom:870.465467pt;}
.y652{bottom:870.469200pt;}
.yd3{bottom:870.481067pt;}
.yb4{bottom:870.482133pt;}
.y118{bottom:870.553067pt;}
.y1de{bottom:870.559067pt;}
.y46d{bottom:870.570933pt;}
.y552{bottom:870.687067pt;}
.y1cb{bottom:870.738800pt;}
.y5ee{bottom:870.910533pt;}
.y5a9{bottom:871.038133pt;}
.y495{bottom:871.132000pt;}
.y41e{bottom:871.404933pt;}
.y60e{bottom:871.406533pt;}
.y20e{bottom:871.426000pt;}
.y68b{bottom:871.648533pt;}
.y445{bottom:871.662800pt;}
.y718{bottom:871.921200pt;}
.y1d{bottom:881.887200pt;}
.y6b2{bottom:889.320933pt;}
.y701{bottom:891.616000pt;}
.y6ca{bottom:892.330000pt;}
.y6e5{bottom:892.544800pt;}
.y4b1{bottom:893.436933pt;}
.y2af{bottom:893.536133pt;}
.y2d4{bottom:893.725067pt;}
.y3f1{bottom:893.877733pt;}
.y515{bottom:894.017467pt;}
.y391{bottom:894.056000pt;}
.y36d{bottom:894.071600pt;}
.y34b{bottom:894.076933pt;}
.y31e{bottom:894.082133pt;}
.y242{bottom:894.092667pt;}
.y28b{bottom:894.292133pt;}
.y2fa{bottom:894.350400pt;}
.y5c9{bottom:894.462133pt;}
.y4ee{bottom:894.463733pt;}
.y586{bottom:894.463867pt;}
.y16b{bottom:894.465467pt;}
.yd2{bottom:894.481067pt;}
.yb3{bottom:894.482133pt;}
.y117{bottom:894.553067pt;}
.y1dd{bottom:894.559067pt;}
.y46c{bottom:894.570933pt;}
.y551{bottom:894.687067pt;}
.y18f{bottom:894.738800pt;}
.y631{bottom:894.741200pt;}
.y5ed{bottom:894.910533pt;}
.y6a0{bottom:894.992133pt;}
.y5a8{bottom:895.038133pt;}
.y494{bottom:895.132000pt;}
.y60d{bottom:895.406533pt;}
.y20d{bottom:895.426000pt;}
.y68a{bottom:895.643200pt;}
.y444{bottom:895.662800pt;}
.y717{bottom:905.254533pt;}
.y76{bottom:907.362400pt;}
.y35{bottom:908.847867pt;}
.y565{bottom:913.320933pt;}
.y4b0{bottom:917.436933pt;}
.y2ae{bottom:917.536133pt;}
.y2d3{bottom:917.725067pt;}
.y3f0{bottom:917.877733pt;}
.y514{bottom:918.017467pt;}
.y390{bottom:918.056000pt;}
.y36c{bottom:918.071600pt;}
.y34a{bottom:918.076933pt;}
.y31d{bottom:918.082133pt;}
.y241{bottom:918.092667pt;}
.y28a{bottom:918.292133pt;}
.y3cc{bottom:918.339867pt;}
.y2f9{bottom:918.350400pt;}
.y5c8{bottom:918.462133pt;}
.y4ed{bottom:918.463733pt;}
.y585{bottom:918.463867pt;}
.y16a{bottom:918.465467pt;}
.y651{bottom:918.469200pt;}
.yd1{bottom:918.481067pt;}
.yb2{bottom:918.482133pt;}
.y1dc{bottom:918.559067pt;}
.y46b{bottom:918.570933pt;}
.y550{bottom:918.687067pt;}
.y18e{bottom:918.738800pt;}
.y630{bottom:918.741200pt;}
.y5ec{bottom:918.910533pt;}
.y5a7{bottom:919.038133pt;}
.y493{bottom:919.132000pt;}
.y41d{bottom:919.404933pt;}
.y60c{bottom:919.406533pt;}
.y20c{bottom:919.426000pt;}
.y443{bottom:919.662800pt;}
.y723{bottom:921.320933pt;}
.y700{bottom:924.949333pt;}
.y6c9{bottom:925.663333pt;}
.y6e4{bottom:925.878133pt;}
.y716{bottom:929.254533pt;}
.y75{bottom:931.357067pt;}
.y9{bottom:933.119067pt;}
.y673{bottom:938.265733pt;}
.y2ad{bottom:941.536133pt;}
.y2d2{bottom:941.725067pt;}
.y3ef{bottom:941.877733pt;}
.y513{bottom:942.017467pt;}
.y38f{bottom:942.056000pt;}
.y36b{bottom:942.071600pt;}
.y349{bottom:942.076933pt;}
.y31c{bottom:942.082133pt;}
.y240{bottom:942.092667pt;}
.y289{bottom:942.292133pt;}
.y3cb{bottom:942.339867pt;}
.y2f8{bottom:942.350400pt;}
.y5c7{bottom:942.462133pt;}
.y584{bottom:942.463867pt;}
.y169{bottom:942.465467pt;}
.y650{bottom:942.469200pt;}
.yd0{bottom:942.481067pt;}
.yb1{bottom:942.482133pt;}
.y1db{bottom:942.559067pt;}
.y46a{bottom:942.570933pt;}
.y54f{bottom:942.687067pt;}
.y203{bottom:942.738800pt;}
.y62f{bottom:942.741200pt;}
.y5eb{bottom:942.910533pt;}
.y69f{bottom:942.996133pt;}
.y492{bottom:943.132000pt;}
.y41c{bottom:943.404933pt;}
.y60b{bottom:943.406533pt;}
.y20b{bottom:943.426000pt;}
.y689{bottom:943.647200pt;}
.y442{bottom:943.662800pt;}
.y72c{bottom:954.783067pt;}
.y74{bottom:955.357067pt;}
.y730{bottom:955.728000pt;}
.y6ff{bottom:958.282667pt;}
.y6c8{bottom:958.996667pt;}
.y6e3{bottom:959.211467pt;}
.y564{bottom:961.320933pt;}
.y4af{bottom:965.430267pt;}
.y2ac{bottom:965.536133pt;}
.y2d1{bottom:965.725067pt;}
.y512{bottom:966.017467pt;}
.y38e{bottom:966.056000pt;}
.y36a{bottom:966.071600pt;}
.y348{bottom:966.076933pt;}
.y31b{bottom:966.082133pt;}
.y23f{bottom:966.092667pt;}
.y288{bottom:966.292133pt;}
.y5c6{bottom:966.462133pt;}
.y4ec{bottom:966.463733pt;}
.y583{bottom:966.463867pt;}
.y27e{bottom:966.465467pt;}
.y64f{bottom:966.469200pt;}
.ycf{bottom:966.481067pt;}
.y1da{bottom:966.559067pt;}
.y469{bottom:966.570933pt;}
.y54e{bottom:966.687067pt;}
.y1ca{bottom:966.738800pt;}
.y62e{bottom:966.741200pt;}
.y5ea{bottom:966.910533pt;}
.y5a6{bottom:967.038133pt;}
.y491{bottom:967.132000pt;}
.y8{bottom:967.366533pt;}
.y41b{bottom:967.404933pt;}
.y60a{bottom:967.406533pt;}
.y688{bottom:967.641867pt;}
.y441{bottom:967.662800pt;}
.y7{bottom:984.963333pt;}
.y2{bottom:985.280533pt;}
.y722{bottom:985.320933pt;}
.y732{bottom:986.072533pt;}
.y672{bottom:986.265733pt;}
.y72b{bottom:986.783067pt;}
.y72f{bottom:987.728000pt;}
.y4ae{bottom:989.436933pt;}
.y2d0{bottom:989.725067pt;}
.y3ee{bottom:989.877733pt;}
.y38d{bottom:990.056000pt;}
.y369{bottom:990.071600pt;}
.y347{bottom:990.076933pt;}
.y31a{bottom:990.082133pt;}
.y23e{bottom:990.092667pt;}
.y287{bottom:990.292133pt;}
.y2f7{bottom:990.350400pt;}
.y5c5{bottom:990.462133pt;}
.y582{bottom:990.463867pt;}
.y27d{bottom:990.465467pt;}
.y64e{bottom:990.469200pt;}
.y107{bottom:990.481067pt;}
.y1d9{bottom:990.559067pt;}
.y468{bottom:990.570933pt;}
.y54d{bottom:990.687067pt;}
.y202{bottom:990.738800pt;}
.y62d{bottom:990.741200pt;}
.y5e9{bottom:990.910533pt;}
.y5a5{bottom:991.038133pt;}
.y490{bottom:991.132000pt;}
.y41a{bottom:991.404933pt;}
.y609{bottom:991.406533pt;}
.y20a{bottom:991.426000pt;}
.y6fe{bottom:991.616000pt;}
.y6c7{bottom:992.330000pt;}
.y6e2{bottom:992.544800pt;}
.y73{bottom:1002.023733pt;}
.y73b{bottom:1013.120400pt;}
.y6{bottom:1013.446533pt;}
.y14{bottom:1013.912400pt;}
.y5{bottom:1031.360133pt;}
.y52f{bottom:1051.800000pt;}
.y4e6{bottom:1053.617333pt;}
.y209{bottom:1053.816000pt;}
.y235{bottom:1053.892000pt;}
.y1fe{bottom:1053.968000pt;}
.y15c{bottom:1054.194667pt;}
.y167{bottom:1054.345333pt;}
.y1b3{bottom:1054.382667pt;}
.y136{bottom:1054.496000pt;}
.y10f{bottom:1054.798667pt;}
.yfd{bottom:1054.950667pt;}
.y532{bottom:1056.620000pt;}
.y4eb{bottom:1058.436000pt;}
.y22d{bottom:1058.634667pt;}
.y23c{bottom:1058.710667pt;}
.y200{bottom:1058.786667pt;}
.y162{bottom:1059.013333pt;}
.y18c{bottom:1059.164000pt;}
.y1b8{bottom:1059.202667pt;}
.y13d{bottom:1059.316000pt;}
.y115{bottom:1059.617333pt;}
.yf7{bottom:1059.769333pt;}
.y73c{bottom:1103.999200pt;}
.y15{bottom:1104.791200pt;}
.h9{height:1.717500pt;}
.h2e{height:10.942800pt;}
.h2c{height:13.264000pt;}
.h23{height:18.393333pt;}
.h29{height:18.394667pt;}
.h25{height:23.212000pt;}
.h27{height:23.213333pt;}
.h34{height:29.844000pt;}
.h2a{height:34.608000pt;}
.h22{height:37.437500pt;}
.hd{height:39.261440pt;}
.h7{height:39.403520pt;}
.h1f{height:39.792000pt;}
.h28{height:42.117188pt;}
.h2b{height:42.234375pt;}
.h26{height:42.632812pt;}
.h3{height:43.505920pt;}
.h2d{height:43.812500pt;}
.h10{height:44.213333pt;}
.h21{height:44.800000pt;}
.h2f{height:46.796875pt;}
.h32{height:46.927083pt;}
.h39{height:47.369792pt;}
.h30{height:47.463542pt;}
.he{height:47.717547pt;}
.h8{height:47.750400pt;}
.h5{height:47.923200pt;}
.h18{height:51.476562pt;}
.h1d{height:51.619792pt;}
.h38{height:52.106771pt;}
.h20{height:53.056000pt;}
.hc{height:53.248000pt;}
.h1c{height:56.113583pt;}
.h3b{height:56.134917pt;}
.h12{height:56.156250pt;}
.h13{height:56.312500pt;}
.h33{height:56.500000pt;}
.h1e{height:56.843750pt;}
.h6{height:59.116800pt;}
.h3c{height:59.117333pt;}
.h4{height:59.136000pt;}
.h31{height:61.580729pt;}
.h24{height:63.949219pt;}
.h19{height:66.317708pt;}
.h35{height:66.318775pt;}
.h3a{height:70.195312pt;}
.h16{height:71.054688pt;}
.h1a{height:74.875000pt;}
.h17{height:75.791667pt;}
.h15{height:79.581250pt;}
.h36{height:85.265625pt;}
.h14{height:94.739583pt;}
.hf{height:106.496000pt;}
.hb{height:112.000000pt;}
.h11{height:113.687500pt;}
.h37{height:123.161458pt;}
.h1b{height:140.390625pt;}
.ha{height:321.280000pt;}
.h2{height:1121.728000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wd{width:-222.940000pt;}
.w7{width:231.326000pt;}
.w9{width:231.326400pt;}
.w5{width:231.326667pt;}
.wa{width:231.326800pt;}
.w6{width:231.326933pt;}
.w8{width:285.441333pt;}
.w4{width:285.442667pt;}
.wb{width:397.317333pt;}
.wc{width:425.662667pt;}
.w3{width:574.400000pt;}
.w2{width:793.700000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x1{left:-334.620933pt;}
.x8{left:-76.512267pt;}
.x9{left:-74.280267pt;}
.x4{left:-72.537333pt;}
.x7{left:-65.683467pt;}
.x3{left:-54.940533pt;}
.x6{left:-46.108267pt;}
.x2{left:-35.100800pt;}
.xa{left:-33.678933pt;}
.x5{left:-31.900267pt;}
.x0{left:0.000000pt;}
.x23{left:3.217333pt;}
.xc{left:4.797733pt;}
.xf{left:6.821067pt;}
.x5a{left:22.897333pt;}
.x57{left:25.441200pt;}
.xe{left:32.420000pt;}
.x21{left:41.722800pt;}
.x35{left:50.842800pt;}
.x5b{left:94.666667pt;}
.x22{left:98.782667pt;}
.x1d{left:101.102400pt;}
.x14{left:102.047200pt;}
.x24{left:103.197467pt;}
.x3b{left:106.866133pt;}
.xb{left:108.581333pt;}
.xd{left:113.379067pt;}
.x18{left:128.965867pt;}
.x5c{left:135.968533pt;}
.x47{left:138.665333pt;}
.x10{left:139.842533pt;}
.x36{left:141.679733pt;}
.x55{left:145.338533pt;}
.x1e{left:147.406400pt;}
.x2d{left:149.669200pt;}
.x38{left:158.671867pt;}
.x54{left:164.335867pt;}
.x1f{left:176.335867pt;}
.x3a{left:178.215200pt;}
.x39{left:184.104933pt;}
.x1b{left:185.196800pt;}
.x2c{left:192.755867pt;}
.x32{left:198.587200pt;}
.x1a{left:202.632533pt;}
.x58{left:207.746533pt;}
.x2e{left:209.663200pt;}
.x4a{left:215.622000pt;}
.x42{left:217.333333pt;}
.x4f{left:221.900267pt;}
.x2b{left:230.539200pt;}
.x43{left:235.946133pt;}
.x44{left:256.806133pt;}
.x19{left:261.632533pt;}
.x11{left:269.402533pt;}
.x56{left:280.620000pt;}
.x60{left:291.286000pt;}
.x61{left:292.396533pt;}
.x5f{left:297.952667pt;}
.x13{left:302.962800pt;}
.x34{left:308.965333pt;}
.x5e{left:312.163600pt;}
.x50{left:326.833600pt;}
.x16{left:328.904267pt;}
.x15{left:345.521467pt;}
.x12{left:347.002533pt;}
.x62{left:353.142133pt;}
.x37{left:361.202133pt;}
.x17{left:376.514533pt;}
.x28{left:379.983867pt;}
.x26{left:381.483200pt;}
.x29{left:382.959867pt;}
.x25{left:386.834667pt;}
.x2a{left:388.491600pt;}
.x27{left:389.673867pt;}
.x3d{left:396.005200pt;}
.x41{left:397.039333pt;}
.x3e{left:409.502667pt;}
.x20{left:420.084000pt;}
.x33{left:433.175200pt;}
.x59{left:437.338533pt;}
.x30{left:460.000800pt;}
.x3c{left:461.532800pt;}
.x2f{left:468.788800pt;}
.x5d{left:507.275600pt;}
.x48{left:527.351733pt;}
.x4b{left:528.685067pt;}
.x4d{left:530.018400pt;}
.x45{left:532.685067pt;}
.x52{left:536.383200pt;}
.x49{left:548.211733pt;}
.x4c{left:549.545067pt;}
.x4e{left:550.878400pt;}
.x46{left:553.545067pt;}
.x53{left:557.243200pt;}
.x3f{left:567.277333pt;}
.x6d{left:573.438133pt;}
.x40{left:581.582833pt;}
.x6c{left:656.807333pt;}
.x6a{left:662.055200pt;}
.x6b{left:664.455333pt;}
.x68{left:665.703333pt;}
.x51{left:667.786133pt;}
.x69{left:669.463200pt;}
.x67{left:670.951200pt;}
.x31{left:673.609067pt;}
.x1c{left:675.238000pt;}
.x66{left:678.599067pt;}
.x64{left:680.087200pt;}
.x65{left:682.631067pt;}
.x63{left:688.585467pt;}
.x74{left:831.546800pt;}
.x75{left:833.778800pt;}
.x70{left:835.521600pt;}
.x73{left:842.375600pt;}
.x6f{left:853.118400pt;}
.x72{left:861.950800pt;}
.x6e{left:872.958267pt;}
.x76{left:874.380133pt;}
.x71{left:876.158800pt;}
.x7a{left:914.880133pt;}
.x79{left:940.479067pt;}
.x77{left:1016.640000pt;}
.x78{left:1021.438133pt;}
}




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