
    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_21403ef30b9c7c4de9fba0cf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.184000;font-style:normal;font-weight: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_bf959156e786e69381ea9386.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight: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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight: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_a7f1207dbca9af5f4c82a9a2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;font-style:normal;font-weight: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_bbed5c60a06bd9e76993528d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_42f8007415c496db5dee0b29.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.844727;font-style:normal;font-weight: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_7b8742c0e15c77a8536179c8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.860840;font-style:normal;font-weight: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_9cb2253373bc7fc7465fd545.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4edcef08f47f82a6d6869084.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_bc8f539d81d71792bfe7b6e8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.980000;font-style:normal;font-weight: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_b72e129493326f13ecbdae2f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.980000;font-style:normal;font-weight: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_88a5677c11c56beeb30db6ad.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.958000;font-style:normal;font-weight: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_a940f5cf29794c3da1653319.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.976000;font-style:normal;font-weight: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_969a27632a8263e384ea77e7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.980000;font-style:normal;font-weight: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_cabf62f6aa4459385267b624.woff2')format("woff");}.fff{font-family:fff;line-height:0.952000;font-style:normal;font-weight: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_a87e7c68bb04d07b9ff95b66.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.895996;font-style:normal;font-weight: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_2169162d2bfb7780421ee5ce.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938965;font-style:normal;font-weight: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_c1d7c984a01b8696b1b1e1bd.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.929199;font-style:normal;font-weight: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_f7ba64a268c52e539e06e9ba.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.911621;font-style:normal;font-weight: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_a136d6aee64c08e1b101df38.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.809082;font-style:normal;font-weight: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_a87e7c68bb04d07b9ff95b66.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.895996;font-style:normal;font-weight: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_2169162d2bfb7780421ee5ce.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.938965;font-style:normal;font-weight: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_c1d7c984a01b8696b1b1e1bd.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.929199;font-style:normal;font-weight: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_f7ba64a268c52e539e06e9ba.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.911621;font-style:normal;font-weight: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_a136d6aee64c08e1b101df38.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.809082;font-style:normal;font-weight: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_a87e7c68bb04d07b9ff95b66.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.895996;font-style:normal;font-weight: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_2169162d2bfb7780421ee5ce.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.938965;font-style:normal;font-weight: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_c1d7c984a01b8696b1b1e1bd.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.929199;font-style:normal;font-weight: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_f7ba64a268c52e539e06e9ba.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.911621;font-style:normal;font-weight: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_a136d6aee64c08e1b101df38.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.809082;font-style:normal;font-weight: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_a87e7c68bb04d07b9ff95b66.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.895996;font-style:normal;font-weight: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_2169162d2bfb7780421ee5ce.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.938965;font-style:normal;font-weight: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_c1d7c984a01b8696b1b1e1bd.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.929199;font-style:normal;font-weight: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_f7ba64a268c52e539e06e9ba.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.911621;font-style:normal;font-weight: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_a136d6aee64c08e1b101df38.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.809082;font-style:normal;font-weight: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_a87e7c68bb04d07b9ff95b66.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.895996;font-style:normal;font-weight: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_2169162d2bfb7780421ee5ce.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.938965;font-style:normal;font-weight: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_c1d7c984a01b8696b1b1e1bd.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.929199;font-style:normal;font-weight: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_de48b6dfd5f8248c458a313a.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.911621;font-style:normal;font-weight: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_a136d6aee64c08e1b101df38.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.809082;font-style:normal;font-weight: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_a87e7c68bb04d07b9ff95b66.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.895996;font-style:normal;font-weight: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_2169162d2bfb7780421ee5ce.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.938965;font-style:normal;font-weight: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_c1d7c984a01b8696b1b1e1bd.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.929199;font-style:normal;font-weight: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_de48b6dfd5f8248c458a313a.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.911621;font-style:normal;font-weight: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_a136d6aee64c08e1b101df38.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.809082;font-style:normal;font-weight: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_a87e7c68bb04d07b9ff95b66.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.895996;font-style:normal;font-weight: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_2169162d2bfb7780421ee5ce.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.938965;font-style:normal;font-weight: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_c1d7c984a01b8696b1b1e1bd.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.929199;font-style:normal;font-weight: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_de48b6dfd5f8248c458a313a.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.911621;font-style:normal;font-weight: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_a136d6aee64c08e1b101df38.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.809082;font-style:normal;font-weight: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_a87e7c68bb04d07b9ff95b66.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.895996;font-style:normal;font-weight: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_2169162d2bfb7780421ee5ce.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.938965;font-style:normal;font-weight: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_c1d7c984a01b8696b1b1e1bd.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.929199;font-style:normal;font-weight: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_de48b6dfd5f8248c458a313a.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.911621;font-style:normal;font-weight: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_a136d6aee64c08e1b101df38.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.809082;font-style:normal;font-weight: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_a87e7c68bb04d07b9ff95b66.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.895996;font-style:normal;font-weight: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_2169162d2bfb7780421ee5ce.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.938965;font-style:normal;font-weight: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_c1d7c984a01b8696b1b1e1bd.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.929199;font-style:normal;font-weight: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_de48b6dfd5f8248c458a313a.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.911621;font-style:normal;font-weight: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_a136d6aee64c08e1b101df38.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.809082;font-style:normal;font-weight: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_a87e7c68bb04d07b9ff95b66.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.895996;font-style:normal;font-weight: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_2169162d2bfb7780421ee5ce.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.938965;font-style:normal;font-weight: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_c1d7c984a01b8696b1b1e1bd.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.929199;font-style:normal;font-weight: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_cbcd42fc768b2129b8119bd0.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.911621;font-style:normal;font-weight: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_a136d6aee64c08e1b101df38.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.809082;font-style:normal;font-weight: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_a87e7c68bb04d07b9ff95b66.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.895996;font-style:normal;font-weight: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_2169162d2bfb7780421ee5ce.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.938965;font-style:normal;font-weight: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_c1d7c984a01b8696b1b1e1bd.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.929199;font-style:normal;font-weight: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_cbcd42fc768b2129b8119bd0.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.911621;font-style:normal;font-weight: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_a136d6aee64c08e1b101df38.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.809082;font-style:normal;font-weight: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_a87e7c68bb04d07b9ff95b66.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.895996;font-style:normal;font-weight: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_2169162d2bfb7780421ee5ce.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.938965;font-style:normal;font-weight: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_c1d7c984a01b8696b1b1e1bd.woff2')format("woff");}.ff49{font-family:ff49;line-height:0.929199;font-style:normal;font-weight: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_cbcd42fc768b2129b8119bd0.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.911621;font-style:normal;font-weight: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_a136d6aee64c08e1b101df38.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:0.809082;font-style:normal;font-weight: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_a87e7c68bb04d07b9ff95b66.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:0.895996;font-style:normal;font-weight: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_2169162d2bfb7780421ee5ce.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:0.938965;font-style:normal;font-weight: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_c1d7c984a01b8696b1b1e1bd.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:0.929199;font-style:normal;font-weight: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_cbcd42fc768b2129b8119bd0.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:0.911621;font-style:normal;font-weight: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_a136d6aee64c08e1b101df38.woff2')format("woff");}.ff50{font-family:ff50;line-height:0.809082;font-style:normal;font-weight: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_a87e7c68bb04d07b9ff95b66.woff2')format("woff");}.ff51{font-family:ff51;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff52;src:url('chunks/assets/font_2169162d2bfb7780421ee5ce.woff2')format("woff");}.ff52{font-family:ff52;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff53;src:url('chunks/assets/font_c1d7c984a01b8696b1b1e1bd.woff2')format("woff");}.ff53{font-family:ff53;line-height:0.929199;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff54;src:url('chunks/assets/font_cbcd42fc768b2129b8119bd0.woff2')format("woff");}.ff54{font-family:ff54;line-height:0.911621;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff55;src:url('chunks/assets/font_a136d6aee64c08e1b101df38.woff2')format("woff");}.ff55{font-family:ff55;line-height:0.809082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff56;src:url('chunks/assets/font_a87e7c68bb04d07b9ff95b66.woff2')format("woff");}.ff56{font-family:ff56;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff57;src:url('chunks/assets/font_2169162d2bfb7780421ee5ce.woff2')format("woff");}.ff57{font-family:ff57;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff58;src:url('chunks/assets/font_c1d7c984a01b8696b1b1e1bd.woff2')format("woff");}.ff58{font-family:ff58;line-height:0.929199;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff59;src:url('chunks/assets/font_121ad26832660fa9b5fcbed8.woff2')format("woff");}.ff59{font-family:ff59;line-height:0.911621;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5a;src:url('chunks/assets/font_a136d6aee64c08e1b101df38.woff2')format("woff");}.ff5a{font-family:ff5a;line-height:0.809082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5b;src:url('chunks/assets/font_a87e7c68bb04d07b9ff95b66.woff2')format("woff");}.ff5b{font-family:ff5b;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5c;src:url('chunks/assets/font_2169162d2bfb7780421ee5ce.woff2')format("woff");}.ff5c{font-family:ff5c;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5d;src:url('chunks/assets/font_c1d7c984a01b8696b1b1e1bd.woff2')format("woff");}.ff5d{font-family:ff5d;line-height:0.929199;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5e;src:url('chunks/assets/font_121ad26832660fa9b5fcbed8.woff2')format("woff");}.ff5e{font-family:ff5e;line-height:0.911621;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5f;src:url('chunks/assets/font_a136d6aee64c08e1b101df38.woff2')format("woff");}.ff5f{font-family:ff5f;line-height:0.809082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff60;src:url('chunks/assets/font_a87e7c68bb04d07b9ff95b66.woff2')format("woff");}.ff60{font-family:ff60;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff61;src:url('chunks/assets/font_2169162d2bfb7780421ee5ce.woff2')format("woff");}.ff61{font-family:ff61;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff62;src:url('chunks/assets/font_c1d7c984a01b8696b1b1e1bd.woff2')format("woff");}.ff62{font-family:ff62;line-height:0.929199;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff63;src:url('chunks/assets/font_121ad26832660fa9b5fcbed8.woff2')format("woff");}.ff63{font-family:ff63;line-height:0.911621;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff64;src:url('chunks/assets/font_a136d6aee64c08e1b101df38.woff2')format("woff");}.ff64{font-family:ff64;line-height:0.809082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff65;src:url('chunks/assets/font_501aa100a70cd34f0f99c583.woff2')format("woff");}.ff65{font-family:ff65;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v8{vertical-align:-28.401720px;}
.vd{vertical-align:-26.035200px;}
.v7{vertical-align:-21.228600px;}
.v2{vertical-align:-19.979400px;}
.v9{vertical-align:-14.989800px;}
.vb{vertical-align:-12.623400px;}
.v3{vertical-align:-10.855200px;}
.v5{vertical-align:-9.141000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:10.855200px;}
.va{vertical-align:14.989800px;}
.v6{vertical-align:18.853200px;}
.v1{vertical-align:19.979400px;}
.vc{vertical-align:26.035200px;}
.lsdc{letter-spacing:-6.048000px;}
.lsb6{letter-spacing:-5.292000px;}
.lsdd{letter-spacing:-5.076000px;}
.lsc1{letter-spacing:-4.644000px;}
.lsd6{letter-spacing:-4.320000px;}
.lsc0{letter-spacing:-4.212000px;}
.lse7{letter-spacing:-4.140000px;}
.lscb{letter-spacing:-4.050000px;}
.lsb2{letter-spacing:-3.726000px;}
.ls9d{letter-spacing:-3.600000px;}
.lsbe{letter-spacing:-3.510000px;}
.lsda{letter-spacing:-3.456000px;}
.lsf8{letter-spacing:-3.072000px;}
.lscc{letter-spacing:-3.024000px;}
.lsc9{letter-spacing:-2.862000px;}
.lsc4{letter-spacing:-2.808000px;}
.lsb9{letter-spacing:-2.700000px;}
.lse4{letter-spacing:-2.646000px;}
.lsf5{letter-spacing:-2.640000px;}
.lsd9{letter-spacing:-2.592000px;}
.lsd8{letter-spacing:-2.538000px;}
.lsd7{letter-spacing:-2.484000px;}
.lsb5{letter-spacing:-2.376000px;}
.lsdf{letter-spacing:-2.160000px;}
.lsde{letter-spacing:-2.106000px;}
.lsf3{letter-spacing:-2.064000px;}
.lsca{letter-spacing:-2.052000px;}
.lsd4{letter-spacing:-1.998000px;}
.lsf7{letter-spacing:-1.872000px;}
.lsf4{letter-spacing:-1.776000px;}
.lsbd{letter-spacing:-1.728000px;}
.lsf0{letter-spacing:-1.680000px;}
.lsd5{letter-spacing:-1.620000px;}
.lsbb{letter-spacing:-1.512000px;}
.lsb7{letter-spacing:-1.350000px;}
.lsd1{letter-spacing:-1.312500px;}
.lse3{letter-spacing:-1.296000px;}
.lse1{letter-spacing:-1.242000px;}
.lsc6{letter-spacing:-1.188000px;}
.lse5{letter-spacing:-1.134000px;}
.lsbc{letter-spacing:-1.026000px;}
.lscd{letter-spacing:-0.972000px;}
.ls1d{letter-spacing:-0.937500px;}
.lsd{letter-spacing:-0.926640px;}
.lsc8{letter-spacing:-0.918000px;}
.lsf{letter-spacing:-0.900000px;}
.lsc{letter-spacing:-0.842400px;}
.lsba{letter-spacing:-0.810000px;}
.lsae{letter-spacing:-0.788952px;}
.lsea{letter-spacing:-0.768000px;}
.lse8{letter-spacing:-0.712500px;}
.lsaf{letter-spacing:-0.631162px;}
.ls5{letter-spacing:-0.589680px;}
.lsa3{letter-spacing:-0.571308px;}
.lsc3{letter-spacing:-0.540000px;}
.lsdb{letter-spacing:-0.486000px;}
.lsaa{letter-spacing:-0.473371px;}
.lsa9{letter-spacing:-0.471744px;}
.lsa4{letter-spacing:-0.457046px;}
.lsa5{letter-spacing:-0.353808px;}
.ls9f{letter-spacing:-0.342785px;}
.ls9{letter-spacing:-0.336960px;}
.lsee{letter-spacing:-0.336000px;}
.lsd0{letter-spacing:-0.300000px;}
.lsa{letter-spacing:-0.252720px;}
.lsab{letter-spacing:-0.236686px;}
.lsb8{letter-spacing:-0.216000px;}
.lsac{letter-spacing:-0.211440px;}
.lsa6{letter-spacing:-0.176904px;}
.lsa0{letter-spacing:-0.171392px;}
.ls7{letter-spacing:-0.168480px;}
.lse0{letter-spacing:-0.162000px;}
.lsa7{letter-spacing:-0.158035px;}
.lsad{letter-spacing:-0.157790px;}
.lsa1{letter-spacing:-0.153110px;}
.lsa8{letter-spacing:-0.117936px;}
.lsa2{letter-spacing:-0.114262px;}
.lsc5{letter-spacing:-0.108000px;}
.ls0{letter-spacing:0.000000px;}
.ls42{letter-spacing:0.000120px;}
.ls86{letter-spacing:0.000144px;}
.ls5d{letter-spacing:0.000240px;}
.ls91{letter-spacing:0.000336px;}
.ls95{letter-spacing:0.000360px;}
.ls9a{letter-spacing:0.000912px;}
.ls71{letter-spacing:0.001176px;}
.ls1f{letter-spacing:0.001512px;}
.ls2f{letter-spacing:0.001776px;}
.lsc2{letter-spacing:0.054000px;}
.ls8{letter-spacing:0.084240px;}
.ls1{letter-spacing:0.108000px;}
.ls32{letter-spacing:0.114262px;}
.ls55{letter-spacing:0.117936px;}
.lscf{letter-spacing:0.120000px;}
.ls89{letter-spacing:0.157790px;}
.ls2{letter-spacing:0.168480px;}
.ls9e{letter-spacing:0.174900px;}
.lse6{letter-spacing:0.216000px;}
.ls70{letter-spacing:0.226495px;}
.ls3a{letter-spacing:0.227095px;}
.ls67{letter-spacing:0.228475px;}
.ls1e{letter-spacing:0.228523px;}
.ls69{letter-spacing:0.228907px;}
.ls22{letter-spacing:0.228979px;}
.ls25{letter-spacing:0.229075px;}
.ls2a{letter-spacing:0.229507px;}
.ls4d{letter-spacing:0.235512px;}
.ls45{letter-spacing:0.235632px;}
.ls41{letter-spacing:0.235872px;}
.ls48{letter-spacing:0.235992px;}
.ls14{letter-spacing:0.240000px;}
.ls4{letter-spacing:0.244296px;}
.lsc7{letter-spacing:0.270000px;}
.ls6b{letter-spacing:0.286266px;}
.ls72{letter-spacing:0.286866px;}
.lsed{letter-spacing:0.288000px;}
.ls52{letter-spacing:0.294960px;}
.ls11{letter-spacing:0.300000px;}
.lse{letter-spacing:0.315000px;}
.ls7a{letter-spacing:0.315269px;}
.ls74{letter-spacing:0.315581px;}
.ls80{letter-spacing:0.315677px;}
.ls93{letter-spacing:0.315749px;}
.ls77{letter-spacing:0.315845px;}
.ls7d{letter-spacing:0.315869px;}
.ls6{letter-spacing:0.324000px;}
.ls3{letter-spacing:0.336960px;}
.ls85{letter-spacing:0.394404px;}
.ls17{letter-spacing:0.420000px;}
.lsb{letter-spacing:0.421200px;}
.lse2{letter-spacing:0.432000px;}
.ls16{letter-spacing:0.480000px;}
.ls15{letter-spacing:0.540000px;}
.ls39{letter-spacing:0.571308px;}
.ls1c{letter-spacing:0.576000px;}
.ls5e{letter-spacing:0.589680px;}
.lsbf{letter-spacing:0.594000px;}
.ls1a{letter-spacing:0.600000px;}
.lseb{letter-spacing:0.624000px;}
.lsb3{letter-spacing:0.648000px;}
.ls3d{letter-spacing:0.685570px;}
.lsb4{letter-spacing:0.702000px;}
.ls60{letter-spacing:0.707616px;}
.lsb0{letter-spacing:0.756000px;}
.ls19{letter-spacing:0.780000px;}
.ls92{letter-spacing:0.788952px;}
.lse9{letter-spacing:0.816000px;}
.lsd3{letter-spacing:0.864000px;}
.ls33{letter-spacing:0.914093px;}
.ls56{letter-spacing:0.943488px;}
.ls96{letter-spacing:0.946742px;}
.lsce{letter-spacing:0.960000px;}
.lsb1{letter-spacing:0.972000px;}
.ls1b{letter-spacing:1.008000px;}
.lsef{letter-spacing:1.056000px;}
.lsd2{letter-spacing:1.080000px;}
.lsec{letter-spacing:1.104000px;}
.lsf2{letter-spacing:1.152000px;}
.lsf1{letter-spacing:1.248000px;}
.ls8a{letter-spacing:1.262323px;}
.ls37{letter-spacing:1.599662px;}
.ls5b{letter-spacing:1.651104px;}
.ls40{letter-spacing:1.805333px;}
.ls63{letter-spacing:1.863389px;}
.ls38{letter-spacing:1.885556px;}
.ls6d{letter-spacing:1.886156px;}
.ls6c{letter-spacing:1.886516px;}
.ls31{letter-spacing:1.887116px;}
.ls54{letter-spacing:1.945944px;}
.ls30{letter-spacing:1.995129px;}
.ls3c{letter-spacing:1.995729px;}
.ls53{letter-spacing:2.059834px;}
.ls65{letter-spacing:2.093898px;}
.ls26{letter-spacing:2.094498px;}
.ls49{letter-spacing:2.161460px;}
.ls8f{letter-spacing:2.209066px;}
.ls2b{letter-spacing:2.425638px;}
.ls9c{letter-spacing:2.426238px;}
.ls99{letter-spacing:2.493088px;}
.ls4e{letter-spacing:2.503712px;}
.ls73{letter-spacing:2.566329px;}
.ls2c{letter-spacing:2.566929px;}
.ls6a{letter-spacing:2.567529px;}
.ls35{letter-spacing:2.578842px;}
.ls6f{letter-spacing:2.579442px;}
.ls88{letter-spacing:2.602942px;}
.ls90{letter-spacing:2.603302px;}
.ls5c{letter-spacing:2.649034px;}
.ls4f{letter-spacing:2.649634px;}
.ls5a{letter-spacing:2.661232px;}
.ls58{letter-spacing:2.661832px;}
.ls87{letter-spacing:2.755918px;}
.ls3b{letter-spacing:2.811213px;}
.ls6e{letter-spacing:2.811813px;}
.ls7b{letter-spacing:2.892068px;}
.ls5f{letter-spacing:2.901857px;}
.ls81{letter-spacing:3.349760px;}
.ls82{letter-spacing:3.544918px;}
.ls8e{letter-spacing:3.561064px;}
.ls8c{letter-spacing:3.561664px;}
.ls18{letter-spacing:3.750000px;}
.ls94{letter-spacing:3.882005px;}
.ls10{letter-spacing:4.687500px;}
.ls12{letter-spacing:5.760000px;}
.ls13{letter-spacing:5.832000px;}
.ls3e{letter-spacing:6.969958px;}
.ls61{letter-spacing:7.194096px;}
.ls21{letter-spacing:7.427004px;}
.ls34{letter-spacing:7.541266px;}
.ls44{letter-spacing:7.665840px;}
.ls57{letter-spacing:7.783776px;}
.ls36{letter-spacing:8.283966px;}
.ls59{letter-spacing:8.550360px;}
.ls29{letter-spacing:8.798143px;}
.ls2d{letter-spacing:8.855274px;}
.ls4c{letter-spacing:9.081072px;}
.ls50{letter-spacing:9.140040px;}
.ls20{letter-spacing:9.422529px;}
.ls9b{letter-spacing:9.423129px;}
.ls97{letter-spacing:9.625214px;}
.ls43{letter-spacing:9.725434px;}
.ls76{letter-spacing:10.256376px;}
.ls3f{letter-spacing:10.397806px;}
.ls8b{letter-spacing:10.414166px;}
.ls62{letter-spacing:10.732176px;}
.ls8d{letter-spacing:11.439804px;}
.ls24{letter-spacing:11.597552px;}
.ls47{letter-spacing:11.970504px;}
.ls7f{letter-spacing:12.149861px;}
.ls83{letter-spacing:12.228756px;}
.ls75{letter-spacing:13.012318px;}
.lsf6{letter-spacing:13.254000px;}
.ls28{letter-spacing:13.433442px;}
.ls68{letter-spacing:13.434042px;}
.ls23{letter-spacing:13.520298px;}
.ls64{letter-spacing:13.520898px;}
.ls4b{letter-spacing:13.865632px;}
.ls46{letter-spacing:13.955660px;}
.ls27{letter-spacing:14.004642px;}
.ls66{letter-spacing:14.005242px;}
.ls98{letter-spacing:14.358926px;}
.ls2e{letter-spacing:14.454092px;}
.ls4a{letter-spacing:14.455432px;}
.ls51{letter-spacing:14.918904px;}
.ls79{letter-spacing:16.015726px;}
.ls7e{letter-spacing:18.551464px;}
.ls78{letter-spacing:18.671468px;}
.ls7c{letter-spacing:19.340464px;}
.ls84{letter-spacing:19.960486px;}
.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;}
}
.wsd0{word-spacing:-78.895200px;}
.wsc6{word-spacing:-58.968000px;}
.wsbd{word-spacing:-57.130800px;}
.wsd3{word-spacing:-56.015400px;}
.wsc9{word-spacing:-41.867400px;}
.wsc0{word-spacing:-40.563000px;}
.wsd2{word-spacing:-37.463936px;}
.wsc8{word-spacing:-28.001768px;}
.wsbf{word-spacing:-27.129558px;}
.wscd{word-spacing:-27.128958px;}
.ws2{word-spacing:-24.516000px;}
.wsd5{word-spacing:-22.248446px;}
.wsd4{word-spacing:-22.090656px;}
.wsd6{word-spacing:-21.932866px;}
.wscf{word-spacing:-21.696180px;}
.wsce{word-spacing:-21.459494px;}
.ws7{word-spacing:-19.459440px;}
.ws4{word-spacing:-19.122480px;}
.ws3{word-spacing:-18.869760px;}
.ws6{word-spacing:-18.785520px;}
.ws5{word-spacing:-18.701280px;}
.ws1{word-spacing:-18.448560px;}
.ws8{word-spacing:-18.195840px;}
.ws9{word-spacing:-18.111600px;}
.wscb{word-spacing:-16.628976px;}
.wsca{word-spacing:-16.511040px;}
.wscc{word-spacing:-16.393104px;}
.wsc5{word-spacing:-16.216200px;}
.wsc2{word-spacing:-16.110886px;}
.wsc4{word-spacing:-16.039296px;}
.wsc1{word-spacing:-15.996624px;}
.wsc3{word-spacing:-15.882362px;}
.wsbc{word-spacing:-15.710970px;}
.wsbb{word-spacing:-15.539578px;}
.ws11{word-spacing:-14.679000px;}
.ws28{word-spacing:-14.460000px;}
.ws1eb{word-spacing:-14.280000px;}
.ws13{word-spacing:-14.220000px;}
.ws14{word-spacing:-14.160000px;}
.ws99{word-spacing:-13.980000px;}
.ws12{word-spacing:-13.920000px;}
.wsba{word-spacing:-13.680000px;}
.ws17f{word-spacing:-13.392000px;}
.ws13c{word-spacing:-13.068000px;}
.ws15{word-spacing:-12.780000px;}
.ws144{word-spacing:-12.366000px;}
.wsd1{word-spacing:-12.323388px;}
.ws146{word-spacing:-12.204000px;}
.ws18d{word-spacing:-12.150000px;}
.ws13f{word-spacing:-12.096000px;}
.ws1e9{word-spacing:-12.048000px;}
.ws1d6{word-spacing:-11.952000px;}
.ws187{word-spacing:-11.826000px;}
.ws1e4{word-spacing:-11.808000px;}
.ws1d5{word-spacing:-11.760000px;}
.ws140{word-spacing:-11.502000px;}
.ws149{word-spacing:-11.394000px;}
.ws182{word-spacing:-11.340000px;}
.ws18e{word-spacing:-11.286000px;}
.ws1d7{word-spacing:-11.232000px;}
.ws18a{word-spacing:-11.124000px;}
.ws18f{word-spacing:-11.070000px;}
.ws190{word-spacing:-11.016000px;}
.ws1e2{word-spacing:-10.944000px;}
.ws17e{word-spacing:-10.692000px;}
.ws1d8{word-spacing:-10.608000px;}
.ws141{word-spacing:-10.584000px;}
.ws17d{word-spacing:-10.314000px;}
.ws18b{word-spacing:-10.206000px;}
.ws1d9{word-spacing:-10.176000px;}
.ws18c{word-spacing:-10.152000px;}
.ws197{word-spacing:-9.936000px;}
.ws181{word-spacing:-9.828000px;}
.ws183{word-spacing:-9.774000px;}
.ws185{word-spacing:-9.720000px;}
.ws192{word-spacing:-9.666000px;}
.ws13e{word-spacing:-9.612000px;}
.ws145{word-spacing:-9.504000px;}
.ws14a{word-spacing:-9.450000px;}
.ws14b{word-spacing:-9.288000px;}
.ws1da{word-spacing:-9.264000px;}
.wsc7{word-spacing:-9.210828px;}
.wsbe{word-spacing:-8.923860px;}
.ws1e3{word-spacing:-8.880000px;}
.ws186{word-spacing:-8.856000px;}
.ws142{word-spacing:-8.802000px;}
.ws13b{word-spacing:-8.586000px;}
.ws184{word-spacing:-8.262000px;}
.ws180{word-spacing:-7.992000px;}
.ws1ea{word-spacing:-7.872000px;}
.ws1d4{word-spacing:-7.837500px;}
.ws143{word-spacing:-7.668000px;}
.ws27{word-spacing:-7.650000px;}
.wsb9{word-spacing:-7.612500px;}
.ws189{word-spacing:-7.236000px;}
.ws6d{word-spacing:-7.020000px;}
.ws171{word-spacing:-6.480000px;}
.ws1b7{word-spacing:-6.360000px;}
.ws1a4{word-spacing:-6.300000px;}
.ws188{word-spacing:-6.264000px;}
.ws1c2{word-spacing:-6.060000px;}
.ws16d{word-spacing:-5.880000px;}
.ws11f{word-spacing:-5.680454px;}
.ws1d2{word-spacing:-5.640000px;}
.wsb5{word-spacing:-5.220000px;}
.ws1a0{word-spacing:-5.100000px;}
.ws1ad{word-spacing:-5.040000px;}
.ws86{word-spacing:-4.920000px;}
.ws120{word-spacing:-4.891502px;}
.wse3{word-spacing:-4.860000px;}
.ws1ce{word-spacing:-4.800000px;}
.ws1ae{word-spacing:-4.620000px;}
.ws5a{word-spacing:-4.560000px;}
.ws1c0{word-spacing:-4.440000px;}
.ws84{word-spacing:-4.320000px;}
.ws104{word-spacing:-4.245696px;}
.ws4d{word-spacing:-4.140000px;}
.wse9{word-spacing:-4.113418px;}
.ws1b4{word-spacing:-4.080000px;}
.ws57{word-spacing:-4.020000px;}
.ws3c{word-spacing:-3.840000px;}
.ws22{word-spacing:-3.780000px;}
.wsdc{word-spacing:-3.720000px;}
.ws3f{word-spacing:-3.660000px;}
.ws105{word-spacing:-3.656016px;}
.wsa1{word-spacing:-3.600000px;}
.wsea{word-spacing:-3.542110px;}
.ws1ba{word-spacing:-3.540000px;}
.ws6a{word-spacing:-3.420000px;}
.wse1{word-spacing:-3.360000px;}
.ws126{word-spacing:-3.313598px;}
.ws1c{word-spacing:-3.300000px;}
.wsb4{word-spacing:-3.240000px;}
.ws1a3{word-spacing:-3.180000px;}
.ws43{word-spacing:-3.120000px;}
.ws1bd{word-spacing:-3.060000px;}
.wsb7{word-spacing:-3.000000px;}
.ws1b3{word-spacing:-2.880000px;}
.ws14f{word-spacing:-2.820000px;}
.ws7f{word-spacing:-2.760000px;}
.ws29{word-spacing:-2.700000px;}
.ws1e{word-spacing:-2.640000px;}
.wsa5{word-spacing:-2.580000px;}
.ws127{word-spacing:-2.524646px;}
.ws51{word-spacing:-2.520000px;}
.ws10b{word-spacing:-2.476656px;}
.ws4b{word-spacing:-2.460000px;}
.ws1f{word-spacing:-2.400000px;}
.wsf0{word-spacing:-2.399494px;}
.ws3d{word-spacing:-2.340000px;}
.ws4e{word-spacing:-2.280000px;}
.wsd9{word-spacing:-2.160000px;}
.ws16a{word-spacing:-2.100000px;}
.ws168{word-spacing:-2.040000px;}
.ws151{word-spacing:-1.944000px;}
.wsdd{word-spacing:-1.920000px;}
.ws10c{word-spacing:-1.886976px;}
.ws1e0{word-spacing:-1.872000px;}
.ws5c{word-spacing:-1.860000px;}
.wsf1{word-spacing:-1.828186px;}
.wsb0{word-spacing:-1.800000px;}
.ws1e5{word-spacing:-1.776000px;}
.ws83{word-spacing:-1.740000px;}
.ws134{word-spacing:-1.735694px;}
.ws1de{word-spacing:-1.728000px;}
.ws81{word-spacing:-1.680000px;}
.ws153{word-spacing:-1.674000px;}
.ws91{word-spacing:-1.632000px;}
.ws19{word-spacing:-1.620000px;}
.ws163{word-spacing:-1.584000px;}
.ws159{word-spacing:-1.566000px;}
.ws70{word-spacing:-1.560000px;}
.ws19e{word-spacing:-1.512000px;}
.ws26{word-spacing:-1.500000px;}
.ws1dc{word-spacing:-1.488000px;}
.ws6c{word-spacing:-1.440000px;}
.ws19f{word-spacing:-1.404000px;}
.ws17{word-spacing:-1.380000px;}
.ws1a{word-spacing:-1.320000px;}
.ws119{word-spacing:-1.297296px;}
.ws85{word-spacing:-1.260000px;}
.wsfe{word-spacing:-1.256878px;}
.ws1dd{word-spacing:-1.248000px;}
.ws15e{word-spacing:-1.242000px;}
.wsa7{word-spacing:-1.200000px;}
.ws1e7{word-spacing:-1.152000px;}
.wsdb{word-spacing:-1.140000px;}
.wsa6{word-spacing:-1.104000px;}
.ws16e{word-spacing:-1.080000px;}
.ws30{word-spacing:-0.960000px;}
.ws123{word-spacing:-0.946742px;}
.ws16{word-spacing:-0.937500px;}
.ws40{word-spacing:-0.900000px;}
.ws93{word-spacing:-0.840000px;}
.ws12e{word-spacing:-0.788952px;}
.ws79{word-spacing:-0.780000px;}
.wse{word-spacing:-0.758160px;}
.ws1ee{word-spacing:-0.720000px;}
.ws108{word-spacing:-0.707616px;}
.wsed{word-spacing:-0.685570px;}
.ws69{word-spacing:-0.660000px;}
.ws152{word-spacing:-0.648000px;}
.ws1c1{word-spacing:-0.600000px;}
.ws113{word-spacing:-0.589680px;}
.wsf8{word-spacing:-0.571308px;}
.ws4c{word-spacing:-0.540000px;}
.ws53{word-spacing:-0.480000px;}
.ws129{word-spacing:-0.315581px;}
.ws24{word-spacing:-0.300000px;}
.wsda{word-spacing:-0.240000px;}
.ws10e{word-spacing:-0.235872px;}
.wsf3{word-spacing:-0.228523px;}
.wsa{word-spacing:-0.216000px;}
.ws2b{word-spacing:-0.180000px;}
.wsde{word-spacing:-0.174900px;}
.wsc{word-spacing:-0.168480px;}
.ws121{word-spacing:-0.157790px;}
.ws3b{word-spacing:-0.120000px;}
.ws106{word-spacing:-0.117936px;}
.wseb{word-spacing:-0.114262px;}
.ws18{word-spacing:-0.072000px;}
.ws14e{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.ws16b{word-spacing:0.060000px;}
.wsb{word-spacing:0.108000px;}
.ws14c{word-spacing:0.120000px;}
.ws1db{word-spacing:0.144000px;}
.wsf5{word-spacing:0.153110px;}
.ws110{word-spacing:0.158035px;}
.wsd{word-spacing:0.168480px;}
.ws80{word-spacing:0.180000px;}
.ws12b{word-spacing:0.211440px;}
.ws156{word-spacing:0.216000px;}
.ws100{word-spacing:0.228523px;}
.ws11b{word-spacing:0.235872px;}
.wsad{word-spacing:0.240000px;}
.wsf{word-spacing:0.252720px;}
.ws172{word-spacing:0.300000px;}
.ws136{word-spacing:0.315581px;}
.wsf4{word-spacing:0.342785px;}
.ws10f{word-spacing:0.353808px;}
.ws177{word-spacing:0.360000px;}
.ws155{word-spacing:0.378000px;}
.ws56{word-spacing:0.420000px;}
.wsfd{word-spacing:0.457046px;}
.ws118{word-spacing:0.471744px;}
.ws12a{word-spacing:0.473371px;}
.ws2e{word-spacing:0.480000px;}
.ws35{word-spacing:0.540000px;}
.ws101{word-spacing:0.571308px;}
.ws11c{word-spacing:0.589680px;}
.ws96{word-spacing:0.600000px;}
.ws133{word-spacing:0.631162px;}
.ws7c{word-spacing:0.660000px;}
.ws164{word-spacing:0.720000px;}
.ws1df{word-spacing:0.768000px;}
.wsd7{word-spacing:0.780000px;}
.ws137{word-spacing:0.788952px;}
.ws15f{word-spacing:0.810000px;}
.wsa2{word-spacing:0.840000px;}
.wsa3{word-spacing:0.900000px;}
.ws162{word-spacing:0.972000px;}
.ws54{word-spacing:1.020000px;}
.ws158{word-spacing:1.026000px;}
.wsef{word-spacing:1.028354px;}
.ws10a{word-spacing:1.061424px;}
.ws165{word-spacing:1.080000px;}
.ws97{word-spacing:1.140000px;}
.ws1e6{word-spacing:1.152000px;}
.ws15d{word-spacing:1.188000px;}
.ws3e{word-spacing:1.200000px;}
.ws1ec{word-spacing:1.248000px;}
.ws87{word-spacing:1.320000px;}
.ws15c{word-spacing:1.350000px;}
.ws1b{word-spacing:1.380000px;}
.ws125{word-spacing:1.420114px;}
.ws157{word-spacing:1.512000px;}
.ws1b5{word-spacing:1.560000px;}
.ws103{word-spacing:1.599662px;}
.wse5{word-spacing:1.620000px;}
.ws11e{word-spacing:1.651104px;}
.ws1d{word-spacing:1.680000px;}
.ws1d1{word-spacing:1.740000px;}
.wsaf{word-spacing:1.800000px;}
.ws4f{word-spacing:1.860000px;}
.ws1cf{word-spacing:1.920000px;}
.ws34{word-spacing:1.980000px;}
.ws1e8{word-spacing:2.016000px;}
.ws2f{word-spacing:2.040000px;}
.ws160{word-spacing:2.052000px;}
.ws77{word-spacing:2.100000px;}
.wsee{word-spacing:2.170970px;}
.ws139{word-spacing:2.209066px;}
.ws75{word-spacing:2.220000px;}
.ws109{word-spacing:2.240784px;}
.ws8d{word-spacing:2.280000px;}
.ws15b{word-spacing:2.376000px;}
.wsa0{word-spacing:2.460000px;}
.ws73{word-spacing:2.520000px;}
.ws31{word-spacing:2.580000px;}
.ws176{word-spacing:2.640000px;}
.ws32{word-spacing:2.700000px;}
.wsb8{word-spacing:2.760000px;}
.ws21{word-spacing:2.820000px;}
.ws6f{word-spacing:2.880000px;}
.ws9f{word-spacing:2.940000px;}
.ws124{word-spacing:2.998018px;}
.ws82{word-spacing:3.000000px;}
.ws62{word-spacing:3.060000px;}
.ws161{word-spacing:3.078000px;}
.wsa4{word-spacing:3.180000px;}
.ws5d{word-spacing:3.240000px;}
.ws174{word-spacing:3.360000px;}
.ws78{word-spacing:3.420000px;}
.ws1bb{word-spacing:3.480000px;}
.ws9b{word-spacing:3.540000px;}
.wsd8{word-spacing:3.600000px;}
.ws25{word-spacing:3.660000px;}
.wsac{word-spacing:3.720000px;}
.ws2a{word-spacing:3.780000px;}
.ws1a8{word-spacing:3.840000px;}
.wsec{word-spacing:3.884894px;}
.ws1cb{word-spacing:3.900000px;}
.ws9a{word-spacing:3.960000px;}
.ws107{word-spacing:4.009824px;}
.ws16c{word-spacing:4.020000px;}
.wsb1{word-spacing:4.080000px;}
.ws7e{word-spacing:4.140000px;}
.ws15a{word-spacing:4.212000px;}
.ws9e{word-spacing:4.260000px;}
.ws169{word-spacing:4.320000px;}
.ws1c7{word-spacing:4.380000px;}
.ws102{word-spacing:4.456202px;}
.ws3a{word-spacing:4.500000px;}
.ws1a2{word-spacing:4.560000px;}
.ws11d{word-spacing:4.599504px;}
.ws1a1{word-spacing:4.620000px;}
.ws2d{word-spacing:4.680000px;}
.wse4{word-spacing:4.740000px;}
.ws74{word-spacing:4.800000px;}
.ws41{word-spacing:4.980000px;}
.ws1c5{word-spacing:5.040000px;}
.ws1b2{word-spacing:5.100000px;}
.ws1d3{word-spacing:5.160000px;}
.ws178{word-spacing:5.220000px;}
.ws1c3{word-spacing:5.280000px;}
.ws154{word-spacing:5.292000px;}
.ws9d{word-spacing:5.340000px;}
.ws122{word-spacing:5.364874px;}
.wse6{word-spacing:5.400000px;}
.ws48{word-spacing:5.460000px;}
.ws92{word-spacing:5.520000px;}
.ws64{word-spacing:5.580000px;}
.ws1b1{word-spacing:5.700000px;}
.ws173{word-spacing:5.760000px;}
.ws44{word-spacing:5.820000px;}
.wse7{word-spacing:5.940000px;}
.ws6b{word-spacing:6.060000px;}
.ws95{word-spacing:6.120000px;}
.ws138{word-spacing:6.153826px;}
.ws23{word-spacing:6.180000px;}
.ws39{word-spacing:6.240000px;}
.ws7b{word-spacing:6.300000px;}
.ws1c8{word-spacing:6.360000px;}
.ws8a{word-spacing:6.540000px;}
.ws6e{word-spacing:6.660000px;}
.ws1a7{word-spacing:6.720000px;}
.wsf7{word-spacing:6.741434px;}
.wse8{word-spacing:6.780000px;}
.ws20{word-spacing:6.840000px;}
.wsf6{word-spacing:6.855696px;}
.ws112{word-spacing:6.958224px;}
.ws55{word-spacing:7.020000px;}
.ws111{word-spacing:7.076160px;}
.ws16f{word-spacing:7.080000px;}
.ws33{word-spacing:7.140000px;}
.ws7d{word-spacing:7.200000px;}
.wsae{word-spacing:7.260000px;}
.wsf2{word-spacing:7.312742px;}
.ws58{word-spacing:7.320000px;}
.ws1a9{word-spacing:7.380000px;}
.ws8e{word-spacing:7.440000px;}
.ws10d{word-spacing:7.547904px;}
.ws1b0{word-spacing:7.560000px;}
.wsab{word-spacing:7.620000px;}
.ws1b9{word-spacing:7.740000px;}
.ws1be{word-spacing:7.920000px;}
.ws36{word-spacing:7.980000px;}
.ws50{word-spacing:8.100000px;}
.ws71{word-spacing:8.220000px;}
.ws1b6{word-spacing:8.340000px;}
.ws1ca{word-spacing:8.400000px;}
.ws1a5{word-spacing:8.460000px;}
.wsdf{word-spacing:8.580000px;}
.ws150{word-spacing:8.640000px;}
.ws9c{word-spacing:8.760000px;}
.ws63{word-spacing:9.000000px;}
.wsfc{word-spacing:9.026666px;}
.wsb6{word-spacing:9.120000px;}
.ws12d{word-spacing:9.309634px;}
.ws117{word-spacing:9.316944px;}
.ws2c{word-spacing:9.420000px;}
.ws12c{word-spacing:9.467424px;}
.ws1c4{word-spacing:9.600000px;}
.ws170{word-spacing:9.780000px;}
.ws5e{word-spacing:9.900000px;}
.ws128{word-spacing:10.098586px;}
.wsff{word-spacing:10.169282px;}
.ws5b{word-spacing:10.260000px;}
.ws89{word-spacing:10.380000px;}
.ws179{word-spacing:10.440000px;}
.ws11a{word-spacing:10.496304px;}
.ws166{word-spacing:10.800000px;}
.ws59{word-spacing:10.860000px;}
.ws17a{word-spacing:10.920000px;}
.ws167{word-spacing:11.040000px;}
.ws38{word-spacing:11.100000px;}
.ws1c6{word-spacing:11.160000px;}
.ws1cd{word-spacing:11.340000px;}
.ws5f{word-spacing:11.400000px;}
.ws1d0{word-spacing:11.460000px;}
.ws8f{word-spacing:11.520000px;}
.wsb3{word-spacing:11.580000px;}
.ws4a{word-spacing:11.640000px;}
.ws49{word-spacing:11.820000px;}
.ws1b8{word-spacing:11.880000px;}
.ws14d{word-spacing:12.300000px;}
.ws132{word-spacing:12.465442px;}
.ws1aa{word-spacing:12.480000px;}
.ws1bc{word-spacing:12.540000px;}
.ws1ed{word-spacing:12.660000px;}
.ws94{word-spacing:12.720000px;}
.wsf9{word-spacing:13.025822px;}
.ws61{word-spacing:13.080000px;}
.wsa9{word-spacing:13.140000px;}
.ws66{word-spacing:13.260000px;}
.ws1bf{word-spacing:13.380000px;}
.ws114{word-spacing:13.444704px;}
.ws68{word-spacing:13.680000px;}
.ws42{word-spacing:13.740000px;}
.ws88{word-spacing:13.920000px;}
.ws135{word-spacing:14.043346px;}
.ws52{word-spacing:14.160000px;}
.wsfa{word-spacing:14.168438px;}
.ws115{word-spacing:14.624064px;}
.wsfb{word-spacing:14.739746px;}
.ws1ab{word-spacing:14.820000px;}
.ws47{word-spacing:15.000000px;}
.wsaa{word-spacing:15.060000px;}
.ws116{word-spacing:15.213744px;}
.ws65{word-spacing:16.260000px;}
.ws98{word-spacing:16.740000px;}
.ws60{word-spacing:16.920000px;}
.ws8b{word-spacing:16.980000px;}
.ws1cc{word-spacing:17.340000px;}
.wse2{word-spacing:17.400000px;}
.wse0{word-spacing:17.460000px;}
.ws72{word-spacing:17.760000px;}
.ws45{word-spacing:17.820000px;}
.ws12f{word-spacing:17.988106px;}
.wsb2{word-spacing:18.300000px;}
.ws67{word-spacing:18.600000px;}
.ws130{word-spacing:19.566010px;}
.ws76{word-spacing:19.800000px;}
.ws131{word-spacing:20.354962px;}
.ws7a{word-spacing:21.840000px;}
.ws90{word-spacing:22.740000px;}
.ws8c{word-spacing:23.340000px;}
.ws1a6{word-spacing:28.680000px;}
.ws1ac{word-spacing:30.780000px;}
.ws37{word-spacing:106.596000px;}
.ws19b{word-spacing:173.701800px;}
.ws19d{word-spacing:185.236200px;}
.ws19a{word-spacing:192.699000px;}
.ws19c{word-spacing:196.047000px;}
.ws196{word-spacing:218.208600px;}
.ws147{word-spacing:237.540600px;}
.ws195{word-spacing:238.275000px;}
.ws148{word-spacing:238.653000px;}
.ws199{word-spacing:239.911200px;}
.ws13d{word-spacing:246.180600px;}
.ws194{word-spacing:285.168600px;}
.ws193{word-spacing:613.656000px;}
.ws191{word-spacing:649.911600px;}
.ws198{word-spacing:664.594200px;}
.ws17c{word-spacing:713.485800px;}
.ws1c9{word-spacing:907.125600px;}
.ws10{word-spacing:907.230600px;}
.ws1e1{word-spacing:907.481850px;}
.ws46{word-spacing:907.568100px;}
.ws13a{word-spacing:908.036850px;}
.ws1af{word-spacing:908.513100px;}
.wsa8{word-spacing:908.734350px;}
.ws17b{word-spacing:909.784350px;}
.ws175{word-spacing:911.149350px;}
._f{margin-left:-2039.700528px;}
._17{margin-left:-38.008296px;}
._16{margin-left:-31.588296px;}
._15{margin-left:-12.818472px;}
._b{margin-left:-6.742032px;}
._4{margin-left:-5.599008px;}
._d{margin-left:-4.182624px;}
._10{margin-left:-3.170664px;}
._2{margin-left:-2.139696px;}
._1{margin-left:-1.111968px;}
._0{width:1.238328px;}
._3{width:2.640000px;}
._e{width:3.741672px;}
._5{width:5.788800px;}
._14{width:7.052328px;}
._19{width:8.626751px;}
._13{width:10.836000px;}
._1a{width:12.695581px;}
._18{width:14.068730px;}
._1c{width:16.692425px;}
._1b{width:20.031219px;}
._a{width:23.239392px;}
._9{width:28.838400px;}
._12{width:58.716000px;}
._c{width:65.851968px;}
._8{width:66.879696px;}
._7{width:72.298704px;}
._11{width:106.596000px;}
._6{width:109.380000px;}
._2e{width:142.304688px;}
._2d{width:148.619016px;}
._22{width:162.761400px;}
._1e{width:220.709472px;}
._31{width:249.111672px;}
._20{width:272.383992px;}
._1d{width:317.931696px;}
._28{width:319.581936px;}
._2b{width:324.648000px;}
._1f{width:341.730648px;}
._2c{width:421.635672px;}
._27{width:452.682000px;}
._24{width:507.639312px;}
._2a{width:569.841696px;}
._29{width:580.347936px;}
._25{width:587.341368px;}
._30{width:594.713016px;}
._21{width:705.327696px;}
._23{width:727.411968px;}
._26{width:832.566984px;}
._2f{width:1247.724000px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:18.000000px;}
.fs11{font-size:34.980000px;}
.fsf{font-size:37.500000px;}
.fs15{font-size:38.277600px;}
.fs19{font-size:39.508800px;}
.fs14{font-size:40.563000px;}
.fs18{font-size:41.867400px;}
.fs4{font-size:42.000000px;}
.fsd{font-size:45.360000px;}
.fs10{font-size:48.000000px;}
.fse{font-size:48.240000px;}
.fs9{font-size:51.120000px;}
.fs12{font-size:52.560600px;}
.fs1d{font-size:52.860000px;}
.fs6{font-size:54.000000px;}
.fs16{font-size:54.250800px;}
.fs1c{font-size:56.015400px;}
.fs13{font-size:57.130800px;}
.fs17{font-size:58.968000px;}
.fs7{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs1a{font-size:72.583800px;}
.fs1b{font-size:78.895200px;}
.fsa{font-size:84.240000px;}
.fsc{font-size:87.120000px;}
.fs2{font-size:102.000000px;}
.fsb{font-size:108.000000px;}
.y17d{bottom:-775.729221px;}
.y17c{bottom:-753.645600px;}
.y19b{bottom:-727.215936px;}
.y19a{bottom:-693.093762px;}
.y199{bottom:-659.168826px;}
.y198{bottom:-625.046652px;}
.y197{bottom:-591.121716px;}
.yd8{bottom:-564.711513px;}
.yf9{bottom:-564.711063px;}
.y1bf{bottom:-564.710763px;}
.y11a{bottom:-561.735063px;}
.y15c{bottom:-561.734913px;}
.y19e{bottom:-561.734763px;}
.y23a{bottom:-561.734613px;}
.y1e0{bottom:-561.734313px;}
.y222{bottom:-561.734163px;}
.y13b{bottom:-561.734013px;}
.y201{bottom:-561.733263px;}
.y94{bottom:-558.990963px;}
.y196{bottom:-556.999542px;}
.yd7{bottom:-548.719950px;}
.yf8{bottom:-548.719500px;}
.y1be{bottom:-548.719200px;}
.y119{bottom:-545.743500px;}
.y15b{bottom:-545.743350px;}
.y19d{bottom:-545.743200px;}
.y239{bottom:-545.743050px;}
.y1df{bottom:-545.742750px;}
.y221{bottom:-545.742600px;}
.y13a{bottom:-545.742450px;}
.y200{bottom:-545.741700px;}
.y93{bottom:-542.999400px;}
.yb6{bottom:-542.933506px;}
.yf6{bottom:-529.579719px;}
.y117{bottom:-529.579419px;}
.y1dd{bottom:-529.578969px;}
.y138{bottom:-526.603419px;}
.y17a{bottom:-526.603269px;}
.y1bc{bottom:-526.602969px;}
.y1fe{bottom:-526.602669px;}
.y237{bottom:-526.602519px;}
.y159{bottom:-526.602219px;}
.y21f{bottom:-526.601469px;}
.yb5{bottom:-526.427700px;}
.yb3{bottom:-523.859319px;}
.y195{bottom:-523.074606px;}
.yd5{bottom:-506.673390px;}
.yf5{bottom:-504.870648px;}
.y116{bottom:-504.870348px;}
.y1dc{bottom:-504.869898px;}
.y137{bottom:-501.894348px;}
.y179{bottom:-501.894198px;}
.y1bb{bottom:-501.893898px;}
.y1fd{bottom:-501.893598px;}
.y236{bottom:-501.893448px;}
.y158{bottom:-501.893148px;}
.y21e{bottom:-501.892398px;}
.yb2{bottom:-499.150248px;}
.yd4{bottom:-481.169730px;}
.yf4{bottom:-480.304404px;}
.y115{bottom:-480.304104px;}
.y1db{bottom:-480.303654px;}
.y136{bottom:-477.328104px;}
.y178{bottom:-477.327954px;}
.y1ba{bottom:-477.327654px;}
.y1fc{bottom:-477.327354px;}
.y235{bottom:-477.327204px;}
.y157{bottom:-477.326904px;}
.y21d{bottom:-477.326154px;}
.y194{bottom:-475.934724px;}
.yb1{bottom:-474.584004px;}
.yd3{bottom:-455.813490px;}
.yf3{bottom:-455.595333px;}
.y114{bottom:-455.595033px;}
.y1da{bottom:-455.594583px;}
.y135{bottom:-452.619033px;}
.y177{bottom:-452.618883px;}
.y1b9{bottom:-452.618583px;}
.y1fb{bottom:-452.618283px;}
.y234{bottom:-452.618133px;}
.y156{bottom:-452.617833px;}
.y21c{bottom:-452.617083px;}
.yb0{bottom:-449.874933px;}
.y193{bottom:-441.812550px;}
.yf2{bottom:-431.029089px;}
.y113{bottom:-431.028789px;}
.y1d9{bottom:-431.028339px;}
.yd2{bottom:-430.309830px;}
.y134{bottom:-428.052789px;}
.y176{bottom:-428.052639px;}
.y1b8{bottom:-428.052339px;}
.y1fa{bottom:-428.052039px;}
.y233{bottom:-428.051889px;}
.y155{bottom:-428.051589px;}
.y21b{bottom:-428.050839px;}
.yaf{bottom:-425.308689px;}
.y192{bottom:-407.887614px;}
.yf1{bottom:-406.320018px;}
.y112{bottom:-406.319718px;}
.y1d8{bottom:-406.319268px;}
.yd1{bottom:-404.953590px;}
.y133{bottom:-403.343718px;}
.y175{bottom:-403.343568px;}
.y1b7{bottom:-403.343268px;}
.y1f9{bottom:-403.342968px;}
.y232{bottom:-403.342818px;}
.y154{bottom:-403.342518px;}
.y21a{bottom:-403.341768px;}
.yae{bottom:-400.599618px;}
.yf0{bottom:-381.753774px;}
.y111{bottom:-381.753474px;}
.y1d7{bottom:-381.753024px;}
.yd0{bottom:-379.449930px;}
.y132{bottom:-378.777474px;}
.y174{bottom:-378.777324px;}
.y1b6{bottom:-378.777024px;}
.y1f8{bottom:-378.776724px;}
.y231{bottom:-378.776574px;}
.y153{bottom:-378.776274px;}
.y219{bottom:-378.775524px;}
.yad{bottom:-376.033374px;}
.y191{bottom:-373.765440px;}
.ycf{bottom:-354.093690px;}
.yef{bottom:-347.618121px;}
.y110{bottom:-347.617821px;}
.y1d6{bottom:-347.617371px;}
.y131{bottom:-344.641821px;}
.y173{bottom:-344.641671px;}
.y1b5{bottom:-344.641371px;}
.y1f7{bottom:-344.641071px;}
.y230{bottom:-344.640921px;}
.y152{bottom:-344.640621px;}
.y218{bottom:-344.639871px;}
.yac{bottom:-341.897721px;}
.y190{bottom:-339.840504px;}
.yee{bottom:-322.909050px;}
.y10f{bottom:-322.908750px;}
.y1d5{bottom:-322.908300px;}
.y130{bottom:-319.932750px;}
.y172{bottom:-319.932600px;}
.y1b4{bottom:-319.932300px;}
.y1f6{bottom:-319.932000px;}
.y22f{bottom:-319.931850px;}
.y151{bottom:-319.931550px;}
.y217{bottom:-319.930800px;}
.yce{bottom:-318.860310px;}
.yab{bottom:-317.188650px;}
.y18f{bottom:-305.718330px;}
.yed{bottom:-298.342806px;}
.y10e{bottom:-298.342506px;}
.y1d4{bottom:-298.342056px;}
.y12f{bottom:-295.366506px;}
.y171{bottom:-295.366356px;}
.y1b3{bottom:-295.366056px;}
.y1f5{bottom:-295.365756px;}
.y22e{bottom:-295.365606px;}
.y150{bottom:-295.365306px;}
.y216{bottom:-295.364556px;}
.ycd{bottom:-293.356650px;}
.yaa{bottom:-292.622406px;}
.yec{bottom:-273.633735px;}
.y10d{bottom:-273.633435px;}
.y1d3{bottom:-273.632985px;}
.y18e{bottom:-271.793394px;}
.y12e{bottom:-270.657435px;}
.y170{bottom:-270.657285px;}
.y1b2{bottom:-270.656985px;}
.y1f4{bottom:-270.656685px;}
.y22d{bottom:-270.656535px;}
.y14f{bottom:-270.656235px;}
.y215{bottom:-270.655485px;}
.ycc{bottom:-268.000410px;}
.ya9{bottom:-267.913335px;}
.yeb{bottom:-249.067491px;}
.y10c{bottom:-249.067191px;}
.y1d2{bottom:-249.066741px;}
.y12d{bottom:-246.091191px;}
.y16f{bottom:-246.091041px;}
.y1b1{bottom:-246.090741px;}
.y1f3{bottom:-246.090441px;}
.y22c{bottom:-246.090291px;}
.y14e{bottom:-246.089991px;}
.y214{bottom:-246.089241px;}
.ya8{bottom:-243.347091px;}
.ycb{bottom:-242.496750px;}
.y18d{bottom:-234.712626px;}
.yea{bottom:-224.358420px;}
.y10b{bottom:-224.358120px;}
.y1d1{bottom:-224.357670px;}
.y12c{bottom:-221.382120px;}
.y16e{bottom:-221.381970px;}
.y1b0{bottom:-221.381670px;}
.y1f2{bottom:-221.381370px;}
.y22b{bottom:-221.381220px;}
.y14d{bottom:-221.380920px;}
.y213{bottom:-221.380170px;}
.ya7{bottom:-218.638020px;}
.yca{bottom:-217.140510px;}
.ye9{bottom:-199.792176px;}
.y10a{bottom:-199.791876px;}
.y1d0{bottom:-199.791426px;}
.y12b{bottom:-196.815876px;}
.y16d{bottom:-196.815726px;}
.y1af{bottom:-196.815426px;}
.y1f1{bottom:-196.815126px;}
.y22a{bottom:-196.814976px;}
.y14c{bottom:-196.814676px;}
.y212{bottom:-196.813926px;}
.ya6{bottom:-194.071776px;}
.yc9{bottom:-191.636850px;}
.y18c{bottom:-187.572744px;}
.ye8{bottom:-172.940529px;}
.y109{bottom:-172.940229px;}
.y1cf{bottom:-172.939779px;}
.y12a{bottom:-169.964229px;}
.y16c{bottom:-169.964079px;}
.y1ae{bottom:-169.963779px;}
.y1f0{bottom:-169.963479px;}
.y229{bottom:-169.963329px;}
.y14b{bottom:-169.963029px;}
.y211{bottom:-169.962279px;}
.ya5{bottom:-167.220129px;}
.yc8{bottom:-166.280610px;}
.y18b{bottom:-150.491982px;}
.ye7{bottom:-138.804876px;}
.y108{bottom:-138.804576px;}
.y1ce{bottom:-138.804126px;}
.yc7{bottom:-138.565590px;}
.y129{bottom:-135.828576px;}
.y16b{bottom:-135.828426px;}
.y1ad{bottom:-135.828126px;}
.y1ef{bottom:-135.827826px;}
.y228{bottom:-135.827676px;}
.y14a{bottom:-135.827376px;}
.y210{bottom:-135.826626px;}
.ya4{bottom:-133.084476px;}
.y18a{bottom:-113.214000px;}
.ye6{bottom:-111.953403px;}
.y107{bottom:-111.952953px;}
.y1cd{bottom:-111.952653px;}
.y128{bottom:-108.976953px;}
.y16a{bottom:-108.976803px;}
.y1ac{bottom:-108.976653px;}
.y248{bottom:-108.976503px;}
.y1ee{bottom:-108.976203px;}
.y227{bottom:-108.976053px;}
.y149{bottom:-108.975903px;}
.y20f{bottom:-108.975003px;}
.ya3{bottom:-106.232853px;}
.yc6{bottom:-103.332210px;}
.ye5{bottom:-84.958875px;}
.y106{bottom:-84.958575px;}
.y1cc{bottom:-84.958275px;}
.y127{bottom:-81.982575px;}
.y169{bottom:-81.982425px;}
.y1ab{bottom:-81.982275px;}
.y247{bottom:-81.982125px;}
.y1ed{bottom:-81.981825px;}
.y226{bottom:-81.981675px;}
.y148{bottom:-81.981525px;}
.y20e{bottom:-81.980625px;}
.ya2{bottom:-79.238475px;}
.y189{bottom:-78.697320px;}
.yc5{bottom:-75.617280px;}
.ye4{bottom:-59.964180px;}
.y105{bottom:-59.963730px;}
.y1cb{bottom:-59.963430px;}
.y126{bottom:-56.987730px;}
.y168{bottom:-56.987580px;}
.y1aa{bottom:-56.987430px;}
.y246{bottom:-56.987280px;}
.y1ec{bottom:-56.986980px;}
.y225{bottom:-56.986830px;}
.y147{bottom:-56.986680px;}
.y20d{bottom:-56.985780px;}
.ya1{bottom:-54.243630px;}
.yc4{bottom:-47.754900px;}
.y188{bottom:-41.222100px;}
.ye3{bottom:-32.827050px;}
.y104{bottom:-32.826600px;}
.y1ca{bottom:-32.826300px;}
.y125{bottom:-29.850600px;}
.y167{bottom:-29.850450px;}
.y1a9{bottom:-29.850300px;}
.y245{bottom:-29.850150px;}
.y1eb{bottom:-29.849850px;}
.y224{bottom:-29.849700px;}
.y146{bottom:-29.849550px;}
.y20c{bottom:-29.848650px;}
.ya0{bottom:-27.106500px;}
.yc3{bottom:-21.956400px;}
.y0{bottom:0.000000px;}
.ye1{bottom:3.880395px;}
.y102{bottom:3.880845px;}
.y1c8{bottom:3.881145px;}
.yc2{bottom:6.053400px;}
.y123{bottom:6.856695px;}
.y165{bottom:6.856845px;}
.y1a7{bottom:6.857145px;}
.y243{bottom:6.857295px;}
.y1e9{bottom:6.857595px;}
.y144{bottom:6.857895px;}
.y20a{bottom:6.858645px;}
.y186{bottom:9.467880px;}
.y9d{bottom:9.600795px;}
.ye2{bottom:13.306200px;}
.y103{bottom:13.306650px;}
.y1c9{bottom:13.306950px;}
.y124{bottom:16.282650px;}
.y166{bottom:16.282800px;}
.y1a8{bottom:16.282950px;}
.y244{bottom:16.283100px;}
.y1ea{bottom:16.283400px;}
.y223{bottom:16.283550px;}
.y145{bottom:16.283700px;}
.y20b{bottom:16.284450px;}
.y9f{bottom:19.026750px;}
.y187{bottom:22.485600px;}
.yc1{bottom:33.612000px;}
.y59{bottom:37.440000px;}
.ybf{bottom:43.940400px;}
.ye0{bottom:47.585457px;}
.y101{bottom:47.585907px;}
.y1c7{bottom:47.586207px;}
.y122{bottom:50.561757px;}
.y164{bottom:50.561907px;}
.y1a6{bottom:50.562207px;}
.y242{bottom:50.562357px;}
.y1e8{bottom:50.562657px;}
.y143{bottom:50.562957px;}
.y209{bottom:50.563707px;}
.y9c{bottom:53.305857px;}
.y90{bottom:59.276550px;}
.y263{bottom:62.642550px;}
.y8d{bottom:63.779550px;}
.y5{bottom:66.525004px;}
.y2fe{bottom:68.135100px;}
.y185{bottom:69.822708px;}
.y58{bottom:70.740000px;}
.y57{bottom:70.920000px;}
.y2c3{bottom:71.207550px;}
.ydf{bottom:72.151701px;}
.y100{bottom:72.152151px;}
.y1c6{bottom:72.152451px;}
.y8f{bottom:73.904550px;}
.y121{bottom:75.128001px;}
.y163{bottom:75.128151px;}
.y1a5{bottom:75.128451px;}
.y241{bottom:75.128601px;}
.y1e7{bottom:75.128901px;}
.y142{bottom:75.129201px;}
.y208{bottom:75.129951px;}
.y262{bottom:77.270550px;}
.y9b{bottom:77.872101px;}
.y8a{bottom:81.779550px;}
.y2fd{bottom:82.763100px;}
.y2c2{bottom:85.835550px;}
.ybe{bottom:89.050920px;}
.yde{bottom:96.717945px;}
.yff{bottom:96.718395px;}
.y1c5{bottom:96.718695px;}
.y4{bottom:97.125005px;}
.y2fc{bottom:97.391100px;}
.y120{bottom:99.694245px;}
.y162{bottom:99.694395px;}
.y1a4{bottom:99.694695px;}
.y240{bottom:99.694845px;}
.y1e6{bottom:99.695145px;}
.y141{bottom:99.695445px;}
.y207{bottom:99.696195px;}
.y89{bottom:99.779550px;}
.y2c1{bottom:100.463550px;}
.y9a{bottom:102.438345px;}
.y184{bottom:103.747644px;}
.y261{bottom:106.526550px;}
.y2fb{bottom:112.019100px;}
.ybd{bottom:114.407160px;}
.y2c0{bottom:115.091550px;}
.y7f{bottom:117.779550px;}
.y260{bottom:121.154550px;}
.y56{bottom:122.760000px;}
.ydd{bottom:126.425961px;}
.yfe{bottom:126.426411px;}
.y1c4{bottom:126.426711px;}
.y2fa{bottom:126.647100px;}
.y11f{bottom:129.402261px;}
.y161{bottom:129.402411px;}
.y1a3{bottom:129.402711px;}
.y23f{bottom:129.402861px;}
.y1e5{bottom:129.403161px;}
.y140{bottom:129.403461px;}
.y206{bottom:129.404211px;}
.y2bf{bottom:129.719550px;}
.y99{bottom:132.146361px;}
.y7e{bottom:135.779550px;}
.y55{bottom:137.328480px;}
.y183{bottom:137.672580px;}
.y28a{bottom:139.155750px;}
.y23{bottom:139.264499px;}
.ybc{bottom:139.763400px;}
.y2f9{bottom:141.275100px;}
.y2be{bottom:144.347550px;}
.y7d{bottom:153.779550px;}
.y54{bottom:155.689740px;}
.y2f8{bottom:155.903100px;}
.y25f{bottom:156.801600px;}
.y2bd{bottom:158.975550px;}
.ydc{bottom:160.561614px;}
.yfd{bottom:160.562064px;}
.y1c3{bottom:160.562364px;}
.y11e{bottom:163.537914px;}
.y160{bottom:163.538064px;}
.y1a2{bottom:163.538364px;}
.y23e{bottom:163.538514px;}
.y1e4{bottom:163.538814px;}
.y13f{bottom:163.539114px;}
.y205{bottom:163.539864px;}
.y98{bottom:166.282014px;}
.ybb{bottom:170.426760px;}
.y2f7{bottom:170.531100px;}
.y88{bottom:171.779550px;}
.y2bc{bottom:173.603550px;}
.y53{bottom:174.051000px;}
.y25e{bottom:174.797100px;}
.y289{bottom:175.599750px;}
.y182{bottom:178.698084px;}
.y2f6{bottom:185.159100px;}
.ydb{bottom:185.270685px;}
.yfc{bottom:185.271135px;}
.y1c2{bottom:185.271435px;}
.y2bb{bottom:188.231550px;}
.y11d{bottom:188.246985px;}
.y15f{bottom:188.247135px;}
.y1a1{bottom:188.247435px;}
.y23d{bottom:188.247585px;}
.y1e3{bottom:188.247885px;}
.y13e{bottom:188.248185px;}
.y204{bottom:188.248935px;}
.y7c{bottom:189.779550px;}
.y97{bottom:190.991085px;}
.y52{bottom:192.232980px;}
.y1a{bottom:196.933500px;}
.y2f5{bottom:199.787100px;}
.y25d{bottom:201.081600px;}
.y2ba{bottom:202.859550px;}
.yba{bottom:205.660140px;}
.y267{bottom:206.651550px;}
.y288{bottom:207.754650px;}
.y7b{bottom:207.779550px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.yda{bottom:209.836929px;}
.yfb{bottom:209.837379px;}
.y1c1{bottom:209.837679px;}
.y51{bottom:210.594240px;}
.y11c{bottom:212.813229px;}
.y15e{bottom:212.813379px;}
.y1a0{bottom:212.813679px;}
.y23c{bottom:212.813829px;}
.y1e2{bottom:212.814129px;}
.y13d{bottom:212.814429px;}
.y203{bottom:212.815179px;}
.y2f4{bottom:214.415100px;}
.y96{bottom:215.557329px;}
.y2b9{bottom:217.487550px;}
.y25c{bottom:219.077100px;}
.y266{bottom:221.279550px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y7a{bottom:225.779550px;}
.y181{bottom:225.837966px;}
.y50{bottom:228.955500px;}
.y2f3{bottom:229.043100px;}
.yb9{bottom:231.163800px;}
.y2b8{bottom:232.115550px;}
.y287{bottom:234.039150px;}
.yd9{bottom:234.546000px;}
.yfa{bottom:234.546450px;}
.y1c0{bottom:234.546750px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y11b{bottom:237.522300px;}
.y15d{bottom:237.522450px;}
.y19f{bottom:237.522750px;}
.y23b{bottom:237.522900px;}
.y1e1{bottom:237.523200px;}
.y13c{bottom:237.523500px;}
.y202{bottom:237.524250px;}
.y95{bottom:240.266400px;}
.y2f2{bottom:243.671100px;}
.y79{bottom:243.779550px;}
.y2b7{bottom:246.743550px;}
.y4f{bottom:247.316760px;}
.yb8{bottom:256.520040px;}
.y2f1{bottom:258.299100px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y180{bottom:259.960140px;}
.y286{bottom:260.323650px;}
.y2b6{bottom:261.371550px;}
.y25b{bottom:261.602100px;}
.y78{bottom:261.779550px;}
.y4e{bottom:265.498740px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y2f0{bottom:272.927100px;}
.y2b5{bottom:275.999550px;}
.y77{bottom:279.779550px;}
.yb7{bottom:282.023700px;}
.y4d{bottom:283.860000px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y2ef{bottom:287.555100px;}
.y25a{bottom:287.886600px;}
.y2b4{bottom:290.627550px;}
.y17f{bottom:293.885076px;}
.y76{bottom:297.779550px;}
.y8c{bottom:301.154550px;}
.y2ee{bottom:302.183100px;}
.y4c{bottom:304.020000px;}
.y2b3{bottom:305.255550px;}
.y259{bottom:305.882100px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y285{bottom:312.892650px;}
.y75{bottom:315.779550px;}
.y2ed{bottom:316.811100px;}
.y2b2{bottom:319.883550px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y17e{bottom:328.007250px;}
.y284{bottom:330.888150px;}
.y4b{bottom:331.017840px;}
.y2ec{bottom:331.439100px;}
.y258{bottom:332.166600px;}
.y74{bottom:333.779550px;}
.y2b1{bottom:334.511550px;}
.y2eb{bottom:346.067100px;}
.y11{bottom:348.133500px;}
.y2b0{bottom:349.139550px;}
.y257{bottom:350.162100px;}
.y73{bottom:351.779550px;}
.y4a{bottom:356.584680px;}
.y283{bottom:357.172650px;}
.y2ea{bottom:360.695100px;}
.y2af{bottom:363.767550px;}
.y72{bottom:369.779550px;}
.y282{bottom:375.168150px;}
.y2e9{bottom:375.323100px;}
.y256{bottom:376.446600px;}
.y2ae{bottom:378.395550px;}
.y49{bottom:382.320000px;}
.y10{bottom:386.785499px;}
.y71{bottom:387.779550px;}
.y2e8{bottom:389.951100px;}
.y2ad{bottom:393.023550px;}
.y255{bottom:394.442100px;}
.y281{bottom:401.452650px;}
.y2e7{bottom:404.579100px;}
.y70{bottom:405.779550px;}
.y48{bottom:406.980000px;}
.y2ac{bottom:407.651550px;}
.yf{bottom:408.044999px;}
.y2e6{bottom:419.207100px;}
.y280{bottom:419.448150px;}
.y254{bottom:420.726600px;}
.y2ab{bottom:422.279550px;}
.y87{bottom:423.779550px;}
.y47{bottom:429.660000px;}
.y2e5{bottom:433.835100px;}
.y2aa{bottom:436.907550px;}
.y253{bottom:438.722100px;}
.y8b{bottom:441.779550px;}
.y27f{bottom:445.732650px;}
.y2e4{bottom:448.463100px;}
.ye{bottom:448.864502px;}
.y46{bottom:450.529920px;}
.y2a9{bottom:451.535550px;}
.y6f{bottom:459.779550px;}
.y2e3{bottom:463.091100px;}
.y27e{bottom:463.728150px;}
.y2a8{bottom:466.163550px;}
.yd{bottom:466.864502px;}
.y2e2{bottom:477.719100px;}
.y91{bottom:477.775050px;}
.y6e{bottom:477.779550px;}
.y2a7{bottom:480.791550px;}
.y252{bottom:481.247100px;}
.yc{bottom:484.864502px;}
.y238{bottom:489.189000px;}
.y27d{bottom:490.012650px;}
.y45{bottom:491.207040px;}
.y2e1{bottom:492.347100px;}
.y2a6{bottom:495.419550px;}
.y6d{bottom:495.779550px;}
.yb{bottom:502.864502px;}
.y2e0{bottom:506.975100px;}
.y24d{bottom:507.518100px;}
.y251{bottom:507.531600px;}
.y27c{bottom:508.008150px;}
.y2a5{bottom:510.047550px;}
.y44{bottom:512.271360px;}
.y8e{bottom:513.775050px;}
.y6c{bottom:513.779550px;}
.ya{bottom:520.864502px;}
.y2df{bottom:521.603100px;}
.y2a4{bottom:524.675550px;}
.y24c{bottom:525.513600px;}
.y250{bottom:525.527100px;}
.y6b{bottom:531.779550px;}
.y43{bottom:533.335680px;}
.y27b{bottom:534.292650px;}
.y2de{bottom:536.231100px;}
.y9{bottom:538.864499px;}
.y2a3{bottom:539.303550px;}
.y269{bottom:541.901550px;}
.y24b{bottom:543.509100px;}
.y24f{bottom:543.522600px;}
.y6a{bottom:549.779550px;}
.y2dd{bottom:550.859100px;}
.y27a{bottom:552.288150px;}
.y2a2{bottom:553.931550px;}
.y42{bottom:554.400000px;}
.y268{bottom:556.529550px;}
.y8{bottom:556.864499px;}
.y220{bottom:560.409000px;}
.y1ff{bottom:561.471000px;}
.y24a{bottom:561.504600px;}
.y24e{bottom:561.518100px;}
.y2dc{bottom:565.487100px;}
.y69{bottom:567.779550px;}
.y2a1{bottom:568.559550px;}
.y265{bottom:573.401550px;}
.y41{bottom:576.533160px;}
.y279{bottom:578.572650px;}
.y1de{bottom:579.543000px;}
.y2db{bottom:580.115100px;}
.y2a0{bottom:583.187550px;}
.y68{bottom:585.779550px;}
.y264{bottom:588.029550px;}
.y2da{bottom:594.743100px;}
.y15a{bottom:596.551500px;}
.y278{bottom:596.568150px;}
.y118{bottom:596.658000px;}
.y19c{bottom:597.189000px;}
.y139{bottom:597.613500px;}
.y29f{bottom:597.815550px;}
.y17b{bottom:598.252500px;}
.y1bd{bottom:600.165000px;}
.y40{bottom:602.100000px;}
.y67{bottom:603.779550px;}
.y2d9{bottom:609.371100px;}
.y29e{bottom:612.443550px;}
.yb4{bottom:615.471000px;}
.yf7{bottom:617.811000px;}
.yd6{bottom:618.024000px;}
.y66{bottom:621.779550px;}
.y277{bottom:622.852650px;}
.y2d8{bottom:623.999100px;}
.y29d{bottom:627.071550px;}
.y3f{bottom:627.819840px;}
.yc0{bottom:635.529000px;}
.y2d7{bottom:638.627100px;}
.y65{bottom:639.779550px;}
.y276{bottom:640.848150px;}
.y29c{bottom:641.699550px;}
.y7{bottom:645.510000px;}
.y2d6{bottom:653.255100px;}
.y3e{bottom:653.386680px;}
.y92{bottom:654.717000px;}
.y29b{bottom:656.327550px;}
.y64{bottom:657.779550px;}
.y9e{bottom:664.317150px;}
.y6{bottom:666.771000px;}
.y275{bottom:667.132650px;}
.y2d5{bottom:667.883100px;}
.y29a{bottom:670.955550px;}
.y63{bottom:675.779550px;}
.y3d{bottom:678.953520px;}
.y2d4{bottom:682.511100px;}
.y274{bottom:685.128150px;}
.y299{bottom:685.583550px;}
.y62{bottom:693.779550px;}
.y2d3{bottom:697.139100px;}
.y298{bottom:700.211550px;}
.y3c{bottom:704.688840px;}
.y273{bottom:711.412650px;}
.y2d2{bottom:711.767100px;}
.y61{bottom:711.779550px;}
.y297{bottom:714.839550px;}
.y2d1{bottom:726.395100px;}
.y272{bottom:729.408150px;}
.y296{bottom:729.467550px;}
.y60{bottom:729.779550px;}
.y3b{bottom:730.255680px;}
.y2d0{bottom:741.023100px;}
.y295{bottom:744.095550px;}
.y86{bottom:747.779550px;}
.y3{bottom:752.599495px;}
.y2cf{bottom:755.651100px;}
.y271{bottom:755.692650px;}
.y3a{bottom:755.991000px;}
.y294{bottom:758.723550px;}
.y5f{bottom:765.779550px;}
.y2ce{bottom:770.279100px;}
.y293{bottom:773.351550px;}
.y270{bottom:773.688150px;}
.y39{bottom:781.557840px;}
.y85{bottom:783.779550px;}
.y2cd{bottom:784.907100px;}
.y292{bottom:787.979550px;}
.y2cc{bottom:799.535100px;}
.y26f{bottom:799.972650px;}
.y84{bottom:801.779550px;}
.y291{bottom:802.607550px;}
.y38{bottom:807.293160px;}
.y2cb{bottom:814.163100px;}
.y290{bottom:817.235550px;}
.y26e{bottom:817.968150px;}
.y83{bottom:819.779550px;}
.y2ca{bottom:828.791100px;}
.y5e{bottom:831.767550px;}
.y28f{bottom:831.863550px;}
.y37{bottom:832.860000px;}
.y82{bottom:837.779550px;}
.y2c9{bottom:843.419100px;}
.y26d{bottom:844.252650px;}
.y28e{bottom:846.491550px;}
.y5d{bottom:852.773550px;}
.y81{bottom:855.779550px;}
.y2c8{bottom:858.047100px;}
.y36{bottom:858.420000px;}
.y28d{bottom:861.119550px;}
.y26c{bottom:862.248150px;}
.y2c7{bottom:872.675100px;}
.y249{bottom:873.775050px;}
.y5c{bottom:873.779550px;}
.y28c{bottom:875.747550px;}
.y2{bottom:879.369000px;}
.y35{bottom:885.591000px;}
.y2c6{bottom:887.303100px;}
.y26b{bottom:888.532650px;}
.y28b{bottom:890.375550px;}
.y80{bottom:891.779550px;}
.y2c5{bottom:901.931100px;}
.y26a{bottom:906.528150px;}
.y5b{bottom:909.779550px;}
.y2c4{bottom:916.559100px;}
.y34{bottom:918.720000px;}
.y33{bottom:950.040000px;}
.y1{bottom:966.726000px;}
.y32{bottom:972.720000px;}
.y5a{bottom:973.955850px;}
.y31{bottom:988.705800px;}
.y30{bottom:1005.812100px;}
.y2f{bottom:1023.097680px;}
.y2e{bottom:1040.383260px;}
.y2d{bottom:1057.668840px;}
.y2c{bottom:1074.954420px;}
.y2b{bottom:1092.240000px;}
.y2a{bottom:1106.280000px;}
.y29{bottom:1157.040000px;}
.y28{bottom:1173.960000px;}
.y27{bottom:1187.820000px;}
.y26{bottom:1193.760000px;}
.y25{bottom:1199.880000px;}
.y24{bottom:1205.820000px;}
.h31{height:-0.286500px;}
.hb{height:12.919922px;}
.h37{height:14.881500px;}
.h34{height:14.883000px;}
.h38{height:17.857500px;}
.h41{height:17.859000px;}
.h3a{height:18.708000px;}
.h2c{height:19.771500px;}
.h1c{height:27.375000px;}
.h24{height:28.255500px;}
.h8{height:32.130000px;}
.h19{height:32.152148px;}
.h17{height:32.558203px;}
.h46{height:33.648000px;}
.h22{height:33.696000px;}
.hf{height:34.071680px;}
.h45{height:34.320000px;}
.h44{height:35.040000px;}
.hc{height:35.991211px;}
.h25{height:37.726603px;}
.h29{height:38.291218px;}
.h42{height:38.610000px;}
.h2d{height:38.939783px;}
.h43{height:39.420000px;}
.h9{height:39.648000px;}
.hd{height:39.830273px;}
.h28{height:39.919031px;}
.h27{height:41.062762px;}
.h30{height:41.202738px;}
.h26{height:41.620680px;}
.h36{height:41.620692px;}
.h1d{height:42.060000px;}
.h47{height:42.120000px;}
.h2f{height:42.383250px;}
.h16{height:42.894141px;}
.h21{height:42.900000px;}
.h2e{height:42.959109px;}
.h33{height:42.959229px;}
.h20{height:43.800000px;}
.h1f{height:45.045000px;}
.h23{height:45.514800px;}
.h39{height:46.738430px;}
.h2b{height:46.738550px;}
.h2a{height:46.739030px;}
.h35{height:46.739150px;}
.h3{height:48.195000px;}
.h32{height:48.241978px;}
.h18{height:48.780000px;}
.he{height:49.612500px;}
.h1e{height:50.472000px;}
.h3b{height:52.098724px;}
.h3e{height:55.126960px;}
.h10{height:56.146289px;}
.h7{height:56.640000px;}
.h3d{height:56.705925px;}
.h3c{height:57.476386px;}
.h13{height:57.585938px;}
.h6{height:59.472000px;}
.h12{height:60.465234px;}
.h15{height:62.532422px;}
.h40{height:64.544416px;}
.h3f{height:64.544536px;}
.h2{height:67.968000px;}
.h14{height:69.473320px;}
.h11{height:73.828125px;}
.h5{height:96.288000px;}
.h4{height:119.055004px;}
.h1a{height:1020.472500px;}
.h1b{height:1020.750000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.ha{height:1263.060000px;}
.wa{width:-410.149500px;}
.w23{width:-410.085000px;}
.w29{width:-408.952500px;}
.w27{width:-370.600500px;}
.w10{width:-321.277500px;}
.w1a{width:-278.676000px;}
.w14{width:-275.143500px;}
.w25{width:-215.343000px;}
.w18{width:-199.036500px;}
.w1c{width:-198.394500px;}
.w21{width:-197.484000px;}
.w1f{width:-169.848000px;}
.wc{width:-158.427000px;}
.w1d{width:-158.425500px;}
.w16{width:-114.634500px;}
.we{width:-99.750000px;}
.w12{width:-96.348000px;}
.w11{width:4.357500px;}
.wb{width:7.228500px;}
.w19{width:8.220000px;}
.wd{width:9.354000px;}
.w15{width:11.905500px;}
.w1e{width:12.754500px;}
.w22{width:13.240500px;}
.w28{width:14.371500px;}
.w24{width:15.733500px;}
.w17{width:16.369500px;}
.w9{width:16.584000px;}
.w26{width:17.007000px;}
.w13{width:17.008500px;}
.w1b{width:17.434500px;}
.w20{width:18.285000px;}
.wf{width:19.984500px;}
.w8{width:28.765500px;}
.w4{width:292.860000px;}
.w7{width:471.331500px;}
.w2{width:637.794021px;}
.w6{width:701.250000px;}
.w5{width:701.575500px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w3{width:893.340000px;}
.x3d{left:-430.253226px;}
.x29{left:-418.608876px;}
.x20{left:-410.211276px;}
.x33{left:-392.774376px;}
.x1b{left:-353.659476px;}
.x46{left:-336.711726px;}
.x2a{left:-321.492240px;}
.x21{left:-313.094790px;}
.x38{left:-303.908826px;}
.x34{left:-295.657890px;}
.x51{left:-288.239076px;}
.x1c{left:-256.542990px;}
.x47{left:-239.595240px;}
.x2e{left:-227.162826px;}
.x39{left:-206.792340px;}
.x52{left:-191.122590px;}
.x24{left:-178.053276px;}
.x28{left:-142.100700px;}
.x1f{left:-133.703100px;}
.x55{left:-131.707626px;}
.x2f{left:-130.046190px;}
.x32{left:-116.266200px;}
.x17{left:-109.280246px;}
.x4c{left:-95.990076px;}
.x25{left:-80.936790px;}
.x10{left:-76.750776px;}
.x45{left:-60.203550px;}
.x3c{left:-48.408000px;}
.x56{left:-34.591140px;}
.x37{left:-27.400650px;}
.x50{left:-11.730900px;}
.x18{left:-9.039900px;}
.x0{left:0.000000px;}
.x4d{left:1.126410px;}
.x14{left:6.426900px;}
.x3f{left:8.876250px;}
.x5{left:12.060000px;}
.x11{left:20.365710px;}
.x2d{left:49.345350px;}
.xa{left:60.840000px;}
.xb{left:63.779550px;}
.x61{left:72.631050px;}
.x23{left:98.454900px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x7{left:107.812080px;}
.xd{left:127.559100px;}
.x27{left:145.417500px;}
.x2c{left:151.156500px;}
.x44{left:156.472500px;}
.x31{left:168.058500px;}
.xf{left:171.780000px;}
.x16{left:176.119650px;}
.x36{left:180.283500px;}
.xe{left:199.099950px;}
.x4{left:203.484001px;}
.x8{left:205.377120px;}
.x15{left:220.464000px;}
.x2b{left:246.123000px;}
.x7b{left:288.091500px;}
.x73{left:291.493500px;}
.x35{left:294.598500px;}
.x6d{left:301.308000px;}
.x5a{left:305.857050px;}
.x58{left:316.771500px;}
.x3b{left:319.960500px;}
.x62{left:322.016550px;}
.x66{left:324.959550px;}
.x1a{left:330.165000px;}
.x48{left:339.075000px;}
.x54{left:373.536000px;}
.x7e{left:376.233000px;}
.x7f{left:377.731500px;}
.x7c{left:380.472000px;}
.x1e{left:383.740500px;}
.x80{left:384.832500px;}
.x4b{left:386.503500px;}
.x77{left:387.883500px;}
.x79{left:390.138000px;}
.x6e{left:393.783000px;}
.x3a{left:395.689500px;}
.x9{left:399.780000px;}
.x5d{left:401.572050px;}
.x5b{left:405.122550px;}
.x5c{left:406.675050px;}
.x5e{left:412.372050px;}
.x64{left:414.235050px;}
.x68{left:417.691050px;}
.x63{left:419.810550px;}
.x6b{left:420.836550px;}
.x67{left:423.536550px;}
.x6{left:426.060000px;}
.x49{left:434.763000px;}
.x30{left:443.308500px;}
.x3{left:454.959000px;}
.x81{left:458.704500px;}
.x7d{left:460.351500px;}
.x7a{left:462.430500px;}
.x74{left:464.995500px;}
.x26{left:468.183000px;}
.x40{left:470.692500px;}
.x70{left:473.527500px;}
.x6f{left:476.200500px;}
.x22{left:492.844500px;}
.x1d{left:495.820500px;}
.x5f{left:499.690050px;}
.x6c{left:505.414050px;}
.x60{left:507.020550px;}
.x6a{left:509.248050px;}
.x65{left:512.339550px;}
.x69{left:515.890050px;}
.x12{left:517.221300px;}
.x82{left:535.573500px;}
.x42{left:538.938000px;}
.x76{left:540.285000px;}
.x75{left:544.524000px;}
.x78{left:548.047500px;}
.x72{left:549.276000px;}
.x71{left:552.340500px;}
.x4f{left:577.204500px;}
.x3e{left:606.856500px;}
.x13{left:614.344500px;}
.xc{left:623.787150px;}
.x19{left:647.197500px;}
.x4a{left:650.532000px;}
.x41{left:686.521500px;}
.x43{left:704.592000px;}
.x59{left:740.095500px;}
.x57{left:761.143500px;}
.x53{left:808.281000px;}
.x4e{left:809.829000px;}
@media print{
.v8{vertical-align:-25.245973pt;}
.vd{vertical-align:-23.142400pt;}
.v7{vertical-align:-18.869867pt;}
.v2{vertical-align:-17.759467pt;}
.v9{vertical-align:-13.324267pt;}
.vb{vertical-align:-11.220800pt;}
.v3{vertical-align:-9.649067pt;}
.v5{vertical-align:-8.125333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:9.649067pt;}
.va{vertical-align:13.324267pt;}
.v6{vertical-align:16.758400pt;}
.v1{vertical-align:17.759467pt;}
.vc{vertical-align:23.142400pt;}
.lsdc{letter-spacing:-5.376000pt;}
.lsb6{letter-spacing:-4.704000pt;}
.lsdd{letter-spacing:-4.512000pt;}
.lsc1{letter-spacing:-4.128000pt;}
.lsd6{letter-spacing:-3.840000pt;}
.lsc0{letter-spacing:-3.744000pt;}
.lse7{letter-spacing:-3.680000pt;}
.lscb{letter-spacing:-3.600000pt;}
.lsb2{letter-spacing:-3.312000pt;}
.ls9d{letter-spacing:-3.200000pt;}
.lsbe{letter-spacing:-3.120000pt;}
.lsda{letter-spacing:-3.072000pt;}
.lsf8{letter-spacing:-2.730667pt;}
.lscc{letter-spacing:-2.688000pt;}
.lsc9{letter-spacing:-2.544000pt;}
.lsc4{letter-spacing:-2.496000pt;}
.lsb9{letter-spacing:-2.400000pt;}
.lse4{letter-spacing:-2.352000pt;}
.lsf5{letter-spacing:-2.346667pt;}
.lsd9{letter-spacing:-2.304000pt;}
.lsd8{letter-spacing:-2.256000pt;}
.lsd7{letter-spacing:-2.208000pt;}
.lsb5{letter-spacing:-2.112000pt;}
.lsdf{letter-spacing:-1.920000pt;}
.lsde{letter-spacing:-1.872000pt;}
.lsf3{letter-spacing:-1.834667pt;}
.lsca{letter-spacing:-1.824000pt;}
.lsd4{letter-spacing:-1.776000pt;}
.lsf7{letter-spacing:-1.664000pt;}
.lsf4{letter-spacing:-1.578667pt;}
.lsbd{letter-spacing:-1.536000pt;}
.lsf0{letter-spacing:-1.493333pt;}
.lsd5{letter-spacing:-1.440000pt;}
.lsbb{letter-spacing:-1.344000pt;}
.lsb7{letter-spacing:-1.200000pt;}
.lsd1{letter-spacing:-1.166667pt;}
.lse3{letter-spacing:-1.152000pt;}
.lse1{letter-spacing:-1.104000pt;}
.lsc6{letter-spacing:-1.056000pt;}
.lse5{letter-spacing:-1.008000pt;}
.lsbc{letter-spacing:-0.912000pt;}
.lscd{letter-spacing:-0.864000pt;}
.ls1d{letter-spacing:-0.833333pt;}
.lsd{letter-spacing:-0.823680pt;}
.lsc8{letter-spacing:-0.816000pt;}
.lsf{letter-spacing:-0.800000pt;}
.lsc{letter-spacing:-0.748800pt;}
.lsba{letter-spacing:-0.720000pt;}
.lsae{letter-spacing:-0.701291pt;}
.lsea{letter-spacing:-0.682667pt;}
.lse8{letter-spacing:-0.633333pt;}
.lsaf{letter-spacing:-0.561033pt;}
.ls5{letter-spacing:-0.524160pt;}
.lsa3{letter-spacing:-0.507829pt;}
.lsc3{letter-spacing:-0.480000pt;}
.lsdb{letter-spacing:-0.432000pt;}
.lsaa{letter-spacing:-0.420774pt;}
.lsa9{letter-spacing:-0.419328pt;}
.lsa4{letter-spacing:-0.406263pt;}
.lsa5{letter-spacing:-0.314496pt;}
.ls9f{letter-spacing:-0.304698pt;}
.ls9{letter-spacing:-0.299520pt;}
.lsee{letter-spacing:-0.298667pt;}
.lsd0{letter-spacing:-0.266667pt;}
.lsa{letter-spacing:-0.224640pt;}
.lsab{letter-spacing:-0.210387pt;}
.lsb8{letter-spacing:-0.192000pt;}
.lsac{letter-spacing:-0.187947pt;}
.lsa6{letter-spacing:-0.157248pt;}
.lsa0{letter-spacing:-0.152349pt;}
.ls7{letter-spacing:-0.149760pt;}
.lse0{letter-spacing:-0.144000pt;}
.lsa7{letter-spacing:-0.140476pt;}
.lsad{letter-spacing:-0.140258pt;}
.lsa1{letter-spacing:-0.136098pt;}
.lsa8{letter-spacing:-0.104832pt;}
.lsa2{letter-spacing:-0.101566pt;}
.lsc5{letter-spacing:-0.096000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls42{letter-spacing:0.000107pt;}
.ls86{letter-spacing:0.000128pt;}
.ls5d{letter-spacing:0.000213pt;}
.ls91{letter-spacing:0.000299pt;}
.ls95{letter-spacing:0.000320pt;}
.ls9a{letter-spacing:0.000811pt;}
.ls71{letter-spacing:0.001045pt;}
.ls1f{letter-spacing:0.001344pt;}
.ls2f{letter-spacing:0.001579pt;}
.lsc2{letter-spacing:0.048000pt;}
.ls8{letter-spacing:0.074880pt;}
.ls1{letter-spacing:0.096000pt;}
.ls32{letter-spacing:0.101566pt;}
.ls55{letter-spacing:0.104832pt;}
.lscf{letter-spacing:0.106667pt;}
.ls89{letter-spacing:0.140258pt;}
.ls2{letter-spacing:0.149760pt;}
.ls9e{letter-spacing:0.155467pt;}
.lse6{letter-spacing:0.192000pt;}
.ls70{letter-spacing:0.201329pt;}
.ls3a{letter-spacing:0.201862pt;}
.ls67{letter-spacing:0.203089pt;}
.ls1e{letter-spacing:0.203132pt;}
.ls69{letter-spacing:0.203473pt;}
.ls22{letter-spacing:0.203537pt;}
.ls25{letter-spacing:0.203622pt;}
.ls2a{letter-spacing:0.204006pt;}
.ls4d{letter-spacing:0.209344pt;}
.ls45{letter-spacing:0.209451pt;}
.ls41{letter-spacing:0.209664pt;}
.ls48{letter-spacing:0.209771pt;}
.ls14{letter-spacing:0.213333pt;}
.ls4{letter-spacing:0.217152pt;}
.lsc7{letter-spacing:0.240000pt;}
.ls6b{letter-spacing:0.254459pt;}
.ls72{letter-spacing:0.254992pt;}
.lsed{letter-spacing:0.256000pt;}
.ls52{letter-spacing:0.262187pt;}
.ls11{letter-spacing:0.266667pt;}
.lse{letter-spacing:0.280000pt;}
.ls7a{letter-spacing:0.280239pt;}
.ls74{letter-spacing:0.280516pt;}
.ls80{letter-spacing:0.280602pt;}
.ls93{letter-spacing:0.280666pt;}
.ls77{letter-spacing:0.280751pt;}
.ls7d{letter-spacing:0.280772pt;}
.ls6{letter-spacing:0.288000pt;}
.ls3{letter-spacing:0.299520pt;}
.ls85{letter-spacing:0.350581pt;}
.ls17{letter-spacing:0.373333pt;}
.lsb{letter-spacing:0.374400pt;}
.lse2{letter-spacing:0.384000pt;}
.ls16{letter-spacing:0.426667pt;}
.ls15{letter-spacing:0.480000pt;}
.ls39{letter-spacing:0.507829pt;}
.ls1c{letter-spacing:0.512000pt;}
.ls5e{letter-spacing:0.524160pt;}
.lsbf{letter-spacing:0.528000pt;}
.ls1a{letter-spacing:0.533333pt;}
.lseb{letter-spacing:0.554667pt;}
.lsb3{letter-spacing:0.576000pt;}
.ls3d{letter-spacing:0.609395pt;}
.lsb4{letter-spacing:0.624000pt;}
.ls60{letter-spacing:0.628992pt;}
.lsb0{letter-spacing:0.672000pt;}
.ls19{letter-spacing:0.693333pt;}
.ls92{letter-spacing:0.701291pt;}
.lse9{letter-spacing:0.725333pt;}
.lsd3{letter-spacing:0.768000pt;}
.ls33{letter-spacing:0.812527pt;}
.ls56{letter-spacing:0.838656pt;}
.ls96{letter-spacing:0.841549pt;}
.lsce{letter-spacing:0.853333pt;}
.lsb1{letter-spacing:0.864000pt;}
.ls1b{letter-spacing:0.896000pt;}
.lsef{letter-spacing:0.938667pt;}
.lsd2{letter-spacing:0.960000pt;}
.lsec{letter-spacing:0.981333pt;}
.lsf2{letter-spacing:1.024000pt;}
.lsf1{letter-spacing:1.109333pt;}
.ls8a{letter-spacing:1.122065pt;}
.ls37{letter-spacing:1.421922pt;}
.ls5b{letter-spacing:1.467648pt;}
.ls40{letter-spacing:1.604741pt;}
.ls63{letter-spacing:1.656346pt;}
.ls38{letter-spacing:1.676050pt;}
.ls6d{letter-spacing:1.676583pt;}
.ls6c{letter-spacing:1.676903pt;}
.ls31{letter-spacing:1.677437pt;}
.ls54{letter-spacing:1.729728pt;}
.ls30{letter-spacing:1.773448pt;}
.ls3c{letter-spacing:1.773981pt;}
.ls53{letter-spacing:1.830964pt;}
.ls65{letter-spacing:1.861243pt;}
.ls26{letter-spacing:1.861776pt;}
.ls49{letter-spacing:1.921298pt;}
.ls8f{letter-spacing:1.963614pt;}
.ls2b{letter-spacing:2.156123pt;}
.ls9c{letter-spacing:2.156656pt;}
.ls99{letter-spacing:2.216079pt;}
.ls4e{letter-spacing:2.225522pt;}
.ls73{letter-spacing:2.281181pt;}
.ls2c{letter-spacing:2.281715pt;}
.ls6a{letter-spacing:2.282248pt;}
.ls35{letter-spacing:2.292304pt;}
.ls6f{letter-spacing:2.292837pt;}
.ls88{letter-spacing:2.313726pt;}
.ls90{letter-spacing:2.314046pt;}
.ls5c{letter-spacing:2.354697pt;}
.ls4f{letter-spacing:2.355230pt;}
.ls5a{letter-spacing:2.365539pt;}
.ls58{letter-spacing:2.366073pt;}
.ls87{letter-spacing:2.449705pt;}
.ls3b{letter-spacing:2.498856pt;}
.ls6e{letter-spacing:2.499389pt;}
.ls7b{letter-spacing:2.570727pt;}
.ls5f{letter-spacing:2.579429pt;}
.ls81{letter-spacing:2.977565pt;}
.ls82{letter-spacing:3.151038pt;}
.ls8e{letter-spacing:3.165390pt;}
.ls8c{letter-spacing:3.165923pt;}
.ls18{letter-spacing:3.333333pt;}
.ls94{letter-spacing:3.450671pt;}
.ls10{letter-spacing:4.166667pt;}
.ls12{letter-spacing:5.120000pt;}
.ls13{letter-spacing:5.184000pt;}
.ls3e{letter-spacing:6.195518pt;}
.ls61{letter-spacing:6.394752pt;}
.ls21{letter-spacing:6.601781pt;}
.ls34{letter-spacing:6.703347pt;}
.ls44{letter-spacing:6.814080pt;}
.ls57{letter-spacing:6.918912pt;}
.ls36{letter-spacing:7.363525pt;}
.ls59{letter-spacing:7.600320pt;}
.ls29{letter-spacing:7.820572pt;}
.ls2d{letter-spacing:7.871355pt;}
.ls4c{letter-spacing:8.072064pt;}
.ls50{letter-spacing:8.124480pt;}
.ls20{letter-spacing:8.375581pt;}
.ls9b{letter-spacing:8.376115pt;}
.ls97{letter-spacing:8.555746pt;}
.ls43{letter-spacing:8.644830pt;}
.ls76{letter-spacing:9.116779pt;}
.ls3f{letter-spacing:9.242494pt;}
.ls8b{letter-spacing:9.257037pt;}
.ls62{letter-spacing:9.539712pt;}
.ls8d{letter-spacing:10.168715pt;}
.ls24{letter-spacing:10.308935pt;}
.ls47{letter-spacing:10.640448pt;}
.ls7f{letter-spacing:10.799876pt;}
.ls83{letter-spacing:10.870005pt;}
.ls75{letter-spacing:11.566505pt;}
.lsf6{letter-spacing:11.781333pt;}
.ls28{letter-spacing:11.940837pt;}
.ls68{letter-spacing:11.941371pt;}
.ls23{letter-spacing:12.018043pt;}
.ls64{letter-spacing:12.018576pt;}
.ls4b{letter-spacing:12.325006pt;}
.ls46{letter-spacing:12.405031pt;}
.ls27{letter-spacing:12.448571pt;}
.ls66{letter-spacing:12.449104pt;}
.ls98{letter-spacing:12.763490pt;}
.ls2e{letter-spacing:12.848082pt;}
.ls4a{letter-spacing:12.849273pt;}
.ls51{letter-spacing:13.261248pt;}
.ls79{letter-spacing:14.236201pt;}
.ls7e{letter-spacing:16.490190pt;}
.ls78{letter-spacing:16.596861pt;}
.ls7c{letter-spacing:17.191523pt;}
.ls84{letter-spacing:17.742654pt;}
.wsd0{word-spacing:-70.129067pt;}
.wsc6{word-spacing:-52.416000pt;}
.wsbd{word-spacing:-50.782933pt;}
.wsd3{word-spacing:-49.791467pt;}
.wsc9{word-spacing:-37.215467pt;}
.wsc0{word-spacing:-36.056000pt;}
.wsd2{word-spacing:-33.301277pt;}
.wsc8{word-spacing:-24.890461pt;}
.wsbf{word-spacing:-24.115163pt;}
.wscd{word-spacing:-24.114629pt;}
.ws2{word-spacing:-21.792000pt;}
.wsd5{word-spacing:-19.776397pt;}
.wsd4{word-spacing:-19.636139pt;}
.wsd6{word-spacing:-19.495881pt;}
.wscf{word-spacing:-19.285493pt;}
.wsce{word-spacing:-19.075106pt;}
.ws7{word-spacing:-17.297280pt;}
.ws4{word-spacing:-16.997760pt;}
.ws3{word-spacing:-16.773120pt;}
.ws6{word-spacing:-16.698240pt;}
.ws5{word-spacing:-16.623360pt;}
.ws1{word-spacing:-16.398720pt;}
.ws8{word-spacing:-16.174080pt;}
.ws9{word-spacing:-16.099200pt;}
.wscb{word-spacing:-14.781312pt;}
.wsca{word-spacing:-14.676480pt;}
.wscc{word-spacing:-14.571648pt;}
.wsc5{word-spacing:-14.414400pt;}
.wsc2{word-spacing:-14.320787pt;}
.wsc4{word-spacing:-14.257152pt;}
.wsc1{word-spacing:-14.219221pt;}
.wsc3{word-spacing:-14.117655pt;}
.wsbc{word-spacing:-13.965307pt;}
.wsbb{word-spacing:-13.812958pt;}
.ws11{word-spacing:-13.048000pt;}
.ws28{word-spacing:-12.853333pt;}
.ws1eb{word-spacing:-12.693333pt;}
.ws13{word-spacing:-12.640000pt;}
.ws14{word-spacing:-12.586667pt;}
.ws99{word-spacing:-12.426667pt;}
.ws12{word-spacing:-12.373333pt;}
.wsba{word-spacing:-12.160000pt;}
.ws17f{word-spacing:-11.904000pt;}
.ws13c{word-spacing:-11.616000pt;}
.ws15{word-spacing:-11.360000pt;}
.ws144{word-spacing:-10.992000pt;}
.wsd1{word-spacing:-10.954123pt;}
.ws146{word-spacing:-10.848000pt;}
.ws18d{word-spacing:-10.800000pt;}
.ws13f{word-spacing:-10.752000pt;}
.ws1e9{word-spacing:-10.709333pt;}
.ws1d6{word-spacing:-10.624000pt;}
.ws187{word-spacing:-10.512000pt;}
.ws1e4{word-spacing:-10.496000pt;}
.ws1d5{word-spacing:-10.453333pt;}
.ws140{word-spacing:-10.224000pt;}
.ws149{word-spacing:-10.128000pt;}
.ws182{word-spacing:-10.080000pt;}
.ws18e{word-spacing:-10.032000pt;}
.ws1d7{word-spacing:-9.984000pt;}
.ws18a{word-spacing:-9.888000pt;}
.ws18f{word-spacing:-9.840000pt;}
.ws190{word-spacing:-9.792000pt;}
.ws1e2{word-spacing:-9.728000pt;}
.ws17e{word-spacing:-9.504000pt;}
.ws1d8{word-spacing:-9.429333pt;}
.ws141{word-spacing:-9.408000pt;}
.ws17d{word-spacing:-9.168000pt;}
.ws18b{word-spacing:-9.072000pt;}
.ws1d9{word-spacing:-9.045333pt;}
.ws18c{word-spacing:-9.024000pt;}
.ws197{word-spacing:-8.832000pt;}
.ws181{word-spacing:-8.736000pt;}
.ws183{word-spacing:-8.688000pt;}
.ws185{word-spacing:-8.640000pt;}
.ws192{word-spacing:-8.592000pt;}
.ws13e{word-spacing:-8.544000pt;}
.ws145{word-spacing:-8.448000pt;}
.ws14a{word-spacing:-8.400000pt;}
.ws14b{word-spacing:-8.256000pt;}
.ws1da{word-spacing:-8.234667pt;}
.wsc7{word-spacing:-8.187403pt;}
.wsbe{word-spacing:-7.932320pt;}
.ws1e3{word-spacing:-7.893333pt;}
.ws186{word-spacing:-7.872000pt;}
.ws142{word-spacing:-7.824000pt;}
.ws13b{word-spacing:-7.632000pt;}
.ws184{word-spacing:-7.344000pt;}
.ws180{word-spacing:-7.104000pt;}
.ws1ea{word-spacing:-6.997333pt;}
.ws1d4{word-spacing:-6.966667pt;}
.ws143{word-spacing:-6.816000pt;}
.ws27{word-spacing:-6.800000pt;}
.wsb9{word-spacing:-6.766667pt;}
.ws189{word-spacing:-6.432000pt;}
.ws6d{word-spacing:-6.240000pt;}
.ws171{word-spacing:-5.760000pt;}
.ws1b7{word-spacing:-5.653333pt;}
.ws1a4{word-spacing:-5.600000pt;}
.ws188{word-spacing:-5.568000pt;}
.ws1c2{word-spacing:-5.386667pt;}
.ws16d{word-spacing:-5.226667pt;}
.ws11f{word-spacing:-5.049293pt;}
.ws1d2{word-spacing:-5.013333pt;}
.wsb5{word-spacing:-4.640000pt;}
.ws1a0{word-spacing:-4.533333pt;}
.ws1ad{word-spacing:-4.480000pt;}
.ws86{word-spacing:-4.373333pt;}
.ws120{word-spacing:-4.348002pt;}
.wse3{word-spacing:-4.320000pt;}
.ws1ce{word-spacing:-4.266667pt;}
.ws1ae{word-spacing:-4.106667pt;}
.ws5a{word-spacing:-4.053333pt;}
.ws1c0{word-spacing:-3.946667pt;}
.ws84{word-spacing:-3.840000pt;}
.ws104{word-spacing:-3.773952pt;}
.ws4d{word-spacing:-3.680000pt;}
.wse9{word-spacing:-3.656371pt;}
.ws1b4{word-spacing:-3.626667pt;}
.ws57{word-spacing:-3.573333pt;}
.ws3c{word-spacing:-3.413333pt;}
.ws22{word-spacing:-3.360000pt;}
.wsdc{word-spacing:-3.306667pt;}
.ws3f{word-spacing:-3.253333pt;}
.ws105{word-spacing:-3.249792pt;}
.wsa1{word-spacing:-3.200000pt;}
.wsea{word-spacing:-3.148542pt;}
.ws1ba{word-spacing:-3.146667pt;}
.ws6a{word-spacing:-3.040000pt;}
.wse1{word-spacing:-2.986667pt;}
.ws126{word-spacing:-2.945421pt;}
.ws1c{word-spacing:-2.933333pt;}
.wsb4{word-spacing:-2.880000pt;}
.ws1a3{word-spacing:-2.826667pt;}
.ws43{word-spacing:-2.773333pt;}
.ws1bd{word-spacing:-2.720000pt;}
.wsb7{word-spacing:-2.666667pt;}
.ws1b3{word-spacing:-2.560000pt;}
.ws14f{word-spacing:-2.506667pt;}
.ws7f{word-spacing:-2.453333pt;}
.ws29{word-spacing:-2.400000pt;}
.ws1e{word-spacing:-2.346667pt;}
.wsa5{word-spacing:-2.293333pt;}
.ws127{word-spacing:-2.244130pt;}
.ws51{word-spacing:-2.240000pt;}
.ws10b{word-spacing:-2.201472pt;}
.ws4b{word-spacing:-2.186667pt;}
.ws1f{word-spacing:-2.133333pt;}
.wsf0{word-spacing:-2.132883pt;}
.ws3d{word-spacing:-2.080000pt;}
.ws4e{word-spacing:-2.026667pt;}
.wsd9{word-spacing:-1.920000pt;}
.ws16a{word-spacing:-1.866667pt;}
.ws168{word-spacing:-1.813333pt;}
.ws151{word-spacing:-1.728000pt;}
.wsdd{word-spacing:-1.706667pt;}
.ws10c{word-spacing:-1.677312pt;}
.ws1e0{word-spacing:-1.664000pt;}
.ws5c{word-spacing:-1.653333pt;}
.wsf1{word-spacing:-1.625054pt;}
.wsb0{word-spacing:-1.600000pt;}
.ws1e5{word-spacing:-1.578667pt;}
.ws83{word-spacing:-1.546667pt;}
.ws134{word-spacing:-1.542839pt;}
.ws1de{word-spacing:-1.536000pt;}
.ws81{word-spacing:-1.493333pt;}
.ws153{word-spacing:-1.488000pt;}
.ws91{word-spacing:-1.450667pt;}
.ws19{word-spacing:-1.440000pt;}
.ws163{word-spacing:-1.408000pt;}
.ws159{word-spacing:-1.392000pt;}
.ws70{word-spacing:-1.386667pt;}
.ws19e{word-spacing:-1.344000pt;}
.ws26{word-spacing:-1.333333pt;}
.ws1dc{word-spacing:-1.322667pt;}
.ws6c{word-spacing:-1.280000pt;}
.ws19f{word-spacing:-1.248000pt;}
.ws17{word-spacing:-1.226667pt;}
.ws1a{word-spacing:-1.173333pt;}
.ws119{word-spacing:-1.153152pt;}
.ws85{word-spacing:-1.120000pt;}
.wsfe{word-spacing:-1.117225pt;}
.ws1dd{word-spacing:-1.109333pt;}
.ws15e{word-spacing:-1.104000pt;}
.wsa7{word-spacing:-1.066667pt;}
.ws1e7{word-spacing:-1.024000pt;}
.wsdb{word-spacing:-1.013333pt;}
.wsa6{word-spacing:-0.981333pt;}
.ws16e{word-spacing:-0.960000pt;}
.ws30{word-spacing:-0.853333pt;}
.ws123{word-spacing:-0.841549pt;}
.ws16{word-spacing:-0.833333pt;}
.ws40{word-spacing:-0.800000pt;}
.ws93{word-spacing:-0.746667pt;}
.ws12e{word-spacing:-0.701291pt;}
.ws79{word-spacing:-0.693333pt;}
.wse{word-spacing:-0.673920pt;}
.ws1ee{word-spacing:-0.640000pt;}
.ws108{word-spacing:-0.628992pt;}
.wsed{word-spacing:-0.609395pt;}
.ws69{word-spacing:-0.586667pt;}
.ws152{word-spacing:-0.576000pt;}
.ws1c1{word-spacing:-0.533333pt;}
.ws113{word-spacing:-0.524160pt;}
.wsf8{word-spacing:-0.507829pt;}
.ws4c{word-spacing:-0.480000pt;}
.ws53{word-spacing:-0.426667pt;}
.ws129{word-spacing:-0.280516pt;}
.ws24{word-spacing:-0.266667pt;}
.wsda{word-spacing:-0.213333pt;}
.ws10e{word-spacing:-0.209664pt;}
.wsf3{word-spacing:-0.203132pt;}
.wsa{word-spacing:-0.192000pt;}
.ws2b{word-spacing:-0.160000pt;}
.wsde{word-spacing:-0.155467pt;}
.wsc{word-spacing:-0.149760pt;}
.ws121{word-spacing:-0.140258pt;}
.ws3b{word-spacing:-0.106667pt;}
.ws106{word-spacing:-0.104832pt;}
.wseb{word-spacing:-0.101566pt;}
.ws18{word-spacing:-0.064000pt;}
.ws14e{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.ws16b{word-spacing:0.053333pt;}
.wsb{word-spacing:0.096000pt;}
.ws14c{word-spacing:0.106667pt;}
.ws1db{word-spacing:0.128000pt;}
.wsf5{word-spacing:0.136098pt;}
.ws110{word-spacing:0.140476pt;}
.wsd{word-spacing:0.149760pt;}
.ws80{word-spacing:0.160000pt;}
.ws12b{word-spacing:0.187947pt;}
.ws156{word-spacing:0.192000pt;}
.ws100{word-spacing:0.203132pt;}
.ws11b{word-spacing:0.209664pt;}
.wsad{word-spacing:0.213333pt;}
.wsf{word-spacing:0.224640pt;}
.ws172{word-spacing:0.266667pt;}
.ws136{word-spacing:0.280516pt;}
.wsf4{word-spacing:0.304698pt;}
.ws10f{word-spacing:0.314496pt;}
.ws177{word-spacing:0.320000pt;}
.ws155{word-spacing:0.336000pt;}
.ws56{word-spacing:0.373333pt;}
.wsfd{word-spacing:0.406263pt;}
.ws118{word-spacing:0.419328pt;}
.ws12a{word-spacing:0.420774pt;}
.ws2e{word-spacing:0.426667pt;}
.ws35{word-spacing:0.480000pt;}
.ws101{word-spacing:0.507829pt;}
.ws11c{word-spacing:0.524160pt;}
.ws96{word-spacing:0.533333pt;}
.ws133{word-spacing:0.561033pt;}
.ws7c{word-spacing:0.586667pt;}
.ws164{word-spacing:0.640000pt;}
.ws1df{word-spacing:0.682667pt;}
.wsd7{word-spacing:0.693333pt;}
.ws137{word-spacing:0.701291pt;}
.ws15f{word-spacing:0.720000pt;}
.wsa2{word-spacing:0.746667pt;}
.wsa3{word-spacing:0.800000pt;}
.ws162{word-spacing:0.864000pt;}
.ws54{word-spacing:0.906667pt;}
.ws158{word-spacing:0.912000pt;}
.wsef{word-spacing:0.914093pt;}
.ws10a{word-spacing:0.943488pt;}
.ws165{word-spacing:0.960000pt;}
.ws97{word-spacing:1.013333pt;}
.ws1e6{word-spacing:1.024000pt;}
.ws15d{word-spacing:1.056000pt;}
.ws3e{word-spacing:1.066667pt;}
.ws1ec{word-spacing:1.109333pt;}
.ws87{word-spacing:1.173333pt;}
.ws15c{word-spacing:1.200000pt;}
.ws1b{word-spacing:1.226667pt;}
.ws125{word-spacing:1.262323pt;}
.ws157{word-spacing:1.344000pt;}
.ws1b5{word-spacing:1.386667pt;}
.ws103{word-spacing:1.421922pt;}
.wse5{word-spacing:1.440000pt;}
.ws11e{word-spacing:1.467648pt;}
.ws1d{word-spacing:1.493333pt;}
.ws1d1{word-spacing:1.546667pt;}
.wsaf{word-spacing:1.600000pt;}
.ws4f{word-spacing:1.653333pt;}
.ws1cf{word-spacing:1.706667pt;}
.ws34{word-spacing:1.760000pt;}
.ws1e8{word-spacing:1.792000pt;}
.ws2f{word-spacing:1.813333pt;}
.ws160{word-spacing:1.824000pt;}
.ws77{word-spacing:1.866667pt;}
.wsee{word-spacing:1.929751pt;}
.ws139{word-spacing:1.963614pt;}
.ws75{word-spacing:1.973333pt;}
.ws109{word-spacing:1.991808pt;}
.ws8d{word-spacing:2.026667pt;}
.ws15b{word-spacing:2.112000pt;}
.wsa0{word-spacing:2.186667pt;}
.ws73{word-spacing:2.240000pt;}
.ws31{word-spacing:2.293333pt;}
.ws176{word-spacing:2.346667pt;}
.ws32{word-spacing:2.400000pt;}
.wsb8{word-spacing:2.453333pt;}
.ws21{word-spacing:2.506667pt;}
.ws6f{word-spacing:2.560000pt;}
.ws9f{word-spacing:2.613333pt;}
.ws124{word-spacing:2.664905pt;}
.ws82{word-spacing:2.666667pt;}
.ws62{word-spacing:2.720000pt;}
.ws161{word-spacing:2.736000pt;}
.wsa4{word-spacing:2.826667pt;}
.ws5d{word-spacing:2.880000pt;}
.ws174{word-spacing:2.986667pt;}
.ws78{word-spacing:3.040000pt;}
.ws1bb{word-spacing:3.093333pt;}
.ws9b{word-spacing:3.146667pt;}
.wsd8{word-spacing:3.200000pt;}
.ws25{word-spacing:3.253333pt;}
.wsac{word-spacing:3.306667pt;}
.ws2a{word-spacing:3.360000pt;}
.ws1a8{word-spacing:3.413333pt;}
.wsec{word-spacing:3.453239pt;}
.ws1cb{word-spacing:3.466667pt;}
.ws9a{word-spacing:3.520000pt;}
.ws107{word-spacing:3.564288pt;}
.ws16c{word-spacing:3.573333pt;}
.wsb1{word-spacing:3.626667pt;}
.ws7e{word-spacing:3.680000pt;}
.ws15a{word-spacing:3.744000pt;}
.ws9e{word-spacing:3.786667pt;}
.ws169{word-spacing:3.840000pt;}
.ws1c7{word-spacing:3.893333pt;}
.ws102{word-spacing:3.961069pt;}
.ws3a{word-spacing:4.000000pt;}
.ws1a2{word-spacing:4.053333pt;}
.ws11d{word-spacing:4.088448pt;}
.ws1a1{word-spacing:4.106667pt;}
.ws2d{word-spacing:4.160000pt;}
.wse4{word-spacing:4.213333pt;}
.ws74{word-spacing:4.266667pt;}
.ws41{word-spacing:4.426667pt;}
.ws1c5{word-spacing:4.480000pt;}
.ws1b2{word-spacing:4.533333pt;}
.ws1d3{word-spacing:4.586667pt;}
.ws178{word-spacing:4.640000pt;}
.ws1c3{word-spacing:4.693333pt;}
.ws154{word-spacing:4.704000pt;}
.ws9d{word-spacing:4.746667pt;}
.ws122{word-spacing:4.768777pt;}
.wse6{word-spacing:4.800000pt;}
.ws48{word-spacing:4.853333pt;}
.ws92{word-spacing:4.906667pt;}
.ws64{word-spacing:4.960000pt;}
.ws1b1{word-spacing:5.066667pt;}
.ws173{word-spacing:5.120000pt;}
.ws44{word-spacing:5.173333pt;}
.wse7{word-spacing:5.280000pt;}
.ws6b{word-spacing:5.386667pt;}
.ws95{word-spacing:5.440000pt;}
.ws138{word-spacing:5.470067pt;}
.ws23{word-spacing:5.493333pt;}
.ws39{word-spacing:5.546667pt;}
.ws7b{word-spacing:5.600000pt;}
.ws1c8{word-spacing:5.653333pt;}
.ws8a{word-spacing:5.813333pt;}
.ws6e{word-spacing:5.920000pt;}
.ws1a7{word-spacing:5.973333pt;}
.wsf7{word-spacing:5.992386pt;}
.wse8{word-spacing:6.026667pt;}
.ws20{word-spacing:6.080000pt;}
.wsf6{word-spacing:6.093952pt;}
.ws112{word-spacing:6.185088pt;}
.ws55{word-spacing:6.240000pt;}
.ws111{word-spacing:6.289920pt;}
.ws16f{word-spacing:6.293333pt;}
.ws33{word-spacing:6.346667pt;}
.ws7d{word-spacing:6.400000pt;}
.wsae{word-spacing:6.453333pt;}
.wsf2{word-spacing:6.500215pt;}
.ws58{word-spacing:6.506667pt;}
.ws1a9{word-spacing:6.560000pt;}
.ws8e{word-spacing:6.613333pt;}
.ws10d{word-spacing:6.709248pt;}
.ws1b0{word-spacing:6.720000pt;}
.wsab{word-spacing:6.773333pt;}
.ws1b9{word-spacing:6.880000pt;}
.ws1be{word-spacing:7.040000pt;}
.ws36{word-spacing:7.093333pt;}
.ws50{word-spacing:7.200000pt;}
.ws71{word-spacing:7.306667pt;}
.ws1b6{word-spacing:7.413333pt;}
.ws1ca{word-spacing:7.466667pt;}
.ws1a5{word-spacing:7.520000pt;}
.wsdf{word-spacing:7.626667pt;}
.ws150{word-spacing:7.680000pt;}
.ws9c{word-spacing:7.786667pt;}
.ws63{word-spacing:8.000000pt;}
.wsfc{word-spacing:8.023703pt;}
.wsb6{word-spacing:8.106667pt;}
.ws12d{word-spacing:8.275230pt;}
.ws117{word-spacing:8.281728pt;}
.ws2c{word-spacing:8.373333pt;}
.ws12c{word-spacing:8.415488pt;}
.ws1c4{word-spacing:8.533333pt;}
.ws170{word-spacing:8.693333pt;}
.ws5e{word-spacing:8.800000pt;}
.ws128{word-spacing:8.976521pt;}
.wsff{word-spacing:9.039362pt;}
.ws5b{word-spacing:9.120000pt;}
.ws89{word-spacing:9.226667pt;}
.ws179{word-spacing:9.280000pt;}
.ws11a{word-spacing:9.330048pt;}
.ws166{word-spacing:9.600000pt;}
.ws59{word-spacing:9.653333pt;}
.ws17a{word-spacing:9.706667pt;}
.ws167{word-spacing:9.813333pt;}
.ws38{word-spacing:9.866667pt;}
.ws1c6{word-spacing:9.920000pt;}
.ws1cd{word-spacing:10.080000pt;}
.ws5f{word-spacing:10.133333pt;}
.ws1d0{word-spacing:10.186667pt;}
.ws8f{word-spacing:10.240000pt;}
.wsb3{word-spacing:10.293333pt;}
.ws4a{word-spacing:10.346667pt;}
.ws49{word-spacing:10.506667pt;}
.ws1b8{word-spacing:10.560000pt;}
.ws14d{word-spacing:10.933333pt;}
.ws132{word-spacing:11.080393pt;}
.ws1aa{word-spacing:11.093333pt;}
.ws1bc{word-spacing:11.146667pt;}
.ws1ed{word-spacing:11.253333pt;}
.ws94{word-spacing:11.306667pt;}
.wsf9{word-spacing:11.578509pt;}
.ws61{word-spacing:11.626667pt;}
.wsa9{word-spacing:11.680000pt;}
.ws66{word-spacing:11.786667pt;}
.ws1bf{word-spacing:11.893333pt;}
.ws114{word-spacing:11.950848pt;}
.ws68{word-spacing:12.160000pt;}
.ws42{word-spacing:12.213333pt;}
.ws88{word-spacing:12.373333pt;}
.ws135{word-spacing:12.482974pt;}
.ws52{word-spacing:12.586667pt;}
.wsfa{word-spacing:12.594167pt;}
.ws115{word-spacing:12.999168pt;}
.wsfb{word-spacing:13.101997pt;}
.ws1ab{word-spacing:13.173333pt;}
.ws47{word-spacing:13.333333pt;}
.wsaa{word-spacing:13.386667pt;}
.ws116{word-spacing:13.523328pt;}
.ws65{word-spacing:14.453333pt;}
.ws98{word-spacing:14.880000pt;}
.ws60{word-spacing:15.040000pt;}
.ws8b{word-spacing:15.093333pt;}
.ws1cc{word-spacing:15.413333pt;}
.wse2{word-spacing:15.466667pt;}
.wse0{word-spacing:15.520000pt;}
.ws72{word-spacing:15.786667pt;}
.ws45{word-spacing:15.840000pt;}
.ws12f{word-spacing:15.989427pt;}
.wsb2{word-spacing:16.266667pt;}
.ws67{word-spacing:16.533333pt;}
.ws130{word-spacing:17.392009pt;}
.ws76{word-spacing:17.600000pt;}
.ws131{word-spacing:18.093299pt;}
.ws7a{word-spacing:19.413333pt;}
.ws90{word-spacing:20.213333pt;}
.ws8c{word-spacing:20.746667pt;}
.ws1a6{word-spacing:25.493333pt;}
.ws1ac{word-spacing:27.360000pt;}
.ws37{word-spacing:94.752000pt;}
.ws19b{word-spacing:154.401600pt;}
.ws19d{word-spacing:164.654400pt;}
.ws19a{word-spacing:171.288000pt;}
.ws19c{word-spacing:174.264000pt;}
.ws196{word-spacing:193.963200pt;}
.ws147{word-spacing:211.147200pt;}
.ws195{word-spacing:211.800000pt;}
.ws148{word-spacing:212.136000pt;}
.ws199{word-spacing:213.254400pt;}
.ws13d{word-spacing:218.827200pt;}
.ws194{word-spacing:253.483200pt;}
.ws193{word-spacing:545.472000pt;}
.ws191{word-spacing:577.699200pt;}
.ws198{word-spacing:590.750400pt;}
.ws17c{word-spacing:634.209600pt;}
.ws1c9{word-spacing:806.333867pt;}
.ws10{word-spacing:806.427200pt;}
.ws1e1{word-spacing:806.650533pt;}
.ws46{word-spacing:806.727200pt;}
.ws13a{word-spacing:807.143867pt;}
.ws1af{word-spacing:807.567200pt;}
.wsa8{word-spacing:807.763867pt;}
.ws17b{word-spacing:808.697200pt;}
.ws175{word-spacing:809.910533pt;}
._f{margin-left:-1813.067136pt;}
._17{margin-left:-33.785152pt;}
._16{margin-left:-28.078485pt;}
._15{margin-left:-11.394197pt;}
._b{margin-left:-5.992917pt;}
._4{margin-left:-4.976896pt;}
._d{margin-left:-3.717888pt;}
._10{margin-left:-2.818368pt;}
._2{margin-left:-1.901952pt;}
._1{margin-left:-0.988416pt;}
._0{width:1.100736pt;}
._3{width:2.346667pt;}
._e{width:3.325931pt;}
._5{width:5.145600pt;}
._14{width:6.268736pt;}
._19{width:7.668223pt;}
._13{width:9.632000pt;}
._1a{width:11.284961pt;}
._18{width:12.505538pt;}
._1c{width:14.837711pt;}
._1b{width:17.805528pt;}
._a{width:20.657237pt;}
._9{width:25.634133pt;}
._12{width:52.192000pt;}
._c{width:58.535083pt;}
._8{width:59.448619pt;}
._7{width:64.265515pt;}
._11{width:94.752000pt;}
._6{width:97.226667pt;}
._2e{width:126.493056pt;}
._2d{width:132.105792pt;}
._22{width:144.676800pt;}
._1e{width:196.186197pt;}
._31{width:221.432597pt;}
._20{width:242.119104pt;}
._1d{width:282.605952pt;}
._28{width:284.072832pt;}
._2b{width:288.576000pt;}
._1f{width:303.760576pt;}
._2c{width:374.787264pt;}
._27{width:402.384000pt;}
._24{width:451.234944pt;}
._2a{width:506.525952pt;}
._29{width:515.864832pt;}
._25{width:522.081216pt;}
._30{width:528.633792pt;}
._21{width:626.957952pt;}
._23{width:646.588416pt;}
._26{width:740.059541pt;}
._2f{width:1109.088000pt;}
.fs5{font-size:16.000000pt;}
.fs11{font-size:31.093333pt;}
.fsf{font-size:33.333333pt;}
.fs15{font-size:34.024533pt;}
.fs19{font-size:35.118933pt;}
.fs14{font-size:36.056000pt;}
.fs18{font-size:37.215467pt;}
.fs4{font-size:37.333333pt;}
.fsd{font-size:40.320000pt;}
.fs10{font-size:42.666667pt;}
.fse{font-size:42.880000pt;}
.fs9{font-size:45.440000pt;}
.fs12{font-size:46.720533pt;}
.fs1d{font-size:46.986667pt;}
.fs6{font-size:48.000000pt;}
.fs16{font-size:48.222933pt;}
.fs1c{font-size:49.791467pt;}
.fs13{font-size:50.782933pt;}
.fs17{font-size:52.416000pt;}
.fs7{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs1a{font-size:64.518933pt;}
.fs1b{font-size:70.129067pt;}
.fsa{font-size:74.880000pt;}
.fsc{font-size:77.440000pt;}
.fs2{font-size:90.666667pt;}
.fsb{font-size:96.000000pt;}
.y17d{bottom:-689.537085pt;}
.y17c{bottom:-669.907200pt;}
.y19b{bottom:-646.414165pt;}
.y19a{bottom:-616.083344pt;}
.y199{bottom:-585.927845pt;}
.y198{bottom:-555.597024pt;}
.y197{bottom:-525.441525pt;}
.yd8{bottom:-501.965789pt;}
.yf9{bottom:-501.965389pt;}
.y1bf{bottom:-501.965122pt;}
.y11a{bottom:-499.320056pt;}
.y15c{bottom:-499.319922pt;}
.y19e{bottom:-499.319789pt;}
.y23a{bottom:-499.319656pt;}
.y1e0{bottom:-499.319389pt;}
.y222{bottom:-499.319256pt;}
.y13b{bottom:-499.319122pt;}
.y201{bottom:-499.318456pt;}
.y94{bottom:-496.880856pt;}
.y196{bottom:-495.110704pt;}
.yd7{bottom:-487.751067pt;}
.yf8{bottom:-487.750667pt;}
.y1be{bottom:-487.750400pt;}
.y119{bottom:-485.105333pt;}
.y15b{bottom:-485.105200pt;}
.y19d{bottom:-485.105067pt;}
.y239{bottom:-485.104933pt;}
.y1df{bottom:-485.104667pt;}
.y221{bottom:-485.104533pt;}
.y13a{bottom:-485.104400pt;}
.y200{bottom:-485.103733pt;}
.y93{bottom:-482.666133pt;}
.yb6{bottom:-482.607561pt;}
.yf6{bottom:-470.737528pt;}
.y117{bottom:-470.737261pt;}
.y1dd{bottom:-470.736861pt;}
.y138{bottom:-468.091928pt;}
.y17a{bottom:-468.091795pt;}
.y1bc{bottom:-468.091528pt;}
.y1fe{bottom:-468.091261pt;}
.y237{bottom:-468.091128pt;}
.y159{bottom:-468.090861pt;}
.y21f{bottom:-468.090195pt;}
.yb5{bottom:-467.935733pt;}
.yb3{bottom:-465.652728pt;}
.y195{bottom:-464.955205pt;}
.yd5{bottom:-450.376347pt;}
.yf5{bottom:-448.773909pt;}
.y116{bottom:-448.773643pt;}
.y1dc{bottom:-448.773243pt;}
.y137{bottom:-446.128309pt;}
.y179{bottom:-446.128176pt;}
.y1bb{bottom:-446.127909pt;}
.y1fd{bottom:-446.127643pt;}
.y236{bottom:-446.127509pt;}
.y158{bottom:-446.127243pt;}
.y21e{bottom:-446.126576pt;}
.yb2{bottom:-443.689109pt;}
.yd4{bottom:-427.706427pt;}
.yf4{bottom:-426.937248pt;}
.y115{bottom:-426.936981pt;}
.y1db{bottom:-426.936581pt;}
.y136{bottom:-424.291648pt;}
.y178{bottom:-424.291515pt;}
.y1ba{bottom:-424.291248pt;}
.y1fc{bottom:-424.290981pt;}
.y235{bottom:-424.290848pt;}
.y157{bottom:-424.290581pt;}
.y21d{bottom:-424.289915pt;}
.y194{bottom:-423.053088pt;}
.yb1{bottom:-421.852448pt;}
.yd3{bottom:-405.167547pt;}
.yf3{bottom:-404.973629pt;}
.y114{bottom:-404.973363pt;}
.y1da{bottom:-404.972963pt;}
.y135{bottom:-402.328029pt;}
.y177{bottom:-402.327896pt;}
.y1b9{bottom:-402.327629pt;}
.y1fb{bottom:-402.327363pt;}
.y234{bottom:-402.327229pt;}
.y156{bottom:-402.326963pt;}
.y21c{bottom:-402.326296pt;}
.yb0{bottom:-399.888829pt;}
.y193{bottom:-392.722267pt;}
.yf2{bottom:-383.136968pt;}
.y113{bottom:-383.136701pt;}
.y1d9{bottom:-383.136301pt;}
.yd2{bottom:-382.497627pt;}
.y134{bottom:-380.491368pt;}
.y176{bottom:-380.491235pt;}
.y1b8{bottom:-380.490968pt;}
.y1fa{bottom:-380.490701pt;}
.y233{bottom:-380.490568pt;}
.y155{bottom:-380.490301pt;}
.y21b{bottom:-380.489635pt;}
.yaf{bottom:-378.052168pt;}
.y192{bottom:-362.566768pt;}
.yf1{bottom:-361.173349pt;}
.y112{bottom:-361.173083pt;}
.y1d8{bottom:-361.172683pt;}
.yd1{bottom:-359.958747pt;}
.y133{bottom:-358.527749pt;}
.y175{bottom:-358.527616pt;}
.y1b7{bottom:-358.527349pt;}
.y1f9{bottom:-358.527083pt;}
.y232{bottom:-358.526949pt;}
.y154{bottom:-358.526683pt;}
.y21a{bottom:-358.526016pt;}
.yae{bottom:-356.088549pt;}
.yf0{bottom:-339.336688pt;}
.y111{bottom:-339.336421pt;}
.y1d7{bottom:-339.336021pt;}
.yd0{bottom:-337.288827pt;}
.y132{bottom:-336.691088pt;}
.y174{bottom:-336.690955pt;}
.y1b6{bottom:-336.690688pt;}
.y1f8{bottom:-336.690421pt;}
.y231{bottom:-336.690288pt;}
.y153{bottom:-336.690021pt;}
.y219{bottom:-336.689355pt;}
.yad{bottom:-334.251888pt;}
.y191{bottom:-332.235947pt;}
.ycf{bottom:-314.749947pt;}
.yef{bottom:-308.993885pt;}
.y110{bottom:-308.993619pt;}
.y1d6{bottom:-308.993219pt;}
.y131{bottom:-306.348285pt;}
.y173{bottom:-306.348152pt;}
.y1b5{bottom:-306.347885pt;}
.y1f7{bottom:-306.347619pt;}
.y230{bottom:-306.347485pt;}
.y152{bottom:-306.347219pt;}
.y218{bottom:-306.346552pt;}
.yac{bottom:-303.909085pt;}
.y190{bottom:-302.080448pt;}
.yee{bottom:-287.030267pt;}
.y10f{bottom:-287.030000pt;}
.y1d5{bottom:-287.029600pt;}
.y130{bottom:-284.384667pt;}
.y172{bottom:-284.384533pt;}
.y1b4{bottom:-284.384267pt;}
.y1f6{bottom:-284.384000pt;}
.y22f{bottom:-284.383867pt;}
.y151{bottom:-284.383600pt;}
.y217{bottom:-284.382933pt;}
.yce{bottom:-283.431387pt;}
.yab{bottom:-281.945467pt;}
.y18f{bottom:-271.749627pt;}
.yed{bottom:-265.193605pt;}
.y10e{bottom:-265.193339pt;}
.y1d4{bottom:-265.192939pt;}
.y12f{bottom:-262.548005pt;}
.y171{bottom:-262.547872pt;}
.y1b3{bottom:-262.547605pt;}
.y1f5{bottom:-262.547339pt;}
.y22e{bottom:-262.547205pt;}
.y150{bottom:-262.546939pt;}
.y216{bottom:-262.546272pt;}
.ycd{bottom:-260.761467pt;}
.yaa{bottom:-260.108805pt;}
.yec{bottom:-243.229987pt;}
.y10d{bottom:-243.229720pt;}
.y1d3{bottom:-243.229320pt;}
.y18e{bottom:-241.594128pt;}
.y12e{bottom:-240.584387pt;}
.y170{bottom:-240.584253pt;}
.y1b2{bottom:-240.583987pt;}
.y1f4{bottom:-240.583720pt;}
.y22d{bottom:-240.583587pt;}
.y14f{bottom:-240.583320pt;}
.y215{bottom:-240.582653pt;}
.ycc{bottom:-238.222587pt;}
.ya9{bottom:-238.145187pt;}
.yeb{bottom:-221.393325pt;}
.y10c{bottom:-221.393059pt;}
.y1d2{bottom:-221.392659pt;}
.y12d{bottom:-218.747725pt;}
.y16f{bottom:-218.747592pt;}
.y1b1{bottom:-218.747325pt;}
.y1f3{bottom:-218.747059pt;}
.y22c{bottom:-218.746925pt;}
.y14e{bottom:-218.746659pt;}
.y214{bottom:-218.745992pt;}
.ya8{bottom:-216.308525pt;}
.ycb{bottom:-215.552667pt;}
.y18d{bottom:-208.633445pt;}
.yea{bottom:-199.429707pt;}
.y10b{bottom:-199.429440pt;}
.y1d1{bottom:-199.429040pt;}
.y12c{bottom:-196.784107pt;}
.y16e{bottom:-196.783973pt;}
.y1b0{bottom:-196.783707pt;}
.y1f2{bottom:-196.783440pt;}
.y22b{bottom:-196.783307pt;}
.y14d{bottom:-196.783040pt;}
.y213{bottom:-196.782373pt;}
.ya7{bottom:-194.344907pt;}
.yca{bottom:-193.013787pt;}
.ye9{bottom:-177.593045pt;}
.y10a{bottom:-177.592779pt;}
.y1d0{bottom:-177.592379pt;}
.y12b{bottom:-174.947445pt;}
.y16d{bottom:-174.947312pt;}
.y1af{bottom:-174.947045pt;}
.y1f1{bottom:-174.946779pt;}
.y22a{bottom:-174.946645pt;}
.y14c{bottom:-174.946379pt;}
.y212{bottom:-174.945712pt;}
.ya6{bottom:-172.508245pt;}
.yc9{bottom:-170.343867pt;}
.y18c{bottom:-166.731328pt;}
.ye8{bottom:-153.724915pt;}
.y109{bottom:-153.724648pt;}
.y1cf{bottom:-153.724248pt;}
.y12a{bottom:-151.079315pt;}
.y16c{bottom:-151.079181pt;}
.y1ae{bottom:-151.078915pt;}
.y1f0{bottom:-151.078648pt;}
.y229{bottom:-151.078515pt;}
.y14b{bottom:-151.078248pt;}
.y211{bottom:-151.077581pt;}
.ya5{bottom:-148.640115pt;}
.yc8{bottom:-147.804987pt;}
.y18b{bottom:-133.770651pt;}
.ye7{bottom:-123.382112pt;}
.y108{bottom:-123.381845pt;}
.y1ce{bottom:-123.381445pt;}
.yc7{bottom:-123.169413pt;}
.y129{bottom:-120.736512pt;}
.y16b{bottom:-120.736379pt;}
.y1ad{bottom:-120.736112pt;}
.y1ef{bottom:-120.735845pt;}
.y228{bottom:-120.735712pt;}
.y14a{bottom:-120.735445pt;}
.y210{bottom:-120.734779pt;}
.ya4{bottom:-118.297312pt;}
.y18a{bottom:-100.634667pt;}
.ye6{bottom:-99.514136pt;}
.y107{bottom:-99.513736pt;}
.y1cd{bottom:-99.513469pt;}
.y128{bottom:-96.868403pt;}
.y16a{bottom:-96.868269pt;}
.y1ac{bottom:-96.868136pt;}
.y248{bottom:-96.868003pt;}
.y1ee{bottom:-96.867736pt;}
.y227{bottom:-96.867603pt;}
.y149{bottom:-96.867469pt;}
.y20f{bottom:-96.866669pt;}
.ya3{bottom:-94.429203pt;}
.yc6{bottom:-91.850853pt;}
.ye5{bottom:-75.519000pt;}
.y106{bottom:-75.518733pt;}
.y1cc{bottom:-75.518467pt;}
.y127{bottom:-72.873400pt;}
.y169{bottom:-72.873267pt;}
.y1ab{bottom:-72.873133pt;}
.y247{bottom:-72.873000pt;}
.y1ed{bottom:-72.872733pt;}
.y226{bottom:-72.872600pt;}
.y148{bottom:-72.872467pt;}
.y20e{bottom:-72.871667pt;}
.ya2{bottom:-70.434200pt;}
.y189{bottom:-69.953173pt;}
.yc5{bottom:-67.215360pt;}
.ye4{bottom:-53.301493pt;}
.y105{bottom:-53.301093pt;}
.y1cb{bottom:-53.300827pt;}
.y126{bottom:-50.655760pt;}
.y168{bottom:-50.655627pt;}
.y1aa{bottom:-50.655493pt;}
.y246{bottom:-50.655360pt;}
.y1ec{bottom:-50.655093pt;}
.y225{bottom:-50.654960pt;}
.y147{bottom:-50.654827pt;}
.y20d{bottom:-50.654027pt;}
.ya1{bottom:-48.216560pt;}
.yc4{bottom:-42.448800pt;}
.y188{bottom:-36.641867pt;}
.ye3{bottom:-29.179600pt;}
.y104{bottom:-29.179200pt;}
.y1ca{bottom:-29.178933pt;}
.y125{bottom:-26.533867pt;}
.y167{bottom:-26.533733pt;}
.y1a9{bottom:-26.533600pt;}
.y245{bottom:-26.533467pt;}
.y1eb{bottom:-26.533200pt;}
.y224{bottom:-26.533067pt;}
.y146{bottom:-26.532933pt;}
.y20c{bottom:-26.532133pt;}
.ya0{bottom:-24.094667pt;}
.yc3{bottom:-19.516800pt;}
.y0{bottom:0.000000pt;}
.ye1{bottom:3.449240pt;}
.y102{bottom:3.449640pt;}
.y1c8{bottom:3.449907pt;}
.yc2{bottom:5.380800pt;}
.y123{bottom:6.094840pt;}
.y165{bottom:6.094973pt;}
.y1a7{bottom:6.095240pt;}
.y243{bottom:6.095373pt;}
.y1e9{bottom:6.095640pt;}
.y144{bottom:6.095907pt;}
.y20a{bottom:6.096573pt;}
.y186{bottom:8.415893pt;}
.y9d{bottom:8.534040pt;}
.ye2{bottom:11.827733pt;}
.y103{bottom:11.828133pt;}
.y1c9{bottom:11.828400pt;}
.y124{bottom:14.473467pt;}
.y166{bottom:14.473600pt;}
.y1a8{bottom:14.473733pt;}
.y244{bottom:14.473867pt;}
.y1ea{bottom:14.474133pt;}
.y223{bottom:14.474267pt;}
.y145{bottom:14.474400pt;}
.y20b{bottom:14.475067pt;}
.y9f{bottom:16.912667pt;}
.y187{bottom:19.987200pt;}
.yc1{bottom:29.877333pt;}
.y59{bottom:33.280000pt;}
.ybf{bottom:39.058133pt;}
.ye0{bottom:42.298184pt;}
.y101{bottom:42.298584pt;}
.y1c7{bottom:42.298851pt;}
.y122{bottom:44.943784pt;}
.y164{bottom:44.943917pt;}
.y1a6{bottom:44.944184pt;}
.y242{bottom:44.944317pt;}
.y1e8{bottom:44.944584pt;}
.y143{bottom:44.944851pt;}
.y209{bottom:44.945517pt;}
.y9c{bottom:47.382984pt;}
.y90{bottom:52.690267pt;}
.y263{bottom:55.682267pt;}
.y8d{bottom:56.692933pt;}
.y5{bottom:59.133337pt;}
.y2fe{bottom:60.564533pt;}
.y185{bottom:62.064629pt;}
.y58{bottom:62.880000pt;}
.y57{bottom:63.040000pt;}
.y2c3{bottom:63.295600pt;}
.ydf{bottom:64.134845pt;}
.y100{bottom:64.135245pt;}
.y1c6{bottom:64.135512pt;}
.y8f{bottom:65.692933pt;}
.y121{bottom:66.780445pt;}
.y163{bottom:66.780579pt;}
.y1a5{bottom:66.780845pt;}
.y241{bottom:66.780979pt;}
.y1e7{bottom:66.781245pt;}
.y142{bottom:66.781512pt;}
.y208{bottom:66.782179pt;}
.y262{bottom:68.684933pt;}
.y9b{bottom:69.219645pt;}
.y8a{bottom:72.692933pt;}
.y2fd{bottom:73.567200pt;}
.y2c2{bottom:76.298267pt;}
.ybe{bottom:79.156373pt;}
.yde{bottom:85.971507pt;}
.yff{bottom:85.971907pt;}
.y1c5{bottom:85.972173pt;}
.y4{bottom:86.333337pt;}
.y2fc{bottom:86.569867pt;}
.y120{bottom:88.617107pt;}
.y162{bottom:88.617240pt;}
.y1a4{bottom:88.617507pt;}
.y240{bottom:88.617640pt;}
.y1e6{bottom:88.617907pt;}
.y141{bottom:88.618173pt;}
.y207{bottom:88.618840pt;}
.y89{bottom:88.692933pt;}
.y2c1{bottom:89.300933pt;}
.y9a{bottom:91.056307pt;}
.y184{bottom:92.220128pt;}
.y261{bottom:94.690267pt;}
.y2fb{bottom:99.572533pt;}
.ybd{bottom:101.695253pt;}
.y2c0{bottom:102.303600pt;}
.y7f{bottom:104.692933pt;}
.y260{bottom:107.692933pt;}
.y56{bottom:109.120000pt;}
.ydd{bottom:112.378632pt;}
.yfe{bottom:112.379032pt;}
.y1c4{bottom:112.379299pt;}
.y2fa{bottom:112.575200pt;}
.y11f{bottom:115.024232pt;}
.y161{bottom:115.024365pt;}
.y1a3{bottom:115.024632pt;}
.y23f{bottom:115.024765pt;}
.y1e5{bottom:115.025032pt;}
.y140{bottom:115.025299pt;}
.y206{bottom:115.025965pt;}
.y2bf{bottom:115.306267pt;}
.y99{bottom:117.463432pt;}
.y7e{bottom:120.692933pt;}
.y55{bottom:122.069760pt;}
.y183{bottom:122.375627pt;}
.y28a{bottom:123.694000pt;}
.y23{bottom:123.790666pt;}
.ybc{bottom:124.234133pt;}
.y2f9{bottom:125.577867pt;}
.y2be{bottom:128.308933pt;}
.y7d{bottom:136.692933pt;}
.y54{bottom:138.390880pt;}
.y2f8{bottom:138.580533pt;}
.y25f{bottom:139.379200pt;}
.y2bd{bottom:141.311600pt;}
.ydc{bottom:142.721435pt;}
.yfd{bottom:142.721835pt;}
.y1c3{bottom:142.722101pt;}
.y11e{bottom:145.367035pt;}
.y160{bottom:145.367168pt;}
.y1a2{bottom:145.367435pt;}
.y23e{bottom:145.367568pt;}
.y1e4{bottom:145.367835pt;}
.y13f{bottom:145.368101pt;}
.y205{bottom:145.368768pt;}
.y98{bottom:147.806235pt;}
.ybb{bottom:151.490453pt;}
.y2f7{bottom:151.583200pt;}
.y88{bottom:152.692933pt;}
.y2bc{bottom:154.314267pt;}
.y53{bottom:154.712000pt;}
.y25e{bottom:155.375200pt;}
.y289{bottom:156.088667pt;}
.y182{bottom:158.842741pt;}
.y2f6{bottom:164.585867pt;}
.ydb{bottom:164.685053pt;}
.yfc{bottom:164.685453pt;}
.y1c2{bottom:164.685720pt;}
.y2bb{bottom:167.316933pt;}
.y11d{bottom:167.330653pt;}
.y15f{bottom:167.330787pt;}
.y1a1{bottom:167.331053pt;}
.y23d{bottom:167.331187pt;}
.y1e3{bottom:167.331453pt;}
.y13e{bottom:167.331720pt;}
.y204{bottom:167.332387pt;}
.y7c{bottom:168.692933pt;}
.y97{bottom:169.769853pt;}
.y52{bottom:170.873760pt;}
.y1a{bottom:175.052000pt;}
.y2f5{bottom:177.588533pt;}
.y25d{bottom:178.739200pt;}
.y2ba{bottom:180.319600pt;}
.yba{bottom:182.809013pt;}
.y267{bottom:183.690267pt;}
.y288{bottom:184.670800pt;}
.y7b{bottom:184.692933pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.yda{bottom:186.521715pt;}
.yfb{bottom:186.522115pt;}
.y1c1{bottom:186.522381pt;}
.y51{bottom:187.194880pt;}
.y11c{bottom:189.167315pt;}
.y15e{bottom:189.167448pt;}
.y1a0{bottom:189.167715pt;}
.y23c{bottom:189.167848pt;}
.y1e2{bottom:189.168115pt;}
.y13d{bottom:189.168381pt;}
.y203{bottom:189.169048pt;}
.y2f4{bottom:190.591200pt;}
.y96{bottom:191.606515pt;}
.y2b9{bottom:193.322267pt;}
.y25c{bottom:194.735200pt;}
.y266{bottom:196.692933pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y7a{bottom:200.692933pt;}
.y181{bottom:200.744859pt;}
.y50{bottom:203.516000pt;}
.y2f3{bottom:203.593867pt;}
.yb9{bottom:205.478933pt;}
.y2b8{bottom:206.324933pt;}
.y287{bottom:208.034800pt;}
.yd9{bottom:208.485333pt;}
.yfa{bottom:208.485733pt;}
.y1c0{bottom:208.486000pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y11b{bottom:211.130933pt;}
.y15d{bottom:211.131067pt;}
.y19f{bottom:211.131333pt;}
.y23b{bottom:211.131467pt;}
.y1e1{bottom:211.131733pt;}
.y13c{bottom:211.132000pt;}
.y202{bottom:211.132667pt;}
.y95{bottom:213.570133pt;}
.y2f2{bottom:216.596533pt;}
.y79{bottom:216.692933pt;}
.y2b7{bottom:219.327600pt;}
.y4f{bottom:219.837120pt;}
.yb8{bottom:228.017813pt;}
.y2f1{bottom:229.599200pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y180{bottom:231.075680pt;}
.y286{bottom:231.398800pt;}
.y2b6{bottom:232.330267pt;}
.y25b{bottom:232.535200pt;}
.y78{bottom:232.692933pt;}
.y4e{bottom:235.998880pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y2f0{bottom:242.601867pt;}
.y2b5{bottom:245.332933pt;}
.y77{bottom:248.692933pt;}
.yb7{bottom:250.687733pt;}
.y4d{bottom:252.320000pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y2ef{bottom:255.604533pt;}
.y25a{bottom:255.899200pt;}
.y2b4{bottom:258.335600pt;}
.y17f{bottom:261.231179pt;}
.y76{bottom:264.692933pt;}
.y8c{bottom:267.692933pt;}
.y2ee{bottom:268.607200pt;}
.y4c{bottom:270.240000pt;}
.y2b3{bottom:271.338267pt;}
.y259{bottom:271.895200pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y285{bottom:278.126800pt;}
.y75{bottom:280.692933pt;}
.y2ed{bottom:281.609867pt;}
.y2b2{bottom:284.340933pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y17e{bottom:291.562000pt;}
.y284{bottom:294.122800pt;}
.y4b{bottom:294.238080pt;}
.y2ec{bottom:294.612533pt;}
.y258{bottom:295.259200pt;}
.y74{bottom:296.692933pt;}
.y2b1{bottom:297.343600pt;}
.y2eb{bottom:307.615200pt;}
.y11{bottom:309.452000pt;}
.y2b0{bottom:310.346267pt;}
.y257{bottom:311.255200pt;}
.y73{bottom:312.692933pt;}
.y4a{bottom:316.964160pt;}
.y283{bottom:317.486800pt;}
.y2ea{bottom:320.617867pt;}
.y2af{bottom:323.348933pt;}
.y72{bottom:328.692933pt;}
.y282{bottom:333.482800pt;}
.y2e9{bottom:333.620533pt;}
.y256{bottom:334.619200pt;}
.y2ae{bottom:336.351600pt;}
.y49{bottom:339.840000pt;}
.y10{bottom:343.809333pt;}
.y71{bottom:344.692933pt;}
.y2e8{bottom:346.623200pt;}
.y2ad{bottom:349.354267pt;}
.y255{bottom:350.615200pt;}
.y281{bottom:356.846800pt;}
.y2e7{bottom:359.625867pt;}
.y70{bottom:360.692933pt;}
.y48{bottom:361.760000pt;}
.y2ac{bottom:362.356933pt;}
.yf{bottom:362.706666pt;}
.y2e6{bottom:372.628533pt;}
.y280{bottom:372.842800pt;}
.y254{bottom:373.979200pt;}
.y2ab{bottom:375.359600pt;}
.y87{bottom:376.692933pt;}
.y47{bottom:381.920000pt;}
.y2e5{bottom:385.631200pt;}
.y2aa{bottom:388.362267pt;}
.y253{bottom:389.975200pt;}
.y8b{bottom:392.692933pt;}
.y27f{bottom:396.206800pt;}
.y2e4{bottom:398.633867pt;}
.ye{bottom:398.990669pt;}
.y46{bottom:400.471040pt;}
.y2a9{bottom:401.364933pt;}
.y6f{bottom:408.692933pt;}
.y2e3{bottom:411.636533pt;}
.y27e{bottom:412.202800pt;}
.y2a8{bottom:414.367600pt;}
.yd{bottom:414.990669pt;}
.y2e2{bottom:424.639200pt;}
.y91{bottom:424.688933pt;}
.y6e{bottom:424.692933pt;}
.y2a7{bottom:427.370267pt;}
.y252{bottom:427.775200pt;}
.yc{bottom:430.990669pt;}
.y238{bottom:434.834667pt;}
.y27d{bottom:435.566800pt;}
.y45{bottom:436.628480pt;}
.y2e1{bottom:437.641867pt;}
.y2a6{bottom:440.372933pt;}
.y6d{bottom:440.692933pt;}
.yb{bottom:446.990669pt;}
.y2e0{bottom:450.644533pt;}
.y24d{bottom:451.127200pt;}
.y251{bottom:451.139200pt;}
.y27c{bottom:451.562800pt;}
.y2a5{bottom:453.375600pt;}
.y44{bottom:455.352320pt;}
.y8e{bottom:456.688933pt;}
.y6c{bottom:456.692933pt;}
.ya{bottom:462.990669pt;}
.y2df{bottom:463.647200pt;}
.y2a4{bottom:466.378267pt;}
.y24c{bottom:467.123200pt;}
.y250{bottom:467.135200pt;}
.y6b{bottom:472.692933pt;}
.y43{bottom:474.076160pt;}
.y27b{bottom:474.926800pt;}
.y2de{bottom:476.649867pt;}
.y9{bottom:478.990666pt;}
.y2a3{bottom:479.380933pt;}
.y269{bottom:481.690267pt;}
.y24b{bottom:483.119200pt;}
.y24f{bottom:483.131200pt;}
.y6a{bottom:488.692933pt;}
.y2dd{bottom:489.652533pt;}
.y27a{bottom:490.922800pt;}
.y2a2{bottom:492.383600pt;}
.y42{bottom:492.800000pt;}
.y268{bottom:494.692933pt;}
.y8{bottom:494.990666pt;}
.y220{bottom:498.141333pt;}
.y1ff{bottom:499.085333pt;}
.y24a{bottom:499.115200pt;}
.y24e{bottom:499.127200pt;}
.y2dc{bottom:502.655200pt;}
.y69{bottom:504.692933pt;}
.y2a1{bottom:505.386267pt;}
.y265{bottom:509.690267pt;}
.y41{bottom:512.473920pt;}
.y279{bottom:514.286800pt;}
.y1de{bottom:515.149333pt;}
.y2db{bottom:515.657867pt;}
.y2a0{bottom:518.388933pt;}
.y68{bottom:520.692933pt;}
.y264{bottom:522.692933pt;}
.y2da{bottom:528.660533pt;}
.y15a{bottom:530.268000pt;}
.y278{bottom:530.282800pt;}
.y118{bottom:530.362667pt;}
.y19c{bottom:530.834667pt;}
.y139{bottom:531.212000pt;}
.y29f{bottom:531.391600pt;}
.y17b{bottom:531.780000pt;}
.y1bd{bottom:533.480000pt;}
.y40{bottom:535.200000pt;}
.y67{bottom:536.692933pt;}
.y2d9{bottom:541.663200pt;}
.y29e{bottom:544.394267pt;}
.yb4{bottom:547.085333pt;}
.yf7{bottom:549.165333pt;}
.yd6{bottom:549.354667pt;}
.y66{bottom:552.692933pt;}
.y277{bottom:553.646800pt;}
.y2d8{bottom:554.665867pt;}
.y29d{bottom:557.396933pt;}
.y3f{bottom:558.062080pt;}
.yc0{bottom:564.914667pt;}
.y2d7{bottom:567.668533pt;}
.y65{bottom:568.692933pt;}
.y276{bottom:569.642800pt;}
.y29c{bottom:570.399600pt;}
.y7{bottom:573.786667pt;}
.y2d6{bottom:580.671200pt;}
.y3e{bottom:580.788160pt;}
.y92{bottom:581.970667pt;}
.y29b{bottom:583.402267pt;}
.y64{bottom:584.692933pt;}
.y9e{bottom:590.504133pt;}
.y6{bottom:592.685334pt;}
.y275{bottom:593.006800pt;}
.y2d5{bottom:593.673867pt;}
.y29a{bottom:596.404933pt;}
.y63{bottom:600.692933pt;}
.y3d{bottom:603.514240pt;}
.y2d4{bottom:606.676533pt;}
.y274{bottom:609.002800pt;}
.y299{bottom:609.407600pt;}
.y62{bottom:616.692933pt;}
.y2d3{bottom:619.679200pt;}
.y298{bottom:622.410267pt;}
.y3c{bottom:626.390080pt;}
.y273{bottom:632.366800pt;}
.y2d2{bottom:632.681867pt;}
.y61{bottom:632.692933pt;}
.y297{bottom:635.412933pt;}
.y2d1{bottom:645.684533pt;}
.y272{bottom:648.362800pt;}
.y296{bottom:648.415600pt;}
.y60{bottom:648.692933pt;}
.y3b{bottom:649.116160pt;}
.y2d0{bottom:658.687200pt;}
.y295{bottom:661.418267pt;}
.y86{bottom:664.692933pt;}
.y3{bottom:668.977329pt;}
.y2cf{bottom:671.689867pt;}
.y271{bottom:671.726800pt;}
.y3a{bottom:671.992000pt;}
.y294{bottom:674.420933pt;}
.y5f{bottom:680.692933pt;}
.y2ce{bottom:684.692533pt;}
.y293{bottom:687.423600pt;}
.y270{bottom:687.722800pt;}
.y39{bottom:694.718080pt;}
.y85{bottom:696.692933pt;}
.y2cd{bottom:697.695200pt;}
.y292{bottom:700.426267pt;}
.y2cc{bottom:710.697867pt;}
.y26f{bottom:711.086800pt;}
.y84{bottom:712.692933pt;}
.y291{bottom:713.428933pt;}
.y38{bottom:717.593920pt;}
.y2cb{bottom:723.700533pt;}
.y290{bottom:726.431600pt;}
.y26e{bottom:727.082800pt;}
.y83{bottom:728.692933pt;}
.y2ca{bottom:736.703200pt;}
.y5e{bottom:739.348933pt;}
.y28f{bottom:739.434267pt;}
.y37{bottom:740.320000pt;}
.y82{bottom:744.692933pt;}
.y2c9{bottom:749.705867pt;}
.y26d{bottom:750.446800pt;}
.y28e{bottom:752.436933pt;}
.y5d{bottom:758.020933pt;}
.y81{bottom:760.692933pt;}
.y2c8{bottom:762.708533pt;}
.y36{bottom:763.040000pt;}
.y28d{bottom:765.439600pt;}
.y26c{bottom:766.442800pt;}
.y2c7{bottom:775.711200pt;}
.y249{bottom:776.688933pt;}
.y5c{bottom:776.692933pt;}
.y28c{bottom:778.442267pt;}
.y2{bottom:781.661334pt;}
.y35{bottom:787.192000pt;}
.y2c6{bottom:788.713867pt;}
.y26b{bottom:789.806800pt;}
.y28b{bottom:791.444933pt;}
.y80{bottom:792.692933pt;}
.y2c5{bottom:801.716533pt;}
.y26a{bottom:805.802800pt;}
.y5b{bottom:808.692933pt;}
.y2c4{bottom:814.719200pt;}
.y34{bottom:816.640000pt;}
.y33{bottom:844.480000pt;}
.y1{bottom:859.312000pt;}
.y32{bottom:864.640000pt;}
.y5a{bottom:865.738533pt;}
.y31{bottom:878.849600pt;}
.y30{bottom:894.055200pt;}
.y2f{bottom:909.420160pt;}
.y2e{bottom:924.785120pt;}
.y2d{bottom:940.150080pt;}
.y2c{bottom:955.515040pt;}
.y2b{bottom:970.880000pt;}
.y2a{bottom:983.360000pt;}
.y29{bottom:1028.480000pt;}
.y28{bottom:1043.520000pt;}
.y27{bottom:1055.840000pt;}
.y26{bottom:1061.120000pt;}
.y25{bottom:1066.560000pt;}
.y24{bottom:1071.840000pt;}
.h31{height:-0.254667pt;}
.hb{height:11.484375pt;}
.h37{height:13.228000pt;}
.h34{height:13.229333pt;}
.h38{height:15.873333pt;}
.h41{height:15.874667pt;}
.h3a{height:16.629333pt;}
.h2c{height:17.574667pt;}
.h1c{height:24.333333pt;}
.h24{height:25.116000pt;}
.h8{height:28.560000pt;}
.h19{height:28.579687pt;}
.h17{height:28.940625pt;}
.h46{height:29.909333pt;}
.h22{height:29.952000pt;}
.hf{height:30.285937pt;}
.h45{height:30.506667pt;}
.h44{height:31.146667pt;}
.hc{height:31.992188pt;}
.h25{height:33.534758pt;}
.h29{height:34.036639pt;}
.h42{height:34.320000pt;}
.h2d{height:34.613141pt;}
.h43{height:35.040000pt;}
.h9{height:35.242667pt;}
.hd{height:35.404688pt;}
.h28{height:35.483583pt;}
.h27{height:36.500233pt;}
.h30{height:36.624656pt;}
.h26{height:36.996160pt;}
.h36{height:36.996171pt;}
.h1d{height:37.386667pt;}
.h47{height:37.440000pt;}
.h2f{height:37.674000pt;}
.h16{height:38.128125pt;}
.h21{height:38.133333pt;}
.h2e{height:38.185875pt;}
.h33{height:38.185982pt;}
.h20{height:38.933333pt;}
.h1f{height:40.040000pt;}
.h23{height:40.457600pt;}
.h39{height:41.545271pt;}
.h2b{height:41.545377pt;}
.h2a{height:41.545804pt;}
.h35{height:41.545911pt;}
.h3{height:42.840000pt;}
.h32{height:42.881758pt;}
.h18{height:43.360000pt;}
.he{height:44.100000pt;}
.h1e{height:44.864000pt;}
.h3b{height:46.309977pt;}
.h3e{height:49.001742pt;}
.h10{height:49.907812pt;}
.h7{height:50.346667pt;}
.h3d{height:50.405267pt;}
.h3c{height:51.090121pt;}
.h13{height:51.187500pt;}
.h6{height:52.864000pt;}
.h12{height:53.746875pt;}
.h15{height:55.584375pt;}
.h40{height:57.372814pt;}
.h3f{height:57.372921pt;}
.h2{height:60.416000pt;}
.h14{height:61.754062pt;}
.h11{height:65.625000pt;}
.h5{height:85.589333pt;}
.h4{height:105.826671pt;}
.h1a{height:907.086667pt;}
.h1b{height:907.333333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.ha{height:1122.720000pt;}
.wa{width:-364.577333pt;}
.w23{width:-364.520000pt;}
.w29{width:-363.513333pt;}
.w27{width:-329.422667pt;}
.w10{width:-285.580000pt;}
.w1a{width:-247.712000pt;}
.w14{width:-244.572000pt;}
.w25{width:-191.416000pt;}
.w18{width:-176.921333pt;}
.w1c{width:-176.350667pt;}
.w21{width:-175.541333pt;}
.w1f{width:-150.976000pt;}
.wc{width:-140.824000pt;}
.w1d{width:-140.822667pt;}
.w16{width:-101.897333pt;}
.we{width:-88.666667pt;}
.w12{width:-85.642667pt;}
.w11{width:3.873333pt;}
.wb{width:6.425333pt;}
.w19{width:7.306667pt;}
.wd{width:8.314667pt;}
.w15{width:10.582667pt;}
.w1e{width:11.337333pt;}
.w22{width:11.769333pt;}
.w28{width:12.774667pt;}
.w24{width:13.985333pt;}
.w17{width:14.550667pt;}
.w9{width:14.741333pt;}
.w26{width:15.117333pt;}
.w13{width:15.118667pt;}
.w1b{width:15.497333pt;}
.w20{width:16.253333pt;}
.wf{width:17.764000pt;}
.w8{width:25.569333pt;}
.w4{width:260.320000pt;}
.w7{width:418.961333pt;}
.w2{width:566.928019pt;}
.w6{width:623.333333pt;}
.w5{width:623.622667pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w3{width:794.080000pt;}
.x3d{left:-382.447312pt;}
.x29{left:-372.096779pt;}
.x20{left:-364.632246pt;}
.x33{left:-349.132779pt;}
.x1b{left:-314.363979pt;}
.x46{left:-299.299312pt;}
.x2a{left:-285.770880pt;}
.x21{left:-278.306480pt;}
.x38{left:-270.141179pt;}
.x34{left:-262.807013pt;}
.x51{left:-256.212512pt;}
.x1c{left:-228.038213pt;}
.x47{left:-212.973547pt;}
.x2e{left:-201.922512pt;}
.x39{left:-183.815413pt;}
.x52{left:-169.886747pt;}
.x24{left:-158.269579pt;}
.x28{left:-126.311733pt;}
.x1f{left:-118.847200pt;}
.x55{left:-117.073446pt;}
.x2f{left:-115.596613pt;}
.x32{left:-103.347733pt;}
.x17{left:-97.137997pt;}
.x4c{left:-85.324512pt;}
.x25{left:-71.943813pt;}
.x10{left:-68.222912pt;}
.x45{left:-53.514267pt;}
.x3c{left:-43.029333pt;}
.x56{left:-30.747680pt;}
.x37{left:-24.356133pt;}
.x50{left:-10.427467pt;}
.x18{left:-8.035467pt;}
.x0{left:0.000000pt;}
.x4d{left:1.001253pt;}
.x14{left:5.712800pt;}
.x3f{left:7.890000pt;}
.x5{left:10.720000pt;}
.x11{left:18.102853pt;}
.x2d{left:43.862533pt;}
.xa{left:54.080000pt;}
.xb{left:56.692933pt;}
.x61{left:64.560933pt;}
.x23{left:87.515467pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x7{left:95.832960pt;}
.xd{left:113.385867pt;}
.x27{left:129.260000pt;}
.x2c{left:134.361333pt;}
.x44{left:139.086667pt;}
.x31{left:149.385333pt;}
.xf{left:152.693333pt;}
.x16{left:156.550800pt;}
.x36{left:160.252000pt;}
.xe{left:176.977733pt;}
.x4{left:180.874667pt;}
.x8{left:182.557440pt;}
.x15{left:195.968000pt;}
.x2b{left:218.776000pt;}
.x7b{left:256.081333pt;}
.x73{left:259.105333pt;}
.x35{left:261.865333pt;}
.x6d{left:267.829333pt;}
.x5a{left:271.872933pt;}
.x58{left:281.574667pt;}
.x3b{left:284.409333pt;}
.x62{left:286.236933pt;}
.x66{left:288.852933pt;}
.x1a{left:293.480000pt;}
.x48{left:301.400000pt;}
.x54{left:332.032000pt;}
.x7e{left:334.429333pt;}
.x7f{left:335.761333pt;}
.x7c{left:338.197333pt;}
.x1e{left:341.102667pt;}
.x80{left:342.073333pt;}
.x4b{left:343.558667pt;}
.x77{left:344.785333pt;}
.x79{left:346.789333pt;}
.x6e{left:350.029333pt;}
.x3a{left:351.724000pt;}
.x9{left:355.360000pt;}
.x5d{left:356.952933pt;}
.x5b{left:360.108933pt;}
.x5c{left:361.488933pt;}
.x5e{left:366.552933pt;}
.x64{left:368.208933pt;}
.x68{left:371.280933pt;}
.x63{left:373.164933pt;}
.x6b{left:374.076933pt;}
.x67{left:376.476933pt;}
.x6{left:378.720000pt;}
.x49{left:386.456000pt;}
.x30{left:394.052000pt;}
.x3{left:404.408000pt;}
.x81{left:407.737333pt;}
.x7d{left:409.201333pt;}
.x7a{left:411.049333pt;}
.x74{left:413.329333pt;}
.x26{left:416.162667pt;}
.x40{left:418.393333pt;}
.x70{left:420.913333pt;}
.x6f{left:423.289333pt;}
.x22{left:438.084000pt;}
.x1d{left:440.729333pt;}
.x5f{left:444.168933pt;}
.x6c{left:449.256933pt;}
.x60{left:450.684933pt;}
.x6a{left:452.664933pt;}
.x65{left:455.412933pt;}
.x69{left:458.568933pt;}
.x12{left:459.752267pt;}
.x82{left:476.065333pt;}
.x42{left:479.056000pt;}
.x76{left:480.253333pt;}
.x75{left:484.021333pt;}
.x78{left:487.153333pt;}
.x72{left:488.245333pt;}
.x71{left:490.969333pt;}
.x4f{left:513.070667pt;}
.x3e{left:539.428000pt;}
.x13{left:546.084000pt;}
.xc{left:554.477467pt;}
.x19{left:575.286667pt;}
.x4a{left:578.250667pt;}
.x41{left:610.241333pt;}
.x43{left:626.304000pt;}
.x59{left:657.862667pt;}
.x57{left:676.572000pt;}
.x53{left:718.472000pt;}
.x4e{left:719.848000pt;}
}




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