
    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_9289132d38f8c413aaf037aa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c84a6b78070cdca5c03a0951.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.704000;font-style:normal;font-weight: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_eeb7ad6fa204f346dccebefb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.072000;font-style:normal;font-weight: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_a608301e2d860145904be7de.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.120000;font-style:normal;font-weight: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_866376ff8a5a77b260537655.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_03eaed6f840621bad90e30c8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.812000;font-style:normal;font-weight: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_8fb42493f61de3e5d7806fd0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.136000;font-style:normal;font-weight: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_e935db59b8cc17aa3e158710.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.895996;font-style:normal;font-weight: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_c9e7a50d1e827003751659fa.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.704000;font-style:normal;font-weight: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_46b4006ffb2a46f3ced9460f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5e55b34b5411cc1f9fa48539.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.072000;font-style:normal;font-weight: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_5617f221d557a5a61b5608c3.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.072000;font-style:normal;font-weight: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_c5510b1f9f8a62c8774d6c77.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.120000;font-style:normal;font-weight: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_958d3dc241913c7c799407d5.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_03eaed6f840621bad90e30c8.woff2')format("woff");}.fff{font-family:fff;line-height:0.812000;font-style:normal;font-weight: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_8fb42493f61de3e5d7806fd0.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.136000;font-style:normal;font-weight: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_bbdca05522a1996d096f35f1.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.126000;font-style:normal;font-weight: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_9289132d38f8c413aaf037aa.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_72830622483d72a8dedd6255.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.704000;font-style:normal;font-weight: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_030bb11367bb3bfe6d7a01b5.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.072000;font-style:normal;font-weight: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_a608301e2d860145904be7de.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.120000;font-style:normal;font-weight: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_958d3dc241913c7c799407d5.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_03eaed6f840621bad90e30c8.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.812000;font-style:normal;font-weight: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_8fb42493f61de3e5d7806fd0.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.136000;font-style:normal;font-weight: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_c9e7a50d1e827003751659fa.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.704000;font-style:normal;font-weight: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_46b4006ffb2a46f3ced9460f.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_c5510b1f9f8a62c8774d6c77.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.120000;font-style:normal;font-weight: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_8fb42493f61de3e5d7806fd0.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.136000;font-style:normal;font-weight: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_958d3dc241913c7c799407d5.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_03eaed6f840621bad90e30c8.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.812000;font-style:normal;font-weight: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_bbdca05522a1996d096f35f1.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.126000;font-style:normal;font-weight: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_9289132d38f8c413aaf037aa.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_0cb1322918b6e3f5823b9c90.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.704000;font-style:normal;font-weight: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_a608301e2d860145904be7de.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.120000;font-style:normal;font-weight: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_958d3dc241913c7c799407d5.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_8fb42493f61de3e5d7806fd0.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.136000;font-style:normal;font-weight: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_03eaed6f840621bad90e30c8.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.812000;font-style:normal;font-weight: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_bbdca05522a1996d096f35f1.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.126000;font-style:normal;font-weight: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_c9e7a50d1e827003751659fa.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.704000;font-style:normal;font-weight: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_46b4006ffb2a46f3ced9460f.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_8fb42493f61de3e5d7806fd0.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.136000;font-style:normal;font-weight: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_c5510b1f9f8a62c8774d6c77.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.120000;font-style:normal;font-weight: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_958d3dc241913c7c799407d5.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_03eaed6f840621bad90e30c8.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.812000;font-style:normal;font-weight: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_bbdca05522a1996d096f35f1.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.126000;font-style:normal;font-weight: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_9289132d38f8c413aaf037aa.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_f557bc5fff3abbc74cfc4da2.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.704000;font-style:normal;font-weight: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_8e037753efce2308b17f82a1.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.072000;font-style:normal;font-weight: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_c5510b1f9f8a62c8774d6c77.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.120000;font-style:normal;font-weight: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_958d3dc241913c7c799407d5.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_03eaed6f840621bad90e30c8.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.812000;font-style:normal;font-weight: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_8fb42493f61de3e5d7806fd0.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.136000;font-style:normal;font-weight: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_61e41fa19f9c2295f8d82e54.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.704000;font-style:normal;font-weight: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_46b4006ffb2a46f3ced9460f.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_c5510b1f9f8a62c8774d6c77.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.120000;font-style:normal;font-weight: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_958d3dc241913c7c799407d5.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_03eaed6f840621bad90e30c8.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.812000;font-style:normal;font-weight: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_8fb42493f61de3e5d7806fd0.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:1.136000;font-style:normal;font-weight: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_9289132d38f8c413aaf037aa.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_c84a6b78070cdca5c03a0951.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.704000;font-style:normal;font-weight: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_c5510b1f9f8a62c8774d6c77.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:1.120000;font-style:normal;font-weight: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_958d3dc241913c7c799407d5.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_03eaed6f840621bad90e30c8.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.812000;font-style:normal;font-weight: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_eedf2dae9db1f351a5667240.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.126000;font-style:normal;font-weight: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_8fb42493f61de3e5d7806fd0.woff2')format("woff");}.ff41{font-family:ff41;line-height:1.136000;font-style:normal;font-weight: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_f626212edb7f51622638343e.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.704000;font-style:normal;font-weight: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_46b4006ffb2a46f3ced9460f.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_c5510b1f9f8a62c8774d6c77.woff2')format("woff");}.ff44{font-family:ff44;line-height:1.120000;font-style:normal;font-weight: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_958d3dc241913c7c799407d5.woff2')format("woff");}.ff45{font-family:ff45;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46;src:url('chunks/assets/font_03eaed6f840621bad90e30c8.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.812000;font-style:normal;font-weight: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_bbdca05522a1996d096f35f1.woff2')format("woff");}.ff47{font-family:ff47;line-height:1.126000;font-style:normal;font-weight: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_9289132d38f8c413aaf037aa.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url('chunks/assets/font_c84a6b78070cdca5c03a0951.woff2')format("woff");}.ff49{font-family:ff49;line-height:0.704000;font-style:normal;font-weight: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_c5510b1f9f8a62c8774d6c77.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:1.120000;font-style:normal;font-weight: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_958d3dc241913c7c799407d5.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4c;src:url('chunks/assets/font_03eaed6f840621bad90e30c8.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:0.812000;font-style:normal;font-weight: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_8fb42493f61de3e5d7806fd0.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:1.136000;font-style:normal;font-weight: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_bbdca05522a1996d096f35f1.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:1.126000;font-style:normal;font-weight: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_616d2b23e711da5068235665.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:0.704000;font-style:normal;font-weight: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_46b4006ffb2a46f3ced9460f.woff2')format("woff");}.ff50{font-family:ff50;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff51;src:url('chunks/assets/font_c5510b1f9f8a62c8774d6c77.woff2')format("woff");}.ff51{font-family:ff51;line-height:1.120000;font-style:normal;font-weight: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_958d3dc241913c7c799407d5.woff2')format("woff");}.ff52{font-family:ff52;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff53;src:url('chunks/assets/font_03eaed6f840621bad90e30c8.woff2')format("woff");}.ff53{font-family:ff53;line-height:0.812000;font-style:normal;font-weight: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_8fb42493f61de3e5d7806fd0.woff2')format("woff");}.ff54{font-family:ff54;line-height:1.136000;font-style:normal;font-weight: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_bbdca05522a1996d096f35f1.woff2')format("woff");}.ff55{font-family:ff55;line-height:1.126000;font-style:normal;font-weight: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_9289132d38f8c413aaf037aa.woff2')format("woff");}.ff56{font-family:ff56;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff57;src:url('chunks/assets/font_411889b7e0b0b88806cf9172.woff2')format("woff");}.ff57{font-family:ff57;line-height:0.704000;font-style:normal;font-weight: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_030bb11367bb3bfe6d7a01b5.woff2')format("woff");}.ff58{font-family:ff58;line-height:1.072000;font-style:normal;font-weight: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_c5510b1f9f8a62c8774d6c77.woff2')format("woff");}.ff59{font-family:ff59;line-height:1.120000;font-style:normal;font-weight: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_958d3dc241913c7c799407d5.woff2')format("woff");}.ff5a{font-family:ff5a;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5b;src:url('chunks/assets/font_03eaed6f840621bad90e30c8.woff2')format("woff");}.ff5b{font-family:ff5b;line-height:0.812000;font-style:normal;font-weight: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_8fb42493f61de3e5d7806fd0.woff2')format("woff");}.ff5c{font-family:ff5c;line-height:1.136000;font-style:normal;font-weight: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_bbdca05522a1996d096f35f1.woff2')format("woff");}.ff5d{font-family:ff5d;line-height:1.126000;font-style:normal;font-weight: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_c9e7a50d1e827003751659fa.woff2')format("woff");}.ff5e{font-family:ff5e;line-height:0.704000;font-style:normal;font-weight: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_46b4006ffb2a46f3ced9460f.woff2')format("woff");}.ff5f{font-family:ff5f;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff60;src:url('chunks/assets/font_5e55b34b5411cc1f9fa48539.woff2')format("woff");}.ff60{font-family:ff60;line-height:1.072000;font-style:normal;font-weight: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_c5510b1f9f8a62c8774d6c77.woff2')format("woff");}.ff61{font-family:ff61;line-height:1.120000;font-style:normal;font-weight: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_a205e38612990fa7ad7c9050.woff2')format("woff");}.ff62{font-family:ff62;line-height:1.072000;font-style:normal;font-weight: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_958d3dc241913c7c799407d5.woff2')format("woff");}.ff63{font-family:ff63;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff64;src:url('chunks/assets/font_03eaed6f840621bad90e30c8.woff2')format("woff");}.ff64{font-family:ff64;line-height:0.812000;font-style:normal;font-weight: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_8fb42493f61de3e5d7806fd0.woff2')format("woff");}.ff65{font-family:ff65;line-height:1.136000;font-style:normal;font-weight: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_9289132d38f8c413aaf037aa.woff2')format("woff");}.ff66{font-family:ff66;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff67;src:url('chunks/assets/font_c84a6b78070cdca5c03a0951.woff2')format("woff");}.ff67{font-family:ff67;line-height:0.704000;font-style:normal;font-weight: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_c5510b1f9f8a62c8774d6c77.woff2')format("woff");}.ff68{font-family:ff68;line-height:1.120000;font-style:normal;font-weight: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_958d3dc241913c7c799407d5.woff2')format("woff");}.ff69{font-family:ff69;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6a;src:url('chunks/assets/font_03eaed6f840621bad90e30c8.woff2')format("woff");}.ff6a{font-family:ff6a;line-height:0.812000;font-style:normal;font-weight: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_8fb42493f61de3e5d7806fd0.woff2')format("woff");}.ff6b{font-family:ff6b;line-height:1.136000;font-style:normal;font-weight: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_bbdca05522a1996d096f35f1.woff2')format("woff");}.ff6c{font-family:ff6c;line-height:1.126000;font-style:normal;font-weight: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_9e1a026e3efd29e4da987b93.woff2')format("woff");}.ff6d{font-family:ff6d;line-height:0.692000;font-style:normal;font-weight: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_75dc0599a4006611e4388470.woff2')format("woff");}.ff6e{font-family:ff6e;line-height:0.704000;font-style:normal;font-weight: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_46b4006ffb2a46f3ced9460f.woff2')format("woff");}.ff6f{font-family:ff6f;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff70;src:url('chunks/assets/font_a608301e2d860145904be7de.woff2')format("woff");}.ff70{font-family:ff70;line-height:1.120000;font-style:normal;font-weight: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_958d3dc241913c7c799407d5.woff2')format("woff");}.ff71{font-family:ff71;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff72;src:url('chunks/assets/font_03eaed6f840621bad90e30c8.woff2')format("woff");}.ff72{font-family:ff72;line-height:0.812000;font-style:normal;font-weight: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_bbdca05522a1996d096f35f1.woff2')format("woff");}.ff73{font-family:ff73;line-height:1.126000;font-style:normal;font-weight: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_8fb42493f61de3e5d7806fd0.woff2')format("woff");}.ff74{font-family:ff74;line-height:1.136000;font-style:normal;font-weight: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_9289132d38f8c413aaf037aa.woff2')format("woff");}.ff75{font-family:ff75;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff76;src:url('chunks/assets/font_c84a6b78070cdca5c03a0951.woff2')format("woff");}.ff76{font-family:ff76;line-height:0.704000;font-style:normal;font-weight: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_c5510b1f9f8a62c8774d6c77.woff2')format("woff");}.ff77{font-family:ff77;line-height:1.120000;font-style:normal;font-weight: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_958d3dc241913c7c799407d5.woff2')format("woff");}.ff78{font-family:ff78;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff79;src:url('chunks/assets/font_03eaed6f840621bad90e30c8.woff2')format("woff");}.ff79{font-family:ff79;line-height:0.812000;font-style:normal;font-weight: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_c9e7a50d1e827003751659fa.woff2')format("woff");}.ff7a{font-family:ff7a;line-height:0.704000;font-style:normal;font-weight: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_46b4006ffb2a46f3ced9460f.woff2')format("woff");}.ff7b{font-family:ff7b;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7c;src:url('chunks/assets/font_c5510b1f9f8a62c8774d6c77.woff2')format("woff");}.ff7c{font-family:ff7c;line-height:1.120000;font-style:normal;font-weight: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_958d3dc241913c7c799407d5.woff2')format("woff");}.ff7d{font-family:ff7d;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7e;src:url('chunks/assets/font_03eaed6f840621bad90e30c8.woff2')format("woff");}.ff7e{font-family:ff7e;line-height:0.812000;font-style:normal;font-weight: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_8fb42493f61de3e5d7806fd0.woff2')format("woff");}.ff7f{font-family:ff7f;line-height:1.136000;font-style:normal;font-weight: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_eedf2dae9db1f351a5667240.woff2')format("woff");}.ff80{font-family:ff80;line-height:1.126000;font-style:normal;font-weight: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_9289132d38f8c413aaf037aa.woff2')format("woff");}.ff81{font-family:ff81;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff82;src:url('chunks/assets/font_c24a13d0078b1f450391ee58.woff2')format("woff");}.ff82{font-family:ff82;line-height:0.704000;font-style:normal;font-weight: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_c5510b1f9f8a62c8774d6c77.woff2')format("woff");}.ff83{font-family:ff83;line-height:1.120000;font-style:normal;font-weight: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_958d3dc241913c7c799407d5.woff2')format("woff");}.ff84{font-family:ff84;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff85;src:url('chunks/assets/font_9bbb8434e23416af4c0a5d3f.woff2')format("woff");}.ff85{font-family:ff85;line-height:0.704000;font-style:normal;font-weight: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_46b4006ffb2a46f3ced9460f.woff2')format("woff");}.ff86{font-family:ff86;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff87;src:url('chunks/assets/font_c5510b1f9f8a62c8774d6c77.woff2')format("woff");}.ff87{font-family:ff87;line-height:1.120000;font-style:normal;font-weight: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_958d3dc241913c7c799407d5.woff2')format("woff");}.ff88{font-family:ff88;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff89;src:url('chunks/assets/font_03eaed6f840621bad90e30c8.woff2')format("woff");}.ff89{font-family:ff89;line-height:0.812000;font-style:normal;font-weight: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_bbdca05522a1996d096f35f1.woff2')format("woff");}.ff8a{font-family:ff8a;line-height:1.126000;font-style:normal;font-weight: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_8fb42493f61de3e5d7806fd0.woff2')format("woff");}.ff8b{font-family:ff8b;line-height:1.136000;font-style:normal;font-weight: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_9289132d38f8c413aaf037aa.woff2')format("woff");}.ff8c{font-family:ff8c;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8d;src:url('chunks/assets/font_c84a6b78070cdca5c03a0951.woff2')format("woff");}.ff8d{font-family:ff8d;line-height:0.704000;font-style:normal;font-weight: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_a608301e2d860145904be7de.woff2')format("woff");}.ff8e{font-family:ff8e;line-height:1.120000;font-style:normal;font-weight: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_03eaed6f840621bad90e30c8.woff2')format("woff");}.ff8f{font-family:ff8f;line-height:0.812000;font-style:normal;font-weight: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_958d3dc241913c7c799407d5.woff2')format("woff");}.ff90{font-family:ff90;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff91;src:url('chunks/assets/font_eedf2dae9db1f351a5667240.woff2')format("woff");}.ff91{font-family:ff91;line-height:1.126000;font-style:normal;font-weight: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_8fb42493f61de3e5d7806fd0.woff2')format("woff");}.ff92{font-family:ff92;line-height:1.136000;font-style:normal;font-weight: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_3692027711fac5948fb7edbd.woff2')format("woff");}.ff93{font-family:ff93;line-height:0.704000;font-style:normal;font-weight: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_46b4006ffb2a46f3ced9460f.woff2')format("woff");}.ff94{font-family:ff94;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff95;src:url('chunks/assets/font_c5510b1f9f8a62c8774d6c77.woff2')format("woff");}.ff95{font-family:ff95;line-height:1.120000;font-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);}
.m2{transform:matrix(0.259999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259999,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.875000px;}
.v2{vertical-align:21.978000px;}
.ls3{letter-spacing:-3.825000px;}
.ls9{letter-spacing:-3.060000px;}
.ls4{letter-spacing:-0.816000px;}
.lsb{letter-spacing:-0.792000px;}
.ls7{letter-spacing:-0.612000px;}
.ls2{letter-spacing:-0.396000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000300px;}
.ls6{letter-spacing:0.000600px;}
.ls5{letter-spacing:0.204000px;}
.lsa{letter-spacing:0.663000px;}
.ls8{letter-spacing:3.570000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-18.348000px;}
.ws1b{word-spacing:-16.680000px;}
.ws2{word-spacing:-16.500000px;}
.ws1{word-spacing:-12.843600px;}
.ws4{word-spacing:-12.750000px;}
.ws119{word-spacing:-12.138000px;}
.ws1c{word-spacing:-11.676000px;}
.ws3{word-spacing:-7.433250px;}
.wsb8{word-spacing:-6.666000px;}
.ws126{word-spacing:-4.950000px;}
.wsba{word-spacing:-3.960000px;}
.wsbb{word-spacing:-3.696000px;}
.wsaa{word-spacing:-3.498000px;}
.ws11{word-spacing:-3.300000px;}
.wsda{word-spacing:-3.234000px;}
.ws8b{word-spacing:-3.168000px;}
.ws2f{word-spacing:-3.102000px;}
.ws113{word-spacing:-3.036000px;}
.ws67{word-spacing:-3.024000px;}
.ws65{word-spacing:-2.970000px;}
.ws3d{word-spacing:-2.904000px;}
.wsac{word-spacing:-2.838000px;}
.ws62{word-spacing:-2.772000px;}
.wsc8{word-spacing:-2.706000px;}
.wse{word-spacing:-2.640000px;}
.ws9e{word-spacing:-2.574000px;}
.ws50{word-spacing:-2.508000px;}
.wsa7{word-spacing:-2.442000px;}
.ws38{word-spacing:-2.397000px;}
.ws2a{word-spacing:-2.376000px;}
.wscc{word-spacing:-2.346000px;}
.wsf1{word-spacing:-2.310000px;}
.ws75{word-spacing:-2.295000px;}
.wsdd{word-spacing:-2.244000px;}
.wscb{word-spacing:-2.193000px;}
.wsc1{word-spacing:-2.178000px;}
.ws74{word-spacing:-2.142000px;}
.ws3f{word-spacing:-2.112000px;}
.ws131{word-spacing:-2.091000px;}
.ws41{word-spacing:-2.046000px;}
.ws3a{word-spacing:-2.040000px;}
.ws5b{word-spacing:-1.980000px;}
.ws95{word-spacing:-1.914000px;}
.ws54{word-spacing:-1.848000px;}
.ws121{word-spacing:-1.836000px;}
.ws83{word-spacing:-1.827000px;}
.ws90{word-spacing:-1.785000px;}
.ws4e{word-spacing:-1.782000px;}
.ws132{word-spacing:-1.734000px;}
.ws99{word-spacing:-1.716000px;}
.wsa1{word-spacing:-1.650000px;}
.ws96{word-spacing:-1.584000px;}
.ws122{word-spacing:-1.581000px;}
.ws86{word-spacing:-1.575000px;}
.ws4c{word-spacing:-1.530000px;}
.ws5a{word-spacing:-1.518000px;}
.wsee{word-spacing:-1.452000px;}
.ws82{word-spacing:-1.449000px;}
.ws110{word-spacing:-1.326000px;}
.ws10c{word-spacing:-1.320000px;}
.wsaf{word-spacing:-1.275000px;}
.ws45{word-spacing:-1.254000px;}
.wsb0{word-spacing:-1.224000px;}
.ws129{word-spacing:-1.188000px;}
.ws8f{word-spacing:-1.173000px;}
.ws12a{word-spacing:-1.122000px;}
.wsd0{word-spacing:-0.990000px;}
.wsd6{word-spacing:-0.924000px;}
.ws4d{word-spacing:-0.918000px;}
.ws94{word-spacing:-0.858000px;}
.wse3{word-spacing:-0.816000px;}
.ws6{word-spacing:-0.810000px;}
.wsf{word-spacing:-0.792000px;}
.ws70{word-spacing:-0.756000px;}
.wsa0{word-spacing:-0.726000px;}
.wse5{word-spacing:-0.714000px;}
.ws39{word-spacing:-0.663000px;}
.ws127{word-spacing:-0.660000px;}
.ws3c{word-spacing:-0.594000px;}
.ws12c{word-spacing:-0.567000px;}
.ws5d{word-spacing:-0.561000px;}
.ws57{word-spacing:-0.528000px;}
.ws15{word-spacing:-0.510000px;}
.wsd7{word-spacing:-0.462000px;}
.ws10f{word-spacing:-0.408000px;}
.wsea{word-spacing:-0.396000px;}
.wsa5{word-spacing:-0.330000px;}
.ws5c{word-spacing:-0.264000px;}
.wse1{word-spacing:-0.255000px;}
.ws68{word-spacing:-0.252000px;}
.wsa8{word-spacing:-0.198000px;}
.ws81{word-spacing:-0.189000px;}
.wsce{word-spacing:-0.132000px;}
.ws7e{word-spacing:-0.102000px;}
.ws3b{word-spacing:-0.066000px;}
.wsb2{word-spacing:-0.051000px;}
.ws101{word-spacing:-0.035700px;}
.ws5{word-spacing:0.000000px;}
.wsdb{word-spacing:0.066000px;}
.ws84{word-spacing:0.126000px;}
.ws91{word-spacing:0.132000px;}
.ws7b{word-spacing:0.153000px;}
.ws73{word-spacing:0.189000px;}
.ws63{word-spacing:0.198000px;}
.ws14{word-spacing:0.204000px;}
.wsfd{word-spacing:0.306000px;}
.wsf7{word-spacing:0.330000px;}
.ws77{word-spacing:0.357000px;}
.ws31{word-spacing:0.396000px;}
.wsb3{word-spacing:0.408000px;}
.wsd{word-spacing:0.462000px;}
.ws7c{word-spacing:0.510000px;}
.ws8{word-spacing:0.528000px;}
.wse2{word-spacing:0.561000px;}
.ws106{word-spacing:0.594000px;}
.wse0{word-spacing:0.612000px;}
.ws6e{word-spacing:0.630000px;}
.ws7{word-spacing:0.660000px;}
.wsf3{word-spacing:0.663000px;}
.ws8d{word-spacing:0.714000px;}
.wsbc{word-spacing:0.726000px;}
.ws35{word-spacing:0.765000px;}
.ws89{word-spacing:0.792000px;}
.ws37{word-spacing:0.816000px;}
.wsbf{word-spacing:0.858000px;}
.ws5f{word-spacing:0.867000px;}
.ws25{word-spacing:0.924000px;}
.ws6a{word-spacing:0.945000px;}
.ws8e{word-spacing:0.969000px;}
.ws87{word-spacing:0.990000px;}
.ws6d{word-spacing:1.008000px;}
.ws9a{word-spacing:1.056000px;}
.ws78{word-spacing:1.071000px;}
.wsdf{word-spacing:1.122000px;}
.wsd5{word-spacing:1.188000px;}
.ws109{word-spacing:1.224000px;}
.wsec{word-spacing:1.254000px;}
.ws128{word-spacing:1.320000px;}
.ws4b{word-spacing:1.377000px;}
.wsc5{word-spacing:1.386000px;}
.wsca{word-spacing:1.428000px;}
.wsab{word-spacing:1.452000px;}
.wsd9{word-spacing:1.518000px;}
.ws8c{word-spacing:1.581000px;}
.ws107{word-spacing:1.584000px;}
.ws48{word-spacing:1.650000px;}
.ws7a{word-spacing:1.683000px;}
.ws6f{word-spacing:1.701000px;}
.ws115{word-spacing:1.716000px;}
.wsc2{word-spacing:1.782000px;}
.ws85{word-spacing:1.827000px;}
.ws30{word-spacing:1.848000px;}
.ws2d{word-spacing:1.914000px;}
.wsb{word-spacing:1.980000px;}
.ws10a{word-spacing:1.989000px;}
.ws27{word-spacing:2.046000px;}
.ws102{word-spacing:2.112000px;}
.ws13{word-spacing:2.142000px;}
.wse9{word-spacing:2.178000px;}
.wsc9{word-spacing:2.193000px;}
.ws47{word-spacing:2.244000px;}
.ws12f{word-spacing:2.268000px;}
.wsf4{word-spacing:2.295000px;}
.ws52{word-spacing:2.376000px;}
.ws88{word-spacing:2.442000px;}
.wsde{word-spacing:2.508000px;}
.ws4a{word-spacing:2.550000px;}
.wsb9{word-spacing:2.574000px;}
.ws40{word-spacing:2.640000px;}
.wsfc{word-spacing:2.652000px;}
.ws92{word-spacing:2.706000px;}
.ws23{word-spacing:2.772000px;}
.ws10e{word-spacing:2.805000px;}
.wsfe{word-spacing:2.838000px;}
.ws4f{word-spacing:2.904000px;}
.wsbd{word-spacing:2.970000px;}
.wsf5{word-spacing:3.009000px;}
.ws55{word-spacing:3.036000px;}
.ws100{word-spacing:3.060000px;}
.wse8{word-spacing:3.102000px;}
.ws61{word-spacing:3.168000px;}
.ws71{word-spacing:3.213000px;}
.wscf{word-spacing:3.234000px;}
.wsf6{word-spacing:3.264000px;}
.ws6b{word-spacing:3.276000px;}
.ws2e{word-spacing:3.366000px;}
.ws7d{word-spacing:3.417000px;}
.ws93{word-spacing:3.432000px;}
.ws42{word-spacing:3.498000px;}
.ws3e{word-spacing:3.564000px;}
.wsff{word-spacing:3.570000px;}
.wsa9{word-spacing:3.630000px;}
.ws112{word-spacing:3.696000px;}
.ws98{word-spacing:3.762000px;}
.ws36{word-spacing:3.825000px;}
.wsef{word-spacing:3.828000px;}
.ws43{word-spacing:3.894000px;}
.ws19{word-spacing:3.927000px;}
.wsd4{word-spacing:3.960000px;}
.wsfb{word-spacing:3.978000px;}
.wseb{word-spacing:4.026000px;}
.ws5e{word-spacing:4.029000px;}
.ws80{word-spacing:4.032000px;}
.ws18{word-spacing:4.080000px;}
.ws58{word-spacing:4.092000px;}
.ws16{word-spacing:4.131000px;}
.ws22{word-spacing:4.158000px;}
.ws56{word-spacing:4.224000px;}
.ws21{word-spacing:4.290000px;}
.ws1a{word-spacing:4.335000px;}
.wsc6{word-spacing:4.356000px;}
.wsd1{word-spacing:4.422000px;}
.ws9c{word-spacing:4.488000px;}
.ws53{word-spacing:4.554000px;}
.ws12e{word-spacing:4.599000px;}
.wsa6{word-spacing:4.620000px;}
.wsf9{word-spacing:4.686000px;}
.ws76{word-spacing:4.692000px;}
.ws17{word-spacing:4.743000px;}
.ws66{word-spacing:4.752000px;}
.ws79{word-spacing:4.794000px;}
.ws9d{word-spacing:4.818000px;}
.wsb4{word-spacing:4.845000px;}
.ws44{word-spacing:4.884000px;}
.ws105{word-spacing:4.950000px;}
.ws59{word-spacing:5.016000px;}
.wsd8{word-spacing:5.082000px;}
.wsfa{word-spacing:5.148000px;}
.ws125{word-spacing:5.214000px;}
.ws2c{word-spacing:5.280000px;}
.ws11f{word-spacing:5.346000px;}
.ws7f{word-spacing:5.355000px;}
.wsed{word-spacing:5.412000px;}
.wse4{word-spacing:5.457000px;}
.wsa3{word-spacing:5.478000px;}
.wsc{word-spacing:5.544000px;}
.ws60{word-spacing:5.610000px;}
.ws49{word-spacing:5.661000px;}
.ws34{word-spacing:5.763000px;}
.wsb5{word-spacing:5.814000px;}
.ws64{word-spacing:5.874000px;}
.wsa{word-spacing:5.940000px;}
.ws1f{word-spacing:6.006000px;}
.ws20{word-spacing:6.072000px;}
.ws104{word-spacing:6.138000px;}
.wsf2{word-spacing:6.171000px;}
.ws51{word-spacing:6.204000px;}
.ws6c{word-spacing:6.237000px;}
.wsc3{word-spacing:6.270000px;}
.ws29{word-spacing:6.336000px;}
.ws46{word-spacing:6.402000px;}
.ws118{word-spacing:6.426000px;}
.wsad{word-spacing:6.534000px;}
.ws11a{word-spacing:6.600000px;}
.wsd2{word-spacing:6.666000px;}
.ws130{word-spacing:6.732000px;}
.ws2b{word-spacing:6.798000px;}
.wse7{word-spacing:6.834000px;}
.ws32{word-spacing:6.864000px;}
.ws9{word-spacing:6.930000px;}
.wsae{word-spacing:6.936000px;}
.wsd3{word-spacing:6.996000px;}
.ws114{word-spacing:7.062000px;}
.ws1d{word-spacing:7.128000px;}
.ws97{word-spacing:7.194000px;}
.wsb1{word-spacing:7.293000px;}
.ws69{word-spacing:7.308000px;}
.ws108{word-spacing:7.392000px;}
.wsa2{word-spacing:7.524000px;}
.ws103{word-spacing:7.590000px;}
.wse6{word-spacing:7.599000px;}
.ws33{word-spacing:7.701000px;}
.ws10{word-spacing:7.722000px;}
.ws24{word-spacing:7.854000px;}
.wsb6{word-spacing:7.920000px;}
.ws123{word-spacing:7.986000px;}
.ws11e{word-spacing:8.052000px;}
.ws72{word-spacing:8.064000px;}
.ws28{word-spacing:8.118000px;}
.wscd{word-spacing:8.184000px;}
.wsdc{word-spacing:8.250000px;}
.ws1e{word-spacing:8.316000px;}
.ws26{word-spacing:8.382000px;}
.wsa4{word-spacing:8.415000px;}
.ws9b{word-spacing:8.448000px;}
.ws12{word-spacing:8.514000px;}
.wsf0{word-spacing:8.580000px;}
.ws8a{word-spacing:8.646000px;}
.ws117{word-spacing:8.670000px;}
.ws11d{word-spacing:8.778000px;}
.ws111{word-spacing:9.108000px;}
.ws9f{word-spacing:9.240000px;}
.ws10b{word-spacing:9.306000px;}
.ws12d{word-spacing:9.450000px;}
.wsc0{word-spacing:9.504000px;}
.ws12b{word-spacing:9.513000px;}
.ws124{word-spacing:9.570000px;}
.ws120{word-spacing:9.636000px;}
.ws11b{word-spacing:9.900000px;}
.ws133{word-spacing:10.230000px;}
.wsbe{word-spacing:10.362000px;}
.wsf8{word-spacing:10.494000px;}
.ws10d{word-spacing:10.758000px;}
.wsc4{word-spacing:11.748000px;}
.ws116{word-spacing:12.672000px;}
.wsc7{word-spacing:13.464000px;}
.ws11c{word-spacing:14.982000px;}
.wsb7{word-spacing:16.698000px;}
._a{margin-left:-7.590000px;}
._4{margin-left:-6.489600px;}
._7{margin-left:-5.023200px;}
._2{margin-left:-3.838800px;}
._1{margin-left:-2.371200px;}
._0{margin-left:-1.300800px;}
._3{width:1.183200px;}
._5{width:2.914800px;}
._9{width:3.999000px;}
._6{width:5.429400px;}
._8{width:6.930000px;}
.fc1{color:rgb(171,171,171);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:29.733000px;}
.fsb{font-size:35.700000px;}
.fs5{font-size:36.000000px;}
.fsa{font-size:38.478000px;}
.fs8{font-size:42.000000px;}
.fs2{font-size:46.200000px;}
.fs7{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs9{font-size:63.000000px;}
.fs1{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:3.525000px;}
.y20{bottom:3.744000px;}
.y1f{bottom:18.144000px;}
.y1e{bottom:24.222320px;}
.y1{bottom:89.453400px;}
.y15a{bottom:127.035000px;}
.y1d{bottom:127.037250px;}
.y167{bottom:130.101900px;}
.ya0{bottom:131.271150px;}
.yec{bottom:131.282400px;}
.y46{bottom:131.284650px;}
.y63{bottom:131.286900px;}
.yd5{bottom:131.289150px;}
.y80{bottom:131.291400px;}
.y159{bottom:140.537250px;}
.y1c{bottom:140.539500px;}
.y9f{bottom:144.773400px;}
.yeb{bottom:144.784650px;}
.yb7{bottom:144.784800px;}
.y45{bottom:144.786900px;}
.y62{bottom:144.789150px;}
.y7f{bottom:144.789300px;}
.yd4{bottom:144.791400px;}
.y166{bottom:150.347400px;}
.y1b{bottom:154.030650px;}
.y158{bottom:154.039500px;}
.y9e{bottom:158.275650px;}
.y17b{bottom:158.282400px;}
.yea{bottom:158.286900px;}
.yb6{bottom:158.287050px;}
.y44{bottom:158.289150px;}
.y61{bottom:158.291400px;}
.y7e{bottom:158.291550px;}
.y1a{bottom:167.532900px;}
.y10f{bottom:170.565900px;}
.y165{bottom:170.592900px;}
.y9d{bottom:171.777900px;}
.y17a{bottom:171.784650px;}
.y146{bottom:171.787050px;}
.ye9{bottom:171.789150px;}
.y60{bottom:171.789300px;}
.y43{bottom:171.791400px;}
.y122{bottom:171.791550px;}
.y7d{bottom:171.791700px;}
.y19{bottom:181.035150px;}
.y9c{bottom:185.280150px;}
.y179{bottom:185.286900px;}
.y145{bottom:185.289300px;}
.y121{bottom:185.289450px;}
.y7c{bottom:185.289600px;}
.ye8{bottom:185.291400px;}
.y42{bottom:185.291550px;}
.y169{bottom:190.712400px;}
.y157{bottom:190.716900px;}
.yd3{bottom:190.730400px;}
.y10e{bottom:190.811400px;}
.y164{bottom:190.838400px;}
.y18{bottom:194.537400px;}
.y9b{bottom:198.782400px;}
.ye7{bottom:198.784800px;}
.y41{bottom:198.784950px;}
.y5f{bottom:198.787200px;}
.y178{bottom:198.789150px;}
.yf7{bottom:198.791550px;}
.y11a{bottom:198.791700px;}
.y7b{bottom:198.791850px;}
.y17{bottom:208.039650px;}
.y168{bottom:210.957900px;}
.y156{bottom:210.962400px;}
.yd2{bottom:210.975900px;}
.y13a{bottom:210.989400px;}
.y10d{bottom:211.056900px;}
.y163{bottom:211.083900px;}
.y119{bottom:212.280600px;}
.y9a{bottom:212.284650px;}
.ye6{bottom:212.287050px;}
.y40{bottom:212.287200px;}
.y12c{bottom:212.287350px;}
.y5e{bottom:212.289450px;}
.y177{bottom:212.291400px;}
.y144{bottom:212.291700px;}
.y120{bottom:212.291850px;}
.y16{bottom:221.535300px;}
.y118{bottom:225.782850px;}
.y11f{bottom:225.785250px;}
.y99{bottom:225.786900px;}
.ye5{bottom:225.789300px;}
.y3f{bottom:225.789450px;}
.y12b{bottom:225.789600px;}
.y5d{bottom:225.791700px;}
.y7a{bottom:231.207900px;}
.yd1{bottom:231.221400px;}
.y130{bottom:231.225900px;}
.yf6{bottom:231.230400px;}
.y139{bottom:231.234900px;}
.y161{bottom:231.239400px;}
.y10c{bottom:231.302400px;}
.y162{bottom:231.329400px;}
.y15{bottom:235.037550px;}
.y117{bottom:239.285100px;}
.y11e{bottom:239.287500px;}
.y98{bottom:239.289150px;}
.y5c{bottom:239.289600px;}
.ye4{bottom:239.291550px;}
.y3e{bottom:239.291700px;}
.y12a{bottom:239.291850px;}
.y14{bottom:248.539800px;}
.yd0{bottom:251.466900px;}
.y12f{bottom:251.471400px;}
.yf5{bottom:251.475900px;}
.y138{bottom:251.480400px;}
.y160{bottom:251.484900px;}
.y79{bottom:251.502900px;}
.y143{bottom:251.507400px;}
.y10b{bottom:251.547900px;}
.y155{bottom:251.574900px;}
.ye3{bottom:252.787200px;}
.y116{bottom:252.787350px;}
.y176{bottom:252.789450px;}
.y11d{bottom:252.789750px;}
.y97{bottom:252.791400px;}
.y5b{bottom:252.791850px;}
.y96{bottom:266.289300px;}
.ye2{bottom:266.289450px;}
.y115{bottom:266.289600px;}
.y175{bottom:266.291700px;}
.y11c{bottom:266.292000px;}
.ycf{bottom:271.712400px;}
.y129{bottom:271.716900px;}
.yf4{bottom:271.721400px;}
.y137{bottom:271.725900px;}
.y15f{bottom:271.730400px;}
.y78{bottom:271.748400px;}
.y142{bottom:271.752900px;}
.y10a{bottom:271.793400px;}
.y154{bottom:271.820400px;}
.y95{bottom:279.791550px;}
.ye1{bottom:279.791700px;}
.y114{bottom:279.791850px;}
.y3d{bottom:291.953400px;}
.yce{bottom:291.957900px;}
.y128{bottom:291.962400px;}
.yf3{bottom:291.966900px;}
.y136{bottom:291.971400px;}
.y15e{bottom:291.975900px;}
.y3b{bottom:291.980400px;}
.y77{bottom:291.993900px;}
.y5a{bottom:291.998400px;}
.y109{bottom:292.038900px;}
.y153{bottom:292.065900px;}
.y94{bottom:293.287200px;}
.y3c{bottom:296.199150px;}
.y93{bottom:306.789450px;}
.y127{bottom:312.207900px;}
.yf2{bottom:312.212400px;}
.y135{bottom:312.216900px;}
.y113{bottom:312.221400px;}
.y3a{bottom:312.225900px;}
.y76{bottom:312.239400px;}
.y59{bottom:312.243900px;}
.y108{bottom:312.284400px;}
.ycd{bottom:312.297900px;}
.y152{bottom:312.311400px;}
.y92{bottom:320.291700px;}
.y13{bottom:332.457900px;}
.y126{bottom:332.462400px;}
.y112{bottom:332.466900px;}
.y39{bottom:332.471400px;}
.y11b{bottom:332.480400px;}
.y75{bottom:332.484900px;}
.y58{bottom:332.489400px;}
.y107{bottom:332.529900px;}
.ycc{bottom:332.543400px;}
.y151{bottom:332.556900px;}
.y91{bottom:352.649400px;}
.y125{bottom:352.707900px;}
.y12{bottom:352.712400px;}
.y38{bottom:352.716900px;}
.yb5{bottom:352.725900px;}
.y74{bottom:352.730400px;}
.y57{bottom:352.734900px;}
.yf1{bottom:352.752900px;}
.y106{bottom:352.775400px;}
.ycb{bottom:352.788900px;}
.y150{bottom:352.802400px;}
.y90{bottom:372.903900px;}
.y11{bottom:372.957900px;}
.y37{bottom:372.962400px;}
.yb4{bottom:372.971400px;}
.y73{bottom:372.975900px;}
.y56{bottom:372.980400px;}
.yf0{bottom:372.998400px;}
.y105{bottom:373.020900px;}
.yca{bottom:373.034400px;}
.y14f{bottom:373.047900px;}
.y8f{bottom:393.158400px;}
.y36{bottom:393.207900px;}
.y111{bottom:393.212400px;}
.yb3{bottom:393.216900px;}
.y10{bottom:393.221400px;}
.y55{bottom:393.225900px;}
.yef{bottom:393.243900px;}
.y15d{bottom:393.257400px;}
.y104{bottom:393.266400px;}
.yc9{bottom:393.279900px;}
.y14e{bottom:393.293400px;}
.y8e{bottom:413.412900px;}
.y35{bottom:413.453400px;}
.y110{bottom:413.457900px;}
.yb2{bottom:413.462400px;}
.yf{bottom:413.466900px;}
.y54{bottom:413.471400px;}
.yee{bottom:413.489400px;}
.y15c{bottom:413.502900px;}
.y103{bottom:413.511900px;}
.yc8{bottom:413.525400px;}
.y14d{bottom:413.538900px;}
.y8d{bottom:433.667400px;}
.yb1{bottom:433.707900px;}
.ye{bottom:433.712400px;}
.y53{bottom:433.716900px;}
.y34{bottom:433.721400px;}
.yed{bottom:433.734900px;}
.y15b{bottom:433.748400px;}
.y102{bottom:433.757400px;}
.yc7{bottom:433.770900px;}
.y14c{bottom:433.784400px;}
.y8c{bottom:453.921900px;}
.y12e{bottom:453.953400px;}
.yd{bottom:453.957900px;}
.y52{bottom:453.962400px;}
.y33{bottom:453.966900px;}
.y174{bottom:453.971400px;}
.ye0{bottom:453.975900px;}
.yb0{bottom:453.980400px;}
.y124{bottom:453.993900px;}
.y101{bottom:454.002900px;}
.yc6{bottom:454.016400px;}
.y14b{bottom:454.029900px;}
.y8b{bottom:474.176400px;}
.y51{bottom:474.207900px;}
.y32{bottom:474.212400px;}
.y173{bottom:474.216900px;}
.y72{bottom:474.221400px;}
.yaf{bottom:474.225900px;}
.yc{bottom:474.230400px;}
.y123{bottom:474.239400px;}
.y100{bottom:474.248400px;}
.yc5{bottom:474.261900px;}
.y14a{bottom:474.275400px;}
.y8a{bottom:494.430900px;}
.y12d{bottom:494.453400px;}
.y31{bottom:494.457900px;}
.y172{bottom:494.462400px;}
.y71{bottom:494.466900px;}
.yae{bottom:494.471400px;}
.yb{bottom:494.475900px;}
.y50{bottom:494.484900px;}
.yff{bottom:494.493900px;}
.y141{bottom:494.502900px;}
.yc4{bottom:494.507400px;}
.y134{bottom:494.516400px;}
.y149{bottom:494.520900px;}
.y89{bottom:514.685400px;}
.y171{bottom:514.707900px;}
.y70{bottom:514.712400px;}
.yad{bottom:514.716900px;}
.ya{bottom:514.721400px;}
.y4f{bottom:514.730400px;}
.yfe{bottom:514.739400px;}
.y30{bottom:514.743900px;}
.y140{bottom:514.748400px;}
.yc3{bottom:514.752900px;}
.y133{bottom:514.761900px;}
.y148{bottom:514.766400px;}
.y88{bottom:534.939900px;}
.y170{bottom:534.953400px;}
.y6f{bottom:534.957900px;}
.yac{bottom:534.962400px;}
.y9{bottom:534.966900px;}
.y4e{bottom:534.975900px;}
.yfd{bottom:534.984900px;}
.y2f{bottom:534.989400px;}
.y13f{bottom:534.993900px;}
.yc2{bottom:534.998400px;}
.y132{bottom:535.007400px;}
.y147{bottom:535.011900px;}
.y87{bottom:555.194400px;}
.yab{bottom:555.207900px;}
.y8{bottom:555.212400px;}
.y4d{bottom:555.221400px;}
.yfc{bottom:555.230400px;}
.y2e{bottom:555.234900px;}
.y13e{bottom:555.239400px;}
.yc1{bottom:555.243900px;}
.y6e{bottom:555.252900px;}
.ydf{bottom:555.257400px;}
.y16f{bottom:575.426400px;}
.y86{bottom:575.448900px;}
.yaa{bottom:575.453400px;}
.y7{bottom:575.457900px;}
.y4c{bottom:575.466900px;}
.yfb{bottom:575.475900px;}
.y2d{bottom:575.480400px;}
.y13d{bottom:575.484900px;}
.yc0{bottom:575.489400px;}
.y6d{bottom:575.498400px;}
.yde{bottom:575.502900px;}
.y16e{bottom:595.680900px;}
.y6{bottom:595.703400px;}
.y4b{bottom:595.712400px;}
.yfa{bottom:595.721400px;}
.y2c{bottom:595.725900px;}
.y13c{bottom:595.730400px;}
.ybf{bottom:595.734900px;}
.y6c{bottom:595.743900px;}
.ydd{bottom:595.748400px;}
.ya9{bottom:615.912900px;}
.y16d{bottom:615.935400px;}
.y4a{bottom:615.957900px;}
.yf9{bottom:615.966900px;}
.y2b{bottom:615.971400px;}
.y13b{bottom:615.975900px;}
.ybe{bottom:615.980400px;}
.y6b{bottom:615.989400px;}
.ydc{bottom:615.993900px;}
.ya8{bottom:636.167400px;}
.y16c{bottom:636.189900px;}
.y49{bottom:636.212400px;}
.y2a{bottom:636.216900px;}
.y85{bottom:636.221400px;}
.ybd{bottom:636.225900px;}
.y6a{bottom:636.234900px;}
.ydb{bottom:636.239400px;}
.ya7{bottom:656.421900px;}
.y16b{bottom:656.444400px;}
.y48{bottom:656.457900px;}
.y29{bottom:656.462400px;}
.y84{bottom:656.466900px;}
.ybc{bottom:656.471400px;}
.y69{bottom:656.480400px;}
.yda{bottom:656.484900px;}
.ya6{bottom:676.676400px;}
.y16a{bottom:676.698900px;}
.yf8{bottom:676.703400px;}
.y28{bottom:676.707900px;}
.y83{bottom:676.712400px;}
.ybb{bottom:676.716900px;}
.y68{bottom:676.725900px;}
.yd9{bottom:676.730400px;}
.ya5{bottom:696.930900px;}
.y5{bottom:696.953400px;}
.y82{bottom:696.957900px;}
.yba{bottom:696.962400px;}
.y27{bottom:696.966900px;}
.y67{bottom:696.971400px;}
.yd8{bottom:696.975900px;}
.ya4{bottom:717.185400px;}
.y4{bottom:717.203400px;}
.yb9{bottom:717.207900px;}
.y26{bottom:717.212400px;}
.y66{bottom:717.216900px;}
.yd7{bottom:717.221400px;}
.ya3{bottom:737.439900px;}
.yb8{bottom:737.453400px;}
.y25{bottom:737.457900px;}
.y65{bottom:737.462400px;}
.yd6{bottom:737.466900px;}
.ya2{bottom:757.694400px;}
.y24{bottom:757.703400px;}
.y64{bottom:757.707900px;}
.y81{bottom:757.712400px;}
.ya1{bottom:777.948900px;}
.y131{bottom:777.953400px;}
.y47{bottom:777.957900px;}
.y3{bottom:796.491600px;}
.y23{bottom:798.203400px;}
.y2{bottom:815.991600px;}
.y21{bottom:876.330750px;}
.ha{height:16.335000px;}
.hc{height:25.302783px;}
.h8{height:30.455985px;}
.h9{height:34.453125px;}
.hf{height:34.476000px;}
.h2{height:41.880000px;}
.h7{height:43.401000px;}
.h5{height:45.954000px;}
.hb{height:50.220000px;}
.hd{height:53.613000px;}
.h10{height:53.721000px;}
.he{height:53.775000px;}
.h4{height:55.242000px;}
.h6{height:56.166000px;}
.h3{height:934.913250px;}
.h1{height:935.250000px;}
.h0{height:935.433750px;}
.w5{width:245.178000px;}
.w4{width:250.989150px;}
.w3{width:513.691500px;}
.w2{width:594.755250px;}
.w0{width:595.275750px;}
.w1{width:595.500000px;}
.x0{left:0.000000px;}
.xa{left:28.152000px;}
.x9{left:40.695368px;}
.xb{left:84.519600px;}
.xc{left:88.771500px;}
.x7{left:93.023550px;}
.x11{left:97.275600px;}
.x15{left:100.771500px;}
.xe{left:103.016400px;}
.xf{left:106.881750px;}
.x14{left:109.281600px;}
.xd{left:111.271500px;}
.x8{left:115.516050px;}
.x12{left:119.775600px;}
.x13{left:124.275600px;}
.x2{left:164.378100px;}
.x16{left:167.400600px;}
.x5{left:195.212100px;}
.x17{left:205.038000px;}
.x4{left:208.877700px;}
.x6{left:234.306900px;}
.x10{left:262.458750px;}
.x3{left:442.948950px;}
.x1{left:470.435250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.000000pt;}
.v2{vertical-align:19.536000pt;}
.ls3{letter-spacing:-3.400000pt;}
.ls9{letter-spacing:-2.720000pt;}
.ls4{letter-spacing:-0.725333pt;}
.lsb{letter-spacing:-0.704000pt;}
.ls7{letter-spacing:-0.544000pt;}
.ls2{letter-spacing:-0.352000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000267pt;}
.ls6{letter-spacing:0.000533pt;}
.ls5{letter-spacing:0.181333pt;}
.lsa{letter-spacing:0.589333pt;}
.ls8{letter-spacing:3.173333pt;}
.ws0{word-spacing:-16.309333pt;}
.ws1b{word-spacing:-14.826667pt;}
.ws2{word-spacing:-14.666667pt;}
.ws1{word-spacing:-11.416533pt;}
.ws4{word-spacing:-11.333333pt;}
.ws119{word-spacing:-10.789333pt;}
.ws1c{word-spacing:-10.378667pt;}
.ws3{word-spacing:-6.607333pt;}
.wsb8{word-spacing:-5.925333pt;}
.ws126{word-spacing:-4.400000pt;}
.wsba{word-spacing:-3.520000pt;}
.wsbb{word-spacing:-3.285333pt;}
.wsaa{word-spacing:-3.109333pt;}
.ws11{word-spacing:-2.933333pt;}
.wsda{word-spacing:-2.874667pt;}
.ws8b{word-spacing:-2.816000pt;}
.ws2f{word-spacing:-2.757333pt;}
.ws113{word-spacing:-2.698667pt;}
.ws67{word-spacing:-2.688000pt;}
.ws65{word-spacing:-2.640000pt;}
.ws3d{word-spacing:-2.581333pt;}
.wsac{word-spacing:-2.522667pt;}
.ws62{word-spacing:-2.464000pt;}
.wsc8{word-spacing:-2.405333pt;}
.wse{word-spacing:-2.346667pt;}
.ws9e{word-spacing:-2.288000pt;}
.ws50{word-spacing:-2.229333pt;}
.wsa7{word-spacing:-2.170667pt;}
.ws38{word-spacing:-2.130667pt;}
.ws2a{word-spacing:-2.112000pt;}
.wscc{word-spacing:-2.085333pt;}
.wsf1{word-spacing:-2.053333pt;}
.ws75{word-spacing:-2.040000pt;}
.wsdd{word-spacing:-1.994667pt;}
.wscb{word-spacing:-1.949333pt;}
.wsc1{word-spacing:-1.936000pt;}
.ws74{word-spacing:-1.904000pt;}
.ws3f{word-spacing:-1.877333pt;}
.ws131{word-spacing:-1.858667pt;}
.ws41{word-spacing:-1.818667pt;}
.ws3a{word-spacing:-1.813333pt;}
.ws5b{word-spacing:-1.760000pt;}
.ws95{word-spacing:-1.701333pt;}
.ws54{word-spacing:-1.642667pt;}
.ws121{word-spacing:-1.632000pt;}
.ws83{word-spacing:-1.624000pt;}
.ws90{word-spacing:-1.586667pt;}
.ws4e{word-spacing:-1.584000pt;}
.ws132{word-spacing:-1.541333pt;}
.ws99{word-spacing:-1.525333pt;}
.wsa1{word-spacing:-1.466667pt;}
.ws96{word-spacing:-1.408000pt;}
.ws122{word-spacing:-1.405333pt;}
.ws86{word-spacing:-1.400000pt;}
.ws4c{word-spacing:-1.360000pt;}
.ws5a{word-spacing:-1.349333pt;}
.wsee{word-spacing:-1.290667pt;}
.ws82{word-spacing:-1.288000pt;}
.ws110{word-spacing:-1.178667pt;}
.ws10c{word-spacing:-1.173333pt;}
.wsaf{word-spacing:-1.133333pt;}
.ws45{word-spacing:-1.114667pt;}
.wsb0{word-spacing:-1.088000pt;}
.ws129{word-spacing:-1.056000pt;}
.ws8f{word-spacing:-1.042667pt;}
.ws12a{word-spacing:-0.997333pt;}
.wsd0{word-spacing:-0.880000pt;}
.wsd6{word-spacing:-0.821333pt;}
.ws4d{word-spacing:-0.816000pt;}
.ws94{word-spacing:-0.762667pt;}
.wse3{word-spacing:-0.725333pt;}
.ws6{word-spacing:-0.720000pt;}
.wsf{word-spacing:-0.704000pt;}
.ws70{word-spacing:-0.672000pt;}
.wsa0{word-spacing:-0.645333pt;}
.wse5{word-spacing:-0.634667pt;}
.ws39{word-spacing:-0.589333pt;}
.ws127{word-spacing:-0.586667pt;}
.ws3c{word-spacing:-0.528000pt;}
.ws12c{word-spacing:-0.504000pt;}
.ws5d{word-spacing:-0.498667pt;}
.ws57{word-spacing:-0.469333pt;}
.ws15{word-spacing:-0.453333pt;}
.wsd7{word-spacing:-0.410667pt;}
.ws10f{word-spacing:-0.362667pt;}
.wsea{word-spacing:-0.352000pt;}
.wsa5{word-spacing:-0.293333pt;}
.ws5c{word-spacing:-0.234667pt;}
.wse1{word-spacing:-0.226667pt;}
.ws68{word-spacing:-0.224000pt;}
.wsa8{word-spacing:-0.176000pt;}
.ws81{word-spacing:-0.168000pt;}
.wsce{word-spacing:-0.117333pt;}
.ws7e{word-spacing:-0.090667pt;}
.ws3b{word-spacing:-0.058667pt;}
.wsb2{word-spacing:-0.045333pt;}
.ws101{word-spacing:-0.031733pt;}
.ws5{word-spacing:0.000000pt;}
.wsdb{word-spacing:0.058667pt;}
.ws84{word-spacing:0.112000pt;}
.ws91{word-spacing:0.117333pt;}
.ws7b{word-spacing:0.136000pt;}
.ws73{word-spacing:0.168000pt;}
.ws63{word-spacing:0.176000pt;}
.ws14{word-spacing:0.181333pt;}
.wsfd{word-spacing:0.272000pt;}
.wsf7{word-spacing:0.293333pt;}
.ws77{word-spacing:0.317333pt;}
.ws31{word-spacing:0.352000pt;}
.wsb3{word-spacing:0.362667pt;}
.wsd{word-spacing:0.410667pt;}
.ws7c{word-spacing:0.453333pt;}
.ws8{word-spacing:0.469333pt;}
.wse2{word-spacing:0.498667pt;}
.ws106{word-spacing:0.528000pt;}
.wse0{word-spacing:0.544000pt;}
.ws6e{word-spacing:0.560000pt;}
.ws7{word-spacing:0.586667pt;}
.wsf3{word-spacing:0.589333pt;}
.ws8d{word-spacing:0.634667pt;}
.wsbc{word-spacing:0.645333pt;}
.ws35{word-spacing:0.680000pt;}
.ws89{word-spacing:0.704000pt;}
.ws37{word-spacing:0.725333pt;}
.wsbf{word-spacing:0.762667pt;}
.ws5f{word-spacing:0.770667pt;}
.ws25{word-spacing:0.821333pt;}
.ws6a{word-spacing:0.840000pt;}
.ws8e{word-spacing:0.861333pt;}
.ws87{word-spacing:0.880000pt;}
.ws6d{word-spacing:0.896000pt;}
.ws9a{word-spacing:0.938667pt;}
.ws78{word-spacing:0.952000pt;}
.wsdf{word-spacing:0.997333pt;}
.wsd5{word-spacing:1.056000pt;}
.ws109{word-spacing:1.088000pt;}
.wsec{word-spacing:1.114667pt;}
.ws128{word-spacing:1.173333pt;}
.ws4b{word-spacing:1.224000pt;}
.wsc5{word-spacing:1.232000pt;}
.wsca{word-spacing:1.269333pt;}
.wsab{word-spacing:1.290667pt;}
.wsd9{word-spacing:1.349333pt;}
.ws8c{word-spacing:1.405333pt;}
.ws107{word-spacing:1.408000pt;}
.ws48{word-spacing:1.466667pt;}
.ws7a{word-spacing:1.496000pt;}
.ws6f{word-spacing:1.512000pt;}
.ws115{word-spacing:1.525333pt;}
.wsc2{word-spacing:1.584000pt;}
.ws85{word-spacing:1.624000pt;}
.ws30{word-spacing:1.642667pt;}
.ws2d{word-spacing:1.701333pt;}
.wsb{word-spacing:1.760000pt;}
.ws10a{word-spacing:1.768000pt;}
.ws27{word-spacing:1.818667pt;}
.ws102{word-spacing:1.877333pt;}
.ws13{word-spacing:1.904000pt;}
.wse9{word-spacing:1.936000pt;}
.wsc9{word-spacing:1.949333pt;}
.ws47{word-spacing:1.994667pt;}
.ws12f{word-spacing:2.016000pt;}
.wsf4{word-spacing:2.040000pt;}
.ws52{word-spacing:2.112000pt;}
.ws88{word-spacing:2.170667pt;}
.wsde{word-spacing:2.229333pt;}
.ws4a{word-spacing:2.266667pt;}
.wsb9{word-spacing:2.288000pt;}
.ws40{word-spacing:2.346667pt;}
.wsfc{word-spacing:2.357333pt;}
.ws92{word-spacing:2.405333pt;}
.ws23{word-spacing:2.464000pt;}
.ws10e{word-spacing:2.493333pt;}
.wsfe{word-spacing:2.522667pt;}
.ws4f{word-spacing:2.581333pt;}
.wsbd{word-spacing:2.640000pt;}
.wsf5{word-spacing:2.674667pt;}
.ws55{word-spacing:2.698667pt;}
.ws100{word-spacing:2.720000pt;}
.wse8{word-spacing:2.757333pt;}
.ws61{word-spacing:2.816000pt;}
.ws71{word-spacing:2.856000pt;}
.wscf{word-spacing:2.874667pt;}
.wsf6{word-spacing:2.901333pt;}
.ws6b{word-spacing:2.912000pt;}
.ws2e{word-spacing:2.992000pt;}
.ws7d{word-spacing:3.037333pt;}
.ws93{word-spacing:3.050667pt;}
.ws42{word-spacing:3.109333pt;}
.ws3e{word-spacing:3.168000pt;}
.wsff{word-spacing:3.173333pt;}
.wsa9{word-spacing:3.226667pt;}
.ws112{word-spacing:3.285333pt;}
.ws98{word-spacing:3.344000pt;}
.ws36{word-spacing:3.400000pt;}
.wsef{word-spacing:3.402667pt;}
.ws43{word-spacing:3.461333pt;}
.ws19{word-spacing:3.490667pt;}
.wsd4{word-spacing:3.520000pt;}
.wsfb{word-spacing:3.536000pt;}
.wseb{word-spacing:3.578667pt;}
.ws5e{word-spacing:3.581333pt;}
.ws80{word-spacing:3.584000pt;}
.ws18{word-spacing:3.626667pt;}
.ws58{word-spacing:3.637333pt;}
.ws16{word-spacing:3.672000pt;}
.ws22{word-spacing:3.696000pt;}
.ws56{word-spacing:3.754667pt;}
.ws21{word-spacing:3.813333pt;}
.ws1a{word-spacing:3.853333pt;}
.wsc6{word-spacing:3.872000pt;}
.wsd1{word-spacing:3.930667pt;}
.ws9c{word-spacing:3.989333pt;}
.ws53{word-spacing:4.048000pt;}
.ws12e{word-spacing:4.088000pt;}
.wsa6{word-spacing:4.106667pt;}
.wsf9{word-spacing:4.165333pt;}
.ws76{word-spacing:4.170667pt;}
.ws17{word-spacing:4.216000pt;}
.ws66{word-spacing:4.224000pt;}
.ws79{word-spacing:4.261333pt;}
.ws9d{word-spacing:4.282667pt;}
.wsb4{word-spacing:4.306667pt;}
.ws44{word-spacing:4.341333pt;}
.ws105{word-spacing:4.400000pt;}
.ws59{word-spacing:4.458667pt;}
.wsd8{word-spacing:4.517333pt;}
.wsfa{word-spacing:4.576000pt;}
.ws125{word-spacing:4.634667pt;}
.ws2c{word-spacing:4.693333pt;}
.ws11f{word-spacing:4.752000pt;}
.ws7f{word-spacing:4.760000pt;}
.wsed{word-spacing:4.810667pt;}
.wse4{word-spacing:4.850667pt;}
.wsa3{word-spacing:4.869333pt;}
.wsc{word-spacing:4.928000pt;}
.ws60{word-spacing:4.986667pt;}
.ws49{word-spacing:5.032000pt;}
.ws34{word-spacing:5.122667pt;}
.wsb5{word-spacing:5.168000pt;}
.ws64{word-spacing:5.221333pt;}
.wsa{word-spacing:5.280000pt;}
.ws1f{word-spacing:5.338667pt;}
.ws20{word-spacing:5.397333pt;}
.ws104{word-spacing:5.456000pt;}
.wsf2{word-spacing:5.485333pt;}
.ws51{word-spacing:5.514667pt;}
.ws6c{word-spacing:5.544000pt;}
.wsc3{word-spacing:5.573333pt;}
.ws29{word-spacing:5.632000pt;}
.ws46{word-spacing:5.690667pt;}
.ws118{word-spacing:5.712000pt;}
.wsad{word-spacing:5.808000pt;}
.ws11a{word-spacing:5.866667pt;}
.wsd2{word-spacing:5.925333pt;}
.ws130{word-spacing:5.984000pt;}
.ws2b{word-spacing:6.042667pt;}
.wse7{word-spacing:6.074667pt;}
.ws32{word-spacing:6.101333pt;}
.ws9{word-spacing:6.160000pt;}
.wsae{word-spacing:6.165333pt;}
.wsd3{word-spacing:6.218667pt;}
.ws114{word-spacing:6.277333pt;}
.ws1d{word-spacing:6.336000pt;}
.ws97{word-spacing:6.394667pt;}
.wsb1{word-spacing:6.482667pt;}
.ws69{word-spacing:6.496000pt;}
.ws108{word-spacing:6.570667pt;}
.wsa2{word-spacing:6.688000pt;}
.ws103{word-spacing:6.746667pt;}
.wse6{word-spacing:6.754667pt;}
.ws33{word-spacing:6.845333pt;}
.ws10{word-spacing:6.864000pt;}
.ws24{word-spacing:6.981333pt;}
.wsb6{word-spacing:7.040000pt;}
.ws123{word-spacing:7.098667pt;}
.ws11e{word-spacing:7.157333pt;}
.ws72{word-spacing:7.168000pt;}
.ws28{word-spacing:7.216000pt;}
.wscd{word-spacing:7.274667pt;}
.wsdc{word-spacing:7.333333pt;}
.ws1e{word-spacing:7.392000pt;}
.ws26{word-spacing:7.450667pt;}
.wsa4{word-spacing:7.480000pt;}
.ws9b{word-spacing:7.509333pt;}
.ws12{word-spacing:7.568000pt;}
.wsf0{word-spacing:7.626667pt;}
.ws8a{word-spacing:7.685333pt;}
.ws117{word-spacing:7.706667pt;}
.ws11d{word-spacing:7.802667pt;}
.ws111{word-spacing:8.096000pt;}
.ws9f{word-spacing:8.213333pt;}
.ws10b{word-spacing:8.272000pt;}
.ws12d{word-spacing:8.400000pt;}
.wsc0{word-spacing:8.448000pt;}
.ws12b{word-spacing:8.456000pt;}
.ws124{word-spacing:8.506667pt;}
.ws120{word-spacing:8.565333pt;}
.ws11b{word-spacing:8.800000pt;}
.ws133{word-spacing:9.093333pt;}
.wsbe{word-spacing:9.210667pt;}
.wsf8{word-spacing:9.328000pt;}
.ws10d{word-spacing:9.562667pt;}
.wsc4{word-spacing:10.442667pt;}
.ws116{word-spacing:11.264000pt;}
.wsc7{word-spacing:11.968000pt;}
.ws11c{word-spacing:13.317333pt;}
.wsb7{word-spacing:14.842667pt;}
._a{margin-left:-6.746667pt;}
._4{margin-left:-5.768533pt;}
._7{margin-left:-4.465067pt;}
._2{margin-left:-3.412267pt;}
._1{margin-left:-2.107733pt;}
._0{margin-left:-1.156267pt;}
._3{width:1.051733pt;}
._5{width:2.590933pt;}
._9{width:3.554667pt;}
._6{width:4.826133pt;}
._8{width:6.160000pt;}
.fs4{font-size:26.429333pt;}
.fsb{font-size:31.733333pt;}
.fs5{font-size:32.000000pt;}
.fsa{font-size:34.202667pt;}
.fs8{font-size:37.333333pt;}
.fs2{font-size:41.066667pt;}
.fs7{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs9{font-size:56.000000pt;}
.fs1{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:3.133333pt;}
.y20{bottom:3.328000pt;}
.y1f{bottom:16.128000pt;}
.y1e{bottom:21.530951pt;}
.y1{bottom:79.514133pt;}
.y15a{bottom:112.920000pt;}
.y1d{bottom:112.922000pt;}
.y167{bottom:115.646133pt;}
.ya0{bottom:116.685467pt;}
.yec{bottom:116.695467pt;}
.y46{bottom:116.697467pt;}
.y63{bottom:116.699467pt;}
.yd5{bottom:116.701467pt;}
.y80{bottom:116.703467pt;}
.y159{bottom:124.922000pt;}
.y1c{bottom:124.924000pt;}
.y9f{bottom:128.687467pt;}
.yeb{bottom:128.697467pt;}
.yb7{bottom:128.697600pt;}
.y45{bottom:128.699467pt;}
.y62{bottom:128.701467pt;}
.y7f{bottom:128.701600pt;}
.yd4{bottom:128.703467pt;}
.y166{bottom:133.642133pt;}
.y1b{bottom:136.916133pt;}
.y158{bottom:136.924000pt;}
.y9e{bottom:140.689467pt;}
.y17b{bottom:140.695467pt;}
.yea{bottom:140.699467pt;}
.yb6{bottom:140.699600pt;}
.y44{bottom:140.701467pt;}
.y61{bottom:140.703467pt;}
.y7e{bottom:140.703600pt;}
.y1a{bottom:148.918133pt;}
.y10f{bottom:151.614133pt;}
.y165{bottom:151.638133pt;}
.y9d{bottom:152.691467pt;}
.y17a{bottom:152.697467pt;}
.y146{bottom:152.699600pt;}
.ye9{bottom:152.701467pt;}
.y60{bottom:152.701600pt;}
.y43{bottom:152.703467pt;}
.y122{bottom:152.703600pt;}
.y7d{bottom:152.703733pt;}
.y19{bottom:160.920133pt;}
.y9c{bottom:164.693467pt;}
.y179{bottom:164.699467pt;}
.y145{bottom:164.701600pt;}
.y121{bottom:164.701733pt;}
.y7c{bottom:164.701867pt;}
.ye8{bottom:164.703467pt;}
.y42{bottom:164.703600pt;}
.y169{bottom:169.522133pt;}
.y157{bottom:169.526133pt;}
.yd3{bottom:169.538133pt;}
.y10e{bottom:169.610133pt;}
.y164{bottom:169.634133pt;}
.y18{bottom:172.922133pt;}
.y9b{bottom:176.695467pt;}
.ye7{bottom:176.697600pt;}
.y41{bottom:176.697733pt;}
.y5f{bottom:176.699733pt;}
.y178{bottom:176.701467pt;}
.yf7{bottom:176.703600pt;}
.y11a{bottom:176.703733pt;}
.y7b{bottom:176.703867pt;}
.y17{bottom:184.924133pt;}
.y168{bottom:187.518133pt;}
.y156{bottom:187.522133pt;}
.yd2{bottom:187.534133pt;}
.y13a{bottom:187.546133pt;}
.y10d{bottom:187.606133pt;}
.y163{bottom:187.630133pt;}
.y119{bottom:188.693867pt;}
.y9a{bottom:188.697467pt;}
.ye6{bottom:188.699600pt;}
.y40{bottom:188.699733pt;}
.y12c{bottom:188.699867pt;}
.y5e{bottom:188.701733pt;}
.y177{bottom:188.703467pt;}
.y144{bottom:188.703733pt;}
.y120{bottom:188.703867pt;}
.y16{bottom:196.920267pt;}
.y118{bottom:200.695867pt;}
.y11f{bottom:200.698000pt;}
.y99{bottom:200.699467pt;}
.ye5{bottom:200.701600pt;}
.y3f{bottom:200.701733pt;}
.y12b{bottom:200.701867pt;}
.y5d{bottom:200.703733pt;}
.y7a{bottom:205.518133pt;}
.yd1{bottom:205.530133pt;}
.y130{bottom:205.534133pt;}
.yf6{bottom:205.538133pt;}
.y139{bottom:205.542133pt;}
.y161{bottom:205.546133pt;}
.y10c{bottom:205.602133pt;}
.y162{bottom:205.626133pt;}
.y15{bottom:208.922267pt;}
.y117{bottom:212.697867pt;}
.y11e{bottom:212.700000pt;}
.y98{bottom:212.701467pt;}
.y5c{bottom:212.701867pt;}
.ye4{bottom:212.703600pt;}
.y3e{bottom:212.703733pt;}
.y12a{bottom:212.703867pt;}
.y14{bottom:220.924267pt;}
.yd0{bottom:223.526133pt;}
.y12f{bottom:223.530133pt;}
.yf5{bottom:223.534133pt;}
.y138{bottom:223.538133pt;}
.y160{bottom:223.542133pt;}
.y79{bottom:223.558133pt;}
.y143{bottom:223.562133pt;}
.y10b{bottom:223.598133pt;}
.y155{bottom:223.622133pt;}
.ye3{bottom:224.699733pt;}
.y116{bottom:224.699867pt;}
.y176{bottom:224.701733pt;}
.y11d{bottom:224.702000pt;}
.y97{bottom:224.703467pt;}
.y5b{bottom:224.703867pt;}
.y96{bottom:236.701600pt;}
.ye2{bottom:236.701733pt;}
.y115{bottom:236.701867pt;}
.y175{bottom:236.703733pt;}
.y11c{bottom:236.704000pt;}
.ycf{bottom:241.522133pt;}
.y129{bottom:241.526133pt;}
.yf4{bottom:241.530133pt;}
.y137{bottom:241.534133pt;}
.y15f{bottom:241.538133pt;}
.y78{bottom:241.554133pt;}
.y142{bottom:241.558133pt;}
.y10a{bottom:241.594133pt;}
.y154{bottom:241.618133pt;}
.y95{bottom:248.703600pt;}
.ye1{bottom:248.703733pt;}
.y114{bottom:248.703867pt;}
.y3d{bottom:259.514133pt;}
.yce{bottom:259.518133pt;}
.y128{bottom:259.522133pt;}
.yf3{bottom:259.526133pt;}
.y136{bottom:259.530133pt;}
.y15e{bottom:259.534133pt;}
.y3b{bottom:259.538133pt;}
.y77{bottom:259.550133pt;}
.y5a{bottom:259.554133pt;}
.y109{bottom:259.590133pt;}
.y153{bottom:259.614133pt;}
.y94{bottom:260.699733pt;}
.y3c{bottom:263.288133pt;}
.y93{bottom:272.701733pt;}
.y127{bottom:277.518133pt;}
.yf2{bottom:277.522133pt;}
.y135{bottom:277.526133pt;}
.y113{bottom:277.530133pt;}
.y3a{bottom:277.534133pt;}
.y76{bottom:277.546133pt;}
.y59{bottom:277.550133pt;}
.y108{bottom:277.586133pt;}
.ycd{bottom:277.598133pt;}
.y152{bottom:277.610133pt;}
.y92{bottom:284.703733pt;}
.y13{bottom:295.518133pt;}
.y126{bottom:295.522133pt;}
.y112{bottom:295.526133pt;}
.y39{bottom:295.530133pt;}
.y11b{bottom:295.538133pt;}
.y75{bottom:295.542133pt;}
.y58{bottom:295.546133pt;}
.y107{bottom:295.582133pt;}
.ycc{bottom:295.594133pt;}
.y151{bottom:295.606133pt;}
.y91{bottom:313.466133pt;}
.y125{bottom:313.518133pt;}
.y12{bottom:313.522133pt;}
.y38{bottom:313.526133pt;}
.yb5{bottom:313.534133pt;}
.y74{bottom:313.538133pt;}
.y57{bottom:313.542133pt;}
.yf1{bottom:313.558133pt;}
.y106{bottom:313.578133pt;}
.ycb{bottom:313.590133pt;}
.y150{bottom:313.602133pt;}
.y90{bottom:331.470133pt;}
.y11{bottom:331.518133pt;}
.y37{bottom:331.522133pt;}
.yb4{bottom:331.530133pt;}
.y73{bottom:331.534133pt;}
.y56{bottom:331.538133pt;}
.yf0{bottom:331.554133pt;}
.y105{bottom:331.574133pt;}
.yca{bottom:331.586133pt;}
.y14f{bottom:331.598133pt;}
.y8f{bottom:349.474133pt;}
.y36{bottom:349.518133pt;}
.y111{bottom:349.522133pt;}
.yb3{bottom:349.526133pt;}
.y10{bottom:349.530133pt;}
.y55{bottom:349.534133pt;}
.yef{bottom:349.550133pt;}
.y15d{bottom:349.562133pt;}
.y104{bottom:349.570133pt;}
.yc9{bottom:349.582133pt;}
.y14e{bottom:349.594133pt;}
.y8e{bottom:367.478133pt;}
.y35{bottom:367.514133pt;}
.y110{bottom:367.518133pt;}
.yb2{bottom:367.522133pt;}
.yf{bottom:367.526133pt;}
.y54{bottom:367.530133pt;}
.yee{bottom:367.546133pt;}
.y15c{bottom:367.558133pt;}
.y103{bottom:367.566133pt;}
.yc8{bottom:367.578133pt;}
.y14d{bottom:367.590133pt;}
.y8d{bottom:385.482133pt;}
.yb1{bottom:385.518133pt;}
.ye{bottom:385.522133pt;}
.y53{bottom:385.526133pt;}
.y34{bottom:385.530133pt;}
.yed{bottom:385.542133pt;}
.y15b{bottom:385.554133pt;}
.y102{bottom:385.562133pt;}
.yc7{bottom:385.574133pt;}
.y14c{bottom:385.586133pt;}
.y8c{bottom:403.486133pt;}
.y12e{bottom:403.514133pt;}
.yd{bottom:403.518133pt;}
.y52{bottom:403.522133pt;}
.y33{bottom:403.526133pt;}
.y174{bottom:403.530133pt;}
.ye0{bottom:403.534133pt;}
.yb0{bottom:403.538133pt;}
.y124{bottom:403.550133pt;}
.y101{bottom:403.558133pt;}
.yc6{bottom:403.570133pt;}
.y14b{bottom:403.582133pt;}
.y8b{bottom:421.490133pt;}
.y51{bottom:421.518133pt;}
.y32{bottom:421.522133pt;}
.y173{bottom:421.526133pt;}
.y72{bottom:421.530133pt;}
.yaf{bottom:421.534133pt;}
.yc{bottom:421.538133pt;}
.y123{bottom:421.546133pt;}
.y100{bottom:421.554133pt;}
.yc5{bottom:421.566133pt;}
.y14a{bottom:421.578133pt;}
.y8a{bottom:439.494133pt;}
.y12d{bottom:439.514133pt;}
.y31{bottom:439.518133pt;}
.y172{bottom:439.522133pt;}
.y71{bottom:439.526133pt;}
.yae{bottom:439.530133pt;}
.yb{bottom:439.534133pt;}
.y50{bottom:439.542133pt;}
.yff{bottom:439.550133pt;}
.y141{bottom:439.558133pt;}
.yc4{bottom:439.562133pt;}
.y134{bottom:439.570133pt;}
.y149{bottom:439.574133pt;}
.y89{bottom:457.498133pt;}
.y171{bottom:457.518133pt;}
.y70{bottom:457.522133pt;}
.yad{bottom:457.526133pt;}
.ya{bottom:457.530133pt;}
.y4f{bottom:457.538133pt;}
.yfe{bottom:457.546133pt;}
.y30{bottom:457.550133pt;}
.y140{bottom:457.554133pt;}
.yc3{bottom:457.558133pt;}
.y133{bottom:457.566133pt;}
.y148{bottom:457.570133pt;}
.y88{bottom:475.502133pt;}
.y170{bottom:475.514133pt;}
.y6f{bottom:475.518133pt;}
.yac{bottom:475.522133pt;}
.y9{bottom:475.526133pt;}
.y4e{bottom:475.534133pt;}
.yfd{bottom:475.542133pt;}
.y2f{bottom:475.546133pt;}
.y13f{bottom:475.550133pt;}
.yc2{bottom:475.554133pt;}
.y132{bottom:475.562133pt;}
.y147{bottom:475.566133pt;}
.y87{bottom:493.506133pt;}
.yab{bottom:493.518133pt;}
.y8{bottom:493.522133pt;}
.y4d{bottom:493.530133pt;}
.yfc{bottom:493.538133pt;}
.y2e{bottom:493.542133pt;}
.y13e{bottom:493.546133pt;}
.yc1{bottom:493.550133pt;}
.y6e{bottom:493.558133pt;}
.ydf{bottom:493.562133pt;}
.y16f{bottom:511.490133pt;}
.y86{bottom:511.510133pt;}
.yaa{bottom:511.514133pt;}
.y7{bottom:511.518133pt;}
.y4c{bottom:511.526133pt;}
.yfb{bottom:511.534133pt;}
.y2d{bottom:511.538133pt;}
.y13d{bottom:511.542133pt;}
.yc0{bottom:511.546133pt;}
.y6d{bottom:511.554133pt;}
.yde{bottom:511.558133pt;}
.y16e{bottom:529.494133pt;}
.y6{bottom:529.514133pt;}
.y4b{bottom:529.522133pt;}
.yfa{bottom:529.530133pt;}
.y2c{bottom:529.534133pt;}
.y13c{bottom:529.538133pt;}
.ybf{bottom:529.542133pt;}
.y6c{bottom:529.550133pt;}
.ydd{bottom:529.554133pt;}
.ya9{bottom:547.478133pt;}
.y16d{bottom:547.498133pt;}
.y4a{bottom:547.518133pt;}
.yf9{bottom:547.526133pt;}
.y2b{bottom:547.530133pt;}
.y13b{bottom:547.534133pt;}
.ybe{bottom:547.538133pt;}
.y6b{bottom:547.546133pt;}
.ydc{bottom:547.550133pt;}
.ya8{bottom:565.482133pt;}
.y16c{bottom:565.502133pt;}
.y49{bottom:565.522133pt;}
.y2a{bottom:565.526133pt;}
.y85{bottom:565.530133pt;}
.ybd{bottom:565.534133pt;}
.y6a{bottom:565.542133pt;}
.ydb{bottom:565.546133pt;}
.ya7{bottom:583.486133pt;}
.y16b{bottom:583.506133pt;}
.y48{bottom:583.518133pt;}
.y29{bottom:583.522133pt;}
.y84{bottom:583.526133pt;}
.ybc{bottom:583.530133pt;}
.y69{bottom:583.538133pt;}
.yda{bottom:583.542133pt;}
.ya6{bottom:601.490133pt;}
.y16a{bottom:601.510133pt;}
.yf8{bottom:601.514133pt;}
.y28{bottom:601.518133pt;}
.y83{bottom:601.522133pt;}
.ybb{bottom:601.526133pt;}
.y68{bottom:601.534133pt;}
.yd9{bottom:601.538133pt;}
.ya5{bottom:619.494133pt;}
.y5{bottom:619.514133pt;}
.y82{bottom:619.518133pt;}
.yba{bottom:619.522133pt;}
.y27{bottom:619.526133pt;}
.y67{bottom:619.530133pt;}
.yd8{bottom:619.534133pt;}
.ya4{bottom:637.498133pt;}
.y4{bottom:637.514133pt;}
.yb9{bottom:637.518133pt;}
.y26{bottom:637.522133pt;}
.y66{bottom:637.526133pt;}
.yd7{bottom:637.530133pt;}
.ya3{bottom:655.502133pt;}
.yb8{bottom:655.514133pt;}
.y25{bottom:655.518133pt;}
.y65{bottom:655.522133pt;}
.yd6{bottom:655.526133pt;}
.ya2{bottom:673.506133pt;}
.y24{bottom:673.514133pt;}
.y64{bottom:673.518133pt;}
.y81{bottom:673.522133pt;}
.ya1{bottom:691.510133pt;}
.y131{bottom:691.514133pt;}
.y47{bottom:691.518133pt;}
.y3{bottom:707.992533pt;}
.y23{bottom:709.514133pt;}
.y2{bottom:725.325867pt;}
.y21{bottom:778.960667pt;}
.ha{height:14.520000pt;}
.hc{height:22.491363pt;}
.h8{height:27.071987pt;}
.h9{height:30.625000pt;}
.hf{height:30.645333pt;}
.h2{height:37.226667pt;}
.h7{height:38.578667pt;}
.h5{height:40.848000pt;}
.hb{height:44.640000pt;}
.hd{height:47.656000pt;}
.h10{height:47.752000pt;}
.he{height:47.800000pt;}
.h4{height:49.104000pt;}
.h6{height:49.925333pt;}
.h3{height:831.034000pt;}
.h1{height:831.333333pt;}
.h0{height:831.496667pt;}
.w5{width:217.936000pt;}
.w4{width:223.101467pt;}
.w3{width:456.614667pt;}
.w2{width:528.671333pt;}
.w0{width:529.134000pt;}
.w1{width:529.333333pt;}
.x0{left:0.000000pt;}
.xa{left:25.024000pt;}
.x9{left:36.173661pt;}
.xb{left:75.128533pt;}
.xc{left:78.908000pt;}
.x7{left:82.687600pt;}
.x11{left:86.467200pt;}
.x15{left:89.574667pt;}
.xe{left:91.570133pt;}
.xf{left:95.006000pt;}
.x14{left:97.139200pt;}
.xd{left:98.908000pt;}
.x8{left:102.680933pt;}
.x12{left:106.467200pt;}
.x13{left:110.467200pt;}
.x2{left:146.113867pt;}
.x16{left:148.800533pt;}
.x5{left:173.521867pt;}
.x17{left:182.256000pt;}
.x4{left:185.669067pt;}
.x6{left:208.272800pt;}
.x10{left:233.296667pt;}
.x3{left:393.732400pt;}
.x1{left:418.164667pt;}
}




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