
    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_b7df9b84b17456ea55f1d919.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;font-style:normal;font-weight: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_d63eacb7cb209f293fa832c6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.095703;font-style:normal;font-weight: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_48c153f39a766f0ca1c7024d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.692383;font-style:normal;font-weight: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_544dd00b416903713374c74c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_23818ac4549a23432b920616.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5f5d536de10bfca8861b5e80.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.708008;font-style:normal;font-weight: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_9302fbd5a2fae8289761a163.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.677246;font-style:normal;font-weight: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_fdf4c80f60b098ce367aca69.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.708008;font-style:normal;font-weight: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_118d421d8c454e0e1441d7f7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight: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_6ca0b733ffc9f980b1aa0181.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight: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_0793741544447cbdafb59022.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.692383;font-style:normal;font-weight: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_48c153f39a766f0ca1c7024d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.692383;font-style:normal;font-weight: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_4320d0c025be7c41156b3231.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.692383;font-style:normal;font-weight: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_3ba51c81c891194fe526a7e3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.692383;font-style:normal;font-weight: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_0d764fef5de62a5267ce6f28.woff2')format("woff");}.fff{font-family:fff;line-height:0.687500;font-style:normal;font-weight: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_daf73ba3d4ab003250d91eb4.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.687500;font-style:normal;font-weight: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_29d03a5aa5365f357ec8562c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.689453;font-style:normal;font-weight: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_f23305f87be7fd39431b5ed1.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.687500;font-style:normal;font-weight: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_03a33ecc369a6963825beb9c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;font-style:normal;font-weight: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_1bce697cebcf09b51bbfdd73.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_03a33ecc369a6963825beb9c.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.666504;font-style:normal;font-weight: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_083d13212e94e6dbc682edef.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_3a6cc9de22e51c4c687872bf.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_8f82217825189ef6fc605adb.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.910156;font-style:normal;font-weight: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_808f9291ec34f74bdd12cb1f.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_d3dd06e48ab0fcf0f8390816.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.708008;font-style:normal;font-weight: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_54bc128e575990885dfa567c.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.910156;font-style:normal;font-weight: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_9a35c9e431e2e13e98a7a790.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.910156;font-style:normal;font-weight: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_7fa6e203b5b3d81051d2adc8.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_40e2b85d3a8ba3beb8b54ac5.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.910156;font-style:normal;font-weight: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_7fa6e203b5b3d81051d2adc8.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_ab8da054e035ea30cb30b026.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.910156;font-style:normal;font-weight: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_85e2fa932bad411bb98b15d4.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_bad582aa43a23b9f3364669b.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.708008;font-style:normal;font-weight: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_611bb44a2c016d9c837a0940.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_7370de8759ef557c53b96bd3.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.910156;font-style:normal;font-weight: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_e99181b7e46663aae1022e30.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.910156;font-style:normal;font-weight: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_a247bff89662bd99bcae59f7.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.910156;font-style:normal;font-weight: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_08032bb5e41e7fde6e531e4c.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.708008;font-style:normal;font-weight: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_0666e9b3ce55d90a8960f25b.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_afd8e658392969ac97e17b19.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_0074c9edac4f3cc11b4a20cd.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.708008;font-style:normal;font-weight: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_03a33ecc369a6963825beb9c.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.666504;font-style:normal;font-weight: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_319ad4296c93fb142ffd9efd.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.910156;font-style:normal;font-weight: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_242cd51dd0144180c808f11c.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.910156;font-style:normal;font-weight: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_03a33ecc369a6963825beb9c.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.666504;font-style:normal;font-weight: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_8a063ffc95c613001c662bb6.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_03a33ecc369a6963825beb9c.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.666504;font-style:normal;font-weight: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_119bbee33a7c12b904ff639f.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.910156;font-style:normal;font-weight: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_adf42d2fcede6189841a9923.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.910156;font-style:normal;font-weight: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_03a33ecc369a6963825beb9c.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.666504;font-style:normal;font-weight: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_418a0c0ef3ac798ee1691fba.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.910156;font-style:normal;font-weight: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_93eec550f40345938f68f99b.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.706055;font-style:normal;font-weight: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_118d421d8c454e0e1441d7f7.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.666504;font-style:normal;font-weight: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_072148e67889f7990f86ff74.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.910156;font-style:normal;font-weight: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_b429ebfec6e161be089459a6.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.910156;font-style:normal;font-weight: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_aafc32b66a83dc6bd016d44e.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.910156;font-style:normal;font-weight: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_150bedf1c09ca978ed576700.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.680176;font-style:normal;font-weight: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_c225cadf7239d757aa536e6d.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.910156;font-style:normal;font-weight: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_90bdcd08224393a8d166bb7f.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.910156;font-style:normal;font-weight: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_fe08dcc005f48984ea0c745b.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.860840;font-style:normal;font-weight: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_ee641a38d578796d832755d4.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.708008;font-style:normal;font-weight: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_7d3debe5205ffb74de7260b1.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.910156;font-style:normal;font-weight: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_03a33ecc369a6963825beb9c.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.666504;font-style:normal;font-weight: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_55302a4716d8202681b6b00a.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.860840;font-style:normal;font-weight: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_03a33ecc369a6963825beb9c.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.666504;font-style:normal;font-weight: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_378f223ec7677badd715cec9.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.910156;font-style:normal;font-weight: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_03a33ecc369a6963825beb9c.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.666504;font-style:normal;font-weight: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_c073f13fb04399aeaafd68ac.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.910156;font-style:normal;font-weight: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_6a48010da61b05179ba2e1e3.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_03a33ecc369a6963825beb9c.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.666504;font-style:normal;font-weight: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_af87a2474651bda80676c0bc.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url('chunks/assets/font_9dfc1983721f457e59c6691f.woff2')format("woff");}.ff49{font-family:ff49;line-height:0.910156;font-style:normal;font-weight: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_965ad920f59dfaa1c73b3876.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b;src:url('chunks/assets/font_1a9e9e4de20116bc92974d16.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:0.680176;font-style:normal;font-weight: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_03a33ecc369a6963825beb9c.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:0.666504;font-style:normal;font-weight: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_477df6a49e8586904a9ecf1e.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:0.910156;font-style:normal;font-weight: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_99bfd584a4566e42ca99fc2b.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4f;src:url('chunks/assets/font_03a33ecc369a6963825beb9c.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:0.666504;font-style:normal;font-weight: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_118d421d8c454e0e1441d7f7.woff2')format("woff");}.ff50{font-family:ff50;line-height:0.666504;font-style:normal;font-weight: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_cc9c9b438ad65f098d4c5e5a.woff2')format("woff");}.ff51{font-family:ff51;line-height:0.910156;font-style:normal;font-weight: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_5f844c2a2ba0dd7909dad7b0.woff2')format("woff");}.ff52{font-family:ff52;line-height:0.910156;font-style:normal;font-weight: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_03a33ecc369a6963825beb9c.woff2')format("woff");}.ff53{font-family:ff53;line-height:0.666504;font-style:normal;font-weight: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_744fffb9acb7d597e94b2fc8.woff2')format("woff");}.ff54{font-family:ff54;line-height:0.910156;font-style:normal;font-weight: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_03a33ecc369a6963825beb9c.woff2')format("woff");}.ff55{font-family:ff55;line-height:0.666504;font-style:normal;font-weight: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_7962d3a8ec9bbb22149af7db.woff2')format("woff");}.ff56{font-family:ff56;line-height:0.910156;font-style:normal;font-weight: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_c995285086f447276eb05547.woff2')format("woff");}.ff57{font-family:ff57;line-height:0.910156;font-style:normal;font-weight: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_259ffd3eec2449ad7706157d.woff2')format("woff");}.ff58{font-family:ff58;line-height:0.910156;font-style:normal;font-weight: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_65ef109d485d882416dba616.woff2')format("woff");}.ff59{font-family:ff59;line-height:0.910156;font-style:normal;font-weight: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_03a33ecc369a6963825beb9c.woff2')format("woff");}.ff5a{font-family:ff5a;line-height:0.666504;font-style:normal;font-weight: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_559ed7ee5557921f7f6914e4.woff2')format("woff");}.ff5b{font-family:ff5b;line-height:0.910156;font-style:normal;font-weight: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_03a33ecc369a6963825beb9c.woff2')format("woff");}.ff5c{font-family:ff5c;line-height:0.666504;font-style:normal;font-weight: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_d53c72b7c2f7595b158770e8.woff2')format("woff");}.ff5d{font-family:ff5d;line-height:0.706055;font-style:normal;font-weight: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_118d421d8c454e0e1441d7f7.woff2')format("woff");}.ff5e{font-family:ff5e;line-height:0.666504;font-style:normal;font-weight: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_af19eb78d372b3d3b7310d5c.woff2')format("woff");}.ff5f{font-family:ff5f;line-height:0.910156;font-style:normal;font-weight: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_604c229d1f0aa4e7c150b2d8.woff2')format("woff");}.ff60{font-family:ff60;line-height:0.706055;font-style:normal;font-weight: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_118d421d8c454e0e1441d7f7.woff2')format("woff");}.ff61{font-family:ff61;line-height:0.666504;font-style:normal;font-weight: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_f82401b22e4ad5160e475cb2.woff2')format("woff");}.ff62{font-family:ff62;line-height:0.910156;font-style:normal;font-weight: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_62de5e554d0ba575efa56ad7.woff2')format("woff");}.ff63{font-family:ff63;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff64;src:url('chunks/assets/font_4ffd07f79af0786a88c7d6e9.woff2')format("woff");}.ff64{font-family:ff64;line-height:0.678223;font-style:normal;font-weight: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_118d421d8c454e0e1441d7f7.woff2')format("woff");}.ff65{font-family:ff65;line-height:0.666504;font-style:normal;font-weight: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_5e0c1859a2f753255d05cbdc.woff2')format("woff");}.ff66{font-family:ff66;line-height:0.910156;font-style:normal;font-weight: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_62de5e554d0ba575efa56ad7.woff2')format("woff");}.ff67{font-family:ff67;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff68;src:url('chunks/assets/font_118d421d8c454e0e1441d7f7.woff2')format("woff");}.ff68{font-family:ff68;line-height:0.666504;font-style:normal;font-weight: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_bf30f98d8731054382272cba.woff2')format("woff");}.ff69{font-family:ff69;line-height:0.708008;font-style:normal;font-weight: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_e369c74331c249a5c8a0a40d.woff2')format("woff");}.ff6a{font-family:ff6a;line-height:0.910156;font-style:normal;font-weight: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_118d421d8c454e0e1441d7f7.woff2')format("woff");}.ff6b{font-family:ff6b;line-height:0.666504;font-style:normal;font-weight: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_8c54852bf4fcd2d48b174179.woff2')format("woff");}.ff6c{font-family:ff6c;line-height:0.910156;font-style:normal;font-weight: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_3d62bb1648e10b0c07bf103c.woff2')format("woff");}.ff6d{font-family:ff6d;line-height:0.910156;font-style:normal;font-weight: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_062c9a6cb3e82eeab735c841.woff2')format("woff");}.ff6e{font-family:ff6e;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6f;src:url('chunks/assets/font_03a33ecc369a6963825beb9c.woff2')format("woff");}.ff6f{font-family:ff6f;line-height:0.666504;font-style:normal;font-weight: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_9a5bbf837abe5a46839f3501.woff2')format("woff");}.ff70{font-family:ff70;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff71;src:url('chunks/assets/font_336beb436d741c729b26e7ce.woff2')format("woff");}.ff71{font-family:ff71;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff72;src:url('chunks/assets/font_8d411673da4a485d54d4100a.woff2')format("woff");}.ff72{font-family:ff72;line-height:0.689453;font-style:normal;font-weight: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_118d421d8c454e0e1441d7f7.woff2')format("woff");}.ff73{font-family:ff73;line-height:0.666504;font-style:normal;font-weight: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_4ad13616ea0bbdc5ea056d8a.woff2')format("woff");}.ff74{font-family:ff74;line-height:0.666504;font-style:normal;font-weight: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_6c5b7bbe773de660d1387103.woff2')format("woff");}.ff75{font-family:ff75;line-height:0.857422;font-style:normal;font-weight: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_43f7949ec1367400c1bfd3c8.woff2')format("woff");}.ff76{font-family:ff76;line-height:0.910156;font-style:normal;font-weight: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_da8db9e931b855b7a4805368.woff2')format("woff");}.ff77{font-family:ff77;line-height:0.910156;font-style:normal;font-weight: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_3af458a9784dd0587eaf663b.woff2')format("woff");}.ff78{font-family:ff78;line-height:0.910156;font-style:normal;font-weight: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_44a5de980c75fb9c9aba6258.woff2')format("woff");}.ff79{font-family:ff79;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7a;src:url('chunks/assets/font_64b420c9fe53d55375a7d5ac.woff2')format("woff");}.ff7a{font-family:ff7a;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7b;src:url('chunks/assets/font_13418f5e3a8a7068e11efd8c.woff2')format("woff");}.ff7b{font-family:ff7b;line-height:0.910156;font-style:normal;font-weight: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_6577e1f2abcf036d1581276d.woff2')format("woff");}.ff7c{font-family:ff7c;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7d;src:url('chunks/assets/font_118d421d8c454e0e1441d7f7.woff2')format("woff");}.ff7d{font-family:ff7d;line-height:0.666504;font-style:normal;font-weight: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_f70dfd537699b1df6f5cbd01.woff2')format("woff");}.ff7e{font-family:ff7e;line-height:0.910156;font-style:normal;font-weight: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_fc3c7456515df174765b8bdb.woff2')format("woff");}.ff7f{font-family:ff7f;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff80;src:url('chunks/assets/font_75049ac30b317cd52bf2b81b.woff2')format("woff");}.ff80{font-family:ff80;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff81;src:url('chunks/assets/font_4d9eeabc396be6d2986169f8.woff2')format("woff");}.ff81{font-family:ff81;line-height:0.910156;font-style:normal;font-weight: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_250068a7443c9520d01b6fba.woff2')format("woff");}.ff82{font-family:ff82;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff83;src:url('chunks/assets/font_26be7add34d81de32c119446.woff2')format("woff");}.ff83{font-family:ff83;line-height:0.910156;font-style:normal;font-weight: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_24a956c480088abe4926ebfd.woff2')format("woff");}.ff84{font-family:ff84;line-height:0.910156;font-style:normal;font-weight: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_b12b354284e162391fe517b0.woff2')format("woff");}.ff85{font-family:ff85;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff86;src:url('chunks/assets/font_17fb2a06df9f28fa0ca318c4.woff2')format("woff");}.ff86{font-family:ff86;line-height:0.708008;font-style:normal;font-weight: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_e0b0b4797367216e7105a3dc.woff2')format("woff");}.ff87{font-family:ff87;line-height:0.910156;font-style:normal;font-weight: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_9846da11aaf0c042d5846cd8.woff2')format("woff");}.ff88{font-family:ff88;line-height:0.910156;font-style:normal;font-weight: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_03a33ecc369a6963825beb9c.woff2')format("woff");}.ff89{font-family:ff89;line-height:0.666504;font-style:normal;font-weight: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_fbe2a815175cdee84cb80f59.woff2')format("woff");}.ff8a{font-family:ff8a;line-height:0.910156;font-style:normal;font-weight: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_8e3259f02efc6b04b9886e0a.woff2')format("woff");}.ff8b{font-family:ff8b;line-height:0.910156;font-style:normal;font-weight: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_82afd718cdb79bd1df61df80.woff2')format("woff");}.ff8c{font-family:ff8c;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8d;src:url('chunks/assets/font_085c28515da84f577069f3d1.woff2')format("woff");}.ff8d{font-family:ff8d;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8e;src:url('chunks/assets/font_ae83198f14ba44485e15b752.woff2')format("woff");}.ff8e{font-family:ff8e;line-height:0.910156;font-style:normal;font-weight: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_7b9c01bd653fa681dc0b42d1.woff2')format("woff");}.ff8f{font-family:ff8f;line-height:0.910156;font-style:normal;font-weight: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_50f41dbda006bf6677d0f60c.woff2')format("woff");}.ff90{font-family:ff90;line-height:0.910156;font-style:normal;font-weight: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_bece60738aac5f862ef74288.woff2')format("woff");}.ff91{font-family:ff91;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff92;src:url('chunks/assets/font_0106e61d1d8a59e3d06b7d9e.woff2')format("woff");}.ff92{font-family:ff92;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff93;src:url('chunks/assets/font_7ffe176aa80a06acddaaacc1.woff2')format("woff");}.ff93{font-family:ff93;line-height:0.860840;font-style:normal;font-weight: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_b929aa604c300a22bd4ccfc8.woff2')format("woff");}.ff94{font-family:ff94;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff95;src:url('chunks/assets/font_d8c1e3d5347236da1a435e7e.woff2')format("woff");}.ff95{font-family:ff95;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff96;src:url('chunks/assets/font_5d91c02f47fa10e56dc5447d.woff2')format("woff");}.ff96{font-family:ff96;line-height:0.910156;font-style:normal;font-weight: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_a136991927e7194009da5d04.woff2')format("woff");}.ff97{font-family:ff97;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff98;src:url('chunks/assets/font_72ad84c68efdd775791b3f64.woff2')format("woff");}.ff98{font-family:ff98;line-height:0.910156;font-style:normal;font-weight: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_7bdfda3c98328fe7b015762a.woff2')format("woff");}.ff99{font-family:ff99;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9a;src:url('chunks/assets/font_f3362cfd62f320eeab3c3e2f.woff2')format("woff");}.ff9a{font-family:ff9a;line-height:0.680176;font-style:normal;font-weight: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_431e0562bf0224699b47c358.woff2')format("woff");}.ff9b{font-family:ff9b;line-height:0.910156;font-style:normal;font-weight: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_1e32ead01e19fd08ee5608db.woff2')format("woff");}.ff9c{font-family:ff9c;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9d;src:url('chunks/assets/font_f67f7331f89464f0e1256568.woff2')format("woff");}.ff9d{font-family:ff9d;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9e;src:url('chunks/assets/font_74b7b61fbccd520f23e5af82.woff2')format("woff");}.ff9e{font-family:ff9e;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9f;src:url('chunks/assets/font_6386ec12027213da88d67886.woff2')format("woff");}.ff9f{font-family:ff9f;line-height:0.910156;font-style:normal;font-weight: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_b12f9dbbe3e77c81fd29cce7.woff2')format("woff");}.ffa0{font-family:ffa0;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa1;src:url('chunks/assets/font_9cce45de92139ee02e23efe8.woff2')format("woff");}.ffa1{font-family:ffa1;line-height:0.910156;font-style:normal;font-weight: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_12a4f4b2e22b766cf2ccb2fe.woff2')format("woff");}.ffa2{font-family:ffa2;line-height:0.910156;font-style:normal;font-weight: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_3286e594c20341944b2585a9.woff2')format("woff");}.ffa3{font-family:ffa3;line-height:0.910156;font-style:normal;font-weight: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_03a33ecc369a6963825beb9c.woff2')format("woff");}.ffa4{font-family:ffa4;line-height:0.666504;font-style:normal;font-weight: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_b998383475b2582742a32fd7.woff2')format("woff");}.ffa5{font-family:ffa5;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa6;src:url('chunks/assets/font_e163aa6f8ac7ecbc364844dd.woff2')format("woff");}.ffa6{font-family:ffa6;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa7;src:url('chunks/assets/font_03a33ecc369a6963825beb9c.woff2')format("woff");}.ffa7{font-family:ffa7;line-height:0.666504;font-style:normal;font-weight: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_44fad97855ea190720615259.woff2')format("woff");}.ffa8{font-family:ffa8;line-height:0.910156;font-style:normal;font-weight: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_03a33ecc369a6963825beb9c.woff2')format("woff");}.ffa9{font-family:ffa9;line-height:0.666504;font-style:normal;font-weight: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_4a877b5ba87fbae1cd0be919.woff2')format("woff");}.ffaa{font-family:ffaa;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffab;src:url('chunks/assets/font_03a33ecc369a6963825beb9c.woff2')format("woff");}.ffab{font-family:ffab;line-height:0.666504;font-style:normal;font-weight: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_a9099df2fc6c25d87c974744.woff2')format("woff");}.ffac{font-family:ffac;line-height:0.910156;font-style:normal;font-weight: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_03a33ecc369a6963825beb9c.woff2')format("woff");}.ffad{font-family:ffad;line-height:0.666504;font-style:normal;font-weight: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_8aa6e0c3feb4ac6547a3367b.woff2')format("woff");}.ffae{font-family:ffae;line-height:0.910156;font-style:normal;font-weight: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_03a33ecc369a6963825beb9c.woff2')format("woff");}.ffaf{font-family:ffaf;line-height:0.666504;font-style:normal;font-weight: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_4d5b7cb7677d077b23039901.woff2')format("woff");}.ffb0{font-family:ffb0;line-height:0.910156;font-style:normal;font-weight: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_38bb81a1a777ebed8f9a6402.woff2')format("woff");}.ffb1{font-family:ffb1;line-height:0.910156;font-style:normal;font-weight: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_238c7ec592f53a841218c849.woff2')format("woff");}.ffb2{font-family:ffb2;line-height:0.680176;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb3;src:url('chunks/assets/font_118d421d8c454e0e1441d7f7.woff2')format("woff");}.ffb3{font-family:ffb3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb4;src:url('chunks/assets/font_48c153f39a766f0ca1c7024d.woff2')format("woff");}.ffb4{font-family:ffb4;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb5;src:url('chunks/assets/font_3f5205861cc3cf0ccdf57826.woff2')format("woff");}.ffb5{font-family:ffb5;line-height:0.692871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb6;src:url('chunks/assets/font_e90afd0a5809cc15b26c15d9.woff2')format("woff");}.ffb6{font-family:ffb6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb7;src:url('chunks/assets/font_0222ebefe53cbc3c672f2bcd.woff2')format("woff");}.ffb7{font-family:ffb7;line-height:0.892578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb8;src:url('chunks/assets/font_e90afd0a5809cc15b26c15d9.woff2')format("woff");}.ffb8{font-family:ffb8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb9;src:url('chunks/assets/font_14e478a3f65dad7055bdc95f.woff2')format("woff");}.ffb9{font-family:ffb9;line-height:0.877441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffba;src:url('chunks/assets/font_e90afd0a5809cc15b26c15d9.woff2')format("woff");}.ffba{font-family:ffba;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbb;src:url('chunks/assets/font_b0d913cf5127855abc274576.woff2')format("woff");}.ffbb{font-family:ffbb;line-height:0.692871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbc;src:url('chunks/assets/font_9302fbd5a2fae8289761a163.woff2')format("woff");}.ffbc{font-family:ffbc;line-height:0.677246;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbd;src:url('chunks/assets/font_81d7818058400dbb8f4e608a.woff2')format("woff");}.ffbd{font-family:ffbd;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbe;src:url('chunks/assets/font_df3722a9612cc38777c14129.woff2')format("woff");}.ffbe{font-family:ffbe;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbf;src:url('chunks/assets/font_cfa0624fe85e2f05141d07d1.woff2')format("woff");}.ffbf{font-family:ffbf;line-height:0.892578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc0;src:url('chunks/assets/font_e90afd0a5809cc15b26c15d9.woff2')format("woff");}.ffc0{font-family:ffc0;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc1;src:url('chunks/assets/font_5fc57dbef6abbcad6eb0006f.woff2')format("woff");}.ffc1{font-family:ffc1;line-height:0.692871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc2;src:url('chunks/assets/font_3a8ee9d7806e3e0b688908a1.woff2')format("woff");}.ffc2{font-family:ffc2;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc3;src:url('chunks/assets/font_118d421d8c454e0e1441d7f7.woff2')format("woff");}.ffc3{font-family:ffc3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc4;src:url('chunks/assets/font_6ca0b733ffc9f980b1aa0181.woff2')format("woff");}.ffc4{font-family:ffc4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc5;src:url('chunks/assets/font_0793741544447cbdafb59022.woff2')format("woff");}.ffc5{font-family:ffc5;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc6;src:url('chunks/assets/font_48c153f39a766f0ca1c7024d.woff2')format("woff");}.ffc6{font-family:ffc6;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc7;src:url('chunks/assets/font_4320d0c025be7c41156b3231.woff2')format("woff");}.ffc7{font-family:ffc7;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc8;src:url('chunks/assets/font_6ca0b733ffc9f980b1aa0181.woff2')format("woff");}.ffc8{font-family:ffc8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc9;src:url('chunks/assets/font_521cebe7fedf2f84948bb4dd.woff2')format("woff");}.ffc9{font-family:ffc9;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffca;src:url('chunks/assets/font_6ca0b733ffc9f980b1aa0181.woff2')format("woff");}.ffca{font-family:ffca;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffcb;src:url('chunks/assets/font_d469acfa7a781bd93389e638.woff2')format("woff");}.ffcb{font-family:ffcb;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffcc;src:url('chunks/assets/font_ac5dc11432d5348bc36c8d01.woff2')format("woff");}.ffcc{font-family:ffcc;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffcd;src:url('chunks/assets/font_8d7bc7a8c09380c960283194.woff2')format("woff");}.ffcd{font-family:ffcd;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffce;src:url('chunks/assets/font_ed3efc7ad0c13f8aeca83978.woff2')format("woff");}.ffce{font-family:ffce;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffcf;src:url('chunks/assets/font_0a3e5bdad88ef23beb64d3da.woff2')format("woff");}.ffcf{font-family:ffcf;line-height:0.888184;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd0;src:url('chunks/assets/font_01de8247e00c8d5f461b160a.woff2')format("woff");}.ffd0{font-family:ffd0;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd1;src:url('chunks/assets/font_38a2bab0308b09feb1d42427.woff2')format("woff");}.ffd1{font-family:ffd1;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd2;src:url('chunks/assets/font_01de8247e00c8d5f461b160a.woff2')format("woff");}.ffd2{font-family:ffd2;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd3;src:url('chunks/assets/font_38a2bab0308b09feb1d42427.woff2')format("woff");}.ffd3{font-family:ffd3;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd4;src:url('chunks/assets/font_ac5dc11432d5348bc36c8d01.woff2')format("woff");}.ffd4{font-family:ffd4;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd5;src:url('chunks/assets/font_4fb53408ed8a521e58e5e8c6.woff2')format("woff");}.ffd5{font-family:ffd5;line-height:0.687988;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd6;src:url('chunks/assets/font_6ca0b733ffc9f980b1aa0181.woff2')format("woff");}.ffd6{font-family:ffd6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd7;src:url('chunks/assets/font_871980c138a53c6c7f07cbe0.woff2')format("woff");}.ffd7{font-family:ffd7;line-height:0.677246;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd8;src:url('chunks/assets/font_5990a972353bd8ef5892e964.woff2')format("woff");}.ffd8{font-family:ffd8;line-height:0.833008;font-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);}
.v3{vertical-align:-30.240000px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls9a{letter-spacing:-7.633440px;}
.ls90{letter-spacing:-5.754240px;}
.ls96{letter-spacing:-5.728320px;}
.ls95{letter-spacing:-1.600560px;}
.ls63{letter-spacing:-1.574640px;}
.ls9b{letter-spacing:-0.014400px;}
.ls19{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000600px;}
.lsa2{letter-spacing:0.010800px;}
.lsa1{letter-spacing:0.010980px;}
.lsa0{letter-spacing:0.011400px;}
.ls9f{letter-spacing:0.011580px;}
.ls43{letter-spacing:0.012000px;}
.ls9d{letter-spacing:0.012120px;}
.ls9c{letter-spacing:0.012600px;}
.ls9e{letter-spacing:0.014400px;}
.ls7{letter-spacing:0.118800px;}
.ls6{letter-spacing:0.119400px;}
.ls0{letter-spacing:0.119940px;}
.ls4{letter-spacing:0.120000px;}
.ls34{letter-spacing:0.121200px;}
.ls42{letter-spacing:0.210000px;}
.ls17{letter-spacing:0.210060px;}
.ls3{letter-spacing:0.240000px;}
.ls5{letter-spacing:0.240600px;}
.ls97{letter-spacing:0.242064px;}
.ls22{letter-spacing:0.242208px;}
.ls21{letter-spacing:0.247104px;}
.ls1e{letter-spacing:0.253872px;}
.ls51{letter-spacing:0.272160px;}
.ls1d{letter-spacing:0.275616px;}
.lsa3{letter-spacing:0.280800px;}
.ls56{letter-spacing:0.282600px;}
.ls27{letter-spacing:0.285120px;}
.ls45{letter-spacing:0.298080px;}
.ls35{letter-spacing:0.299400px;}
.ls31{letter-spacing:0.300000px;}
.ls69{letter-spacing:0.300600px;}
.ls24{letter-spacing:0.318384px;}
.ls1c{letter-spacing:0.318816px;}
.lsf{letter-spacing:0.319560px;}
.ls16{letter-spacing:0.319680px;}
.lsa{letter-spacing:0.320280px;}
.ls2f{letter-spacing:0.324000px;}
.ls57{letter-spacing:0.348336px;}
.ls2{letter-spacing:0.356400px;}
.lsd{letter-spacing:0.360360px;}
.ls26{letter-spacing:0.383760px;}
.ls2a{letter-spacing:0.400200px;}
.ls7c{letter-spacing:0.400800px;}
.ls39{letter-spacing:0.401760px;}
.ls25{letter-spacing:0.419184px;}
.ls70{letter-spacing:0.421200px;}
.ls3d{letter-spacing:0.434160px;}
.lse{letter-spacing:0.440520px;}
.ls88{letter-spacing:0.477000px;}
.ls9{letter-spacing:0.478224px;}
.ls2d{letter-spacing:0.479520px;}
.ls8{letter-spacing:0.480000px;}
.ls1f{letter-spacing:0.484704px;}
.ls33{letter-spacing:0.495000px;}
.lsa4{letter-spacing:0.505440px;}
.ls32{letter-spacing:0.522600px;}
.ls2e{letter-spacing:0.524880px;}
.ls5e{letter-spacing:0.529800px;}
.ls4c{letter-spacing:0.531360px;}
.ls3b{letter-spacing:0.537840px;}
.ls15{letter-spacing:0.542760px;}
.ls29{letter-spacing:0.543168px;}
.ls8f{letter-spacing:0.544320px;}
.ls71{letter-spacing:0.550800px;}
.ls3a{letter-spacing:0.557280px;}
.ls46{letter-spacing:0.561600px;}
.ls1b{letter-spacing:0.578592px;}
.ls3e{letter-spacing:0.589680px;}
.ls5a{letter-spacing:0.596160px;}
.ls2b{letter-spacing:0.602640px;}
.ls55{letter-spacing:0.609600px;}
.ls72{letter-spacing:0.615600px;}
.ls18{letter-spacing:0.617760px;}
.ls66{letter-spacing:0.622080px;}
.ls20{letter-spacing:0.636768px;}
.ls28{letter-spacing:0.637632px;}
.lsc{letter-spacing:0.639420px;}
.ls12{letter-spacing:0.639720px;}
.ls92{letter-spacing:0.673200px;}
.ls91{letter-spacing:0.673920px;}
.ls3c{letter-spacing:0.680400px;}
.ls62{letter-spacing:0.686880px;}
.ls85{letter-spacing:0.688800px;}
.lsb{letter-spacing:0.702576px;}
.ls11{letter-spacing:0.703200px;}
.ls14{letter-spacing:0.703320px;}
.ls30{letter-spacing:0.725760px;}
.ls99{letter-spacing:0.738720px;}
.ls4e{letter-spacing:0.745200px;}
.ls4f{letter-spacing:0.751680px;}
.ls38{letter-spacing:0.797040px;}
.ls7f{letter-spacing:0.799200px;}
.ls7d{letter-spacing:0.810000px;}
.ls47{letter-spacing:0.816480px;}
.ls53{letter-spacing:0.844800px;}
.ls81{letter-spacing:0.853800px;}
.ls8e{letter-spacing:0.855360px;}
.ls1{letter-spacing:0.863160px;}
.ls8d{letter-spacing:0.868320px;}
.ls23{letter-spacing:0.874800px;}
.ls4d{letter-spacing:0.881280px;}
.ls61{letter-spacing:0.907200px;}
.ls50{letter-spacing:0.920160px;}
.ls6b{letter-spacing:0.958200px;}
.ls1a{letter-spacing:0.962352px;}
.ls7e{letter-spacing:1.069200px;}
.ls2c{letter-spacing:1.075680px;}
.ls8b{letter-spacing:1.156800px;}
.ls8c{letter-spacing:1.157400px;}
.ls48{letter-spacing:1.179360px;}
.ls4a{letter-spacing:1.192320px;}
.ls79{letter-spacing:1.198080px;}
.ls49{letter-spacing:1.198800px;}
.ls83{letter-spacing:1.199400px;}
.ls59{letter-spacing:1.200000px;}
.ls86{letter-spacing:1.200600px;}
.ls44{letter-spacing:1.205280px;}
.ls5b{letter-spacing:1.231200px;}
.ls87{letter-spacing:1.372200px;}
.ls75{letter-spacing:1.713600px;}
.ls6e{letter-spacing:1.757400px;}
.ls80{letter-spacing:1.813200px;}
.ls6f{letter-spacing:2.076600px;}
.ls58{letter-spacing:2.289000px;}
.ls64{letter-spacing:2.391600px;}
.ls54{letter-spacing:2.516400px;}
.ls65{letter-spacing:3.823200px;}
.ls40{letter-spacing:4.749000px;}
.ls3f{letter-spacing:4.750200px;}
.ls37{letter-spacing:5.277600px;}
.ls5d{letter-spacing:5.431200px;}
.ls6d{letter-spacing:5.461800px;}
.ls6c{letter-spacing:5.462400px;}
.ls52{letter-spacing:5.533920px;}
.ls67{letter-spacing:5.619000px;}
.ls77{letter-spacing:5.766600px;}
.ls73{letter-spacing:5.923200px;}
.ls13{letter-spacing:6.433200px;}
.ls5f{letter-spacing:6.861000px;}
.ls76{letter-spacing:6.875400px;}
.ls98{letter-spacing:6.928200px;}
.ls6a{letter-spacing:7.051800px;}
.ls7b{letter-spacing:7.633200px;}
.ls4b{letter-spacing:7.678200px;}
.ls41{letter-spacing:7.719600px;}
.ls68{letter-spacing:7.789800px;}
.ls36{letter-spacing:8.506200px;}
.ls94{letter-spacing:8.748000px;}
.ls78{letter-spacing:9.099000px;}
.ls93{letter-spacing:9.603600px;}
.ls60{letter-spacing:10.616400px;}
.ls74{letter-spacing:11.466600px;}
.ls82{letter-spacing:12.516600px;}
.ls5c{letter-spacing:12.792600px;}
.ls84{letter-spacing:13.063200px;}
.ls8a{letter-spacing:13.553400px;}
.ls89{letter-spacing:13.555800px;}
.ls7a{letter-spacing:152.100900px;}
.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;}
}
.ws8{word-spacing:-18.000000px;}
.ws1d{word-spacing:-17.985600px;}
.ws19{word-spacing:-17.275680px;}
.ws18{word-spacing:-17.074800px;}
.ws17{word-spacing:-16.945200px;}
.ws15{word-spacing:-16.925760px;}
.ws12{word-spacing:-16.802640px;}
.ws14{word-spacing:-16.789680px;}
.ws11{word-spacing:-16.724880px;}
.ws16{word-spacing:-16.679520px;}
.ws1c{word-spacing:-16.601760px;}
.ws1b{word-spacing:-16.524000px;}
.ws3{word-spacing:-15.722352px;}
.ws0{word-spacing:-15.462576px;}
.ws4{word-spacing:-15.338592px;}
.ws7{word-spacing:-15.238224px;}
.ws13{word-spacing:-15.179184px;}
.ws5{word-spacing:-15.078816px;}
.ws2{word-spacing:-14.760000px;}
.wsf{word-spacing:-14.657760px;}
.ws1{word-spacing:-12.236400px;}
.wsd{word-spacing:-12.198384px;}
.wse{word-spacing:-12.165120px;}
.ws6{word-spacing:-12.155616px;}
.wsb{word-spacing:-0.939600px;}
.ws1e{word-spacing:-0.673920px;}
.ws1a{word-spacing:-0.667440px;}
.ws22{word-spacing:-0.617760px;}
.ws20{word-spacing:-0.561600px;}
.ws9{word-spacing:-0.342144px;}
.ws1f{word-spacing:-0.336960px;}
.wsa{word-spacing:-0.325728px;}
.ws21{word-spacing:-0.086400px;}
.wsc{word-spacing:-0.072000px;}
.ws10{word-spacing:0.000000px;}
._1c{margin-left:-14.400000px;}
._24{margin-left:-8.564880px;}
._1d{margin-left:-7.200600px;}
._22{margin-left:-5.961600px;}
._21{margin-left:-4.795200px;}
._3{margin-left:-2.697360px;}
._0{margin-left:-1.223772px;}
._8{width:1.003680px;}
._e{width:2.007360px;}
._d{width:3.247200px;}
._c{width:4.314432px;}
._6{width:6.022080px;}
._5{width:7.261920px;}
._4{width:8.637012px;}
._7{width:10.272960px;}
._9{width:11.571840px;}
._1a{width:12.903840px;}
._f{width:13.992480px;}
._12{width:15.900960px;}
._10{width:17.003520px;}
._11{width:18.066240px;}
._14{width:19.397100px;}
._13{width:21.139200px;}
._15{width:22.838400px;}
._16{width:24.314400px;}
._1f{width:25.783200px;}
._17{width:27.741600px;}
._19{width:29.476800px;}
._1b{width:32.328000px;}
._1e{width:34.488000px;}
._a{width:37.844640px;}
._b{width:38.907360px;}
._23{width:41.083200px;}
._20{width:152.100900px;}
._2{width:637.518600px;}
._18{width:775.829400px;}
._1{width:842.927628px;}
.fc3{color:rgb(255,51,51);}
.fc2{color:rgb(255,102,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs1{font-size:47.520000px;}
.fs6{font-size:56.160000px;}
.fs0{font-size:59.040000px;}
.fs5{font-size:64.800000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.fs3{font-size:95.040000px;}
.y0{bottom:0.000000px;}
.y21{bottom:3.240000px;}
.y1{bottom:18.840000px;}
.y20{bottom:20.520000px;}
.y3b{bottom:36.960030px;}
.y6{bottom:37.320030px;}
.y1f{bottom:37.800000px;}
.y5{bottom:54.960030px;}
.y1e{bottom:55.080000px;}
.y1d{bottom:72.360000px;}
.y4{bottom:75.120030px;}
.y1c{bottom:89.640000px;}
.y3a{bottom:92.400030px;}
.y1b{bottom:106.920000px;}
.ya2{bottom:111.480030px;}
.y173{bottom:113.280030px;}
.y1be{bottom:117.960030px;}
.y1d0{bottom:118.320030px;}
.yed{bottom:121.560030px;}
.y1a{bottom:124.200000px;}
.y151{bottom:125.160030px;}
.yc9{bottom:126.600030px;}
.y1cf{bottom:128.760030px;}
.y6d{bottom:130.200030px;}
.y1e9{bottom:132.000000px;}
.y172{bottom:133.800000px;}
.ya1{bottom:135.600000px;}
.y1bd{bottom:137.040000px;}
.y221{bottom:139.200000px;}
.yec{bottom:140.640000px;}
.y19{bottom:141.480000px;}
.y38{bottom:142.080000px;}
.y1c9{bottom:143.880000px;}
.y110{bottom:144.240000px;}
.yc8{bottom:145.680000px;}
.ya0{bottom:146.040000px;}
.y191{bottom:147.840000px;}
.y6c{bottom:149.280000px;}
.y1e8{bottom:150.720000px;}
.y171{bottom:154.680000px;}
.y1bc{bottom:156.120000px;}
.y18{bottom:158.760000px;}
.yeb{bottom:159.360000px;}
.y220{bottom:159.720000px;}
.y37{bottom:162.600000px;}
.y1c8{bottom:162.960000px;}
.y9f{bottom:163.320000px;}
.yc7{bottom:164.760000px;}
.y150{bottom:166.560000px;}
.y6b{bottom:168.000000px;}
.y190{bottom:168.360000px;}
.y1e7{bottom:169.800000px;}
.y132{bottom:171.600000px;}
.y170{bottom:175.200000px;}
.y17{bottom:176.040000px;}
.yea{bottom:178.800000px;}
.y9e{bottom:180.600000px;}
.y1c7{bottom:182.040000px;}
.y36{bottom:183.480000px;}
.yc6{bottom:185.640000px;}
.y6a{bottom:187.080000px;}
.y14f{bottom:187.440000px;}
.y1e6{bottom:188.880000px;}
.y18f{bottom:189.240000px;}
.y131{bottom:190.680000px;}
.y16{bottom:193.320000px;}
.y16f{bottom:195.720000px;}
.y1bb{bottom:196.080000px;}
.ye9{bottom:199.320000px;}
.y1c6{bottom:200.760000px;}
.y21f{bottom:201.120000px;}
.y10f{bottom:202.560000px;}
.y35{bottom:204.000000px;}
.y9d{bottom:204.720000px;}
.y69{bottom:206.160000px;}
.y1e5{bottom:207.600000px;}
.y14e{bottom:207.960000px;}
.y130{bottom:209.400000px;}
.y18e{bottom:209.760000px;}
.y15{bottom:210.240000px;}
.y16e{bottom:214.800000px;}
.y9c{bottom:215.160000px;}
.y1ba{bottom:216.600000px;}
.y1c5{bottom:219.840000px;}
.ye8{bottom:220.200000px;}
.y10e{bottom:221.640000px;}
.y21e{bottom:222.000000px;}
.y34{bottom:224.880000px;}
.y1e4{bottom:226.680000px;}
.yc5{bottom:227.040000px;}
.y14{bottom:227.520000px;}
.y12f{bottom:228.480000px;}
.y18d{bottom:230.640000px;}
.y16d{bottom:233.520000px;}
.y9b{bottom:237.120000px;}
.y1b9{bottom:237.480000px;}
.y1c4{bottom:238.920000px;}
.y10d{bottom:240.360000px;}
.ye7{bottom:240.720000px;}
.y21d{bottom:242.520000px;}
.y68{bottom:243.960000px;}
.y33{bottom:245.400000px;}
.y1e3{bottom:245.760000px;}
.yc4{bottom:247.560000px;}
.y18c{bottom:251.160000px;}
.y16c{bottom:252.600000px;}
.y9a{bottom:256.200000px;}
.y1b8{bottom:257.640000px;}
.y10c{bottom:259.440000px;}
.ye6{bottom:261.600000px;}
.y67{bottom:263.040000px;}
.y21c{bottom:263.400000px;}
.y1e2{bottom:264.840000px;}
.y32{bottom:266.280000px;}
.yc3{bottom:268.440000px;}
.y16b{bottom:271.680000px;}
.y99{bottom:274.920000px;}
.y1b7{bottom:276.720000px;}
.y10b{bottom:278.520000px;}
.y66{bottom:281.760000px;}
.ye5{bottom:282.120000px;}
.y1e1{bottom:283.560000px;}
.y21b{bottom:283.920000px;}
.y14d{bottom:285.360000px;}
.y31{bottom:286.800000px;}
.yc2{bottom:288.960000px;}
.y16a{bottom:290.760000px;}
.y18b{bottom:292.560000px;}
.y98{bottom:294.000000px;}
.y1b6{bottom:295.800000px;}
.y10a{bottom:297.600000px;}
.y65{bottom:300.840000px;}
.y1e0{bottom:302.640000px;}
.ye4{bottom:303.000000px;}
.y14c{bottom:304.440000px;}
.y21a{bottom:304.800000px;}
.y30{bottom:307.680000px;}
.yc1{bottom:309.840000px;}
.y169{bottom:311.640000px;}
.y97{bottom:313.080000px;}
.y1b5{bottom:314.520000px;}
.y1b0{bottom:316.320000px;}
.y109{bottom:316.680000px;}
.y64{bottom:319.920000px;}
.y1df{bottom:321.720000px;}
.y14b{bottom:323.160000px;}
.ye3{bottom:323.520000px;}
.y219{bottom:325.320000px;}
.y2f{bottom:328.200000px;}
.yc0{bottom:330.360000px;}
.y96{bottom:331.800000px;}
.y168{bottom:332.160000px;}
.y1b4{bottom:333.600000px;}
.y18a{bottom:333.960000px;}
.y1af{bottom:335.400000px;}
.y108{bottom:337.560000px;}
.y63{bottom:339.000000px;}
.y1de{bottom:340.440000px;}
.y14a{bottom:342.240000px;}
.ye2{bottom:344.400000px;}
.y218{bottom:346.200000px;}
.y2e{bottom:349.080000px;}
.y95{bottom:350.880000px;}
.y167{bottom:352.680000px;}
.y189{bottom:354.480000px;}
.y62{bottom:357.720000px;}
.y107{bottom:358.080000px;}
.y1dd{bottom:359.520000px;}
.y149{bottom:361.680000px;}
.ye1{bottom:364.920000px;}
.y217{bottom:366.720000px;}
.y12e{bottom:368.160000px;}
.y2d{bottom:369.600000px;}
.y94{bottom:369.960000px;}
.y166{bottom:371.760000px;}
.y1ae{bottom:373.200000px;}
.y188{bottom:375.360000px;}
.y61{bottom:376.800000px;}
.y1dc{bottom:378.600000px;}
.y106{bottom:378.960000px;}
.y148{bottom:382.200000px;}
.ye0{bottom:385.800000px;}
.y12d{bottom:387.240000px;}
.y216{bottom:387.600000px;}
.y93{bottom:389.040000px;}
.y2c{bottom:390.480000px;}
.y1ad{bottom:392.280000px;}
.y60{bottom:395.880000px;}
.y1db{bottom:397.320000px;}
.y105{bottom:399.480000px;}
.y147{bottom:403.080000px;}
.y12c{bottom:405.960000px;}
.ydf{bottom:406.320000px;}
.y92{bottom:407.760000px;}
.y215{bottom:408.120000px;}
.y165{bottom:409.560000px;}
.y2b{bottom:411.000000px;}
.y1ac{bottom:411.360000px;}
.y5f{bottom:414.600000px;}
.y1da{bottom:416.400000px;}
.y187{bottom:416.760000px;}
.y104{bottom:420.360000px;}
.y146{bottom:423.240000px;}
.y12b{bottom:425.040000px;}
.y91{bottom:426.840000px;}
.yde{bottom:427.200000px;}
.y164{bottom:428.640000px;}
.y1ab{bottom:430.080000px;}
.y2a{bottom:431.880000px;}
.y5e{bottom:433.680000px;}
.y1d9{bottom:435.840000px;}
.y186{bottom:437.280000px;}
.y103{bottom:440.880000px;}
.y145{bottom:442.320000px;}
.y12a{bottom:444.120000px;}
.y90{bottom:445.920000px;}
.y163{bottom:447.360000px;}
.ydd{bottom:447.720000px;}
.y1aa{bottom:449.160000px;}
.y214{bottom:449.520000px;}
.y29{bottom:452.400000px;}
.y5d{bottom:452.760000px;}
.y1d8{bottom:456.360000px;}
.y185{bottom:458.160000px;}
.y144{bottom:461.400000px;}
.y102{bottom:461.760000px;}
.y129{bottom:463.200000px;}
.y8f{bottom:464.640000px;}
.y162{bottom:466.440000px;}
.y1a9{bottom:468.240000px;}
.ydc{bottom:468.600000px;}
.y213{bottom:470.040000px;}
.y5c{bottom:471.840000px;}
.y28{bottom:473.280000px;}
.y1d7{bottom:477.240000px;}
.y184{bottom:478.680000px;}
.y143{bottom:480.120000px;}
.y128{bottom:481.920000px;}
.y101{bottom:482.280000px;}
.y8e{bottom:483.720000px;}
.ybf{bottom:484.080000px;}
.y161{bottom:485.520000px;}
.y1a8{bottom:487.320000px;}
.ydb{bottom:489.120000px;}
.y212{bottom:490.920000px;}
.y5b{bottom:492.720000px;}
.y27{bottom:493.800000px;}
.y1d6{bottom:497.760000px;}
.y142{bottom:499.200000px;}
.y183{bottom:499.560000px;}
.y127{bottom:501.000000px;}
.y100{bottom:502.800000px;}
.y8d{bottom:503.160000px;}
.ybe{bottom:504.600000px;}
.y1a7{bottom:506.040000px;}
.yda{bottom:510.000000px;}
.y211{bottom:511.440000px;}
.y5a{bottom:513.240000px;}
.y26{bottom:514.680000px;}
.y141{bottom:518.640000px;}
.y126{bottom:520.080000px;}
.yff{bottom:521.520000px;}
.y160{bottom:523.320000px;}
.y8c{bottom:523.680000px;}
.y1a6{bottom:525.120000px;}
.ybd{bottom:525.480000px;}
.yd9{bottom:530.520000px;}
.y210{bottom:532.320000px;}
.y59{bottom:534.120000px;}
.y25{bottom:535.200000px;}
.y125{bottom:538.800000px;}
.yfe{bottom:540.600000px;}
.y182{bottom:540.960000px;}
.y15f{bottom:542.400000px;}
.y1a5{bottom:544.200000px;}
.y8b{bottom:544.560000px;}
.ybc{bottom:546.000000px;}
.yd8{bottom:551.400000px;}
.y20f{bottom:552.840000px;}
.y58{bottom:554.640000px;}
.y24{bottom:556.080000px;}
.y124{bottom:557.880000px;}
.yfd{bottom:559.680000px;}
.y15e{bottom:561.480000px;}
.y1a4{bottom:562.920000px;}
.y8a{bottom:565.080000px;}
.ybb{bottom:566.880000px;}
.yd7{bottom:571.920000px;}
.y20e{bottom:573.720000px;}
.y57{bottom:575.520000px;}
.y23{bottom:576.600000px;}
.y123{bottom:576.960000px;}
.yfc{bottom:578.760000px;}
.y181{bottom:580.200000px;}
.y1a3{bottom:582.000000px;}
.y15d{bottom:582.360000px;}
.y89{bottom:585.960000px;}
.yba{bottom:587.400000px;}
.yd6{bottom:592.800000px;}
.y20d{bottom:594.240000px;}
.y122{bottom:595.680000px;}
.y56{bottom:596.040000px;}
.y22{bottom:597.480000px;}
.y180{bottom:599.280000px;}
.y1a2{bottom:601.080000px;}
.y15c{bottom:602.880000px;}
.y88{bottom:606.480000px;}
.yb9{bottom:608.280000px;}
.yd5{bottom:612.960000px;}
.y20b{bottom:613.320000px;}
.y121{bottom:614.760000px;}
.y20c{bottom:615.120000px;}
.yfb{bottom:616.560000px;}
.y55{bottom:616.920000px;}
.y17f{bottom:618.360000px;}
.y1a1{bottom:620.160000px;}
.y15b{bottom:621.600000px;}
.y225{bottom:623.760000px;}
.y87{bottom:627.000000px;}
.yb8{bottom:628.800000px;}
.yd4{bottom:632.040000px;}
.y13{bottom:632.880000px;}
.y120{bottom:633.840000px;}
.y20a{bottom:634.200000px;}
.yfa{bottom:635.640000px;}
.y17e{bottom:637.080000px;}
.y54{bottom:637.440000px;}
.y1a0{bottom:638.880000px;}
.y15a{bottom:640.680000px;}
.y224{bottom:644.280000px;}
.y86{bottom:647.520000px;}
.yb7{bottom:649.680000px;}
.yd3{bottom:651.120000px;}
.y11f{bottom:652.920000px;}
.yf9{bottom:654.360000px;}
.y209{bottom:654.720000px;}
.y17d{bottom:656.160000px;}
.y19f{bottom:657.960000px;}
.y53{bottom:658.320000px;}
.y159{bottom:659.760000px;}
.y223{bottom:665.160000px;}
.y85{bottom:666.600000px;}
.yb6{bottom:669.840000px;}
.y11e{bottom:671.640000px;}
.y140{bottom:672.000000px;}
.yf8{bottom:673.440000px;}
.y17c{bottom:675.240000px;}
.y208{bottom:675.600000px;}
.y19e{bottom:677.040000px;}
.y158{bottom:678.480000px;}
.y52{bottom:678.840000px;}
.y84{bottom:685.680000px;}
.yb5{bottom:688.920000px;}
.y11d{bottom:690.720000px;}
.yf7{bottom:692.520000px;}
.y13f{bottom:692.880000px;}
.y17b{bottom:694.320000px;}
.y19d{bottom:695.760000px;}
.y207{bottom:696.120000px;}
.y157{bottom:697.560000px;}
.y51{bottom:699.720000px;}
.y83{bottom:704.400000px;}
.y222{bottom:706.560000px;}
.yb4{bottom:708.000000px;}
.y11c{bottom:709.800000px;}
.yf6{bottom:711.240000px;}
.y1b3{bottom:713.040000px;}
.y13e{bottom:713.400000px;}
.y1ce{bottom:714.840000px;}
.y19c{bottom:715.200000px;}
.y156{bottom:716.640000px;}
.y206{bottom:717.000000px;}
.y50{bottom:720.240000px;}
.y82{bottom:723.480000px;}
.yb3{bottom:727.080000px;}
.y11b{bottom:728.520000px;}
.yf5{bottom:730.320000px;}
.y1d5{bottom:730.680000px;}
.y1b2{bottom:732.120000px;}
.y17a{bottom:733.920000px;}
.y13d{bottom:734.280000px;}
.y155{bottom:735.720000px;}
.y205{bottom:737.520000px;}
.y4f{bottom:741.120000px;}
.y81{bottom:742.560000px;}
.yd2{bottom:746.160000px;}
.yb2{bottom:747.960000px;}
.yf4{bottom:749.760000px;}
.y1b1{bottom:751.200000px;}
.y179{bottom:752.640000px;}
.y13c{bottom:754.440000px;}
.y1f4{bottom:754.800000px;}
.y154{bottom:756.600000px;}
.y204{bottom:758.400000px;}
.y4e{bottom:761.280000px;}
.y80{bottom:761.640000px;}
.yd1{bottom:767.040000px;}
.yb1{bottom:768.480000px;}
.y1c3{bottom:769.920000px;}
.yf3{bottom:770.280000px;}
.y178{bottom:771.720000px;}
.y1d4{bottom:772.080000px;}
.y13b{bottom:773.520000px;}
.y1f3{bottom:775.680000px;}
.y153{bottom:777.120000px;}
.y203{bottom:778.920000px;}
.y4d{bottom:780.360000px;}
.y7f{bottom:782.520000px;}
.yd0{bottom:787.560000px;}
.y1c2{bottom:789.000000px;}
.yb0{bottom:789.360000px;}
.y177{bottom:790.800000px;}
.yf2{bottom:791.160000px;}
.y13a{bottom:792.600000px;}
.y1f2{bottom:796.200000px;}
.y152{bottom:798.000000px;}
.y4c{bottom:799.440000px;}
.y202{bottom:799.800000px;}
.y7e{bottom:803.040000px;}
.y1c1{bottom:808.080000px;}
.ycf{bottom:808.440000px;}
.yaf{bottom:809.880000px;}
.y139{bottom:811.320000px;}
.yf1{bottom:811.680000px;}
.y1d3{bottom:813.480000px;}
.y1f1{bottom:817.080000px;}
.y4b{bottom:818.520000px;}
.y201{bottom:820.320000px;}
.y7d{bottom:823.920000px;}
.y1c0{bottom:827.160000px;}
.y11a{bottom:828.600000px;}
.yce{bottom:828.960000px;}
.y138{bottom:830.400000px;}
.yae{bottom:830.760000px;}
.yf0{bottom:832.560000px;}
.y1d2{bottom:834.000000px;}
.y4a{bottom:837.240000px;}
.y1f0{bottom:837.600000px;}
.y19b{bottom:839.400000px;}
.y200{bottom:841.200000px;}
.y7c{bottom:844.440000px;}
.y119{bottom:847.680000px;}
.y1bf{bottom:848.040000px;}
.y137{bottom:849.480000px;}
.ycd{bottom:849.840000px;}
.yad{bottom:851.280000px;}
.yef{bottom:853.080000px;}
.y1d1{bottom:854.880000px;}
.y49{bottom:856.320000px;}
.y1ef{bottom:858.480000px;}
.y12{bottom:859.560000px;}
.y19a{bottom:859.920000px;}
.y1ff{bottom:861.720000px;}
.y7b{bottom:865.320000px;}
.y118{bottom:866.760000px;}
.y136{bottom:868.560000px;}
.ycc{bottom:870.360000px;}
.yac{bottom:872.160000px;}
.yee{bottom:873.960000px;}
.y48{bottom:875.400000px;}
.y1ee{bottom:879.000000px;}
.y11{bottom:880.080000px;}
.y199{bottom:880.800000px;}
.y1fe{bottom:882.600000px;}
.y117{bottom:885.480000px;}
.y7a{bottom:885.840000px;}
.y135{bottom:889.440000px;}
.ycb{bottom:891.240000px;}
.yab{bottom:892.680000px;}
.y47{bottom:894.120000px;}
.y1ed{bottom:899.880000px;}
.y10{bottom:900.960000px;}
.y198{bottom:901.320000px;}
.y1fd{bottom:903.120000px;}
.y116{bottom:904.560000px;}
.y79{bottom:906.360000px;}
.y134{bottom:909.960000px;}
.yca{bottom:911.760000px;}
.yaa{bottom:913.200000px;}
.y46{bottom:913.560000px;}
.y1ec{bottom:920.400000px;}
.yf{bottom:921.480000px;}
.y197{bottom:922.200000px;}
.y115{bottom:923.640000px;}
.y1fc{bottom:924.000000px;}
.y78{bottom:925.440000px;}
.y133{bottom:930.840000px;}
.ya9{bottom:932.280000px;}
.y45{bottom:934.080000px;}
.y1eb{bottom:941.280000px;}
.ye{bottom:942.720000px;}
.y77{bottom:944.160000px;}
.y1fb{bottom:944.520000px;}
.ya8{bottom:951.000000px;}
.y44{bottom:954.960000px;}
.y1cd{bottom:961.440000px;}
.y1ea{bottom:961.800000px;}
.y76{bottom:963.240000px;}
.y114{bottom:963.600000px;}
.yd{bottom:963.960000px;}
.y1fa{bottom:965.400000px;}
.ya7{bottom:970.080000px;}
.y43{bottom:975.480000px;}
.y1cc{bottom:980.520000px;}
.y75{bottom:982.320000px;}
.y196{bottom:983.760000px;}
.y113{bottom:984.120000px;}
.y1f9{bottom:985.560000px;}
.yc{bottom:987.360000px;}
.ya6{bottom:989.160000px;}
.y42{bottom:996.360000px;}
.y1cb{bottom:999.600000px;}
.y176{bottom:1001.040000px;}
.y195{bottom:1002.840000px;}
.y74{bottom:1003.200000px;}
.y1f8{bottom:1004.640000px;}
.y112{bottom:1005.000000px;}
.ya5{bottom:1008.240000px;}
.yb{bottom:1009.320000px;}
.y41{bottom:1016.880000px;}
.y1ca{bottom:1018.320000px;}
.y175{bottom:1020.120000px;}
.y194{bottom:1021.920000px;}
.y73{bottom:1023.720000px;}
.y111{bottom:1025.520000px;}
.ya4{bottom:1026.960000px;}
.ya{bottom:1037.040000px;}
.y40{bottom:1037.760000px;}
.y174{bottom:1039.200000px;}
.y193{bottom:1041.000000px;}
.y1f7{bottom:1042.440000px;}
.y72{bottom:1044.600000px;}
.ya3{bottom:1046.040000px;}
.y3f{bottom:1058.280000px;}
.y192{bottom:1059.720000px;}
.y1f6{bottom:1061.520000px;}
.y9{bottom:1063.320000px;}
.y71{bottom:1065.120000px;}
.y3e{bottom:1079.160000px;}
.y1f5{bottom:1080.600000px;}
.y70{bottom:1083.840000px;}
.y8{bottom:1084.200000px;}
.y3d{bottom:1099.680000px;}
.y6f{bottom:1102.920000px;}
.y7{bottom:1104.000000px;}
.y3c{bottom:1120.560000px;}
.y6e{bottom:1122.000000px;}
.y3{bottom:1156.920000px;}
.y2{bottom:1176.000000px;}
.y39{bottom:1176.360000px;}
.hb{height:34.114922px;}
.he{height:44.992969px;}
.hf{height:45.024609px;}
.h10{height:49.992188px;}
.h11{height:50.027344px;}
.h3{height:51.804141px;}
.h2{height:51.948281px;}
.h9{height:56.858203px;}
.hd{height:57.016406px;}
.h4{height:63.175781px;}
.hc{height:63.351563px;}
.h5{height:66.036094px;}
.ha{height:66.881953px;}
.h7{height:73.283906px;}
.h6{height:83.392031px;}
.h8{height:241.200000px;}
.h1{height:1225.320000px;}
.h0{height:1263.000000px;}
.w3{width:320.040000px;}
.w2{width:325.440000px;}
.w1{width:856.380000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xf{left:5.039925px;}
.x1{left:18.059970px;}
.x15{left:108.254955px;}
.x3{left:109.379955px;}
.x2{left:111.692580px;}
.xe{left:122.400000px;}
.x7{left:131.027805px;}
.x6{left:151.905180px;}
.x14{left:153.255030px;}
.x11{left:162.554880px;}
.x13{left:173.205030px;}
.x12{left:215.729730px;}
.xa{left:262.838880px;}
.x18{left:281.089380px;}
.x17{left:284.587380px;}
.xc{left:300.790080px;}
.x9{left:303.901380px;}
.xb{left:336.513180px;}
.x16{left:376.757580px;}
.x8{left:385.629330px;}
.x4{left:400.541430px;}
.xd{left:425.579730px;}
.x5{left:428.279730px;}
.x10{left:447.840000px;}
@media print{
.v3{vertical-align:-26.880000pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls9a{letter-spacing:-6.785280pt;}
.ls90{letter-spacing:-5.114880pt;}
.ls96{letter-spacing:-5.091840pt;}
.ls95{letter-spacing:-1.422720pt;}
.ls63{letter-spacing:-1.399680pt;}
.ls9b{letter-spacing:-0.012800pt;}
.ls19{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000533pt;}
.lsa2{letter-spacing:0.009600pt;}
.lsa1{letter-spacing:0.009760pt;}
.lsa0{letter-spacing:0.010133pt;}
.ls9f{letter-spacing:0.010293pt;}
.ls43{letter-spacing:0.010667pt;}
.ls9d{letter-spacing:0.010773pt;}
.ls9c{letter-spacing:0.011200pt;}
.ls9e{letter-spacing:0.012800pt;}
.ls7{letter-spacing:0.105600pt;}
.ls6{letter-spacing:0.106133pt;}
.ls0{letter-spacing:0.106613pt;}
.ls4{letter-spacing:0.106667pt;}
.ls34{letter-spacing:0.107733pt;}
.ls42{letter-spacing:0.186667pt;}
.ls17{letter-spacing:0.186720pt;}
.ls3{letter-spacing:0.213333pt;}
.ls5{letter-spacing:0.213867pt;}
.ls97{letter-spacing:0.215168pt;}
.ls22{letter-spacing:0.215296pt;}
.ls21{letter-spacing:0.219648pt;}
.ls1e{letter-spacing:0.225664pt;}
.ls51{letter-spacing:0.241920pt;}
.ls1d{letter-spacing:0.244992pt;}
.lsa3{letter-spacing:0.249600pt;}
.ls56{letter-spacing:0.251200pt;}
.ls27{letter-spacing:0.253440pt;}
.ls45{letter-spacing:0.264960pt;}
.ls35{letter-spacing:0.266133pt;}
.ls31{letter-spacing:0.266667pt;}
.ls69{letter-spacing:0.267200pt;}
.ls24{letter-spacing:0.283008pt;}
.ls1c{letter-spacing:0.283392pt;}
.lsf{letter-spacing:0.284053pt;}
.ls16{letter-spacing:0.284160pt;}
.lsa{letter-spacing:0.284693pt;}
.ls2f{letter-spacing:0.288000pt;}
.ls57{letter-spacing:0.309632pt;}
.ls2{letter-spacing:0.316800pt;}
.lsd{letter-spacing:0.320320pt;}
.ls26{letter-spacing:0.341120pt;}
.ls2a{letter-spacing:0.355733pt;}
.ls7c{letter-spacing:0.356267pt;}
.ls39{letter-spacing:0.357120pt;}
.ls25{letter-spacing:0.372608pt;}
.ls70{letter-spacing:0.374400pt;}
.ls3d{letter-spacing:0.385920pt;}
.lse{letter-spacing:0.391573pt;}
.ls88{letter-spacing:0.424000pt;}
.ls9{letter-spacing:0.425088pt;}
.ls2d{letter-spacing:0.426240pt;}
.ls8{letter-spacing:0.426667pt;}
.ls1f{letter-spacing:0.430848pt;}
.ls33{letter-spacing:0.440000pt;}
.lsa4{letter-spacing:0.449280pt;}
.ls32{letter-spacing:0.464533pt;}
.ls2e{letter-spacing:0.466560pt;}
.ls5e{letter-spacing:0.470933pt;}
.ls4c{letter-spacing:0.472320pt;}
.ls3b{letter-spacing:0.478080pt;}
.ls15{letter-spacing:0.482453pt;}
.ls29{letter-spacing:0.482816pt;}
.ls8f{letter-spacing:0.483840pt;}
.ls71{letter-spacing:0.489600pt;}
.ls3a{letter-spacing:0.495360pt;}
.ls46{letter-spacing:0.499200pt;}
.ls1b{letter-spacing:0.514304pt;}
.ls3e{letter-spacing:0.524160pt;}
.ls5a{letter-spacing:0.529920pt;}
.ls2b{letter-spacing:0.535680pt;}
.ls55{letter-spacing:0.541867pt;}
.ls72{letter-spacing:0.547200pt;}
.ls18{letter-spacing:0.549120pt;}
.ls66{letter-spacing:0.552960pt;}
.ls20{letter-spacing:0.566016pt;}
.ls28{letter-spacing:0.566784pt;}
.lsc{letter-spacing:0.568373pt;}
.ls12{letter-spacing:0.568640pt;}
.ls92{letter-spacing:0.598400pt;}
.ls91{letter-spacing:0.599040pt;}
.ls3c{letter-spacing:0.604800pt;}
.ls62{letter-spacing:0.610560pt;}
.ls85{letter-spacing:0.612267pt;}
.lsb{letter-spacing:0.624512pt;}
.ls11{letter-spacing:0.625067pt;}
.ls14{letter-spacing:0.625173pt;}
.ls30{letter-spacing:0.645120pt;}
.ls99{letter-spacing:0.656640pt;}
.ls4e{letter-spacing:0.662400pt;}
.ls4f{letter-spacing:0.668160pt;}
.ls38{letter-spacing:0.708480pt;}
.ls7f{letter-spacing:0.710400pt;}
.ls7d{letter-spacing:0.720000pt;}
.ls47{letter-spacing:0.725760pt;}
.ls53{letter-spacing:0.750933pt;}
.ls81{letter-spacing:0.758933pt;}
.ls8e{letter-spacing:0.760320pt;}
.ls1{letter-spacing:0.767253pt;}
.ls8d{letter-spacing:0.771840pt;}
.ls23{letter-spacing:0.777600pt;}
.ls4d{letter-spacing:0.783360pt;}
.ls61{letter-spacing:0.806400pt;}
.ls50{letter-spacing:0.817920pt;}
.ls6b{letter-spacing:0.851733pt;}
.ls1a{letter-spacing:0.855424pt;}
.ls7e{letter-spacing:0.950400pt;}
.ls2c{letter-spacing:0.956160pt;}
.ls8b{letter-spacing:1.028267pt;}
.ls8c{letter-spacing:1.028800pt;}
.ls48{letter-spacing:1.048320pt;}
.ls4a{letter-spacing:1.059840pt;}
.ls79{letter-spacing:1.064960pt;}
.ls49{letter-spacing:1.065600pt;}
.ls83{letter-spacing:1.066133pt;}
.ls59{letter-spacing:1.066667pt;}
.ls86{letter-spacing:1.067200pt;}
.ls44{letter-spacing:1.071360pt;}
.ls5b{letter-spacing:1.094400pt;}
.ls87{letter-spacing:1.219733pt;}
.ls75{letter-spacing:1.523200pt;}
.ls6e{letter-spacing:1.562133pt;}
.ls80{letter-spacing:1.611733pt;}
.ls6f{letter-spacing:1.845867pt;}
.ls58{letter-spacing:2.034667pt;}
.ls64{letter-spacing:2.125867pt;}
.ls54{letter-spacing:2.236800pt;}
.ls65{letter-spacing:3.398400pt;}
.ls40{letter-spacing:4.221333pt;}
.ls3f{letter-spacing:4.222400pt;}
.ls37{letter-spacing:4.691200pt;}
.ls5d{letter-spacing:4.827733pt;}
.ls6d{letter-spacing:4.854933pt;}
.ls6c{letter-spacing:4.855467pt;}
.ls52{letter-spacing:4.919040pt;}
.ls67{letter-spacing:4.994667pt;}
.ls77{letter-spacing:5.125867pt;}
.ls73{letter-spacing:5.265067pt;}
.ls13{letter-spacing:5.718400pt;}
.ls5f{letter-spacing:6.098667pt;}
.ls76{letter-spacing:6.111467pt;}
.ls98{letter-spacing:6.158400pt;}
.ls6a{letter-spacing:6.268267pt;}
.ls7b{letter-spacing:6.785067pt;}
.ls4b{letter-spacing:6.825067pt;}
.ls41{letter-spacing:6.861867pt;}
.ls68{letter-spacing:6.924267pt;}
.ls36{letter-spacing:7.561067pt;}
.ls94{letter-spacing:7.776000pt;}
.ls78{letter-spacing:8.088000pt;}
.ls93{letter-spacing:8.536533pt;}
.ls60{letter-spacing:9.436800pt;}
.ls74{letter-spacing:10.192533pt;}
.ls82{letter-spacing:11.125867pt;}
.ls5c{letter-spacing:11.371200pt;}
.ls84{letter-spacing:11.611733pt;}
.ls8a{letter-spacing:12.047467pt;}
.ls89{letter-spacing:12.049600pt;}
.ls7a{letter-spacing:135.200800pt;}
.ws8{word-spacing:-16.000000pt;}
.ws1d{word-spacing:-15.987200pt;}
.ws19{word-spacing:-15.356160pt;}
.ws18{word-spacing:-15.177600pt;}
.ws17{word-spacing:-15.062400pt;}
.ws15{word-spacing:-15.045120pt;}
.ws12{word-spacing:-14.935680pt;}
.ws14{word-spacing:-14.924160pt;}
.ws11{word-spacing:-14.866560pt;}
.ws16{word-spacing:-14.826240pt;}
.ws1c{word-spacing:-14.757120pt;}
.ws1b{word-spacing:-14.688000pt;}
.ws3{word-spacing:-13.975424pt;}
.ws0{word-spacing:-13.744512pt;}
.ws4{word-spacing:-13.634304pt;}
.ws7{word-spacing:-13.545088pt;}
.ws13{word-spacing:-13.492608pt;}
.ws5{word-spacing:-13.403392pt;}
.ws2{word-spacing:-13.120000pt;}
.wsf{word-spacing:-13.029120pt;}
.ws1{word-spacing:-10.876800pt;}
.wsd{word-spacing:-10.843008pt;}
.wse{word-spacing:-10.813440pt;}
.ws6{word-spacing:-10.804992pt;}
.wsb{word-spacing:-0.835200pt;}
.ws1e{word-spacing:-0.599040pt;}
.ws1a{word-spacing:-0.593280pt;}
.ws22{word-spacing:-0.549120pt;}
.ws20{word-spacing:-0.499200pt;}
.ws9{word-spacing:-0.304128pt;}
.ws1f{word-spacing:-0.299520pt;}
.wsa{word-spacing:-0.289536pt;}
.ws21{word-spacing:-0.076800pt;}
.wsc{word-spacing:-0.064000pt;}
.ws10{word-spacing:0.000000pt;}
._1c{margin-left:-12.800000pt;}
._24{margin-left:-7.613227pt;}
._1d{margin-left:-6.400533pt;}
._22{margin-left:-5.299200pt;}
._21{margin-left:-4.262400pt;}
._3{margin-left:-2.397653pt;}
._0{margin-left:-1.087797pt;}
._8{width:0.892160pt;}
._e{width:1.784320pt;}
._d{width:2.886400pt;}
._c{width:3.835051pt;}
._6{width:5.352960pt;}
._5{width:6.455040pt;}
._4{width:7.677344pt;}
._7{width:9.131520pt;}
._9{width:10.286080pt;}
._1a{width:11.470080pt;}
._f{width:12.437760pt;}
._12{width:14.134187pt;}
._10{width:15.114240pt;}
._11{width:16.058880pt;}
._14{width:17.241867pt;}
._13{width:18.790400pt;}
._15{width:20.300800pt;}
._16{width:21.612800pt;}
._1f{width:22.918400pt;}
._17{width:24.659200pt;}
._19{width:26.201600pt;}
._1b{width:28.736000pt;}
._1e{width:30.656000pt;}
._a{width:33.639680pt;}
._b{width:34.584320pt;}
._23{width:36.518400pt;}
._20{width:135.200800pt;}
._2{width:566.683200pt;}
._18{width:689.626133pt;}
._1{width:749.269003pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs1{font-size:42.240000pt;}
.fs6{font-size:49.920000pt;}
.fs0{font-size:52.480000pt;}
.fs5{font-size:57.600000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.fs3{font-size:84.480000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:2.880000pt;}
.y1{bottom:16.746667pt;}
.y20{bottom:18.240000pt;}
.y3b{bottom:32.853360pt;}
.y6{bottom:33.173360pt;}
.y1f{bottom:33.600000pt;}
.y5{bottom:48.853360pt;}
.y1e{bottom:48.960000pt;}
.y1d{bottom:64.320000pt;}
.y4{bottom:66.773360pt;}
.y1c{bottom:79.680000pt;}
.y3a{bottom:82.133360pt;}
.y1b{bottom:95.040000pt;}
.ya2{bottom:99.093360pt;}
.y173{bottom:100.693360pt;}
.y1be{bottom:104.853360pt;}
.y1d0{bottom:105.173360pt;}
.yed{bottom:108.053360pt;}
.y1a{bottom:110.400000pt;}
.y151{bottom:111.253360pt;}
.yc9{bottom:112.533360pt;}
.y1cf{bottom:114.453360pt;}
.y6d{bottom:115.733360pt;}
.y1e9{bottom:117.333333pt;}
.y172{bottom:118.933333pt;}
.ya1{bottom:120.533333pt;}
.y1bd{bottom:121.813333pt;}
.y221{bottom:123.733333pt;}
.yec{bottom:125.013333pt;}
.y19{bottom:125.760000pt;}
.y38{bottom:126.293333pt;}
.y1c9{bottom:127.893333pt;}
.y110{bottom:128.213333pt;}
.yc8{bottom:129.493333pt;}
.ya0{bottom:129.813333pt;}
.y191{bottom:131.413333pt;}
.y6c{bottom:132.693333pt;}
.y1e8{bottom:133.973333pt;}
.y171{bottom:137.493333pt;}
.y1bc{bottom:138.773333pt;}
.y18{bottom:141.120000pt;}
.yeb{bottom:141.653333pt;}
.y220{bottom:141.973333pt;}
.y37{bottom:144.533333pt;}
.y1c8{bottom:144.853333pt;}
.y9f{bottom:145.173333pt;}
.yc7{bottom:146.453333pt;}
.y150{bottom:148.053333pt;}
.y6b{bottom:149.333333pt;}
.y190{bottom:149.653333pt;}
.y1e7{bottom:150.933333pt;}
.y132{bottom:152.533333pt;}
.y170{bottom:155.733333pt;}
.y17{bottom:156.480000pt;}
.yea{bottom:158.933333pt;}
.y9e{bottom:160.533333pt;}
.y1c7{bottom:161.813333pt;}
.y36{bottom:163.093333pt;}
.yc6{bottom:165.013333pt;}
.y6a{bottom:166.293333pt;}
.y14f{bottom:166.613333pt;}
.y1e6{bottom:167.893333pt;}
.y18f{bottom:168.213333pt;}
.y131{bottom:169.493333pt;}
.y16{bottom:171.840000pt;}
.y16f{bottom:173.973333pt;}
.y1bb{bottom:174.293333pt;}
.ye9{bottom:177.173333pt;}
.y1c6{bottom:178.453333pt;}
.y21f{bottom:178.773333pt;}
.y10f{bottom:180.053333pt;}
.y35{bottom:181.333333pt;}
.y9d{bottom:181.973333pt;}
.y69{bottom:183.253333pt;}
.y1e5{bottom:184.533333pt;}
.y14e{bottom:184.853333pt;}
.y130{bottom:186.133333pt;}
.y18e{bottom:186.453333pt;}
.y15{bottom:186.880000pt;}
.y16e{bottom:190.933333pt;}
.y9c{bottom:191.253333pt;}
.y1ba{bottom:192.533333pt;}
.y1c5{bottom:195.413333pt;}
.ye8{bottom:195.733333pt;}
.y10e{bottom:197.013333pt;}
.y21e{bottom:197.333333pt;}
.y34{bottom:199.893333pt;}
.y1e4{bottom:201.493333pt;}
.yc5{bottom:201.813333pt;}
.y14{bottom:202.240000pt;}
.y12f{bottom:203.093333pt;}
.y18d{bottom:205.013333pt;}
.y16d{bottom:207.573333pt;}
.y9b{bottom:210.773333pt;}
.y1b9{bottom:211.093333pt;}
.y1c4{bottom:212.373333pt;}
.y10d{bottom:213.653333pt;}
.ye7{bottom:213.973333pt;}
.y21d{bottom:215.573333pt;}
.y68{bottom:216.853333pt;}
.y33{bottom:218.133333pt;}
.y1e3{bottom:218.453333pt;}
.yc4{bottom:220.053333pt;}
.y18c{bottom:223.253333pt;}
.y16c{bottom:224.533333pt;}
.y9a{bottom:227.733333pt;}
.y1b8{bottom:229.013333pt;}
.y10c{bottom:230.613333pt;}
.ye6{bottom:232.533333pt;}
.y67{bottom:233.813333pt;}
.y21c{bottom:234.133333pt;}
.y1e2{bottom:235.413333pt;}
.y32{bottom:236.693333pt;}
.yc3{bottom:238.613333pt;}
.y16b{bottom:241.493333pt;}
.y99{bottom:244.373333pt;}
.y1b7{bottom:245.973333pt;}
.y10b{bottom:247.573333pt;}
.y66{bottom:250.453333pt;}
.ye5{bottom:250.773333pt;}
.y1e1{bottom:252.053333pt;}
.y21b{bottom:252.373333pt;}
.y14d{bottom:253.653333pt;}
.y31{bottom:254.933333pt;}
.yc2{bottom:256.853333pt;}
.y16a{bottom:258.453333pt;}
.y18b{bottom:260.053333pt;}
.y98{bottom:261.333333pt;}
.y1b6{bottom:262.933333pt;}
.y10a{bottom:264.533333pt;}
.y65{bottom:267.413333pt;}
.y1e0{bottom:269.013333pt;}
.ye4{bottom:269.333333pt;}
.y14c{bottom:270.613333pt;}
.y21a{bottom:270.933333pt;}
.y30{bottom:273.493333pt;}
.yc1{bottom:275.413333pt;}
.y169{bottom:277.013333pt;}
.y97{bottom:278.293333pt;}
.y1b5{bottom:279.573333pt;}
.y1b0{bottom:281.173333pt;}
.y109{bottom:281.493333pt;}
.y64{bottom:284.373333pt;}
.y1df{bottom:285.973333pt;}
.y14b{bottom:287.253333pt;}
.ye3{bottom:287.573333pt;}
.y219{bottom:289.173333pt;}
.y2f{bottom:291.733333pt;}
.yc0{bottom:293.653333pt;}
.y96{bottom:294.933333pt;}
.y168{bottom:295.253333pt;}
.y1b4{bottom:296.533333pt;}
.y18a{bottom:296.853333pt;}
.y1af{bottom:298.133333pt;}
.y108{bottom:300.053333pt;}
.y63{bottom:301.333333pt;}
.y1de{bottom:302.613333pt;}
.y14a{bottom:304.213333pt;}
.ye2{bottom:306.133333pt;}
.y218{bottom:307.733333pt;}
.y2e{bottom:310.293333pt;}
.y95{bottom:311.893333pt;}
.y167{bottom:313.493333pt;}
.y189{bottom:315.093333pt;}
.y62{bottom:317.973333pt;}
.y107{bottom:318.293333pt;}
.y1dd{bottom:319.573333pt;}
.y149{bottom:321.493333pt;}
.ye1{bottom:324.373333pt;}
.y217{bottom:325.973333pt;}
.y12e{bottom:327.253333pt;}
.y2d{bottom:328.533333pt;}
.y94{bottom:328.853333pt;}
.y166{bottom:330.453333pt;}
.y1ae{bottom:331.733333pt;}
.y188{bottom:333.653333pt;}
.y61{bottom:334.933333pt;}
.y1dc{bottom:336.533333pt;}
.y106{bottom:336.853333pt;}
.y148{bottom:339.733333pt;}
.ye0{bottom:342.933333pt;}
.y12d{bottom:344.213333pt;}
.y216{bottom:344.533333pt;}
.y93{bottom:345.813333pt;}
.y2c{bottom:347.093333pt;}
.y1ad{bottom:348.693333pt;}
.y60{bottom:351.893333pt;}
.y1db{bottom:353.173333pt;}
.y105{bottom:355.093333pt;}
.y147{bottom:358.293333pt;}
.y12c{bottom:360.853333pt;}
.ydf{bottom:361.173333pt;}
.y92{bottom:362.453333pt;}
.y215{bottom:362.773333pt;}
.y165{bottom:364.053333pt;}
.y2b{bottom:365.333333pt;}
.y1ac{bottom:365.653333pt;}
.y5f{bottom:368.533333pt;}
.y1da{bottom:370.133333pt;}
.y187{bottom:370.453333pt;}
.y104{bottom:373.653333pt;}
.y146{bottom:376.213333pt;}
.y12b{bottom:377.813333pt;}
.y91{bottom:379.413333pt;}
.yde{bottom:379.733333pt;}
.y164{bottom:381.013333pt;}
.y1ab{bottom:382.293333pt;}
.y2a{bottom:383.893333pt;}
.y5e{bottom:385.493333pt;}
.y1d9{bottom:387.413333pt;}
.y186{bottom:388.693333pt;}
.y103{bottom:391.893333pt;}
.y145{bottom:393.173333pt;}
.y12a{bottom:394.773333pt;}
.y90{bottom:396.373333pt;}
.y163{bottom:397.653333pt;}
.ydd{bottom:397.973333pt;}
.y1aa{bottom:399.253333pt;}
.y214{bottom:399.573333pt;}
.y29{bottom:402.133333pt;}
.y5d{bottom:402.453333pt;}
.y1d8{bottom:405.653333pt;}
.y185{bottom:407.253333pt;}
.y144{bottom:410.133333pt;}
.y102{bottom:410.453333pt;}
.y129{bottom:411.733333pt;}
.y8f{bottom:413.013333pt;}
.y162{bottom:414.613333pt;}
.y1a9{bottom:416.213333pt;}
.ydc{bottom:416.533333pt;}
.y213{bottom:417.813333pt;}
.y5c{bottom:419.413333pt;}
.y28{bottom:420.693333pt;}
.y1d7{bottom:424.213333pt;}
.y184{bottom:425.493333pt;}
.y143{bottom:426.773333pt;}
.y128{bottom:428.373333pt;}
.y101{bottom:428.693333pt;}
.y8e{bottom:429.973333pt;}
.ybf{bottom:430.293333pt;}
.y161{bottom:431.573333pt;}
.y1a8{bottom:433.173333pt;}
.ydb{bottom:434.773333pt;}
.y212{bottom:436.373333pt;}
.y5b{bottom:437.973333pt;}
.y27{bottom:438.933333pt;}
.y1d6{bottom:442.453333pt;}
.y142{bottom:443.733333pt;}
.y183{bottom:444.053333pt;}
.y127{bottom:445.333333pt;}
.y100{bottom:446.933333pt;}
.y8d{bottom:447.253333pt;}
.ybe{bottom:448.533333pt;}
.y1a7{bottom:449.813333pt;}
.yda{bottom:453.333333pt;}
.y211{bottom:454.613333pt;}
.y5a{bottom:456.213333pt;}
.y26{bottom:457.493333pt;}
.y141{bottom:461.013333pt;}
.y126{bottom:462.293333pt;}
.yff{bottom:463.573333pt;}
.y160{bottom:465.173333pt;}
.y8c{bottom:465.493333pt;}
.y1a6{bottom:466.773333pt;}
.ybd{bottom:467.093333pt;}
.yd9{bottom:471.573333pt;}
.y210{bottom:473.173333pt;}
.y59{bottom:474.773333pt;}
.y25{bottom:475.733333pt;}
.y125{bottom:478.933333pt;}
.yfe{bottom:480.533333pt;}
.y182{bottom:480.853333pt;}
.y15f{bottom:482.133333pt;}
.y1a5{bottom:483.733333pt;}
.y8b{bottom:484.053333pt;}
.ybc{bottom:485.333333pt;}
.yd8{bottom:490.133333pt;}
.y20f{bottom:491.413333pt;}
.y58{bottom:493.013333pt;}
.y24{bottom:494.293333pt;}
.y124{bottom:495.893333pt;}
.yfd{bottom:497.493333pt;}
.y15e{bottom:499.093333pt;}
.y1a4{bottom:500.373333pt;}
.y8a{bottom:502.293333pt;}
.ybb{bottom:503.893333pt;}
.yd7{bottom:508.373333pt;}
.y20e{bottom:509.973333pt;}
.y57{bottom:511.573333pt;}
.y23{bottom:512.533333pt;}
.y123{bottom:512.853333pt;}
.yfc{bottom:514.453333pt;}
.y181{bottom:515.733333pt;}
.y1a3{bottom:517.333333pt;}
.y15d{bottom:517.653333pt;}
.y89{bottom:520.853333pt;}
.yba{bottom:522.133333pt;}
.yd6{bottom:526.933333pt;}
.y20d{bottom:528.213333pt;}
.y122{bottom:529.493333pt;}
.y56{bottom:529.813333pt;}
.y22{bottom:531.093333pt;}
.y180{bottom:532.693333pt;}
.y1a2{bottom:534.293333pt;}
.y15c{bottom:535.893333pt;}
.y88{bottom:539.093333pt;}
.yb9{bottom:540.693333pt;}
.yd5{bottom:544.853333pt;}
.y20b{bottom:545.173333pt;}
.y121{bottom:546.453333pt;}
.y20c{bottom:546.773333pt;}
.yfb{bottom:548.053333pt;}
.y55{bottom:548.373333pt;}
.y17f{bottom:549.653333pt;}
.y1a1{bottom:551.253333pt;}
.y15b{bottom:552.533333pt;}
.y225{bottom:554.453333pt;}
.y87{bottom:557.333333pt;}
.yb8{bottom:558.933333pt;}
.yd4{bottom:561.813333pt;}
.y13{bottom:562.560000pt;}
.y120{bottom:563.413333pt;}
.y20a{bottom:563.733333pt;}
.yfa{bottom:565.013333pt;}
.y17e{bottom:566.293333pt;}
.y54{bottom:566.613333pt;}
.y1a0{bottom:567.893333pt;}
.y15a{bottom:569.493333pt;}
.y224{bottom:572.693333pt;}
.y86{bottom:575.573333pt;}
.yb7{bottom:577.493333pt;}
.yd3{bottom:578.773333pt;}
.y11f{bottom:580.373333pt;}
.yf9{bottom:581.653333pt;}
.y209{bottom:581.973333pt;}
.y17d{bottom:583.253333pt;}
.y19f{bottom:584.853333pt;}
.y53{bottom:585.173333pt;}
.y159{bottom:586.453333pt;}
.y223{bottom:591.253333pt;}
.y85{bottom:592.533333pt;}
.yb6{bottom:595.413333pt;}
.y11e{bottom:597.013333pt;}
.y140{bottom:597.333333pt;}
.yf8{bottom:598.613333pt;}
.y17c{bottom:600.213333pt;}
.y208{bottom:600.533333pt;}
.y19e{bottom:601.813333pt;}
.y158{bottom:603.093333pt;}
.y52{bottom:603.413333pt;}
.y84{bottom:609.493333pt;}
.yb5{bottom:612.373333pt;}
.y11d{bottom:613.973333pt;}
.yf7{bottom:615.573333pt;}
.y13f{bottom:615.893333pt;}
.y17b{bottom:617.173333pt;}
.y19d{bottom:618.453333pt;}
.y207{bottom:618.773333pt;}
.y157{bottom:620.053333pt;}
.y51{bottom:621.973333pt;}
.y83{bottom:626.133333pt;}
.y222{bottom:628.053333pt;}
.yb4{bottom:629.333333pt;}
.y11c{bottom:630.933333pt;}
.yf6{bottom:632.213333pt;}
.y1b3{bottom:633.813333pt;}
.y13e{bottom:634.133333pt;}
.y1ce{bottom:635.413333pt;}
.y19c{bottom:635.733333pt;}
.y156{bottom:637.013333pt;}
.y206{bottom:637.333333pt;}
.y50{bottom:640.213333pt;}
.y82{bottom:643.093333pt;}
.yb3{bottom:646.293333pt;}
.y11b{bottom:647.573333pt;}
.yf5{bottom:649.173333pt;}
.y1d5{bottom:649.493333pt;}
.y1b2{bottom:650.773333pt;}
.y17a{bottom:652.373333pt;}
.y13d{bottom:652.693333pt;}
.y155{bottom:653.973333pt;}
.y205{bottom:655.573333pt;}
.y4f{bottom:658.773333pt;}
.y81{bottom:660.053333pt;}
.yd2{bottom:663.253333pt;}
.yb2{bottom:664.853333pt;}
.yf4{bottom:666.453333pt;}
.y1b1{bottom:667.733333pt;}
.y179{bottom:669.013333pt;}
.y13c{bottom:670.613333pt;}
.y1f4{bottom:670.933333pt;}
.y154{bottom:672.533333pt;}
.y204{bottom:674.133333pt;}
.y4e{bottom:676.693333pt;}
.y80{bottom:677.013333pt;}
.yd1{bottom:681.813333pt;}
.yb1{bottom:683.093333pt;}
.y1c3{bottom:684.373333pt;}
.yf3{bottom:684.693333pt;}
.y178{bottom:685.973333pt;}
.y1d4{bottom:686.293333pt;}
.y13b{bottom:687.573333pt;}
.y1f3{bottom:689.493333pt;}
.y153{bottom:690.773333pt;}
.y203{bottom:692.373333pt;}
.y4d{bottom:693.653333pt;}
.y7f{bottom:695.573333pt;}
.yd0{bottom:700.053333pt;}
.y1c2{bottom:701.333333pt;}
.yb0{bottom:701.653333pt;}
.y177{bottom:702.933333pt;}
.yf2{bottom:703.253333pt;}
.y13a{bottom:704.533333pt;}
.y1f2{bottom:707.733333pt;}
.y152{bottom:709.333333pt;}
.y4c{bottom:710.613333pt;}
.y202{bottom:710.933333pt;}
.y7e{bottom:713.813333pt;}
.y1c1{bottom:718.293333pt;}
.ycf{bottom:718.613333pt;}
.yaf{bottom:719.893333pt;}
.y139{bottom:721.173333pt;}
.yf1{bottom:721.493333pt;}
.y1d3{bottom:723.093333pt;}
.y1f1{bottom:726.293333pt;}
.y4b{bottom:727.573333pt;}
.y201{bottom:729.173333pt;}
.y7d{bottom:732.373333pt;}
.y1c0{bottom:735.253333pt;}
.y11a{bottom:736.533333pt;}
.yce{bottom:736.853333pt;}
.y138{bottom:738.133333pt;}
.yae{bottom:738.453333pt;}
.yf0{bottom:740.053333pt;}
.y1d2{bottom:741.333333pt;}
.y4a{bottom:744.213333pt;}
.y1f0{bottom:744.533333pt;}
.y19b{bottom:746.133333pt;}
.y200{bottom:747.733333pt;}
.y7c{bottom:750.613333pt;}
.y119{bottom:753.493333pt;}
.y1bf{bottom:753.813333pt;}
.y137{bottom:755.093333pt;}
.ycd{bottom:755.413333pt;}
.yad{bottom:756.693333pt;}
.yef{bottom:758.293333pt;}
.y1d1{bottom:759.893333pt;}
.y49{bottom:761.173333pt;}
.y1ef{bottom:763.093333pt;}
.y12{bottom:764.053333pt;}
.y19a{bottom:764.373333pt;}
.y1ff{bottom:765.973333pt;}
.y7b{bottom:769.173333pt;}
.y118{bottom:770.453333pt;}
.y136{bottom:772.053333pt;}
.ycc{bottom:773.653333pt;}
.yac{bottom:775.253333pt;}
.yee{bottom:776.853333pt;}
.y48{bottom:778.133333pt;}
.y1ee{bottom:781.333333pt;}
.y11{bottom:782.293333pt;}
.y199{bottom:782.933333pt;}
.y1fe{bottom:784.533333pt;}
.y117{bottom:787.093333pt;}
.y7a{bottom:787.413333pt;}
.y135{bottom:790.613333pt;}
.ycb{bottom:792.213333pt;}
.yab{bottom:793.493333pt;}
.y47{bottom:794.773333pt;}
.y1ed{bottom:799.893333pt;}
.y10{bottom:800.853333pt;}
.y198{bottom:801.173333pt;}
.y1fd{bottom:802.773333pt;}
.y116{bottom:804.053333pt;}
.y79{bottom:805.653333pt;}
.y134{bottom:808.853333pt;}
.yca{bottom:810.453333pt;}
.yaa{bottom:811.733333pt;}
.y46{bottom:812.053333pt;}
.y1ec{bottom:818.133333pt;}
.yf{bottom:819.093333pt;}
.y197{bottom:819.733333pt;}
.y115{bottom:821.013333pt;}
.y1fc{bottom:821.333333pt;}
.y78{bottom:822.613333pt;}
.y133{bottom:827.413333pt;}
.ya9{bottom:828.693333pt;}
.y45{bottom:830.293333pt;}
.y1eb{bottom:836.693333pt;}
.ye{bottom:837.973333pt;}
.y77{bottom:839.253333pt;}
.y1fb{bottom:839.573333pt;}
.ya8{bottom:845.333333pt;}
.y44{bottom:848.853333pt;}
.y1cd{bottom:854.613333pt;}
.y1ea{bottom:854.933333pt;}
.y76{bottom:856.213333pt;}
.y114{bottom:856.533333pt;}
.yd{bottom:856.853333pt;}
.y1fa{bottom:858.133333pt;}
.ya7{bottom:862.293333pt;}
.y43{bottom:867.093333pt;}
.y1cc{bottom:871.573333pt;}
.y75{bottom:873.173333pt;}
.y196{bottom:874.453333pt;}
.y113{bottom:874.773333pt;}
.y1f9{bottom:876.053333pt;}
.yc{bottom:877.653333pt;}
.ya6{bottom:879.253333pt;}
.y42{bottom:885.653333pt;}
.y1cb{bottom:888.533333pt;}
.y176{bottom:889.813333pt;}
.y195{bottom:891.413333pt;}
.y74{bottom:891.733333pt;}
.y1f8{bottom:893.013333pt;}
.y112{bottom:893.333333pt;}
.ya5{bottom:896.213333pt;}
.yb{bottom:897.173333pt;}
.y41{bottom:903.893333pt;}
.y1ca{bottom:905.173333pt;}
.y175{bottom:906.773333pt;}
.y194{bottom:908.373333pt;}
.y73{bottom:909.973333pt;}
.y111{bottom:911.573333pt;}
.ya4{bottom:912.853333pt;}
.ya{bottom:921.813333pt;}
.y40{bottom:922.453333pt;}
.y174{bottom:923.733333pt;}
.y193{bottom:925.333333pt;}
.y1f7{bottom:926.613333pt;}
.y72{bottom:928.533333pt;}
.ya3{bottom:929.813333pt;}
.y3f{bottom:940.693333pt;}
.y192{bottom:941.973333pt;}
.y1f6{bottom:943.573333pt;}
.y9{bottom:945.173333pt;}
.y71{bottom:946.773333pt;}
.y3e{bottom:959.253333pt;}
.y1f5{bottom:960.533333pt;}
.y70{bottom:963.413333pt;}
.y8{bottom:963.733333pt;}
.y3d{bottom:977.493333pt;}
.y6f{bottom:980.373333pt;}
.y7{bottom:981.333333pt;}
.y3c{bottom:996.053333pt;}
.y6e{bottom:997.333333pt;}
.y3{bottom:1028.373333pt;}
.y2{bottom:1045.333333pt;}
.y39{bottom:1045.653333pt;}
.hb{height:30.324375pt;}
.he{height:39.993750pt;}
.hf{height:40.021875pt;}
.h10{height:44.437500pt;}
.h11{height:44.468750pt;}
.h3{height:46.048125pt;}
.h2{height:46.176250pt;}
.h9{height:50.540625pt;}
.hd{height:50.681250pt;}
.h4{height:56.156250pt;}
.hc{height:56.312500pt;}
.h5{height:58.698750pt;}
.ha{height:59.450625pt;}
.h7{height:65.141250pt;}
.h6{height:74.126250pt;}
.h8{height:214.400000pt;}
.h1{height:1089.173333pt;}
.h0{height:1122.666667pt;}
.w3{width:284.480000pt;}
.w2{width:289.280000pt;}
.w1{width:761.226667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xf{left:4.479933pt;}
.x1{left:16.053307pt;}
.x15{left:96.226627pt;}
.x3{left:97.226627pt;}
.x2{left:99.282293pt;}
.xe{left:108.800000pt;}
.x7{left:116.469160pt;}
.x6{left:135.026827pt;}
.x14{left:136.226693pt;}
.x11{left:144.493227pt;}
.x13{left:153.960027pt;}
.x12{left:191.759760pt;}
.xa{left:233.634560pt;}
.x18{left:249.857227pt;}
.x17{left:252.966560pt;}
.xc{left:267.368960pt;}
.x9{left:270.134560pt;}
.xb{left:299.122827pt;}
.x16{left:334.895627pt;}
.x8{left:342.781627pt;}
.x4{left:356.036827pt;}
.xd{left:378.293093pt;}
.x5{left:380.693093pt;}
.x10{left:398.080000pt;}
}




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