
    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_cbc3109d64cb1d9f7405d277.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.886000;font-style:normal;font-weight: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_485e6454413a22cf64936d70.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.700000;font-style:normal;font-weight: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_b67b1cb4fd9a94ebb6960534.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.087000;font-style:normal;font-weight: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_f4a5a9d1aadf7632da86bbc7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.109000;font-style:normal;font-weight: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_d6dc234cc1a9a91f631286ef.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_485e6454413a22cf64936d70.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.700000;font-style:normal;font-weight: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_b67b1cb4fd9a94ebb6960534.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.087000;font-style:normal;font-weight: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_f4a5a9d1aadf7632da86bbc7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.109000;font-style:normal;font-weight: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_4533b59bdf9e0d9ac3d4269b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.123000;font-style:normal;font-weight: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_b70c30ab5591f374c184df37.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.740000;font-style:normal;font-weight: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_9d8b167e04e9a8ea6207ad3e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.109000;font-style:normal;font-weight: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_bcfffd75c7504db23d107e27.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.996000;font-style:normal;font-weight: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_4ffd9d9a3d31d27747d50e57.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.995000;font-style:normal;font-weight: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_3d4d92c8d097e469c451e300.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.380000;font-style:normal;font-weight: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_8b302c41beaa7bc7373eaa9a.woff2')format("woff");}.fff{font-family:fff;line-height:0.738000;font-style:normal;font-weight: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_193a7d18ff3f762c2db8f202.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.128000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff11{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff12;src:url('chunks/assets/font_8d123cd045e19e4419da21d1.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff13{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff14;src:url('chunks/assets/font_5fe7865ad1766b613cc1e567.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.128000;font-style:normal;font-weight: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_4ffd9d9a3d31d27747d50e57.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.995000;font-style:normal;font-weight: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_4b60678bcd5d24a9af51407b.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.700000;font-style:normal;font-weight: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_c8b93ac4dd85c4f72a340f72.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.996000;font-style:normal;font-weight: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_d630c3800089c7bf0a724728.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.875000;font-style:normal;font-weight: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_2f7e9c6c95ed308cc9248722.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.010000;font-style:normal;font-weight: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_cf5debc74e286353f1144ca0.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.715000;font-style:normal;font-weight: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_07e6615b2970b558e1741cee.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.768000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff1c{font-family:sans-serif;visibility:hidden;}
.ff1d{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_f99fd065949a577ed9dd078f.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.128000;font-style:normal;font-weight: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_fd911945695959e5f2055ec8.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.991000;font-style:normal;font-weight: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_b49b3711c1060f4244ecf3b1.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff21{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff22;src:url('chunks/assets/font_e0ce8a1554e918f78deb3585.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.996000;font-style:normal;font-weight: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_4ffd9d9a3d31d27747d50e57.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.995000;font-style:normal;font-weight: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_983f151ab2136a7d76115dd1.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.715000;font-style:normal;font-weight: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_c6481fe071d59ac5f9fd540f.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff26{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff27;src:url('chunks/assets/font_c3fd47e4360f122609ea3c9a.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.996000;font-style:normal;font-weight: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_4ffd9d9a3d31d27747d50e57.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.995000;font-style:normal;font-weight: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_8b302c41beaa7bc7373eaa9a.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.738000;font-style:normal;font-weight: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_ab426a0d19ff8d6cd7cb4692.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.996000;font-style:normal;font-weight: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_bde547418125b536e001b95b.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.875000;font-style:normal;font-weight: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_9b079567478263052b5f8c69.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.714000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff2d{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_20f87e769d5498072acd2010.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff2f{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff30;src:url('chunks/assets/font_682d2acbb6c4f653dfa564b0.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.996000;font-style:normal;font-weight: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_657cef9cefc5054b79f83cbd.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_bd49b426006f5c0adb0075c1.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.678000;font-style:normal;font-weight: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_eac8a40b21f22107ad4ae254.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff34{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff35;src:url('chunks/assets/font_2785d48085ed2cc42cd7c2ac.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.715000;font-style:normal;font-weight: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_4b03c54a36a614feea0785b6.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.875000;font-style:normal;font-weight: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_abe873c59e40748e0495cbf3.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff38{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff39;src:url('chunks/assets/font_766419dbbd67d8e1feef6c17.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.991000;font-style:normal;font-weight: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_8d123cd045e19e4419da21d1.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff3b{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_839b5dff28dbc8a31824da13.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.996000;font-style:normal;font-weight: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_4043b909428bbb46541d770c.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff3e{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_3b28dc45b4ad0be5aa2ed5bd.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff40{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff41;src:url('chunks/assets/font_99d682b9576c53e686e07272.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.996000;font-style:normal;font-weight: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_97c4a528cddcabf57283c50c.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff43{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff44;src:url('chunks/assets/font_50a508165676260a71a094ff.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.996000;font-style:normal;font-weight: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_400b1ee7fd8d3c997d2c12e1.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.715000;font-style:normal;font-weight: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_45099bf26436114e696c8148.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff47{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff48;src:url('chunks/assets/font_7065dddf9364145cec87a5b0.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff49{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff4a;src:url('chunks/assets/font_fd8f8c1b4b418da4e59999d0.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:1.128000;font-style:normal;font-weight: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_4ffd9d9a3d31d27747d50e57.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:0.995000;font-style:normal;font-weight: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_c6245ad31fba3ed10e8076d5.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff4d{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff4e;src:url('chunks/assets/font_3cdf0345468161da3e5f9dc7.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:1.042000;font-style:normal;font-weight: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_05e67fc21e45cfce8c525a21.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:0.714000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff50{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff51;src:url('chunks/assets/font_ef595b8b14c86ee818f50b7e.woff2')format("woff");}.ff51{font-family:ff51;line-height:0.996000;font-style:normal;font-weight: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_e672078bf433859e924a7877.woff2')format("woff");}.ff52{font-family:ff52;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff53{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff54;src:url('chunks/assets/font_9fffc7299461030d2106955d.woff2')format("woff");}.ff54{font-family:ff54;line-height:1.128000;font-style:normal;font-weight: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_b20341145141aeb5d43fa844.woff2')format("woff");}.ff55{font-family:ff55;line-height:0.715000;font-style:normal;font-weight: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_a62ba26a34af564ffd600f73.woff2')format("woff");}.ff56{font-family:ff56;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff57{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff58;src:url('chunks/assets/font_7d6571962c303b98e693dee2.woff2')format("woff");}.ff58{font-family:ff58;line-height:0.996000;font-style:normal;font-weight: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_4043b909428bbb46541d770c.woff2')format("woff");}.ff59{font-family:ff59;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff5a{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff5b;src:url('chunks/assets/font_4a51ffd62c7456d2cd8cc24a.woff2')format("woff");}.ff5b{font-family:ff5b;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff5c{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff5d;src:url('chunks/assets/font_3ec0e91e41fa3436d8aff87d.woff2')format("woff");}.ff5d{font-family:ff5d;line-height:1.128000;font-style:normal;font-weight: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_4b60678bcd5d24a9af51407b.woff2')format("woff");}.ff5e{font-family:ff5e;line-height:0.700000;font-style:normal;font-weight: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_eb0051f0084b8c82fb1dc492.woff2')format("woff");}.ff5f{font-family:ff5f;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff60{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff61;src:url('chunks/assets/font_03e77958b0cc2992b7bc99ab.woff2')format("woff");}.ff61{font-family:ff61;line-height:0.996000;font-style:normal;font-weight: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_8ab4238dc1e39aaabedb7e32.woff2')format("woff");}.ff62{font-family:ff62;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff63{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff64;src:url('chunks/assets/font_28fc2e10371611c63a75855c.woff2')format("woff");}.ff64{font-family:ff64;line-height:0.996000;font-style:normal;font-weight: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_7585ddce153b53e3e611ca94.woff2')format("woff");}.ff65{font-family:ff65;line-height:0.993000;font-style:normal;font-weight: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_32eacb547a71eda4663dbafe.woff2')format("woff");}.ff66{font-family:ff66;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff67{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff68;src:url('chunks/assets/font_e25598fbffb78643cabb53aa.woff2')format("woff");}.ff68{font-family:ff68;line-height:0.996000;font-style:normal;font-weight: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_8093768992d7045036d0ae5b.woff2')format("woff");}.ff69{font-family:ff69;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff6a{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff6b;src:url('chunks/assets/font_891a45b818f65c41fa20c78d.woff2')format("woff");}.ff6b{font-family:ff6b;line-height:0.996000;font-style:normal;font-weight: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_56b0479cb6ab1b35318cb2d8.woff2')format("woff");}.ff6c{font-family:ff6c;line-height:1.380000;font-style:normal;font-weight: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_3f63678998b248e29e4971c9.woff2')format("woff");}.ff6d{font-family:ff6d;line-height:0.736750;font-style:normal;font-weight: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_633edbfeedf7607c3e8fc375.woff2')format("woff");}.ff6e{font-family:ff6e;line-height:0.714000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff6f{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff70;src:url('chunks/assets/font_af1be4800254e07d7a619b07.woff2')format("woff");}.ff70{font-family:ff70;line-height:0.996000;font-style:normal;font-weight: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_974f3d7702bd0f0ab5573658.woff2')format("woff");}.ff71{font-family:ff71;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff72{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff73;src:url('chunks/assets/font_f09a3a08342bfe23b859b7b5.woff2')format("woff");}.ff73{font-family:ff73;line-height:1.128000;font-style:normal;font-weight: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_e7b45074a601b897b3a1f3e7.woff2')format("woff");}.ff74{font-family:ff74;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff75{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff76;src:url('chunks/assets/font_5e4e51fe9d3648883600f2a4.woff2')format("woff");}.ff76{font-family:ff76;line-height:1.128000;font-style:normal;font-weight: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_569825036e2151c049a7b23b.woff2')format("woff");}.ff77{font-family:ff77;line-height:0.715000;font-style:normal;font-weight: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_111aacdbd986315e5c12a73d.woff2')format("woff");}.ff78{font-family:ff78;line-height:0.996000;font-style:normal;font-weight: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_97c4a528cddcabf57283c50c.woff2')format("woff");}.ff79{font-family:ff79;line-height:0.715000;font-style:normal;font-weight: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_81828a08a5304896084f481d.woff2')format("woff");}.ff7a{font-family:ff7a;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff7b{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff7c;src:url('chunks/assets/font_de3ffa8a40b38803f8759eaf.woff2')format("woff");}.ff7c{font-family:ff7c;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:ff7d;src:url('chunks/assets/font_9626c6740a5087265e0285a8.woff2')format("woff");}.ff7d{font-family:ff7d;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7e;src:url('chunks/assets/font_735366a13c43b8b64425a2df.woff2')format("woff");}.ff7e{font-family:ff7e;line-height:0.736125;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff7f{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff80;src:url('chunks/assets/font_a56477ae62641e2a6ebd3c8b.woff2')format("woff");}.ff80{font-family:ff80;line-height:0.996000;font-style:normal;font-weight: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_eb0051f0084b8c82fb1dc492.woff2')format("woff");}.ff81{font-family:ff81;line-height:0.715000;font-style:normal;font-weight: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_cf5debc74e286353f1144ca0.woff2')format("woff");}.ff82{font-family:ff82;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff83{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff84;src:url('chunks/assets/font_f45162a5556c3f97ff5c504d.woff2')format("woff");}.ff84{font-family:ff84;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff85;src:url('chunks/assets/font_c68619453a322af4e5f938b3.woff2')format("woff");}.ff85{font-family:ff85;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff86{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff87;src:url('chunks/assets/font_a10a83fbde2019734134bc80.woff2')format("woff");}.ff87{font-family:ff87;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff88;src:url('chunks/assets/font_c62aa357f4466cdd61bd3812.woff2')format("woff");}.ff88{font-family:ff88;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff89;src:url('chunks/assets/font_61d30e2eb17902705c347de5.woff2')format("woff");}.ff89{font-family:ff89;line-height:0.875000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8a;src:url('chunks/assets/font_fc8cfb0808f8bf0d3ac1ae48.woff2')format("woff");}.ff8a{font-family:ff8a;line-height:0.768405;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff8b{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff8c;src:url('chunks/assets/font_0001de58e794da24e15e26bd.woff2')format("woff");}.ff8c{font-family:ff8c;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8d;src:url('chunks/assets/font_f099165873029d2b2f4ba781.woff2')format("woff");}.ff8d{font-family:ff8d;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff8e{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff8f;src:url('chunks/assets/font_f78c6b8fda4bd0d78ce4e6c9.woff2')format("woff");}.ff8f{font-family:ff8f;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff90;src:url('chunks/assets/font_bcc5695568df8ac4273ea976.woff2')format("woff");}.ff90{font-family:ff90;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff91{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff92;src:url('chunks/assets/font_39098c11e31b6e1ed54cfea6.woff2')format("woff");}.ff92{font-family:ff92;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff93;src:url('chunks/assets/font_1f3f4c0f0874b01745efc8cf.woff2')format("woff");}.ff93{font-family:ff93;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff94{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff95;src:url('chunks/assets/font_bd6157d58affcc4e6bdb8f40.woff2')format("woff");}.ff95{font-family:ff95;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff96;src:url('chunks/assets/font_2ca0eaa53e4c71199aa90442.woff2')format("woff");}.ff96{font-family:ff96;line-height:1.175000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff97;src:url('chunks/assets/font_a62b997bf546dab1fe98ec81.woff2')format("woff");}.ff97{font-family:ff97;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:ff98;src:url('chunks/assets/font_e30e74c9c7fcaf2a406b02c2.woff2')format("woff");}.ff98{font-family:ff98;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff99{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff9a;src:url('chunks/assets/font_9c434b0fb860874e66b3f5f7.woff2')format("woff");}.ff9a{font-family:ff9a;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9b;src:url('chunks/assets/font_45b60d2bed33a3d8aaa8777c.woff2')format("woff");}.ff9b{font-family:ff9b;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff9c{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff9d;src:url('chunks/assets/font_115fe9484a3532d249c5961f.woff2')format("woff");}.ff9d{font-family:ff9d;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9e;src:url('chunks/assets/font_400b1ee7fd8d3c997d2c12e1.woff2')format("woff");}.ff9e{font-family:ff9e;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff9f{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffa0;src:url('chunks/assets/font_a1adea3f803293155556a5a7.woff2')format("woff");}.ffa0{font-family:ffa0;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa1;src:url('chunks/assets/font_795ec1cfb3a40248b789403c.woff2')format("woff");}.ffa1{font-family:ffa1;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:ffa2;src:url('chunks/assets/font_8ab4238dc1e39aaabedb7e32.woff2')format("woff");}.ffa2{font-family:ffa2;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ffa3{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffa4;src:url('chunks/assets/font_0d309e19807d6137d0258b54.woff2')format("woff");}.ffa4{font-family:ffa4;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa5;src:url('chunks/assets/font_abc3f3fa7bbba0b65932708a.woff2')format("woff");}.ffa5{font-family:ffa5;line-height:0.722000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa6;src:url('chunks/assets/font_c68619453a322af4e5f938b3.woff2')format("woff");}.ffa6{font-family:ffa6;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa7;src:url('chunks/assets/font_c81032b4a84e0b4cd7a6ac34.woff2')format("woff");}.ffa7{font-family:ffa7;line-height:1.128000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa8;src:url('chunks/assets/font_3cd7b4423007310196759e0c.woff2')format("woff");}.ffa8{font-family:ffa8;line-height:1.380000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa9;src:url('chunks/assets/font_adf68d0160d79550ee19e8ce.woff2')format("woff");}.ffa9{font-family:ffa9;line-height:0.768000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffaa;src:url('chunks/assets/font_41a61cc1acb4e47efca29132.woff2')format("woff");}.ffaa{font-family:ffaa;line-height:0.979000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffab;src:url('chunks/assets/font_b49b3711c1060f4244ecf3b1.woff2')format("woff");}.ffab{font-family:ffab;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffac;src:url('chunks/assets/font_41a61cc1acb4e47efca29132.woff2')format("woff");}.ffac{font-family:ffac;line-height:0.979000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffad;src:url('chunks/assets/font_b359fb14919a96a31f983318.woff2')format("woff");}.ffad{font-family:ffad;line-height:1.128000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffae;src:url('chunks/assets/font_503bb0694162606fb705f72f.woff2')format("woff");}.ffae{font-family:ffae;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffaf;src:url('chunks/assets/font_dc4a4e8ddec5869e4aae1180.woff2')format("woff");}.ffaf{font-family:ffaf;line-height:1.409000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ffb0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffb1;src:url('chunks/assets/font_4eb1416f530accde0ca8fa24.woff2')format("woff");}.ffb1{font-family:ffb1;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb2;src:url('chunks/assets/font_8f6d54de51cd9dbe632f4db0.woff2')format("woff");}.ffb2{font-family:ffb2;line-height:0.719000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb3;src:url('chunks/assets/font_e32445a910283325957465fd.woff2')format("woff");}.ffb3{font-family:ffb3;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ffb4{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffb5;src:url('chunks/assets/font_4e37503fe33b0b9e2d523cc4.woff2')format("woff");}.ffb5{font-family:ffb5;line-height:1.128000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb6;src:url('chunks/assets/font_1cb38a023908e84dfdb720cb.woff2')format("woff");}.ffb6{font-family:ffb6;line-height:0.875000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb7;src:url('chunks/assets/font_07e6615b2970b558e1741cee.woff2')format("woff");}.ffb7{font-family:ffb7;line-height:0.768000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb8;src:url('chunks/assets/font_32fe66e7d23b978e41d02385.woff2')format("woff");}.ffb8{font-family:ffb8;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ffb9{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffba;src:url('chunks/assets/font_dd02a230d1e1bdebcefb15ca.woff2')format("woff");}.ffba{font-family:ffba;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbb;src:url('chunks/assets/font_a84d12dd456be650522cd3ea.woff2')format("woff");}.ffbb{font-family:ffbb;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbc;src:url('chunks/assets/font_ead347c4979fcb29a55d4871.woff2')format("woff");}.ffbc{font-family:ffbc;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbd;src:url('chunks/assets/font_4ffd9d9a3d31d27747d50e57.woff2')format("woff");}.ffbd{font-family:ffbd;line-height:0.995000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ffbe{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffbf;src:url('chunks/assets/font_ea625df04eb8e2b02cb10ace.woff2')format("woff");}.ffbf{font-family:ffbf;line-height:0.875000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc0;src:url('chunks/assets/font_a62b997bf546dab1fe98ec81.woff2')format("woff");}.ffc0{font-family:ffc0;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:ffc1;src:url('chunks/assets/font_9ebddf5aac441c1973b0bb51.woff2')format("woff");}.ffc1{font-family:ffc1;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc2;src:url('chunks/assets/font_9ebddf5aac441c1973b0bb51.woff2')format("woff");}.ffc2{font-family:ffc2;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc3;src:url('chunks/assets/font_908a06a5930fff0d3666ce03.woff2')format("woff");}.ffc3{font-family:ffc3;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc4;src:url('chunks/assets/font_191182c39313c10ef7130082.woff2')format("woff");}.ffc4{font-family:ffc4;line-height:0.952000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc5;src:url('chunks/assets/font_e13cc2850470790adb2605f1.woff2')format("woff");}.ffc5{font-family:ffc5;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc6;src:url('chunks/assets/font_e8d68bce408a772060f075d4.woff2')format("woff");}.ffc6{font-family:ffc6;line-height:0.998000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc7;src:url('chunks/assets/font_914bdc1c4554b6785f4b9a02.woff2')format("woff");}.ffc7{font-family:ffc7;line-height:1.002000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc8;src:url('chunks/assets/font_d5a8f786acbeae193a928d13.woff2')format("woff");}.ffc8{font-family:ffc8;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ffc9{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffca;src:url('chunks/assets/font_cde068342a52ceeb8a979281.woff2')format("woff");}.ffca{font-family:ffca;line-height:0.998000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffcb;src:url('chunks/assets/font_0e753e7b2bd5557701fc64c8.woff2')format("woff");}.ffcb{font-family:ffcb;line-height:1.002000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffcc;src:url('chunks/assets/font_45099bf26436114e696c8148.woff2')format("woff");}.ffcc{font-family:ffcc;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ffcd{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffce;src:url('chunks/assets/font_32eacb547a71eda4663dbafe.woff2')format("woff");}.ffce{font-family:ffce;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffcf;src:url('chunks/assets/font_273a44cfe76058f33c0c5d65.woff2')format("woff");}.ffcf{font-family:ffcf;line-height:1.109000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd0;src:url('chunks/assets/font_08d311b62b4cd4bac9fa61ea.woff2')format("woff");}.ffd0{font-family:ffd0;line-height:0.979000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd1;src:url('chunks/assets/font_048cc64e50e2eb65d9f7240b.woff2')format("woff");}.ffd1{font-family:ffd1;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd2;src:url('chunks/assets/font_c62aa357f4466cdd61bd3812.woff2')format("woff");}.ffd2{font-family:ffd2;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd3;src:url('chunks/assets/font_ea36ed111e1673b68c021523.woff2')format("woff");}.ffd3{font-family:ffd3;line-height:0.994000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd4;src:url('chunks/assets/font_65c6ce05fef671d021ea9698.woff2')format("woff");}.ffd4{font-family:ffd4;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd5;src:url('chunks/assets/font_503bb0694162606fb705f72f.woff2')format("woff");}.ffd5{font-family:ffd5;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd6;src:url('chunks/assets/font_dd2bf9e898fceb591502415c.woff2')format("woff");}.ffd6{font-family:ffd6;line-height:0.994000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd7;src:url('chunks/assets/font_66f3cda4be1fc0050e3554e7.woff2')format("woff");}.ffd7{font-family:ffd7;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd8;src:url('chunks/assets/font_7efcd25d45187fb7e62c53cf.woff2')format("woff");}.ffd8{font-family:ffd8;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:ffd9;src:url('chunks/assets/font_983f151ab2136a7d76115dd1.woff2')format("woff");}.ffd9{font-family:ffd9;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffda;src:url('chunks/assets/font_0d567f7b67168dda363e86b6.woff2')format("woff");}.ffda{font-family:ffda;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffdb;src:url('chunks/assets/font_3624654b5ebbb619e6fb4938.woff2')format("woff");}.ffdb{font-family:ffdb;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffdc;src:url('chunks/assets/font_881f7488f7bca3224a4702a3.woff2')format("woff");}.ffdc{font-family:ffdc;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ffdd{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffde;src:url('chunks/assets/font_1f65c35d5e9e4152d7f2a3a3.woff2')format("woff");}.ffde{font-family:ffde;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffdf;src:url('chunks/assets/font_7a8b35aa528e1b404ca594d8.woff2')format("woff");}.ffdf{font-family:ffdf;line-height:1.109000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe0;src:url('chunks/assets/font_8b302c41beaa7bc7373eaa9a.woff2')format("woff");}.ffe0{font-family:ffe0;line-height:0.738000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe1;src:url('chunks/assets/font_89a21afb4f8128fa7b06ee35.woff2')format("woff");}.ffe1{font-family:ffe1;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe2;src:url('chunks/assets/font_45cf55bcc7601a284e9b4c37.woff2')format("woff");}.ffe2{font-family:ffe2;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe3;src:url('chunks/assets/font_e1f123337afd6b823cacd10a.woff2')format("woff");}.ffe3{font-family:ffe3;line-height:1.109000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe4;src:url('chunks/assets/font_dc30f12809235c59d34f6de9.woff2')format("woff");}.ffe4{font-family:ffe4;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe5;src:url('chunks/assets/font_1041e9298566529e3b8ba445.woff2')format("woff");}.ffe5{font-family:ffe5;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe6;src:url('chunks/assets/font_58a43c24b063e6742ca39ee8.woff2')format("woff");}.ffe6{font-family:ffe6;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe7;src:url('chunks/assets/font_95a0317191bea5eee7816a2c.woff2')format("woff");}.ffe7{font-family:ffe7;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe8;src:url('chunks/assets/font_5b956b642aca9c8e0f7286b2.woff2')format("woff");}.ffe8{font-family:ffe8;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe9;src:url('chunks/assets/font_c6245ad31fba3ed10e8076d5.woff2')format("woff");}.ffe9{font-family:ffe9;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffea;src:url('chunks/assets/font_7aa4090083b77458df5a70ea.woff2')format("woff");}.ffea{font-family:ffea;line-height:1.114000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffeb;src:url('chunks/assets/font_8093768992d7045036d0ae5b.woff2')format("woff");}.ffeb{font-family:ffeb;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffec;src:url('chunks/assets/font_c42cf0b6e89541c4442cff7b.woff2')format("woff");}.ffec{font-family:ffec;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffed;src:url('chunks/assets/font_f099165873029d2b2f4ba781.woff2')format("woff");}.ffed{font-family:ffed;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffee;src:url('chunks/assets/font_724ff78a234c8bdd44f3a165.woff2')format("woff");}.ffee{font-family:ffee;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-31.931164px;}
.v6{vertical-align:-14.630389px;}
.v3{vertical-align:-5.562329px;}
.v4{vertical-align:-3.829034px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.927546px;}
.v1{vertical-align:11.692283px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000118px;}
.ls2{letter-spacing:9.113525px;}
.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;}
}
.wse{word-spacing:-63.970369px;}
.ws10{word-spacing:-62.519495px;}
.ws8{word-spacing:-56.828153px;}
.ws0{word-spacing:-53.597250px;}
.ws1{word-spacing:-47.692663px;}
.wsa{word-spacing:-35.421384px;}
.wsb{word-spacing:-31.531233px;}
.wsc{word-spacing:-29.972655px;}
.ws4{word-spacing:-27.215171px;}
.wsd{word-spacing:-26.982135px;}
.wsf{word-spacing:-15.887081px;}
.ws11{word-spacing:-12.951425px;}
.ws3{word-spacing:-11.989062px;}
.ws9{word-spacing:-11.512378px;}
.ws2{word-spacing:0.000000px;}
.ws7{word-spacing:1070.470589px;}
.ws5{word-spacing:1095.019517px;}
.ws6{word-spacing:1163.993207px;}
._35{margin-left:-7.875120px;}
._39{margin-left:-6.569007px;}
._7{margin-left:-5.128628px;}
._2{margin-left:-3.870044px;}
._4{margin-left:-2.579336px;}
._1{margin-left:-1.554895px;}
._5{width:1.196764px;}
._3{width:2.367428px;}
._6{width:3.442913px;}
._19{width:4.952403px;}
._1b{width:6.010289px;}
._25{width:7.037078px;}
._14{width:8.076194px;}
._0{width:9.402025px;}
._20{width:10.505040px;}
._15{width:12.517089px;}
._1e{width:14.514108px;}
._2f{width:15.518272px;}
._1c{width:16.528988px;}
._24{width:17.959317px;}
._1a{width:19.220253px;}
._23{width:20.351007px;}
._1f{width:21.615179px;}
._16{width:22.637928px;}
._22{width:23.891244px;}
._21{width:25.232454px;}
._26{width:26.364447px;}
._2b{width:27.452392px;}
._18{width:29.295943px;}
._17{width:30.416524px;}
._2c{width:32.118076px;}
._28{width:33.162716px;}
._36{width:34.310560px;}
._34{width:35.332756px;}
._2e{width:36.924422px;}
._27{width:38.006701px;}
._37{width:40.029348px;}
._32{width:41.722723px;}
._33{width:43.196908px;}
._31{width:44.906215px;}
._29{width:46.059398px;}
._2a{width:47.602056px;}
._3a{width:50.454373px;}
._3b{width:69.531568px;}
._8{width:573.024874px;}
._f{width:575.798750px;}
._e{width:688.788303px;}
._10{width:713.734195px;}
._11{width:866.327959px;}
._c{width:880.463536px;}
._38{width:897.007021px;}
._13{width:979.687559px;}
._2d{width:982.889358px;}
._b{width:994.291002px;}
._30{width:1035.764679px;}
._1d{width:1055.185544px;}
._9{width:1083.357381px;}
._12{width:1105.343179px;}
._d{width:1119.710254px;}
._a{width:1140.000986px;}
.fc1{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:32.978153px;}
.fs0{font-size:41.972102px;}
.fs6{font-size:53.964270px;}
.fsb{font-size:57.561888px;}
.fs5{font-size:59.945309px;}
.fs9{font-size:65.926348px;}
.fs3{font-size:72.968629px;}
.fs8{font-size:119.890619px;}
.fs4{font-size:121.583977px;}
.fsc{font-size:131.897669px;}
.fsa{font-size:167.873858px;}
.fs1{font-size:214.389000px;}
.fs2{font-size:322.247724px;}
.y0{bottom:0.000000px;}
.yd{bottom:0.000005px;}
.y23{bottom:2.917091px;}
.y2{bottom:3.540143px;}
.yc{bottom:6.876508px;}
.y17{bottom:7.003532px;}
.y1b{bottom:7.045236px;}
.y8{bottom:7.194804px;}
.y1ab{bottom:10.118289px;}
.y1f5{bottom:10.118294px;}
.y1ef{bottom:10.118297px;}
.y16d{bottom:10.118300px;}
.y18f{bottom:10.118301px;}
.y189{bottom:10.118307px;}
.y197{bottom:10.118311px;}
.y177{bottom:10.118315px;}
.y19e{bottom:10.118319px;}
.y1e6{bottom:10.118322px;}
.y17f{bottom:10.118336px;}
.ya{bottom:10.308574px;}
.y19{bottom:10.477302px;}
.y1df{bottom:11.242527px;}
.y1e2{bottom:11.242571px;}
.y4{bottom:13.571650px;}
.y13{bottom:13.740400px;}
.y1f8{bottom:19.112321px;}
.y18b{bottom:19.112335px;}
.y1f2{bottom:19.112339px;}
.y20f{bottom:19.112342px;}
.y16b{bottom:19.112345px;}
.y18d{bottom:19.112346px;}
.y20c{bottom:19.112349px;}
.y173{bottom:19.112360px;}
.y169{bottom:19.112363px;}
.y1e7{bottom:19.112367px;}
.y1e3{bottom:20.236616px;}
.y1aa{bottom:29.230634px;}
.y1f4{bottom:29.230639px;}
.y1ee{bottom:29.230643px;}
.y16c{bottom:29.230646px;}
.y18e{bottom:29.230647px;}
.y188{bottom:29.230653px;}
.y195{bottom:29.230657px;}
.y176{bottom:29.230660px;}
.y19d{bottom:29.230664px;}
.y1e5{bottom:29.230668px;}
.y17d{bottom:29.230682px;}
.y6{bottom:29.647452px;}
.y15{bottom:29.816158px;}
.y1de{bottom:30.354873px;}
.y1e1{bottom:30.354916px;}
.y60{bottom:32.998818px;}
.yf2{bottom:33.541084px;}
.ye9{bottom:33.956077px;}
.yeb{bottom:34.272971px;}
.y96{bottom:36.656416px;}
.y1ae{bottom:37.100449px;}
.y1f7{bottom:38.224666px;}
.y1a5{bottom:38.224679px;}
.y1f1{bottom:38.224684px;}
.y20e{bottom:38.224688px;}
.y185{bottom:38.224698px;}
.y17a{bottom:38.224701px;}
.y172{bottom:38.224705px;}
.y19a{bottom:38.224709px;}
.y4a{bottom:40.981609px;}
.y180{bottom:45.938062px;}
.y147{bottom:48.078854px;}
.y22c{bottom:48.078856px;}
.y20{bottom:48.213757px;}
.y191{bottom:48.342980px;}
.y1f3{bottom:48.342985px;}
.y1ed{bottom:48.342988px;}
.y182{bottom:48.342998px;}
.y194{bottom:48.343002px;}
.y16f{bottom:48.343006px;}
.y19c{bottom:48.343010px;}
.y17c{bottom:48.343027px;}
.y5f{bottom:49.471498px;}
.yf1{bottom:54.901941px;}
.ye8{bottom:55.316934px;}
.y1a4{bottom:57.337025px;}
.y184{bottom:57.337043px;}
.y179{bottom:57.337047px;}
.y171{bottom:57.337051px;}
.y199{bottom:57.337054px;}
.y95{bottom:58.017273px;}
.y1ad{bottom:58.461306px;}
.yd4{bottom:58.524803px;}
.y33{bottom:60.232852px;}
.y1f{bottom:61.704824px;}
.y1d0{bottom:61.767577px;}
.y49{bottom:62.342466px;}
.y1e9{bottom:63.376747px;}
.ybd{bottom:63.773484px;}
.y209{bottom:63.859222px;}
.y11c{bottom:67.026166px;}
.y1a9{bottom:67.455325px;}
.y181{bottom:67.455344px;}
.y193{bottom:67.455348px;}
.y175{bottom:67.455351px;}
.y19b{bottom:67.455355px;}
.y1a0{bottom:67.455369px;}
.y17b{bottom:67.455373px;}
.y1c5{bottom:68.738235px;}
.y146{bottom:69.439711px;}
.y22b{bottom:69.439713px;}
.y5e{bottom:70.832355px;}
.y1e{bottom:75.195892px;}
.yf0{bottom:76.262798px;}
.y1a3{bottom:76.449370px;}
.y183{bottom:76.449389px;}
.y170{bottom:76.449396px;}
.ye7{bottom:76.677790px;}
.y94{bottom:79.378129px;}
.yd3{bottom:79.885660px;}
.y1ac{bottom:82.840826px;}
.y1af{bottom:82.840869px;}
.y1cf{bottom:83.128433px;}
.y48{bottom:83.703323px;}
.ybc{bottom:85.134341px;}
.y1a8{bottom:86.567671px;}
.y187{bottom:86.567689px;}
.y196{bottom:86.567693px;}
.y174{bottom:86.567697px;}
.y17e{bottom:86.567718px;}
.y11b{bottom:88.387023px;}
.y1c4{bottom:90.099091px;}
.y1fb{bottom:90.148494px;}
.y145{bottom:90.800568px;}
.y22a{bottom:90.800569px;}
.y32{bottom:91.936888px;}
.y5d{bottom:92.193212px;}
.y1a2{bottom:95.561716px;}
.yef{bottom:97.623655px;}
.ye6{bottom:98.038647px;}
.y93{bottom:100.738986px;}
.yd2{bottom:101.246517px;}
.ya9{bottom:102.110330px;}
.y1ce{bottom:104.489290px;}
.y47{bottom:105.064180px;}
.y1a7{bottom:105.680016px;}
.y186{bottom:105.680035px;}
.ybb{bottom:106.495198px;}
.y11a{bottom:109.747879px;}
.y1c3{bottom:111.459948px;}
.y144{bottom:112.161424px;}
.y5c{bottom:113.554069px;}
.y1e8{bottom:113.968258px;}
.y208{bottom:114.450733px;}
.yee{bottom:118.984511px;}
.y1d9{bottom:119.312227px;}
.ye5{bottom:119.399504px;}
.y77{bottom:119.666212px;}
.y15b{bottom:120.148726px;}
.y92{bottom:122.099843px;}
.yd1{bottom:122.607373px;}
.y22{bottom:123.435000px;}
.ya8{bottom:123.471187px;}
.y31{bottom:123.640880px;}
.y1a6{bottom:124.792362px;}
.y11{bottom:125.795224px;}
.y1cd{bottom:125.850147px;}
.y46{bottom:126.425036px;}
.y137{bottom:126.900011px;}
.yba{bottom:127.856054px;}
.y119{bottom:131.108736px;}
.y1c2{bottom:132.820805px;}
.y143{bottom:133.522281px;}
.y229{bottom:133.522283px;}
.y5b{bottom:134.914925px;}
.y219{bottom:138.082736px;}
.yed{bottom:140.345368px;}
.ye4{bottom:140.760361px;}
.y76{bottom:141.027069px;}
.y15a{bottom:141.509583px;}
.y1d8{bottom:143.101451px;}
.y91{bottom:143.460699px;}
.yd0{bottom:143.968230px;}
.ya7{bottom:144.832043px;}
.y1cc{bottom:147.211003px;}
.y45{bottom:147.785893px;}
.y136{bottom:148.260868px;}
.y10{bottom:149.052840px;}
.yb9{bottom:149.216911px;}
.y118{bottom:152.469593px;}
.y1c1{bottom:154.181662px;}
.y142{bottom:154.883138px;}
.y228{bottom:154.883140px;}
.y30{bottom:155.344920px;}
.y5a{bottom:156.275782px;}
.y5{bottom:159.434999px;}
.y218{bottom:159.443593px;}
.y1fa{bottom:159.852347px;}
.yec{bottom:161.706225px;}
.ye3{bottom:162.121217px;}
.yb{bottom:162.314998px;}
.y75{bottom:162.387925px;}
.y159{bottom:162.870440px;}
.y1e4{bottom:164.559768px;}
.y90{bottom:164.821556px;}
.y207{bottom:165.042201px;}
.y206{bottom:165.042244px;}
.ycf{bottom:165.329087px;}
.ya6{bottom:166.192900px;}
.y1d7{bottom:166.890718px;}
.y1cb{bottom:168.571860px;}
.y44{bottom:169.146750px;}
.y135{bottom:169.621725px;}
.yb8{bottom:170.577768px;}
.yf{bottom:172.587267px;}
.y178{bottom:172.978943px;}
.y117{bottom:173.830449px;}
.y1c0{bottom:175.542518px;}
.y141{bottom:176.243994px;}
.y227{bottom:176.243996px;}
.y59{bottom:177.636639px;}
.y217{bottom:180.804450px;}
.ye2{bottom:183.482074px;}
.y74{bottom:183.748782px;}
.y158{bottom:184.231296px;}
.yfb{bottom:185.495492px;}
.y8f{bottom:186.182413px;}
.yce{bottom:186.689944px;}
.y2f{bottom:187.048912px;}
.ya5{bottom:187.553757px;}
.y1ca{bottom:189.932717px;}
.y43{bottom:190.507607px;}
.y1d6{bottom:190.679985px;}
.y19f{bottom:190.769365px;}
.y1a1{bottom:190.769408px;}
.y134{bottom:190.982581px;}
.yb7{bottom:191.938625px;}
.y116{bottom:195.191306px;}
.y1bf{bottom:196.903375px;}
.y140{bottom:197.604851px;}
.y226{bottom:197.604853px;}
.y58{bottom:198.997495px;}
.y216{bottom:202.165307px;}
.ye1{bottom:204.842931px;}
.y73{bottom:205.109639px;}
.y157{bottom:205.592153px;}
.y8e{bottom:207.543270px;}
.ycd{bottom:208.050800px;}
.ya4{bottom:208.914614px;}
.yfa{bottom:209.284759px;}
.y7f{bottom:209.594265px;}
.y1f9{bottom:210.443861px;}
.y1c9{bottom:211.293574px;}
.y42{bottom:211.868463px;}
.y133{bottom:212.343438px;}
.yb6{bottom:213.299481px;}
.y3{bottom:213.794996px;}
.y1d5{bottom:214.469248px;}
.y1e0{bottom:215.113488px;}
.y1dd{bottom:215.113532px;}
.y115{bottom:216.552163px;}
.y1be{bottom:218.264232px;}
.y2e{bottom:218.752905px;}
.y13f{bottom:218.965708px;}
.y57{bottom:220.358352px;}
.y215{bottom:223.526163px;}
.ye0{bottom:226.203788px;}
.y72{bottom:226.470496px;}
.y156{bottom:226.953010px;}
.y8d{bottom:228.904126px;}
.ycc{bottom:229.411657px;}
.ya3{bottom:230.275470px;}
.y7e{bottom:231.134983px;}
.y1c8{bottom:232.654430px;}
.yf9{bottom:233.073979px;}
.y41{bottom:233.229320px;}
.y132{bottom:233.704295px;}
.yb5{bottom:234.660338px;}
.y205{bottom:237.215267px;}
.y114{bottom:237.913020px;}
.y68{bottom:238.181349px;}
.y1d4{bottom:238.258472px;}
.y1bd{bottom:239.625089px;}
.y13e{bottom:240.326565px;}
.y225{bottom:240.326566px;}
.y56{bottom:241.719209px;}
.y214{bottom:244.887020px;}
.ydf{bottom:247.564644px;}
.y155{bottom:248.313867px;}
.y8c{bottom:250.264983px;}
.y2d{bottom:250.456941px;}
.ycb{bottom:250.772514px;}
.ya2{bottom:251.636327px;}
.y7d{bottom:252.675741px;}
.y1c7{bottom:254.015287px;}
.y40{bottom:254.590177px;}
.y131{bottom:255.065151px;}
.yb4{bottom:256.021195px;}
.yf8{bottom:256.863246px;}
.y204{bottom:258.576123px;}
.y67{bottom:259.722089px;}
.y1bc{bottom:260.985945px;}
.y13d{bottom:261.687421px;}
.y224{bottom:261.687423px;}
.y113{bottom:261.702261px;}
.y1d3{bottom:262.047739px;}
.y55{bottom:263.080066px;}
.y7{bottom:265.994994px;}
.y213{bottom:266.247877px;}
.y1dc{bottom:266.829251px;}
.yde{bottom:268.925501px;}
.y154{bottom:269.674723px;}
.y8b{bottom:271.625840px;}
.yca{bottom:272.133370px;}
.ya1{bottom:273.177063px;}
.y1c6{bottom:275.376144px;}
.y3f{bottom:275.951033px;}
.y130{bottom:276.426008px;}
.yb3{bottom:277.382052px;}
.y203{bottom:279.936980px;}
.y1f6{bottom:280.147713px;}
.yf7{bottom:280.652513px;}
.y16e{bottom:280.907482px;}
.y6f{bottom:281.262846px;}
.y2c{bottom:282.160934px;}
.y1bb{bottom:282.346802px;}
.y13c{bottom:283.048278px;}
.y223{bottom:283.048280px;}
.y9{bottom:283.274993px;}
.y54{bottom:284.440922px;}
.y112{bottom:285.491528px;}
.y1d2{bottom:285.713036px;}
.ydd{bottom:290.286358px;}
.y153{bottom:291.035580px;}
.y8a{bottom:292.986696px;}
.yc9{bottom:293.494227px;}
.y212{bottom:294.163104px;}
.y166{bottom:296.737001px;}
.ya0{bottom:296.966287px;}
.y3e{bottom:297.311890px;}
.y14{bottom:297.674993px;}
.y12f{bottom:297.786865px;}
.yb2{bottom:298.742908px;}
.y1a{bottom:300.554993px;}
.y202{bottom:301.297837px;}
.y6e{bottom:302.803542px;}
.y1ba{bottom:303.707659px;}
.y13b{bottom:304.409135px;}
.y222{bottom:304.409137px;}
.yf6{bottom:304.441758px;}
.y53{bottom:305.801779px;}
.y111{bottom:309.378355px;}
.ydc{bottom:311.647214px;}
.y152{bottom:312.396437px;}
.y2b{bottom:313.864948px;}
.y104{bottom:314.235263px;}
.y89{bottom:314.347553px;}
.yc8{bottom:314.855084px;}
.ybe{bottom:317.900228px;}
.y165{bottom:318.097857px;}
.y3d{bottom:318.672747px;}
.y12e{bottom:319.147722px;}
.y9f{bottom:320.755554px;}
.y201{bottom:322.658694px;}
.y6d{bottom:324.344282px;}
.y1b9{bottom:325.068515px;}
.y13a{bottom:325.769992px;}
.y221{bottom:325.769993px;}
.y52{bottom:327.162636px;}
.yf5{bottom:328.230982px;}
.ydb{bottom:333.008071px;}
.y110{bottom:333.069998px;}
.y151{bottom:333.757293px;}
.y80{bottom:334.503824px;}
.y103{bottom:335.596119px;}
.y88{bottom:335.708410px;}
.yc7{bottom:336.215941px;}
.y1db{bottom:336.533108px;}
.y198{bottom:336.922591px;}
.yb1{bottom:338.959173px;}
.y164{bottom:339.458714px;}
.y3c{bottom:340.033604px;}
.y12d{bottom:340.508578px;}
.y9a{bottom:344.544778px;}
.y211{bottom:344.754614px;}
.y2a{bottom:345.568962px;}
.y6c{bottom:345.885021px;}
.y1b8{bottom:346.429372px;}
.y139{bottom:347.130848px;}
.y51{bottom:348.523492px;}
.y1f0{bottom:349.851569px;}
.y200{bottom:350.475064px;}
.yf4{bottom:352.020224px;}
.y12{bottom:352.034991px;}
.yda{bottom:354.368928px;}
.y150{bottom:355.118150px;}
.y7c{bottom:356.044559px;}
.y10f{bottom:356.859243px;}
.y102{bottom:356.956976px;}
.y87{bottom:357.069267px;}
.yc6{bottom:357.576797px;}
.y163{bottom:360.819571px;}
.y3b{bottom:361.394460px;}
.y12c{bottom:361.869435px;}
.yb0{bottom:363.089698px;}
.y6b{bottom:367.425761px;}
.y1b7{bottom:367.790229px;}
.y9e{bottom:368.334045px;}
.y220{bottom:368.491707px;}
.y50{bottom:369.884349px;}
.y124{bottom:373.806156px;}
.yd9{bottom:375.729785px;}
.yf3{bottom:375.809491px;}
.y14f{bottom:376.479007px;}
.y29{bottom:377.272955px;}
.y81{bottom:377.585299px;}
.y101{bottom:378.317833px;}
.y86{bottom:378.430123px;}
.yc5{bottom:378.937654px;}
.y10e{bottom:380.648506px;}
.y162{bottom:382.180427px;}
.y3a{bottom:382.755317px;}
.y12b{bottom:383.230292px;}
.yaf{bottom:384.630437px;}
.y16a{bottom:388.836022px;}
.y168{bottom:388.836026px;}
.y6a{bottom:388.966497px;}
.y1b6{bottom:389.151086px;}
.y21f{bottom:389.852564px;}
.y4f{bottom:391.245206px;}
.y9d{bottom:392.123286px;}
.y123{bottom:394.199089px;}
.y210{bottom:395.346128px;}
.yd8{bottom:397.090641px;}
.y14e{bottom:397.839864px;}
.y7b{bottom:398.878164px;}
.y100{bottom:399.678690px;}
.y85{bottom:399.790980px;}
.yc4{bottom:400.298511px;}
.y161{bottom:403.541284px;}
.y39{bottom:404.116174px;}
.y10d{bottom:404.437752px;}
.y12a{bottom:404.591149px;}
.y16{bottom:404.594988px;}
.yae{bottom:406.171177px;}
.y28{bottom:408.976969px;}
.y69{bottom:410.507236px;}
.y1b5{bottom:410.511942px;}
.y21e{bottom:411.213420px;}
.y4e{bottom:412.606063px;}
.y122{bottom:414.615574px;}
.y99{bottom:415.912532px;}
.yd7{bottom:418.451498px;}
.y14d{bottom:419.200720px;}
.y1eb{bottom:419.555400px;}
.y1ec{bottom:419.555421px;}
.y1ff{bottom:420.178917px;}
.yff{bottom:421.039546px;}
.y84{bottom:421.151837px;}
.y18{bottom:421.514988px;}
.yc3{bottom:421.659367px;}
.y160{bottom:424.902141px;}
.y38{bottom:425.477031px;}
.y192{bottom:425.738792px;}
.y190{bottom:425.738813px;}
.y129{bottom:425.952005px;}
.yad{bottom:427.711913px;}
.y10c{bottom:428.226997px;}
.y1b4{bottom:431.872799px;}
.y66{bottom:432.047967px;}
.y21d{bottom:432.574277px;}
.y4d{bottom:433.966919px;}
.y121{bottom:435.616677px;}
.y9c{bottom:439.701777px;}
.yd6{bottom:439.812355px;}
.y14c{bottom:440.561577px;}
.y27{bottom:440.680987px;}
.yfe{bottom:442.400403px;}
.y83{bottom:442.512694px;}
.yc2{bottom:443.020224px;}
.y15f{bottom:446.262998px;}
.y37{bottom:446.837887px;}
.y128{bottom:447.312862px;}
.yac{bottom:449.252642px;}
.y10b{bottom:452.016253px;}
.y1b3{bottom:453.233656px;}
.y65{bottom:453.408823px;}
.y21c{bottom:453.935134px;}
.y4c{bottom:455.327776px;}
.y120{bottom:457.157392px;}
.y14b{bottom:461.922434px;}
.yea{bottom:462.477356px;}
.y98{bottom:463.491033px;}
.yfd{bottom:463.761260px;}
.y82{bottom:463.873550px;}
.yc1{bottom:464.381081px;}
.y20d{bottom:465.049980px;}
.y15e{bottom:467.623854px;}
.y36{bottom:468.198744px;}
.yab{bottom:468.544875px;}
.y127{bottom:468.673719px;}
.y1fe{bottom:470.770427px;}
.y1fd{bottom:470.770430px;}
.y26{bottom:472.759732px;}
.y1b2{bottom:474.594512px;}
.y63{bottom:474.701706px;}
.y1d{bottom:475.242411px;}
.y10a{bottom:475.805499px;}
.y4b{bottom:476.688633px;}
.y11f{bottom:478.698142px;}
.y14a{bottom:483.283291px;}
.yfc{bottom:485.122116px;}
.y7a{bottom:485.234407px;}
.yc0{bottom:485.741938px;}
.y9b{bottom:487.111583px;}
.y15d{bottom:488.984711px;}
.y1ea{bottom:489.259253px;}
.yaa{bottom:489.551548px;}
.y35{bottom:489.559601px;}
.y126{bottom:490.034575px;}
.y1b1{bottom:495.955369px;}
.y62{bottom:496.062563px;}
.y21b{bottom:496.656847px;}
.y109{bottom:499.594741px;}
.y11e{bottom:500.238881px;}
.y1c{bottom:502.180580px;}
.y148{bottom:504.419824px;}
.y149{bottom:504.644147px;}
.y25{bottom:504.959474px;}
.y106{bottom:506.258660px;}
.yd5{bottom:506.482973px;}
.y79{bottom:506.595264px;}
.ybf{bottom:506.718373px;}
.y97{bottom:509.383557px;}
.y1da{bottom:509.483583px;}
.y34{bottom:509.494167px;}
.y15c{bottom:510.345568px;}
.y138{bottom:510.507819px;}
.y125{bottom:511.395432px;}
.y167{bottom:511.632074px;}
.y1d1{bottom:512.306624px;}
.y64{bottom:514.480171px;}
.y1b0{bottom:517.316226px;}
.y61{bottom:517.423420px;}
.y21a{bottom:518.017704px;}
.y11d{bottom:519.687978px;}
.y108{bottom:523.383997px;}
.y78{bottom:527.956120px;}
.y18c{bottom:533.667345px;}
.y18a{bottom:533.667356px;}
.y20b{bottom:534.791598px;}
.y20a{bottom:534.791609px;}
.y1fc{bottom:540.474276px;}
.y21{bottom:543.454841px;}
.y107{bottom:547.173242px;}
.y71{bottom:549.316977px;}
.y105{bottom:551.730420px;}
.y24{bottom:555.402977px;}
.ye{bottom:570.393019px;}
.y70{bottom:570.677834px;}
.y1{bottom:571.274981px;}
.h13{height:9.360000px;}
.h2{height:14.039999px;}
.h14{height:24.008095px;}
.hc{height:26.279999px;}
.h10{height:26.639999px;}
.h8{height:27.719999px;}
.h3{height:28.792862px;}
.h20{height:37.774989px;}
.h3b{height:38.336218px;}
.h27{height:40.581131px;}
.h1d{height:40.638693px;}
.h23{height:40.696255px;}
.h22{height:40.702535px;}
.h1f{height:40.811379px;}
.h32{height:40.984065px;}
.h1c{height:41.961716px;}
.he{height:42.261443px;}
.h21{height:43.286540px;}
.ha{height:44.639998px;}
.hf{height:44.999998px;}
.h12{height:45.222058px;}
.h16{height:46.544002px;}
.h17{height:46.741781px;}
.h3c{height:47.430996px;}
.h1b{height:48.236863px;}
.h39{height:48.342984px;}
.h3a{height:48.342995px;}
.h28{height:49.467237px;}
.h2c{height:49.467248px;}
.h26{height:49.467259px;}
.h11{height:50.234169px;}
.h34{height:50.591467px;}
.h35{height:50.591511px;}
.h4{height:53.999998px;}
.h1a{height:54.683794px;}
.h36{height:68.579580px;}
.h38{height:68.579587px;}
.h37{height:68.579590px;}
.h33{height:68.579601px;}
.h9{height:80.338460px;}
.h2f{height:87.691946px;}
.h6{height:89.279996px;}
.h1e{height:103.945167px;}
.h2d{height:106.804277px;}
.h29{height:106.804288px;}
.h2e{height:106.804299px;}
.h2a{height:106.804310px;}
.h19{height:111.803989px;}
.h25{height:114.355279px;}
.h2b{height:125.916630px;}
.h18{height:128.522744px;}
.h15{height:131.999572px;}
.hb{height:133.863959px;}
.h24{height:141.394301px;}
.h31{height:145.028953px;}
.h30{height:145.028975px;}
.h5{height:150.072300px;}
.h7{height:233.307352px;}
.h1{height:628.500000px;}
.hd{height:628.874974px;}
.h0{height:628.874994px;}
.w11{width:75.325140px;}
.w15{width:79.822152px;}
.w12{width:92.188955px;}
.wf{width:92.188965px;}
.wb{width:95.039996px;}
.w13{width:101.183000px;}
.w7{width:111.959995px;}
.wa{width:112.319995px;}
.w17{width:114.674078px;}
.w18{width:116.922563px;}
.wd{width:116.922584px;}
.we{width:116.922595px;}
.w16{width:120.295345px;}
.w19{width:121.419596px;}
.w1a{width:121.419607px;}
.w1b{width:121.419618px;}
.w3{width:131.039995px;}
.w6{width:140.399994px;}
.w14{width:172.011107px;}
.w10{width:183.253669px;}
.w4{width:202.319992px;}
.w5{width:216.719991px;}
.w9{width:217.079991px;}
.w2{width:238.319990px;}
.wc{width:446.399981px;}
.w8{width:446.624981px;}
.w0{width:446.625000px;}
.w1{width:447.000000px;}
.x0{left:0.000000px;}
.x2{left:1.359658px;}
.x37{left:4.040284px;}
.x5{left:5.351516px;}
.x3f{left:7.272519px;}
.x31{left:8.361656px;}
.x3a{left:9.591310px;}
.x35{left:10.680433px;}
.x38{left:12.050605px;}
.x3c{left:13.227575px;}
.x34{left:14.843687px;}
.x4{left:16.919999px;}
.x42{left:18.761006px;}
.x3d{left:21.185182px;}
.x47{left:22.695908px;}
.x39{left:23.943131px;}
.x4c{left:25.330884px;}
.x3b{left:26.490278px;}
.x41{left:28.018548px;}
.x4e{left:29.072549px;}
.x2f{left:30.600833px;}
.x36{left:32.322354px;}
.x33{left:33.604693px;}
.x40{left:35.291091px;}
.x3e{left:36.872061px;}
.x4b{left:38.523322px;}
.x29{left:40.366970px;}
.x44{left:43.267020px;}
.x10{left:44.616131px;}
.x13{left:45.965238px;}
.x1a{left:47.180839px;}
.x1c{left:48.568088px;}
.x24{left:50.799536px;}
.x4d{left:56.054683px;}
.x28{left:57.852141px;}
.x26{left:62.983401px;}
.x49{left:64.469034px;}
.x43{left:69.068690px;}
.x14{left:71.088151px;}
.x2a{left:72.616437px;}
.x25{left:77.271557px;}
.x6{left:79.559997px;}
.x19{left:84.324161px;}
.x51{left:93.538816px;}
.x1{left:105.119996px;}
.xe{left:109.965592px;}
.x3{left:119.519995px;}
.xc{left:121.319995px;}
.x8{left:133.834070px;}
.xf{left:139.707865px;}
.x45{left:140.752798px;}
.x48{left:147.611661px;}
.x7{left:153.202933px;}
.x4f{left:162.414760px;}
.x30{left:164.341980px;}
.x11{left:172.806869px;}
.x12{left:175.679993px;}
.x2b{left:179.052894px;}
.xd{left:183.959992px;}
.x9{left:194.218894px;}
.x2e{left:199.085089px;}
.xa{left:208.693687px;}
.x2c{left:211.500564px;}
.x2d{left:213.774709px;}
.xb{left:223.919991px;}
.x1d{left:245.312569px;}
.x1e{left:248.193474px;}
.x21{left:249.971364px;}
.x18{left:250.982754px;}
.x17{left:270.061272px;}
.x1f{left:274.665494px;}
.x16{left:280.072868px;}
.x32{left:282.943576px;}
.x50{left:284.870775px;}
.x20{left:294.554979px;}
.x23{left:308.727473px;}
.x22{left:313.541155px;}
.x4a{left:320.362082px;}
.x46{left:325.604409px;}
.x27{left:384.322644px;}
.x1b{left:387.882202px;}
.x15{left:391.157731px;}
@media print{
.v2{vertical-align:-28.383257pt;}
.v6{vertical-align:-13.004790pt;}
.v3{vertical-align:-4.944293pt;}
.v4{vertical-align:-3.403586pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.602263pt;}
.v1{vertical-align:10.393140pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000105pt;}
.ls2{letter-spacing:8.100911pt;}
.wse{word-spacing:-56.862551pt;}
.ws10{word-spacing:-55.572885pt;}
.ws8{word-spacing:-50.513914pt;}
.ws0{word-spacing:-47.642000pt;}
.ws1{word-spacing:-42.393478pt;}
.wsa{word-spacing:-31.485675pt;}
.wsb{word-spacing:-28.027762pt;}
.wsc{word-spacing:-26.642360pt;}
.ws4{word-spacing:-24.191263pt;}
.wsd{word-spacing:-23.984120pt;}
.wsf{word-spacing:-14.121850pt;}
.ws11{word-spacing:-11.512378pt;}
.ws3{word-spacing:-10.656944pt;}
.ws9{word-spacing:-10.233225pt;}
.ws2{word-spacing:0.000000pt;}
.ws7{word-spacing:951.529413pt;}
.ws5{word-spacing:973.350682pt;}
.ws6{word-spacing:1034.660629pt;}
._35{margin-left:-7.000106pt;}
._39{margin-left:-5.839117pt;}
._7{margin-left:-4.558780pt;}
._2{margin-left:-3.440039pt;}
._4{margin-left:-2.292743pt;}
._1{margin-left:-1.382129pt;}
._5{width:1.063790pt;}
._3{width:2.104380pt;}
._6{width:3.060367pt;}
._19{width:4.402136pt;}
._1b{width:5.342479pt;}
._25{width:6.255181pt;}
._14{width:7.178840pt;}
._0{width:8.357355pt;}
._20{width:9.337814pt;}
._15{width:11.126302pt;}
._1e{width:12.901429pt;}
._2f{width:13.794019pt;}
._1c{width:14.692434pt;}
._24{width:15.963837pt;}
._1a{width:17.084669pt;}
._23{width:18.089784pt;}
._1f{width:19.213493pt;}
._16{width:20.122602pt;}
._22{width:21.236661pt;}
._21{width:22.428848pt;}
._26{width:23.435064pt;}
._2b{width:24.402126pt;}
._18{width:26.040838pt;}
._17{width:27.036910pt;}
._2c{width:28.549401pt;}
._28{width:29.477970pt;}
._36{width:30.498275pt;}
._34{width:31.406894pt;}
._2e{width:32.821709pt;}
._27{width:33.783734pt;}
._37{width:35.581643pt;}
._32{width:37.086865pt;}
._33{width:38.397252pt;}
._31{width:39.916635pt;}
._29{width:40.941687pt;}
._2a{width:42.312938pt;}
._3a{width:44.848332pt;}
._3b{width:61.805838pt;}
._8{width:509.355444pt;}
._f{width:511.821111pt;}
._e{width:612.256269pt;}
._10{width:634.430395pt;}
._11{width:770.069297pt;}
._c{width:782.634254pt;}
._38{width:797.339574pt;}
._13{width:870.833386pt;}
._2d{width:873.679430pt;}
._b{width:883.814224pt;}
._30{width:920.679714pt;}
._1d{width:937.942706pt;}
._9{width:962.984339pt;}
._12{width:982.527271pt;}
._d{width:995.298004pt;}
._a{width:1013.334209pt;}
.fs7{font-size:29.313914pt;}
.fs0{font-size:37.308535pt;}
.fs6{font-size:47.968240pt;}
.fsb{font-size:51.166123pt;}
.fs5{font-size:53.284719pt;}
.fs9{font-size:58.601199pt;}
.fs3{font-size:64.861003pt;}
.fs8{font-size:106.569439pt;}
.fs4{font-size:108.074646pt;}
.fsc{font-size:117.242372pt;}
.fsa{font-size:149.221207pt;}
.fs1{font-size:190.568000pt;}
.fs2{font-size:286.442421pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:0.000005pt;}
.y23{bottom:2.592970pt;}
.y2{bottom:3.146794pt;}
.yc{bottom:6.112452pt;}
.y17{bottom:6.225362pt;}
.y1b{bottom:6.262432pt;}
.y8{bottom:6.395381pt;}
.y1ab{bottom:8.994035pt;}
.y1f5{bottom:8.994039pt;}
.y1ef{bottom:8.994042pt;}
.y16d{bottom:8.994044pt;}
.y18f{bottom:8.994045pt;}
.y189{bottom:8.994051pt;}
.y197{bottom:8.994054pt;}
.y177{bottom:8.994057pt;}
.y19e{bottom:8.994061pt;}
.y1e6{bottom:8.994064pt;}
.y17f{bottom:8.994077pt;}
.ya{bottom:9.163177pt;}
.y19{bottom:9.313157pt;}
.y1df{bottom:9.993357pt;}
.y1e2{bottom:9.993396pt;}
.y4{bottom:12.063689pt;}
.y13{bottom:12.213689pt;}
.y1f8{bottom:16.988729pt;}
.y18b{bottom:16.988742pt;}
.y1f2{bottom:16.988745pt;}
.y20f{bottom:16.988749pt;}
.y16b{bottom:16.988751pt;}
.y18d{bottom:16.988752pt;}
.y20c{bottom:16.988754pt;}
.y173{bottom:16.988764pt;}
.y169{bottom:16.988767pt;}
.y1e7{bottom:16.988771pt;}
.y1e3{bottom:17.988103pt;}
.y1aa{bottom:25.982786pt;}
.y1f4{bottom:25.982790pt;}
.y1ee{bottom:25.982794pt;}
.y16c{bottom:25.982796pt;}
.y18e{bottom:25.982797pt;}
.y188{bottom:25.982802pt;}
.y195{bottom:25.982806pt;}
.y176{bottom:25.982809pt;}
.y19d{bottom:25.982812pt;}
.y1e5{bottom:25.982816pt;}
.y17d{bottom:25.982828pt;}
.y6{bottom:26.353291pt;}
.y15{bottom:26.503251pt;}
.y1de{bottom:26.982109pt;}
.y1e1{bottom:26.982148pt;}
.y60{bottom:29.332283pt;}
.yf2{bottom:29.814297pt;}
.ye9{bottom:30.183180pt;}
.yeb{bottom:30.464863pt;}
.y96{bottom:32.583481pt;}
.y1ae{bottom:32.978177pt;}
.y1f7{bottom:33.977481pt;}
.y1a5{bottom:33.977493pt;}
.y1f1{bottom:33.977497pt;}
.y20e{bottom:33.977500pt;}
.y185{bottom:33.977509pt;}
.y17a{bottom:33.977512pt;}
.y172{bottom:33.977516pt;}
.y19a{bottom:33.977519pt;}
.y4a{bottom:36.428097pt;}
.y180{bottom:40.833833pt;}
.y147{bottom:42.736759pt;}
.y22c{bottom:42.736761pt;}
.y20{bottom:42.856673pt;}
.y191{bottom:42.971538pt;}
.y1f3{bottom:42.971542pt;}
.y1ed{bottom:42.971545pt;}
.y182{bottom:42.971554pt;}
.y194{bottom:42.971557pt;}
.y16f{bottom:42.971561pt;}
.y19c{bottom:42.971564pt;}
.y17c{bottom:42.971580pt;}
.y5f{bottom:43.974665pt;}
.yf1{bottom:48.801725pt;}
.ye8{bottom:49.170608pt;}
.y1a4{bottom:50.966244pt;}
.y184{bottom:50.966261pt;}
.y179{bottom:50.966264pt;}
.y171{bottom:50.966267pt;}
.y199{bottom:50.966271pt;}
.y95{bottom:51.570909pt;}
.y1ad{bottom:51.965606pt;}
.yd4{bottom:52.022047pt;}
.y33{bottom:53.540313pt;}
.y1f{bottom:54.848733pt;}
.y1d0{bottom:54.904513pt;}
.y49{bottom:55.415525pt;}
.y1e9{bottom:56.334886pt;}
.ybd{bottom:56.687542pt;}
.y209{bottom:56.763753pt;}
.y11c{bottom:59.578814pt;}
.y1a9{bottom:59.960289pt;}
.y181{bottom:59.960305pt;}
.y193{bottom:59.960309pt;}
.y175{bottom:59.960312pt;}
.y19b{bottom:59.960316pt;}
.y1a0{bottom:59.960328pt;}
.y17b{bottom:59.960331pt;}
.y1c5{bottom:61.100653pt;}
.y146{bottom:61.724187pt;}
.y22b{bottom:61.724189pt;}
.y5e{bottom:62.962093pt;}
.y1e{bottom:66.840793pt;}
.yf0{bottom:67.789154pt;}
.y1a3{bottom:67.954996pt;}
.y183{bottom:67.955012pt;}
.y170{bottom:67.955019pt;}
.ye7{bottom:68.158036pt;}
.y94{bottom:70.558337pt;}
.yd3{bottom:71.009475pt;}
.y1ac{bottom:73.636290pt;}
.y1af{bottom:73.636328pt;}
.y1cf{bottom:73.891941pt;}
.y48{bottom:74.402954pt;}
.ybc{bottom:75.674970pt;}
.y1a8{bottom:76.949041pt;}
.y187{bottom:76.949057pt;}
.y196{bottom:76.949060pt;}
.y174{bottom:76.949064pt;}
.y17e{bottom:76.949083pt;}
.y11b{bottom:78.566242pt;}
.y1c4{bottom:80.088081pt;}
.y1fb{bottom:80.131995pt;}
.y145{bottom:80.711616pt;}
.y22a{bottom:80.711617pt;}
.y32{bottom:81.721678pt;}
.y5d{bottom:81.949522pt;}
.y1a2{bottom:84.943747pt;}
.yef{bottom:86.776582pt;}
.ye6{bottom:87.145464pt;}
.y93{bottom:89.545765pt;}
.yd2{bottom:89.996904pt;}
.ya9{bottom:90.764738pt;}
.y1ce{bottom:92.879369pt;}
.y47{bottom:93.390382pt;}
.y1a7{bottom:93.937792pt;}
.y186{bottom:93.937809pt;}
.ybb{bottom:94.662398pt;}
.y11a{bottom:97.553670pt;}
.y1c3{bottom:99.075509pt;}
.y144{bottom:99.699044pt;}
.y5c{bottom:100.936950pt;}
.y1e8{bottom:101.305118pt;}
.y208{bottom:101.733985pt;}
.yee{bottom:105.764010pt;}
.y1d9{bottom:106.055313pt;}
.ye5{bottom:106.132892pt;}
.y77{bottom:106.369966pt;}
.y15b{bottom:106.798868pt;}
.y92{bottom:108.533193pt;}
.yd1{bottom:108.984332pt;}
.y22{bottom:109.720000pt;}
.ya8{bottom:109.752166pt;}
.y31{bottom:109.903005pt;}
.y1a6{bottom:110.926544pt;}
.y11{bottom:111.817977pt;}
.y1cd{bottom:111.866797pt;}
.y46{bottom:112.377810pt;}
.y137{bottom:112.800010pt;}
.yba{bottom:113.649826pt;}
.y119{bottom:116.541099pt;}
.y1c2{bottom:118.062938pt;}
.y143{bottom:118.686472pt;}
.y229{bottom:118.686474pt;}
.y5b{bottom:119.924378pt;}
.y219{bottom:122.740210pt;}
.yed{bottom:124.751438pt;}
.ye4{bottom:125.120321pt;}
.y76{bottom:125.357394pt;}
.y15a{bottom:125.786296pt;}
.y1d8{bottom:127.201290pt;}
.y91{bottom:127.520622pt;}
.yd0{bottom:127.971760pt;}
.ya7{bottom:128.739594pt;}
.y1cc{bottom:130.854225pt;}
.y45{bottom:131.365238pt;}
.y136{bottom:131.787438pt;}
.y10{bottom:132.491413pt;}
.yb9{bottom:132.637254pt;}
.y118{bottom:135.528527pt;}
.y1c1{bottom:137.050366pt;}
.y142{bottom:137.673900pt;}
.y228{bottom:137.673902pt;}
.y30{bottom:138.084373pt;}
.y5a{bottom:138.911806pt;}
.y5{bottom:141.719999pt;}
.y218{bottom:141.727638pt;}
.y1fa{bottom:142.090975pt;}
.yec{bottom:143.738866pt;}
.ye3{bottom:144.107749pt;}
.yb{bottom:144.279999pt;}
.y75{bottom:144.344823pt;}
.y159{bottom:144.773724pt;}
.y1e4{bottom:146.275350pt;}
.y90{bottom:146.508050pt;}
.y207{bottom:146.704178pt;}
.y206{bottom:146.704217pt;}
.ycf{bottom:146.959188pt;}
.ya6{bottom:147.727022pt;}
.y1d7{bottom:148.347305pt;}
.y1cb{bottom:149.841654pt;}
.y44{bottom:150.352667pt;}
.y135{bottom:150.774866pt;}
.yb8{bottom:151.624683pt;}
.yf{bottom:153.410904pt;}
.y178{bottom:153.759061pt;}
.y117{bottom:154.515955pt;}
.y1c0{bottom:156.037794pt;}
.y141{bottom:156.661328pt;}
.y227{bottom:156.661330pt;}
.y59{bottom:157.899234pt;}
.y217{bottom:160.715067pt;}
.ye2{bottom:163.095177pt;}
.y74{bottom:163.332251pt;}
.y158{bottom:163.761152pt;}
.yfb{bottom:164.884882pt;}
.y8f{bottom:165.495478pt;}
.yce{bottom:165.946616pt;}
.y2f{bottom:166.265700pt;}
.ya5{bottom:166.714451pt;}
.y1ca{bottom:168.829082pt;}
.y43{bottom:169.340095pt;}
.y1d6{bottom:169.493320pt;}
.y19f{bottom:169.572769pt;}
.y1a1{bottom:169.572807pt;}
.y134{bottom:169.762294pt;}
.yb7{bottom:170.612111pt;}
.y116{bottom:173.503383pt;}
.y1bf{bottom:175.025222pt;}
.y140{bottom:175.648757pt;}
.y226{bottom:175.648758pt;}
.y58{bottom:176.886663pt;}
.y216{bottom:179.702495pt;}
.ye1{bottom:182.082605pt;}
.y73{bottom:182.319679pt;}
.y157{bottom:182.748581pt;}
.y8e{bottom:184.482906pt;}
.ycd{bottom:184.934045pt;}
.ya4{bottom:185.701879pt;}
.yfa{bottom:186.030897pt;}
.y7f{bottom:186.306013pt;}
.y1f9{bottom:187.061210pt;}
.y1c9{bottom:187.816510pt;}
.y42{bottom:188.327523pt;}
.y133{bottom:188.749723pt;}
.yb6{bottom:189.599539pt;}
.y3{bottom:190.039997pt;}
.y1d5{bottom:190.639332pt;}
.y1e0{bottom:191.211990pt;}
.y1dd{bottom:191.212029pt;}
.y115{bottom:192.490811pt;}
.y1be{bottom:194.012650pt;}
.y2e{bottom:194.447027pt;}
.y13f{bottom:194.636185pt;}
.y57{bottom:195.874091pt;}
.y215{bottom:198.689923pt;}
.ye0{bottom:201.070033pt;}
.y72{bottom:201.307107pt;}
.y156{bottom:201.736009pt;}
.y8d{bottom:203.470334pt;}
.ycc{bottom:203.921473pt;}
.ya3{bottom:204.689307pt;}
.y7e{bottom:205.453318pt;}
.y1c8{bottom:206.803938pt;}
.yf9{bottom:207.176870pt;}
.y41{bottom:207.314951pt;}
.y132{bottom:207.737151pt;}
.yb5{bottom:208.586967pt;}
.y205{bottom:210.858015pt;}
.y114{bottom:211.478240pt;}
.y68{bottom:211.716755pt;}
.y1d4{bottom:211.785308pt;}
.y1bd{bottom:213.000079pt;}
.y13e{bottom:213.623613pt;}
.y225{bottom:213.623615pt;}
.y56{bottom:214.861519pt;}
.y214{bottom:217.677351pt;}
.ydf{bottom:220.057462pt;}
.y155{bottom:220.723437pt;}
.y8c{bottom:222.457763pt;}
.y2d{bottom:222.628392pt;}
.ycb{bottom:222.908901pt;}
.ya2{bottom:223.676735pt;}
.y7d{bottom:224.600658pt;}
.y1c7{bottom:225.791366pt;}
.y40{bottom:226.302379pt;}
.y131{bottom:226.724579pt;}
.yb4{bottom:227.574395pt;}
.yf8{bottom:228.322885pt;}
.y204{bottom:229.845443pt;}
.y67{bottom:230.864079pt;}
.y1bc{bottom:231.987507pt;}
.y13d{bottom:232.611041pt;}
.y224{bottom:232.611043pt;}
.y113{bottom:232.624232pt;}
.y1d3{bottom:232.931324pt;}
.y55{bottom:233.848947pt;}
.y7{bottom:236.439995pt;}
.y213{bottom:236.664779pt;}
.y1dc{bottom:237.181556pt;}
.yde{bottom:239.044890pt;}
.y154{bottom:239.710865pt;}
.y8b{bottom:241.445191pt;}
.yca{bottom:241.896329pt;}
.ya1{bottom:242.824056pt;}
.y1c6{bottom:244.778795pt;}
.y3f{bottom:245.289808pt;}
.y130{bottom:245.712007pt;}
.yb3{bottom:246.561824pt;}
.y203{bottom:248.832871pt;}
.y1f6{bottom:249.020189pt;}
.yf7{bottom:249.468900pt;}
.y16e{bottom:249.695540pt;}
.y6f{bottom:250.011419pt;}
.y2c{bottom:250.809719pt;}
.y1bb{bottom:250.974935pt;}
.y13c{bottom:251.598469pt;}
.y223{bottom:251.598471pt;}
.y9{bottom:251.799994pt;}
.y54{bottom:252.836375pt;}
.y112{bottom:253.770247pt;}
.y1d2{bottom:253.967143pt;}
.ydd{bottom:258.032318pt;}
.y153{bottom:258.698293pt;}
.y8a{bottom:260.432619pt;}
.yc9{bottom:260.883757pt;}
.y212{bottom:261.478314pt;}
.y166{bottom:263.766223pt;}
.ya0{bottom:263.970033pt;}
.y3e{bottom:264.277236pt;}
.y14{bottom:264.599994pt;}
.y12f{bottom:264.699435pt;}
.yb2{bottom:265.549252pt;}
.y1a{bottom:267.159993pt;}
.y202{bottom:267.820299pt;}
.y6e{bottom:269.158704pt;}
.y1ba{bottom:269.962363pt;}
.y13b{bottom:270.585898pt;}
.y222{bottom:270.585899pt;}
.yf6{bottom:270.614896pt;}
.y53{bottom:271.823804pt;}
.y111{bottom:275.002983pt;}
.ydc{bottom:277.019746pt;}
.y152{bottom:277.685722pt;}
.y2b{bottom:278.991065pt;}
.y104{bottom:279.320233pt;}
.y89{bottom:279.420047pt;}
.yc8{bottom:279.871186pt;}
.ybe{bottom:282.577981pt;}
.y165{bottom:282.753651pt;}
.y3d{bottom:283.264664pt;}
.y12e{bottom:283.686864pt;}
.y9f{bottom:285.116048pt;}
.y201{bottom:286.807728pt;}
.y6d{bottom:288.306028pt;}
.y1b9{bottom:288.949791pt;}
.y13a{bottom:289.573326pt;}
.y221{bottom:289.573327pt;}
.y52{bottom:290.811232pt;}
.yf5{bottom:291.760873pt;}
.ydb{bottom:296.007174pt;}
.y110{bottom:296.062220pt;}
.y151{bottom:296.673150pt;}
.y80{bottom:297.336732pt;}
.y103{bottom:298.307662pt;}
.y88{bottom:298.407476pt;}
.yc7{bottom:298.858614pt;}
.y1db{bottom:299.140540pt;}
.y198{bottom:299.486747pt;}
.yb1{bottom:301.297042pt;}
.y164{bottom:301.741079pt;}
.y3c{bottom:302.252092pt;}
.y12d{bottom:302.674292pt;}
.y9a{bottom:306.262024pt;}
.y211{bottom:306.448546pt;}
.y2a{bottom:307.172411pt;}
.y6c{bottom:307.453352pt;}
.y1b8{bottom:307.937220pt;}
.y139{bottom:308.560754pt;}
.y51{bottom:309.798660pt;}
.y1f0{bottom:310.979172pt;}
.y200{bottom:311.533390pt;}
.yf4{bottom:312.906866pt;}
.y12{bottom:312.919992pt;}
.yda{bottom:314.994603pt;}
.y150{bottom:315.660578pt;}
.y7c{bottom:316.484053pt;}
.y10f{bottom:317.208216pt;}
.y102{bottom:317.295090pt;}
.y87{bottom:317.394904pt;}
.yc6{bottom:317.846042pt;}
.y163{bottom:320.728507pt;}
.y3b{bottom:321.239520pt;}
.y12c{bottom:321.661720pt;}
.yb0{bottom:322.746398pt;}
.y6b{bottom:326.600676pt;}
.y1b7{bottom:326.924648pt;}
.y9e{bottom:327.408040pt;}
.y220{bottom:327.548184pt;}
.y50{bottom:328.786088pt;}
.y124{bottom:332.272139pt;}
.yd9{bottom:333.982031pt;}
.yf3{bottom:334.052881pt;}
.y14f{bottom:334.648006pt;}
.y29{bottom:335.353738pt;}
.y81{bottom:335.631377pt;}
.y101{bottom:336.282518pt;}
.y86{bottom:336.382332pt;}
.yc5{bottom:336.833470pt;}
.y10e{bottom:338.354228pt;}
.y162{bottom:339.715936pt;}
.y3a{bottom:340.226949pt;}
.y12b{bottom:340.649148pt;}
.yaf{bottom:341.893722pt;}
.y16a{bottom:345.632020pt;}
.y168{bottom:345.632023pt;}
.y6a{bottom:345.747997pt;}
.y1b6{bottom:345.912076pt;}
.y21f{bottom:346.535612pt;}
.y4f{bottom:347.773516pt;}
.y9d{bottom:348.554032pt;}
.y123{bottom:350.399191pt;}
.y210{bottom:351.418780pt;}
.yd8{bottom:352.969459pt;}
.y14e{bottom:353.635434pt;}
.y7b{bottom:354.558368pt;}
.y100{bottom:355.269946pt;}
.y85{bottom:355.369760pt;}
.yc4{bottom:355.820898pt;}
.y161{bottom:358.703364pt;}
.y39{bottom:359.214377pt;}
.y10d{bottom:359.500224pt;}
.y12a{bottom:359.636577pt;}
.y16{bottom:359.639990pt;}
.yae{bottom:361.041046pt;}
.y28{bottom:363.535084pt;}
.y69{bottom:364.895321pt;}
.y1b5{bottom:364.899504pt;}
.y21e{bottom:365.523040pt;}
.y4e{bottom:366.760945pt;}
.y122{bottom:368.547177pt;}
.y99{bottom:369.700028pt;}
.yd7{bottom:371.956887pt;}
.y14d{bottom:372.622863pt;}
.y1eb{bottom:372.938133pt;}
.y1ec{bottom:372.938152pt;}
.y1ff{bottom:373.492371pt;}
.yff{bottom:374.257374pt;}
.y84{bottom:374.357188pt;}
.y18{bottom:374.679989pt;}
.yc3{bottom:374.808327pt;}
.y160{bottom:377.690792pt;}
.y38{bottom:378.201805pt;}
.y192{bottom:378.434482pt;}
.y190{bottom:378.434501pt;}
.y129{bottom:378.624005pt;}
.yad{bottom:380.188367pt;}
.y10c{bottom:380.646220pt;}
.y1b4{bottom:383.886932pt;}
.y66{bottom:384.042637pt;}
.y21d{bottom:384.510468pt;}
.y4d{bottom:385.748373pt;}
.y121{bottom:387.214824pt;}
.y9c{bottom:390.846024pt;}
.yd6{bottom:390.944315pt;}
.y14c{bottom:391.610291pt;}
.y27{bottom:391.716433pt;}
.yfe{bottom:393.244803pt;}
.y83{bottom:393.344617pt;}
.yc2{bottom:393.795755pt;}
.y15f{bottom:396.678220pt;}
.y37{bottom:397.189233pt;}
.y128{bottom:397.611433pt;}
.yac{bottom:399.335681pt;}
.y10b{bottom:401.792225pt;}
.y1b3{bottom:402.874361pt;}
.y65{bottom:403.030065pt;}
.y21c{bottom:403.497897pt;}
.y4c{bottom:404.735801pt;}
.y120{bottom:406.362126pt;}
.y14b{bottom:410.597719pt;}
.yea{bottom:411.090983pt;}
.y98{bottom:411.992030pt;}
.yfd{bottom:412.232231pt;}
.y82{bottom:412.332045pt;}
.yc1{bottom:412.783183pt;}
.y20d{bottom:413.377760pt;}
.y15e{bottom:415.665648pt;}
.y36{bottom:416.176661pt;}
.yab{bottom:416.484333pt;}
.y127{bottom:416.598861pt;}
.y1fe{bottom:418.462602pt;}
.y1fd{bottom:418.462605pt;}
.y26{bottom:420.230873pt;}
.y1b2{bottom:421.861789pt;}
.y63{bottom:421.957072pt;}
.y1d{bottom:422.437699pt;}
.y10a{bottom:422.938221pt;}
.y4b{bottom:423.723229pt;}
.y11f{bottom:425.509460pt;}
.y14a{bottom:429.585147pt;}
.yfc{bottom:431.219659pt;}
.y7a{bottom:431.319473pt;}
.yc0{bottom:431.770611pt;}
.y9b{bottom:432.988074pt;}
.y15d{bottom:434.653077pt;}
.y1ea{bottom:434.897114pt;}
.yaa{bottom:435.156931pt;}
.y35{bottom:435.164090pt;}
.y126{bottom:435.586289pt;}
.y1b1{bottom:440.849217pt;}
.y62{bottom:440.944500pt;}
.y21b{bottom:441.472753pt;}
.y109{bottom:444.084214pt;}
.y11e{bottom:444.656784pt;}
.y1c{bottom:446.382738pt;}
.y148{bottom:448.373177pt;}
.y149{bottom:448.572575pt;}
.y25{bottom:448.852866pt;}
.y106{bottom:450.007698pt;}
.yd5{bottom:450.207087pt;}
.y79{bottom:450.306901pt;}
.ybf{bottom:450.416332pt;}
.y97{bottom:452.785384pt;}
.y1da{bottom:452.874296pt;}
.y34{bottom:452.883704pt;}
.y15c{bottom:453.640505pt;}
.y138{bottom:453.784728pt;}
.y125{bottom:454.573718pt;}
.y167{bottom:454.784066pt;}
.y1d1{bottom:455.383666pt;}
.y64{bottom:457.315707pt;}
.y1b0{bottom:459.836645pt;}
.y61{bottom:459.931928pt;}
.y21a{bottom:460.460181pt;}
.y11d{bottom:461.944869pt;}
.y108{bottom:465.230219pt;}
.y78{bottom:469.294329pt;}
.y18c{bottom:474.370974pt;}
.y18a{bottom:474.370983pt;}
.y20b{bottom:475.370310pt;}
.y20a{bottom:475.370319pt;}
.y1fc{bottom:480.421579pt;}
.y21{bottom:483.070970pt;}
.y107{bottom:486.376215pt;}
.y71{bottom:488.281758pt;}
.y105{bottom:490.427040pt;}
.y24{bottom:493.691535pt;}
.ye{bottom:507.016017pt;}
.y70{bottom:507.269186pt;}
.y1{bottom:507.799983pt;}
.h13{height:8.320000pt;}
.h2{height:12.479999pt;}
.h14{height:21.340529pt;}
.hc{height:23.359999pt;}
.h10{height:23.679999pt;}
.h8{height:24.639999pt;}
.h3{height:25.593655pt;}
.h20{height:33.577768pt;}
.h3b{height:34.076638pt;}
.h27{height:36.072117pt;}
.h1d{height:36.123283pt;}
.h23{height:36.174449pt;}
.h22{height:36.180031pt;}
.h1f{height:36.276781pt;}
.h32{height:36.430280pt;}
.h1c{height:37.299303pt;}
.he{height:37.565727pt;}
.h21{height:38.476925pt;}
.ha{height:39.679998pt;}
.hf{height:39.999998pt;}
.h12{height:40.197385pt;}
.h16{height:41.372446pt;}
.h17{height:41.548250pt;}
.h3c{height:42.160885pt;}
.h1b{height:42.877211pt;}
.h39{height:42.971541pt;}
.h3a{height:42.971551pt;}
.h28{height:43.970877pt;}
.h2c{height:43.970887pt;}
.h26{height:43.970897pt;}
.h11{height:44.652595pt;}
.h34{height:44.970193pt;}
.h35{height:44.970232pt;}
.h4{height:47.999998pt;}
.h1a{height:48.607817pt;}
.h36{height:60.959626pt;}
.h38{height:60.959633pt;}
.h37{height:60.959636pt;}
.h33{height:60.959645pt;}
.h9{height:71.411964pt;}
.h2f{height:77.948397pt;}
.h6{height:79.359997pt;}
.h1e{height:92.395704pt;}
.h2d{height:94.937135pt;}
.h29{height:94.937145pt;}
.h2e{height:94.937154pt;}
.h2a{height:94.937164pt;}
.h19{height:99.381324pt;}
.h25{height:101.649137pt;}
.h2b{height:111.925893pt;}
.h18{height:114.242439pt;}
.h15{height:117.332952pt;}
.hb{height:118.990186pt;}
.h24{height:125.683823pt;}
.h31{height:128.914625pt;}
.h30{height:128.914644pt;}
.h5{height:133.397600pt;}
.h7{height:207.384313pt;}
.h1{height:558.666667pt;}
.hd{height:558.999977pt;}
.h0{height:558.999995pt;}
.w11{width:66.955680pt;}
.w15{width:70.953024pt;}
.w12{width:81.945737pt;}
.wf{width:81.945747pt;}
.wb{width:84.479996pt;}
.w13{width:89.940444pt;}
.w7{width:99.519996pt;}
.wa{width:99.839996pt;}
.w17{width:101.932514pt;}
.w18{width:103.931167pt;}
.wd{width:103.931186pt;}
.we{width:103.931196pt;}
.w16{width:106.929196pt;}
.w19{width:107.928530pt;}
.w1a{width:107.928540pt;}
.w1b{width:107.928549pt;}
.w3{width:116.479995pt;}
.w6{width:124.799995pt;}
.w14{width:152.898762pt;}
.w10{width:162.892150pt;}
.w4{width:179.839993pt;}
.w5{width:192.639992pt;}
.w9{width:192.959992pt;}
.w2{width:211.839991pt;}
.wc{width:396.799983pt;}
.w8{width:396.999983pt;}
.w0{width:397.000000pt;}
.w1{width:397.333333pt;}
.x0{left:0.000000pt;}
.x2{left:1.208585pt;}
.x37{left:3.591363pt;}
.x5{left:4.756903pt;}
.x3f{left:6.464461pt;}
.x31{left:7.432583pt;}
.x3a{left:8.525609pt;}
.x35{left:9.493718pt;}
.x38{left:10.711649pt;}
.x3c{left:11.757844pt;}
.x34{left:13.194389pt;}
.x4{left:15.039999pt;}
.x42{left:16.676450pt;}
.x3d{left:18.831273pt;}
.x47{left:20.174140pt;}
.x39{left:21.282783pt;}
.x4c{left:22.516342pt;}
.x3b{left:23.546913pt;}
.x41{left:24.905376pt;}
.x4e{left:25.842265pt;}
.x2f{left:27.200740pt;}
.x36{left:28.730981pt;}
.x33{left:29.870838pt;}
.x40{left:31.369859pt;}
.x3e{left:32.775165pt;}
.x4b{left:34.242953pt;}
.x29{left:35.881751pt;}
.x44{left:38.459573pt;}
.x10{left:39.658783pt;}
.x13{left:40.857989pt;}
.x1a{left:41.938523pt;}
.x1c{left:43.171634pt;}
.x24{left:45.155143pt;}
.x4d{left:49.826385pt;}
.x28{left:51.424125pt;}
.x26{left:55.985246pt;}
.x49{left:57.305808pt;}
.x43{left:61.394391pt;}
.x14{left:63.189468pt;}
.x2a{left:64.547944pt;}
.x25{left:68.685829pt;}
.x6{left:70.719997pt;}
.x19{left:74.954810pt;}
.x51{left:83.145615pt;}
.x1{left:93.439996pt;}
.xe{left:97.747193pt;}
.x3{left:106.239996pt;}
.xc{left:107.839996pt;}
.x8{left:118.963617pt;}
.xf{left:124.184769pt;}
.x45{left:125.113598pt;}
.x48{left:131.210366pt;}
.x7{left:136.180385pt;}
.x4f{left:144.368676pt;}
.x30{left:146.081760pt;}
.x11{left:153.606106pt;}
.x12{left:156.159993pt;}
.x2b{left:159.158128pt;}
.xd{left:163.519993pt;}
.x9{left:172.639017pt;}
.x2e{left:176.964524pt;}
.xa{left:185.505499pt;}
.x2c{left:188.000501pt;}
.x2d{left:190.021963pt;}
.xb{left:199.039992pt;}
.x1d{left:218.055617pt;}
.x1e{left:220.616421pt;}
.x21{left:222.196768pt;}
.x18{left:223.095781pt;}
.x17{left:240.054464pt;}
.x1f{left:244.147106pt;}
.x16{left:248.953660pt;}
.x32{left:251.505401pt;}
.x50{left:253.218466pt;}
.x20{left:261.826648pt;}
.x23{left:274.424421pt;}
.x22{left:278.703249pt;}
.x4a{left:284.766295pt;}
.x46{left:289.426142pt;}
.x27{left:341.620128pt;}
.x1b{left:344.784180pt;}
.x15{left:347.695761pt;}
}




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