
    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_6ce190d8a360180f8bcf49c1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.738667;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff2{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4e69cf1f6c916666dd29a906.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ef4ef44f2065fbc50ab94b28.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_07a8ed16392f732c314782fd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.992000;font-style:normal;font-weight: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_48f0d7d21ede510e5366e1cc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.734375;font-style:normal;font-weight: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_a832d8df03956b4775cde2f0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.902258;font-style:normal;font-weight: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_5d6d7de72a91d8ea09d4d363.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.992000;font-style:normal;font-weight: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_e317df225e773a45c702c699.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_2d746a2d423778fc7f0a612c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.904508;font-style:normal;font-weight: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_fda6e7286aae34cc9260ac85.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.792000;font-style:normal;font-weight: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_ed566dbb91a804b136f2b3bb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.992000;font-style:normal;font-weight: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_7df3ba57fc33c03d570aa28a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.992000;font-style:normal;font-weight: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_ce823a1996fed40117ded506.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.992000;font-style:normal;font-weight: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_4c1af0b9fe976ff20862cf47.woff2')format("woff");}.fff{font-family:fff;line-height:0.908795;font-style:normal;font-weight: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_10236013ef15071c34a2845a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.992000;font-style:normal;font-weight: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_c7cc3afdcbeb061ca612c14d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.992000;font-style:normal;font-weight: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_fd1eea8e313766ecc86890ad.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.904000;font-style:normal;font-weight: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_de23d82685ee7732d81efe23.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.992000;font-style:normal;font-weight: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_9dac5028cba41aade7b61efa.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_864929ebb58e7b87bfcb7edc.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.904508;font-style:normal;font-weight: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_99942c8f4675d42b6032c45b.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_b27533a1b0f8145bb4e101fb.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.890000;font-style:normal;font-weight: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_06064b3586e77d4b8e6b82e2.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.992000;font-style:normal;font-weight: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_665d056031ee73f6b4c316ea.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.992000;font-style:normal;font-weight: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_8b1a1a7f9c1aa59e4d09f043.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_935123c3c5cddb76e2608099.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.908795;font-style:normal;font-weight: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_b3a84ca824d2613fbd321acb.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.992000;font-style:normal;font-weight: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_ae43430c9b02f5c060a2731e.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.861000;font-style:normal;font-weight: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_2eab033ea492c5dd71757e47.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.780000;font-style:normal;font-weight: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_e95e5704f796e10c0749333d.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.861000;font-style:normal;font-weight: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_217f208ec818ecae22c6a2d5.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.762000;font-style:normal;font-weight: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_1797b71f6241ce6154586f1a.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.992000;font-style:normal;font-weight: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_c23d44b81f236aaf0e1101c5.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.992000;font-style:normal;font-weight: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_d380d03f2081dc80859c3540.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.724000;font-style:normal;font-weight: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_80cfcb6fa587c0208674f6d5.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.724000;font-style:normal;font-weight: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_f4313e1ec019a0223448f822.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.769545;font-style:normal;font-weight: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_d9a78b1b40c011ea241f8aa3.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.908545;font-style:normal;font-weight: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_09bd5b4dd3d60fdf93233196.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_172304dae8d21a5a48b3f46a.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_d9a78b1b40c011ea241f8aa3.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.908545;font-style:normal;font-weight: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_6c056488fbf7bed8e491c6e5.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.992000;font-style:normal;font-weight: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_82d569429206bb2a5abbf4ec.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.992000;font-style:normal;font-weight: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_7f1dd8ce82265e0ff2dff76e.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.775000;font-style:normal;font-weight: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_7a2dd105570ecb63787494e6.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.992000;font-style:normal;font-weight: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_d9dca606b8645e8ac6c627d0.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.904258;font-style:normal;font-weight: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_b520e1ba48e897a164694d9c.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.992000;font-style:normal;font-weight: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_f37e6703c08b8e3044e5fc4a.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.775000;font-style:normal;font-weight: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_0c0b9b41ecad49a63c53193e.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.908545;font-style:normal;font-weight: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_2e49297e0c443bda23d57f9a.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.992000;font-style:normal;font-weight: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_d380d03f2081dc80859c3540.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.724000;font-style:normal;font-weight: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_0c0b9b41ecad49a63c53193e.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.908545;font-style:normal;font-weight: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_589baff6e4b5b7f9d083c9d1.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_d380d03f2081dc80859c3540.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.724000;font-style:normal;font-weight: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_0c0b9b41ecad49a63c53193e.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.908545;font-style:normal;font-weight: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_0c86fe141dc27774ad885848.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.992000;font-style:normal;font-weight: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_d380d03f2081dc80859c3540.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.724000;font-style:normal;font-weight: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_667298166696f3f79ee0c586.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.765000;font-style:normal;font-weight: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_31870e80f65e9627539f66ac.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.992000;font-style:normal;font-weight: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_74f8f01dd277d0237d51e867.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.992000;font-style:normal;font-weight: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_43fe033ab6efd7ae200b68e4.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.992000;font-style:normal;font-weight: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_667298166696f3f79ee0c586.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.765000;font-style:normal;font-weight: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_62fc263dcfbd8224041db84b.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_2d6ee4469a3693341c3acd93.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.977000;font-style:normal;font-weight: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_d3289d3d115a8c3eb62036bd.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_3d4a9c30f33d7bf56549aa73.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.992000;font-style:normal;font-weight: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_667298166696f3f79ee0c586.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.765000;font-style:normal;font-weight: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_0be8595479264fb35fd4f071.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.992000;font-style:normal;font-weight: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_9103274f67e20f2caac2f754.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.792000;font-style:normal;font-weight: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_d54636728990c94ea7e5adc7.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.751000;font-style:normal;font-weight: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_3206d7a3f278adb2496c55c7.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.992000;font-style:normal;font-weight: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_c440781fe35ef1009d38b435.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url('chunks/assets/font_d54636728990c94ea7e5adc7.woff2')format("woff");}.ff49{font-family:ff49;line-height:0.751000;font-style:normal;font-weight: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_ec3388d4fa8f91affcec44b9.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.992000;font-style:normal;font-weight: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_d5ed3efc8cafa587bc644ce5.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:0.992000;font-style:normal;font-weight: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_25ee47bfdf5c65e1ef372101.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:0.992000;font-style:normal;font-weight: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_d54636728990c94ea7e5adc7.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:0.751000;font-style:normal;font-weight: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_6d8719a484f19030b6c92b66.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:0.992000;font-style:normal;font-weight: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_ce9ee0719114a50795297471.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:0.992000;font-style:normal;font-weight: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_3170ba356105f7334f96e832.woff2')format("woff");}.ff50{font-family:ff50;line-height:0.992000;font-style:normal;font-weight: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_7ecb4ee29eec5bf2d4cdef6b.woff2')format("woff");}.ff51{font-family:ff51;line-height:0.992000;font-style:normal;font-weight: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_c75f14bd4cf7dbb4c5ba507c.woff2')format("woff");}.ff52{font-family:ff52;line-height:0.992000;font-style:normal;font-weight: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_013ea677e969bb9d560c3cad.woff2')format("woff");}.ff53{font-family:ff53;line-height:0.908795;font-style:normal;font-weight: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_41faaa9d2cedaea23cb5b3f7.woff2')format("woff");}.ff54{font-family:ff54;line-height:0.992000;font-style:normal;font-weight: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_35334b0bec08ed6976223190.woff2')format("woff");}.ff55{font-family:ff55;line-height:0.992000;font-style:normal;font-weight: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_6d8ceee07060cbbdf7ebe57a.woff2')format("woff");}.ff56{font-family:ff56;line-height:0.992000;font-style:normal;font-weight: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_013ea677e969bb9d560c3cad.woff2')format("woff");}.ff57{font-family:ff57;line-height:0.908795;font-style:normal;font-weight: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_608732f9d22369a957e41442.woff2')format("woff");}.ff58{font-family:ff58;line-height:0.908545;font-style:normal;font-weight: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_ee126e7171776986a544e973.woff2')format("woff");}.ff59{font-family:ff59;line-height:0.992000;font-style:normal;font-weight: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_509bdae61e460f6929b1e721.woff2')format("woff");}.ff5a{font-family:ff5a;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5b;src:url('chunks/assets/font_789cea867f3c526b027f2b03.woff2')format("woff");}.ff5b{font-family:ff5b;line-height:0.992000;font-style:normal;font-weight: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_325fd3c14e7890272e7b3095.woff2')format("woff");}.ff5c{font-family:ff5c;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5d;src:url('chunks/assets/font_f37e6703c08b8e3044e5fc4a.woff2')format("woff");}.ff5d{font-family:ff5d;line-height:0.775000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff5e{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff5f;src:url('chunks/assets/font_b087199c5eb22a634578db45.woff2')format("woff");}.ff5f{font-family:ff5f;line-height:0.902000;font-style:normal;font-weight: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_7f1dd8ce82265e0ff2dff76e.woff2')format("woff");}.ff60{font-family:ff60;line-height:0.775000;font-style:normal;font-weight: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_44e910b2e476611adbf3964f.woff2')format("woff");}.ff61{font-family:ff61;line-height:0.992000;font-style:normal;font-weight: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_b926dd5d8bafbcf2b5a9c951.woff2')format("woff");}.ff62{font-family:ff62;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff63;src:url('chunks/assets/font_80cfcb6fa587c0208674f6d5.woff2')format("woff");}.ff63{font-family:ff63;line-height:0.724000;font-style:normal;font-weight: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_d380d03f2081dc80859c3540.woff2')format("woff");}.ff64{font-family:ff64;line-height:0.724000;font-style:normal;font-weight: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_83562e42544bd8687e24f2f8.woff2')format("woff");}.ff65{font-family:ff65;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff66;src:url('chunks/assets/font_80cfcb6fa587c0208674f6d5.woff2')format("woff");}.ff66{font-family:ff66;line-height:0.724000;font-style:normal;font-weight: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_7538815c746806929040e5c2.woff2')format("woff");}.ff67{font-family:ff67;line-height:0.992000;font-style:normal;font-weight: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_d380d03f2081dc80859c3540.woff2')format("woff");}.ff68{font-family:ff68;line-height:0.724000;font-style:normal;font-weight: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_83562e42544bd8687e24f2f8.woff2')format("woff");}.ff69{font-family:ff69;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6a;src:url('chunks/assets/font_80cfcb6fa587c0208674f6d5.woff2')format("woff");}.ff6a{font-family:ff6a;line-height:0.724000;font-style:normal;font-weight: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_1f84813848add014cbd4cda1.woff2')format("woff");}.ff6b{font-family:ff6b;line-height:0.992000;font-style:normal;font-weight: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_8430843f6876310ad345e0a3.woff2')format("woff");}.ff6c{font-family:ff6c;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6d;src:url('chunks/assets/font_80cfcb6fa587c0208674f6d5.woff2')format("woff");}.ff6d{font-family:ff6d;line-height:0.724000;font-style:normal;font-weight: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_878188e898e7922272e246f5.woff2')format("woff");}.ff6e{font-family:ff6e;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6f;src:url('chunks/assets/font_5ad0a4a74a1ea4d7042ede1d.woff2')format("woff");}.ff6f{font-family:ff6f;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff70;src:url('chunks/assets/font_80cfcb6fa587c0208674f6d5.woff2')format("woff");}.ff70{font-family:ff70;line-height:0.724000;font-style:normal;font-weight: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_334123c6bd8f3045d58f9278.woff2')format("woff");}.ff71{font-family:ff71;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff72;src:url('chunks/assets/font_d380d03f2081dc80859c3540.woff2')format("woff");}.ff72{font-family:ff72;line-height:0.724000;font-style:normal;font-weight: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_ff03d750dcf9fc0155af06da.woff2')format("woff");}.ff73{font-family:ff73;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff74;src:url('chunks/assets/font_80cfcb6fa587c0208674f6d5.woff2')format("woff");}.ff74{font-family:ff74;line-height:0.724000;font-style:normal;font-weight: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_27163b906123de471cb6b1dd.woff2')format("woff");}.ff75{font-family:ff75;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff76;src:url('chunks/assets/font_1a74bc32ae72daea057e129c.woff2')format("woff");}.ff76{font-family:ff76;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff77;src:url('chunks/assets/font_80cfcb6fa587c0208674f6d5.woff2')format("woff");}.ff77{font-family:ff77;line-height:0.724000;font-style:normal;font-weight: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_ba4e63a1a22963d60b7c26f7.woff2')format("woff");}.ff78{font-family:ff78;line-height:0.992000;font-style:normal;font-weight: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_d9051c8ccc3f40cb0de83a1e.woff2')format("woff");}.ff79{font-family:ff79;line-height:0.792000;font-style:normal;font-weight: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_d380d03f2081dc80859c3540.woff2')format("woff");}.ff7a{font-family:ff7a;line-height:0.724000;font-style:normal;font-weight: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_192cba47ea289a67ae0649c4.woff2')format("woff");}.ff7b{font-family:ff7b;line-height:0.992000;font-style:normal;font-weight: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_85ac762a0a644217bebd333b.woff2')format("woff");}.ff7c{font-family:ff7c;line-height:0.724000;font-style:normal;font-weight: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_7a9551bfceb5fb75c60f9fde.woff2')format("woff");}.ff7d{font-family:ff7d;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7e;src:url('chunks/assets/font_80cfcb6fa587c0208674f6d5.woff2')format("woff");}.ff7e{font-family:ff7e;line-height:0.724000;font-style:normal;font-weight: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_132082a82edbe9914e94510b.woff2')format("woff");}.ff7f{font-family:ff7f;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff80;src:url('chunks/assets/font_d380d03f2081dc80859c3540.woff2')format("woff");}.ff80{font-family:ff80;line-height:0.724000;font-style:normal;font-weight: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_1a74bc32ae72daea057e129c.woff2')format("woff");}.ff81{font-family:ff81;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff82;src:url('chunks/assets/font_80cfcb6fa587c0208674f6d5.woff2')format("woff");}.ff82{font-family:ff82;line-height:0.724000;font-style:normal;font-weight: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_ec4ed5f48f004cda9249b18b.woff2')format("woff");}.ff83{font-family:ff83;line-height:0.992000;font-style:normal;font-weight: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_d380d03f2081dc80859c3540.woff2')format("woff");}.ff84{font-family:ff84;line-height:0.724000;font-style:normal;font-weight: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_1e1f72f4934d67e19a5de580.woff2')format("woff");}.ff85{font-family:ff85;line-height:0.992000;font-style:normal;font-weight: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_2f41b28e53768352418c09cc.woff2')format("woff");}.ff86{font-family:ff86;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff87;src:url('chunks/assets/font_80cfcb6fa587c0208674f6d5.woff2')format("woff");}.ff87{font-family:ff87;line-height:0.724000;font-style:normal;font-weight: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_744e9722601f1ff170876c3f.woff2')format("woff");}.ff88{font-family:ff88;line-height:0.992000;font-style:normal;font-weight: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_fd58aa537069b6f37c8bd27e.woff2')format("woff");}.ff89{font-family:ff89;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8a;src:url('chunks/assets/font_80cfcb6fa587c0208674f6d5.woff2')format("woff");}.ff8a{font-family:ff8a;line-height:0.724000;font-style:normal;font-weight: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_b3ad1b3a4d306de04ec26dda.woff2')format("woff");}.ff8b{font-family:ff8b;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8c;src:url('chunks/assets/font_d0d67654cbb4b525f1748d1a.woff2')format("woff");}.ff8c{font-family:ff8c;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8d;src:url('chunks/assets/font_80cfcb6fa587c0208674f6d5.woff2')format("woff");}.ff8d{font-family:ff8d;line-height:0.724000;font-style:normal;font-weight: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_4af189be2844352d4ccd7475.woff2')format("woff");}.ff8e{font-family:ff8e;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8f;src:url('chunks/assets/font_d380d03f2081dc80859c3540.woff2')format("woff");}.ff8f{font-family:ff8f;line-height:0.724000;font-style:normal;font-weight: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_1e1f72f4934d67e19a5de580.woff2')format("woff");}.ff90{font-family:ff90;line-height:0.992000;font-style:normal;font-weight: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_872d164bd6853565305e7428.woff2')format("woff");}.ff91{font-family:ff91;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff92;src:url('chunks/assets/font_80cfcb6fa587c0208674f6d5.woff2')format("woff");}.ff92{font-family:ff92;line-height:0.724000;font-style:normal;font-weight: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_e42ef2cb9545d2b44fdf4b67.woff2')format("woff");}.ff93{font-family:ff93;line-height:0.780000;font-style:normal;font-weight: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_fd9707ba73367824b9abaeba.woff2')format("woff");}.ff94{font-family:ff94;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff95;src:url('chunks/assets/font_441b57b4205bcbe183388fad.woff2')format("woff");}.ff95{font-family:ff95;line-height:0.792000;font-style:normal;font-weight: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_1e1f72f4934d67e19a5de580.woff2')format("woff");}.ff96{font-family:ff96;line-height:0.992000;font-style:normal;font-weight: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_0c71e6fb63fa5bf0f85d1b9f.woff2')format("woff");}.ff97{font-family:ff97;line-height:0.992000;font-style:normal;font-weight: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_985e3a0b969a191905f7ac89.woff2')format("woff");}.ff98{font-family:ff98;line-height:0.992000;font-style:normal;font-weight: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_d380d03f2081dc80859c3540.woff2')format("woff");}.ff99{font-family:ff99;line-height:0.724000;font-style:normal;font-weight: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_2fdc5a17e8fad49d29ecc754.woff2')format("woff");}.ff9a{font-family:ff9a;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9b;src:url('chunks/assets/font_80cfcb6fa587c0208674f6d5.woff2')format("woff");}.ff9b{font-family:ff9b;line-height:0.724000;font-style:normal;font-weight: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_e822dfdeaa78fcf7705495ad.woff2')format("woff");}.ff9c{font-family:ff9c;line-height:0.992000;font-style:normal;font-weight: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_5bad9212f0680f7d56416a75.woff2')format("woff");}.ff9d{font-family:ff9d;line-height:0.992000;font-style:normal;font-weight: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_80cfcb6fa587c0208674f6d5.woff2')format("woff");}.ff9e{font-family:ff9e;line-height:0.724000;font-style:normal;font-weight: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_d380d03f2081dc80859c3540.woff2')format("woff");}.ff9f{font-family:ff9f;line-height:0.724000;font-style:normal;font-weight: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_3caf741d61cbe619e27c316f.woff2')format("woff");}.ffa0{font-family:ffa0;line-height:0.992000;font-style:normal;font-weight: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_b779d0071fc5a249e8feee1c.woff2')format("woff");}.ffa1{font-family:ffa1;line-height:0.992000;font-style:normal;font-weight: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_80cfcb6fa587c0208674f6d5.woff2')format("woff");}.ffa2{font-family:ffa2;line-height:0.724000;font-style:normal;font-weight: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_d380d03f2081dc80859c3540.woff2')format("woff");}.ffa3{font-family:ffa3;line-height:0.724000;font-style:normal;font-weight: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_ec11790d1b0e2e50d6e25c28.woff2')format("woff");}.ffa4{font-family:ffa4;line-height:0.992000;font-style:normal;font-weight: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_6fe4ab3a82e29199a0263187.woff2')format("woff");}.ffa5{font-family:ffa5;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa6;src:url('chunks/assets/font_80cfcb6fa587c0208674f6d5.woff2')format("woff");}.ffa6{font-family:ffa6;line-height:0.724000;font-style:normal;font-weight: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_bd97b55bfa1d62c8c77f15aa.woff2')format("woff");}.ffa7{font-family:ffa7;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa8;src:url('chunks/assets/font_b419d046c4467f07b70e43b3.woff2')format("woff");}.ffa8{font-family:ffa8;line-height:0.992000;font-style:normal;font-weight: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_d380d03f2081dc80859c3540.woff2')format("woff");}.ffa9{font-family:ffa9;line-height:0.724000;font-style:normal;font-weight: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_e149f5b6830e75b8f72d626c.woff2')format("woff");}.ffaa{font-family:ffaa;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffab;src:url('chunks/assets/font_8d391631d3e20ee54e10f512.woff2')format("woff");}.ffab{font-family:ffab;line-height:0.908545;font-style:normal;font-weight: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_d380d03f2081dc80859c3540.woff2')format("woff");}.ffac{font-family:ffac;line-height:0.724000;font-style:normal;font-weight: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_3f8ae9d0946e127b89dd09cf.woff2')format("woff");}.ffad{font-family:ffad;line-height:0.992000;font-style:normal;font-weight: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_d380d03f2081dc80859c3540.woff2')format("woff");}.ffae{font-family:ffae;line-height:0.724000;font-style:normal;font-weight: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_6b53ed6c31a612d965592bd1.woff2')format("woff");}.ffaf{font-family:ffaf;line-height:0.992000;font-style:normal;font-weight: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_80cfcb6fa587c0208674f6d5.woff2')format("woff");}.ffb0{font-family:ffb0;line-height:0.724000;font-style:normal;font-weight: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_9af333470c6fa701533f9277.woff2')format("woff");}.ffb1{font-family:ffb1;line-height:0.992000;font-style:normal;font-weight: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_d380d03f2081dc80859c3540.woff2')format("woff");}.ffb2{font-family:ffb2;line-height:0.724000;font-style:normal;font-weight: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_6b53ed6c31a612d965592bd1.woff2')format("woff");}.ffb3{font-family:ffb3;line-height:0.992000;font-style:normal;font-weight: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_80cfcb6fa587c0208674f6d5.woff2')format("woff");}.ffb4{font-family:ffb4;line-height:0.724000;font-style:normal;font-weight: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_7c8974a2a1791ece498498d4.woff2')format("woff");}.ffb5{font-family:ffb5;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb6;src:url('chunks/assets/font_f855e342194ae163403d6aaa.woff2')format("woff");}.ffb6{font-family:ffb6;line-height:0.992000;font-style:normal;font-weight: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_9728a4b510ad8af342234e39.woff2')format("woff");}.ffb7{font-family:ffb7;line-height:0.992000;font-style:normal;font-weight: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_6228765e0e145289d595eec9.woff2')format("woff");}.ffb8{font-family:ffb8;line-height:0.792000;font-style:normal;font-weight: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_022b8b12a53e880376948457.woff2')format("woff");}.ffb9{font-family:ffb9;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffba;src:url('chunks/assets/font_50765d96cd86ae8ccfafd8a6.woff2')format("woff");}.ffba{font-family:ffba;line-height:0.992000;font-style:normal;font-weight: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_d380d03f2081dc80859c3540.woff2')format("woff");}.ffbb{font-family:ffbb;line-height:0.724000;font-style:normal;font-weight: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_022b8b12a53e880376948457.woff2')format("woff");}.ffbc{font-family:ffbc;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbd;src:url('chunks/assets/font_aaa88d9af841998ec732790c.woff2')format("woff");}.ffbd{font-family:ffbd;line-height:0.992000;font-style:normal;font-weight: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_b1c75ccf5ac12eb47acac766.woff2')format("woff");}.ffbe{font-family:ffbe;line-height:0.992000;font-style:normal;font-weight: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_d380d03f2081dc80859c3540.woff2')format("woff");}.ffbf{font-family:ffbf;line-height:0.724000;font-style:normal;font-weight: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_3328360b987671bd978725b5.woff2')format("woff");}.ffc0{font-family:ffc0;line-height:0.908795;font-style:normal;font-weight: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_2f1deb6a088819b68aaa9b11.woff2')format("woff");}.ffc1{font-family:ffc1;line-height:0.992000;font-style:normal;font-weight: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_6062ab7a9785258ccf80552d.woff2')format("woff");}.ffc2{font-family:ffc2;line-height:0.792000;font-style:normal;font-weight: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_9e1d2d72255b0cfc017c26ed.woff2')format("woff");}.ffc3{font-family:ffc3;line-height:0.992000;font-style:normal;font-weight: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_be6c66b7d2820c975e672ec3.woff2')format("woff");}.ffc4{font-family:ffc4;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc5;src:url('chunks/assets/font_072dcc6509f632658949aa96.woff2')format("woff");}.ffc5{font-family:ffc5;line-height:0.992000;font-style:normal;font-weight: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_80cfcb6fa587c0208674f6d5.woff2')format("woff");}.ffc6{font-family:ffc6;line-height:0.724000;font-style:normal;font-weight: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_1754d53c5bd720944f426a1e.woff2')format("woff");}.ffc7{font-family:ffc7;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc8;src:url('chunks/assets/font_d380d03f2081dc80859c3540.woff2')format("woff");}.ffc8{font-family:ffc8;line-height:0.724000;font-style:normal;font-weight: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_f59cdc5c83f9671f5aa909de.woff2')format("woff");}.ffc9{font-family:ffc9;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffca;src:url('chunks/assets/font_c77cc537d90af7e646808161.woff2')format("woff");}.ffca{font-family:ffca;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffcb;src:url('chunks/assets/font_80cfcb6fa587c0208674f6d5.woff2')format("woff");}.ffcb{font-family:ffcb;line-height:0.724000;font-style:normal;font-weight: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_26a74e57192bb1ab367c7fa4.woff2')format("woff");}.ffcc{font-family:ffcc;line-height:0.992000;font-style:normal;font-weight: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_62d909317abc1a740b5253b6.woff2')format("woff");}.ffcd{font-family:ffcd;line-height:0.992000;font-style:normal;font-weight: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_e9408e7c4a90c61ba2b7e28c.woff2')format("woff");}.ffce{font-family:ffce;line-height:0.992000;font-style:normal;font-weight: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_d380d03f2081dc80859c3540.woff2')format("woff");}.ffcf{font-family:ffcf;line-height:0.724000;font-style:normal;font-weight: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_3fcebd143897762b18321fc3.woff2')format("woff");}.ffd0{font-family:ffd0;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd1;src:url('chunks/assets/font_6d1bf184dfe15a1a0ec1946d.woff2')format("woff");}.ffd1{font-family:ffd1;line-height:0.992000;font-style:normal;font-weight: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_2231dd97e49d68e5ffaef5b4.woff2')format("woff");}.ffd2{font-family:ffd2;line-height:0.992000;font-style:normal;font-weight: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_6ca127925a0d4ff619f0f4d4.woff2')format("woff");}.ffd3{font-family:ffd3;line-height:0.992000;font-style:normal;font-weight: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_80cfcb6fa587c0208674f6d5.woff2')format("woff");}.ffd4{font-family:ffd4;line-height:0.724000;font-style:normal;font-weight: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_e6ce61f8a480e0d97d25d50b.woff2')format("woff");}.ffd5{font-family:ffd5;line-height:0.992000;font-style:normal;font-weight: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_39036467dce1dee48ae9cd59.woff2')format("woff");}.ffd6{font-family:ffd6;line-height:0.992000;font-style:normal;font-weight: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_b7b9549d1b36038d472234c6.woff2')format("woff");}.ffd7{font-family:ffd7;line-height:0.992000;font-style:normal;font-weight: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_a2cce8cf12d1b0e62a6477b3.woff2')format("woff");}.ffd8{font-family:ffd8;line-height:0.913000;font-style:normal;font-weight: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_9f76189638321a83b96c0c9f.woff2')format("woff");}.ffd9{font-family:ffd9;line-height:0.992000;font-style:normal;font-weight: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_8dddb77dd22673dfa2a842de.woff2')format("woff");}.ffda{font-family:ffda;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffdb;src:url('chunks/assets/font_80cfcb6fa587c0208674f6d5.woff2')format("woff");}.ffdb{font-family:ffdb;line-height:0.724000;font-style:normal;font-weight: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_38a653ff38fe4bdc18efd092.woff2')format("woff");}.ffdc{font-family:ffdc;line-height:0.992000;font-style:normal;font-weight: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_8eeb1ac373a173bf60cc9b8a.woff2')format("woff");}.ffdd{font-family:ffdd;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffde;src:url('chunks/assets/font_80cfcb6fa587c0208674f6d5.woff2')format("woff");}.ffde{font-family:ffde;line-height:0.724000;font-style:normal;font-weight: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_fa466bc203b1fe0efaa0901d.woff2')format("woff");}.ffdf{font-family:ffdf;line-height:0.992000;font-style:normal;font-weight: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_268236dd73781d4e236ae2e8.woff2')format("woff");}.ffe0{font-family:ffe0;line-height:0.992000;font-style:normal;font-weight: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_80cfcb6fa587c0208674f6d5.woff2')format("woff");}.ffe1{font-family:ffe1;line-height:0.724000;font-style:normal;font-weight: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_98460fa0bec0a91c9ce65cdb.woff2')format("woff");}.ffe2{font-family:ffe2;line-height:0.992000;font-style:normal;font-weight: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_16c432070c435dea212ac18f.woff2')format("woff");}.ffe3{font-family:ffe3;line-height:0.901000;font-style:normal;font-weight: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_f569baef9b552f447f7b112d.woff2')format("woff");}.ffe4{font-family:ffe4;line-height:0.992000;font-style:normal;font-weight: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_034541d0b63cd3876d0c6d0b.woff2')format("woff");}.ffe5{font-family:ffe5;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe6;src:url('chunks/assets/font_4ffe2a1d4ab9f84240d95e8b.woff2')format("woff");}.ffe6{font-family:ffe6;line-height:0.915250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ffe7{font-family:sans-serif;visibility:hidden;}
.ffe8{font-family:sans-serif;visibility:hidden;}
.ffe9{font-family:sans-serif;visibility:hidden;}
.ffea{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffeb;src:url('chunks/assets/font_e370ceb6b352b3bd7e5a7f34.woff2')format("woff");}.ffeb{font-family:ffeb;line-height:0.703000;font-style:normal;font-weight: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_c5eec00b2fa94964350aab65.woff2')format("woff");}.ffec{font-family:ffec;line-height:0.732100;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ffed{font-family:sans-serif;visibility:hidden;}
.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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls69{letter-spacing:0.000121px;}
.ls6a{letter-spacing:0.000270px;}
.ls31{letter-spacing:0.011329px;}
.ls3b{letter-spacing:8.935020px;}
.ls3d{letter-spacing:8.937252px;}
.ls3a{letter-spacing:8.944191px;}
.ls2c{letter-spacing:8.994711px;}
.ls3c{letter-spacing:8.997750px;}
.ls46{letter-spacing:9.100128px;}
.ls45{letter-spacing:9.112403px;}
.ls4c{letter-spacing:9.350015px;}
.ls4b{letter-spacing:9.356731px;}
.ls48{letter-spacing:9.585441px;}
.ls47{letter-spacing:9.585445px;}
.ls49{letter-spacing:9.585495px;}
.ls4a{letter-spacing:9.585517px;}
.ls66{letter-spacing:9.750363px;}
.ls44{letter-spacing:9.913776px;}
.ls6b{letter-spacing:10.039515px;}
.ls63{letter-spacing:10.063134px;}
.ls65{letter-spacing:10.067846px;}
.ls1{letter-spacing:10.075188px;}
.ls62{letter-spacing:10.077967px;}
.ls67{letter-spacing:10.080118px;}
.ls68{letter-spacing:10.113627px;}
.ls64{letter-spacing:10.119372px;}
.ls50{letter-spacing:10.294387px;}
.ls4e{letter-spacing:10.294397px;}
.ls4d{letter-spacing:10.295534px;}
.ls4f{letter-spacing:10.295582px;}
.ls6{letter-spacing:10.312379px;}
.ls7{letter-spacing:10.376994px;}
.ls37{letter-spacing:10.402602px;}
.ls38{letter-spacing:10.402606px;}
.ls36{letter-spacing:10.402675px;}
.ls5b{letter-spacing:10.793137px;}
.ls5a{letter-spacing:10.799388px;}
.ls39{letter-spacing:10.799685px;}
.ls3f{letter-spacing:10.799820px;}
.ls40{letter-spacing:10.799833px;}
.ls3{letter-spacing:10.799905px;}
.ls3e{letter-spacing:10.800108px;}
.ls58{letter-spacing:10.807152px;}
.ls57{letter-spacing:10.810055px;}
.ls59{letter-spacing:10.810119px;}
.ls22{letter-spacing:10.840389px;}
.ls23{letter-spacing:10.842897px;}
.ls2b{letter-spacing:10.932841px;}
.ls56{letter-spacing:10.953053px;}
.ls2e{letter-spacing:11.064739px;}
.ls2f{letter-spacing:11.144190px;}
.ls1e{letter-spacing:11.419286px;}
.ls1d{letter-spacing:11.419426px;}
.ls1c{letter-spacing:11.429628px;}
.ls54{letter-spacing:11.459430px;}
.ls51{letter-spacing:11.459475px;}
.ls52{letter-spacing:11.468974px;}
.ls53{letter-spacing:11.469042px;}
.ls55{letter-spacing:11.509591px;}
.ls28{letter-spacing:11.599660px;}
.ls29{letter-spacing:11.613741px;}
.ls41{letter-spacing:11.717283px;}
.ls43{letter-spacing:11.720429px;}
.ls42{letter-spacing:11.720555px;}
.ls12{letter-spacing:11.860147px;}
.ls11{letter-spacing:11.860269px;}
.lsc{letter-spacing:11.864739px;}
.lsd{letter-spacing:11.864784px;}
.ls8{letter-spacing:11.864874px;}
.lse{letter-spacing:11.864982px;}
.lsf{letter-spacing:11.865009px;}
.ls10{letter-spacing:11.865054px;}
.lsa{letter-spacing:11.874922px;}
.ls9{letter-spacing:11.907217px;}
.lsb{letter-spacing:11.917515px;}
.ls13{letter-spacing:11.920726px;}
.ls4{letter-spacing:12.054220px;}
.ls20{letter-spacing:12.184759px;}
.ls21{letter-spacing:12.185021px;}
.ls1f{letter-spacing:12.189104px;}
.ls5{letter-spacing:12.234909px;}
.ls5e{letter-spacing:12.273846px;}
.ls5f{letter-spacing:12.278441px;}
.ls60{letter-spacing:12.288701px;}
.ls5d{letter-spacing:12.288774px;}
.ls2{letter-spacing:12.315332px;}
.ls61{letter-spacing:12.321050px;}
.ls15{letter-spacing:12.560362px;}
.ls16{letter-spacing:12.560762px;}
.ls35{letter-spacing:12.586306px;}
.ls32{letter-spacing:12.586319px;}
.ls33{letter-spacing:12.586409px;}
.ls30{letter-spacing:12.589469px;}
.ls2d{letter-spacing:12.589519px;}
.ls34{letter-spacing:12.650984px;}
.ls1b{letter-spacing:12.844242px;}
.ls1a{letter-spacing:12.848248px;}
.ls17{letter-spacing:12.848316px;}
.ls18{letter-spacing:12.848401px;}
.ls19{letter-spacing:12.848487px;}
.ls5c{letter-spacing:12.976491px;}
.ls14{letter-spacing:13.669996px;}
.ls24{letter-spacing:14.525087px;}
.ls25{letter-spacing:14.537242px;}
.ls26{letter-spacing:14.565920px;}
.ls27{letter-spacing:14.565965px;}
.ls2a{letter-spacing:14.749784px;}
.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;}
}
.ws22{word-spacing:-178.075948px;}
.ws16{word-spacing:-162.331778px;}
.ws10{word-spacing:-159.920075px;}
.ws12{word-spacing:-145.394989px;}
.ws1d{word-spacing:-143.990999px;}
.ws24{word-spacing:-142.981491px;}
.ws27{word-spacing:-141.771547px;}
.ws18{word-spacing:-138.571514px;}
.ws3{word-spacing:-135.509336px;}
.ws1f{word-spacing:-133.191000px;}
.ws6{word-spacing:-132.771212px;}
.ws8{word-spacing:-130.637875px;}
.wsb{word-spacing:-128.600997px;}
.ws14{word-spacing:-127.831228px;}
.ws13{word-spacing:-127.807658px;}
.ws1c{word-spacing:-125.981995px;}
.wsa{word-spacing:-125.684992px;}
.ws1b{word-spacing:-122.740380px;}
.wsd{word-spacing:-122.010033px;}
.ws19{word-spacing:-121.818734px;}
.ws5{word-spacing:-120.716992px;}
.ws17{word-spacing:-120.336638px;}
.wsf{word-spacing:-119.357810px;}
.ws4{word-spacing:-118.799901px;}
.ws9{word-spacing:-118.773000px;}
.ws20{word-spacing:-115.181995px;}
.wsc{word-spacing:-114.614998px;}
.ws7{word-spacing:-113.560380px;}
.ws25{word-spacing:-111.192966px;}
.ws2{word-spacing:-110.866189px;}
.ws1a{word-spacing:-110.753995px;}
.ws26{word-spacing:-107.247362px;}
.ws21{word-spacing:-103.125553px;}
.ws1e{word-spacing:-98.665187px;}
.wse{word-spacing:-81.591841px;}
.ws23{word-spacing:-77.166244px;}
.ws1{word-spacing:-68.393161px;}
.ws15{word-spacing:-59.994001px;}
.ws11{word-spacing:-40.710597px;}
.ws0{word-spacing:0.000000px;}
._11{margin-left:-25.927085px;}
._b{margin-left:-14.707957px;}
._8{margin-left:-13.670270px;}
._4{margin-left:-12.315332px;}
._d{margin-left:-11.144190px;}
._2{margin-left:-10.075157px;}
._c{margin-left:-8.994711px;}
._0{margin-left:-4.697267px;}
._1{margin-left:-3.562546px;}
._10{width:5.318927px;}
._e{width:8.393059px;}
._6{width:9.831748px;}
._5{width:10.843911px;}
._7{width:12.054220px;}
._9{width:13.066549px;}
._3{width:14.394698px;}
._a{width:15.437879px;}
._f{width:2920.522072px;}
.fc4{color:rgb(0,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(60,96,88);}
.fc3{color:rgb(28,33,32);}
.fc0{color:rgb(143,176,168);}
.fsc{font-size:67.049995px;}
.fs36{font-size:88.650135px;}
.fs21{font-size:149.534994px;}
.fs1c{font-size:149.985003px;}
.fs24{font-size:152.504989px;}
.fs28{font-size:156.281370px;}
.fs25{font-size:159.749993px;}
.fs32{font-size:162.494998px;}
.fs23{font-size:165.239998px;}
.fs38{font-size:167.894998px;}
.fs6{font-size:167.985002px;}
.fs31{font-size:168.524997px;}
.fs35{font-size:168.656877px;}
.fs2a{font-size:171.644713px;}
.fsf{font-size:172.080002px;}
.fs20{font-size:173.379437px;}
.fsa{font-size:179.999993px;}
.fs2d{font-size:180.302345px;}
.fs2e{font-size:180.314992px;}
.fs16{font-size:180.862369px;}
.fs2{font-size:181.178889px;}
.fs1b{font-size:182.339660px;}
.fs2c{font-size:182.610001px;}
.fs1e{font-size:184.589992px;}
.fs1f{font-size:185.993649px;}
.fs14{font-size:191.024997px;}
.fs2b{font-size:191.654992px;}
.fs27{font-size:191.969992px;}
.fs18{font-size:193.679996px;}
.fs19{font-size:193.695812px;}
.fs22{font-size:195.475168px;}
.fs10{font-size:197.955001px;}
.fsb{font-size:201.194987px;}
.fs15{font-size:203.350056px;}
.fsd{font-size:203.985001px;}
.fs9{font-size:205.323338px;}
.fs30{font-size:205.353240px;}
.fs12{font-size:209.474987px;}
.fs1d{font-size:209.969991px;}
.fs13{font-size:214.334996px;}
.fs3{font-size:215.155239px;}
.fs2f{font-size:216.675000px;}
.fs33{font-size:219.059991px;}
.fs26{font-size:221.985000px;}
.fs1{font-size:226.494855px;}
.fs11{font-size:227.969991px;}
.fs37{font-size:233.999990px;}
.fs34{font-size:236.285912px;}
.fs8{font-size:239.984999px;}
.fs17{font-size:242.324981px;}
.fs1a{font-size:245.969990px;}
.fs0{font-size:293.045901px;}
.fs29{font-size:296.793246px;}
.fs5{font-size:299.970006px;}
.fse{font-size:311.984996px;}
.fs4{font-size:325.695064px;}
.fs7{font-size:329.984995px;}
.fs39{font-size:479.969998px;}
.y0{bottom:0.000000px;}
.yf{bottom:0.000010px;}
.y13f{bottom:11.919907px;}
.y10c{bottom:12.129900px;}
.y1a8{bottom:12.318558px;}
.y14c{bottom:12.345763px;}
.y165{bottom:13.001884px;}
.yc4{bottom:13.033570px;}
.yc{bottom:13.078252px;}
.yf0{bottom:13.249756px;}
.ya0{bottom:13.435274px;}
.yb5{bottom:13.735035px;}
.y120{bottom:13.841342px;}
.y125{bottom:13.905238px;}
.y17c{bottom:14.600055px;}
.y4{bottom:14.665760px;}
.y28{bottom:14.779192px;}
.y91{bottom:14.900221px;}
.y8d{bottom:15.017697px;}
.y1a4{bottom:16.814987px;}
.y7{bottom:17.903815px;}
.y143{bottom:18.540127px;}
.ye{bottom:24.952028px;}
.y1a7{bottom:62.184259px;}
.y13e{bottom:63.957056px;}
.y14b{bottom:69.474837px;}
.y10b{bottom:70.645460px;}
.y93{bottom:71.640007px;}
.y164{bottom:73.229461px;}
.y1a3{bottom:73.305617px;}
.yc3{bottom:73.605039px;}
.y9f{bottom:74.079053px;}
.yef{bottom:75.663734px;}
.y8a{bottom:75.988221px;}
.yb{bottom:77.845670px;}
.yb4{bottom:79.116711px;}
.y11f{bottom:79.823637px;}
.y124{bottom:79.887534px;}
.y31{bottom:80.967021px;}
.y90{bottom:82.697695px;}
.y8c{bottom:82.815171px;}
.y17b{bottom:83.308289px;}
.y27{bottom:83.456163px;}
.y191{bottom:83.628285px;}
.y142{bottom:90.380847px;}
.y3{bottom:91.597998px;}
.y6{bottom:94.836053px;}
.y1a6{bottom:98.752439px;}
.y4d{bottom:104.725004px;}
.y19c{bottom:108.490423px;}
.y184{bottom:110.387551px;}
.y8e{bottom:113.760005px;}
.y13d{bottom:115.994205px;}
.y6f{bottom:123.937483px;}
.y14a{bottom:126.603911px;}
.y10a{bottom:129.161021px;}
.y29{bottom:131.263051px;}
.yfb{bottom:132.213522px;}
.y64{bottom:132.281318px;}
.y163{bottom:133.457037px;}
.y9e{bottom:134.722831px;}
.y190{bottom:137.628282px;}
.y30{bottom:141.717018px;}
.ye5{bottom:142.200004px;}
.yb3{bottom:144.498388px;}
.ya{bottom:150.045415px;}
.y8f{bottom:150.495168px;}
.y15a{bottom:151.013467px;}
.y17a{bottom:152.016522px;}
.y6b{bottom:156.076208px;}
.y141{bottom:162.221566px;}
.y89{bottom:163.738217px;}
.y8{bottom:164.880003px;}
.y4c{bottom:165.475001px;}
.y47{bottom:165.824993px;}
.y183{bottom:166.637549px;}
.y5b{bottom:166.802292px;}
.y13c{bottom:168.031355px;}
.y2{bottom:168.530236px;}
.y3d{bottom:170.122932px;}
.y5{bottom:171.768291px;}
.yc7{bottom:173.812493px;}
.y1d{bottom:175.680003px;}
.y172{bottom:176.272023px;}
.y8b{bottom:181.440003px;}
.y149{bottom:183.732986px;}
.y6e{bottom:184.687480px;}
.y109{bottom:187.676581px;}
.ya2{bottom:189.899992px;}
.y18f{bottom:191.628280px;}
.yf1{bottom:194.399992px;}
.yc2{bottom:194.747977px;}
.y9d{bottom:195.366610px;}
.y63{bottom:198.656315px;}
.yee{bottom:200.491689px;}
.yfa{bottom:201.963520px;}
.yb2{bottom:209.880065px;}
.y118{bottom:211.799223px;}
.y159{bottom:215.138464px;}
.ye3{bottom:217.683823px;}
.y18a{bottom:219.693951px;}
.y13b{bottom:220.068504px;}
.y26{bottom:220.810104px;}
.y6a{bottom:222.451205px;}
.y7c{bottom:222.975408px;}
.y5a{bottom:224.177290px;}
.y76{bottom:226.525267px;}
.y88{bottom:227.863215px;}
.y46{bottom:234.449990px;}
.yae{bottom:234.720000px;}
.y173{bottom:235.800000px;}
.y3c{bottom:237.622929px;}
.yd7{bottom:239.962468px;}
.y148{bottom:240.862060px;}
.yc6{bottom:242.437490px;}
.y171{bottom:249.397020px;}
.ya1{bottom:250.649990px;}
.y9{bottom:253.036227px;}
.yc1{bottom:255.319445px;}
.y9c{bottom:256.010388px;}
.y117{bottom:261.299221px;}
.yed{bottom:262.905667px;}
.y62{bottom:265.031312px;}
.yf9{bottom:271.713517px;}
.yb1{bottom:275.261742px;}
.y189{bottom:275.943949px;}
.y158{bottom:279.263462px;}
.y59{bottom:281.552287px;}
.y179{bottom:289.432989px;}
.y25{bottom:289.487074px;}
.y87{bottom:291.988212px;}
.y7b{bottom:292.725405px;}
.y18e{bottom:303.003275px;}
.y75{bottom:303.025264px;}
.yc5{bottom:303.187487px;}
.y144{bottom:303.479997px;}
.yd6{bottom:306.337466px;}
.y116{bottom:310.799219px;}
.y9b{bottom:316.654167px;}
.ybc{bottom:317.812465px;}
.ye2{bottom:320.058818px;}
.y170{bottom:322.522017px;}
.y3b{bottom:324.247926px;}
.y69{bottom:324.826201px;}
.yec{bottom:325.319645px;}
.y5c{bottom:328.093582px;}
.y58{bottom:338.927285px;}
.yb0{bottom:340.643418px;}
.yf8{bottom:341.463514px;}
.y105{bottom:342.562497px;}
.y157{bottom:343.388459px;}
.y147{bottom:355.120209px;}
.y86{bottom:356.113209px;}
.y178{bottom:358.141223px;}
.y24{bottom:358.164044px;}
.y18d{bottom:359.253273px;}
.y115{bottom:360.299217px;}
.y61{bottom:361.781308px;}
.y1c1{bottom:366.665349px;}
.y45{bottom:371.699985px;}
.y1c2{bottom:371.968653px;}
.yd5{bottom:372.712463px;}
.yc0{bottom:376.462383px;}
.ye1{bottom:381.933816px;}
.ya9{bottom:385.465239px;}
.y3a{bottom:391.747923px;}
.y16f{bottom:395.647014px;}
.y57{bottom:396.302283px;}
.ybb{bottom:399.937462px;}
.yaf{bottom:406.025095px;}
.y156{bottom:407.513456px;}
.y114{bottom:409.799215px;}
.y146{bottom:412.249283px;}
.y104{bottom:412.312494px;}
.y1b8{bottom:416.818217px;}
.y23{bottom:426.841015px;}
.y68{bottom:427.201197px;}
.y60{bottom:428.156305px;}
.ybf{bottom:437.033852px;}
.y9a{bottom:437.941724px;}
.y44{bottom:440.324982px;}
.yeb{bottom:450.147600px;}
.ybe{bottom:454.319991px;}
.y74{bottom:456.025258px;}
.y113{bottom:459.299213px;}
.ya8{bottom:466.465236px;}
.y16e{bottom:468.772011px;}
.y145{bottom:469.378358px;}
.yd4{bottom:479.587458px;}
.y39{bottom:481.747919px;}
.y103{bottom:482.062491px;}
.y1b7{bottom:483.193215px;}
.ye0{bottom:484.308811px;}
.y84{bottom:486.310904px;}
.y56{bottom:487.427279px;}
.y67{bottom:493.576194px;}
.yce{bottom:493.888865px;}
.y22{bottom:495.517985px;}
.y177{bottom:495.557690px;}
.y99{bottom:498.585502px;}
.y155{bottom:499.763452px;}
.y112{bottom:508.799211px;}
.y43{bottom:508.949979px;}
.yea{bottom:512.561578px;}
.yba{bottom:518.062457px;}
.y1a1{bottom:523.295136px;}
.y5f{bottom:524.906301px;}
.y73{bottom:532.525255px;}
.y17{bottom:534.753349px;}
.y16d{bottom:541.897008px;}
.y55{bottom:544.802276px;}
.yd3{bottom:545.962456px;}
.ydf{bottom:546.183809px;}
.ya7{bottom:547.465232px;}
.y1b6{bottom:549.568212px;}
.y102{bottom:551.812488px;}
.y1c{bottom:557.999977px;}
.y83{bottom:558.310901px;}
.y98{bottom:559.229281px;}
.ycd{bottom:563.638862px;}
.y154{bottom:563.888450px;}
.y21{bottom:564.194955px;}
.y176{bottom:564.265923px;}
.y38{bottom:571.747915px;}
.ye9{bottom:574.975555px;}
.y66{bottom:583.576190px;}
.y1bc{bottom:588.367505px;}
.y16{bottom:591.003346px;}
.y1c0{bottom:591.019143px;}
.yb9{bottom:600.187453px;}
.y54{bottom:602.177274px;}
.yde{bottom:608.058806px;}
.y72{bottom:609.025251px;}
.y16c{bottom:615.022005px;}
.y5e{bottom:621.656297px;}
.y4a{bottom:624.424985px;}
.y153{bottom:628.013447px;}
.ya6{bottom:628.465229px;}
.y82{bottom:630.310898px;}
.y175{bottom:632.974157px;}
.y1a0{bottom:636.920131px;}
.y1b{bottom:637.874973px;}
.y37{bottom:639.247913px;}
.y2e{bottom:640.249447px;}
.y42{bottom:646.199973px;}
.y15{bottom:647.253344px;}
.yd{bottom:650.879983px;}
.yd2{bottom:652.837451px;}
.y1b5{bottom:656.443207px;}
.y53{bottom:659.552272px;}
.y101{bottom:662.062483px;}
.y1bb{bottom:665.992502px;}
.y1bf{bottom:668.644140px;}
.yf6{bottom:669.291675px;}
.y7a{bottom:672.975390px;}
.ycc{bottom:673.888857px;}
.y97{bottom:680.516838px;}
.yb8{bottom:682.312450px;}
.ye8{bottom:699.803511px;}
.y2d{bottom:700.999444px;}
.y20{bottom:701.548896px;}
.y174{bottom:701.682390px;}
.y14{bottom:703.503341px;}
.ydd{bottom:710.433802px;}
.y41{bottom:714.824970px;}
.y65{bottom:716.326185px;}
.y52{bottom:716.927269px;}
.y5d{bottom:718.406293px;}
.yd1{bottom:719.212448px;}
.y152{bottom:720.263443px;}
.y1b4{bottom:722.818205px;}
.y49{bottom:725.674981px;}
.y16b{bottom:728.647000px;}
.y36{bottom:729.247909px;}
.y100{bottom:731.812480px;}
.yf5{bottom:739.041672px;}
.y96{bottom:741.160617px;}
.y81{bottom:742.810893px;}
.y1ba{bottom:743.617499px;}
.y1be{bottom:746.269137px;}
.ya5{bottom:749.965224px;}
.y19f{bottom:750.545126px;}
.yad{bottom:752.920082px;}
.y19b{bottom:758.379470px;}
.y13{bottom:759.753339px;}
.y71{bottom:762.025245px;}
.ye7{bottom:762.217488px;}
.y1f{bottom:770.225866px;}
.y51{bottom:774.302267px;}
.y79{bottom:783.225385px;}
.ycb{bottom:784.138853px;}
.y151{bottom:784.388441px;}
.yd0{bottom:785.587446px;}
.y1a{bottom:792.206708px;}
.y137{bottom:796.706214px;}
.y35{bottom:796.747906px;}
.yb7{bottom:800.437445px;}
.yff{bottom:801.562477px;}
.y16a{bottom:801.771997px;}
.y95{bottom:801.804395px;}
.y108{bottom:805.679977px;}
.y182{bottom:806.648788px;}
.yf4{bottom:808.791670px;}
.ydc{bottom:812.808798px;}
.y19a{bottom:814.629467px;}
.y80{bottom:814.810890px;}
.y13a{bottom:815.399976px;}
.y12{bottom:816.003337px;}
.yac{bottom:818.170080px;}
.y1b9{bottom:821.242496px;}
.y2c{bottom:822.499439px;}
.y1bd{bottom:823.894133px;}
.ye6{bottom:824.631466px;}
.y1b3{bottom:829.693200px;}
.y50{bottom:831.677265px;}
.y150{bottom:848.513438px;}
.y161{bottom:849.424382px;}
.y1{bottom:851.759975px;}
.y40{bottom:852.074964px;}
.y78{bottom:852.975382px;}
.yca{bottom:853.888850px;}
.y34{bottom:855.247904px;}
.y196{bottom:856.254466px;}
.y162{bottom:861.839974px;}
.y94{bottom:862.448174px;}
.y181{bottom:862.898785px;}
.y131{bottom:866.535059px;}
.y136{bottom:868.706211px;}
.y10f{bottom:870.242792px;}
.y11a{bottom:870.475953px;}
.y199{bottom:870.879465px;}
.ya4{bottom:871.465219px;}
.y19{bottom:872.081704px;}
.y11{bottom:872.253334px;}
.ydb{bottom:874.683795px;}
.y169{bottom:874.896994px;}
.y123{bottom:880.559973px;}
.y33{bottom:886.747902px;}
.y140{bottom:888.119973px;}
.y19e{bottom:890.327469px;}
.y1b2{bottom:896.068197px;}
.y1b0{bottom:898.331251px;}
.yf3{bottom:902.166666px;}
.y1a5{bottom:904.319972px;}
.y15c{bottom:905.576643px;}
.y1e{bottom:907.579807px;}
.y160{bottom:910.174379px;}
.yfe{bottom:911.812473px;}
.y195{bottom:912.504463px;}
.y70{bottom:915.025239px;}
.y11e{bottom:916.199972px;}
.ycf{bottom:918.337440px;}
.yb6{bottom:918.562440px;}
.y130{bottom:919.410056px;}
.y3f{bottom:920.699962px;}
.y135{bottom:921.581209px;}
.y77{bottom:922.725379px;}
.y4f{bottom:922.802261px;}
.yc9{bottom:923.638847px;}
.y188{bottom:926.105505px;}
.y198{bottom:927.129463px;}
.yab{bottom:927.295075px;}
.y7f{bottom:927.310885px;}
.y1ac{bottom:927.838920px;}
.y10e{bottom:930.992790px;}
.y111{bottom:931.225951px;}
.y6d{bottom:931.736694px;}
.y167{bottom:934.913467px;}
.y14f{bottom:940.763434px;}
.y128{bottom:943.962235px;}
.y2b{bottom:943.999434px;}
.y180{bottom:947.273782px;}
.y12a{bottom:951.836699px;}
.y18{bottom:951.956701px;}
.ya3{bottom:952.465216px;}
.y32{bottom:954.247899px;}
.y194{bottom:968.754461px;}
.y15b{bottom:969.701640px;}
.y19d{bottom:970.202465px;}
.y119{bottom:971.112768px;}
.yf2{bottom:971.916663px;}
.yda{bottom:977.058791px;}
.y1af{bottom:978.206248px;}
.y12e{bottom:978.297360px;}
.yfd{bottom:981.562470px;}
.y187{bottom:982.355503px;}
.y15f{bottom:990.049376px;}
.y10{bottom:991.055173px;}
.y12f{bottom:991.410053px;}
.y10d{bottom:991.742787px;}
.y110{bottom:991.975948px;}
.yaa{bottom:992.545072px;}
.y134{bottom:993.581206px;}
.y166{bottom:995.663464px;}
.y6c{bottom:998.111691px;}
.y127{bottom:999.087233px;}
.y7e{bottom:999.310882px;}
.y1ab{bottom:1003.213917px;}
.y17f{bottom:1003.523779px;}
.y2a{bottom:1004.749432px;}
.y197{bottom:1009.254459px;}
.y129{bottom:1012.586696px;}
.y4e{bottom:1013.927257px;}
.y168{bottom:1015.387460px;}
.y1b1{bottom:1021.874955px;}
.yd9{bottom:1030.499957px;}
.y186{bottom:1038.605501px;}
.ybd{bottom:1041.561212px;}
.y14e{bottom:1042.874957px;}
.y92{bottom:1044.799596px;}
.yc8{bottom:1046.095531px;}
.y15e{bottom:1050.799373px;}
.y1a2{bottom:1058.759966px;}
.y12d{bottom:1059.297356px;}
.y17e{bottom:1059.773777px;}
.y122{bottom:1064.255081px;}
.y1ae{bottom:1065.016321px;}
.y193{bottom:1065.504457px;}
.y48{bottom:1065.937456px;}
.y3e{bottom:1066.499956px;}
.y11b{bottom:1071.562455px;}
.y107{bottom:1072.659682px;}
.y133{bottom:1076.174683px;}
.y1aa{bottom:1080.532548px;}
.y11d{bottom:1082.198407px;}
.yf7{bottom:1082.354182px;}
.ye4{bottom:1088.628190px;}
.y85{bottom:1089.424603px;}
.yfc{bottom:1091.812465px;}
.y185{bottom:1094.855498px;}
.y14d{bottom:1100.249954px;}
.y126{bottom:1101.347177px;}
.y18c{bottom:1101.675114px;}
.yd8{bottom:1102.499954px;}
.y139{bottom:1104.645034px;}
.y12c{bottom:1109.922354px;}
.y4b{bottom:1111.124960px;}
.y2f{bottom:1111.207940px;}
.y7d{bottom:1111.810878px;}
.y1ad{bottom:1121.266318px;}
.y121{bottom:1121.630078px;}
.y192{bottom:1121.754455px;}
.y15d{bottom:1125.924104px;}
.y132{bottom:1129.049681px;}
.y106{bottom:1130.034680px;}
.y1a9{bottom:1136.782545px;}
.y11c{bottom:1139.573405px;}
.y17d{bottom:1143.023774px;}
.y138{bottom:1150.770033px;}
.y18b{bottom:1157.925112px;}
.y12b{bottom:1160.547352px;}
.h15{height:52.298996px;}
.h55{height:69.147105px;}
.h9{height:110.879995px;}
.h36{height:116.637295px;}
.h2d{height:116.988302px;}
.h3a{height:118.953892px;}
.h3f{height:121.899468px;}
.h3b{height:124.604995px;}
.h4e{height:126.746098px;}
.h39{height:128.887198px;}
.h37{height:130.319995px;}
.h57{height:130.958098px;}
.hd{height:131.028302px;}
.h4d{height:131.449498px;}
.h54{height:131.552364px;}
.h43{height:133.882876px;}
.h21{height:133.919994px;}
.h1a{height:134.222401px;}
.h51{height:134.279994px;}
.h35{height:135.235961px;}
.h12{height:140.399994px;}
.h47{height:140.635829px;}
.h48{height:140.645694px;}
.h25{height:141.072648px;}
.h53{height:141.119994px;}
.h7{height:141.319533px;}
.h2c{height:142.224935px;}
.h45{height:142.435801px;}
.h2f{height:143.980194px;}
.h31{height:145.075046px;}
.h20{height:148.999497px;}
.h44{height:149.490894px;}
.h3d{height:149.736594px;}
.h27{height:151.070397px;}
.h29{height:151.082733px;}
.h38{height:152.470631px;}
.h1b{height:154.404901px;}
.h14{height:156.932090px;}
.h22{height:158.613043px;}
.h17{height:159.108300px;}
.h11{height:160.152204px;}
.h4c{height:160.175527px;}
.h1e{height:163.390490px;}
.h2e{height:163.776593px;}
.h1f{height:167.181297px;}
.h8{height:167.821087px;}
.h5a{height:168.709454px;}
.h4a{height:169.006500px;}
.h50{height:170.866793px;}
.h3c{height:173.148300px;}
.h6{height:176.665987px;}
.h1d{height:177.816593px;}
.h46{height:179.999993px;}
.h58{height:180.948689px;}
.h56{height:182.519992px;}
.h52{height:184.303012px;}
.hf{height:187.188299px;}
.h26{height:189.013485px;}
.h2a{height:191.856592px;}
.h32{height:199.471492px;}
.h23{height:201.599992px;}
.h3{height:211.286095px;}
.h19{height:218.678134px;}
.h41{height:221.866442px;}
.h1c{height:221.977804px;}
.h16{height:222.877714px;}
.hc{height:222.955126px;}
.h13{height:224.241214px;}
.h59{height:227.985749px;}
.h33{height:229.477054px;}
.h18{height:231.885364px;}
.h34{height:232.199990px;}
.h40{height:233.279990px;}
.ha{height:235.842666px;}
.h2{height:242.279990px;}
.he{height:245.264009px;}
.h49{height:246.678783px;}
.h4f{height:248.148716px;}
.h3e{height:259.559989px;}
.h4{height:278.393606px;}
.h5{height:311.759987px;}
.h5b{height:343.946501px;}
.h5c{height:455.971498px;}
.h28{height:456.119981px;}
.h2b{height:484.199980px;}
.h42{height:513.719979px;}
.h4b{height:754.919969px;}
.h30{height:872.279964px;}
.h24{height:907.919962px;}
.h10{height:960.839960px;}
.hb{height:1214.999949px;}
.h0{height:1214.999989px;}
.h1{height:1215.000000px;}
.w3{width:412.559983px;}
.w8{width:606.599975px;}
.wa{width:821.879966px;}
.w9{width:850.319965px;}
.w5{width:959.759960px;}
.w10{width:1004.039958px;}
.w11{width:1035.719957px;}
.wb{width:1083.959955px;}
.w2{width:1131.119953px;}
.wc{width:1133.639953px;}
.w1{width:1159.919952px;}
.w6{width:1763.999927px;}
.w13{width:1807.199925px;}
.wd{width:1816.559924px;}
.w14{width:1823.399924px;}
.we{width:1890.719921px;}
.w7{width:1923.119920px;}
.w12{width:1982.879917px;}
.wf{width:2079.719913px;}
.w15{width:2103.479912px;}
.w4{width:2159.999910px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.x5{left:1.152523px;}
.x2{left:4.390590px;}
.x17{left:26.144958px;}
.x2f{left:29.519999px;}
.x3e{left:34.917072px;}
.x41{left:36.017055px;}
.x2b{left:38.968091px;}
.x34{left:40.532522px;}
.x29{left:43.182530px;}
.x11{left:44.760989px;}
.x49{left:48.070941px;}
.x23{left:49.827451px;}
.x3d{left:52.199998px;}
.x1e{left:64.127910px;}
.x2a{left:67.679997px;}
.x33{left:69.119997px;}
.x4a{left:71.349606px;}
.x3c{left:72.666962px;}
.x45{left:74.849336px;}
.x2d{left:79.933439px;}
.x27{left:82.200604px;}
.x10{left:84.239996px;}
.x25{left:89.171154px;}
.x28{left:92.519996px;}
.x3b{left:96.128500px;}
.x42{left:97.413074px;}
.x1a{left:98.866565px;}
.x18{left:100.123401px;}
.x31{left:101.850299px;}
.x1d{left:103.480105px;}
.x4c{left:104.526706px;}
.x4b{left:107.378090px;}
.x16{left:111.662532px;}
.x6{left:116.018536px;}
.x3{left:119.256603px;}
.x14{left:121.499995px;}
.x20{left:122.956159px;}
.x26{left:125.289484px;}
.x39{left:126.808698px;}
.x21{left:130.201694px;}
.x2e{left:132.757553px;}
.x30{left:134.304428px;}
.x19{left:144.067236px;}
.x13{left:145.188649px;}
.x38{left:152.133657px;}
.x24{left:173.123743px;}
.x7{left:199.562144px;}
.x4{left:202.800210px;}
.xa{left:237.351005px;}
.xb{left:253.741939px;}
.x99{left:300.879547px;}
.x4f{left:303.531185px;}
.x51{left:329.971343px;}
.x4d{left:332.622980px;}
.x75{left:345.176420px;}
.x4e{left:347.828058px;}
.x52{left:357.148651px;}
.xb7{left:362.121732px;}
.x50{left:364.773369px;}
.x76{left:373.313624px;}
.x53{left:388.885491px;}
.x9a{left:409.168792px;}
.x9{left:417.916726px;}
.x54{left:421.462253px;}
.x9b{left:438.085923px;}
.xb8{left:444.613534px;}
.x55{left:450.379383px;}
.x9c{left:451.764570px;}
.x56{left:465.977840px;}
.xb9{left:472.750738px;}
.x9d{left:483.561406px;}
.x9e{left:499.879793px;}
.x77{left:502.720788px;}
.xba{left:505.327500px;}
.x8{left:513.719979px;}
.xbb{left:520.925957px;}
.x78{left:531.637919px;}
.xbc{left:552.722793px;}
.x57{left:558.608633px;}
.x79{left:562.174880px;}
.x9f{left:563.293495px;}
.x7a{left:577.787739px;}
.xa0{left:578.891951px;}
.xbd{left:606.537448px;}
.x7b{left:609.584574px;}
.xbe{left:622.135904px;}
.x58{left:634.741068px;}
.x7c{left:642.161336px;}
.x59{left:650.339525px;}
.xbf{left:653.932740px;}
.x7d{left:676.657907px;}
.x7e{left:692.256364px;}
.x5a{left:701.514458px;}
.xc0{left:705.107673px;}
.x5b{left:717.112915px;}
.xc1{left:736.904508px;}
.x1{left:774.719968px;}
.x7f{left:780.267612px;}
.x2c{left:794.216055px;}
.x80{left:809.184743px;}
.x36{left:811.869017px;}
.x81{left:822.863390px;}
.xa1{left:826.727350px;}
.xa2{left:842.325806px;}
.xc2{left:843.333905px;}
.xd4{left:848.685975px;}
.x5c{left:854.499243px;}
.xc3{left:858.932362px;}
.x37{left:867.507150px;}
.x82{left:870.978630px;}
.x3f{left:880.559963px;}
.x5d{left:882.636430px;}
.x40{left:888.479963px;}
.xc4{left:903.507910px;}
.x5e{left:911.973565px;}
.xc5{left:919.106366px;}
.x5f{left:927.571953px;}
.x83{left:934.392332px;}
.x84{left:949.990788px;}
.x60{left:953.249472px;}
.xa3{left:968.253290px;}
.x32{left:975.140131px;}
.x61{left:982.166586px;}
.x22{left:984.919711px;}
.xc6{left:996.918680px;}
.x62{left:1011.503652px;}
.x85{left:1016.764143px;}
.xd{left:1021.921733px;}
.x63{left:1027.102108px;}
.xc7{left:1033.814958px;}
.xa4{left:1039.226272px;}
.x86{left:1045.681291px;}
.x43{left:1049.937760px;}
.xa5{left:1068.143385px;}
.x64{left:1071.677691px;}
.xe{left:1079.999955px;}
.x44{left:1082.338532px;}
.x65{left:1087.276147px;}
.x46{left:1097.847998px;}
.x48{left:1117.990663px;}
.xf{left:1123.910010px;}
.x66{left:1136.171279px;}
.xc{left:1147.679952px;}
.x87{left:1159.789960px;}
.x67{left:1165.088392px;}
.x68{left:1180.686849px;}
.x88{left:1188.707073px;}
.xc8{left:1201.798312px;}
.x69{left:1209.604031px;}
.x89{left:1221.283869px;}
.xa6{left:1227.907524px;}
.x1f{left:1230.771909px;}
.x47{left:1234.884693px;}
.x8a{left:1253.080636px;}
.x6a{left:1256.459346px;}
.x12{left:1267.340203px;}
.x8b{left:1268.679161px;}
.x6b{left:1285.376459px;}
.xc9{left:1287.529777px;}
.xa7{left:1298.460485px;}
.x35{left:1326.477761px;}
.x8c{left:1328.613149px;}
.x6c{left:1334.271659px;}
.xca{left:1343.984189px;}
.x1c{left:1347.404956px;}
.x6d{left:1349.870047px;}
.xa8{left:1358.394541px;}
.x8d{left:1361.189945px;}
.x1b{left:1373.812503px;}
.x8e{left:1376.788401px;}
.xcb{left:1389.579646px;}
.x6e{left:1396.545461px;}
.x6f{left:1412.143917px;}
.xcc{left:1431.815484px;}
.x8f{left:1437.622375px;}
.xa9{left:1449.645468px;}
.x90{left:1453.220763px;}
.xcd{left:1460.732598px;}
.xaa{left:1465.243925px;}
.x91{left:1482.137946px;}
.x70{left:1494.635788px;}
.xab{left:1497.160717px;}
.x71{left:1522.772872px;}
.xac{left:1526.437907px;}
.xad{left:1542.036295px;}
.xce{left:1547.363979px;}
.x15{left:1554.766459px;}
.x92{left:1560.550182px;}
.xcf{left:1562.962505px;}
.x72{left:1570.948193px;}
.x3a{left:1574.601270px;}
.xae{left:1589.431587px;}
.x93{left:1592.346949px;}
.xd0{left:1597.519037px;}
.x73{left:1600.285259px;}
.xaf{left:1618.768653px;}
.xd1{left:1625.656258px;}
.x94{left:1636.922531px;}
.xb0{left:1647.685767px;}
.x74{left:1658.119486px;}
.xb1{left:1664.004171px;}
.xb2{left:1679.602697px;}
.xd2{left:1696.149205px;}
.x95{left:1700.336233px;}
.x96{left:1715.934689px;}
.xd3{left:1727.946109px;}
.xb3{left:1730.777561px;}
.xb4{left:1746.376086px;}
.x97{left:1747.731525px;}
.xb5{left:1760.054751px;}
.x98{left:1780.308321px;}
.xb6{left:1791.851517px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls69{letter-spacing:0.000108pt;}
.ls6a{letter-spacing:0.000240pt;}
.ls31{letter-spacing:0.010070pt;}
.ls3b{letter-spacing:7.942240pt;}
.ls3d{letter-spacing:7.944224pt;}
.ls3a{letter-spacing:7.950392pt;}
.ls2c{letter-spacing:7.995299pt;}
.ls3c{letter-spacing:7.998000pt;}
.ls46{letter-spacing:8.089003pt;}
.ls45{letter-spacing:8.099914pt;}
.ls4c{letter-spacing:8.311124pt;}
.ls4b{letter-spacing:8.317095pt;}
.ls48{letter-spacing:8.520392pt;}
.ls47{letter-spacing:8.520396pt;}
.ls49{letter-spacing:8.520440pt;}
.ls4a{letter-spacing:8.520460pt;}
.ls66{letter-spacing:8.666989pt;}
.ls44{letter-spacing:8.812245pt;}
.ls6b{letter-spacing:8.924013pt;}
.ls63{letter-spacing:8.945008pt;}
.ls65{letter-spacing:8.949196pt;}
.ls1{letter-spacing:8.955723pt;}
.ls62{letter-spacing:8.958193pt;}
.ls67{letter-spacing:8.960105pt;}
.ls68{letter-spacing:8.989890pt;}
.ls64{letter-spacing:8.994997pt;}
.ls50{letter-spacing:9.150566pt;}
.ls4e{letter-spacing:9.150575pt;}
.ls4d{letter-spacing:9.151586pt;}
.ls4f{letter-spacing:9.151629pt;}
.ls6{letter-spacing:9.166559pt;}
.ls7{letter-spacing:9.223995pt;}
.ls37{letter-spacing:9.246757pt;}
.ls38{letter-spacing:9.246761pt;}
.ls36{letter-spacing:9.246822pt;}
.ls5b{letter-spacing:9.593900pt;}
.ls5a{letter-spacing:9.599456pt;}
.ls39{letter-spacing:9.599720pt;}
.ls3f{letter-spacing:9.599840pt;}
.ls40{letter-spacing:9.599852pt;}
.ls3{letter-spacing:9.599916pt;}
.ls3e{letter-spacing:9.600096pt;}
.ls58{letter-spacing:9.606357pt;}
.ls57{letter-spacing:9.608938pt;}
.ls59{letter-spacing:9.608994pt;}
.ls22{letter-spacing:9.635901pt;}
.ls23{letter-spacing:9.638131pt;}
.ls2b{letter-spacing:9.718081pt;}
.ls56{letter-spacing:9.736047pt;}
.ls2e{letter-spacing:9.835324pt;}
.ls2f{letter-spacing:9.905947pt;}
.ls1e{letter-spacing:10.150476pt;}
.ls1d{letter-spacing:10.150600pt;}
.ls1c{letter-spacing:10.159669pt;}
.ls54{letter-spacing:10.186160pt;}
.ls51{letter-spacing:10.186200pt;}
.ls52{letter-spacing:10.194644pt;}
.ls53{letter-spacing:10.194704pt;}
.ls55{letter-spacing:10.230748pt;}
.ls28{letter-spacing:10.310809pt;}
.ls29{letter-spacing:10.323325pt;}
.ls41{letter-spacing:10.415362pt;}
.ls43{letter-spacing:10.418159pt;}
.ls42{letter-spacing:10.418271pt;}
.ls12{letter-spacing:10.542353pt;}
.ls11{letter-spacing:10.542461pt;}
.lsc{letter-spacing:10.546435pt;}
.lsd{letter-spacing:10.546475pt;}
.ls8{letter-spacing:10.546555pt;}
.lse{letter-spacing:10.546651pt;}
.lsf{letter-spacing:10.546675pt;}
.ls10{letter-spacing:10.546715pt;}
.lsa{letter-spacing:10.555486pt;}
.ls9{letter-spacing:10.584193pt;}
.lsb{letter-spacing:10.593347pt;}
.ls13{letter-spacing:10.596201pt;}
.ls4{letter-spacing:10.714862pt;}
.ls20{letter-spacing:10.830897pt;}
.ls21{letter-spacing:10.831130pt;}
.ls1f{letter-spacing:10.834759pt;}
.ls5{letter-spacing:10.875475pt;}
.ls5e{letter-spacing:10.910085pt;}
.ls5f{letter-spacing:10.914170pt;}
.ls60{letter-spacing:10.923290pt;}
.ls5d{letter-spacing:10.923354pt;}
.ls2{letter-spacing:10.946962pt;}
.ls61{letter-spacing:10.952044pt;}
.ls15{letter-spacing:11.164766pt;}
.ls16{letter-spacing:11.165122pt;}
.ls35{letter-spacing:11.187828pt;}
.ls32{letter-spacing:11.187840pt;}
.ls33{letter-spacing:11.187920pt;}
.ls30{letter-spacing:11.190640pt;}
.ls2d{letter-spacing:11.190684pt;}
.ls34{letter-spacing:11.245320pt;}
.ls1b{letter-spacing:11.417104pt;}
.ls1a{letter-spacing:11.420665pt;}
.ls17{letter-spacing:11.420725pt;}
.ls18{letter-spacing:11.420801pt;}
.ls19{letter-spacing:11.420877pt;}
.ls5c{letter-spacing:11.534659pt;}
.ls14{letter-spacing:12.151107pt;}
.ls24{letter-spacing:12.911188pt;}
.ls25{letter-spacing:12.921993pt;}
.ls26{letter-spacing:12.947484pt;}
.ls27{letter-spacing:12.947524pt;}
.ls2a{letter-spacing:13.110919pt;}
.ws22{word-spacing:-158.289731pt;}
.ws16{word-spacing:-144.294914pt;}
.ws10{word-spacing:-142.151178pt;}
.ws12{word-spacing:-129.239990pt;}
.ws1d{word-spacing:-127.991999pt;}
.ws24{word-spacing:-127.094659pt;}
.ws27{word-spacing:-126.019153pt;}
.ws18{word-spacing:-123.174679pt;}
.ws3{word-spacing:-120.452743pt;}
.ws1f{word-spacing:-118.392000pt;}
.ws6{word-spacing:-118.018855pt;}
.ws8{word-spacing:-116.122555pt;}
.wsb{word-spacing:-114.311998pt;}
.ws14{word-spacing:-113.627758pt;}
.ws13{word-spacing:-113.606807pt;}
.ws1c{word-spacing:-111.983995pt;}
.wsa{word-spacing:-111.719993pt;}
.ws1b{word-spacing:-109.102560pt;}
.wsd{word-spacing:-108.453363pt;}
.ws19{word-spacing:-108.283319pt;}
.ws5{word-spacing:-107.303993pt;}
.ws17{word-spacing:-106.965900pt;}
.wsf{word-spacing:-106.095831pt;}
.ws4{word-spacing:-105.599912pt;}
.ws9{word-spacing:-105.576000pt;}
.ws20{word-spacing:-102.383996pt;}
.wsc{word-spacing:-101.879998pt;}
.ws7{word-spacing:-100.942560pt;}
.ws25{word-spacing:-98.838192pt;}
.ws2{word-spacing:-98.547724pt;}
.ws1a{word-spacing:-98.447996pt;}
.ws26{word-spacing:-95.330988pt;}
.ws21{word-spacing:-91.667158pt;}
.ws1e{word-spacing:-87.702388pt;}
.wse{word-spacing:-72.526081pt;}
.ws23{word-spacing:-68.592217pt;}
.ws1{word-spacing:-60.793921pt;}
.ws15{word-spacing:-53.328001pt;}
.ws11{word-spacing:-36.187197pt;}
.ws0{word-spacing:0.000000pt;}
._11{margin-left:-23.046298pt;}
._b{margin-left:-13.073739pt;}
._8{margin-left:-12.151351pt;}
._4{margin-left:-10.946962pt;}
._d{margin-left:-9.905947pt;}
._2{margin-left:-8.955695pt;}
._c{margin-left:-7.995299pt;}
._0{margin-left:-4.175348pt;}
._1{margin-left:-3.166708pt;}
._10{width:4.727935pt;}
._e{width:7.460496pt;}
._6{width:8.739332pt;}
._5{width:9.639032pt;}
._7{width:10.714862pt;}
._9{width:11.614710pt;}
._3{width:12.795287pt;}
._a{width:13.722559pt;}
._f{width:2596.019620pt;}
.fsc{font-size:59.599996pt;}
.fs36{font-size:78.800120pt;}
.fs21{font-size:132.919994pt;}
.fs1c{font-size:133.320002pt;}
.fs24{font-size:135.559990pt;}
.fs28{font-size:138.916773pt;}
.fs25{font-size:141.999994pt;}
.fs32{font-size:144.439998pt;}
.fs23{font-size:146.879998pt;}
.fs38{font-size:149.239998pt;}
.fs6{font-size:149.320002pt;}
.fs31{font-size:149.799998pt;}
.fs35{font-size:149.917224pt;}
.fs2a{font-size:152.573078pt;}
.fsf{font-size:152.960002pt;}
.fs20{font-size:154.115055pt;}
.fsa{font-size:159.999993pt;}
.fs2d{font-size:160.268751pt;}
.fs2e{font-size:160.279993pt;}
.fs16{font-size:160.766550pt;}
.fs2{font-size:161.047901pt;}
.fs1b{font-size:162.079698pt;}
.fs2c{font-size:162.320001pt;}
.fs1e{font-size:164.079993pt;}
.fs1f{font-size:165.327688pt;}
.fs14{font-size:169.799997pt;}
.fs2b{font-size:170.359993pt;}
.fs27{font-size:170.639993pt;}
.fs18{font-size:172.159997pt;}
.fs19{font-size:172.174055pt;}
.fs22{font-size:173.755705pt;}
.fs10{font-size:175.960001pt;}
.fsb{font-size:178.839989pt;}
.fs15{font-size:180.755605pt;}
.fsd{font-size:181.320000pt;}
.fs9{font-size:182.509634pt;}
.fs30{font-size:182.536213pt;}
.fs12{font-size:186.199988pt;}
.fs1d{font-size:186.639992pt;}
.fs13{font-size:190.519996pt;}
.fs3{font-size:191.249102pt;}
.fs2f{font-size:192.600000pt;}
.fs33{font-size:194.719992pt;}
.fs26{font-size:197.320000pt;}
.fs1{font-size:201.328760pt;}
.fs11{font-size:202.639992pt;}
.fs37{font-size:207.999991pt;}
.fs34{font-size:210.031922pt;}
.fs8{font-size:213.319999pt;}
.fs17{font-size:215.399983pt;}
.fs1a{font-size:218.639991pt;}
.fs0{font-size:260.485245pt;}
.fs29{font-size:263.816219pt;}
.fs5{font-size:266.640005pt;}
.fse{font-size:277.319996pt;}
.fs4{font-size:289.506724pt;}
.fs7{font-size:293.319996pt;}
.fs39{font-size:426.639998pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:0.000009pt;}
.y13f{bottom:10.595473pt;}
.y10c{bottom:10.782134pt;}
.y1a8{bottom:10.949830pt;}
.y14c{bottom:10.974011pt;}
.y165{bottom:11.557230pt;}
.yc4{bottom:11.585396pt;}
.yc{bottom:11.625113pt;}
.yf0{bottom:11.777561pt;}
.ya0{bottom:11.942466pt;}
.yb5{bottom:12.208920pt;}
.y120{bottom:12.303415pt;}
.y125{bottom:12.360212pt;}
.y17c{bottom:12.977827pt;}
.y4{bottom:13.036231pt;}
.y28{bottom:13.137060pt;}
.y91{bottom:13.244641pt;}
.y8d{bottom:13.349064pt;}
.y1a4{bottom:14.946655pt;}
.y7{bottom:15.914503pt;}
.y143{bottom:16.480113pt;}
.ye{bottom:22.179580pt;}
.y1a7{bottom:55.274897pt;}
.y13e{bottom:56.850716pt;}
.y14b{bottom:61.755411pt;}
.y10b{bottom:62.795965pt;}
.y93{bottom:63.680006pt;}
.y164{bottom:65.092854pt;}
.y1a3{bottom:65.160548pt;}
.yc3{bottom:65.426701pt;}
.y9f{bottom:65.848047pt;}
.yef{bottom:67.256652pt;}
.y8a{bottom:67.545085pt;}
.yb{bottom:69.196151pt;}
.yb4{bottom:70.325966pt;}
.y11f{bottom:70.954344pt;}
.y124{bottom:71.011141pt;}
.y31{bottom:71.970685pt;}
.y90{bottom:73.509062pt;}
.y8c{bottom:73.613485pt;}
.y17b{bottom:74.051812pt;}
.y27{bottom:74.183256pt;}
.y191{bottom:74.336253pt;}
.y142{bottom:80.338530pt;}
.y3{bottom:81.420443pt;}
.y6{bottom:84.298714pt;}
.y1a6{bottom:87.779946pt;}
.y4d{bottom:93.088892pt;}
.y19c{bottom:96.435932pt;}
.y184{bottom:98.122268pt;}
.y8e{bottom:101.120005pt;}
.y13d{bottom:103.105960pt;}
.y6f{bottom:110.166651pt;}
.y14a{bottom:112.536810pt;}
.y10a{bottom:114.809796pt;}
.y29{bottom:116.678267pt;}
.yfb{bottom:117.523131pt;}
.y64{bottom:117.583394pt;}
.y163{bottom:118.628477pt;}
.y9e{bottom:119.753628pt;}
.y190{bottom:122.336251pt;}
.y30{bottom:125.970683pt;}
.ye5{bottom:126.400004pt;}
.yb3{bottom:128.443012pt;}
.ya{bottom:133.373702pt;}
.y8f{bottom:133.773483pt;}
.y15a{bottom:134.234193pt;}
.y17a{bottom:135.125797pt;}
.y6b{bottom:138.734407pt;}
.y141{bottom:144.196948pt;}
.y89{bottom:145.545082pt;}
.y8{bottom:146.560003pt;}
.y4c{bottom:147.088890pt;}
.y47{bottom:147.399994pt;}
.y183{bottom:148.122266pt;}
.y5b{bottom:148.268704pt;}
.y13c{bottom:149.361204pt;}
.y2{bottom:149.804654pt;}
.y3d{bottom:151.220384pt;}
.y5{bottom:152.682925pt;}
.yc7{bottom:154.499994pt;}
.y1d{bottom:156.160002pt;}
.y172{bottom:156.686243pt;}
.y8b{bottom:161.280002pt;}
.y149{bottom:163.318210pt;}
.y6e{bottom:164.166649pt;}
.y109{bottom:166.823627pt;}
.ya2{bottom:168.799993pt;}
.y18f{bottom:170.336249pt;}
.yf1{bottom:172.799993pt;}
.yc2{bottom:173.109312pt;}
.y9d{bottom:173.659209pt;}
.y63{bottom:176.583391pt;}
.yee{bottom:178.214835pt;}
.yfa{bottom:179.523129pt;}
.yb2{bottom:186.560058pt;}
.y118{bottom:188.265976pt;}
.y159{bottom:191.234190pt;}
.ye3{bottom:193.496731pt;}
.y18a{bottom:195.283512pt;}
.y13b{bottom:195.616448pt;}
.y26{bottom:196.275648pt;}
.y6a{bottom:197.734405pt;}
.y7c{bottom:198.200363pt;}
.y5a{bottom:199.268702pt;}
.y76{bottom:201.355793pt;}
.y88{bottom:202.545080pt;}
.y46{bottom:208.399991pt;}
.yae{bottom:208.640000pt;}
.y173{bottom:209.600000pt;}
.y3c{bottom:211.220382pt;}
.yd7{bottom:213.299972pt;}
.y148{bottom:214.099609pt;}
.yc6{bottom:215.499991pt;}
.y171{bottom:221.686240pt;}
.ya1{bottom:222.799991pt;}
.y9{bottom:224.921091pt;}
.yc1{bottom:226.950618pt;}
.y9c{bottom:227.564790pt;}
.y117{bottom:232.265974pt;}
.yed{bottom:233.693926pt;}
.y62{bottom:235.583389pt;}
.yf9{bottom:241.523126pt;}
.yb1{bottom:244.677104pt;}
.y189{bottom:245.283510pt;}
.y158{bottom:248.234188pt;}
.y59{bottom:250.268700pt;}
.y179{bottom:257.273768pt;}
.y25{bottom:257.321843pt;}
.y87{bottom:259.545077pt;}
.y7b{bottom:260.200360pt;}
.y18e{bottom:269.336245pt;}
.y75{bottom:269.355790pt;}
.yc5{bottom:269.499989pt;}
.y144{bottom:269.759998pt;}
.yd6{bottom:272.299969pt;}
.y116{bottom:276.265972pt;}
.y9b{bottom:281.470371pt;}
.ybc{bottom:282.499969pt;}
.ye2{bottom:284.496727pt;}
.y170{bottom:286.686238pt;}
.y3b{bottom:288.220378pt;}
.y69{bottom:288.734401pt;}
.yec{bottom:289.173017pt;}
.y5c{bottom:291.638740pt;}
.y58{bottom:301.268698pt;}
.yb0{bottom:302.794150pt;}
.yf8{bottom:303.523123pt;}
.y105{bottom:304.499997pt;}
.y157{bottom:305.234186pt;}
.y147{bottom:315.662408pt;}
.y86{bottom:316.545075pt;}
.y178{bottom:318.347754pt;}
.y24{bottom:318.368039pt;}
.y18d{bottom:319.336243pt;}
.y115{bottom:320.265971pt;}
.y61{bottom:321.583385pt;}
.y1c1{bottom:325.924754pt;}
.y45{bottom:330.399986pt;}
.y1c2{bottom:330.638802pt;}
.yd5{bottom:331.299967pt;}
.yc0{bottom:334.633229pt;}
.ye1{bottom:339.496725pt;}
.ya9{bottom:342.635768pt;}
.y3a{bottom:348.220376pt;}
.y16f{bottom:351.686235pt;}
.y57{bottom:352.268696pt;}
.ybb{bottom:355.499966pt;}
.yaf{bottom:360.911196pt;}
.y156{bottom:362.234183pt;}
.y114{bottom:364.265969pt;}
.y146{bottom:366.443807pt;}
.y104{bottom:366.499994pt;}
.y1b8{bottom:370.505082pt;}
.y23{bottom:379.414235pt;}
.y68{bottom:379.734397pt;}
.y60{bottom:380.583383pt;}
.ybf{bottom:388.474535pt;}
.y9a{bottom:389.281532pt;}
.y44{bottom:391.399984pt;}
.yeb{bottom:400.131200pt;}
.ybe{bottom:403.839992pt;}
.y74{bottom:405.355785pt;}
.y113{bottom:408.265967pt;}
.ya8{bottom:414.635765pt;}
.y16e{bottom:416.686232pt;}
.y145{bottom:417.225207pt;}
.yd4{bottom:426.299963pt;}
.y39{bottom:428.220373pt;}
.y103{bottom:428.499992pt;}
.y1b7{bottom:429.505080pt;}
.ye0{bottom:430.496721pt;}
.y84{bottom:432.276359pt;}
.y56{bottom:433.268692pt;}
.y67{bottom:438.734395pt;}
.yce{bottom:439.012324pt;}
.y22{bottom:440.460431pt;}
.y177{bottom:440.495724pt;}
.y99{bottom:443.187113pt;}
.y155{bottom:444.234180pt;}
.y112{bottom:452.265965pt;}
.y43{bottom:452.399981pt;}
.yea{bottom:455.610291pt;}
.yba{bottom:460.499962pt;}
.y1a1{bottom:465.151232pt;}
.y5f{bottom:466.583379pt;}
.y73{bottom:473.355782pt;}
.y17{bottom:475.336310pt;}
.y16d{bottom:481.686230pt;}
.y55{bottom:484.268690pt;}
.yd3{bottom:485.299961pt;}
.ydf{bottom:485.496719pt;}
.ya7{bottom:486.635762pt;}
.y1b6{bottom:488.505077pt;}
.y102{bottom:490.499989pt;}
.y1c{bottom:495.999979pt;}
.y83{bottom:496.276356pt;}
.y98{bottom:497.092694pt;}
.ycd{bottom:501.012322pt;}
.y154{bottom:501.234178pt;}
.y21{bottom:501.506627pt;}
.y176{bottom:501.569710pt;}
.y38{bottom:508.220369pt;}
.ye9{bottom:511.089382pt;}
.y66{bottom:518.734391pt;}
.y1bc{bottom:522.993338pt;}
.y16{bottom:525.336308pt;}
.y1c0{bottom:525.350349pt;}
.yb9{bottom:533.499959pt;}
.y54{bottom:535.268688pt;}
.yde{bottom:540.496717pt;}
.y72{bottom:541.355779pt;}
.y16c{bottom:546.686227pt;}
.y5e{bottom:552.583375pt;}
.y4a{bottom:555.044431pt;}
.y153{bottom:558.234175pt;}
.ya6{bottom:558.635759pt;}
.y82{bottom:560.276354pt;}
.y175{bottom:562.643695pt;}
.y1a0{bottom:566.151228pt;}
.y1b{bottom:566.999976pt;}
.y37{bottom:568.220367pt;}
.y2e{bottom:569.110619pt;}
.y42{bottom:574.399976pt;}
.y15{bottom:575.336306pt;}
.yd{bottom:578.559985pt;}
.yd2{bottom:580.299957pt;}
.y1b5{bottom:583.505073pt;}
.y53{bottom:586.268686pt;}
.y101{bottom:588.499985pt;}
.y1bb{bottom:591.993335pt;}
.y1bf{bottom:594.350346pt;}
.yf6{bottom:594.925934pt;}
.y7a{bottom:598.200346pt;}
.ycc{bottom:599.012317pt;}
.y97{bottom:604.903856pt;}
.yb8{bottom:606.499956pt;}
.ye8{bottom:622.047565pt;}
.y2d{bottom:623.110617pt;}
.y20{bottom:623.599019pt;}
.y174{bottom:623.717680pt;}
.y14{bottom:625.336304pt;}
.ydd{bottom:631.496713pt;}
.y41{bottom:635.399974pt;}
.y65{bottom:636.734386pt;}
.y52{bottom:637.268684pt;}
.y5d{bottom:638.583372pt;}
.yd1{bottom:639.299954pt;}
.y152{bottom:640.234172pt;}
.y1b4{bottom:642.505071pt;}
.y49{bottom:645.044428pt;}
.y16b{bottom:647.686223pt;}
.y36{bottom:648.220363pt;}
.y100{bottom:650.499982pt;}
.yf5{bottom:656.925931pt;}
.y96{bottom:658.809437pt;}
.y81{bottom:660.276349pt;}
.y1ba{bottom:660.993332pt;}
.y1be{bottom:663.350344pt;}
.ya5{bottom:666.635755pt;}
.y19f{bottom:667.151223pt;}
.yad{bottom:669.262295pt;}
.y19b{bottom:674.115084pt;}
.y13{bottom:675.336301pt;}
.y71{bottom:677.355773pt;}
.ye7{bottom:677.526656pt;}
.y1f{bottom:684.645214pt;}
.y51{bottom:688.268682pt;}
.y79{bottom:696.200342pt;}
.ycb{bottom:697.012313pt;}
.y151{bottom:697.234169pt;}
.yd0{bottom:698.299952pt;}
.y1a{bottom:704.183740pt;}
.y137{bottom:708.183302pt;}
.y35{bottom:708.220361pt;}
.yb7{bottom:711.499951pt;}
.yff{bottom:712.499980pt;}
.y16a{bottom:712.686220pt;}
.y95{bottom:712.715018pt;}
.y108{bottom:716.159979pt;}
.y182{bottom:717.021145pt;}
.yf4{bottom:718.925928pt;}
.ydc{bottom:722.496709pt;}
.y19a{bottom:724.115082pt;}
.y80{bottom:724.276347pt;}
.y13a{bottom:724.799979pt;}
.y12{bottom:725.336299pt;}
.yac{bottom:727.262293pt;}
.y1b9{bottom:729.993330pt;}
.y2c{bottom:731.110613pt;}
.y1bd{bottom:732.350341pt;}
.ye6{bottom:733.005747pt;}
.y1b3{bottom:737.505067pt;}
.y50{bottom:739.268680pt;}
.y150{bottom:754.234167pt;}
.y161{bottom:755.043895pt;}
.y1{bottom:757.119977pt;}
.y40{bottom:757.399968pt;}
.y78{bottom:758.200340pt;}
.yca{bottom:759.012311pt;}
.y34{bottom:760.220359pt;}
.y196{bottom:761.115081pt;}
.y162{bottom:766.079977pt;}
.y94{bottom:766.620599pt;}
.y181{bottom:767.021142pt;}
.y131{bottom:770.253386pt;}
.y136{bottom:772.183299pt;}
.y10f{bottom:773.549149pt;}
.y11a{bottom:773.756403pt;}
.y199{bottom:774.115080pt;}
.ya4{bottom:774.635750pt;}
.y19{bottom:775.183737pt;}
.y11{bottom:775.336297pt;}
.ydb{bottom:777.496707pt;}
.y169{bottom:777.686217pt;}
.y123{bottom:782.719976pt;}
.y33{bottom:788.220358pt;}
.y140{bottom:789.439976pt;}
.y19e{bottom:791.402194pt;}
.y1b2{bottom:796.505064pt;}
.y1b0{bottom:798.516668pt;}
.yf3{bottom:801.925925pt;}
.y1a5{bottom:803.839976pt;}
.y15c{bottom:804.957016pt;}
.y1e{bottom:806.737606pt;}
.y160{bottom:809.043893pt;}
.yfe{bottom:810.499976pt;}
.y195{bottom:811.115079pt;}
.y70{bottom:813.355768pt;}
.y11e{bottom:814.399975pt;}
.ycf{bottom:816.299947pt;}
.yb6{bottom:816.499947pt;}
.y130{bottom:817.253384pt;}
.y3f{bottom:818.399966pt;}
.y135{bottom:819.183297pt;}
.y77{bottom:820.200337pt;}
.y4f{bottom:820.268676pt;}
.yc9{bottom:821.012308pt;}
.y188{bottom:823.204894pt;}
.y198{bottom:824.115078pt;}
.yab{bottom:824.262289pt;}
.y7f{bottom:824.276343pt;}
.y1ac{bottom:824.745706pt;}
.y10e{bottom:827.549146pt;}
.y111{bottom:827.756401pt;}
.y6d{bottom:828.210394pt;}
.y167{bottom:831.034193pt;}
.y14f{bottom:836.234164pt;}
.y128{bottom:839.077543pt;}
.y2b{bottom:839.110608pt;}
.y180{bottom:842.021139pt;}
.y12a{bottom:846.077066pt;}
.y18{bottom:846.183734pt;}
.ya3{bottom:846.635747pt;}
.y32{bottom:848.220355pt;}
.y194{bottom:861.115076pt;}
.y15b{bottom:861.957014pt;}
.y19d{bottom:862.402191pt;}
.y119{bottom:863.211350pt;}
.yf2{bottom:863.925922pt;}
.yda{bottom:868.496703pt;}
.y1af{bottom:869.516665pt;}
.y12e{bottom:869.597653pt;}
.yfd{bottom:872.499973pt;}
.y187{bottom:873.204892pt;}
.y15f{bottom:880.043890pt;}
.y10{bottom:880.937931pt;}
.y12f{bottom:881.253381pt;}
.y10d{bottom:881.549144pt;}
.y110{bottom:881.756398pt;}
.yaa{bottom:882.262286pt;}
.y134{bottom:883.183294pt;}
.y166{bottom:885.034190pt;}
.y6c{bottom:887.210392pt;}
.y127{bottom:888.077541pt;}
.y7e{bottom:888.276340pt;}
.y1ab{bottom:891.745704pt;}
.y17f{bottom:892.021137pt;}
.y2a{bottom:893.110606pt;}
.y197{bottom:897.115075pt;}
.y129{bottom:900.077063pt;}
.y4e{bottom:901.268673pt;}
.y168{bottom:902.566631pt;}
.y1b1{bottom:908.333293pt;}
.yd9{bottom:915.999962pt;}
.y186{bottom:923.204890pt;}
.ybd{bottom:925.832189pt;}
.y14e{bottom:926.999961pt;}
.y92{bottom:928.710752pt;}
.yc8{bottom:929.862694pt;}
.y15e{bottom:934.043887pt;}
.y1a2{bottom:941.119970pt;}
.y12d{bottom:941.597650pt;}
.y17e{bottom:942.021135pt;}
.y122{bottom:946.004516pt;}
.y1ae{bottom:946.681174pt;}
.y193{bottom:947.115073pt;}
.y48{bottom:947.499961pt;}
.y3e{bottom:947.999961pt;}
.y11b{bottom:952.499960pt;}
.y107{bottom:953.475273pt;}
.y133{bottom:956.599719pt;}
.y1aa{bottom:960.473376pt;}
.y11d{bottom:961.954140pt;}
.yf7{bottom:962.092606pt;}
.ye4{bottom:967.669502pt;}
.y85{bottom:968.377425pt;}
.yfc{bottom:970.499969pt;}
.y185{bottom:973.204887pt;}
.y14d{bottom:977.999959pt;}
.y126{bottom:978.975268pt;}
.y18c{bottom:979.266768pt;}
.yd8{bottom:979.999959pt;}
.y139{bottom:981.906697pt;}
.y12c{bottom:986.597648pt;}
.y4b{bottom:987.666631pt;}
.y2f{bottom:987.740391pt;}
.y7d{bottom:988.276336pt;}
.y1ad{bottom:996.681172pt;}
.y121{bottom:997.004514pt;}
.y192{bottom:997.115071pt;}
.y15d{bottom:1000.821425pt;}
.y132{bottom:1003.599717pt;}
.y106{bottom:1004.475271pt;}
.y1a9{bottom:1010.473374pt;}
.y11c{bottom:1012.954138pt;}
.y17d{bottom:1016.021132pt;}
.y138{bottom:1022.906696pt;}
.y18b{bottom:1029.266766pt;}
.y12b{bottom:1031.597646pt;}
.h15{height:46.487997pt;}
.h55{height:61.464093pt;}
.h9{height:98.559996pt;}
.h36{height:103.677596pt;}
.h2d{height:103.989602pt;}
.h3a{height:105.736792pt;}
.h3f{height:108.355083pt;}
.h3b{height:110.759995pt;}
.h4e{height:112.663198pt;}
.h39{height:114.566398pt;}
.h37{height:115.839995pt;}
.h57{height:116.407198pt;}
.hd{height:116.469601pt;}
.h4d{height:116.843998pt;}
.h54{height:116.935434pt;}
.h43{height:119.007001pt;}
.h21{height:119.039995pt;}
.h1a{height:119.308801pt;}
.h51{height:119.359995pt;}
.h35{height:120.209743pt;}
.h12{height:124.799995pt;}
.h47{height:125.009626pt;}
.h48{height:125.018395pt;}
.h25{height:125.397909pt;}
.h53{height:125.439995pt;}
.h7{height:125.617363pt;}
.h2c{height:126.422165pt;}
.h45{height:126.609601pt;}
.h2f{height:127.982395pt;}
.h31{height:128.955597pt;}
.h20{height:132.443998pt;}
.h44{height:132.880794pt;}
.h3d{height:133.099194pt;}
.h27{height:134.284798pt;}
.h29{height:134.295763pt;}
.h38{height:135.529450pt;}
.h1b{height:137.248801pt;}
.h14{height:139.495191pt;}
.h22{height:140.989372pt;}
.h17{height:141.429600pt;}
.h11{height:142.357515pt;}
.h4c{height:142.378246pt;}
.h1e{height:145.235991pt;}
.h2e{height:145.579194pt;}
.h1f{height:148.605597pt;}
.h8{height:149.174299pt;}
.h5a{height:149.963959pt;}
.h4a{height:150.228000pt;}
.h50{height:151.881594pt;}
.h3c{height:153.909600pt;}
.h6{height:157.036433pt;}
.h1d{height:158.059193pt;}
.h46{height:159.999993pt;}
.h58{height:160.843279pt;}
.h56{height:162.239993pt;}
.h52{height:163.824899pt;}
.hf{height:166.389599pt;}
.h26{height:168.011987pt;}
.h2a{height:170.539193pt;}
.h32{height:177.307993pt;}
.h23{height:179.199993pt;}
.h3{height:187.809862pt;}
.h19{height:194.380564pt;}
.h41{height:197.214615pt;}
.h1c{height:197.313604pt;}
.h16{height:198.113524pt;}
.hc{height:198.182334pt;}
.h13{height:199.325524pt;}
.h59{height:202.653999pt;}
.h33{height:203.979604pt;}
.h18{height:206.120324pt;}
.h34{height:206.399991pt;}
.h40{height:207.359991pt;}
.ha{height:209.637926pt;}
.h2{height:215.359991pt;}
.he{height:218.012452pt;}
.h49{height:219.270030pt;}
.h4f{height:220.576637pt;}
.h3e{height:230.719990pt;}
.h4{height:247.460983pt;}
.h5{height:277.119988pt;}
.h5b{height:305.730223pt;}
.h5c{height:405.307998pt;}
.h28{height:405.439983pt;}
.h2b{height:430.399982pt;}
.h42{height:456.639981pt;}
.h4b{height:671.039972pt;}
.h30{height:775.359968pt;}
.h24{height:807.039966pt;}
.h10{height:854.079964pt;}
.hb{height:1079.999955pt;}
.h0{height:1079.999991pt;}
.h1{height:1080.000000pt;}
.w3{width:366.719985pt;}
.w8{width:539.199978pt;}
.wa{width:730.559970pt;}
.w9{width:755.839969pt;}
.w5{width:853.119964pt;}
.w10{width:892.479963pt;}
.w11{width:920.639962pt;}
.wb{width:963.519960pt;}
.w2{width:1005.439958pt;}
.wc{width:1007.679958pt;}
.w1{width:1031.039957pt;}
.w6{width:1567.999935pt;}
.w13{width:1606.399933pt;}
.wd{width:1614.719933pt;}
.w14{width:1620.799932pt;}
.we{width:1680.639930pt;}
.w7{width:1709.439929pt;}
.w12{width:1762.559927pt;}
.wf{width:1848.639923pt;}
.w15{width:1869.759922pt;}
.w4{width:1919.999920pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.x5{left:1.024465pt;}
.x2{left:3.902746pt;}
.x17{left:23.239963pt;}
.x2f{left:26.239999pt;}
.x3e{left:31.037397pt;}
.x41{left:32.015160pt;}
.x2b{left:34.638303pt;}
.x34{left:36.028908pt;}
.x29{left:38.384471pt;}
.x11{left:39.787546pt;}
.x49{left:42.729725pt;}
.x23{left:44.291068pt;}
.x3d{left:46.399998pt;}
.x1e{left:57.002586pt;}
.x2a{left:60.159997pt;}
.x33{left:61.439997pt;}
.x4a{left:63.421872pt;}
.x3c{left:64.592855pt;}
.x45{left:66.532743pt;}
.x2d{left:71.051946pt;}
.x27{left:73.067203pt;}
.x10{left:74.879997pt;}
.x25{left:79.263248pt;}
.x28{left:82.239997pt;}
.x3b{left:85.447555pt;}
.x42{left:86.589400pt;}
.x1a{left:87.881392pt;}
.x18{left:88.998579pt;}
.x31{left:90.533599pt;}
.x1d{left:91.982316pt;}
.x4c{left:92.912628pt;}
.x4b{left:95.447191pt;}
.x16{left:99.255584pt;}
.x6{left:103.127588pt;}
.x3{left:106.005869pt;}
.x14{left:107.999996pt;}
.x20{left:109.294363pt;}
.x26{left:111.368430pt;}
.x39{left:112.718843pt;}
.x21{left:115.734839pt;}
.x2e{left:118.006714pt;}
.x30{left:119.381714pt;}
.x19{left:128.059765pt;}
.x13{left:129.056577pt;}
.x38{left:135.229918pt;}
.x24{left:153.887771pt;}
.x7{left:177.388572pt;}
.x4{left:180.266853pt;}
.xa{left:210.978671pt;}
.xb{left:225.548390pt;}
.x99{left:267.448486pt;}
.x4f{left:269.805497pt;}
.x51{left:293.307860pt;}
.x4d{left:295.664871pt;}
.x75{left:306.823485pt;}
.x4e{left:309.180496pt;}
.x52{left:317.465467pt;}
.xb7{left:321.885984pt;}
.x50{left:324.242995pt;}
.x76{left:331.834333pt;}
.x53{left:345.675992pt;}
.x9a{left:363.705593pt;}
.x9{left:371.481535pt;}
.x54{left:374.633114pt;}
.x9b{left:389.409709pt;}
.xb8{left:395.212031pt;}
.x55{left:400.337230pt;}
.x9c{left:401.568507pt;}
.x56{left:414.202525pt;}
.xb9{left:420.222878pt;}
.x9d{left:429.832361pt;}
.x9e{left:444.337594pt;}
.x77{left:446.862923pt;}
.xba{left:449.180000pt;}
.x8{left:456.639981pt;}
.xbb{left:463.045295pt;}
.x78{left:472.567039pt;}
.xbc{left:491.309149pt;}
.x57{left:496.541007pt;}
.x79{left:499.711005pt;}
.x9f{left:500.705329pt;}
.x7a{left:513.589101pt;}
.xa0{left:514.570623pt;}
.xbd{left:539.144398pt;}
.x7b{left:541.852955pt;}
.xbe{left:553.009693pt;}
.x58{left:564.214283pt;}
.x7c{left:570.810077pt;}
.x59{left:578.079578pt;}
.xbf{left:581.273547pt;}
.x7d{left:601.473695pt;}
.x7e{left:615.338990pt;}
.x5a{left:623.568407pt;}
.xc0{left:626.762376pt;}
.x5b{left:637.433702pt;}
.xc1{left:655.026230pt;}
.x1{left:688.639971pt;}
.x7f{left:693.571211pt;}
.x2c{left:705.969827pt;}
.x80{left:719.275327pt;}
.x36{left:721.661349pt;}
.x81{left:731.434125pt;}
.xa1{left:734.868755pt;}
.xa2{left:748.734050pt;}
.xc2{left:749.630138pt;}
.xd4{left:754.387534pt;}
.x5c{left:759.554883pt;}
.xc3{left:763.495433pt;}
.x37{left:771.117467pt;}
.x82{left:774.203227pt;}
.x3f{left:782.719967pt;}
.x5d{left:784.565716pt;}
.x40{left:789.759967pt;}
.xc4{left:803.118142pt;}
.x5e{left:810.643169pt;}
.xc5{left:816.983437pt;}
.x5f{left:824.508402pt;}
.x83{left:830.570961pt;}
.x84{left:844.436256pt;}
.x60{left:847.332864pt;}
.xa3{left:860.669591pt;}
.x32{left:866.791228pt;}
.x61{left:873.036965pt;}
.x22{left:875.484188pt;}
.xc6{left:886.149938pt;}
.x62{left:899.114357pt;}
.x85{left:903.790350pt;}
.xd{left:908.374874pt;}
.x63{left:912.979652pt;}
.xc7{left:918.946629pt;}
.xa4{left:923.756686pt;}
.x86{left:929.494481pt;}
.x43{left:933.278009pt;}
.xa5{left:949.460787pt;}
.x64{left:952.602392pt;}
.xe{left:959.999960pt;}
.x44{left:962.078695pt;}
.x65{left:966.467687pt;}
.x46{left:975.864887pt;}
.x48{left:993.769479pt;}
.xf{left:999.031120pt;}
.x66{left:1009.930026pt;}
.xc{left:1020.159957pt;}
.x87{left:1030.924408pt;}
.x67{left:1035.634127pt;}
.x68{left:1049.499421pt;}
.x88{left:1056.628509pt;}
.xc8{left:1068.265166pt;}
.x69{left:1075.203583pt;}
.x89{left:1085.585661pt;}
.xa6{left:1091.473354pt;}
.x1f{left:1094.019474pt;}
.x47{left:1097.675282pt;}
.x8a{left:1113.849454pt;}
.x6a{left:1116.852752pt;}
.x12{left:1126.524625pt;}
.x8b{left:1127.714810pt;}
.x6b{left:1142.556853pt;}
.xc9{left:1144.470913pt;}
.xa7{left:1154.187098pt;}
.x35{left:1179.091343pt;}
.x8c{left:1180.989466pt;}
.x6c{left:1186.019253pt;}
.xca{left:1194.652613pt;}
.x1c{left:1197.693294pt;}
.x6d{left:1199.884487pt;}
.xa8{left:1207.461815pt;}
.x8d{left:1209.946617pt;}
.x1b{left:1221.166669pt;}
.x8e{left:1223.811912pt;}
.xcb{left:1235.181907pt;}
.x6e{left:1241.373743pt;}
.x6f{left:1255.239038pt;}
.xcc{left:1272.724875pt;}
.x8f{left:1277.886556pt;}
.xa9{left:1288.573750pt;}
.x90{left:1291.751790pt;}
.xcd{left:1298.428976pt;}
.xaa{left:1302.439044pt;}
.x91{left:1317.455952pt;}
.x70{left:1328.565145pt;}
.xab{left:1330.809526pt;}
.x71{left:1353.575886pt;}
.xac{left:1356.833695pt;}
.xad{left:1370.698929pt;}
.xce{left:1375.434648pt;}
.x15{left:1382.014630pt;}
.x92{left:1387.155717pt;}
.xcf{left:1389.300004pt;}
.x72{left:1396.398394pt;}
.x3a{left:1399.645574pt;}
.xae{left:1412.828078pt;}
.x93{left:1415.419510pt;}
.xd0{left:1420.016922pt;}
.x73{left:1422.475786pt;}
.xaf{left:1438.905470pt;}
.xd1{left:1445.027785pt;}
.x94{left:1455.042250pt;}
.xb0{left:1464.609570pt;}
.x74{left:1473.883987pt;}
.xb1{left:1479.114819pt;}
.xb2{left:1492.980175pt;}
.xd2{left:1507.688182pt;}
.x95{left:1511.409985pt;}
.x96{left:1525.275279pt;}
.xd3{left:1535.952097pt;}
.xb3{left:1538.468943pt;}
.xb4{left:1552.334299pt;}
.x97{left:1553.539133pt;}
.xb5{left:1564.493112pt;}
.x98{left:1582.496285pt;}
.xb6{left:1592.756904pt;}
}




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