
    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_a6ee39d16b36c3f89fcdcc22.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_79ae0405ca79cc091582df4c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9f3b350b8cf747a768ab2eb3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941895;font-style:normal;font-weight: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_27fce07f9dbcd917fb73df90.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.904785;font-style:normal;font-weight: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_7c11e5c55dfe45c8f067154a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.901367;font-style:normal;font-weight: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_9062175f2187d8bb7cc2beeb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.881836;font-style:normal;font-weight: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_c32c61ac6dab6cbf741360af.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.904785;font-style:normal;font-weight: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_64f1044415779986f5926667.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.881836;font-style:normal;font-weight: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_f9786f7b28ced8fd0d514d2d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.732000;font-style:normal;font-weight: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_36033b2b58b18ee407a4b272.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6822e4b21d81d3c443d6ce51.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.400000;font-style:normal;font-weight: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_796b014cd35455b425be5077.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.867000;font-style:normal;font-weight: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_b5aa27422552dbe3287582b7.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_cabf2a42d7c6ae7d4ea3dad1.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_6b2b38619e195ccda2660ce1.woff2')format("woff");}.fff{font-family:fff;line-height:0.684000;font-style:normal;font-weight: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_d544566c914117861d384f57.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.732000;font-style:normal;font-weight: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_5fdff9c0c20f7f01d27c0763.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.697754;font-style:normal;font-weight: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_1bc917da21159efa1ddf8b20.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.636000;font-style:normal;font-weight: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_5d95205bca639aee0bf3aff5.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.800000;font-style:normal;font-weight: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_9ef4fcabbc5a583e6ae9709b.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_585ae28b176dd77f483ccc49.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.904785;font-style:normal;font-weight: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_29fa92adbae4b2ff6bfcaa82.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.685059;font-style:normal;font-weight: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_4c0760ad9ca7f4f1f8840762.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.877000;font-style:normal;font-weight: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_56bbb242360b07098a4849cb.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.234000;font-style:normal;font-weight: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_791bf8f4a78f7aef676db21e.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_2eedac3d4af1afb20fe48632.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_6822e4b21d81d3c443d6ce51.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.400000;font-style:normal;font-weight: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_66563ffaad3cadb10f136d62.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.867000;font-style:normal;font-weight: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_cc956bbde92ee8a13b003c07.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.877000;font-style:normal;font-weight: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_f6efcd0e9d4d82dea2111605.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.442000;font-style:normal;font-weight: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_83f6bfad27bd0ac7b2148b27.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_66563ffaad3cadb10f136d62.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.867000;font-style:normal;font-weight: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_f6efcd0e9d4d82dea2111605.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.442000;font-style:normal;font-weight: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_1dc0b7dd064be3297dca531d.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_66563ffaad3cadb10f136d62.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.867000;font-style:normal;font-weight: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_68b8edb1b4473fc818b3f500.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.802000;font-style:normal;font-weight: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_084f4b0353cd21a8b04142c1.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.905000;font-style:normal;font-weight: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_64196e44b15450c9322e9213.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.905000;font-style:normal;font-weight: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_0df14d8de64c95ae90ebc6b9.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_018cfd17b0d78ea4579250dc.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.664000;font-style:normal;font-weight: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_cb236ffd33d19b9b35ad9c38.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_5d95205bca639aee0bf3aff5.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.800000;font-style:normal;font-weight: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_4251e98094b66089609be763.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_1bc917da21159efa1ddf8b20.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.636000;font-style:normal;font-weight: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_9ef4fcabbc5a583e6ae9709b.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_1bc917da21159efa1ddf8b20.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.636000;font-style:normal;font-weight: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_2ad91645e9f62c24e63e909b.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_d25e8e1003f65b895ebcc8b9.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.932000;font-style:normal;font-weight: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_ab576e365e60fa5bd5e981b5.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_d371abdfca263e9ae908d071.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.580000;font-style:normal;font-weight: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_9ef4fcabbc5a583e6ae9709b.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_ee3d13e7d842240909b8fa27.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_225d1019a7047c84778372e0.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.234000;font-style:normal;font-weight: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_cedfdd2bd0b12af4f2588b98.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_514add2bbe3c7dc01ece563f.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.717285;font-style:normal;font-weight: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_d2fdade29aa0364336bf8d3b.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.727051;font-style:normal;font-weight: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_a1b48aea59585623dd720751.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.905000;font-style:normal;font-weight: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_67d4c061e6705f8d374b1346.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.905000;font-style:normal;font-weight: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_5311a08e2b599346ce7a72d0.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_acaa1fb209df6297d61c6247.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.664000;font-style:normal;font-weight: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_2d245a741459bfabfe688ea7.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_e185c0e05b0f511a7a727206.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_b97c5c5f5041dbef78172abd.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.800000;font-style:normal;font-weight: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_ab48da621d1df222770e432e.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_62f571f3ad0d8d6eafac4252.woff2')format("woff");}.ff41{font-family:ff41;line-height:2.222000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_61095a6c3f543f319b050297.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.800000;font-style:normal;font-weight: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_011c219a5834f60d406a3f87.woff2')format("woff");}.ff43{font-family:ff43;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_a5a12d59b7942319f5399766.woff2')format("woff");}.ff44{font-family:ff44;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_b97c5c5f5041dbef78172abd.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.800000;font-style:normal;font-weight: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_a927094d009bf82cd3036123.woff2')format("woff");}.ff46{font-family:ff46;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_b63132c47cce5b47fdd25c9b.woff2')format("woff");}.ff47{font-family:ff47;line-height:2.262000;font-style:normal;font-weight: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_61095a6c3f543f319b050297.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.800000;font-style:normal;font-weight: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_b161e227a36d1aab21feb662.woff2')format("woff");}.ff49{font-family:ff49;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a;src:url('chunks/assets/font_073822b3feab1c715290f450.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b;src:url('chunks/assets/font_082830e83dffbb78b44b8cb4.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4c;src:url('chunks/assets/font_295453a65e22a286c3989fa1.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:0.664000;font-style:normal;font-weight: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_89ee57c6357caadc4fc77ad3.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:0.865234;font-style:normal;font-weight: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_94cfc31e1a6efc3d3cb2e886.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:0.881836;font-style:normal;font-weight: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_ade98170bb241986f430e236.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:0.757812;font-style:normal;font-weight: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_077aa667fc3552117ae9c9f6.woff2')format("woff");}.ff50{font-family:ff50;line-height:0.910000;font-style:normal;font-weight: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_9c3799a6ce42049018628528.woff2')format("woff");}.ff51{font-family:ff51;line-height:0.800000;font-style:normal;font-weight: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_5311a08e2b599346ce7a72d0.woff2')format("woff");}.ff52{font-family:ff52;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff53;src:url('chunks/assets/font_295453a65e22a286c3989fa1.woff2')format("woff");}.ff53{font-family:ff53;line-height:0.664000;font-style:normal;font-weight: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_db3a5273226da9e8ac29a72f.woff2')format("woff");}.ff54{font-family:ff54;line-height:0.428000;font-style:normal;font-weight: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_c8d845f15d2adc251ed2d555.woff2')format("woff");}.ff55{font-family:ff55;line-height:0.666992;font-style:normal;font-weight: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_466185b5f3a94608e7ec084f.woff2')format("woff");}.ff56{font-family:ff56;line-height:0.916000;font-style:normal;font-weight: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_e185c0e05b0f511a7a727206.woff2')format("woff");}.ff57{font-family:ff57;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff58;src:url('chunks/assets/font_9c3799a6ce42049018628528.woff2')format("woff");}.ff58{font-family:ff58;line-height:0.800000;font-style:normal;font-weight: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_ab48da621d1df222770e432e.woff2')format("woff");}.ff59{font-family:ff59;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5a;src:url('chunks/assets/font_62f571f3ad0d8d6eafac4252.woff2')format("woff");}.ff5a{font-family:ff5a;line-height:2.222000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5b;src:url('chunks/assets/font_abd0f9fbf9ef0cbb1bf0b5c7.woff2')format("woff");}.ff5b{font-family:ff5b;line-height:0.684000;font-style:normal;font-weight: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_740eba43ea5780a1c8f4be2e.woff2')format("woff");}.ff5c{font-family:ff5c;line-height:0.916000;font-style:normal;font-weight: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_dd9195382b91deaa947ba437.woff2')format("woff");}.ff5d{font-family:ff5d;line-height:0.040000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5e;src:url('chunks/assets/font_b78e906b9f2f758cbd994ec4.woff2')format("woff");}.ff5e{font-family:ff5e;line-height:0.901367;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5f;src:url('chunks/assets/font_556271181e1f61b17cfba8d7.woff2')format("woff");}.ff5f{font-family:ff5f;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff60;src:url('chunks/assets/font_e185c0e05b0f511a7a727206.woff2')format("woff");}.ff60{font-family:ff60;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff61;src:url('chunks/assets/font_2f59687a423b149c460e6871.woff2')format("woff");}.ff61{font-family:ff61;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff62;src:url('chunks/assets/font_a40bf86dcea54fba70b9ecd3.woff2')format("woff");}.ff62{font-family:ff62;line-height:0.865234;font-style:normal;font-weight: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_e66d7e6f66a75e56f6de040c.woff2')format("woff");}.ff63{font-family:ff63;line-height:0.683000;font-style:normal;font-weight: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_9c3799a6ce42049018628528.woff2')format("woff");}.ff64{font-family:ff64;line-height:0.800000;font-style:normal;font-weight: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_e6d1f17883872963b88c4a17.woff2')format("woff");}.ff65{font-family:ff65;line-height:0.636000;font-style:normal;font-weight: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_9c3799a6ce42049018628528.woff2')format("woff");}.ff66{font-family:ff66;line-height:0.800000;font-style:normal;font-weight: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_5311a08e2b599346ce7a72d0.woff2')format("woff");}.ff67{font-family:ff67;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff68;src:url('chunks/assets/font_d2f663165940905b3d04a366.woff2')format("woff");}.ff68{font-family:ff68;line-height:0.723000;font-style:normal;font-weight: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_9c3799a6ce42049018628528.woff2')format("woff");}.ff69{font-family:ff69;line-height:0.800000;font-style:normal;font-weight: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_75947378b13b33d1e73f5617.woff2')format("woff");}.ff6a{font-family:ff6a;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6b;src:url('chunks/assets/font_5003381d06a7eabf6a12a9e6.woff2')format("woff");}.ff6b{font-family:ff6b;line-height:0.119000;font-style:normal;font-weight: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_2b9023647ef71e211176858f.woff2')format("woff");}.ff6c{font-family:ff6c;line-height:0.635000;font-style:normal;font-weight: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_c3c2aa5e28576e27d0bf0c4d.woff2')format("woff");}.ff6d{font-family:ff6d;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6e;src:url('chunks/assets/font_f6d18798b6c782d9d5e0e244.woff2')format("woff");}.ff6e{font-family:ff6e;line-height:0.453000;font-style:normal;font-weight: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_518641ce11f23717b065ac94.woff2')format("woff");}.ff6f{font-family:ff6f;line-height:0.580000;font-style:normal;font-weight: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_90b1b3838aa6c9143a89ace7.woff2')format("woff");}.ff70{font-family:ff70;line-height:0.688000;font-style:normal;font-weight: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_e6d1f17883872963b88c4a17.woff2')format("woff");}.ff71{font-family:ff71;line-height:0.636000;font-style:normal;font-weight: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_5311a08e2b599346ce7a72d0.woff2')format("woff");}.ff72{font-family:ff72;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff73;src:url('chunks/assets/font_19593dc19876a092256bc009.woff2')format("woff");}.ff73{font-family:ff73;line-height:0.636000;font-style:normal;font-weight: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_6487a8c294513b655d92ad0b.woff2')format("woff");}.ff74{font-family:ff74;line-height:0.684000;font-style:normal;font-weight: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_dd9195382b91deaa947ba437.woff2')format("woff");}.ff75{font-family:ff75;line-height:0.040000;font-style:normal;font-weight: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_19593dc19876a092256bc009.woff2')format("woff");}.ff76{font-family:ff76;line-height:0.636000;font-style:normal;font-weight: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_6487a8c294513b655d92ad0b.woff2')format("woff");}.ff77{font-family:ff77;line-height:0.684000;font-style:normal;font-weight: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_19593dc19876a092256bc009.woff2')format("woff");}.ff78{font-family:ff78;line-height:0.636000;font-style:normal;font-weight: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_5311a08e2b599346ce7a72d0.woff2')format("woff");}.ff79{font-family:ff79;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7a;src:url('chunks/assets/font_435d29fb549ebed0827f2f85.woff2')format("woff");}.ff7a{font-family:ff7a;line-height:0.453000;font-style:normal;font-weight: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_5311a08e2b599346ce7a72d0.woff2')format("woff");}.ff7b{font-family:ff7b;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7c;src:url('chunks/assets/font_aa277f3044104b2087b7cde4.woff2')format("woff");}.ff7c{font-family:ff7c;line-height:0.705000;font-style:normal;font-weight: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_5311a08e2b599346ce7a72d0.woff2')format("woff");}.ff7d{font-family:ff7d;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7e;src:url('chunks/assets/font_f573e182d47ddcc530514734.woff2')format("woff");}.ff7e{font-family:ff7e;line-height:0.453000;font-style:normal;font-weight: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_e6d1f17883872963b88c4a17.woff2')format("woff");}.ff7f{font-family:ff7f;line-height:0.636000;font-style:normal;font-weight: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_f105cea6ae2bb4c456116fdb.woff2')format("woff");}.ff80{font-family:ff80;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:ff81;src:url('chunks/assets/font_5311a08e2b599346ce7a72d0.woff2')format("woff");}.ff81{font-family:ff81;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff82;src:url('chunks/assets/font_e6d1f17883872963b88c4a17.woff2')format("woff");}.ff82{font-family:ff82;line-height:0.636000;font-style:normal;font-weight: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_5311a08e2b599346ce7a72d0.woff2')format("woff");}.ff83{font-family:ff83;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma{transform:matrix(0.000000,-0.248804,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248804,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248804,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.249521,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249521,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249521,0.250000,0.000000,0,0);}
.m17{transform:matrix(0.000000,-0.249683,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249683,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249683,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.249816,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249816,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249816,0.250000,0.000000,0,0);}
.md{transform:matrix(0.000000,-0.249926,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249926,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249926,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.249964,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249964,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249964,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.249964,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249964,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249964,0.250000,0.000000,0,0);}
.m1a{transform:matrix(0.000000,-0.249992,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249992,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249992,0.250000,0.000000,0,0);}
.m14{transform:matrix(0.000000,-0.250359,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250359,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250359,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.243636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243636,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249642,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249642,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250036,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250074,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250184,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250184,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250318,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250318,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251202,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251202,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251852,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.252717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252717,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.254883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254883,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.va{vertical-align:-68.782200px;}
.v8{vertical-align:-62.982600px;}
.v6{vertical-align:-60.662400px;}
.v14{vertical-align:-59.642400px;}
.v2{vertical-align:-55.132800px;}
.v3{vertical-align:-39.447600px;}
.vf{vertical-align:-23.322000px;}
.v18{vertical-align:-20.730666px;}
.v25{vertical-align:-17.789169px;}
.v21{vertical-align:-11.958984px;}
.vb{vertical-align:-9.244800px;}
.v4{vertical-align:-1.326000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.326000px;}
.v13{vertical-align:15.102360px;}
.v20{vertical-align:23.322000px;}
.v11{vertical-align:38.424360px;}
.vd{vertical-align:40.041012px;}
.v16{vertical-align:43.322760px;}
.v1a{vertical-align:45.675240px;}
.v5{vertical-align:60.330600px;}
.v1{vertical-align:61.656600px;}
.v10{vertical-align:64.161240px;}
.v9{vertical-align:68.782200px;}
.v19{vertical-align:74.677200px;}
.v15{vertical-align:80.728440px;}
.v1e{vertical-align:85.659600px;}
.v1f{vertical-align:93.678000px;}
.v24{vertical-align:99.516000px;}
.v12{vertical-align:102.585600px;}
.vc{vertical-align:109.378200px;}
.v17{vertical-align:124.051200px;}
.v1d{vertical-align:125.876400px;}
.ve{vertical-align:147.636840px;}
.v1b{vertical-align:211.536000px;}
.v1c{vertical-align:218.788440px;}
.v23{vertical-align:314.730000px;}
.v22{vertical-align:353.152800px;}
.ls86{letter-spacing:-0.031200px;}
.ls8e{letter-spacing:-0.020800px;}
.ls85{letter-spacing:0.000000px;}
.ls77{letter-spacing:0.000210px;}
.ls80{letter-spacing:0.009664px;}
.ls40{letter-spacing:0.010920px;}
.ls43{letter-spacing:0.012670px;}
.ls16{letter-spacing:0.015891px;}
.ls64{letter-spacing:0.016011px;}
.ls10{letter-spacing:0.017660px;}
.ls74{letter-spacing:0.019937px;}
.ls65{letter-spacing:0.020800px;}
.ls88{letter-spacing:0.021758px;}
.ls5d{letter-spacing:0.023640px;}
.ls15{letter-spacing:0.023760px;}
.ls34{letter-spacing:0.024000px;}
.ls35{letter-spacing:0.025129px;}
.ls5e{letter-spacing:0.026220px;}
.ls33{letter-spacing:0.026400px;}
.ls66{letter-spacing:0.026760px;}
.ls7e{letter-spacing:0.027573px;}
.ls24{letter-spacing:0.028270px;}
.ls44{letter-spacing:0.029317px;}
.ls14{letter-spacing:0.031200px;}
.ls58{letter-spacing:0.036301px;}
.ls19{letter-spacing:0.037883px;}
.ls8a{letter-spacing:0.043517px;}
.ls7a{letter-spacing:0.043793px;}
.ls57{letter-spacing:0.045362px;}
.ls23{letter-spacing:0.046800px;}
.ls56{letter-spacing:0.048816px;}
.ls50{letter-spacing:0.049206px;}
.ls21{letter-spacing:0.052344px;}
.ls78{letter-spacing:0.055693px;}
.ls60{letter-spacing:0.057414px;}
.ls0{letter-spacing:0.057600px;}
.ls2{letter-spacing:0.064800px;}
.ls1f{letter-spacing:0.067944px;}
.ls5{letter-spacing:0.072000px;}
.ls63{letter-spacing:0.073014px;}
.ls7c{letter-spacing:0.077505px;}
.ls4f{letter-spacing:0.077708px;}
.ls4e{letter-spacing:0.083778px;}
.ls8d{letter-spacing:0.093250px;}
.ls79{letter-spacing:0.095904px;}
.ls87{letter-spacing:0.097912px;}
.ls5f{letter-spacing:0.098102px;}
.ls2d{letter-spacing:0.099378px;}
.ls82{letter-spacing:0.101276px;}
.ls7f{letter-spacing:0.110000px;}
.ls84{letter-spacing:0.113175px;}
.ls7d{letter-spacing:0.114779px;}
.ls42{letter-spacing:0.114813px;}
.ls37{letter-spacing:0.118022px;}
.ls4{letter-spacing:0.124800px;}
.ls49{letter-spacing:0.125733px;}
.ls7b{letter-spacing:0.128265px;}
.ls5c{letter-spacing:0.129333px;}
.ls1{letter-spacing:0.129600px;}
.ls3f{letter-spacing:0.131215px;}
.ls1b{letter-spacing:0.132775px;}
.ls45{letter-spacing:0.137692px;}
.ls89{letter-spacing:0.139875px;}
.ls3a{letter-spacing:0.148375px;}
.ls3{letter-spacing:0.156000px;}
.lse{letter-spacing:0.166061px;}
.ls73{letter-spacing:0.175588px;}
.ls6{letter-spacing:0.187200px;}
.ls9{letter-spacing:0.332317px;}
.ls6f{letter-spacing:0.344658px;}
.ls5a{letter-spacing:0.402746px;}
.ls29{letter-spacing:0.570018px;}
.ls28{letter-spacing:0.576019px;}
.ls13{letter-spacing:0.717851px;}
.ls5b{letter-spacing:0.771816px;}
.ls83{letter-spacing:4.303675px;}
.ls70{letter-spacing:4.317160px;}
.ls38{letter-spacing:5.015301px;}
.ls3c{letter-spacing:5.626614px;}
.ls2f{letter-spacing:5.637144px;}
.ls26{letter-spacing:5.642214px;}
.ls31{letter-spacing:5.652744px;}
.ls46{letter-spacing:5.851184px;}
.ls6b{letter-spacing:5.953047px;}
.ls39{letter-spacing:5.968647px;}
.ls76{letter-spacing:6.840460px;}
.ls1e{letter-spacing:6.854500px;}
.ls20{letter-spacing:7.791963px;}
.ls6e{letter-spacing:7.812602px;}
.ls61{letter-spacing:7.814162px;}
.ls1c{letter-spacing:7.829762px;}
.ls72{letter-spacing:7.839839px;}
.ls1a{letter-spacing:7.850198px;}
.ls4b{letter-spacing:12.261088px;}
.ls22{letter-spacing:14.139316px;}
.ls81{letter-spacing:16.244253px;}
.ls75{letter-spacing:16.354447px;}
.ls2c{letter-spacing:17.020102px;}
.ls36{letter-spacing:24.925171px;}
.ls52{letter-spacing:25.960416px;}
.ls8f{letter-spacing:26.078899px;}
.ls25{letter-spacing:28.040819px;}
.ls54{letter-spacing:28.056419px;}
.ls2e{letter-spacing:33.710162px;}
.ls3e{letter-spacing:34.648533px;}
.ls1d{letter-spacing:34.664133px;}
.ls55{letter-spacing:34.671175px;}
.ls3d{letter-spacing:34.686775px;}
.ls6c{letter-spacing:42.352562px;}
.ls6d{letter-spacing:42.368162px;}
.ls4a{letter-spacing:43.267318px;}
.ls48{letter-spacing:43.272971px;}
.ls2b{letter-spacing:43.290933px;}
.ls62{letter-spacing:43.313575px;}
.ls8b{letter-spacing:43.330137px;}
.ls90{letter-spacing:43.345679px;}
.ls17{letter-spacing:44.749623px;}
.ls47{letter-spacing:44.917776px;}
.ls8c{letter-spacing:44.934952px;}
.ls2a{letter-spacing:48.807414px;}
.ls91{letter-spacing:50.059674px;}
.ls6a{letter-spacing:50.979362px;}
.ls3b{letter-spacing:50.994962px;}
.ls71{letter-spacing:51.020639px;}
.ls67{letter-spacing:57.529717px;}
.ls41{letter-spacing:59.623322px;}
.ls53{letter-spacing:69.151009px;}
.ls4d{letter-spacing:69.166609px;}
.ls51{letter-spacing:71.221619px;}
.ls4c{letter-spacing:75.948419px;}
.ls68{letter-spacing:77.960819px;}
.ls18{letter-spacing:97.485333px;}
.ls30{letter-spacing:121.077316px;}
.ls32{letter-spacing:121.092916px;}
.ls69{letter-spacing:138.729362px;}
.ls59{letter-spacing:163.188311px;}
.ls11{letter-spacing:279.195952px;}
.lsf{letter-spacing:279.201951px;}
.lsa{letter-spacing:323.531492px;}
.lsc{letter-spacing:324.195018px;}
.lsd{letter-spacing:324.857945px;}
.lsb{letter-spacing:325.520872px;}
.ls12{letter-spacing:561.044778px;}
.ls27{letter-spacing:567.009752px;}
.ls7{letter-spacing:788.940381px;}
.ls8{letter-spacing:789.603907px;}
.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;}
}
.ws0{word-spacing:-180.144000px;}
.ws3{word-spacing:-100.152000px;}
.ws5{word-spacing:-100.080000px;}
.ws1{word-spacing:-90.136800px;}
.ws4{word-spacing:-80.121600px;}
.ws2d{word-spacing:-53.376000px;}
.ws3c{word-spacing:-50.215091px;}
.ws6{word-spacing:-43.555200px;}
.ws2{word-spacing:-43.524000px;}
.ws2f{word-spacing:-43.501095px;}
.ws20{word-spacing:-43.485553px;}
.ws14{word-spacing:-43.399200px;}
.ws13{word-spacing:-43.368000px;}
.ws2e{word-spacing:-28.932794px;}
.ws1f{word-spacing:-28.911994px;}
.ws7{word-spacing:-25.773150px;}
.ws8{word-spacing:-24.328095px;}
.ws24{word-spacing:-0.233125px;}
.ws15{word-spacing:-0.206703px;}
.ws12{word-spacing:-0.182423px;}
.ws36{word-spacing:-0.171116px;}
.ws2b{word-spacing:-0.169413px;}
.ws21{word-spacing:-0.161173px;}
.ws23{word-spacing:-0.156000px;}
.ws16{word-spacing:-0.155417px;}
.ws17{word-spacing:-0.130550px;}
.ws39{word-spacing:-0.121059px;}
.ws9{word-spacing:-0.115007px;}
.ws3b{word-spacing:-0.108791px;}
.ws3d{word-spacing:0.000000px;}
.ws22{word-spacing:25.705899px;}
.ws18{word-spacing:34.091453px;}
.ws25{word-spacing:57.130662px;}
.ws35{word-spacing:97.957757px;}
.ws26{word-spacing:109.754304px;}
.ws27{word-spacing:112.714148px;}
.ws37{word-spacing:162.215766px;}
.ws38{word-spacing:164.339701px;}
.ws1b{word-spacing:171.451659px;}
.ws19{word-spacing:174.280261px;}
.ws1a{word-spacing:176.166592px;}
.ws28{word-spacing:177.396890px;}
.ws2a{word-spacing:178.135950px;}
.ws29{word-spacing:180.353129px;}
.wsa{word-spacing:252.395121px;}
.wsb{word-spacing:259.786053px;}
.wsc{word-spacing:259.792052px;}
.ws30{word-spacing:307.923953px;}
.ws31{word-spacing:307.929945px;}
.wsf{word-spacing:516.467502px;}
.ws1c{word-spacing:521.959881px;}
.ws10{word-spacing:537.558432px;}
.ws1d{word-spacing:543.264127px;}
.ws11{word-spacing:561.214603px;}
.ws1e{word-spacing:567.179715px;}
.ws33{word-spacing:932.856000px;}
.ws32{word-spacing:1007.220000px;}
.ws3a{word-spacing:1015.714487px;}
.ws2c{word-spacing:1112.992486px;}
.ws34{word-spacing:1131.420000px;}
.wsd{word-spacing:1310.258766px;}
.wse{word-spacing:2855.932383px;}
._15{margin-left:-77.174367px;}
._10{margin-left:-43.374021px;}
._0{margin-left:-18.379200px;}
._1{margin-left:-16.790400px;}
._9{margin-left:-11.310000px;}
._4{margin-left:-8.580000px;}
._16{margin-left:-6.824315px;}
._c{margin-left:-5.734373px;}
._a{margin-left:-3.872400px;}
._3{margin-left:-2.641800px;}
._2{margin-left:-1.036800px;}
._5{width:1.182600px;}
._8{width:4.231544px;}
._6{width:6.092312px;}
._b{width:8.550142px;}
._7{width:14.234630px;}
._13{width:101.974041px;}
._12{width:105.525931px;}
._d{width:118.002518px;}
._11{width:149.277056px;}
._14{width:206.431285px;}
._e{width:225.655677px;}
._f{width:334.798759px;}
.fcc{color:transparent;}
.fca{color:rgb(200,37,6);}
.fc9{color:rgb(255,0,0);}
.fc8{color:rgb(0,0,255);}
.fc7{color:rgb(3,101,192);}
.fc6{color:rgb(22,79,134);}
.fc2{color:rgb(0,74,134);}
.fcb{color:rgb(119,63,155);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(145,145,145);}
.fc1{color:rgb(96,96,96);}
.fc0{color:rgb(127,127,127);}
.fsc{font-size:69.612360px;}
.fs7{font-size:72.927240px;}
.fs10{font-size:81.355620px;}
.fs44{font-size:82.982013px;}
.fs2b{font-size:96.703355px;}
.fsa{font-size:97.312380px;}
.fsb{font-size:98.451780px;}
.fs6{font-size:103.092600px;}
.fs1d{font-size:103.999980px;}
.fs28{font-size:105.139080px;}
.fs3a{font-size:105.923580px;}
.fs16{font-size:106.517280px;}
.fs36{font-size:106.955340px;}
.fs13{font-size:108.366540px;}
.fs1f{font-size:108.791280px;}
.fs3d{font-size:110.405220px;}
.fse{font-size:112.374300px;}
.fs41{font-size:113.245200px;}
.fs2d{font-size:114.952560px;}
.fsf{font-size:115.007280px;}
.fs39{font-size:117.421680px;}
.fs17{font-size:117.617880px;}
.fs31{font-size:117.909540px;}
.fs43{font-size:118.546073px;}
.fs25{font-size:118.867800px;}
.fs30{font-size:119.955060px;}
.fs15{font-size:120.201780px;}
.fs40{font-size:121.059000px;}
.fs1b{font-size:124.047180px;}
.fs1a{font-size:129.058620px;}
.fs45{font-size:134.352236px;}
.fs8{font-size:137.235840px;}
.fs9{font-size:137.499360px;}
.fs2a{font-size:138.148047px;}
.fsd{font-size:146.798880px;}
.fs26{font-size:148.680300px;}
.fs27{font-size:148.724040px;}
.fs3c{font-size:150.000000px;}
.fs37{font-size:150.287700px;}
.fs3b{font-size:151.319460px;}
.fs12{font-size:153.118620px;}
.fs3e{font-size:155.135280px;}
.fs1e{font-size:155.416560px;}
.fs4{font-size:156.000000px;}
.fs42{font-size:156.200280px;}
.fs2c{font-size:161.172711px;}
.fs2e{font-size:161.524980px;}
.fs11{font-size:161.601900px;}
.fs20{font-size:162.184560px;}
.fs32{font-size:162.633840px;}
.fs14{font-size:162.711300px;}
.fs18{font-size:165.270180px;}
.fs38{font-size:165.974340px;}
.fs1c{font-size:166.404720px;}
.fs35{font-size:168.000000px;}
.fs29{font-size:168.173100px;}
.fs2f{font-size:169.413420px;}
.fs3f{font-size:171.115620px;}
.fs24{font-size:179.628780px;}
.fs19{font-size:182.423040px;}
.fs34{font-size:192.000000px;}
.fs33{font-size:210.000000px;}
.fs23{font-size:214.045860px;}
.fs21{font-size:227.246940px;}
.fs22{font-size:228.339480px;}
.fs1{font-size:288.000000px;}
.fs3{font-size:324.000000px;}
.fs0{font-size:336.000000px;}
.fs5{font-size:360.000000px;}
.fs2{font-size:648.000000px;}
.y0{bottom:0.000000px;}
.y129{bottom:0.642000px;}
.ye5{bottom:1.017510px;}
.y12b{bottom:2.877090px;}
.yde{bottom:4.717590px;}
.y9b{bottom:5.148090px;}
.y133{bottom:5.909589px;}
.y135{bottom:5.909889px;}
.y137{bottom:5.910039px;}
.y98{bottom:6.017400px;}
.y57{bottom:6.103200px;}
.yb8{bottom:6.417510px;}
.y13b{bottom:7.892889px;}
.y24{bottom:8.260650px;}
.y126{bottom:8.377590px;}
.y19{bottom:8.592150px;}
.yb{bottom:8.698500px;}
.y139{bottom:8.813422px;}
.y123{bottom:9.048090px;}
.ya4{bottom:9.375974px;}
.yfc{bottom:9.630090px;}
.ya6{bottom:10.248090px;}
.y80{bottom:10.548090px;}
.yad{bottom:10.593528px;}
.yec{bottom:11.734500px;}
.y29{bottom:13.653000px;}
.ybe{bottom:13.938000px;}
.y83{bottom:16.077000px;}
.y97{bottom:16.848090px;}
.y5b{bottom:18.470400px;}
.yab{bottom:18.718500px;}
.yfa{bottom:18.720000px;}
.y3a{bottom:19.426500px;}
.y10b{bottom:21.163500px;}
.yff{bottom:21.517500px;}
.ye4{bottom:25.002900px;}
.y128{bottom:26.288400px;}
.yd3{bottom:27.172950px;}
.yb7{bottom:30.402900px;}
.ye7{bottom:30.591210px;}
.ye6{bottom:36.421710px;}
.ye3{bottom:36.422100px;}
.y18{bottom:37.100100px;}
.yeb{bottom:37.957500px;}
.yb2{bottom:40.080150px;}
.y92{bottom:41.117400px;}
.y28{bottom:41.387850px;}
.yb9{bottom:41.821710px;}
.yb6{bottom:41.822100px;}
.y58{bottom:42.342000px;}
.y13{bottom:43.197000px;}
.ye{bottom:43.198200px;}
.y10{bottom:43.198350px;}
.y15{bottom:43.198500px;}
.y82{bottom:43.596000px;}
.y5a{bottom:45.226200px;}
.y39{bottom:48.547500px;}
.ybd{bottom:50.715450px;}
.y56{bottom:51.948090px;}
.yfe{bottom:56.485500px;}
.y84{bottom:63.663000px;}
.y1a{bottom:64.696350px;}
.yaa{bottom:65.218500px;}
.yf9{bottom:65.220000px;}
.y8{bottom:67.319235px;}
.yc9{bottom:69.381300px;}
.ybf{bottom:69.566100px;}
.y100{bottom:74.857500px;}
.y5c{bottom:76.696500px;}
.y34{bottom:78.922350px;}
.yb1{bottom:86.580150px;}
.y61{bottom:103.805850px;}
.y3b{bottom:110.854500px;}
.ya9{bottom:111.718500px;}
.y23{bottom:117.900150px;}
.y7{bottom:118.469235px;}
.yb0{bottom:133.080150px;}
.yed{bottom:141.559500px;}
.yd0{bottom:142.936200px;}
.y22{bottom:143.093250px;}
.y1b{bottom:147.568350px;}
.y10a{bottom:149.052000px;}
.y101{bottom:155.530500px;}
.y85{bottom:159.024000px;}
.y112{bottom:163.962000px;}
.y2f{bottom:169.338000px;}
.y32{bottom:170.817300px;}
.ycf{bottom:172.506000px;}
.y42{bottom:173.539500px;}
.y3e{bottom:174.486000px;}
.y109{bottom:177.274500px;}
.y21{bottom:177.816600px;}
.y60{bottom:178.297650px;}
.yc0{bottom:185.257950px;}
.y26{bottom:188.506950px;}
.y111{bottom:192.096000px;}
.y3c{bottom:192.261000px;}
.y2e{bottom:198.182250px;}
.y31{bottom:199.569000px;}
.y87{bottom:200.781000px;}
.yce{bottom:201.983400px;}
.y41{bottom:204.079500px;}
.y108{bottom:205.408500px;}
.y10c{bottom:211.443000px;}
.y5d{bottom:217.900800px;}
.y110{bottom:220.318500px;}
.yca{bottom:223.606200px;}
.y2d{bottom:227.304000px;}
.y30{bottom:228.783150px;}
.y1c{bottom:230.440200px;}
.y25{bottom:233.175000px;}
.y107{bottom:233.631000px;}
.y20{bottom:234.169350px;}
.y40{bottom:234.712500px;}
.y102{bottom:236.205000px;}
.y10f{bottom:247.476000px;}
.ycd{bottom:248.555850px;}
.y5f{bottom:250.078350px;}
.y11f{bottom:253.469250px;}
.y86{bottom:254.577000px;}
.y2c{bottom:256.148250px;}
.y7c{bottom:256.469250px;}
.yef{bottom:258.918000px;}
.y3f{bottom:265.251000px;}
.y3d{bottom:274.044000px;}
.y106{bottom:279.958500px;}
.yc4{bottom:286.626900px;}
.y90{bottom:289.836000px;}
.y2b{bottom:292.388400px;}
.y11e{bottom:299.969250px;}
.yc1{bottom:300.765000px;}
.y4c{bottom:302.125500px;}
.y7b{bottom:302.969250px;}
.y1d{bottom:313.146300px;}
.y103{bottom:316.878000px;}
.y37{bottom:325.855200px;}
.y36{bottom:326.964600px;}
.yc8{bottom:330.981600px;}
.y11d{bottom:346.469250px;}
.y10d{bottom:347.941500px;}
.y7a{bottom:349.469250px;}
.y88{bottom:350.322000px;}
.y9{bottom:352.469250px;}
.y5e{bottom:359.341500px;}
.y62{bottom:359.694000px;}
.yc7{bottom:360.551400px;}
.yf3{bottom:361.144500px;}
.ycb{bottom:377.369100px;}
.yf2{bottom:388.141500px;}
.y43{bottom:389.014500px;}
.yc6{bottom:390.121200px;}
.y11c{bottom:392.969250px;}
.y1e{bottom:396.183900px;}
.y104{bottom:397.552500px;}
.y17{bottom:406.500000px;}
.y89{bottom:407.461500px;}
.yf1{bottom:415.051500px;}
.yc2{bottom:416.271900px;}
.yc5{bottom:419.598450px;}
.ybc{bottom:421.773450px;}
.yee{bottom:427.347000px;}
.y11b{bottom:439.469250px;}
.yf0{bottom:442.048500px;}
.y4a{bottom:447.729000px;}
.y113{bottom:461.185500px;}
.y8a{bottom:464.794500px;}
.y105{bottom:478.137000px;}
.y49{bottom:478.269000px;}
.y1f{bottom:478.724400px;}
.yd1{bottom:481.140600px;}
.y10e{bottom:484.527000px;}
.y33{bottom:485.608050px;}
.y11a{bottom:485.969250px;}
.y8e{bottom:487.440000px;}
.y46{bottom:492.924000px;}
.y48{bottom:508.902000px;}
.y44{bottom:512.022000px;}
.y8b{bottom:522.126000px;}
.yc3{bottom:531.409350px;}
.ycc{bottom:531.778950px;}
.y119{bottom:532.469250px;}
.y2a{bottom:534.051000px;}
.y47{bottom:539.442000px;}
.y8f{bottom:575.730000px;}
.y8c{bottom:579.648000px;}
.y4b{bottom:585.108000px;}
.y118{bottom:604.169700px;}
.y45{bottom:635.502000px;}
.y8d{bottom:636.789000px;}
.y117{bottom:650.669700px;}
.y35{bottom:671.431500px;}
.y116{bottom:697.169700px;}
.y115{bottom:743.669700px;}
.yd4{bottom:821.501250px;}
.yd2{bottom:862.651950px;}
.yf4{bottom:908.473500px;}
.yf{bottom:942.310500px;}
.y27{bottom:994.500000px;}
.ybb{bottom:1017.892050px;}
.yba{bottom:1064.392050px;}
.y7e{bottom:1119.380550px;}
.yb5{bottom:1125.000000px;}
.y7d{bottom:1165.880550px;}
.y59{bottom:1212.000000px;}
.yb4{bottom:1249.500000px;}
.ya0{bottom:1256.727600px;}
.yd{bottom:1319.885400px;}
.yf7{bottom:1460.770350px;}
.yaf{bottom:1462.714350px;}
.ye9{bottom:1533.681000px;}
.y12c{bottom:1574.707500px;}
.ye8{bottom:1581.681000px;}
.yb3{bottom:1587.000000px;}
.y125{bottom:1634.170500px;}
.y12a{bottom:1638.171000px;}
.ya8{bottom:1652.020500px;}
.y127{bottom:1678.500000px;}
.y79{bottom:1693.561500px;}
.y78{bottom:1740.061500px;}
.y122{bottom:1743.000000px;}
.y124{bottom:1744.500000px;}
.y121{bottom:1753.714500px;}
.yae{bottom:1758.000000px;}
.yac{bottom:1758.345000px;}
.y55{bottom:1785.900000px;}
.y120{bottom:1800.214500px;}
.y38{bottom:1837.500000px;}
.y14{bottom:1868.142000px;}
.y51{bottom:1912.834500px;}
.y50{bottom:1959.334500px;}
.y4f{bottom:2005.834500px;}
.ydc{bottom:2035.690500px;}
.yc{bottom:2044.558500px;}
.y4e{bottom:2052.334500px;}
.ydb{bottom:2082.190500px;}
.yda{bottom:2128.690500px;}
.ya{bottom:2128.723500px;}
.yd6{bottom:2132.062500px;}
.yd9{bottom:2175.190500px;}
.yfd{bottom:2253.000000px;}
.y130{bottom:2297.688000px;}
.y12f{bottom:2344.188000px;}
.y12e{bottom:2390.688000px;}
.yd5{bottom:2408.062500px;}
.y12d{bottom:2437.188000px;}
.y77{bottom:2510.652000px;}
.y131{bottom:2547.000000px;}
.ya5{bottom:2550.000000px;}
.y76{bottom:2557.152000px;}
.y75{bottom:2603.652000px;}
.ya7{bottom:2614.500000px;}
.ya3{bottom:2617.500000px;}
.y54{bottom:2619.705000px;}
.y74{bottom:2650.152000px;}
.y53{bottom:2666.205000px;}
.y114{bottom:2696.250000px;}
.y73{bottom:2696.652000px;}
.y52{bottom:2712.705000px;}
.y72{bottom:2743.152000px;}
.y81{bottom:2800.500000px;}
.y132{bottom:2820.207000px;}
.yf8{bottom:2820.757500px;}
.y134{bottom:2840.038500px;}
.y136{bottom:2841.030000px;}
.yfb{bottom:2877.618000px;}
.yea{bottom:2962.534500px;}
.y13a{bottom:3014.559000px;}
.y138{bottom:3028.441500px;}
.yd8{bottom:3094.563000px;}
.y71{bottom:3112.468500px;}
.y70{bottom:3158.968500px;}
.y7f{bottom:3199.500000px;}
.y6f{bottom:3205.468500px;}
.y6e{bottom:3251.968500px;}
.y6d{bottom:3298.468500px;}
.yf6{bottom:3331.480500px;}
.y6c{bottom:3344.968500px;}
.yd7{bottom:3356.623500px;}
.yf5{bottom:3383.250000px;}
.y6b{bottom:3391.468500px;}
.y6a{bottom:3484.468500px;}
.y9f{bottom:3516.000000px;}
.ye1{bottom:3520.593000px;}
.y9e{bottom:3522.303000px;}
.y69{bottom:3530.968500px;}
.y9c{bottom:3566.400000px;}
.ye0{bottom:3567.093000px;}
.y9d{bottom:3568.803000px;}
.y68{bottom:3577.468500px;}
.ydd{bottom:3604.500000px;}
.ydf{bottom:3613.593000px;}
.y67{bottom:3623.968500px;}
.y9a{bottom:3633.900000px;}
.y95{bottom:3637.339500px;}
.y99{bottom:3669.600000px;}
.y66{bottom:3670.468500px;}
.y96{bottom:3671.100000px;}
.ye2{bottom:3682.500000px;}
.y94{bottom:3683.839500px;}
.y91{bottom:3729.000000px;}
.y65{bottom:3763.468500px;}
.ya2{bottom:3800.790000px;}
.y64{bottom:3809.968500px;}
.ya1{bottom:3847.290000px;}
.y93{bottom:3852.469500px;}
.y63{bottom:3856.468500px;}
.y4d{bottom:3911.356500px;}
.y12{bottom:3921.850500px;}
.y11{bottom:3939.109500px;}
.y2{bottom:4167.508500px;}
.y6{bottom:4179.628500px;}
.y1{bottom:4267.318500px;}
.y16{bottom:4275.058500px;}
.y5{bottom:4415.757000px;}
.y4{bottom:4610.757000px;}
.y3{bottom:4805.757000px;}
.h74{height:19.831845px;}
.h72{height:29.829285px;}
.h78{height:30.739365px;}
.h3d{height:32.100030px;}
.h76{height:34.705740px;}
.h6f{height:35.329290px;}
.h40{height:36.000000px;}
.h30{height:40.102845px;}
.h46{height:40.380225px;}
.h3f{height:40.500000px;}
.h44{height:40.921875px;}
.h42{height:45.000000px;}
.h66{height:45.881685px;}
.h70{height:46.111065px;}
.h75{height:52.397364px;}
.h3c{height:57.899970px;}
.hf{height:67.637527px;}
.hd{height:70.825824px;}
.h26{height:72.128619px;}
.h5d{height:72.237410px;}
.h63{height:72.408697px;}
.h1a{height:72.814547px;}
.h60{height:73.114002px;}
.h69{height:75.849680px;}
.h4b{height:76.480270px;}
.h12{height:77.202461px;}
.h6c{height:77.800779px;}
.h71{height:78.547304px;}
.h16{height:78.618258px;}
.h51{height:78.973756px;}
.h1e{height:80.804862px;}
.h54{height:81.005236px;}
.h4e{height:81.593460px;}
.h35{height:81.663572px;}
.h19{height:82.169186px;}
.h1c{height:82.316862px;}
.h33{height:83.193572px;}
.h20{height:85.221866px;}
.h79{height:88.909555px;}
.h24{height:89.100030px;}
.h57{height:90.146490px;}
.h38{height:93.000000px;}
.hc{height:94.282630px;}
.he{height:94.463672px;}
.h7{height:96.000000px;}
.h5b{height:99.000000px;}
.h77{height:100.764177px;}
.h11{height:100.852551px;}
.h34{height:102.145108px;}
.h36{height:102.175158px;}
.h61{height:102.735732px;}
.h64{height:103.441037px;}
.h73{height:103.507429px;}
.h41{height:103.611035px;}
.h48{height:105.000000px;}
.h3e{height:106.149510px;}
.h6a{height:106.579755px;}
.h6e{height:107.311423px;}
.h17{height:107.960589px;}
.h15{height:110.470049px;}
.h2b{height:110.868352px;}
.h52{height:110.969554px;}
.h18{height:111.228428px;}
.h56{height:111.731354px;}
.hb{height:111.758468px;}
.h65{height:112.500000px;}
.h6{height:112.962891px;}
.h10{height:113.084468px;}
.h1d{height:113.542550px;}
.h22{height:114.321993px;}
.h5{height:114.943359px;}
.h37{height:115.536890px;}
.h31{height:116.562420px;}
.h23{height:116.669904px;}
.h45{height:120.879533px;}
.h2f{height:122.793111px;}
.h14{height:124.396393px;}
.h21{height:125.326766px;}
.h5e{height:126.000000px;}
.h27{height:136.398650px;}
.h5a{height:139.884420px;}
.h67{height:140.641510px;}
.h59{height:144.000000px;}
.h2e{height:146.320412px;}
.h25{height:147.636840px;}
.h3b{height:149.469150px;}
.h49{height:151.157470px;}
.h9{height:153.000000px;}
.h29{height:154.986780px;}
.h2c{height:155.344588px;}
.h2d{height:156.091441px;}
.h4c{height:156.270660px;}
.h58{height:157.500000px;}
.h43{height:159.000000px;}
.h39{height:162.321900px;}
.h28{height:174.823010px;}
.h4f{height:175.271460px;}
.h62{height:179.784727px;}
.h55{height:184.278532px;}
.h53{height:184.280332px;}
.h6b{height:185.762952px;}
.h6d{height:185.768952px;}
.h1f{height:198.042984px;}
.h47{height:202.111500px;}
.h3a{height:205.644660px;}
.h2{height:212.203125px;}
.h4{height:238.728516px;}
.h1{height:247.570312px;}
.h8{height:265.253906px;}
.h4a{height:295.268710px;}
.h4d{height:300.381900px;}
.h5c{height:391.210270px;}
.h2a{height:468.000000px;}
.h3{height:477.457031px;}
.h5f{height:509.965350px;}
.ha{height:513.000000px;}
.h68{height:543.000000px;}
.h50{height:561.711300px;}
.h13{height:567.000000px;}
.h1b{height:667.500000px;}
.h32{height:673.500000px;}
.h0{height:5052.000000px;}
.w2e{width:13.877718px;}
.w2c{width:23.790375px;}
.w10{width:31.500000px;}
.w30{width:35.685555px;}
.w2f{width:38.659365px;}
.w2d{width:45.598215px;}
.w32{width:51.545805px;}
.wf{width:60.000000px;}
.w27{width:63.000000px;}
.w31{width:67.406055px;}
.w14{width:67.500000px;}
.w12{width:86.822790px;}
.w20{width:92.724840px;}
.w29{width:92.945235px;}
.wc{width:95.492205px;}
.w11{width:96.000000px;}
.w1a{width:101.973735px;}
.w1f{width:111.451590px;}
.w2a{width:118.296795px;}
.w28{width:134.278470px;}
.w18{width:139.065000px;}
.w16{width:142.161450px;}
.w1b{width:202.500000px;}
.w17{width:204.000000px;}
.w25{width:238.157850px;}
.w1c{width:336.000000px;}
.we{width:355.500000px;}
.w21{width:436.500000px;}
.w13{width:499.500000px;}
.w1d{width:592.500000px;}
.wb{width:625.572000px;}
.wa{width:652.500000px;}
.w7{width:723.000000px;}
.w9{width:786.000000px;}
.wd{width:811.500000px;}
.w22{width:829.500000px;}
.w1{width:834.394350px;}
.w4{width:835.500000px;}
.w23{width:845.707800px;}
.w26{width:859.500000px;}
.w8{width:894.000000px;}
.w1e{width:898.500000px;}
.w2{width:924.000000px;}
.w5{width:1009.506300px;}
.w24{width:1021.442850px;}
.w6{width:1040.163600px;}
.w3{width:1054.500000px;}
.w2b{width:1063.589550px;}
.w15{width:1068.996300px;}
.w19{width:1080.000000px;}
.w0{width:3576.000000px;}
.xb2{left:-2.635248px;}
.x4d{left:-1.246200px;}
.x0{left:0.000000px;}
.x46{left:1.150650px;}
.x61{left:2.371205px;}
.x5f{left:9.750000px;}
.x79{left:17.454000px;}
.x7{left:22.500000px;}
.x2b{left:28.660500px;}
.x19{left:29.867250px;}
.x68{left:31.363200px;}
.x2a{left:37.722000px;}
.x31{left:41.029650px;}
.x15{left:42.654000px;}
.x4a{left:44.005800px;}
.x88{left:46.389000px;}
.x3c{left:49.466850px;}
.x3b{left:52.546200px;}
.x27{left:55.843500px;}
.x1f{left:57.324000px;}
.x30{left:59.007000px;}
.x98{left:62.908500px;}
.x13{left:64.740300px;}
.x49{left:68.856900px;}
.x71{left:70.489650px;}
.x96{left:72.495000px;}
.x97{left:73.560000px;}
.x95{left:74.979000px;}
.x1c{left:80.070000px;}
.x1e{left:82.195500px;}
.x12{left:84.252600px;}
.x14{left:86.162400px;}
.x17{left:87.822900px;}
.x2e{left:91.271700px;}
.x94{left:93.618000px;}
.xd{left:96.000000px;}
.x70{left:105.553350px;}
.xa{left:107.250000px;}
.x2{left:109.500000px;}
.x33{left:111.705225px;}
.x43{left:113.171040px;}
.x6{left:116.254305px;}
.x1{left:118.097055px;}
.x42{left:119.496135px;}
.x40{left:125.027355px;}
.x44{left:127.528560px;}
.x26{left:129.444000px;}
.x86{left:132.130500px;}
.x69{left:134.217900px;}
.x41{left:137.658630px;}
.xa7{left:139.403685px;}
.x28{left:153.300000px;}
.x6c{left:157.259100px;}
.x32{left:158.640000px;}
.x3f{left:163.281300px;}
.x36{left:174.174900px;}
.x81{left:181.542900px;}
.x6a{left:191.388000px;}
.xb1{left:195.420450px;}
.xad{left:198.394200px;}
.x10{left:203.734200px;}
.x6d{left:207.955200px;}
.x4e{left:215.539200px;}
.x4f{left:237.741900px;}
.x87{left:248.691000px;}
.x82{left:253.287300px;}
.x93{left:254.793000px;}
.x1d{left:256.026000px;}
.xf{left:262.500000px;}
.x45{left:276.507750px;}
.xb4{left:283.643100px;}
.x3e{left:289.176000px;}
.x50{left:303.051300px;}
.x35{left:306.000000px;}
.x3a{left:312.981000px;}
.x39{left:317.214000px;}
.x72{left:333.099000px;}
.x89{left:348.637500px;}
.x20{left:354.777000px;}
.x78{left:366.040500px;}
.x11{left:390.471000px;}
.xab{left:396.647400px;}
.x4b{left:416.962500px;}
.x2f{left:423.001500px;}
.x99{left:428.394000px;}
.x48{left:432.829500px;}
.xaf{left:437.289300px;}
.x84{left:441.016050px;}
.x73{left:442.350000px;}
.x21{left:449.920500px;}
.x16{left:453.823650px;}
.x3d{left:458.180400px;}
.x1a{left:459.303750px;}
.x37{left:463.118100px;}
.x83{left:492.131850px;}
.xac{left:516.590550px;}
.x38{left:527.440800px;}
.x77{left:560.829000px;}
.x9a{left:574.303500px;}
.x8a{left:575.818500px;}
.x18{left:585.178800px;}
.x74{left:603.274500px;}
.xa8{left:607.500000px;}
.x22{left:625.878000px;}
.x9d{left:629.508000px;}
.x8d{left:690.400500px;}
.xaa{left:707.904750px;}
.x25{left:723.981000px;}
.x9b{left:749.058000px;}
.x8b{left:752.898000px;}
.x75{left:788.190000px;}
.x23{left:805.441500px;}
.xae{left:813.970200px;}
.xb3{left:816.943950px;}
.x2c{left:824.026500px;}
.x8c{left:830.979000px;}
.x29{left:834.289500px;}
.x9c{left:841.539000px;}
.x24{left:851.673000px;}
.x76{left:884.061000px;}
.xb5{left:916.070550px;}
.xa9{left:1020.153450px;}
.xb0{left:1060.795350px;}
.x4{left:1248.000000px;}
.x5e{left:1255.001700px;}
.x9{left:1260.077100px;}
.x59{left:1265.354250px;}
.x64{left:1268.658600px;}
.x51{left:1270.854600px;}
.x6e{left:1272.183450px;}
.x57{left:1274.549400px;}
.x34{left:1275.615750px;}
.x52{left:1277.872800px;}
.x67{left:1314.000000px;}
.x6f{left:1332.000000px;}
.x47{left:1360.500000px;}
.x2d{left:1374.000000px;}
.x53{left:1402.500000px;}
.x60{left:1425.338550px;}
.x65{left:1444.526250px;}
.x58{left:1477.500000px;}
.x7d{left:1486.476600px;}
.x7c{left:1501.476000px;}
.x7b{left:1505.976000px;}
.x5c{left:1542.000000px;}
.x54{left:1558.500000px;}
.x4c{left:1576.500000px;}
.x56{left:1581.000000px;}
.x62{left:1650.000000px;}
.x6b{left:1674.000000px;}
.x5{left:1750.996500px;}
.x5b{left:1759.500000px;}
.x66{left:1815.000000px;}
.x55{left:1930.500000px;}
.x63{left:1957.935000px;}
.x7a{left:1994.287500px;}
.x5d{left:2167.500000px;}
.xa6{left:2399.205000px;}
.xb{left:2403.750000px;}
.xc{left:2406.000000px;}
.x5a{left:2412.646500px;}
.x9f{left:2417.173500px;}
.x7e{left:2423.446500px;}
.xa0{left:2425.528500px;}
.x1b{left:2479.500000px;}
.x85{left:2493.000000px;}
.x92{left:2497.500000px;}
.x80{left:2499.000000px;}
.x7f{left:2539.500000px;}
.xa2{left:2581.500000px;}
.xe{left:2599.000500px;}
.x90{left:2605.110000px;}
.x8f{left:2613.264000px;}
.x8e{left:2614.696500px;}
.xa1{left:2630.988000px;}
.xa4{left:2656.500000px;}
.x8{left:2671.500000px;}
.x3{left:2824.500000px;}
.x9e{left:2959.813500px;}
.x91{left:2968.842000px;}
.xa5{left:3006.000000px;}
.xa3{left:3064.500000px;}
@media print{
.va{vertical-align:-61.139733pt;}
.v8{vertical-align:-55.984533pt;}
.v6{vertical-align:-53.922133pt;}
.v14{vertical-align:-53.015467pt;}
.v2{vertical-align:-49.006933pt;}
.v3{vertical-align:-35.064533pt;}
.vf{vertical-align:-20.730667pt;}
.v18{vertical-align:-18.427258pt;}
.v25{vertical-align:-15.812595pt;}
.v21{vertical-align:-10.630208pt;}
.vb{vertical-align:-8.217600pt;}
.v4{vertical-align:-1.178667pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.178667pt;}
.v13{vertical-align:13.424320pt;}
.v20{vertical-align:20.730667pt;}
.v11{vertical-align:34.154987pt;}
.vd{vertical-align:35.592011pt;}
.v16{vertical-align:38.509120pt;}
.v1a{vertical-align:40.600213pt;}
.v5{vertical-align:53.627200pt;}
.v1{vertical-align:54.805867pt;}
.v10{vertical-align:57.032213pt;}
.v9{vertical-align:61.139733pt;}
.v19{vertical-align:66.379733pt;}
.v15{vertical-align:71.758613pt;}
.v1e{vertical-align:76.141867pt;}
.v1f{vertical-align:83.269333pt;}
.v24{vertical-align:88.458667pt;}
.v12{vertical-align:91.187200pt;}
.vc{vertical-align:97.225067pt;}
.v17{vertical-align:110.267733pt;}
.v1d{vertical-align:111.890133pt;}
.ve{vertical-align:131.232747pt;}
.v1b{vertical-align:188.032000pt;}
.v1c{vertical-align:194.478613pt;}
.v23{vertical-align:279.760000pt;}
.v22{vertical-align:313.913600pt;}
.ls86{letter-spacing:-0.027733pt;}
.ls8e{letter-spacing:-0.018489pt;}
.ls85{letter-spacing:0.000000pt;}
.ls77{letter-spacing:0.000187pt;}
.ls80{letter-spacing:0.008591pt;}
.ls40{letter-spacing:0.009707pt;}
.ls43{letter-spacing:0.011263pt;}
.ls16{letter-spacing:0.014125pt;}
.ls64{letter-spacing:0.014232pt;}
.ls10{letter-spacing:0.015698pt;}
.ls74{letter-spacing:0.017722pt;}
.ls65{letter-spacing:0.018489pt;}
.ls88{letter-spacing:0.019341pt;}
.ls5d{letter-spacing:0.021013pt;}
.ls15{letter-spacing:0.021120pt;}
.ls34{letter-spacing:0.021333pt;}
.ls35{letter-spacing:0.022337pt;}
.ls5e{letter-spacing:0.023307pt;}
.ls33{letter-spacing:0.023467pt;}
.ls66{letter-spacing:0.023787pt;}
.ls7e{letter-spacing:0.024509pt;}
.ls24{letter-spacing:0.025129pt;}
.ls44{letter-spacing:0.026060pt;}
.ls14{letter-spacing:0.027733pt;}
.ls58{letter-spacing:0.032268pt;}
.ls19{letter-spacing:0.033674pt;}
.ls8a{letter-spacing:0.038681pt;}
.ls7a{letter-spacing:0.038928pt;}
.ls57{letter-spacing:0.040321pt;}
.ls23{letter-spacing:0.041600pt;}
.ls56{letter-spacing:0.043392pt;}
.ls50{letter-spacing:0.043738pt;}
.ls21{letter-spacing:0.046528pt;}
.ls78{letter-spacing:0.049505pt;}
.ls60{letter-spacing:0.051035pt;}
.ls0{letter-spacing:0.051200pt;}
.ls2{letter-spacing:0.057600pt;}
.ls1f{letter-spacing:0.060395pt;}
.ls5{letter-spacing:0.064000pt;}
.ls63{letter-spacing:0.064902pt;}
.ls7c{letter-spacing:0.068893pt;}
.ls4f{letter-spacing:0.069074pt;}
.ls4e{letter-spacing:0.074470pt;}
.ls8d{letter-spacing:0.082889pt;}
.ls79{letter-spacing:0.085248pt;}
.ls87{letter-spacing:0.087033pt;}
.ls5f{letter-spacing:0.087202pt;}
.ls2d{letter-spacing:0.088336pt;}
.ls82{letter-spacing:0.090023pt;}
.ls7f{letter-spacing:0.097778pt;}
.ls84{letter-spacing:0.100600pt;}
.ls7d{letter-spacing:0.102026pt;}
.ls42{letter-spacing:0.102056pt;}
.ls37{letter-spacing:0.104908pt;}
.ls4{letter-spacing:0.110933pt;}
.ls49{letter-spacing:0.111763pt;}
.ls7b{letter-spacing:0.114013pt;}
.ls5c{letter-spacing:0.114962pt;}
.ls1{letter-spacing:0.115200pt;}
.ls3f{letter-spacing:0.116635pt;}
.ls1b{letter-spacing:0.118022pt;}
.ls45{letter-spacing:0.122393pt;}
.ls89{letter-spacing:0.124333pt;}
.ls3a{letter-spacing:0.131889pt;}
.ls3{letter-spacing:0.138667pt;}
.lse{letter-spacing:0.147610pt;}
.ls73{letter-spacing:0.156078pt;}
.ls6{letter-spacing:0.166400pt;}
.ls9{letter-spacing:0.295393pt;}
.ls6f{letter-spacing:0.306362pt;}
.ls5a{letter-spacing:0.357996pt;}
.ls29{letter-spacing:0.506682pt;}
.ls28{letter-spacing:0.512017pt;}
.ls13{letter-spacing:0.638090pt;}
.ls5b{letter-spacing:0.686059pt;}
.ls83{letter-spacing:3.825489pt;}
.ls70{letter-spacing:3.837475pt;}
.ls38{letter-spacing:4.458046pt;}
.ls3c{letter-spacing:5.001435pt;}
.ls2f{letter-spacing:5.010795pt;}
.ls26{letter-spacing:5.015302pt;}
.ls31{letter-spacing:5.024662pt;}
.ls46{letter-spacing:5.201053pt;}
.ls6b{letter-spacing:5.291598pt;}
.ls39{letter-spacing:5.305464pt;}
.ls76{letter-spacing:6.080409pt;}
.ls1e{letter-spacing:6.092889pt;}
.ls20{letter-spacing:6.926189pt;}
.ls6e{letter-spacing:6.944535pt;}
.ls61{letter-spacing:6.945921pt;}
.ls1c{letter-spacing:6.959788pt;}
.ls72{letter-spacing:6.968746pt;}
.ls1a{letter-spacing:6.977953pt;}
.ls4b{letter-spacing:10.898745pt;}
.ls22{letter-spacing:12.568281pt;}
.ls81{letter-spacing:14.439336pt;}
.ls75{letter-spacing:14.537286pt;}
.ls2c{letter-spacing:15.128980pt;}
.ls36{letter-spacing:22.155708pt;}
.ls52{letter-spacing:23.075925pt;}
.ls8f{letter-spacing:23.181243pt;}
.ls25{letter-spacing:24.925172pt;}
.ls54{letter-spacing:24.939039pt;}
.ls2e{letter-spacing:29.964588pt;}
.ls3e{letter-spacing:30.798696pt;}
.ls1d{letter-spacing:30.812563pt;}
.ls55{letter-spacing:30.818822pt;}
.ls3d{letter-spacing:30.832689pt;}
.ls6c{letter-spacing:37.646721pt;}
.ls6d{letter-spacing:37.660588pt;}
.ls4a{letter-spacing:38.459838pt;}
.ls48{letter-spacing:38.464863pt;}
.ls2b{letter-spacing:38.480829pt;}
.ls62{letter-spacing:38.500955pt;}
.ls8b{letter-spacing:38.515677pt;}
.ls90{letter-spacing:38.529492pt;}
.ls17{letter-spacing:39.777443pt;}
.ls47{letter-spacing:39.926912pt;}
.ls8c{letter-spacing:39.942179pt;}
.ls2a{letter-spacing:43.384368pt;}
.ls91{letter-spacing:44.497488pt;}
.ls6a{letter-spacing:45.314988pt;}
.ls3b{letter-spacing:45.328855pt;}
.ls71{letter-spacing:45.351679pt;}
.ls67{letter-spacing:51.137527pt;}
.ls41{letter-spacing:52.998508pt;}
.ls53{letter-spacing:61.467564pt;}
.ls4d{letter-spacing:61.481430pt;}
.ls51{letter-spacing:63.308106pt;}
.ls4c{letter-spacing:67.509706pt;}
.ls68{letter-spacing:69.298506pt;}
.ls18{letter-spacing:86.653629pt;}
.ls30{letter-spacing:107.624281pt;}
.ls32{letter-spacing:107.638147pt;}
.ls69{letter-spacing:123.314988pt;}
.ls59{letter-spacing:145.056276pt;}
.ls11{letter-spacing:248.174180pt;}
.lsf{letter-spacing:248.179512pt;}
.lsa{letter-spacing:287.583549pt;}
.lsc{letter-spacing:288.173349pt;}
.lsd{letter-spacing:288.762618pt;}
.lsb{letter-spacing:289.351886pt;}
.ls12{letter-spacing:498.706469pt;}
.ls27{letter-spacing:504.008669pt;}
.ls7{letter-spacing:701.280339pt;}
.ls8{letter-spacing:701.870140pt;}
.ws0{word-spacing:-160.128000pt;}
.ws3{word-spacing:-89.024000pt;}
.ws5{word-spacing:-88.960000pt;}
.ws1{word-spacing:-80.121600pt;}
.ws4{word-spacing:-71.219200pt;}
.ws2d{word-spacing:-47.445333pt;}
.ws3c{word-spacing:-44.635636pt;}
.ws6{word-spacing:-38.715733pt;}
.ws2{word-spacing:-38.688000pt;}
.ws2f{word-spacing:-38.667640pt;}
.ws20{word-spacing:-38.653825pt;}
.ws14{word-spacing:-38.577067pt;}
.ws13{word-spacing:-38.549333pt;}
.ws2e{word-spacing:-25.718039pt;}
.ws1f{word-spacing:-25.699551pt;}
.ws7{word-spacing:-22.909467pt;}
.ws8{word-spacing:-21.624973pt;}
.ws24{word-spacing:-0.207222pt;}
.ws15{word-spacing:-0.183736pt;}
.ws12{word-spacing:-0.162154pt;}
.ws36{word-spacing:-0.152103pt;}
.ws2b{word-spacing:-0.150590pt;}
.ws21{word-spacing:-0.143265pt;}
.ws23{word-spacing:-0.138667pt;}
.ws16{word-spacing:-0.138148pt;}
.ws17{word-spacing:-0.116044pt;}
.ws39{word-spacing:-0.107608pt;}
.ws9{word-spacing:-0.102229pt;}
.ws3b{word-spacing:-0.096703pt;}
.ws3d{word-spacing:0.000000pt;}
.ws22{word-spacing:22.849688pt;}
.ws18{word-spacing:30.303514pt;}
.ws25{word-spacing:50.782810pt;}
.ws35{word-spacing:87.073562pt;}
.ws26{word-spacing:97.559381pt;}
.ws27{word-spacing:100.190354pt;}
.ws37{word-spacing:144.191792pt;}
.ws38{word-spacing:146.079734pt;}
.ws1b{word-spacing:152.401475pt;}
.ws19{word-spacing:154.915787pt;}
.ws1a{word-spacing:156.592527pt;}
.ws28{word-spacing:157.686125pt;}
.ws2a{word-spacing:158.343067pt;}
.ws29{word-spacing:160.313893pt;}
.wsa{word-spacing:224.351219pt;}
.wsb{word-spacing:230.920936pt;}
.wsc{word-spacing:230.926268pt;}
.ws30{word-spacing:273.710180pt;}
.ws31{word-spacing:273.715507pt;}
.wsf{word-spacing:459.082224pt;}
.ws1c{word-spacing:463.964339pt;}
.ws10{word-spacing:477.829717pt;}
.ws1d{word-spacing:482.901446pt;}
.ws11{word-spacing:498.857425pt;}
.ws1e{word-spacing:504.159746pt;}
.ws33{word-spacing:829.205333pt;}
.ws32{word-spacing:895.306667pt;}
.ws3a{word-spacing:902.857321pt;}
.ws2c{word-spacing:989.326654pt;}
.ws34{word-spacing:1005.706667pt;}
.wsd{word-spacing:1164.674459pt;}
.wse{word-spacing:2538.606563pt;}
._15{margin-left:-68.599437pt;}
._10{margin-left:-38.554685pt;}
._0{margin-left:-16.337067pt;}
._1{margin-left:-14.924800pt;}
._9{margin-left:-10.053333pt;}
._4{margin-left:-7.626667pt;}
._16{margin-left:-6.066058pt;}
._c{margin-left:-5.097221pt;}
._a{margin-left:-3.442133pt;}
._3{margin-left:-2.348267pt;}
._2{margin-left:-0.921600pt;}
._5{width:1.051200pt;}
._8{width:3.761372pt;}
._6{width:5.415388pt;}
._b{width:7.600126pt;}
._7{width:12.653004pt;}
._13{width:90.643592pt;}
._12{width:93.800828pt;}
._d{width:104.891127pt;}
._11{width:132.690716pt;}
._14{width:183.494476pt;}
._e{width:200.582824pt;}
._f{width:297.598897pt;}
.fsc{font-size:61.877653pt;}
.fs7{font-size:64.824213pt;}
.fs10{font-size:72.316107pt;}
.fs44{font-size:73.761790pt;}
.fs2b{font-size:85.958538pt;}
.fsa{font-size:86.499893pt;}
.fsb{font-size:87.512693pt;}
.fs6{font-size:91.637867pt;}
.fs1d{font-size:92.444427pt;}
.fs28{font-size:93.456960pt;}
.fs3a{font-size:94.154293pt;}
.fs16{font-size:94.682027pt;}
.fs36{font-size:95.071413pt;}
.fs13{font-size:96.325813pt;}
.fs1f{font-size:96.703360pt;}
.fs3d{font-size:98.137973pt;}
.fse{font-size:99.888267pt;}
.fs41{font-size:100.662400pt;}
.fs2d{font-size:102.180053pt;}
.fsf{font-size:102.228693pt;}
.fs39{font-size:104.374827pt;}
.fs17{font-size:104.549227pt;}
.fs31{font-size:104.808480pt;}
.fs43{font-size:105.374287pt;}
.fs25{font-size:105.660267pt;}
.fs30{font-size:106.626720pt;}
.fs15{font-size:106.846027pt;}
.fs40{font-size:107.608000pt;}
.fs1b{font-size:110.264160pt;}
.fs1a{font-size:114.718773pt;}
.fs45{font-size:119.424210pt;}
.fs8{font-size:121.987413pt;}
.fs9{font-size:122.221653pt;}
.fs2a{font-size:122.798264pt;}
.fsd{font-size:130.487893pt;}
.fs26{font-size:132.160267pt;}
.fs27{font-size:132.199147pt;}
.fs3c{font-size:133.333333pt;}
.fs37{font-size:133.589067pt;}
.fs3b{font-size:134.506187pt;}
.fs12{font-size:136.105440pt;}
.fs3e{font-size:137.898027pt;}
.fs1e{font-size:138.148053pt;}
.fs4{font-size:138.666667pt;}
.fs42{font-size:138.844693pt;}
.fs2c{font-size:143.264632pt;}
.fs2e{font-size:143.577760pt;}
.fs11{font-size:143.646133pt;}
.fs20{font-size:144.164053pt;}
.fs32{font-size:144.563413pt;}
.fs14{font-size:144.632267pt;}
.fs18{font-size:146.906827pt;}
.fs38{font-size:147.532747pt;}
.fs1c{font-size:147.915307pt;}
.fs35{font-size:149.333333pt;}
.fs29{font-size:149.487200pt;}
.fs2f{font-size:150.589707pt;}
.fs3f{font-size:152.102773pt;}
.fs24{font-size:159.670027pt;}
.fs19{font-size:162.153813pt;}
.fs34{font-size:170.666667pt;}
.fs33{font-size:186.666667pt;}
.fs23{font-size:190.262987pt;}
.fs21{font-size:201.997280pt;}
.fs22{font-size:202.968427pt;}
.fs1{font-size:256.000000pt;}
.fs3{font-size:288.000000pt;}
.fs0{font-size:298.666667pt;}
.fs5{font-size:320.000000pt;}
.fs2{font-size:576.000000pt;}
.y0{bottom:0.000000pt;}
.y129{bottom:0.570667pt;}
.ye5{bottom:0.904453pt;}
.y12b{bottom:2.557413pt;}
.yde{bottom:4.193413pt;}
.y9b{bottom:4.576080pt;}
.y133{bottom:5.252968pt;}
.y135{bottom:5.253235pt;}
.y137{bottom:5.253368pt;}
.y98{bottom:5.348800pt;}
.y57{bottom:5.425067pt;}
.yb8{bottom:5.704453pt;}
.y13b{bottom:7.015902pt;}
.y24{bottom:7.342800pt;}
.y126{bottom:7.446747pt;}
.y19{bottom:7.637467pt;}
.yb{bottom:7.732000pt;}
.y139{bottom:7.834153pt;}
.y123{bottom:8.042747pt;}
.ya4{bottom:8.334199pt;}
.yfc{bottom:8.560080pt;}
.ya6{bottom:9.109413pt;}
.y80{bottom:9.376080pt;}
.yad{bottom:9.416469pt;}
.yec{bottom:10.430667pt;}
.y29{bottom:12.136000pt;}
.ybe{bottom:12.389333pt;}
.y83{bottom:14.290667pt;}
.y97{bottom:14.976080pt;}
.y5b{bottom:16.418133pt;}
.yab{bottom:16.638667pt;}
.yfa{bottom:16.640000pt;}
.y3a{bottom:17.268000pt;}
.y10b{bottom:18.812000pt;}
.yff{bottom:19.126667pt;}
.ye4{bottom:22.224800pt;}
.y128{bottom:23.367467pt;}
.yd3{bottom:24.153733pt;}
.yb7{bottom:27.024800pt;}
.ye7{bottom:27.192187pt;}
.ye6{bottom:32.374853pt;}
.ye3{bottom:32.375200pt;}
.y18{bottom:32.977867pt;}
.yeb{bottom:33.740000pt;}
.yb2{bottom:35.626800pt;}
.y92{bottom:36.548800pt;}
.y28{bottom:36.789200pt;}
.yb9{bottom:37.174853pt;}
.yb6{bottom:37.175200pt;}
.y58{bottom:37.637333pt;}
.y13{bottom:38.397333pt;}
.ye{bottom:38.398400pt;}
.y10{bottom:38.398533pt;}
.y15{bottom:38.398667pt;}
.y82{bottom:38.752000pt;}
.y5a{bottom:40.201067pt;}
.y39{bottom:43.153333pt;}
.ybd{bottom:45.080400pt;}
.y56{bottom:46.176080pt;}
.yfe{bottom:50.209333pt;}
.y84{bottom:56.589333pt;}
.y1a{bottom:57.507867pt;}
.yaa{bottom:57.972000pt;}
.yf9{bottom:57.973333pt;}
.y8{bottom:59.839320pt;}
.yc9{bottom:61.672267pt;}
.ybf{bottom:61.836533pt;}
.y100{bottom:66.540000pt;}
.y5c{bottom:68.174667pt;}
.y34{bottom:70.153200pt;}
.yb1{bottom:76.960133pt;}
.y61{bottom:92.271867pt;}
.y3b{bottom:98.537333pt;}
.ya9{bottom:99.305333pt;}
.y23{bottom:104.800133pt;}
.y7{bottom:105.305987pt;}
.yb0{bottom:118.293467pt;}
.yed{bottom:125.830667pt;}
.yd0{bottom:127.054400pt;}
.y22{bottom:127.194000pt;}
.y1b{bottom:131.171867pt;}
.y10a{bottom:132.490667pt;}
.y101{bottom:138.249333pt;}
.y85{bottom:141.354667pt;}
.y112{bottom:145.744000pt;}
.y2f{bottom:150.522667pt;}
.y32{bottom:151.837600pt;}
.ycf{bottom:153.338667pt;}
.y42{bottom:154.257333pt;}
.y3e{bottom:155.098667pt;}
.y109{bottom:157.577333pt;}
.y21{bottom:158.059200pt;}
.y60{bottom:158.486800pt;}
.yc0{bottom:164.673733pt;}
.y26{bottom:167.561733pt;}
.y111{bottom:170.752000pt;}
.y3c{bottom:170.898667pt;}
.y2e{bottom:176.162000pt;}
.y31{bottom:177.394667pt;}
.y87{bottom:178.472000pt;}
.yce{bottom:179.540800pt;}
.y41{bottom:181.404000pt;}
.y108{bottom:182.585333pt;}
.y10c{bottom:187.949333pt;}
.y5d{bottom:193.689600pt;}
.y110{bottom:195.838667pt;}
.yca{bottom:198.761067pt;}
.y2d{bottom:202.048000pt;}
.y30{bottom:203.362800pt;}
.y1c{bottom:204.835733pt;}
.y25{bottom:207.266667pt;}
.y107{bottom:207.672000pt;}
.y20{bottom:208.150533pt;}
.y40{bottom:208.633333pt;}
.y102{bottom:209.960000pt;}
.y10f{bottom:219.978667pt;}
.ycd{bottom:220.938533pt;}
.y5f{bottom:222.291867pt;}
.y11f{bottom:225.306000pt;}
.y86{bottom:226.290667pt;}
.y2c{bottom:227.687333pt;}
.y7c{bottom:227.972667pt;}
.yef{bottom:230.149333pt;}
.y3f{bottom:235.778667pt;}
.y3d{bottom:243.594667pt;}
.y106{bottom:248.852000pt;}
.yc4{bottom:254.779467pt;}
.y90{bottom:257.632000pt;}
.y2b{bottom:259.900800pt;}
.y11e{bottom:266.639333pt;}
.yc1{bottom:267.346667pt;}
.y4c{bottom:268.556000pt;}
.y7b{bottom:269.306000pt;}
.y1d{bottom:278.352267pt;}
.y103{bottom:281.669333pt;}
.y37{bottom:289.649067pt;}
.y36{bottom:290.635200pt;}
.yc8{bottom:294.205867pt;}
.y11d{bottom:307.972667pt;}
.y10d{bottom:309.281333pt;}
.y7a{bottom:310.639333pt;}
.y88{bottom:311.397333pt;}
.y9{bottom:313.306000pt;}
.y5e{bottom:319.414667pt;}
.y62{bottom:319.728000pt;}
.yc7{bottom:320.490133pt;}
.yf3{bottom:321.017333pt;}
.ycb{bottom:335.439200pt;}
.yf2{bottom:345.014667pt;}
.y43{bottom:345.790667pt;}
.yc6{bottom:346.774400pt;}
.y11c{bottom:349.306000pt;}
.y1e{bottom:352.163467pt;}
.y104{bottom:353.380000pt;}
.y17{bottom:361.333333pt;}
.y89{bottom:362.188000pt;}
.yf1{bottom:368.934667pt;}
.yc2{bottom:370.019467pt;}
.yc5{bottom:372.976400pt;}
.ybc{bottom:374.909733pt;}
.yee{bottom:379.864000pt;}
.y11b{bottom:390.639333pt;}
.yf0{bottom:392.932000pt;}
.y4a{bottom:397.981333pt;}
.y113{bottom:409.942667pt;}
.y8a{bottom:413.150667pt;}
.y105{bottom:425.010667pt;}
.y49{bottom:425.128000pt;}
.y1f{bottom:425.532800pt;}
.yd1{bottom:427.680533pt;}
.y10e{bottom:430.690667pt;}
.y33{bottom:431.651600pt;}
.y11a{bottom:431.972667pt;}
.y8e{bottom:433.280000pt;}
.y46{bottom:438.154667pt;}
.y48{bottom:452.357333pt;}
.y44{bottom:455.130667pt;}
.y8b{bottom:464.112000pt;}
.yc3{bottom:472.363867pt;}
.ycc{bottom:472.692400pt;}
.y119{bottom:473.306000pt;}
.y2a{bottom:474.712000pt;}
.y47{bottom:479.504000pt;}
.y8f{bottom:511.760000pt;}
.y8c{bottom:515.242667pt;}
.y4b{bottom:520.096000pt;}
.y118{bottom:537.039733pt;}
.y45{bottom:564.890667pt;}
.y8d{bottom:566.034667pt;}
.y117{bottom:578.373067pt;}
.y35{bottom:596.828000pt;}
.y116{bottom:619.706400pt;}
.y115{bottom:661.039733pt;}
.yd4{bottom:730.223333pt;}
.yd2{bottom:766.801733pt;}
.yf4{bottom:807.532000pt;}
.yf{bottom:837.609333pt;}
.y27{bottom:884.000000pt;}
.ybb{bottom:904.792933pt;}
.yba{bottom:946.126267pt;}
.y7e{bottom:995.004933pt;}
.yb5{bottom:1000.000000pt;}
.y7d{bottom:1036.338267pt;}
.y59{bottom:1077.333333pt;}
.yb4{bottom:1110.666667pt;}
.ya0{bottom:1117.091200pt;}
.yd{bottom:1173.231467pt;}
.yf7{bottom:1298.462533pt;}
.yaf{bottom:1300.190533pt;}
.ye9{bottom:1363.272000pt;}
.y12c{bottom:1399.740000pt;}
.ye8{bottom:1405.938667pt;}
.yb3{bottom:1410.666667pt;}
.y125{bottom:1452.596000pt;}
.y12a{bottom:1456.152000pt;}
.ya8{bottom:1468.462667pt;}
.y127{bottom:1492.000000pt;}
.y79{bottom:1505.388000pt;}
.y78{bottom:1546.721333pt;}
.y122{bottom:1549.333333pt;}
.y124{bottom:1550.666667pt;}
.y121{bottom:1558.857333pt;}
.yae{bottom:1562.666667pt;}
.yac{bottom:1562.973333pt;}
.y55{bottom:1587.466667pt;}
.y120{bottom:1600.190667pt;}
.y38{bottom:1633.333333pt;}
.y14{bottom:1660.570667pt;}
.y51{bottom:1700.297333pt;}
.y50{bottom:1741.630667pt;}
.y4f{bottom:1782.964000pt;}
.ydc{bottom:1809.502667pt;}
.yc{bottom:1817.385333pt;}
.y4e{bottom:1824.297333pt;}
.ydb{bottom:1850.836000pt;}
.yda{bottom:1892.169333pt;}
.ya{bottom:1892.198667pt;}
.yd6{bottom:1895.166667pt;}
.yd9{bottom:1933.502667pt;}
.yfd{bottom:2002.666667pt;}
.y130{bottom:2042.389333pt;}
.y12f{bottom:2083.722667pt;}
.y12e{bottom:2125.056000pt;}
.yd5{bottom:2140.500000pt;}
.y12d{bottom:2166.389333pt;}
.y77{bottom:2231.690667pt;}
.y131{bottom:2264.000000pt;}
.ya5{bottom:2266.666667pt;}
.y76{bottom:2273.024000pt;}
.y75{bottom:2314.357333pt;}
.ya7{bottom:2324.000000pt;}
.ya3{bottom:2326.666667pt;}
.y54{bottom:2328.626667pt;}
.y74{bottom:2355.690667pt;}
.y53{bottom:2369.960000pt;}
.y114{bottom:2396.666667pt;}
.y73{bottom:2397.024000pt;}
.y52{bottom:2411.293333pt;}
.y72{bottom:2438.357333pt;}
.y81{bottom:2489.333333pt;}
.y132{bottom:2506.850667pt;}
.yf8{bottom:2507.340000pt;}
.y134{bottom:2524.478667pt;}
.y136{bottom:2525.360000pt;}
.yfb{bottom:2557.882667pt;}
.yea{bottom:2633.364000pt;}
.y13a{bottom:2679.608000pt;}
.y138{bottom:2691.948000pt;}
.yd8{bottom:2750.722667pt;}
.y71{bottom:2766.638667pt;}
.y70{bottom:2807.972000pt;}
.y7f{bottom:2844.000000pt;}
.y6f{bottom:2849.305333pt;}
.y6e{bottom:2890.638667pt;}
.y6d{bottom:2931.972000pt;}
.yf6{bottom:2961.316000pt;}
.y6c{bottom:2973.305333pt;}
.yd7{bottom:2983.665333pt;}
.yf5{bottom:3007.333333pt;}
.y6b{bottom:3014.638667pt;}
.y6a{bottom:3097.305333pt;}
.y9f{bottom:3125.333333pt;}
.ye1{bottom:3129.416000pt;}
.y9e{bottom:3130.936000pt;}
.y69{bottom:3138.638667pt;}
.y9c{bottom:3170.133333pt;}
.ye0{bottom:3170.749333pt;}
.y9d{bottom:3172.269333pt;}
.y68{bottom:3179.972000pt;}
.ydd{bottom:3204.000000pt;}
.ydf{bottom:3212.082667pt;}
.y67{bottom:3221.305333pt;}
.y9a{bottom:3230.133333pt;}
.y95{bottom:3233.190667pt;}
.y99{bottom:3261.866667pt;}
.y66{bottom:3262.638667pt;}
.y96{bottom:3263.200000pt;}
.ye2{bottom:3273.333333pt;}
.y94{bottom:3274.524000pt;}
.y91{bottom:3314.666667pt;}
.y65{bottom:3345.305333pt;}
.ya2{bottom:3378.480000pt;}
.y64{bottom:3386.638667pt;}
.ya1{bottom:3419.813333pt;}
.y93{bottom:3424.417333pt;}
.y63{bottom:3427.972000pt;}
.y4d{bottom:3476.761333pt;}
.y12{bottom:3486.089333pt;}
.y11{bottom:3501.430667pt;}
.y2{bottom:3704.452000pt;}
.y6{bottom:3715.225333pt;}
.y1{bottom:3793.172000pt;}
.y16{bottom:3800.052000pt;}
.y5{bottom:3925.117333pt;}
.y4{bottom:4098.450667pt;}
.y3{bottom:4271.784000pt;}
.h74{height:17.628307pt;}
.h72{height:26.514920pt;}
.h78{height:27.323880pt;}
.h3d{height:28.533360pt;}
.h76{height:30.849547pt;}
.h6f{height:31.403813pt;}
.h40{height:32.000000pt;}
.h30{height:35.646973pt;}
.h46{height:35.893533pt;}
.h3f{height:36.000000pt;}
.h44{height:36.375000pt;}
.h42{height:40.000000pt;}
.h66{height:40.783720pt;}
.h70{height:40.987613pt;}
.h75{height:46.575435pt;}
.h3c{height:51.466640pt;}
.hf{height:60.122246pt;}
.hd{height:62.956288pt;}
.h26{height:64.114328pt;}
.h5d{height:64.211031pt;}
.h63{height:64.363286pt;}
.h1a{height:64.724042pt;}
.h60{height:64.990224pt;}
.h69{height:67.421938pt;}
.h4b{height:67.982462pt;}
.h12{height:68.624410pt;}
.h6c{height:69.156248pt;}
.h71{height:69.819826pt;}
.h16{height:69.882896pt;}
.h51{height:70.198894pt;}
.h1e{height:71.826544pt;}
.h54{height:72.004654pt;}
.h4e{height:72.527520pt;}
.h35{height:72.589841pt;}
.h19{height:73.039276pt;}
.h1c{height:73.170544pt;}
.h33{height:73.949841pt;}
.h20{height:75.752770pt;}
.h79{height:79.030716pt;}
.h24{height:79.200027pt;}
.h57{height:80.130213pt;}
.h38{height:82.666667pt;}
.hc{height:83.806782pt;}
.he{height:83.967708pt;}
.h7{height:85.333333pt;}
.h5b{height:88.000000pt;}
.h77{height:89.568158pt;}
.h11{height:89.646712pt;}
.h34{height:90.795652pt;}
.h36{height:90.822363pt;}
.h61{height:91.320651pt;}
.h64{height:91.947589pt;}
.h73{height:92.006604pt;}
.h41{height:92.098698pt;}
.h48{height:93.333333pt;}
.h3e{height:94.355120pt;}
.h6a{height:94.737560pt;}
.h6e{height:95.387931pt;}
.h17{height:95.964968pt;}
.h15{height:98.195599pt;}
.h2b{height:98.549646pt;}
.h52{height:98.639604pt;}
.h18{height:98.869714pt;}
.h56{height:99.316759pt;}
.hb{height:99.340861pt;}
.h65{height:100.000000pt;}
.h6{height:100.411458pt;}
.h10{height:100.519528pt;}
.h1d{height:100.926711pt;}
.h22{height:101.619549pt;}
.h5{height:102.171875pt;}
.h37{height:102.699458pt;}
.h31{height:103.611040pt;}
.h23{height:103.706581pt;}
.h45{height:107.448474pt;}
.h2f{height:109.149432pt;}
.h14{height:110.574572pt;}
.h21{height:111.401570pt;}
.h5e{height:112.000000pt;}
.h27{height:121.243244pt;}
.h5a{height:124.341707pt;}
.h67{height:125.014675pt;}
.h59{height:128.000000pt;}
.h2e{height:130.062589pt;}
.h25{height:131.232747pt;}
.h3b{height:132.861467pt;}
.h49{height:134.362195pt;}
.h9{height:136.000000pt;}
.h29{height:137.766027pt;}
.h2c{height:138.084078pt;}
.h2d{height:138.747948pt;}
.h4c{height:138.907253pt;}
.h58{height:140.000000pt;}
.h43{height:141.333333pt;}
.h39{height:144.286133pt;}
.h28{height:155.398231pt;}
.h4f{height:155.796853pt;}
.h62{height:159.808646pt;}
.h55{height:163.803140pt;}
.h53{height:163.804740pt;}
.h6b{height:165.122624pt;}
.h6d{height:165.127957pt;}
.h1f{height:176.038208pt;}
.h47{height:179.654667pt;}
.h3a{height:182.795253pt;}
.h2{height:188.625000pt;}
.h4{height:212.203125pt;}
.h1{height:220.062500pt;}
.h8{height:235.781250pt;}
.h4a{height:262.461075pt;}
.h4d{height:267.006133pt;}
.h5c{height:347.742462pt;}
.h2a{height:416.000000pt;}
.h3{height:424.406250pt;}
.h5f{height:453.302533pt;}
.ha{height:456.000000pt;}
.h68{height:482.666667pt;}
.h50{height:499.298933pt;}
.h13{height:504.000000pt;}
.h1b{height:593.333333pt;}
.h32{height:598.666667pt;}
.h0{height:4490.666667pt;}
.w2e{width:12.335749pt;}
.w2c{width:21.147000pt;}
.w10{width:28.000000pt;}
.w30{width:31.720493pt;}
.w2f{width:34.363880pt;}
.w2d{width:40.531747pt;}
.w32{width:45.818493pt;}
.wf{width:53.333333pt;}
.w27{width:56.000000pt;}
.w31{width:59.916493pt;}
.w14{width:60.000000pt;}
.w12{width:77.175813pt;}
.w20{width:82.422080pt;}
.w29{width:82.617987pt;}
.wc{width:84.881960pt;}
.w11{width:85.333333pt;}
.w1a{width:90.643320pt;}
.w1f{width:99.068080pt;}
.w2a{width:105.152707pt;}
.w28{width:119.358640pt;}
.w18{width:123.613333pt;}
.w16{width:126.365733pt;}
.w1b{width:180.000000pt;}
.w17{width:181.333333pt;}
.w25{width:211.695867pt;}
.w1c{width:298.666667pt;}
.we{width:316.000000pt;}
.w21{width:388.000000pt;}
.w13{width:444.000000pt;}
.w1d{width:526.666667pt;}
.wb{width:556.064000pt;}
.wa{width:580.000000pt;}
.w7{width:642.666667pt;}
.w9{width:698.666667pt;}
.wd{width:721.333333pt;}
.w22{width:737.333333pt;}
.w1{width:741.683867pt;}
.w4{width:742.666667pt;}
.w23{width:751.740267pt;}
.w26{width:764.000000pt;}
.w8{width:794.666667pt;}
.w1e{width:798.666667pt;}
.w2{width:821.333333pt;}
.w5{width:897.338933pt;}
.w24{width:907.949200pt;}
.w6{width:924.589867pt;}
.w3{width:937.333333pt;}
.w2b{width:945.412933pt;}
.w15{width:950.218933pt;}
.w19{width:960.000000pt;}
.w0{width:3178.666667pt;}
.xb2{left:-2.342443pt;}
.x4d{left:-1.107733pt;}
.x0{left:0.000000pt;}
.x46{left:1.022800pt;}
.x61{left:2.107738pt;}
.x5f{left:8.666667pt;}
.x79{left:15.514667pt;}
.x7{left:20.000000pt;}
.x2b{left:25.476000pt;}
.x19{left:26.548667pt;}
.x68{left:27.878400pt;}
.x2a{left:33.530667pt;}
.x31{left:36.470800pt;}
.x15{left:37.914667pt;}
.x4a{left:39.116267pt;}
.x88{left:41.234667pt;}
.x3c{left:43.970533pt;}
.x3b{left:46.707733pt;}
.x27{left:49.638667pt;}
.x1f{left:50.954667pt;}
.x30{left:52.450667pt;}
.x98{left:55.918667pt;}
.x13{left:57.546933pt;}
.x49{left:61.206133pt;}
.x71{left:62.657467pt;}
.x96{left:64.440000pt;}
.x97{left:65.386667pt;}
.x95{left:66.648000pt;}
.x1c{left:71.173333pt;}
.x1e{left:73.062667pt;}
.x12{left:74.891200pt;}
.x14{left:76.588800pt;}
.x17{left:78.064800pt;}
.x2e{left:81.130400pt;}
.x94{left:83.216000pt;}
.xd{left:85.333333pt;}
.x70{left:93.825200pt;}
.xa{left:95.333333pt;}
.x2{left:97.333333pt;}
.x33{left:99.293533pt;}
.x43{left:100.596480pt;}
.x6{left:103.337160pt;}
.x1{left:104.975160pt;}
.x42{left:106.218787pt;}
.x40{left:111.135427pt;}
.x44{left:113.358720pt;}
.x26{left:115.061333pt;}
.x86{left:117.449333pt;}
.x69{left:119.304800pt;}
.x41{left:122.363227pt;}
.xa7{left:123.914387pt;}
.x28{left:136.266667pt;}
.x6c{left:139.785867pt;}
.x32{left:141.013333pt;}
.x3f{left:145.138933pt;}
.x36{left:154.822133pt;}
.x81{left:161.371467pt;}
.x6a{left:170.122667pt;}
.xb1{left:173.707067pt;}
.xad{left:176.350400pt;}
.x10{left:181.097067pt;}
.x6d{left:184.849067pt;}
.x4e{left:191.590400pt;}
.x4f{left:211.326133pt;}
.x87{left:221.058667pt;}
.x82{left:225.144267pt;}
.x93{left:226.482667pt;}
.x1d{left:227.578667pt;}
.xf{left:233.333333pt;}
.x45{left:245.784667pt;}
.xb4{left:252.127200pt;}
.x3e{left:257.045333pt;}
.x50{left:269.378933pt;}
.x35{left:272.000000pt;}
.x3a{left:278.205333pt;}
.x39{left:281.968000pt;}
.x72{left:296.088000pt;}
.x89{left:309.900000pt;}
.x20{left:315.357333pt;}
.x78{left:325.369333pt;}
.x11{left:347.085333pt;}
.xab{left:352.575467pt;}
.x4b{left:370.633333pt;}
.x2f{left:376.001333pt;}
.x99{left:380.794667pt;}
.x48{left:384.737333pt;}
.xaf{left:388.701600pt;}
.x84{left:392.014267pt;}
.x73{left:393.200000pt;}
.x21{left:399.929333pt;}
.x16{left:403.398800pt;}
.x3d{left:407.271467pt;}
.x1a{left:408.270000pt;}
.x37{left:411.660533pt;}
.x83{left:437.450533pt;}
.xac{left:459.191600pt;}
.x38{left:468.836267pt;}
.x77{left:498.514667pt;}
.x9a{left:510.492000pt;}
.x8a{left:511.838667pt;}
.x18{left:520.158933pt;}
.x74{left:536.244000pt;}
.xa8{left:540.000000pt;}
.x22{left:556.336000pt;}
.x9d{left:559.562667pt;}
.x8d{left:613.689333pt;}
.xaa{left:629.248667pt;}
.x25{left:643.538667pt;}
.x9b{left:665.829333pt;}
.x8b{left:669.242667pt;}
.x75{left:700.613333pt;}
.x23{left:715.948000pt;}
.xae{left:723.529067pt;}
.xb3{left:726.172400pt;}
.x2c{left:732.468000pt;}
.x8c{left:738.648000pt;}
.x29{left:741.590667pt;}
.x9c{left:748.034667pt;}
.x24{left:757.042667pt;}
.x76{left:785.832000pt;}
.xb5{left:814.284933pt;}
.xa9{left:906.803067pt;}
.xb0{left:942.929200pt;}
.x4{left:1109.333333pt;}
.x5e{left:1115.557067pt;}
.x9{left:1120.068533pt;}
.x59{left:1124.759333pt;}
.x64{left:1127.696533pt;}
.x51{left:1129.648533pt;}
.x6e{left:1130.829733pt;}
.x57{left:1132.932800pt;}
.x34{left:1133.880667pt;}
.x52{left:1135.886933pt;}
.x67{left:1168.000000pt;}
.x6f{left:1184.000000pt;}
.x47{left:1209.333333pt;}
.x2d{left:1221.333333pt;}
.x53{left:1246.666667pt;}
.x60{left:1266.967600pt;}
.x65{left:1284.023333pt;}
.x58{left:1313.333333pt;}
.x7d{left:1321.312533pt;}
.x7c{left:1334.645333pt;}
.x7b{left:1338.645333pt;}
.x5c{left:1370.666667pt;}
.x54{left:1385.333333pt;}
.x4c{left:1401.333333pt;}
.x56{left:1405.333333pt;}
.x62{left:1466.666667pt;}
.x6b{left:1488.000000pt;}
.x5{left:1556.441333pt;}
.x5b{left:1564.000000pt;}
.x66{left:1613.333333pt;}
.x55{left:1716.000000pt;}
.x63{left:1740.386667pt;}
.x7a{left:1772.700000pt;}
.x5d{left:1926.666667pt;}
.xa6{left:2132.626667pt;}
.xb{left:2136.666667pt;}
.xc{left:2138.666667pt;}
.x5a{left:2144.574667pt;}
.x9f{left:2148.598667pt;}
.x7e{left:2154.174667pt;}
.xa0{left:2156.025333pt;}
.x1b{left:2204.000000pt;}
.x85{left:2216.000000pt;}
.x92{left:2220.000000pt;}
.x80{left:2221.333333pt;}
.x7f{left:2257.333333pt;}
.xa2{left:2294.666667pt;}
.xe{left:2310.222667pt;}
.x90{left:2315.653333pt;}
.x8f{left:2322.901333pt;}
.x8e{left:2324.174667pt;}
.xa1{left:2338.656000pt;}
.xa4{left:2361.333333pt;}
.x8{left:2374.666667pt;}
.x3{left:2510.666667pt;}
.x9e{left:2630.945333pt;}
.x91{left:2638.970667pt;}
.xa5{left:2672.000000pt;}
.xa3{left:2724.000000pt;}
}




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