
    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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight: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_dc36b35c76ca671b64036949.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;font-style:normal;font-weight: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_0e95e4640072127e17bb81a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.207031;font-style:normal;font-weight: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_5bd2a8aa48a90faf1a3fa136.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.592000;font-style:normal;font-weight: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_aa69170b1a1a0e7b721ccce1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.017090;font-style:normal;font-weight: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_6f46f757c1f4d11741a100ec.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.207031;font-style:normal;font-weight: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_1dbc1398ae01e6818d814f7f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.017090;font-style:normal;font-weight: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_c561f19b7cc290a307a8c21c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.207031;font-style:normal;font-weight: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_ee382dd3b871169ccc271a73.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.575000;font-style:normal;font-weight: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_d50f612fed9170d1a69e6b80.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.208008;font-style:normal;font-weight: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_dae2406e1515d9588d67a4b4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.207031;font-style:normal;font-weight: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_615072ba589b4590759e1c63.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.207031;font-style:normal;font-weight: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_df2a0c9bf2e203ff4d6c5d92.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.207031;font-style:normal;font-weight: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_0cac8f06e8e06f113a75e65e.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.207031;font-style:normal;font-weight: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_df73c70979f7798cf93199f0.woff2')format("woff");}.fff{font-family:fff;line-height:1.207031;font-style:normal;font-weight: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_be1ced87232aba88a1c9c2c8.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_21b2715c4202a0840413bfb5.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_d08c5d4e1c6f9e81ef503391.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.239258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_3a7958a7e0e2c2c29aec0f30.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_da59be07b682059efde0a658.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.207031;font-style:normal;font-weight: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_8833eb65e401eec92dcd0a54.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.575000;font-style:normal;font-weight: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_a50626e1946c8cb980b5c312.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.208008;font-style:normal;font-weight: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_762d7d227e6262f8ca7c983a.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.207031;font-style:normal;font-weight: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_782c5e1d09c2d9a72f68cc6e.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.207031;font-style:normal;font-weight: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_7b117b62e058faaadcc96ab6.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.207031;font-style:normal;font-weight: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_0d7d1bc90060ea1bcc270377.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.207031;font-style:normal;font-weight: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_b1a515343cc11340613d9b30.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_104b8931376a2fe36048ae97.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_35b5772d88aceba3699e459e.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_4d509e0d30985ccc42078b11.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.207031;font-style:normal;font-weight: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_c44c1800d00319d687c18b47.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.207031;font-style:normal;font-weight: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_a9b01f3e07edbfd677e9f484.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_8522b02a4a60e52c5ce9909f.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.208008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_a1cae0d038af3f5975d21bf9.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.207031;font-style:normal;font-weight: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_263b9f9fb7e8f08902457297.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.207031;font-style:normal;font-weight: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_7b117b62e058faaadcc96ab6.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.207031;font-style:normal;font-weight: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_87ed548b62a6ebf52fc92b81.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_0f494259bd8f01bc0a922622.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.208008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_51fd27f5f1b25995754045f0.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.207031;font-style:normal;font-weight: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_1994b02b770536ba148dbdc9.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.861328;font-style:normal;font-weight: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_213d764473b5ee59255d095e.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.207031;font-style:normal;font-weight: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_1217b839ecf31409449aeec4.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.207031;font-style:normal;font-weight: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_7b0cc932cf0a2a7e626cf58a.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.207031;font-style:normal;font-weight: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_0cd066b15a83da764e190b01.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.208008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_213d764473b5ee59255d095e.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_0cac8f06e8e06f113a75e65e.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_b188e4487d079255ca2acf13.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_17c04e455ad75d2ab4793a0b.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.208008;font-style:normal;font-weight: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_ee017b76161416ceb9cfee04.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.207031;font-style:normal;font-weight: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_213d764473b5ee59255d095e.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.207031;font-style:normal;font-weight: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_21b2715c4202a0840413bfb5.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_92b00f6d008d5e817681c1be.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_0a196e4c1db1b06b78453755.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.208008;font-style:normal;font-weight: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_ee017b76161416ceb9cfee04.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.207031;font-style:normal;font-weight: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_213d764473b5ee59255d095e.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_da59be07b682059efde0a658.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_f56679fe818dca0ff284191e.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.207031;font-style:normal;font-weight: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_213d764473b5ee59255d095e.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_9309610e3999dbbac98e51de.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_a6fc76fd2d2128602cb75747.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.207031;font-style:normal;font-weight: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_84aa8353b6933011fa4f76cb.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_213d764473b5ee59255d095e.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_0d7d1bc90060ea1bcc270377.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_d73bf411b876729eb56a5447.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_0a389ea72a71076c3794fadb.woff2')format("woff");}.ff41{font-family:ff41;line-height:1.208008;font-style:normal;font-weight: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_ee017b76161416ceb9cfee04.woff2')format("woff");}.ff42{font-family:ff42;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url('chunks/assets/font_213d764473b5ee59255d095e.woff2')format("woff");}.ff43{font-family:ff43;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_35b5772d88aceba3699e459e.woff2')format("woff");}.ff44{font-family:ff44;line-height:1.207031;font-style:normal;font-weight: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_354598e4599b0b425e77a1b6.woff2')format("woff");}.ff45{font-family:ff45;line-height:1.207031;font-style:normal;font-weight: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_3ed842c908f37c4c833d97cb.woff2')format("woff");}.ff46{font-family:ff46;line-height:1.208008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_ee017b76161416ceb9cfee04.woff2')format("woff");}.ff47{font-family:ff47;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48;src:url('chunks/assets/font_d3709fe8c8b4ff2a791fbcc7.woff2')format("woff");}.ff48{font-family:ff48;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url('chunks/assets/font_d30feb4e54f9dd4a0e3287f0.woff2')format("woff");}.ff49{font-family:ff49;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a;src:url('chunks/assets/font_b11d3c626ed59a295c82a7ad.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:1.208008;font-style:normal;font-weight: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_87ed548b62a6ebf52fc92b81.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:1.207031;font-style:normal;font-weight: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_bb6691fc88f53b96bff920cc.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d;src:url('chunks/assets/font_ee017b76161416ceb9cfee04.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e;src:url('chunks/assets/font_75ab36fc76be70d260466a03.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:1.239258;font-style:normal;font-weight: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_422a6b7847739e4ee3b4751a.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff50;src:url('chunks/assets/font_36f0f972a7ce25848b893440.woff2')format("woff");}.ff50{font-family:ff50;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff51;src:url('chunks/assets/font_6b8937a9f5fcfcdf4d76f02f.woff2')format("woff");}.ff51{font-family:ff51;line-height:1.208008;font-style:normal;font-weight: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_ee017b76161416ceb9cfee04.woff2')format("woff");}.ff52{font-family:ff52;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff53;src:url('chunks/assets/font_422a6b7847739e4ee3b4751a.woff2')format("woff");}.ff53{font-family:ff53;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff54;src:url('chunks/assets/font_1217b839ecf31409449aeec4.woff2')format("woff");}.ff54{font-family:ff54;line-height:1.207031;font-style:normal;font-weight: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_ab402979748a00122bbdc399.woff2')format("woff");}.ff55{font-family:ff55;line-height:1.207031;font-style:normal;font-weight: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_e5177a259166be71d7e0411f.woff2')format("woff");}.ff56{font-family:ff56;line-height:1.208008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff57;src:url('chunks/assets/font_422a6b7847739e4ee3b4751a.woff2')format("woff");}.ff57{font-family:ff57;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff58;src:url('chunks/assets/font_0cac8f06e8e06f113a75e65e.woff2')format("woff");}.ff58{font-family:ff58;line-height:1.207031;font-style:normal;font-weight: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_285957c679ce25a8c8c2c204.woff2')format("woff");}.ff59{font-family:ff59;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5a;src:url('chunks/assets/font_f4d5bcda1d2a9eca1be1227c.woff2')format("woff");}.ff5a{font-family:ff5a;line-height:0.861328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5b;src:url('chunks/assets/font_2a18572a6633cd9cbe7efe43.woff2')format("woff");}.ff5b{font-family:ff5b;line-height:1.208008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5c;src:url('chunks/assets/font_f5d1a3e153a932cc28f23e95.woff2')format("woff");}.ff5c{font-family:ff5c;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5d;src:url('chunks/assets/font_422a6b7847739e4ee3b4751a.woff2')format("woff");}.ff5d{font-family:ff5d;line-height:1.207031;font-style:normal;font-weight: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_21b2715c4202a0840413bfb5.woff2')format("woff");}.ff5e{font-family:ff5e;line-height:1.207031;font-style:normal;font-weight: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_d70610ad54582c7136afdde4.woff2')format("woff");}.ff5f{font-family:ff5f;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff60;src:url('chunks/assets/font_bf7936508f74db7ac47efe1a.woff2')format("woff");}.ff60{font-family:ff60;line-height:1.208008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff61;src:url('chunks/assets/font_72fcb7fff2b162115c1a1519.woff2')format("woff");}.ff61{font-family:ff61;line-height:1.207031;font-style:normal;font-weight: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_422a6b7847739e4ee3b4751a.woff2')format("woff");}.ff62{font-family:ff62;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff63;src:url('chunks/assets/font_da59be07b682059efde0a658.woff2')format("woff");}.ff63{font-family:ff63;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff64;src:url('chunks/assets/font_a997e1ab9e01dc3616e89526.woff2')format("woff");}.ff64{font-family:ff64;line-height:1.207031;font-style:normal;font-weight: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_231d420b542ce2dea13be753.woff2')format("woff");}.ff65{font-family:ff65;line-height:1.207031;font-style:normal;font-weight: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_20fdc06fd27daac1036f11b0.woff2')format("woff");}.ff66{font-family:ff66;line-height:1.208008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff67;src:url('chunks/assets/font_a39ffa863a4a56eae9cb4eaa.woff2')format("woff");}.ff67{font-family:ff67;line-height:1.239258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff68;src:url('chunks/assets/font_4736feb8521f8eb36d951960.woff2')format("woff");}.ff68{font-family:ff68;line-height:0.861328;font-style:normal;font-weight: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_422a6b7847739e4ee3b4751a.woff2')format("woff");}.ff69{font-family:ff69;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6a;src:url('chunks/assets/font_9309610e3999dbbac98e51de.woff2')format("woff");}.ff6a{font-family:ff6a;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6b;src:url('chunks/assets/font_a39ffa863a4a56eae9cb4eaa.woff2')format("woff");}.ff6b{font-family:ff6b;line-height:1.239258;font-style:normal;font-weight: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_15fc73de5e1598f8359f02d9.woff2')format("woff");}.ff6c{font-family:ff6c;line-height:1.208008;font-style:normal;font-weight: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_1e43915c7c1136fb6bb71ac5.woff2')format("woff");}.ff6d{font-family:ff6d;line-height:1.207031;font-style:normal;font-weight: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_f3ed744cc4457dacc8981487.woff2')format("woff");}.ff6e{font-family:ff6e;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6f;src:url('chunks/assets/font_35e9d3ec0b861b1e0fae48d0.woff2')format("woff");}.ff6f{font-family:ff6f;line-height:1.024902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff70;src:url('chunks/assets/font_422a6b7847739e4ee3b4751a.woff2')format("woff");}.ff70{font-family:ff70;line-height:1.207031;font-style:normal;font-weight: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_0d7d1bc90060ea1bcc270377.woff2')format("woff");}.ff71{font-family:ff71;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff72;src:url('chunks/assets/font_f3b03554265d69a94fc8c90d.woff2')format("woff");}.ff72{font-family:ff72;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff73;src:url('chunks/assets/font_2dead8aca74adf12d763ce74.woff2')format("woff");}.ff73{font-family:ff73;line-height:1.208008;font-style:normal;font-weight: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_e7d91f9facdb94981fe71283.woff2')format("woff");}.ff74{font-family:ff74;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff75;src:url('chunks/assets/font_422a6b7847739e4ee3b4751a.woff2')format("woff");}.ff75{font-family:ff75;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff76;src:url('chunks/assets/font_35b5772d88aceba3699e459e.woff2')format("woff");}.ff76{font-family:ff76;line-height:1.207031;font-style:normal;font-weight: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_a52e604cc7e5e48955ad060a.woff2')format("woff");}.ff77{font-family:ff77;line-height:1.207031;font-style:normal;font-weight: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_ddf5023dd83a646beee40814.woff2')format("woff");}.ff78{font-family:ff78;line-height:1.207031;font-style:normal;font-weight: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_dd80d412b67a0f30e433d591.woff2')format("woff");}.ff79{font-family:ff79;line-height:1.575000;font-style:normal;font-weight: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_ef71193f4058a95470694b96.woff2')format("woff");}.ff7a{font-family:ff7a;line-height:1.208008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7b;src:url('chunks/assets/font_6c0f3f7f060ab518fa1c64eb.woff2')format("woff");}.ff7b{font-family:ff7b;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7c;src:url('chunks/assets/font_c443eeee9789d7912e7025de.woff2')format("woff");}.ff7c{font-family:ff7c;line-height:1.207031;font-style:normal;font-weight: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_00561b171f177be791bed358.woff2')format("woff");}.ff7d{font-family:ff7d;line-height:1.207031;font-style:normal;font-weight: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_071a172ef3ebd248822a5cdc.woff2')format("woff");}.ff7e{font-family:ff7e;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7f;src:url('chunks/assets/font_4f3dc31d16abd8fac4b80818.woff2')format("woff");}.ff7f{font-family:ff7f;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff80;src:url('chunks/assets/font_eeaf68b81f03db279d1598ba.woff2')format("woff");}.ff80{font-family:ff80;line-height:1.208008;font-style:normal;font-weight: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_1217b839ecf31409449aeec4.woff2')format("woff");}.ff81{font-family:ff81;line-height:1.207031;font-style:normal;font-weight: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_1217b839ecf31409449aeec4.woff2')format("woff");}.ff82{font-family:ff82;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff83;src:url('chunks/assets/font_448f33a5424fac44c095fcb7.woff2')format("woff");}.ff83{font-family:ff83;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff84;src:url('chunks/assets/font_ee21ba07e3af16f0cef5d3da.woff2')format("woff");}.ff84{font-family:ff84;line-height:1.208008;font-style:normal;font-weight: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_4f3dc31d16abd8fac4b80818.woff2')format("woff");}.ff85{font-family:ff85;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff86;src:url('chunks/assets/font_1217b839ecf31409449aeec4.woff2')format("woff");}.ff86{font-family:ff86;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff87;src:url('chunks/assets/font_0cac8f06e8e06f113a75e65e.woff2')format("woff");}.ff87{font-family:ff87;line-height:1.207031;font-style:normal;font-weight: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_fc7fee8b149daf1498250d0e.woff2')format("woff");}.ff88{font-family:ff88;line-height:1.208008;font-style:normal;font-weight: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_e484731c81582f105abfc57d.woff2')format("woff");}.ff89{font-family:ff89;line-height:1.207031;font-style:normal;font-weight: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_1217b839ecf31409449aeec4.woff2')format("woff");}.ff8a{font-family:ff8a;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8b;src:url('chunks/assets/font_21b2715c4202a0840413bfb5.woff2')format("woff");}.ff8b{font-family:ff8b;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8c;src:url('chunks/assets/font_1e25b891b5d05943c4fb1a9b.woff2')format("woff");}.ff8c{font-family:ff8c;line-height:1.207031;font-style:normal;font-weight: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_451376a7b122f6a1ff15e5ab.woff2')format("woff");}.ff8d{font-family:ff8d;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8e;src:url('chunks/assets/font_1217b839ecf31409449aeec4.woff2')format("woff");}.ff8e{font-family:ff8e;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8f;src:url('chunks/assets/font_da59be07b682059efde0a658.woff2')format("woff");}.ff8f{font-family:ff8f;line-height:1.207031;font-style:normal;font-weight: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_04ee0a8a1f3b73fbd69078d3.woff2')format("woff");}.ff90{font-family:ff90;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff91;src:url('chunks/assets/font_a52e2587262c447cda8617a7.woff2')format("woff");}.ff91{font-family:ff91;line-height:1.208008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff92;src:url('chunks/assets/font_0c2a493652e9a36c981878fc.woff2')format("woff");}.ff92{font-family:ff92;line-height:1.207031;font-style:normal;font-weight: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_6d15f7ae914293c9f329798c.woff2')format("woff");}.ff93{font-family:ff93;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff94;src:url('chunks/assets/font_1217b839ecf31409449aeec4.woff2')format("woff");}.ff94{font-family:ff94;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff95;src:url('chunks/assets/font_9309610e3999dbbac98e51de.woff2')format("woff");}.ff95{font-family:ff95;line-height:1.207031;font-style:normal;font-weight: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_6c41a2ed7dbc2e39573f9595.woff2')format("woff");}.ff96{font-family:ff96;line-height:1.207031;font-style:normal;font-weight: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_cb72e603d4d0c2d3f6c2496d.woff2')format("woff");}.ff97{font-family:ff97;line-height:1.239258;font-style:normal;font-weight: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_6dbccf597ce9e674fcc7a90f.woff2')format("woff");}.ff98{font-family:ff98;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff99;src:url('chunks/assets/font_99ee2ca2dd9ff6cc15a9f049.woff2')format("woff");}.ff99{font-family:ff99;line-height:1.208008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9a;src:url('chunks/assets/font_1217b839ecf31409449aeec4.woff2')format("woff");}.ff9a{font-family:ff9a;line-height:1.207031;font-style:normal;font-weight: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_0d7d1bc90060ea1bcc270377.woff2')format("woff");}.ff9b{font-family:ff9b;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9c;src:url('chunks/assets/font_56e02210d55abc1e3df3c85d.woff2')format("woff");}.ff9c{font-family:ff9c;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9d;src:url('chunks/assets/font_d08c5d4e1c6f9e81ef503391.woff2')format("woff");}.ff9d{font-family:ff9d;line-height:1.239258;font-style:normal;font-weight: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_1217b839ecf31409449aeec4.woff2')format("woff");}.ff9e{font-family:ff9e;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9f;src:url('chunks/assets/font_35b5772d88aceba3699e459e.woff2')format("woff");}.ff9f{font-family:ff9f;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa0;src:url('chunks/assets/font_23e58193ff801f5e0f9d06e5.woff2')format("woff");}.ffa0{font-family:ffa0;line-height:1.207031;font-style:normal;font-weight: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_d08c5d4e1c6f9e81ef503391.woff2')format("woff");}.ffa1{font-family:ffa1;line-height:1.239258;font-style:normal;font-weight: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_8a01a7d80fb81f55a6917583.woff2')format("woff");}.ffa2{font-family:ffa2;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa3;src:url('chunks/assets/font_920fb1696f7481d16ca75037.woff2')format("woff");}.ffa3{font-family:ffa3;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa4;src:url('chunks/assets/font_22112303b3bee47843dfc0dd.woff2')format("woff");}.ffa4{font-family:ffa4;line-height:1.207031;font-style:normal;font-weight: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_3406bce8fa61166a2aa5fd7d.woff2')format("woff");}.ffa5{font-family:ffa5;line-height:1.208008;font-style:normal;font-weight: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_5f5bb579ef615e9c81a9e6aa.woff2')format("woff");}.ffa6{font-family:ffa6;line-height:1.207031;font-style:normal;font-weight: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_eb3036a374d57543db52d5e6.woff2')format("woff");}.ffa7{font-family:ffa7;line-height:1.207031;font-style:normal;font-weight: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_d3129921b9f7b23ddde73b90.woff2')format("woff");}.ffa8{font-family:ffa8;line-height:1.239258;font-style:normal;font-weight: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_b386770c36e6ccd97610b7cc.woff2')format("woff");}.ffa9{font-family:ffa9;line-height:1.207031;font-style:normal;font-weight: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_d08c5d4e1c6f9e81ef503391.woff2')format("woff");}.ffaa{font-family:ffaa;line-height:1.239258;font-style:normal;font-weight: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_e8216e12f9d7d15361858c6d.woff2')format("woff");}.ffab{font-family:ffab;line-height:1.208008;font-style:normal;font-weight: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_b6a0b7f598f04bfe68fe4ba5.woff2')format("woff");}.ffac{font-family:ffac;line-height:1.207031;font-style:normal;font-weight: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_01a8269ff858a2c0b1e6c10d.woff2')format("woff");}.ffad{font-family:ffad;line-height:1.207031;font-style:normal;font-weight: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_eccea2fae77b21dee3c4f793.woff2')format("woff");}.ffae{font-family:ffae;line-height:1.207031;font-style:normal;font-weight: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_edb1ba5ed9c8dba5ebb35ada.woff2')format("woff");}.ffaf{font-family:ffaf;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb0;src:url('chunks/assets/font_39b5e99ccdc1044b009da945.woff2')format("woff");}.ffb0{font-family:ffb0;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb1;src:url('chunks/assets/font_0cac8f06e8e06f113a75e65e.woff2')format("woff");}.ffb1{font-family:ffb1;line-height:1.207031;font-style:normal;font-weight: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_1217b839ecf31409449aeec4.woff2')format("woff");}.ffb2{font-family:ffb2;line-height:1.207031;font-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);}
.v1{vertical-align:-119.520000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:6.000000px;}
.v2{vertical-align:12.000000px;}
.v4{vertical-align:21.000000px;}
.v7{vertical-align:22.800000px;}
.v6{vertical-align:24.600000px;}
.v3{vertical-align:37.800000px;}
.ls5{letter-spacing:-0.076896px;}
.ls6{letter-spacing:-0.067284px;}
.ls4{letter-spacing:-0.066060px;}
.ls3{letter-spacing:-0.052848px;}
.ls2{letter-spacing:-0.021600px;}
.ls7{letter-spacing:-0.010800px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.043200px;}
.ls8{letter-spacing:0.048000px;}
.ls10{letter-spacing:0.102000px;}
.ls9{letter-spacing:0.240000px;}
.lsa{letter-spacing:0.360000px;}
.lse{letter-spacing:0.420000px;}
.lsc{letter-spacing:11.034000px;}
.ls12{letter-spacing:51.996000px;}
.lsf{letter-spacing:71.766000px;}
.ls14{letter-spacing:74.040000px;}
.lsd{letter-spacing:75.060000px;}
.ls13{letter-spacing:77.640000px;}
.lsb{letter-spacing:80.400000px;}
.ls11{letter-spacing:250.788000px;}
.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;}
}
.ws1f{word-spacing:-33.300000px;}
.ws24{word-spacing:-25.320000px;}
.wsb{word-spacing:-24.552000px;}
.ws23{word-spacing:-23.166000px;}
.wsd{word-spacing:-21.060000px;}
.wsc{word-spacing:-20.460000px;}
.ws1b{word-spacing:-18.414000px;}
.ws1c{word-spacing:-16.848000px;}
.ws20{word-spacing:-16.368000px;}
.wsa{word-spacing:-0.183600px;}
.ws7{word-spacing:-0.134568px;}
.ws9{word-spacing:-0.105732px;}
.ws4{word-spacing:-0.105696px;}
.ws5{word-spacing:-0.092484px;}
.ws8{word-spacing:-0.028836px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:0.010800px;}
.ws6{word-spacing:0.086400px;}
.ws1{word-spacing:0.162000px;}
.ws2{word-spacing:0.183600px;}
.ws1e{word-spacing:24.840000px;}
.wse{word-spacing:54.408000px;}
.ws1d{word-spacing:64.962000px;}
.ws21{word-spacing:161.688000px;}
.ws22{word-spacing:174.228000px;}
.ws18{word-spacing:232.020000px;}
.ws1a{word-spacing:237.600000px;}
.ws19{word-spacing:241.500000px;}
.ws13{word-spacing:259.266000px;}
.ws15{word-spacing:268.896000px;}
.ws16{word-spacing:279.648000px;}
.ws14{word-spacing:307.920000px;}
.ws11{word-spacing:308.646000px;}
.ws10{word-spacing:311.448000px;}
.ws12{word-spacing:322.896000px;}
.wsf{word-spacing:326.046000px;}
.ws17{word-spacing:700.380000px;}
._2c{margin-left:-3.660000px;}
._2a{margin-left:-2.340000px;}
._8{margin-left:-1.200000px;}
._30{width:1.080000px;}
._23{width:2.160000px;}
._32{width:3.660000px;}
._33{width:4.740000px;}
._31{width:5.760000px;}
._39{width:7.200000px;}
._38{width:8.280000px;}
._36{width:9.720000px;}
._37{width:10.860000px;}
._22{width:11.940000px;}
._1d{width:13.620000px;}
._35{width:14.760000px;}
._34{width:15.840000px;}
._3b{width:17.580000px;}
._40{width:18.780000px;}
._63{width:19.800000px;}
._42{width:22.080000px;}
._3a{width:23.700000px;}
._3e{width:25.260000px;}
._3f{width:26.580000px;}
._62{width:27.840000px;}
._3d{width:29.460000px;}
._3c{width:30.600000px;}
._66{width:32.040000px;}
._6e{width:33.360000px;}
._67{width:34.380000px;}
._4f{width:35.820000px;}
._5c{width:39.042000px;}
._5e{width:40.176000px;}
._64{width:41.388000px;}
._41{width:42.660000px;}
._68{width:44.280000px;}
._5b{width:46.200000px;}
._60{width:56.916000px;}
._58{width:58.644000px;}
._56{width:60.534000px;}
._5d{width:76.140000px;}
._5f{width:77.436000px;}
._59{width:79.110000px;}
._65{width:82.332000px;}
._61{width:83.916000px;}
._57{width:87.426000px;}
._5a{width:105.030000px;}
._55{width:106.200000px;}
._43{width:244.458000px;}
._6b{width:260.226000px;}
._54{width:262.080000px;}
._69{width:268.650000px;}
._45{width:281.952000px;}
._6c{width:291.300000px;}
._6d{width:296.910000px;}
._51{width:301.320000px;}
._50{width:303.300000px;}
._53{width:310.920000px;}
._52{width:317.340000px;}
._44{width:328.284000px;}
._6a{width:332.820000px;}
._47{width:344.958000px;}
._48{width:352.854000px;}
._46{width:355.686000px;}
._4c{width:357.198000px;}
._4a{width:362.694000px;}
._4b{width:363.708000px;}
._49{width:372.480000px;}
._4e{width:388.620000px;}
._4d{width:400.260000px;}
._16{width:957.960000px;}
._27{width:959.580000px;}
._2e{width:1090.920000px;}
._0{width:1126.490400px;}
._3{width:1182.300000px;}
._9{width:1267.020000px;}
._17{width:1379.880000px;}
._2d{width:1408.860000px;}
._d{width:1547.220000px;}
._15{width:1559.880000px;}
._e{width:1639.560000px;}
._19{width:1680.660000px;}
._5{width:1682.280000px;}
._c{width:1714.860000px;}
._14{width:1728.000000px;}
._b{width:1739.820000px;}
._2b{width:1743.480000px;}
._29{width:1765.140000px;}
._4{width:1771.020000px;}
._21{width:1817.580000px;}
._13{width:1830.840000px;}
._1b{width:1847.760000px;}
._20{width:1851.060000px;}
._1e{width:1858.440000px;}
._26{width:1909.980000px;}
._18{width:1920.720000px;}
._f{width:1940.940000px;}
._7{width:1952.040000px;}
._1c{width:1954.140000px;}
._10{width:2080.920000px;}
._1a{width:2088.180000px;}
._6{width:2129.700000px;}
._24{width:2140.260000px;}
._11{width:2175.900000px;}
._1{width:2189.100000px;}
._12{width:2199.180000px;}
._2{width:2201.580000px;}
._1f{width:2240.820000px;}
._25{width:2252.220000px;}
._a{width:2281.680000px;}
._2f{width:2288.820000px;}
._28{width:2368.800000px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:27.600000px;}
.fsb{font-size:31.200000px;}
.fsa{font-size:34.800000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:96.120000px;}
.fs1{font-size:108.000000px;}
.fs3{font-size:119.880000px;}
.fs4{font-size:132.120000px;}
.y0{bottom:0.000000px;}
.y74{bottom:2.477985px;}
.y76{bottom:3.105000px;}
.y160{bottom:3.150000px;}
.y15f{bottom:19.500000px;}
.yba{bottom:38.992683px;}
.y75{bottom:41.373183px;}
.y207{bottom:111.750000px;}
.y21a{bottom:112.950000px;}
.y72{bottom:113.850000px;}
.y117{bottom:115.350000px;}
.y238{bottom:116.100000px;}
.y1b4{bottom:116.550000px;}
.y158{bottom:119.400000px;}
.ye3{bottom:120.750000px;}
.y1e4{bottom:123.450000px;}
.y18d{bottom:124.950000px;}
.y16f{bottom:126.000000px;}
.ya7{bottom:126.150000px;}
.y10d{bottom:130.050000px;}
.y14b{bottom:133.050000px;}
.y206{bottom:139.050000px;}
.y219{bottom:140.550000px;}
.y71{bottom:141.150000px;}
.y116{bottom:142.650000px;}
.y1d4{bottom:143.250000px;}
.y237{bottom:143.550000px;}
.y1d{bottom:143.679450px;}
.y1b3{bottom:143.850000px;}
.yd9{bottom:146.100000px;}
.y157{bottom:146.700000px;}
.ye2{bottom:148.050000px;}
.y1e3{bottom:150.750000px;}
.y18c{bottom:152.250000px;}
.y16e{bottom:153.300000px;}
.y81{bottom:153.450000px;}
.y10c{bottom:157.350000px;}
.y265{bottom:159.300000px;}
.y14a{bottom:160.350000px;}
.y3b{bottom:161.250000px;}
.y1d6{bottom:163.050000px;}
.ya2{bottom:165.750000px;}
.y205{bottom:166.350000px;}
.y70{bottom:168.450000px;}
.y115{bottom:169.950000px;}
.y1d3{bottom:170.550000px;}
.y1b2{bottom:171.150000px;}
.y277{bottom:171.300000px;}
.yd8{bottom:173.400000px;}
.yf6{bottom:175.350000px;}
.y1e2{bottom:178.050000px;}
.y18b{bottom:179.550000px;}
.y80{bottom:180.750000px;}
.y218{bottom:182.850000px;}
.y10b{bottom:184.650000px;}
.y236{bottom:186.000000px;}
.y264{bottom:186.600000px;}
.y149{bottom:187.650000px;}
.y143{bottom:187.800000px;}
.ya8{bottom:188.040750px;}
.y156{bottom:189.000000px;}
.y4d{bottom:189.540750px;}
.y1d7{bottom:189.731550px;}
.ye1{bottom:190.350000px;}
.y3a{bottom:191.550000px;}
.y1c{bottom:192.900450px;}
.ya1{bottom:193.050000px;}
.y204{bottom:193.650000px;}
.y16d{bottom:195.600000px;}
.y6f{bottom:195.750000px;}
.y252{bottom:196.950000px;}
.y1d2{bottom:197.850000px;}
.y1b1{bottom:198.450000px;}
.yd7{bottom:200.700000px;}
.yf5{bottom:202.650000px;}
.y114{bottom:202.950000px;}
.y1e1{bottom:205.350000px;}
.y1da{bottom:206.850000px;}
.y7f{bottom:208.050000px;}
.y217{bottom:210.450000px;}
.y10a{bottom:211.950000px;}
.y276{bottom:213.300000px;}
.y263{bottom:214.350000px;}
.y148{bottom:214.950000px;}
.y142{bottom:215.100000px;}
.y155{bottom:216.300000px;}
.ye0{bottom:217.650000px;}
.y113{bottom:219.300000px;}
.ya0{bottom:220.350000px;}
.y203{bottom:220.950000px;}
.y39{bottom:221.700000px;}
.y16c{bottom:222.900000px;}
.y6e{bottom:223.050000px;}
.y251{bottom:224.250000px;}
.y1b{bottom:224.936580px;}
.y1b0{bottom:225.750000px;}
.yd6{bottom:228.000000px;}
.y235{bottom:228.600000px;}
.yf4{bottom:229.950000px;}
.yb9{bottom:232.650000px;}
.y1d9{bottom:234.150000px;}
.ya6{bottom:235.350000px;}
.y147{bottom:242.250000px;}
.y141{bottom:242.400000px;}
.y154{bottom:243.600000px;}
.ydf{bottom:244.950000px;}
.y9f{bottom:247.650000px;}
.y202{bottom:248.250000px;}
.y16b{bottom:250.200000px;}
.y6d{bottom:250.350000px;}
.y250{bottom:251.550000px;}
.y38{bottom:252.000000px;}
.y216{bottom:252.750000px;}
.y1af{bottom:253.050000px;}
.y1a{bottom:254.109000px;}
.y109{bottom:254.250000px;}
.yd5{bottom:255.300000px;}
.yf3{bottom:257.250000px;}
.y275{bottom:257.550000px;}
.y262{bottom:258.450000px;}
.yb8{bottom:259.950000px;}
.y18a{bottom:261.900000px;}
.y1d1{bottom:269.550000px;}
.y140{bottom:269.700000px;}
.y153{bottom:270.900000px;}
.y234{bottom:271.050000px;}
.yde{bottom:272.250000px;}
.y9e{bottom:274.950000px;}
.y201{bottom:275.550000px;}
.y16a{bottom:277.500000px;}
.y6c{bottom:277.650000px;}
.y24f{bottom:278.850000px;}
.y1ae{bottom:280.950000px;}
.y108{bottom:281.550000px;}
.y37{bottom:282.150000px;}
.yd4{bottom:282.600000px;}
.y19{bottom:283.281420px;}
.yf2{bottom:284.550000px;}
.yb7{bottom:287.250000px;}
.y215{bottom:295.050000px;}
.y1d0{bottom:296.850000px;}
.y13f{bottom:297.000000px;}
.y132{bottom:297.900000px;}
.y152{bottom:298.200000px;}
.ydd{bottom:299.550000px;}
.y261{bottom:300.750000px;}
.y189{bottom:301.800000px;}
.y9d{bottom:302.250000px;}
.y169{bottom:304.800000px;}
.y6b{bottom:304.950000px;}
.y24e{bottom:306.150000px;}
.y107{bottom:308.850000px;}
.yd3{bottom:309.900000px;}
.yf1{bottom:311.850000px;}
.y36{bottom:312.450000px;}
.y18{bottom:312.453840px;}
.y233{bottom:313.650000px;}
.yb6{bottom:314.550000px;}
.y1d8{bottom:318.450000px;}
.y214{bottom:322.350000px;}
.y1cf{bottom:324.150000px;}
.y1ad{bottom:324.750000px;}
.y131{bottom:325.200000px;}
.y151{bottom:325.500000px;}
.y19a{bottom:326.850000px;}
.y260{bottom:328.050000px;}
.y9c{bottom:329.550000px;}
.y168{bottom:332.100000px;}
.y6a{bottom:332.250000px;}
.y24d{bottom:333.450000px;}
.yf0{bottom:339.150000px;}
.y13e{bottom:339.300000px;}
.y17{bottom:341.698350px;}
.yb5{bottom:341.850000px;}
.y35{bottom:342.600000px;}
.y188{bottom:343.350000px;}
.y213{bottom:349.650000px;}
.y106{bottom:351.150000px;}
.y1ce{bottom:351.450000px;}
.y1ac{bottom:352.050000px;}
.yd2{bottom:352.200000px;}
.y130{bottom:352.500000px;}
.y150{bottom:352.800000px;}
.y199{bottom:354.150000px;}
.y25f{bottom:355.350000px;}
.y232{bottom:355.950000px;}
.y9b{bottom:356.850000px;}
.y200{bottom:357.900000px;}
.y167{bottom:359.400000px;}
.y69{bottom:359.550000px;}
.y24c{bottom:360.750000px;}
.yef{bottom:366.450000px;}
.yb4{bottom:369.150000px;}
.y16{bottom:370.870770px;}
.y212{bottom:376.950000px;}
.y105{bottom:378.450000px;}
.y1cd{bottom:378.750000px;}
.y1ab{bottom:379.350000px;}
.yd1{bottom:379.500000px;}
.y198{bottom:381.450000px;}
.y25e{bottom:382.650000px;}
.y231{bottom:383.250000px;}
.y187{bottom:384.150000px;}
.y14f{bottom:385.950000px;}
.y68{bottom:386.850000px;}
.y186{bottom:387.750000px;}
.y1e0{bottom:388.950000px;}
.yee{bottom:393.750000px;}
.y12f{bottom:394.800000px;}
.ydc{bottom:396.450000px;}
.y1ff{bottom:397.500000px;}
.y9a{bottom:399.150000px;}
.y15{bottom:400.043190px;}
.y34{bottom:403.050000px;}
.y1df{bottom:403.650000px;}
.y211{bottom:404.250000px;}
.y104{bottom:405.750000px;}
.y1cc{bottom:406.050000px;}
.y1aa{bottom:406.650000px;}
.yd0{bottom:406.800000px;}
.y197{bottom:408.750000px;}
.y25d{bottom:409.950000px;}
.yb3{bottom:411.450000px;}
.y67{bottom:414.150000px;}
.y1fc{bottom:415.650000px;}
.y185{bottom:420.150000px;}
.y1dc{bottom:420.300000px;}
.yed{bottom:421.050000px;}
.y12e{bottom:422.100000px;}
.ydb{bottom:423.750000px;}
.y13d{bottom:423.900000px;}
.y22c{bottom:424.200000px;}
.y1de{bottom:425.250000px;}
.y180{bottom:425.700000px;}
.y99{bottom:426.450000px;}
.y230{bottom:426.750000px;}
.y166{bottom:429.150000px;}
.y14{bottom:429.215610px;}
.y24b{bottom:430.950000px;}
.y210{bottom:431.550000px;}
.y103{bottom:433.050000px;}
.y33{bottom:433.350000px;}
.y1a9{bottom:433.950000px;}
.ycf{bottom:434.100000px;}
.y1fb{bottom:434.400000px;}
.y1db{bottom:435.000000px;}
.y274{bottom:436.050000px;}
.y25c{bottom:437.250000px;}
.yb2{bottom:438.750000px;}
.y1dd{bottom:439.800000px;}
.y66{bottom:441.450000px;}
.y1fe{bottom:446.700000px;}
.y12d{bottom:449.400000px;}
.y196{bottom:451.050000px;}
.y13c{bottom:451.200000px;}
.y14e{bottom:452.100000px;}
.y17f{bottom:453.000000px;}
.y1fa{bottom:453.300000px;}
.y98{bottom:453.750000px;}
.y165{bottom:456.450000px;}
.y13{bottom:458.388030px;}
.y20f{bottom:458.850000px;}
.y102{bottom:460.350000px;}
.y1cb{bottom:460.650000px;}
.y1a8{bottom:461.250000px;}
.yce{bottom:461.400000px;}
.yec{bottom:463.350000px;}
.y32{bottom:463.500000px;}
.yb1{bottom:466.050000px;}
.y22b{bottom:468.000000px;}
.y14d{bottom:468.600000px;}
.y65{bottom:468.750000px;}
.y208{bottom:470.550000px;}
.y1fd{bottom:471.300000px;}
.y24a{bottom:474.750000px;}
.y12c{bottom:476.700000px;}
.y195{bottom:478.350000px;}
.y13b{bottom:478.500000px;}
.y25b{bottom:479.550000px;}
.y17e{bottom:480.300000px;}
.y97{bottom:481.050000px;}
.y22f{bottom:483.750000px;}
.y164{bottom:483.900000px;}
.y14c{bottom:484.950000px;}
.y1ca{bottom:488.400000px;}
.y1a7{bottom:488.550000px;}
.yeb{bottom:490.650000px;}
.yb0{bottom:493.350000px;}
.y31{bottom:493.800000px;}
.y22a{bottom:495.300000px;}
.y64{bottom:496.050000px;}
.y20e{bottom:501.150000px;}
.y249{bottom:502.200000px;}
.y101{bottom:502.650000px;}
.ycd{bottom:503.700000px;}
.y194{bottom:505.650000px;}
.y13a{bottom:505.800000px;}
.y25a{bottom:506.850000px;}
.y184{bottom:507.300000px;}
.y17d{bottom:507.600000px;}
.y4c{bottom:508.200000px;}
.y175{bottom:508.350000px;}
.y1f9{bottom:511.050000px;}
.y1a6{bottom:516.300000px;}
.y12{bottom:517.440450px;}
.yea{bottom:517.950000px;}
.y12b{bottom:519.000000px;}
.yaf{bottom:520.650000px;}
.y229{bottom:522.600000px;}
.y7e{bottom:523.350000px;}
.y30{bottom:523.950000px;}
.y163{bottom:526.350000px;}
.y20d{bottom:528.450000px;}
.y100{bottom:529.950000px;}
.ycc{bottom:531.000000px;}
.y1c9{bottom:532.200000px;}
.y193{bottom:532.950000px;}
.y139{bottom:533.100000px;}
.y259{bottom:534.150000px;}
.y183{bottom:534.600000px;}
.y17c{bottom:534.900000px;}
.y174{bottom:535.650000px;}
.y63{bottom:538.350000px;}
.y1f7{bottom:538.500000px;}
.y248{bottom:544.500000px;}
.ye9{bottom:545.250000px;}
.y12a{bottom:546.300000px;}
.yae{bottom:547.950000px;}
.y11{bottom:550.191450px;}
.y228{bottom:550.500000px;}
.y7d{bottom:550.650000px;}
.y2f{bottom:554.250000px;}
.y20c{bottom:555.750000px;}
.yff{bottom:557.250000px;}
.y1f6{bottom:557.400000px;}
.ycb{bottom:558.300000px;}
.y1c8{bottom:559.500000px;}
.y162{bottom:559.650000px;}
.y1a5{bottom:560.100000px;}
.y192{bottom:560.250000px;}
.y138{bottom:560.400000px;}
.y182{bottom:561.900000px;}
.yda{bottom:562.950000px;}
.y62{bottom:565.650000px;}
.y4b{bottom:568.650000px;}
.y247{bottom:571.950000px;}
.ye8{bottom:572.550000px;}
.y129{bottom:573.600000px;}
.yad{bottom:575.250000px;}
.y258{bottom:576.450000px;}
.y17b{bottom:577.200000px;}
.y161{bottom:577.800000px;}
.y96{bottom:577.950000px;}
.y20b{bottom:583.050000px;}
.y10{bottom:583.050450px;}
.y2e{bottom:584.400000px;}
.yfe{bottom:584.550000px;}
.y1f8{bottom:584.850000px;}
.yca{bottom:585.600000px;}
.y1c7{bottom:586.800000px;}
.y1a4{bottom:587.400000px;}
.y137{bottom:587.700000px;}
.y173{bottom:590.250000px;}
.y61{bottom:592.950000px;}
.y227{bottom:594.300000px;}
.y4a{bottom:598.800000px;}
.ye7{bottom:599.850000px;}
.y128{bottom:600.900000px;}
.yac{bottom:602.550000px;}
.y17a{bottom:604.500000px;}
.y95{bottom:605.250000px;}
.yc9{bottom:612.900000px;}
.y1c6{bottom:614.100000px;}
.y246{bottom:614.250000px;}
.y2d{bottom:614.700000px;}
.y136{bottom:615.000000px;}
.yf{bottom:617.087550px;}
.y172{bottom:617.550000px;}
.y60{bottom:620.250000px;}
.y226{bottom:621.600000px;}
.y1f3{bottom:624.450000px;}
.y20a{bottom:625.350000px;}
.yfd{bottom:626.850000px;}
.y273{bottom:627.150000px;}
.y49{bottom:629.100000px;}
.yab{bottom:629.850000px;}
.y179{bottom:631.800000px;}
.y15e{bottom:632.100000px;}
.y94{bottom:632.550000px;}
.y1f5{bottom:633.900000px;}
.yc8{bottom:641.400000px;}
.y245{bottom:641.700000px;}
.y1a3{bottom:642.000000px;}
.ye6{bottom:642.150000px;}
.y1f2{bottom:643.350000px;}
.y2c{bottom:644.850000px;}
.y5f{bottom:647.550000px;}
.y225{bottom:648.900000px;}
.y181{bottom:650.100000px;}
.y1f4{bottom:652.800000px;}
.yfc{bottom:654.150000px;}
.y272{bottom:654.450000px;}
.yaa{bottom:657.150000px;}
.ye{bottom:657.219000px;}
.y135{bottom:657.300000px;}
.y48{bottom:659.250000px;}
.y93{bottom:659.850000px;}
.y257{bottom:661.050000px;}
.y1f1{bottom:662.100000px;}
.y1a2{bottom:669.300000px;}
.y127{bottom:670.950000px;}
.y171{bottom:672.150000px;}
.y178{bottom:674.100000px;}
.y5e{bottom:674.850000px;}
.y2b{bottom:675.150000px;}
.y224{bottom:676.650000px;}
.y15d{bottom:680.400000px;}
.yfb{bottom:681.450000px;}
.y271{bottom:681.750000px;}
.y244{bottom:684.000000px;}
.yc7{bottom:684.450000px;}
.y1c5{bottom:685.800000px;}
.y92{bottom:687.150000px;}
.y126{bottom:687.300000px;}
.y256{bottom:688.350000px;}
.y47{bottom:689.550000px;}
.y1a1{bottom:696.600000px;}
.yd{bottom:697.350450px;}
.ya9{bottom:699.450000px;}
.y5d{bottom:702.150000px;}
.y125{bottom:703.800000px;}
.y2a{bottom:705.300000px;}
.y209{bottom:706.050000px;}
.yfa{bottom:708.750000px;}
.y270{bottom:709.050000px;}
.y15c{bottom:710.550000px;}
.y243{bottom:711.450000px;}
.yc6{bottom:711.750000px;}
.y1c4{bottom:713.100000px;}
.y112{bottom:714.450000px;}
.y255{bottom:716.100000px;}
.y223{bottom:720.450000px;}
.y1a0{bottom:723.900000px;}
.y8e{bottom:726.150000px;}
.ye5{bottom:726.750000px;}
.y5c{bottom:729.450000px;}
.y134{bottom:732.600000px;}
.y124{bottom:733.950000px;}
.y29{bottom:735.600000px;}
.yf9{bottom:736.050000px;}
.y26f{bottom:736.350000px;}
.yc{bottom:736.770450px;}
.y191{bottom:739.050000px;}
.y1c3{bottom:740.400000px;}
.y15b{bottom:740.850000px;}
.y111{bottom:741.750000px;}
.y22e{bottom:744.450000px;}
.y222{bottom:748.350000px;}
.y133{bottom:748.950000px;}
.y177{bottom:749.400000px;}
.y46{bottom:750.000000px;}
.y19f{bottom:751.200000px;}
.y8d{bottom:753.450000px;}
.y242{bottom:753.750000px;}
.yc5{bottom:754.050000px;}
.y5b{bottom:756.750000px;}
.y254{bottom:760.200000px;}
.y26e{bottom:763.650000px;}
.y123{bottom:764.250000px;}
.y28{bottom:765.750000px;}
.y190{bottom:766.350000px;}
.y1c2{bottom:767.700000px;}
.y110{bottom:769.050000px;}
.y15a{bottom:771.000000px;}
.ya5{bottom:771.750000px;}
.yb{bottom:771.935610px;}
.y1f0{bottom:776.700000px;}
.yf8{bottom:778.350000px;}
.y19e{bottom:778.500000px;}
.y8c{bottom:780.750000px;}
.y241{bottom:781.200000px;}
.yc4{bottom:781.350000px;}
.y176{bottom:782.250000px;}
.y7c{bottom:784.050000px;}
.y159{bottom:791.850000px;}
.y221{bottom:792.150000px;}
.y18f{bottom:793.650000px;}
.y122{bottom:794.400000px;}
.y1c1{bottom:795.000000px;}
.y27{bottom:796.050000px;}
.y10f{bottom:796.350000px;}
.y5a{bottom:799.050000px;}
.ya{bottom:801.108030px;}
.y1ef{bottom:804.000000px;}
.y19d{bottom:805.800000px;}
.y8b{bottom:808.050000px;}
.yc3{bottom:808.650000px;}
.y45{bottom:810.450000px;}
.y7b{bottom:811.350000px;}
.y27b{bottom:814.050000px;}
.y220{bottom:819.900000px;}
.yf7{bottom:820.650000px;}
.y1c0{bottom:822.300000px;}
.y240{bottom:823.500000px;}
.y170{bottom:823.650000px;}
.y121{bottom:824.700000px;}
.y26{bottom:826.200000px;}
.y59{bottom:826.350000px;}
.y9{bottom:830.280450px;}
.y19c{bottom:833.100000px;}
.y26d{bottom:833.250000px;}
.y8a{bottom:835.350000px;}
.ye4{bottom:835.950000px;}
.y91{bottom:838.650000px;}
.y44{bottom:840.600000px;}
.y27a{bottom:841.350000px;}
.y253{bottom:849.450000px;}
.y1bf{bottom:849.600000px;}
.y23f{bottom:850.800000px;}
.yc2{bottom:850.950000px;}
.y58{bottom:853.650000px;}
.y120{bottom:854.850000px;}
.y25{bottom:856.500000px;}
.y8{bottom:860.169450px;}
.y26c{bottom:860.550000px;}
.y19b{bottom:861.750000px;}
.y146{bottom:863.250000px;}
.y21f{bottom:863.700000px;}
.y90{bottom:865.950000px;}
.y43{bottom:870.900000px;}
.y1be{bottom:876.900000px;}
.y89{bottom:877.650000px;}
.y23e{bottom:878.100000px;}
.yc1{bottom:878.250000px;}
.y57{bottom:880.950000px;}
.y11f{bottom:885.150000px;}
.y1ee{bottom:886.200000px;}
.y24{bottom:886.650000px;}
.y26b{bottom:888.000000px;}
.y18e{bottom:890.550000px;}
.y21e{bottom:891.000000px;}
.y7{bottom:892.920450px;}
.y8f{bottom:893.250000px;}
.y279{bottom:895.950000px;}
.y42{bottom:901.050000px;}
.y1bd{bottom:904.200000px;}
.y88{bottom:905.100000px;}
.yc0{bottom:905.550000px;}
.y56{bottom:908.250000px;}
.y11e{bottom:915.300000px;}
.y23{bottom:916.950000px;}
.y21d{bottom:918.300000px;}
.y23d{bottom:920.400000px;}
.y10e{bottom:920.550000px;}
.y278{bottom:923.250000px;}
.y6{bottom:925.779450px;}
.y1ed{bottom:925.950000px;}
.y26a{bottom:930.300000px;}
.y1bc{bottom:931.500000px;}
.y145{bottom:932.850000px;}
.y55{bottom:935.550000px;}
.y1ec{bottom:944.700000px;}
.y11d{bottom:945.600000px;}
.y21c{bottom:946.200000px;}
.y22{bottom:947.100000px;}
.y87{bottom:947.400000px;}
.y23c{bottom:947.700000px;}
.ybf{bottom:947.850000px;}
.y22d{bottom:950.550000px;}
.y269{bottom:957.750000px;}
.y5{bottom:958.530450px;}
.y1bb{bottom:959.250000px;}
.y144{bottom:960.150000px;}
.y41{bottom:961.500000px;}
.y54{bottom:962.850000px;}
.y1eb{bottom:963.600000px;}
.y21{bottom:974.400000px;}
.y86{bottom:974.700000px;}
.y23b{bottom:975.000000px;}
.ybe{bottom:975.150000px;}
.y11c{bottom:975.750000px;}
.ya4{bottom:977.850000px;}
.y1d5{bottom:987.450000px;}
.y40{bottom:989.400000px;}
.y21b{bottom:990.000000px;}
.y53{bottom:990.150000px;}
.y268{bottom:1000.050000px;}
.y4{bottom:1000.110450px;}
.y85{bottom:1002.150000px;}
.y23a{bottom:1002.300000px;}
.ybd{bottom:1002.450000px;}
.y1ba{bottom:1003.050000px;}
.y1ea{bottom:1003.200000px;}
.ya3{bottom:1005.150000px;}
.y11b{bottom:1006.050000px;}
.y3f{bottom:1007.550000px;}
.y52{bottom:1017.450000px;}
.y1e9{bottom:1022.100000px;}
.y3{bottom:1024.950450px;}
.y267{bottom:1027.500000px;}
.ybc{bottom:1029.750000px;}
.y1b9{bottom:1030.350000px;}
.y7a{bottom:1032.450000px;}
.y11a{bottom:1036.200000px;}
.y20{bottom:1037.850000px;}
.y84{bottom:1044.450000px;}
.y51{bottom:1044.750000px;}
.y2{bottom:1049.790450px;}
.ybb{bottom:1057.050000px;}
.y1b8{bottom:1057.650000px;}
.y79{bottom:1059.750000px;}
.y1e6{bottom:1061.700000px;}
.y119{bottom:1066.500000px;}
.y3e{bottom:1068.000000px;}
.y266{bottom:1069.950000px;}
.y1e8{bottom:1071.150000px;}
.y83{bottom:1071.900000px;}
.y50{bottom:1072.050000px;}
.y1e5{bottom:1080.600000px;}
.y1b7{bottom:1084.950000px;}
.y239{bottom:1086.900000px;}
.y78{bottom:1087.050000px;}
.y1e7{bottom:1090.050000px;}
.y118{bottom:1096.650000px;}
.y1f{bottom:1098.300000px;}
.y4f{bottom:1099.350000px;}
.y1b6{bottom:1112.250000px;}
.y82{bottom:1114.200000px;}
.y77{bottom:1114.350000px;}
.y3d{bottom:1128.450000px;}
.y1b5{bottom:1140.150000px;}
.y4e{bottom:1141.650000px;}
.y1{bottom:1155.630450px;}
.y1e{bottom:1155.750000px;}
.y3c{bottom:1158.750000px;}
.y73{bottom:1208.999801px;}
.hd{height:12.305985px;}
.hf{height:18.104895px;}
.h10{height:18.105000px;}
.h14{height:33.150000px;}
.he{height:48.023438px;}
.h15{height:48.613477px;}
.h12{height:54.026367px;}
.hc{height:60.029297px;}
.h16{height:61.133789px;}
.h11{height:66.032227px;}
.h1{height:70.664062px;}
.hb{height:72.035156px;}
.h17{height:91.826367px;}
.h3{height:96.166934px;}
.h13{height:97.829297px;}
.h9{height:102.560040px;}
.h8{height:108.052734px;}
.h2{height:115.236000px;}
.h4{height:119.938535px;}
.h5{height:132.184512px;}
.h6{height:140.972040px;}
.h7{height:143.218080px;}
.h0{height:1263.000000px;}
.ha{height:1263.059998px;}
.w4{width:9.539925px;}
.w5{width:19.079850px;}
.w6{width:19.080000px;}
.w3{width:417.691500px;}
.w7{width:611.100000px;}
.w1{width:892.500000px;}
.w2{width:892.619998px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x30{left:4.200000px;}
.x2{left:85.050000px;}
.x4{left:87.570000px;}
.x3{left:89.190000px;}
.x17{left:106.500000px;}
.x68{left:111.900000px;}
.x5d{left:113.250000px;}
.x5a{left:121.200000px;}
.x46{left:128.700000px;}
.x5b{left:130.650000px;}
.x6{left:133.848000px;}
.xc{left:138.879000px;}
.x2f{left:141.000000px;}
.x14{left:142.500000px;}
.x2e{left:145.200000px;}
.x5{left:150.129000px;}
.xb{left:158.138100px;}
.x1a{left:160.500000px;}
.x2c{left:166.350000px;}
.x1c{left:186.600000px;}
.xe{left:188.196300px;}
.x34{left:200.100000px;}
.x27{left:201.600000px;}
.xa{left:209.697930px;}
.x1f{left:211.200000px;}
.x32{left:212.250000px;}
.x4e{left:216.000000px;}
.x31{left:218.700000px;}
.x24{left:220.800000px;}
.x25{left:223.050000px;}
.x26{left:225.600000px;}
.x5c{left:227.550000px;}
.x67{left:229.950000px;}
.x21{left:233.850000px;}
.x23{left:236.550000px;}
.x20{left:240.300000px;}
.x1d{left:242.700000px;}
.x22{left:244.350000px;}
.x28{left:250.500000px;}
.x11{left:263.241990px;}
.x48{left:266.550000px;}
.x2a{left:268.950000px;}
.x33{left:277.050000px;}
.x4c{left:281.100000px;}
.x2d{left:285.900000px;}
.x36{left:287.100000px;}
.x69{left:291.600000px;}
.x35{left:293.100000px;}
.x7{left:301.437000px;}
.x50{left:306.150000px;}
.x4d{left:307.500000px;}
.x5f{left:311.550000px;}
.x4f{left:325.500000px;}
.x5e{left:330.900000px;}
.x29{left:333.750000px;}
.x37{left:335.400000px;}
.x10{left:364.576500px;}
.x18{left:366.808136px;}
.xd{left:375.858000px;}
.x38{left:378.750000px;}
.x39{left:381.600000px;}
.x1e{left:396.000000px;}
.x4b{left:405.450000px;}
.x13{left:409.050000px;}
.x52{left:410.550000px;}
.x51{left:411.600000px;}
.x60{left:414.450000px;}
.x3a{left:419.400000px;}
.x3b{left:425.400000px;}
.x19{left:442.435501px;}
.x9{left:446.490000px;}
.x2b{left:451.021476px;}
.x3c{left:469.350000px;}
.x3d{left:471.600000px;}
.x47{left:480.329250px;}
.x61{left:504.450000px;}
.x54{left:509.400000px;}
.x3e{left:511.650000px;}
.x3f{left:513.150000px;}
.x53{left:516.150000px;}
.x41{left:555.750000px;}
.x40{left:558.000000px;}
.x16{left:584.320650px;}
.x1b{left:588.411600px;}
.x42{left:593.100000px;}
.x55{left:602.850000px;}
.x56{left:604.350000px;}
.x63{left:606.150000px;}
.x66{left:610.500000px;}
.x62{left:612.300000px;}
.xf{left:623.691990px;}
.x49{left:626.850000px;}
.x4a{left:636.450000px;}
.x12{left:644.310000px;}
.x43{left:653.550000px;}
.x44{left:698.700000px;}
.x64{left:699.900000px;}
.x57{left:705.000000px;}
.x59{left:710.550000px;}
.x65{left:714.750000px;}
.x58{left:720.000000px;}
.x45{left:739.500000px;}
.x1{left:770.760000px;}
.x15{left:775.350000px;}
.x8{left:807.920460px;}
@media print{
.v1{vertical-align:-106.240000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.333333pt;}
.v2{vertical-align:10.666667pt;}
.v4{vertical-align:18.666667pt;}
.v7{vertical-align:20.266667pt;}
.v6{vertical-align:21.866667pt;}
.v3{vertical-align:33.600000pt;}
.ls5{letter-spacing:-0.068352pt;}
.ls6{letter-spacing:-0.059808pt;}
.ls4{letter-spacing:-0.058720pt;}
.ls3{letter-spacing:-0.046976pt;}
.ls2{letter-spacing:-0.019200pt;}
.ls7{letter-spacing:-0.009600pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.038400pt;}
.ls8{letter-spacing:0.042667pt;}
.ls10{letter-spacing:0.090667pt;}
.ls9{letter-spacing:0.213333pt;}
.lsa{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.373333pt;}
.lsc{letter-spacing:9.808000pt;}
.ls12{letter-spacing:46.218667pt;}
.lsf{letter-spacing:63.792000pt;}
.ls14{letter-spacing:65.813333pt;}
.lsd{letter-spacing:66.720000pt;}
.ls13{letter-spacing:69.013333pt;}
.lsb{letter-spacing:71.466667pt;}
.ls11{letter-spacing:222.922667pt;}
.ws1f{word-spacing:-29.600000pt;}
.ws24{word-spacing:-22.506667pt;}
.wsb{word-spacing:-21.824000pt;}
.ws23{word-spacing:-20.592000pt;}
.wsd{word-spacing:-18.720000pt;}
.wsc{word-spacing:-18.186667pt;}
.ws1b{word-spacing:-16.368000pt;}
.ws1c{word-spacing:-14.976000pt;}
.ws20{word-spacing:-14.549333pt;}
.wsa{word-spacing:-0.163200pt;}
.ws7{word-spacing:-0.119616pt;}
.ws9{word-spacing:-0.093984pt;}
.ws4{word-spacing:-0.093952pt;}
.ws5{word-spacing:-0.082208pt;}
.ws8{word-spacing:-0.025632pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:0.009600pt;}
.ws6{word-spacing:0.076800pt;}
.ws1{word-spacing:0.144000pt;}
.ws2{word-spacing:0.163200pt;}
.ws1e{word-spacing:22.080000pt;}
.wse{word-spacing:48.362667pt;}
.ws1d{word-spacing:57.744000pt;}
.ws21{word-spacing:143.722667pt;}
.ws22{word-spacing:154.869333pt;}
.ws18{word-spacing:206.240000pt;}
.ws1a{word-spacing:211.200000pt;}
.ws19{word-spacing:214.666667pt;}
.ws13{word-spacing:230.458667pt;}
.ws15{word-spacing:239.018667pt;}
.ws16{word-spacing:248.576000pt;}
.ws14{word-spacing:273.706667pt;}
.ws11{word-spacing:274.352000pt;}
.ws10{word-spacing:276.842667pt;}
.ws12{word-spacing:287.018667pt;}
.wsf{word-spacing:289.818667pt;}
.ws17{word-spacing:622.560000pt;}
._2c{margin-left:-3.253333pt;}
._2a{margin-left:-2.080000pt;}
._8{margin-left:-1.066667pt;}
._30{width:0.960000pt;}
._23{width:1.920000pt;}
._32{width:3.253333pt;}
._33{width:4.213333pt;}
._31{width:5.120000pt;}
._39{width:6.400000pt;}
._38{width:7.360000pt;}
._36{width:8.640000pt;}
._37{width:9.653333pt;}
._22{width:10.613333pt;}
._1d{width:12.106667pt;}
._35{width:13.120000pt;}
._34{width:14.080000pt;}
._3b{width:15.626667pt;}
._40{width:16.693333pt;}
._63{width:17.600000pt;}
._42{width:19.626667pt;}
._3a{width:21.066667pt;}
._3e{width:22.453333pt;}
._3f{width:23.626667pt;}
._62{width:24.746667pt;}
._3d{width:26.186667pt;}
._3c{width:27.200000pt;}
._66{width:28.480000pt;}
._6e{width:29.653333pt;}
._67{width:30.560000pt;}
._4f{width:31.840000pt;}
._5c{width:34.704000pt;}
._5e{width:35.712000pt;}
._64{width:36.789333pt;}
._41{width:37.920000pt;}
._68{width:39.360000pt;}
._5b{width:41.066667pt;}
._60{width:50.592000pt;}
._58{width:52.128000pt;}
._56{width:53.808000pt;}
._5d{width:67.680000pt;}
._5f{width:68.832000pt;}
._59{width:70.320000pt;}
._65{width:73.184000pt;}
._61{width:74.592000pt;}
._57{width:77.712000pt;}
._5a{width:93.360000pt;}
._55{width:94.400000pt;}
._43{width:217.296000pt;}
._6b{width:231.312000pt;}
._54{width:232.960000pt;}
._69{width:238.800000pt;}
._45{width:250.624000pt;}
._6c{width:258.933333pt;}
._6d{width:263.920000pt;}
._51{width:267.840000pt;}
._50{width:269.600000pt;}
._53{width:276.373333pt;}
._52{width:282.080000pt;}
._44{width:291.808000pt;}
._6a{width:295.840000pt;}
._47{width:306.629333pt;}
._48{width:313.648000pt;}
._46{width:316.165333pt;}
._4c{width:317.509333pt;}
._4a{width:322.394667pt;}
._4b{width:323.296000pt;}
._49{width:331.093333pt;}
._4e{width:345.440000pt;}
._4d{width:355.786667pt;}
._16{width:851.520000pt;}
._27{width:852.960000pt;}
._2e{width:969.706667pt;}
._0{width:1001.324800pt;}
._3{width:1050.933333pt;}
._9{width:1126.240000pt;}
._17{width:1226.560000pt;}
._2d{width:1252.320000pt;}
._d{width:1375.306667pt;}
._15{width:1386.560000pt;}
._e{width:1457.386667pt;}
._19{width:1493.920000pt;}
._5{width:1495.360000pt;}
._c{width:1524.320000pt;}
._14{width:1536.000000pt;}
._b{width:1546.506667pt;}
._2b{width:1549.760000pt;}
._29{width:1569.013333pt;}
._4{width:1574.240000pt;}
._21{width:1615.626667pt;}
._13{width:1627.413333pt;}
._1b{width:1642.453333pt;}
._20{width:1645.386667pt;}
._1e{width:1651.946667pt;}
._26{width:1697.760000pt;}
._18{width:1707.306667pt;}
._f{width:1725.280000pt;}
._7{width:1735.146667pt;}
._1c{width:1737.013333pt;}
._10{width:1849.706667pt;}
._1a{width:1856.160000pt;}
._6{width:1893.066667pt;}
._24{width:1902.453333pt;}
._11{width:1934.133333pt;}
._1{width:1945.866667pt;}
._12{width:1954.826667pt;}
._2{width:1956.960000pt;}
._1f{width:1991.840000pt;}
._25{width:2001.973333pt;}
._a{width:2028.160000pt;}
._2f{width:2034.506667pt;}
._28{width:2105.600000pt;}
.fs9{font-size:24.533333pt;}
.fsb{font-size:27.733333pt;}
.fsa{font-size:30.933333pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:85.440000pt;}
.fs1{font-size:96.000000pt;}
.fs3{font-size:106.560000pt;}
.fs4{font-size:117.440000pt;}
.y0{bottom:0.000000pt;}
.y74{bottom:2.202653pt;}
.y76{bottom:2.760000pt;}
.y160{bottom:2.800000pt;}
.y15f{bottom:17.333333pt;}
.yba{bottom:34.660163pt;}
.y75{bottom:36.776163pt;}
.y207{bottom:99.333333pt;}
.y21a{bottom:100.400000pt;}
.y72{bottom:101.200000pt;}
.y117{bottom:102.533333pt;}
.y238{bottom:103.200000pt;}
.y1b4{bottom:103.600000pt;}
.y158{bottom:106.133333pt;}
.ye3{bottom:107.333333pt;}
.y1e4{bottom:109.733333pt;}
.y18d{bottom:111.066667pt;}
.y16f{bottom:112.000000pt;}
.ya7{bottom:112.133333pt;}
.y10d{bottom:115.600000pt;}
.y14b{bottom:118.266667pt;}
.y206{bottom:123.600000pt;}
.y219{bottom:124.933333pt;}
.y71{bottom:125.466667pt;}
.y116{bottom:126.800000pt;}
.y1d4{bottom:127.333333pt;}
.y237{bottom:127.600000pt;}
.y1d{bottom:127.715067pt;}
.y1b3{bottom:127.866667pt;}
.yd9{bottom:129.866667pt;}
.y157{bottom:130.400000pt;}
.ye2{bottom:131.600000pt;}
.y1e3{bottom:134.000000pt;}
.y18c{bottom:135.333333pt;}
.y16e{bottom:136.266667pt;}
.y81{bottom:136.400000pt;}
.y10c{bottom:139.866667pt;}
.y265{bottom:141.600000pt;}
.y14a{bottom:142.533333pt;}
.y3b{bottom:143.333333pt;}
.y1d6{bottom:144.933333pt;}
.ya2{bottom:147.333333pt;}
.y205{bottom:147.866667pt;}
.y70{bottom:149.733333pt;}
.y115{bottom:151.066667pt;}
.y1d3{bottom:151.600000pt;}
.y1b2{bottom:152.133333pt;}
.y277{bottom:152.266667pt;}
.yd8{bottom:154.133333pt;}
.yf6{bottom:155.866667pt;}
.y1e2{bottom:158.266667pt;}
.y18b{bottom:159.600000pt;}
.y80{bottom:160.666667pt;}
.y218{bottom:162.533333pt;}
.y10b{bottom:164.133333pt;}
.y236{bottom:165.333333pt;}
.y264{bottom:165.866667pt;}
.y149{bottom:166.800000pt;}
.y143{bottom:166.933333pt;}
.ya8{bottom:167.147333pt;}
.y156{bottom:168.000000pt;}
.y4d{bottom:168.480667pt;}
.y1d7{bottom:168.650267pt;}
.ye1{bottom:169.200000pt;}
.y3a{bottom:170.266667pt;}
.y1c{bottom:171.467067pt;}
.ya1{bottom:171.600000pt;}
.y204{bottom:172.133333pt;}
.y16d{bottom:173.866667pt;}
.y6f{bottom:174.000000pt;}
.y252{bottom:175.066667pt;}
.y1d2{bottom:175.866667pt;}
.y1b1{bottom:176.400000pt;}
.yd7{bottom:178.400000pt;}
.yf5{bottom:180.133333pt;}
.y114{bottom:180.400000pt;}
.y1e1{bottom:182.533333pt;}
.y1da{bottom:183.866667pt;}
.y7f{bottom:184.933333pt;}
.y217{bottom:187.066667pt;}
.y10a{bottom:188.400000pt;}
.y276{bottom:189.600000pt;}
.y263{bottom:190.533333pt;}
.y148{bottom:191.066667pt;}
.y142{bottom:191.200000pt;}
.y155{bottom:192.266667pt;}
.ye0{bottom:193.466667pt;}
.y113{bottom:194.933333pt;}
.ya0{bottom:195.866667pt;}
.y203{bottom:196.400000pt;}
.y39{bottom:197.066667pt;}
.y16c{bottom:198.133333pt;}
.y6e{bottom:198.266667pt;}
.y251{bottom:199.333333pt;}
.y1b{bottom:199.943627pt;}
.y1b0{bottom:200.666667pt;}
.yd6{bottom:202.666667pt;}
.y235{bottom:203.200000pt;}
.yf4{bottom:204.400000pt;}
.yb9{bottom:206.800000pt;}
.y1d9{bottom:208.133333pt;}
.ya6{bottom:209.200000pt;}
.y147{bottom:215.333333pt;}
.y141{bottom:215.466667pt;}
.y154{bottom:216.533333pt;}
.ydf{bottom:217.733333pt;}
.y9f{bottom:220.133333pt;}
.y202{bottom:220.666667pt;}
.y16b{bottom:222.400000pt;}
.y6d{bottom:222.533333pt;}
.y250{bottom:223.600000pt;}
.y38{bottom:224.000000pt;}
.y216{bottom:224.666667pt;}
.y1af{bottom:224.933333pt;}
.y1a{bottom:225.874667pt;}
.y109{bottom:226.000000pt;}
.yd5{bottom:226.933333pt;}
.yf3{bottom:228.666667pt;}
.y275{bottom:228.933333pt;}
.y262{bottom:229.733333pt;}
.yb8{bottom:231.066667pt;}
.y18a{bottom:232.800000pt;}
.y1d1{bottom:239.600000pt;}
.y140{bottom:239.733333pt;}
.y153{bottom:240.800000pt;}
.y234{bottom:240.933333pt;}
.yde{bottom:242.000000pt;}
.y9e{bottom:244.400000pt;}
.y201{bottom:244.933333pt;}
.y16a{bottom:246.666667pt;}
.y6c{bottom:246.800000pt;}
.y24f{bottom:247.866667pt;}
.y1ae{bottom:249.733333pt;}
.y108{bottom:250.266667pt;}
.y37{bottom:250.800000pt;}
.yd4{bottom:251.200000pt;}
.y19{bottom:251.805707pt;}
.yf2{bottom:252.933333pt;}
.yb7{bottom:255.333333pt;}
.y215{bottom:262.266667pt;}
.y1d0{bottom:263.866667pt;}
.y13f{bottom:264.000000pt;}
.y132{bottom:264.800000pt;}
.y152{bottom:265.066667pt;}
.ydd{bottom:266.266667pt;}
.y261{bottom:267.333333pt;}
.y189{bottom:268.266667pt;}
.y9d{bottom:268.666667pt;}
.y169{bottom:270.933333pt;}
.y6b{bottom:271.066667pt;}
.y24e{bottom:272.133333pt;}
.y107{bottom:274.533333pt;}
.yd3{bottom:275.466667pt;}
.yf1{bottom:277.200000pt;}
.y36{bottom:277.733333pt;}
.y18{bottom:277.736747pt;}
.y233{bottom:278.800000pt;}
.yb6{bottom:279.600000pt;}
.y1d8{bottom:283.066667pt;}
.y214{bottom:286.533333pt;}
.y1cf{bottom:288.133333pt;}
.y1ad{bottom:288.666667pt;}
.y131{bottom:289.066667pt;}
.y151{bottom:289.333333pt;}
.y19a{bottom:290.533333pt;}
.y260{bottom:291.600000pt;}
.y9c{bottom:292.933333pt;}
.y168{bottom:295.200000pt;}
.y6a{bottom:295.333333pt;}
.y24d{bottom:296.400000pt;}
.yf0{bottom:301.466667pt;}
.y13e{bottom:301.600000pt;}
.y17{bottom:303.731867pt;}
.yb5{bottom:303.866667pt;}
.y35{bottom:304.533333pt;}
.y188{bottom:305.200000pt;}
.y213{bottom:310.800000pt;}
.y106{bottom:312.133333pt;}
.y1ce{bottom:312.400000pt;}
.y1ac{bottom:312.933333pt;}
.yd2{bottom:313.066667pt;}
.y130{bottom:313.333333pt;}
.y150{bottom:313.600000pt;}
.y199{bottom:314.800000pt;}
.y25f{bottom:315.866667pt;}
.y232{bottom:316.400000pt;}
.y9b{bottom:317.200000pt;}
.y200{bottom:318.133333pt;}
.y167{bottom:319.466667pt;}
.y69{bottom:319.600000pt;}
.y24c{bottom:320.666667pt;}
.yef{bottom:325.733333pt;}
.yb4{bottom:328.133333pt;}
.y16{bottom:329.662907pt;}
.y212{bottom:335.066667pt;}
.y105{bottom:336.400000pt;}
.y1cd{bottom:336.666667pt;}
.y1ab{bottom:337.200000pt;}
.yd1{bottom:337.333333pt;}
.y198{bottom:339.066667pt;}
.y25e{bottom:340.133333pt;}
.y231{bottom:340.666667pt;}
.y187{bottom:341.466667pt;}
.y14f{bottom:343.066667pt;}
.y68{bottom:343.866667pt;}
.y186{bottom:344.666667pt;}
.y1e0{bottom:345.733333pt;}
.yee{bottom:350.000000pt;}
.y12f{bottom:350.933333pt;}
.ydc{bottom:352.400000pt;}
.y1ff{bottom:353.333333pt;}
.y9a{bottom:354.800000pt;}
.y15{bottom:355.593947pt;}
.y34{bottom:358.266667pt;}
.y1df{bottom:358.800000pt;}
.y211{bottom:359.333333pt;}
.y104{bottom:360.666667pt;}
.y1cc{bottom:360.933333pt;}
.y1aa{bottom:361.466667pt;}
.yd0{bottom:361.600000pt;}
.y197{bottom:363.333333pt;}
.y25d{bottom:364.400000pt;}
.yb3{bottom:365.733333pt;}
.y67{bottom:368.133333pt;}
.y1fc{bottom:369.466667pt;}
.y185{bottom:373.466667pt;}
.y1dc{bottom:373.600000pt;}
.yed{bottom:374.266667pt;}
.y12e{bottom:375.200000pt;}
.ydb{bottom:376.666667pt;}
.y13d{bottom:376.800000pt;}
.y22c{bottom:377.066667pt;}
.y1de{bottom:378.000000pt;}
.y180{bottom:378.400000pt;}
.y99{bottom:379.066667pt;}
.y230{bottom:379.333333pt;}
.y166{bottom:381.466667pt;}
.y14{bottom:381.524987pt;}
.y24b{bottom:383.066667pt;}
.y210{bottom:383.600000pt;}
.y103{bottom:384.933333pt;}
.y33{bottom:385.200000pt;}
.y1a9{bottom:385.733333pt;}
.ycf{bottom:385.866667pt;}
.y1fb{bottom:386.133333pt;}
.y1db{bottom:386.666667pt;}
.y274{bottom:387.600000pt;}
.y25c{bottom:388.666667pt;}
.yb2{bottom:390.000000pt;}
.y1dd{bottom:390.933333pt;}
.y66{bottom:392.400000pt;}
.y1fe{bottom:397.066667pt;}
.y12d{bottom:399.466667pt;}
.y196{bottom:400.933333pt;}
.y13c{bottom:401.066667pt;}
.y14e{bottom:401.866667pt;}
.y17f{bottom:402.666667pt;}
.y1fa{bottom:402.933333pt;}
.y98{bottom:403.333333pt;}
.y165{bottom:405.733333pt;}
.y13{bottom:407.456027pt;}
.y20f{bottom:407.866667pt;}
.y102{bottom:409.200000pt;}
.y1cb{bottom:409.466667pt;}
.y1a8{bottom:410.000000pt;}
.yce{bottom:410.133333pt;}
.yec{bottom:411.866667pt;}
.y32{bottom:412.000000pt;}
.yb1{bottom:414.266667pt;}
.y22b{bottom:416.000000pt;}
.y14d{bottom:416.533333pt;}
.y65{bottom:416.666667pt;}
.y208{bottom:418.266667pt;}
.y1fd{bottom:418.933333pt;}
.y24a{bottom:422.000000pt;}
.y12c{bottom:423.733333pt;}
.y195{bottom:425.200000pt;}
.y13b{bottom:425.333333pt;}
.y25b{bottom:426.266667pt;}
.y17e{bottom:426.933333pt;}
.y97{bottom:427.600000pt;}
.y22f{bottom:430.000000pt;}
.y164{bottom:430.133333pt;}
.y14c{bottom:431.066667pt;}
.y1ca{bottom:434.133333pt;}
.y1a7{bottom:434.266667pt;}
.yeb{bottom:436.133333pt;}
.yb0{bottom:438.533333pt;}
.y31{bottom:438.933333pt;}
.y22a{bottom:440.266667pt;}
.y64{bottom:440.933333pt;}
.y20e{bottom:445.466667pt;}
.y249{bottom:446.400000pt;}
.y101{bottom:446.800000pt;}
.ycd{bottom:447.733333pt;}
.y194{bottom:449.466667pt;}
.y13a{bottom:449.600000pt;}
.y25a{bottom:450.533333pt;}
.y184{bottom:450.933333pt;}
.y17d{bottom:451.200000pt;}
.y4c{bottom:451.733333pt;}
.y175{bottom:451.866667pt;}
.y1f9{bottom:454.266667pt;}
.y1a6{bottom:458.933333pt;}
.y12{bottom:459.947067pt;}
.yea{bottom:460.400000pt;}
.y12b{bottom:461.333333pt;}
.yaf{bottom:462.800000pt;}
.y229{bottom:464.533333pt;}
.y7e{bottom:465.200000pt;}
.y30{bottom:465.733333pt;}
.y163{bottom:467.866667pt;}
.y20d{bottom:469.733333pt;}
.y100{bottom:471.066667pt;}
.ycc{bottom:472.000000pt;}
.y1c9{bottom:473.066667pt;}
.y193{bottom:473.733333pt;}
.y139{bottom:473.866667pt;}
.y259{bottom:474.800000pt;}
.y183{bottom:475.200000pt;}
.y17c{bottom:475.466667pt;}
.y174{bottom:476.133333pt;}
.y63{bottom:478.533333pt;}
.y1f7{bottom:478.666667pt;}
.y248{bottom:484.000000pt;}
.ye9{bottom:484.666667pt;}
.y12a{bottom:485.600000pt;}
.yae{bottom:487.066667pt;}
.y11{bottom:489.059067pt;}
.y228{bottom:489.333333pt;}
.y7d{bottom:489.466667pt;}
.y2f{bottom:492.666667pt;}
.y20c{bottom:494.000000pt;}
.yff{bottom:495.333333pt;}
.y1f6{bottom:495.466667pt;}
.ycb{bottom:496.266667pt;}
.y1c8{bottom:497.333333pt;}
.y162{bottom:497.466667pt;}
.y1a5{bottom:497.866667pt;}
.y192{bottom:498.000000pt;}
.y138{bottom:498.133333pt;}
.y182{bottom:499.466667pt;}
.yda{bottom:500.400000pt;}
.y62{bottom:502.800000pt;}
.y4b{bottom:505.466667pt;}
.y247{bottom:508.400000pt;}
.ye8{bottom:508.933333pt;}
.y129{bottom:509.866667pt;}
.yad{bottom:511.333333pt;}
.y258{bottom:512.400000pt;}
.y17b{bottom:513.066667pt;}
.y161{bottom:513.600000pt;}
.y96{bottom:513.733333pt;}
.y20b{bottom:518.266667pt;}
.y10{bottom:518.267067pt;}
.y2e{bottom:519.466667pt;}
.yfe{bottom:519.600000pt;}
.y1f8{bottom:519.866667pt;}
.yca{bottom:520.533333pt;}
.y1c7{bottom:521.600000pt;}
.y1a4{bottom:522.133333pt;}
.y137{bottom:522.400000pt;}
.y173{bottom:524.666667pt;}
.y61{bottom:527.066667pt;}
.y227{bottom:528.266667pt;}
.y4a{bottom:532.266667pt;}
.ye7{bottom:533.200000pt;}
.y128{bottom:534.133333pt;}
.yac{bottom:535.600000pt;}
.y17a{bottom:537.333333pt;}
.y95{bottom:538.000000pt;}
.yc9{bottom:544.800000pt;}
.y1c6{bottom:545.866667pt;}
.y246{bottom:546.000000pt;}
.y2d{bottom:546.400000pt;}
.y136{bottom:546.666667pt;}
.yf{bottom:548.522267pt;}
.y172{bottom:548.933333pt;}
.y60{bottom:551.333333pt;}
.y226{bottom:552.533333pt;}
.y1f3{bottom:555.066667pt;}
.y20a{bottom:555.866667pt;}
.yfd{bottom:557.200000pt;}
.y273{bottom:557.466667pt;}
.y49{bottom:559.200000pt;}
.yab{bottom:559.866667pt;}
.y179{bottom:561.600000pt;}
.y15e{bottom:561.866667pt;}
.y94{bottom:562.266667pt;}
.y1f5{bottom:563.466667pt;}
.yc8{bottom:570.133333pt;}
.y245{bottom:570.400000pt;}
.y1a3{bottom:570.666667pt;}
.ye6{bottom:570.800000pt;}
.y1f2{bottom:571.866667pt;}
.y2c{bottom:573.200000pt;}
.y5f{bottom:575.600000pt;}
.y225{bottom:576.800000pt;}
.y181{bottom:577.866667pt;}
.y1f4{bottom:580.266667pt;}
.yfc{bottom:581.466667pt;}
.y272{bottom:581.733333pt;}
.yaa{bottom:584.133333pt;}
.ye{bottom:584.194667pt;}
.y135{bottom:584.266667pt;}
.y48{bottom:586.000000pt;}
.y93{bottom:586.533333pt;}
.y257{bottom:587.600000pt;}
.y1f1{bottom:588.533333pt;}
.y1a2{bottom:594.933333pt;}
.y127{bottom:596.400000pt;}
.y171{bottom:597.466667pt;}
.y178{bottom:599.200000pt;}
.y5e{bottom:599.866667pt;}
.y2b{bottom:600.133333pt;}
.y224{bottom:601.466667pt;}
.y15d{bottom:604.800000pt;}
.yfb{bottom:605.733333pt;}
.y271{bottom:606.000000pt;}
.y244{bottom:608.000000pt;}
.yc7{bottom:608.400000pt;}
.y1c5{bottom:609.600000pt;}
.y92{bottom:610.800000pt;}
.y126{bottom:610.933333pt;}
.y256{bottom:611.866667pt;}
.y47{bottom:612.933333pt;}
.y1a1{bottom:619.200000pt;}
.yd{bottom:619.867067pt;}
.ya9{bottom:621.733333pt;}
.y5d{bottom:624.133333pt;}
.y125{bottom:625.600000pt;}
.y2a{bottom:626.933333pt;}
.y209{bottom:627.600000pt;}
.yfa{bottom:630.000000pt;}
.y270{bottom:630.266667pt;}
.y15c{bottom:631.600000pt;}
.y243{bottom:632.400000pt;}
.yc6{bottom:632.666667pt;}
.y1c4{bottom:633.866667pt;}
.y112{bottom:635.066667pt;}
.y255{bottom:636.533333pt;}
.y223{bottom:640.400000pt;}
.y1a0{bottom:643.466667pt;}
.y8e{bottom:645.466667pt;}
.ye5{bottom:646.000000pt;}
.y5c{bottom:648.400000pt;}
.y134{bottom:651.200000pt;}
.y124{bottom:652.400000pt;}
.y29{bottom:653.866667pt;}
.yf9{bottom:654.266667pt;}
.y26f{bottom:654.533333pt;}
.yc{bottom:654.907067pt;}
.y191{bottom:656.933333pt;}
.y1c3{bottom:658.133333pt;}
.y15b{bottom:658.533333pt;}
.y111{bottom:659.333333pt;}
.y22e{bottom:661.733333pt;}
.y222{bottom:665.200000pt;}
.y133{bottom:665.733333pt;}
.y177{bottom:666.133333pt;}
.y46{bottom:666.666667pt;}
.y19f{bottom:667.733333pt;}
.y8d{bottom:669.733333pt;}
.y242{bottom:670.000000pt;}
.yc5{bottom:670.266667pt;}
.y5b{bottom:672.666667pt;}
.y254{bottom:675.733333pt;}
.y26e{bottom:678.800000pt;}
.y123{bottom:679.333333pt;}
.y28{bottom:680.666667pt;}
.y190{bottom:681.200000pt;}
.y1c2{bottom:682.400000pt;}
.y110{bottom:683.600000pt;}
.y15a{bottom:685.333333pt;}
.ya5{bottom:686.000000pt;}
.yb{bottom:686.164987pt;}
.y1f0{bottom:690.400000pt;}
.yf8{bottom:691.866667pt;}
.y19e{bottom:692.000000pt;}
.y8c{bottom:694.000000pt;}
.y241{bottom:694.400000pt;}
.yc4{bottom:694.533333pt;}
.y176{bottom:695.333333pt;}
.y7c{bottom:696.933333pt;}
.y159{bottom:703.866667pt;}
.y221{bottom:704.133333pt;}
.y18f{bottom:705.466667pt;}
.y122{bottom:706.133333pt;}
.y1c1{bottom:706.666667pt;}
.y27{bottom:707.600000pt;}
.y10f{bottom:707.866667pt;}
.y5a{bottom:710.266667pt;}
.ya{bottom:712.096027pt;}
.y1ef{bottom:714.666667pt;}
.y19d{bottom:716.266667pt;}
.y8b{bottom:718.266667pt;}
.yc3{bottom:718.800000pt;}
.y45{bottom:720.400000pt;}
.y7b{bottom:721.200000pt;}
.y27b{bottom:723.600000pt;}
.y220{bottom:728.800000pt;}
.yf7{bottom:729.466667pt;}
.y1c0{bottom:730.933333pt;}
.y240{bottom:732.000000pt;}
.y170{bottom:732.133333pt;}
.y121{bottom:733.066667pt;}
.y26{bottom:734.400000pt;}
.y59{bottom:734.533333pt;}
.y9{bottom:738.027067pt;}
.y19c{bottom:740.533333pt;}
.y26d{bottom:740.666667pt;}
.y8a{bottom:742.533333pt;}
.ye4{bottom:743.066667pt;}
.y91{bottom:745.466667pt;}
.y44{bottom:747.200000pt;}
.y27a{bottom:747.866667pt;}
.y253{bottom:755.066667pt;}
.y1bf{bottom:755.200000pt;}
.y23f{bottom:756.266667pt;}
.yc2{bottom:756.400000pt;}
.y58{bottom:758.800000pt;}
.y120{bottom:759.866667pt;}
.y25{bottom:761.333333pt;}
.y8{bottom:764.595067pt;}
.y26c{bottom:764.933333pt;}
.y19b{bottom:766.000000pt;}
.y146{bottom:767.333333pt;}
.y21f{bottom:767.733333pt;}
.y90{bottom:769.733333pt;}
.y43{bottom:774.133333pt;}
.y1be{bottom:779.466667pt;}
.y89{bottom:780.133333pt;}
.y23e{bottom:780.533333pt;}
.yc1{bottom:780.666667pt;}
.y57{bottom:783.066667pt;}
.y11f{bottom:786.800000pt;}
.y1ee{bottom:787.733333pt;}
.y24{bottom:788.133333pt;}
.y26b{bottom:789.333333pt;}
.y18e{bottom:791.600000pt;}
.y21e{bottom:792.000000pt;}
.y7{bottom:793.707067pt;}
.y8f{bottom:794.000000pt;}
.y279{bottom:796.400000pt;}
.y42{bottom:800.933333pt;}
.y1bd{bottom:803.733333pt;}
.y88{bottom:804.533333pt;}
.yc0{bottom:804.933333pt;}
.y56{bottom:807.333333pt;}
.y11e{bottom:813.600000pt;}
.y23{bottom:815.066667pt;}
.y21d{bottom:816.266667pt;}
.y23d{bottom:818.133333pt;}
.y10e{bottom:818.266667pt;}
.y278{bottom:820.666667pt;}
.y6{bottom:822.915067pt;}
.y1ed{bottom:823.066667pt;}
.y26a{bottom:826.933333pt;}
.y1bc{bottom:828.000000pt;}
.y145{bottom:829.200000pt;}
.y55{bottom:831.600000pt;}
.y1ec{bottom:839.733333pt;}
.y11d{bottom:840.533333pt;}
.y21c{bottom:841.066667pt;}
.y22{bottom:841.866667pt;}
.y87{bottom:842.133333pt;}
.y23c{bottom:842.400000pt;}
.ybf{bottom:842.533333pt;}
.y22d{bottom:844.933333pt;}
.y269{bottom:851.333333pt;}
.y5{bottom:852.027067pt;}
.y1bb{bottom:852.666667pt;}
.y144{bottom:853.466667pt;}
.y41{bottom:854.666667pt;}
.y54{bottom:855.866667pt;}
.y1eb{bottom:856.533333pt;}
.y21{bottom:866.133333pt;}
.y86{bottom:866.400000pt;}
.y23b{bottom:866.666667pt;}
.ybe{bottom:866.800000pt;}
.y11c{bottom:867.333333pt;}
.ya4{bottom:869.200000pt;}
.y1d5{bottom:877.733333pt;}
.y40{bottom:879.466667pt;}
.y21b{bottom:880.000000pt;}
.y53{bottom:880.133333pt;}
.y268{bottom:888.933333pt;}
.y4{bottom:888.987067pt;}
.y85{bottom:890.800000pt;}
.y23a{bottom:890.933333pt;}
.ybd{bottom:891.066667pt;}
.y1ba{bottom:891.600000pt;}
.y1ea{bottom:891.733333pt;}
.ya3{bottom:893.466667pt;}
.y11b{bottom:894.266667pt;}
.y3f{bottom:895.600000pt;}
.y52{bottom:904.400000pt;}
.y1e9{bottom:908.533333pt;}
.y3{bottom:911.067067pt;}
.y267{bottom:913.333333pt;}
.ybc{bottom:915.333333pt;}
.y1b9{bottom:915.866667pt;}
.y7a{bottom:917.733333pt;}
.y11a{bottom:921.066667pt;}
.y20{bottom:922.533333pt;}
.y84{bottom:928.400000pt;}
.y51{bottom:928.666667pt;}
.y2{bottom:933.147067pt;}
.ybb{bottom:939.600000pt;}
.y1b8{bottom:940.133333pt;}
.y79{bottom:942.000000pt;}
.y1e6{bottom:943.733333pt;}
.y119{bottom:948.000000pt;}
.y3e{bottom:949.333333pt;}
.y266{bottom:951.066667pt;}
.y1e8{bottom:952.133333pt;}
.y83{bottom:952.800000pt;}
.y50{bottom:952.933333pt;}
.y1e5{bottom:960.533333pt;}
.y1b7{bottom:964.400000pt;}
.y239{bottom:966.133333pt;}
.y78{bottom:966.266667pt;}
.y1e7{bottom:968.933333pt;}
.y118{bottom:974.800000pt;}
.y1f{bottom:976.266667pt;}
.y4f{bottom:977.200000pt;}
.y1b6{bottom:988.666667pt;}
.y82{bottom:990.400000pt;}
.y77{bottom:990.533333pt;}
.y3d{bottom:1003.066667pt;}
.y1b5{bottom:1013.466667pt;}
.y4e{bottom:1014.800000pt;}
.y1{bottom:1027.227067pt;}
.y1e{bottom:1027.333333pt;}
.y3c{bottom:1030.000000pt;}
.y73{bottom:1074.666490pt;}
.hd{height:10.938653pt;}
.hf{height:16.093240pt;}
.h10{height:16.093333pt;}
.h14{height:29.466667pt;}
.he{height:42.687500pt;}
.h15{height:43.211979pt;}
.h12{height:48.023438pt;}
.hc{height:53.359375pt;}
.h16{height:54.341146pt;}
.h11{height:58.695312pt;}
.h1{height:62.812500pt;}
.hb{height:64.031250pt;}
.h17{height:81.623437pt;}
.h3{height:85.481719pt;}
.h13{height:86.959375pt;}
.h9{height:91.164480pt;}
.h8{height:96.046875pt;}
.h2{height:102.432000pt;}
.h4{height:106.612031pt;}
.h5{height:117.497344pt;}
.h6{height:125.308480pt;}
.h7{height:127.304960pt;}
.h0{height:1122.666667pt;}
.ha{height:1122.719999pt;}
.w4{width:8.479933pt;}
.w5{width:16.959867pt;}
.w6{width:16.960000pt;}
.w3{width:371.281333pt;}
.w7{width:543.200000pt;}
.w1{width:793.333333pt;}
.w2{width:793.439999pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x30{left:3.733333pt;}
.x2{left:75.600000pt;}
.x4{left:77.840000pt;}
.x3{left:79.280000pt;}
.x17{left:94.666667pt;}
.x68{left:99.466667pt;}
.x5d{left:100.666667pt;}
.x5a{left:107.733333pt;}
.x46{left:114.400000pt;}
.x5b{left:116.133333pt;}
.x6{left:118.976000pt;}
.xc{left:123.448000pt;}
.x2f{left:125.333333pt;}
.x14{left:126.666667pt;}
.x2e{left:129.066667pt;}
.x5{left:133.448000pt;}
.xb{left:140.567200pt;}
.x1a{left:142.666667pt;}
.x2c{left:147.866667pt;}
.x1c{left:165.866667pt;}
.xe{left:167.285600pt;}
.x34{left:177.866667pt;}
.x27{left:179.200000pt;}
.xa{left:186.398160pt;}
.x1f{left:187.733333pt;}
.x32{left:188.666667pt;}
.x4e{left:192.000000pt;}
.x31{left:194.400000pt;}
.x24{left:196.266667pt;}
.x25{left:198.266667pt;}
.x26{left:200.533333pt;}
.x5c{left:202.266667pt;}
.x67{left:204.400000pt;}
.x21{left:207.866667pt;}
.x23{left:210.266667pt;}
.x20{left:213.600000pt;}
.x1d{left:215.733333pt;}
.x22{left:217.200000pt;}
.x28{left:222.666667pt;}
.x11{left:233.992880pt;}
.x48{left:236.933333pt;}
.x2a{left:239.066667pt;}
.x33{left:246.266667pt;}
.x4c{left:249.866667pt;}
.x2d{left:254.133333pt;}
.x36{left:255.200000pt;}
.x69{left:259.200000pt;}
.x35{left:260.533333pt;}
.x7{left:267.944000pt;}
.x50{left:272.133333pt;}
.x4d{left:273.333333pt;}
.x5f{left:276.933333pt;}
.x4f{left:289.333333pt;}
.x5e{left:294.133333pt;}
.x29{left:296.666667pt;}
.x37{left:298.133333pt;}
.x10{left:324.068000pt;}
.x18{left:326.051676pt;}
.xd{left:334.096000pt;}
.x38{left:336.666667pt;}
.x39{left:339.200000pt;}
.x1e{left:352.000000pt;}
.x4b{left:360.400000pt;}
.x13{left:363.600000pt;}
.x52{left:364.933333pt;}
.x51{left:365.866667pt;}
.x60{left:368.400000pt;}
.x3a{left:372.800000pt;}
.x3b{left:378.133333pt;}
.x19{left:393.276001pt;}
.x9{left:396.880000pt;}
.x2b{left:400.907979pt;}
.x3c{left:417.200000pt;}
.x3d{left:419.200000pt;}
.x47{left:426.959333pt;}
.x61{left:448.400000pt;}
.x54{left:452.800000pt;}
.x3e{left:454.800000pt;}
.x3f{left:456.133333pt;}
.x53{left:458.800000pt;}
.x41{left:494.000000pt;}
.x40{left:496.000000pt;}
.x16{left:519.396133pt;}
.x1b{left:523.032533pt;}
.x42{left:527.200000pt;}
.x55{left:535.866667pt;}
.x56{left:537.200000pt;}
.x63{left:538.800000pt;}
.x66{left:542.666667pt;}
.x62{left:544.266667pt;}
.xf{left:554.392880pt;}
.x49{left:557.200000pt;}
.x4a{left:565.733333pt;}
.x12{left:572.720000pt;}
.x43{left:580.933333pt;}
.x44{left:621.066667pt;}
.x64{left:622.133333pt;}
.x57{left:626.666667pt;}
.x59{left:631.600000pt;}
.x65{left:635.333333pt;}
.x58{left:640.000000pt;}
.x45{left:657.333333pt;}
.x1{left:685.120000pt;}
.x15{left:689.200000pt;}
.x8{left:718.151520pt;}
}




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