
    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_e049d9ae340a6d64eb53ebee.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.987793;font-style:normal;font-weight: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_59cf7eca4b180e3fb59fa6dc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.107910;font-style:normal;font-weight: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_4858ede8d559fad72678e71e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.717285;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_89b48d1c8d888415771bef03.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c76424fe6e9c57f0c226ca96.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;font-style:normal;font-weight: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_7d09cc5bfd759431d7d8a60d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2b7c6fa17a9467a992c34511.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;font-style:normal;font-weight: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_d531aa1cfe65b38a3d5721a8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_55f01e7c2c34b5354b010cae.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_deadbf14336dd6a5dd562ff3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.453000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_cfb927cf6c4c1338c9a4f48f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.737000;font-style:normal;font-weight: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_15c32b4b0358f22d7e21c40d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.760000;font-style:normal;font-weight: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_afe2292b1b2ca9c279b187fe.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.820000;font-style:normal;font-weight: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_0494d11acd72924c91268cca.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.738000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_9fc1bafddd5c2a746383a747.woff2')format("woff");}.fff{font-family:fff;line-height:0.451000;font-style:normal;font-weight: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_ff4e6f34a205e06ec45d6caf.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.234000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_29e2890a04605380aa370194.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.040000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_9f23a83902740ce1f38b8437.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.887000;font-style:normal;font-weight: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_8b2f9c7c68c5f1dfd9563f7f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.688000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_29e2890a04605380aa370194.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.040000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_c1e1cb0e8902932dee26ce95.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.451000;font-style:normal;font-weight: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_f87a78e6c9a09be39946dfca.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.580000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_1d2b0f40a62f7587eb853727.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.451000;font-style:normal;font-weight: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_0eb066fe7e9334e36bf0d05b.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.688000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_c727d68ce016adaffc73794c.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.688000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_0f38450ecbbfe0280552951e.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.773000;font-style:normal;font-weight: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_f87a78e6c9a09be39946dfca.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.580000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_1d2b0f40a62f7587eb853727.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.451000;font-style:normal;font-weight: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_73e15aa57a3ff292c3edae17.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_db8ca3eae7cf478f0875b226.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_94ed26c6bbb383ce4b6e9e57.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.704200;font-style:normal;font-weight: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_fc3fa0f33d0dc1ccd39ff4ef.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_72e09ad32b9c12767514d88a.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_0b93c0c6e7a52509f6e2ec61.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_5cd56111bf6509cf6445abac.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_906de414c8f7e63fad5a501e.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.106000;font-style:normal;font-weight: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_3321bbe10e81424c5f6676d8.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_73e15aa57a3ff292c3edae17.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_db8ca3eae7cf478f0875b226.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_94ed26c6bbb383ce4b6e9e57.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.704200;font-style:normal;font-weight: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_fc3fa0f33d0dc1ccd39ff4ef.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_9dd00b7a255340a0fd71b6cc.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_0b93c0c6e7a52509f6e2ec61.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_5cd56111bf6509cf6445abac.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_906de414c8f7e63fad5a501e.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.106000;font-style:normal;font-weight: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_3321bbe10e81424c5f6676d8.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_73548a5e88ef654aeb3aa1b5.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.698000;font-style:normal;font-weight: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_0f38450ecbbfe0280552951e.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.773000;font-style:normal;font-weight: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_f87a78e6c9a09be39946dfca.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.580000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_1d2b0f40a62f7587eb853727.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.451000;font-style:normal;font-weight: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_c2f4da8363b382d9b09e803a.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.580000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_1d2b0f40a62f7587eb853727.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.451000;font-style:normal;font-weight: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_ff82c8bc0691088803949d2a.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.698000;font-style:normal;font-weight: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_73e15aa57a3ff292c3edae17.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_db8ca3eae7cf478f0875b226.woff2')format("woff");}.ff37{font-family:ff37;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:ff38;src:url('chunks/assets/font_94ed26c6bbb383ce4b6e9e57.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.704200;font-style:normal;font-weight: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_fc3fa0f33d0dc1ccd39ff4ef.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_dd3de0a19e49ecc803240b77.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_0b93c0c6e7a52509f6e2ec61.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_5cd56111bf6509cf6445abac.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_906de414c8f7e63fad5a501e.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.106000;font-style:normal;font-weight: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_3321bbe10e81424c5f6676d8.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_73e15aa57a3ff292c3edae17.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_db8ca3eae7cf478f0875b226.woff2')format("woff");}.ff40{font-family:ff40;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:ff41;src:url('chunks/assets/font_94ed26c6bbb383ce4b6e9e57.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.704200;font-style:normal;font-weight: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_fc3fa0f33d0dc1ccd39ff4ef.woff2')format("woff");}.ff42{font-family:ff42;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url('chunks/assets/font_1f8b68f2c460b8fbae726fb8.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_0b93c0c6e7a52509f6e2ec61.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_5cd56111bf6509cf6445abac.woff2')format("woff");}.ff45{font-family:ff45;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46;src:url('chunks/assets/font_906de414c8f7e63fad5a501e.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.106000;font-style:normal;font-weight: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_3321bbe10e81424c5f6676d8.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48;src:url('chunks/assets/font_930c17d0177a035728f5e0cc.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.887000;font-style:normal;font-weight: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_6b6fb4cfa24d471e48469f7d.woff2')format("woff");}.ff49{font-family:ff49;line-height:0.688000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a;src:url('chunks/assets/font_d8cd084e744b06ec550d593d.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.040000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b;src:url('chunks/assets/font_1d2b0f40a62f7587eb853727.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:0.451000;font-style:normal;font-weight: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_930c17d0177a035728f5e0cc.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:0.887000;font-style:normal;font-weight: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_6b6fb4cfa24d471e48469f7d.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:0.688000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e;src:url('chunks/assets/font_d8cd084e744b06ec550d593d.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:0.040000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4f;src:url('chunks/assets/font_1d2b0f40a62f7587eb853727.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:0.451000;font-style:normal;font-weight: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_9c6fee134ac67ed25c46a189.woff2')format("woff");}.ff50{font-family:ff50;line-height:0.876000;font-style:normal;font-weight: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_9a485d387f521c4d98dcc935.woff2')format("woff");}.ff51{font-family:ff51;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:ff52;src:url('chunks/assets/font_0421a5c06b533ea2c7e84e09.woff2')format("woff");}.ff52{font-family:ff52;line-height:0.453000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff53;src:url('chunks/assets/font_f1f7f009a5a43d0d3bbd4d8a.woff2')format("woff");}.ff53{font-family:ff53;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff54;src:url('chunks/assets/font_625cae33b0f13643703a5094.woff2')format("woff");}.ff54{font-family:ff54;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff55;src:url('chunks/assets/font_906de414c8f7e63fad5a501e.woff2')format("woff");}.ff55{font-family:ff55;line-height:0.106000;font-style:normal;font-weight: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_0b93c0c6e7a52509f6e2ec61.woff2')format("woff");}.ff56{font-family:ff56;line-height:0.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff57;src:url('chunks/assets/font_d66c28fa1c684dc603694a12.woff2')format("woff");}.ff57{font-family:ff57;line-height:0.876000;font-style:normal;font-weight: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_9a485d387f521c4d98dcc935.woff2')format("woff");}.ff58{font-family:ff58;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:ff59;src:url('chunks/assets/font_0421a5c06b533ea2c7e84e09.woff2')format("woff");}.ff59{font-family:ff59;line-height:0.453000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5a;src:url('chunks/assets/font_5f3fc68b5d19cd239d01ada2.woff2')format("woff");}.ff5a{font-family:ff5a;line-height:0.782000;font-style:normal;font-weight: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_f8064cb81860ff497f3b7fe6.woff2')format("woff");}.ff5b{font-family:ff5b;line-height:0.699000;font-style:normal;font-weight: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_cb94305f47a0f4838ad47037.woff2')format("woff");}.ff5c{font-family:ff5c;line-height:2.399000;font-style:normal;font-weight: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_239f38e519aa16cf0bdbab18.woff2')format("woff");}.ff5d{font-family:ff5d;line-height:0.773000;font-style:normal;font-weight: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_83a3b6bf37ee8d6719bc2871.woff2')format("woff");}.ff5e{font-family:ff5e;line-height:0.773000;font-style:normal;font-weight: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_0269b38f11cee3d44fe329b7.woff2')format("woff");}.ff5f{font-family:ff5f;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff60;src:url('chunks/assets/font_db8ca3eae7cf478f0875b226.woff2')format("woff");}.ff60{font-family:ff60;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:ff61;src:url('chunks/assets/font_94ed26c6bbb383ce4b6e9e57.woff2')format("woff");}.ff61{font-family:ff61;line-height:0.704200;font-style:normal;font-weight: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_0100e670af68207bb8884990.woff2')format("woff");}.ff62{font-family:ff62;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff63;src:url('chunks/assets/font_7bb84320bd245276e35bbbd7.woff2')format("woff");}.ff63{font-family:ff63;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff64;src:url('chunks/assets/font_0b93c0c6e7a52509f6e2ec61.woff2')format("woff");}.ff64{font-family:ff64;line-height:0.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff65;src:url('chunks/assets/font_5cd56111bf6509cf6445abac.woff2')format("woff");}.ff65{font-family:ff65;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff66;src:url('chunks/assets/font_906de414c8f7e63fad5a501e.woff2')format("woff");}.ff66{font-family:ff66;line-height:0.106000;font-style:normal;font-weight: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_3321bbe10e81424c5f6676d8.woff2')format("woff");}.ff67{font-family:ff67;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff68;src:url('chunks/assets/font_0269b38f11cee3d44fe329b7.woff2')format("woff");}.ff68{font-family:ff68;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff69;src:url('chunks/assets/font_db8ca3eae7cf478f0875b226.woff2')format("woff");}.ff69{font-family:ff69;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:ff6a;src:url('chunks/assets/font_94ed26c6bbb383ce4b6e9e57.woff2')format("woff");}.ff6a{font-family:ff6a;line-height:0.704200;font-style:normal;font-weight: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_1cbe418870315ef8d36b1e99.woff2')format("woff");}.ff6b{font-family:ff6b;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6c;src:url('chunks/assets/font_7bb84320bd245276e35bbbd7.woff2')format("woff");}.ff6c{font-family:ff6c;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6d;src:url('chunks/assets/font_0b93c0c6e7a52509f6e2ec61.woff2')format("woff");}.ff6d{font-family:ff6d;line-height:0.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6e;src:url('chunks/assets/font_5cd56111bf6509cf6445abac.woff2')format("woff");}.ff6e{font-family:ff6e;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6f;src:url('chunks/assets/font_906de414c8f7e63fad5a501e.woff2')format("woff");}.ff6f{font-family:ff6f;line-height:0.106000;font-style:normal;font-weight: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_3321bbe10e81424c5f6676d8.woff2')format("woff");}.ff70{font-family:ff70;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff71;src:url('chunks/assets/font_0269b38f11cee3d44fe329b7.woff2')format("woff");}.ff71{font-family:ff71;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff72;src:url('chunks/assets/font_db8ca3eae7cf478f0875b226.woff2')format("woff");}.ff72{font-family:ff72;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:ff73;src:url('chunks/assets/font_94ed26c6bbb383ce4b6e9e57.woff2')format("woff");}.ff73{font-family:ff73;line-height:0.704200;font-style:normal;font-weight: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_5693dba6c6680d959d217746.woff2')format("woff");}.ff74{font-family:ff74;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff75;src:url('chunks/assets/font_7bb84320bd245276e35bbbd7.woff2')format("woff");}.ff75{font-family:ff75;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff76;src:url('chunks/assets/font_0b93c0c6e7a52509f6e2ec61.woff2')format("woff");}.ff76{font-family:ff76;line-height:0.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff77;src:url('chunks/assets/font_5cd56111bf6509cf6445abac.woff2')format("woff");}.ff77{font-family:ff77;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff78;src:url('chunks/assets/font_906de414c8f7e63fad5a501e.woff2')format("woff");}.ff78{font-family:ff78;line-height:0.106000;font-style:normal;font-weight: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_3321bbe10e81424c5f6676d8.woff2')format("woff");}.ff79{font-family:ff79;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7a;src:url('chunks/assets/font_6821a4244a7694c456a238f7.woff2')format("woff");}.ff7a{font-family:ff7a;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7b;src:url('chunks/assets/font_9860d974fd43a3126dba3ef8.woff2')format("woff");}.ff7b{font-family:ff7b;line-height:0.453000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7c;src:url('chunks/assets/font_66ea88114aeae55dcc0db21a.woff2')format("woff");}.ff7c{font-family:ff7c;line-height:0.451000;font-style:normal;font-weight: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_6821a4244a7694c456a238f7.woff2')format("woff");}.ff7d{font-family:ff7d;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7e;src:url('chunks/assets/font_9860d974fd43a3126dba3ef8.woff2')format("woff");}.ff7e{font-family:ff7e;line-height:0.453000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7f;src:url('chunks/assets/font_66ea88114aeae55dcc0db21a.woff2')format("woff");}.ff7f{font-family:ff7f;line-height:0.451000;font-style:normal;font-weight: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_6821a4244a7694c456a238f7.woff2')format("woff");}.ff80{font-family:ff80;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff81;src:url('chunks/assets/font_9860d974fd43a3126dba3ef8.woff2')format("woff");}.ff81{font-family:ff81;line-height:0.453000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff82;src:url('chunks/assets/font_66ea88114aeae55dcc0db21a.woff2')format("woff");}.ff82{font-family:ff82;line-height:0.451000;font-style:normal;font-weight: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_64830c35c387c991f44b2a3d.woff2')format("woff");}.ff83{font-family:ff83;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff84;src:url('chunks/assets/font_9860d974fd43a3126dba3ef8.woff2')format("woff");}.ff84{font-family:ff84;line-height:0.453000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff85;src:url('chunks/assets/font_66ea88114aeae55dcc0db21a.woff2')format("woff");}.ff85{font-family:ff85;line-height:0.451000;font-style:normal;font-weight: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_64830c35c387c991f44b2a3d.woff2')format("woff");}.ff86{font-family:ff86;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff87;src:url('chunks/assets/font_9860d974fd43a3126dba3ef8.woff2')format("woff");}.ff87{font-family:ff87;line-height:0.453000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff88;src:url('chunks/assets/font_66ea88114aeae55dcc0db21a.woff2')format("woff");}.ff88{font-family:ff88;line-height:0.451000;font-style:normal;font-weight: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_64830c35c387c991f44b2a3d.woff2')format("woff");}.ff89{font-family:ff89;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8a;src:url('chunks/assets/font_9860d974fd43a3126dba3ef8.woff2')format("woff");}.ff8a{font-family:ff8a;line-height:0.453000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8b;src:url('chunks/assets/font_66ea88114aeae55dcc0db21a.woff2')format("woff");}.ff8b{font-family:ff8b;line-height:0.451000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.117925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117925,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.153542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153542,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.164118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164118,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.168388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168388,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.168467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168467,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.169296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169296,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.172740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172740,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.177007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177007,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.184227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184227,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.186336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186336,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.187327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187327,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.195140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195140,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.196299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196299,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.199116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199116,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.203321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203321,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.215710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215710,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.217131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217131,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.220639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220639,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.228559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228559,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.230637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230637,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.236351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236351,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.244662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244662,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v21{vertical-align:-45.090492px;}
.v25{vertical-align:-42.754043px;}
.v1c{vertical-align:-39.341069px;}
.v2c{vertical-align:-36.740416px;}
.v15{vertical-align:-35.114723px;}
.vd{vertical-align:-29.368162px;}
.v1e{vertical-align:-25.422787px;}
.v2{vertical-align:-24.157636px;}
.v19{vertical-align:-22.181164px;}
.v4{vertical-align:-20.343673px;}
.v22{vertical-align:-17.769416px;}
.v6{vertical-align:-16.558270px;}
.v1d{vertical-align:-15.503663px;}
.v1{vertical-align:-14.494582px;}
.v18{vertical-align:-13.303356px;}
.vc{vertical-align:-11.387383px;}
.v5{vertical-align:-9.930974px;}
.v10{vertical-align:-7.916132px;}
.v7{vertical-align:-6.620649px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:14.504284px;}
.vb{vertical-align:15.952706px;}
.vf{vertical-align:17.382527px;}
.v14{vertical-align:19.074223px;}
.v17{vertical-align:20.783821px;}
.v2e{vertical-align:22.095309px;}
.v8{vertical-align:24.029765px;}
.v9{vertical-align:27.340090px;}
.v11{vertical-align:28.731745px;}
.v2d{vertical-align:30.029496px;}
.v12{vertical-align:32.689811px;}
.ve{vertical-align:33.940797px;}
.v1a{vertical-align:36.624299px;}
.v16{vertical-align:40.582100px;}
.v1f{vertical-align:41.976686px;}
.v2a{vertical-align:43.494449px;}
.va{vertical-align:45.141393px;}
.v23{vertical-align:52.111101px;}
.v13{vertical-align:53.974352px;}
.v2b{vertical-align:56.473182px;}
.v1b{vertical-align:60.470609px;}
.v20{vertical-align:69.307968px;}
.v24{vertical-align:70.382530px;}
.v27{vertical-align:73.097376px;}
.v29{vertical-align:91.067704px;}
.v28{vertical-align:134.560950px;}
.v26{vertical-align:168.961980px;}
.ls65{letter-spacing:-0.024000px;}
.ls0{letter-spacing:0.000000px;}
.ls42{letter-spacing:0.004653px;}
.ls40{letter-spacing:0.005399px;}
.ls60{letter-spacing:0.005564px;}
.lsf7{letter-spacing:0.006185px;}
.ls7e{letter-spacing:0.006233px;}
.lsea{letter-spacing:0.006404px;}
.ls5e{letter-spacing:0.006455px;}
.ls23{letter-spacing:0.007161px;}
.lsfe{letter-spacing:0.007176px;}
.ls7b{letter-spacing:0.007232px;}
.lsad{letter-spacing:0.007276px;}
.lsa1{letter-spacing:0.007773px;}
.ls9a{letter-spacing:0.008289px;}
.lsba{letter-spacing:0.008420px;}
.ls4a{letter-spacing:0.012046px;}
.ls64{letter-spacing:0.014403px;}
.lsd6{letter-spacing:0.015070px;}
.ls87{letter-spacing:0.016137px;}
.ls3b{letter-spacing:0.017849px;}
.lsc{letter-spacing:0.019128px;}
.ls67{letter-spacing:0.019867px;}
.lse4{letter-spacing:0.021171px;}
.ls58{letter-spacing:0.021342px;}
.ls4b{letter-spacing:0.023178px;}
.ls104{letter-spacing:0.023197px;}
.ls106{letter-spacing:0.023565px;}
.lsfa{letter-spacing:0.023725px;}
.ls69{letter-spacing:0.023755px;}
.ls77{letter-spacing:0.023910px;}
.ls103{letter-spacing:0.024854px;}
.ls108{letter-spacing:0.026408px;}
.ls9c{letter-spacing:0.026614px;}
.ls113{letter-spacing:0.026703px;}
.ls117{letter-spacing:0.026825px;}
.ls11b{letter-spacing:0.026929px;}
.ls95{letter-spacing:0.027405px;}
.lsde{letter-spacing:0.027492px;}
.ls63{letter-spacing:0.027714px;}
.ls10b{letter-spacing:0.028826px;}
.ls10f{letter-spacing:0.028869px;}
.lsc2{letter-spacing:0.028997px;}
.ls9e{letter-spacing:0.030503px;}
.lsd0{letter-spacing:0.030646px;}
.lsf1{letter-spacing:0.030809px;}
.ls7d{letter-spacing:0.031049px;}
.lsf{letter-spacing:0.035436px;}
.ls8a{letter-spacing:0.035587px;}
.ls33{letter-spacing:0.035698px;}
.lsa9{letter-spacing:0.036246px;}
.ls37{letter-spacing:0.036570px;}
.ls31{letter-spacing:0.039560px;}
.lsd7{letter-spacing:0.041175px;}
.lsc5{letter-spacing:0.041942px;}
.ls35{letter-spacing:0.042346px;}
.ls112{letter-spacing:0.042439px;}
.ls116{letter-spacing:0.042632px;}
.ls4e{letter-spacing:0.042684px;}
.lse1{letter-spacing:0.043377px;}
.ls52{letter-spacing:0.043726px;}
.lsca{letter-spacing:0.044660px;}
.lscc{letter-spacing:0.045751px;}
.ls10a{letter-spacing:0.045813px;}
.ls10e{letter-spacing:0.045881px;}
.lsdc{letter-spacing:0.046923px;}
.ls4c{letter-spacing:0.047301px;}
.ls6f{letter-spacing:0.047821px;}
.ls11a{letter-spacing:0.047826px;}
.lsc6{letter-spacing:0.047933px;}
.lsf4{letter-spacing:0.048610px;}
.ls3e{letter-spacing:0.048922px;}
.ls73{letter-spacing:0.048989px;}
.lsc8{letter-spacing:0.049491px;}
.ls2f{letter-spacing:0.049693px;}
.lsdf{letter-spacing:0.050226px;}
.ls50{letter-spacing:0.050631px;}
.ls6a{letter-spacing:0.051154px;}
.ls12{letter-spacing:0.051309px;}
.lsef{letter-spacing:0.052584px;}
.ls6d{letter-spacing:0.052994px;}
.lsd9{letter-spacing:0.054067px;}
.ls26{letter-spacing:0.054784px;}
.ls8b{letter-spacing:0.054810px;}
.ls48{letter-spacing:0.055570px;}
.ls8d{letter-spacing:0.056149px;}
.lsf2{letter-spacing:0.056286px;}
.ls71{letter-spacing:0.056725px;}
.ls13{letter-spacing:0.057740px;}
.lsee{letter-spacing:0.058027px;}
.lsa4{letter-spacing:0.059468px;}
.ls66{letter-spacing:0.059601px;}
.ls88{letter-spacing:0.060739px;}
.lsd3{letter-spacing:0.061203px;}
.lsa5{letter-spacing:0.061864px;}
.ls94{letter-spacing:0.065015px;}
.ls7a{letter-spacing:0.065536px;}
.lse7{letter-spacing:0.065912px;}
.lsac{letter-spacing:0.066219px;}
.ls5b{letter-spacing:0.066443px;}
.ls105{letter-spacing:0.070694px;}
.ls68{letter-spacing:0.071264px;}
.lsb0{letter-spacing:0.071585px;}
.lsfd{letter-spacing:0.073864px;}
.ls84{letter-spacing:0.074440px;}
.ls102{letter-spacing:0.074563px;}
.ls99{letter-spacing:0.075113px;}
.ls29{letter-spacing:0.075919px;}
.ls107{letter-spacing:0.079223px;}
.ls9b{letter-spacing:0.079841px;}
.ls9d{letter-spacing:0.091509px;}
.lsc3{letter-spacing:0.093204px;}
.ls3{letter-spacing:0.276000px;}
.ls49{letter-spacing:1.129388px;}
.ls36{letter-spacing:1.136036px;}
.lse8{letter-spacing:1.339579px;}
.lse0{letter-spacing:1.347463px;}
.ls5c{letter-spacing:1.350379px;}
.ls51{letter-spacing:1.358327px;}
.lscb{letter-spacing:1.412897px;}
.lsd4{letter-spacing:1.421213px;}
.lsff{letter-spacing:1.501203px;}
.lsf3{letter-spacing:1.510038px;}
.ls85{letter-spacing:1.512909px;}
.ls72{letter-spacing:1.521813px;}
.ls8c{letter-spacing:1.734010px;}
.ls96{letter-spacing:1.744215px;}
.ls114{letter-spacing:2.509161px;}
.ls118{letter-spacing:2.515571px;}
.ls11c{letter-spacing:2.525356px;}
.ls110{letter-spacing:2.707291px;}
.ls10c{letter-spacing:2.708661px;}
.ls34{letter-spacing:3.326768px;}
.ls4f{letter-spacing:3.977728px;}
.lscd{letter-spacing:4.161883px;}
.ls70{letter-spacing:4.456480px;}
.ls14{letter-spacing:4.855528px;}
.lsa6{letter-spacing:5.202353px;}
.ls5{letter-spacing:5.748000px;}
.lsb1{letter-spacing:6.007837px;}
.ls41{letter-spacing:6.637093px;}
.lsaf{letter-spacing:6.942760px;}
.ls5f{letter-spacing:7.935794px;}
.lsa{letter-spacing:7.992000px;}
.lsbc{letter-spacing:8.033764px;}
.lsb7{letter-spacing:8.045792px;}
.ls7c{letter-spacing:8.890932px;}
.ls43{letter-spacing:11.083337px;}
.ls38{letter-spacing:11.089985px;}
.ls101{letter-spacing:11.515851px;}
.lse3{letter-spacing:13.153939px;}
.ls61{letter-spacing:13.252049px;}
.ls53{letter-spacing:13.259997px;}
.lscf{letter-spacing:13.865574px;}
.lsdb{letter-spacing:13.873890px;}
.lsc1{letter-spacing:14.394811px;}
.ls46{letter-spacing:14.714991px;}
.ls3a{letter-spacing:14.726557px;}
.lsf5{letter-spacing:14.732164px;}
.ls45{letter-spacing:14.733204px;}
.lsf9{letter-spacing:14.741000px;}
.ls44{letter-spacing:14.765907px;}
.ls39{letter-spacing:14.772555px;}
.ls7f{letter-spacing:14.847042px;}
.ls74{letter-spacing:14.855947px;}
.ls1e{letter-spacing:16.176495px;}
.ls19{letter-spacing:16.186197px;}
.ls1a{letter-spacing:16.218838px;}
.lsc4{letter-spacing:16.656851px;}
.ls3f{letter-spacing:16.777478px;}
.ls3c{letter-spacing:16.784126px;}
.ls93{letter-spacing:17.016834px;}
.ls8e{letter-spacing:17.027040px;}
.ls22{letter-spacing:17.066690px;}
.ls24{letter-spacing:17.101107px;}
.lsae{letter-spacing:17.331965px;}
.lsab{letter-spacing:17.342360px;}
.lse2{letter-spacing:17.513987px;}
.lsec{letter-spacing:17.521871px;}
.ls56{letter-spacing:17.594319px;}
.ls55{letter-spacing:17.608149px;}
.ls62{letter-spacing:17.616097px;}
.ls57{letter-spacing:17.655199px;}
.ls54{letter-spacing:17.663147px;}
.ls47{letter-spacing:18.045159px;}
.ls3d{letter-spacing:18.051806px;}
.lsce{letter-spacing:18.472575px;}
.lsda{letter-spacing:18.480891px;}
.lsa0{letter-spacing:18.525961px;}
.lsa2{letter-spacing:18.563321px;}
.lsf6{letter-spacing:19.627100px;}
.lsf8{letter-spacing:19.635936px;}
.ls82{letter-spacing:19.711940px;}
.ls76{letter-spacing:19.727434px;}
.ls81{letter-spacing:19.736339px;}
.ls80{letter-spacing:19.780147px;}
.ls75{letter-spacing:19.789052px;}
.lse5{letter-spacing:19.899931px;}
.lse9{letter-spacing:19.907816px;}
.lsbb{letter-spacing:20.055557px;}
.ls59{letter-spacing:20.060381px;}
.lsb6{letter-spacing:20.067586px;}
.ls5d{letter-spacing:20.068328px;}
.lsd5{letter-spacing:20.989108px;}
.lsd1{letter-spacing:20.997424px;}
.lse6{letter-spacing:21.403539px;}
.lsed{letter-spacing:21.411423px;}
.ls1c{letter-spacing:21.548416px;}
.ls17{letter-spacing:21.558118px;}
.ls5a{letter-spacing:21.576112px;}
.lsfb{letter-spacing:22.300915px;}
.ls100{letter-spacing:22.309751px;}
.ls78{letter-spacing:22.474812px;}
.ls86{letter-spacing:22.483717px;}
.lsd2{letter-spacing:22.575013px;}
.ls91{letter-spacing:22.592703px;}
.ls90{letter-spacing:22.620667px;}
.ls8f{letter-spacing:22.670878px;}
.ls92{letter-spacing:22.681084px;}
.ls25{letter-spacing:22.730832px;}
.lsaa{letter-spacing:23.090715px;}
.lsfc{letter-spacing:23.985938px;}
.ls83{letter-spacing:24.172974px;}
.ls79{letter-spacing:24.181879px;}
.lsa3{letter-spacing:24.674410px;}
.ls32{letter-spacing:25.030001px;}
.ls2e{letter-spacing:25.749996px;}
.ls97{letter-spacing:25.759350px;}
.ls16{letter-spacing:26.352370px;}
.ls1b{letter-spacing:26.362072px;}
.ls6c{letter-spacing:26.507155px;}
.lsb5{letter-spacing:26.719253px;}
.lsb9{letter-spacing:26.731281px;}
.ls28{letter-spacing:26.947629px;}
.ls98{letter-spacing:27.715892px;}
.ls2d{letter-spacing:28.387813px;}
.ls2a{letter-spacing:28.413521px;}
.lsa8{letter-spacing:28.846347px;}
.lseb{letter-spacing:29.688328px;}
.lsdd{letter-spacing:29.696213px;}
.ls4d{letter-spacing:29.927700px;}
.ls18{letter-spacing:29.944293px;}
.ls1d{letter-spacing:29.953994px;}
.ls20{letter-spacing:30.237363px;}
.ls30{letter-spacing:30.344606px;}
.lsc0{letter-spacing:30.842991px;}
.ls6b{letter-spacing:31.236865px;}
.lsc9{letter-spacing:31.313251px;}
.lsd8{letter-spacing:31.321567px;}
.ls21{letter-spacing:31.583426px;}
.lsf0{letter-spacing:33.270311px;}
.lsbe{letter-spacing:33.311744px;}
.ls15{letter-spacing:33.334661px;}
.lsc7{letter-spacing:33.337669px;}
.lsbf{letter-spacing:33.379341px;}
.lsb3{letter-spacing:33.391369px;}
.ls2c{letter-spacing:33.453092px;}
.ls6e{letter-spacing:33.529744px;}
.ls9f{letter-spacing:34.283936px;}
.lsa7{letter-spacing:35.715721px;}
.ls1f{letter-spacing:37.762481px;}
.ls89{letter-spacing:38.429883px;}
.lsb2{letter-spacing:41.328187px;}
.lse{letter-spacing:44.316774px;}
.lsb{letter-spacing:47.895888px;}
.ls11d{letter-spacing:51.475008px;}
.ls10{letter-spacing:53.964684px;}
.ls6{letter-spacing:55.054128px;}
.lsb4{letter-spacing:59.913723px;}
.ls8{letter-spacing:65.200962px;}
.lsd{letter-spacing:67.372932px;}
.ls9{letter-spacing:69.178962px;}
.ls7{letter-spacing:70.927520px;}
.ls2{letter-spacing:76.654188px;}
.ls11{letter-spacing:79.517430px;}
.ls4{letter-spacing:79.530048px;}
.lsb8{letter-spacing:79.980707px;}
.lsbd{letter-spacing:79.992736px;}
.ls2b{letter-spacing:82.380716px;}
.ls27{letter-spacing:112.874609px;}
.ls1{letter-spacing:152.370188px;}
.ls119{letter-spacing:1064.832849px;}
.ls10d{letter-spacing:1087.845211px;}
.ls109{letter-spacing:1126.452295px;}
.ls115{letter-spacing:1131.403247px;}
.ls111{letter-spacing:1203.549150px;}
.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;}
}
.ws50{word-spacing:-33.457502px;}
.ws3f{word-spacing:-30.953619px;}
.ws1{word-spacing:-29.356783px;}
.ws11{word-spacing:-28.515434px;}
.wsa{word-spacing:-27.044285px;}
.ws41{word-spacing:-18.673949px;}
.ws13{word-spacing:-17.203021px;}
.wsb{word-spacing:-16.315494px;}
.ws44{word-spacing:-14.498371px;}
.ws59{word-spacing:-11.598698px;}
.ws4e{word-spacing:-0.125825px;}
.ws4d{word-spacing:-0.119833px;}
.ws4{word-spacing:-0.115200px;}
.ws6{word-spacing:-0.114000px;}
.ws40{word-spacing:-0.110628px;}
.ws49{word-spacing:-0.108737px;}
.ws5{word-spacing:-0.108000px;}
.ws39{word-spacing:-0.106760px;}
.ws3{word-spacing:-0.105600px;}
.ws48{word-spacing:-0.103560px;}
.ws82{word-spacing:-0.102000px;}
.ws12{word-spacing:-0.101914px;}
.ws3a{word-spacing:-0.101677px;}
.ws9{word-spacing:-0.096656px;}
.ws2{word-spacing:-0.096000px;}
.ws2e{word-spacing:-0.093148px;}
.ws64{word-spacing:-0.092427px;}
.ws7{word-spacing:-0.091200px;}
.ws2f{word-spacing:-0.088712px;}
.ws65{word-spacing:-0.088026px;}
.ws53{word-spacing:-0.086990px;}
.ws15{word-spacing:-0.086400px;}
.ws4a{word-spacing:-0.083883px;}
.ws23{word-spacing:-0.083141px;}
.ws56{word-spacing:-0.082848px;}
.ws5c{word-spacing:-0.082476px;}
.ws24{word-spacing:-0.079182px;}
.ws5e{word-spacing:-0.078549px;}
.ws43{word-spacing:-0.072492px;}
.ws18{word-spacing:-0.069535px;}
.ws8{word-spacing:-0.067659px;}
.ws19{word-spacing:-0.066224px;}
.ws34{word-spacing:-0.062098px;}
.ws54{word-spacing:-0.057993px;}
.ws29{word-spacing:-0.055427px;}
.ws1e{word-spacing:-0.046357px;}
.ws0{word-spacing:0.000000px;}
.ws1c{word-spacing:7.886844px;}
.ws20{word-spacing:7.893491px;}
.ws60{word-spacing:9.362547px;}
.ws27{word-spacing:9.438035px;}
.ws57{word-spacing:9.874985px;}
.ws68{word-spacing:10.492165px;}
.ws32{word-spacing:10.565076px;}
.ws36{word-spacing:10.573981px;}
.ws5b{word-spacing:10.839716px;}
.ws52{word-spacing:11.433003px;}
.ws3d{word-spacing:12.109089px;}
.ws63{word-spacing:12.147559px;}
.ws1b{word-spacing:14.509629px;}
.ws1a{word-spacing:14.646773px;}
.ws1f{word-spacing:14.653420px;}
.ws17{word-spacing:14.655321px;}
.ws5f{word-spacing:17.210013px;}
.ws26{word-spacing:17.348773px;}
.ws62{word-spacing:17.372680px;}
.ws5d{word-spacing:17.378200px;}
.ws25{word-spacing:17.512753px;}
.ws2a{word-spacing:17.520701px;}
.ws22{word-spacing:17.522974px;}
.ws55{word-spacing:18.151963px;}
.ws10{word-spacing:18.708542px;}
.wsd{word-spacing:18.762770px;}
.ws67{word-spacing:19.286450px;}
.ws31{word-spacing:19.436841px;}
.ws66{word-spacing:19.477580px;}
.ws30{word-spacing:19.620557px;}
.ws35{word-spacing:19.629461px;}
.ws2d{word-spacing:19.632008px;}
.ws7f{word-spacing:21.018944px;}
.ws71{word-spacing:21.758089px;}
.ws3c{word-spacing:22.277400px;}
.ws7c{word-spacing:22.297133px;}
.ws5a{word-spacing:22.454746px;}
.ws3b{word-spacing:22.498171px;}
.ws6a{word-spacing:22.499835px;}
.ws38{word-spacing:22.501089px;}
.ws14{word-spacing:22.537263px;}
.ws47{word-spacing:22.689951px;}
.ws46{word-spacing:22.914809px;}
.ws78{word-spacing:23.684036px;}
.ws42{word-spacing:24.464290px;}
.ws16{word-spacing:25.586477px;}
.ws21{word-spacing:25.914153px;}
.ws1d{word-spacing:25.920801px;}
.ws51{word-spacing:26.503677px;}
.ws4b{word-spacing:26.512096px;}
.ws4c{word-spacing:26.515705px;}
.wsc{word-spacing:26.850973px;}
.ws45{word-spacing:28.068428px;}
.ws2c{word-spacing:28.207542px;}
.wsf{word-spacing:30.001452px;}
.ws61{word-spacing:30.744915px;}
.ws2b{word-spacing:30.984857px;}
.ws28{word-spacing:30.992805px;}
.ws58{word-spacing:32.427667px;}
.ws69{word-spacing:34.454378px;}
.ws37{word-spacing:34.714140px;}
.ws33{word-spacing:34.723044px;}
.ws3e{word-spacing:39.797576px;}
.ws4f{word-spacing:39.827944px;}
.wse{word-spacing:44.245220px;}
.ws7b{word-spacing:59.561336px;}
.ws7e{word-spacing:59.832402px;}
.ws81{word-spacing:60.065118px;}
.ws6f{word-spacing:64.296979px;}
.ws77{word-spacing:64.392416px;}
.ws6c{word-spacing:73.252438px;}
.ws6e{word-spacing:91.109731px;}
.ws75{word-spacing:91.244966px;}
.ws7a{word-spacing:98.209141px;}
.ws70{word-spacing:100.065190px;}
.ws73{word-spacing:100.213718px;}
.ws76{word-spacing:115.090031px;}
.ws6d{word-spacing:117.922483px;}
.ws74{word-spacing:118.097517px;}
.ws72{word-spacing:228.515204px;}
.ws7d{word-spacing:237.283631px;}
.ws80{word-spacing:238.206535px;}
.ws6b{word-spacing:254.989270px;}
.ws79{word-spacing:274.806763px;}
._43{margin-left:-35.312041px;}
._31{margin-left:-33.546440px;}
._3d{margin-left:-32.440525px;}
._2e{margin-left:-30.874229px;}
._2d{margin-left:-28.442297px;}
._2c{margin-left:-26.965219px;}
._a{margin-left:-19.180800px;}
._f{margin-left:-16.790400px;}
._6{margin-left:-14.606400px;}
._10{margin-left:-13.266000px;}
._4{margin-left:-12.012000px;}
._5{margin-left:-10.989600px;}
._2a{margin-left:-9.921600px;}
._0{margin-left:-7.968000px;}
._8{margin-left:-6.260400px;}
._1{margin-left:-4.972800px;}
._2{margin-left:-3.840000px;}
._3{margin-left:-2.073600px;}
._20{margin-left:-1.007328px;}
._9{width:1.227600px;}
._7{width:2.808000px;}
._b{width:4.773463px;}
._c{width:6.266674px;}
._2b{width:7.314350px;}
._1f{width:8.353872px;}
._16{width:9.504000px;}
._23{width:11.676000px;}
._11{width:13.114663px;}
._22{width:14.440546px;}
._21{width:15.747072px;}
._1b{width:17.052000px;}
._1c{width:18.096000px;}
._1a{width:19.666128px;}
._19{width:21.253872px;}
._1e{width:23.245872px;}
._28{width:24.340512px;}
._13{width:25.368000px;}
._29{width:26.380512px;}
._27{width:27.589872px;}
._1d{width:30.312000px;}
._25{width:32.286978px;}
._50{width:34.684992px;}
._51{width:35.804040px;}
._17{width:36.948000px;}
._18{width:37.965600px;}
._24{width:39.465600px;}
._2f{width:41.048859px;}
._30{width:42.158222px;}
._53{width:48.411000px;}
._52{width:49.821000px;}
._d{width:54.699463px;}
._15{width:56.827200px;}
._14{width:58.033872px;}
._12{width:59.760000px;}
._42{width:64.832798px;}
._e{width:68.514821px;}
._26{width:73.497600px;}
._48{width:84.488674px;}
._4e{width:85.523911px;}
._36{width:91.206257px;}
._4a{width:97.652772px;}
._49{width:98.656224px;}
._35{width:100.622895px;}
._3a{width:106.071246px;}
._40{width:115.767836px;}
._37{width:118.019009px;}
._46{width:123.136479px;}
._4f{width:124.137917px;}
._39{width:132.883998px;}
._34{width:141.839457px;}
._3c{width:144.831760px;}
._38{width:159.696750px;}
._47{width:161.744544px;}
._3b{width:168.652209px;}
._41{width:214.398143px;}
._4d{width:225.632436px;}
._3f{width:241.887774px;}
._3e{width:255.421460px;}
._4c{width:256.745379px;}
._33{width:268.395646px;}
._4b{width:276.107324px;}
._32{width:281.855647px;}
._45{width:287.325075px;}
._44{width:299.694360px;}
.fc6{color:rgb(254,184,10);}
.fc4{color:rgb(56,145,167);}
.fc3{color:transparent;}
.fc5{color:rgb(181,167,136);}
.fc1{color:rgb(87,35,20);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(127,127,127);}
.fs0{font-size:21.599998px;}
.fs19{font-size:33.111887px;}
.fs3e{font-size:34.772990px;}
.fs41{font-size:34.931244px;}
.fs44{font-size:35.067108px;}
.fs38{font-size:37.537745px;}
.fs3b{font-size:37.593463px;}
.fs32{font-size:39.274333px;}
.fs1c{font-size:39.590994px;}
.fs2f{font-size:41.423923px;}
.fs35{font-size:44.012894px;}
.fs21{font-size:44.356095px;}
.fs18{font-size:46.356508px;}
.fsf{font-size:48.327885px;}
.fs3d{font-size:49.675843px;}
.fs40{font-size:49.901920px;}
.fs43{font-size:50.096012px;}
.fs24{font-size:50.838430px;}
.fs29{font-size:51.779896px;}
.fs37{font-size:53.625504px;}
.fs3a{font-size:53.705101px;}
.fs31{font-size:54.983908px;}
.fs1b{font-size:55.427232px;}
.fs2e{font-size:57.993326px;}
.fs2c{font-size:59.916730px;}
.fs34{font-size:61.617875px;}
.fs20{font-size:62.098356px;}
.fs42{font-size:63.310071px;}
.fs16{font-size:64.710434px;}
.fs39{font-size:65.536414px;}
.fs3{font-size:66.000000px;}
.fs17{font-size:66.223773px;}
.fs1e{font-size:66.613194px;}
.fs3f{font-size:67.160039px;}
.fse{font-size:67.658845px;}
.fs36{font-size:67.770587px;}
.fs23{font-size:71.173599px;}
.fs3c{font-size:71.337456px;}
.fs13{font-size:71.339338px;}
.fs6{font-size:72.000000px;}
.fs28{font-size:72.491647px;}
.fs26{font-size:77.439139px;}
.fs30{font-size:78.548665px;}
.fs1a{font-size:79.181988px;}
.fs2d{font-size:82.847846px;}
.fs2b{font-size:83.883182px;}
.fs14{font-size:86.399940px;}
.fs33{font-size:88.025788px;}
.fs1f{font-size:88.712191px;}
.fsc{font-size:91.200000px;}
.fs15{font-size:92.443742px;}
.fs11{font-size:94.898131px;}
.fs1d{font-size:95.161978px;}
.fs7{font-size:96.000000px;}
.fsd{font-size:96.655770px;}
.fs22{font-size:101.676861px;}
.fs12{font-size:101.913632px;}
.fs45{font-size:102.000000px;}
.fs27{font-size:103.559792px;}
.fs4{font-size:105.599940px;}
.fsa{font-size:108.000000px;}
.fs25{font-size:110.627659px;}
.fsb{font-size:114.000000px;}
.fs8{font-size:115.200000px;}
.fs2a{font-size:119.833460px;}
.fs2{font-size:120.000000px;}
.fs5{font-size:132.000000px;}
.fs10{font-size:135.569148px;}
.fs9{font-size:144.000000px;}
.fs1{font-size:192.000000px;}
.fs46{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.yd5{bottom:0.382874px;}
.y10f{bottom:0.435708px;}
.yff{bottom:0.459715px;}
.y11e{bottom:0.487810px;}
.ye6{bottom:0.621205px;}
.y97{bottom:1.979329px;}
.yb3{bottom:2.396121px;}
.ycb{bottom:2.717619px;}
.y77{bottom:3.966407px;}
.ybd{bottom:4.082664px;}
.y75{bottom:4.372754px;}
.ye0{bottom:5.246804px;}
.y6f{bottom:5.246894px;}
.yde{bottom:5.695095px;}
.y6b{bottom:6.181955px;}
.ye5{bottom:7.525988px;}
.y6d{bottom:7.891981px;}
.y221{bottom:8.012576px;}
.y19d{bottom:8.392905px;}
.y1f5{bottom:8.618566px;}
.y174{bottom:9.164029px;}
.y14a{bottom:9.164059px;}
.y1c9{bottom:9.217022px;}
.y6a{bottom:9.805843px;}
.y9a{bottom:10.536153px;}
.yea{bottom:11.352000px;}
.yb6{bottom:12.627086px;}
.y9c{bottom:13.409421px;}
.yd8{bottom:13.520362px;}
.y112{bottom:13.992855px;}
.yce{bottom:14.179965px;}
.y103{bottom:14.758881px;}
.y121{bottom:15.680666px;}
.yb8{bottom:16.062576px;}
.yda{bottom:17.929292px;}
.y15{bottom:18.000000px;}
.yd0{bottom:18.028945px;}
.y101{bottom:19.848203px;}
.y94{bottom:21.892793px;}
.y63{bottom:22.854847px;}
.y220{bottom:23.041229px;}
.y1f4{bottom:23.588991px;}
.y10c{bottom:24.055261px;}
.y1c8{bottom:24.119625px;}
.y19c{bottom:24.504273px;}
.y9b{bottom:24.739472px;}
.ye9{bottom:24.805690px;}
.y173{bottom:25.251519px;}
.y149{bottom:25.251549px;}
.yfc{bottom:25.372031px;}
.yb0{bottom:26.206114px;}
.y11b{bottom:26.957131px;}
.y111{bottom:27.431736px;}
.y102{bottom:28.933309px;}
.ye8{bottom:29.298272px;}
.yc8{bottom:29.393341px;}
.yb7{bottom:29.609813px;}
.y62{bottom:30.104321px;}
.y120{bottom:30.740987px;}
.yd2{bottom:30.957067px;}
.y9{bottom:32.938575px;}
.y99{bottom:33.093389px;}
.ycf{bottom:33.206703px;}
.y69{bottom:35.178638px;}
.yd9{bottom:35.327980px;}
.y61{bottom:37.351612px;}
.y96{bottom:37.621819px;}
.y21f{bottom:38.069882px;}
.y1f3{bottom:38.559417px;}
.y68{bottom:38.802041px;}
.y1c7{bottom:39.022229px;}
.yb5{bottom:39.598366px;}
.y19b{bottom:40.615642px;}
.y1{bottom:41.263680px;}
.y172{bottom:41.340354px;}
.y148{bottom:41.340384px;}
.y98{bottom:42.587306px;}
.y10e{bottom:42.711614px;}
.y95{bottom:42.771767px;}
.ycd{bottom:44.397683px;}
.yb2{bottom:45.012890px;}
.yfe{bottom:45.049496px;}
.ye4{bottom:47.338547px;}
.y11d{bottom:47.864426px;}
.yd7{bottom:48.153934px;}
.y110{bottom:48.601227px;}
.y10d{bottom:48.820017px;}
.ye3{bottom:50.360591px;}
.yca{bottom:50.463666px;}
.yb4{bottom:50.950188px;}
.yb1{bottom:51.170544px;}
.y100{bottom:51.261463px;}
.yfd{bottom:51.492229px;}
.y8{bottom:52.438545px;}
.y5c{bottom:53.058927px;}
.y21e{bottom:53.099791px;}
.y1f2{bottom:53.529843px;}
.y1c6{bottom:53.924832px;}
.ye2{bottom:54.243070px;}
.y11f{bottom:54.464637px;}
.y11c{bottom:54.709826px;}
.yd4{bottom:55.104122px;}
.y19a{bottom:56.727011px;}
.ycc{bottom:57.115344px;}
.yc9{bottom:57.362445px;}
.y171{bottom:57.427844px;}
.y147{bottom:57.427874px;}
.y8e{bottom:61.829398px;}
.yd6{bottom:62.730448px;}
.yd3{bottom:63.013661px;}
.y67{bottom:64.174835px;}
.y66{bottom:67.798481px;}
.y21d{bottom:68.128444px;}
.y1f1{bottom:68.501521px;}
.y1c5{bottom:68.827435px;}
.y108{bottom:69.461256px;}
.y91{bottom:70.386056px;}
.y199{bottom:72.839727px;}
.y93{bottom:73.259324px;}
.yf5{bottom:73.263218px;}
.y170{bottom:73.515333px;}
.y146{bottom:73.515363px;}
.yaa{bottom:73.957242px;}
.y117{bottom:77.841490px;}
.yc2{bottom:80.674483px;}
.y60{bottom:80.847485px;}
.y8b{bottom:81.742862px;}
.y10b{bottom:83.016432px;}
.y21c{bottom:83.157097px;}
.y1f0{bottom:83.471947px;}
.y1c4{bottom:83.731285px;}
.yf9{bottom:83.967842px;}
.yad{bottom:84.188207px;}
.y92{bottom:84.589541px;}
.y27{bottom:84.599940px;}
.yfb{bottom:87.560305px;}
.yaf{bottom:87.623697px;}
.y5f{bottom:88.097201px;}
.y198{bottom:88.951095px;}
.y16f{bottom:89.602823px;}
.y145{bottom:89.602853px;}
.yc5{bottom:92.136829px;}
.y90{bottom:92.943458px;}
.y11a{bottom:93.032136px;}
.y105{bottom:93.080810px;}
.y65{bottom:93.171275px;}
.y5e{bottom:95.346918px;}
.yc7{bottom:95.983583px;}
.y10a{bottom:96.457481px;}
.y64{bottom:96.797346px;}
.y8d{bottom:97.471889px;}
.y14c{bottom:97.477560px;}
.y19e{bottom:97.563465px;}
.ya7{bottom:97.767235px;}
.yf2{bottom:98.175534px;}
.y21b{bottom:98.185749px;}
.y122{bottom:98.425680px;}
.y1ef{bottom:98.442372px;}
.y1c3{bottom:98.633888px;}
.yae{bottom:101.170934px;}
.yfa{bottom:101.737020px;}
.y8f{bottom:102.437542px;}
.y8c{bottom:102.621836px;}
.y4b{bottom:104.099970px;}
.y114{bottom:104.310810px;}
.y197{bottom:105.062464px;}
.y16e{bottom:105.690313px;}
.y144{bottom:105.690343px;}
.y1f6{bottom:105.790695px;}
.ybf{bottom:107.350205px;}
.y175{bottom:107.409240px;}
.y119{bottom:108.094887px;}
.yf8{bottom:109.079739px;}
.yac{bottom:111.159686px;}
.yc6{bottom:111.163789px;}
.y107{bottom:111.735191px;}
.yf7{bottom:112.187802px;}
.y21a{bottom:113.214402px;}
.y231{bottom:113.291535px;}
.y1ee{bottom:113.412798px;}
.y1c2{bottom:113.536491px;}
.y26{bottom:113.849970px;}
.y113{bottom:115.376535px;}
.y9d{bottom:115.837755px;}
.ya9{bottom:116.574010px;}
.y5d{bottom:117.093641px;}
.y109{bottom:117.626775px;}
.y106{bottom:117.845566px;}
.yf4{bottom:117.850920px;}
.y196{bottom:121.173832px;}
.y85{bottom:121.679468px;}
.y16d{bottom:121.779148px;}
.y143{bottom:121.779178px;}
.yc4{bottom:122.354325px;}
.yab{bottom:122.511110px;}
.ya8{bottom:122.731664px;}
.y6e{bottom:123.206010px;}
.yf6{bottom:124.064966px;}
.yf3{bottom:124.295732px;}
.y116{bottom:125.215897px;}
.y219{bottom:128.243054px;}
.y1ed{bottom:128.383224px;}
.yc1{bottom:128.418304px;}
.y1c1{bottom:128.439095px;}
.y1ca{bottom:129.606045px;}
.y88{bottom:130.236125px;}
.y118{bottom:131.818317px;}
.y115{bottom:132.063505px;}
.y8a{bottom:133.109393px;}
.yc3{bottom:135.072208px;}
.yc0{bottom:135.319309px;}
.y4a{bottom:136.349970px;}
.y195{bottom:137.285201px;}
.y16c{bottom:137.866638px;}
.y142{bottom:137.866668px;}
.y230{bottom:140.291535px;}
.y82{bottom:141.592931px;}
.y218{bottom:143.272964px;}
.y1c0{bottom:143.341698px;}
.y1ec{bottom:143.353650px;}
.ya1{bottom:143.539329px;}
.y56{bottom:143.726970px;}
.y89{bottom:144.439611px;}
.y41{bottom:150.149985px;}
.y25{bottom:151.349970px;}
.y87{bottom:152.793693px;}
.y194{bottom:153.396570px;}
.ya4{bottom:153.770295px;}
.y16b{bottom:153.954127px;}
.y141{bottom:153.954157px;}
.ya6{bottom:157.203798px;}
.y84{bottom:157.321958px;}
.y1bf{bottom:158.245548px;}
.y217{bottom:158.301617px;}
.y1eb{bottom:158.325328px;}
.y233{bottom:159.418620px;}
.y86{bottom:162.287445px;}
.y83{bottom:162.471905px;}
.y9e{bottom:167.349323px;}
.y6{bottom:167.923470px;}
.y193{bottom:169.509286px;}
.y14{bottom:169.799970px;}
.y16a{bottom:170.041617px;}
.y140{bottom:170.041647px;}
.ya5{bottom:170.753220px;}
.y1be{bottom:173.148151px;}
.y1ea{bottom:173.295754px;}
.y216{bottom:173.330269px;}
.y7c{bottom:179.874374px;}
.ya3{bottom:180.741575px;}
.y192{bottom:185.620654px;}
.y169{bottom:186.129107px;}
.y13f{bottom:186.129137px;}
.ya0{bottom:186.154111px;}
.y49{bottom:186.599970px;}
.y22f{bottom:186.791535px;}
.y24{bottom:187.349970px;}
.y1bd{bottom:188.050754px;}
.y1e9{bottom:188.266179px;}
.y215{bottom:188.358922px;}
.y7f{bottom:188.431032px;}
.y22{bottom:189.599970px;}
.y81{bottom:191.302638px;}
.ya2{bottom:192.093197px;}
.y9f{bottom:192.313752px;}
.y40{bottom:193.649985px;}
.y55{bottom:196.226820px;}
.ydf{bottom:199.749900px;}
.y79{bottom:199.787838px;}
.y38{bottom:201.599970px;}
.y191{bottom:201.732023px;}
.y168{bottom:202.216596px;}
.y13e{bottom:202.216626px;}
.y80{bottom:202.634684px;}
.y1bc{bottom:202.953358px;}
.y1e8{bottom:203.236605px;}
.y214{bottom:203.387575px;}
.y7e{bottom:210.988434px;}
.y22e{bottom:213.791535px;}
.y7b{bottom:215.515203px;}
.y190{bottom:217.843391px;}
.y1bb{bottom:217.855961px;}
.y1e7{bottom:218.207031px;}
.y167{bottom:218.305432px;}
.y13d{bottom:218.305462px;}
.y213{bottom:218.416227px;}
.y48{bottom:218.849970px;}
.y7d{bottom:220.482351px;}
.y7a{bottom:220.666812px;}
.y13{bottom:222.299970px;}
.y21{bottom:225.599970px;}
.yf0{bottom:231.251220px;}
.y1ba{bottom:232.758564px;}
.y1e6{bottom:233.178709px;}
.y212{bottom:233.446137px;}
.yd1{bottom:233.641650px;}
.y18f{bottom:233.954760px;}
.y166{bottom:234.392921px;}
.y13c{bottom:234.392951px;}
.y3f{bottom:236.849970px;}
.y22d{bottom:240.791535px;}
.y5a{bottom:243.599970px;}
.y37{bottom:245.099970px;}
.y54{bottom:247.226820px;}
.y1b9{bottom:247.662414px;}
.y1e5{bottom:248.149135px;}
.y211{bottom:248.474790px;}
.y18e{bottom:250.066128px;}
.y165{bottom:250.480411px;}
.y13b{bottom:250.480441px;}
.y30{bottom:258.409620px;}
.y20{bottom:261.599970px;}
.y1b8{bottom:262.565017px;}
.y1e4{bottom:263.119561px;}
.y210{bottom:263.503442px;}
.y12{bottom:265.799970px;}
.y18d{bottom:266.178845px;}
.y164{bottom:266.567900px;}
.y13a{bottom:266.567930px;}
.y47{bottom:268.349970px;}
.y22c{bottom:269.291535px;}
.y7{bottom:270.184020px;}
.y1b7{bottom:277.467621px;}
.ye7{bottom:277.532850px;}
.y1e3{bottom:278.089986px;}
.y3e{bottom:278.099970px;}
.y20f{bottom:278.532095px;}
.y234{bottom:278.689020px;}
.y18c{bottom:282.290213px;}
.y163{bottom:282.655390px;}
.y139{bottom:282.655420px;}
.y36{bottom:288.599970px;}
.y1b6{bottom:292.370224px;}
.y1e2{bottom:293.060412px;}
.y20e{bottom:293.560747px;}
.y1f{bottom:297.599970px;}
.y53{bottom:298.226820px;}
.y18b{bottom:298.401582px;}
.y162{bottom:298.742880px;}
.y138{bottom:298.742910px;}
.y2f{bottom:298.909470px;}
.y1b5{bottom:307.272827px;}
.y1e1{bottom:308.030838px;}
.y20d{bottom:308.589400px;}
.yba{bottom:310.212270px;}
.y104{bottom:310.404600px;}
.y3d{bottom:314.099970px;}
.y22b{bottom:314.291535px;}
.y18a{bottom:314.512950px;}
.y161{bottom:314.831715px;}
.y137{bottom:314.831745px;}
.y73{bottom:315.599970px;}
.y11{bottom:318.299970px;}
.y46{bottom:318.599970px;}
.y1b4{bottom:322.175431px;}
.y1e0{bottom:323.002516px;}
.y20c{bottom:323.619310px;}
.y23{bottom:324.599970px;}
.y189{bottom:330.624319px;}
.y160{bottom:330.919205px;}
.y136{bottom:330.919235px;}
.y52{bottom:331.226820px;}
.y43{bottom:333.599970px;}
.y1b3{bottom:337.079280px;}
.y2e{bottom:337.909470px;}
.y1df{bottom:337.972942px;}
.y20b{bottom:338.647962px;}
.y22a{bottom:342.791535px;}
.y5b{bottom:344.425650px;}
.y188{bottom:346.735687px;}
.y15f{bottom:347.006694px;}
.y135{bottom:347.006724px;}
.ybc{bottom:347.891400px;}
.y45{bottom:350.099970px;}
.ydc{bottom:351.731670px;}
.y1b2{bottom:351.981884px;}
.y76{bottom:352.825950px;}
.y1de{bottom:352.943368px;}
.y20a{bottom:353.676615px;}
.y35{bottom:359.099970px;}
.y1e{bottom:360.599970px;}
.y10{bottom:361.799970px;}
.y187{bottom:362.848404px;}
.y15e{bottom:363.094184px;}
.y134{bottom:363.094214px;}
.y51{bottom:365.726820px;}
.y1b1{bottom:366.884487px;}
.y1dd{bottom:367.913793px;}
.y209{bottom:368.705268px;}
.y229{bottom:369.791535px;}
.y2d{bottom:376.909470px;}
.y186{bottom:378.959772px;}
.y15d{bottom:379.181674px;}
.y133{bottom:379.181704px;}
.y1b0{bottom:381.787090px;}
.y44{bottom:382.349970px;}
.y1dc{bottom:382.884219px;}
.y208{bottom:383.733920px;}
.y185{bottom:395.071141px;}
.y3c{bottom:395.099970px;}
.y15c{bottom:395.269163px;}
.y132{bottom:395.269193px;}
.y78{bottom:395.385450px;}
.y1d{bottom:396.599970px;}
.y1af{bottom:396.689694px;}
.y1db{bottom:397.854645px;}
.y207{bottom:398.763830px;}
.y34{bottom:402.599970px;}
.y5{bottom:409.287420px;}
.y184{bottom:411.182509px;}
.y15b{bottom:411.357998px;}
.y131{bottom:411.358028px;}
.y1ae{bottom:411.592297px;}
.y1da{bottom:412.826323px;}
.y206{bottom:413.792483px;}
.y232{bottom:414.075870px;}
.yf{bottom:414.299970px;}
.y228{bottom:415.091535px;}
.y50{bottom:418.226820px;}
.yef{bottom:419.501220px;}
.ybe{bottom:421.356150px;}
.y1ad{bottom:426.496147px;}
.y183{bottom:427.293878px;}
.y15a{bottom:427.445488px;}
.y130{bottom:427.445518px;}
.y1d9{bottom:427.796749px;}
.y205{bottom:428.821135px;}
.y3b{bottom:431.099970px;}
.y1c{bottom:432.599970px;}
.y1ac{bottom:441.398750px;}
.y1d8{bottom:442.767175px;}
.y182{bottom:443.406594px;}
.y159{bottom:443.532978px;}
.y12f{bottom:443.533008px;}
.y204{bottom:443.849788px;}
.y2c{bottom:444.409470px;}
.y33{bottom:444.599970px;}
.y4f{bottom:452.726820px;}
.y1ab{bottom:456.301353px;}
.y1d7{bottom:457.737600px;}
.ye{bottom:457.799970px;}
.y59{bottom:458.099970px;}
.y203{bottom:458.878440px;}
.y181{bottom:459.517963px;}
.y158{bottom:459.620467px;}
.y12e{bottom:459.620497px;}
.ydd{bottom:463.412250px;}
.y4{bottom:466.287420px;}
.y42{bottom:468.599970px;}
.y1aa{bottom:471.203956px;}
.y1d6{bottom:472.708026px;}
.y227{bottom:473.291535px;}
.y202{bottom:473.907093px;}
.y180{bottom:475.629331px;}
.y157{bottom:475.707957px;}
.y12d{bottom:475.707987px;}
.y2b{bottom:483.409470px;}
.y1a9{bottom:486.106560px;}
.y4e{bottom:487.226820px;}
.y1d5{bottom:487.678452px;}
.y32{bottom:488.099970px;}
.y201{bottom:488.937003px;}
.yf1{bottom:489.544050px;}
.y17f{bottom:491.740700px;}
.y156{bottom:491.796927px;}
.y12c{bottom:491.796957px;}
.y58{bottom:492.599970px;}
.y3a{bottom:493.349970px;}
.y1b{bottom:495.599970px;}
.y226{bottom:500.291535px;}
.y1a8{bottom:501.010410px;}
.yd{bottom:501.299970px;}
.y1d4{bottom:502.650130px;}
.y200{bottom:503.965655px;}
.y17e{bottom:507.852068px;}
.y155{bottom:507.884282px;}
.y12b{bottom:507.884312px;}
.y1a7{bottom:515.913013px;}
.y1d3{bottom:517.620556px;}
.y1ff{bottom:518.994434px;}
.y3{bottom:523.287420px;}
.y2a{bottom:523.909470px;}
.y17d{bottom:523.963437px;}
.y154{bottom:523.971772px;}
.y12a{bottom:523.971802px;}
.ye1{bottom:524.461350px;}
.y225{bottom:528.791535px;}
.y71{bottom:529.212270px;}
.y39{bottom:529.349970px;}
.y1a6{bottom:530.815616px;}
.y1a{bottom:531.599970px;}
.y1d2{bottom:532.590982px;}
.y1fe{bottom:534.022961px;}
.y4d{bottom:538.226820px;}
.y153{bottom:540.059261px;}
.y129{bottom:540.059291px;}
.y17c{bottom:540.076288px;}
.y1a5{bottom:545.718344px;}
.y1d1{bottom:547.561407px;}
.y1fd{bottom:549.051613px;}
.yc{bottom:553.799970px;}
.y152{bottom:556.146751px;}
.y128{bottom:556.146781px;}
.y17b{bottom:556.187522px;}
.y1a4{bottom:560.620823px;}
.y1d0{bottom:562.531833px;}
.y29{bottom:562.909470px;}
.y1fc{bottom:564.080266px;}
.y70{bottom:565.212120px;}
.y19{bottom:567.599970px;}
.yb9{bottom:568.212120px;}
.y151{bottom:572.234240px;}
.y127{bottom:572.234270px;}
.y17a{bottom:572.298890px;}
.y224{bottom:573.791535px;}
.y1a3{bottom:575.523426px;}
.y1cf{bottom:577.503511px;}
.y1fb{bottom:579.110176px;}
.y6c{bottom:582.341700px;}
.y150{bottom:588.323076px;}
.y126{bottom:588.323106px;}
.y179{bottom:588.410259px;}
.y1a2{bottom:590.427276px;}
.y4c{bottom:590.726820px;}
.y1ce{bottom:592.473937px;}
.y1fa{bottom:594.138954px;}
.yb{bottom:597.299970px;}
.y31{bottom:600.599970px;}
.ydb{bottom:600.731670px;}
.ybb{bottom:601.489050px;}
.y28{bottom:601.909470px;}
.y18{bottom:603.599970px;}
.yee{bottom:604.751220px;}
.y57{bottom:605.099970px;}
.y72{bottom:606.599970px;}
.y14f{bottom:611.141609px;}
.y125{bottom:611.141639px;}
.y178{bottom:611.262662px;}
.y1a1{bottom:611.565288px;}
.y1cd{bottom:613.708024px;}
.y1f9{bottom:615.455504px;}
.y1a0{bottom:619.015842px;}
.y14e{bottom:619.184681px;}
.y124{bottom:619.184711px;}
.y223{bottom:619.241520px;}
.y177{bottom:619.319020px;}
.y1cc{bottom:621.192611px;}
.y1f8{bottom:622.970585px;}
.yed{bottom:636.251220px;}
.y74{bottom:644.013600px;}
.y19f{bottom:665.622981px;}
.y176{bottom:665.767839px;}
.y14d{bottom:666.354358px;}
.y123{bottom:666.354388px;}
.y1cb{bottom:666.479504px;}
.y1f7{bottom:667.034999px;}
.y17{bottom:677.662320px;}
.yec{bottom:686.454420px;}
.ya{bottom:690.862320px;}
.y222{bottom:695.907420px;}
.y16{bottom:716.662320px;}
.yeb{bottom:725.454270px;}
.y14b{bottom:750.205020px;}
.y2{bottom:801.654420px;}
.h1f{height:0.000000px;}
.hf{height:0.966558px;}
.h2{height:16.917186px;}
.h1a{height:21.088395px;}
.h36{height:21.708480px;}
.h16{height:23.248200px;}
.h4b{height:23.248215px;}
.h18{height:23.248665px;}
.h49{height:25.236015px;}
.h14{height:34.019535px;}
.h1e{height:34.767381px;}
.h80{height:37.256882px;}
.h83{height:37.426440px;}
.h87{height:37.572009px;}
.h78{height:40.219128px;}
.h7c{height:40.278826px;}
.h63{height:41.237931px;}
.h2c{height:41.570424px;}
.h58{height:43.494994px;}
.h6d{height:46.213406px;}
.h3a{height:46.573767px;}
.h85{height:47.482554px;}
.h7a{height:49.152310px;}
.h1d{height:49.667830px;}
.h81{height:50.370029px;}
.h22{height:50.720088px;}
.h28{height:50.720752px;}
.h25{height:50.727400px;}
.h76{height:50.827940px;}
.h44{height:53.380199px;}
.h7e{height:53.503092px;}
.h24{height:56.200517px;}
.h20{height:56.201182px;}
.h5{height:58.007812px;}
.h62{height:58.911499px;}
.h59{height:59.319058px;}
.h2b{height:59.386491px;}
.h66{height:60.159592px;}
.h69{height:60.168265px;}
.h2f{height:60.644647px;}
.h32{height:60.653390px;}
.h1b{height:61.567532px;}
.h57{height:62.135884px;}
.h7{height:63.281250px;}
.h5b{height:63.452289px;}
.h5f{height:63.461437px;}
.h37{height:64.329497px;}
.h6c{height:66.019341px;}
.h39{height:66.534143px;}
.h7f{height:67.064582px;}
.h31{height:67.197450px;}
.h2d{height:67.198245px;}
.h82{height:67.369796px;}
.h70{height:67.418020px;}
.h73{height:67.427739px;}
.h86{height:67.626297px;}
.h19{height:67.874479px;}
.h3d{height:67.943729px;}
.h40{height:67.953524px;}
.h21{height:68.094553px;}
.h27{height:68.095218px;}
.he{height:68.142318px;}
.h35{height:68.893615px;}
.h68{height:70.595064px;}
.h17{height:70.728061px;}
.h4d{height:70.731338px;}
.h77{height:72.397337px;}
.h7b{height:72.498867px;}
.h64{height:73.666279px;}
.h52{height:75.177060px;}
.h3f{height:75.285215px;}
.h3b{height:75.286106px;}
.h43{height:76.257646px;}
.h42{height:76.543800px;}
.h4a{height:76.775596px;}
.h47{height:77.873233px;}
.h72{height:79.112562px;}
.h65{height:80.767615px;}
.h29{height:81.349707px;}
.h2e{height:81.418829px;}
.h53{height:81.846253px;}
.h6e{height:82.554328px;}
.h12{height:82.635930px;}
.h11{height:82.636900px;}
.h13{height:82.637870px;}
.h10{height:82.646602px;}
.h4c{height:83.394900px;}
.h26{height:83.601980px;}
.h23{height:83.608627px;}
.h8{height:84.375000px;}
.h5a{height:85.188245px;}
.h45{height:86.288647px;}
.h5d{height:86.530536px;}
.h88{height:89.648438px;}
.h9{height:90.000000px;}
.h6f{height:90.512461px;}
.h3c{height:91.218254px;}
.hb{height:94.921875px;}
.h6a{height:96.490471px;}
.h15{height:97.067510px;}
.h34{height:97.268455px;}
.h67{height:99.169010px;}
.h5e{height:99.801858px;}
.h33{height:99.960643px;}
.h30{height:99.968591px;}
.hc{height:100.195312px;}
.h55{height:101.709377px;}
.h60{height:101.771656px;}
.h46{height:104.549168px;}
.h5c{height:104.596798px;}
.h4{height:105.468750px;}
.h74{height:108.132324px;}
.h50{height:108.162115px;}
.h41{height:108.975513px;}
.h71{height:111.134037px;}
.h3e{height:112.000632px;}
.h6{height:116.015625px;}
.hd{height:118.847700px;}
.h4e{height:123.692030px;}
.h51{height:124.741910px;}
.h4f{height:124.751266px;}
.h48{height:124.911733px;}
.ha{height:126.562500px;}
.h61{height:127.354050px;}
.h56{height:135.322050px;}
.h6b{height:143.779665px;}
.h38{height:147.126900px;}
.h3{height:168.750000px;}
.h89{height:189.843750px;}
.h54{height:192.775878px;}
.h2a{height:202.852650px;}
.h1c{height:229.480650px;}
.h79{height:679.354260px;}
.h84{height:680.106855px;}
.h7d{height:680.246535px;}
.h75{height:680.246700px;}
.h1{height:810.000000px;}
.h0{height:892.500000px;}
.w9{width:56.999850px;}
.w5{width:59.534100px;}
.w6{width:102.058350px;}
.wb{width:189.202050px;}
.w4{width:190.694100px;}
.wc{width:206.106450px;}
.w3{width:255.146250px;}
.w2{width:340.195050px;}
.we{width:391.224450px;}
.wd{width:407.042100px;}
.w10{width:524.864550px;}
.w11{width:531.449850px;}
.wf{width:533.369400px;}
.w7{width:561.322050px;}
.w8{width:569.826900px;}
.wa{width:578.331750px;}
.w1{width:1079.999850px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x1d{left:1.139191px;}
.x71{left:6.518398px;}
.x6e{left:7.892695px;}
.x2{left:28.472730px;}
.x50{left:32.892969px;}
.x6d{left:53.719204px;}
.x70{left:66.180022px;}
.x15{left:69.161314px;}
.x27{left:70.713966px;}
.x3b{left:71.785413px;}
.x52{left:78.116062px;}
.x28{left:85.560737px;}
.x1f{left:86.948176px;}
.x35{left:88.265597px;}
.x34{left:90.126380px;}
.x1{left:91.445445px;}
.x48{left:92.637405px;}
.x16{left:94.175863px;}
.x29{left:99.383795px;}
.x20{left:100.771234px;}
.x36{left:102.298097px;}
.x41{left:103.578840px;}
.x55{left:104.743368px;}
.x64{left:106.197148px;}
.x56{left:115.415679px;}
.x65{left:117.144826px;}
.x53{left:122.319388px;}
.x51{left:131.092883px;}
.x2b{left:137.247974px;}
.x22{left:138.400751px;}
.x17{left:139.490216px;}
.x38{left:140.497761px;}
.x2a{left:141.976414px;}
.x21{left:143.129191px;}
.x37{left:145.297844px;}
.x42{left:147.116947px;}
.x58{left:153.531315px;}
.x66{left:156.243924px;}
.x57{left:158.982445px;}
.x1a{left:162.144483px;}
.x23{left:163.959842px;}
.x18{left:165.504479px;}
.x49{left:167.343075px;}
.x43{left:168.527970px;}
.x6f{left:176.585205px;}
.xa{left:180.359955px;}
.x59{left:182.996835px;}
.x67{left:184.397078px;}
.xb{left:189.359955px;}
.x8{left:191.083845px;}
.x3f{left:192.997755px;}
.x5b{left:204.939998px;}
.x5e{left:208.074736px;}
.x5a{left:210.096929px;}
.x3{left:212.922090px;}
.xe{left:222.359955px;}
.x7{left:225.031935px;}
.xf{left:226.859955px;}
.x78{left:228.761385px;}
.x73{left:230.497755px;}
.x76{left:231.542625px;}
.x4{left:234.379125px;}
.x2c{left:247.924836px;}
.xc{left:249.359955px;}
.x30{left:252.368748px;}
.x39{left:253.652561px;}
.x10{left:255.359955px;}
.x11{left:256.859955px;}
.x74{left:258.997755px;}
.x44{left:260.583458px;}
.x75{left:267.907365px;}
.x12{left:278.764995px;}
.x61{left:289.062559px;}
.x63{left:296.380807px;}
.x6a{left:302.334373px;}
.x19{left:316.764900px;}
.x54{left:319.202850px;}
.x1b{left:320.493600px;}
.x4f{left:321.994950px;}
.x24{left:323.727993px;}
.x14{left:325.269750px;}
.x2d{left:354.235518px;}
.x5{left:358.808805px;}
.x31{left:361.540840px;}
.x4a{left:364.104990px;}
.x3c{left:367.018778px;}
.x4c{left:369.954189px;}
.x45{left:372.797235px;}
.x5c{left:376.804441px;}
.x62{left:417.120839px;}
.x5d{left:424.625252px;}
.x6b{left:432.929488px;}
.x25{left:434.161393px;}
.x6{left:441.446505px;}
.x5f{left:445.515049px;}
.x68{left:450.424612px;}
.x77{left:452.779005px;}
.x72{left:455.552250px;}
.x9{left:462.822255px;}
.x2e{left:464.667452px;}
.x32{left:471.972773px;}
.x26{left:475.642300px;}
.x4b{left:477.613710px;}
.x3d{left:479.123932px;}
.x6c{left:481.985908px;}
.x46{left:486.307462px;}
.x4d{left:487.946433px;}
.x60{left:493.335861px;}
.x69{left:499.481033px;}
.x2f{left:506.149826px;}
.x33{left:513.455147px;}
.x3a{left:514.987576px;}
.x3e{left:521.234830px;}
.x47{left:528.944085px;}
.x4e{left:532.266587px;}
.x40{left:767.523600px;}
.x1c{left:903.601650px;}
.x1e{left:1005.660300px;}
.x13{left:1035.659805px;}
.xd{left:1040.159805px;}
@media print{
.v21{vertical-align:-40.080438pt;}
.v25{vertical-align:-38.003594pt;}
.v1c{vertical-align:-34.969839pt;}
.v2c{vertical-align:-32.658147pt;}
.v15{vertical-align:-31.213087pt;}
.vd{vertical-align:-26.105033pt;}
.v1e{vertical-align:-22.598033pt;}
.v2{vertical-align:-21.473455pt;}
.v19{vertical-align:-19.716590pt;}
.v4{vertical-align:-18.083265pt;}
.v22{vertical-align:-15.795036pt;}
.v6{vertical-align:-14.718462pt;}
.v1d{vertical-align:-13.781034pt;}
.v1{vertical-align:-12.884073pt;}
.v18{vertical-align:-11.825205pt;}
.vc{vertical-align:-10.122119pt;}
.v5{vertical-align:-8.827532pt;}
.v10{vertical-align:-7.036562pt;}
.v7{vertical-align:-5.885021pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.892697pt;}
.vb{vertical-align:14.180184pt;}
.vf{vertical-align:15.451135pt;}
.v14{vertical-align:16.954865pt;}
.v17{vertical-align:18.474508pt;}
.v2e{vertical-align:19.640275pt;}
.v8{vertical-align:21.359791pt;}
.v9{vertical-align:24.302302pt;}
.v11{vertical-align:25.539329pt;}
.v2d{vertical-align:26.692885pt;}
.v12{vertical-align:29.057610pt;}
.ve{vertical-align:30.169598pt;}
.v1a{vertical-align:32.554932pt;}
.v16{vertical-align:36.072978pt;}
.v1f{vertical-align:37.312610pt;}
.v2a{vertical-align:38.661732pt;}
.va{vertical-align:40.125683pt;}
.v23{vertical-align:46.320978pt;}
.v13{vertical-align:47.977202pt;}
.v2b{vertical-align:50.198384pt;}
.v1b{vertical-align:53.751652pt;}
.v20{vertical-align:61.607083pt;}
.v24{vertical-align:62.562249pt;}
.v27{vertical-align:64.975446pt;}
.v29{vertical-align:80.949071pt;}
.v28{vertical-align:119.609733pt;}
.v26{vertical-align:150.188426pt;}
.ls65{letter-spacing:-0.021333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls42{letter-spacing:0.004136pt;}
.ls40{letter-spacing:0.004799pt;}
.ls60{letter-spacing:0.004945pt;}
.lsf7{letter-spacing:0.005498pt;}
.ls7e{letter-spacing:0.005541pt;}
.lsea{letter-spacing:0.005692pt;}
.ls5e{letter-spacing:0.005738pt;}
.ls23{letter-spacing:0.006365pt;}
.lsfe{letter-spacing:0.006379pt;}
.ls7b{letter-spacing:0.006429pt;}
.lsad{letter-spacing:0.006468pt;}
.lsa1{letter-spacing:0.006909pt;}
.ls9a{letter-spacing:0.007368pt;}
.lsba{letter-spacing:0.007484pt;}
.ls4a{letter-spacing:0.010708pt;}
.ls64{letter-spacing:0.012803pt;}
.lsd6{letter-spacing:0.013396pt;}
.ls87{letter-spacing:0.014344pt;}
.ls3b{letter-spacing:0.015866pt;}
.lsc{letter-spacing:0.017003pt;}
.ls67{letter-spacing:0.017660pt;}
.lse4{letter-spacing:0.018819pt;}
.ls58{letter-spacing:0.018970pt;}
.ls4b{letter-spacing:0.020603pt;}
.ls104{letter-spacing:0.020620pt;}
.ls106{letter-spacing:0.020946pt;}
.lsfa{letter-spacing:0.021089pt;}
.ls69{letter-spacing:0.021115pt;}
.ls77{letter-spacing:0.021254pt;}
.ls103{letter-spacing:0.022093pt;}
.ls108{letter-spacing:0.023474pt;}
.ls9c{letter-spacing:0.023657pt;}
.ls113{letter-spacing:0.023736pt;}
.ls117{letter-spacing:0.023844pt;}
.ls11b{letter-spacing:0.023937pt;}
.ls95{letter-spacing:0.024360pt;}
.lsde{letter-spacing:0.024437pt;}
.ls63{letter-spacing:0.024634pt;}
.ls10b{letter-spacing:0.025623pt;}
.ls10f{letter-spacing:0.025662pt;}
.lsc2{letter-spacing:0.025775pt;}
.ls9e{letter-spacing:0.027114pt;}
.lsd0{letter-spacing:0.027241pt;}
.lsf1{letter-spacing:0.027386pt;}
.ls7d{letter-spacing:0.027599pt;}
.lsf{letter-spacing:0.031499pt;}
.ls8a{letter-spacing:0.031633pt;}
.ls33{letter-spacing:0.031732pt;}
.lsa9{letter-spacing:0.032219pt;}
.ls37{letter-spacing:0.032507pt;}
.ls31{letter-spacing:0.035165pt;}
.lsd7{letter-spacing:0.036600pt;}
.lsc5{letter-spacing:0.037281pt;}
.ls35{letter-spacing:0.037641pt;}
.ls112{letter-spacing:0.037723pt;}
.ls116{letter-spacing:0.037895pt;}
.ls4e{letter-spacing:0.037941pt;}
.lse1{letter-spacing:0.038557pt;}
.ls52{letter-spacing:0.038868pt;}
.lsca{letter-spacing:0.039697pt;}
.lscc{letter-spacing:0.040667pt;}
.ls10a{letter-spacing:0.040723pt;}
.ls10e{letter-spacing:0.040783pt;}
.lsdc{letter-spacing:0.041709pt;}
.ls4c{letter-spacing:0.042046pt;}
.ls6f{letter-spacing:0.042507pt;}
.ls11a{letter-spacing:0.042512pt;}
.lsc6{letter-spacing:0.042607pt;}
.lsf4{letter-spacing:0.043209pt;}
.ls3e{letter-spacing:0.043487pt;}
.ls73{letter-spacing:0.043546pt;}
.lsc8{letter-spacing:0.043992pt;}
.ls2f{letter-spacing:0.044172pt;}
.lsdf{letter-spacing:0.044646pt;}
.ls50{letter-spacing:0.045006pt;}
.ls6a{letter-spacing:0.045471pt;}
.ls12{letter-spacing:0.045608pt;}
.lsef{letter-spacing:0.046742pt;}
.ls6d{letter-spacing:0.047106pt;}
.lsd9{letter-spacing:0.048059pt;}
.ls26{letter-spacing:0.048697pt;}
.ls8b{letter-spacing:0.048720pt;}
.ls48{letter-spacing:0.049395pt;}
.ls8d{letter-spacing:0.049910pt;}
.lsf2{letter-spacing:0.050032pt;}
.ls71{letter-spacing:0.050423pt;}
.ls13{letter-spacing:0.051324pt;}
.lsee{letter-spacing:0.051580pt;}
.lsa4{letter-spacing:0.052860pt;}
.ls66{letter-spacing:0.052979pt;}
.ls88{letter-spacing:0.053990pt;}
.lsd3{letter-spacing:0.054403pt;}
.lsa5{letter-spacing:0.054990pt;}
.ls94{letter-spacing:0.057791pt;}
.ls7a{letter-spacing:0.058254pt;}
.lse7{letter-spacing:0.058588pt;}
.lsac{letter-spacing:0.058862pt;}
.ls5b{letter-spacing:0.059060pt;}
.ls105{letter-spacing:0.062839pt;}
.ls68{letter-spacing:0.063346pt;}
.lsb0{letter-spacing:0.063631pt;}
.lsfd{letter-spacing:0.065657pt;}
.ls84{letter-spacing:0.066169pt;}
.ls102{letter-spacing:0.066278pt;}
.ls99{letter-spacing:0.066767pt;}
.ls29{letter-spacing:0.067483pt;}
.ls107{letter-spacing:0.070421pt;}
.ls9b{letter-spacing:0.070970pt;}
.ls9d{letter-spacing:0.081341pt;}
.lsc3{letter-spacing:0.082848pt;}
.ls3{letter-spacing:0.245333pt;}
.ls49{letter-spacing:1.003901pt;}
.ls36{letter-spacing:1.009809pt;}
.lse8{letter-spacing:1.190736pt;}
.lse0{letter-spacing:1.197745pt;}
.ls5c{letter-spacing:1.200337pt;}
.ls51{letter-spacing:1.207402pt;}
.lscb{letter-spacing:1.255909pt;}
.lsd4{letter-spacing:1.263301pt;}
.lsff{letter-spacing:1.334402pt;}
.lsf3{letter-spacing:1.342256pt;}
.ls85{letter-spacing:1.344808pt;}
.ls72{letter-spacing:1.352723pt;}
.ls8c{letter-spacing:1.541342pt;}
.ls96{letter-spacing:1.550414pt;}
.ls114{letter-spacing:2.230365pt;}
.ls118{letter-spacing:2.236064pt;}
.ls11c{letter-spacing:2.244761pt;}
.ls110{letter-spacing:2.406481pt;}
.ls10c{letter-spacing:2.407699pt;}
.ls34{letter-spacing:2.957128pt;}
.ls4f{letter-spacing:3.535758pt;}
.lscd{letter-spacing:3.699452pt;}
.ls70{letter-spacing:3.961316pt;}
.ls14{letter-spacing:4.316025pt;}
.lsa6{letter-spacing:4.624314pt;}
.ls5{letter-spacing:5.109333pt;}
.lsb1{letter-spacing:5.340299pt;}
.ls41{letter-spacing:5.899638pt;}
.lsaf{letter-spacing:6.171342pt;}
.ls5f{letter-spacing:7.054039pt;}
.lsa{letter-spacing:7.104000pt;}
.lsbc{letter-spacing:7.141123pt;}
.lsb7{letter-spacing:7.151815pt;}
.ls7c{letter-spacing:7.903051pt;}
.ls43{letter-spacing:9.851855pt;}
.ls38{letter-spacing:9.857764pt;}
.ls101{letter-spacing:10.236312pt;}
.lse3{letter-spacing:11.692390pt;}
.ls61{letter-spacing:11.779599pt;}
.ls53{letter-spacing:11.786664pt;}
.lscf{letter-spacing:12.324955pt;}
.lsdb{letter-spacing:12.332347pt;}
.lsc1{letter-spacing:12.795388pt;}
.ls46{letter-spacing:13.079992pt;}
.ls3a{letter-spacing:13.090273pt;}
.lsf5{letter-spacing:13.095257pt;}
.ls45{letter-spacing:13.096182pt;}
.lsf9{letter-spacing:13.103111pt;}
.ls44{letter-spacing:13.125251pt;}
.ls39{letter-spacing:13.131160pt;}
.ls7f{letter-spacing:13.197371pt;}
.ls74{letter-spacing:13.205286pt;}
.ls1e{letter-spacing:14.379106pt;}
.ls19{letter-spacing:14.387730pt;}
.ls1a{letter-spacing:14.416745pt;}
.lsc4{letter-spacing:14.806090pt;}
.ls3f{letter-spacing:14.913314pt;}
.ls3c{letter-spacing:14.919223pt;}
.ls93{letter-spacing:15.126075pt;}
.ls8e{letter-spacing:15.135147pt;}
.ls22{letter-spacing:15.170391pt;}
.ls24{letter-spacing:15.200984pt;}
.lsae{letter-spacing:15.406191pt;}
.lsab{letter-spacing:15.415431pt;}
.lse2{letter-spacing:15.567988pt;}
.lsec{letter-spacing:15.574997pt;}
.ls56{letter-spacing:15.639395pt;}
.ls55{letter-spacing:15.651688pt;}
.ls62{letter-spacing:15.658753pt;}
.ls57{letter-spacing:15.693510pt;}
.ls54{letter-spacing:15.700575pt;}
.ls47{letter-spacing:16.040141pt;}
.ls3d{letter-spacing:16.046050pt;}
.lsce{letter-spacing:16.420067pt;}
.lsda{letter-spacing:16.427458pt;}
.lsa0{letter-spacing:16.467521pt;}
.lsa2{letter-spacing:16.500730pt;}
.lsf6{letter-spacing:17.446311pt;}
.lsf8{letter-spacing:17.454165pt;}
.ls82{letter-spacing:17.521725pt;}
.ls76{letter-spacing:17.535497pt;}
.ls81{letter-spacing:17.543412pt;}
.ls80{letter-spacing:17.582353pt;}
.ls75{letter-spacing:17.590268pt;}
.lse5{letter-spacing:17.688828pt;}
.lse9{letter-spacing:17.695836pt;}
.lsbb{letter-spacing:17.827162pt;}
.ls59{letter-spacing:17.831449pt;}
.lsb6{letter-spacing:17.837854pt;}
.ls5d{letter-spacing:17.838514pt;}
.lsd5{letter-spacing:18.656985pt;}
.lsd1{letter-spacing:18.664377pt;}
.lse6{letter-spacing:19.025368pt;}
.lsed{letter-spacing:19.032376pt;}
.ls1c{letter-spacing:19.154147pt;}
.ls17{letter-spacing:19.162771pt;}
.ls5a{letter-spacing:19.178766pt;}
.lsfb{letter-spacing:19.823036pt;}
.ls100{letter-spacing:19.830890pt;}
.ls78{letter-spacing:19.977611pt;}
.ls86{letter-spacing:19.985526pt;}
.lsd2{letter-spacing:20.066678pt;}
.ls91{letter-spacing:20.082403pt;}
.ls90{letter-spacing:20.107260pt;}
.ls8f{letter-spacing:20.151892pt;}
.ls92{letter-spacing:20.160964pt;}
.ls25{letter-spacing:20.205184pt;}
.lsaa{letter-spacing:20.525080pt;}
.lsfc{letter-spacing:21.320834pt;}
.ls83{letter-spacing:21.487088pt;}
.ls79{letter-spacing:21.495003pt;}
.lsa3{letter-spacing:21.932809pt;}
.ls32{letter-spacing:22.248889pt;}
.ls2e{letter-spacing:22.888886pt;}
.ls97{letter-spacing:22.897200pt;}
.ls16{letter-spacing:23.424329pt;}
.ls1b{letter-spacing:23.432953pt;}
.ls6c{letter-spacing:23.561915pt;}
.lsb5{letter-spacing:23.750447pt;}
.lsb9{letter-spacing:23.761139pt;}
.ls28{letter-spacing:23.953448pt;}
.ls98{letter-spacing:24.636349pt;}
.ls2d{letter-spacing:25.233611pt;}
.ls2a{letter-spacing:25.256463pt;}
.lsa8{letter-spacing:25.641197pt;}
.lseb{letter-spacing:26.389625pt;}
.lsdd{letter-spacing:26.396634pt;}
.ls4d{letter-spacing:26.602400pt;}
.ls18{letter-spacing:26.617149pt;}
.ls1d{letter-spacing:26.625773pt;}
.ls20{letter-spacing:26.877656pt;}
.ls30{letter-spacing:26.972983pt;}
.lsc0{letter-spacing:27.415992pt;}
.ls6b{letter-spacing:27.766103pt;}
.lsc9{letter-spacing:27.834001pt;}
.lsd8{letter-spacing:27.841393pt;}
.ls21{letter-spacing:28.074156pt;}
.lsf0{letter-spacing:29.573609pt;}
.lsbe{letter-spacing:29.610439pt;}
.ls15{letter-spacing:29.630809pt;}
.lsc7{letter-spacing:29.633483pt;}
.lsbf{letter-spacing:29.670525pt;}
.lsb3{letter-spacing:29.681217pt;}
.ls2c{letter-spacing:29.736082pt;}
.ls6e{letter-spacing:29.804217pt;}
.ls9f{letter-spacing:30.474610pt;}
.lsa7{letter-spacing:31.747308pt;}
.ls1f{letter-spacing:33.566650pt;}
.ls89{letter-spacing:34.159896pt;}
.lsb2{letter-spacing:36.736166pt;}
.lse{letter-spacing:39.392688pt;}
.lsb{letter-spacing:42.574123pt;}
.ls11d{letter-spacing:45.755563pt;}
.ls10{letter-spacing:47.968608pt;}
.ls6{letter-spacing:48.937003pt;}
.lsb4{letter-spacing:53.256643pt;}
.ls8{letter-spacing:57.956411pt;}
.lsd{letter-spacing:59.887051pt;}
.ls9{letter-spacing:61.492411pt;}
.ls7{letter-spacing:63.046685pt;}
.ls2{letter-spacing:68.137056pt;}
.ls11{letter-spacing:70.682160pt;}
.ls4{letter-spacing:70.693376pt;}
.lsb8{letter-spacing:71.093962pt;}
.lsbd{letter-spacing:71.104654pt;}
.ls2b{letter-spacing:73.227303pt;}
.ls27{letter-spacing:100.332985pt;}
.ls1{letter-spacing:135.440167pt;}
.ls119{letter-spacing:946.518088pt;}
.ls10d{letter-spacing:966.973521pt;}
.ls109{letter-spacing:1001.290929pt;}
.ls115{letter-spacing:1005.691775pt;}
.ls111{letter-spacing:1069.821466pt;}
.ws50{word-spacing:-29.740002pt;}
.ws3f{word-spacing:-27.514328pt;}
.ws1{word-spacing:-26.094919pt;}
.ws11{word-spacing:-25.347053pt;}
.wsa{word-spacing:-24.039364pt;}
.ws41{word-spacing:-16.599066pt;}
.ws13{word-spacing:-15.291574pt;}
.wsb{word-spacing:-14.502661pt;}
.ws44{word-spacing:-12.887441pt;}
.ws59{word-spacing:-10.309954pt;}
.ws4e{word-spacing:-0.111844pt;}
.ws4d{word-spacing:-0.106519pt;}
.ws4{word-spacing:-0.102400pt;}
.ws6{word-spacing:-0.101333pt;}
.ws40{word-spacing:-0.098336pt;}
.ws49{word-spacing:-0.096656pt;}
.ws5{word-spacing:-0.096000pt;}
.ws39{word-spacing:-0.094898pt;}
.ws3{word-spacing:-0.093867pt;}
.ws48{word-spacing:-0.092053pt;}
.ws82{word-spacing:-0.090667pt;}
.ws12{word-spacing:-0.090590pt;}
.ws3a{word-spacing:-0.090379pt;}
.ws9{word-spacing:-0.085916pt;}
.ws2{word-spacing:-0.085333pt;}
.ws2e{word-spacing:-0.082798pt;}
.ws64{word-spacing:-0.082157pt;}
.ws7{word-spacing:-0.081067pt;}
.ws2f{word-spacing:-0.078855pt;}
.ws65{word-spacing:-0.078245pt;}
.ws53{word-spacing:-0.077324pt;}
.ws15{word-spacing:-0.076800pt;}
.ws4a{word-spacing:-0.074563pt;}
.ws23{word-spacing:-0.073903pt;}
.ws56{word-spacing:-0.073643pt;}
.ws5c{word-spacing:-0.073312pt;}
.ws24{word-spacing:-0.070384pt;}
.ws5e{word-spacing:-0.069821pt;}
.ws43{word-spacing:-0.064437pt;}
.ws18{word-spacing:-0.061809pt;}
.ws8{word-spacing:-0.060141pt;}
.ws19{word-spacing:-0.058866pt;}
.ws34{word-spacing:-0.055199pt;}
.ws54{word-spacing:-0.051550pt;}
.ws29{word-spacing:-0.049269pt;}
.ws1e{word-spacing:-0.041206pt;}
.ws0{word-spacing:0.000000pt;}
.ws1c{word-spacing:7.010528pt;}
.ws20{word-spacing:7.016437pt;}
.ws60{word-spacing:8.322264pt;}
.ws27{word-spacing:8.389365pt;}
.ws57{word-spacing:8.777764pt;}
.ws68{word-spacing:9.326369pt;}
.ws32{word-spacing:9.391179pt;}
.ws36{word-spacing:9.399094pt;}
.ws5b{word-spacing:9.635303pt;}
.ws52{word-spacing:10.162669pt;}
.ws3d{word-spacing:10.763634pt;}
.ws63{word-spacing:10.797830pt;}
.ws1b{word-spacing:12.897448pt;}
.ws1a{word-spacing:13.019354pt;}
.ws1f{word-spacing:13.025262pt;}
.ws17{word-spacing:13.026952pt;}
.ws5f{word-spacing:15.297789pt;}
.ws26{word-spacing:15.421132pt;}
.ws62{word-spacing:15.442383pt;}
.ws5d{word-spacing:15.447288pt;}
.ws25{word-spacing:15.566892pt;}
.ws2a{word-spacing:15.573956pt;}
.ws22{word-spacing:15.575977pt;}
.ws55{word-spacing:16.135078pt;}
.ws10{word-spacing:16.629815pt;}
.wsd{word-spacing:16.678018pt;}
.ws67{word-spacing:17.143511pt;}
.ws31{word-spacing:17.277192pt;}
.ws66{word-spacing:17.313404pt;}
.ws30{word-spacing:17.440495pt;}
.ws35{word-spacing:17.448410pt;}
.ws2d{word-spacing:17.450674pt;}
.ws7f{word-spacing:18.683506pt;}
.ws71{word-spacing:19.340524pt;}
.ws3c{word-spacing:19.802134pt;}
.ws7c{word-spacing:19.819674pt;}
.ws5a{word-spacing:19.959774pt;}
.ws3b{word-spacing:19.998374pt;}
.ws6a{word-spacing:19.999853pt;}
.ws38{word-spacing:20.000968pt;}
.ws14{word-spacing:20.033123pt;}
.ws47{word-spacing:20.168845pt;}
.ws46{word-spacing:20.368719pt;}
.ws78{word-spacing:21.052476pt;}
.ws42{word-spacing:21.746035pt;}
.ws16{word-spacing:22.743535pt;}
.ws21{word-spacing:23.034803pt;}
.ws1d{word-spacing:23.040712pt;}
.ws51{word-spacing:23.558824pt;}
.ws4b{word-spacing:23.566308pt;}
.ws4c{word-spacing:23.569515pt;}
.wsc{word-spacing:23.867532pt;}
.ws45{word-spacing:24.949714pt;}
.ws2c{word-spacing:25.073371pt;}
.wsf{word-spacing:26.667958pt;}
.ws61{word-spacing:27.328813pt;}
.ws2b{word-spacing:27.542095pt;}
.ws28{word-spacing:27.549160pt;}
.ws58{word-spacing:28.824593pt;}
.ws69{word-spacing:30.626113pt;}
.ws37{word-spacing:30.857013pt;}
.ws33{word-spacing:30.864928pt;}
.ws3e{word-spacing:35.375623pt;}
.ws4f{word-spacing:35.402617pt;}
.wse{word-spacing:39.329084pt;}
.ws7b{word-spacing:52.943409pt;}
.ws7e{word-spacing:53.184358pt;}
.ws81{word-spacing:53.391216pt;}
.ws6f{word-spacing:57.152870pt;}
.ws77{word-spacing:57.237703pt;}
.ws6c{word-spacing:65.113278pt;}
.ws6e{word-spacing:80.986427pt;}
.ws75{word-spacing:81.106637pt;}
.ws7a{word-spacing:87.297015pt;}
.ws70{word-spacing:88.946835pt;}
.ws73{word-spacing:89.078861pt;}
.ws76{word-spacing:102.302250pt;}
.ws6d{word-spacing:104.819985pt;}
.ws74{word-spacing:104.975571pt;}
.ws72{word-spacing:203.124626pt;}
.ws7d{word-spacing:210.918783pt;}
.ws80{word-spacing:211.739142pt;}
.ws6b{word-spacing:226.657129pt;}
.ws79{word-spacing:244.272678pt;}
._43{margin-left:-31.388481pt;}
._31{margin-left:-29.819058pt;}
._3d{margin-left:-28.836022pt;}
._2e{margin-left:-27.443759pt;}
._2d{margin-left:-25.282042pt;}
._2c{margin-left:-23.969084pt;}
._a{margin-left:-17.049600pt;}
._f{margin-left:-14.924800pt;}
._6{margin-left:-12.983467pt;}
._10{margin-left:-11.792000pt;}
._4{margin-left:-10.677333pt;}
._5{margin-left:-9.768533pt;}
._2a{margin-left:-8.819200pt;}
._0{margin-left:-7.082667pt;}
._8{margin-left:-5.564800pt;}
._1{margin-left:-4.420267pt;}
._2{margin-left:-3.413333pt;}
._3{margin-left:-1.843200pt;}
._20{margin-left:-0.895403pt;}
._9{width:1.091200pt;}
._7{width:2.496000pt;}
._b{width:4.243078pt;}
._c{width:5.570377pt;}
._2b{width:6.501645pt;}
._1f{width:7.425664pt;}
._16{width:8.448000pt;}
._23{width:10.378667pt;}
._11{width:11.657478pt;}
._22{width:12.836041pt;}
._21{width:13.997397pt;}
._1b{width:15.157333pt;}
._1c{width:16.085333pt;}
._1a{width:17.481003pt;}
._19{width:18.892331pt;}
._1e{width:20.662997pt;}
._28{width:21.636011pt;}
._13{width:22.549333pt;}
._29{width:23.449344pt;}
._27{width:24.524331pt;}
._1d{width:26.944000pt;}
._25{width:28.699536pt;}
._50{width:30.831104pt;}
._51{width:31.825813pt;}
._17{width:32.842667pt;}
._18{width:33.747200pt;}
._24{width:35.080533pt;}
._2f{width:36.487875pt;}
._30{width:37.473975pt;}
._53{width:43.032000pt;}
._52{width:44.285333pt;}
._d{width:48.621745pt;}
._15{width:50.513067pt;}
._14{width:51.585664pt;}
._12{width:53.120000pt;}
._42{width:57.629154pt;}
._e{width:60.902063pt;}
._26{width:65.331200pt;}
._48{width:75.101043pt;}
._4e{width:76.021254pt;}
._36{width:81.072228pt;}
._4a{width:86.802464pt;}
._49{width:87.694421pt;}
._35{width:89.442573pt;}
._3a{width:94.285552pt;}
._40{width:102.904743pt;}
._37{width:104.905785pt;}
._46{width:109.454648pt;}
._4f{width:110.344815pt;}
._39{width:118.119110pt;}
._34{width:126.079518pt;}
._3c{width:128.739343pt;}
._38{width:141.952667pt;}
._47{width:143.772928pt;}
._3b{width:149.913075pt;}
._41{width:190.576127pt;}
._4d{width:200.562165pt;}
._3f{width:215.011355pt;}
._3e{width:227.041298pt;}
._4c{width:228.218115pt;}
._33{width:238.573908pt;}
._4b{width:245.428733pt;}
._32{width:250.538353pt;}
._45{width:255.400067pt;}
._44{width:266.394987pt;}
.fs0{font-size:19.199998pt;}
.fs19{font-size:29.432788pt;}
.fs3e{font-size:30.909325pt;}
.fs41{font-size:31.049995pt;}
.fs44{font-size:31.170762pt;}
.fs38{font-size:33.366884pt;}
.fs3b{font-size:33.416411pt;}
.fs32{font-size:34.910518pt;}
.fs1c{font-size:35.191995pt;}
.fs2f{font-size:36.821265pt;}
.fs35{font-size:39.122572pt;}
.fs21{font-size:39.427640pt;}
.fs18{font-size:41.205785pt;}
.fsf{font-size:42.958120pt;}
.fs3d{font-size:44.156305pt;}
.fs40{font-size:44.357262pt;}
.fs43{font-size:44.529788pt;}
.fs24{font-size:45.189716pt;}
.fs29{font-size:46.026574pt;}
.fs37{font-size:47.667114pt;}
.fs3a{font-size:47.737867pt;}
.fs31{font-size:48.874585pt;}
.fs1b{font-size:49.268651pt;}
.fs2e{font-size:51.549623pt;}
.fs2c{font-size:53.259316pt;}
.fs34{font-size:54.771444pt;}
.fs20{font-size:55.198538pt;}
.fs42{font-size:56.275619pt;}
.fs16{font-size:57.520386pt;}
.fs39{font-size:58.254590pt;}
.fs3{font-size:58.666667pt;}
.fs17{font-size:58.865576pt;}
.fs1e{font-size:59.211728pt;}
.fs3f{font-size:59.697812pt;}
.fse{font-size:60.141196pt;}
.fs36{font-size:60.240521pt;}
.fs23{font-size:63.265421pt;}
.fs3c{font-size:63.411072pt;}
.fs13{font-size:63.412745pt;}
.fs6{font-size:64.000000pt;}
.fs28{font-size:64.437019pt;}
.fs26{font-size:68.834791pt;}
.fs30{font-size:69.821036pt;}
.fs1a{font-size:70.383989pt;}
.fs2d{font-size:73.642530pt;}
.fs2b{font-size:74.562828pt;}
.fs14{font-size:76.799947pt;}
.fs33{font-size:78.245145pt;}
.fs1f{font-size:78.855281pt;}
.fsc{font-size:81.066667pt;}
.fs15{font-size:82.172216pt;}
.fs11{font-size:84.353895pt;}
.fs1d{font-size:84.588425pt;}
.fs7{font-size:85.333333pt;}
.fsd{font-size:85.916240pt;}
.fs22{font-size:90.379432pt;}
.fs12{font-size:90.589895pt;}
.fs45{font-size:90.666667pt;}
.fs27{font-size:92.053149pt;}
.fs4{font-size:93.866613pt;}
.fsa{font-size:96.000000pt;}
.fs25{font-size:98.335697pt;}
.fsb{font-size:101.333333pt;}
.fs8{font-size:102.400000pt;}
.fs2a{font-size:106.518631pt;}
.fs2{font-size:106.666667pt;}
.fs5{font-size:117.333333pt;}
.fs10{font-size:120.505909pt;}
.fs9{font-size:128.000000pt;}
.fs1{font-size:170.666667pt;}
.fs46{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.yd5{bottom:0.340332pt;}
.y10f{bottom:0.387296pt;}
.yff{bottom:0.408636pt;}
.y11e{bottom:0.433609pt;}
.ye6{bottom:0.552182pt;}
.y97{bottom:1.759404pt;}
.yb3{bottom:2.129885pt;}
.ycb{bottom:2.415662pt;}
.y77{bottom:3.525695pt;}
.ybd{bottom:3.629035pt;}
.y75{bottom:3.886892pt;}
.ye0{bottom:4.663826pt;}
.y6f{bottom:4.663906pt;}
.yde{bottom:5.062307pt;}
.y6b{bottom:5.495071pt;}
.ye5{bottom:6.689767pt;}
.y6d{bottom:7.015094pt;}
.y221{bottom:7.122290pt;}
.y19d{bottom:7.460360pt;}
.y1f5{bottom:7.660947pt;}
.y174{bottom:8.145804pt;}
.y14a{bottom:8.145830pt;}
.y1c9{bottom:8.192908pt;}
.y6a{bottom:8.716305pt;}
.y9a{bottom:9.365469pt;}
.yea{bottom:10.090667pt;}
.yb6{bottom:11.224077pt;}
.y9c{bottom:11.919486pt;}
.yd8{bottom:12.018100pt;}
.y112{bottom:12.438093pt;}
.yce{bottom:12.604413pt;}
.y103{bottom:13.119006pt;}
.y121{bottom:13.938370pt;}
.yb8{bottom:14.277846pt;}
.yda{bottom:15.937148pt;}
.y15{bottom:16.000000pt;}
.yd0{bottom:16.025729pt;}
.y101{bottom:17.642848pt;}
.y94{bottom:19.460260pt;}
.y63{bottom:20.315420pt;}
.y220{bottom:20.481092pt;}
.y1f4{bottom:20.967992pt;}
.y10c{bottom:21.382455pt;}
.y1c8{bottom:21.439667pt;}
.y19c{bottom:21.781576pt;}
.y9b{bottom:21.990642pt;}
.ye9{bottom:22.049502pt;}
.y173{bottom:22.445795pt;}
.y149{bottom:22.445821pt;}
.yfc{bottom:22.552916pt;}
.yb0{bottom:23.294324pt;}
.y11b{bottom:23.961894pt;}
.y111{bottom:24.383765pt;}
.y102{bottom:25.718497pt;}
.ye8{bottom:26.042908pt;}
.yc8{bottom:26.127414pt;}
.yb7{bottom:26.319834pt;}
.y62{bottom:26.759397pt;}
.y120{bottom:27.325322pt;}
.yd2{bottom:27.517393pt;}
.y9{bottom:29.278733pt;}
.y99{bottom:29.416345pt;}
.ycf{bottom:29.517069pt;}
.y69{bottom:31.269900pt;}
.yd9{bottom:31.402649pt;}
.y61{bottom:33.201433pt;}
.y96{bottom:33.441617pt;}
.y21f{bottom:33.839895pt;}
.y1f3{bottom:34.275037pt;}
.y68{bottom:34.490703pt;}
.y1c7{bottom:34.686425pt;}
.yb5{bottom:35.198548pt;}
.y19b{bottom:36.102793pt;}
.y1{bottom:36.678827pt;}
.y172{bottom:36.746982pt;}
.y148{bottom:36.747008pt;}
.y98{bottom:37.855383pt;}
.y10e{bottom:37.965879pt;}
.y95{bottom:38.019349pt;}
.ycd{bottom:39.464607pt;}
.yb2{bottom:40.011457pt;}
.yfe{bottom:40.043996pt;}
.ye4{bottom:42.078708pt;}
.y11d{bottom:42.546157pt;}
.yd7{bottom:42.803497pt;}
.y110{bottom:43.201090pt;}
.y10d{bottom:43.395571pt;}
.ye3{bottom:44.764970pt;}
.yca{bottom:44.856592pt;}
.yb4{bottom:45.289056pt;}
.yb1{bottom:45.484928pt;}
.y100{bottom:45.565745pt;}
.yfd{bottom:45.770870pt;}
.y8{bottom:46.612040pt;}
.y5c{bottom:47.163491pt;}
.y21e{bottom:47.199815pt;}
.y1f2{bottom:47.582083pt;}
.y1c6{bottom:47.933184pt;}
.ye2{bottom:48.216062pt;}
.y11f{bottom:48.413011pt;}
.y11c{bottom:48.630956pt;}
.yd4{bottom:48.981442pt;}
.y19a{bottom:50.424009pt;}
.ycc{bottom:50.769195pt;}
.yc9{bottom:50.988840pt;}
.y171{bottom:51.046972pt;}
.y147{bottom:51.046999pt;}
.y8e{bottom:54.959465pt;}
.yd6{bottom:55.760398pt;}
.yd3{bottom:56.012143pt;}
.y67{bottom:57.044298pt;}
.y66{bottom:60.265316pt;}
.y21d{bottom:60.558617pt;}
.y1f1{bottom:60.890241pt;}
.y1c5{bottom:61.179942pt;}
.y108{bottom:61.743339pt;}
.y91{bottom:62.565383pt;}
.y199{bottom:64.746424pt;}
.y93{bottom:65.119399pt;}
.yf5{bottom:65.122861pt;}
.y170{bottom:65.346963pt;}
.y146{bottom:65.346990pt;}
.yaa{bottom:65.739771pt;}
.y117{bottom:69.192435pt;}
.yc2{bottom:71.710652pt;}
.y60{bottom:71.864431pt;}
.y8b{bottom:72.660321pt;}
.y10b{bottom:73.792384pt;}
.y21c{bottom:73.917419pt;}
.y1f0{bottom:74.197286pt;}
.y1c4{bottom:74.427809pt;}
.yf9{bottom:74.638082pt;}
.yad{bottom:74.833962pt;}
.y92{bottom:75.190703pt;}
.y27{bottom:75.199947pt;}
.yfb{bottom:77.831382pt;}
.yaf{bottom:77.887731pt;}
.y5f{bottom:78.308623pt;}
.y198{bottom:79.067640pt;}
.y16f{bottom:79.646954pt;}
.y145{bottom:79.646981pt;}
.yc5{bottom:81.899404pt;}
.y90{bottom:82.616407pt;}
.y11a{bottom:82.695232pt;}
.y105{bottom:82.738497pt;}
.y65{bottom:82.818911pt;}
.y5e{bottom:84.752816pt;}
.yc7{bottom:85.318740pt;}
.y10a{bottom:85.739983pt;}
.y64{bottom:86.042085pt;}
.y8d{bottom:86.641679pt;}
.y14c{bottom:86.646720pt;}
.y19e{bottom:86.723080pt;}
.ya7{bottom:86.904209pt;}
.yf2{bottom:87.267141pt;}
.y21b{bottom:87.276222pt;}
.y122{bottom:87.489493pt;}
.y1ef{bottom:87.504331pt;}
.y1c3{bottom:87.674567pt;}
.yae{bottom:89.929719pt;}
.yfa{bottom:90.432906pt;}
.y8f{bottom:91.055593pt;}
.y8c{bottom:91.219410pt;}
.y4b{bottom:92.533307pt;}
.y114{bottom:92.720720pt;}
.y197{bottom:93.388857pt;}
.y16e{bottom:93.946945pt;}
.y144{bottom:93.946971pt;}
.y1f6{bottom:94.036173pt;}
.ybf{bottom:95.422404pt;}
.y175{bottom:95.474880pt;}
.y119{bottom:96.084344pt;}
.yf8{bottom:96.959768pt;}
.yac{bottom:98.808610pt;}
.yc6{bottom:98.812257pt;}
.y107{bottom:99.320170pt;}
.yf7{bottom:99.722490pt;}
.y21a{bottom:100.635024pt;}
.y231{bottom:100.703587pt;}
.y1ee{bottom:100.811376pt;}
.y1c2{bottom:100.921326pt;}
.y26{bottom:101.199973pt;}
.y113{bottom:102.556920pt;}
.y9d{bottom:102.966893pt;}
.ya9{bottom:103.621342pt;}
.y5d{bottom:104.083237pt;}
.y109{bottom:104.557133pt;}
.y106{bottom:104.751614pt;}
.yf4{bottom:104.756373pt;}
.y196{bottom:107.710073pt;}
.y85{bottom:108.159527pt;}
.y16d{bottom:108.248132pt;}
.y143{bottom:108.248158pt;}
.yc4{bottom:108.759400pt;}
.yab{bottom:108.898764pt;}
.ya8{bottom:109.094813pt;}
.y6e{bottom:109.516453pt;}
.yf6{bottom:110.279970pt;}
.yf3{bottom:110.485095pt;}
.y116{bottom:111.303019pt;}
.y219{bottom:113.993826pt;}
.y1ed{bottom:114.118421pt;}
.yc1{bottom:114.149604pt;}
.y1c1{bottom:114.168084pt;}
.y1ca{bottom:115.205373pt;}
.y88{bottom:115.765444pt;}
.y118{bottom:117.171837pt;}
.y115{bottom:117.389782pt;}
.y8a{bottom:118.319461pt;}
.yc3{bottom:120.064185pt;}
.yc0{bottom:120.283830pt;}
.y4a{bottom:121.199973pt;}
.y195{bottom:122.031290pt;}
.y16c{bottom:122.548122pt;}
.y142{bottom:122.548149pt;}
.y230{bottom:124.703587pt;}
.y82{bottom:125.860383pt;}
.y218{bottom:127.353746pt;}
.y1c0{bottom:127.414843pt;}
.y1ec{bottom:127.425467pt;}
.ya1{bottom:127.590515pt;}
.y56{bottom:127.757307pt;}
.y89{bottom:128.390765pt;}
.y41{bottom:133.466653pt;}
.y25{bottom:134.533307pt;}
.y87{bottom:135.816616pt;}
.y194{bottom:136.352506pt;}
.ya4{bottom:136.684706pt;}
.y16b{bottom:136.848113pt;}
.y141{bottom:136.848140pt;}
.ya6{bottom:139.736709pt;}
.y84{bottom:139.841740pt;}
.y1bf{bottom:140.662709pt;}
.y217{bottom:140.712548pt;}
.y1eb{bottom:140.733625pt;}
.y233{bottom:141.705440pt;}
.y86{bottom:144.255506pt;}
.y83{bottom:144.419471pt;}
.y9e{bottom:148.754954pt;}
.y6{bottom:149.265307pt;}
.y193{bottom:150.674921pt;}
.y14{bottom:150.933307pt;}
.y16a{bottom:151.148104pt;}
.y140{bottom:151.148131pt;}
.ya5{bottom:151.780640pt;}
.y1be{bottom:153.909468pt;}
.y1ea{bottom:154.040670pt;}
.y216{bottom:154.071351pt;}
.y7c{bottom:159.888333pt;}
.ya3{bottom:160.659178pt;}
.y192{bottom:164.996137pt;}
.y169{bottom:165.448095pt;}
.y13f{bottom:165.448121pt;}
.ya0{bottom:165.470321pt;}
.y49{bottom:165.866640pt;}
.y22f{bottom:166.036920pt;}
.y24{bottom:166.533307pt;}
.y1bd{bottom:167.156226pt;}
.y1e9{bottom:167.347715pt;}
.y215{bottom:167.430153pt;}
.y7f{bottom:167.494250pt;}
.y22{bottom:168.533307pt;}
.y81{bottom:170.046790pt;}
.ya2{bottom:170.749509pt;}
.y9f{bottom:170.945557pt;}
.y40{bottom:172.133320pt;}
.y55{bottom:174.423840pt;}
.ydf{bottom:177.555467pt;}
.y79{bottom:177.589189pt;}
.y38{bottom:179.199973pt;}
.y191{bottom:179.317354pt;}
.y168{bottom:179.748086pt;}
.y13e{bottom:179.748112pt;}
.y80{bottom:180.119719pt;}
.y1bc{bottom:180.402985pt;}
.y1e8{bottom:180.654760pt;}
.y214{bottom:180.788955pt;}
.y7e{bottom:187.545274pt;}
.y22e{bottom:190.036920pt;}
.y7b{bottom:191.569069pt;}
.y190{bottom:193.638570pt;}
.y1bb{bottom:193.649743pt;}
.y1e7{bottom:193.961805pt;}
.y167{bottom:194.049272pt;}
.y13d{bottom:194.049299pt;}
.y213{bottom:194.147758pt;}
.y48{bottom:194.533307pt;}
.y7d{bottom:195.984312pt;}
.y7a{bottom:196.148278pt;}
.y13{bottom:197.599973pt;}
.y21{bottom:200.533307pt;}
.yf0{bottom:205.556640pt;}
.y1ba{bottom:206.896502pt;}
.y1e6{bottom:207.269964pt;}
.y212{bottom:207.507677pt;}
.yd1{bottom:207.681467pt;}
.y18f{bottom:207.959787pt;}
.y166{bottom:208.349263pt;}
.y13c{bottom:208.349290pt;}
.y3f{bottom:210.533307pt;}
.y22d{bottom:214.036920pt;}
.y5a{bottom:216.533307pt;}
.y37{bottom:217.866640pt;}
.y54{bottom:219.757173pt;}
.y1b9{bottom:220.144368pt;}
.y1e5{bottom:220.577009pt;}
.y211{bottom:220.866480pt;}
.y18e{bottom:222.281003pt;}
.y165{bottom:222.649254pt;}
.y13b{bottom:222.649281pt;}
.y30{bottom:229.697440pt;}
.y20{bottom:232.533307pt;}
.y1b8{bottom:233.391127pt;}
.y1e4{bottom:233.884054pt;}
.y210{bottom:234.225282pt;}
.y12{bottom:236.266640pt;}
.y18d{bottom:236.603418pt;}
.y164{bottom:236.949245pt;}
.y13a{bottom:236.949271pt;}
.y47{bottom:238.533307pt;}
.y22c{bottom:239.370253pt;}
.y7{bottom:240.163573pt;}
.y1b7{bottom:246.637885pt;}
.ye7{bottom:246.695867pt;}
.y1e3{bottom:247.191099pt;}
.y3e{bottom:247.199973pt;}
.y20f{bottom:247.584084pt;}
.y234{bottom:247.723573pt;}
.y18c{bottom:250.924634pt;}
.y163{bottom:251.249236pt;}
.y139{bottom:251.249262pt;}
.y36{bottom:256.533307pt;}
.y1b6{bottom:259.884644pt;}
.y1e2{bottom:260.498144pt;}
.y20e{bottom:260.942887pt;}
.y1f{bottom:264.533307pt;}
.y53{bottom:265.090507pt;}
.y18b{bottom:265.245850pt;}
.y162{bottom:265.549226pt;}
.y138{bottom:265.549253pt;}
.y2f{bottom:265.697307pt;}
.y1b5{bottom:273.131402pt;}
.y1e1{bottom:273.805189pt;}
.y20d{bottom:274.301689pt;}
.yba{bottom:275.744240pt;}
.y104{bottom:275.915200pt;}
.y3d{bottom:279.199973pt;}
.y22b{bottom:279.370253pt;}
.y18a{bottom:279.567067pt;}
.y161{bottom:279.850413pt;}
.y137{bottom:279.850440pt;}
.y73{bottom:280.533307pt;}
.y11{bottom:282.933307pt;}
.y46{bottom:283.199973pt;}
.y1b4{bottom:286.378160pt;}
.y1e0{bottom:287.113348pt;}
.y20c{bottom:287.661609pt;}
.y23{bottom:288.533307pt;}
.y189{bottom:293.888283pt;}
.y160{bottom:294.150404pt;}
.y136{bottom:294.150431pt;}
.y52{bottom:294.423840pt;}
.y43{bottom:296.533307pt;}
.y1b3{bottom:299.626027pt;}
.y2e{bottom:300.363973pt;}
.y1df{bottom:300.420393pt;}
.y20b{bottom:301.020411pt;}
.y22a{bottom:304.703587pt;}
.y5b{bottom:306.156133pt;}
.y188{bottom:308.209500pt;}
.y15f{bottom:308.450395pt;}
.y135{bottom:308.450422pt;}
.ybc{bottom:309.236800pt;}
.y45{bottom:311.199973pt;}
.ydc{bottom:312.650373pt;}
.y1b2{bottom:312.872785pt;}
.y76{bottom:313.623067pt;}
.y1de{bottom:313.727438pt;}
.y20a{bottom:314.379213pt;}
.y35{bottom:319.199973pt;}
.y1e{bottom:320.533307pt;}
.y10{bottom:321.599973pt;}
.y187{bottom:322.531914pt;}
.y15e{bottom:322.750386pt;}
.y134{bottom:322.750412pt;}
.y51{bottom:325.090507pt;}
.y1b1{bottom:326.119544pt;}
.y1dd{bottom:327.034483pt;}
.y209{bottom:327.738016pt;}
.y229{bottom:328.703587pt;}
.y2d{bottom:335.030640pt;}
.y186{bottom:336.853131pt;}
.y15d{bottom:337.050376pt;}
.y133{bottom:337.050403pt;}
.y1b0{bottom:339.366302pt;}
.y44{bottom:339.866640pt;}
.y1dc{bottom:340.341528pt;}
.y208{bottom:341.096818pt;}
.y185{bottom:351.174347pt;}
.y3c{bottom:351.199973pt;}
.y15c{bottom:351.350367pt;}
.y132{bottom:351.350394pt;}
.y78{bottom:351.453733pt;}
.y1d{bottom:352.533307pt;}
.y1af{bottom:352.613061pt;}
.y1db{bottom:353.648573pt;}
.y207{bottom:354.456738pt;}
.y34{bottom:357.866640pt;}
.y5{bottom:363.811040pt;}
.y184{bottom:365.495564pt;}
.y15b{bottom:365.651554pt;}
.y131{bottom:365.651581pt;}
.y1ae{bottom:365.859819pt;}
.y1da{bottom:366.956732pt;}
.y206{bottom:367.815540pt;}
.y232{bottom:368.067440pt;}
.yf{bottom:368.266640pt;}
.y228{bottom:368.970253pt;}
.y50{bottom:371.757173pt;}
.yef{bottom:372.889973pt;}
.ybe{bottom:374.538800pt;}
.y1ad{bottom:379.107686pt;}
.y183{bottom:379.816780pt;}
.y15a{bottom:379.951545pt;}
.y130{bottom:379.951572pt;}
.y1d9{bottom:380.263777pt;}
.y205{bottom:381.174342pt;}
.y3b{bottom:383.199973pt;}
.y1c{bottom:384.533307pt;}
.y1ac{bottom:392.354444pt;}
.y1d8{bottom:393.570822pt;}
.y182{bottom:394.139195pt;}
.y159{bottom:394.251536pt;}
.y12f{bottom:394.251562pt;}
.y204{bottom:394.533145pt;}
.y2c{bottom:395.030640pt;}
.y33{bottom:395.199973pt;}
.y4f{bottom:402.423840pt;}
.y1ab{bottom:405.601203pt;}
.y1d7{bottom:406.877867pt;}
.ye{bottom:406.933307pt;}
.y59{bottom:407.199973pt;}
.y203{bottom:407.891947pt;}
.y181{bottom:408.460411pt;}
.y158{bottom:408.551527pt;}
.y12e{bottom:408.551553pt;}
.ydd{bottom:411.922000pt;}
.y4{bottom:414.477707pt;}
.y42{bottom:416.533307pt;}
.y1aa{bottom:418.847961pt;}
.y1d6{bottom:420.184912pt;}
.y227{bottom:420.703587pt;}
.y202{bottom:421.250749pt;}
.y180{bottom:422.781628pt;}
.y157{bottom:422.851517pt;}
.y12d{bottom:422.851544pt;}
.y2b{bottom:429.697307pt;}
.y1a9{bottom:432.094720pt;}
.y4e{bottom:433.090507pt;}
.y1d5{bottom:433.491957pt;}
.y32{bottom:433.866640pt;}
.y201{bottom:434.610669pt;}
.yf1{bottom:435.150267pt;}
.y17f{bottom:437.102844pt;}
.y156{bottom:437.152824pt;}
.y12c{bottom:437.152851pt;}
.y58{bottom:437.866640pt;}
.y3a{bottom:438.533307pt;}
.y1b{bottom:440.533307pt;}
.y226{bottom:444.703587pt;}
.y1a8{bottom:445.342586pt;}
.yd{bottom:445.599973pt;}
.y1d4{bottom:446.800116pt;}
.y200{bottom:447.969471pt;}
.y17e{bottom:451.424061pt;}
.y155{bottom:451.452695pt;}
.y12b{bottom:451.452722pt;}
.y1a7{bottom:458.589345pt;}
.y1d3{bottom:460.107161pt;}
.y1ff{bottom:461.328386pt;}
.y3{bottom:465.144373pt;}
.y2a{bottom:465.697307pt;}
.y17d{bottom:465.745277pt;}
.y154{bottom:465.752686pt;}
.y12a{bottom:465.752712pt;}
.ye1{bottom:466.187867pt;}
.y225{bottom:470.036920pt;}
.y71{bottom:470.410907pt;}
.y39{bottom:470.533307pt;}
.y1a6{bottom:471.836103pt;}
.y1a{bottom:472.533307pt;}
.y1d2{bottom:473.414206pt;}
.y1fe{bottom:474.687076pt;}
.y4d{bottom:478.423840pt;}
.y153{bottom:480.052677pt;}
.y129{bottom:480.052703pt;}
.y17c{bottom:480.067811pt;}
.y1a5{bottom:485.082973pt;}
.y1d1{bottom:486.721251pt;}
.y1fd{bottom:488.045878pt;}
.yc{bottom:492.266640pt;}
.y152{bottom:494.352667pt;}
.y128{bottom:494.352694pt;}
.y17b{bottom:494.388908pt;}
.y1a4{bottom:498.329620pt;}
.y1d0{bottom:500.028296pt;}
.y29{bottom:500.363973pt;}
.y1fc{bottom:501.404681pt;}
.y70{bottom:502.410773pt;}
.y19{bottom:504.533307pt;}
.yb9{bottom:505.077440pt;}
.y151{bottom:508.652658pt;}
.y127{bottom:508.652685pt;}
.y17a{bottom:508.710125pt;}
.y224{bottom:510.036920pt;}
.y1a3{bottom:511.576379pt;}
.y1cf{bottom:513.336454pt;}
.y1fb{bottom:514.764600pt;}
.y6c{bottom:517.637067pt;}
.y150{bottom:522.953845pt;}
.y126{bottom:522.953872pt;}
.y179{bottom:523.031341pt;}
.y1a2{bottom:524.824245pt;}
.y4c{bottom:525.090507pt;}
.y1ce{bottom:526.643499pt;}
.y1fa{bottom:528.123515pt;}
.yb{bottom:530.933307pt;}
.y31{bottom:533.866640pt;}
.ydb{bottom:533.983707pt;}
.ybb{bottom:534.656933pt;}
.y28{bottom:535.030640pt;}
.y18{bottom:536.533307pt;}
.yee{bottom:537.556640pt;}
.y57{bottom:537.866640pt;}
.y72{bottom:539.199973pt;}
.y14f{bottom:543.236986pt;}
.y125{bottom:543.237012pt;}
.y178{bottom:543.344588pt;}
.y1a1{bottom:543.613589pt;}
.y1cd{bottom:545.518243pt;}
.y1f9{bottom:547.071559pt;}
.y1a0{bottom:550.236304pt;}
.y14e{bottom:550.386383pt;}
.y124{bottom:550.386410pt;}
.y223{bottom:550.436907pt;}
.y177{bottom:550.505795pt;}
.y1cc{bottom:552.171210pt;}
.y1f8{bottom:553.751631pt;}
.yed{bottom:565.556640pt;}
.y74{bottom:572.456533pt;}
.y19f{bottom:591.664872pt;}
.y176{bottom:591.793635pt;}
.y14d{bottom:592.314985pt;}
.y123{bottom:592.315012pt;}
.y1cb{bottom:592.426226pt;}
.y1f7{bottom:592.919999pt;}
.y17{bottom:602.366507pt;}
.yec{bottom:610.181707pt;}
.ya{bottom:614.099840pt;}
.y222{bottom:618.584373pt;}
.y16{bottom:637.033173pt;}
.yeb{bottom:644.848240pt;}
.y14b{bottom:666.848907pt;}
.y2{bottom:712.581707pt;}
.h1f{height:0.000000pt;}
.hf{height:0.859162pt;}
.h2{height:15.037499pt;}
.h1a{height:18.745240pt;}
.h36{height:19.296427pt;}
.h16{height:20.665067pt;}
.h4b{height:20.665080pt;}
.h18{height:20.665480pt;}
.h49{height:22.432013pt;}
.h14{height:30.239587pt;}
.h1e{height:30.904339pt;}
.h80{height:33.117229pt;}
.h83{height:33.267947pt;}
.h87{height:33.397341pt;}
.h78{height:35.750336pt;}
.h7c{height:35.803401pt;}
.h63{height:36.655939pt;}
.h2c{height:36.951488pt;}
.h58{height:38.662217pt;}
.h6d{height:41.078583pt;}
.h3a{height:41.398904pt;}
.h85{height:42.206714pt;}
.h7a{height:43.690942pt;}
.h1d{height:44.149182pt;}
.h81{height:44.773359pt;}
.h22{height:45.084522pt;}
.h28{height:45.085113pt;}
.h25{height:45.091022pt;}
.h76{height:45.180391pt;}
.h44{height:47.449066pt;}
.h7e{height:47.558304pt;}
.h24{height:49.956016pt;}
.h20{height:49.956606pt;}
.h5{height:51.562500pt;}
.h62{height:52.365777pt;}
.h59{height:52.728051pt;}
.h2b{height:52.787992pt;}
.h66{height:53.475193pt;}
.h69{height:53.482902pt;}
.h2f{height:53.906353pt;}
.h32{height:53.914124pt;}
.h1b{height:54.726696pt;}
.h57{height:55.231897pt;}
.h7{height:56.250000pt;}
.h5b{height:56.402035pt;}
.h5f{height:56.410166pt;}
.h37{height:57.181775pt;}
.h6c{height:58.683858pt;}
.h39{height:59.141461pt;}
.h7f{height:59.612962pt;}
.h31{height:59.731066pt;}
.h2d{height:59.731773pt;}
.h82{height:59.884263pt;}
.h70{height:59.927129pt;}
.h73{height:59.935768pt;}
.h86{height:60.112264pt;}
.h19{height:60.332870pt;}
.h3d{height:60.394426pt;}
.h40{height:60.403132pt;}
.h21{height:60.528492pt;}
.h27{height:60.529082pt;}
.he{height:60.570949pt;}
.h35{height:61.238769pt;}
.h68{height:62.751168pt;}
.h17{height:62.869387pt;}
.h4d{height:62.872301pt;}
.h77{height:64.353188pt;}
.h7b{height:64.443438pt;}
.h64{height:65.481137pt;}
.h52{height:66.824053pt;}
.h3f{height:66.920191pt;}
.h3b{height:66.920983pt;}
.h43{height:67.784574pt;}
.h42{height:68.038933pt;}
.h4a{height:68.244974pt;}
.h47{height:69.220651pt;}
.h72{height:70.322277pt;}
.h65{height:71.793436pt;}
.h29{height:72.310851pt;}
.h2e{height:72.372292pt;}
.h53{height:72.752225pt;}
.h6e{height:73.381624pt;}
.h12{height:73.454160pt;}
.h11{height:73.455022pt;}
.h13{height:73.455885pt;}
.h10{height:73.463646pt;}
.h4c{height:74.128800pt;}
.h26{height:74.312871pt;}
.h23{height:74.318780pt;}
.h8{height:75.000000pt;}
.h5a{height:75.722885pt;}
.h45{height:76.701019pt;}
.h5d{height:76.916032pt;}
.h88{height:79.687500pt;}
.h9{height:80.000000pt;}
.h6f{height:80.455521pt;}
.h3c{height:81.082893pt;}
.hb{height:84.375000pt;}
.h6a{height:85.769308pt;}
.h15{height:86.282231pt;}
.h34{height:86.460849pt;}
.h67{height:88.150231pt;}
.h5e{height:88.712763pt;}
.h33{height:88.853905pt;}
.h30{height:88.860969pt;}
.hc{height:89.062500pt;}
.h55{height:90.408335pt;}
.h60{height:90.463694pt;}
.h46{height:92.932594pt;}
.h5c{height:92.974932pt;}
.h4{height:93.750000pt;}
.h74{height:96.117622pt;}
.h50{height:96.144102pt;}
.h41{height:96.867123pt;}
.h71{height:98.785811pt;}
.h3e{height:99.556118pt;}
.h6{height:103.125000pt;}
.hd{height:105.642400pt;}
.h4e{height:109.948471pt;}
.h51{height:110.881698pt;}
.h4f{height:110.890014pt;}
.h48{height:111.032652pt;}
.ha{height:112.500000pt;}
.h61{height:113.203600pt;}
.h56{height:120.286267pt;}
.h6b{height:127.804147pt;}
.h38{height:130.779467pt;}
.h3{height:150.000000pt;}
.h89{height:168.750000pt;}
.h54{height:171.356336pt;}
.h2a{height:180.313467pt;}
.h1c{height:203.982800pt;}
.h79{height:603.870453pt;}
.h84{height:604.539427pt;}
.h7d{height:604.663587pt;}
.h75{height:604.663733pt;}
.h1{height:720.000000pt;}
.h0{height:793.333333pt;}
.w9{width:50.666533pt;}
.w5{width:52.919200pt;}
.w6{width:90.718533pt;}
.wb{width:168.179600pt;}
.w4{width:169.505867pt;}
.wc{width:183.205733pt;}
.w3{width:226.796667pt;}
.w2{width:302.395600pt;}
.we{width:347.755067pt;}
.wd{width:361.815200pt;}
.w10{width:466.546267pt;}
.w11{width:472.399867pt;}
.wf{width:474.106133pt;}
.w7{width:498.952933pt;}
.w8{width:506.512800pt;}
.wa{width:514.072667pt;}
.w1{width:959.999867pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1d{left:1.012614pt;}
.x71{left:5.794132pt;}
.x6e{left:7.015729pt;}
.x2{left:25.309093pt;}
.x50{left:29.238195pt;}
.x6d{left:47.750404pt;}
.x70{left:58.826686pt;}
.x15{left:61.476724pt;}
.x27{left:62.856859pt;}
.x3b{left:63.809256pt;}
.x52{left:69.436500pt;}
.x28{left:76.053989pt;}
.x1f{left:77.287268pt;}
.x35{left:78.458309pt;}
.x34{left:80.112338pt;}
.x1{left:81.284840pt;}
.x48{left:82.344360pt;}
.x16{left:83.711879pt;}
.x29{left:88.341151pt;}
.x20{left:89.574431pt;}
.x36{left:90.931642pt;}
.x41{left:92.070080pt;}
.x55{left:93.105216pt;}
.x64{left:94.397465pt;}
.x56{left:102.591714pt;}
.x65{left:104.128735pt;}
.x53{left:108.728345pt;}
.x51{left:116.527007pt;}
.x2b{left:121.998199pt;}
.x22{left:123.022890pt;}
.x17{left:123.991303pt;}
.x38{left:124.886899pt;}
.x2a{left:126.201256pt;}
.x21{left:127.225947pt;}
.x37{left:129.153639pt;}
.x42{left:130.770620pt;}
.x58{left:136.472280pt;}
.x66{left:138.883488pt;}
.x57{left:141.317729pt;}
.x1a{left:144.128429pt;}
.x23{left:145.742082pt;}
.x18{left:147.115093pt;}
.x49{left:148.749400pt;}
.x43{left:149.802640pt;}
.x6f{left:156.964627pt;}
.xa{left:160.319960pt;}
.x59{left:162.663853pt;}
.x67{left:163.908514pt;}
.xb{left:168.319960pt;}
.x8{left:169.852307pt;}
.x3f{left:171.553560pt;}
.x5b{left:182.168887pt;}
.x5e{left:184.955321pt;}
.x5a{left:186.752826pt;}
.x3{left:189.264080pt;}
.xe{left:197.653293pt;}
.x7{left:200.028387pt;}
.xf{left:201.653293pt;}
.x78{left:203.343453pt;}
.x73{left:204.886893pt;}
.x76{left:205.815667pt;}
.x4{left:208.337000pt;}
.x2c{left:220.377632pt;}
.xc{left:221.653293pt;}
.x30{left:224.327776pt;}
.x39{left:225.468943pt;}
.x10{left:226.986627pt;}
.x11{left:228.319960pt;}
.x74{left:230.220227pt;}
.x44{left:231.629740pt;}
.x75{left:238.139880pt;}
.x12{left:247.791107pt;}
.x61{left:256.944497pt;}
.x63{left:263.449606pt;}
.x6a{left:268.741665pt;}
.x19{left:281.568800pt;}
.x54{left:283.735867pt;}
.x1b{left:284.883200pt;}
.x4f{left:286.217733pt;}
.x24{left:287.758216pt;}
.x14{left:289.128667pt;}
.x2d{left:314.876016pt;}
.x5{left:318.941160pt;}
.x31{left:321.369635pt;}
.x4a{left:323.648880pt;}
.x3c{left:326.238914pt;}
.x4c{left:328.848168pt;}
.x45{left:331.375320pt;}
.x5c{left:334.937281pt;}
.x62{left:370.774079pt;}
.x5d{left:377.444669pt;}
.x6b{left:384.826211pt;}
.x25{left:385.921238pt;}
.x6{left:392.396893pt;}
.x5f{left:396.013377pt;}
.x68{left:400.377433pt;}
.x77{left:402.470227pt;}
.x72{left:404.935333pt;}
.x9{left:411.397560pt;}
.x2e{left:413.037735pt;}
.x32{left:419.531354pt;}
.x26{left:422.793156pt;}
.x4b{left:424.545520pt;}
.x3d{left:425.887939pt;}
.x6c{left:428.431918pt;}
.x46{left:432.273300pt;}
.x4d{left:433.730163pt;}
.x60{left:438.520765pt;}
.x69{left:443.983140pt;}
.x2f{left:449.910956pt;}
.x33{left:456.404575pt;}
.x3a{left:457.766734pt;}
.x3e{left:463.319849pt;}
.x47{left:470.172520pt;}
.x4e{left:473.125855pt;}
.x40{left:682.243200pt;}
.x1c{left:803.201467pt;}
.x1e{left:893.920267pt;}
.x13{left:920.586493pt;}
.xd{left:924.586493pt;}
}




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