
    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_36a5a7a7154a423588369103.woff')format("woff");}.ff1{font-family:ff1;line-height:1.222000;font-style:normal;font-weight: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_b28ed8b61451507558deddc2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.197000;font-style:normal;font-weight: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_9ffa50e5a7a0165398c4c606.woff')format("woff");}.ff3{font-family:ff3;line-height:1.202000;font-style:normal;font-weight: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_7dd2bd70d2407265690a1a62.woff')format("woff");}.ff4{font-family:ff4;line-height:1.239000;font-style:normal;font-weight: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_8d45360b403c1616a22091eb.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910645;font-style:normal;font-weight: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_b8562231fa6eabfb6ded970c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910645;font-style:normal;font-weight: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_6d8a06a828d2c4049c664b13.woff')format("woff");}.ff7{font-family:ff7;line-height:0.722656;font-style:normal;font-weight: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_502fadc1c372e80512c2946e.woff')format("woff");}.ff8{font-family:ff8;line-height:1.213000;font-style:normal;font-weight: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_e2928d9783a56b60301c8a0b.woff')format("woff");}.ff9{font-family:ff9;line-height:1.222000;font-style:normal;font-weight: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_ee6719e6c5f3c7d04e871590.woff')format("woff");}.ffa{font-family:ffa;line-height:1.256000;font-style:normal;font-weight: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_b28ed8b61451507558deddc2.woff')format("woff");}.ffb{font-family:ffb;line-height:1.197000;font-style:normal;font-weight: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_ee6719e6c5f3c7d04e871590.woff')format("woff");}.ffc{font-family:ffc;line-height:1.256000;font-style:normal;font-weight: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_b28ed8b61451507558deddc2.woff')format("woff");}.ffd{font-family:ffd;line-height:1.197000;font-style:normal;font-weight: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_ee6719e6c5f3c7d04e871590.woff')format("woff");}.ffe{font-family:ffe;line-height:1.256000;font-style:normal;font-weight: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_8cf5a53e49a1a2df07fc87fc.woff')format("woff");}.fff{font-family:fff;line-height:0.908203;font-style:normal;font-weight: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_6fa0bd08bfc3def53916f5f7.woff')format("woff");}.ff10{font-family:ff10;line-height:0.889000;font-style:normal;font-weight: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_a5eebd82f50bffef23259dab.woff')format("woff");}.ff11{font-family:ff11;line-height:0.908000;font-style:normal;font-weight: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_6fa0bd08bfc3def53916f5f7.woff')format("woff");}.ff12{font-family:ff12;line-height:0.889000;font-style:normal;font-weight: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_e342e3033e5375025b1c53c8.woff')format("woff");}.ff13{font-family:ff13;line-height:0.908000;font-style:normal;font-weight: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_de00dce802c4318d6e129381.woff')format("woff");}.ff14{font-family:ff14;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_6f3264d6f2eadc98f8009d48.woff')format("woff");}.ff15{font-family:ff15;line-height:0.898000;font-style:normal;font-weight: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_89afe7f8c35493aba32784e9.woff')format("woff");}.ff16{font-family:ff16;line-height:0.898000;font-style:normal;font-weight: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_324f688b8dd36bf5521f0ddc.woff')format("woff");}.ff17{font-family:ff17;line-height:0.999000;font-style:normal;font-weight: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_6b208b3c99e42e596746eb00.woff')format("woff");}.ff18{font-family:ff18;line-height:0.908000;font-style:normal;font-weight: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_9e9cd5c2be2c5c6ce435264e.woff')format("woff");}.ff19{font-family:ff19;line-height:0.899000;font-style:normal;font-weight: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_6f3264d6f2eadc98f8009d48.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.898000;font-style:normal;font-weight: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_324f688b8dd36bf5521f0ddc.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.999000;font-style:normal;font-weight: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_5ba60c544f588147716b6508.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.908000;font-style:normal;font-weight: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_9e9cd5c2be2c5c6ce435264e.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.899000;font-style:normal;font-weight: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_8633f564560de407371e909f.woff')format("woff");}.ff1e{font-family:ff1e;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_89afe7f8c35493aba32784e9.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.898000;font-style:normal;font-weight: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_324f688b8dd36bf5521f0ddc.woff')format("woff");}.ff20{font-family:ff20;line-height:0.999000;font-style:normal;font-weight: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_5ba60c544f588147716b6508.woff')format("woff");}.ff21{font-family:ff21;line-height:0.908000;font-style:normal;font-weight: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_9e9cd5c2be2c5c6ce435264e.woff')format("woff");}.ff22{font-family:ff22;line-height:0.899000;font-style:normal;font-weight: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_89afe7f8c35493aba32784e9.woff')format("woff");}.ff23{font-family:ff23;line-height:0.898000;font-style:normal;font-weight: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_cf670c91df70de5a4db3942d.woff')format("woff");}.ff24{font-family:ff24;line-height:0.999000;font-style:normal;font-weight: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_3105a64727fe5687ee814224.woff')format("woff");}.ff25{font-family:ff25;line-height:0.908000;font-style:normal;font-weight: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_9e9cd5c2be2c5c6ce435264e.woff')format("woff");}.ff26{font-family:ff26;line-height:0.899000;font-style:normal;font-weight: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_89afe7f8c35493aba32784e9.woff')format("woff");}.ff27{font-family:ff27;line-height:0.898000;font-style:normal;font-weight: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_cf670c91df70de5a4db3942d.woff')format("woff");}.ff28{font-family:ff28;line-height:0.999000;font-style:normal;font-weight: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_6b208b3c99e42e596746eb00.woff')format("woff");}.ff29{font-family:ff29;line-height:0.908000;font-style:normal;font-weight: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_9e9cd5c2be2c5c6ce435264e.woff')format("woff");}.ff2a{font-family:ff2a;line-height:0.899000;font-style:normal;font-weight: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_89afe7f8c35493aba32784e9.woff')format("woff");}.ff2b{font-family:ff2b;line-height:0.898000;font-style:normal;font-weight: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_abe9f9897e0a8f46a5cb8474.woff')format("woff");}.ff2c{font-family:ff2c;line-height:0.908000;font-style:normal;font-weight: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_6f3264d6f2eadc98f8009d48.woff')format("woff");}.ff2d{font-family:ff2d;line-height:0.898000;font-style:normal;font-weight: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_f607a3db64eafb3acc67c83d.woff')format("woff");}.ff2e{font-family:ff2e;line-height:0.908000;font-style:normal;font-weight: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_dc2f5542d080aff28be101ac.woff')format("woff");}.ff2f{font-family:ff2f;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_a1d8f687c50ccda5f91d8a2e.woff')format("woff");}.ff30{font-family:ff30;line-height:2.999000;font-style:normal;font-weight: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_09535683a0bc1bbf2d20b570.woff')format("woff");}.ff31{font-family:ff31;line-height:0.999000;font-style:normal;font-weight: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_4e24be0a2d27fa17944fa989.woff')format("woff");}.ff32{font-family:ff32;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_a5eebd82f50bffef23259dab.woff')format("woff");}.ff33{font-family:ff33;line-height:0.908000;font-style:normal;font-weight: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_89afe7f8c35493aba32784e9.woff')format("woff");}.ff34{font-family:ff34;line-height:0.898000;font-style:normal;font-weight: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_cf670c91df70de5a4db3942d.woff')format("woff");}.ff35{font-family:ff35;line-height:0.999000;font-style:normal;font-weight: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_a5eebd82f50bffef23259dab.woff')format("woff");}.ff36{font-family:ff36;line-height:0.908000;font-style:normal;font-weight: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_dc2f5542d080aff28be101ac.woff')format("woff");}.ff37{font-family:ff37;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_824178fb8e0efc2a71ca5c00.woff')format("woff");}.ff38{font-family:ff38;line-height:0.908000;font-style:normal;font-weight: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_3693d09207004e4782012310.woff')format("woff");}.ff39{font-family:ff39;line-height:2.999000;font-style:normal;font-weight: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_cf670c91df70de5a4db3942d.woff')format("woff");}.ff3a{font-family:ff3a;line-height:0.999000;font-style:normal;font-weight: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_eb49c75e026a5d7bc05dd1b5.woff')format("woff");}.ff3b{font-family:ff3b;line-height:0.898000;font-style:normal;font-weight: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_89afe7f8c35493aba32784e9.woff')format("woff");}.ff3c{font-family:ff3c;line-height:0.898000;font-style:normal;font-weight: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_82003ecd203a92572bf21778.woff')format("woff");}.ff3d{font-family:ff3d;line-height:0.908000;font-style:normal;font-weight: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_89afe7f8c35493aba32784e9.woff')format("woff");}.ff3e{font-family:ff3e;line-height:0.898000;font-style:normal;font-weight: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_cf670c91df70de5a4db3942d.woff')format("woff");}.ff3f{font-family:ff3f;line-height:0.999000;font-style:normal;font-weight: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_5ba60c544f588147716b6508.woff')format("woff");}.ff40{font-family:ff40;line-height:0.908000;font-style:normal;font-weight: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_9e9cd5c2be2c5c6ce435264e.woff')format("woff");}.ff41{font-family:ff41;line-height:0.899000;font-style:normal;font-weight: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_89afe7f8c35493aba32784e9.woff')format("woff");}.ff42{font-family:ff42;line-height:0.898000;font-style:normal;font-weight: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_a5eebd82f50bffef23259dab.woff')format("woff");}.ff43{font-family:ff43;line-height:0.908000;font-style:normal;font-weight: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_a1fc1d6cd4b72c4cf992ba89.woff')format("woff");}.ff44{font-family:ff44;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_9348821e4ec055efdca22c1f.woff')format("woff");}.ff45{font-family:ff45;line-height:0.842000;font-style:normal;font-weight: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_89afe7f8c35493aba32784e9.woff')format("woff");}.ff46{font-family:ff46;line-height:0.898000;font-style:normal;font-weight: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_a5eebd82f50bffef23259dab.woff')format("woff");}.ff47{font-family:ff47;line-height:0.908000;font-style:normal;font-weight: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_89afe7f8c35493aba32784e9.woff')format("woff");}.ff48{font-family:ff48;line-height:0.898000;font-style:normal;font-weight: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_1d2ca54b8b94b40c7367ca5b.woff')format("woff");}.ff49{font-family:ff49;line-height:0.908000;font-style:normal;font-weight: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_89afe7f8c35493aba32784e9.woff')format("woff");}.ff4a{font-family:ff4a;line-height:0.898000;font-style:normal;font-weight: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_82003ecd203a92572bf21778.woff')format("woff");}.ff4b{font-family:ff4b;line-height:0.908000;font-style:normal;font-weight: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_89afe7f8c35493aba32784e9.woff')format("woff");}.ff4c{font-family:ff4c;line-height:0.898000;font-style:normal;font-weight: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_7d8bc9730f67dd0206ecbdcb.woff')format("woff");}.ff4d{font-family:ff4d;line-height:0.908000;font-style:normal;font-weight: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_6fa0bd08bfc3def53916f5f7.woff')format("woff");}.ff4e{font-family:ff4e;line-height:0.889000;font-style:normal;font-weight: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_73e1d7dee28919ae7d88daed.woff')format("woff");}.ff4f{font-family:ff4f;line-height:0.908000;font-style:normal;font-weight: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_8633f564560de407371e909f.woff')format("woff");}.ff50{font-family:ff50;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff51;src:url('chunks/assets/font_6f3264d6f2eadc98f8009d48.woff')format("woff");}.ff51{font-family:ff51;line-height:0.898000;font-style:normal;font-weight: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_cf670c91df70de5a4db3942d.woff')format("woff");}.ff52{font-family:ff52;line-height:0.999000;font-style:normal;font-weight: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_9e9cd5c2be2c5c6ce435264e.woff')format("woff");}.ff53{font-family:ff53;line-height:0.899000;font-style:normal;font-weight: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_6fa0bd08bfc3def53916f5f7.woff')format("woff");}.ff54{font-family:ff54;line-height:0.889000;font-style:normal;font-weight: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_73e1d7dee28919ae7d88daed.woff')format("woff");}.ff55{font-family:ff55;line-height:0.908000;font-style:normal;font-weight: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_8633f564560de407371e909f.woff')format("woff");}.ff56{font-family:ff56;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff57;src:url('chunks/assets/font_335f146c78b0a9b38e720576.woff')format("woff");}.ff57{font-family:ff57;line-height:2.999000;font-style:normal;font-weight: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_9348821e4ec055efdca22c1f.woff')format("woff");}.ff58{font-family:ff58;line-height:0.842000;font-style:normal;font-weight: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_6f3264d6f2eadc98f8009d48.woff')format("woff");}.ff59{font-family:ff59;line-height:0.898000;font-style:normal;font-weight: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_cf670c91df70de5a4db3942d.woff')format("woff");}.ff5a{font-family:ff5a;line-height:0.999000;font-style:normal;font-weight: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_d059040549e8d08f88a09aa6.woff')format("woff");}.ff5b{font-family:ff5b;line-height:0.899000;font-style:normal;font-weight: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_6fa0bd08bfc3def53916f5f7.woff')format("woff");}.ff5c{font-family:ff5c;line-height:0.889000;font-style:normal;font-weight: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_8f476e0643466eebcbb3ecbb.woff')format("woff");}.ff5d{font-family:ff5d;line-height:0.908000;font-style:normal;font-weight: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_ee24c91b372ec35d8b8173ad.woff')format("woff");}.ff5e{font-family:ff5e;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5f;src:url('chunks/assets/font_335f146c78b0a9b38e720576.woff')format("woff");}.ff5f{font-family:ff5f;line-height:2.999000;font-style:normal;font-weight: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_9348821e4ec055efdca22c1f.woff')format("woff");}.ff60{font-family:ff60;line-height:0.842000;font-style:normal;font-weight: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_97fb33a7ad71bf2e28bf0fa2.woff')format("woff");}.ff61{font-family:ff61;line-height:0.898000;font-style:normal;font-weight: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_cf670c91df70de5a4db3942d.woff')format("woff");}.ff62{font-family:ff62;line-height:0.999000;font-style:normal;font-weight: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_d059040549e8d08f88a09aa6.woff')format("woff");}.ff63{font-family:ff63;line-height:0.899000;font-style:normal;font-weight: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_89afe7f8c35493aba32784e9.woff')format("woff");}.ff64{font-family:ff64;line-height:0.898000;font-style:normal;font-weight: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_abe9f9897e0a8f46a5cb8474.woff')format("woff");}.ff65{font-family:ff65;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff66;src:url('chunks/assets/font_89afe7f8c35493aba32784e9.woff')format("woff");}.ff66{font-family:ff66;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff67;src:url('chunks/assets/font_7032bb4ad56e0bbf2add6a86.woff')format("woff");}.ff67{font-family:ff67;line-height:0.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff68;src:url('chunks/assets/font_abe9f9897e0a8f46a5cb8474.woff')format("woff");}.ff68{font-family:ff68;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff69;src:url('chunks/assets/font_89afe7f8c35493aba32784e9.woff')format("woff");}.ff69{font-family:ff69;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6a;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ff6a{font-family:ff6a;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6b;src:url('chunks/assets/font_abe9f9897e0a8f46a5cb8474.woff')format("woff");}.ff6b{font-family:ff6b;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6c;src:url('chunks/assets/font_89afe7f8c35493aba32784e9.woff')format("woff");}.ff6c{font-family:ff6c;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6d;src:url('chunks/assets/font_abe9f9897e0a8f46a5cb8474.woff')format("woff");}.ff6d{font-family:ff6d;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6e;src:url('chunks/assets/font_5f565f6f47ed4dc6de0c4374.woff')format("woff");}.ff6e{font-family:ff6e;line-height:0.842000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6f;src:url('chunks/assets/font_abe9f9897e0a8f46a5cb8474.woff')format("woff");}.ff6f{font-family:ff6f;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff70;src:url('chunks/assets/font_89afe7f8c35493aba32784e9.woff')format("woff");}.ff70{font-family:ff70;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff71;src:url('chunks/assets/font_abe9f9897e0a8f46a5cb8474.woff')format("woff");}.ff71{font-family:ff71;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff72;src:url('chunks/assets/font_89afe7f8c35493aba32784e9.woff')format("woff");}.ff72{font-family:ff72;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff73;src:url('chunks/assets/font_abe9f9897e0a8f46a5cb8474.woff')format("woff");}.ff73{font-family:ff73;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff74;src:url('chunks/assets/font_5f565f6f47ed4dc6de0c4374.woff')format("woff");}.ff74{font-family:ff74;line-height:0.842000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff75;src:url('chunks/assets/font_7032bb4ad56e0bbf2add6a86.woff')format("woff");}.ff75{font-family:ff75;line-height:0.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff76;src:url('chunks/assets/font_abe9f9897e0a8f46a5cb8474.woff')format("woff");}.ff76{font-family:ff76;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff77;src:url('chunks/assets/font_868fe16c24bc96316770dd75.woff')format("woff");}.ff77{font-family:ff77;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff78;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ff78{font-family:ff78;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff79;src:url('chunks/assets/font_89afe7f8c35493aba32784e9.woff')format("woff");}.ff79{font-family:ff79;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7a;src:url('chunks/assets/font_7032bb4ad56e0bbf2add6a86.woff')format("woff");}.ff7a{font-family:ff7a;line-height:0.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7b;src:url('chunks/assets/font_abe9f9897e0a8f46a5cb8474.woff')format("woff");}.ff7b{font-family:ff7b;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7c;src:url('chunks/assets/font_89afe7f8c35493aba32784e9.woff')format("woff");}.ff7c{font-family:ff7c;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7d;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ff7d{font-family:ff7d;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7e;src:url('chunks/assets/font_abe9f9897e0a8f46a5cb8474.woff')format("woff");}.ff7e{font-family:ff7e;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7f;src:url('chunks/assets/font_89afe7f8c35493aba32784e9.woff')format("woff");}.ff7f{font-family:ff7f;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff80;src:url('chunks/assets/font_89afe7f8c35493aba32784e9.woff')format("woff");}.ff80{font-family:ff80;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff81;src:url('chunks/assets/font_cf670c91df70de5a4db3942d.woff')format("woff");}.ff81{font-family:ff81;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff82;src:url('chunks/assets/font_6b208b3c99e42e596746eb00.woff')format("woff");}.ff82{font-family:ff82;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff83;src:url('chunks/assets/font_a1fc1d6cd4b72c4cf992ba89.woff')format("woff");}.ff83{font-family:ff83;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff84;src:url('chunks/assets/font_97fb33a7ad71bf2e28bf0fa2.woff')format("woff");}.ff84{font-family:ff84;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff85;src:url('chunks/assets/font_cf670c91df70de5a4db3942d.woff')format("woff");}.ff85{font-family:ff85;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff86;src:url('chunks/assets/font_6b208b3c99e42e596746eb00.woff')format("woff");}.ff86{font-family:ff86;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff87;src:url('chunks/assets/font_d40bc6130ab0f8bca1d60043.woff')format("woff");}.ff87{font-family:ff87;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff88;src:url('chunks/assets/font_9348821e4ec055efdca22c1f.woff')format("woff");}.ff88{font-family:ff88;line-height:0.842000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff89;src:url('chunks/assets/font_89afe7f8c35493aba32784e9.woff')format("woff");}.ff89{font-family:ff89;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8a;src:url('chunks/assets/font_8633f564560de407371e909f.woff')format("woff");}.ff8a{font-family:ff8a;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8b;src:url('chunks/assets/font_6f3264d6f2eadc98f8009d48.woff')format("woff");}.ff8b{font-family:ff8b;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8c;src:url('chunks/assets/font_abe9f9897e0a8f46a5cb8474.woff')format("woff");}.ff8c{font-family:ff8c;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8d;src:url('chunks/assets/font_9ad2df0296f8808ee302c605.woff')format("woff");}.ff8d{font-family:ff8d;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8e;src:url('chunks/assets/font_299d954ea1b9b9ff57df4908.woff')format("woff");}.ff8e{font-family:ff8e;line-height:2.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8f;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ff8f{font-family:ff8f;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff90;src:url('chunks/assets/font_9348821e4ec055efdca22c1f.woff')format("woff");}.ff90{font-family:ff90;line-height:0.842000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff91;src:url('chunks/assets/font_6fa0bd08bfc3def53916f5f7.woff')format("woff");}.ff91{font-family:ff91;line-height:0.889000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff92;src:url('chunks/assets/font_6f3264d6f2eadc98f8009d48.woff')format("woff");}.ff92{font-family:ff92;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff93;src:url('chunks/assets/font_506f4e0949a2a8b9e2397c0d.woff')format("woff");}.ff93{font-family:ff93;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff94;src:url('chunks/assets/font_8633f564560de407371e909f.woff')format("woff");}.ff94{font-family:ff94;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff95;src:url('chunks/assets/font_6c88f25857b135cce7cdfe7f.woff')format("woff");}.ff95{font-family:ff95;line-height:2.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff96;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ff96{font-family:ff96;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff97;src:url('chunks/assets/font_9348821e4ec055efdca22c1f.woff')format("woff");}.ff97{font-family:ff97;line-height:0.842000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff98;src:url('chunks/assets/font_6fa0bd08bfc3def53916f5f7.woff')format("woff");}.ff98{font-family:ff98;line-height:0.889000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff99;src:url('chunks/assets/font_450be249a4970c60c9eada1f.woff')format("woff");}.ff99{font-family:ff99;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9a;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ff9a{font-family:ff9a;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9b;src:url('chunks/assets/font_5f565f6f47ed4dc6de0c4374.woff')format("woff");}.ff9b{font-family:ff9b;line-height:0.842000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9c;src:url('chunks/assets/font_7032bb4ad56e0bbf2add6a86.woff')format("woff");}.ff9c{font-family:ff9c;line-height:0.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9d;src:url('chunks/assets/font_abe9f9897e0a8f46a5cb8474.woff')format("woff");}.ff9d{font-family:ff9d;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9e;src:url('chunks/assets/font_de00dce802c4318d6e129381.woff')format("woff");}.ff9e{font-family:ff9e;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9f;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ff9f{font-family:ff9f;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa0;src:url('chunks/assets/font_97fb33a7ad71bf2e28bf0fa2.woff')format("woff");}.ffa0{font-family:ffa0;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa1;src:url('chunks/assets/font_97fb33a7ad71bf2e28bf0fa2.woff')format("woff");}.ffa1{font-family:ffa1;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa2;src:url('chunks/assets/font_e777b50d6962764837861021.woff')format("woff");}.ffa2{font-family:ffa2;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa3;src:url('chunks/assets/font_8633f564560de407371e909f.woff')format("woff");}.ffa3{font-family:ffa3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa4;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ffa4{font-family:ffa4;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa5;src:url('chunks/assets/font_73a649f3af6c5c8e5d9cdf09.woff')format("woff");}.ffa5{font-family:ffa5;line-height:2.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa6;src:url('chunks/assets/font_afa60a668d9966d39197e363.woff')format("woff");}.ffa6{font-family:ffa6;line-height:0.842000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa7;src:url('chunks/assets/font_6fa0bd08bfc3def53916f5f7.woff')format("woff");}.ffa7{font-family:ffa7;line-height:0.889000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa8;src:url('chunks/assets/font_13344dae577a098c6b4e6f9b.woff')format("woff");}.ffa8{font-family:ffa8;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa9;src:url('chunks/assets/font_bb22cff848b1f55e756aa39a.woff')format("woff");}.ffa9{font-family:ffa9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffaa;src:url('chunks/assets/font_a5eebd82f50bffef23259dab.woff')format("woff");}.ffaa{font-family:ffaa;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffab;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ffab{font-family:ffab;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffac;src:url('chunks/assets/font_fc6fcc74dc2fa832679bf63d.woff')format("woff");}.ffac{font-family:ffac;line-height:1.230000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffad;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ffad{font-family:ffad;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffae;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ffae{font-family:ffae;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffaf;src:url('chunks/assets/font_89afe7f8c35493aba32784e9.woff')format("woff");}.ffaf{font-family:ffaf;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb0;src:url('chunks/assets/font_abe9f9897e0a8f46a5cb8474.woff')format("woff");}.ffb0{font-family:ffb0;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb1;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ffb1{font-family:ffb1;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb2;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ffb2{font-family:ffb2;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb3;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ffb3{font-family:ffb3;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb4;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ffb4{font-family:ffb4;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb5;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ffb5{font-family:ffb5;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb6;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ffb6{font-family:ffb6;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb7;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ffb7{font-family:ffb7;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb8;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ffb8{font-family:ffb8;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb9;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ffb9{font-family:ffb9;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffba;src:url('chunks/assets/font_a05bcb77f759e602adc8cfe7.woff')format("woff");}.ffba{font-family:ffba;line-height:0.842000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbb;src:url('chunks/assets/font_a05bcb77f759e602adc8cfe7.woff')format("woff");}.ffbb{font-family:ffbb;line-height:0.842000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbc;src:url('chunks/assets/font_7ed4e1ab929f84ecf49591b2.woff')format("woff");}.ffbc{font-family:ffbc;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbd;src:url('chunks/assets/font_c463597c6a19bdc617ded4b5.woff')format("woff");}.ffbd{font-family:ffbd;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbe;src:url('chunks/assets/font_3e2e84d40df2db0118b9661b.woff')format("woff");}.ffbe{font-family:ffbe;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbf;src:url('chunks/assets/font_e2e4fa92e566ccaae58994f8.woff')format("woff");}.ffbf{font-family:ffbf;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc0;src:url('chunks/assets/font_f999bd6d63d856e7c1480f7e.woff')format("woff");}.ffc0{font-family:ffc0;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc1;src:url('chunks/assets/font_c68764c43ebd152ad4edf556.woff')format("woff");}.ffc1{font-family:ffc1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc2;src:url('chunks/assets/font_c463597c6a19bdc617ded4b5.woff')format("woff");}.ffc2{font-family:ffc2;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc3;src:url('chunks/assets/font_7ed4e1ab929f84ecf49591b2.woff')format("woff");}.ffc3{font-family:ffc3;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc4;src:url('chunks/assets/font_e2e4fa92e566ccaae58994f8.woff')format("woff");}.ffc4{font-family:ffc4;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc5;src:url('chunks/assets/font_c463597c6a19bdc617ded4b5.woff')format("woff");}.ffc5{font-family:ffc5;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc6;src:url('chunks/assets/font_3e2e84d40df2db0118b9661b.woff')format("woff");}.ffc6{font-family:ffc6;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc7;src:url('chunks/assets/font_f999bd6d63d856e7c1480f7e.woff')format("woff");}.ffc7{font-family:ffc7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc8;src:url('chunks/assets/font_c68764c43ebd152ad4edf556.woff')format("woff");}.ffc8{font-family:ffc8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc9;src:url('chunks/assets/font_e2e4fa92e566ccaae58994f8.woff')format("woff");}.ffc9{font-family:ffc9;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffca;src:url('chunks/assets/font_c463597c6a19bdc617ded4b5.woff')format("woff");}.ffca{font-family:ffca;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffcb;src:url('chunks/assets/font_7ed4e1ab929f84ecf49591b2.woff')format("woff");}.ffcb{font-family:ffcb;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffcc;src:url('chunks/assets/font_c7d5b7424d71d83021518a34.woff')format("woff");}.ffcc{font-family:ffcc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffcd;src:url('chunks/assets/font_c463597c6a19bdc617ded4b5.woff')format("woff");}.ffcd{font-family:ffcd;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffce;src:url('chunks/assets/font_3e2e84d40df2db0118b9661b.woff')format("woff");}.ffce{font-family:ffce;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffcf;src:url('chunks/assets/font_e2e4fa92e566ccaae58994f8.woff')format("woff");}.ffcf{font-family:ffcf;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd0;src:url('chunks/assets/font_c68764c43ebd152ad4edf556.woff')format("woff");}.ffd0{font-family:ffd0;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd1;src:url('chunks/assets/font_c7d5b7424d71d83021518a34.woff')format("woff");}.ffd1{font-family:ffd1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd2;src:url('chunks/assets/font_c463597c6a19bdc617ded4b5.woff')format("woff");}.ffd2{font-family:ffd2;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd3;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ffd3{font-family:ffd3;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd4;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ffd4{font-family:ffd4;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd5;src:url('chunks/assets/font_89afe7f8c35493aba32784e9.woff')format("woff");}.ffd5{font-family:ffd5;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd6;src:url('chunks/assets/font_aa9b0db1962f00e54828fb3b.woff')format("woff");}.ffd6{font-family:ffd6;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd7;src:url('chunks/assets/font_6b208b3c99e42e596746eb00.woff')format("woff");}.ffd7{font-family:ffd7;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd8;src:url('chunks/assets/font_a1fc1d6cd4b72c4cf992ba89.woff')format("woff");}.ffd8{font-family:ffd8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd9;src:url('chunks/assets/font_ad418331b5e5abcaf96f7f80.woff')format("woff");}.ffd9{font-family:ffd9;line-height:0.889000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffda;src:url('chunks/assets/font_89afe7f8c35493aba32784e9.woff')format("woff");}.ffda{font-family:ffda;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffdb;src:url('chunks/assets/font_abe9f9897e0a8f46a5cb8474.woff')format("woff");}.ffdb{font-family:ffdb;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffdc;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ffdc{font-family:ffdc;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffdd;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ffdd{font-family:ffdd;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffde;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ffde{font-family:ffde;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffdf;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ffdf{font-family:ffdf;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe0;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ffe0{font-family:ffe0;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe1;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ffe1{font-family:ffe1;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe2;src:url('chunks/assets/font_98a1d8b50e5e4a9c49d2d321.woff')format("woff");}.ffe2{font-family:ffe2;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe3;src:url('chunks/assets/font_f999bd6d63d856e7c1480f7e.woff')format("woff");}.ffe3{font-family:ffe3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe4;src:url('chunks/assets/font_fd2c6f29c89369c79eee467f.woff')format("woff");}.ffe4{font-family:ffe4;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe5;src:url('chunks/assets/font_8252237ba818f52c90f97c83.woff')format("woff");}.ffe5{font-family:ffe5;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe6;src:url('chunks/assets/font_c463597c6a19bdc617ded4b5.woff')format("woff");}.ffe6{font-family:ffe6;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe7;src:url('chunks/assets/font_bb22cff848b1f55e756aa39a.woff')format("woff");}.ffe7{font-family:ffe7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe8;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ffe8{font-family:ffe8;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe9;src:url('chunks/assets/font_89afe7f8c35493aba32784e9.woff')format("woff");}.ffe9{font-family:ffe9;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffea;src:url('chunks/assets/font_a1fc1d6cd4b72c4cf992ba89.woff')format("woff");}.ffea{font-family:ffea;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffeb;src:url('chunks/assets/font_c0a973de1f13e4d49f65d0ce.woff')format("woff");}.ffeb{font-family:ffeb;line-height:0.842000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffec;src:url('chunks/assets/font_89afe7f8c35493aba32784e9.woff')format("woff");}.ffec{font-family:ffec;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffed;src:url('chunks/assets/font_1d2ca54b8b94b40c7367ca5b.woff')format("woff");}.ffed{font-family:ffed;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffee;src:url('chunks/assets/font_89afe7f8c35493aba32784e9.woff')format("woff");}.ffee{font-family:ffee;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffef;src:url('chunks/assets/font_82003ecd203a92572bf21778.woff')format("woff");}.ffef{font-family:ffef;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff0;src:url('chunks/assets/font_89afe7f8c35493aba32784e9.woff')format("woff");}.fff0{font-family:fff0;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff1;src:url('chunks/assets/font_7d8bc9730f67dd0206ecbdcb.woff')format("woff");}.fff1{font-family:fff1;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff2;src:url('chunks/assets/font_89afe7f8c35493aba32784e9.woff')format("woff");}.fff2{font-family:fff2;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff3;src:url('chunks/assets/font_a5eebd82f50bffef23259dab.woff')format("woff");}.fff3{font-family:fff3;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff4;src:url('chunks/assets/font_6426b34f00e25c8c6e9fd46e.woff')format("woff");}.fff4{font-family:fff4;line-height:0.714000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff5;src:url('chunks/assets/font_8633f564560de407371e909f.woff')format("woff");}.fff5{font-family:fff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff6;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.fff6{font-family:fff6;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff7;src:url('chunks/assets/font_91066b458e1ff20b19c3995a.woff')format("woff");}.fff7{font-family:fff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff8;src:url('chunks/assets/font_0344dac0819615edbd8e378e.woff')format("woff");}.fff8{font-family:fff8;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff9;src:url('chunks/assets/font_98a1d8b50e5e4a9c49d2d321.woff')format("woff");}.fff9{font-family:fff9;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fffa;src:url('chunks/assets/font_c55909e3443f80984eba330d.woff')format("woff");}.fffa{font-family:fffa;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fffb;src:url('chunks/assets/font_98a1d8b50e5e4a9c49d2d321.woff')format("woff");}.fffb{font-family:fffb;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fffc;src:url('chunks/assets/font_7a80a135a55ad57de821e7a4.woff')format("woff");}.fffc{font-family:fffc;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fffd;src:url('chunks/assets/font_98a1d8b50e5e4a9c49d2d321.woff')format("woff");}.fffd{font-family:fffd;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fffe;src:url('chunks/assets/font_be00e585b3511b21a1015a11.woff')format("woff");}.fffe{font-family:fffe;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffff;src:url('chunks/assets/font_98a1d8b50e5e4a9c49d2d321.woff')format("woff");}.ffff{font-family:ffff;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff100;src:url('chunks/assets/font_628290637a39f609cec898df.woff')format("woff");}.ff100{font-family:ff100;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff101;src:url('chunks/assets/font_98a1d8b50e5e4a9c49d2d321.woff')format("woff");}.ff101{font-family:ff101;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff102;src:url('chunks/assets/font_be00e585b3511b21a1015a11.woff')format("woff");}.ff102{font-family:ff102;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff103;src:url('chunks/assets/font_8252237ba818f52c90f97c83.woff')format("woff");}.ff103{font-family:ff103;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff104;src:url('chunks/assets/font_c463597c6a19bdc617ded4b5.woff')format("woff");}.ff104{font-family:ff104;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff105;src:url('chunks/assets/font_c68764c43ebd152ad4edf556.woff')format("woff");}.ff105{font-family:ff105;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff106;src:url('chunks/assets/font_c463597c6a19bdc617ded4b5.woff')format("woff");}.ff106{font-family:ff106;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff107;src:url('chunks/assets/font_aff41bd015e8957974ff5bef.woff')format("woff");}.ff107{font-family:ff107;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff108;src:url('chunks/assets/font_f47196749b2a7c79a0feab25.woff')format("woff");}.ff108{font-family:ff108;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff109;src:url('chunks/assets/font_91066b458e1ff20b19c3995a.woff')format("woff");}.ff109{font-family:ff109;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10a;src:url('chunks/assets/font_40dd1676a944142640310d55.woff')format("woff");}.ff10a{font-family:ff10a;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10b;src:url('chunks/assets/font_f999bd6d63d856e7c1480f7e.woff')format("woff");}.ff10b{font-family:ff10b;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10c;src:url('chunks/assets/font_8252237ba818f52c90f97c83.woff')format("woff");}.ff10c{font-family:ff10c;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10d;src:url('chunks/assets/font_c463597c6a19bdc617ded4b5.woff')format("woff");}.ff10d{font-family:ff10d;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10e;src:url('chunks/assets/font_c68764c43ebd152ad4edf556.woff')format("woff");}.ff10e{font-family:ff10e;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10f;src:url('chunks/assets/font_c463597c6a19bdc617ded4b5.woff')format("woff");}.ff10f{font-family:ff10f;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff110;src:url('chunks/assets/font_aff41bd015e8957974ff5bef.woff')format("woff");}.ff110{font-family:ff110;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff111;src:url('chunks/assets/font_f47196749b2a7c79a0feab25.woff')format("woff");}.ff111{font-family:ff111;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff112;src:url('chunks/assets/font_91066b458e1ff20b19c3995a.woff')format("woff");}.ff112{font-family:ff112;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff113;src:url('chunks/assets/font_40dd1676a944142640310d55.woff')format("woff");}.ff113{font-family:ff113;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff114;src:url('chunks/assets/font_f999bd6d63d856e7c1480f7e.woff')format("woff");}.ff114{font-family:ff114;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff115;src:url('chunks/assets/font_8252237ba818f52c90f97c83.woff')format("woff");}.ff115{font-family:ff115;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff116;src:url('chunks/assets/font_c463597c6a19bdc617ded4b5.woff')format("woff");}.ff116{font-family:ff116;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff117;src:url('chunks/assets/font_c68764c43ebd152ad4edf556.woff')format("woff");}.ff117{font-family:ff117;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff118;src:url('chunks/assets/font_c463597c6a19bdc617ded4b5.woff')format("woff");}.ff118{font-family:ff118;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff119;src:url('chunks/assets/font_aff41bd015e8957974ff5bef.woff')format("woff");}.ff119{font-family:ff119;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11a;src:url('chunks/assets/font_f47196749b2a7c79a0feab25.woff')format("woff");}.ff11a{font-family:ff11a;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11b;src:url('chunks/assets/font_91066b458e1ff20b19c3995a.woff')format("woff");}.ff11b{font-family:ff11b;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11c;src:url('chunks/assets/font_40dd1676a944142640310d55.woff')format("woff");}.ff11c{font-family:ff11c;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11d;src:url('chunks/assets/font_f999bd6d63d856e7c1480f7e.woff')format("woff");}.ff11d{font-family:ff11d;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11e;src:url('chunks/assets/font_aff41bd015e8957974ff5bef.woff')format("woff");}.ff11e{font-family:ff11e;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11f;src:url('chunks/assets/font_f1eba20a0c26baa052210456.woff')format("woff");}.ff11f{font-family:ff11f;line-height:2.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff120;src:url('chunks/assets/font_91066b458e1ff20b19c3995a.woff')format("woff");}.ff120{font-family:ff120;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff121;src:url('chunks/assets/font_40dd1676a944142640310d55.woff')format("woff");}.ff121{font-family:ff121;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff122;src:url('chunks/assets/font_f999bd6d63d856e7c1480f7e.woff')format("woff");}.ff122{font-family:ff122;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff123;src:url('chunks/assets/font_c68764c43ebd152ad4edf556.woff')format("woff");}.ff123{font-family:ff123;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff124;src:url('chunks/assets/font_f476b2ed2082bcbaeb75a155.woff')format("woff");}.ff124{font-family:ff124;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff125;src:url('chunks/assets/font_3e2e84d40df2db0118b9661b.woff')format("woff");}.ff125{font-family:ff125;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff126;src:url('chunks/assets/font_91066b458e1ff20b19c3995a.woff')format("woff");}.ff126{font-family:ff126;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff127;src:url('chunks/assets/font_89afe7f8c35493aba32784e9.woff')format("woff");}.ff127{font-family:ff127;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff128;src:url('chunks/assets/font_e540affd968b3c52b13eb345.woff')format("woff");}.ff128{font-family:ff128;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff129;src:url('chunks/assets/font_a5eebd82f50bffef23259dab.woff')format("woff");}.ff129{font-family:ff129;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12a;src:url('chunks/assets/font_bb22cff848b1f55e756aa39a.woff')format("woff");}.ff12a{font-family:ff12a;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12b;src:url('chunks/assets/font_a05bcb77f759e602adc8cfe7.woff')format("woff");}.ff12b{font-family:ff12b;line-height:0.842000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12c;src:url('chunks/assets/font_7032bb4ad56e0bbf2add6a86.woff')format("woff");}.ff12c{font-family:ff12c;line-height:0.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12d;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ff12d{font-family:ff12d;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12e;src:url('chunks/assets/font_bb22cff848b1f55e756aa39a.woff')format("woff");}.ff12e{font-family:ff12e;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12f;src:url('chunks/assets/font_7032bb4ad56e0bbf2add6a86.woff')format("woff");}.ff12f{font-family:ff12f;line-height:0.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff130;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ff130{font-family:ff130;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff131;src:url('chunks/assets/font_bb22cff848b1f55e756aa39a.woff')format("woff");}.ff131{font-family:ff131;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff132;src:url('chunks/assets/font_7032bb4ad56e0bbf2add6a86.woff')format("woff");}.ff132{font-family:ff132;line-height:0.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff133;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ff133{font-family:ff133;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff134;src:url('chunks/assets/font_f476b2ed2082bcbaeb75a155.woff')format("woff");}.ff134{font-family:ff134;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff135;src:url('chunks/assets/font_dc14bbb01e271da56ed877c9.woff')format("woff");}.ff135{font-family:ff135;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff136;src:url('chunks/assets/font_ef0ff7e6a8e781e1aa4fe146.woff')format("woff");}.ff136{font-family:ff136;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff137;src:url('chunks/assets/font_f476b2ed2082bcbaeb75a155.woff')format("woff");}.ff137{font-family:ff137;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff138;src:url('chunks/assets/font_dc14bbb01e271da56ed877c9.woff')format("woff");}.ff138{font-family:ff138;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff139;src:url('chunks/assets/font_e4551addbce568ce9860f210.woff')format("woff");}.ff139{font-family:ff139;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13a;src:url('chunks/assets/font_f407948ba970227b1903c09a.woff')format("woff");}.ff13a{font-family:ff13a;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13b;src:url('chunks/assets/font_98a1d8b50e5e4a9c49d2d321.woff')format("woff");}.ff13b{font-family:ff13b;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13c;src:url('chunks/assets/font_91066b458e1ff20b19c3995a.woff')format("woff");}.ff13c{font-family:ff13c;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13d;src:url('chunks/assets/font_e2e4fa92e566ccaae58994f8.woff')format("woff");}.ff13d{font-family:ff13d;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13e;src:url('chunks/assets/font_f999bd6d63d856e7c1480f7e.woff')format("woff");}.ff13e{font-family:ff13e;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13f;src:url('chunks/assets/font_cc19c66bbc916ba0f9ee1669.woff')format("woff");}.ff13f{font-family:ff13f;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff140;src:url('chunks/assets/font_98a1d8b50e5e4a9c49d2d321.woff')format("woff");}.ff140{font-family:ff140;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff141;src:url('chunks/assets/font_91066b458e1ff20b19c3995a.woff')format("woff");}.ff141{font-family:ff141;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff142;src:url('chunks/assets/font_e2e4fa92e566ccaae58994f8.woff')format("woff");}.ff142{font-family:ff142;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff143;src:url('chunks/assets/font_f999bd6d63d856e7c1480f7e.woff')format("woff");}.ff143{font-family:ff143;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff144;src:url('chunks/assets/font_c68bdfd0c1c92dc5947fd7a1.woff')format("woff");}.ff144{font-family:ff144;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff145;src:url('chunks/assets/font_98a1d8b50e5e4a9c49d2d321.woff')format("woff");}.ff145{font-family:ff145;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff146;src:url('chunks/assets/font_91066b458e1ff20b19c3995a.woff')format("woff");}.ff146{font-family:ff146;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff147;src:url('chunks/assets/font_e2e4fa92e566ccaae58994f8.woff')format("woff");}.ff147{font-family:ff147;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff148;src:url('chunks/assets/font_f999bd6d63d856e7c1480f7e.woff')format("woff");}.ff148{font-family:ff148;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff149;src:url('chunks/assets/font_e8d655f030b1e10593003a0b.woff')format("woff");}.ff149{font-family:ff149;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14a;src:url('chunks/assets/font_98a1d8b50e5e4a9c49d2d321.woff')format("woff");}.ff14a{font-family:ff14a;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14b;src:url('chunks/assets/font_91066b458e1ff20b19c3995a.woff')format("woff");}.ff14b{font-family:ff14b;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14c;src:url('chunks/assets/font_e2e4fa92e566ccaae58994f8.woff')format("woff");}.ff14c{font-family:ff14c;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14d;src:url('chunks/assets/font_f999bd6d63d856e7c1480f7e.woff')format("woff");}.ff14d{font-family:ff14d;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14e;src:url('chunks/assets/font_a09bbf8b55e96a1bb9a3acaa.woff')format("woff");}.ff14e{font-family:ff14e;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14f;src:url('chunks/assets/font_98a1d8b50e5e4a9c49d2d321.woff')format("woff");}.ff14f{font-family:ff14f;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff150;src:url('chunks/assets/font_91066b458e1ff20b19c3995a.woff')format("woff");}.ff150{font-family:ff150;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff151;src:url('chunks/assets/font_e2e4fa92e566ccaae58994f8.woff')format("woff");}.ff151{font-family:ff151;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff152;src:url('chunks/assets/font_f999bd6d63d856e7c1480f7e.woff')format("woff");}.ff152{font-family:ff152;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff153;src:url('chunks/assets/font_c35aabec94af7c61dcc4e10f.woff')format("woff");}.ff153{font-family:ff153;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff154;src:url('chunks/assets/font_98a1d8b50e5e4a9c49d2d321.woff')format("woff");}.ff154{font-family:ff154;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff155;src:url('chunks/assets/font_91066b458e1ff20b19c3995a.woff')format("woff");}.ff155{font-family:ff155;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff156;src:url('chunks/assets/font_e2e4fa92e566ccaae58994f8.woff')format("woff");}.ff156{font-family:ff156;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff157;src:url('chunks/assets/font_f999bd6d63d856e7c1480f7e.woff')format("woff");}.ff157{font-family:ff157;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff158;src:url('chunks/assets/font_f24488ce7e975cd33ea9f96e.woff')format("woff");}.ff158{font-family:ff158;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff159;src:url('chunks/assets/font_98a1d8b50e5e4a9c49d2d321.woff')format("woff");}.ff159{font-family:ff159;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15a;src:url('chunks/assets/font_91066b458e1ff20b19c3995a.woff')format("woff");}.ff15a{font-family:ff15a;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15b;src:url('chunks/assets/font_e2e4fa92e566ccaae58994f8.woff')format("woff");}.ff15b{font-family:ff15b;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15c;src:url('chunks/assets/font_f999bd6d63d856e7c1480f7e.woff')format("woff");}.ff15c{font-family:ff15c;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15d;src:url('chunks/assets/font_0c5e73c723e84076989be2ab.woff')format("woff");}.ff15d{font-family:ff15d;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15e;src:url('chunks/assets/font_98a1d8b50e5e4a9c49d2d321.woff')format("woff");}.ff15e{font-family:ff15e;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15f;src:url('chunks/assets/font_91066b458e1ff20b19c3995a.woff')format("woff");}.ff15f{font-family:ff15f;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff160;src:url('chunks/assets/font_e2e4fa92e566ccaae58994f8.woff')format("woff");}.ff160{font-family:ff160;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff161;src:url('chunks/assets/font_f999bd6d63d856e7c1480f7e.woff')format("woff");}.ff161{font-family:ff161;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff162;src:url('chunks/assets/font_fe62fb2f753cac8928a713dd.woff')format("woff");}.ff162{font-family:ff162;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff163;src:url('chunks/assets/font_6a7952b2b82a23b402044d48.woff')format("woff");}.ff163{font-family:ff163;line-height:0.939000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff164;src:url('chunks/assets/font_89afe7f8c35493aba32784e9.woff')format("woff");}.ff164{font-family:ff164;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff165;src:url('chunks/assets/font_abe9f9897e0a8f46a5cb8474.woff')format("woff");}.ff165{font-family:ff165;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff166;src:url('chunks/assets/font_89afe7f8c35493aba32784e9.woff')format("woff");}.ff166{font-family:ff166;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff167;src:url('chunks/assets/font_abe9f9897e0a8f46a5cb8474.woff')format("woff");}.ff167{font-family:ff167;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff168;src:url('chunks/assets/font_933a422414ad7643a51a937b.woff')format("woff");}.ff168{font-family:ff168;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff169;src:url('chunks/assets/font_89afe7f8c35493aba32784e9.woff')format("woff");}.ff169{font-family:ff169;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16a;src:url('chunks/assets/font_9348821e4ec055efdca22c1f.woff')format("woff");}.ff16a{font-family:ff16a;line-height:0.842000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16b;src:url('chunks/assets/font_bb22cff848b1f55e756aa39a.woff')format("woff");}.ff16b{font-family:ff16b;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16c;src:url('chunks/assets/font_97fb33a7ad71bf2e28bf0fa2.woff')format("woff");}.ff16c{font-family:ff16c;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16d;src:url('chunks/assets/font_a05bcb77f759e602adc8cfe7.woff')format("woff");}.ff16d{font-family:ff16d;line-height:0.842000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16e;src:url('chunks/assets/font_7032bb4ad56e0bbf2add6a86.woff')format("woff");}.ff16e{font-family:ff16e;line-height:0.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16f;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ff16f{font-family:ff16f;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff170;src:url('chunks/assets/font_bb22cff848b1f55e756aa39a.woff')format("woff");}.ff170{font-family:ff170;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff171;src:url('chunks/assets/font_97fb33a7ad71bf2e28bf0fa2.woff')format("woff");}.ff171{font-family:ff171;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff172;src:url('chunks/assets/font_a05bcb77f759e602adc8cfe7.woff')format("woff");}.ff172{font-family:ff172;line-height:0.842000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff173;src:url('chunks/assets/font_7032bb4ad56e0bbf2add6a86.woff')format("woff");}.ff173{font-family:ff173;line-height:0.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff174;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ff174{font-family:ff174;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff175;src:url('chunks/assets/font_6fa0bd08bfc3def53916f5f7.woff')format("woff");}.ff175{font-family:ff175;line-height:0.889000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff176;src:url('chunks/assets/font_6fa0bd08bfc3def53916f5f7.woff')format("woff");}.ff176{font-family:ff176;line-height:0.889000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff177;src:url('chunks/assets/font_a5eebd82f50bffef23259dab.woff')format("woff");}.ff177{font-family:ff177;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff178;src:url('chunks/assets/font_ac4e4de73e9d13055c522963.woff')format("woff");}.ff178{font-family:ff178;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff179;src:url('chunks/assets/font_ee24c91b372ec35d8b8173ad.woff')format("woff");}.ff179{font-family:ff179;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17a;src:url('chunks/assets/font_bb22cff848b1f55e756aa39a.woff')format("woff");}.ff17a{font-family:ff17a;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17b;src:url('chunks/assets/font_97fb33a7ad71bf2e28bf0fa2.woff')format("woff");}.ff17b{font-family:ff17b;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17c;src:url('chunks/assets/font_a05bcb77f759e602adc8cfe7.woff')format("woff");}.ff17c{font-family:ff17c;line-height:0.842000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17d;src:url('chunks/assets/font_7032bb4ad56e0bbf2add6a86.woff')format("woff");}.ff17d{font-family:ff17d;line-height:0.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17e;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ff17e{font-family:ff17e;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17f;src:url('chunks/assets/font_bb22cff848b1f55e756aa39a.woff')format("woff");}.ff17f{font-family:ff17f;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff180;src:url('chunks/assets/font_97fb33a7ad71bf2e28bf0fa2.woff')format("woff");}.ff180{font-family:ff180;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff181;src:url('chunks/assets/font_a05bcb77f759e602adc8cfe7.woff')format("woff");}.ff181{font-family:ff181;line-height:0.842000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff182;src:url('chunks/assets/font_7032bb4ad56e0bbf2add6a86.woff')format("woff");}.ff182{font-family:ff182;line-height:0.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff183;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ff183{font-family:ff183;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff184;src:url('chunks/assets/font_bb22cff848b1f55e756aa39a.woff')format("woff");}.ff184{font-family:ff184;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff185;src:url('chunks/assets/font_97fb33a7ad71bf2e28bf0fa2.woff')format("woff");}.ff185{font-family:ff185;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff186;src:url('chunks/assets/font_a05bcb77f759e602adc8cfe7.woff')format("woff");}.ff186{font-family:ff186;line-height:0.842000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff187;src:url('chunks/assets/font_7032bb4ad56e0bbf2add6a86.woff')format("woff");}.ff187{font-family:ff187;line-height:0.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff188;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ff188{font-family:ff188;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff189;src:url('chunks/assets/font_bb22cff848b1f55e756aa39a.woff')format("woff");}.ff189{font-family:ff189;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18a;src:url('chunks/assets/font_97fb33a7ad71bf2e28bf0fa2.woff')format("woff");}.ff18a{font-family:ff18a;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18b;src:url('chunks/assets/font_a05bcb77f759e602adc8cfe7.woff')format("woff");}.ff18b{font-family:ff18b;line-height:0.842000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18c;src:url('chunks/assets/font_7032bb4ad56e0bbf2add6a86.woff')format("woff");}.ff18c{font-family:ff18c;line-height:0.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18d;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ff18d{font-family:ff18d;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18e;src:url('chunks/assets/font_b3b202aab8319788ceb78e04.woff')format("woff");}.ff18e{font-family:ff18e;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18f;src:url('chunks/assets/font_aff41bd015e8957974ff5bef.woff')format("woff");}.ff18f{font-family:ff18f;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff190;src:url('chunks/assets/font_11517e199d50f2a246f60e20.woff')format("woff");}.ff190{font-family:ff190;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff191;src:url('chunks/assets/font_aff41bd015e8957974ff5bef.woff')format("woff");}.ff191{font-family:ff191;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff192;src:url('chunks/assets/font_ee27e20a27380a8e740c40b2.woff')format("woff");}.ff192{font-family:ff192;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff193;src:url('chunks/assets/font_98a1d8b50e5e4a9c49d2d321.woff')format("woff");}.ff193{font-family:ff193;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff194;src:url('chunks/assets/font_91066b458e1ff20b19c3995a.woff')format("woff");}.ff194{font-family:ff194;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff195;src:url('chunks/assets/font_e2e4fa92e566ccaae58994f8.woff')format("woff");}.ff195{font-family:ff195;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff196;src:url('chunks/assets/font_f999bd6d63d856e7c1480f7e.woff')format("woff");}.ff196{font-family:ff196;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff197;src:url('chunks/assets/font_17828467d9164cd91e15fea9.woff')format("woff");}.ff197{font-family:ff197;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff198;src:url('chunks/assets/font_98a1d8b50e5e4a9c49d2d321.woff')format("woff");}.ff198{font-family:ff198;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff199;src:url('chunks/assets/font_91066b458e1ff20b19c3995a.woff')format("woff");}.ff199{font-family:ff199;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19a;src:url('chunks/assets/font_e2e4fa92e566ccaae58994f8.woff')format("woff");}.ff19a{font-family:ff19a;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19b;src:url('chunks/assets/font_f999bd6d63d856e7c1480f7e.woff')format("woff");}.ff19b{font-family:ff19b;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19c;src:url('chunks/assets/font_e819629db82bd2624970b0f4.woff')format("woff");}.ff19c{font-family:ff19c;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19d;src:url('chunks/assets/font_98a1d8b50e5e4a9c49d2d321.woff')format("woff");}.ff19d{font-family:ff19d;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19e;src:url('chunks/assets/font_91066b458e1ff20b19c3995a.woff')format("woff");}.ff19e{font-family:ff19e;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19f;src:url('chunks/assets/font_e2e4fa92e566ccaae58994f8.woff')format("woff");}.ff19f{font-family:ff19f;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a0;src:url('chunks/assets/font_f999bd6d63d856e7c1480f7e.woff')format("woff");}.ff1a0{font-family:ff1a0;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a1;src:url('chunks/assets/font_554b47e6f2d08cd263efebc4.woff')format("woff");}.ff1a1{font-family:ff1a1;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a2;src:url('chunks/assets/font_98a1d8b50e5e4a9c49d2d321.woff')format("woff");}.ff1a2{font-family:ff1a2;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a3;src:url('chunks/assets/font_91066b458e1ff20b19c3995a.woff')format("woff");}.ff1a3{font-family:ff1a3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a4;src:url('chunks/assets/font_e2e4fa92e566ccaae58994f8.woff')format("woff");}.ff1a4{font-family:ff1a4;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a5;src:url('chunks/assets/font_f999bd6d63d856e7c1480f7e.woff')format("woff");}.ff1a5{font-family:ff1a5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a6;src:url('chunks/assets/font_6fc1a0c9acfd50e913cb7e2f.woff')format("woff");}.ff1a6{font-family:ff1a6;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a7;src:url('chunks/assets/font_98a1d8b50e5e4a9c49d2d321.woff')format("woff");}.ff1a7{font-family:ff1a7;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a8;src:url('chunks/assets/font_91066b458e1ff20b19c3995a.woff')format("woff");}.ff1a8{font-family:ff1a8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a9;src:url('chunks/assets/font_e2e4fa92e566ccaae58994f8.woff')format("woff");}.ff1a9{font-family:ff1a9;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1aa;src:url('chunks/assets/font_f999bd6d63d856e7c1480f7e.woff')format("woff");}.ff1aa{font-family:ff1aa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ab;src:url('chunks/assets/font_ff12e42ec85f64f0916bc9ff.woff')format("woff");}.ff1ab{font-family:ff1ab;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ac;src:url('chunks/assets/font_98a1d8b50e5e4a9c49d2d321.woff')format("woff");}.ff1ac{font-family:ff1ac;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ad;src:url('chunks/assets/font_91066b458e1ff20b19c3995a.woff')format("woff");}.ff1ad{font-family:ff1ad;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ae;src:url('chunks/assets/font_e2e4fa92e566ccaae58994f8.woff')format("woff");}.ff1ae{font-family:ff1ae;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1af;src:url('chunks/assets/font_f999bd6d63d856e7c1480f7e.woff')format("woff");}.ff1af{font-family:ff1af;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b0;src:url('chunks/assets/font_ad735d48c2d18e5998e13791.woff')format("woff");}.ff1b0{font-family:ff1b0;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b1;src:url('chunks/assets/font_98a1d8b50e5e4a9c49d2d321.woff')format("woff");}.ff1b1{font-family:ff1b1;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b2;src:url('chunks/assets/font_91066b458e1ff20b19c3995a.woff')format("woff");}.ff1b2{font-family:ff1b2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b3;src:url('chunks/assets/font_e2e4fa92e566ccaae58994f8.woff')format("woff");}.ff1b3{font-family:ff1b3;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b4;src:url('chunks/assets/font_f999bd6d63d856e7c1480f7e.woff')format("woff");}.ff1b4{font-family:ff1b4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b5;src:url('chunks/assets/font_c475b39a582a9b71e2f9df7f.woff')format("woff");}.ff1b5{font-family:ff1b5;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b6;src:url('chunks/assets/font_98a1d8b50e5e4a9c49d2d321.woff')format("woff");}.ff1b6{font-family:ff1b6;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b7;src:url('chunks/assets/font_91066b458e1ff20b19c3995a.woff')format("woff");}.ff1b7{font-family:ff1b7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b8;src:url('chunks/assets/font_e2e4fa92e566ccaae58994f8.woff')format("woff");}.ff1b8{font-family:ff1b8;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b9;src:url('chunks/assets/font_f999bd6d63d856e7c1480f7e.woff')format("woff");}.ff1b9{font-family:ff1b9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ba;src:url('chunks/assets/font_e2390da8b2e50bd4f40b474a.woff')format("woff");}.ff1ba{font-family:ff1ba;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1bb;src:url('chunks/assets/font_98a1d8b50e5e4a9c49d2d321.woff')format("woff");}.ff1bb{font-family:ff1bb;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1bc;src:url('chunks/assets/font_91066b458e1ff20b19c3995a.woff')format("woff");}.ff1bc{font-family:ff1bc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1bd;src:url('chunks/assets/font_e2e4fa92e566ccaae58994f8.woff')format("woff");}.ff1bd{font-family:ff1bd;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1be;src:url('chunks/assets/font_f999bd6d63d856e7c1480f7e.woff')format("woff");}.ff1be{font-family:ff1be;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1bf;src:url('chunks/assets/font_f649f696cab894098c482929.woff')format("woff");}.ff1bf{font-family:ff1bf;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c0;src:url('chunks/assets/font_98a1d8b50e5e4a9c49d2d321.woff')format("woff");}.ff1c0{font-family:ff1c0;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c1;src:url('chunks/assets/font_91066b458e1ff20b19c3995a.woff')format("woff");}.ff1c1{font-family:ff1c1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c2;src:url('chunks/assets/font_e2e4fa92e566ccaae58994f8.woff')format("woff");}.ff1c2{font-family:ff1c2;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c3;src:url('chunks/assets/font_f999bd6d63d856e7c1480f7e.woff')format("woff");}.ff1c3{font-family:ff1c3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c4;src:url('chunks/assets/font_158caca98e08a0c90857ff1d.woff')format("woff");}.ff1c4{font-family:ff1c4;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c5;src:url('chunks/assets/font_98a1d8b50e5e4a9c49d2d321.woff')format("woff");}.ff1c5{font-family:ff1c5;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c6;src:url('chunks/assets/font_91066b458e1ff20b19c3995a.woff')format("woff");}.ff1c6{font-family:ff1c6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c7;src:url('chunks/assets/font_e2e4fa92e566ccaae58994f8.woff')format("woff");}.ff1c7{font-family:ff1c7;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c8;src:url('chunks/assets/font_f999bd6d63d856e7c1480f7e.woff')format("woff");}.ff1c8{font-family:ff1c8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c9;src:url('chunks/assets/font_7f56af86b9cf3b25b618da72.woff')format("woff");}.ff1c9{font-family:ff1c9;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ca;src:url('chunks/assets/font_98a1d8b50e5e4a9c49d2d321.woff')format("woff");}.ff1ca{font-family:ff1ca;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1cb;src:url('chunks/assets/font_91066b458e1ff20b19c3995a.woff')format("woff");}.ff1cb{font-family:ff1cb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1cc;src:url('chunks/assets/font_e2e4fa92e566ccaae58994f8.woff')format("woff");}.ff1cc{font-family:ff1cc;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1cd;src:url('chunks/assets/font_f999bd6d63d856e7c1480f7e.woff')format("woff");}.ff1cd{font-family:ff1cd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ce;src:url('chunks/assets/font_f24488ce7e975cd33ea9f96e.woff')format("woff");}.ff1ce{font-family:ff1ce;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1cf;src:url('chunks/assets/font_98a1d8b50e5e4a9c49d2d321.woff')format("woff");}.ff1cf{font-family:ff1cf;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d0;src:url('chunks/assets/font_91066b458e1ff20b19c3995a.woff')format("woff");}.ff1d0{font-family:ff1d0;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d1;src:url('chunks/assets/font_e2e4fa92e566ccaae58994f8.woff')format("woff");}.ff1d1{font-family:ff1d1;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d2;src:url('chunks/assets/font_f999bd6d63d856e7c1480f7e.woff')format("woff");}.ff1d2{font-family:ff1d2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d3;src:url('chunks/assets/font_4960ec63aca8f167dd03bcbd.woff')format("woff");}.ff1d3{font-family:ff1d3;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d4;src:url('chunks/assets/font_98a1d8b50e5e4a9c49d2d321.woff')format("woff");}.ff1d4{font-family:ff1d4;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d5;src:url('chunks/assets/font_91066b458e1ff20b19c3995a.woff')format("woff");}.ff1d5{font-family:ff1d5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d6;src:url('chunks/assets/font_e2e4fa92e566ccaae58994f8.woff')format("woff");}.ff1d6{font-family:ff1d6;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d7;src:url('chunks/assets/font_f999bd6d63d856e7c1480f7e.woff')format("woff");}.ff1d7{font-family:ff1d7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d8;src:url('chunks/assets/font_2287964247290747fe2ac494.woff')format("woff");}.ff1d8{font-family:ff1d8;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d9;src:url('chunks/assets/font_98a1d8b50e5e4a9c49d2d321.woff')format("woff");}.ff1d9{font-family:ff1d9;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1da;src:url('chunks/assets/font_91066b458e1ff20b19c3995a.woff')format("woff");}.ff1da{font-family:ff1da;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1db;src:url('chunks/assets/font_e2e4fa92e566ccaae58994f8.woff')format("woff");}.ff1db{font-family:ff1db;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1dc;src:url('chunks/assets/font_f999bd6d63d856e7c1480f7e.woff')format("woff");}.ff1dc{font-family:ff1dc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1dd;src:url('chunks/assets/font_32a66f7b121a3dd68470bbf2.woff')format("woff");}.ff1dd{font-family:ff1dd;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1de;src:url('chunks/assets/font_98a1d8b50e5e4a9c49d2d321.woff')format("woff");}.ff1de{font-family:ff1de;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1df;src:url('chunks/assets/font_91066b458e1ff20b19c3995a.woff')format("woff");}.ff1df{font-family:ff1df;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e0;src:url('chunks/assets/font_e2e4fa92e566ccaae58994f8.woff')format("woff");}.ff1e0{font-family:ff1e0;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e1;src:url('chunks/assets/font_f999bd6d63d856e7c1480f7e.woff')format("woff");}.ff1e1{font-family:ff1e1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e2;src:url('chunks/assets/font_09535683a0bc1bbf2d20b570.woff')format("woff");}.ff1e2{font-family:ff1e2;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v15{vertical-align:-84.283594px;}
.v13{vertical-align:-66.350914px;}
.ve{vertical-align:-48.418235px;}
.v17{vertical-align:-21.581909px;}
.v1{vertical-align:-20.399963px;}
.vf{vertical-align:-13.799927px;}
.v6{vertical-align:-10.788025px;}
.v8{vertical-align:-8.963928px;}
.v18{vertical-align:-7.200073px;}
.v7{vertical-align:-5.982056px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:7.322128px;}
.v9{vertical-align:8.963928px;}
.v19{vertical-align:11.516418px;}
.v4{vertical-align:14.780834px;}
.va{vertical-align:16.286062px;}
.v10{vertical-align:17.567966px;}
.v16{vertical-align:21.696030px;}
.v2{vertical-align:24.000000px;}
.v3{vertical-align:26.058838px;}
.v5{vertical-align:40.838573px;}
.v11{vertical-align:43.097996px;}
.v1a{vertical-align:46.181396px;}
.vc{vertical-align:48.418235px;}
.vd{vertical-align:59.213928px;}
.v12{vertical-align:138.252502px;}
.v14{vertical-align:156.179987px;}
.ls48{letter-spacing:-2.220000px;}
.ls4b{letter-spacing:-1.581000px;}
.ls6b{letter-spacing:-0.900000px;}
.ls5e{letter-spacing:-0.816000px;}
.ls35{letter-spacing:-0.600000px;}
.ls34{letter-spacing:-0.300000px;}
.ls6c{letter-spacing:-0.255000px;}
.ls3{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.000039px;}
.lsc{letter-spacing:0.000042px;}
.ls22{letter-spacing:0.000044px;}
.ls3d{letter-spacing:0.000065px;}
.ls21{letter-spacing:0.000086px;}
.ls24{letter-spacing:0.000134px;}
.ls50{letter-spacing:0.000183px;}
.ls1b{letter-spacing:0.000225px;}
.ls46{letter-spacing:0.000583px;}
.ls4{letter-spacing:0.000652px;}
.lsf{letter-spacing:0.002297px;}
.ls16{letter-spacing:0.004749px;}
.ls14{letter-spacing:0.004932px;}
.ls25{letter-spacing:0.005833px;}
.ls2b{letter-spacing:0.006039px;}
.ls69{letter-spacing:0.008383px;}
.ls4a{letter-spacing:0.008399px;}
.ls1d{letter-spacing:0.009426px;}
.lsb{letter-spacing:0.009609px;}
.ls49{letter-spacing:0.009613px;}
.ls67{letter-spacing:0.010170px;}
.ls56{letter-spacing:0.011157px;}
.ls19{letter-spacing:0.011879px;}
.ls51{letter-spacing:0.011939px;}
.ls2e{letter-spacing:0.016151px;}
.ls12{letter-spacing:0.022097px;}
.ls33{letter-spacing:0.022102px;}
.ls23{letter-spacing:0.022142px;}
.ls1a{letter-spacing:0.024181px;}
.ls59{letter-spacing:0.024875px;}
.ls3a{letter-spacing:0.030041px;}
.ls66{letter-spacing:0.030132px;}
.ls17{letter-spacing:0.030224px;}
.ls43{letter-spacing:0.036138px;}
.ls29{letter-spacing:0.038189px;}
.ls45{letter-spacing:0.298878px;}
.ls3b{letter-spacing:0.299194px;}
.ls37{letter-spacing:0.299927px;}
.ls36{letter-spacing:0.300000px;}
.ls5d{letter-spacing:0.355664px;}
.ls53{letter-spacing:0.478205px;}
.ls5f{letter-spacing:0.900000px;}
.ls42{letter-spacing:1.046070px;}
.ls4e{letter-spacing:1.778322px;}
.ls1c{letter-spacing:2.050297px;}
.ls28{letter-spacing:2.301354px;}
.lsd{letter-spacing:2.343197px;}
.ls18{letter-spacing:2.426882px;}
.ls32{letter-spacing:2.971884px;}
.ls20{letter-spacing:2.984263px;}
.ls4c{letter-spacing:2.992861px;}
.ls5a{letter-spacing:2.995065px;}
.ls0{letter-spacing:3.990000px;}
.ls47{letter-spacing:4.480258px;}
.lsa{letter-spacing:4.515582px;}
.ls4d{letter-spacing:5.466711px;}
.ls15{letter-spacing:5.963316px;}
.ls2f{letter-spacing:5.963865px;}
.ls2a{letter-spacing:5.963911px;}
.ls2d{letter-spacing:5.963957px;}
.lse{letter-spacing:6.443791px;}
.ls39{letter-spacing:6.546215px;}
.ls38{letter-spacing:6.546398px;}
.ls3e{letter-spacing:6.754643px;}
.ls26{letter-spacing:7.683429px;}
.ls1f{letter-spacing:8.304058px;}
.ls58{letter-spacing:9.040451px;}
.ls30{letter-spacing:9.922749px;}
.ls3f{letter-spacing:9.982525px;}
.ls11{letter-spacing:10.293329px;}
.ls61{letter-spacing:11.635306px;}
.ls4f{letter-spacing:12.950233px;}
.ls8{letter-spacing:13.270183px;}
.ls68{letter-spacing:13.748388px;}
.ls3c{letter-spacing:13.975787px;}
.ls62{letter-spacing:14.480622px;}
.ls55{letter-spacing:14.531431px;}
.ls6a{letter-spacing:15.708000px;}
.ls5c{letter-spacing:15.903279px;}
.ls5b{letter-spacing:15.954088px;}
.ls60{letter-spacing:16.004897px;}
.ls44{letter-spacing:16.557841px;}
.ls6{letter-spacing:16.617616px;}
.ls52{letter-spacing:18.291333px;}
.ls41{letter-spacing:19.586602px;}
.ls27{letter-spacing:19.599552px;}
.ls2c{letter-spacing:19.602737px;}
.ls54{letter-spacing:19.613444px;}
.ls9{letter-spacing:20.136672px;}
.ls5{letter-spacing:20.615458px;}
.ls1e{letter-spacing:20.615461px;}
.ls10{letter-spacing:22.566038px;}
.ls40{letter-spacing:23.372259px;}
.ls7{letter-spacing:25.791493px;}
.ls13{letter-spacing:25.883909px;}
.ls1{letter-spacing:27.307191px;}
.ls2{letter-spacing:53.015396px;}
.ls57{letter-spacing:63.788983px;}
.ls64{letter-spacing:196.816711px;}
.ls63{letter-spacing:212.835763px;}
.ls65{letter-spacing:213.785040px;}
.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;}
}
.ws168{word-spacing:-224.780829px;}
.ws165{word-spacing:-223.831552px;}
.ws167{word-spacing:-207.812500px;}
.ws16f{word-spacing:-16.677392px;}
.wsd5{word-spacing:-16.617616px;}
.wsed{word-spacing:-16.557841px;}
.ws162{word-spacing:-15.900000px;}
.ws2{word-spacing:-15.000000px;}
.ws1{word-spacing:-14.544000px;}
.ws163{word-spacing:-14.531431px;}
.ws17c{word-spacing:-14.400000px;}
.ws17e{word-spacing:-14.100000px;}
.wsf7{word-spacing:-12.780000px;}
.wsab{word-spacing:-12.750000px;}
.ws6{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.120000px;}
.ws150{word-spacing:-11.934000px;}
.ws5{word-spacing:-11.520000px;}
.ws0{word-spacing:-9.996000px;}
.ws17d{word-spacing:-9.792000px;}
.ws3{word-spacing:-8.925000px;}
.ws7{word-spacing:-8.064000px;}
.ws5b{word-spacing:-5.160000px;}
.wsdb{word-spacing:-4.380000px;}
.wsd3{word-spacing:-4.080000px;}
.ws1ac{word-spacing:-4.029000px;}
.ws79{word-spacing:-4.020000px;}
.ws16a{word-spacing:-3.960000px;}
.ws180{word-spacing:-3.900000px;}
.ws190{word-spacing:-3.840000px;}
.ws89{word-spacing:-3.780000px;}
.ws187{word-spacing:-3.468000px;}
.ws15c{word-spacing:-3.420000px;}
.ws16c{word-spacing:-3.360000px;}
.ws17f{word-spacing:-3.300000px;}
.wsd2{word-spacing:-3.240000px;}
.ws28{word-spacing:-3.120000px;}
.ws137{word-spacing:-2.940000px;}
.wsc1{word-spacing:-2.880000px;}
.ws68{word-spacing:-2.820000px;}
.wsf2{word-spacing:-2.760000px;}
.ws88{word-spacing:-2.700000px;}
.ws10b{word-spacing:-2.640000px;}
.ws13c{word-spacing:-2.580000px;}
.ws2a{word-spacing:-2.520000px;}
.ws1b6{word-spacing:-2.499000px;}
.ws63{word-spacing:-2.460000px;}
.ws9a{word-spacing:-2.400000px;}
.ws161{word-spacing:-2.397000px;}
.wsc4{word-spacing:-2.340000px;}
.ws1d4{word-spacing:-2.295000px;}
.ws87{word-spacing:-2.280000px;}
.ws147{word-spacing:-2.220000px;}
.ws1b{word-spacing:-2.160000px;}
.ws97{word-spacing:-2.100000px;}
.ws19c{word-spacing:-2.091000px;}
.wsf8{word-spacing:-2.040000px;}
.ws194{word-spacing:-1.989000px;}
.wscc{word-spacing:-1.980000px;}
.ws17b{word-spacing:-1.938000px;}
.ws8b{word-spacing:-1.920000px;}
.ws86{word-spacing:-1.860000px;}
.ws160{word-spacing:-1.836000px;}
.ws12a{word-spacing:-1.829131px;}
.ws3e{word-spacing:-1.800000px;}
.ws14d{word-spacing:-1.785000px;}
.ws13d{word-spacing:-1.778322px;}
.wsb0{word-spacing:-1.740000px;}
.ws1d7{word-spacing:-1.734000px;}
.ws176{word-spacing:-1.680000px;}
.ws1a8{word-spacing:-1.632000px;}
.ws14b{word-spacing:-1.620000px;}
.ws1bb{word-spacing:-1.581000px;}
.ws59{word-spacing:-1.560000px;}
.ws1a6{word-spacing:-1.530000px;}
.ws7c{word-spacing:-1.500000px;}
.ws17a{word-spacing:-1.479000px;}
.ws148{word-spacing:-1.440000px;}
.ws185{word-spacing:-1.428000px;}
.ws8a{word-spacing:-1.380000px;}
.ws14c{word-spacing:-1.377000px;}
.ws24{word-spacing:-1.320000px;}
.ws1c3{word-spacing:-1.275000px;}
.ws10d{word-spacing:-1.260000px;}
.ws105{word-spacing:-1.200000px;}
.ws5e{word-spacing:-1.140000px;}
.ws1b2{word-spacing:-1.122000px;}
.ws51{word-spacing:-1.080000px;}
.ws1cd{word-spacing:-1.071000px;}
.ws34{word-spacing:-1.020000px;}
.ws1ae{word-spacing:-0.969000px;}
.ws32{word-spacing:-0.960000px;}
.wse5{word-spacing:-0.900000px;}
.ws3f{word-spacing:-0.840000px;}
.ws5a{word-spacing:-0.780000px;}
.ws1d2{word-spacing:-0.765000px;}
.ws7e{word-spacing:-0.720000px;}
.ws1b3{word-spacing:-0.714000px;}
.ws14e{word-spacing:-0.663000px;}
.wsac{word-spacing:-0.660000px;}
.wsad{word-spacing:-0.600000px;}
.ws8{word-spacing:-0.570000px;}
.ws15f{word-spacing:-0.561000px;}
.ws72{word-spacing:-0.540000px;}
.wsa6{word-spacing:-0.480000px;}
.ws1a5{word-spacing:-0.459000px;}
.ws119{word-spacing:-0.420000px;}
.ws2c{word-spacing:-0.360000px;}
.ws1de{word-spacing:-0.306000px;}
.ws65{word-spacing:-0.300000px;}
.ws1dd{word-spacing:-0.255000px;}
.wsee{word-spacing:-0.240000px;}
.wsc6{word-spacing:-0.180000px;}
.ws127{word-spacing:-0.153000px;}
.ws6b{word-spacing:-0.120000px;}
.wsa9{word-spacing:-0.060000px;}
.wsaa{word-spacing:-0.059776px;}
.ws10a{word-spacing:-0.051000px;}
.ws128{word-spacing:-0.050809px;}
.wsbd{word-spacing:-0.041843px;}
.ws12b{word-spacing:-0.035566px;}
.wsda{word-spacing:-0.029888px;}
.ws9{word-spacing:0.000000px;}
.ws21{word-spacing:0.060000px;}
.ws1a0{word-spacing:0.102000px;}
.ws98{word-spacing:0.120000px;}
.ws1cc{word-spacing:0.153000px;}
.ws112{word-spacing:0.180000px;}
.wsb8{word-spacing:0.240000px;}
.ws1ab{word-spacing:0.255000px;}
.ws4a{word-spacing:0.300000px;}
.ws1bc{word-spacing:0.357000px;}
.ws16{word-spacing:0.360000px;}
.ws184{word-spacing:0.408000px;}
.ws5c{word-spacing:0.420000px;}
.ws95{word-spacing:0.480000px;}
.ws186{word-spacing:0.510000px;}
.wse1{word-spacing:0.540000px;}
.ws18c{word-spacing:0.561000px;}
.wsc3{word-spacing:0.600000px;}
.ws102{word-spacing:0.660000px;}
.ws1cb{word-spacing:0.663000px;}
.ws1dc{word-spacing:0.714000px;}
.ws118{word-spacing:0.720000px;}
.ws1b4{word-spacing:0.765000px;}
.wsfa{word-spacing:0.780000px;}
.ws1ba{word-spacing:0.816000px;}
.ws93{word-spacing:0.840000px;}
.ws80{word-spacing:0.900000px;}
.ws1c9{word-spacing:0.918000px;}
.ws76{word-spacing:0.960000px;}
.ws81{word-spacing:1.020000px;}
.ws1b9{word-spacing:1.071000px;}
.ws3d{word-spacing:1.080000px;}
.ws35{word-spacing:1.140000px;}
.ws101{word-spacing:1.200000px;}
.ws1c1{word-spacing:1.224000px;}
.ws29{word-spacing:1.260000px;}
.ws14a{word-spacing:1.320000px;}
.ws183{word-spacing:1.377000px;}
.ws38{word-spacing:1.380000px;}
.ws71{word-spacing:1.440000px;}
.ws3a{word-spacing:1.500000px;}
.ws8f{word-spacing:1.560000px;}
.ws125{word-spacing:1.581000px;}
.wse4{word-spacing:1.620000px;}
.ws142{word-spacing:1.680000px;}
.ws195{word-spacing:1.683000px;}
.ws1c7{word-spacing:1.734000px;}
.ws5f{word-spacing:1.740000px;}
.ws30{word-spacing:1.800000px;}
.wsfc{word-spacing:1.860000px;}
.ws19f{word-spacing:1.887000px;}
.ws43{word-spacing:1.920000px;}
.ws49{word-spacing:1.980000px;}
.ws19e{word-spacing:1.989000px;}
.wseb{word-spacing:2.040000px;}
.ws15d{word-spacing:2.091000px;}
.ws1f{word-spacing:2.100000px;}
.ws1da{word-spacing:2.142000px;}
.ws40{word-spacing:2.160000px;}
.ws18f{word-spacing:2.193000px;}
.ws66{word-spacing:2.220000px;}
.ws178{word-spacing:2.280000px;}
.ws4f{word-spacing:2.340000px;}
.ws1b1{word-spacing:2.346000px;}
.ws1b8{word-spacing:2.397000px;}
.ws107{word-spacing:2.400000px;}
.ws9b{word-spacing:2.460000px;}
.ws9f{word-spacing:2.520000px;}
.wsbb{word-spacing:2.580000px;}
.ws134{word-spacing:2.640000px;}
.ws1df{word-spacing:2.652000px;}
.ws110{word-spacing:2.700000px;}
.ws15e{word-spacing:2.703000px;}
.ws1ce{word-spacing:2.754000px;}
.ws22{word-spacing:2.760000px;}
.ws14{word-spacing:2.820000px;}
.wsc8{word-spacing:2.880000px;}
.ws1ca{word-spacing:2.907000px;}
.wsa5{word-spacing:2.940000px;}
.ws1b7{word-spacing:2.958000px;}
.ws54{word-spacing:3.000000px;}
.ws1c{word-spacing:3.009000px;}
.ws2d{word-spacing:3.060000px;}
.ws126{word-spacing:3.111000px;}
.wsd1{word-spacing:3.120000px;}
.ws2b{word-spacing:3.180000px;}
.ws45{word-spacing:3.240000px;}
.ws10c{word-spacing:3.300000px;}
.wscd{word-spacing:3.360000px;}
.ws1c0{word-spacing:3.417000px;}
.wse{word-spacing:3.420000px;}
.ws7a{word-spacing:3.480000px;}
.wse7{word-spacing:3.540000px;}
.ws1b5{word-spacing:3.570000px;}
.wse9{word-spacing:3.600000px;}
.ws1d5{word-spacing:3.621000px;}
.ws11a{word-spacing:3.660000px;}
.ws13a{word-spacing:3.720000px;}
.ws138{word-spacing:3.780000px;}
.ws60{word-spacing:3.840000px;}
.ws7b{word-spacing:3.900000px;}
.ws1bf{word-spacing:3.927000px;}
.ws56{word-spacing:3.960000px;}
.ws182{word-spacing:3.978000px;}
.ws64{word-spacing:4.020000px;}
.ws1c6{word-spacing:4.029000px;}
.ws73{word-spacing:4.080000px;}
.ws17{word-spacing:4.140000px;}
.wsba{word-spacing:4.200000px;}
.wsb4{word-spacing:4.260000px;}
.ws1a3{word-spacing:4.284000px;}
.ws44{word-spacing:4.320000px;}
.ws117{word-spacing:4.380000px;}
.ws1d8{word-spacing:4.437000px;}
.wsaf{word-spacing:4.440000px;}
.ws18d{word-spacing:4.488000px;}
.ws1a{word-spacing:4.500000px;}
.ws25{word-spacing:4.560000px;}
.ws1cf{word-spacing:4.590000px;}
.wsf0{word-spacing:4.620000px;}
.ws136{word-spacing:4.680000px;}
.ws7d{word-spacing:4.740000px;}
.ws158{word-spacing:4.800000px;}
.ws6a{word-spacing:4.860000px;}
.ws1a7{word-spacing:4.896000px;}
.ws4c{word-spacing:4.920000px;}
.ws139{word-spacing:4.980000px;}
.wsde{word-spacing:5.040000px;}
.ws26{word-spacing:5.100000px;}
.ws52{word-spacing:5.160000px;}
.ws2f{word-spacing:5.280000px;}
.ws196{word-spacing:5.304000px;}
.ws58{word-spacing:5.340000px;}
.wsdd{word-spacing:5.400000px;}
.wsb9{word-spacing:5.460000px;}
.ws198{word-spacing:5.508000px;}
.wsbc{word-spacing:5.520000px;}
.ws1a4{word-spacing:5.559000px;}
.ws5d{word-spacing:5.580000px;}
.ws15b{word-spacing:5.640000px;}
.wsfe{word-spacing:5.700000px;}
.wsa0{word-spacing:5.760000px;}
.ws1d1{word-spacing:5.814000px;}
.ws36{word-spacing:5.820000px;}
.ws18{word-spacing:5.940000px;}
.ws1c4{word-spacing:5.967000px;}
.wsc{word-spacing:6.000000px;}
.ws181{word-spacing:6.018000px;}
.ws6e{word-spacing:6.060000px;}
.ws13{word-spacing:6.120000px;}
.ws10e{word-spacing:6.180000px;}
.ws1aa{word-spacing:6.222000px;}
.ws135{word-spacing:6.240000px;}
.ws1a9{word-spacing:6.273000px;}
.wsa4{word-spacing:6.300000px;}
.ws91{word-spacing:6.360000px;}
.ws84{word-spacing:6.420000px;}
.ws18e{word-spacing:6.477000px;}
.ws2e{word-spacing:6.540000px;}
.wse6{word-spacing:6.600000px;}
.ws1e1{word-spacing:6.630000px;}
.ws174{word-spacing:6.720000px;}
.ws4e{word-spacing:6.780000px;}
.wsc0{word-spacing:6.840000px;}
.ws4d{word-spacing:6.900000px;}
.ws53{word-spacing:6.960000px;}
.ws19a{word-spacing:6.987000px;}
.ws70{word-spacing:7.020000px;}
.ws33{word-spacing:7.080000px;}
.wsb2{word-spacing:7.140000px;}
.ws188{word-spacing:7.191000px;}
.ws74{word-spacing:7.200000px;}
.ws9d{word-spacing:7.260000px;}
.ws31{word-spacing:7.320000px;}
.ws1af{word-spacing:7.344000px;}
.ws19{word-spacing:7.380000px;}
.wsa8{word-spacing:7.500000px;}
.ws18b{word-spacing:7.548000px;}
.ws115{word-spacing:7.560000px;}
.ws7f{word-spacing:7.620000px;}
.ws6d{word-spacing:7.680000px;}
.ws3c{word-spacing:7.740000px;}
.ws46{word-spacing:7.800000px;}
.ws1d9{word-spacing:7.854000px;}
.wsc2{word-spacing:7.860000px;}
.ws144{word-spacing:7.920000px;}
.ws62{word-spacing:7.980000px;}
.ws83{word-spacing:8.040000px;}
.ws20{word-spacing:8.160000px;}
.ws6f{word-spacing:8.220000px;}
.ws55{word-spacing:8.280000px;}
.wsf9{word-spacing:8.340000px;}
.ws37{word-spacing:8.400000px;}
.ws1a2{word-spacing:8.415000px;}
.wscb{word-spacing:8.460000px;}
.wsfb{word-spacing:8.520000px;}
.wsb6{word-spacing:8.580000px;}
.ws1c8{word-spacing:8.670000px;}
.ws4b{word-spacing:8.700000px;}
.ws15{word-spacing:8.820000px;}
.ws189{word-spacing:8.874000px;}
.ws13b{word-spacing:8.880000px;}
.ws170{word-spacing:8.891610px;}
.ws94{word-spacing:8.940000px;}
.ws1c2{word-spacing:8.976000px;}
.ws10{word-spacing:9.060000px;}
.wse8{word-spacing:9.120000px;}
.ws15a{word-spacing:9.180000px;}
.ws75{word-spacing:9.240000px;}
.wsa2{word-spacing:9.300000px;}
.ws171{word-spacing:9.348887px;}
.ws13e{word-spacing:9.360000px;}
.ws100{word-spacing:9.480000px;}
.ws9c{word-spacing:9.540000px;}
.ws1d0{word-spacing:9.588000px;}
.wsb{word-spacing:9.600000px;}
.ws48{word-spacing:9.660000px;}
.wsea{word-spacing:9.780000px;}
.wsd6{word-spacing:9.839064px;}
.ws19b{word-spacing:9.843000px;}
.wsd9{word-spacing:9.862974px;}
.wsfd{word-spacing:9.900000px;}
.wsf6{word-spacing:9.914825px;}
.wsd7{word-spacing:9.914829px;}
.wsb3{word-spacing:9.960000px;}
.ws104{word-spacing:10.020000px;}
.ws114{word-spacing:10.080000px;}
.ws3b{word-spacing:10.140000px;}
.wse3{word-spacing:10.200000px;}
.wsc9{word-spacing:10.260000px;}
.ws16e{word-spacing:10.281403px;}
.ws159{word-spacing:10.320000px;}
.ws133{word-spacing:10.380000px;}
.ws143{word-spacing:10.440000px;}
.ws8c{word-spacing:10.560000px;}
.wsa1{word-spacing:10.620000px;}
.ws47{word-spacing:10.740000px;}
.ws12f{word-spacing:10.800000px;}
.ws41{word-spacing:10.860000px;}
.ws16d{word-spacing:10.879159px;}
.ws57{word-spacing:10.920000px;}
.ws193{word-spacing:10.965000px;}
.ws130{word-spacing:10.980000px;}
.ws16b{word-spacing:11.040000px;}
.ws113{word-spacing:11.160000px;}
.wse0{word-spacing:11.220000px;}
.ws50{word-spacing:11.400000px;}
.wsca{word-spacing:11.460000px;}
.ws1a1{word-spacing:11.475000px;}
.wsf{word-spacing:11.520000px;}
.ws172{word-spacing:11.533688px;}
.ws141{word-spacing:11.580000px;}
.ws164{word-spacing:11.584497px;}
.ws173{word-spacing:11.700000px;}
.ws19d{word-spacing:11.730000px;}
.wsa7{word-spacing:11.760000px;}
.ws69{word-spacing:11.820000px;}
.wsa{word-spacing:11.940000px;}
.ws132{word-spacing:12.000000px;}
.ws10f{word-spacing:12.060000px;}
.ws90{word-spacing:12.180000px;}
.ws23{word-spacing:12.360000px;}
.ws11{word-spacing:12.420000px;}
.ws179{word-spacing:12.480000px;}
.ws27{word-spacing:12.600000px;}
.wsd8{word-spacing:12.612651px;}
.ws131{word-spacing:12.720000px;}
.ws39{word-spacing:12.900000px;}
.ws61{word-spacing:12.960000px;}
.wsa3{word-spacing:13.020000px;}
.ws92{word-spacing:13.080000px;}
.wsb5{word-spacing:13.140000px;}
.ws197{word-spacing:13.158000px;}
.ws67{word-spacing:13.200000px;}
.wsbf{word-spacing:13.210407px;}
.ws1bd{word-spacing:13.362000px;}
.ws11b{word-spacing:13.380000px;}
.ws13f{word-spacing:13.620000px;}
.ws122{word-spacing:13.680000px;}
.ws18a{word-spacing:13.719000px;}
.ws77{word-spacing:13.740000px;}
.wsd{word-spacing:13.800000px;}
.ws123{word-spacing:13.860000px;}
.ws1d{word-spacing:13.920000px;}
.ws85{word-spacing:14.040000px;}
.ws1e2{word-spacing:14.127000px;}
.ws116{word-spacing:14.160000px;}
.ws1b0{word-spacing:14.280000px;}
.ws99{word-spacing:14.460000px;}
.ws109{word-spacing:14.640000px;}
.wsdc{word-spacing:14.760000px;}
.ws140{word-spacing:14.880000px;}
.wsb7{word-spacing:14.940000px;}
.ws1d3{word-spacing:15.045000px;}
.ws42{word-spacing:15.060000px;}
.ws78{word-spacing:15.120000px;}
.ws1e{word-spacing:15.180000px;}
.ws82{word-spacing:15.240000px;}
.ws149{word-spacing:15.360000px;}
.ws103{word-spacing:15.660000px;}
.ws191{word-spacing:15.720000px;}
.ws120{word-spacing:15.780000px;}
.ws124{word-spacing:15.840000px;}
.ws111{word-spacing:15.960000px;}
.ws175{word-spacing:16.080000px;}
.ws192{word-spacing:16.140000px;}
.wsf4{word-spacing:16.270868px;}
.wsd4{word-spacing:16.270960px;}
.ws14f{word-spacing:16.486109px;}
.wsdf{word-spacing:16.500000px;}
.ws1e0{word-spacing:16.524000px;}
.ws1ad{word-spacing:16.881000px;}
.ws96{word-spacing:16.980000px;}
.ws169{word-spacing:17.040000px;}
.ws121{word-spacing:17.160000px;}
.ws8d{word-spacing:17.280000px;}
.ws8e{word-spacing:17.460000px;}
.ws199{word-spacing:17.544000px;}
.ws9e{word-spacing:17.760000px;}
.ws106{word-spacing:18.480000px;}
.wsf3{word-spacing:18.840000px;}
.ws1be{word-spacing:18.870000px;}
.ws145{word-spacing:19.320000px;}
.ws6c{word-spacing:19.560000px;}
.wsf5{word-spacing:19.588877px;}
.ws12d{word-spacing:19.911704px;}
.ws12c{word-spacing:19.911887px;}
.ws129{word-spacing:19.918518px;}
.wse2{word-spacing:19.920000px;}
.wsbe{word-spacing:20.611784px;}
.ws177{word-spacing:22.080000px;}
.ws1d6{word-spacing:22.236000px;}
.ws146{word-spacing:22.920000px;}
.ws12{word-spacing:23.460000px;}
.ws1db{word-spacing:24.021000px;}
.ws1c5{word-spacing:27.693000px;}
.ws154{word-spacing:80.870361px;}
.ws153{word-spacing:106.370361px;}
.ws152{word-spacing:131.870361px;}
.wsd0{word-spacing:144.000000px;}
.ws108{word-spacing:151.140000px;}
.ws12e{word-spacing:153.118286px;}
.ws151{word-spacing:168.436890px;}
.ws155{word-spacing:185.445007px;}
.ws166{word-spacing:185.820928px;}
.ws11c{word-spacing:239.940491px;}
.ws11f{word-spacing:241.832591px;}
.ws11e{word-spacing:264.449524px;}
.ws11d{word-spacing:268.279175px;}
.wscf{word-spacing:357.540000px;}
.wsef{word-spacing:408.240000px;}
.ws157{word-spacing:422.768372px;}
.ws156{word-spacing:422.768921px;}
.wsf1{word-spacing:474.959993px;}
.wsec{word-spacing:503.159981px;}
.wsae{word-spacing:664.919987px;}
.wsff{word-spacing:679.980000px;}
.wsb1{word-spacing:684.240000px;}
.wsc5{word-spacing:743.879986px;}
.wsce{word-spacing:784.560000px;}
.wsc7{word-spacing:864.960000px;}
._36{margin-left:-212.796210px;}
._37{margin-left:-196.816704px;}
._8{margin-left:-70.498787px;}
._16{margin-left:-16.371242px;}
._35{margin-left:-14.429812px;}
._10{margin-left:-7.510224px;}
._9{margin-left:-5.645700px;}
._c{margin-left:-4.503300px;}
._4{margin-left:-3.444000px;}
._0{margin-left:-2.052000px;}
._b{margin-left:-1.020000px;}
._d{width:1.890000px;}
._3{width:3.350556px;}
._6{width:4.737444px;}
._e{width:5.999112px;}
._f{width:7.728887px;}
._11{width:9.538203px;}
._1{width:11.508000px;}
._13{width:12.780000px;}
._2{width:13.794000px;}
._26{width:14.850013px;}
._12{width:16.284000px;}
._5{width:17.496000px;}
._7{width:18.912001px;}
._25{width:20.724000px;}
._15{width:37.995000px;}
._14{width:41.461803px;}
._1b{width:52.693801px;}
._a{width:54.416991px;}
._1a{width:112.323006px;}
._17{width:149.699524px;}
._18{width:162.063491px;}
._21{width:186.277771px;}
._2e{width:198.195007px;}
._34{width:223.671753px;}
._2f{width:232.210144px;}
._1c{width:239.823006px;}
._31{width:245.805592px;}
._20{width:249.218445px;}
._2b{width:271.305592px;}
._22{width:274.730164px;}
._19{width:277.199524px;}
._30{width:283.163452px;}
._32{width:284.923737px;}
._24{width:290.297922px;}
._33{width:295.127380px;}
._2d{width:310.423737px;}
._1f{width:315.797922px;}
._2c{width:320.627380px;}
._1d{width:365.680801px;}
._1e{width:425.245821px;}
._23{width:442.228821px;}
._2a{width:451.755000px;}
._39{width:461.522377px;}
._28{width:739.277700px;}
._29{width:784.632000px;}
._27{width:817.221000px;}
._38{width:867.803421px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:29.887799px;}
.fs10{font-size:31.642799px;}
.fsd{font-size:35.566200px;}
.fs4{font-size:35.699999px;}
.fse{font-size:39.553199px;}
.fs9{font-size:41.842800px;}
.fs6{font-size:42.000000px;}
.fsf{font-size:43.508400px;}
.fsc{font-size:50.809198px;}
.fs1{font-size:51.000000px;}
.fs0{font-size:57.000000px;}
.fs8{font-size:59.775599px;}
.fs3{font-size:60.000000px;}
.fsb{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:90.000000px;}
.fs5{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yd4{bottom:0.297180px;}
.y61{bottom:0.297272px;}
.yff{bottom:0.298646px;}
.y1d5{bottom:0.298691px;}
.y1dc{bottom:0.299927px;}
.y199{bottom:0.300018px;}
.y153{bottom:0.300156px;}
.ycc{bottom:0.300293px;}
.y64{bottom:1.087140px;}
.y1b2{bottom:1.475372px;}
.y1bb{bottom:1.475555px;}
.y194{bottom:1.475853px;}
.y1b5{bottom:1.475967px;}
.y180{bottom:1.475990px;}
.y1e0{bottom:1.476105px;}
.y189{bottom:1.476151px;}
.y1e3{bottom:1.476288px;}
.y1e6{bottom:1.476379px;}
.y1b8{bottom:1.476563px;}
.y1aa{bottom:1.544678px;}
.y12d{bottom:1.544701px;}
.y12b{bottom:1.544815px;}
.y16c{bottom:1.711121px;}
.yf4{bottom:1.792809px;}
.y85{bottom:1.794113px;}
.yda{bottom:1.794159px;}
.ye2{bottom:1.794296px;}
.y136{bottom:2.028964px;}
.y13b{bottom:2.029055px;}
.y160{bottom:2.231323px;}
.yc8{bottom:2.331128px;}
.yb1{bottom:2.331138px;}
.yc3{bottom:2.332638px;}
.yc2{bottom:2.332660px;}
.yad{bottom:2.332672px;}
.yed{bottom:2.332809px;}
.yeb{bottom:2.332877px;}
.y79{bottom:2.334274px;}
.y150{bottom:2.522850px;}
.y7e{bottom:2.539673px;}
.y90{bottom:2.539856px;}
.yd1{bottom:2.913300px;}
.ya0{bottom:2.914673px;}
.y99{bottom:2.914948px;}
.y9a{bottom:3.370926px;}
.y191{bottom:3.438904px;}
.y17d{bottom:3.439040px;}
.y1af{bottom:3.472961px;}
.y19a{bottom:3.473877px;}
.y178{bottom:3.728233px;}
.y17a{bottom:3.728692px;}
.y184{bottom:3.728851px;}
.y133{bottom:3.728943px;}
.y152{bottom:3.729160px;}
.y18c{bottom:3.729607px;}
.y18e{bottom:3.730053px;}
.y131{bottom:3.730408px;}
.y169{bottom:3.827179px;}
.y163{bottom:3.827545px;}
.y16f{bottom:3.828094px;}
.y166{bottom:3.828186px;}
.y155{bottom:4.035324px;}
.ybf{bottom:4.573494px;}
.y71{bottom:4.573654px;}
.y8a{bottom:4.573792px;}
.y8e{bottom:4.575073px;}
.y63{bottom:4.782349px;}
.y14e{bottom:4.816349px;}
.y122{bottom:5.275223px;}
.y146{bottom:5.276642px;}
.y100{bottom:5.276700px;}
.y124{bottom:5.276711px;}
.ye8{bottom:5.276733px;}
.y1bf{bottom:5.282593px;}
.y67{bottom:5.610764px;}
.y148{bottom:5.610901px;}
.y69{bottom:5.611679px;}
.y94{bottom:5.611816px;}
.y6c{bottom:5.612274px;}
.y8c{bottom:5.612366px;}
.y9d{bottom:5.613190px;}
.y97{bottom:5.613464px;}
.y197{bottom:6.088257px;}
.y13a{bottom:6.118378px;}
.y135{bottom:6.119659px;}
.yac{bottom:6.724640px;}
.yc1{bottom:6.724651px;}
.yc7{bottom:6.724652px;}
.yb0{bottom:6.724663px;}
.yea{bottom:6.724823px;}
.y138{bottom:11.515137px;}
.y13d{bottom:11.515228px;}
.y73{bottom:17.190262px;}
.y77{bottom:18.025772px;}
.y1be{bottom:18.349091px;}
.y81{bottom:19.245117px;}
.yf0{bottom:19.767311px;}
.ydf{bottom:19.768639px;}
.yd6{bottom:19.768661px;}
.y75{bottom:27.300293px;}
.y84{bottom:33.441147px;}
.yd9{bottom:33.964783px;}
.yf3{bottom:33.964806px;}
.yf9{bottom:36.355797px;}
.ydc{bottom:36.357285px;}
.y83{bottom:37.924622px;}
.ye1{bottom:38.448143px;}
.yd8{bottom:38.448166px;}
.yf2{bottom:38.448303px;}
.ye5{bottom:40.839293px;}
.yfc{bottom:40.839294px;}
.yf7{bottom:45.322792px;}
.y3c{bottom:60.997650px;}
.y11f{bottom:106.456650px;}
.y25{bottom:110.551048px;}
.y6e{bottom:110.551197px;}
.y190{bottom:113.257496px;}
.y193{bottom:115.228500px;}
.y192{bottom:116.558853px;}
.y151{bottom:117.863995px;}
.y11e{bottom:121.456650px;}
.yca{bottom:121.644150px;}
.y287{bottom:122.049145px;}
.y129{bottom:123.999000px;}
.y15{bottom:124.299145px;}
.y206{bottom:126.549145px;}
.y247{bottom:130.458904px;}
.y24{bottom:130.651050px;}
.y14d{bottom:131.773499px;}
.y18d{bottom:132.292500px;}
.y14f{bottom:134.296349px;}
.y11d{bottom:136.456650px;}
.y286{bottom:137.049145px;}
.y18f{bottom:140.797497px;}
.y205{bottom:141.549145px;}
.y14c{bottom:142.749000px;}
.y14{bottom:143.049145px;}
.yc9{bottom:143.844154px;}
.y246{bottom:145.458904px;}
.y23{bottom:148.051048px;}
.y285{bottom:152.049145px;}
.y1cc{bottom:152.582520px;}
.y18b{bottom:153.652496px;}
.y204{bottom:156.549145px;}
.ya7{bottom:157.430695px;}
.yc6{bottom:160.269000px;}
.y245{bottom:160.458904px;}
.yfe{bottom:161.499000px;}
.y13{bottom:161.799145px;}
.y18a{bottom:162.157047px;}
.y22{bottom:163.051048px;}
.yc5{bottom:166.869003px;}
.y284{bottom:167.049145px;}
.y203{bottom:171.549145px;}
.ya6{bottom:172.430695px;}
.y244{bottom:175.458904px;}
.y112{bottom:180.249000px;}
.y12{bottom:180.549145px;}
.ybe{bottom:182.017502px;}
.y283{bottom:182.049145px;}
.y21{bottom:183.151050px;}
.yc0{bottom:183.309002px;}
.ybd{bottom:186.459297px;}
.y202{bottom:186.549145px;}
.ya5{bottom:187.430695px;}
.yc4{bottom:189.909153px;}
.y243{bottom:190.458904px;}
.y186{bottom:194.875511px;}
.y188{bottom:196.846504px;}
.y282{bottom:197.049156px;}
.y187{bottom:198.177155px;}
.y11{bottom:199.299156px;}
.y20{bottom:200.551048px;}
.y201{bottom:201.549156px;}
.ya4{bottom:202.430695px;}
.y242{bottom:205.458893px;}
.ybc{bottom:209.499161px;}
.y281{bottom:212.049156px;}
.y183{bottom:213.912003px;}
.ya8{bottom:214.512749px;}
.y1f{bottom:215.551048px;}
.y200{bottom:216.549156px;}
.ya3{bottom:217.430695px;}
.y128{bottom:217.749000px;}
.y10{bottom:218.049156px;}
.y241{bottom:220.458893px;}
.y185{bottom:222.415810px;}
.yba{bottom:223.807503px;}
.y280{bottom:227.049156px;}
.ybb{bottom:228.249161px;}
.y1ff{bottom:231.549156px;}
.y182{bottom:235.272011px;}
.y240{bottom:235.458893px;}
.y1e{bottom:235.651039px;}
.y1ab{bottom:236.499000px;}
.yf{bottom:236.799156px;}
.y27f{bottom:242.049156px;}
.y181{bottom:243.775200px;}
.y1fe{bottom:246.549156px;}
.yb9{bottom:246.999161px;}
.y23f{bottom:250.458893px;}
.ye{bottom:255.549156px;}
.y27e{bottom:257.049156px;}
.y17c{bottom:259.149010px;}
.y1d{bottom:260.551048px;}
.y17f{bottom:261.120003px;}
.y1fd{bottom:261.549156px;}
.y17e{bottom:262.450493px;}
.y23e{bottom:265.458893px;}
.yb8{bottom:265.749161px;}
.y27d{bottom:272.049156px;}
.y127{bottom:273.999000px;}
.yd{bottom:274.299156px;}
.y1c{bottom:275.551048px;}
.y1fc{bottom:276.549156px;}
.y179{bottom:278.185500px;}
.yef{bottom:280.418999px;}
.y23d{bottom:280.458893px;}
.yb7{bottom:284.499161px;}
.y17b{bottom:286.689148px;}
.y27c{bottom:287.049156px;}
.y1fb{bottom:291.549156px;}
.yc{bottom:293.049156px;}
.y101{bottom:295.451111px;}
.y23c{bottom:295.458893px;}
.yf6{bottom:296.492867px;}
.yf1{bottom:297.945305px;}
.y1b{bottom:298.051048px;}
.yfd{bottom:299.296509px;}
.y177{bottom:299.545509px;}
.yf5{bottom:300.186310px;}
.yde{bottom:301.404007px;}
.y27b{bottom:302.049156px;}
.yb6{bottom:303.249161px;}
.y1cb{bottom:303.556824px;}
.y1fa{bottom:306.549156px;}
.y176{bottom:308.048698px;}
.y23b{bottom:310.458893px;}
.yfb{bottom:310.611240px;}
.yb{bottom:311.799156px;}
.y1a{bottom:313.051048px;}
.yfa{bottom:313.678802px;}
.y27a{bottom:317.049156px;}
.yf8{bottom:318.867302px;}
.ye0{bottom:318.931800px;}
.ye6{bottom:319.164000px;}
.ye3{bottom:321.172806px;}
.yb5{bottom:321.999161px;}
.y23a{bottom:325.458893px;}
.y175{bottom:326.137047px;}
.y126{bottom:330.249000px;}
.ya{bottom:330.549156px;}
.y279{bottom:332.049156px;}
.ye4{bottom:334.663811px;}
.y19{bottom:335.551048px;}
.yb3{bottom:336.307503px;}
.yaf{bottom:337.598991px;}
.y1f9{bottom:339.549156px;}
.y239{bottom:340.458893px;}
.yb4{bottom:340.749161px;}
.y174{bottom:341.137047px;}
.yb2{bottom:344.199142px;}
.y278{bottom:347.049156px;}
.y12c{bottom:347.899498px;}
.y125{bottom:348.999000px;}
.y9{bottom:349.299156px;}
.y18{bottom:350.551048px;}
.y1f8{bottom:354.549156px;}
.y238{bottom:355.458893px;}
.y173{bottom:356.137047px;}
.yab{bottom:360.624000px;}
.y277{bottom:362.049156px;}
.yaa{bottom:363.774147px;}
.y1d9{bottom:366.649498px;}
.yae{bottom:367.224152px;}
.y123{bottom:367.749000px;}
.y8{bottom:368.049156px;}
.y1f7{bottom:369.549156px;}
.y237{bottom:370.458893px;}
.y17{bottom:373.051048px;}
.y172{bottom:373.481255px;}
.y276{bottom:377.049156px;}
.y1f6{bottom:384.549133px;}
.y1d8{bottom:385.399521px;}
.y236{bottom:385.458893px;}
.y111{bottom:386.498978px;}
.y7{bottom:386.799133px;}
.y16{bottom:388.051071px;}
.y171{bottom:388.481232px;}
.y275{bottom:392.049133px;}
.y6f{bottom:392.120865px;}
.y80{bottom:395.679016px;}
.y1f5{bottom:399.549133px;}
.y235{bottom:400.458893px;}
.y1d7{bottom:401.648987px;}
.y12a{bottom:404.149521px;}
.y121{bottom:405.250488px;}
.y6{bottom:405.549133px;}
.y274{bottom:407.049133px;}
.y87{bottom:410.852618px;}
.y82{bottom:412.683150px;}
.y88{bottom:413.176346px;}
.y1f4{bottom:414.549133px;}
.y86{bottom:414.924133px;}
.y234{bottom:415.458893px;}
.y273{bottom:422.049133px;}
.y5{bottom:424.299133px;}
.y1f3{bottom:429.549133px;}
.y233{bottom:430.458893px;}
.y272{bottom:437.049133px;}
.y1a9{bottom:441.649521px;}
.y5f{bottom:443.049133px;}
.y1f2{bottom:444.549133px;}
.y232{bottom:445.458893px;}
.y271{bottom:452.049133px;}
.y6d{bottom:456.316498px;}
.y149{bottom:457.357498px;}
.y1f1{bottom:459.549133px;}
.y231{bottom:460.458893px;}
.y4{bottom:461.799133px;}
.y270{bottom:467.049133px;}
.y7f{bottom:475.066498px;}
.y230{bottom:475.458893px;}
.y1d6{bottom:480.248978px;}
.y5e{bottom:480.549133px;}
.y26f{bottom:482.049133px;}
.y22f{bottom:490.458893px;}
.y1f0{bottom:492.549133px;}
.y147{bottom:493.816498px;}
.y7d{bottom:496.900497px;}
.y26e{bottom:497.049133px;}
.y5d{bottom:499.299133px;}
.y22e{bottom:505.458893px;}
.y1ef{bottom:507.549133px;}
.y26d{bottom:512.049133px;}
.ya9{bottom:513.607498px;}
.y36{bottom:514.362579px;}
.y5c{bottom:518.049133px;}
.y22d{bottom:520.458893px;}
.y1ee{bottom:522.549133px;}
.y26c{bottom:527.049133px;}
.y72{bottom:533.259018px;}
.y22c{bottom:535.458893px;}
.y158{bottom:536.498978px;}
.y5b{bottom:536.799133px;}
.y1ed{bottom:537.549133px;}
.y7a{bottom:540.076630px;}
.y26b{bottom:542.049133px;}
.y78{bottom:547.590317px;}
.y7c{bottom:547.591507px;}
.y74{bottom:548.208298px;}
.y7b{bottom:550.449280px;}
.y22b{bottom:550.458893px;}
.y35{bottom:551.112579px;}
.y154{bottom:551.648987px;}
.y1ec{bottom:552.549133px;}
.y5a{bottom:555.549133px;}
.y26a{bottom:557.049133px;}
.y76{bottom:558.318283px;}
.yd5{bottom:563.904007px;}
.y22a{bottom:565.458893px;}
.y1eb{bottom:567.549133px;}
.y6b{bottom:568.814987px;}
.y34{bottom:569.862579px;}
.y269{bottom:572.049133px;}
.y59{bottom:574.299133px;}
.y229{bottom:580.458893px;}
.yd7{bottom:581.431778px;}
.ydd{bottom:581.664000px;}
.y1ea{bottom:582.549133px;}
.ydb{bottom:583.672806px;}
.y268{bottom:587.049133px;}
.y1a8{bottom:587.566498px;}
.y113{bottom:588.607498px;}
.y33{bottom:588.612579px;}
.y14b{bottom:592.748978px;}
.y58{bottom:593.049133px;}
.y228{bottom:595.458893px;}
.y1e9{bottom:597.549133px;}
.y267{bottom:602.049133px;}
.y32{bottom:607.362579px;}
.y227{bottom:610.458893px;}
.y68{bottom:611.033981px;}
.y57{bottom:611.799133px;}
.y6a{bottom:614.603850px;}
.y266{bottom:617.049133px;}
.y226{bottom:625.458893px;}
.y31{bottom:626.112579px;}
.y56{bottom:630.549133px;}
.y265{bottom:632.049133px;}
.y1ba{bottom:638.701492px;}
.y225{bottom:640.458893px;}
.y66{bottom:643.816498px;}
.y30{bottom:644.862579px;}
.y264{bottom:647.049133px;}
.y1b9{bottom:647.205002px;}
.y55{bottom:649.299133px;}
.y224{bottom:655.458893px;}
.y1b7{bottom:660.255020px;}
.y263{bottom:662.049133px;}
.y70{bottom:663.607498px;}
.y2f{bottom:663.612579px;}
.y120{bottom:667.748978px;}
.y54{bottom:668.049133px;}
.y1b6{bottom:668.759399px;}
.y223{bottom:670.458893px;}
.y262{bottom:677.049133px;}
.y1b4{bottom:681.810013px;}
.y2e{bottom:682.362579px;}
.y9c{bottom:683.783981px;}
.y222{bottom:685.458893px;}
.ya1{bottom:686.698654px;}
.y53{bottom:686.799133px;}
.y9e{bottom:687.154633px;}
.ya2{bottom:688.478850px;}
.y9f{bottom:689.397171px;}
.y1b3{bottom:690.313797px;}
.y261{bottom:692.049133px;}
.y221{bottom:700.458893px;}
.y2d{bottom:701.112762px;}
.y1b1{bottom:703.365005px;}
.y1d4{bottom:704.149521px;}
.y52{bottom:705.549133px;}
.y260{bottom:707.049133px;}
.y1b0{bottom:711.868332px;}
.y289{bottom:712.458893px;}
.y220{bottom:715.458893px;}
.y2c{bottom:719.862762px;}
.y1d3{bottom:720.398987px;}
.y25f{bottom:722.049133px;}
.y51{bottom:724.299133px;}
.y102{bottom:725.792999px;}
.y288{bottom:727.458893px;}
.y1ae{bottom:729.004486px;}
.y21f{bottom:730.458893px;}
.y25e{bottom:737.049133px;}
.y1ad{bottom:737.507400px;}
.y2b{bottom:738.612762px;}
.y50{bottom:743.049133px;}
.y21e{bottom:745.458893px;}
.y25d{bottom:752.049133px;}
.y1ac{bottom:754.851746px;}
.y2a{bottom:757.362762px;}
.y96{bottom:758.017502px;}
.y21d{bottom:760.458893px;}
.ye7{bottom:761.498978px;}
.y4f{bottom:761.799133px;}
.y9b{bottom:762.712784px;}
.y98{bottom:763.630966px;}
.y25c{bottom:767.049133px;}
.y21c{bottom:775.458893px;}
.y157{bottom:776.107544px;}
.y29{bottom:776.112579px;}
.y156{bottom:778.148987px;}
.y4e{bottom:780.549133px;}
.y25b{bottom:782.049133px;}
.y1bd{bottom:788.152496px;}
.y21b{bottom:790.458893px;}
.y28{bottom:794.862579px;}
.y1c0{bottom:796.120056px;}
.y25a{bottom:797.049133px;}
.y93{bottom:798.534027px;}
.y4d{bottom:799.299133px;}
.y1a7{bottom:799.734283px;}
.y95{bottom:802.104034px;}
.y21a{bottom:805.458893px;}
.y1bc{bottom:806.501587px;}
.y259{bottom:812.049133px;}
.y27{bottom:813.612579px;}
.y1c1{bottom:815.894531px;}
.y1a6{bottom:817.079224px;}
.y4c{bottom:818.049133px;}
.y219{bottom:820.458893px;}
.y258{bottom:827.049133px;}
.y1d0{bottom:828.785522px;}
.y26{bottom:832.362579px;}
.y1a5{bottom:834.424072px;}
.y218{bottom:835.458893px;}
.y14a{bottom:836.499023px;}
.y4b{bottom:836.799133px;}
.y1cf{bottom:840.794586px;}
.y257{bottom:842.049133px;}
.y1c2{bottom:843.472999px;}
.y217{bottom:850.458893px;}
.y92{bottom:851.107544px;}
.y1a4{bottom:851.768829px;}
.y1ce{bottom:852.799072px;}
.y16e{bottom:853.956024px;}
.y4a{bottom:855.549133px;}
.y256{bottom:857.049133px;}
.y170{bottom:862.460083px;}
.y1cd{bottom:864.806580px;}
.y216{bottom:865.458893px;}
.y1a3{bottom:869.113678px;}
.y91{bottom:869.857544px;}
.y62{bottom:871.043976px;}
.y1c3{bottom:871.051467px;}
.y255{bottom:872.049133px;}
.y16b{bottom:873.305969px;}
.y49{bottom:874.299133px;}
.y65{bottom:875.858826px;}
.y38{bottom:877.628357px;}
.y1d1{bottom:879.992523px;}
.y215{bottom:880.458893px;}
.y16d{bottom:881.809479px;}
.y1a2{bottom:886.458435px;}
.y254{bottom:887.049133px;}
.y1d2{bottom:888.607544px;}
.y37{bottom:892.628357px;}
.y48{bottom:893.049133px;}
.y168{bottom:894.770966px;}
.y214{bottom:895.458893px;}
.y1c4{bottom:898.639823px;}
.y253{bottom:902.049133px;}
.y16a{bottom:903.274017px;}
.y1a1{bottom:903.803284px;}
.y10f{bottom:909.736633px;}
.y213{bottom:910.458893px;}
.y60{bottom:911.500488px;}
.y47{bottom:911.799133px;}
.y165{bottom:916.234497px;}
.y252{bottom:917.049133px;}
.y10e{bottom:924.736633px;}
.y167{bottom:924.738556px;}
.y212{bottom:925.458893px;}
.y1c5{bottom:926.218291px;}
.y46{bottom:930.549133px;}
.y251{bottom:932.049133px;}
.y3b{bottom:936.206726px;}
.y144{bottom:936.913055px;}
.y162{bottom:937.699493px;}
.y1a0{bottom:938.492889px;}
.y10d{bottom:939.736633px;}
.y211{bottom:940.458893px;}
.y11c{bottom:945.982910px;}
.y164{bottom:946.203003px;}
.y8f{bottom:946.898987px;}
.y250{bottom:947.049133px;}
.ycf{bottom:947.784027px;}
.y45{bottom:949.299133px;}
.yd0{bottom:950.697327px;}
.yd2{bottom:951.154633px;}
.yd3{bottom:951.729034px;}
.y1c6{bottom:953.796759px;}
.y143{bottom:954.257813px;}
.y10c{bottom:954.736633px;}
.y210{bottom:955.458893px;}
.y19f{bottom:955.837646px;}
.y1e8{bottom:957.094482px;}
.y1e7{bottom:961.304718px;}
.y24f{bottom:962.049133px;}
.y11b{bottom:963.327576px;}
.y161{bottom:963.547760px;}
.y44{bottom:968.049133px;}
.y10b{bottom:969.736633px;}
.y20f{bottom:970.458893px;}
.y142{bottom:971.602661px;}
.y19e{bottom:973.182495px;}
.y15f{bottom:974.514038px;}
.y24e{bottom:977.049133px;}
.y3a{bottom:980.043274px;}
.y11a{bottom:980.672516px;}
.y1e5{bottom:980.774963px;}
.y1c7{bottom:981.375227px;}
.y8d{bottom:982.357544px;}
.y15e{bottom:983.017181px;}
.y10a{bottom:984.736633px;}
.y1e4{bottom:984.985016px;}
.y20e{bottom:985.458893px;}
.y43{bottom:986.799133px;}
.y141{bottom:988.947418px;}
.y19d{bottom:990.527252px;}
.y24d{bottom:992.049133px;}
.y119{bottom:998.017181px;}
.y109{bottom:999.736633px;}
.y15d{bottom:1000.362122px;}
.y20d{bottom:1000.458893px;}
.y1e2{bottom:1004.455536px;}
.y42{bottom:1005.549133px;}
.y140{bottom:1006.292267px;}
.y39{bottom:1007.043274px;}
.y24c{bottom:1007.049133px;}
.y19c{bottom:1007.872009px;}
.y1e1{bottom:1008.665588px;}
.y1c8{bottom:1008.953695px;}
.y108{bottom:1014.736633px;}
.y118{bottom:1015.362122px;}
.y20c{bottom:1015.458893px;}
.y15c{bottom:1017.706970px;}
.y8b{bottom:1018.815033px;}
.y24b{bottom:1022.049133px;}
.y13f{bottom:1023.637024px;}
.y41{bottom:1024.299133px;}
.y19b{bottom:1025.216858px;}
.y1df{bottom:1028.136017px;}
.y107{bottom:1029.736633px;}
.y20b{bottom:1030.458893px;}
.y1de{bottom:1032.346069px;}
.y117{bottom:1032.706970px;}
.y15b{bottom:1035.051636px;}
.y1c9{bottom:1036.532163px;}
.y24a{bottom:1037.049133px;}
.ycd{bottom:1037.565033px;}
.y13e{bottom:1040.981873px;}
.ycb{bottom:1042.749023px;}
.y40{bottom:1043.049133px;}
.yce{bottom:1043.177399px;}
.y196{bottom:1043.305481px;}
.y198{bottom:1044.636017px;}
.y106{bottom:1044.736633px;}
.y20a{bottom:1045.458893px;}
.y116{bottom:1050.051727px;}
.y249{bottom:1052.049133px;}
.y1db{bottom:1052.560455px;}
.y1dd{bottom:1053.127533px;}
.y1da{bottom:1053.139984px;}
.y15a{bottom:1053.140076px;}
.y139{bottom:1059.070496px;}
.y134{bottom:1059.115540px;}
.y130{bottom:1059.634460px;}
.y132{bottom:1059.636017px;}
.y105{bottom:1059.736633px;}
.y209{bottom:1060.458893px;}
.y145{bottom:1061.499023px;}
.y3f{bottom:1061.799133px;}
.y1ca{bottom:1064.110630px;}
.y13c{bottom:1065.188873px;}
.y137{bottom:1065.235199px;}
.y12f{bottom:1068.139984px;}
.y115{bottom:1068.140076px;}
.y195{bottom:1070.484192px;}
.y159{bottom:1070.484283px;}
.y104{bottom:1074.736633px;}
.y1{bottom:1075.294006px;}
.y208{bottom:1075.458893px;}
.y89{bottom:1076.107544px;}
.ye9{bottom:1079.258972px;}
.y3e{bottom:1080.549133px;}
.yec{bottom:1083.742767px;}
.yee{bottom:1084.591461px;}
.y12e{bottom:1085.484192px;}
.y114{bottom:1085.484283px;}
.y248{bottom:1085.799133px;}
.y110{bottom:1086.818665px;}
.y103{bottom:1089.736633px;}
.y207{bottom:1090.458893px;}
.y3{bottom:1109.543884px;}
.y3d{bottom:1125.713104px;}
.y2{bottom:1126.031982px;}
.h20{height:2.391024px;}
.h36{height:7.185000px;}
.h6f{height:9.420000px;}
.h38{height:10.155000px;}
.h4d{height:10.680000px;}
.h51{height:10.710000px;}
.h67{height:10.845000px;}
.h7e{height:10.950000px;}
.h65{height:10.965000px;}
.h4f{height:12.468000px;}
.h40{height:12.469500px;}
.h68{height:12.570000px;}
.h54{height:12.855000px;}
.h64{height:12.913500px;}
.h60{height:12.914999px;}
.h66{height:12.960000px;}
.h74{height:13.048500px;}
.h69{height:13.050000px;}
.h28{height:13.200000px;}
.h22{height:13.289999px;}
.h73{height:13.453500px;}
.h70{height:13.455000px;}
.h5f{height:13.950000px;}
.h71{height:14.158500px;}
.h7d{height:14.159999px;}
.hf{height:14.520000px;}
.h63{height:15.238500px;}
.h1c{height:15.240000px;}
.h52{height:15.301500px;}
.h62{height:15.690000px;}
.h27{height:16.231500px;}
.h15{height:16.273500px;}
.h19{height:16.275000px;}
.h17{height:16.515000px;}
.h5e{height:17.263500px;}
.h37{height:17.265000px;}
.h56{height:17.865000px;}
.h5b{height:17.908500px;}
.h6d{height:18.675000px;}
.h29{height:18.765000px;}
.h11{height:19.005000px;}
.h34{height:20.025000px;}
.h31{height:20.026500px;}
.h30{height:20.039999px;}
.h41{height:20.041500px;}
.h4c{height:20.323703px;}
.h4b{height:21.070898px;}
.h7c{height:23.067601px;}
.h9{height:24.805224px;}
.h5a{height:25.038605px;}
.h59{height:26.674650px;}
.h78{height:28.834282px;}
.h1f{height:29.457331px;}
.h21{height:31.382100px;}
.h7b{height:31.717624px;}
.h57{height:34.702682px;}
.h8{height:35.436035px;}
.h7{height:36.855469px;}
.h1d{height:38.040000px;}
.h55{height:38.106899px;}
.h4a{height:39.106879px;}
.h2d{height:40.946285px;}
.h6{height:41.689453px;}
.h16{height:42.141797px;}
.h23{height:44.368500px;}
.h18{height:44.831699px;}
.h39{height:44.895000px;}
.h6b{height:46.952454px;}
.h6c{height:46.953003px;}
.h45{height:47.130000px;}
.h81{height:48.255827px;}
.h77{height:48.256193px;}
.h53{height:48.256559px;}
.h6a{height:48.256651px;}
.h75{height:48.256739px;}
.h76{height:48.256742px;}
.h80{height:48.256925px;}
.h4{height:48.297000px;}
.h3{height:48.552000px;}
.h6e{height:48.572420px;}
.h1a{height:49.113000px;}
.h5c{height:49.120085px;}
.h1b{height:50.027344px;}
.h82{height:50.439000px;}
.h2a{height:50.809259px;}
.h2c{height:51.111951px;}
.h4e{height:51.153361px;}
.h72{height:53.072041px;}
.h7f{height:53.072133px;}
.h61{height:53.072225px;}
.h3d{height:53.795081px;}
.h3a{height:53.795261px;}
.h1e{height:53.795627px;}
.h24{height:53.795632px;}
.h46{height:53.795719px;}
.h25{height:54.135371px;}
.h47{height:54.141322px;}
.h5d{height:54.464188px;}
.h58{height:54.469682px;}
.h2{height:55.404000px;}
.h2f{height:55.489471px;}
.h12{height:55.515070px;}
.h3c{height:55.515254px;}
.h3f{height:55.515345px;}
.h10{height:55.516169px;}
.h49{height:55.521292px;}
.h32{height:56.906083px;}
.h35{height:56.906087px;}
.h43{height:56.912129px;}
.h14{height:56.922631px;}
.hb{height:57.780000px;}
.h26{height:58.427859px;}
.ha{height:59.340000px;}
.h2b{height:61.604952px;}
.h2e{height:61.605685px;}
.h42{height:62.399482px;}
.h44{height:62.399754px;}
.hd{height:64.446000px;}
.h50{height:64.680000px;}
.h13{height:70.295904px;}
.h5{height:71.208000px;}
.he{height:72.000000px;}
.h33{height:74.480096px;}
.hc{height:92.448000px;}
.h3b{height:140.643526px;}
.h3e{height:158.571011px;}
.h48{height:158.571017px;}
.h79{height:311.144989px;}
.h7a{height:311.146500px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w24{width:6.703500px;}
.w20{width:6.705000px;}
.w1a{width:8.220000px;}
.w3e{width:8.985000px;}
.w26{width:11.625000px;}
.w25{width:11.626500px;}
.w38{width:13.320000px;}
.w23{width:13.860000px;}
.w11{width:14.849999px;}
.w36{width:15.450000px;}
.w3b{width:16.335000px;}
.wf{width:17.340000px;}
.wb{width:18.150000px;}
.w49{width:19.920000px;}
.w34{width:20.310000px;}
.w2e{width:21.646500px;}
.w2{width:27.270000px;}
.w2a{width:27.493500px;}
.w28{width:27.495000px;}
.w3a{width:28.935000px;}
.w2d{width:28.936500px;}
.w3c{width:29.385000px;}
.w18{width:30.301500px;}
.w42{width:30.990000px;}
.w9{width:32.010000px;}
.w17{width:32.011499px;}
.w4c{width:33.944999px;}
.w1d{width:35.625000px;}
.w4d{width:36.615000px;}
.w2c{width:36.631499px;}
.w40{width:40.515000px;}
.wc{width:40.516500px;}
.w32{width:41.788499px;}
.w35{width:42.598500px;}
.w37{width:43.829999px;}
.w39{width:44.339999px;}
.w4{width:44.368500px;}
.w8{width:44.370000px;}
.w7{width:45.344999px;}
.w6{width:46.094999px;}
.we{width:46.439999px;}
.w30{width:47.849999px;}
.w12{width:47.851499px;}
.w31{width:48.433502px;}
.w13{width:48.435000px;}
.w10{width:54.705002px;}
.w3d{width:55.231499px;}
.w3f{width:56.100002px;}
.w41{width:56.730000px;}
.w33{width:63.990000px;}
.w2f{width:64.333500px;}
.w44{width:66.959999px;}
.w4b{width:68.355000px;}
.w1b{width:68.580002px;}
.w29{width:71.205002px;}
.w27{width:71.206500px;}
.w4e{width:73.485003px;}
.w2b{width:74.969999px;}
.w48{width:75.823500px;}
.w47{width:75.824999px;}
.w19{width:78.870003px;}
.w4a{width:103.350002px;}
.w43{width:103.783504px;}
.w46{width:110.865005px;}
.wd{width:119.685000px;}
.w14{width:139.785004px;}
.wa{width:149.955002px;}
.w21{width:158.984997px;}
.w5{width:164.866505px;}
.w3{width:169.694996px;}
.w1f{width:209.684990px;}
.w1c{width:210.133507px;}
.w1e{width:233.865005px;}
.w15{width:246.540000px;}
.w22{width:290.639992px;}
.w16{width:299.924995px;}
.w45{width:540.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x94{left:8.992218px;}
.x5b{left:10.305450px;}
.x52{left:12.004361px;}
.xa7{left:19.817413px;}
.xc4{left:21.085648px;}
.x67{left:22.173906px;}
.x43{left:31.038900px;}
.x68{left:34.223402px;}
.x28{left:38.071060px;}
.x27{left:45.929581px;}
.x69{left:48.737406px;}
.x92{left:51.383102px;}
.x1d{left:54.167542px;}
.x5c{left:58.873947px;}
.x65{left:62.773659px;}
.xd{left:67.120056px;}
.x1e{left:69.941574px;}
.x1c{left:74.014069px;}
.x2{left:76.535402px;}
.x73{left:82.190397px;}
.x8d{left:84.034498px;}
.x1{left:85.181849px;}
.x3c{left:87.789900px;}
.x5{left:90.972599px;}
.x9{left:93.543303px;}
.x2e{left:95.349003px;}
.x42{left:96.455395px;}
.x6{left:97.795200px;}
.x45{left:100.950903px;}
.x38{left:102.784504px;}
.x74{left:107.441408px;}
.x62{left:110.598003px;}
.xe{left:112.658569px;}
.x2b{left:115.534058px;}
.x63{left:118.817104px;}
.x9f{left:122.035355px;}
.x6c{left:126.416096px;}
.xb9{left:132.201153px;}
.x72{left:135.410397px;}
.x75{left:138.791405px;}
.x2f{left:141.444305px;}
.x20{left:145.801071px;}
.x6f{left:146.829895px;}
.x6d{left:148.904400px;}
.x39{left:151.219654px;}
.xc9{left:152.360400px;}
.x3b{left:154.731903px;}
.xcf{left:156.726002px;}
.xf{left:158.195572px;}
.x76{left:164.937910px;}
.x44{left:169.577396px;}
.xa0{left:173.008495px;}
.x80{left:176.983050px;}
.xa1{left:179.712753px;}
.x46{left:180.870895px;}
.x2c{left:189.983997px;}
.xae{left:191.378403px;}
.x70{left:195.156904px;}
.x7c{left:197.521500px;}
.xaf{left:201.179993px;}
.x40{left:204.140402px;}
.x3d{left:207.824409px;}
.x49{left:211.020910px;}
.xc8{left:213.496948px;}
.x3a{left:216.320389px;}
.x9d{left:217.861954px;}
.xb2{left:221.658005px;}
.x4b{left:223.601400px;}
.x3e{left:225.165894px;}
.x78{left:226.872900px;}
.x2d{left:236.424294px;}
.xd0{left:238.100990px;}
.x47{left:239.954407px;}
.x30{left:243.276009px;}
.x6a{left:245.546402px;}
.xb0{left:249.029709px;}
.x77{left:250.398903px;}
.x7f{left:257.190010px;}
.x31{left:260.615410px;}
.x48{left:263.106903px;}
.x64{left:265.269150px;}
.xd5{left:267.330002px;}
.x3f{left:271.082405px;}
.x34{left:273.750000px;}
.xc1{left:276.377998px;}
.x66{left:279.300156px;}
.x9e{left:281.280600px;}
.x6b{left:286.670403px;}
.x35{left:288.600746px;}
.x8e{left:290.390991px;}
.x4a{left:292.226395px;}
.x4d{left:295.772398px;}
.xa3{left:298.249489px;}
.x4c{left:303.519905px;}
.xa4{left:304.954948px;}
.x6e{left:310.400391px;}
.x79{left:312.333893px;}
.xd1{left:313.926155px;}
.xca{left:317.898010px;}
.xbc{left:319.953003px;}
.x7a{left:321.800098px;}
.x41{left:323.075409px;}
.xcc{left:324.883507px;}
.xd2{left:326.947495px;}
.xd6{left:330.254997px;}
.xbb{left:331.383911px;}
.xb1{left:334.974747px;}
.xd7{left:336.735146px;}
.xb3{left:342.687744px;}
.xcd{left:344.803802px;}
.xbf{left:349.511993px;}
.xbd{left:351.168297px;}
.x32{left:353.992493px;}
.x8f{left:363.967506px;}
.x7b{left:367.175400px;}
.xb5{left:369.070793px;}
.x4e{left:376.460403px;}
.xbe{left:379.754997px;}
.xb4{left:381.399010px;}
.x36{left:385.849503px;}
.xcb{left:393.722397px;}
.xc7{left:399.937500px;}
.xd3{left:402.772202px;}
.xce{left:406.431015px;}
.x33{left:408.697952px;}
.x8{left:410.647064px;}
.xa2{left:426.996002px;}
.x37{left:433.700867px;}
.x3{left:459.850342px;}
.xb6{left:462.614227px;}
.x26{left:470.005050px;}
.x1b{left:471.220047px;}
.x4{left:476.858231px;}
.x88{left:482.792999px;}
.xd8{left:484.724396px;}
.x57{left:489.587540px;}
.x54{left:491.297562px;}
.x14{left:497.429993px;}
.x22{left:499.437012px;}
.x9a{left:508.326004px;}
.x24{left:510.409515px;}
.x23{left:517.586380px;}
.x29{left:521.359039px;}
.x90{left:522.992981px;}
.x11{left:528.785980px;}
.x2a{left:530.957819px;}
.xc2{left:534.906029px;}
.xa5{left:536.568008px;}
.x71{left:537.891129px;}
.x15{left:543.525604px;}
.x97{left:546.834000px;}
.xa6{left:549.185532px;}
.x25{left:550.924942px;}
.x1f{left:553.070572px;}
.xa8{left:559.514420px;}
.x91{left:561.237579px;}
.x12{left:573.155228px;}
.x16{left:574.969482px;}
.x18{left:578.765991px;}
.x9b{left:583.296432px;}
.x19{left:590.357986px;}
.xac{left:596.544022px;}
.x9c{left:597.853500px;}
.xd4{left:601.291489px;}
.x21{left:609.167542px;}
.x5e{left:611.659515px;}
.x93{left:613.984497px;}
.xc6{left:615.475479px;}
.xa9{left:616.996490px;}
.x5a{left:618.439499px;}
.x17{left:620.314178px;}
.x1a{left:622.367844px;}
.x13{left:624.077545px;}
.x10{left:628.907547px;}
.x82{left:638.703003px;}
.x81{left:641.572495px;}
.x5f{left:643.744629px;}
.x83{left:645.407547px;}
.x4f{left:646.516479px;}
.xc0{left:651.968994px;}
.xaa{left:655.306503px;}
.xad{left:660.877945px;}
.x60{left:672.793488px;}
.xab{left:676.951492px;}
.x50{left:678.601822px;}
.x84{left:682.224014px;}
.x85{left:688.928696px;}
.x58{left:691.693497px;}
.xb{left:694.949982px;}
.x5d{left:697.383453px;}
.xb7{left:701.574738px;}
.xa{left:703.753510px;}
.x61{left:704.878189px;}
.x55{left:709.156494px;}
.x7d{left:713.001022px;}
.x7e{left:719.706757px;}
.x95{left:721.111633px;}
.xc{left:722.219833px;}
.x59{left:723.779388px;}
.x56{left:741.241196px;}
.xba{left:745.784866px;}
.xb8{left:753.667328px;}
.x7{left:755.658737px;}
.x51{left:757.085999px;}
.xc5{left:766.310852px;}
.x8b{left:767.638504px;}
.x8c{left:774.342773px;}
.x89{left:778.459534px;}
.x96{left:780.237030px;}
.x8a{left:785.165131px;}
.x53{left:789.170654px;}
.x86{left:793.735474px;}
.x87{left:800.440063px;}
.xc3{left:802.682831px;}
.x98{left:805.922974px;}
.x99{left:812.628021px;}
@media print{
.v15{vertical-align:-74.918750pt;}
.v13{vertical-align:-58.978591pt;}
.ve{vertical-align:-43.038431pt;}
.v17{vertical-align:-19.183919pt;}
.v1{vertical-align:-18.133301pt;}
.vf{vertical-align:-12.266602pt;}
.v6{vertical-align:-9.589355pt;}
.v8{vertical-align:-7.967936pt;}
.v18{vertical-align:-6.400065pt;}
.v7{vertical-align:-5.317383pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:6.508559pt;}
.v9{vertical-align:7.967936pt;}
.v19{vertical-align:10.236816pt;}
.v4{vertical-align:13.138519pt;}
.va{vertical-align:14.476499pt;}
.v10{vertical-align:15.615970pt;}
.v16{vertical-align:19.285360pt;}
.v2{vertical-align:21.333333pt;}
.v3{vertical-align:23.163411pt;}
.v5{vertical-align:36.300954pt;}
.v11{vertical-align:38.309329pt;}
.v1a{vertical-align:41.050130pt;}
.vc{vertical-align:43.038431pt;}
.vd{vertical-align:52.634603pt;}
.v12{vertical-align:122.891113pt;}
.v14{vertical-align:138.826655pt;}
.ls48{letter-spacing:-1.973333pt;}
.ls4b{letter-spacing:-1.405333pt;}
.ls6b{letter-spacing:-0.800000pt;}
.ls5e{letter-spacing:-0.725333pt;}
.ls35{letter-spacing:-0.533333pt;}
.ls34{letter-spacing:-0.266667pt;}
.ls6c{letter-spacing:-0.226667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.000034pt;}
.lsc{letter-spacing:0.000038pt;}
.ls22{letter-spacing:0.000039pt;}
.ls3d{letter-spacing:0.000058pt;}
.ls21{letter-spacing:0.000077pt;}
.ls24{letter-spacing:0.000119pt;}
.ls50{letter-spacing:0.000163pt;}
.ls1b{letter-spacing:0.000200pt;}
.ls46{letter-spacing:0.000518pt;}
.ls4{letter-spacing:0.000579pt;}
.lsf{letter-spacing:0.002042pt;}
.ls16{letter-spacing:0.004221pt;}
.ls14{letter-spacing:0.004384pt;}
.ls25{letter-spacing:0.005185pt;}
.ls2b{letter-spacing:0.005368pt;}
.ls69{letter-spacing:0.007452pt;}
.ls4a{letter-spacing:0.007465pt;}
.ls1d{letter-spacing:0.008379pt;}
.lsb{letter-spacing:0.008542pt;}
.ls49{letter-spacing:0.008545pt;}
.ls67{letter-spacing:0.009040pt;}
.ls56{letter-spacing:0.009917pt;}
.ls19{letter-spacing:0.010559pt;}
.ls51{letter-spacing:0.010613pt;}
.ls2e{letter-spacing:0.014356pt;}
.ls12{letter-spacing:0.019641pt;}
.ls33{letter-spacing:0.019646pt;}
.ls23{letter-spacing:0.019682pt;}
.ls1a{letter-spacing:0.021494pt;}
.ls59{letter-spacing:0.022112pt;}
.ls3a{letter-spacing:0.026703pt;}
.ls66{letter-spacing:0.026784pt;}
.ls17{letter-spacing:0.026865pt;}
.ls43{letter-spacing:0.032123pt;}
.ls29{letter-spacing:0.033945pt;}
.ls45{letter-spacing:0.265669pt;}
.ls3b{letter-spacing:0.265951pt;}
.ls37{letter-spacing:0.266602pt;}
.ls36{letter-spacing:0.266667pt;}
.ls5d{letter-spacing:0.316146pt;}
.ls53{letter-spacing:0.425071pt;}
.ls5f{letter-spacing:0.800000pt;}
.ls42{letter-spacing:0.929840pt;}
.ls4e{letter-spacing:1.580731pt;}
.ls1c{letter-spacing:1.822486pt;}
.ls28{letter-spacing:2.045648pt;}
.lsd{letter-spacing:2.082842pt;}
.ls18{letter-spacing:2.157229pt;}
.ls32{letter-spacing:2.641675pt;}
.ls20{letter-spacing:2.652678pt;}
.ls4c{letter-spacing:2.660321pt;}
.ls5a{letter-spacing:2.662280pt;}
.ls0{letter-spacing:3.546667pt;}
.ls47{letter-spacing:3.982452pt;}
.lsa{letter-spacing:4.013851pt;}
.ls4d{letter-spacing:4.859299pt;}
.ls15{letter-spacing:5.300725pt;}
.ls2f{letter-spacing:5.301214pt;}
.ls2a{letter-spacing:5.301254pt;}
.ls2d{letter-spacing:5.301295pt;}
.lse{letter-spacing:5.727814pt;}
.ls39{letter-spacing:5.818858pt;}
.ls38{letter-spacing:5.819020pt;}
.ls3e{letter-spacing:6.004127pt;}
.ls26{letter-spacing:6.829714pt;}
.ls1f{letter-spacing:7.381385pt;}
.ls58{letter-spacing:8.035956pt;}
.ls30{letter-spacing:8.820222pt;}
.ls3f{letter-spacing:8.873356pt;}
.ls11{letter-spacing:9.149626pt;}
.ls61{letter-spacing:10.342495pt;}
.ls4f{letter-spacing:11.511319pt;}
.ls8{letter-spacing:11.795718pt;}
.ls68{letter-spacing:12.220789pt;}
.ls3c{letter-spacing:12.422922pt;}
.ls62{letter-spacing:12.871664pt;}
.ls55{letter-spacing:12.916827pt;}
.ls6a{letter-spacing:13.962667pt;}
.ls5c{letter-spacing:14.136248pt;}
.ls5b{letter-spacing:14.181412pt;}
.ls60{letter-spacing:14.226576pt;}
.ls44{letter-spacing:14.718081pt;}
.ls6{letter-spacing:14.771215pt;}
.ls52{letter-spacing:16.258963pt;}
.ls41{letter-spacing:17.410313pt;}
.ls27{letter-spacing:17.421824pt;}
.ls2c{letter-spacing:17.424655pt;}
.ls54{letter-spacing:17.434172pt;}
.ls9{letter-spacing:17.899264pt;}
.ls5{letter-spacing:18.324852pt;}
.ls1e{letter-spacing:18.324854pt;}
.ls10{letter-spacing:20.058701pt;}
.ls40{letter-spacing:20.775341pt;}
.ls7{letter-spacing:22.925771pt;}
.ls13{letter-spacing:23.007919pt;}
.ls1{letter-spacing:24.273059pt;}
.ls2{letter-spacing:47.124797pt;}
.ls57{letter-spacing:56.701319pt;}
.ls64{letter-spacing:174.948187pt;}
.ls63{letter-spacing:189.187345pt;}
.ls65{letter-spacing:190.031146pt;}
.ws168{word-spacing:-199.805181pt;}
.ws165{word-spacing:-198.961380pt;}
.ws167{word-spacing:-184.722222pt;}
.ws16f{word-spacing:-14.824348pt;}
.wsd5{word-spacing:-14.771215pt;}
.wsed{word-spacing:-14.718081pt;}
.ws162{word-spacing:-14.133333pt;}
.ws2{word-spacing:-13.333333pt;}
.ws1{word-spacing:-12.928000pt;}
.ws163{word-spacing:-12.916827pt;}
.ws17c{word-spacing:-12.800000pt;}
.ws17e{word-spacing:-12.533333pt;}
.wsf7{word-spacing:-11.360000pt;}
.wsab{word-spacing:-11.333333pt;}
.ws6{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.773333pt;}
.ws150{word-spacing:-10.608000pt;}
.ws5{word-spacing:-10.240000pt;}
.ws0{word-spacing:-8.885333pt;}
.ws17d{word-spacing:-8.704000pt;}
.ws3{word-spacing:-7.933333pt;}
.ws7{word-spacing:-7.168000pt;}
.ws5b{word-spacing:-4.586667pt;}
.wsdb{word-spacing:-3.893333pt;}
.wsd3{word-spacing:-3.626667pt;}
.ws1ac{word-spacing:-3.581333pt;}
.ws79{word-spacing:-3.573333pt;}
.ws16a{word-spacing:-3.520000pt;}
.ws180{word-spacing:-3.466667pt;}
.ws190{word-spacing:-3.413333pt;}
.ws89{word-spacing:-3.360000pt;}
.ws187{word-spacing:-3.082667pt;}
.ws15c{word-spacing:-3.040000pt;}
.ws16c{word-spacing:-2.986667pt;}
.ws17f{word-spacing:-2.933333pt;}
.wsd2{word-spacing:-2.880000pt;}
.ws28{word-spacing:-2.773333pt;}
.ws137{word-spacing:-2.613333pt;}
.wsc1{word-spacing:-2.560000pt;}
.ws68{word-spacing:-2.506667pt;}
.wsf2{word-spacing:-2.453333pt;}
.ws88{word-spacing:-2.400000pt;}
.ws10b{word-spacing:-2.346667pt;}
.ws13c{word-spacing:-2.293333pt;}
.ws2a{word-spacing:-2.240000pt;}
.ws1b6{word-spacing:-2.221333pt;}
.ws63{word-spacing:-2.186667pt;}
.ws9a{word-spacing:-2.133333pt;}
.ws161{word-spacing:-2.130667pt;}
.wsc4{word-spacing:-2.080000pt;}
.ws1d4{word-spacing:-2.040000pt;}
.ws87{word-spacing:-2.026667pt;}
.ws147{word-spacing:-1.973333pt;}
.ws1b{word-spacing:-1.920000pt;}
.ws97{word-spacing:-1.866667pt;}
.ws19c{word-spacing:-1.858667pt;}
.wsf8{word-spacing:-1.813333pt;}
.ws194{word-spacing:-1.768000pt;}
.wscc{word-spacing:-1.760000pt;}
.ws17b{word-spacing:-1.722667pt;}
.ws8b{word-spacing:-1.706667pt;}
.ws86{word-spacing:-1.653333pt;}
.ws160{word-spacing:-1.632000pt;}
.ws12a{word-spacing:-1.625894pt;}
.ws3e{word-spacing:-1.600000pt;}
.ws14d{word-spacing:-1.586667pt;}
.ws13d{word-spacing:-1.580731pt;}
.wsb0{word-spacing:-1.546667pt;}
.ws1d7{word-spacing:-1.541333pt;}
.ws176{word-spacing:-1.493333pt;}
.ws1a8{word-spacing:-1.450667pt;}
.ws14b{word-spacing:-1.440000pt;}
.ws1bb{word-spacing:-1.405333pt;}
.ws59{word-spacing:-1.386667pt;}
.ws1a6{word-spacing:-1.360000pt;}
.ws7c{word-spacing:-1.333333pt;}
.ws17a{word-spacing:-1.314667pt;}
.ws148{word-spacing:-1.280000pt;}
.ws185{word-spacing:-1.269333pt;}
.ws8a{word-spacing:-1.226667pt;}
.ws14c{word-spacing:-1.224000pt;}
.ws24{word-spacing:-1.173333pt;}
.ws1c3{word-spacing:-1.133333pt;}
.ws10d{word-spacing:-1.120000pt;}
.ws105{word-spacing:-1.066667pt;}
.ws5e{word-spacing:-1.013333pt;}
.ws1b2{word-spacing:-0.997333pt;}
.ws51{word-spacing:-0.960000pt;}
.ws1cd{word-spacing:-0.952000pt;}
.ws34{word-spacing:-0.906667pt;}
.ws1ae{word-spacing:-0.861333pt;}
.ws32{word-spacing:-0.853333pt;}
.wse5{word-spacing:-0.800000pt;}
.ws3f{word-spacing:-0.746667pt;}
.ws5a{word-spacing:-0.693333pt;}
.ws1d2{word-spacing:-0.680000pt;}
.ws7e{word-spacing:-0.640000pt;}
.ws1b3{word-spacing:-0.634667pt;}
.ws14e{word-spacing:-0.589333pt;}
.wsac{word-spacing:-0.586667pt;}
.wsad{word-spacing:-0.533333pt;}
.ws8{word-spacing:-0.506667pt;}
.ws15f{word-spacing:-0.498667pt;}
.ws72{word-spacing:-0.480000pt;}
.wsa6{word-spacing:-0.426667pt;}
.ws1a5{word-spacing:-0.408000pt;}
.ws119{word-spacing:-0.373333pt;}
.ws2c{word-spacing:-0.320000pt;}
.ws1de{word-spacing:-0.272000pt;}
.ws65{word-spacing:-0.266667pt;}
.ws1dd{word-spacing:-0.226667pt;}
.wsee{word-spacing:-0.213333pt;}
.wsc6{word-spacing:-0.160000pt;}
.ws127{word-spacing:-0.136000pt;}
.ws6b{word-spacing:-0.106667pt;}
.wsa9{word-spacing:-0.053333pt;}
.wsaa{word-spacing:-0.053134pt;}
.ws10a{word-spacing:-0.045333pt;}
.ws128{word-spacing:-0.045164pt;}
.wsbd{word-spacing:-0.037194pt;}
.ws12b{word-spacing:-0.031614pt;}
.wsda{word-spacing:-0.026567pt;}
.ws9{word-spacing:0.000000pt;}
.ws21{word-spacing:0.053333pt;}
.ws1a0{word-spacing:0.090667pt;}
.ws98{word-spacing:0.106667pt;}
.ws1cc{word-spacing:0.136000pt;}
.ws112{word-spacing:0.160000pt;}
.wsb8{word-spacing:0.213333pt;}
.ws1ab{word-spacing:0.226667pt;}
.ws4a{word-spacing:0.266667pt;}
.ws1bc{word-spacing:0.317333pt;}
.ws16{word-spacing:0.320000pt;}
.ws184{word-spacing:0.362667pt;}
.ws5c{word-spacing:0.373333pt;}
.ws95{word-spacing:0.426667pt;}
.ws186{word-spacing:0.453333pt;}
.wse1{word-spacing:0.480000pt;}
.ws18c{word-spacing:0.498667pt;}
.wsc3{word-spacing:0.533333pt;}
.ws102{word-spacing:0.586667pt;}
.ws1cb{word-spacing:0.589333pt;}
.ws1dc{word-spacing:0.634667pt;}
.ws118{word-spacing:0.640000pt;}
.ws1b4{word-spacing:0.680000pt;}
.wsfa{word-spacing:0.693333pt;}
.ws1ba{word-spacing:0.725333pt;}
.ws93{word-spacing:0.746667pt;}
.ws80{word-spacing:0.800000pt;}
.ws1c9{word-spacing:0.816000pt;}
.ws76{word-spacing:0.853333pt;}
.ws81{word-spacing:0.906667pt;}
.ws1b9{word-spacing:0.952000pt;}
.ws3d{word-spacing:0.960000pt;}
.ws35{word-spacing:1.013333pt;}
.ws101{word-spacing:1.066667pt;}
.ws1c1{word-spacing:1.088000pt;}
.ws29{word-spacing:1.120000pt;}
.ws14a{word-spacing:1.173333pt;}
.ws183{word-spacing:1.224000pt;}
.ws38{word-spacing:1.226667pt;}
.ws71{word-spacing:1.280000pt;}
.ws3a{word-spacing:1.333333pt;}
.ws8f{word-spacing:1.386667pt;}
.ws125{word-spacing:1.405333pt;}
.wse4{word-spacing:1.440000pt;}
.ws142{word-spacing:1.493333pt;}
.ws195{word-spacing:1.496000pt;}
.ws1c7{word-spacing:1.541333pt;}
.ws5f{word-spacing:1.546667pt;}
.ws30{word-spacing:1.600000pt;}
.wsfc{word-spacing:1.653333pt;}
.ws19f{word-spacing:1.677333pt;}
.ws43{word-spacing:1.706667pt;}
.ws49{word-spacing:1.760000pt;}
.ws19e{word-spacing:1.768000pt;}
.wseb{word-spacing:1.813333pt;}
.ws15d{word-spacing:1.858667pt;}
.ws1f{word-spacing:1.866667pt;}
.ws1da{word-spacing:1.904000pt;}
.ws40{word-spacing:1.920000pt;}
.ws18f{word-spacing:1.949333pt;}
.ws66{word-spacing:1.973333pt;}
.ws178{word-spacing:2.026667pt;}
.ws4f{word-spacing:2.080000pt;}
.ws1b1{word-spacing:2.085333pt;}
.ws1b8{word-spacing:2.130667pt;}
.ws107{word-spacing:2.133333pt;}
.ws9b{word-spacing:2.186667pt;}
.ws9f{word-spacing:2.240000pt;}
.wsbb{word-spacing:2.293333pt;}
.ws134{word-spacing:2.346667pt;}
.ws1df{word-spacing:2.357333pt;}
.ws110{word-spacing:2.400000pt;}
.ws15e{word-spacing:2.402667pt;}
.ws1ce{word-spacing:2.448000pt;}
.ws22{word-spacing:2.453333pt;}
.ws14{word-spacing:2.506667pt;}
.wsc8{word-spacing:2.560000pt;}
.ws1ca{word-spacing:2.584000pt;}
.wsa5{word-spacing:2.613333pt;}
.ws1b7{word-spacing:2.629333pt;}
.ws54{word-spacing:2.666667pt;}
.ws1c{word-spacing:2.674667pt;}
.ws2d{word-spacing:2.720000pt;}
.ws126{word-spacing:2.765333pt;}
.wsd1{word-spacing:2.773333pt;}
.ws2b{word-spacing:2.826667pt;}
.ws45{word-spacing:2.880000pt;}
.ws10c{word-spacing:2.933333pt;}
.wscd{word-spacing:2.986667pt;}
.ws1c0{word-spacing:3.037333pt;}
.wse{word-spacing:3.040000pt;}
.ws7a{word-spacing:3.093333pt;}
.wse7{word-spacing:3.146667pt;}
.ws1b5{word-spacing:3.173333pt;}
.wse9{word-spacing:3.200000pt;}
.ws1d5{word-spacing:3.218667pt;}
.ws11a{word-spacing:3.253333pt;}
.ws13a{word-spacing:3.306667pt;}
.ws138{word-spacing:3.360000pt;}
.ws60{word-spacing:3.413333pt;}
.ws7b{word-spacing:3.466667pt;}
.ws1bf{word-spacing:3.490667pt;}
.ws56{word-spacing:3.520000pt;}
.ws182{word-spacing:3.536000pt;}
.ws64{word-spacing:3.573333pt;}
.ws1c6{word-spacing:3.581333pt;}
.ws73{word-spacing:3.626667pt;}
.ws17{word-spacing:3.680000pt;}
.wsba{word-spacing:3.733333pt;}
.wsb4{word-spacing:3.786667pt;}
.ws1a3{word-spacing:3.808000pt;}
.ws44{word-spacing:3.840000pt;}
.ws117{word-spacing:3.893333pt;}
.ws1d8{word-spacing:3.944000pt;}
.wsaf{word-spacing:3.946667pt;}
.ws18d{word-spacing:3.989333pt;}
.ws1a{word-spacing:4.000000pt;}
.ws25{word-spacing:4.053333pt;}
.ws1cf{word-spacing:4.080000pt;}
.wsf0{word-spacing:4.106667pt;}
.ws136{word-spacing:4.160000pt;}
.ws7d{word-spacing:4.213333pt;}
.ws158{word-spacing:4.266667pt;}
.ws6a{word-spacing:4.320000pt;}
.ws1a7{word-spacing:4.352000pt;}
.ws4c{word-spacing:4.373333pt;}
.ws139{word-spacing:4.426667pt;}
.wsde{word-spacing:4.480000pt;}
.ws26{word-spacing:4.533333pt;}
.ws52{word-spacing:4.586667pt;}
.ws2f{word-spacing:4.693333pt;}
.ws196{word-spacing:4.714667pt;}
.ws58{word-spacing:4.746667pt;}
.wsdd{word-spacing:4.800000pt;}
.wsb9{word-spacing:4.853333pt;}
.ws198{word-spacing:4.896000pt;}
.wsbc{word-spacing:4.906667pt;}
.ws1a4{word-spacing:4.941333pt;}
.ws5d{word-spacing:4.960000pt;}
.ws15b{word-spacing:5.013333pt;}
.wsfe{word-spacing:5.066667pt;}
.wsa0{word-spacing:5.120000pt;}
.ws1d1{word-spacing:5.168000pt;}
.ws36{word-spacing:5.173333pt;}
.ws18{word-spacing:5.280000pt;}
.ws1c4{word-spacing:5.304000pt;}
.wsc{word-spacing:5.333333pt;}
.ws181{word-spacing:5.349333pt;}
.ws6e{word-spacing:5.386667pt;}
.ws13{word-spacing:5.440000pt;}
.ws10e{word-spacing:5.493333pt;}
.ws1aa{word-spacing:5.530667pt;}
.ws135{word-spacing:5.546667pt;}
.ws1a9{word-spacing:5.576000pt;}
.wsa4{word-spacing:5.600000pt;}
.ws91{word-spacing:5.653333pt;}
.ws84{word-spacing:5.706667pt;}
.ws18e{word-spacing:5.757333pt;}
.ws2e{word-spacing:5.813333pt;}
.wse6{word-spacing:5.866667pt;}
.ws1e1{word-spacing:5.893333pt;}
.ws174{word-spacing:5.973333pt;}
.ws4e{word-spacing:6.026667pt;}
.wsc0{word-spacing:6.080000pt;}
.ws4d{word-spacing:6.133333pt;}
.ws53{word-spacing:6.186667pt;}
.ws19a{word-spacing:6.210667pt;}
.ws70{word-spacing:6.240000pt;}
.ws33{word-spacing:6.293333pt;}
.wsb2{word-spacing:6.346667pt;}
.ws188{word-spacing:6.392000pt;}
.ws74{word-spacing:6.400000pt;}
.ws9d{word-spacing:6.453333pt;}
.ws31{word-spacing:6.506667pt;}
.ws1af{word-spacing:6.528000pt;}
.ws19{word-spacing:6.560000pt;}
.wsa8{word-spacing:6.666667pt;}
.ws18b{word-spacing:6.709333pt;}
.ws115{word-spacing:6.720000pt;}
.ws7f{word-spacing:6.773333pt;}
.ws6d{word-spacing:6.826667pt;}
.ws3c{word-spacing:6.880000pt;}
.ws46{word-spacing:6.933333pt;}
.ws1d9{word-spacing:6.981333pt;}
.wsc2{word-spacing:6.986667pt;}
.ws144{word-spacing:7.040000pt;}
.ws62{word-spacing:7.093333pt;}
.ws83{word-spacing:7.146667pt;}
.ws20{word-spacing:7.253333pt;}
.ws6f{word-spacing:7.306667pt;}
.ws55{word-spacing:7.360000pt;}
.wsf9{word-spacing:7.413333pt;}
.ws37{word-spacing:7.466667pt;}
.ws1a2{word-spacing:7.480000pt;}
.wscb{word-spacing:7.520000pt;}
.wsfb{word-spacing:7.573333pt;}
.wsb6{word-spacing:7.626667pt;}
.ws1c8{word-spacing:7.706667pt;}
.ws4b{word-spacing:7.733333pt;}
.ws15{word-spacing:7.840000pt;}
.ws189{word-spacing:7.888000pt;}
.ws13b{word-spacing:7.893333pt;}
.ws170{word-spacing:7.903653pt;}
.ws94{word-spacing:7.946667pt;}
.ws1c2{word-spacing:7.978667pt;}
.ws10{word-spacing:8.053333pt;}
.wse8{word-spacing:8.106667pt;}
.ws15a{word-spacing:8.160000pt;}
.ws75{word-spacing:8.213333pt;}
.wsa2{word-spacing:8.266667pt;}
.ws171{word-spacing:8.310121pt;}
.ws13e{word-spacing:8.320000pt;}
.ws100{word-spacing:8.426667pt;}
.ws9c{word-spacing:8.480000pt;}
.ws1d0{word-spacing:8.522667pt;}
.wsb{word-spacing:8.533333pt;}
.ws48{word-spacing:8.586667pt;}
.wsea{word-spacing:8.693333pt;}
.wsd6{word-spacing:8.745835pt;}
.ws19b{word-spacing:8.749333pt;}
.wsd9{word-spacing:8.767088pt;}
.wsfd{word-spacing:8.800000pt;}
.wsf6{word-spacing:8.813177pt;}
.wsd7{word-spacing:8.813181pt;}
.wsb3{word-spacing:8.853333pt;}
.ws104{word-spacing:8.906667pt;}
.ws114{word-spacing:8.960000pt;}
.ws3b{word-spacing:9.013333pt;}
.wse3{word-spacing:9.066667pt;}
.wsc9{word-spacing:9.120000pt;}
.ws16e{word-spacing:9.139025pt;}
.ws159{word-spacing:9.173333pt;}
.ws133{word-spacing:9.226667pt;}
.ws143{word-spacing:9.280000pt;}
.ws8c{word-spacing:9.386667pt;}
.wsa1{word-spacing:9.440000pt;}
.ws47{word-spacing:9.546667pt;}
.ws12f{word-spacing:9.600000pt;}
.ws41{word-spacing:9.653333pt;}
.ws16d{word-spacing:9.670363pt;}
.ws57{word-spacing:9.706667pt;}
.ws193{word-spacing:9.746667pt;}
.ws130{word-spacing:9.760000pt;}
.ws16b{word-spacing:9.813333pt;}
.ws113{word-spacing:9.920000pt;}
.wse0{word-spacing:9.973333pt;}
.ws50{word-spacing:10.133333pt;}
.wsca{word-spacing:10.186667pt;}
.ws1a1{word-spacing:10.200000pt;}
.wsf{word-spacing:10.240000pt;}
.ws172{word-spacing:10.252167pt;}
.ws141{word-spacing:10.293333pt;}
.ws164{word-spacing:10.297331pt;}
.ws173{word-spacing:10.400000pt;}
.ws19d{word-spacing:10.426667pt;}
.wsa7{word-spacing:10.453333pt;}
.ws69{word-spacing:10.506667pt;}
.wsa{word-spacing:10.613333pt;}
.ws132{word-spacing:10.666667pt;}
.ws10f{word-spacing:10.720000pt;}
.ws90{word-spacing:10.826667pt;}
.ws23{word-spacing:10.986667pt;}
.ws11{word-spacing:11.040000pt;}
.ws179{word-spacing:11.093333pt;}
.ws27{word-spacing:11.200000pt;}
.wsd8{word-spacing:11.211246pt;}
.ws131{word-spacing:11.306667pt;}
.ws39{word-spacing:11.466667pt;}
.ws61{word-spacing:11.520000pt;}
.wsa3{word-spacing:11.573333pt;}
.ws92{word-spacing:11.626667pt;}
.wsb5{word-spacing:11.680000pt;}
.ws197{word-spacing:11.696000pt;}
.ws67{word-spacing:11.733333pt;}
.wsbf{word-spacing:11.742584pt;}
.ws1bd{word-spacing:11.877333pt;}
.ws11b{word-spacing:11.893333pt;}
.ws13f{word-spacing:12.106667pt;}
.ws122{word-spacing:12.160000pt;}
.ws18a{word-spacing:12.194667pt;}
.ws77{word-spacing:12.213333pt;}
.wsd{word-spacing:12.266667pt;}
.ws123{word-spacing:12.320000pt;}
.ws1d{word-spacing:12.373333pt;}
.ws85{word-spacing:12.480000pt;}
.ws1e2{word-spacing:12.557333pt;}
.ws116{word-spacing:12.586667pt;}
.ws1b0{word-spacing:12.693333pt;}
.ws99{word-spacing:12.853333pt;}
.ws109{word-spacing:13.013333pt;}
.wsdc{word-spacing:13.120000pt;}
.ws140{word-spacing:13.226667pt;}
.wsb7{word-spacing:13.280000pt;}
.ws1d3{word-spacing:13.373333pt;}
.ws42{word-spacing:13.386667pt;}
.ws78{word-spacing:13.440000pt;}
.ws1e{word-spacing:13.493333pt;}
.ws82{word-spacing:13.546667pt;}
.ws149{word-spacing:13.653333pt;}
.ws103{word-spacing:13.920000pt;}
.ws191{word-spacing:13.973333pt;}
.ws120{word-spacing:14.026667pt;}
.ws124{word-spacing:14.080000pt;}
.ws111{word-spacing:14.186667pt;}
.ws175{word-spacing:14.293333pt;}
.ws192{word-spacing:14.346667pt;}
.wsf4{word-spacing:14.462994pt;}
.wsd4{word-spacing:14.463076pt;}
.ws14f{word-spacing:14.654319pt;}
.wsdf{word-spacing:14.666667pt;}
.ws1e0{word-spacing:14.688000pt;}
.ws1ad{word-spacing:15.005333pt;}
.ws96{word-spacing:15.093333pt;}
.ws169{word-spacing:15.146667pt;}
.ws121{word-spacing:15.253333pt;}
.ws8d{word-spacing:15.360000pt;}
.ws8e{word-spacing:15.520000pt;}
.ws199{word-spacing:15.594667pt;}
.ws9e{word-spacing:15.786667pt;}
.ws106{word-spacing:16.426667pt;}
.wsf3{word-spacing:16.746667pt;}
.ws1be{word-spacing:16.773333pt;}
.ws145{word-spacing:17.173333pt;}
.ws6c{word-spacing:17.386667pt;}
.wsf5{word-spacing:17.412335pt;}
.ws12d{word-spacing:17.699292pt;}
.ws12c{word-spacing:17.699455pt;}
.ws129{word-spacing:17.705349pt;}
.wse2{word-spacing:17.706667pt;}
.wsbe{word-spacing:18.321586pt;}
.ws177{word-spacing:19.626667pt;}
.ws1d6{word-spacing:19.765333pt;}
.ws146{word-spacing:20.373333pt;}
.ws12{word-spacing:20.853333pt;}
.ws1db{word-spacing:21.352000pt;}
.ws1c5{word-spacing:24.616000pt;}
.ws154{word-spacing:71.884766pt;}
.ws153{word-spacing:94.551432pt;}
.ws152{word-spacing:117.218099pt;}
.wsd0{word-spacing:128.000000pt;}
.ws108{word-spacing:134.346667pt;}
.ws12e{word-spacing:136.105143pt;}
.ws151{word-spacing:149.721680pt;}
.ws155{word-spacing:164.840007pt;}
.ws166{word-spacing:165.174158pt;}
.ws11c{word-spacing:213.280436pt;}
.ws11f{word-spacing:214.962303pt;}
.ws11e{word-spacing:235.066243pt;}
.ws11d{word-spacing:238.470378pt;}
.wscf{word-spacing:317.813333pt;}
.wsef{word-spacing:362.880000pt;}
.ws157{word-spacing:375.794108pt;}
.ws156{word-spacing:375.794596pt;}
.wsf1{word-spacing:422.186661pt;}
.wsec{word-spacing:447.253316pt;}
.wsae{word-spacing:591.039988pt;}
.wsff{word-spacing:604.426667pt;}
.wsb1{word-spacing:608.213333pt;}
.wsc5{word-spacing:661.226654pt;}
.wsce{word-spacing:697.386667pt;}
.wsc7{word-spacing:768.853333pt;}
._36{margin-left:-189.152186pt;}
._37{margin-left:-174.948181pt;}
._8{margin-left:-62.665588pt;}
._16{margin-left:-14.552215pt;}
._35{margin-left:-12.826500pt;}
._10{margin-left:-6.675755pt;}
._9{margin-left:-5.018400pt;}
._c{margin-left:-4.002933pt;}
._4{margin-left:-3.061333pt;}
._0{margin-left:-1.824000pt;}
._b{margin-left:-0.906667pt;}
._d{width:1.680000pt;}
._3{width:2.978272pt;}
._6{width:4.211061pt;}
._e{width:5.332544pt;}
._f{width:6.870122pt;}
._11{width:8.478403pt;}
._1{width:10.229333pt;}
._13{width:11.360000pt;}
._2{width:12.261333pt;}
._26{width:13.200012pt;}
._12{width:14.474666pt;}
._5{width:15.552000pt;}
._7{width:16.810667pt;}
._25{width:18.421333pt;}
._15{width:33.773333pt;}
._14{width:36.854936pt;}
._1b{width:46.838935pt;}
._a{width:48.370659pt;}
._1a{width:99.842672pt;}
._17{width:133.066243pt;}
._18{width:144.056436pt;}
._21{width:165.580241pt;}
._2e{width:176.173340pt;}
._34{width:198.819336pt;}
._2f{width:206.409017pt;}
._1c{width:213.176005pt;}
._31{width:218.493860pt;}
._20{width:221.527507pt;}
._2b{width:241.160526pt;}
._22{width:244.204590pt;}
._19{width:246.399577pt;}
._30{width:251.700846pt;}
._32{width:253.265544pt;}
._24{width:258.042597pt;}
._33{width:262.335449pt;}
._2d{width:275.932210pt;}
._1f{width:280.709264pt;}
._2c{width:285.002116pt;}
._1d{width:325.049601pt;}
._1e{width:377.996285pt;}
._23{width:393.092285pt;}
._2a{width:401.560000pt;}
._39{width:410.242113pt;}
._28{width:657.135733pt;}
._29{width:697.450667pt;}
._27{width:726.418667pt;}
._38{width:771.380819pt;}
.fsa{font-size:26.566933pt;}
.fs10{font-size:28.126933pt;}
.fsd{font-size:31.614400pt;}
.fs4{font-size:31.733332pt;}
.fse{font-size:35.158399pt;}
.fs9{font-size:37.193600pt;}
.fs6{font-size:37.333333pt;}
.fsf{font-size:38.674133pt;}
.fsc{font-size:45.163732pt;}
.fs1{font-size:45.333333pt;}
.fs0{font-size:50.666667pt;}
.fs8{font-size:53.133865pt;}
.fs3{font-size:53.333333pt;}
.fsb{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:80.000000pt;}
.fs5{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yd4{bottom:0.264160pt;}
.y61{bottom:0.264242pt;}
.yff{bottom:0.265463pt;}
.y1d5{bottom:0.265503pt;}
.y1dc{bottom:0.266602pt;}
.y199{bottom:0.266683pt;}
.y153{bottom:0.266805pt;}
.ycc{bottom:0.266927pt;}
.y64{bottom:0.966347pt;}
.y1b2{bottom:1.311442pt;}
.y1bb{bottom:1.311605pt;}
.y194{bottom:1.311870pt;}
.y1b5{bottom:1.311971pt;}
.y180{bottom:1.311991pt;}
.y1e0{bottom:1.312093pt;}
.y189{bottom:1.312134pt;}
.y1e3{bottom:1.312256pt;}
.y1e6{bottom:1.312337pt;}
.y1b8{bottom:1.312500pt;}
.y1aa{bottom:1.373047pt;}
.y12d{bottom:1.373067pt;}
.y12b{bottom:1.373169pt;}
.y16c{bottom:1.520996pt;}
.yf4{bottom:1.593608pt;}
.y85{bottom:1.594767pt;}
.yda{bottom:1.594808pt;}
.ye2{bottom:1.594930pt;}
.y136{bottom:1.803523pt;}
.y13b{bottom:1.803605pt;}
.y160{bottom:1.983398pt;}
.yc8{bottom:2.072114pt;}
.yb1{bottom:2.072122pt;}
.yc3{bottom:2.073456pt;}
.yc2{bottom:2.073475pt;}
.yad{bottom:2.073486pt;}
.yed{bottom:2.073608pt;}
.yeb{bottom:2.073669pt;}
.y79{bottom:2.074910pt;}
.y150{bottom:2.242533pt;}
.y7e{bottom:2.257487pt;}
.y90{bottom:2.257650pt;}
.yd1{bottom:2.589600pt;}
.ya0{bottom:2.590820pt;}
.y99{bottom:2.591064pt;}
.y9a{bottom:2.996379pt;}
.y191{bottom:3.056803pt;}
.y17d{bottom:3.056925pt;}
.y1af{bottom:3.087077pt;}
.y19a{bottom:3.087891pt;}
.y178{bottom:3.313985pt;}
.y17a{bottom:3.314393pt;}
.y184{bottom:3.314535pt;}
.y133{bottom:3.314616pt;}
.y152{bottom:3.314809pt;}
.y18c{bottom:3.315206pt;}
.y18e{bottom:3.315603pt;}
.y131{bottom:3.315918pt;}
.y169{bottom:3.401937pt;}
.y163{bottom:3.402262pt;}
.y16f{bottom:3.402751pt;}
.y166{bottom:3.402832pt;}
.y155{bottom:3.586955pt;}
.ybf{bottom:4.065328pt;}
.y71{bottom:4.065470pt;}
.y8a{bottom:4.065592pt;}
.y8e{bottom:4.066732pt;}
.y63{bottom:4.250977pt;}
.y14e{bottom:4.281199pt;}
.y122{bottom:4.689087pt;}
.y146{bottom:4.690348pt;}
.y100{bottom:4.690400pt;}
.y124{bottom:4.690410pt;}
.ye8{bottom:4.690430pt;}
.y1bf{bottom:4.695638pt;}
.y67{bottom:4.987345pt;}
.y148{bottom:4.987467pt;}
.y69{bottom:4.988159pt;}
.y94{bottom:4.988281pt;}
.y6c{bottom:4.988688pt;}
.y8c{bottom:4.988770pt;}
.y9d{bottom:4.989502pt;}
.y97{bottom:4.989746pt;}
.y197{bottom:5.411784pt;}
.y13a{bottom:5.438558pt;}
.y135{bottom:5.439697pt;}
.yac{bottom:5.977458pt;}
.yc1{bottom:5.977468pt;}
.yc7{bottom:5.977469pt;}
.yb0{bottom:5.977478pt;}
.yea{bottom:5.977620pt;}
.y138{bottom:10.235677pt;}
.y13d{bottom:10.235758pt;}
.y73{bottom:15.280233pt;}
.y77{bottom:16.022909pt;}
.y1be{bottom:16.310303pt;}
.y81{bottom:17.106771pt;}
.yf0{bottom:17.570943pt;}
.ydf{bottom:17.572123pt;}
.yd6{bottom:17.572144pt;}
.y75{bottom:24.266927pt;}
.y84{bottom:29.725464pt;}
.yd9{bottom:30.190918pt;}
.yf3{bottom:30.190938pt;}
.yf9{bottom:32.316264pt;}
.ydc{bottom:32.317586pt;}
.y83{bottom:33.710775pt;}
.ye1{bottom:34.176127pt;}
.yd8{bottom:34.176147pt;}
.yf2{bottom:34.176270pt;}
.ye5{bottom:36.301594pt;}
.yfc{bottom:36.301595pt;}
.yf7{bottom:40.286926pt;}
.y3c{bottom:54.220133pt;}
.y11f{bottom:94.628133pt;}
.y25{bottom:98.267598pt;}
.y6e{bottom:98.267731pt;}
.y190{bottom:100.673330pt;}
.y193{bottom:102.425333pt;}
.y192{bottom:103.607869pt;}
.y151{bottom:104.767995pt;}
.y11e{bottom:107.961466pt;}
.yca{bottom:108.128133pt;}
.y287{bottom:108.488129pt;}
.y129{bottom:110.221333pt;}
.y15{bottom:110.488129pt;}
.y206{bottom:112.488129pt;}
.y247{bottom:115.963470pt;}
.y24{bottom:116.134267pt;}
.y14d{bottom:117.131999pt;}
.y18d{bottom:117.593333pt;}
.y14f{bottom:119.374532pt;}
.y11d{bottom:121.294800pt;}
.y286{bottom:121.821462pt;}
.y18f{bottom:125.153330pt;}
.y205{bottom:125.821462pt;}
.y14c{bottom:126.888000pt;}
.y14{bottom:127.154795pt;}
.yc9{bottom:127.861471pt;}
.y246{bottom:129.296804pt;}
.y23{bottom:131.600932pt;}
.y285{bottom:135.154795pt;}
.y1cc{bottom:135.628906pt;}
.y18b{bottom:136.579997pt;}
.y204{bottom:139.154795pt;}
.ya7{bottom:139.938395pt;}
.yc6{bottom:142.461333pt;}
.y245{bottom:142.630137pt;}
.yfe{bottom:143.554667pt;}
.y13{bottom:143.821462pt;}
.y18a{bottom:144.139598pt;}
.y22{bottom:144.934265pt;}
.yc5{bottom:148.328003pt;}
.y284{bottom:148.488129pt;}
.y203{bottom:152.488129pt;}
.ya6{bottom:153.271729pt;}
.y244{bottom:155.963470pt;}
.y112{bottom:160.221333pt;}
.y12{bottom:160.488129pt;}
.ybe{bottom:161.793335pt;}
.y283{bottom:161.821462pt;}
.y21{bottom:162.800933pt;}
.yc0{bottom:162.941335pt;}
.ybd{bottom:165.741597pt;}
.y202{bottom:165.821462pt;}
.ya5{bottom:166.605062pt;}
.yc4{bottom:168.808136pt;}
.y243{bottom:169.296804pt;}
.y186{bottom:173.222677pt;}
.y188{bottom:174.974670pt;}
.y282{bottom:175.154805pt;}
.y187{bottom:176.157471pt;}
.y11{bottom:177.154805pt;}
.y20{bottom:178.267598pt;}
.y201{bottom:179.154805pt;}
.ya4{bottom:179.938395pt;}
.y242{bottom:182.630127pt;}
.ybc{bottom:186.221476pt;}
.y281{bottom:188.488139pt;}
.y183{bottom:190.144002pt;}
.ya8{bottom:190.677999pt;}
.y1f{bottom:191.600932pt;}
.y200{bottom:192.488139pt;}
.ya3{bottom:193.271729pt;}
.y128{bottom:193.554667pt;}
.y10{bottom:193.821472pt;}
.y241{bottom:195.963460pt;}
.y185{bottom:197.702942pt;}
.yba{bottom:198.940002pt;}
.y280{bottom:201.821472pt;}
.ybb{bottom:202.888143pt;}
.y1ff{bottom:205.821472pt;}
.y182{bottom:209.130676pt;}
.y240{bottom:209.296794pt;}
.y1e{bottom:209.467590pt;}
.y1ab{bottom:210.221333pt;}
.yf{bottom:210.488139pt;}
.y27f{bottom:215.154805pt;}
.y181{bottom:216.689067pt;}
.y1fe{bottom:219.154805pt;}
.yb9{bottom:219.554810pt;}
.y23f{bottom:222.630127pt;}
.ye{bottom:227.154805pt;}
.y27e{bottom:228.488139pt;}
.y17c{bottom:230.354675pt;}
.y1d{bottom:231.600932pt;}
.y17f{bottom:232.106669pt;}
.y1fd{bottom:232.488139pt;}
.y17e{bottom:233.289327pt;}
.y23e{bottom:235.963460pt;}
.yb8{bottom:236.221476pt;}
.y27d{bottom:241.821472pt;}
.y127{bottom:243.554667pt;}
.yd{bottom:243.821472pt;}
.y1c{bottom:244.934265pt;}
.y1fc{bottom:245.821472pt;}
.y179{bottom:247.276000pt;}
.yef{bottom:249.261332pt;}
.y23d{bottom:249.296794pt;}
.yb7{bottom:252.888143pt;}
.y17b{bottom:254.834798pt;}
.y27c{bottom:255.154805pt;}
.y1fb{bottom:259.154805pt;}
.yc{bottom:260.488139pt;}
.y101{bottom:262.623210pt;}
.y23c{bottom:262.630127pt;}
.yf6{bottom:263.549215pt;}
.yf1{bottom:264.840271pt;}
.y1b{bottom:264.934265pt;}
.yfd{bottom:266.041341pt;}
.y177{bottom:266.262675pt;}
.yf5{bottom:266.832275pt;}
.yde{bottom:267.914673pt;}
.y27b{bottom:268.488139pt;}
.yb6{bottom:269.554810pt;}
.y1cb{bottom:269.828288pt;}
.y1fa{bottom:272.488139pt;}
.y176{bottom:273.821065pt;}
.y23b{bottom:275.963460pt;}
.yfb{bottom:276.098880pt;}
.yb{bottom:277.154805pt;}
.y1a{bottom:278.267598pt;}
.yfa{bottom:278.825602pt;}
.y27a{bottom:281.821472pt;}
.yf8{bottom:283.437602pt;}
.ye0{bottom:283.494933pt;}
.ye6{bottom:283.701333pt;}
.ye3{bottom:285.486938pt;}
.yb5{bottom:286.221476pt;}
.y23a{bottom:289.296794pt;}
.y175{bottom:289.899597pt;}
.y126{bottom:293.554667pt;}
.ya{bottom:293.821472pt;}
.y279{bottom:295.154805pt;}
.ye4{bottom:297.478943pt;}
.y19{bottom:298.267598pt;}
.yb3{bottom:298.940002pt;}
.yaf{bottom:300.087992pt;}
.y1f9{bottom:301.821472pt;}
.y239{bottom:302.630127pt;}
.yb4{bottom:302.888143pt;}
.y174{bottom:303.232931pt;}
.yb2{bottom:305.954793pt;}
.y278{bottom:308.488139pt;}
.y12c{bottom:309.243998pt;}
.y125{bottom:310.221333pt;}
.y9{bottom:310.488139pt;}
.y18{bottom:311.600932pt;}
.y1f8{bottom:315.154805pt;}
.y238{bottom:315.963460pt;}
.y173{bottom:316.566264pt;}
.yab{bottom:320.554667pt;}
.y277{bottom:321.821472pt;}
.yaa{bottom:323.354797pt;}
.y1d9{bottom:325.910665pt;}
.yae{bottom:326.421468pt;}
.y123{bottom:326.888000pt;}
.y8{bottom:327.154805pt;}
.y1f7{bottom:328.488139pt;}
.y237{bottom:329.296794pt;}
.y17{bottom:331.600932pt;}
.y172{bottom:331.983337pt;}
.y276{bottom:335.154805pt;}
.y1f6{bottom:341.821452pt;}
.y1d8{bottom:342.577352pt;}
.y236{bottom:342.630127pt;}
.y111{bottom:343.554647pt;}
.y7{bottom:343.821452pt;}
.y16{bottom:344.934285pt;}
.y171{bottom:345.316650pt;}
.y275{bottom:348.488118pt;}
.y6f{bottom:348.551880pt;}
.y80{bottom:351.714681pt;}
.y1f5{bottom:355.154785pt;}
.y235{bottom:355.963460pt;}
.y1d7{bottom:357.021322pt;}
.y12a{bottom:359.244019pt;}
.y121{bottom:360.222656pt;}
.y6{bottom:360.488118pt;}
.y274{bottom:361.821452pt;}
.y87{bottom:365.202327pt;}
.y82{bottom:366.829467pt;}
.y88{bottom:367.267863pt;}
.y1f4{bottom:368.488118pt;}
.y86{bottom:368.821452pt;}
.y234{bottom:369.296794pt;}
.y273{bottom:375.154785pt;}
.y5{bottom:377.154785pt;}
.y1f3{bottom:381.821452pt;}
.y233{bottom:382.630127pt;}
.y272{bottom:388.488118pt;}
.y1a9{bottom:392.577352pt;}
.y5f{bottom:393.821452pt;}
.y1f2{bottom:395.154785pt;}
.y232{bottom:395.963460pt;}
.y271{bottom:401.821452pt;}
.y6d{bottom:405.614665pt;}
.y149{bottom:406.539998pt;}
.y1f1{bottom:408.488118pt;}
.y231{bottom:409.296794pt;}
.y4{bottom:410.488118pt;}
.y270{bottom:415.154785pt;}
.y7f{bottom:422.281331pt;}
.y230{bottom:422.630127pt;}
.y1d6{bottom:426.887980pt;}
.y5e{bottom:427.154785pt;}
.y26f{bottom:428.488118pt;}
.y22f{bottom:435.963460pt;}
.y1f0{bottom:437.821452pt;}
.y147{bottom:438.947998pt;}
.y7d{bottom:441.689331pt;}
.y26e{bottom:441.821452pt;}
.y5d{bottom:443.821452pt;}
.y22e{bottom:449.296794pt;}
.y1ef{bottom:451.154785pt;}
.y26d{bottom:455.154785pt;}
.ya9{bottom:456.539998pt;}
.y36{bottom:457.211182pt;}
.y5c{bottom:460.488118pt;}
.y22d{bottom:462.630127pt;}
.y1ee{bottom:464.488118pt;}
.y26c{bottom:468.488118pt;}
.y72{bottom:474.008016pt;}
.y22c{bottom:475.963460pt;}
.y158{bottom:476.887980pt;}
.y5b{bottom:477.154785pt;}
.y1ed{bottom:477.821452pt;}
.y7a{bottom:480.068115pt;}
.y26b{bottom:481.821452pt;}
.y78{bottom:486.746948pt;}
.y7c{bottom:486.748006pt;}
.y74{bottom:487.296265pt;}
.y7b{bottom:489.288249pt;}
.y22b{bottom:489.296794pt;}
.y35{bottom:489.877848pt;}
.y154{bottom:490.354655pt;}
.y1ec{bottom:491.154785pt;}
.y5a{bottom:493.821452pt;}
.y26a{bottom:495.154785pt;}
.y76{bottom:496.282918pt;}
.yd5{bottom:501.248006pt;}
.y22a{bottom:502.630127pt;}
.y1eb{bottom:504.488118pt;}
.y6b{bottom:505.613322pt;}
.y34{bottom:506.544515pt;}
.y269{bottom:508.488118pt;}
.y59{bottom:510.488118pt;}
.y229{bottom:515.963460pt;}
.yd7{bottom:516.828247pt;}
.ydd{bottom:517.034667pt;}
.y1ea{bottom:517.821452pt;}
.ydb{bottom:518.820272pt;}
.y268{bottom:521.821452pt;}
.y1a8{bottom:522.281331pt;}
.y113{bottom:523.206665pt;}
.y33{bottom:523.211182pt;}
.y14b{bottom:526.887980pt;}
.y58{bottom:527.154785pt;}
.y228{bottom:529.296794pt;}
.y1e9{bottom:531.154785pt;}
.y267{bottom:535.154785pt;}
.y32{bottom:539.877848pt;}
.y227{bottom:542.630127pt;}
.y68{bottom:543.141317pt;}
.y57{bottom:543.821452pt;}
.y6a{bottom:546.314533pt;}
.y266{bottom:548.488118pt;}
.y226{bottom:555.963460pt;}
.y31{bottom:556.544515pt;}
.y56{bottom:560.488118pt;}
.y265{bottom:561.821452pt;}
.y1ba{bottom:567.734660pt;}
.y225{bottom:569.296794pt;}
.y66{bottom:572.281331pt;}
.y30{bottom:573.211182pt;}
.y264{bottom:575.154785pt;}
.y1b9{bottom:575.293335pt;}
.y55{bottom:577.154785pt;}
.y224{bottom:582.630127pt;}
.y1b7{bottom:586.893351pt;}
.y263{bottom:588.488118pt;}
.y70{bottom:589.873332pt;}
.y2f{bottom:589.877848pt;}
.y120{bottom:593.554647pt;}
.y54{bottom:593.821452pt;}
.y1b6{bottom:594.452799pt;}
.y223{bottom:595.963460pt;}
.y262{bottom:601.821452pt;}
.y1b4{bottom:606.053345pt;}
.y2e{bottom:606.544515pt;}
.y9c{bottom:607.807983pt;}
.y222{bottom:609.296794pt;}
.ya1{bottom:610.398804pt;}
.y53{bottom:610.488118pt;}
.y9e{bottom:610.804118pt;}
.ya2{bottom:611.981200pt;}
.y9f{bottom:612.797485pt;}
.y1b3{bottom:613.612264pt;}
.y261{bottom:615.154785pt;}
.y221{bottom:622.630127pt;}
.y2d{bottom:623.211344pt;}
.y1b1{bottom:625.213338pt;}
.y1d4{bottom:625.910685pt;}
.y52{bottom:627.154785pt;}
.y260{bottom:628.488118pt;}
.y1b0{bottom:632.771851pt;}
.y289{bottom:633.296794pt;}
.y220{bottom:635.963460pt;}
.y2c{bottom:639.878011pt;}
.y1d3{bottom:640.354655pt;}
.y25f{bottom:641.821452pt;}
.y51{bottom:643.821452pt;}
.y102{bottom:645.149333pt;}
.y288{bottom:646.630127pt;}
.y1ae{bottom:648.003988pt;}
.y21f{bottom:649.296794pt;}
.y25e{bottom:655.154785pt;}
.y1ad{bottom:655.562133pt;}
.y2b{bottom:656.544678pt;}
.y50{bottom:660.488118pt;}
.y21e{bottom:662.630127pt;}
.y25d{bottom:668.488118pt;}
.y1ac{bottom:670.979329pt;}
.y2a{bottom:673.211344pt;}
.y96{bottom:673.793335pt;}
.y21d{bottom:675.963460pt;}
.ye7{bottom:676.887980pt;}
.y4f{bottom:677.154785pt;}
.y9b{bottom:677.966919pt;}
.y98{bottom:678.783081pt;}
.y25c{bottom:681.821452pt;}
.y21c{bottom:689.296794pt;}
.y157{bottom:689.873372pt;}
.y29{bottom:689.877848pt;}
.y156{bottom:691.687988pt;}
.y4e{bottom:693.821452pt;}
.y25b{bottom:695.154785pt;}
.y1bd{bottom:700.579997pt;}
.y21b{bottom:702.630127pt;}
.y28{bottom:706.544515pt;}
.y1c0{bottom:707.662272pt;}
.y25a{bottom:708.488118pt;}
.y93{bottom:709.808024pt;}
.y4d{bottom:710.488118pt;}
.y1a7{bottom:710.874919pt;}
.y95{bottom:712.981364pt;}
.y21a{bottom:715.963460pt;}
.y1bc{bottom:716.890299pt;}
.y259{bottom:721.821452pt;}
.y27{bottom:723.211182pt;}
.y1c1{bottom:725.239583pt;}
.y1a6{bottom:726.292643pt;}
.y4c{bottom:727.154785pt;}
.y219{bottom:729.296794pt;}
.y258{bottom:735.154785pt;}
.y1d0{bottom:736.698242pt;}
.y26{bottom:739.877848pt;}
.y1a5{bottom:741.710286pt;}
.y218{bottom:742.630127pt;}
.y14a{bottom:743.554687pt;}
.y4b{bottom:743.821452pt;}
.y1cf{bottom:747.372965pt;}
.y257{bottom:748.488118pt;}
.y1c2{bottom:749.753777pt;}
.y217{bottom:755.963460pt;}
.y92{bottom:756.540039pt;}
.y1a4{bottom:757.127848pt;}
.y1ce{bottom:758.043620pt;}
.y16e{bottom:759.072021pt;}
.y4a{bottom:760.488118pt;}
.y256{bottom:761.821452pt;}
.y170{bottom:766.631185pt;}
.y1cd{bottom:768.716960pt;}
.y216{bottom:769.296794pt;}
.y1a3{bottom:772.545492pt;}
.y91{bottom:773.206706pt;}
.y62{bottom:774.261312pt;}
.y1c3{bottom:774.267971pt;}
.y255{bottom:775.154785pt;}
.y16b{bottom:776.271973pt;}
.y49{bottom:777.154785pt;}
.y65{bottom:778.541178pt;}
.y38{bottom:780.114095pt;}
.y1d1{bottom:782.215576pt;}
.y215{bottom:782.630127pt;}
.y16d{bottom:783.830648pt;}
.y1a2{bottom:787.963053pt;}
.y254{bottom:788.488118pt;}
.y1d2{bottom:789.873372pt;}
.y37{bottom:793.447428pt;}
.y48{bottom:793.821452pt;}
.y168{bottom:795.351969pt;}
.y214{bottom:795.963460pt;}
.y1c4{bottom:798.790954pt;}
.y253{bottom:801.821452pt;}
.y16a{bottom:802.910238pt;}
.y1a1{bottom:803.380697pt;}
.y10f{bottom:808.654785pt;}
.y213{bottom:809.296794pt;}
.y60{bottom:810.222656pt;}
.y47{bottom:810.488118pt;}
.y165{bottom:814.430664pt;}
.y252{bottom:815.154785pt;}
.y10e{bottom:821.988118pt;}
.y167{bottom:821.989827pt;}
.y212{bottom:822.630127pt;}
.y1c5{bottom:823.305148pt;}
.y46{bottom:827.154785pt;}
.y251{bottom:828.488118pt;}
.y3b{bottom:832.183757pt;}
.y144{bottom:832.811605pt;}
.y162{bottom:833.510661pt;}
.y1a0{bottom:834.215902pt;}
.y10d{bottom:835.321452pt;}
.y211{bottom:835.963460pt;}
.y11c{bottom:840.873698pt;}
.y164{bottom:841.069336pt;}
.y8f{bottom:841.687988pt;}
.y250{bottom:841.821452pt;}
.ycf{bottom:842.474691pt;}
.y45{bottom:843.821452pt;}
.yd0{bottom:845.064290pt;}
.yd2{bottom:845.470785pt;}
.yd3{bottom:845.981364pt;}
.y1c6{bottom:847.819341pt;}
.y143{bottom:848.229167pt;}
.y10c{bottom:848.654785pt;}
.y210{bottom:849.296794pt;}
.y19f{bottom:849.633464pt;}
.y1e8{bottom:850.750651pt;}
.y1e7{bottom:854.493083pt;}
.y24f{bottom:855.154785pt;}
.y11b{bottom:856.291178pt;}
.y161{bottom:856.486898pt;}
.y44{bottom:860.488118pt;}
.y10b{bottom:861.988118pt;}
.y20f{bottom:862.630127pt;}
.y142{bottom:863.646810pt;}
.y19e{bottom:865.051107pt;}
.y15f{bottom:866.234701pt;}
.y24e{bottom:868.488118pt;}
.y3a{bottom:871.149577pt;}
.y11a{bottom:871.708903pt;}
.y1e5{bottom:871.799967pt;}
.y1c7{bottom:872.333535pt;}
.y8d{bottom:873.206706pt;}
.y15e{bottom:873.793050pt;}
.y10a{bottom:875.321452pt;}
.y1e4{bottom:875.542236pt;}
.y20e{bottom:875.963460pt;}
.y43{bottom:877.154785pt;}
.y141{bottom:879.064372pt;}
.y19d{bottom:880.468669pt;}
.y24d{bottom:881.821452pt;}
.y119{bottom:887.126383pt;}
.y109{bottom:888.654785pt;}
.y15d{bottom:889.210775pt;}
.y20d{bottom:889.296794pt;}
.y1e2{bottom:892.849365pt;}
.y42{bottom:893.821452pt;}
.y140{bottom:894.482015pt;}
.y39{bottom:895.149577pt;}
.y24c{bottom:895.154785pt;}
.y19c{bottom:895.886230pt;}
.y1e1{bottom:896.591634pt;}
.y1c8{bottom:896.847729pt;}
.y108{bottom:901.988118pt;}
.y118{bottom:902.544108pt;}
.y20c{bottom:902.630127pt;}
.y15c{bottom:904.628418pt;}
.y8b{bottom:905.613363pt;}
.y24b{bottom:908.488118pt;}
.y13f{bottom:909.899577pt;}
.y41{bottom:910.488118pt;}
.y19b{bottom:911.303874pt;}
.y1df{bottom:913.898682pt;}
.y107{bottom:915.321452pt;}
.y20b{bottom:915.963460pt;}
.y1de{bottom:917.640951pt;}
.y117{bottom:917.961751pt;}
.y15b{bottom:920.045898pt;}
.y1c9{bottom:921.361922pt;}
.y24a{bottom:921.821452pt;}
.ycd{bottom:922.280029pt;}
.y13e{bottom:925.317220pt;}
.ycb{bottom:926.888021pt;}
.y40{bottom:927.154785pt;}
.yce{bottom:927.268799pt;}
.y196{bottom:927.382650pt;}
.y198{bottom:928.565348pt;}
.y106{bottom:928.654785pt;}
.y20a{bottom:929.296794pt;}
.y116{bottom:933.379313pt;}
.y249{bottom:935.154785pt;}
.y1db{bottom:935.609294pt;}
.y1dd{bottom:936.113363pt;}
.y1da{bottom:936.124430pt;}
.y15a{bottom:936.124512pt;}
.y139{bottom:941.395996pt;}
.y134{bottom:941.436035pt;}
.y130{bottom:941.897298pt;}
.y132{bottom:941.898682pt;}
.y105{bottom:941.988118pt;}
.y209{bottom:942.630127pt;}
.y145{bottom:943.554687pt;}
.y3f{bottom:943.821452pt;}
.y1ca{bottom:945.876116pt;}
.y13c{bottom:946.834554pt;}
.y137{bottom:946.875732pt;}
.y12f{bottom:949.457764pt;}
.y115{bottom:949.457845pt;}
.y195{bottom:951.541504pt;}
.y159{bottom:951.541585pt;}
.y104{bottom:955.321452pt;}
.y1{bottom:955.816895pt;}
.y208{bottom:955.963460pt;}
.y89{bottom:956.540039pt;}
.ye9{bottom:959.341309pt;}
.y3e{bottom:960.488118pt;}
.yec{bottom:963.326904pt;}
.yee{bottom:964.081299pt;}
.y12e{bottom:964.874837pt;}
.y114{bottom:964.874919pt;}
.y248{bottom:965.154785pt;}
.y110{bottom:966.061035pt;}
.y103{bottom:968.654785pt;}
.y207{bottom:969.296794pt;}
.y3{bottom:986.261230pt;}
.y3d{bottom:1000.633870pt;}
.y2{bottom:1000.917318pt;}
.h20{height:2.125355pt;}
.h36{height:6.386667pt;}
.h6f{height:8.373333pt;}
.h38{height:9.026667pt;}
.h4d{height:9.493333pt;}
.h51{height:9.520000pt;}
.h67{height:9.640000pt;}
.h7e{height:9.733333pt;}
.h65{height:9.746667pt;}
.h4f{height:11.082667pt;}
.h40{height:11.084000pt;}
.h68{height:11.173333pt;}
.h54{height:11.426666pt;}
.h64{height:11.478667pt;}
.h60{height:11.480000pt;}
.h66{height:11.520000pt;}
.h74{height:11.598667pt;}
.h69{height:11.600000pt;}
.h28{height:11.733333pt;}
.h22{height:11.813333pt;}
.h73{height:11.958666pt;}
.h70{height:11.960000pt;}
.h5f{height:12.400000pt;}
.h71{height:12.585333pt;}
.h7d{height:12.586666pt;}
.hf{height:12.906667pt;}
.h63{height:13.545333pt;}
.h1c{height:13.546666pt;}
.h52{height:13.601333pt;}
.h62{height:13.946667pt;}
.h27{height:14.428000pt;}
.h15{height:14.465333pt;}
.h19{height:14.466667pt;}
.h17{height:14.680000pt;}
.h5e{height:15.345333pt;}
.h37{height:15.346667pt;}
.h56{height:15.880000pt;}
.h5b{height:15.918667pt;}
.h6d{height:16.600000pt;}
.h29{height:16.680000pt;}
.h11{height:16.893333pt;}
.h34{height:17.800000pt;}
.h31{height:17.801333pt;}
.h30{height:17.813333pt;}
.h41{height:17.814667pt;}
.h4c{height:18.065514pt;}
.h4b{height:18.729688pt;}
.h7c{height:20.504534pt;}
.h9{height:22.049088pt;}
.h5a{height:22.256538pt;}
.h59{height:23.710800pt;}
.h78{height:25.630473pt;}
.h1f{height:26.184294pt;}
.h21{height:27.895200pt;}
.h7b{height:28.193443pt;}
.h57{height:30.846829pt;}
.h8{height:31.498698pt;}
.h7{height:32.760417pt;}
.h1d{height:33.813333pt;}
.h55{height:33.872799pt;}
.h4a{height:34.761670pt;}
.h2d{height:36.396698pt;}
.h6{height:37.057292pt;}
.h16{height:37.459375pt;}
.h23{height:39.438667pt;}
.h18{height:39.850399pt;}
.h39{height:39.906667pt;}
.h6b{height:41.735514pt;}
.h6c{height:41.736003pt;}
.h45{height:41.893333pt;}
.h81{height:42.894068pt;}
.h77{height:42.894394pt;}
.h53{height:42.894719pt;}
.h6a{height:42.894801pt;}
.h75{height:42.894879pt;}
.h76{height:42.894882pt;}
.h80{height:42.895045pt;}
.h4{height:42.930667pt;}
.h3{height:43.157333pt;}
.h6e{height:43.175485pt;}
.h1a{height:43.656000pt;}
.h5c{height:43.662297pt;}
.h1b{height:44.468750pt;}
.h82{height:44.834667pt;}
.h2a{height:45.163786pt;}
.h2c{height:45.432845pt;}
.h4e{height:45.469654pt;}
.h72{height:47.175148pt;}
.h7f{height:47.175229pt;}
.h61{height:47.175311pt;}
.h3d{height:47.817850pt;}
.h3a{height:47.818010pt;}
.h1e{height:47.818335pt;}
.h24{height:47.818340pt;}
.h46{height:47.818417pt;}
.h25{height:48.120330pt;}
.h47{height:48.125619pt;}
.h5d{height:48.412612pt;}
.h58{height:48.417495pt;}
.h2{height:49.248000pt;}
.h2f{height:49.323975pt;}
.h12{height:49.346729pt;}
.h3c{height:49.346892pt;}
.h3f{height:49.346973pt;}
.h10{height:49.347706pt;}
.h49{height:49.352260pt;}
.h32{height:50.583185pt;}
.h35{height:50.583188pt;}
.h43{height:50.588559pt;}
.h14{height:50.597894pt;}
.hb{height:51.360000pt;}
.h26{height:51.935874pt;}
.ha{height:52.746667pt;}
.h2b{height:54.759957pt;}
.h2e{height:54.760609pt;}
.h42{height:55.466206pt;}
.h44{height:55.466448pt;}
.hd{height:57.285333pt;}
.h50{height:57.493333pt;}
.h13{height:62.485248pt;}
.h5{height:63.296000pt;}
.he{height:64.000000pt;}
.h33{height:66.204529pt;}
.hc{height:82.176000pt;}
.h3b{height:125.016468pt;}
.h3e{height:140.952010pt;}
.h48{height:140.952015pt;}
.h79{height:276.573324pt;}
.h7a{height:276.574666pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w24{width:5.958666pt;}
.w20{width:5.960000pt;}
.w1a{width:7.306667pt;}
.w3e{width:7.986666pt;}
.w26{width:10.333333pt;}
.w25{width:10.334667pt;}
.w38{width:11.840000pt;}
.w23{width:12.320000pt;}
.w11{width:13.199999pt;}
.w36{width:13.733333pt;}
.w3b{width:14.520000pt;}
.wf{width:15.413333pt;}
.wb{width:16.133333pt;}
.w49{width:17.706666pt;}
.w34{width:18.053333pt;}
.w2e{width:19.241333pt;}
.w2{width:24.240000pt;}
.w2a{width:24.438667pt;}
.w28{width:24.440000pt;}
.w3a{width:25.720000pt;}
.w2d{width:25.721333pt;}
.w3c{width:26.120000pt;}
.w18{width:26.934667pt;}
.w42{width:27.546666pt;}
.w9{width:28.453333pt;}
.w17{width:28.454666pt;}
.w4c{width:30.173332pt;}
.w1d{width:31.666667pt;}
.w4d{width:32.546666pt;}
.w2c{width:32.561333pt;}
.w40{width:36.013333pt;}
.wc{width:36.014666pt;}
.w32{width:37.145332pt;}
.w35{width:37.865333pt;}
.w37{width:38.959999pt;}
.w39{width:39.413333pt;}
.w4{width:39.438667pt;}
.w8{width:39.440000pt;}
.w7{width:40.306666pt;}
.w6{width:40.973333pt;}
.we{width:41.279999pt;}
.w30{width:42.533333pt;}
.w12{width:42.534665pt;}
.w31{width:43.052002pt;}
.w13{width:43.053333pt;}
.w10{width:48.626668pt;}
.w3d{width:49.094666pt;}
.w3f{width:49.866669pt;}
.w41{width:50.426666pt;}
.w33{width:56.880000pt;}
.w2f{width:57.185333pt;}
.w44{width:59.519999pt;}
.w4b{width:60.760000pt;}
.w1b{width:60.960002pt;}
.w29{width:63.293335pt;}
.w27{width:63.294667pt;}
.w4e{width:65.320002pt;}
.w2b{width:66.639999pt;}
.w48{width:67.398666pt;}
.w47{width:67.399999pt;}
.w19{width:70.106669pt;}
.w4a{width:91.866669pt;}
.w43{width:92.252004pt;}
.w46{width:98.546672pt;}
.wd{width:106.386667pt;}
.w14{width:124.253337pt;}
.wa{width:133.293335pt;}
.w21{width:141.319997pt;}
.w5{width:146.548004pt;}
.w3{width:150.839996pt;}
.w1f{width:186.386658pt;}
.w1c{width:186.785339pt;}
.w1e{width:207.880005pt;}
.w15{width:219.146667pt;}
.w22{width:258.346659pt;}
.w16{width:266.599996pt;}
.w45{width:480.000000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x94{left:7.993083pt;}
.x5b{left:9.160400pt;}
.x52{left:10.670543pt;}
.xa7{left:17.615479pt;}
.xc4{left:18.742798pt;}
.x67{left:19.710139pt;}
.x43{left:27.590134pt;}
.x68{left:30.420802pt;}
.x28{left:33.840942pt;}
.x27{left:40.826294pt;}
.x69{left:43.322138pt;}
.x92{left:45.673869pt;}
.x1d{left:48.148926pt;}
.x5c{left:52.332397pt;}
.x65{left:55.798808pt;}
.xd{left:59.662272pt;}
.x1e{left:62.170288pt;}
.x1c{left:65.790283pt;}
.x2{left:68.031469pt;}
.x73{left:73.058131pt;}
.x8d{left:74.697332pt;}
.x1{left:75.717199pt;}
.x3c{left:78.035467pt;}
.x5{left:80.864532pt;}
.x9{left:83.149602pt;}
.x2e{left:84.754669pt;}
.x42{left:85.738129pt;}
.x6{left:86.929067pt;}
.x45{left:89.734136pt;}
.x38{left:91.364003pt;}
.x74{left:95.503474pt;}
.x62{left:98.309336pt;}
.xe{left:100.140951pt;}
.x2b{left:102.696940pt;}
.x63{left:105.615204pt;}
.x9f{left:108.475871pt;}
.x6c{left:112.369863pt;}
.xb9{left:117.512136pt;}
.x72{left:120.364797pt;}
.x75{left:123.370138pt;}
.x2f{left:125.728271pt;}
.x20{left:129.600952pt;}
.x6f{left:130.515462pt;}
.x6d{left:132.359467pt;}
.x39{left:134.417470pt;}
.xc9{left:135.431467pt;}
.x3b{left:137.539469pt;}
.xcf{left:139.312002pt;}
.xf{left:140.618286pt;}
.x76{left:146.611476pt;}
.x44{left:150.735463pt;}
.xa0{left:153.785329pt;}
.x80{left:157.318267pt;}
.xa1{left:159.744670pt;}
.x46{left:160.774129pt;}
.x2c{left:168.874664pt;}
.xae{left:170.114136pt;}
.x70{left:173.472804pt;}
.x7c{left:175.574666pt;}
.xaf{left:178.826660pt;}
.x40{left:181.458135pt;}
.x3d{left:184.732808pt;}
.x49{left:187.574142pt;}
.xc8{left:189.775065pt;}
.x3a{left:192.284790pt;}
.x9d{left:193.655070pt;}
.xb2{left:197.029338pt;}
.x4b{left:198.756800pt;}
.x3e{left:200.147461pt;}
.x78{left:201.664800pt;}
.x2d{left:210.154928pt;}
.xd0{left:211.645325pt;}
.x47{left:213.292806pt;}
.x30{left:216.245341pt;}
.x6a{left:218.263468pt;}
.xb0{left:221.359741pt;}
.x77{left:222.576803pt;}
.x7f{left:228.613342pt;}
.x31{left:231.658142pt;}
.x48{left:233.872803pt;}
.x64{left:235.794800pt;}
.xd5{left:237.626668pt;}
.x3f{left:240.962138pt;}
.x34{left:243.333333pt;}
.xc1{left:245.669332pt;}
.x66{left:248.266805pt;}
.x9e{left:250.027200pt;}
.x6b{left:254.818136pt;}
.x35{left:256.533997pt;}
.x8e{left:258.125326pt;}
.x4a{left:259.756795pt;}
.x4d{left:262.908798pt;}
.xa3{left:265.110657pt;}
.x4c{left:269.795471pt;}
.xa4{left:271.071065pt;}
.x6e{left:275.911458pt;}
.x79{left:277.630127pt;}
.xd1{left:279.045471pt;}
.xca{left:282.576009pt;}
.xbc{left:284.402669pt;}
.x7a{left:286.044532pt;}
.x41{left:287.178141pt;}
.xcc{left:288.785339pt;}
.xd2{left:290.619995pt;}
.xd6{left:293.559998pt;}
.xbb{left:294.563477pt;}
.xb1{left:297.755330pt;}
.xd7{left:299.320129pt;}
.xb3{left:304.611328pt;}
.xcd{left:306.492269pt;}
.xbf{left:310.677327pt;}
.xbd{left:312.149597pt;}
.x32{left:314.659993pt;}
.x8f{left:323.526672pt;}
.x7b{left:326.378133pt;}
.xb5{left:328.062927pt;}
.x4e{left:334.631470pt;}
.xbe{left:337.559998pt;}
.xb4{left:339.021342pt;}
.x36{left:342.977336pt;}
.xcb{left:349.975464pt;}
.xc7{left:355.500000pt;}
.xd3{left:358.019735pt;}
.xce{left:361.272013pt;}
.x33{left:363.287069pt;}
.x8{left:365.019613pt;}
.xa2{left:379.552002pt;}
.x37{left:385.511882pt;}
.x3{left:408.755859pt;}
.xb6{left:411.212646pt;}
.x26{left:417.782267pt;}
.x1b{left:418.862264pt;}
.x4{left:423.873983pt;}
.x88{left:429.149333pt;}
.xd8{left:430.866130pt;}
.x57{left:435.188924pt;}
.x54{left:436.708944pt;}
.x14{left:442.159993pt;}
.x22{left:443.944010pt;}
.x9a{left:451.845337pt;}
.x24{left:453.697347pt;}
.x23{left:460.076782pt;}
.x29{left:463.430257pt;}
.x90{left:464.882650pt;}
.x11{left:470.031982pt;}
.x2a{left:471.962506pt;}
.xc2{left:475.472026pt;}
.xa5{left:476.949341pt;}
.x71{left:478.125448pt;}
.x15{left:483.133870pt;}
.x97{left:486.074666pt;}
.xa6{left:488.164917pt;}
.x25{left:489.711060pt;}
.x1f{left:491.618286pt;}
.xa8{left:497.346151pt;}
.x91{left:498.877848pt;}
.x12{left:509.471313pt;}
.x16{left:511.083984pt;}
.x18{left:514.458659pt;}
.x9b{left:518.485718pt;}
.x19{left:524.762655pt;}
.xac{left:530.261353pt;}
.x9c{left:531.425333pt;}
.xd4{left:534.481323pt;}
.x21{left:541.482259pt;}
.x5e{left:543.697347pt;}
.x93{left:545.763997pt;}
.xc6{left:547.089315pt;}
.xa9{left:548.441325pt;}
.x5a{left:549.723999pt;}
.x17{left:551.390381pt;}
.x1a{left:553.215861pt;}
.x13{left:554.735596pt;}
.x10{left:559.028931pt;}
.x82{left:567.736003pt;}
.x81{left:570.286662pt;}
.x5f{left:572.217448pt;}
.x83{left:573.695597pt;}
.x4f{left:574.681315pt;}
.xc0{left:579.527995pt;}
.xaa{left:582.494670pt;}
.xad{left:587.447062pt;}
.x60{left:598.038656pt;}
.xab{left:601.734660pt;}
.x50{left:603.201619pt;}
.x84{left:606.421346pt;}
.x85{left:612.381063pt;}
.x58{left:614.838664pt;}
.xb{left:617.733317pt;}
.x5d{left:619.896403pt;}
.xb7{left:623.621989pt;}
.xa{left:625.558675pt;}
.x61{left:626.558390pt;}
.x55{left:630.361328pt;}
.x7d{left:633.778687pt;}
.x7e{left:639.739339pt;}
.x95{left:640.988118pt;}
.xc{left:641.973185pt;}
.x59{left:643.359456pt;}
.x56{left:658.881063pt;}
.xba{left:662.919881pt;}
.xb8{left:669.926514pt;}
.x7{left:671.696655pt;}
.x51{left:672.965332pt;}
.xc5{left:681.165202pt;}
.x8b{left:682.345337pt;}
.x8c{left:688.304688pt;}
.x89{left:691.964030pt;}
.x96{left:693.544027pt;}
.x8a{left:697.924561pt;}
.x53{left:701.485026pt;}
.x86{left:705.542643pt;}
.x87{left:711.502279pt;}
.xc3{left:713.495850pt;}
.x98{left:716.375977pt;}
.x99{left:722.336019pt;}
}




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