
    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_67791e91fb62325e66c4cce7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.892000;font-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_7767576e7466ad531cc1133f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-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_e4322d5ccfd8f8205e595da4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;font-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_4754365a24c066e3f2afb3c4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.761000;font-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_807dcf4e2acb242ea73ca9dc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;font-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_4b82030989b656f5d10d7baa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.736000;font-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_d0c6562702f94ed1f3977945.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.660000;font-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_ae3d30b173e585783f2d5020.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.885000;font-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_b07bf58e823fff1c83314cf1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.897000;font-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_ebd9fb100053aa7182d6cf3c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.665000;font-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_519cf85b0bf983677457c24b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.665000;font-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_b37d0d23192b43f60fae7ce5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.734000;font-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_9a657673f37da4efc0bc44b4.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.193359;font-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_b197cf83df0e39d0cfd36573.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.011230;font-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_97893d835609bfd79ae291c9.woff2')format("woff");}.fff{font-family:fff;line-height:1.009766;font-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_5e9a12916bb5ed845559f765.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-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_9a657673f37da4efc0bc44b4.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.193359;font-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_c35896e5b4ac2923986edc1f.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.011230;font-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_5b3656f15e135fbcbbb671fe.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.009766;font-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_5e9a12916bb5ed845559f765.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.666504;font-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_9a657673f37da4efc0bc44b4.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.193359;font-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_c35896e5b4ac2923986edc1f.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.011230;font-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_5b3656f15e135fbcbbb671fe.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.009766;font-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_5e9a12916bb5ed845559f765.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.666504;font-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_52d8a2dcfbcee1aacc6bdb2e.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.670000;font-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_9a657673f37da4efc0bc44b4.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.193359;font-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_d759bd0eebacd6a100b4c979.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.011230;font-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_fa8e9cc5f71821a9368f092a.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.009766;font-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_5e9a12916bb5ed845559f765.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.666504;font-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_9a657673f37da4efc0bc44b4.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.193359;font-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_0260fc1fe0d816d217650160.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.011230;font-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_7ac45077005165d7286704f4.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.009766;font-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_5e9a12916bb5ed845559f765.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.666504;font-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_86000e18079b3961aecf55d1.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.666504;font-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_8bd25da5c9d474f3c59e1a4b.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.752441;font-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_9a657673f37da4efc0bc44b4.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.193359;font-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_e68f5cd13313c26110d35fe4.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.011230;font-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_288cded3a5c91e2ab62deaa2.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.009766;font-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_5e9a12916bb5ed845559f765.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.666504;font-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_9a657673f37da4efc0bc44b4.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.193359;font-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_e68f5cd13313c26110d35fe4.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.011230;font-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_288cded3a5c91e2ab62deaa2.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.009766;font-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_5e9a12916bb5ed845559f765.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.666504;font-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_9a657673f37da4efc0bc44b4.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.193359;font-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_97a8d2ec65d7ac5f8a1b3255.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.011230;font-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_49d1c829853bcf4ba372471d.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.009766;font-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_5e9a12916bb5ed845559f765.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.666504;font-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_9a657673f37da4efc0bc44b4.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.193359;font-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_62b803017fb90e8f9d4aa089.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.011230;font-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_4f6940d507141c66dd66d434.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.009766;font-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_5e9a12916bb5ed845559f765.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.666504;font-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_86000e18079b3961aecf55d1.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.666504;font-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_1002a272f45bb6ad68451c6a.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.752441;font-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_9a657673f37da4efc0bc44b4.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.193359;font-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_ae4b42df42f426e11e735cbd.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.011230;font-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_97893d835609bfd79ae291c9.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.009766;font-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_5e9a12916bb5ed845559f765.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.666504;font-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_86000e18079b3961aecf55d1.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.666504;font-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_9a657673f37da4efc0bc44b4.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.193359;font-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_ae4b42df42f426e11e735cbd.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.011230;font-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_97893d835609bfd79ae291c9.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:1.009766;font-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_5e9a12916bb5ed845559f765.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.666504;font-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_86000e18079b3961aecf55d1.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.666504;font-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_9a657673f37da4efc0bc44b4.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.193359;font-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_fba08d2f9d2d83d493ce1517.woff2')format("woff");}.ff41{font-family:ff41;line-height:1.011230;font-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_b3ebc0fa7286044984451d60.woff2')format("woff");}.ff42{font-family:ff42;line-height:1.009766;font-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_5e9a12916bb5ed845559f765.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.666504;font-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_86000e18079b3961aecf55d1.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.666504;font-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_9a657673f37da4efc0bc44b4.woff2')format("woff");}.ff45{font-family:ff45;line-height:1.193359;font-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_9a8acd4005bcb439bd318627.woff2')format("woff");}.ff46{font-family:ff46;line-height:1.011230;font-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_7516f9d6fff53261162a8cf0.woff2')format("woff");}.ff47{font-family:ff47;line-height:1.009766;font-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_5e9a12916bb5ed845559f765.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.666504;font-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_86000e18079b3961aecf55d1.woff2')format("woff");}.ff49{font-family:ff49;line-height:0.666504;font-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_9a657673f37da4efc0bc44b4.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:1.193359;font-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_66418453ee53151a89bb5a83.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:1.011230;font-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_e8409dee53101ee93d41ef64.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:1.009766;font-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_5e9a12916bb5ed845559f765.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:0.666504;font-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_86000e18079b3961aecf55d1.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:0.666504;font-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_ee5b2b15e8c87859a3043e91.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:1.009000;font-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_f11f81a4dffa97d11a45a161.woff2')format("woff");}.ff50{font-family:ff50;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff51;src:url('chunks/assets/font_a2d84e85c253dde9dc1323ca.woff2')format("woff");}.ff51{font-family:ff51;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.530000px;}
.v4{vertical-align:-15.120000px;}
.v7{vertical-align:-1.614000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:1.614000px;}
.ve{vertical-align:4.322628px;}
.vd{vertical-align:6.120216px;}
.v3{vertical-align:15.112656px;}
.v8{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.v6{vertical-align:28.448640px;}
.vc{vertical-align:29.634000px;}
.v5{vertical-align:34.669440px;}
.vb{vertical-align:36.120000px;}
.va{vertical-align:40.322484px;}
.ls29{letter-spacing:-0.553104px;}
.ls82{letter-spacing:-0.318636px;}
.ls50{letter-spacing:-0.302778px;}
.ls72{letter-spacing:-0.294588px;}
.lsc0{letter-spacing:-0.276552px;}
.lsa7{letter-spacing:-0.258516px;}
.lscb{letter-spacing:-0.246492px;}
.ls7b{letter-spacing:-0.226800px;}
.ls81{letter-spacing:-0.222444px;}
.lsbf{letter-spacing:-0.210420px;}
.ls46{letter-spacing:-0.197975px;}
.ls25{letter-spacing:-0.192384px;}
.ls73{letter-spacing:-0.186372px;}
.ls67{letter-spacing:-0.178200px;}
.lsb7{letter-spacing:-0.172800px;}
.lsa6{letter-spacing:-0.168336px;}
.ls26{letter-spacing:-0.162324px;}
.lsd6{letter-spacing:-0.156312px;}
.ls74{letter-spacing:-0.150300px;}
.lsab{letter-spacing:-0.132264px;}
.lsa9{letter-spacing:-0.126252px;}
.lsd7{letter-spacing:-0.124200px;}
.lsc9{letter-spacing:-0.120240px;}
.lscc{letter-spacing:-0.114228px;}
.ls4c{letter-spacing:-0.112364px;}
.lsb9{letter-spacing:-0.108216px;}
.ls75{letter-spacing:-0.102204px;}
.ls7a{letter-spacing:-0.091800px;}
.ls7d{letter-spacing:-0.090180px;}
.lsd8{letter-spacing:-0.081000px;}
.ls4b{letter-spacing:-0.080260px;}
.lsca{letter-spacing:-0.078156px;}
.lsb8{letter-spacing:-0.072144px;}
.ls52{letter-spacing:-0.067284px;}
.ls83{letter-spacing:-0.066132px;}
.ls79{letter-spacing:-0.064800px;}
.lsa8{letter-spacing:-0.059400px;}
.ls2c{letter-spacing:-0.054108px;}
.lsaa{letter-spacing:-0.048096px;}
.ls70{letter-spacing:-0.043200px;}
.lsbe{letter-spacing:-0.042084px;}
.ls51{letter-spacing:-0.038448px;}
.ls6f{letter-spacing:-0.037800px;}
.ls2a{letter-spacing:-0.036072px;}
.ls4d{letter-spacing:-0.032104px;}
.ls28{letter-spacing:-0.030060px;}
.ls4f{letter-spacing:-0.028836px;}
.lsd9{letter-spacing:-0.027000px;}
.ls2b{letter-spacing:-0.024048px;}
.ls48{letter-spacing:-0.024030px;}
.ls68{letter-spacing:-0.021600px;}
.ls47{letter-spacing:-0.019224px;}
.ls24{letter-spacing:-0.018036px;}
.ls71{letter-spacing:-0.016200px;}
.ls49{letter-spacing:-0.016052px;}
.ls27{letter-spacing:-0.012024px;}
.ls78{letter-spacing:-0.010800px;}
.ls2d{letter-spacing:-0.006012px;}
.ls76{letter-spacing:-0.005400px;}
.ls4a{letter-spacing:-0.005351px;}
.lse{letter-spacing:0.000000px;}
.ls88{letter-spacing:0.000090px;}
.ls60{letter-spacing:0.000092px;}
.ls99{letter-spacing:0.000094px;}
.ls59{letter-spacing:0.000145px;}
.lsbb{letter-spacing:0.000435px;}
.ls91{letter-spacing:0.000500px;}
.ls57{letter-spacing:0.000612px;}
.lsc6{letter-spacing:0.001036px;}
.ls87{letter-spacing:0.001087px;}
.ls9b{letter-spacing:0.001133px;}
.ls66{letter-spacing:0.001177px;}
.lsb{letter-spacing:0.001518px;}
.ls93{letter-spacing:0.001541px;}
.ls10{letter-spacing:0.001574px;}
.ls58{letter-spacing:0.002100px;}
.ls44{letter-spacing:0.002224px;}
.ls8c{letter-spacing:0.002304px;}
.lscf{letter-spacing:0.002338px;}
.ls5e{letter-spacing:0.002352px;}
.ls9a{letter-spacing:0.002400px;}
.lsa5{letter-spacing:0.002589px;}
.ls2{letter-spacing:0.002725px;}
.ls13{letter-spacing:0.002870px;}
.ls15{letter-spacing:0.002958px;}
.ls89{letter-spacing:0.003040px;}
.ls5f{letter-spacing:0.003103px;}
.ls11{letter-spacing:0.003161px;}
.ls5b{letter-spacing:0.003167px;}
.ls9{letter-spacing:0.003226px;}
.ls12{letter-spacing:0.003343px;}
.lsd{letter-spacing:0.003488px;}
.lsa{letter-spacing:0.003494px;}
.ls31{letter-spacing:0.003598px;}
.ls9e{letter-spacing:0.004013px;}
.ls98{letter-spacing:0.004090px;}
.lsc7{letter-spacing:0.004435px;}
.lsce{letter-spacing:0.004864px;}
.ls3f{letter-spacing:0.005351px;}
.ls63{letter-spacing:0.005400px;}
.ls30{letter-spacing:0.005415px;}
.ls21{letter-spacing:0.006012px;}
.lsaf{letter-spacing:0.007200px;}
.ls43{letter-spacing:0.009612px;}
.ls3d{letter-spacing:0.010701px;}
.ls69{letter-spacing:0.010800px;}
.ls7c{letter-spacing:0.012024px;}
.ls39{letter-spacing:0.014418px;}
.ls3c{letter-spacing:0.016052px;}
.lsa3{letter-spacing:0.016200px;}
.ls1a{letter-spacing:0.018036px;}
.ls64{letter-spacing:0.021600px;}
.ls42{letter-spacing:0.024030px;}
.ls1f{letter-spacing:0.024048px;}
.ls65{letter-spacing:0.027000px;}
.ls36{letter-spacing:0.028836px;}
.ls1c{letter-spacing:0.030060px;}
.lsd3{letter-spacing:0.032400px;}
.ls3b{letter-spacing:0.033642px;}
.ls1e{letter-spacing:0.036072px;}
.ls62{letter-spacing:0.037800px;}
.ls1b{letter-spacing:0.042084px;}
.ls3e{letter-spacing:0.042805px;}
.lsa2{letter-spacing:0.043200px;}
.ls3a{letter-spacing:0.043254px;}
.ls19{letter-spacing:0.048096px;}
.lsc3{letter-spacing:0.048600px;}
.ls37{letter-spacing:0.052866px;}
.ls23{letter-spacing:0.054000px;}
.ls22{letter-spacing:0.054108px;}
.ls41{letter-spacing:0.058857px;}
.ls1d{letter-spacing:0.060120px;}
.lsc4{letter-spacing:0.064800px;}
.ls20{letter-spacing:0.066132px;}
.ls32{letter-spacing:0.068181px;}
.ls2e{letter-spacing:0.072144px;}
.ls16{letter-spacing:0.076608px;}
.ls7e{letter-spacing:0.078156px;}
.ls6b{letter-spacing:0.084168px;}
.ls40{letter-spacing:0.085611px;}
.lsad{letter-spacing:0.086184px;}
.lscd{letter-spacing:0.090180px;}
.lsd0{letter-spacing:0.096192px;}
.ls6a{letter-spacing:0.102204px;}
.lsd1{letter-spacing:0.102600px;}
.ls7f{letter-spacing:0.108216px;}
.ls38{letter-spacing:0.110538px;}
.lsd2{letter-spacing:0.113400px;}
.ls80{letter-spacing:0.114228px;}
.ls85{letter-spacing:0.120240px;}
.ls35{letter-spacing:0.123066px;}
.lsc2{letter-spacing:0.126252px;}
.ls84{letter-spacing:0.132264px;}
.lsbc{letter-spacing:0.138276px;}
.lsc5{letter-spacing:0.144288px;}
.lsac{letter-spacing:0.150300px;}
.ls34{letter-spacing:0.153408px;}
.ls33{letter-spacing:0.161930px;}
.ls2f{letter-spacing:0.162324px;}
.ls18{letter-spacing:0.172368px;}
.ls17{letter-spacing:0.181944px;}
.lsae{letter-spacing:0.191520px;}
.lse0{letter-spacing:0.524565px;}
.lsdd{letter-spacing:0.530447px;}
.lsde{letter-spacing:0.537859px;}
.lsf{letter-spacing:1.275394px;}
.ls8{letter-spacing:1.861130px;}
.ls8a{letter-spacing:2.869056px;}
.ls8d{letter-spacing:2.874816px;}
.ls61{letter-spacing:2.928828px;}
.ls9c{letter-spacing:2.988600px;}
.ls0{letter-spacing:2.989200px;}
.ls9d{letter-spacing:2.994600px;}
.ls77{letter-spacing:3.780000px;}
.lsc{letter-spacing:11.954850px;}
.lsdb{letter-spacing:12.938155px;}
.ls5c{letter-spacing:13.179893px;}
.ls5d{letter-spacing:13.181784px;}
.lsdc{letter-spacing:13.418663px;}
.lsd5{letter-spacing:13.448400px;}
.lsda{letter-spacing:13.448832px;}
.ls96{letter-spacing:13.448870px;}
.ls97{letter-spacing:13.450800px;}
.lsd4{letter-spacing:13.454400px;}
.ls54{letter-spacing:13.808083px;}
.lsdf{letter-spacing:13.989859px;}
.ls53{letter-spacing:14.346144px;}
.ls5a{letter-spacing:14.465695px;}
.ls86{letter-spacing:14.704798px;}
.ls6d{letter-spacing:14.760863px;}
.ls8e{letter-spacing:14.764573px;}
.lsba{letter-spacing:14.777220px;}
.ls56{letter-spacing:14.874829px;}
.ls55{letter-spacing:14.880712px;}
.ls4{letter-spacing:14.944200px;}
.ls6e{letter-spacing:14.946124px;}
.lsb6{letter-spacing:14.978059px;}
.lsb5{letter-spacing:14.984071px;}
.lsb3{letter-spacing:15.026450px;}
.lsb4{letter-spacing:15.032573px;}
.ls94{letter-spacing:15.308083px;}
.lse1{letter-spacing:15.509224px;}
.ls8f{letter-spacing:16.662318px;}
.lsb2{letter-spacing:16.710124px;}
.lsb1{letter-spacing:16.716006px;}
.ls95{letter-spacing:17.168947px;}
.lsb0{letter-spacing:17.216006px;}
.ls90{letter-spacing:17.935200px;}
.ls92{letter-spacing:18.515259px;}
.ls1{letter-spacing:57.415200px;}
.ls3{letter-spacing:57.421200px;}
.ls6{letter-spacing:70.236600px;}
.ls7{letter-spacing:72.353510px;}
.ls5{letter-spacing:72.361200px;}
.ls14{letter-spacing:252.308074px;}
.ls9f{letter-spacing:268.633133px;}
.lsa1{letter-spacing:282.079133px;}
.lsa0{letter-spacing:282.085133px;}
.ls8b{letter-spacing:405.856447px;}
.lsa4{letter-spacing:422.767133px;}
.ls6c{letter-spacing:846.000000px;}
.lsc1{letter-spacing:975.332772px;}
.lsbd{letter-spacing:976.408920px;}
.lsc8{letter-spacing:980.010108px;}
.ls4e{letter-spacing:1158.004867px;}
.ls45{letter-spacing:1167.298998px;}
.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;}
}
.wsd8{word-spacing:-60.120000px;}
.wsd5{word-spacing:-36.000000px;}
.wsd6{word-spacing:-33.120000px;}
.wsb{word-spacing:-17.394700px;}
.ws9c{word-spacing:-15.655334px;}
.wsda{word-spacing:-15.144228px;}
.wsd9{word-spacing:-15.108156px;}
.ws174{word-spacing:-15.084108px;}
.ws175{word-spacing:-15.030000px;}
.ws4{word-spacing:-14.943900px;}
.ws22{word-spacing:-13.915795px;}
.ws1c4{word-spacing:-13.548600px;}
.ws3d{word-spacing:-13.449600px;}
.ws92{word-spacing:-13.376700px;}
.wsc9{word-spacing:-13.180608px;}
.ws103{word-spacing:-12.911616px;}
.ws150{word-spacing:-12.161520px;}
.ws4b{word-spacing:-12.151944px;}
.ws14f{word-spacing:-12.056184px;}
.ws4a{word-spacing:-12.046608px;}
.ws93{word-spacing:-12.015000px;}
.ws4c{word-spacing:-11.970000px;}
.ws20{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.ws90{word-spacing:-10.815230px;}
.ws8f{word-spacing:-10.721481px;}
.ws91{word-spacing:-10.653300px;}
.ws4d{word-spacing:-9.000000px;}
.wsd7{word-spacing:-8.280000px;}
.wsd{word-spacing:-5.260253px;}
.ws47{word-spacing:-4.722272px;}
.wscb{word-spacing:-4.465267px;}
.ws89{word-spacing:-4.423394px;}
.ws8a{word-spacing:-4.004965px;}
.ws116{word-spacing:-3.945190px;}
.ws16f{word-spacing:-3.885414px;}
.wsc{word-spacing:-3.706087px;}
.ws27{word-spacing:-3.586536px;}
.wsed{word-spacing:-3.565116px;}
.ws13c{word-spacing:-3.511008px;}
.ws172{word-spacing:-3.407209px;}
.ws1c0{word-spacing:-3.281702px;}
.ws13b{word-spacing:-3.252492px;}
.wsc2{word-spacing:-3.227882px;}
.wsee{word-spacing:-3.174336px;}
.ws7b{word-spacing:-3.096180px;}
.ws171{word-spacing:-3.048556px;}
.ws173{word-spacing:-2.988780px;}
.ws101{word-spacing:-2.869229px;}
.ws45{word-spacing:-2.809453px;}
.wsc6{word-spacing:-2.797517px;}
.ws177{word-spacing:-2.783556px;}
.ws124{word-spacing:-2.743718px;}
.ws7c{word-spacing:-2.627244px;}
.ws18f{word-spacing:-2.570351px;}
.ws125{word-spacing:-2.528525px;}
.ws74{word-spacing:-2.434860px;}
.ws46{word-spacing:-2.391024px;}
.ws178{word-spacing:-2.386764px;}
.ws15e{word-spacing:-2.370600px;}
.ws15d{word-spacing:-2.349000px;}
.ws15c{word-spacing:-2.327400px;}
.ws179{word-spacing:-2.218428px;}
.ws77{word-spacing:-2.122236px;}
.ws75{word-spacing:-2.110212px;}
.ws76{word-spacing:-2.098188px;}
.wsdb{word-spacing:-2.092146px;}
.ws67{word-spacing:-2.068128px;}
.ws1cf{word-spacing:-2.062116px;}
.ws10{word-spacing:-2.032370px;}
.ws11c{word-spacing:-1.936742px;}
.ws10a{word-spacing:-1.912819px;}
.ws9{word-spacing:-1.908367px;}
.ws25{word-spacing:-1.853044px;}
.ws20b{word-spacing:-1.829146px;}
.ws2e{word-spacing:-1.793268px;}
.ws1d0{word-spacing:-1.761516px;}
.ws17a{word-spacing:-1.737468px;}
.ws1a7{word-spacing:-1.731456px;}
.ws1a6{word-spacing:-1.695384px;}
.wsbe{word-spacing:-1.673717px;}
.ws11d{word-spacing:-1.667750px;}
.wsbf{word-spacing:-1.613941px;}
.ws28{word-spacing:-1.494390px;}
.ws16c{word-spacing:-1.434614px;}
.ws5e{word-spacing:-1.412820px;}
.ws187{word-spacing:-1.406808px;}
.ws1da{word-spacing:-1.388772px;}
.ws1db{word-spacing:-1.376748px;}
.ws152{word-spacing:-1.374839px;}
.ws186{word-spacing:-1.370736px;}
.ws1af{word-spacing:-1.358712px;}
.ws13e{word-spacing:-1.346688px;}
.ws201{word-spacing:-1.344960px;}
.ws13f{word-spacing:-1.334664px;}
.ws1e3{word-spacing:-1.323000px;}
.ws8{word-spacing:-1.322630px;}
.ws1e4{word-spacing:-1.306800px;}
.ws157{word-spacing:-1.269000px;}
.wsf3{word-spacing:-1.263600px;}
.wsa{word-spacing:-1.255288px;}
.ws158{word-spacing:-1.236600px;}
.ws1d9{word-spacing:-1.196388px;}
.ws32{word-spacing:-1.195512px;}
.wsc1{word-spacing:-1.135736px;}
.ws16d{word-spacing:-1.075961px;}
.ws13d{word-spacing:-1.058112px;}
.ws185{word-spacing:-1.052100px;}
.ws15f{word-spacing:-1.022040px;}
.ws34{word-spacing:-1.016185px;}
.ws1b0{word-spacing:-0.997992px;}
.ws9b{word-spacing:-0.968371px;}
.ws35{word-spacing:-0.956410px;}
.ws36{word-spacing:-0.896634px;}
.wsb1{word-spacing:-0.770498px;}
.ws206{word-spacing:-0.753178px;}
.ws2d{word-spacing:-0.717307px;}
.ws139{word-spacing:-0.709416px;}
.ws138{word-spacing:-0.703404px;}
.ws9a{word-spacing:-0.699379px;}
.wsdc{word-spacing:-0.657532px;}
.ws1e7{word-spacing:-0.653400px;}
.ws13a{word-spacing:-0.649296px;}
.wsb2{word-spacing:-0.647432px;}
.ws1b7{word-spacing:-0.631260px;}
.ws24{word-spacing:-0.597756px;}
.ws1e8{word-spacing:-0.561600px;}
.ws49{word-spacing:-0.537980px;}
.ws1b8{word-spacing:-0.517032px;}
.ws1ff{word-spacing:-0.484186px;}
.wsc3{word-spacing:-0.478205px;}
.ws33{word-spacing:-0.418429px;}
.ws189{word-spacing:-0.396792px;}
.ws193{word-spacing:-0.384768px;}
.wsf9{word-spacing:-0.372744px;}
.wsce{word-spacing:-0.358654px;}
.ws70{word-spacing:-0.336672px;}
.ws216{word-spacing:-0.332535px;}
.ws1ac{word-spacing:-0.330660px;}
.ws1c9{word-spacing:-0.322790px;}
.ws146{word-spacing:-0.312624px;}
.ws71{word-spacing:-0.306612px;}
.wsb3{word-spacing:-0.299638px;}
.ws26{word-spacing:-0.298878px;}
.wsf6{word-spacing:-0.282564px;}
.ws156{word-spacing:-0.277704px;}
.ws1b3{word-spacing:-0.276552px;}
.ws4e{word-spacing:-0.272916px;}
.wsc7{word-spacing:-0.268992px;}
.ws1f4{word-spacing:-0.264528px;}
.ws9d{word-spacing:-0.242895px;}
.ws29{word-spacing:-0.239102px;}
.ws217{word-spacing:-0.215194px;}
.wse6{word-spacing:-0.189000px;}
.ws1a{word-spacing:-0.179327px;}
.wsef{word-spacing:-0.168336px;}
.wse8{word-spacing:-0.162000px;}
.ws95{word-spacing:-0.161395px;}
.ws145{word-spacing:-0.144288px;}
.wse5{word-spacing:-0.140400px;}
.wse7{word-spacing:-0.135000px;}
.ws1c{word-spacing:-0.119551px;}
.wscd{word-spacing:-0.107597px;}
.ws18b{word-spacing:-0.102204px;}
.ws5d{word-spacing:-0.078156px;}
.ws5{word-spacing:-0.059776px;}
.ws3c{word-spacing:-0.053798px;}
.wsc8{word-spacing:-0.052722px;}
.ws104{word-spacing:-0.051646px;}
.ws14{word-spacing:-0.045430px;}
.wscc{word-spacing:-0.041843px;}
.wsca{word-spacing:-0.041006px;}
.ws105{word-spacing:-0.040169px;}
.wsf8{word-spacing:-0.018036px;}
.ws1ce{word-spacing:-0.006012px;}
.ws3{word-spacing:-0.005624px;}
.wse1{word-spacing:-0.004506px;}
.wse2{word-spacing:-0.001500px;}
.ws1ca{word-spacing:-0.000845px;}
.ws1{word-spacing:-0.000550px;}
.ws0{word-spacing:0.000000px;}
.ws1f8{word-spacing:0.001670px;}
.ws1f{word-spacing:0.002661px;}
.wsfa{word-spacing:0.006012px;}
.ws1b5{word-spacing:0.012024px;}
.ws1df{word-spacing:0.030060px;}
.ws7e{word-spacing:0.036072px;}
.ws1cd{word-spacing:0.048096px;}
.ws94{word-spacing:0.053798px;}
.ws115{word-spacing:0.054108px;}
.ws13{word-spacing:0.059776px;}
.ws114{word-spacing:0.060120px;}
.ws17b{word-spacing:0.066132px;}
.ws66{word-spacing:0.072144px;}
.ws1a2{word-spacing:0.102204px;}
.ws6{word-spacing:0.107597px;}
.ws197{word-spacing:0.113400px;}
.ws188{word-spacing:0.114228px;}
.wsa5{word-spacing:0.115344px;}
.ws23{word-spacing:0.119551px;}
.ws80{word-spacing:0.124200px;}
.wsa6{word-spacing:0.124956px;}
.ws15a{word-spacing:0.129600px;}
.ws1f2{word-spacing:0.135000px;}
.ws1f3{word-spacing:0.145800px;}
.wsd4{word-spacing:0.151200px;}
.wsd3{word-spacing:0.156600px;}
.ws16a{word-spacing:0.161395px;}
.ws1ee{word-spacing:0.162000px;}
.ws1e9{word-spacing:0.167400px;}
.ws111{word-spacing:0.172800px;}
.ws7f{word-spacing:0.178200px;}
.ws15{word-spacing:0.179327px;}
.wsf7{word-spacing:0.180360px;}
.ws15b{word-spacing:0.183600px;}
.wsb5{word-spacing:0.192624px;}
.ws192{word-spacing:0.210420px;}
.ws203{word-spacing:0.215194px;}
.ws144{word-spacing:0.237600px;}
.ws1b{word-spacing:0.239102px;}
.ws18a{word-spacing:0.240480px;}
.ws147{word-spacing:0.252504px;}
.ws11e{word-spacing:0.268992px;}
.wsf4{word-spacing:0.270000px;}
.wsf{word-spacing:0.298878px;}
.ws19{word-spacing:0.358654px;}
.wsf5{word-spacing:0.405000px;}
.ws1f9{word-spacing:0.430387px;}
.ws1d8{word-spacing:0.444888px;}
.ws153{word-spacing:0.478205px;}
.ws1bf{word-spacing:0.484186px;}
.ws155{word-spacing:0.537980px;}
.ws8b{word-spacing:0.597756px;}
.ws134{word-spacing:0.619236px;}
.wscf{word-spacing:0.657532px;}
.wse{word-spacing:0.717307px;}
.ws6b{word-spacing:0.745488px;}
.ws1be{word-spacing:0.753178px;}
.wsbd{word-spacing:0.768960px;}
.ws1d7{word-spacing:0.781560px;}
.ws127{word-spacing:0.806976px;}
.ws1d3{word-spacing:0.823644px;}
.wsbc{word-spacing:0.826632px;}
.ws6c{word-spacing:0.835668px;}
.ws31{word-spacing:0.836858px;}
.ws143{word-spacing:0.858600px;}
.wsd1{word-spacing:0.864000px;}
.wsd2{word-spacing:0.896400px;}
.wse4{word-spacing:0.896634px;}
.wsd0{word-spacing:0.923400px;}
.ws1d4{word-spacing:0.943884px;}
.ws16b{word-spacing:0.956410px;}
.ws118{word-spacing:1.016185px;}
.ws1fd{word-spacing:1.022170px;}
.ws12{word-spacing:1.075961px;}
.ws97{word-spacing:1.075968px;}
.ws7d{word-spacing:1.100196px;}
.wse9{word-spacing:1.106208px;}
.ws6a{word-spacing:1.112220px;}
.ws68{word-spacing:1.124244px;}
.ws126{word-spacing:1.129766px;}
.ws1d{word-spacing:1.135736px;}
.ws98{word-spacing:1.183565px;}
.ws82{word-spacing:1.195512px;}
.ws69{word-spacing:1.208412px;}
.ws99{word-spacing:1.237363px;}
.ws18{word-spacing:1.255288px;}
.ws168{word-spacing:1.268532px;}
.wsc5{word-spacing:1.291162px;}
.ws30{word-spacing:1.315063px;}
.wsb4{word-spacing:1.316267px;}
.wsa7{word-spacing:1.343021px;}
.ws96{word-spacing:1.344960px;}
.ws128{word-spacing:1.374839px;}
.wsa2{word-spacing:1.388934px;}
.ws102{word-spacing:1.398758px;}
.wsa1{word-spacing:1.412964px;}
.wsa3{word-spacing:1.427382px;}
.ws42{word-spacing:1.434614px;}
.wsa0{word-spacing:1.461024px;}
.wsa4{word-spacing:1.465830px;}
.ws1ab{word-spacing:1.484964px;}
.wsdf{word-spacing:1.494390px;}
.ws218{word-spacing:1.506355px;}
.ws1aa{word-spacing:1.527048px;}
.wse0{word-spacing:1.554166px;}
.wsc4{word-spacing:1.560154px;}
.ws1e6{word-spacing:1.571400px;}
.wsde{word-spacing:1.613941px;}
.ws222{word-spacing:1.613952px;}
.ws169{word-spacing:1.647288px;}
.ws170{word-spacing:1.673717px;}
.ws10c{word-spacing:1.733492px;}
.ws1e5{word-spacing:1.744200px;}
.ws129{word-spacing:1.793268px;}
.ws83{word-spacing:1.853044px;}
.ws10b{word-spacing:1.912819px;}
.wsa8{word-spacing:1.985102px;}
.wsa9{word-spacing:2.017206px;}
.ws81{word-spacing:2.032370px;}
.ws223{word-spacing:2.044339px;}
.ws84{word-spacing:2.151922px;}
.ws209{word-spacing:2.158047px;}
.ws1bb{word-spacing:2.200392px;}
.ws20a{word-spacing:2.205734px;}
.ws17e{word-spacing:2.206404px;}
.ws11b{word-spacing:2.211697px;}
.ws167{word-spacing:2.224440px;}
.ws11a{word-spacing:2.227023px;}
.ws1fb{word-spacing:2.259533px;}
.ws151{word-spacing:2.271473px;}
.ws166{word-spacing:2.272536px;}
.ws2f{word-spacing:2.331248px;}
.ws204{word-spacing:2.367130px;}
.ws88{word-spacing:2.450800px;}
.ws199{word-spacing:2.525040px;}
.ws1dc{word-spacing:2.543076px;}
.ws5b{word-spacing:2.549088px;}
.ws1c3{word-spacing:2.582323px;}
.ws5c{word-spacing:2.609208px;}
.wsc0{word-spacing:2.630126px;}
.ws214{word-spacing:2.636122px;}
.ws133{word-spacing:2.656800px;}
.ws6e{word-spacing:2.663316px;}
.ws132{word-spacing:2.673000px;}
.ws165{word-spacing:2.687364px;}
.ws2a{word-spacing:2.689902px;}
.ws224{word-spacing:2.743718px;}
.ws12a{word-spacing:2.749678px;}
.ws1ea{word-spacing:2.781000px;}
.wsdd{word-spacing:2.809453px;}
.ws21b{word-spacing:2.851315px;}
.ws44{word-spacing:2.869229px;}
.ws136{word-spacing:2.891772px;}
.ws21c{word-spacing:2.905114px;}
.ws6f{word-spacing:2.921832px;}
.ws6d{word-spacing:2.945880px;}
.ws198{word-spacing:2.951892px;}
.ws137{word-spacing:2.963916px;}
.ws190{word-spacing:2.988780px;}
.ws1ec{word-spacing:3.040200px;}
.ws1ed{word-spacing:3.051000px;}
.ws1f1{word-spacing:3.056400px;}
.ws16e{word-spacing:3.168107px;}
.ws38{word-spacing:3.174106px;}
.ws86{word-spacing:3.227882px;}
.ws87{word-spacing:3.287658px;}
.ws1b6{word-spacing:3.300588px;}
.ws1e2{word-spacing:3.315600px;}
.wsb6{word-spacing:3.340170px;}
.ws1e0{word-spacing:3.358800px;}
.ws1e1{word-spacing:3.391200px;}
.wsb7{word-spacing:3.393036px;}
.ws142{word-spacing:3.402000px;}
.ws141{word-spacing:3.412800px;}
.ws140{word-spacing:3.423600px;}
.ws2c{word-spacing:3.466985px;}
.ws37{word-spacing:3.496896px;}
.ws100{word-spacing:3.526760px;}
.ws117{word-spacing:3.586536px;}
.ws1d1{word-spacing:3.625236px;}
.ws85{word-spacing:3.646312px;}
.ws43{word-spacing:3.706087px;}
.ws202{word-spacing:3.712090px;}
.ws12c{word-spacing:3.742200px;}
.ws119{word-spacing:3.765863px;}
.wsf0{word-spacing:3.785400px;}
.ws12b{word-spacing:3.801600px;}
.ws21f{word-spacing:3.819686px;}
.ws215{word-spacing:3.927283px;}
.ws21d{word-spacing:3.981082px;}
.ws154{word-spacing:4.004965px;}
.ws8c{word-spacing:4.064741px;}
.ws18e{word-spacing:4.184292px;}
.ws17c{word-spacing:4.244472px;}
.ws18d{word-spacing:4.303872px;}
.ws17d{word-spacing:4.328640px;}
.ws1c6{word-spacing:4.411469px;}
.ws8d{word-spacing:4.483170px;}
.ws159{word-spacing:4.492800px;}
.ws1c1{word-spacing:4.572864px;}
.wsba{word-spacing:4.604148px;}
.wsbb{word-spacing:4.637790px;}
.ws41{word-spacing:4.662497px;}
.ws18c{word-spacing:4.680461px;}
.wsb8{word-spacing:4.685850px;}
.wsb9{word-spacing:4.714686px;}
.ws1a1{word-spacing:4.731444px;}
.ws1c5{word-spacing:4.734259px;}
.ws59{word-spacing:4.779540px;}
.ws5a{word-spacing:4.797576px;}
.ws1a0{word-spacing:4.869720px;}
.ws205{word-spacing:4.949453px;}
.ws200{word-spacing:5.003251px;}
.ws14d{word-spacing:5.021150px;}
.ws14e{word-spacing:5.080926px;}
.ws1fa{word-spacing:5.272243px;}
.ws20e{word-spacing:5.326042px;}
.ws207{word-spacing:5.373494px;}
.ws1fc{word-spacing:5.375731px;}
.ws20d{word-spacing:5.375779px;}
.ws1c8{word-spacing:5.376000px;}
.ws21e{word-spacing:5.379715px;}
.ws7{word-spacing:5.379840px;}
.ws21a{word-spacing:5.380368px;}
.ws212{word-spacing:5.382000px;}
.ws19a{word-spacing:5.428836px;}
.ws1fe{word-spacing:5.433638px;}
.ws19c{word-spacing:5.482944px;}
.ws20c{word-spacing:5.487437px;}
.ws19b{word-spacing:5.506992px;}
.ws213{word-spacing:5.648832px;}
.ws39{word-spacing:5.702630px;}
.ws1e{word-spacing:5.738458px;}
.wse3{word-spacing:5.798233px;}
.ws11{word-spacing:5.858009px;}
.ws1ef{word-spacing:5.940000px;}
.ws1f0{word-spacing:5.967000px;}
.ws17{word-spacing:5.977560px;}
.ws1ba{word-spacing:6.066108px;}
.ws1b9{word-spacing:6.150276px;}
.ws56{word-spacing:6.180336px;}
.ws48{word-spacing:6.276438px;}
.ws10e{word-spacing:6.294413px;}
.ws55{word-spacing:6.402780px;}
.ws8e{word-spacing:6.455765px;}
.ws208{word-spacing:6.509606px;}
.ws195{word-spacing:6.631200px;}
.ws194{word-spacing:6.636600px;}
.ws196{word-spacing:6.652800px;}
.ws1eb{word-spacing:6.663600px;}
.ws10d{word-spacing:6.724800px;}
.ws1f5{word-spacing:6.971400px;}
.ws1f6{word-spacing:6.987600px;}
.ws1f7{word-spacing:7.014600px;}
.ws1ad{word-spacing:7.256484px;}
.ws211{word-spacing:7.262784px;}
.ws163{word-spacing:7.310592px;}
.ws210{word-spacing:7.316582px;}
.ws164{word-spacing:7.322616px;}
.ws2b{word-spacing:7.471950px;}
.ws191{word-spacing:7.591501px;}
.ws180{word-spacing:7.593156px;}
.ws161{word-spacing:7.635240px;}
.ws162{word-spacing:8.001972px;}
.ws160{word-spacing:8.038044px;}
.ws9e{word-spacing:8.096508px;}
.ws219{word-spacing:8.177357px;}
.ws1b1{word-spacing:8.368704px;}
.ws221{word-spacing:8.392550px;}
.ws17f{word-spacing:8.651268px;}
.ws16{word-spacing:8.727238px;}
.ws1cc{word-spacing:9.011988px;}
.ws1a8{word-spacing:9.036036px;}
.ws1a5{word-spacing:9.042048px;}
.ws4f{word-spacing:9.097200px;}
.ws1cb{word-spacing:9.102168px;}
.ws1dd{word-spacing:9.390744px;}
.ws78{word-spacing:9.408780px;}
.ws1de{word-spacing:9.444852px;}
.ws184{word-spacing:9.757476px;}
.ws183{word-spacing:9.769500px;}
.ws5f{word-spacing:9.775512px;}
.ws63{word-spacing:9.793548px;}
.ws1c7{word-spacing:9.952704px;}
.ws60{word-spacing:9.973908px;}
.ws58{word-spacing:10.527012px;}
.ws110{word-spacing:10.594800px;}
.wsaa{word-spacing:10.610398px;}
.ws10f{word-spacing:10.643400px;}
.ws57{word-spacing:10.689336px;}
.ws20f{word-spacing:11.136269px;}
.ws1a3{word-spacing:11.212380px;}
.ws1c2{word-spacing:11.459059px;}
.ws1b4{word-spacing:12.577104px;}
.wsea{word-spacing:12.619188px;}
.ws220{word-spacing:12.750221px;}
.wsec{word-spacing:12.841632px;}
.wseb{word-spacing:12.877704px;}
.ws62{word-spacing:12.991932px;}
.ws61{word-spacing:13.015980px;}
.ws1a9{word-spacing:13.034016px;}
.ws109{word-spacing:13.150632px;}
.wsab{word-spacing:13.210829px;}
.wsac{word-spacing:13.221530px;}
.ws72{word-spacing:13.406760px;}
.ws73{word-spacing:13.418784px;}
.ws1d2{word-spacing:13.701348px;}
.ws1a4{word-spacing:13.725396px;}
.wsae{word-spacing:13.852911px;}
.wsad{word-spacing:13.938521px;}
.ws19e{word-spacing:14.128200px;}
.ws19f{word-spacing:14.422788px;}
.ws7a{word-spacing:14.458860px;}
.ws79{word-spacing:14.795532px;}
.ws52{word-spacing:14.807556px;}
.ws113{word-spacing:15.204348px;}
.ws112{word-spacing:15.240420px;}
.ws1bc{word-spacing:16.202340px;}
.ws176{word-spacing:16.250436px;}
.ws1bd{word-spacing:16.310556px;}
.ws1ae{word-spacing:16.593120px;}
.ws1b2{word-spacing:16.611156px;}
.ws135{word-spacing:16.971876px;}
.ws64{word-spacing:17.368668px;}
.ws65{word-spacing:17.386704px;}
.ws19d{word-spacing:17.723376px;}
.wsf1{word-spacing:18.910800px;}
.wsf2{word-spacing:18.964800px;}
.ws181{word-spacing:19.094112px;}
.ws182{word-spacing:19.172268px;}
.ws54{word-spacing:23.470848px;}
.ws53{word-spacing:23.506920px;}
.ws50{word-spacing:25.959816px;}
.ws51{word-spacing:25.989876px;}
.ws1d5{word-spacing:26.013924px;}
.ws1d6{word-spacing:26.440776px;}
.wsb0{word-spacing:30.868073px;}
.wsaf{word-spacing:31.269374px;}
.ws3a{word-spacing:169.895347px;}
.ws3e{word-spacing:205.338528px;}
.ws120{word-spacing:214.649126px;}
.ws121{word-spacing:218.275910px;}
.ws11f{word-spacing:222.420864px;}
.ws123{word-spacing:227.179181px;}
.ws14b{word-spacing:228.930948px;}
.ws122{word-spacing:229.763827px;}
.ws3f{word-spacing:251.251421px;}
.ws12f{word-spacing:256.134182px;}
.ws3b{word-spacing:259.146893px;}
.ws12d{word-spacing:260.276659px;}
.ws108{word-spacing:260.556411px;}
.ws106{word-spacing:260.608057px;}
.ws40{word-spacing:262.875552px;}
.ws131{word-spacing:265.010918px;}
.ws130{word-spacing:271.466726px;}
.ws149{word-spacing:304.423632px;}
.ws14a{word-spacing:314.577900px;}
.ws148{word-spacing:318.918564px;}
.ws14c{word-spacing:324.299304px;}
.ws107{word-spacing:325.114491px;}
.ws12e{word-spacing:338.714726px;}
.wsfc{word-spacing:339.100848px;}
.wsfd{word-spacing:343.038708px;}
.wsfb{word-spacing:347.734080px;}
.wsff{word-spacing:353.114820px;}
.wsfe{word-spacing:356.012604px;}
.ws21{word-spacing:774.645899px;}
.ws9f{word-spacing:1102.454107px;}
._48{margin-left:-356.343264px;}
._4c{margin-left:-353.469528px;}
._3e{margin-left:-348.236813px;}
._44{margin-left:-343.393416px;}
._41{margin-left:-338.902452px;}
._6a{margin-left:-94.811950px;}
._5e{margin-left:-90.017546px;}
._64{margin-left:-85.192750px;}
._63{margin-left:-74.975652px;}
._6e{margin-left:-65.909556px;}
._61{margin-left:-60.474708px;}
._6b{margin-left:-58.623012px;}
._68{margin-left:-56.188152px;}
._47{margin-left:-53.915616px;}
._65{margin-left:-48.901608px;}
._6d{margin-left:-43.172172px;}
._60{margin-left:-37.755360px;}
._4b{margin-left:-35.903664px;}
._67{margin-left:-33.450768px;}
._43{margin-left:-25.827552px;}
._6c{margin-left:-20.488896px;}
._5f{margin-left:-14.344632px;}
._66{margin-left:-10.767492px;}
._1{margin-left:-7.962163px;}
._6{margin-left:-6.939994px;}
._4{margin-left:-5.917824px;}
._7{margin-left:-4.034880px;}
._9{margin-left:-2.047382px;}
._5{margin-left:-1.022170px;}
._a{width:1.091170px;}
._2{width:2.998903px;}
._62{width:6.120216px;}
._75{width:8.446349px;}
._76{width:10.544486px;}
._14{width:12.388600px;}
._2c{width:14.286368px;}
._d{width:16.034872px;}
._11{width:17.169303px;}
._8{width:18.829440px;}
._2d{width:19.854652px;}
._b{width:20.864472px;}
._e{width:22.072208px;}
._10{width:23.551586px;}
._c{width:25.539193px;}
._73{width:26.881550px;}
._f{width:28.154308px;}
._74{width:29.603934px;}
._2a{width:31.083312px;}
._29{width:32.350698px;}
._15{width:35.725180px;}
._0{width:37.658880px;}
._12{width:39.407132px;}
._3{width:54.410177px;}
._69{width:60.385771px;}
._45{width:95.500620px;}
._4f{width:98.482475px;}
._49{width:99.994886px;}
._1b{width:101.840371px;}
._3c{width:103.713012px;}
._1a{width:110.125325px;}
._3f{width:112.430412px;}
._5b{width:114.206334px;}
._5d{width:146.671137px;}
._46{width:150.594588px;}
._4a{width:168.576480px;}
._19{width:171.832090px;}
._3d{width:174.011328px;}
._42{width:178.496061px;}
._40{width:182.662596px;}
._1d{width:190.162742px;}
._1c{width:208.468800px;}
._18{width:221.757005px;}
._1e{width:229.665370px;}
._26{width:234.883814px;}
._20{width:239.725670px;}
._21{width:243.107904px;}
._1f{width:255.542400px;}
._23{width:256.564570px;}
._4e{width:264.415251px;}
._71{width:265.925491px;}
._22{width:268.992000px;}
._56{width:273.468027px;}
._55{width:276.050350px;}
._57{width:279.510663px;}
._72{width:281.042842px;}
._24{width:282.441600px;}
._50{width:283.487441px;}
._16{width:284.754931px;}
._17{width:287.767642px;}
._58{width:290.563006px;}
._27{width:292.286707px;}
._54{width:299.342905px;}
._25{width:300.410266px;}
._51{width:305.747067px;}
._5c{width:311.812186px;}
._53{width:318.658683px;}
._59{width:325.714881px;}
._70{width:331.989926px;}
._52{width:338.077753px;}
._37{width:342.748530px;}
._6f{width:352.099768px;}
._34{width:355.929138px;}
._32{width:365.471899px;}
._33{width:369.057024px;}
._2e{width:373.116651px;}
._31{width:375.383716px;}
._38{width:377.756225px;}
._35{width:380.286902px;}
._3b{width:409.495129px;}
._2f{width:489.844116px;}
._39{width:503.024724px;}
._36{width:541.617544px;}
._30{width:554.798152px;}
._3a{width:567.978760px;}
._2b{width:1758.982861px;}
._5a{width:1953.166958px;}
._28{width:1977.284114px;}
._4d{width:1987.278229px;}
._13{width:2011.188229px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(57,59,153);}
.fs12{font-size:33.120000px;}
.fsc{font-size:36.000000px;}
.fs15{font-size:40.169088px;}
.fs11{font-size:41.005944px;}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fsd{font-size:42.613200px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:47.880000px;}
.fse{font-size:48.060000px;}
.fs14{font-size:51.646464px;}
.fs10{font-size:52.722432px;}
.fsf{font-size:53.506800px;}
.fs5{font-size:53.798400px;}
.fsa{font-size:54.000000px;}
.fs1{font-size:59.775600px;}
.fsb{font-size:60.120000px;}
.fs13{font-size:72.000000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:120.948480px;}
.y29d{bottom:-755.611050px;}
.y2c1{bottom:-732.390708px;}
.y2c0{bottom:-712.230969px;}
.y227{bottom:-694.271550px;}
.y2bf{bottom:-691.980969px;}
.y2be{bottom:-671.727954px;}
.y236{bottom:-666.011550px;}
.y234{bottom:-666.011046px;}
.y235{bottom:-662.231550px;}
.y2bd{bottom:-651.478035px;}
.y233{bottom:-645.851307px;}
.y1ae{bottom:-637.799550px;}
.yd1{bottom:-635.665190px;}
.y2bc{bottom:-631.228116px;}
.y232{bottom:-625.601388px;}
.ye4{bottom:-619.004790px;}
.y1b6{bottom:-613.499469px;}
.y2bb{bottom:-610.978197px;}
.y231{bottom:-605.351469px;}
.ye3{bottom:-601.622690px;}
.y1b5{bottom:-593.249550px;}
.y2ba{bottom:-590.728278px;}
.y230{bottom:-585.101550px;}
.ye2{bottom:-584.321090px;}
.y2b9{bottom:-570.568539px;}
.ye1{bottom:-558.528064px;}
.y1b4{bottom:-555.540000px;}
.y2b8{bottom:-550.318620px;}
.y22f{bottom:-547.302000px;}
.ye0{bottom:-540.505637px;}
.y1b3{bottom:-536.009550px;}
.y2b7{bottom:-530.068701px;}
.y22e{bottom:-527.771550px;}
.y1b2{bottom:-511.529550px;}
.y2b6{bottom:-509.818782px;}
.y22d{bottom:-508.331550px;}
.y2b5{bottom:-489.568863px;}
.y14f{bottom:-486.395550px;}
.y22c{bottom:-483.851550px;}
.y1f7{bottom:-480.067050px;}
.y2b4{bottom:-469.318944px;}
.y20f{bottom:-449.646807px;}
.y2b3{bottom:-449.069025px;}
.y16a{bottom:-429.785550px;}
.y20e{bottom:-429.396888px;}
.y2b2{bottom:-419.909322px;}
.y20d{bottom:-409.146969px;}
.y169{bottom:-406.475127px;}
.y20c{bottom:-388.897050px;}
.y168{bottom:-386.225208px;}
.y2b1{bottom:-381.659475px;}
.y20b{bottom:-368.647050px;}
.y167{bottom:-365.975289px;}
.y2b0{bottom:-361.409556px;}
.y20a{bottom:-347.676819px;}
.y166{bottom:-345.815550px;}
.y1e8{bottom:-344.729550px;}
.y13e{bottom:-341.807550px;}
.y2af{bottom:-341.159637px;}
.y209{bottom:-327.426900px;}
.y205{bottom:-327.066969px;}
.y165{bottom:-325.565550px;}
.y2ae{bottom:-320.909718px;}
.y204{bottom:-306.817050px;}
.y208{bottom:-306.457050px;}
.y207{bottom:-306.456330px;}
.y162{bottom:-304.595550px;}
.y15f{bottom:-304.594767px;}
.y2ad{bottom:-300.659799px;}
.y15c{bottom:-294.425469px;}
.y164{bottom:-294.424749px;}
.y206{bottom:-286.206411px;}
.y161{bottom:-284.345631px;}
.y15e{bottom:-284.344848px;}
.y2ac{bottom:-280.409880px;}
.y15b{bottom:-274.175550px;}
.y163{bottom:-274.174830px;}
.y160{bottom:-264.095712px;}
.y15d{bottom:-264.094929px;}
.y2ab{bottom:-260.250141px;}
.y203{bottom:-255.967950px;}
.y2aa{bottom:-240.000222px;}
.y202{bottom:-236.437500px;}
.y15a{bottom:-233.856450px;}
.ydf{bottom:-233.482280px;}
.y2a9{bottom:-219.750303px;}
.y201{bottom:-216.907050px;}
.yde{bottom:-215.459853px;}
.y159{bottom:-214.326000px;}
.y254{bottom:-211.339050px;}
.y2a8{bottom:-199.500384px;}
.ydd{bottom:-197.437425px;}
.y158{bottom:-194.796000px;}
.y263{bottom:-183.079050px;}
.y261{bottom:-183.078546px;}
.ydc{bottom:-179.414997px;}
.y262{bottom:-179.299050px;}
.y2a7{bottom:-179.250465px;}
.y200{bottom:-179.016738px;}
.y157{bottom:-175.265550px;}
.y260{bottom:-162.918807px;}
.ydb{bottom:-161.472829px;}
.y2a6{bottom:-159.000546px;}
.y1ff{bottom:-158.766819px;}
.yda{bottom:-143.450401px;}
.y25f{bottom:-142.668888px;}
.y287{bottom:-138.802050px;}
.y2a5{bottom:-138.750627px;}
.y1fe{bottom:-138.516657px;}
.y156{bottom:-137.375388px;}
.y1bb{bottom:-126.143550px;}
.yd9{bottom:-125.427973px;}
.y25e{bottom:-122.418969px;}
.y2a4{bottom:-118.590888px;}
.y1fd{bottom:-118.266738px;}
.y155{bottom:-117.125469px;}
.yd8{bottom:-107.405545px;}
.y25d{bottom:-102.169050px;}
.y1c3{bottom:-101.843469px;}
.y2a3{bottom:-98.340969px;}
.y1fc{bottom:-98.016819px;}
.y154{bottom:-96.875469px;}
.yd7{bottom:-89.383117px;}
.y1c2{bottom:-81.593550px;}
.y2a2{bottom:-78.091050px;}
.y1fb{bottom:-77.766900px;}
.y153{bottom:-76.625550px;}
.yd6{bottom:-71.360690px;}
.yf3{bottom:-71.106772px;}
.y22b{bottom:-70.031550px;}
.y25c{bottom:-64.369500px;}
.y2f3{bottom:-61.395900px;}
.y106{bottom:-54.446373px;}
.y141{bottom:-53.538000px;}
.y22a{bottom:-50.501100px;}
.y1eb{bottom:-49.710000px;}
.y1b1{bottom:-46.320000px;}
.y25b{bottom:-44.839050px;}
.y1c1{bottom:-43.884000px;}
.y313{bottom:-42.946200px;}
.y9b{bottom:-41.922750px;}
.y2a1{bottom:-40.291500px;}
.y1fa{bottom:-40.057500px;}
.y152{bottom:-38.916000px;}
.yd5{bottom:-37.799190px;}
.y105{bottom:-37.064272px;}
.y140{bottom:-34.007550px;}
.y229{bottom:-30.970650px;}
.y1ea{bottom:-30.179550px;}
.y1b0{bottom:-26.789550px;}
.y25a{bottom:-25.399050px;}
.y1c0{bottom:-24.353550px;}
.y312{bottom:-23.415750px;}
.y2a0{bottom:-20.761050px;}
.y1f9{bottom:-20.527050px;}
.yd4{bottom:-20.417090px;}
.y104{bottom:-19.762672px;}
.y151{bottom:-19.385550px;}
.yb9{bottom:-18.702750px;}
.y1af{bottom:-2.309550px;}
.y259{bottom:-0.919050px;}
.y0{bottom:0.000000px;}
.y1bf{bottom:0.126450px;}
.y311{bottom:0.974208px;}
.y14{bottom:3.425340px;}
.y13f{bottom:3.432000px;}
.y1f8{bottom:3.952950px;}
.y150{bottom:5.094450px;}
.yd3{bottom:5.375183px;}
.yb8{bottom:5.778258px;}
.y103{bottom:6.030353px;}
.y228{bottom:6.468900px;}
.y1e9{bottom:7.260000px;}
.y29f{bottom:8.129031px;}
.y299{bottom:9.969687px;}
.y13{bottom:14.151273px;}
.y2{bottom:17.953290px;}
.yd2{bottom:23.397610px;}
.y102{bottom:24.052780px;}
.y29e{bottom:28.378950px;}
.y298{bottom:30.129426px;}
.y32{bottom:63.780000px;}
.y10b{bottom:106.845000px;}
.y31{bottom:108.612000px;}
.y95{bottom:118.255500px;}
.yba{bottom:118.728000px;}
.y223{bottom:119.029500px;}
.y284{bottom:119.757000px;}
.y66{bottom:123.121500px;}
.y184{bottom:125.968500px;}
.y10a{bottom:126.078000px;}
.y355{bottom:128.325000px;}
.y30{bottom:128.875500px;}
.y2e4{bottom:132.975000px;}
.y1e5{bottom:138.508500px;}
.y94{bottom:138.520500px;}
.y322{bottom:139.003500px;}
.y251{bottom:139.036500px;}
.y1c5{bottom:139.101000px;}
.y222{bottom:139.293000px;}
.y283{bottom:140.022000px;}
.y99{bottom:141.157200px;}
.y65{bottom:143.386500px;}
.y109{bottom:145.309500px;}
.y183{bottom:146.232000px;}
.y354{bottom:147.691500px;}
.y2f{bottom:149.139000px;}
.y2e3{bottom:153.238500px;}
.y1e4{bottom:155.754000px;}
.y1c4{bottom:158.334000px;}
.y321{bottom:158.371500px;}
.y93{bottom:158.784000px;}
.y24f{bottom:159.300000px;}
.y221{bottom:159.558000px;}
.y282{bottom:160.285500px;}
.y64{bottom:163.650000px;}
.y108{bottom:164.542500px;}
.y250{bottom:164.725500px;}
.y29a{bottom:165.408000px;}
.yce{bottom:166.101000px;}
.y182{bottom:166.495500px;}
.y353{bottom:167.059500px;}
.y2e{bottom:169.404000px;}
.y1e3{bottom:173.001000px;}
.y2e2{bottom:173.503500px;}
.y320{bottom:177.739500px;}
.y24e{bottom:179.565000px;}
.y220{bottom:179.821500px;}
.y281{bottom:180.550500px;}
.y14c{bottom:180.613500px;}
.y1b9{bottom:180.763500px;}
.y1ab{bottom:182.599500px;}
.y107{bottom:183.775500px;}
.y63{bottom:183.913500px;}
.ycd{bottom:186.364500px;}
.y352{bottom:186.427500px;}
.y181{bottom:186.760500px;}
.y285{bottom:187.837500px;}
.y92{bottom:188.014500px;}
.y2d{bottom:189.667500px;}
.y1e2{bottom:190.246500px;}
.y2e1{bottom:193.767000px;}
.y31f{bottom:197.106000px;}
.y24c{bottom:199.828500px;}
.y21f{bottom:200.086500px;}
.y13b{bottom:200.241120px;}
.y280{bottom:200.814000px;}
.y14b{bottom:200.877000px;}
.y1f4{bottom:202.825500px;}
.y1aa{bottom:202.863000px;}
.y62{bottom:204.178500px;}
.y24d{bottom:205.254000px;}
.y351{bottom:205.794000px;}
.yf1{bottom:206.204733px;}
.ycc{bottom:206.629500px;}
.y17f{bottom:207.024000px;}
.y2c{bottom:209.932500px;}
.y180{bottom:212.449500px;}
.y2e0{bottom:214.032000px;}
.y1e1{bottom:214.291500px;}
.y31e{bottom:216.474000px;}
.y13a{bottom:216.700710px;}
.y24b{bottom:220.093500px;}
.y27f{bottom:221.077500px;}
.y14a{bottom:221.142000px;}
.y91{bottom:222.834000px;}
.y1f3{bottom:223.090500px;}
.y1a9{bottom:223.128000px;}
.y1de{bottom:223.320000px;}
.y61{bottom:224.442000px;}
.y350{bottom:225.162000px;}
.yca{bottom:226.893000px;}
.y17d{bottom:227.289000px;}
.y2b{bottom:230.196000px;}
.y1e0{bottom:230.730000px;}
.ycb{bottom:232.318500px;}
.y17e{bottom:232.713000px;}
.y139{bottom:233.160300px;}
.y2df{bottom:234.295500px;}
.y31d{bottom:235.840500px;}
.y1dd{bottom:239.758500px;}
.y24a{bottom:240.357000px;}
.y27e{bottom:241.342500px;}
.y148{bottom:241.405500px;}
.y90{bottom:243.097500px;}
.y1f1{bottom:243.354000px;}
.y1a8{bottom:243.391500px;}
.y34f{bottom:244.528500px;}
.y60{bottom:244.707000px;}
.y149{bottom:246.829500px;}
.yc9{bottom:247.158000px;}
.y1df{bottom:247.168500px;}
.y21e{bottom:247.339500px;}
.y17c{bottom:247.552500px;}
.y1f2{bottom:248.778000px;}
.y138{bottom:249.619890px;}
.y2a{bottom:250.459500px;}
.y2de{bottom:254.559000px;}
.y31c{bottom:255.208500px;}
.y248{bottom:260.620500px;}
.y27d{bottom:261.606000px;}
.y146{bottom:261.669000px;}
.y8f{bottom:263.362500px;}
.y1f0{bottom:263.617500px;}
.y1a7{bottom:263.655000px;}
.y34e{bottom:263.896500px;}
.y21d{bottom:264.135000px;}
.y5f{bottom:264.970500px;}
.y249{bottom:266.046000px;}
.y147{bottom:267.094500px;}
.yc7{bottom:267.421500px;}
.y17b{bottom:267.816000px;}
.y29{bottom:270.724500px;}
.y137{bottom:272.788560px;}
.yc8{bottom:272.845500px;}
.y135{bottom:273.582360px;}
.y31b{bottom:274.576500px;}
.y2dd{bottom:274.824000px;}
.y1dc{bottom:278.787000px;}
.y247{bottom:280.885500px;}
.y21c{bottom:280.930500px;}
.y27c{bottom:281.871000px;}
.y145{bottom:281.934000px;}
.y34d{bottom:283.264500px;}
.y8e{bottom:283.626000px;}
.y1ef{bottom:283.882500px;}
.y1a6{bottom:283.920000px;}
.y5e{bottom:285.234000px;}
.yc5{bottom:287.685000px;}
.y17a{bottom:288.081000px;}
.y136{bottom:288.898290px;}
.y358{bottom:289.143000px;}
.y134{bottom:289.692090px;}
.y28{bottom:290.988000px;}
.yc6{bottom:293.110500px;}
.y31a{bottom:293.943000px;}
.y2dc{bottom:295.087500px;}
.y21b{bottom:297.726000px;}
.y1db{bottom:298.020000px;}
.y246{bottom:301.149000px;}
.y27b{bottom:302.134500px;}
.y144{bottom:302.197500px;}
.y34c{bottom:302.631000px;}
.y8d{bottom:303.891000px;}
.y1ee{bottom:304.146000px;}
.y1a5{bottom:304.183500px;}
.y5d{bottom:305.499000px;}
.yc4{bottom:307.950000px;}
.y179{bottom:308.344500px;}
.y357{bottom:308.509500px;}
.y27{bottom:311.253000px;}
.y319{bottom:313.311000px;}
.y21a{bottom:314.521500px;}
.y2db{bottom:315.351000px;}
.y1d9{bottom:317.253000px;}
.y133{bottom:320.973000px;}
.y245{bottom:321.414000px;}
.y34b{bottom:321.999000px;}
.y1da{bottom:322.135500px;}
.y27a{bottom:322.398000px;}
.y8c{bottom:324.154500px;}
.y1a4{bottom:324.448500px;}
.y5c{bottom:325.762500px;}
.y356{bottom:327.877500px;}
.yc3{bottom:328.213500px;}
.y177{bottom:328.609500px;}
.y101{bottom:331.076137px;}
.y318{bottom:332.677500px;}
.y178{bottom:334.033500px;}
.y2da{bottom:335.616000px;}
.y1d8{bottom:336.486000px;}
.y297{bottom:337.118679px;}
.y143{bottom:337.198500px;}
.y219{bottom:338.520000px;}
.y1ed{bottom:339.147000px;}
.y132{bottom:340.206000px;}
.y26{bottom:340.483500px;}
.y34a{bottom:341.367000px;}
.y244{bottom:341.677500px;}
.y278{bottom:342.663000px;}
.y1a3{bottom:344.712000px;}
.y5b{bottom:346.027500px;}
.y279{bottom:348.087000px;}
.yc2{bottom:348.478500px;}
.y176{bottom:348.873000px;}
.y100{bottom:349.098564px;}
.yd0{bottom:349.644911px;}
.y29c{bottom:351.478950px;}
.y317{bottom:352.045500px;}
.y216{bottom:353.416500px;}
.y2d9{bottom:355.879500px;}
.y142{bottom:356.431500px;}
.y296{bottom:357.368598px;}
.y1ec{bottom:358.380000px;}
.y130{bottom:359.439000px;}
.y349{bottom:360.733500px;}
.y242{bottom:361.941000px;}
.y218{bottom:362.160000px;}
.y277{bottom:362.926500px;}
.y131{bottom:364.321500px;}
.y1a2{bottom:364.975500px;}
.y5a{bottom:366.291000px;}
.yff{bottom:367.120992px;}
.y243{bottom:367.366500px;}
.yc1{bottom:368.742000px;}
.y174{bottom:369.136500px;}
.y215{bottom:369.853500px;}
.y8b{bottom:371.409000px;}
.y175{bottom:374.562000px;}
.y2d8{bottom:376.144500px;}
.y1d7{bottom:378.480000px;}
.y217{bottom:378.598500px;}
.y12f{bottom:378.672000px;}
.y13c{bottom:378.861000px;}
.y348{bottom:380.101500px;}
.y316{bottom:380.379000px;}
.y1e6{bottom:380.809500px;}
.y240{bottom:382.206000px;}
.y275{bottom:383.190000px;}
.yfe{bottom:385.143420px;}
.y1a1{bottom:385.240500px;}
.y59{bottom:386.554500px;}
.y241{bottom:387.630000px;}
.y8a{bottom:388.204500px;}
.y276{bottom:388.615500px;}
.yc0{bottom:389.005500px;}
.y172{bottom:389.401500px;}
.y173{bottom:394.825500px;}
.y1d6{bottom:395.725500px;}
.y2d7{bottom:396.408000px;}
.y347{bottom:399.468000px;}
.y23f{bottom:402.469500px;}
.yfd{bottom:403.085588px;}
.y274{bottom:403.455000px;}
.y310{bottom:403.724100px;}
.y89{bottom:405.000000px;}
.y1a0{bottom:405.504000px;}
.y58{bottom:406.819500px;}
.ybf{bottom:409.270500px;}
.y170{bottom:409.665000px;}
.y214{bottom:410.218500px;}
.y226{bottom:412.818450px;}
.y258{bottom:412.900950px;}
.y1d5{bottom:412.972500px;}
.y171{bottom:415.090500px;}
.y315{bottom:416.635500px;}
.y2d6{bottom:416.671500px;}
.y25{bottom:416.898000px;}
.y346{bottom:418.836000px;}
.y12e{bottom:420.438060px;}
.yfc{bottom:421.108016px;}
.y88{bottom:421.795500px;}
.y23d{bottom:422.734500px;}
.y272{bottom:423.718500px;}
.y19f{bottom:425.769000px;}
.y57{bottom:427.083000px;}
.y23e{bottom:428.158500px;}
.y273{bottom:429.144000px;}
.y213{bottom:429.451500px;}
.ybe{bottom:429.534000px;}
.y16e{bottom:429.930000px;}
.y1d4{bottom:430.218000px;}
.y257{bottom:432.431400px;}
.y16f{bottom:435.354000px;}
.y314{bottom:435.868500px;}
.y12d{bottom:436.897650px;}
.y2d4{bottom:436.936500px;}
.y24{bottom:437.163000px;}
.y345{bottom:438.204000px;}
.y87{bottom:438.591000px;}
.yfb{bottom:439.130444px;}
.y30f{bottom:441.523650px;}
.y2d5{bottom:442.360500px;}
.y23c{bottom:442.998000px;}
.y271{bottom:443.983500px;}
.y19e{bottom:446.032500px;}
.y56{bottom:447.348000px;}
.y1d3{bottom:447.463500px;}
.y212{bottom:448.684500px;}
.y16d{bottom:450.193500px;}
.y256{bottom:451.961850px;}
.y12c{bottom:453.357240px;}
.y86{bottom:455.386500px;}
.yfa{bottom:457.152872px;}
.y2d3{bottom:457.200000px;}
.y344{bottom:457.570500px;}
.y2f1{bottom:458.297850px;}
.ybd{bottom:458.764500px;}
.y23b{bottom:463.261500px;}
.y270{bottom:464.247000px;}
.y1be{bottom:465.336000px;}
.y19c{bottom:466.296000px;}
.y55{bottom:467.611500px;}
.y1ad{bottom:469.290450px;}
.y12b{bottom:469.816830px;}
.y30e{bottom:470.053200px;}
.y1d2{bottom:471.508500px;}
.y19d{bottom:471.721500px;}
.yf9{bottom:475.175300px;}
.y23{bottom:475.359000px;}
.y343{bottom:476.938500px;}
.y2d1{bottom:477.465000px;}
.y211{bottom:478.378500px;}
.y85{bottom:479.383500px;}
.y1cf{bottom:480.537000px;}
.yb7{bottom:481.428159px;}
.y2d2{bottom:482.889000px;}
.y23a{bottom:483.526500px;}
.y26f{bottom:484.510500px;}
.y1bd{bottom:484.866450px;}
.y16c{bottom:485.193000px;}
.y12a{bottom:486.276420px;}
.y19a{bottom:486.561000px;}
.y54{bottom:487.875000px;}
.y1d1{bottom:487.947000px;}
.y30d{bottom:488.322750px;}
.y255{bottom:489.401400px;}
.y19b{bottom:491.985000px;}
.yf8{bottom:493.197728px;}
.ybc{bottom:493.584000px;}
.y22{bottom:495.624000px;}
.y342{bottom:496.305000px;}
.y1ce{bottom:496.975500px;}
.y210{bottom:497.610000px;}
.y2cf{bottom:497.728500px;}
.yb6{bottom:501.678078px;}
.y2d0{bottom:503.154000px;}
.y1d0{bottom:504.385500px;}
.y16b{bottom:504.426000px;}
.y26e{bottom:504.775500px;}
.y30c{bottom:506.503200px;}
.y199{bottom:506.824500px;}
.y53{bottom:508.140000px;}
.y1bc{bottom:509.346450px;}
.y129{bottom:509.443620px;}
.y127{bottom:510.237420px;}
.y84{bottom:511.003500px;}
.y341{bottom:515.673000px;}
.y21{bottom:515.887500px;}
.y2ce{bottom:517.992000px;}
.y239{bottom:518.526000px;}
.y1f5{bottom:520.039500px;}
.yb5{bottom:521.927997px;}
.y26d{bottom:525.039000px;}
.y128{bottom:525.553350px;}
.y126{bottom:526.347150px;}
.yf7{bottom:526.759227px;}
.y14d{bottom:526.855500px;}
.y198{bottom:527.089500px;}
.y52{bottom:528.403500px;}
.y83{bottom:530.236500px;}
.y30b{bottom:533.682750px;}
.y340{bottom:535.041000px;}
.y1cd{bottom:536.005500px;}
.y1f{bottom:536.152500px;}
.y238{bottom:537.759000px;}
.y2cd{bottom:538.257000px;}
.yf0{bottom:540.945000px;}
.y20{bottom:541.576500px;}
.yb4{bottom:542.177916px;}
.yf6{bottom:544.141328px;}
.y26c{bottom:545.304000px;}
.y197{bottom:547.353000px;}
.y51{bottom:548.667000px;}
.y82{bottom:549.469500px;}
.y30a{bottom:551.952300px;}
.y33f{bottom:554.407500px;}
.y1cc{bottom:555.237000px;}
.y1e{bottom:556.416000px;}
.y237{bottom:556.992000px;}
.y125{bottom:557.629500px;}
.y2cc{bottom:558.520500px;}
.yef{bottom:561.210000px;}
.yb3{bottom:562.427835px;}
.y26b{bottom:565.567500px;}
.y196{bottom:567.616500px;}
.y50{bottom:568.932000px;}
.yf5{bottom:569.933600px;}
.y309{bottom:570.132750px;}
.y33e{bottom:573.775500px;}
.y1ca{bottom:574.470000px;}
.y1d{bottom:576.679500px;}
.y124{bottom:576.862500px;}
.y2cb{bottom:578.785500px;}
.y1cb{bottom:579.352500px;}
.y225{bottom:579.421500px;}
.yee{bottom:581.473500px;}
.yb2{bottom:582.587574px;}
.y81{bottom:582.681000px;}
.y26a{bottom:585.831000px;}
.y195{bottom:587.881500px;}
.yf4{bottom:587.956028px;}
.y308{bottom:588.313200px;}
.y4f{bottom:589.195500px;}
.y33d{bottom:593.142000px;}
.y1c9{bottom:593.703000px;}
.y122{bottom:596.094000px;}
.y1c{bottom:596.944500px;}
.y2ca{bottom:599.049000px;}
.y123{bottom:600.976500px;}
.yed{bottom:601.738500px;}
.yb1{bottom:602.837493px;}
.y80{bottom:602.944500px;}
.y269{bottom:606.096000px;}
.y4e{bottom:609.460500px;}
.y33c{bottom:612.510000px;}
.y121{bottom:615.327000px;}
.y307{bottom:615.583200px;}
.y194{bottom:617.112000px;}
.y1b{bottom:617.208000px;}
.y2c9{bottom:619.312500px;}
.y14e{bottom:620.694450px;}
.yec{bottom:622.002000px;}
.yb0{bottom:623.087412px;}
.y7f{bottom:623.209500px;}
.y268{bottom:626.359500px;}
.y1f6{bottom:627.022950px;}
.y4d{bottom:629.724000px;}
.y33b{bottom:631.878000px;}
.y306{bottom:633.763650px;}
.y1a{bottom:637.473000px;}
.y2c8{bottom:639.577500px;}
.y1b8{bottom:641.952000px;}
.yeb{bottom:642.265500px;}
.yaf{bottom:643.337331px;}
.y7e{bottom:643.473000px;}
.y267{bottom:646.624500px;}
.y4c{bottom:649.987500px;}
.y33a{bottom:651.244500px;}
.y305{bottom:652.033200px;}
.y120{bottom:652.438500px;}
.y19{bottom:657.736500px;}
.y2c7{bottom:659.841000px;}
.y193{bottom:660.625920px;}
.y1b7{bottom:661.185000px;}
.yea{bottom:662.530500px;}
.yae{bottom:663.587331px;}
.y7d{bottom:663.736500px;}
.y295{bottom:667.868859px;}
.y304{bottom:670.213650px;}
.y4b{bottom:670.252500px;}
.y339{bottom:670.612500px;}
.y11e{bottom:672.703500px;}
.y1c8{bottom:675.676500px;}
.y192{bottom:676.749600px;}
.y18{bottom:678.000000px;}
.y11f{bottom:678.127500px;}
.y2c6{bottom:680.106000px;}
.y266{bottom:681.624000px;}
.ye9{bottom:682.794000px;}
.y1ac{bottom:683.614500px;}
.yad{bottom:683.837331px;}
.y7b{bottom:684.001500px;}
.y294{bottom:688.118778px;}
.y303{bottom:688.394100px;}
.y7c{bottom:689.425500px;}
.y338{bottom:689.979000px;}
.y4a{bottom:690.516000px;}
.y191{bottom:692.873280px;}
.y11d{bottom:692.967000px;}
.y1c7{bottom:695.941500px;}
.y17{bottom:698.265000px;}
.y2c5{bottom:700.369500px;}
.y265{bottom:700.857000px;}
.ye8{bottom:703.059000px;}
.yac{bottom:704.089086px;}
.y79{bottom:704.265000px;}
.y293{bottom:708.368697px;}
.y190{bottom:708.996960px;}
.y337{bottom:709.347000px;}
.y7a{bottom:709.690500px;}
.y49{bottom:710.781000px;}
.y11c{bottom:713.232000px;}
.y16{bottom:718.528500px;}
.y264{bottom:720.090000px;}
.ye7{bottom:723.322500px;}
.yab{bottom:724.248825px;}
.y78{bottom:724.530000px;}
.y302{bottom:725.025513px;}
.y18f{bottom:725.122080px;}
.y292{bottom:728.618616px;}
.y336{bottom:728.715000px;}
.y2c4{bottom:729.600000px;}
.y48{bottom:731.044500px;}
.y11b{bottom:733.495500px;}
.y15{bottom:738.793500px;}
.y252{bottom:742.519500px;}
.yaa{bottom:744.498744px;}
.y77{bottom:744.793500px;}
.y301{bottom:745.275432px;}
.y335{bottom:748.081500px;}
.y18e{bottom:748.159200px;}
.ybb{bottom:748.512000px;}
.y291{bottom:748.868535px;}
.y47{bottom:751.308000px;}
.y119{bottom:753.759000px;}
.y18b{bottom:754.568640px;}
.ye6{bottom:758.322000px;}
.y11a{bottom:759.184500px;}
.y2c3{bottom:761.223000px;}
.y1e7{bottom:762.360450px;}
.ya9{bottom:764.748663px;}
.y75{bottom:765.057000px;}
.y13d{bottom:765.282450px;}
.y300{bottom:765.525351px;}
.y334{bottom:767.449500px;}
.y290{bottom:769.028274px;}
.y18a{bottom:770.349600px;}
.y76{bottom:770.482500px;}
.y18d{bottom:770.855040px;}
.y46{bottom:771.573000px;}
.y12{bottom:772.018555px;}
.y11{bottom:772.786500px;}
.y118{bottom:774.024000px;}
.ye5{bottom:777.555000px;}
.y2c2{bottom:780.456000px;}
.ya8{bottom:784.998582px;}
.y74{bottom:785.322000px;}
.y2ff{bottom:785.775270px;}
.y18c{bottom:786.634560px;}
.y333{bottom:786.816000px;}
.y28f{bottom:789.278193px;}
.y45{bottom:791.836500px;}
.y116{bottom:794.287500px;}
.y98{bottom:797.262000px;}
.y117{bottom:799.713000px;}
.ycf{bottom:799.984500px;}
.y29b{bottom:802.885500px;}
.ya7{bottom:805.248501px;}
.y73{bottom:805.585500px;}
.y2fe{bottom:806.025189px;}
.y332{bottom:806.184000px;}
.y28e{bottom:809.528112px;}
.y10{bottom:811.791000px;}
.y44{bottom:812.101500px;}
.y115{bottom:814.552500px;}
.y97{bottom:817.525500px;}
.y189{bottom:817.579500px;}
.ya6{bottom:825.498420px;}
.y331{bottom:825.552000px;}
.y71{bottom:825.849000px;}
.y2fd{bottom:826.275108px;}
.y28d{bottom:829.778031px;}
.yf{bottom:829.948500px;}
.y72{bottom:831.274500px;}
.y43{bottom:832.365000px;}
.y114{bottom:834.816000px;}
.ye{bottom:834.831000px;}
.y188{bottom:836.812500px;}
.y96{bottom:837.789000px;}
.y330{bottom:844.918500px;}
.ya5{bottom:845.748339px;}
.y70{bottom:846.114000px;}
.y2fc{bottom:846.434847px;}
.yd{bottom:848.106000px;}
.y28c{bottom:850.028373px;}
.y42{bottom:852.628500px;}
.y113{bottom:855.079500px;}
.y187{bottom:856.045500px;}
.y32f{bottom:864.286500px;}
.ya4{bottom:865.908078px;}
.y6f{bottom:866.377500px;}
.y2fb{bottom:866.684766px;}
.y28b{bottom:870.278292px;}
.yc{bottom:871.144500px;}
.y2f0{bottom:871.966500px;}
.y41{bottom:872.893500px;}
.y112{bottom:875.344500px;}
.y32e{bottom:883.653000px;}
.yb{bottom:884.419500px;}
.ya3{bottom:886.157997px;}
.y2fa{bottom:886.934685px;}
.y28a{bottom:890.528211px;}
.y40{bottom:893.157000px;}
.y6e{bottom:895.608000px;}
.y253{bottom:895.750950px;}
.ya{bottom:902.577000px;}
.y32d{bottom:903.021000px;}
.ya2{bottom:906.407916px;}
.y2ef{bottom:906.786000px;}
.y2f9{bottom:907.184604px;}
.y289{bottom:910.688031px;}
.y3f{bottom:913.422000px;}
.yf2{bottom:914.203328px;}
.y111{bottom:915.873000px;}
.y32c{bottom:922.389000px;}
.y9{bottom:925.615500px;}
.ya1{bottom:926.657835px;}
.y2f8{bottom:927.434523px;}
.y6d{bottom:930.427500px;}
.y288{bottom:930.937950px;}
.y2ee{bottom:930.951000px;}
.y3d{bottom:933.685500px;}
.y110{bottom:936.136500px;}
.y3e{bottom:939.109500px;}
.y32b{bottom:941.755500px;}
.y8{bottom:945.651000px;}
.y2ed{bottom:946.149000px;}
.ya0{bottom:946.907754px;}
.y2f7{bottom:947.684442px;}
.y6c{bottom:950.692500px;}
.y3c{bottom:953.949000px;}
.y10f{bottom:956.400000px;}
.y32a{bottom:961.123500px;}
.y2ec{bottom:961.347000px;}
.y7{bottom:965.914500px;}
.y9f{bottom:967.157673px;}
.y2f6{bottom:967.934361px;}
.y286{bottom:968.287950px;}
.y6b{bottom:970.956000px;}
.y3b{bottom:974.214000px;}
.y10e{bottom:976.665000px;}
.y329{bottom:980.490000px;}
.y1ba{bottom:980.946450px;}
.y2eb{bottom:985.512000px;}
.y9e{bottom:987.407592px;}
.y2f5{bottom:988.094181px;}
.y6a{bottom:991.219500px;}
.y3a{bottom:994.477500px;}
.y328{bottom:999.858000px;}
.y2ea{bottom:1000.710000px;}
.y10d{bottom:1005.895500px;}
.y9d{bottom:1007.567331px;}
.y2f4{bottom:1008.344100px;}
.y6{bottom:1010.451000px;}
.y69{bottom:1011.484500px;}
.y39{bottom:1014.742500px;}
.y2e9{bottom:1015.908000px;}
.y327{bottom:1019.226000px;}
.y186{bottom:1020.166500px;}
.y9c{bottom:1027.817250px;}
.y2e8{bottom:1031.106000px;}
.y68{bottom:1031.748000px;}
.y38{bottom:1035.006000px;}
.y326{bottom:1038.592500px;}
.y10c{bottom:1040.715000px;}
.y5{bottom:1040.848500px;}
.y2f2{bottom:1045.694100px;}
.y37{bottom:1055.269500px;}
.y325{bottom:1057.960500px;}
.y185{bottom:1060.695000px;}
.y67{bottom:1060.978500px;}
.y9a{bottom:1065.167250px;}
.y2e7{bottom:1070.467500px;}
.y4{bottom:1071.244500px;}
.y36{bottom:1075.534500px;}
.y324{bottom:1077.327000px;}
.y2e6{bottom:1085.667000px;}
.y35{bottom:1095.798000px;}
.y323{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y2e5{bottom:1100.865000px;}
.y1c6{bottom:1101.223500px;}
.y34{bottom:1116.063000px;}
.y224{bottom:1121.487000px;}
.y1{bottom:1137.954000px;}
.y33{bottom:1168.366500px;}
.h24{height:25.070054px;}
.ha{height:25.508090px;}
.h40{height:26.279297px;}
.hf{height:27.855430px;}
.h8{height:30.461558px;}
.h1c{height:32.032178px;}
.h25{height:32.494234px;}
.h10{height:33.072749px;}
.hc{height:33.112997px;}
.hb{height:34.199443px;}
.h11{height:35.052500px;}
.h20{height:35.082861px;}
.h1f{height:35.247129px;}
.h17{height:35.991211px;}
.h14{height:36.104462px;}
.h31{height:37.340393px;}
.h34{height:37.598626px;}
.h49{height:37.927872px;}
.h26{height:38.118318px;}
.h28{height:38.381930px;}
.h47{height:38.412058px;}
.h1b{height:38.888706px;}
.h13{height:38.896243px;}
.h1d{height:39.058919px;}
.h9{height:39.165235px;}
.h1e{height:39.241804px;}
.h2b{height:39.418945px;}
.h2d{height:39.420745px;}
.h22{height:39.434227px;}
.h19{height:39.603516px;}
.h12{height:42.679778px;}
.hd{height:43.217759px;}
.he{height:43.516637px;}
.h33{height:43.620811px;}
.h16{height:43.695176px;}
.h4{height:43.815515px;}
.h18{height:43.886426px;}
.h2e{height:44.091914px;}
.h29{height:44.529578px;}
.h27{height:44.535458px;}
.h37{height:45.438344px;}
.h38{height:45.444344px;}
.h48{height:48.149568px;}
.h44{height:48.209054px;}
.h3a{height:48.371558px;}
.h39{height:48.377558px;}
.h43{height:50.006642px;}
.h2{height:50.931027px;}
.h2f{height:52.804688px;}
.h7{height:54.541601px;}
.h6{height:54.547601px;}
.h23{height:54.768749px;}
.h30{height:54.774749px;}
.h5{height:77.792486px;}
.h3{height:82.003069px;}
.h32{height:100.458473px;}
.h3e{height:104.650243px;}
.h3d{height:125.088710px;}
.h21{height:311.092647px;}
.h45{height:328.122000px;}
.h1a{height:331.022595px;}
.h46{height:380.211150px;}
.h41{height:388.488000px;}
.h3f{height:391.408500px;}
.h36{height:444.960000px;}
.h35{height:447.393000px;}
.h15{height:464.919300px;}
.h2c{height:604.152000px;}
.h3c{height:610.968000px;}
.h42{height:645.045000px;}
.h3b{height:750.199500px;}
.h2a{height:752.148000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:207.609956px;}
.we{width:416.724000px;}
.w11{width:447.880500px;}
.wa{width:467.353500px;}
.w9{width:476.604000px;}
.wf{width:488.775000px;}
.w10{width:495.103500px;}
.w8{width:535.996500px;}
.w7{width:537.456000px;}
.wb{width:538.431000px;}
.wc{width:539.404500px;}
.w6{width:548.526803px;}
.w5{width:557.192421px;}
.w4{width:570.075000px;}
.wd{width:597.336300px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x142{left:-121.270500px;}
.x150{left:-107.640000px;}
.x10d{left:-103.258500px;}
.x10a{left:-98.877000px;}
.x143{left:-89.410104px;}
.x14a{left:-86.706000px;}
.x14d{left:-83.298000px;}
.x151{left:-75.780054px;}
.x10e{left:-71.398500px;}
.x10b{left:-67.017000px;}
.xd1{left:-62.851500px;}
.xcb{left:-61.392000px;}
.x14b{left:-54.844929px;}
.x14e{left:-51.438000px;}
.x5f{left:-46.786500px;}
.xd3{left:-44.401500px;}
.x135{left:-35.102700px;}
.x127{left:-32.611500px;}
.xd2{left:-30.991500px;}
.xcd{left:-29.532000px;}
.xdc{left:-23.251500px;}
.xdd{left:-22.170843px;}
.xdb{left:-21.091500px;}
.x94{left:-19.976273px;}
.x128{left:-17.581500px;}
.x60{left:-14.925906px;}
.x12e{left:-11.371500px;}
.x12d{left:-9.211500px;}
.x12f{left:-7.140555px;}
.x136{left:-3.242304px;}
.x0{left:0.000000px;}
.x96{left:8.379127px;}
.x8b{left:13.145211px;}
.x7{left:29.274117px;}
.x14c{left:34.616637px;}
.x2{left:58.090232px;}
.xd4{left:77.908131px;}
.xd5{left:87.358995px;}
.x129{left:95.278770px;}
.x12b{left:100.408752px;}
.x12a{left:103.288500px;}
.x1{left:114.802500px;}
.x95{left:119.797907px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.x8a{left:124.563991px;}
.xfb{left:126.867000px;}
.xb0{left:129.384000px;}
.xbe{left:135.782730px;}
.xb1{left:138.613500px;}
.x40{left:140.716500px;}
.x41{left:142.224000px;}
.x44{left:144.060000px;}
.x4{left:146.170500px;}
.xa5{left:147.831000px;}
.xbf{left:148.968630px;}
.xb2{left:150.492000px;}
.x1f{left:152.179500px;}
.xc4{left:154.392930px;}
.xa6{left:157.062000px;}
.xc5{left:158.097330px;}
.x20{left:159.651000px;}
.x5e{left:161.419500px;}
.xb3{left:163.423500px;}
.xa7{left:165.537000px;}
.x88{left:167.861199px;}
.xa8{left:169.272000px;}
.xf8{left:170.434500px;}
.x93{left:172.194668px;}
.x14f{left:173.926500px;}
.xd0{left:175.396500px;}
.x126{left:176.755500px;}
.x62{left:178.213500px;}
.x145{left:179.226000px;}
.xb4{left:180.322500px;}
.x159{left:181.390500px;}
.xa9{left:182.731500px;}
.x31{left:184.122000px;}
.x38{left:186.349500px;}
.x8{left:188.763000px;}
.x11d{left:190.011000px;}
.x39{left:193.822500px;}
.xf9{left:195.244500px;}
.xaa{left:196.756500px;}
.x32{left:198.933000px;}
.x146{left:200.334000px;}
.x3f{left:201.510000px;}
.x8d{left:204.489000px;}
.x120{left:205.564500px;}
.x11{left:206.610000px;}
.x42{left:207.727500px;}
.x10c{left:211.177500px;}
.x5c{left:212.991000px;}
.x6e{left:214.339500px;}
.x118{left:215.445000px;}
.x9a{left:216.951000px;}
.xfc{left:218.815500px;}
.xd6{left:219.838509px;}
.x132{left:222.759000px;}
.x9b{left:225.169500px;}
.x156{left:226.374000px;}
.x5d{left:227.934000px;}
.x6f{left:229.284000px;}
.x147{left:230.736000px;}
.xfd{left:232.275000px;}
.x64{left:234.963000px;}
.xc0{left:237.359730px;}
.x65{left:239.766000px;}
.x130{left:242.680500px;}
.x117{left:245.785500px;}
.x66{left:246.924000px;}
.x35{left:250.528500px;}
.x97{left:252.523968px;}
.x72{left:253.570500px;}
.xff{left:256.013880px;}
.x8c{left:257.290051px;}
.x89{left:258.491511px;}
.x8e{left:261.457500px;}
.x73{left:262.801500px;}
.x36{left:264.999000px;}
.x45{left:266.017500px;}
.x8f{left:268.182000px;}
.x74{left:271.276500px;}
.x46{left:273.490500px;}
.x75{left:275.011500px;}
.x119{left:276.291000px;}
.x131{left:277.386000px;}
.x7b{left:278.679000px;}
.xb5{left:279.940500px;}
.x158{left:283.146000px;}
.x11a{left:284.965500px;}
.x5b{left:287.683500px;}
.xb6{left:289.170000px;}
.xba{left:291.819000px;}
.xc6{left:293.467500px;}
.x7c{left:296.094000px;}
.xb7{left:297.313500px;}
.x7d{left:299.830500px;}
.xb8{left:301.048500px;}
.xef{left:304.428000px;}
.x76{left:306.459000px;}
.xf0{left:308.163000px;}
.x2b{left:310.846500px;}
.x7e{left:312.828000px;}
.xb9{left:313.980000px;}
.xf1{left:321.094500px;}
.x133{left:323.896500px;}
.x2c{left:325.789500px;}
.xde{left:329.104500px;}
.x7f{left:330.600000px;}
.x134{left:332.229000px;}
.x29{left:335.649000px;}
.xdf{left:338.335500px;}
.x63{left:339.513000px;}
.xa0{left:344.017500px;}
.x90{left:345.240000px;}
.x43{left:348.268500px;}
.x2a{left:350.593500px;}
.x91{left:353.458500px;}
.xab{left:357.222000px;}
.xeb{left:358.731000px;}
.xa1{left:360.685500px;}
.xd8{left:362.758788px;}
.x12c{left:365.189256px;}
.xac{left:366.453000px;}
.xec{left:367.962000px;}
.xfe{left:370.600500px;}
.xd7{left:371.668572px;}
.xa2{left:374.709000px;}
.xad{left:378.664500px;}
.xd9{left:380.488176px;}
.x9e{left:384.655500px;}
.x9{left:388.309500px;}
.xc1{left:389.597340px;}
.xae{left:392.124000px;}
.x1d{left:394.887000px;}
.x11e{left:396.471000px;}
.xa{left:397.539000px;}
.x9f{left:399.600000px;}
.xfa{left:401.242500px;}
.x1e{left:402.358500px;}
.x155{left:404.496000px;}
.xaf{left:406.147500px;}
.x2d{left:407.769000px;}
.xce{left:410.824500px;}
.x3a{left:412.570500px;}
.x77{left:414.030000px;}
.x137{left:416.337300px;}
.xcf{left:418.966500px;}
.xb{left:422.377500px;}
.x3b{left:427.063500px;}
.x49{left:431.473500px;}
.x80{left:434.160000px;}
.x78{left:435.472500px;}
.x144{left:437.899500px;}
.xc{left:440.143500px;}
.x153{left:441.288000px;}
.x81{left:443.391000px;}
.x152{left:444.870315px;}
.x4a{left:446.418000px;}
.x79{left:448.932000px;}
.xbb{left:450.142500px;}
.x82{left:451.575000px;}
.xc7{left:452.613000px;}
.x83{left:455.310000px;}
.x6c{left:457.221000px;}
.xbc{left:458.449500px;}
.x121{left:459.496500px;}
.xc8{left:460.921500px;}
.x6d{left:463.647000px;}
.xbd{left:465.778500px;}
.x7a{left:466.920000px;}
.x84{left:468.307500px;}
.x9d{left:471.147000px;}
.x101{left:473.388000px;}
.xed{left:474.733500px;}
.x102{left:477.123000px;}
.xee{left:478.470000px;}
.x9c{left:480.750000px;}
.xc9{left:483.250500px;}
.x54{left:486.606000px;}
.xf7{left:488.065500px;}
.x103{left:490.372500px;}
.x4c{left:492.816000px;}
.x122{left:494.398500px;}
.x26{left:495.678000px;}
.xca{left:498.429000px;}
.x55{left:500.346000px;}
.x27{left:503.836500px;}
.x57{left:505.765500px;}
.x4d{left:507.760500px;}
.x6a{left:508.854000px;}
.x4e{left:511.444500px;}
.x123{left:512.589000px;}
.xe8{left:516.448500px;}
.x2e{left:517.510500px;}
.x58{left:519.513000px;}
.xda{left:520.617717px;}
.x69{left:522.759000px;}
.x6b{left:523.798500px;}
.x23{left:525.664500px;}
.x11f{left:530.338500px;}
.xcc{left:531.798000px;}
.x24{left:533.136000px;}
.xa3{left:534.567000px;}
.x71{left:540.591000px;}
.x11b{left:541.666500px;}
.x56{left:543.696000px;}
.xa4{left:546.445500px;}
.x138{left:548.086500px;}
.xd{left:549.802500px;}
.x59{left:552.036000px;}
.xc2{left:555.641190px;}
.xe{left:559.032000px;}
.x157{left:560.358000px;}
.x5a{left:562.212000px;}
.x61{left:565.393545px;}
.x13f{left:569.557500px;}
.x67{left:572.868000px;}
.x124{left:575.013000px;}
.xe7{left:578.149500px;}
.x109{left:580.075500px;}
.xf{left:583.870500px;}
.x33{left:586.317000px;}
.x68{left:587.812500px;}
.x1a{left:589.393500px;}
.x140{left:590.815500px;}
.x10{left:597.894000px;}
.x34{left:601.099500px;}
.xe3{left:604.123500px;}
.x115{left:608.733000px;}
.x12{left:611.676000px;}
.xe4{left:613.354500px;}
.x125{left:614.707500px;}
.x116{left:617.962500px;}
.x13{left:619.149000px;}
.x85{left:620.740500px;}
.x14{left:622.813500px;}
.xe5{left:625.564500px;}
.x15{left:630.285000px;}
.x28{left:637.389000px;}
.x86{left:638.446500px;}
.x50{left:642.660000px;}
.x70{left:644.749500px;}
.x47{left:649.053000px;}
.x16{left:651.306000px;}
.xe6{left:653.049000px;}
.xe0{left:655.359000px;}
.x51{left:656.404500px;}
.x17{left:658.777500px;}
.x11c{left:660.846000px;}
.x154{left:662.683500px;}
.x48{left:663.997500px;}
.x1b{left:666.441000px;}
.x13d{left:667.728000px;}
.x141{left:669.667500px;}
.xe1{left:672.732000px;}
.x87{left:673.996500px;}
.x1c{left:675.672000px;}
.x13e{left:676.957500px;}
.x4b{left:678.370500px;}
.x148{left:679.576500px;}
.xe9{left:680.958000px;}
.x104{left:683.448000px;}
.x92{left:686.905500px;}
.xc3{left:688.311630px;}
.xe2{left:689.400000px;}
.x105{left:691.591500px;}
.x25{left:693.777000px;}
.x106{left:695.326500px;}
.x52{left:696.817500px;}
.x21{left:699.054000px;}
.x6{left:701.339982px;}
.x2f{left:702.447000px;}
.x53{left:706.990500px;}
.x107{left:708.258000px;}
.x22{left:713.838000px;}
.xea{left:715.773000px;}
.x30{left:717.390000px;}
.x13b{left:722.235000px;}
.x139{left:723.376500px;}
.x108{left:725.803500px;}
.xf2{left:727.243500px;}
.x10f{left:729.766500px;}
.x149{left:731.838000px;}
.x3c{left:732.871500px;}
.x13c{left:734.221500px;}
.x98{left:736.272000px;}
.x110{left:738.996000px;}
.x13a{left:740.749500px;}
.x99{left:742.998000px;}
.xf3{left:744.948000px;}
.x111{left:747.247500px;}
.xf4{left:748.684500px;}
.x112{left:750.984000px;}
.x100{left:754.155000px;}
.x4f{left:756.444000px;}
.x113{left:758.289000px;}
.xf5{left:762.144000px;}
.x18{left:763.672500px;}
.x3d{left:764.715000px;}
.x37{left:767.050500px;}
.x19{left:771.144000px;}
.x3e{left:772.188000px;}
.x114{left:773.233500px;}
.xf6{left:776.167500px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v4{vertical-align:-13.440000pt;}
.v7{vertical-align:-1.434667pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:1.434667pt;}
.ve{vertical-align:3.842336pt;}
.vd{vertical-align:5.440192pt;}
.v3{vertical-align:13.433472pt;}
.v8{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.v6{vertical-align:25.287680pt;}
.vc{vertical-align:26.341333pt;}
.v5{vertical-align:30.817280pt;}
.vb{vertical-align:32.106667pt;}
.va{vertical-align:35.842208pt;}
.ls29{letter-spacing:-0.491648pt;}
.ls82{letter-spacing:-0.283232pt;}
.ls50{letter-spacing:-0.269136pt;}
.ls72{letter-spacing:-0.261856pt;}
.lsc0{letter-spacing:-0.245824pt;}
.lsa7{letter-spacing:-0.229792pt;}
.lscb{letter-spacing:-0.219104pt;}
.ls7b{letter-spacing:-0.201600pt;}
.ls81{letter-spacing:-0.197728pt;}
.lsbf{letter-spacing:-0.187040pt;}
.ls46{letter-spacing:-0.175978pt;}
.ls25{letter-spacing:-0.171008pt;}
.ls73{letter-spacing:-0.165664pt;}
.ls67{letter-spacing:-0.158400pt;}
.lsb7{letter-spacing:-0.153600pt;}
.lsa6{letter-spacing:-0.149632pt;}
.ls26{letter-spacing:-0.144288pt;}
.lsd6{letter-spacing:-0.138944pt;}
.ls74{letter-spacing:-0.133600pt;}
.lsab{letter-spacing:-0.117568pt;}
.lsa9{letter-spacing:-0.112224pt;}
.lsd7{letter-spacing:-0.110400pt;}
.lsc9{letter-spacing:-0.106880pt;}
.lscc{letter-spacing:-0.101536pt;}
.ls4c{letter-spacing:-0.099879pt;}
.lsb9{letter-spacing:-0.096192pt;}
.ls75{letter-spacing:-0.090848pt;}
.ls7a{letter-spacing:-0.081600pt;}
.ls7d{letter-spacing:-0.080160pt;}
.lsd8{letter-spacing:-0.072000pt;}
.ls4b{letter-spacing:-0.071342pt;}
.lsca{letter-spacing:-0.069472pt;}
.lsb8{letter-spacing:-0.064128pt;}
.ls52{letter-spacing:-0.059808pt;}
.ls83{letter-spacing:-0.058784pt;}
.ls79{letter-spacing:-0.057600pt;}
.lsa8{letter-spacing:-0.052800pt;}
.ls2c{letter-spacing:-0.048096pt;}
.lsaa{letter-spacing:-0.042752pt;}
.ls70{letter-spacing:-0.038400pt;}
.lsbe{letter-spacing:-0.037408pt;}
.ls51{letter-spacing:-0.034176pt;}
.ls6f{letter-spacing:-0.033600pt;}
.ls2a{letter-spacing:-0.032064pt;}
.ls4d{letter-spacing:-0.028537pt;}
.ls28{letter-spacing:-0.026720pt;}
.ls4f{letter-spacing:-0.025632pt;}
.lsd9{letter-spacing:-0.024000pt;}
.ls2b{letter-spacing:-0.021376pt;}
.ls48{letter-spacing:-0.021360pt;}
.ls68{letter-spacing:-0.019200pt;}
.ls47{letter-spacing:-0.017088pt;}
.ls24{letter-spacing:-0.016032pt;}
.ls71{letter-spacing:-0.014400pt;}
.ls49{letter-spacing:-0.014268pt;}
.ls27{letter-spacing:-0.010688pt;}
.ls78{letter-spacing:-0.009600pt;}
.ls2d{letter-spacing:-0.005344pt;}
.ls76{letter-spacing:-0.004800pt;}
.ls4a{letter-spacing:-0.004756pt;}
.lse{letter-spacing:0.000000pt;}
.ls88{letter-spacing:0.000080pt;}
.ls60{letter-spacing:0.000082pt;}
.ls99{letter-spacing:0.000084pt;}
.ls59{letter-spacing:0.000129pt;}
.lsbb{letter-spacing:0.000387pt;}
.ls91{letter-spacing:0.000444pt;}
.ls57{letter-spacing:0.000544pt;}
.lsc6{letter-spacing:0.000921pt;}
.ls87{letter-spacing:0.000967pt;}
.ls9b{letter-spacing:0.001007pt;}
.ls66{letter-spacing:0.001046pt;}
.lsb{letter-spacing:0.001349pt;}
.ls93{letter-spacing:0.001370pt;}
.ls10{letter-spacing:0.001399pt;}
.ls58{letter-spacing:0.001867pt;}
.ls44{letter-spacing:0.001977pt;}
.ls8c{letter-spacing:0.002048pt;}
.lscf{letter-spacing:0.002078pt;}
.ls5e{letter-spacing:0.002091pt;}
.ls9a{letter-spacing:0.002133pt;}
.lsa5{letter-spacing:0.002301pt;}
.ls2{letter-spacing:0.002422pt;}
.ls13{letter-spacing:0.002551pt;}
.ls15{letter-spacing:0.002630pt;}
.ls89{letter-spacing:0.002702pt;}
.ls5f{letter-spacing:0.002759pt;}
.ls11{letter-spacing:0.002809pt;}
.ls5b{letter-spacing:0.002815pt;}
.ls9{letter-spacing:0.002868pt;}
.ls12{letter-spacing:0.002972pt;}
.lsd{letter-spacing:0.003100pt;}
.lsa{letter-spacing:0.003106pt;}
.ls31{letter-spacing:0.003198pt;}
.ls9e{letter-spacing:0.003567pt;}
.ls98{letter-spacing:0.003635pt;}
.lsc7{letter-spacing:0.003942pt;}
.lsce{letter-spacing:0.004324pt;}
.ls3f{letter-spacing:0.004756pt;}
.ls63{letter-spacing:0.004800pt;}
.ls30{letter-spacing:0.004813pt;}
.ls21{letter-spacing:0.005344pt;}
.lsaf{letter-spacing:0.006400pt;}
.ls43{letter-spacing:0.008544pt;}
.ls3d{letter-spacing:0.009512pt;}
.ls69{letter-spacing:0.009600pt;}
.ls7c{letter-spacing:0.010688pt;}
.ls39{letter-spacing:0.012816pt;}
.ls3c{letter-spacing:0.014268pt;}
.lsa3{letter-spacing:0.014400pt;}
.ls1a{letter-spacing:0.016032pt;}
.ls64{letter-spacing:0.019200pt;}
.ls42{letter-spacing:0.021360pt;}
.ls1f{letter-spacing:0.021376pt;}
.ls65{letter-spacing:0.024000pt;}
.ls36{letter-spacing:0.025632pt;}
.ls1c{letter-spacing:0.026720pt;}
.lsd3{letter-spacing:0.028800pt;}
.ls3b{letter-spacing:0.029904pt;}
.ls1e{letter-spacing:0.032064pt;}
.ls62{letter-spacing:0.033600pt;}
.ls1b{letter-spacing:0.037408pt;}
.ls3e{letter-spacing:0.038049pt;}
.lsa2{letter-spacing:0.038400pt;}
.ls3a{letter-spacing:0.038448pt;}
.ls19{letter-spacing:0.042752pt;}
.lsc3{letter-spacing:0.043200pt;}
.ls37{letter-spacing:0.046992pt;}
.ls23{letter-spacing:0.048000pt;}
.ls22{letter-spacing:0.048096pt;}
.ls41{letter-spacing:0.052318pt;}
.ls1d{letter-spacing:0.053440pt;}
.lsc4{letter-spacing:0.057600pt;}
.ls20{letter-spacing:0.058784pt;}
.ls32{letter-spacing:0.060605pt;}
.ls2e{letter-spacing:0.064128pt;}
.ls16{letter-spacing:0.068096pt;}
.ls7e{letter-spacing:0.069472pt;}
.ls6b{letter-spacing:0.074816pt;}
.ls40{letter-spacing:0.076099pt;}
.lsad{letter-spacing:0.076608pt;}
.lscd{letter-spacing:0.080160pt;}
.lsd0{letter-spacing:0.085504pt;}
.ls6a{letter-spacing:0.090848pt;}
.lsd1{letter-spacing:0.091200pt;}
.ls7f{letter-spacing:0.096192pt;}
.ls38{letter-spacing:0.098256pt;}
.lsd2{letter-spacing:0.100800pt;}
.ls80{letter-spacing:0.101536pt;}
.ls85{letter-spacing:0.106880pt;}
.ls35{letter-spacing:0.109392pt;}
.lsc2{letter-spacing:0.112224pt;}
.ls84{letter-spacing:0.117568pt;}
.lsbc{letter-spacing:0.122912pt;}
.lsc5{letter-spacing:0.128256pt;}
.lsac{letter-spacing:0.133600pt;}
.ls34{letter-spacing:0.136362pt;}
.ls33{letter-spacing:0.143938pt;}
.ls2f{letter-spacing:0.144288pt;}
.ls18{letter-spacing:0.153216pt;}
.ls17{letter-spacing:0.161728pt;}
.lsae{letter-spacing:0.170240pt;}
.lse0{letter-spacing:0.466280pt;}
.lsdd{letter-spacing:0.471509pt;}
.lsde{letter-spacing:0.478097pt;}
.lsf{letter-spacing:1.133683pt;}
.ls8{letter-spacing:1.654338pt;}
.ls8a{letter-spacing:2.550272pt;}
.ls8d{letter-spacing:2.555392pt;}
.ls61{letter-spacing:2.603403pt;}
.ls9c{letter-spacing:2.656533pt;}
.ls0{letter-spacing:2.657067pt;}
.ls9d{letter-spacing:2.661867pt;}
.ls77{letter-spacing:3.360000pt;}
.lsc{letter-spacing:10.626533pt;}
.lsdb{letter-spacing:11.500582pt;}
.ls5c{letter-spacing:11.715460pt;}
.ls5d{letter-spacing:11.717141pt;}
.lsdc{letter-spacing:11.927701pt;}
.lsd5{letter-spacing:11.954133pt;}
.lsda{letter-spacing:11.954517pt;}
.ls96{letter-spacing:11.954551pt;}
.ls97{letter-spacing:11.956267pt;}
.lsd4{letter-spacing:11.959467pt;}
.ls54{letter-spacing:12.273851pt;}
.lsdf{letter-spacing:12.435430pt;}
.ls53{letter-spacing:12.752128pt;}
.ls5a{letter-spacing:12.858396pt;}
.ls86{letter-spacing:13.070931pt;}
.ls6d{letter-spacing:13.120767pt;}
.ls8e{letter-spacing:13.124065pt;}
.lsba{letter-spacing:13.135306pt;}
.ls56{letter-spacing:13.222071pt;}
.ls55{letter-spacing:13.227299pt;}
.ls4{letter-spacing:13.283733pt;}
.ls6e{letter-spacing:13.285443pt;}
.lsb6{letter-spacing:13.313831pt;}
.lsb5{letter-spacing:13.319175pt;}
.lsb3{letter-spacing:13.356845pt;}
.lsb4{letter-spacing:13.362287pt;}
.ls94{letter-spacing:13.607185pt;}
.lse1{letter-spacing:13.785976pt;}
.ls8f{letter-spacing:14.810949pt;}
.lsb2{letter-spacing:14.853443pt;}
.lsb1{letter-spacing:14.858672pt;}
.ls95{letter-spacing:15.261286pt;}
.lsb0{letter-spacing:15.303116pt;}
.ls90{letter-spacing:15.942400pt;}
.ls92{letter-spacing:16.458008pt;}
.ls1{letter-spacing:51.035733pt;}
.ls3{letter-spacing:51.041067pt;}
.ls6{letter-spacing:62.432533pt;}
.ls7{letter-spacing:64.314231pt;}
.ls5{letter-spacing:64.321067pt;}
.ls14{letter-spacing:224.273843pt;}
.ls9f{letter-spacing:238.785007pt;}
.lsa1{letter-spacing:250.737007pt;}
.lsa0{letter-spacing:250.742340pt;}
.ls8b{letter-spacing:360.761287pt;}
.lsa4{letter-spacing:375.793007pt;}
.ls6c{letter-spacing:752.000000pt;}
.lsc1{letter-spacing:866.962464pt;}
.lsbd{letter-spacing:867.919040pt;}
.lsc8{letter-spacing:871.120096pt;}
.ls4e{letter-spacing:1029.337660pt;}
.ls45{letter-spacing:1037.599109pt;}
.wsd8{word-spacing:-53.440000pt;}
.wsd5{word-spacing:-32.000000pt;}
.wsd6{word-spacing:-29.440000pt;}
.wsb{word-spacing:-15.461955pt;}
.ws9c{word-spacing:-13.915853pt;}
.wsda{word-spacing:-13.461536pt;}
.wsd9{word-spacing:-13.429472pt;}
.ws174{word-spacing:-13.408096pt;}
.ws175{word-spacing:-13.360000pt;}
.ws4{word-spacing:-13.283467pt;}
.ws22{word-spacing:-12.369595pt;}
.ws1c4{word-spacing:-12.043200pt;}
.ws3d{word-spacing:-11.955200pt;}
.ws92{word-spacing:-11.890400pt;}
.wsc9{word-spacing:-11.716096pt;}
.ws103{word-spacing:-11.476992pt;}
.ws150{word-spacing:-10.810240pt;}
.ws4b{word-spacing:-10.801728pt;}
.ws14f{word-spacing:-10.716608pt;}
.ws4a{word-spacing:-10.708096pt;}
.ws93{word-spacing:-10.680000pt;}
.ws4c{word-spacing:-10.640000pt;}
.ws20{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.ws90{word-spacing:-9.613538pt;}
.ws8f{word-spacing:-9.530205pt;}
.ws91{word-spacing:-9.469600pt;}
.ws4d{word-spacing:-8.000000pt;}
.wsd7{word-spacing:-7.360000pt;}
.wsd{word-spacing:-4.675780pt;}
.ws47{word-spacing:-4.197575pt;}
.wscb{word-spacing:-3.969126pt;}
.ws89{word-spacing:-3.931906pt;}
.ws8a{word-spacing:-3.559969pt;}
.ws116{word-spacing:-3.506835pt;}
.ws16f{word-spacing:-3.453701pt;}
.wsc{word-spacing:-3.294300pt;}
.ws27{word-spacing:-3.188032pt;}
.wsed{word-spacing:-3.168992pt;}
.ws13c{word-spacing:-3.120896pt;}
.ws172{word-spacing:-3.028630pt;}
.ws1c0{word-spacing:-2.917069pt;}
.ws13b{word-spacing:-2.891104pt;}
.wsc2{word-spacing:-2.869229pt;}
.wsee{word-spacing:-2.821632pt;}
.ws7b{word-spacing:-2.752160pt;}
.ws171{word-spacing:-2.709827pt;}
.ws173{word-spacing:-2.656693pt;}
.ws101{word-spacing:-2.550426pt;}
.ws45{word-spacing:-2.497292pt;}
.wsc6{word-spacing:-2.486682pt;}
.ws177{word-spacing:-2.474272pt;}
.ws124{word-spacing:-2.438861pt;}
.ws7c{word-spacing:-2.335328pt;}
.ws18f{word-spacing:-2.284756pt;}
.ws125{word-spacing:-2.247578pt;}
.ws74{word-spacing:-2.164320pt;}
.ws46{word-spacing:-2.125355pt;}
.ws178{word-spacing:-2.121568pt;}
.ws15e{word-spacing:-2.107200pt;}
.ws15d{word-spacing:-2.088000pt;}
.ws15c{word-spacing:-2.068800pt;}
.ws179{word-spacing:-1.971936pt;}
.ws77{word-spacing:-1.886432pt;}
.ws75{word-spacing:-1.875744pt;}
.ws76{word-spacing:-1.865056pt;}
.wsdb{word-spacing:-1.859685pt;}
.ws67{word-spacing:-1.838336pt;}
.ws1cf{word-spacing:-1.832992pt;}
.ws10{word-spacing:-1.806551pt;}
.ws11c{word-spacing:-1.721549pt;}
.ws10a{word-spacing:-1.700284pt;}
.ws9{word-spacing:-1.696326pt;}
.ws25{word-spacing:-1.647150pt;}
.ws20b{word-spacing:-1.625907pt;}
.ws2e{word-spacing:-1.594016pt;}
.ws1d0{word-spacing:-1.565792pt;}
.ws17a{word-spacing:-1.544416pt;}
.ws1a7{word-spacing:-1.539072pt;}
.ws1a6{word-spacing:-1.507008pt;}
.wsbe{word-spacing:-1.487748pt;}
.ws11d{word-spacing:-1.482445pt;}
.wsbf{word-spacing:-1.434614pt;}
.ws28{word-spacing:-1.328347pt;}
.ws16c{word-spacing:-1.275213pt;}
.ws5e{word-spacing:-1.255840pt;}
.ws187{word-spacing:-1.250496pt;}
.ws1da{word-spacing:-1.234464pt;}
.ws1db{word-spacing:-1.223776pt;}
.ws152{word-spacing:-1.222079pt;}
.ws186{word-spacing:-1.218432pt;}
.ws1af{word-spacing:-1.207744pt;}
.ws13e{word-spacing:-1.197056pt;}
.ws201{word-spacing:-1.195520pt;}
.ws13f{word-spacing:-1.186368pt;}
.ws1e3{word-spacing:-1.176000pt;}
.ws8{word-spacing:-1.175671pt;}
.ws1e4{word-spacing:-1.161600pt;}
.ws157{word-spacing:-1.128000pt;}
.wsf3{word-spacing:-1.123200pt;}
.wsa{word-spacing:-1.115811pt;}
.ws158{word-spacing:-1.099200pt;}
.ws1d9{word-spacing:-1.063456pt;}
.ws32{word-spacing:-1.062677pt;}
.wsc1{word-spacing:-1.009543pt;}
.ws16d{word-spacing:-0.956410pt;}
.ws13d{word-spacing:-0.940544pt;}
.ws185{word-spacing:-0.935200pt;}
.ws15f{word-spacing:-0.908480pt;}
.ws34{word-spacing:-0.903276pt;}
.ws1b0{word-spacing:-0.887104pt;}
.ws9b{word-spacing:-0.860774pt;}
.ws35{word-spacing:-0.850142pt;}
.ws36{word-spacing:-0.797008pt;}
.wsb1{word-spacing:-0.684887pt;}
.ws206{word-spacing:-0.669491pt;}
.ws2d{word-spacing:-0.637606pt;}
.ws139{word-spacing:-0.630592pt;}
.ws138{word-spacing:-0.625248pt;}
.ws9a{word-spacing:-0.621670pt;}
.wsdc{word-spacing:-0.584473pt;}
.ws1e7{word-spacing:-0.580800pt;}
.ws13a{word-spacing:-0.577152pt;}
.wsb2{word-spacing:-0.575495pt;}
.ws1b7{word-spacing:-0.561120pt;}
.ws24{word-spacing:-0.531339pt;}
.ws1e8{word-spacing:-0.499200pt;}
.ws49{word-spacing:-0.478205pt;}
.ws1b8{word-spacing:-0.459584pt;}
.ws1ff{word-spacing:-0.430387pt;}
.wsc3{word-spacing:-0.425071pt;}
.ws33{word-spacing:-0.371937pt;}
.ws189{word-spacing:-0.352704pt;}
.ws193{word-spacing:-0.342016pt;}
.wsf9{word-spacing:-0.331328pt;}
.wsce{word-spacing:-0.318803pt;}
.ws70{word-spacing:-0.299264pt;}
.ws216{word-spacing:-0.295586pt;}
.ws1ac{word-spacing:-0.293920pt;}
.ws1c9{word-spacing:-0.286925pt;}
.ws146{word-spacing:-0.277888pt;}
.ws71{word-spacing:-0.272544pt;}
.wsb3{word-spacing:-0.266345pt;}
.ws26{word-spacing:-0.265669pt;}
.wsf6{word-spacing:-0.251168pt;}
.ws156{word-spacing:-0.246848pt;}
.ws1b3{word-spacing:-0.245824pt;}
.ws4e{word-spacing:-0.242592pt;}
.wsc7{word-spacing:-0.239104pt;}
.ws1f4{word-spacing:-0.235136pt;}
.ws9d{word-spacing:-0.215907pt;}
.ws29{word-spacing:-0.212535pt;}
.ws217{word-spacing:-0.191283pt;}
.wse6{word-spacing:-0.168000pt;}
.ws1a{word-spacing:-0.159402pt;}
.wsef{word-spacing:-0.149632pt;}
.wse8{word-spacing:-0.144000pt;}
.ws95{word-spacing:-0.143462pt;}
.ws145{word-spacing:-0.128256pt;}
.wse5{word-spacing:-0.124800pt;}
.wse7{word-spacing:-0.120000pt;}
.ws1c{word-spacing:-0.106268pt;}
.wscd{word-spacing:-0.095642pt;}
.ws18b{word-spacing:-0.090848pt;}
.ws5d{word-spacing:-0.069472pt;}
.ws5{word-spacing:-0.053134pt;}
.ws3c{word-spacing:-0.047821pt;}
.wsc8{word-spacing:-0.046864pt;}
.ws104{word-spacing:-0.045908pt;}
.ws14{word-spacing:-0.040382pt;}
.wscc{word-spacing:-0.037194pt;}
.wsca{word-spacing:-0.036450pt;}
.ws105{word-spacing:-0.035706pt;}
.wsf8{word-spacing:-0.016032pt;}
.ws1ce{word-spacing:-0.005344pt;}
.ws3{word-spacing:-0.004999pt;}
.wse1{word-spacing:-0.004005pt;}
.wse2{word-spacing:-0.001333pt;}
.ws1ca{word-spacing:-0.000751pt;}
.ws1{word-spacing:-0.000489pt;}
.ws0{word-spacing:0.000000pt;}
.ws1f8{word-spacing:0.001485pt;}
.ws1f{word-spacing:0.002365pt;}
.wsfa{word-spacing:0.005344pt;}
.ws1b5{word-spacing:0.010688pt;}
.ws1df{word-spacing:0.026720pt;}
.ws7e{word-spacing:0.032064pt;}
.ws1cd{word-spacing:0.042752pt;}
.ws94{word-spacing:0.047821pt;}
.ws115{word-spacing:0.048096pt;}
.ws13{word-spacing:0.053134pt;}
.ws114{word-spacing:0.053440pt;}
.ws17b{word-spacing:0.058784pt;}
.ws66{word-spacing:0.064128pt;}
.ws1a2{word-spacing:0.090848pt;}
.ws6{word-spacing:0.095642pt;}
.ws197{word-spacing:0.100800pt;}
.ws188{word-spacing:0.101536pt;}
.wsa5{word-spacing:0.102528pt;}
.ws23{word-spacing:0.106268pt;}
.ws80{word-spacing:0.110400pt;}
.wsa6{word-spacing:0.111072pt;}
.ws15a{word-spacing:0.115200pt;}
.ws1f2{word-spacing:0.120000pt;}
.ws1f3{word-spacing:0.129600pt;}
.wsd4{word-spacing:0.134400pt;}
.wsd3{word-spacing:0.139200pt;}
.ws16a{word-spacing:0.143462pt;}
.ws1ee{word-spacing:0.144000pt;}
.ws1e9{word-spacing:0.148800pt;}
.ws111{word-spacing:0.153600pt;}
.ws7f{word-spacing:0.158400pt;}
.ws15{word-spacing:0.159402pt;}
.wsf7{word-spacing:0.160320pt;}
.ws15b{word-spacing:0.163200pt;}
.wsb5{word-spacing:0.171222pt;}
.ws192{word-spacing:0.187040pt;}
.ws203{word-spacing:0.191283pt;}
.ws144{word-spacing:0.211200pt;}
.ws1b{word-spacing:0.212535pt;}
.ws18a{word-spacing:0.213760pt;}
.ws147{word-spacing:0.224448pt;}
.ws11e{word-spacing:0.239104pt;}
.wsf4{word-spacing:0.240000pt;}
.wsf{word-spacing:0.265669pt;}
.ws19{word-spacing:0.318803pt;}
.wsf5{word-spacing:0.360000pt;}
.ws1f9{word-spacing:0.382566pt;}
.ws1d8{word-spacing:0.395456pt;}
.ws153{word-spacing:0.425071pt;}
.ws1bf{word-spacing:0.430387pt;}
.ws155{word-spacing:0.478205pt;}
.ws8b{word-spacing:0.531339pt;}
.ws134{word-spacing:0.550432pt;}
.wscf{word-spacing:0.584473pt;}
.wse{word-spacing:0.637606pt;}
.ws6b{word-spacing:0.662656pt;}
.ws1be{word-spacing:0.669491pt;}
.wsbd{word-spacing:0.683520pt;}
.ws1d7{word-spacing:0.694720pt;}
.ws127{word-spacing:0.717312pt;}
.ws1d3{word-spacing:0.732128pt;}
.wsbc{word-spacing:0.734784pt;}
.ws6c{word-spacing:0.742816pt;}
.ws31{word-spacing:0.743874pt;}
.ws143{word-spacing:0.763200pt;}
.wsd1{word-spacing:0.768000pt;}
.wsd2{word-spacing:0.796800pt;}
.wse4{word-spacing:0.797008pt;}
.wsd0{word-spacing:0.820800pt;}
.ws1d4{word-spacing:0.839008pt;}
.ws16b{word-spacing:0.850142pt;}
.ws118{word-spacing:0.903276pt;}
.ws1fd{word-spacing:0.908595pt;}
.ws12{word-spacing:0.956410pt;}
.ws97{word-spacing:0.956416pt;}
.ws7d{word-spacing:0.977952pt;}
.wse9{word-spacing:0.983296pt;}
.ws6a{word-spacing:0.988640pt;}
.ws68{word-spacing:0.999328pt;}
.ws126{word-spacing:1.004237pt;}
.ws1d{word-spacing:1.009543pt;}
.ws98{word-spacing:1.052058pt;}
.ws82{word-spacing:1.062677pt;}
.ws69{word-spacing:1.074144pt;}
.ws99{word-spacing:1.099878pt;}
.ws18{word-spacing:1.115811pt;}
.ws168{word-spacing:1.127584pt;}
.wsc5{word-spacing:1.147699pt;}
.ws30{word-spacing:1.168945pt;}
.wsb4{word-spacing:1.170015pt;}
.wsa7{word-spacing:1.193796pt;}
.ws96{word-spacing:1.195520pt;}
.ws128{word-spacing:1.222079pt;}
.wsa2{word-spacing:1.234608pt;}
.ws102{word-spacing:1.243341pt;}
.wsa1{word-spacing:1.255968pt;}
.wsa3{word-spacing:1.268784pt;}
.ws42{word-spacing:1.275213pt;}
.wsa0{word-spacing:1.298688pt;}
.wsa4{word-spacing:1.302960pt;}
.ws1ab{word-spacing:1.319968pt;}
.wsdf{word-spacing:1.328347pt;}
.ws218{word-spacing:1.338982pt;}
.ws1aa{word-spacing:1.357376pt;}
.wse0{word-spacing:1.381481pt;}
.wsc4{word-spacing:1.386803pt;}
.ws1e6{word-spacing:1.396800pt;}
.wsde{word-spacing:1.434614pt;}
.ws222{word-spacing:1.434624pt;}
.ws169{word-spacing:1.464256pt;}
.ws170{word-spacing:1.487748pt;}
.ws10c{word-spacing:1.540882pt;}
.ws1e5{word-spacing:1.550400pt;}
.ws129{word-spacing:1.594016pt;}
.ws83{word-spacing:1.647150pt;}
.ws10b{word-spacing:1.700284pt;}
.wsa8{word-spacing:1.764535pt;}
.wsa9{word-spacing:1.793072pt;}
.ws81{word-spacing:1.806551pt;}
.ws223{word-spacing:1.817190pt;}
.ws84{word-spacing:1.912819pt;}
.ws209{word-spacing:1.918264pt;}
.ws1bb{word-spacing:1.955904pt;}
.ws20a{word-spacing:1.960653pt;}
.ws17e{word-spacing:1.961248pt;}
.ws11b{word-spacing:1.965953pt;}
.ws167{word-spacing:1.977280pt;}
.ws11a{word-spacing:1.979576pt;}
.ws1fb{word-spacing:2.008474pt;}
.ws151{word-spacing:2.019087pt;}
.ws166{word-spacing:2.020032pt;}
.ws2f{word-spacing:2.072221pt;}
.ws204{word-spacing:2.104115pt;}
.ws88{word-spacing:2.178489pt;}
.ws199{word-spacing:2.244480pt;}
.ws1dc{word-spacing:2.260512pt;}
.ws5b{word-spacing:2.265856pt;}
.ws1c3{word-spacing:2.295398pt;}
.ws5c{word-spacing:2.319296pt;}
.wsc0{word-spacing:2.337890pt;}
.ws214{word-spacing:2.343219pt;}
.ws133{word-spacing:2.361600pt;}
.ws6e{word-spacing:2.367392pt;}
.ws132{word-spacing:2.376000pt;}
.ws165{word-spacing:2.388768pt;}
.ws2a{word-spacing:2.391024pt;}
.ws224{word-spacing:2.438861pt;}
.ws12a{word-spacing:2.444158pt;}
.ws1ea{word-spacing:2.472000pt;}
.wsdd{word-spacing:2.497292pt;}
.ws21b{word-spacing:2.534502pt;}
.ws44{word-spacing:2.550426pt;}
.ws136{word-spacing:2.570464pt;}
.ws21c{word-spacing:2.582323pt;}
.ws6f{word-spacing:2.597184pt;}
.ws6d{word-spacing:2.618560pt;}
.ws198{word-spacing:2.623904pt;}
.ws137{word-spacing:2.634592pt;}
.ws190{word-spacing:2.656693pt;}
.ws1ec{word-spacing:2.702400pt;}
.ws1ed{word-spacing:2.712000pt;}
.ws1f1{word-spacing:2.716800pt;}
.ws16e{word-spacing:2.816095pt;}
.ws38{word-spacing:2.821427pt;}
.ws86{word-spacing:2.869229pt;}
.ws87{word-spacing:2.922363pt;}
.ws1b6{word-spacing:2.933856pt;}
.ws1e2{word-spacing:2.947200pt;}
.wsb6{word-spacing:2.969040pt;}
.ws1e0{word-spacing:2.985600pt;}
.ws1e1{word-spacing:3.014400pt;}
.wsb7{word-spacing:3.016032pt;}
.ws142{word-spacing:3.024000pt;}
.ws141{word-spacing:3.033600pt;}
.ws140{word-spacing:3.043200pt;}
.ws2c{word-spacing:3.081764pt;}
.ws37{word-spacing:3.108352pt;}
.ws100{word-spacing:3.134898pt;}
.ws117{word-spacing:3.188032pt;}
.ws1d1{word-spacing:3.222432pt;}
.ws85{word-spacing:3.241166pt;}
.ws43{word-spacing:3.294300pt;}
.ws202{word-spacing:3.299635pt;}
.ws12c{word-spacing:3.326400pt;}
.ws119{word-spacing:3.347434pt;}
.wsf0{word-spacing:3.364800pt;}
.ws12b{word-spacing:3.379200pt;}
.ws21f{word-spacing:3.395277pt;}
.ws215{word-spacing:3.490918pt;}
.ws21d{word-spacing:3.538739pt;}
.ws154{word-spacing:3.559969pt;}
.ws8c{word-spacing:3.613103pt;}
.ws18e{word-spacing:3.719371pt;}
.ws17c{word-spacing:3.772864pt;}
.ws18d{word-spacing:3.825664pt;}
.ws17d{word-spacing:3.847680pt;}
.ws1c6{word-spacing:3.921306pt;}
.ws8d{word-spacing:3.985040pt;}
.ws159{word-spacing:3.993600pt;}
.ws1c1{word-spacing:4.064768pt;}
.wsba{word-spacing:4.092576pt;}
.wsbb{word-spacing:4.122480pt;}
.ws41{word-spacing:4.144442pt;}
.ws18c{word-spacing:4.160410pt;}
.wsb8{word-spacing:4.165200pt;}
.wsb9{word-spacing:4.190832pt;}
.ws1a1{word-spacing:4.205728pt;}
.ws1c5{word-spacing:4.208230pt;}
.ws59{word-spacing:4.248480pt;}
.ws5a{word-spacing:4.264512pt;}
.ws1a0{word-spacing:4.328640pt;}
.ws205{word-spacing:4.399514pt;}
.ws200{word-spacing:4.447334pt;}
.ws14d{word-spacing:4.463245pt;}
.ws14e{word-spacing:4.516379pt;}
.ws1fa{word-spacing:4.686438pt;}
.ws20e{word-spacing:4.734259pt;}
.ws207{word-spacing:4.776439pt;}
.ws1fc{word-spacing:4.778428pt;}
.ws20d{word-spacing:4.778470pt;}
.ws1c8{word-spacing:4.778667pt;}
.ws21e{word-spacing:4.781969pt;}
.ws7{word-spacing:4.782080pt;}
.ws21a{word-spacing:4.782549pt;}
.ws212{word-spacing:4.784000pt;}
.ws19a{word-spacing:4.825632pt;}
.ws1fe{word-spacing:4.829901pt;}
.ws19c{word-spacing:4.873728pt;}
.ws20c{word-spacing:4.877722pt;}
.ws19b{word-spacing:4.895104pt;}
.ws213{word-spacing:5.021184pt;}
.ws39{word-spacing:5.069005pt;}
.ws1e{word-spacing:5.100851pt;}
.wse3{word-spacing:5.153985pt;}
.ws11{word-spacing:5.207119pt;}
.ws1ef{word-spacing:5.280000pt;}
.ws1f0{word-spacing:5.304000pt;}
.ws17{word-spacing:5.313387pt;}
.ws1ba{word-spacing:5.392096pt;}
.ws1b9{word-spacing:5.466912pt;}
.ws56{word-spacing:5.493632pt;}
.ws48{word-spacing:5.579056pt;}
.ws10e{word-spacing:5.595034pt;}
.ws55{word-spacing:5.691360pt;}
.ws8e{word-spacing:5.738458pt;}
.ws208{word-spacing:5.786317pt;}
.ws195{word-spacing:5.894400pt;}
.ws194{word-spacing:5.899200pt;}
.ws196{word-spacing:5.913600pt;}
.ws1eb{word-spacing:5.923200pt;}
.ws10d{word-spacing:5.977600pt;}
.ws1f5{word-spacing:6.196800pt;}
.ws1f6{word-spacing:6.211200pt;}
.ws1f7{word-spacing:6.235200pt;}
.ws1ad{word-spacing:6.450208pt;}
.ws211{word-spacing:6.455808pt;}
.ws163{word-spacing:6.498304pt;}
.ws210{word-spacing:6.503629pt;}
.ws164{word-spacing:6.508992pt;}
.ws2b{word-spacing:6.641733pt;}
.ws191{word-spacing:6.748001pt;}
.ws180{word-spacing:6.749472pt;}
.ws161{word-spacing:6.786880pt;}
.ws162{word-spacing:7.112864pt;}
.ws160{word-spacing:7.144928pt;}
.ws9e{word-spacing:7.196896pt;}
.ws219{word-spacing:7.268762pt;}
.ws1b1{word-spacing:7.438848pt;}
.ws221{word-spacing:7.460045pt;}
.ws17f{word-spacing:7.690016pt;}
.ws16{word-spacing:7.757545pt;}
.ws1cc{word-spacing:8.010656pt;}
.ws1a8{word-spacing:8.032032pt;}
.ws1a5{word-spacing:8.037376pt;}
.ws4f{word-spacing:8.086400pt;}
.ws1cb{word-spacing:8.090816pt;}
.ws1dd{word-spacing:8.347328pt;}
.ws78{word-spacing:8.363360pt;}
.ws1de{word-spacing:8.395424pt;}
.ws184{word-spacing:8.673312pt;}
.ws183{word-spacing:8.684000pt;}
.ws5f{word-spacing:8.689344pt;}
.ws63{word-spacing:8.705376pt;}
.ws1c7{word-spacing:8.846848pt;}
.ws60{word-spacing:8.865696pt;}
.ws58{word-spacing:9.357344pt;}
.ws110{word-spacing:9.417600pt;}
.wsaa{word-spacing:9.431465pt;}
.ws10f{word-spacing:9.460800pt;}
.ws57{word-spacing:9.501632pt;}
.ws20f{word-spacing:9.898906pt;}
.ws1a3{word-spacing:9.966560pt;}
.ws1c2{word-spacing:10.185830pt;}
.ws1b4{word-spacing:11.179648pt;}
.wsea{word-spacing:11.217056pt;}
.ws220{word-spacing:11.333530pt;}
.wsec{word-spacing:11.414784pt;}
.wseb{word-spacing:11.446848pt;}
.ws62{word-spacing:11.548384pt;}
.ws61{word-spacing:11.569760pt;}
.ws1a9{word-spacing:11.585792pt;}
.ws109{word-spacing:11.689451pt;}
.wsab{word-spacing:11.742959pt;}
.wsac{word-spacing:11.752471pt;}
.ws72{word-spacing:11.917120pt;}
.ws73{word-spacing:11.927808pt;}
.ws1d2{word-spacing:12.178976pt;}
.ws1a4{word-spacing:12.200352pt;}
.wsae{word-spacing:12.313698pt;}
.wsad{word-spacing:12.389797pt;}
.ws19e{word-spacing:12.558400pt;}
.ws19f{word-spacing:12.820256pt;}
.ws7a{word-spacing:12.852320pt;}
.ws79{word-spacing:13.151584pt;}
.ws52{word-spacing:13.162272pt;}
.ws113{word-spacing:13.514976pt;}
.ws112{word-spacing:13.547040pt;}
.ws1bc{word-spacing:14.402080pt;}
.ws176{word-spacing:14.444832pt;}
.ws1bd{word-spacing:14.498272pt;}
.ws1ae{word-spacing:14.749440pt;}
.ws1b2{word-spacing:14.765472pt;}
.ws135{word-spacing:15.086112pt;}
.ws64{word-spacing:15.438816pt;}
.ws65{word-spacing:15.454848pt;}
.ws19d{word-spacing:15.754112pt;}
.wsf1{word-spacing:16.809600pt;}
.wsf2{word-spacing:16.857600pt;}
.ws181{word-spacing:16.972544pt;}
.ws182{word-spacing:17.042016pt;}
.ws54{word-spacing:20.862976pt;}
.ws53{word-spacing:20.895040pt;}
.ws50{word-spacing:23.075392pt;}
.ws51{word-spacing:23.102112pt;}
.ws1d5{word-spacing:23.123488pt;}
.ws1d6{word-spacing:23.502912pt;}
.wsb0{word-spacing:27.438287pt;}
.wsaf{word-spacing:27.794999pt;}
.ws3a{word-spacing:151.018086pt;}
.ws3e{word-spacing:182.523136pt;}
.ws120{word-spacing:190.799223pt;}
.ws121{word-spacing:194.023031pt;}
.ws11f{word-spacing:197.707435pt;}
.ws123{word-spacing:201.937050pt;}
.ws14b{word-spacing:203.494176pt;}
.ws122{word-spacing:204.234513pt;}
.ws3f{word-spacing:223.334596pt;}
.ws12f{word-spacing:227.674829pt;}
.ws3b{word-spacing:230.352794pt;}
.ws12d{word-spacing:231.357030pt;}
.ws108{word-spacing:231.605699pt;}
.ws106{word-spacing:231.651607pt;}
.ws40{word-spacing:233.667157pt;}
.ws131{word-spacing:235.565261pt;}
.ws130{word-spacing:241.303757pt;}
.ws149{word-spacing:270.598784pt;}
.ws14a{word-spacing:279.624800pt;}
.ws148{word-spacing:283.483168pt;}
.ws14c{word-spacing:288.266048pt;}
.ws107{word-spacing:288.990659pt;}
.ws12e{word-spacing:301.079757pt;}
.wsfc{word-spacing:301.422976pt;}
.wsfd{word-spacing:304.923296pt;}
.wsfb{word-spacing:309.096960pt;}
.wsff{word-spacing:313.879840pt;}
.wsfe{word-spacing:316.455648pt;}
.ws21{word-spacing:688.574133pt;}
.ws9f{word-spacing:979.959206pt;}
._48{margin-left:-316.749568pt;}
._4c{margin-left:-314.195136pt;}
._3e{margin-left:-309.543834pt;}
._44{margin-left:-305.238592pt;}
._41{margin-left:-301.246624pt;}
._6a{margin-left:-84.277289pt;}
._5e{margin-left:-80.015597pt;}
._64{margin-left:-75.726889pt;}
._63{margin-left:-66.645024pt;}
._6e{margin-left:-58.586272pt;}
._61{margin-left:-53.755296pt;}
._6b{margin-left:-52.109344pt;}
._68{margin-left:-49.945024pt;}
._47{margin-left:-47.924992pt;}
._65{margin-left:-43.468096pt;}
._6d{margin-left:-38.375264pt;}
._60{margin-left:-33.560320pt;}
._4b{margin-left:-31.914368pt;}
._67{margin-left:-29.734016pt;}
._43{margin-left:-22.957824pt;}
._6c{margin-left:-18.212352pt;}
._5f{margin-left:-12.750784pt;}
._66{margin-left:-9.571104pt;}
._1{margin-left:-7.077478pt;}
._6{margin-left:-6.168883pt;}
._4{margin-left:-5.260288pt;}
._7{margin-left:-3.586560pt;}
._9{margin-left:-1.819895pt;}
._5{margin-left:-0.908595pt;}
._a{width:0.969929pt;}
._2{width:2.665692pt;}
._62{width:5.440192pt;}
._75{width:7.507866pt;}
._76{width:9.372877pt;}
._14{width:11.012089pt;}
._2c{width:12.698994pt;}
._d{width:14.253220pt;}
._11{width:15.261603pt;}
._8{width:16.737280pt;}
._2d{width:17.648580pt;}
._b{width:18.546197pt;}
._e{width:19.619740pt;}
._10{width:20.934743pt;}
._c{width:22.701505pt;}
._73{width:23.894711pt;}
._f{width:25.026051pt;}
._74{width:26.314608pt;}
._2a{width:27.629611pt;}
._29{width:28.756176pt;}
._15{width:31.755716pt;}
._0{width:33.474560pt;}
._12{width:35.028562pt;}
._3{width:48.364602pt;}
._69{width:53.676241pt;}
._45{width:84.889440pt;}
._4f{width:87.539978pt;}
._49{width:88.884343pt;}
._1b{width:90.524774pt;}
._3c{width:92.189344pt;}
._1a{width:97.889178pt;}
._3f{width:99.938144pt;}
._5b{width:101.516741pt;}
._5d{width:130.374344pt;}
._46{width:133.861856pt;}
._4a{width:149.845760pt;}
._19{width:152.739635pt;}
._3d{width:154.676736pt;}
._42{width:158.663165pt;}
._40{width:162.366752pt;}
._1d{width:169.033549pt;}
._1c{width:185.305600pt;}
._18{width:197.117338pt;}
._1e{width:204.146995pt;}
._26{width:208.785613pt;}
._20{width:213.089485pt;}
._21{width:216.095915pt;}
._1f{width:227.148800pt;}
._23{width:228.057395pt;}
._4e{width:235.035779pt;}
._71{width:236.378214pt;}
._22{width:239.104000pt;}
._56{width:243.082691pt;}
._55{width:245.378089pt;}
._57{width:248.453923pt;}
._72{width:249.815859pt;}
._24{width:251.059200pt;}
._50{width:251.988836pt;}
._16{width:253.115494pt;}
._17{width:255.793459pt;}
._58{width:258.278228pt;}
._27{width:259.810406pt;}
._54{width:266.082583pt;}
._25{width:267.031347pt;}
._51{width:271.775171pt;}
._5c{width:277.166388pt;}
._53{width:283.252163pt;}
._59{width:289.524339pt;}
._70{width:295.102157pt;}
._52{width:300.513559pt;}
._37{width:304.665360pt;}
._6f{width:312.977572pt;}
._34{width:316.381456pt;}
._32{width:324.863910pt;}
._33{width:328.050688pt;}
._2e{width:331.659246pt;}
._31{width:333.674414pt;}
._38{width:335.783311pt;}
._35{width:338.032802pt;}
._3b{width:363.995671pt;}
._2f{width:435.416992pt;}
._39{width:447.133088pt;}
._36{width:481.437817pt;}
._30{width:493.153913pt;}
._3a{width:504.870009pt;}
._2b{width:1563.540321pt;}
._5a{width:1736.148407pt;}
._28{width:1757.585879pt;}
._4d{width:1766.469537pt;}
._13{width:1787.722870pt;}
.fs12{font-size:29.440000pt;}
.fsc{font-size:32.000000pt;}
.fs15{font-size:35.705856pt;}
.fs11{font-size:36.449728pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fsd{font-size:37.878400pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:42.560000pt;}
.fse{font-size:42.720000pt;}
.fs14{font-size:45.907968pt;}
.fs10{font-size:46.864384pt;}
.fsf{font-size:47.561600pt;}
.fs5{font-size:47.820800pt;}
.fsa{font-size:48.000000pt;}
.fs1{font-size:53.133867pt;}
.fsb{font-size:53.440000pt;}
.fs13{font-size:64.000000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:107.509760pt;}
.y29d{bottom:-671.654267pt;}
.y2c1{bottom:-651.013963pt;}
.y2c0{bottom:-633.094195pt;}
.y227{bottom:-617.130267pt;}
.y2bf{bottom:-615.094195pt;}
.y2be{bottom:-597.091515pt;}
.y236{bottom:-592.010267pt;}
.y234{bottom:-592.009819pt;}
.y235{bottom:-588.650267pt;}
.y2bd{bottom:-579.091587pt;}
.y233{bottom:-574.090051pt;}
.y1ae{bottom:-566.932933pt;}
.yd1{bottom:-565.035724pt;}
.y2bc{bottom:-561.091659pt;}
.y232{bottom:-556.090123pt;}
.ye4{bottom:-550.226480pt;}
.y1b6{bottom:-545.332861pt;}
.y2bb{bottom:-543.091731pt;}
.y231{bottom:-538.090195pt;}
.ye3{bottom:-534.775724pt;}
.y1b5{bottom:-527.332933pt;}
.y2ba{bottom:-525.091803pt;}
.y230{bottom:-520.090267pt;}
.ye2{bottom:-519.396524pt;}
.y2b9{bottom:-507.172035pt;}
.ye1{bottom:-496.469391pt;}
.y1b4{bottom:-493.813333pt;}
.y2b8{bottom:-489.172107pt;}
.y22f{bottom:-486.490667pt;}
.ye0{bottom:-480.449455pt;}
.y1b3{bottom:-476.452933pt;}
.y2b7{bottom:-471.172179pt;}
.y22e{bottom:-469.130267pt;}
.y1b2{bottom:-454.692933pt;}
.y2b6{bottom:-453.172251pt;}
.y22d{bottom:-451.850267pt;}
.y2b5{bottom:-435.172323pt;}
.y14f{bottom:-432.351600pt;}
.y22c{bottom:-430.090267pt;}
.y1f7{bottom:-426.726267pt;}
.y2b4{bottom:-417.172395pt;}
.y20f{bottom:-399.686051pt;}
.y2b3{bottom:-399.172467pt;}
.y16a{bottom:-382.031600pt;}
.y20e{bottom:-381.686123pt;}
.y2b2{bottom:-373.252731pt;}
.y20d{bottom:-363.686195pt;}
.y169{bottom:-361.311224pt;}
.y20c{bottom:-345.686267pt;}
.y168{bottom:-343.311296pt;}
.y2b1{bottom:-339.252867pt;}
.y20b{bottom:-327.686267pt;}
.y167{bottom:-325.311368pt;}
.y2b0{bottom:-321.252939pt;}
.y20a{bottom:-309.046061pt;}
.y166{bottom:-307.391600pt;}
.y1e8{bottom:-306.426267pt;}
.y13e{bottom:-303.828933pt;}
.y2af{bottom:-303.253011pt;}
.y209{bottom:-291.046133pt;}
.y205{bottom:-290.726195pt;}
.y165{bottom:-289.391600pt;}
.y2ae{bottom:-285.253083pt;}
.y204{bottom:-272.726267pt;}
.y208{bottom:-272.406267pt;}
.y207{bottom:-272.405627pt;}
.y162{bottom:-270.751600pt;}
.y15f{bottom:-270.750904pt;}
.y2ad{bottom:-267.253155pt;}
.y15c{bottom:-261.711528pt;}
.y164{bottom:-261.710888pt;}
.y206{bottom:-254.405699pt;}
.y161{bottom:-252.751672pt;}
.y15e{bottom:-252.750976pt;}
.y2ac{bottom:-249.253227pt;}
.y15b{bottom:-243.711600pt;}
.y163{bottom:-243.710960pt;}
.y160{bottom:-234.751744pt;}
.y15d{bottom:-234.751048pt;}
.y2ab{bottom:-231.333459pt;}
.y203{bottom:-227.527067pt;}
.y2aa{bottom:-213.333531pt;}
.y202{bottom:-210.166667pt;}
.y15a{bottom:-207.872400pt;}
.ydf{bottom:-207.539805pt;}
.y2a9{bottom:-195.333603pt;}
.y201{bottom:-192.806267pt;}
.yde{bottom:-191.519869pt;}
.y159{bottom:-190.512000pt;}
.y254{bottom:-187.856933pt;}
.y2a8{bottom:-177.333675pt;}
.ydd{bottom:-175.499933pt;}
.y158{bottom:-173.152000pt;}
.y263{bottom:-162.736933pt;}
.y261{bottom:-162.736485pt;}
.ydc{bottom:-159.479997pt;}
.y262{bottom:-159.376933pt;}
.y2a7{bottom:-159.333747pt;}
.y200{bottom:-159.125989pt;}
.y157{bottom:-155.791600pt;}
.y260{bottom:-144.816717pt;}
.ydb{bottom:-143.531404pt;}
.y2a6{bottom:-141.333819pt;}
.y1ff{bottom:-141.126061pt;}
.yda{bottom:-127.511468pt;}
.y25f{bottom:-126.816789pt;}
.y287{bottom:-123.379600pt;}
.y2a5{bottom:-123.333891pt;}
.y1fe{bottom:-123.125917pt;}
.y156{bottom:-122.111456pt;}
.y1bb{bottom:-112.127600pt;}
.yd9{bottom:-111.491532pt;}
.y25e{bottom:-108.816861pt;}
.y2a4{bottom:-105.414123pt;}
.y1fd{bottom:-105.125989pt;}
.y155{bottom:-104.111528pt;}
.yd8{bottom:-95.471596pt;}
.y25d{bottom:-90.816933pt;}
.y1c3{bottom:-90.527528pt;}
.y2a3{bottom:-87.414195pt;}
.y1fc{bottom:-87.126061pt;}
.y154{bottom:-86.111528pt;}
.yd7{bottom:-79.451660pt;}
.y1c2{bottom:-72.527600pt;}
.y2a2{bottom:-69.414267pt;}
.y1fb{bottom:-69.126133pt;}
.y153{bottom:-68.111600pt;}
.yd6{bottom:-63.431724pt;}
.yf3{bottom:-63.206020pt;}
.y22b{bottom:-62.250267pt;}
.y25c{bottom:-57.217333pt;}
.y2f3{bottom:-54.574133pt;}
.y106{bottom:-48.396776pt;}
.y141{bottom:-47.589333pt;}
.y22a{bottom:-44.889867pt;}
.y1eb{bottom:-44.186667pt;}
.y1b1{bottom:-41.173333pt;}
.y25b{bottom:-39.856933pt;}
.y1c1{bottom:-39.008000pt;}
.y313{bottom:-38.174400pt;}
.y9b{bottom:-37.264667pt;}
.y2a1{bottom:-35.814667pt;}
.y1fa{bottom:-35.606667pt;}
.y152{bottom:-34.592000pt;}
.yd5{bottom:-33.599280pt;}
.y105{bottom:-32.946020pt;}
.y140{bottom:-30.228933pt;}
.y229{bottom:-27.529467pt;}
.y1ea{bottom:-26.826267pt;}
.y1b0{bottom:-23.812933pt;}
.y25a{bottom:-22.576933pt;}
.y1c0{bottom:-21.647600pt;}
.y312{bottom:-20.814000pt;}
.y2a0{bottom:-18.454267pt;}
.y1f9{bottom:-18.246267pt;}
.yd4{bottom:-18.148524pt;}
.y104{bottom:-17.566820pt;}
.y151{bottom:-17.231600pt;}
.yb9{bottom:-16.624667pt;}
.y1af{bottom:-2.052933pt;}
.y259{bottom:-0.816933pt;}
.y0{bottom:0.000000pt;}
.y1bf{bottom:0.112400pt;}
.y311{bottom:0.865963pt;}
.y14{bottom:3.044747pt;}
.y13f{bottom:3.050667pt;}
.y1f8{bottom:3.513733pt;}
.y150{bottom:4.528400pt;}
.yd3{bottom:4.777940pt;}
.yb8{bottom:5.136229pt;}
.y103{bottom:5.360313pt;}
.y228{bottom:5.750133pt;}
.y1e9{bottom:6.453333pt;}
.y29f{bottom:7.225805pt;}
.y299{bottom:8.861944pt;}
.y13{bottom:12.578910pt;}
.y2{bottom:15.958480pt;}
.yd2{bottom:20.797876pt;}
.y102{bottom:21.380249pt;}
.y29e{bottom:25.225733pt;}
.y298{bottom:26.781712pt;}
.y32{bottom:56.693333pt;}
.y10b{bottom:94.973333pt;}
.y31{bottom:96.544000pt;}
.y95{bottom:105.116000pt;}
.yba{bottom:105.536000pt;}
.y223{bottom:105.804000pt;}
.y284{bottom:106.450667pt;}
.y66{bottom:109.441333pt;}
.y184{bottom:111.972000pt;}
.y10a{bottom:112.069333pt;}
.y355{bottom:114.066667pt;}
.y30{bottom:114.556000pt;}
.y2e4{bottom:118.200000pt;}
.y1e5{bottom:123.118667pt;}
.y94{bottom:123.129333pt;}
.y322{bottom:123.558667pt;}
.y251{bottom:123.588000pt;}
.y1c5{bottom:123.645333pt;}
.y222{bottom:123.816000pt;}
.y283{bottom:124.464000pt;}
.y99{bottom:125.473067pt;}
.y65{bottom:127.454667pt;}
.y109{bottom:129.164000pt;}
.y183{bottom:129.984000pt;}
.y354{bottom:131.281333pt;}
.y2f{bottom:132.568000pt;}
.y2e3{bottom:136.212000pt;}
.y1e4{bottom:138.448000pt;}
.y1c4{bottom:140.741333pt;}
.y321{bottom:140.774667pt;}
.y93{bottom:141.141333pt;}
.y24f{bottom:141.600000pt;}
.y221{bottom:141.829333pt;}
.y282{bottom:142.476000pt;}
.y64{bottom:145.466667pt;}
.y108{bottom:146.260000pt;}
.y250{bottom:146.422667pt;}
.y29a{bottom:147.029333pt;}
.yce{bottom:147.645333pt;}
.y182{bottom:147.996000pt;}
.y353{bottom:148.497333pt;}
.y2e{bottom:150.581333pt;}
.y1e3{bottom:153.778667pt;}
.y2e2{bottom:154.225333pt;}
.y320{bottom:157.990667pt;}
.y24e{bottom:159.613333pt;}
.y220{bottom:159.841333pt;}
.y281{bottom:160.489333pt;}
.y14c{bottom:160.545333pt;}
.y1b9{bottom:160.678667pt;}
.y1ab{bottom:162.310667pt;}
.y107{bottom:163.356000pt;}
.y63{bottom:163.478667pt;}
.ycd{bottom:165.657333pt;}
.y352{bottom:165.713333pt;}
.y181{bottom:166.009333pt;}
.y285{bottom:166.966667pt;}
.y92{bottom:167.124000pt;}
.y2d{bottom:168.593333pt;}
.y1e2{bottom:169.108000pt;}
.y2e1{bottom:172.237333pt;}
.y31f{bottom:175.205333pt;}
.y24c{bottom:177.625333pt;}
.y21f{bottom:177.854667pt;}
.y13b{bottom:177.992107pt;}
.y280{bottom:178.501333pt;}
.y14b{bottom:178.557333pt;}
.y1f4{bottom:180.289333pt;}
.y1aa{bottom:180.322667pt;}
.y62{bottom:181.492000pt;}
.y24d{bottom:182.448000pt;}
.y351{bottom:182.928000pt;}
.yf1{bottom:183.293096pt;}
.ycc{bottom:183.670667pt;}
.y17f{bottom:184.021333pt;}
.y2c{bottom:186.606667pt;}
.y180{bottom:188.844000pt;}
.y2e0{bottom:190.250667pt;}
.y1e1{bottom:190.481333pt;}
.y31e{bottom:192.421333pt;}
.y13a{bottom:192.622853pt;}
.y24b{bottom:195.638667pt;}
.y27f{bottom:196.513333pt;}
.y14a{bottom:196.570667pt;}
.y91{bottom:198.074667pt;}
.y1f3{bottom:198.302667pt;}
.y1a9{bottom:198.336000pt;}
.y1de{bottom:198.506667pt;}
.y61{bottom:199.504000pt;}
.y350{bottom:200.144000pt;}
.yca{bottom:201.682667pt;}
.y17d{bottom:202.034667pt;}
.y2b{bottom:204.618667pt;}
.y1e0{bottom:205.093333pt;}
.ycb{bottom:206.505333pt;}
.y17e{bottom:206.856000pt;}
.y139{bottom:207.253600pt;}
.y2df{bottom:208.262667pt;}
.y31d{bottom:209.636000pt;}
.y1dd{bottom:213.118667pt;}
.y24a{bottom:213.650667pt;}
.y27e{bottom:214.526667pt;}
.y148{bottom:214.582667pt;}
.y90{bottom:216.086667pt;}
.y1f1{bottom:216.314667pt;}
.y1a8{bottom:216.348000pt;}
.y34f{bottom:217.358667pt;}
.y60{bottom:217.517333pt;}
.y149{bottom:219.404000pt;}
.yc9{bottom:219.696000pt;}
.y1df{bottom:219.705333pt;}
.y21e{bottom:219.857333pt;}
.y17c{bottom:220.046667pt;}
.y1f2{bottom:221.136000pt;}
.y138{bottom:221.884347pt;}
.y2a{bottom:222.630667pt;}
.y2de{bottom:226.274667pt;}
.y31c{bottom:226.852000pt;}
.y248{bottom:231.662667pt;}
.y27d{bottom:232.538667pt;}
.y146{bottom:232.594667pt;}
.y8f{bottom:234.100000pt;}
.y1f0{bottom:234.326667pt;}
.y1a7{bottom:234.360000pt;}
.y34e{bottom:234.574667pt;}
.y21d{bottom:234.786667pt;}
.y5f{bottom:235.529333pt;}
.y249{bottom:236.485333pt;}
.y147{bottom:237.417333pt;}
.yc7{bottom:237.708000pt;}
.y17b{bottom:238.058667pt;}
.y29{bottom:240.644000pt;}
.y137{bottom:242.478720pt;}
.yc8{bottom:242.529333pt;}
.y135{bottom:243.184320pt;}
.y31b{bottom:244.068000pt;}
.y2dd{bottom:244.288000pt;}
.y1dc{bottom:247.810667pt;}
.y247{bottom:249.676000pt;}
.y21c{bottom:249.716000pt;}
.y27c{bottom:250.552000pt;}
.y145{bottom:250.608000pt;}
.y34d{bottom:251.790667pt;}
.y8e{bottom:252.112000pt;}
.y1ef{bottom:252.340000pt;}
.y1a6{bottom:252.373333pt;}
.y5e{bottom:253.541333pt;}
.yc5{bottom:255.720000pt;}
.y17a{bottom:256.072000pt;}
.y136{bottom:256.798480pt;}
.y358{bottom:257.016000pt;}
.y134{bottom:257.504080pt;}
.y28{bottom:258.656000pt;}
.yc6{bottom:260.542667pt;}
.y31a{bottom:261.282667pt;}
.y2dc{bottom:262.300000pt;}
.y21b{bottom:264.645333pt;}
.y1db{bottom:264.906667pt;}
.y246{bottom:267.688000pt;}
.y27b{bottom:268.564000pt;}
.y144{bottom:268.620000pt;}
.y34c{bottom:269.005333pt;}
.y8d{bottom:270.125333pt;}
.y1ee{bottom:270.352000pt;}
.y1a5{bottom:270.385333pt;}
.y5d{bottom:271.554667pt;}
.yc4{bottom:273.733333pt;}
.y179{bottom:274.084000pt;}
.y357{bottom:274.230667pt;}
.y27{bottom:276.669333pt;}
.y319{bottom:278.498667pt;}
.y21a{bottom:279.574667pt;}
.y2db{bottom:280.312000pt;}
.y1d9{bottom:282.002667pt;}
.y133{bottom:285.309333pt;}
.y245{bottom:285.701333pt;}
.y34b{bottom:286.221333pt;}
.y1da{bottom:286.342667pt;}
.y27a{bottom:286.576000pt;}
.y8c{bottom:288.137333pt;}
.y1a4{bottom:288.398667pt;}
.y5c{bottom:289.566667pt;}
.y356{bottom:291.446667pt;}
.yc3{bottom:291.745333pt;}
.y177{bottom:292.097333pt;}
.y101{bottom:294.289899pt;}
.y318{bottom:295.713333pt;}
.y178{bottom:296.918667pt;}
.y2da{bottom:298.325333pt;}
.y1d8{bottom:299.098667pt;}
.y297{bottom:299.661048pt;}
.y143{bottom:299.732000pt;}
.y219{bottom:300.906667pt;}
.y1ed{bottom:301.464000pt;}
.y132{bottom:302.405333pt;}
.y26{bottom:302.652000pt;}
.y34a{bottom:303.437333pt;}
.y244{bottom:303.713333pt;}
.y278{bottom:304.589333pt;}
.y1a3{bottom:306.410667pt;}
.y5b{bottom:307.580000pt;}
.y279{bottom:309.410667pt;}
.yc2{bottom:309.758667pt;}
.y176{bottom:310.109333pt;}
.y100{bottom:310.309835pt;}
.yd0{bottom:310.795476pt;}
.y29c{bottom:312.425733pt;}
.y317{bottom:312.929333pt;}
.y216{bottom:314.148000pt;}
.y2d9{bottom:316.337333pt;}
.y142{bottom:316.828000pt;}
.y296{bottom:317.660976pt;}
.y1ec{bottom:318.560000pt;}
.y130{bottom:319.501333pt;}
.y349{bottom:320.652000pt;}
.y242{bottom:321.725333pt;}
.y218{bottom:321.920000pt;}
.y277{bottom:322.601333pt;}
.y131{bottom:323.841333pt;}
.y1a2{bottom:324.422667pt;}
.y5a{bottom:325.592000pt;}
.yff{bottom:326.329771pt;}
.y243{bottom:326.548000pt;}
.yc1{bottom:327.770667pt;}
.y174{bottom:328.121333pt;}
.y215{bottom:328.758667pt;}
.y8b{bottom:330.141333pt;}
.y175{bottom:332.944000pt;}
.y2d8{bottom:334.350667pt;}
.y1d7{bottom:336.426667pt;}
.y217{bottom:336.532000pt;}
.y12f{bottom:336.597333pt;}
.y13c{bottom:336.765333pt;}
.y348{bottom:337.868000pt;}
.y316{bottom:338.114667pt;}
.y1e6{bottom:338.497333pt;}
.y240{bottom:339.738667pt;}
.y275{bottom:340.613333pt;}
.yfe{bottom:342.349707pt;}
.y1a1{bottom:342.436000pt;}
.y59{bottom:343.604000pt;}
.y241{bottom:344.560000pt;}
.y8a{bottom:345.070667pt;}
.y276{bottom:345.436000pt;}
.yc0{bottom:345.782667pt;}
.y172{bottom:346.134667pt;}
.y173{bottom:350.956000pt;}
.y1d6{bottom:351.756000pt;}
.y2d7{bottom:352.362667pt;}
.y347{bottom:355.082667pt;}
.y23f{bottom:357.750667pt;}
.yfd{bottom:358.298300pt;}
.y274{bottom:358.626667pt;}
.y310{bottom:358.865867pt;}
.y89{bottom:360.000000pt;}
.y1a0{bottom:360.448000pt;}
.y58{bottom:361.617333pt;}
.ybf{bottom:363.796000pt;}
.y170{bottom:364.146667pt;}
.y214{bottom:364.638667pt;}
.y226{bottom:366.949733pt;}
.y258{bottom:367.023067pt;}
.y1d5{bottom:367.086667pt;}
.y171{bottom:368.969333pt;}
.y315{bottom:370.342667pt;}
.y2d6{bottom:370.374667pt;}
.y25{bottom:370.576000pt;}
.y346{bottom:372.298667pt;}
.y12e{bottom:373.722720pt;}
.yfc{bottom:374.318236pt;}
.y88{bottom:374.929333pt;}
.y23d{bottom:375.764000pt;}
.y272{bottom:376.638667pt;}
.y19f{bottom:378.461333pt;}
.y57{bottom:379.629333pt;}
.y23e{bottom:380.585333pt;}
.y273{bottom:381.461333pt;}
.y213{bottom:381.734667pt;}
.ybe{bottom:381.808000pt;}
.y16e{bottom:382.160000pt;}
.y1d4{bottom:382.416000pt;}
.y257{bottom:384.383467pt;}
.y16f{bottom:386.981333pt;}
.y314{bottom:387.438667pt;}
.y12d{bottom:388.353467pt;}
.y2d4{bottom:388.388000pt;}
.y24{bottom:388.589333pt;}
.y345{bottom:389.514667pt;}
.y87{bottom:389.858667pt;}
.yfb{bottom:390.338172pt;}
.y30f{bottom:392.465467pt;}
.y2d5{bottom:393.209333pt;}
.y23c{bottom:393.776000pt;}
.y271{bottom:394.652000pt;}
.y19e{bottom:396.473333pt;}
.y56{bottom:397.642667pt;}
.y1d3{bottom:397.745333pt;}
.y212{bottom:398.830667pt;}
.y16d{bottom:400.172000pt;}
.y256{bottom:401.743867pt;}
.y12c{bottom:402.984213pt;}
.y86{bottom:404.788000pt;}
.yfa{bottom:406.358108pt;}
.y2d3{bottom:406.400000pt;}
.y344{bottom:406.729333pt;}
.y2f1{bottom:407.375867pt;}
.ybd{bottom:407.790667pt;}
.y23b{bottom:411.788000pt;}
.y270{bottom:412.664000pt;}
.y1be{bottom:413.632000pt;}
.y19c{bottom:414.485333pt;}
.y55{bottom:415.654667pt;}
.y1ad{bottom:417.147067pt;}
.y12b{bottom:417.614960pt;}
.y30e{bottom:417.825067pt;}
.y1d2{bottom:419.118667pt;}
.y19d{bottom:419.308000pt;}
.yf9{bottom:422.378044pt;}
.y23{bottom:422.541333pt;}
.y343{bottom:423.945333pt;}
.y2d1{bottom:424.413333pt;}
.y211{bottom:425.225333pt;}
.y85{bottom:426.118667pt;}
.y1cf{bottom:427.144000pt;}
.yb7{bottom:427.936141pt;}
.y2d2{bottom:429.234667pt;}
.y23a{bottom:429.801333pt;}
.y26f{bottom:430.676000pt;}
.y1bd{bottom:430.992400pt;}
.y16c{bottom:431.282667pt;}
.y12a{bottom:432.245707pt;}
.y19a{bottom:432.498667pt;}
.y54{bottom:433.666667pt;}
.y1d1{bottom:433.730667pt;}
.y30d{bottom:434.064667pt;}
.y255{bottom:435.023467pt;}
.y19b{bottom:437.320000pt;}
.yf8{bottom:438.397980pt;}
.ybc{bottom:438.741333pt;}
.y22{bottom:440.554667pt;}
.y342{bottom:441.160000pt;}
.y1ce{bottom:441.756000pt;}
.y210{bottom:442.320000pt;}
.y2cf{bottom:442.425333pt;}
.yb6{bottom:445.936069pt;}
.y2d0{bottom:447.248000pt;}
.y1d0{bottom:448.342667pt;}
.y16b{bottom:448.378667pt;}
.y26e{bottom:448.689333pt;}
.y30c{bottom:450.225067pt;}
.y199{bottom:450.510667pt;}
.y53{bottom:451.680000pt;}
.y1bc{bottom:452.752400pt;}
.y129{bottom:452.838773pt;}
.y127{bottom:453.544373pt;}
.y84{bottom:454.225333pt;}
.y341{bottom:458.376000pt;}
.y21{bottom:458.566667pt;}
.y2ce{bottom:460.437333pt;}
.y239{bottom:460.912000pt;}
.y1f5{bottom:462.257333pt;}
.yb5{bottom:463.935997pt;}
.y26d{bottom:466.701333pt;}
.y128{bottom:467.158533pt;}
.y126{bottom:467.864133pt;}
.yf7{bottom:468.230424pt;}
.y14d{bottom:468.316000pt;}
.y198{bottom:468.524000pt;}
.y52{bottom:469.692000pt;}
.y83{bottom:471.321333pt;}
.y30b{bottom:474.384667pt;}
.y340{bottom:475.592000pt;}
.y1cd{bottom:476.449333pt;}
.y1f{bottom:476.580000pt;}
.y238{bottom:478.008000pt;}
.y2cd{bottom:478.450667pt;}
.yf0{bottom:480.840000pt;}
.y20{bottom:481.401333pt;}
.yb4{bottom:481.935925pt;}
.yf6{bottom:483.681180pt;}
.y26c{bottom:484.714667pt;}
.y197{bottom:486.536000pt;}
.y51{bottom:487.704000pt;}
.y82{bottom:488.417333pt;}
.y30a{bottom:490.624267pt;}
.y33f{bottom:492.806667pt;}
.y1cc{bottom:493.544000pt;}
.y1e{bottom:494.592000pt;}
.y237{bottom:495.104000pt;}
.y125{bottom:495.670667pt;}
.y2cc{bottom:496.462667pt;}
.yef{bottom:498.853333pt;}
.yb3{bottom:499.935853pt;}
.y26b{bottom:502.726667pt;}
.y196{bottom:504.548000pt;}
.y50{bottom:505.717333pt;}
.yf5{bottom:506.607644pt;}
.y309{bottom:506.784667pt;}
.y33e{bottom:510.022667pt;}
.y1ca{bottom:510.640000pt;}
.y1d{bottom:512.604000pt;}
.y124{bottom:512.766667pt;}
.y2cb{bottom:514.476000pt;}
.y1cb{bottom:514.980000pt;}
.y225{bottom:515.041333pt;}
.yee{bottom:516.865333pt;}
.yb2{bottom:517.855621pt;}
.y81{bottom:517.938667pt;}
.y26a{bottom:520.738667pt;}
.y195{bottom:522.561333pt;}
.yf4{bottom:522.627580pt;}
.y308{bottom:522.945067pt;}
.y4f{bottom:523.729333pt;}
.y33d{bottom:527.237333pt;}
.y1c9{bottom:527.736000pt;}
.y122{bottom:529.861333pt;}
.y1c{bottom:530.617333pt;}
.y2ca{bottom:532.488000pt;}
.y123{bottom:534.201333pt;}
.yed{bottom:534.878667pt;}
.yb1{bottom:535.855549pt;}
.y80{bottom:535.950667pt;}
.y269{bottom:538.752000pt;}
.y4e{bottom:541.742667pt;}
.y33c{bottom:544.453333pt;}
.y121{bottom:546.957333pt;}
.y307{bottom:547.185067pt;}
.y194{bottom:548.544000pt;}
.y1b{bottom:548.629333pt;}
.y2c9{bottom:550.500000pt;}
.y14e{bottom:551.728400pt;}
.yec{bottom:552.890667pt;}
.yb0{bottom:553.855477pt;}
.y7f{bottom:553.964000pt;}
.y268{bottom:556.764000pt;}
.y1f6{bottom:557.353733pt;}
.y4d{bottom:559.754667pt;}
.y33b{bottom:561.669333pt;}
.y306{bottom:563.345467pt;}
.y1a{bottom:566.642667pt;}
.y2c8{bottom:568.513333pt;}
.y1b8{bottom:570.624000pt;}
.yeb{bottom:570.902667pt;}
.yaf{bottom:571.855405pt;}
.y7e{bottom:571.976000pt;}
.y267{bottom:574.777333pt;}
.y4c{bottom:577.766667pt;}
.y33a{bottom:578.884000pt;}
.y305{bottom:579.585067pt;}
.y120{bottom:579.945333pt;}
.y19{bottom:584.654667pt;}
.y2c7{bottom:586.525333pt;}
.y193{bottom:587.223040pt;}
.y1b7{bottom:587.720000pt;}
.yea{bottom:588.916000pt;}
.yae{bottom:589.855405pt;}
.y7d{bottom:589.988000pt;}
.y295{bottom:593.661208pt;}
.y304{bottom:595.745467pt;}
.y4b{bottom:595.780000pt;}
.y339{bottom:596.100000pt;}
.y11e{bottom:597.958667pt;}
.y1c8{bottom:600.601333pt;}
.y192{bottom:601.555200pt;}
.y18{bottom:602.666667pt;}
.y11f{bottom:602.780000pt;}
.y2c6{bottom:604.538667pt;}
.y266{bottom:605.888000pt;}
.ye9{bottom:606.928000pt;}
.y1ac{bottom:607.657333pt;}
.yad{bottom:607.855405pt;}
.y7b{bottom:608.001333pt;}
.y294{bottom:611.661136pt;}
.y303{bottom:611.905867pt;}
.y7c{bottom:612.822667pt;}
.y338{bottom:613.314667pt;}
.y4a{bottom:613.792000pt;}
.y191{bottom:615.887360pt;}
.y11d{bottom:615.970667pt;}
.y1c7{bottom:618.614667pt;}
.y17{bottom:620.680000pt;}
.y2c5{bottom:622.550667pt;}
.y265{bottom:622.984000pt;}
.ye8{bottom:624.941333pt;}
.yac{bottom:625.856965pt;}
.y79{bottom:626.013333pt;}
.y293{bottom:629.661064pt;}
.y190{bottom:630.219520pt;}
.y337{bottom:630.530667pt;}
.y7a{bottom:630.836000pt;}
.y49{bottom:631.805333pt;}
.y11c{bottom:633.984000pt;}
.y16{bottom:638.692000pt;}
.y264{bottom:640.080000pt;}
.ye7{bottom:642.953333pt;}
.yab{bottom:643.776733pt;}
.y78{bottom:644.026667pt;}
.y302{bottom:644.467123pt;}
.y18f{bottom:644.552960pt;}
.y292{bottom:647.660992pt;}
.y336{bottom:647.746667pt;}
.y2c4{bottom:648.533333pt;}
.y48{bottom:649.817333pt;}
.y11b{bottom:651.996000pt;}
.y15{bottom:656.705333pt;}
.y252{bottom:660.017333pt;}
.yaa{bottom:661.776661pt;}
.y77{bottom:662.038667pt;}
.y301{bottom:662.467051pt;}
.y335{bottom:664.961333pt;}
.y18e{bottom:665.030400pt;}
.ybb{bottom:665.344000pt;}
.y291{bottom:665.660920pt;}
.y47{bottom:667.829333pt;}
.y119{bottom:670.008000pt;}
.y18b{bottom:670.727680pt;}
.ye6{bottom:674.064000pt;}
.y11a{bottom:674.830667pt;}
.y2c3{bottom:676.642667pt;}
.y1e7{bottom:677.653733pt;}
.ya9{bottom:679.776589pt;}
.y75{bottom:680.050667pt;}
.y13d{bottom:680.251067pt;}
.y300{bottom:680.466979pt;}
.y334{bottom:682.177333pt;}
.y290{bottom:683.580688pt;}
.y18a{bottom:684.755200pt;}
.y76{bottom:684.873333pt;}
.y18d{bottom:685.204480pt;}
.y46{bottom:685.842667pt;}
.y12{bottom:686.238715pt;}
.y11{bottom:686.921333pt;}
.y118{bottom:688.021333pt;}
.ye5{bottom:691.160000pt;}
.y2c2{bottom:693.738667pt;}
.ya8{bottom:697.776517pt;}
.y74{bottom:698.064000pt;}
.y2ff{bottom:698.466907pt;}
.y18c{bottom:699.230720pt;}
.y333{bottom:699.392000pt;}
.y28f{bottom:701.580616pt;}
.y45{bottom:703.854667pt;}
.y116{bottom:706.033333pt;}
.y98{bottom:708.677333pt;}
.y117{bottom:710.856000pt;}
.ycf{bottom:711.097333pt;}
.y29b{bottom:713.676000pt;}
.ya7{bottom:715.776445pt;}
.y73{bottom:716.076000pt;}
.y2fe{bottom:716.466835pt;}
.y332{bottom:716.608000pt;}
.y28e{bottom:719.580544pt;}
.y10{bottom:721.592000pt;}
.y44{bottom:721.868000pt;}
.y115{bottom:724.046667pt;}
.y97{bottom:726.689333pt;}
.y189{bottom:726.737333pt;}
.ya6{bottom:733.776373pt;}
.y331{bottom:733.824000pt;}
.y71{bottom:734.088000pt;}
.y2fd{bottom:734.466763pt;}
.y28d{bottom:737.580472pt;}
.yf{bottom:737.732000pt;}
.y72{bottom:738.910667pt;}
.y43{bottom:739.880000pt;}
.y114{bottom:742.058667pt;}
.ye{bottom:742.072000pt;}
.y188{bottom:743.833333pt;}
.y96{bottom:744.701333pt;}
.y330{bottom:751.038667pt;}
.ya5{bottom:751.776301pt;}
.y70{bottom:752.101333pt;}
.y2fc{bottom:752.386531pt;}
.yd{bottom:753.872000pt;}
.y28c{bottom:755.580776pt;}
.y42{bottom:757.892000pt;}
.y113{bottom:760.070667pt;}
.y187{bottom:760.929333pt;}
.y32f{bottom:768.254667pt;}
.ya4{bottom:769.696069pt;}
.y6f{bottom:770.113333pt;}
.y2fb{bottom:770.386459pt;}
.y28b{bottom:773.580704pt;}
.yc{bottom:774.350667pt;}
.y2f0{bottom:775.081333pt;}
.y41{bottom:775.905333pt;}
.y112{bottom:778.084000pt;}
.y32e{bottom:785.469333pt;}
.yb{bottom:786.150667pt;}
.ya3{bottom:787.695997pt;}
.y2fa{bottom:788.386387pt;}
.y28a{bottom:791.580632pt;}
.y40{bottom:793.917333pt;}
.y6e{bottom:796.096000pt;}
.y253{bottom:796.223067pt;}
.ya{bottom:802.290667pt;}
.y32d{bottom:802.685333pt;}
.ya2{bottom:805.695925pt;}
.y2ef{bottom:806.032000pt;}
.y2f9{bottom:806.386315pt;}
.y289{bottom:809.500472pt;}
.y3f{bottom:811.930667pt;}
.yf2{bottom:812.625180pt;}
.y111{bottom:814.109333pt;}
.y32c{bottom:819.901333pt;}
.y9{bottom:822.769333pt;}
.ya1{bottom:823.695853pt;}
.y2f8{bottom:824.386243pt;}
.y6d{bottom:827.046667pt;}
.y288{bottom:827.500400pt;}
.y2ee{bottom:827.512000pt;}
.y3d{bottom:829.942667pt;}
.y110{bottom:832.121333pt;}
.y3e{bottom:834.764000pt;}
.y32b{bottom:837.116000pt;}
.y8{bottom:840.578667pt;}
.y2ed{bottom:841.021333pt;}
.ya0{bottom:841.695781pt;}
.y2f7{bottom:842.386171pt;}
.y6c{bottom:845.060000pt;}
.y3c{bottom:847.954667pt;}
.y10f{bottom:850.133333pt;}
.y32a{bottom:854.332000pt;}
.y2ec{bottom:854.530667pt;}
.y7{bottom:858.590667pt;}
.y9f{bottom:859.695709pt;}
.y2f6{bottom:860.386099pt;}
.y286{bottom:860.700400pt;}
.y6b{bottom:863.072000pt;}
.y3b{bottom:865.968000pt;}
.y10e{bottom:868.146667pt;}
.y329{bottom:871.546667pt;}
.y1ba{bottom:871.952400pt;}
.y2eb{bottom:876.010667pt;}
.y9e{bottom:877.695637pt;}
.y2f5{bottom:878.305939pt;}
.y6a{bottom:881.084000pt;}
.y3a{bottom:883.980000pt;}
.y328{bottom:888.762667pt;}
.y2ea{bottom:889.520000pt;}
.y10d{bottom:894.129333pt;}
.y9d{bottom:895.615405pt;}
.y2f4{bottom:896.305867pt;}
.y6{bottom:898.178667pt;}
.y69{bottom:899.097333pt;}
.y39{bottom:901.993333pt;}
.y2e9{bottom:903.029333pt;}
.y327{bottom:905.978667pt;}
.y186{bottom:906.814667pt;}
.y9c{bottom:913.615333pt;}
.y2e8{bottom:916.538667pt;}
.y68{bottom:917.109333pt;}
.y38{bottom:920.005333pt;}
.y326{bottom:923.193333pt;}
.y10c{bottom:925.080000pt;}
.y5{bottom:925.198667pt;}
.y2f2{bottom:929.505867pt;}
.y37{bottom:938.017333pt;}
.y325{bottom:940.409333pt;}
.y185{bottom:942.840000pt;}
.y67{bottom:943.092000pt;}
.y9a{bottom:946.815333pt;}
.y2e7{bottom:951.526667pt;}
.y4{bottom:952.217333pt;}
.y36{bottom:956.030667pt;}
.y324{bottom:957.624000pt;}
.y2e6{bottom:965.037333pt;}
.y35{bottom:974.042667pt;}
.y323{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y2e5{bottom:978.546667pt;}
.y1c6{bottom:978.865333pt;}
.y34{bottom:992.056000pt;}
.y224{bottom:996.877333pt;}
.y1{bottom:1011.514667pt;}
.y33{bottom:1038.548000pt;}
.h24{height:22.284493pt;}
.ha{height:22.673858pt;}
.h40{height:23.359375pt;}
.hf{height:24.760382pt;}
.h8{height:27.076941pt;}
.h1c{height:28.473047pt;}
.h25{height:28.883763pt;}
.h10{height:29.397999pt;}
.hc{height:29.433775pt;}
.hb{height:30.399505pt;}
.h11{height:31.157778pt;}
.h20{height:31.184766pt;}
.h1f{height:31.330781pt;}
.h17{height:31.992188pt;}
.h14{height:32.092855pt;}
.h31{height:33.191461pt;}
.h34{height:33.421001pt;}
.h49{height:33.713664pt;}
.h26{height:33.882950pt;}
.h28{height:34.117272pt;}
.h47{height:34.144051pt;}
.h1b{height:34.567739pt;}
.h13{height:34.574438pt;}
.h1d{height:34.719039pt;}
.h9{height:34.813542pt;}
.h1e{height:34.881603pt;}
.h2b{height:35.039062pt;}
.h2d{height:35.040662pt;}
.h22{height:35.052646pt;}
.h19{height:35.203125pt;}
.h12{height:37.937581pt;}
.hd{height:38.415786pt;}
.he{height:38.681455pt;}
.h33{height:38.774054pt;}
.h16{height:38.840156pt;}
.h4{height:38.947124pt;}
.h18{height:39.010156pt;}
.h2e{height:39.192812pt;}
.h29{height:39.581847pt;}
.h27{height:39.587073pt;}
.h37{height:40.389639pt;}
.h38{height:40.394973pt;}
.h48{height:42.799616pt;}
.h44{height:42.852492pt;}
.h3a{height:42.996941pt;}
.h39{height:43.002274pt;}
.h43{height:44.450348pt;}
.h2{height:45.272024pt;}
.h2f{height:46.937500pt;}
.h7{height:48.481423pt;}
.h6{height:48.486756pt;}
.h23{height:48.683332pt;}
.h30{height:48.688666pt;}
.h5{height:69.148877pt;}
.h3{height:72.891617pt;}
.h32{height:89.296421pt;}
.h3e{height:93.022438pt;}
.h3d{height:111.189965pt;}
.h21{height:276.526797pt;}
.h45{height:291.664000pt;}
.h1a{height:294.242307pt;}
.h46{height:337.965467pt;}
.h41{height:345.322667pt;}
.h3f{height:347.918667pt;}
.h36{height:395.520000pt;}
.h35{height:397.682667pt;}
.h15{height:413.261600pt;}
.h2c{height:537.024000pt;}
.h3c{height:543.082667pt;}
.h42{height:573.373333pt;}
.h3b{height:666.844000pt;}
.h2a{height:668.576000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:184.542183pt;}
.we{width:370.421333pt;}
.w11{width:398.116000pt;}
.wa{width:415.425333pt;}
.w9{width:423.648000pt;}
.wf{width:434.466667pt;}
.w10{width:440.092000pt;}
.w8{width:476.441333pt;}
.w7{width:477.738667pt;}
.wb{width:478.605333pt;}
.wc{width:479.470667pt;}
.w6{width:487.579380pt;}
.w5{width:495.282152pt;}
.w4{width:506.733333pt;}
.wd{width:530.965600pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x142{left:-107.796000pt;}
.x150{left:-95.680000pt;}
.x10d{left:-91.785333pt;}
.x10a{left:-87.890667pt;}
.x143{left:-79.475648pt;}
.x14a{left:-77.072000pt;}
.x14d{left:-74.042667pt;}
.x151{left:-67.360048pt;}
.x10e{left:-63.465333pt;}
.x10b{left:-59.570667pt;}
.xd1{left:-55.868000pt;}
.xcb{left:-54.570667pt;}
.x14b{left:-48.751048pt;}
.x14e{left:-45.722667pt;}
.x5f{left:-41.588000pt;}
.xd3{left:-39.468000pt;}
.x135{left:-31.202400pt;}
.x127{left:-28.988000pt;}
.xd2{left:-27.548000pt;}
.xcd{left:-26.250667pt;}
.xdc{left:-20.668000pt;}
.xdd{left:-19.707416pt;}
.xdb{left:-18.748000pt;}
.x94{left:-17.756687pt;}
.x128{left:-15.628000pt;}
.x60{left:-13.267472pt;}
.x12e{left:-10.108000pt;}
.x12d{left:-8.188000pt;}
.x12f{left:-6.347160pt;}
.x136{left:-2.882048pt;}
.x0{left:0.000000pt;}
.x96{left:7.448113pt;}
.x8b{left:11.684632pt;}
.x7{left:26.021437pt;}
.x14c{left:30.770344pt;}
.x2{left:51.635762pt;}
.xd4{left:69.251672pt;}
.xd5{left:77.652440pt;}
.x129{left:84.692240pt;}
.x12b{left:89.252224pt;}
.x12a{left:91.812000pt;}
.x1{left:102.046667pt;}
.x95{left:106.487029pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.x8a{left:110.723547pt;}
.xfb{left:112.770667pt;}
.xb0{left:115.008000pt;}
.xbe{left:120.695760pt;}
.xb1{left:123.212000pt;}
.x40{left:125.081333pt;}
.x41{left:126.421333pt;}
.x44{left:128.053333pt;}
.x4{left:129.929333pt;}
.xa5{left:131.405333pt;}
.xbf{left:132.416560pt;}
.xb2{left:133.770667pt;}
.x1f{left:135.270667pt;}
.xc4{left:137.238160pt;}
.xa6{left:139.610667pt;}
.xc5{left:140.530960pt;}
.x20{left:141.912000pt;}
.x5e{left:143.484000pt;}
.xb3{left:145.265333pt;}
.xa7{left:147.144000pt;}
.x88{left:149.209955pt;}
.xa8{left:150.464000pt;}
.xf8{left:151.497333pt;}
.x93{left:153.061927pt;}
.x14f{left:154.601333pt;}
.xd0{left:155.908000pt;}
.x126{left:157.116000pt;}
.x62{left:158.412000pt;}
.x145{left:159.312000pt;}
.xb4{left:160.286667pt;}
.x159{left:161.236000pt;}
.xa9{left:162.428000pt;}
.x31{left:163.664000pt;}
.x38{left:165.644000pt;}
.x8{left:167.789333pt;}
.x11d{left:168.898667pt;}
.x39{left:172.286667pt;}
.xf9{left:173.550667pt;}
.xaa{left:174.894667pt;}
.x32{left:176.829333pt;}
.x146{left:178.074667pt;}
.x3f{left:179.120000pt;}
.x8d{left:181.768000pt;}
.x120{left:182.724000pt;}
.x11{left:183.653333pt;}
.x42{left:184.646667pt;}
.x10c{left:187.713333pt;}
.x5c{left:189.325333pt;}
.x6e{left:190.524000pt;}
.x118{left:191.506667pt;}
.x9a{left:192.845333pt;}
.xfc{left:194.502667pt;}
.xd6{left:195.412008pt;}
.x132{left:198.008000pt;}
.x9b{left:200.150667pt;}
.x156{left:201.221333pt;}
.x5d{left:202.608000pt;}
.x6f{left:203.808000pt;}
.x147{left:205.098667pt;}
.xfd{left:206.466667pt;}
.x64{left:208.856000pt;}
.xc0{left:210.986427pt;}
.x65{left:213.125333pt;}
.x130{left:215.716000pt;}
.x117{left:218.476000pt;}
.x66{left:219.488000pt;}
.x35{left:222.692000pt;}
.x97{left:224.465749pt;}
.x72{left:225.396000pt;}
.xff{left:227.567893pt;}
.x8c{left:228.702268pt;}
.x89{left:229.770232pt;}
.x8e{left:232.406667pt;}
.x73{left:233.601333pt;}
.x36{left:235.554667pt;}
.x45{left:236.460000pt;}
.x8f{left:238.384000pt;}
.x74{left:241.134667pt;}
.x46{left:243.102667pt;}
.x75{left:244.454667pt;}
.x119{left:245.592000pt;}
.x131{left:246.565333pt;}
.x7b{left:247.714667pt;}
.xb5{left:248.836000pt;}
.x158{left:251.685333pt;}
.x11a{left:253.302667pt;}
.x5b{left:255.718667pt;}
.xb6{left:257.040000pt;}
.xba{left:259.394667pt;}
.xc6{left:260.860000pt;}
.x7c{left:263.194667pt;}
.xb7{left:264.278667pt;}
.x7d{left:266.516000pt;}
.xb8{left:267.598667pt;}
.xef{left:270.602667pt;}
.x76{left:272.408000pt;}
.xf0{left:273.922667pt;}
.x2b{left:276.308000pt;}
.x7e{left:278.069333pt;}
.xb9{left:279.093333pt;}
.xf1{left:285.417333pt;}
.x133{left:287.908000pt;}
.x2c{left:289.590667pt;}
.xde{left:292.537333pt;}
.x7f{left:293.866667pt;}
.x134{left:295.314667pt;}
.x29{left:298.354667pt;}
.xdf{left:300.742667pt;}
.x63{left:301.789333pt;}
.xa0{left:305.793333pt;}
.x90{left:306.880000pt;}
.x43{left:309.572000pt;}
.x2a{left:311.638667pt;}
.x91{left:314.185333pt;}
.xab{left:317.530667pt;}
.xeb{left:318.872000pt;}
.xa1{left:320.609333pt;}
.xd8{left:322.452256pt;}
.x12c{left:324.612672pt;}
.xac{left:325.736000pt;}
.xec{left:327.077333pt;}
.xfe{left:329.422667pt;}
.xd7{left:330.372064pt;}
.xa2{left:333.074667pt;}
.xad{left:336.590667pt;}
.xd9{left:338.211712pt;}
.x9e{left:341.916000pt;}
.x9{left:345.164000pt;}
.xc1{left:346.308747pt;}
.xae{left:348.554667pt;}
.x1d{left:351.010667pt;}
.x11e{left:352.418667pt;}
.xa{left:353.368000pt;}
.x9f{left:355.200000pt;}
.xfa{left:356.660000pt;}
.x1e{left:357.652000pt;}
.x155{left:359.552000pt;}
.xaf{left:361.020000pt;}
.x2d{left:362.461333pt;}
.xce{left:365.177333pt;}
.x3a{left:366.729333pt;}
.x77{left:368.026667pt;}
.x137{left:370.077600pt;}
.xcf{left:372.414667pt;}
.xb{left:375.446667pt;}
.x3b{left:379.612000pt;}
.x49{left:383.532000pt;}
.x80{left:385.920000pt;}
.x78{left:387.086667pt;}
.x144{left:389.244000pt;}
.xc{left:391.238667pt;}
.x153{left:392.256000pt;}
.x81{left:394.125333pt;}
.x152{left:395.440280pt;}
.x4a{left:396.816000pt;}
.x79{left:399.050667pt;}
.xbb{left:400.126667pt;}
.x82{left:401.400000pt;}
.xc7{left:402.322667pt;}
.x83{left:404.720000pt;}
.x6c{left:406.418667pt;}
.xbc{left:407.510667pt;}
.x121{left:408.441333pt;}
.xc8{left:409.708000pt;}
.x6d{left:412.130667pt;}
.xbd{left:414.025333pt;}
.x7a{left:415.040000pt;}
.x84{left:416.273333pt;}
.x9d{left:418.797333pt;}
.x101{left:420.789333pt;}
.xed{left:421.985333pt;}
.x102{left:424.109333pt;}
.xee{left:425.306667pt;}
.x9c{left:427.333333pt;}
.xc9{left:429.556000pt;}
.x54{left:432.538667pt;}
.xf7{left:433.836000pt;}
.x103{left:435.886667pt;}
.x4c{left:438.058667pt;}
.x122{left:439.465333pt;}
.x26{left:440.602667pt;}
.xca{left:443.048000pt;}
.x55{left:444.752000pt;}
.x27{left:447.854667pt;}
.x57{left:449.569333pt;}
.x4d{left:451.342667pt;}
.x6a{left:452.314667pt;}
.x4e{left:454.617333pt;}
.x123{left:455.634667pt;}
.xe8{left:459.065333pt;}
.x2e{left:460.009333pt;}
.x58{left:461.789333pt;}
.xda{left:462.771304pt;}
.x69{left:464.674667pt;}
.x6b{left:465.598667pt;}
.x23{left:467.257333pt;}
.x11f{left:471.412000pt;}
.xcc{left:472.709333pt;}
.x24{left:473.898667pt;}
.xa3{left:475.170667pt;}
.x71{left:480.525333pt;}
.x11b{left:481.481333pt;}
.x56{left:483.285333pt;}
.xa4{left:485.729333pt;}
.x138{left:487.188000pt;}
.xd{left:488.713333pt;}
.x59{left:490.698667pt;}
.xc2{left:493.903280pt;}
.xe{left:496.917333pt;}
.x157{left:498.096000pt;}
.x5a{left:499.744000pt;}
.x61{left:502.572040pt;}
.x13f{left:506.273333pt;}
.x67{left:509.216000pt;}
.x124{left:511.122667pt;}
.xe7{left:513.910667pt;}
.x109{left:515.622667pt;}
.xf{left:518.996000pt;}
.x33{left:521.170667pt;}
.x68{left:522.500000pt;}
.x1a{left:523.905333pt;}
.x140{left:525.169333pt;}
.x10{left:531.461333pt;}
.x34{left:534.310667pt;}
.xe3{left:536.998667pt;}
.x115{left:541.096000pt;}
.x12{left:543.712000pt;}
.xe4{left:545.204000pt;}
.x125{left:546.406667pt;}
.x116{left:549.300000pt;}
.x13{left:550.354667pt;}
.x85{left:551.769333pt;}
.x14{left:553.612000pt;}
.xe5{left:556.057333pt;}
.x15{left:560.253333pt;}
.x28{left:566.568000pt;}
.x86{left:567.508000pt;}
.x50{left:571.253333pt;}
.x70{left:573.110667pt;}
.x47{left:576.936000pt;}
.x16{left:578.938667pt;}
.xe6{left:580.488000pt;}
.xe0{left:582.541333pt;}
.x51{left:583.470667pt;}
.x17{left:585.580000pt;}
.x11c{left:587.418667pt;}
.x154{left:589.052000pt;}
.x48{left:590.220000pt;}
.x1b{left:592.392000pt;}
.x13d{left:593.536000pt;}
.x141{left:595.260000pt;}
.xe1{left:597.984000pt;}
.x87{left:599.108000pt;}
.x1c{left:600.597333pt;}
.x13e{left:601.740000pt;}
.x4b{left:602.996000pt;}
.x148{left:604.068000pt;}
.xe9{left:605.296000pt;}
.x104{left:607.509333pt;}
.x92{left:610.582667pt;}
.xc3{left:611.832560pt;}
.xe2{left:612.800000pt;}
.x105{left:614.748000pt;}
.x25{left:616.690667pt;}
.x106{left:618.068000pt;}
.x52{left:619.393333pt;}
.x21{left:621.381333pt;}
.x6{left:623.413317pt;}
.x2f{left:624.397333pt;}
.x53{left:628.436000pt;}
.x107{left:629.562667pt;}
.x22{left:634.522667pt;}
.xea{left:636.242667pt;}
.x30{left:637.680000pt;}
.x13b{left:641.986667pt;}
.x139{left:643.001333pt;}
.x108{left:645.158667pt;}
.xf2{left:646.438667pt;}
.x10f{left:648.681333pt;}
.x149{left:650.522667pt;}
.x3c{left:651.441333pt;}
.x13c{left:652.641333pt;}
.x98{left:654.464000pt;}
.x110{left:656.885333pt;}
.x13a{left:658.444000pt;}
.x99{left:660.442667pt;}
.xf3{left:662.176000pt;}
.x111{left:664.220000pt;}
.xf4{left:665.497333pt;}
.x112{left:667.541333pt;}
.x100{left:670.360000pt;}
.x4f{left:672.394667pt;}
.x113{left:674.034667pt;}
.xf5{left:677.461333pt;}
.x18{left:678.820000pt;}
.x3d{left:679.746667pt;}
.x37{left:681.822667pt;}
.x19{left:685.461333pt;}
.x3e{left:686.389333pt;}
.x114{left:687.318667pt;}
.xf6{left:689.926667pt;}
}




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