
    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_84a552bd29a5298acdea3145.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958496;font-style:normal;font-weight: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_fdda8e1be2fad8e548e5ea9a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;font-style:normal;font-weight: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_302bf8c5105ba8cd6cda4ec0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.190918;font-style:normal;font-weight: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_f02097b4b348f5f1c8612a14.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.190918;font-style:normal;font-weight: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_b0230679c1229d316ef0f01c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2e1b6d5cec3b186704e29816.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.349000;font-style:normal;font-weight: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_6fbe3f7c60c0a1d54f057da6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.362000;font-style:normal;font-weight: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_56b2977b87d69c624ec1f31b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.384000;font-style:normal;font-weight: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_d362eb586f64cea5b3d04406.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.385000;font-style:normal;font-weight: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_d62ef130cef2dc9fa4974d7a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.727000;font-style:normal;font-weight: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_8dd753fbefa8a5367206f79c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.109000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_1d7bc1315ef0115296368719.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.969000;font-style:normal;font-weight: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_a151eff2ebabb04f1d42a6d7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.969000;font-style:normal;font-weight: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_a5250d78ddb7279078d7bbcd.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.457000;font-style:normal;font-weight: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_f1e6ab64e3b3af82f11504e6.woff2')format("woff");}.fff{font-family:fff;line-height:2.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:ff10;src:url('chunks/assets/font_8af819fb4099d0e1a608f562.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.817000;font-style:normal;font-weight: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_e10e7ccf377410cd2e7d88b6.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.952000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_d7931e31ac9f0e42058e9c51.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.817000;font-style:normal;font-weight: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_04daf4b2250ee6f6000d6a68.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.952000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_c148f728bebcfc84c7be28ee.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.952000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_2914d5ab3292e205dc4fce72.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.817000;font-style:normal;font-weight: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_292d1828f9962591719d5206.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_449ea330f519ec2e97b522c6.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.866000;font-style:normal;font-weight: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_cf0a03d6a2ea174909b375f6.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.866000;font-style:normal;font-weight: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_ca99db713190a293d6cb6263.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.050000;font-style:normal;font-weight: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_3d6d95360acd55cd7334a298.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_ad092236180746c6ce7ad3ff.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_01a0c8e00b24f1fee82ddf7c.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_9010ae1f5711a5d455d06402.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_117f83ed7958292e6992c7d7.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_75e64067eb63678d83c1b336.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_1cd7ab119df37472d137e112.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.969000;font-style:normal;font-weight: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_1d047dce424a39940fb16a73.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.457000;font-style:normal;font-weight: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_8d9a39e74dc1112ed9521ced.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.817000;font-style:normal;font-weight: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_8fc2b179b3ab0f4eabb5ba6d.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.199000;font-style:normal;font-weight: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_3c1410d61e4f01ab3c0f0616.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.969000;font-style:normal;font-weight: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_0ddddd2ffe298b8ec9e938e1.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.457000;font-style:normal;font-weight: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_b19dbc8d62fd2cf4fceda717.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.817000;font-style:normal;font-weight: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_78cd82ca3cca6ffcd9d4ee3b.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.457000;font-style:normal;font-weight: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_7dbc2e446b87de692c699943.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.969000;font-style:normal;font-weight: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_80192393611bf6272503185d.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.457000;font-style:normal;font-weight: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_95b24e04eeed10ecc4265a6f.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_51b855d3900f7c015b4edeb9.woff2')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_f6287852bd406edafb9bc350.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.199000;font-style:normal;font-weight: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_2830b27f5b8790f7ac6564cd.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.957000;font-style:normal;font-weight: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_6fb1c99d4bd319a58bf3d58f.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.853000;font-style:normal;font-weight: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_5dafb14fd8a0504b599fc7c6.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.727000;font-style:normal;font-weight: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_116c95daaf6b0a8065dfb70b.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.964000;font-style:normal;font-weight: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_760502ba4fb0dfd81b7f915d.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.964000;font-style:normal;font-weight: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_d20772e85b6b028a2f3d79a0.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.952000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_c18a80b152d0ddbbca06dc0a.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.964000;font-style:normal;font-weight: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_60de145f51f10b7dcde72407.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.952000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_5d65295465bd6a9d6526dfc7.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.969000;font-style:normal;font-weight: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_3282c260d267be153085dca6.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.964000;font-style:normal;font-weight: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_d4ba279313afde2dd7fcc77e.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.969000;font-style:normal;font-weight: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_e0aec9b721cbdb40fa3b7514.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.952000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_d920ffe146a6c5d5772d227e.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.957000;font-style:normal;font-weight: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_11b22b66d1717c0d89436c3e.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.969000;font-style:normal;font-weight: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_df70db0e4badf9c8ed4052b3.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.969000;font-style:normal;font-weight: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_b3e6e97f90decde6850593e5.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.957000;font-style:normal;font-weight: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_0cbdd5963b2cb899d1a29366.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.866000;font-style:normal;font-weight: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_b07a59f3c77d4478ca2f55b9.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_bae563a0e791ea4115f7f808.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.727000;font-style:normal;font-weight: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_b7307f214f79a3cd7a83088d.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.964000;font-style:normal;font-weight: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_3ecf79060a06d9da5d550449.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.450000;font-style:normal;font-weight: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_0430823e54599b17e7cc54f4.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.964000;font-style:normal;font-weight: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_aa9751ab24bb1fc0c76f3256.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.258000;font-style:normal;font-weight: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_f9895eec05cd74f0d333657a.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.969000;font-style:normal;font-weight: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_16cc2a5812d50e61a93778d3.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.450000;font-style:normal;font-weight: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_6f42d58d8f82cc2a92903134.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.969000;font-style:normal;font-weight: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_1c9e65b8db4f1b4e6b64fe81.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.450000;font-style:normal;font-weight: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_0ede8691c02398ed7453e512.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.817000;font-style:normal;font-weight: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_0cf0263222af23e553f6a32f.woff2')format("woff");}.ff49{font-family:ff49;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:ff4a;src:url('chunks/assets/font_29f5fa6cca7d7d878f6fee91.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.969000;font-style:normal;font-weight: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_3fbe4cac6e56dc867a72b3c1.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:0.450000;font-style:normal;font-weight: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_dfe488c1c9eae81c9a63d848.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:1.440000;font-style:normal;font-weight: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_f1f3c2f668c5e0513304add2.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:0.969000;font-style:normal;font-weight: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_6baf40c9c33bb437c4d55e10.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v14{vertical-align:-64.743713px;}
.v11{vertical-align:-43.770131px;}
.v7{vertical-align:-18.899963px;}
.v5{vertical-align:-17.849991px;}
.vf{vertical-align:-15.822601px;}
.v17{vertical-align:-12.853088px;}
.v3{vertical-align:-10.907377px;}
.v10{vertical-align:-9.503998px;}
.ve{vertical-align:-8.099442px;}
.vd{vertical-align:-3.600037px;}
.v1{vertical-align:-1.488000px;}
.v0{vertical-align:0.000000px;}
.v16{vertical-align:1.026705px;}
.v15{vertical-align:8.479614px;}
.v8{vertical-align:10.799927px;}
.v9{vertical-align:14.687496px;}
.v6{vertical-align:17.849991px;}
.v4{vertical-align:18.851963px;}
.v2{vertical-align:21.000000px;}
.vb{vertical-align:22.512000px;}
.v12{vertical-align:43.770131px;}
.va{vertical-align:44.982000px;}
.v13{vertical-align:51.892822px;}
.vc{vertical-align:59.700073px;}
.ls17{letter-spacing:-11.124000px;}
.lsd9{letter-spacing:-4.185000px;}
.lscf{letter-spacing:-3.960000px;}
.ls57{letter-spacing:-1.470000px;}
.ls49{letter-spacing:-1.218000px;}
.ls38{letter-spacing:-1.188000px;}
.ls50{letter-spacing:-1.050000px;}
.ls4e{letter-spacing:-1.008000px;}
.lsd0{letter-spacing:-0.900000px;}
.ls72{letter-spacing:-0.864000px;}
.ls4c{letter-spacing:-0.840000px;}
.ls61{letter-spacing:-0.756000px;}
.ls48{letter-spacing:-0.672000px;}
.ls3c{letter-spacing:-0.648000px;}
.ls55{letter-spacing:-0.630000px;}
.ls4f{letter-spacing:-0.546000px;}
.ls76{letter-spacing:-0.540000px;}
.ls4d{letter-spacing:-0.504000px;}
.lscc{letter-spacing:-0.495000px;}
.lsba{letter-spacing:-0.491400px;}
.ls44{letter-spacing:-0.486000px;}
.ls1e{letter-spacing:-0.432000px;}
.ls56{letter-spacing:-0.420000px;}
.lsda{letter-spacing:-0.405000px;}
.ls1a{letter-spacing:-0.378000px;}
.lsd7{letter-spacing:-0.360000px;}
.ls47{letter-spacing:-0.336000px;}
.ls43{letter-spacing:-0.324000px;}
.lscb{letter-spacing:-0.315000px;}
.lsbb{letter-spacing:-0.280800px;}
.ls3e{letter-spacing:-0.270000px;}
.lscd{letter-spacing:-0.225000px;}
.ls3a{letter-spacing:-0.216000px;}
.ls45{letter-spacing:-0.210600px;}
.ls58{letter-spacing:-0.175500px;}
.ls4b{letter-spacing:-0.168000px;}
.ls1d{letter-spacing:-0.162000px;}
.ls89{letter-spacing:-0.140400px;}
.lsdb{letter-spacing:-0.135000px;}
.ls4a{letter-spacing:-0.126000px;}
.ls1c{letter-spacing:-0.108000px;}
.ls39{letter-spacing:-0.105300px;}
.lsce{letter-spacing:-0.090000px;}
.ls37{letter-spacing:-0.070200px;}
.ls36{letter-spacing:-0.054000px;}
.ls16{letter-spacing:0.000000px;}
.ls53{letter-spacing:0.000055px;}
.ls2a{letter-spacing:0.000083px;}
.ls54{letter-spacing:0.000146px;}
.ls29{letter-spacing:0.000267px;}
.lsb0{letter-spacing:0.005500px;}
.ls1{letter-spacing:0.013223px;}
.ls15{letter-spacing:0.017937px;}
.ls7a{letter-spacing:0.027095px;}
.ls71{letter-spacing:0.035100px;}
.lsb4{letter-spacing:0.036302px;}
.ls90{letter-spacing:0.041068px;}
.ls8b{letter-spacing:0.043182px;}
.ls9f{letter-spacing:0.043200px;}
.lsc4{letter-spacing:0.045000px;}
.ls8d{letter-spacing:0.045951px;}
.ls7b{letter-spacing:0.052650px;}
.ls22{letter-spacing:0.054000px;}
.ls9a{letter-spacing:0.054037px;}
.ls31{letter-spacing:0.067100px;}
.ls32{letter-spacing:0.067283px;}
.ls3f{letter-spacing:0.070200px;}
.lsa8{letter-spacing:0.082136px;}
.lsa6{letter-spacing:0.086400px;}
.ls5d{letter-spacing:0.088162px;}
.lsd1{letter-spacing:0.090000px;}
.ls5a{letter-spacing:0.091270px;}
.ls59{letter-spacing:0.091636px;}
.lsa0{letter-spacing:0.093467px;}
.ls6c{letter-spacing:0.098411px;}
.ls3b{letter-spacing:0.105300px;}
.ls74{letter-spacing:0.105464px;}
.ls73{letter-spacing:0.106196px;}
.ls30{letter-spacing:0.108000px;}
.ls9b{letter-spacing:0.108074px;}
.ls70{letter-spacing:0.109858px;}
.lsd{letter-spacing:0.113975px;}
.ls87{letter-spacing:0.123205px;}
.ls8{letter-spacing:0.126347px;}
.lse{letter-spacing:0.126531px;}
.ls5b{letter-spacing:0.131553px;}
.lsd8{letter-spacing:0.135000px;}
.ls27{letter-spacing:0.135127px;}
.ls5{letter-spacing:0.137963px;}
.ls3{letter-spacing:0.138054px;}
.ls18{letter-spacing:0.140400px;}
.ls8c{letter-spacing:0.156600px;}
.ls4{letter-spacing:0.156902px;}
.ls20{letter-spacing:0.157950px;}
.ls6e{letter-spacing:0.158381px;}
.ls7f{letter-spacing:0.158652px;}
.ls67{letter-spacing:0.158836px;}
.ls5e{letter-spacing:0.158927px;}
.ls78{letter-spacing:0.158931px;}
.ls9{letter-spacing:0.159016px;}
.ls6{letter-spacing:0.159019px;}
.ls75{letter-spacing:0.159022px;}
.ls77{letter-spacing:0.159114px;}
.ls6f{letter-spacing:0.159126px;}
.ls6b{letter-spacing:0.159293px;}
.ls5c{letter-spacing:0.159568px;}
.ls6d{letter-spacing:0.159660px;}
.ls62{letter-spacing:0.159751px;}
.ls1b{letter-spacing:0.162000px;}
.ls7{letter-spacing:0.175500px;}
.lsc7{letter-spacing:0.180000px;}
.ls9e{letter-spacing:0.182851px;}
.ls79{letter-spacing:0.189000px;}
.lsbf{letter-spacing:0.202500px;}
.ls66{letter-spacing:0.205162px;}
.ls8e{letter-spacing:0.205200px;}
.ls34{letter-spacing:0.210600px;}
.ls65{letter-spacing:0.215232px;}
.ls63{letter-spacing:0.215965px;}
.ls2{letter-spacing:0.216000px;}
.ls64{letter-spacing:0.216514px;}
.lsc2{letter-spacing:0.225000px;}
.lsa7{letter-spacing:0.236473px;}
.lsa3{letter-spacing:0.237600px;}
.ls60{letter-spacing:0.245700px;}
.ls5f{letter-spacing:0.257530px;}
.lsbc{letter-spacing:0.264000px;}
.ls25{letter-spacing:0.264033px;}
.ls24{letter-spacing:0.264035px;}
.ls2d{letter-spacing:0.268882px;}
.ls2c{letter-spacing:0.269432px;}
.lsa{letter-spacing:0.270000px;}
.ls69{letter-spacing:0.270625px;}
.ls7c{letter-spacing:0.277854px;}
.ls3d{letter-spacing:0.280800px;}
.ls7d{letter-spacing:0.282000px;}
.lsa2{letter-spacing:0.297000px;}
.lsd2{letter-spacing:0.315000px;}
.ls8a{letter-spacing:0.315900px;}
.ls21{letter-spacing:0.324000px;}
.ls14{letter-spacing:0.351000px;}
.ls2e{letter-spacing:0.357597px;}
.lsc5{letter-spacing:0.360000px;}
.ls91{letter-spacing:0.361800px;}
.ls12{letter-spacing:0.367210px;}
.ls13{letter-spacing:0.368550px;}
.ls23{letter-spacing:0.378000px;}
.ls6a{letter-spacing:0.383400px;}
.ls1f{letter-spacing:0.386100px;}
.ls7e{letter-spacing:0.393028px;}
.lsc9{letter-spacing:0.405000px;}
.lsb{letter-spacing:0.413353px;}
.ls46{letter-spacing:0.421200px;}
.ls2b{letter-spacing:0.432000px;}
.ls40{letter-spacing:0.432762px;}
.lsd4{letter-spacing:0.450000px;}
.ls35{letter-spacing:0.486000px;}
.ls26{letter-spacing:0.487788px;}
.ls88{letter-spacing:0.491400px;}
.lsbd{letter-spacing:0.495000px;}
.ls68{letter-spacing:0.514427px;}
.ls10{letter-spacing:0.526500px;}
.ls11{letter-spacing:0.528473px;}
.ls2f{letter-spacing:0.540000px;}
.lsc6{letter-spacing:0.576085px;}
.lsa4{letter-spacing:0.577800px;}
.lsdd{letter-spacing:0.585000px;}
.ls19{letter-spacing:0.594000px;}
.lsa5{letter-spacing:0.604800px;}
.lsdc{letter-spacing:0.630000px;}
.lsc{letter-spacing:0.648000px;}
.lsc0{letter-spacing:0.697500px;}
.ls33{letter-spacing:0.702000px;}
.ls28{letter-spacing:0.756000px;}
.lsd3{letter-spacing:0.760552px;}
.ls95{letter-spacing:0.780296px;}
.lsf{letter-spacing:0.810000px;}
.ls83{letter-spacing:0.944569px;}
.lsc1{letter-spacing:1.012585px;}
.lsc3{letter-spacing:1.021499px;}
.lsca{letter-spacing:1.133978px;}
.lsd6{letter-spacing:1.246500px;}
.lsd5{letter-spacing:1.485000px;}
.lsc8{letter-spacing:1.777445px;}
.lsbe{letter-spacing:2.110417px;}
.ls8f{letter-spacing:2.505160px;}
.ls0{letter-spacing:3.000000px;}
.lsa1{letter-spacing:3.044304px;}
.lsb3{letter-spacing:3.044395px;}
.ls99{letter-spacing:3.818413px;}
.ls93{letter-spacing:9.024212px;}
.ls98{letter-spacing:11.942221px;}
.ls84{letter-spacing:11.967267px;}
.ls86{letter-spacing:11.996258px;}
.ls96{letter-spacing:12.041637px;}
.ls80{letter-spacing:12.050295px;}
.ls9c{letter-spacing:14.968304px;}
.lsaf{letter-spacing:14.989744px;}
.lsb1{letter-spacing:14.990100px;}
.lsab{letter-spacing:14.990283px;}
.lsaa{letter-spacing:15.000776px;}
.lsac{letter-spacing:15.004879px;}
.ls92{letter-spacing:15.022341px;}
.lsad{letter-spacing:15.044300px;}
.lsb2{letter-spacing:15.045948px;}
.lsb5{letter-spacing:15.046928px;}
.ls85{letter-spacing:15.100761px;}
.lsb9{letter-spacing:15.100944px;}
.lsb7{letter-spacing:15.154228px;}
.ls97{letter-spacing:15.226767px;}
.lsa9{letter-spacing:18.025690px;}
.lsae{letter-spacing:18.027698px;}
.lsb8{letter-spacing:18.110130px;}
.lsb6{letter-spacing:18.110313px;}
.ls9d{letter-spacing:18.126579px;}
.ls94{letter-spacing:19.908679px;}
.ls82{letter-spacing:19.960501px;}
.ls81{letter-spacing:27.288786px;}
.ls51{letter-spacing:45.528000px;}
.ls42{letter-spacing:47.609544px;}
.ls52{letter-spacing:82.614000px;}
.ls41{letter-spacing:410.777437px;}
.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;}
}
.ws1{word-spacing:-15.000000px;}
.wsef{word-spacing:-13.860000px;}
.ws20{word-spacing:-13.596000px;}
.ws74{word-spacing:-12.744000px;}
.ws40{word-spacing:-12.636000px;}
.ws3f{word-spacing:-12.582000px;}
.ws1f{word-spacing:-12.528000px;}
.ws2f{word-spacing:-12.420000px;}
.ws8e{word-spacing:-12.366000px;}
.ws21{word-spacing:-12.258000px;}
.ws41{word-spacing:-12.204000px;}
.ws29{word-spacing:-12.150000px;}
.ws3d{word-spacing:-12.096000px;}
.ws89{word-spacing:-11.988000px;}
.wsd{word-spacing:-11.880000px;}
.ws14{word-spacing:-11.826000px;}
.ws73{word-spacing:-11.772000px;}
.ws87{word-spacing:-11.718000px;}
.wsb3{word-spacing:-11.610000px;}
.ws9f{word-spacing:-11.394000px;}
.ws2c{word-spacing:-11.070000px;}
.wsf2{word-spacing:-10.530000px;}
.ws106{word-spacing:-10.440000px;}
.wsf0{word-spacing:-10.417500px;}
.ws10e{word-spacing:-10.395000px;}
.ws75{word-spacing:-9.990000px;}
.wsf1{word-spacing:-9.810000px;}
.ws0{word-spacing:-9.600000px;}
.ws69{word-spacing:-9.534000px;}
.ws53{word-spacing:-9.408000px;}
.wsf4{word-spacing:-9.405000px;}
.ws45{word-spacing:-9.114000px;}
.ws46{word-spacing:-8.778000px;}
.ws79{word-spacing:-8.694000px;}
.ws93{word-spacing:-8.494200px;}
.ws66{word-spacing:-8.484000px;}
.wsba{word-spacing:-8.459100px;}
.ws44{word-spacing:-8.388900px;}
.ws6{word-spacing:-8.353800px;}
.ws23{word-spacing:-8.318700px;}
.wsbd{word-spacing:-8.283600px;}
.ws22{word-spacing:-8.248500px;}
.ws8f{word-spacing:-8.213400px;}
.ws1b{word-spacing:-8.178300px;}
.ws1a{word-spacing:-8.143200px;}
.ws8a{word-spacing:-8.108100px;}
.ws1e{word-spacing:-8.073000px;}
.ws24{word-spacing:-8.037900px;}
.ws2{word-spacing:-8.034000px;}
.ws94{word-spacing:-8.002800px;}
.ws5{word-spacing:-7.967700px;}
.ws1c{word-spacing:-7.897500px;}
.ws1d{word-spacing:-7.862400px;}
.wsbc{word-spacing:-7.827300px;}
.ws86{word-spacing:-7.792200px;}
.ws43{word-spacing:-7.757100px;}
.wsdb{word-spacing:-7.546500px;}
.ws4{word-spacing:-7.371000px;}
.ws7{word-spacing:-6.630000px;}
.wsf3{word-spacing:-6.345000px;}
.ws110{word-spacing:-6.210000px;}
.ws116{word-spacing:-6.075000px;}
.ws10c{word-spacing:-6.030000px;}
.ws7b{word-spacing:-5.924100px;}
.ws10a{word-spacing:-5.715000px;}
.ws117{word-spacing:-5.580000px;}
.wscb{word-spacing:-5.508000px;}
.wsf5{word-spacing:-2.592000px;}
.wsec{word-spacing:-2.268000px;}
.ws97{word-spacing:-1.998000px;}
.wsf7{word-spacing:-1.728000px;}
.ws34{word-spacing:-1.404000px;}
.wsca{word-spacing:-1.296000px;}
.wsc{word-spacing:-1.242000px;}
.ws11{word-spacing:-1.188000px;}
.wsc7{word-spacing:-1.134000px;}
.ws102{word-spacing:-1.035000px;}
.wsd2{word-spacing:-1.026000px;}
.ws114{word-spacing:-0.990000px;}
.ws2b{word-spacing:-0.972000px;}
.wsf{word-spacing:-0.918000px;}
.ws99{word-spacing:-0.864000px;}
.ws3e{word-spacing:-0.810000px;}
.wsaf{word-spacing:-0.756000px;}
.ws9b{word-spacing:-0.702000px;}
.wse{word-spacing:-0.648000px;}
.ws11e{word-spacing:-0.630000px;}
.wsb9{word-spacing:-0.594000px;}
.ws11f{word-spacing:-0.585000px;}
.ws28{word-spacing:-0.540000px;}
.wsfe{word-spacing:-0.495000px;}
.ws2a{word-spacing:-0.486000px;}
.wsad{word-spacing:-0.432000px;}
.wsb4{word-spacing:-0.421200px;}
.ws16{word-spacing:-0.386100px;}
.ws42{word-spacing:-0.378000px;}
.ws10f{word-spacing:-0.360000px;}
.ws2d{word-spacing:-0.324000px;}
.ws10d{word-spacing:-0.315000px;}
.wsb8{word-spacing:-0.282000px;}
.wscf{word-spacing:-0.270000px;}
.ws120{word-spacing:-0.264000px;}
.ws109{word-spacing:-0.225000px;}
.ws9{word-spacing:-0.216000px;}
.ws100{word-spacing:-0.180000px;}
.wsae{word-spacing:-0.162000px;}
.wsac{word-spacing:-0.140400px;}
.ws115{word-spacing:-0.135000px;}
.ws12{word-spacing:-0.108000px;}
.wse0{word-spacing:-0.082136px;}
.wsb5{word-spacing:-0.070200px;}
.wsbf{word-spacing:-0.054037px;}
.ws8d{word-spacing:-0.054000px;}
.ws112{word-spacing:-0.045000px;}
.wsc0{word-spacing:-0.041068px;}
.ws3{word-spacing:-0.039000px;}
.ws9d{word-spacing:-0.035100px;}
.ws8{word-spacing:0.000000px;}
.ws113{word-spacing:0.045000px;}
.wsb7{word-spacing:0.054000px;}
.wsb6{word-spacing:0.070200px;}
.ws10b{word-spacing:0.090000px;}
.ws8c{word-spacing:0.108000px;}
.ws37{word-spacing:0.162000px;}
.ws107{word-spacing:0.180000px;}
.ws90{word-spacing:0.216000px;}
.ws104{word-spacing:0.225000px;}
.ws3b{word-spacing:0.270000px;}
.ws103{word-spacing:0.315000px;}
.wsb0{word-spacing:0.324000px;}
.ws76{word-spacing:0.336000px;}
.ws108{word-spacing:0.360000px;}
.ws9e{word-spacing:0.378000px;}
.ws11b{word-spacing:0.405000px;}
.ws91{word-spacing:0.432000px;}
.ws92{word-spacing:0.486000px;}
.ws125{word-spacing:0.540000px;}
.ws30{word-spacing:0.594000px;}
.wsff{word-spacing:0.630000px;}
.ws26{word-spacing:0.648000px;}
.wsa0{word-spacing:0.702000px;}
.ws11a{word-spacing:0.720000px;}
.ws98{word-spacing:0.756000px;}
.ws101{word-spacing:0.765000px;}
.ws2e{word-spacing:0.810000px;}
.wsd8{word-spacing:0.918000px;}
.wsb2{word-spacing:0.972000px;}
.ws111{word-spacing:0.990000px;}
.wsb1{word-spacing:1.026000px;}
.wsfd{word-spacing:1.035000px;}
.ws27{word-spacing:1.080000px;}
.ws33{word-spacing:1.134000px;}
.ws15{word-spacing:1.188000px;}
.wsb{word-spacing:1.242000px;}
.ws9c{word-spacing:1.296000px;}
.ws10{word-spacing:1.350000px;}
.wsd0{word-spacing:1.404000px;}
.ws11c{word-spacing:1.440000px;}
.wsf6{word-spacing:1.458000px;}
.ws25{word-spacing:1.512000px;}
.ws11d{word-spacing:1.530000px;}
.wsd1{word-spacing:1.566000px;}
.wsc9{word-spacing:1.620000px;}
.ws71{word-spacing:1.674000px;}
.ws31{word-spacing:1.728000px;}
.ws9a{word-spacing:1.782000px;}
.ws72{word-spacing:1.836000px;}
.wsda{word-spacing:1.890000px;}
.ws35{word-spacing:1.944000px;}
.ws36{word-spacing:1.998000px;}
.ws123{word-spacing:2.052000px;}
.ws6f{word-spacing:2.106000px;}
.ws19{word-spacing:2.142000px;}
.ws13{word-spacing:2.214000px;}
.ws3c{word-spacing:2.268000px;}
.wsc6{word-spacing:2.322000px;}
.ws8b{word-spacing:2.376000px;}
.wsd3{word-spacing:2.916000px;}
.wsf9{word-spacing:2.970000px;}
.ws32{word-spacing:3.024000px;}
.wsfb{word-spacing:3.078000px;}
.wsd9{word-spacing:3.132000px;}
.ws119{word-spacing:3.150000px;}
.wsc4{word-spacing:3.186000px;}
.wsf8{word-spacing:3.240000px;}
.ws121{word-spacing:3.348000px;}
.wsc8{word-spacing:3.510000px;}
.ws70{word-spacing:3.564000px;}
.ws96{word-spacing:3.618000px;}
.ws118{word-spacing:3.645000px;}
.wsed{word-spacing:3.672000px;}
.wsd6{word-spacing:3.726000px;}
.ws3a{word-spacing:3.996000px;}
.ws17{word-spacing:4.080000px;}
.wsd4{word-spacing:4.104000px;}
.wsee{word-spacing:4.212000px;}
.ws18{word-spacing:4.386000px;}
.wsc3{word-spacing:4.536000px;}
.wsd7{word-spacing:4.590000px;}
.wsfc{word-spacing:4.644000px;}
.ws38{word-spacing:4.698000px;}
.wsd5{word-spacing:4.968000px;}
.ws39{word-spacing:5.346000px;}
.ws124{word-spacing:5.670000px;}
.wsc5{word-spacing:6.102000px;}
.wsfa{word-spacing:6.264000px;}
.ws122{word-spacing:6.480000px;}
.ws95{word-spacing:6.642000px;}
.ws6e{word-spacing:6.750000px;}
.wsea{word-spacing:6.912000px;}
.wse9{word-spacing:6.966000px;}
.wseb{word-spacing:7.236000px;}
.wsa{word-spacing:11.124000px;}
.ws105{word-spacing:12.105000px;}
.wse7{word-spacing:12.860853px;}
.wse8{word-spacing:12.914891px;}
.wsdc{word-spacing:13.325574px;}
.wsc1{word-spacing:13.887554px;}
.wscd{word-spacing:13.941597px;}
.wse4{word-spacing:14.049672px;}
.wsde{word-spacing:14.103709px;}
.wsbb{word-spacing:14.265821px;}
.wsc2{word-spacing:14.319858px;}
.wse3{word-spacing:14.698361px;}
.wsce{word-spacing:14.941275px;}
.ws88{word-spacing:15.282000px;}
.wse6{word-spacing:15.454639px;}
.wsbe{word-spacing:15.908551px;}
.wscc{word-spacing:15.913955px;}
.wse1{word-spacing:15.919359px;}
.wse2{word-spacing:15.973396px;}
.wsdd{word-spacing:16.076067px;}
.wsdf{word-spacing:16.130104px;}
.wse5{word-spacing:20.289120px;}
.ws4c{word-spacing:23.940000px;}
.ws47{word-spacing:27.510000px;}
.ws49{word-spacing:35.952000px;}
.ws4b{word-spacing:36.414000px;}
.ws7d{word-spacing:38.682000px;}
.ws48{word-spacing:39.018000px;}
.ws4a{word-spacing:44.393995px;}
.ws61{word-spacing:51.912000px;}
.ws64{word-spacing:56.322000px;}
.ws55{word-spacing:69.972000px;}
.ws50{word-spacing:71.022000px;}
.ws5c{word-spacing:72.576000px;}
.ws65{word-spacing:73.626000px;}
.ws68{word-spacing:76.104000px;}
.ws4e{word-spacing:77.196000px;}
.ws78{word-spacing:84.088193px;}
.ws62{word-spacing:87.612000px;}
.ws77{word-spacing:88.624200px;}
.ws56{word-spacing:88.830000px;}
.ws58{word-spacing:89.040000px;}
.ws7e{word-spacing:89.418000px;}
.ws4f{word-spacing:90.132000px;}
.ws5e{word-spacing:95.214000px;}
.ws6b{word-spacing:96.264000px;}
.ws5d{word-spacing:102.102000px;}
.ws80{word-spacing:102.983992px;}
.ws67{word-spacing:104.836200px;}
.ws52{word-spacing:109.200000px;}
.ws83{word-spacing:113.105992px;}
.ws5b{word-spacing:120.922200px;}
.ws63{word-spacing:121.212000px;}
.ws7f{word-spacing:123.648000px;}
.ws51{word-spacing:126.756000px;}
.ws60{word-spacing:131.964000px;}
.ws81{word-spacing:132.552000px;}
.ws84{word-spacing:134.819992px;}
.ws82{word-spacing:137.176192px;}
.ws7c{word-spacing:139.272000px;}
.ws4d{word-spacing:139.692000px;}
.wsaa{word-spacing:142.044000px;}
.ws6d{word-spacing:148.680000px;}
.ws85{word-spacing:149.183992px;}
.ws5a{word-spacing:152.628000px;}
.ws59{word-spacing:159.726000px;}
.ws6a{word-spacing:166.866000px;}
.ws7a{word-spacing:169.054200px;}
.ws6c{word-spacing:176.358000px;}
.ws5f{word-spacing:189.420000px;}
.wsa5{word-spacing:195.594000px;}
.ws57{word-spacing:197.694000px;}
.wsa7{word-spacing:212.940000px;}
.ws54{word-spacing:214.872000px;}
.wsab{word-spacing:219.786000px;}
.wsa8{word-spacing:241.794000px;}
.wsa4{word-spacing:302.484000px;}
.wsa2{word-spacing:308.490000px;}
.wsa3{word-spacing:345.912000px;}
.wsa1{word-spacing:391.318200px;}
.wsa9{word-spacing:424.662000px;}
.wsa6{word-spacing:426.090000px;}
._4d{margin-left:-20.952007px;}
._5b{margin-left:-19.033807px;}
._10{margin-left:-17.955888px;}
._11{margin-left:-15.996049px;}
._8{margin-left:-14.955520px;}
._e{margin-left:-13.341646px;}
._6{margin-left:-11.940000px;}
._5{margin-left:-10.705200px;}
._16{margin-left:-9.690280px;}
._5e{margin-left:-8.575222px;}
._15{margin-left:-7.132232px;}
._7{margin-left:-6.069600px;}
._2{margin-left:-4.111200px;}
._4{margin-left:-2.952600px;}
._0{margin-left:-1.876800px;}
._3{width:1.039800px;}
._9{width:2.243031px;}
._a{width:4.018800px;}
._b{width:5.988369px;}
._62{width:7.526188px;}
._17{width:9.097835px;}
._c{width:10.260000px;}
._d{width:12.244788px;}
._13{width:14.313191px;}
._12{width:16.171185px;}
._5c{width:18.075443px;}
._5d{width:27.186115px;}
._4e{width:34.337314px;}
._60{width:38.099389px;}
._5f{width:39.191400px;}
._14{width:40.527578px;}
._51{width:43.654200px;}
._18{width:44.987392px;}
._61{width:46.897193px;}
._f{width:48.137567px;}
._50{width:50.060992px;}
._4a{width:58.291192px;}
._4b{width:64.134000px;}
._27{width:67.228800px;}
._31{width:74.171995px;}
._2e{width:75.600004px;}
._23{width:77.854800px;}
._49{width:80.555992px;}
._30{width:85.805995px;}
._28{width:87.066000px;}
._3c{width:90.118800px;}
._3f{width:92.773791px;}
._26{width:93.827995px;}
._38{width:95.371800px;}
._1b{width:97.146000px;}
._1f{width:98.364000px;}
._1d{width:99.666000px;}
._1a{width:101.178000px;}
._37{width:102.270000px;}
._36{width:104.748000px;}
._24{width:106.134000px;}
._3d{width:113.022000px;}
._21{width:114.029995px;}
._35{width:115.930200px;}
._20{width:117.012000px;}
._34{width:118.902005px;}
._3a{width:120.012610px;}
._29{width:121.338000px;}
._25{width:122.430000px;}
._2d{width:124.656000px;}
._2c{width:126.378000px;}
._48{width:130.283992px;}
._1c{width:133.265996px;}
._19{width:134.651991px;}
._2b{width:135.743996px;}
._39{width:136.877991px;}
._3e{width:137.998800px;}
._40{width:139.188000px;}
._33{width:141.750000px;}
._45{width:146.820595px;}
._2f{width:155.483992px;}
._2a{width:169.721997px;}
._1e{width:171.443992px;}
._59{width:173.166000px;}
._5a{width:176.148000px;}
._32{width:189.419992px;}
._22{width:190.511992px;}
._41{width:194.959200px;}
._43{width:206.702400px;}
._3b{width:210.178200px;}
._4c{width:212.299793px;}
._47{width:229.667400px;}
._46{width:231.661800px;}
._1{width:323.428800px;}
._56{width:434.196000px;}
._54{width:435.590405px;}
._57{width:442.974000px;}
._55{width:448.126796px;}
._58{width:449.399992px;}
._53{width:461.706000px;}
._52{width:468.246600px;}
._44{width:728.196000px;}
._4f{width:789.095967px;}
._42{width:1187.256000px;}
.fc4{color:rgb(245,130,31);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(205,221,228);}
.fsb{font-size:27.300000px;}
.fs7{font-size:33.150000px;}
.fs5{font-size:35.100000px;}
.fs3{font-size:39.000000px;}
.fse{font-size:41.068199px;}
.fsa{font-size:42.000000px;}
.fsf{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fsd{font-size:54.037199px;}
.fsc{font-size:56.399998px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y230{bottom:0.044998px;}
.y2f1{bottom:0.106339px;}
.y2fe{bottom:0.106361px;}
.y233{bottom:0.194847px;}
.y1de{bottom:0.195007px;}
.y2e8{bottom:0.196198px;}
.y1f0{bottom:1.573196px;}
.y24a{bottom:1.618195px;}
.y265{bottom:1.628849px;}
.y2c3{bottom:1.990814px;}
.y26b{bottom:2.355103px;}
.y20d{bottom:2.519852px;}
.y276{bottom:2.519988px;}
.y200{bottom:2.520081px;}
.y2d6{bottom:2.580048px;}
.y25c{bottom:2.669998px;}
.y269{bottom:2.671967px;}
.y23d{bottom:2.730103px;}
.yb9{bottom:3.199200px;}
.y34{bottom:3.199350px;}
.ye1{bottom:3.199950px;}
.y2{bottom:3.200100px;}
.y2db{bottom:3.331924px;}
.y1e1{bottom:3.495003px;}
.y262{bottom:4.004848px;}
.y2ca{bottom:4.065125px;}
.y22d{bottom:4.094707px;}
.y2bc{bottom:4.109985px;}
.y1fe{bottom:4.544861px;}
.y1f7{bottom:4.544952px;}
.y286{bottom:4.544998px;}
.y2d3{bottom:4.605011px;}
.y252{bottom:4.755020px;}
.y2e1{bottom:5.881943px;}
.y2c6{bottom:13.635040px;}
.y2b8{bottom:13.709930px;}
.y2f8{bottom:14.430290px;}
.y304{bottom:14.430450px;}
.y2ea{bottom:14.519989px;}
.y1ee{bottom:15.599991px;}
.y248{bottom:15.644989px;}
.y267{bottom:15.645172px;}
.y254{bottom:15.703217px;}
.y23f{bottom:15.703308px;}
.y2d9{bottom:16.305130px;}
.y2ed{bottom:16.454979px;}
.y2fb{bottom:16.455002px;}
.y2e4{bottom:16.544998px;}
.y1f5{bottom:16.814690px;}
.y24f{bottom:16.873260px;}
.y29a{bottom:18.795181px;}
.y2de{bottom:18.855148px;}
.y2d0{bottom:20.616119px;}
.y2c8{bottom:23.112030px;}
.y2ce{bottom:23.154053px;}
.y2ba{bottom:23.173462px;}
.y2c0{bottom:23.738800px;}
.y258{bottom:24.175369px;}
.y2cd{bottom:24.598846px;}
.y2bf{bottom:24.643433px;}
.y25f{bottom:25.228500px;}
.y33{bottom:27.430500px;}
.y1{bottom:27.430650px;}
.yba{bottom:27.555599px;}
.y3{bottom:27.555750px;}
.y2f0{bottom:29.293648px;}
.y2e7{bottom:29.383621px;}
.y2ef{bottom:33.343483px;}
.y2fd{bottom:33.343506px;}
.y2e6{bottom:33.433502px;}
.y1e9{bottom:36.943497px;}
.y1eb{bottom:37.753189px;}
.y1ed{bottom:37.753349px;}
.y2f2{bottom:37.906334px;}
.y2f4{bottom:37.906494px;}
.y244{bottom:38.812408px;}
.y246{bottom:39.622650px;}
.y1f3{bottom:39.913490px;}
.y1e8{bottom:39.913639px;}
.y24d{bottom:39.972015px;}
.y243{bottom:39.973663px;}
.y2ff{bottom:40.565849px;}
.y32{bottom:68.037452px;}
.y348{bottom:69.062271px;}
.y86{bottom:72.910499px;}
.yc1{bottom:73.876652px;}
.y76{bottom:74.047052px;}
.y239{bottom:76.381348px;}
.y1e4{bottom:77.721000px;}
.y148{bottom:81.481648px;}
.y347{bottom:81.808521px;}
.y31{bottom:83.037452px;}
.y38f{bottom:84.641403px;}
.y85{bottom:87.912004px;}
.yc0{bottom:88.875152px;}
.y2b5{bottom:88.924497px;}
.y75{bottom:89.045552px;}
.y1a4{bottom:91.233148px;}
.y238{bottom:91.382848px;}
.y1e3{bottom:92.721005px;}
.y159{bottom:92.874152px;}
.yf1{bottom:94.371152px;}
.y346{bottom:94.554771px;}
.y144{bottom:94.983148px;}
.y147{bottom:96.483148px;}
.y30{bottom:98.037452px;}
.y84{bottom:102.910504px;}
.ybf{bottom:103.873652px;}
.y2b4{bottom:103.924497px;}
.y74{bottom:104.044052px;}
.y1e0{bottom:104.236496px;}
.y1a3{bottom:106.231648px;}
.y237{bottom:106.381348px;}
.yfc{bottom:106.986148px;}
.y38e{bottom:107.145903px;}
.y345{bottom:107.301021px;}
.y1dd{bottom:107.530495px;}
.y1dc{bottom:107.716507px;}
.y1df{bottom:107.719505px;}
.y1e2{bottom:107.731499px;}
.y158{bottom:107.872652px;}
.yf0{bottom:109.372652px;}
.y143{bottom:109.981648px;}
.y146{bottom:111.481648px;}
.y2f{bottom:113.037452px;}
.y83{bottom:117.924004px;}
.ybe{bottom:118.872152px;}
.y2b3{bottom:118.927497px;}
.y344{bottom:120.047271px;}
.y236{bottom:121.381348px;}
.yfb{bottom:121.984648px;}
.y1a2{bottom:122.130146px;}
.y157{bottom:122.871152px;}
.yef{bottom:124.371152px;}
.y142{bottom:124.981648px;}
.y145{bottom:126.480148px;}
.y38d{bottom:129.650403px;}
.y1e7{bottom:130.219505px;}
.y1f1{bottom:131.792702px;}
.y2e{bottom:132.493950px;}
.y343{bottom:132.793521px;}
.y82{bottom:132.922504px;}
.ybd{bottom:133.870652px;}
.y2b2{bottom:133.925997px;}
.y1f2{bottom:135.681004px;}
.y232{bottom:136.190998px;}
.y1a1{bottom:136.233148px;}
.y235{bottom:136.336498px;}
.y234{bottom:136.379848px;}
.y231{bottom:136.381348px;}
.yfa{bottom:136.983148px;}
.y73{bottom:137.048552px;}
.y156{bottom:137.872652px;}
.yee{bottom:139.371152px;}
.y141{bottom:139.981648px;}
.y1ef{bottom:141.850353px;}
.y38c{bottom:144.648903px;}
.y342{bottom:145.539771px;}
.y1e5{bottom:145.558500px;}
.y1f4{bottom:147.034195px;}
.y1e6{bottom:147.034355px;}
.y22c{bottom:147.275997px;}
.y81{bottom:147.921004px;}
.ybc{bottom:148.869152px;}
.y2b1{bottom:148.924497px;}
.y1a0{bottom:151.231648px;}
.y22f{bottom:151.336498px;}
.y22e{bottom:151.379848px;}
.y22b{bottom:151.387355px;}
.yf9{bottom:151.981648px;}
.y72{bottom:152.047052px;}
.y155{bottom:152.871152px;}
.y1ea{bottom:153.149849px;}
.yed{bottom:154.375652px;}
.y140{bottom:154.983148px;}
.y1ec{bottom:157.038002px;}
.y341{bottom:158.286021px;}
.y38b{bottom:159.648903px;}
.y80{bottom:162.919504px;}
.y2b0{bottom:163.922997px;}
.yf8{bottom:166.983148px;}
.y71{bottom:167.045552px;}
.y19f{bottom:167.130146px;}
.y154{bottom:167.872652px;}
.yec{bottom:169.374152px;}
.y13f{bottom:169.981648px;}
.y340{bottom:171.032271px;}
.y261{bottom:173.879997px;}
.y260{bottom:175.497746px;}
.y264{bottom:175.764896px;}
.y263{bottom:177.884846px;}
.y7f{bottom:177.918004px;}
.y2c{bottom:180.070943px;}
.y19e{bottom:181.233148px;}
.yf7{bottom:181.981648px;}
.y70{bottom:182.045552px;}
.y153{bottom:182.871152px;}
.y33f{bottom:183.778521px;}
.yeb{bottom:184.372652px;}
.y13e{bottom:184.981648px;}
.y1db{bottom:185.721005px;}
.y38a{bottom:189.648903px;}
.y7e{bottom:192.916504px;}
.y2b{bottom:195.073805px;}
.y19d{bottom:196.231648px;}
.y33e{bottom:196.524771px;}
.yf6{bottom:196.980148px;}
.y6f{bottom:197.045552px;}
.y14e{bottom:197.853139px;}
.y152{bottom:197.872652px;}
.yea{bottom:199.371152px;}
.y13d{bottom:199.981648px;}
.y22a{bottom:201.931355px;}
.y2fa{bottom:204.422997px;}
.y389{bottom:204.648903px;}
.ye0{bottom:206.003999px;}
.y7d{bottom:207.915004px;}
.y33d{bottom:209.271021px;}
.y2a{bottom:210.072305px;}
.y302{bottom:211.292999px;}
.y6e{bottom:212.045552px;}
.y19c{bottom:212.130157px;}
.y14d{bottom:212.853139px;}
.y151{bottom:212.871152px;}
.ye9{bottom:214.371152px;}
.y13c{bottom:214.981648px;}
.y229{bottom:216.937355px;}
.y2fc{bottom:218.852989px;}
.y1da{bottom:219.471005px;}
.y2f9{bottom:220.065742px;}
.y303{bottom:220.878456px;}
.ydf{bottom:221.002499px;}
.y33c{bottom:222.017271px;}
.y7c{bottom:222.913504px;}
.y29{bottom:225.070805px;}
.y19b{bottom:226.233148px;}
.y6d{bottom:227.045552px;}
.y14c{bottom:227.856139px;}
.y150{bottom:227.871152px;}
.y301{bottom:228.802345px;}
.ye8{bottom:229.371152px;}
.y13b{bottom:229.984648px;}
.y228{bottom:231.935855px;}
.y300{bottom:234.040489px;}
.y1d9{bottom:234.471005px;}
.y33b{bottom:234.763521px;}
.y102{bottom:235.473142px;}
.yde{bottom:236.003999px;}
.y388{bottom:236.117261px;}
.y7b{bottom:237.912004px;}
.y28{bottom:240.070805px;}
.y19a{bottom:241.231648px;}
.y6c{bottom:242.045552px;}
.y14b{bottom:242.854639px;}
.y14f{bottom:242.869652px;}
.ye7{bottom:244.372652px;}
.y13a{bottom:244.983148px;}
.y33a{bottom:247.509771px;}
.y1d8{bottom:250.369652px;}
.y101{bottom:250.473142px;}
.ydd{bottom:251.002499px;}
.y387{bottom:251.115761px;}
.y7a{bottom:252.910504px;}
.y27{bottom:255.070805px;}
.y6b{bottom:257.045552px;}
.y199{bottom:257.130157px;}
.y14a{bottom:257.853139px;}
.ye6{bottom:259.371152px;}
.y139{bottom:259.981648px;}
.y339{bottom:260.256021px;}
.y227{bottom:264.941855px;}
.y100{bottom:265.476142px;}
.ydc{bottom:266.000999px;}
.y386{bottom:266.115761px;}
.y79{bottom:267.910504px;}
.y2ec{bottom:268.023010px;}
.y26{bottom:270.072305px;}
.y198{bottom:271.233148px;}
.y6a{bottom:272.045552px;}
.y149{bottom:272.851639px;}
.y338{bottom:273.002271px;}
.ye5{bottom:274.374152px;}
.y2f6{bottom:274.892990px;}
.y138{bottom:274.981648px;}
.y16b{bottom:279.473993px;}
.y226{bottom:279.940355px;}
.yff{bottom:280.474642px;}
.y2ee{bottom:282.453003px;}
.y1d7{bottom:282.471005px;}
.y78{bottom:282.909004px;}
.y2eb{bottom:283.065742px;}
.y2f7{bottom:284.478310px;}
.y25{bottom:285.070805px;}
.y337{bottom:285.748521px;}
.y197{bottom:286.231648px;}
.y69{bottom:287.045552px;}
.ye4{bottom:289.372652px;}
.y2f5{bottom:289.743004px;}
.y137{bottom:289.992148px;}
.y16a{bottom:294.472493px;}
.y225{bottom:294.938855px;}
.y2f3{bottom:294.994652px;}
.yfe{bottom:295.473142px;}
.y385{bottom:296.121761px;}
.y1d6{bottom:297.471005px;}
.y336{bottom:298.494771px;}
.y24{bottom:300.072305px;}
.y68{bottom:302.044052px;}
.y196{bottom:302.130157px;}
.ye3{bottom:304.371152px;}
.y136{bottom:304.990648px;}
.y169{bottom:309.470993px;}
.y224{bottom:309.937355px;}
.yfd{bottom:310.471642px;}
.y384{bottom:311.120261px;}
.y335{bottom:311.241021px;}
.y1d5{bottom:312.469505px;}
.y23{bottom:315.070805px;}
.ye2{bottom:319.369652px;}
.y135{bottom:319.989148px;}
.y2af{bottom:322.924497px;}
.y334{bottom:323.987271px;}
.y223{bottom:324.935855px;}
.y383{bottom:326.118761px;}
.y22{bottom:330.072305px;}
.y2ad{bottom:333.386993px;}
.y134{bottom:334.987648px;}
.y195{bottom:334.989148px;}
.y67{bottom:335.050052px;}
.y333{bottom:336.733521px;}
.y2ae{bottom:337.922997px;}
.y222{bottom:339.934355px;}
.y382{bottom:341.117261px;}
.y21{bottom:345.070805px;}
.y1d4{bottom:345.476982px;}
.y2ab{bottom:348.386993px;}
.y332{bottom:349.479771px;}
.y133{bottom:349.986148px;}
.y194{bottom:349.987648px;}
.y66{bottom:350.048552px;}
.y2ac{bottom:352.922997px;}
.y2aa{bottom:352.924497px;}
.y8d{bottom:353.119950px;}
.y221{bottom:354.932855px;}
.y381{bottom:356.115761px;}
.y20{bottom:360.087315px;}
.y1d3{bottom:360.475482px;}
.y331{bottom:362.226021px;}
.y2a8{bottom:363.386993px;}
.y132{bottom:364.984648px;}
.y193{bottom:364.986148px;}
.y65{bottom:365.047052px;}
.y2a9{bottom:367.922997px;}
.y2a7{bottom:367.929129px;}
.y8c{bottom:368.118450px;}
.y220{bottom:369.931355px;}
.y380{bottom:371.115761px;}
.y330{bottom:374.972271px;}
.y1f{bottom:375.085815px;}
.y1d2{bottom:375.473982px;}
.yf5{bottom:376.533131px;}
.y131{bottom:379.983148px;}
.y192{bottom:379.984648px;}
.y64{bottom:380.045552px;}
.y8b{bottom:383.118428px;}
.y21f{bottom:384.935855px;}
.y32f{bottom:387.718521px;}
.y1e{bottom:390.084315px;}
.y2e3{bottom:390.423019px;}
.y1d1{bottom:390.472482px;}
.yf4{bottom:391.533131px;}
.y130{bottom:394.981648px;}
.y191{bottom:394.983148px;}
.y63{bottom:395.045552px;}
.y8a{bottom:398.121428px;}
.y21e{bottom:399.934355px;}
.y32e{bottom:400.464771px;}
.y37f{bottom:401.318284px;}
.y2e5{bottom:404.943008px;}
.y1d0{bottom:405.470982px;}
.y2e2{bottom:405.540894px;}
.yf3{bottom:406.533131px;}
.y2e9{bottom:406.968018px;}
.y190{bottom:409.981648px;}
.y12f{bottom:409.987648px;}
.y62{bottom:410.045552px;}
.y89{bottom:413.119928px;}
.y32d{bottom:413.211021px;}
.y37e{bottom:414.064534px;}
.y21d{bottom:414.932855px;}
.y1cf{bottom:420.470982px;}
.yf2{bottom:421.531631px;}
.y18f{bottom:424.980148px;}
.y12e{bottom:424.986148px;}
.y61{bottom:425.045552px;}
.y32c{bottom:425.957271px;}
.y37d{bottom:426.810784px;}
.y88{bottom:428.118428px;}
.y21c{bottom:429.931355px;}
.y1d{bottom:435.228315px;}
.y1ce{bottom:435.491982px;}
.y32b{bottom:438.703521px;}
.y37c{bottom:439.557034px;}
.y18e{bottom:439.980148px;}
.y12d{bottom:439.984648px;}
.y60{bottom:440.047052px;}
.y2a5{bottom:440.937012px;}
.y87{bottom:443.116928px;}
.y21b{bottom:444.931355px;}
.y2a6{bottom:445.473129px;}
.y2a4{bottom:445.482129px;}
.y1cd{bottom:450.490482px;}
.y32a{bottom:451.449771px;}
.y1c{bottom:451.725315px;}
.y37b{bottom:452.303284px;}
.y12c{bottom:454.983148px;}
.y5f{bottom:455.045552px;}
.y21a{bottom:459.931355px;}
.y2a3{bottom:460.480629px;}
.y329{bottom:464.196021px;}
.y37a{bottom:465.049534px;}
.y1cc{bottom:465.488982px;}
.y1b{bottom:468.222315px;}
.y12b{bottom:469.981648px;}
.y5e{bottom:470.045552px;}
.y18d{bottom:472.983148px;}
.y219{bottom:474.929855px;}
.yb8{bottom:475.160418px;}
.y328{bottom:476.942271px;}
.y379{bottom:477.795784px;}
.y1cb{bottom:480.487482px;}
.y1a{bottom:484.725315px;}
.y12a{bottom:484.996648px;}
.y5d{bottom:485.044052px;}
.y18c{bottom:487.981648px;}
.y327{bottom:489.688521px;}
.y378{bottom:490.542034px;}
.yb7{bottom:492.695418px;}
.y2a2{bottom:493.474629px;}
.y1ca{bottom:495.485982px;}
.y129{bottom:499.995148px;}
.y5c{bottom:500.044052px;}
.y19{bottom:501.222315px;}
.y326{bottom:502.434771px;}
.y18b{bottom:502.981648px;}
.y377{bottom:503.288284px;}
.y29e{bottom:503.937012px;}
.y2a0{bottom:506.457000px;}
.y218{bottom:507.949520px;}
.y2a1{bottom:508.473129px;}
.y29d{bottom:508.477630px;}
.y29f{bottom:508.482010px;}
.yb6{bottom:510.230418px;}
.y1c9{bottom:510.484482px;}
.y128{bottom:514.993648px;}
.y325{bottom:515.181021px;}
.y376{bottom:516.034534px;}
.y18{bottom:517.722315px;}
.y18a{bottom:517.983148px;}
.y217{bottom:522.948020px;}
.y1c8{bottom:525.482982px;}
.yb5{bottom:527.765418px;}
.y324{bottom:527.927271px;}
.y375{bottom:528.780784px;}
.y127{bottom:529.992148px;}
.y2dd{bottom:530.972992px;}
.y189{bottom:532.981648px;}
.y5b{bottom:533.057552px;}
.y2e0{bottom:533.641663px;}
.y17{bottom:534.231315px;}
.y2dc{bottom:535.740921px;}
.y216{bottom:537.946520px;}
.y2df{bottom:538.879944px;}
.yb4{bottom:539.010918px;}
.y1c7{bottom:540.481482px;}
.y323{bottom:540.673521px;}
.y374{bottom:541.527034px;}
.y126{bottom:544.990648px;}
.y188{bottom:547.983148px;}
.y5a{bottom:548.056052px;}
.y16{bottom:550.728315px;}
.y215{bottom:552.945020px;}
.y322{bottom:553.419771px;}
.y373{bottom:554.273284px;}
.y1c6{bottom:555.479982px;}
.yb3{bottom:556.545918px;}
.y125{bottom:559.989148px;}
.y187{bottom:562.981648px;}
.y59{bottom:563.054552px;}
.y29c{bottom:565.326130px;}
.y321{bottom:566.166021px;}
.y372{bottom:567.019534px;}
.y15{bottom:567.225315px;}
.y214{bottom:567.943520px;}
.y1c5{bottom:570.478482px;}
.yb2{bottom:574.080918px;}
.y124{bottom:574.987648px;}
.y299{bottom:575.072983px;}
.y186{bottom:577.986148px;}
.y58{bottom:578.053052px;}
.y295{bottom:578.394012px;}
.y320{bottom:578.912271px;}
.y371{bottom:579.765784px;}
.y297{bottom:580.914000px;}
.y29b{bottom:582.919968px;}
.y298{bottom:582.930130px;}
.y294{bottom:582.930157px;}
.y296{bottom:582.939011px;}
.y213{bottom:582.942020px;}
.y14{bottom:583.722315px;}
.y1c4{bottom:585.476982px;}
.y123{bottom:589.986148px;}
.yb1{bottom:591.615918px;}
.y31f{bottom:591.658521px;}
.y370{bottom:592.512034px;}
.y185{bottom:592.984648px;}
.y57{bottom:593.051552px;}
.y212{bottom:597.940520px;}
.y293{bottom:599.131657px;}
.y13{bottom:600.246315px;}
.y1c3{bottom:600.475482px;}
.yb0{bottom:602.861418px;}
.y31e{bottom:604.404771px;}
.y122{bottom:604.984648px;}
.y36f{bottom:605.258284px;}
.y184{bottom:607.983148px;}
.y56{bottom:608.050052px;}
.y211{bottom:612.939020px;}
.y292{bottom:614.134657px;}
.y1c2{bottom:615.473982px;}
.y12{bottom:616.743315px;}
.y31d{bottom:617.151021px;}
.y36e{bottom:618.004534px;}
.y121{bottom:619.983148px;}
.yaf{bottom:620.396418px;}
.y183{bottom:622.981648px;}
.y55{bottom:623.048552px;}
.y210{bottom:627.937520px;}
.y291{bottom:629.133157px;}
.y31c{bottom:629.897271px;}
.y1c1{bottom:630.472482px;}
.y36d{bottom:630.750784px;}
.yae{bottom:631.641918px;}
.y11{bottom:633.240315px;}
.y120{bottom:634.981648px;}
.y182{bottom:637.981648px;}
.y54{bottom:638.047052px;}
.y31b{bottom:642.643521px;}
.y20f{bottom:642.936020px;}
.y36c{bottom:643.497034px;}
.y290{bottom:644.131657px;}
.y1c0{bottom:645.470982px;}
.yad{bottom:649.176918px;}
.y10{bottom:649.737315px;}
.y11f{bottom:649.983148px;}
.y181{bottom:652.983148px;}
.y53{bottom:653.045552px;}
.y28e{bottom:654.593994px;}
.y31a{bottom:655.389771px;}
.y36b{bottom:656.243284px;}
.y28f{bottom:659.130157px;}
.y28d{bottom:659.133132px;}
.y1bf{bottom:660.472482px;}
.y11e{bottom:664.981648px;}
.y257{bottom:665.429993px;}
.yf{bottom:666.234315px;}
.yac{bottom:666.711918px;}
.y180{bottom:667.981648px;}
.y52{bottom:668.045552px;}
.y25d{bottom:668.099991px;}
.y319{bottom:668.139771px;}
.y36a{bottom:668.989534px;}
.y25b{bottom:670.124863px;}
.y1be{bottom:675.470982px;}
.y255{bottom:677.397766px;}
.y256{bottom:679.710022px;}
.y25e{bottom:679.710297px;}
.y11d{bottom:679.980148px;}
.y2d8{bottom:681.630020px;}
.y369{bottom:681.735784px;}
.ye{bottom:682.731315px;}
.y17f{bottom:682.983148px;}
.y51{bottom:683.047052px;}
.yab{bottom:684.230129px;}
.y2d7{bottom:685.122894px;}
.y2da{bottom:686.986954px;}
.y25a{bottom:687.580353px;}
.y259{bottom:689.605362px;}
.y1bd{bottom:690.470982px;}
.y368{bottom:694.482034px;}
.y11c{bottom:694.980148px;}
.y17e{bottom:697.981648px;}
.y50{bottom:698.045552px;}
.yd{bottom:699.228315px;}
.yaa{bottom:701.765129px;}
.y1bc{bottom:705.470982px;}
.y367{bottom:707.228284px;}
.y28a{bottom:708.894012px;}
.y17d{bottom:712.983148px;}
.y4f{bottom:713.048552px;}
.y28c{bottom:713.430130px;}
.y289{bottom:713.431630px;}
.y28b{bottom:713.439011px;}
.yc{bottom:715.725315px;}
.y318{bottom:717.639771px;}
.ya9{bottom:719.300129px;}
.y366{bottom:719.974534px;}
.y1bb{bottom:720.470982px;}
.y251{bottom:721.679993px;}
.y285{bottom:723.894012px;}
.y250{bottom:724.872757px;}
.y253{bottom:726.435013px;}
.y11b{bottom:727.981648px;}
.y4e{bottom:728.047052px;}
.y288{bottom:728.430130px;}
.y284{bottom:728.431630px;}
.y287{bottom:728.439011px;}
.yb{bottom:732.222315px;}
.y365{bottom:732.720784px;}
.y1ba{bottom:735.472482px;}
.ya8{bottom:736.835129px;}
.y11a{bottom:742.984694px;}
.y17c{bottom:742.989194px;}
.y4d{bottom:743.045552px;}
.y283{bottom:743.431630px;}
.y364{bottom:745.467034px;}
.y20b{bottom:748.343994px;}
.ya{bottom:748.719315px;}
.y1b9{bottom:750.470982px;}
.y20c{bottom:750.863846px;}
.y20e{bottom:752.880020px;}
.y20a{bottom:752.887531px;}
.ya7{bottom:754.370129px;}
.y119{bottom:757.983194px;}
.y17b{bottom:757.987694px;}
.y4c{bottom:758.045506px;}
.y363{bottom:758.213284px;}
.y282{bottom:758.431676px;}
.y1b8{bottom:765.472482px;}
.y209{bottom:767.886031px;}
.y27f{bottom:768.894012px;}
.y362{bottom:770.959534px;}
.ya6{bottom:771.905129px;}
.y118{bottom:772.981694px;}
.y17a{bottom:772.986194px;}
.y4b{bottom:773.048506px;}
.yc3{bottom:773.118474px;}
.y281{bottom:773.430176px;}
.y27e{bottom:773.437676px;}
.y280{bottom:773.438965px;}
.y9{bottom:778.719269px;}
.y1b7{bottom:780.470982px;}
.y317{bottom:780.641271px;}
.y361{bottom:783.705784px;}
.y117{bottom:787.981694px;}
.y179{bottom:787.984694px;}
.y4a{bottom:788.047006px;}
.yc2{bottom:788.116974px;}
.y27d{bottom:788.436176px;}
.ya5{bottom:789.440129px;}
.y242{bottom:790.379974px;}
.y24b{bottom:791.998169px;}
.y1b6{bottom:795.470982px;}
.y316{bottom:795.641271px;}
.y24c{bottom:795.886322px;}
.y360{bottom:796.452034px;}
.y249{bottom:802.055878px;}
.y116{bottom:802.983194px;}
.y49{bottom:803.045506px;}
.y240{bottom:806.172729px;}
.ya4{bottom:806.975129px;}
.y24e{bottom:807.253235px;}
.y241{bottom:807.254883px;}
.y35f{bottom:809.198284px;}
.y1b5{bottom:810.472482px;}
.y315{bottom:810.642771px;}
.y8{bottom:811.701269px;}
.y245{bottom:815.166138px;}
.y27a{bottom:816.731964px;}
.y115{bottom:817.981694px;}
.y48{bottom:818.045506px;}
.y247{bottom:819.053833px;}
.ydb{bottom:819.542236px;}
.y27b{bottom:821.428986px;}
.y27c{bottom:821.430176px;}
.y279{bottom:821.431676px;}
.y35e{bottom:821.944534px;}
.ya3{bottom:824.510129px;}
.y1b4{bottom:825.470982px;}
.y314{bottom:825.641271px;}
.y178{bottom:832.984694px;}
.y114{bottom:832.987694px;}
.y47{bottom:833.048506px;}
.y35d{bottom:834.690784px;}
.y15b{bottom:835.523106px;}
.y278{bottom:836.431676px;}
.yda{bottom:837.077236px;}
.y1b3{bottom:840.469482px;}
.y313{bottom:840.642771px;}
.ya2{bottom:842.045129px;}
.y208{bottom:846.781529px;}
.y274{bottom:846.894012px;}
.y35c{bottom:847.437034px;}
.y177{bottom:847.983194px;}
.y113{bottom:847.986194px;}
.y46{bottom:848.047006px;}
.y275{bottom:849.414000px;}
.y15a{bottom:850.521606px;}
.y277{bottom:851.430176px;}
.y273{bottom:851.434676px;}
.yd9{bottom:854.612236px;}
.y1b2{bottom:855.469482px;}
.y312{bottom:855.641271px;}
.y7{bottom:856.707269px;}
.ya1{bottom:859.580129px;}
.y35b{bottom:860.183284px;}
.y176{bottom:862.981694px;}
.y112{bottom:862.984694px;}
.y45{bottom:863.045506px;}
.y311{bottom:870.642771px;}
.yd8{bottom:872.147236px;}
.y35a{bottom:872.929534px;}
.y2d2{bottom:873.929993px;}
.y2d1{bottom:876.147858px;}
.y2d5{bottom:876.510040px;}
.ya0{bottom:877.115129px;}
.y111{bottom:877.983194px;}
.y175{bottom:877.989194px;}
.y44{bottom:878.047006px;}
.y2d4{bottom:878.535004px;}
.y207{bottom:880.531529px;}
.y168{bottom:882.066592px;}
.y310{bottom:885.641271px;}
.y359{bottom:885.675784px;}
.y1b1{bottom:888.485982px;}
.yd7{bottom:889.682236px;}
.y110{bottom:892.981694px;}
.y174{bottom:892.987694px;}
.y43{bottom:893.045506px;}
.y9f{bottom:894.650129px;}
.y206{bottom:895.534529px;}
.y358{bottom:898.422034px;}
.y270{bottom:898.644012px;}
.y167{bottom:899.601592px;}
.y30f{bottom:900.641271px;}
.y6{bottom:901.713269px;}
.y272{bottom:903.180176px;}
.y271{bottom:903.188965px;}
.y26f{bottom:903.190694px;}
.y1b0{bottom:903.484482px;}
.yd6{bottom:907.217236px;}
.y10f{bottom:907.984694px;}
.y173{bottom:907.986194px;}
.y42{bottom:908.053006px;}
.y205{bottom:910.533029px;}
.y357{bottom:911.168284px;}
.y9e{bottom:912.185129px;}
.y398{bottom:915.493696px;}
.y30e{bottom:915.639771px;}
.y166{bottom:917.136592px;}
.y26e{bottom:918.189194px;}
.y1af{bottom:918.482982px;}
.y10e{bottom:922.983194px;}
.y172{bottom:922.984694px;}
.y41{bottom:923.051506px;}
.y356{bottom:923.914534px;}
.yd5{bottom:924.752236px;}
.y204{bottom:925.531529px;}
.y9d{bottom:929.720129px;}
.y26d{bottom:933.187694px;}
.y1ae{bottom:933.481482px;}
.y165{bottom:934.671592px;}
.yd4{bottom:935.997736px;}
.y355{bottom:936.660784px;}
.y10d{bottom:937.981694px;}
.y171{bottom:937.983194px;}
.y40{bottom:938.050006px;}
.y203{bottom:941.429993px;}
.y397{bottom:945.490694px;}
.y5{bottom:946.719269px;}
.y9c{bottom:947.255129px;}
.y26c{bottom:948.186194px;}
.y1ad{bottom:948.479982px;}
.y354{bottom:949.407034px;}
.y30d{bottom:949.539642px;}
.y164{bottom:952.206592px;}
.y10c{bottom:952.981694px;}
.y3f{bottom:953.048506px;}
.yd3{bottom:953.532736px;}
.y2d{bottom:954.366760px;}
.y9b{bottom:958.500629px;}
.y396{bottom:960.489194px;}
.y353{bottom:962.153284px;}
.y1ac{bottom:963.478482px;}
.y30c{bottom:964.539642px;}
.yd2{bottom:964.778236px;}
.y10b{bottom:967.981694px;}
.y170{bottom:967.987694px;}
.y3e{bottom:968.047006px;}
.y163{bottom:969.741592px;}
.y2c5{bottom:970.679993px;}
.y202{bottom:974.281529px;}
.y2cb{bottom:974.745117px;}
.y352{bottom:974.899534px;}
.y395{bottom:975.487694px;}
.y9a{bottom:976.035629px;}
.y1ab{bottom:978.476982px;}
.y30b{bottom:979.539642px;}
.y2c4{bottom:981.822876px;}
.y2c7{bottom:982.033356px;}
.yd1{bottom:982.313236px;}
.y10a{bottom:982.981694px;}
.y16f{bottom:982.986194px;}
.y3d{bottom:983.045506px;}
.y2cc{bottom:984.329956px;}
.y1fd{bottom:984.743958px;}
.y1ff{bottom:987.264038px;}
.y162{bottom:987.276592px;}
.y351{bottom:987.645784px;}
.y1fc{bottom:989.277194px;}
.y201{bottom:989.280029px;}
.y394{bottom:990.486194px;}
.y2c9{bottom:991.415955px;}
.y2cf{bottom:991.552826px;}
.y1aa{bottom:993.475482px;}
.y99{bottom:993.570629px;}
.y30a{bottom:994.539642px;}
.y109{bottom:997.981694px;}
.y16e{bottom:997.984694px;}
.y3c{bottom:998.048506px;}
.yc5{bottom:999.852736px;}
.yd0{bottom:999.884234px;}
.y350{bottom:1000.392034px;}
.y161{bottom:1004.811592px;}
.y393{bottom:1005.484694px;}
.y1a9{bottom:1008.473982px;}
.yc4{bottom:1011.098236px;}
.y98{bottom:1011.105629px;}
.y23c{bottom:1011.780029px;}
.y16d{bottom:1012.983194px;}
.y108{bottom:1012.984694px;}
.y3b{bottom:1013.047006px;}
.y34f{bottom:1013.138284px;}
.y23e{bottom:1014.510132px;}
.y23a{bottom:1014.968869px;}
.y23b{bottom:1016.535187px;}
.y392{bottom:1020.483194px;}
.y160{bottom:1022.346592px;}
.y1a8{bottom:1023.472482px;}
.y2b7{bottom:1025.280029px;}
.y34e{bottom:1025.884534px;}
.y309{bottom:1026.645771px;}
.y2c2{bottom:1027.270843px;}
.y16c{bottom:1027.981694px;}
.y107{bottom:1027.983194px;}
.y3a{bottom:1028.045506px;}
.y97{bottom:1028.640629px;}
.yc9{bottom:1028.643736px;}
.ycc{bottom:1028.654235px;}
.ycf{bottom:1028.664734px;}
.y2bd{bottom:1029.390015px;}
.y391{bottom:1035.481694px;}
.y2b6{bottom:1036.718997px;}
.y2b9{bottom:1036.870056px;}
.y1fa{bottom:1038.444031px;}
.y1a7{bottom:1038.470982px;}
.y34d{bottom:1038.630784px;}
.y2be{bottom:1038.988770px;}
.y15f{bottom:1039.881589px;}
.y15c{bottom:1039.881592px;}
.yc8{bottom:1039.889236px;}
.ycb{bottom:1039.899735px;}
.yce{bottom:1039.910234px;}
.y308{bottom:1041.644271px;}
.y1fb{bottom:1042.980194px;}
.y106{bottom:1042.981694px;}
.y1f9{bottom:1042.983194px;}
.y39{bottom:1043.045506px;}
.y2bb{bottom:1046.077515px;}
.y90{bottom:1046.162078px;}
.y8e{bottom:1046.165222px;}
.y93{bottom:1046.172577px;}
.y96{bottom:1046.175629px;}
.y2c1{bottom:1046.899658px;}
.y390{bottom:1050.480194px;}
.yca{bottom:1051.145235px;}
.ycd{bottom:1051.155734px;}
.y34c{bottom:1051.377034px;}
.y307{bottom:1056.642771px;}
.y15e{bottom:1057.416589px;}
.y92{bottom:1057.418077px;}
.y95{bottom:1057.421129px;}
.y105{bottom:1057.981694px;}
.y38{bottom:1058.047006px;}
.y34b{bottom:1064.123284px;}
.y266{bottom:1068.281982px;}
.y1f6{bottom:1068.444031px;}
.y91{bottom:1068.663577px;}
.y94{bottom:1068.666629px;}
.yc7{bottom:1068.669736px;}
.y26a{bottom:1070.523010px;}
.y306{bottom:1071.641271px;}
.y1a6{bottom:1072.220982px;}
.y268{bottom:1072.978912px;}
.y1f8{bottom:1072.980194px;}
.y104{bottom:1072.981694px;}
.y37{bottom:1073.045506px;}
.y34a{bottom:1076.869534px;}
.y15d{bottom:1086.197089px;}
.y8f{bottom:1086.201722px;}
.yc6{bottom:1086.204736px;}
.y305{bottom:1086.639771px;}
.y103{bottom:1087.980194px;}
.y36{bottom:1088.044006px;}
.y1a5{bottom:1088.119537px;}
.y349{bottom:1089.615784px;}
.y77{bottom:1140.640320px;}
.ybb{bottom:1140.746521px;}
.y35{bottom:1140.746704px;}
.y4{bottom:1141.922516px;}
.h6f{height:0.000000px;}
.h43{height:2.161488px;}
.h50{height:8.850000px;}
.h51{height:9.150000px;}
.h3c{height:9.901500px;}
.h5b{height:11.550000px;}
.h54{height:12.873228px;}
.h45{height:12.925138px;}
.h4f{height:13.050000px;}
.h3f{height:13.200000px;}
.h4d{height:13.349999px;}
.h4b{height:13.500000px;}
.h5e{height:13.650000px;}
.h5d{height:14.250000px;}
.h40{height:15.724825px;}
.h52{height:16.200000px;}
.h6a{height:16.801500px;}
.h49{height:19.219917px;}
.h5f{height:19.349999px;}
.h6b{height:19.351500px;}
.h65{height:23.942760px;}
.h69{height:24.911149px;}
.h4a{height:25.289409px;}
.h47{height:28.747739px;}
.h59{height:28.870944px;}
.h48{height:29.240558px;}
.h64{height:29.774444px;}
.h68{height:30.267263px;}
.h10{height:30.684677px;}
.h58{height:31.503687px;}
.h66{height:32.099999px;}
.h62{height:32.699999px;}
.h71{height:33.011094px;}
.h6e{height:33.011185px;}
.h57{height:33.750000px;}
.h2{height:34.523438px;}
.h74{height:35.411133px;}
.h44{height:37.826039px;}
.h3d{height:38.474486px;}
.h7{height:38.838867px;}
.h5c{height:38.852746px;}
.h70{height:39.900000px;}
.h6d{height:40.050000px;}
.h42{height:40.500000px;}
.h72{height:41.099999px;}
.h53{height:41.398500px;}
.h23{height:41.538000px;}
.h25{height:41.605153px;}
.h12{height:41.668740px;}
.h21{height:43.008000px;}
.h33{height:43.008009px;}
.h8{height:44.097227px;}
.h76{height:44.505000px;}
.h77{height:45.090000px;}
.h3{height:45.679688px;}
.h6c{height:45.864274px;}
.h56{height:45.931619px;}
.h75{height:46.080000px;}
.h63{height:46.305654px;}
.h19{height:47.469727px;}
.h67{height:47.601195px;}
.h11{height:48.534668px;}
.h6{height:49.183594px;}
.h13{height:49.373525px;}
.h3b{height:49.805414px;}
.h39{height:49.805780px;}
.h37{height:49.805963px;}
.h38{height:49.806009px;}
.h4e{height:49.806146px;}
.h73{height:49.806513px;}
.h78{height:50.439000px;}
.h9{height:53.406000px;}
.h3a{height:53.524046px;}
.ha{height:53.541827px;}
.h2f{height:53.547863px;}
.h1e{height:53.553863px;}
.h31{height:53.565863px;}
.h35{height:53.577680px;}
.h17{height:53.578046px;}
.h34{height:53.583680px;}
.h30{height:53.583863px;}
.h36{height:53.589863px;}
.h27{height:53.589909px;}
.h2d{height:53.595680px;}
.h18{height:53.595863px;}
.h1b{height:53.595909px;}
.h2a{height:53.595955px;}
.h16{height:53.596046px;}
.hd{height:53.596504px;}
.h2e{height:53.601680px;}
.hb{height:53.601863px;}
.h1f{height:53.601883px;}
.h1d{height:53.601886px;}
.h29{height:53.601907px;}
.h28{height:53.601909px;}
.h14{height:53.602046px;}
.h2c{height:53.607680px;}
.hc{height:53.607863px;}
.h32{height:53.607907px;}
.he{height:53.607909px;}
.h2b{height:53.607955px;}
.h15{height:53.608046px;}
.h4c{height:53.613680px;}
.h1a{height:53.613863px;}
.h61{height:53.613955px;}
.h60{height:53.614046px;}
.h3e{height:53.614458px;}
.h55{height:54.025267px;}
.h46{height:54.027098px;}
.h5a{height:54.054310px;}
.h41{height:54.101977px;}
.h1c{height:54.108000px;}
.h20{height:55.296000px;}
.h4{height:57.099609px;}
.h24{height:64.050000px;}
.hf{height:77.677734px;}
.h26{height:87.864009px;}
.h22{height:87.990000px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.wb{width:5.025000px;}
.wa{width:7.606500px;}
.w8{width:15.435000px;}
.wc{width:15.585000px;}
.wd{width:16.396500px;}
.wf{width:17.130000px;}
.we{width:17.341500px;}
.w7{width:18.030000px;}
.w6{width:23.355000px;}
.w18{width:24.495000px;}
.w5{width:25.305000px;}
.w20{width:25.306500px;}
.w9{width:28.395000px;}
.w15{width:32.069999px;}
.w1b{width:34.214999px;}
.w14{width:37.079999px;}
.w3{width:53.116499px;}
.w17{width:55.770000px;}
.w2{width:62.159998px;}
.w21{width:64.888498px;}
.w22{width:64.889997px;}
.w1a{width:85.304998px;}
.w1e{width:86.760000px;}
.w16{width:89.985003px;}
.w1c{width:90.675000px;}
.w1f{width:91.455002px;}
.w19{width:95.429998px;}
.w24{width:120.615005px;}
.w23{width:141.779995px;}
.w1d{width:143.145000px;}
.w27{width:213.405006px;}
.w2a{width:232.754997px;}
.w13{width:305.339996px;}
.w28{width:310.964996px;}
.w29{width:378.990005px;}
.w10{width:400.574982px;}
.w26{width:419.550018px;}
.w2c{width:422.654984px;}
.w25{width:435.750000px;}
.w2b{width:458.400009px;}
.w4{width:500.205002px;}
.w11{width:504.000000px;}
.w12{width:513.644989px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x8b{left:-2.046478px;}
.x0{left:0.000000px;}
.x6d{left:1.914597px;}
.x8{left:7.228350px;}
.x8d{left:10.454544px;}
.x40{left:13.318520px;}
.x44{left:18.653550px;}
.x94{left:19.785919px;}
.x80{left:28.383728px;}
.xa5{left:30.183907px;}
.x90{left:34.110123px;}
.x28{left:44.315552px;}
.x91{left:51.065712px;}
.x82{left:54.965378px;}
.x3{left:61.653603px;}
.xa{left:66.365999px;}
.x83{left:75.795456px;}
.xa6{left:82.050453px;}
.x97{left:85.555801px;}
.xa4{left:96.678864px;}
.xbf{left:109.790268px;}
.x84{left:111.449249px;}
.xc8{left:115.364273px;}
.x14{left:120.398999px;}
.xb{left:130.531499px;}
.x54{left:135.024902px;}
.x7{left:141.395702px;}
.xcf{left:143.007591px;}
.x85{left:144.132751px;}
.xce{left:146.031578px;}
.xc1{left:161.657410px;}
.x2d{left:162.678888px;}
.x56{left:164.198089px;}
.xcb{left:165.685936px;}
.x61{left:166.741814px;}
.xc{left:174.359848px;}
.xc2{left:184.013397px;}
.x58{left:185.271423px;}
.x87{left:188.966400px;}
.x2f{left:198.197229px;}
.x63{left:202.260155px;}
.xaf{left:209.693115px;}
.xd{left:210.889348px;}
.xb5{left:215.727768px;}
.x77{left:220.082520px;}
.x15{left:225.346498px;}
.xc9{left:228.048752px;}
.x89{left:232.827896px;}
.x5{left:233.858253px;}
.x6e{left:235.937256px;}
.x1f{left:238.570793px;}
.x5a{left:244.509567px;}
.x5b{left:249.882568px;}
.x6{left:251.865011px;}
.x24{left:253.630050px;}
.x31{left:255.585733px;}
.x65{left:259.554314px;}
.x3f{left:262.630508px;}
.x36{left:266.723077px;}
.x9e{left:267.796509px;}
.x25{left:269.060989px;}
.x46{left:270.613495px;}
.x6f{left:272.184586px;}
.x33{left:273.594430px;}
.x74{left:275.736008px;}
.x16{left:278.381998px;}
.x7a{left:279.914383px;}
.x38{left:280.992441px;}
.x2c{left:282.456000px;}
.x2b{left:284.363091px;}
.x47{left:286.143906px;}
.x41{left:288.109200px;}
.x39{left:292.035577px;}
.x68{left:293.722939px;}
.x9f{left:295.142693px;}
.xa8{left:296.492546px;}
.x95{left:298.043999px;}
.x7b{left:300.987579px;}
.x96{left:302.180855px;}
.xa1{left:304.217995px;}
.x4d{left:306.947411px;}
.x48{left:313.631996px;}
.xad{left:314.683502px;}
.xe{left:319.259847px;}
.x20{left:320.607293px;}
.xb3{left:322.783493px;}
.x71{left:326.090240px;}
.xb4{left:328.586243px;}
.x17{left:330.283496px;}
.x53{left:332.271011px;}
.x52{left:334.185608px;}
.x49{left:342.123000px;}
.x72{left:343.774933px;}
.xb9{left:346.745087px;}
.x5d{left:350.363251px;}
.xa0{left:353.101500px;}
.xa7{left:356.961594px;}
.x8e{left:358.236008px;}
.xbb{left:371.328735px;}
.x98{left:373.906494px;}
.xc5{left:377.076004px;}
.x42{left:379.164000px;}
.xc6{left:381.210457px;}
.x73{left:382.411652px;}
.x8f{left:385.582672px;}
.x5f{left:390.498871px;}
.x7f{left:393.975906px;}
.x43{left:395.482040px;}
.x99{left:401.252563px;}
.x45{left:402.579758px;}
.x18{left:405.274496px;}
.x8c{left:410.313766px;}
.x4e{left:412.302292px;}
.xb2{left:415.635452px;}
.xd3{left:417.948143px;}
.x81{left:421.920456px;}
.xbc{left:425.855988px;}
.x35{left:434.109582px;}
.x67{left:437.902519px;}
.xca{left:440.437820px;}
.x76{left:442.776581px;}
.x3a{left:443.883615px;}
.xf{left:446.635345px;}
.x6a{left:447.676964px;}
.x21{left:450.366291px;}
.xbd{left:453.228287px;}
.x2e{left:455.826462px;}
.x62{left:458.007431px;}
.x9a{left:459.211349px;}
.x7c{left:461.313583px;}
.x3c{left:471.180154px;}
.x6c{left:474.974098px;}
.x19{left:478.417496px;}
.x75{left:480.441742px;}
.x55{left:482.186234px;}
.xd0{left:492.210617px;}
.x30{left:494.909088px;}
.x64{left:497.076004px;}
.x78{left:498.748215px;}
.x57{left:502.665436px;}
.x7e{left:509.522232px;}
.x79{left:511.694412px;}
.xd1{left:512.865463px;}
.xa2{left:516.750916px;}
.xbe{left:521.363388px;}
.xcc{left:522.693466px;}
.x59{left:523.739227px;}
.x26{left:527.234985px;}
.x10{left:529.795366px;}
.x1a{left:531.452996px;}
.x9b{left:532.878021px;}
.x4f{left:534.820496px;}
.xa3{left:535.824921px;}
.xb6{left:543.033463px;}
.x32{left:544.237930px;}
.x66{left:546.310500px;}
.xae{left:548.204269px;}
.x50{left:552.187958px;}
.x86{left:555.314529px;}
.x9c{left:560.223770px;}
.x34{left:562.247406px;}
.x37{left:563.448441px;}
.x27{left:564.800537px;}
.x11{left:566.324866px;}
.x3d{left:568.966507px;}
.xb7{left:577.269745px;}
.x29{left:580.290756px;}
.x69{left:582.194412px;}
.x1b{left:583.354494px;}
.xc0{left:585.177887px;}
.x4{left:586.814117px;}
.x5c{left:590.915268px;}
.x3e{left:594.292786px;}
.xb8{left:597.006454px;}
.x88{left:599.175888px;}
.xb0{left:600.691956px;}
.x92{left:610.931992px;}
.x9d{left:618.182556px;}
.xac{left:619.443878px;}
.x93{left:628.382263px;}
.xd2{left:629.869629px;}
.xc3{left:632.225235px;}
.x1c{left:636.389994px;}
.xc7{left:640.194580px;}
.x8a{left:644.994461px;}
.xcd{left:647.743652px;}
.xab{left:648.751511px;}
.x70{left:651.597748px;}
.x51{left:670.865982px;}
.x12{left:674.695365px;}
.xba{left:678.722534px;}
.xa9{left:682.341019px;}
.x1d{left:688.291492px;}
.x5e{left:701.088318px;}
.xb1{left:704.115738px;}
.x22{left:707.332791px;}
.x4a{left:713.923508px;}
.x4b{left:721.625244px;}
.x60{left:725.807236px;}
.xaa{left:738.271820px;}
.x3b{left:740.041809px;}
.x6b{left:741.939743px;}
.x7d{left:752.439880px;}
.x1e{left:763.282492px;}
.x9{left:797.390808px;}
.x2{left:798.901611px;}
.x13{left:802.070863px;}
.xc4{left:808.958130px;}
.x4c{left:814.042511px;}
.x2a{left:815.423126px;}
.x23{left:818.848755px;}
.x1{left:825.001190px;}
@media print{
.v14{vertical-align:-57.549967pt;}
.v11{vertical-align:-38.906783pt;}
.v7{vertical-align:-16.799967pt;}
.v5{vertical-align:-15.866659pt;}
.vf{vertical-align:-14.064535pt;}
.v17{vertical-align:-11.424967pt;}
.v3{vertical-align:-9.695447pt;}
.v10{vertical-align:-8.447998pt;}
.ve{vertical-align:-7.199504pt;}
.vd{vertical-align:-3.200033pt;}
.v1{vertical-align:-1.322667pt;}
.v0{vertical-align:0.000000pt;}
.v16{vertical-align:0.912627pt;}
.v15{vertical-align:7.537435pt;}
.v8{vertical-align:9.599935pt;}
.v9{vertical-align:13.055552pt;}
.v6{vertical-align:15.866659pt;}
.v4{vertical-align:16.757301pt;}
.v2{vertical-align:18.666667pt;}
.vb{vertical-align:20.010667pt;}
.v12{vertical-align:38.906783pt;}
.va{vertical-align:39.984000pt;}
.v13{vertical-align:46.126953pt;}
.vc{vertical-align:53.066732pt;}
.ls17{letter-spacing:-9.888000pt;}
.lsd9{letter-spacing:-3.720000pt;}
.lscf{letter-spacing:-3.520000pt;}
.ls57{letter-spacing:-1.306667pt;}
.ls49{letter-spacing:-1.082667pt;}
.ls38{letter-spacing:-1.056000pt;}
.ls50{letter-spacing:-0.933333pt;}
.ls4e{letter-spacing:-0.896000pt;}
.lsd0{letter-spacing:-0.800000pt;}
.ls72{letter-spacing:-0.768000pt;}
.ls4c{letter-spacing:-0.746667pt;}
.ls61{letter-spacing:-0.672000pt;}
.ls48{letter-spacing:-0.597333pt;}
.ls3c{letter-spacing:-0.576000pt;}
.ls55{letter-spacing:-0.560000pt;}
.ls4f{letter-spacing:-0.485333pt;}
.ls76{letter-spacing:-0.480000pt;}
.ls4d{letter-spacing:-0.448000pt;}
.lscc{letter-spacing:-0.440000pt;}
.lsba{letter-spacing:-0.436800pt;}
.ls44{letter-spacing:-0.432000pt;}
.ls1e{letter-spacing:-0.384000pt;}
.ls56{letter-spacing:-0.373333pt;}
.lsda{letter-spacing:-0.360000pt;}
.ls1a{letter-spacing:-0.336000pt;}
.lsd7{letter-spacing:-0.320000pt;}
.ls47{letter-spacing:-0.298667pt;}
.ls43{letter-spacing:-0.288000pt;}
.lscb{letter-spacing:-0.280000pt;}
.lsbb{letter-spacing:-0.249600pt;}
.ls3e{letter-spacing:-0.240000pt;}
.lscd{letter-spacing:-0.200000pt;}
.ls3a{letter-spacing:-0.192000pt;}
.ls45{letter-spacing:-0.187200pt;}
.ls58{letter-spacing:-0.156000pt;}
.ls4b{letter-spacing:-0.149333pt;}
.ls1d{letter-spacing:-0.144000pt;}
.ls89{letter-spacing:-0.124800pt;}
.lsdb{letter-spacing:-0.120000pt;}
.ls4a{letter-spacing:-0.112000pt;}
.ls1c{letter-spacing:-0.096000pt;}
.ls39{letter-spacing:-0.093600pt;}
.lsce{letter-spacing:-0.080000pt;}
.ls37{letter-spacing:-0.062400pt;}
.ls36{letter-spacing:-0.048000pt;}
.ls16{letter-spacing:0.000000pt;}
.ls53{letter-spacing:0.000049pt;}
.ls2a{letter-spacing:0.000074pt;}
.ls54{letter-spacing:0.000130pt;}
.ls29{letter-spacing:0.000237pt;}
.lsb0{letter-spacing:0.004889pt;}
.ls1{letter-spacing:0.011754pt;}
.ls15{letter-spacing:0.015944pt;}
.ls7a{letter-spacing:0.024084pt;}
.ls71{letter-spacing:0.031200pt;}
.lsb4{letter-spacing:0.032269pt;}
.ls90{letter-spacing:0.036505pt;}
.ls8b{letter-spacing:0.038384pt;}
.ls9f{letter-spacing:0.038400pt;}
.lsc4{letter-spacing:0.040000pt;}
.ls8d{letter-spacing:0.040845pt;}
.ls7b{letter-spacing:0.046800pt;}
.ls22{letter-spacing:0.048000pt;}
.ls9a{letter-spacing:0.048033pt;}
.ls31{letter-spacing:0.059645pt;}
.ls32{letter-spacing:0.059807pt;}
.ls3f{letter-spacing:0.062400pt;}
.lsa8{letter-spacing:0.073010pt;}
.lsa6{letter-spacing:0.076800pt;}
.ls5d{letter-spacing:0.078366pt;}
.lsd1{letter-spacing:0.080000pt;}
.ls5a{letter-spacing:0.081129pt;}
.ls59{letter-spacing:0.081454pt;}
.lsa0{letter-spacing:0.083082pt;}
.ls6c{letter-spacing:0.087477pt;}
.ls3b{letter-spacing:0.093600pt;}
.ls74{letter-spacing:0.093746pt;}
.ls73{letter-spacing:0.094397pt;}
.ls30{letter-spacing:0.096000pt;}
.ls9b{letter-spacing:0.096066pt;}
.ls70{letter-spacing:0.097652pt;}
.lsd{letter-spacing:0.101311pt;}
.ls87{letter-spacing:0.109515pt;}
.ls8{letter-spacing:0.112309pt;}
.lse{letter-spacing:0.112472pt;}
.ls5b{letter-spacing:0.116936pt;}
.lsd8{letter-spacing:0.120000pt;}
.ls27{letter-spacing:0.120113pt;}
.ls5{letter-spacing:0.122633pt;}
.ls3{letter-spacing:0.122715pt;}
.ls18{letter-spacing:0.124800pt;}
.ls8c{letter-spacing:0.139200pt;}
.ls4{letter-spacing:0.139468pt;}
.ls20{letter-spacing:0.140400pt;}
.ls6e{letter-spacing:0.140783pt;}
.ls7f{letter-spacing:0.141024pt;}
.ls67{letter-spacing:0.141187pt;}
.ls5e{letter-spacing:0.141269pt;}
.ls78{letter-spacing:0.141272pt;}
.ls9{letter-spacing:0.141348pt;}
.ls6{letter-spacing:0.141350pt;}
.ls75{letter-spacing:0.141353pt;}
.ls77{letter-spacing:0.141434pt;}
.ls6f{letter-spacing:0.141446pt;}
.ls6b{letter-spacing:0.141594pt;}
.ls5c{letter-spacing:0.141839pt;}
.ls6d{letter-spacing:0.141920pt;}
.ls62{letter-spacing:0.142001pt;}
.ls1b{letter-spacing:0.144000pt;}
.ls7{letter-spacing:0.156000pt;}
.lsc7{letter-spacing:0.160000pt;}
.ls9e{letter-spacing:0.162535pt;}
.ls79{letter-spacing:0.168000pt;}
.lsbf{letter-spacing:0.180000pt;}
.ls66{letter-spacing:0.182366pt;}
.ls8e{letter-spacing:0.182400pt;}
.ls34{letter-spacing:0.187200pt;}
.ls65{letter-spacing:0.191318pt;}
.ls63{letter-spacing:0.191969pt;}
.ls2{letter-spacing:0.192000pt;}
.ls64{letter-spacing:0.192457pt;}
.lsc2{letter-spacing:0.200000pt;}
.lsa7{letter-spacing:0.210198pt;}
.lsa3{letter-spacing:0.211200pt;}
.ls60{letter-spacing:0.218400pt;}
.ls5f{letter-spacing:0.228915pt;}
.lsbc{letter-spacing:0.234667pt;}
.ls25{letter-spacing:0.234696pt;}
.ls24{letter-spacing:0.234698pt;}
.ls2d{letter-spacing:0.239007pt;}
.ls2c{letter-spacing:0.239495pt;}
.lsa{letter-spacing:0.240000pt;}
.ls69{letter-spacing:0.240555pt;}
.ls7c{letter-spacing:0.246982pt;}
.ls3d{letter-spacing:0.249600pt;}
.ls7d{letter-spacing:0.250667pt;}
.lsa2{letter-spacing:0.264000pt;}
.lsd2{letter-spacing:0.280000pt;}
.ls8a{letter-spacing:0.280800pt;}
.ls21{letter-spacing:0.288000pt;}
.ls14{letter-spacing:0.312000pt;}
.ls2e{letter-spacing:0.317864pt;}
.lsc5{letter-spacing:0.320000pt;}
.ls91{letter-spacing:0.321600pt;}
.ls12{letter-spacing:0.326409pt;}
.ls13{letter-spacing:0.327600pt;}
.ls23{letter-spacing:0.336000pt;}
.ls6a{letter-spacing:0.340800pt;}
.ls1f{letter-spacing:0.343200pt;}
.ls7e{letter-spacing:0.349358pt;}
.lsc9{letter-spacing:0.360000pt;}
.lsb{letter-spacing:0.367424pt;}
.ls46{letter-spacing:0.374400pt;}
.ls2b{letter-spacing:0.384000pt;}
.ls40{letter-spacing:0.384677pt;}
.lsd4{letter-spacing:0.400000pt;}
.ls35{letter-spacing:0.432000pt;}
.ls26{letter-spacing:0.433589pt;}
.ls88{letter-spacing:0.436800pt;}
.lsbd{letter-spacing:0.440000pt;}
.ls68{letter-spacing:0.457268pt;}
.ls10{letter-spacing:0.468000pt;}
.ls11{letter-spacing:0.469754pt;}
.ls2f{letter-spacing:0.480000pt;}
.lsc6{letter-spacing:0.512076pt;}
.lsa4{letter-spacing:0.513600pt;}
.lsdd{letter-spacing:0.520000pt;}
.ls19{letter-spacing:0.528000pt;}
.lsa5{letter-spacing:0.537600pt;}
.lsdc{letter-spacing:0.560000pt;}
.lsc{letter-spacing:0.576000pt;}
.lsc0{letter-spacing:0.620000pt;}
.ls33{letter-spacing:0.624000pt;}
.ls28{letter-spacing:0.672000pt;}
.lsd3{letter-spacing:0.676046pt;}
.ls95{letter-spacing:0.693596pt;}
.lsf{letter-spacing:0.720000pt;}
.ls83{letter-spacing:0.839617pt;}
.lsc1{letter-spacing:0.900076pt;}
.lsc3{letter-spacing:0.907999pt;}
.lsca{letter-spacing:1.007980pt;}
.lsd6{letter-spacing:1.108000pt;}
.lsd5{letter-spacing:1.320000pt;}
.lsc8{letter-spacing:1.579951pt;}
.lsbe{letter-spacing:1.875926pt;}
.ls8f{letter-spacing:2.226809pt;}
.ls0{letter-spacing:2.666667pt;}
.lsa1{letter-spacing:2.706048pt;}
.lsb3{letter-spacing:2.706129pt;}
.ls99{letter-spacing:3.394145pt;}
.ls93{letter-spacing:8.021522pt;}
.ls98{letter-spacing:10.615308pt;}
.ls84{letter-spacing:10.637571pt;}
.ls86{letter-spacing:10.663341pt;}
.ls96{letter-spacing:10.703677pt;}
.ls80{letter-spacing:10.711374pt;}
.ls9c{letter-spacing:13.305159pt;}
.lsaf{letter-spacing:13.324217pt;}
.lsb1{letter-spacing:13.324534pt;}
.lsab{letter-spacing:13.324696pt;}
.lsaa{letter-spacing:13.334023pt;}
.lsac{letter-spacing:13.337670pt;}
.ls92{letter-spacing:13.353192pt;}
.lsad{letter-spacing:13.372711pt;}
.lsb2{letter-spacing:13.374176pt;}
.lsb5{letter-spacing:13.375047pt;}
.ls85{letter-spacing:13.422899pt;}
.lsb9{letter-spacing:13.423062pt;}
.lsb7{letter-spacing:13.470425pt;}
.ls97{letter-spacing:13.534904pt;}
.lsa9{letter-spacing:16.022836pt;}
.lsae{letter-spacing:16.024620pt;}
.lsb8{letter-spacing:16.097893pt;}
.lsb6{letter-spacing:16.098056pt;}
.ls9d{letter-spacing:16.112515pt;}
.ls94{letter-spacing:17.696604pt;}
.ls82{letter-spacing:17.742668pt;}
.ls81{letter-spacing:24.256698pt;}
.ls51{letter-spacing:40.469333pt;}
.ls42{letter-spacing:42.319595pt;}
.ls52{letter-spacing:73.434667pt;}
.ls41{letter-spacing:365.135500pt;}
.ws1{word-spacing:-13.333333pt;}
.wsef{word-spacing:-12.320000pt;}
.ws20{word-spacing:-12.085333pt;}
.ws74{word-spacing:-11.328000pt;}
.ws40{word-spacing:-11.232000pt;}
.ws3f{word-spacing:-11.184000pt;}
.ws1f{word-spacing:-11.136000pt;}
.ws2f{word-spacing:-11.040000pt;}
.ws8e{word-spacing:-10.992000pt;}
.ws21{word-spacing:-10.896000pt;}
.ws41{word-spacing:-10.848000pt;}
.ws29{word-spacing:-10.800000pt;}
.ws3d{word-spacing:-10.752000pt;}
.ws89{word-spacing:-10.656000pt;}
.wsd{word-spacing:-10.560000pt;}
.ws14{word-spacing:-10.512000pt;}
.ws73{word-spacing:-10.464000pt;}
.ws87{word-spacing:-10.416000pt;}
.wsb3{word-spacing:-10.320000pt;}
.ws9f{word-spacing:-10.128000pt;}
.ws2c{word-spacing:-9.840000pt;}
.wsf2{word-spacing:-9.360000pt;}
.ws106{word-spacing:-9.280000pt;}
.wsf0{word-spacing:-9.260000pt;}
.ws10e{word-spacing:-9.240000pt;}
.ws75{word-spacing:-8.880000pt;}
.wsf1{word-spacing:-8.720000pt;}
.ws0{word-spacing:-8.533333pt;}
.ws69{word-spacing:-8.474667pt;}
.ws53{word-spacing:-8.362667pt;}
.wsf4{word-spacing:-8.360000pt;}
.ws45{word-spacing:-8.101333pt;}
.ws46{word-spacing:-7.802667pt;}
.ws79{word-spacing:-7.728000pt;}
.ws93{word-spacing:-7.550400pt;}
.ws66{word-spacing:-7.541333pt;}
.wsba{word-spacing:-7.519200pt;}
.ws44{word-spacing:-7.456800pt;}
.ws6{word-spacing:-7.425600pt;}
.ws23{word-spacing:-7.394400pt;}
.wsbd{word-spacing:-7.363200pt;}
.ws22{word-spacing:-7.332000pt;}
.ws8f{word-spacing:-7.300800pt;}
.ws1b{word-spacing:-7.269600pt;}
.ws1a{word-spacing:-7.238400pt;}
.ws8a{word-spacing:-7.207200pt;}
.ws1e{word-spacing:-7.176000pt;}
.ws24{word-spacing:-7.144800pt;}
.ws2{word-spacing:-7.141333pt;}
.ws94{word-spacing:-7.113600pt;}
.ws5{word-spacing:-7.082400pt;}
.ws1c{word-spacing:-7.020000pt;}
.ws1d{word-spacing:-6.988800pt;}
.wsbc{word-spacing:-6.957600pt;}
.ws86{word-spacing:-6.926400pt;}
.ws43{word-spacing:-6.895200pt;}
.wsdb{word-spacing:-6.708000pt;}
.ws4{word-spacing:-6.552000pt;}
.ws7{word-spacing:-5.893333pt;}
.wsf3{word-spacing:-5.640000pt;}
.ws110{word-spacing:-5.520000pt;}
.ws116{word-spacing:-5.400000pt;}
.ws10c{word-spacing:-5.360000pt;}
.ws7b{word-spacing:-5.265867pt;}
.ws10a{word-spacing:-5.080000pt;}
.ws117{word-spacing:-4.960000pt;}
.wscb{word-spacing:-4.896000pt;}
.wsf5{word-spacing:-2.304000pt;}
.wsec{word-spacing:-2.016000pt;}
.ws97{word-spacing:-1.776000pt;}
.wsf7{word-spacing:-1.536000pt;}
.ws34{word-spacing:-1.248000pt;}
.wsca{word-spacing:-1.152000pt;}
.wsc{word-spacing:-1.104000pt;}
.ws11{word-spacing:-1.056000pt;}
.wsc7{word-spacing:-1.008000pt;}
.ws102{word-spacing:-0.920000pt;}
.wsd2{word-spacing:-0.912000pt;}
.ws114{word-spacing:-0.880000pt;}
.ws2b{word-spacing:-0.864000pt;}
.wsf{word-spacing:-0.816000pt;}
.ws99{word-spacing:-0.768000pt;}
.ws3e{word-spacing:-0.720000pt;}
.wsaf{word-spacing:-0.672000pt;}
.ws9b{word-spacing:-0.624000pt;}
.wse{word-spacing:-0.576000pt;}
.ws11e{word-spacing:-0.560000pt;}
.wsb9{word-spacing:-0.528000pt;}
.ws11f{word-spacing:-0.520000pt;}
.ws28{word-spacing:-0.480000pt;}
.wsfe{word-spacing:-0.440000pt;}
.ws2a{word-spacing:-0.432000pt;}
.wsad{word-spacing:-0.384000pt;}
.wsb4{word-spacing:-0.374400pt;}
.ws16{word-spacing:-0.343200pt;}
.ws42{word-spacing:-0.336000pt;}
.ws10f{word-spacing:-0.320000pt;}
.ws2d{word-spacing:-0.288000pt;}
.ws10d{word-spacing:-0.280000pt;}
.wsb8{word-spacing:-0.250667pt;}
.wscf{word-spacing:-0.240000pt;}
.ws120{word-spacing:-0.234667pt;}
.ws109{word-spacing:-0.200000pt;}
.ws9{word-spacing:-0.192000pt;}
.ws100{word-spacing:-0.160000pt;}
.wsae{word-spacing:-0.144000pt;}
.wsac{word-spacing:-0.124800pt;}
.ws115{word-spacing:-0.120000pt;}
.ws12{word-spacing:-0.096000pt;}
.wse0{word-spacing:-0.073010pt;}
.wsb5{word-spacing:-0.062400pt;}
.wsbf{word-spacing:-0.048033pt;}
.ws8d{word-spacing:-0.048000pt;}
.ws112{word-spacing:-0.040000pt;}
.wsc0{word-spacing:-0.036505pt;}
.ws3{word-spacing:-0.034667pt;}
.ws9d{word-spacing:-0.031200pt;}
.ws8{word-spacing:0.000000pt;}
.ws113{word-spacing:0.040000pt;}
.wsb7{word-spacing:0.048000pt;}
.wsb6{word-spacing:0.062400pt;}
.ws10b{word-spacing:0.080000pt;}
.ws8c{word-spacing:0.096000pt;}
.ws37{word-spacing:0.144000pt;}
.ws107{word-spacing:0.160000pt;}
.ws90{word-spacing:0.192000pt;}
.ws104{word-spacing:0.200000pt;}
.ws3b{word-spacing:0.240000pt;}
.ws103{word-spacing:0.280000pt;}
.wsb0{word-spacing:0.288000pt;}
.ws76{word-spacing:0.298667pt;}
.ws108{word-spacing:0.320000pt;}
.ws9e{word-spacing:0.336000pt;}
.ws11b{word-spacing:0.360000pt;}
.ws91{word-spacing:0.384000pt;}
.ws92{word-spacing:0.432000pt;}
.ws125{word-spacing:0.480000pt;}
.ws30{word-spacing:0.528000pt;}
.wsff{word-spacing:0.560000pt;}
.ws26{word-spacing:0.576000pt;}
.wsa0{word-spacing:0.624000pt;}
.ws11a{word-spacing:0.640000pt;}
.ws98{word-spacing:0.672000pt;}
.ws101{word-spacing:0.680000pt;}
.ws2e{word-spacing:0.720000pt;}
.wsd8{word-spacing:0.816000pt;}
.wsb2{word-spacing:0.864000pt;}
.ws111{word-spacing:0.880000pt;}
.wsb1{word-spacing:0.912000pt;}
.wsfd{word-spacing:0.920000pt;}
.ws27{word-spacing:0.960000pt;}
.ws33{word-spacing:1.008000pt;}
.ws15{word-spacing:1.056000pt;}
.wsb{word-spacing:1.104000pt;}
.ws9c{word-spacing:1.152000pt;}
.ws10{word-spacing:1.200000pt;}
.wsd0{word-spacing:1.248000pt;}
.ws11c{word-spacing:1.280000pt;}
.wsf6{word-spacing:1.296000pt;}
.ws25{word-spacing:1.344000pt;}
.ws11d{word-spacing:1.360000pt;}
.wsd1{word-spacing:1.392000pt;}
.wsc9{word-spacing:1.440000pt;}
.ws71{word-spacing:1.488000pt;}
.ws31{word-spacing:1.536000pt;}
.ws9a{word-spacing:1.584000pt;}
.ws72{word-spacing:1.632000pt;}
.wsda{word-spacing:1.680000pt;}
.ws35{word-spacing:1.728000pt;}
.ws36{word-spacing:1.776000pt;}
.ws123{word-spacing:1.824000pt;}
.ws6f{word-spacing:1.872000pt;}
.ws19{word-spacing:1.904000pt;}
.ws13{word-spacing:1.968000pt;}
.ws3c{word-spacing:2.016000pt;}
.wsc6{word-spacing:2.064000pt;}
.ws8b{word-spacing:2.112000pt;}
.wsd3{word-spacing:2.592000pt;}
.wsf9{word-spacing:2.640000pt;}
.ws32{word-spacing:2.688000pt;}
.wsfb{word-spacing:2.736000pt;}
.wsd9{word-spacing:2.784000pt;}
.ws119{word-spacing:2.800000pt;}
.wsc4{word-spacing:2.832000pt;}
.wsf8{word-spacing:2.880000pt;}
.ws121{word-spacing:2.976000pt;}
.wsc8{word-spacing:3.120000pt;}
.ws70{word-spacing:3.168000pt;}
.ws96{word-spacing:3.216000pt;}
.ws118{word-spacing:3.240000pt;}
.wsed{word-spacing:3.264000pt;}
.wsd6{word-spacing:3.312000pt;}
.ws3a{word-spacing:3.552000pt;}
.ws17{word-spacing:3.626667pt;}
.wsd4{word-spacing:3.648000pt;}
.wsee{word-spacing:3.744000pt;}
.ws18{word-spacing:3.898667pt;}
.wsc3{word-spacing:4.032000pt;}
.wsd7{word-spacing:4.080000pt;}
.wsfc{word-spacing:4.128000pt;}
.ws38{word-spacing:4.176000pt;}
.wsd5{word-spacing:4.416000pt;}
.ws39{word-spacing:4.752000pt;}
.ws124{word-spacing:5.040000pt;}
.wsc5{word-spacing:5.424000pt;}
.wsfa{word-spacing:5.568000pt;}
.ws122{word-spacing:5.760000pt;}
.ws95{word-spacing:5.904000pt;}
.ws6e{word-spacing:6.000000pt;}
.wsea{word-spacing:6.144000pt;}
.wse9{word-spacing:6.192000pt;}
.wseb{word-spacing:6.432000pt;}
.wsa{word-spacing:9.888000pt;}
.ws105{word-spacing:10.760000pt;}
.wse7{word-spacing:11.431870pt;}
.wse8{word-spacing:11.479903pt;}
.wsdc{word-spacing:11.844954pt;}
.wsc1{word-spacing:12.344493pt;}
.wscd{word-spacing:12.392531pt;}
.wse4{word-spacing:12.488597pt;}
.wsde{word-spacing:12.536630pt;}
.wsbb{word-spacing:12.680729pt;}
.wsc2{word-spacing:12.728762pt;}
.wse3{word-spacing:13.065210pt;}
.wsce{word-spacing:13.281133pt;}
.ws88{word-spacing:13.584000pt;}
.wse6{word-spacing:13.737457pt;}
.wsbe{word-spacing:14.140934pt;}
.wscc{word-spacing:14.145738pt;}
.wse1{word-spacing:14.150541pt;}
.wse2{word-spacing:14.198575pt;}
.wsdd{word-spacing:14.289837pt;}
.wsdf{word-spacing:14.337870pt;}
.wse5{word-spacing:18.034773pt;}
.ws4c{word-spacing:21.280000pt;}
.ws47{word-spacing:24.453333pt;}
.ws49{word-spacing:31.957333pt;}
.ws4b{word-spacing:32.368000pt;}
.ws7d{word-spacing:34.384000pt;}
.ws48{word-spacing:34.682667pt;}
.ws4a{word-spacing:39.461329pt;}
.ws61{word-spacing:46.144000pt;}
.ws64{word-spacing:50.064000pt;}
.ws55{word-spacing:62.197333pt;}
.ws50{word-spacing:63.130667pt;}
.ws5c{word-spacing:64.512000pt;}
.ws65{word-spacing:65.445333pt;}
.ws68{word-spacing:67.648000pt;}
.ws4e{word-spacing:68.618667pt;}
.ws78{word-spacing:74.745061pt;}
.ws62{word-spacing:77.877333pt;}
.ws77{word-spacing:78.777067pt;}
.ws56{word-spacing:78.960000pt;}
.ws58{word-spacing:79.146667pt;}
.ws7e{word-spacing:79.482667pt;}
.ws4f{word-spacing:80.117333pt;}
.ws5e{word-spacing:84.634667pt;}
.ws6b{word-spacing:85.568000pt;}
.ws5d{word-spacing:90.757333pt;}
.ws80{word-spacing:91.541326pt;}
.ws67{word-spacing:93.187733pt;}
.ws52{word-spacing:97.066667pt;}
.ws83{word-spacing:100.538660pt;}
.ws5b{word-spacing:107.486400pt;}
.ws63{word-spacing:107.744000pt;}
.ws7f{word-spacing:109.909333pt;}
.ws51{word-spacing:112.672000pt;}
.ws60{word-spacing:117.301333pt;}
.ws81{word-spacing:117.824000pt;}
.ws84{word-spacing:119.839993pt;}
.ws82{word-spacing:121.934393pt;}
.ws7c{word-spacing:123.797333pt;}
.ws4d{word-spacing:124.170667pt;}
.wsaa{word-spacing:126.261333pt;}
.ws6d{word-spacing:132.160000pt;}
.ws85{word-spacing:132.607993pt;}
.ws5a{word-spacing:135.669333pt;}
.ws59{word-spacing:141.978667pt;}
.ws6a{word-spacing:148.325333pt;}
.ws7a{word-spacing:150.270400pt;}
.ws6c{word-spacing:156.762667pt;}
.ws5f{word-spacing:168.373333pt;}
.wsa5{word-spacing:173.861333pt;}
.ws57{word-spacing:175.728000pt;}
.wsa7{word-spacing:189.280000pt;}
.ws54{word-spacing:190.997333pt;}
.wsab{word-spacing:195.365333pt;}
.wsa8{word-spacing:214.928000pt;}
.wsa4{word-spacing:268.874667pt;}
.wsa2{word-spacing:274.213333pt;}
.wsa3{word-spacing:307.477333pt;}
.wsa1{word-spacing:347.838400pt;}
.wsa9{word-spacing:377.477333pt;}
.wsa6{word-spacing:378.746667pt;}
._4d{margin-left:-18.624006pt;}
._5b{margin-left:-16.918940pt;}
._10{margin-left:-15.960790pt;}
._11{margin-left:-14.218710pt;}
._8{margin-left:-13.293795pt;}
._e{margin-left:-11.859241pt;}
._6{margin-left:-10.613333pt;}
._5{margin-left:-9.515733pt;}
._16{margin-left:-8.613582pt;}
._5e{margin-left:-7.622420pt;}
._15{margin-left:-6.339762pt;}
._7{margin-left:-5.395200pt;}
._2{margin-left:-3.654400pt;}
._4{margin-left:-2.624534pt;}
._0{margin-left:-1.668267pt;}
._3{width:0.924267pt;}
._9{width:1.993805pt;}
._a{width:3.572267pt;}
._b{width:5.322995pt;}
._62{width:6.689945pt;}
._17{width:8.086964pt;}
._c{width:9.120000pt;}
._d{width:10.884256pt;}
._13{width:12.722836pt;}
._12{width:14.374387pt;}
._5c{width:16.067061pt;}
._5d{width:24.165436pt;}
._4e{width:30.522057pt;}
._60{width:33.866123pt;}
._5f{width:34.836800pt;}
._14{width:36.024514pt;}
._51{width:38.803733pt;}
._18{width:39.988793pt;}
._61{width:41.686394pt;}
._f{width:42.788948pt;}
._50{width:44.498659pt;}
._4a{width:51.814393pt;}
._4b{width:57.008000pt;}
._27{width:59.758933pt;}
._31{width:65.930662pt;}
._2e{width:67.200004pt;}
._23{width:69.204267pt;}
._49{width:71.605326pt;}
._30{width:76.271996pt;}
._28{width:77.392000pt;}
._3c{width:80.105600pt;}
._3f{width:82.465592pt;}
._26{width:83.402662pt;}
._38{width:84.774933pt;}
._1b{width:86.352000pt;}
._1f{width:87.434667pt;}
._1d{width:88.592000pt;}
._1a{width:89.936000pt;}
._37{width:90.906667pt;}
._36{width:93.109333pt;}
._24{width:94.341333pt;}
._3d{width:100.464000pt;}
._21{width:101.359996pt;}
._35{width:103.049067pt;}
._20{width:104.010667pt;}
._34{width:105.690671pt;}
._3a{width:106.677875pt;}
._29{width:107.856000pt;}
._25{width:108.826667pt;}
._2d{width:110.805334pt;}
._2c{width:112.336000pt;}
._48{width:115.807993pt;}
._1c{width:118.458663pt;}
._19{width:119.690659pt;}
._2b{width:120.661330pt;}
._39{width:121.669325pt;}
._3e{width:122.665600pt;}
._40{width:123.722667pt;}
._33{width:126.000000pt;}
._45{width:130.507196pt;}
._2f{width:138.207993pt;}
._2a{width:150.863997pt;}
._1e{width:152.394660pt;}
._59{width:153.925333pt;}
._5a{width:156.576000pt;}
._32{width:168.373326pt;}
._22{width:169.343993pt;}
._41{width:173.297067pt;}
._43{width:183.735467pt;}
._3b{width:186.825067pt;}
._4c{width:188.710927pt;}
._47{width:204.148800pt;}
._46{width:205.921600pt;}
._1{width:287.492267pt;}
._56{width:385.952000pt;}
._54{width:387.191471pt;}
._57{width:393.754667pt;}
._55{width:398.334930pt;}
._58{width:399.466659pt;}
._53{width:410.405333pt;}
._52{width:416.219200pt;}
._44{width:647.285333pt;}
._4f{width:701.418638pt;}
._42{width:1055.338667pt;}
.fsb{font-size:24.266667pt;}
.fs7{font-size:29.466667pt;}
.fs5{font-size:31.200000pt;}
.fs3{font-size:34.666667pt;}
.fse{font-size:36.505066pt;}
.fsa{font-size:37.333333pt;}
.fsf{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fsd{font-size:48.033066pt;}
.fsc{font-size:50.133331pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y230{bottom:0.039998pt;}
.y2f1{bottom:0.094523pt;}
.y2fe{bottom:0.094543pt;}
.y233{bottom:0.173197pt;}
.y1de{bottom:0.173340pt;}
.y2e8{bottom:0.174398pt;}
.y1f0{bottom:1.398397pt;}
.y24a{bottom:1.438395pt;}
.y265{bottom:1.447866pt;}
.y2c3{bottom:1.769613pt;}
.y26b{bottom:2.093424pt;}
.y20d{bottom:2.239868pt;}
.y276{bottom:2.239989pt;}
.y200{bottom:2.240072pt;}
.y2d6{bottom:2.293376pt;}
.y25c{bottom:2.373332pt;}
.y269{bottom:2.375081pt;}
.y23d{bottom:2.426758pt;}
.yb9{bottom:2.843733pt;}
.y34{bottom:2.843867pt;}
.ye1{bottom:2.844400pt;}
.y2{bottom:2.844533pt;}
.y2db{bottom:2.961711pt;}
.y1e1{bottom:3.106669pt;}
.y262{bottom:3.559865pt;}
.y2ca{bottom:3.613444pt;}
.y22d{bottom:3.639740pt;}
.y2bc{bottom:3.653320pt;}
.y1fe{bottom:4.039876pt;}
.y1f7{bottom:4.039958pt;}
.y286{bottom:4.039998pt;}
.y2d3{bottom:4.093343pt;}
.y252{bottom:4.226685pt;}
.y2e1{bottom:5.228394pt;}
.y2c6{bottom:12.120036pt;}
.y2b8{bottom:12.186605pt;}
.y2f8{bottom:12.826924pt;}
.y304{bottom:12.827067pt;}
.y2ea{bottom:12.906657pt;}
.y1ee{bottom:13.866659pt;}
.y248{bottom:13.906657pt;}
.y267{bottom:13.906820pt;}
.y254{bottom:13.958415pt;}
.y23f{bottom:13.958496pt;}
.y2d9{bottom:14.493449pt;}
.y2ed{bottom:14.626648pt;}
.y2fb{bottom:14.626668pt;}
.y2e4{bottom:14.706665pt;}
.y1f5{bottom:14.946391pt;}
.y24f{bottom:14.998454pt;}
.y29a{bottom:16.706828pt;}
.y2de{bottom:16.760132pt;}
.y2d0{bottom:18.325439pt;}
.y2c8{bottom:20.544027pt;}
.y2ce{bottom:20.581380pt;}
.y2ba{bottom:20.598633pt;}
.y2c0{bottom:21.101156pt;}
.y258{bottom:21.489217pt;}
.y2cd{bottom:21.865641pt;}
.y2bf{bottom:21.905273pt;}
.y25f{bottom:22.425334pt;}
.y33{bottom:24.382667pt;}
.y1{bottom:24.382800pt;}
.yba{bottom:24.493866pt;}
.y3{bottom:24.494000pt;}
.y2f0{bottom:26.038798pt;}
.y2e7{bottom:26.118774pt;}
.y2ef{bottom:29.638652pt;}
.y2fd{bottom:29.638672pt;}
.y2e6{bottom:29.718669pt;}
.y1e9{bottom:32.838664pt;}
.y1eb{bottom:33.558390pt;}
.y1ed{bottom:33.558533pt;}
.y2f2{bottom:33.694519pt;}
.y2f4{bottom:33.694661pt;}
.y244{bottom:34.499919pt;}
.y246{bottom:35.220133pt;}
.y1f3{bottom:35.478658pt;}
.y1e8{bottom:35.478790pt;}
.y24d{bottom:35.530680pt;}
.y243{bottom:35.532145pt;}
.y2ff{bottom:36.058533pt;}
.y32{bottom:60.477735pt;}
.y348{bottom:61.388685pt;}
.y86{bottom:64.809332pt;}
.yc1{bottom:65.668135pt;}
.y76{bottom:65.819602pt;}
.y239{bottom:67.894532pt;}
.y1e4{bottom:69.085333pt;}
.y148{bottom:72.428132pt;}
.y347{bottom:72.718685pt;}
.y31{bottom:73.811069pt;}
.y38f{bottom:75.236803pt;}
.y85{bottom:78.144004pt;}
.yc0{bottom:79.000135pt;}
.y2b5{bottom:79.043997pt;}
.y75{bottom:79.151602pt;}
.y1a4{bottom:81.096132pt;}
.y238{bottom:81.229199pt;}
.y1e3{bottom:82.418671pt;}
.y159{bottom:82.554802pt;}
.yf1{bottom:83.885468pt;}
.y346{bottom:84.048685pt;}
.y144{bottom:84.429465pt;}
.y147{bottom:85.762799pt;}
.y30{bottom:87.144402pt;}
.y84{bottom:91.476004pt;}
.ybf{bottom:92.332135pt;}
.y2b4{bottom:92.377330pt;}
.y74{bottom:92.483602pt;}
.y1e0{bottom:92.654663pt;}
.y1a3{bottom:94.428132pt;}
.y237{bottom:94.561199pt;}
.yfc{bottom:95.098799pt;}
.y38e{bottom:95.240803pt;}
.y345{bottom:95.378685pt;}
.y1dd{bottom:95.582662pt;}
.y1dc{bottom:95.748006pt;}
.y1df{bottom:95.750671pt;}
.y1e2{bottom:95.761332pt;}
.y158{bottom:95.886802pt;}
.yf0{bottom:97.220135pt;}
.y143{bottom:97.761465pt;}
.y146{bottom:99.094799pt;}
.y2f{bottom:100.477735pt;}
.y83{bottom:104.821337pt;}
.ybe{bottom:105.664135pt;}
.y2b3{bottom:105.713330pt;}
.y344{bottom:106.708685pt;}
.y236{bottom:107.894532pt;}
.yfb{bottom:108.430799pt;}
.y1a2{bottom:108.560130pt;}
.y157{bottom:109.218802pt;}
.yef{bottom:110.552135pt;}
.y142{bottom:111.094799pt;}
.y145{bottom:112.426799pt;}
.y38d{bottom:115.244803pt;}
.y1e7{bottom:115.750671pt;}
.y1f1{bottom:117.149068pt;}
.y2e{bottom:117.772400pt;}
.y343{bottom:118.038685pt;}
.y82{bottom:118.153337pt;}
.ybd{bottom:118.996135pt;}
.y2b2{bottom:119.045330pt;}
.y1f2{bottom:120.605337pt;}
.y232{bottom:121.058665pt;}
.y1a1{bottom:121.096132pt;}
.y235{bottom:121.187998pt;}
.y234{bottom:121.226532pt;}
.y231{bottom:121.227865pt;}
.yfa{bottom:121.762799pt;}
.y73{bottom:121.820935pt;}
.y156{bottom:122.553468pt;}
.yee{bottom:123.885468pt;}
.y141{bottom:124.428132pt;}
.y1ef{bottom:126.089203pt;}
.y38c{bottom:128.576803pt;}
.y342{bottom:129.368685pt;}
.y1e5{bottom:129.385333pt;}
.y1f4{bottom:130.697062pt;}
.y1e6{bottom:130.697205pt;}
.y22c{bottom:130.911997pt;}
.y81{bottom:131.485337pt;}
.ybc{bottom:132.328135pt;}
.y2b1{bottom:132.377330pt;}
.y1a0{bottom:134.428132pt;}
.y22f{bottom:134.521332pt;}
.y22e{bottom:134.559865pt;}
.y22b{bottom:134.566538pt;}
.yf9{bottom:135.094799pt;}
.y72{bottom:135.152935pt;}
.y155{bottom:135.885468pt;}
.y1ea{bottom:136.133199pt;}
.yed{bottom:137.222802pt;}
.y140{bottom:137.762799pt;}
.y1ec{bottom:139.589335pt;}
.y341{bottom:140.698685pt;}
.y38b{bottom:141.910136pt;}
.y80{bottom:144.817337pt;}
.y2b0{bottom:145.709330pt;}
.yf8{bottom:148.429465pt;}
.y71{bottom:148.484935pt;}
.y19f{bottom:148.560130pt;}
.y154{bottom:149.220135pt;}
.yec{bottom:150.554802pt;}
.y13f{bottom:151.094799pt;}
.y340{bottom:152.028685pt;}
.y261{bottom:154.559998pt;}
.y260{bottom:155.997996pt;}
.y264{bottom:156.235463pt;}
.y263{bottom:158.119863pt;}
.y7f{bottom:158.149337pt;}
.y2c{bottom:160.063060pt;}
.y19e{bottom:161.096132pt;}
.yf7{bottom:161.761465pt;}
.y70{bottom:161.818269pt;}
.y153{bottom:162.552135pt;}
.y33f{bottom:163.358685pt;}
.yeb{bottom:163.886802pt;}
.y13e{bottom:164.428132pt;}
.y1db{bottom:165.085338pt;}
.y38a{bottom:168.576803pt;}
.y7e{bottom:171.481337pt;}
.y2b{bottom:173.398938pt;}
.y19d{bottom:174.428132pt;}
.y33e{bottom:174.688685pt;}
.yf6{bottom:175.093465pt;}
.y6f{bottom:175.151602pt;}
.y14e{bottom:175.869457pt;}
.y152{bottom:175.886802pt;}
.yea{bottom:177.218802pt;}
.y13d{bottom:177.761465pt;}
.y22a{bottom:179.494538pt;}
.y2fa{bottom:181.709330pt;}
.y389{bottom:181.910136pt;}
.ye0{bottom:183.114666pt;}
.y7d{bottom:184.813337pt;}
.y33d{bottom:186.018685pt;}
.y2a{bottom:186.730938pt;}
.y302{bottom:187.815999pt;}
.y6e{bottom:188.484935pt;}
.y19c{bottom:188.560140pt;}
.y14d{bottom:189.202790pt;}
.y151{bottom:189.218802pt;}
.ye9{bottom:190.552135pt;}
.y13c{bottom:191.094799pt;}
.y229{bottom:192.833205pt;}
.y2fc{bottom:194.535990pt;}
.y1da{bottom:195.085338pt;}
.y2f9{bottom:195.613993pt;}
.y303{bottom:196.336405pt;}
.ydf{bottom:196.446666pt;}
.y33c{bottom:197.348685pt;}
.y7c{bottom:198.145337pt;}
.y29{bottom:200.062938pt;}
.y19b{bottom:201.096132pt;}
.y6d{bottom:201.818269pt;}
.y14c{bottom:202.538790pt;}
.y150{bottom:202.552135pt;}
.y301{bottom:203.379862pt;}
.ye8{bottom:203.885468pt;}
.y13b{bottom:204.430799pt;}
.y228{bottom:206.165205pt;}
.y300{bottom:208.035990pt;}
.y1d9{bottom:208.418671pt;}
.y33b{bottom:208.678685pt;}
.y102{bottom:209.309459pt;}
.yde{bottom:209.781333pt;}
.y388{bottom:209.882010pt;}
.y7b{bottom:211.477337pt;}
.y28{bottom:213.396271pt;}
.y19a{bottom:214.428132pt;}
.y6c{bottom:215.151602pt;}
.y14b{bottom:215.870790pt;}
.y14f{bottom:215.884135pt;}
.ye7{bottom:217.220135pt;}
.y13a{bottom:217.762799pt;}
.y33a{bottom:220.008685pt;}
.y1d8{bottom:222.550802pt;}
.y101{bottom:222.642792pt;}
.ydd{bottom:223.113333pt;}
.y387{bottom:223.214010pt;}
.y7a{bottom:224.809337pt;}
.y27{bottom:226.729605pt;}
.y6b{bottom:228.484935pt;}
.y199{bottom:228.560140pt;}
.y14a{bottom:229.202790pt;}
.ye6{bottom:230.552135pt;}
.y139{bottom:231.094799pt;}
.y339{bottom:231.338685pt;}
.y227{bottom:235.503871pt;}
.y100{bottom:235.978792pt;}
.ydc{bottom:236.445333pt;}
.y386{bottom:236.547343pt;}
.y79{bottom:238.142670pt;}
.y2ec{bottom:238.242676pt;}
.y26{bottom:240.064271pt;}
.y198{bottom:241.096132pt;}
.y6a{bottom:241.818269pt;}
.y149{bottom:242.534790pt;}
.y338{bottom:242.668685pt;}
.ye5{bottom:243.888135pt;}
.y2f6{bottom:244.349325pt;}
.y138{bottom:244.428132pt;}
.y16b{bottom:248.421327pt;}
.y226{bottom:248.835871pt;}
.yff{bottom:249.310792pt;}
.y2ee{bottom:251.069336pt;}
.y1d7{bottom:251.085338pt;}
.y78{bottom:251.474670pt;}
.y2eb{bottom:251.613993pt;}
.y2f7{bottom:252.869609pt;}
.y25{bottom:253.396271pt;}
.y337{bottom:253.998685pt;}
.y197{bottom:254.428132pt;}
.y69{bottom:255.151602pt;}
.ye4{bottom:257.220135pt;}
.y2f5{bottom:257.549337pt;}
.y137{bottom:257.770799pt;}
.y16a{bottom:261.753327pt;}
.y225{bottom:262.167871pt;}
.y2f3{bottom:262.217468pt;}
.yfe{bottom:262.642792pt;}
.y385{bottom:263.219343pt;}
.y1d6{bottom:264.418671pt;}
.y336{bottom:265.328685pt;}
.y24{bottom:266.730938pt;}
.y68{bottom:268.483602pt;}
.y196{bottom:268.560140pt;}
.ye3{bottom:270.552135pt;}
.y136{bottom:271.102799pt;}
.y169{bottom:275.085327pt;}
.y224{bottom:275.499871pt;}
.yfd{bottom:275.974792pt;}
.y384{bottom:276.551343pt;}
.y335{bottom:276.658685pt;}
.y1d5{bottom:277.750671pt;}
.y23{bottom:280.062938pt;}
.ye2{bottom:283.884135pt;}
.y135{bottom:284.434799pt;}
.y2af{bottom:287.043997pt;}
.y334{bottom:287.988685pt;}
.y223{bottom:288.831871pt;}
.y383{bottom:289.883343pt;}
.y22{bottom:293.397605pt;}
.y2ad{bottom:296.343994pt;}
.y134{bottom:297.766799pt;}
.y195{bottom:297.768132pt;}
.y67{bottom:297.822269pt;}
.y333{bottom:299.318685pt;}
.y2ae{bottom:300.375997pt;}
.y222{bottom:302.163871pt;}
.y382{bottom:303.215343pt;}
.y21{bottom:306.729605pt;}
.y1d4{bottom:307.090651pt;}
.y2ab{bottom:309.677327pt;}
.y332{bottom:310.648685pt;}
.y133{bottom:311.098799pt;}
.y194{bottom:311.100132pt;}
.y66{bottom:311.154269pt;}
.y2ac{bottom:313.709330pt;}
.y2aa{bottom:313.710664pt;}
.y8d{bottom:313.884400pt;}
.y221{bottom:315.495871pt;}
.y381{bottom:316.547343pt;}
.y20{bottom:320.077613pt;}
.y1d3{bottom:320.422651pt;}
.y331{bottom:321.978685pt;}
.y2a8{bottom:323.010661pt;}
.y132{bottom:324.430799pt;}
.y193{bottom:324.432132pt;}
.y65{bottom:324.486269pt;}
.y2a9{bottom:327.042664pt;}
.y2a7{bottom:327.048115pt;}
.y8c{bottom:327.216400pt;}
.y220{bottom:328.827871pt;}
.y380{bottom:329.880676pt;}
.y330{bottom:333.308685pt;}
.y1f{bottom:333.409613pt;}
.y1d2{bottom:333.754651pt;}
.yf5{bottom:334.696117pt;}
.y131{bottom:337.762799pt;}
.y192{bottom:337.764132pt;}
.y64{bottom:337.818269pt;}
.y8b{bottom:340.549714pt;}
.y21f{bottom:342.165205pt;}
.y32f{bottom:344.638685pt;}
.y1e{bottom:346.741613pt;}
.y2e3{bottom:347.042684pt;}
.y1d1{bottom:347.086651pt;}
.yf4{bottom:348.029450pt;}
.y130{bottom:351.094799pt;}
.y191{bottom:351.096132pt;}
.y63{bottom:351.151602pt;}
.y8a{bottom:353.885714pt;}
.y21e{bottom:355.497205pt;}
.y32e{bottom:355.968685pt;}
.y37f{bottom:356.727363pt;}
.y2e5{bottom:359.949341pt;}
.y1d0{bottom:360.418651pt;}
.y2e2{bottom:360.480794pt;}
.yf3{bottom:361.362784pt;}
.y2e9{bottom:361.749349pt;}
.y190{bottom:364.428132pt;}
.y12f{bottom:364.433465pt;}
.y62{bottom:364.484935pt;}
.y89{bottom:367.217714pt;}
.y32d{bottom:367.298685pt;}
.y37e{bottom:368.057363pt;}
.y21d{bottom:368.829205pt;}
.y1cf{bottom:373.751984pt;}
.yf2{bottom:374.694784pt;}
.y18f{bottom:377.760132pt;}
.y12e{bottom:377.765465pt;}
.y61{bottom:377.818269pt;}
.y32c{bottom:378.628685pt;}
.y37d{bottom:379.387363pt;}
.y88{bottom:380.549714pt;}
.y21c{bottom:382.161205pt;}
.y1d{bottom:386.869613pt;}
.y1ce{bottom:387.103984pt;}
.y32b{bottom:389.958685pt;}
.y37c{bottom:390.717363pt;}
.y18e{bottom:391.093465pt;}
.y12d{bottom:391.097465pt;}
.y60{bottom:391.152935pt;}
.y2a5{bottom:391.944010pt;}
.y87{bottom:393.881714pt;}
.y21b{bottom:395.494538pt;}
.y2a6{bottom:395.976115pt;}
.y2a4{bottom:395.984115pt;}
.y1cd{bottom:400.435984pt;}
.y32a{bottom:401.288685pt;}
.y1c{bottom:401.533613pt;}
.y37b{bottom:402.047363pt;}
.y12c{bottom:404.429465pt;}
.y5f{bottom:404.484935pt;}
.y21a{bottom:408.827871pt;}
.y2a3{bottom:409.316115pt;}
.y329{bottom:412.618685pt;}
.y37a{bottom:413.377363pt;}
.y1cc{bottom:413.767984pt;}
.y1b{bottom:416.197613pt;}
.y12b{bottom:417.761465pt;}
.y5e{bottom:417.818269pt;}
.y18d{bottom:420.429465pt;}
.y219{bottom:422.159871pt;}
.yb8{bottom:422.364816pt;}
.y328{bottom:423.948685pt;}
.y379{bottom:424.707363pt;}
.y1cb{bottom:427.099984pt;}
.y1a{bottom:430.866946pt;}
.y12a{bottom:431.108132pt;}
.y5d{bottom:431.150269pt;}
.y18c{bottom:433.761465pt;}
.y327{bottom:435.278685pt;}
.y378{bottom:436.037363pt;}
.yb7{bottom:437.951482pt;}
.y2a2{bottom:438.644115pt;}
.y1ca{bottom:440.431984pt;}
.y129{bottom:444.440132pt;}
.y5c{bottom:444.483602pt;}
.y19{bottom:445.530946pt;}
.y326{bottom:446.608685pt;}
.y18b{bottom:447.094799pt;}
.y377{bottom:447.367363pt;}
.y29e{bottom:447.944010pt;}
.y2a0{bottom:450.184000pt;}
.y218{bottom:451.510685pt;}
.y2a1{bottom:451.976115pt;}
.y29d{bottom:451.980116pt;}
.y29f{bottom:451.984009pt;}
.yb6{bottom:453.538149pt;}
.y1c9{bottom:453.763984pt;}
.y128{bottom:457.772132pt;}
.y325{bottom:457.938685pt;}
.y376{bottom:458.697363pt;}
.y18{bottom:460.197613pt;}
.y18a{bottom:460.429465pt;}
.y217{bottom:464.842685pt;}
.y1c8{bottom:467.095984pt;}
.yb5{bottom:469.124816pt;}
.y324{bottom:469.268685pt;}
.y375{bottom:470.027363pt;}
.y127{bottom:471.104132pt;}
.y2dd{bottom:471.975993pt;}
.y189{bottom:473.761465pt;}
.y5b{bottom:473.828935pt;}
.y2e0{bottom:474.348145pt;}
.y17{bottom:474.872280pt;}
.y2dc{bottom:476.214152pt;}
.y216{bottom:478.174685pt;}
.y2df{bottom:479.004395pt;}
.yb4{bottom:479.120816pt;}
.y1c7{bottom:480.427984pt;}
.y323{bottom:480.598685pt;}
.y374{bottom:481.357363pt;}
.y126{bottom:484.436132pt;}
.y188{bottom:487.096132pt;}
.y5a{bottom:487.160935pt;}
.y16{bottom:489.536280pt;}
.y215{bottom:491.506685pt;}
.y322{bottom:491.928685pt;}
.y373{bottom:492.687363pt;}
.y1c6{bottom:493.759984pt;}
.yb3{bottom:494.707482pt;}
.y125{bottom:497.768132pt;}
.y187{bottom:500.428132pt;}
.y59{bottom:500.492935pt;}
.y29c{bottom:502.512116pt;}
.y321{bottom:503.258685pt;}
.y372{bottom:504.017363pt;}
.y15{bottom:504.200280pt;}
.y214{bottom:504.838685pt;}
.y1c5{bottom:507.091984pt;}
.yb2{bottom:510.294149pt;}
.y124{bottom:511.100132pt;}
.y299{bottom:511.175985pt;}
.y186{bottom:513.765465pt;}
.y58{bottom:513.824935pt;}
.y295{bottom:514.128011pt;}
.y320{bottom:514.588685pt;}
.y371{bottom:515.347363pt;}
.y297{bottom:516.368000pt;}
.y29b{bottom:518.151082pt;}
.y298{bottom:518.160116pt;}
.y294{bottom:518.160140pt;}
.y296{bottom:518.168009pt;}
.y213{bottom:518.170685pt;}
.y14{bottom:518.864280pt;}
.y1c4{bottom:520.423984pt;}
.y123{bottom:524.432132pt;}
.yb1{bottom:525.880816pt;}
.y31f{bottom:525.918685pt;}
.y370{bottom:526.677363pt;}
.y185{bottom:527.097465pt;}
.y57{bottom:527.156935pt;}
.y212{bottom:531.502685pt;}
.y293{bottom:532.561473pt;}
.y13{bottom:533.552280pt;}
.y1c3{bottom:533.755984pt;}
.yb0{bottom:535.876816pt;}
.y31e{bottom:537.248685pt;}
.y122{bottom:537.764132pt;}
.y36f{bottom:538.007363pt;}
.y184{bottom:540.429465pt;}
.y56{bottom:540.488935pt;}
.y211{bottom:544.834685pt;}
.y292{bottom:545.897473pt;}
.y1c2{bottom:547.087984pt;}
.y12{bottom:548.216280pt;}
.y31d{bottom:548.578685pt;}
.y36e{bottom:549.337363pt;}
.y121{bottom:551.096132pt;}
.yaf{bottom:551.463482pt;}
.y183{bottom:553.761465pt;}
.y55{bottom:553.820935pt;}
.y210{bottom:558.166685pt;}
.y291{bottom:559.229473pt;}
.y31c{bottom:559.908685pt;}
.y1c1{bottom:560.419984pt;}
.y36d{bottom:560.667363pt;}
.yae{bottom:561.459482pt;}
.y11{bottom:562.880280pt;}
.y120{bottom:564.428132pt;}
.y182{bottom:567.094799pt;}
.y54{bottom:567.152935pt;}
.y31b{bottom:571.238685pt;}
.y20f{bottom:571.498685pt;}
.y36c{bottom:571.997363pt;}
.y290{bottom:572.561473pt;}
.y1c0{bottom:573.751984pt;}
.yad{bottom:577.046149pt;}
.y10{bottom:577.544280pt;}
.y11f{bottom:577.762799pt;}
.y181{bottom:580.429465pt;}
.y53{bottom:580.484935pt;}
.y28e{bottom:581.861328pt;}
.y31a{bottom:582.568685pt;}
.y36b{bottom:583.327363pt;}
.y28f{bottom:585.893473pt;}
.y28d{bottom:585.896118pt;}
.y1bf{bottom:587.086651pt;}
.y11e{bottom:591.094799pt;}
.y257{bottom:591.493327pt;}
.yf{bottom:592.208280pt;}
.yac{bottom:592.632816pt;}
.y180{bottom:593.761465pt;}
.y52{bottom:593.818269pt;}
.y25d{bottom:593.866659pt;}
.y319{bottom:593.902018pt;}
.y36a{bottom:594.657363pt;}
.y25b{bottom:595.666545pt;}
.y1be{bottom:600.418651pt;}
.y255{bottom:602.131348pt;}
.y256{bottom:604.186686pt;}
.y25e{bottom:604.186930pt;}
.y11d{bottom:604.426799pt;}
.y2d8{bottom:605.893351pt;}
.y369{bottom:605.987363pt;}
.ye{bottom:606.872280pt;}
.y17f{bottom:607.096132pt;}
.y51{bottom:607.152935pt;}
.yab{bottom:608.204559pt;}
.y2d7{bottom:608.998128pt;}
.y2da{bottom:610.655070pt;}
.y25a{bottom:611.182536pt;}
.y259{bottom:612.982544pt;}
.y1bd{bottom:613.751984pt;}
.y368{bottom:617.317363pt;}
.y11c{bottom:617.760132pt;}
.y17e{bottom:620.428132pt;}
.y50{bottom:620.484935pt;}
.yd{bottom:621.536280pt;}
.yaa{bottom:623.791226pt;}
.y1bc{bottom:627.085318pt;}
.y367{bottom:628.647363pt;}
.y28a{bottom:630.128011pt;}
.y17d{bottom:633.762799pt;}
.y4f{bottom:633.820935pt;}
.y28c{bottom:634.160116pt;}
.y289{bottom:634.161449pt;}
.y28b{bottom:634.168009pt;}
.yc{bottom:636.200280pt;}
.y318{bottom:637.902018pt;}
.ya9{bottom:639.377893pt;}
.y366{bottom:639.977363pt;}
.y1bb{bottom:640.418651pt;}
.y251{bottom:641.493327pt;}
.y285{bottom:643.461344pt;}
.y250{bottom:644.331340pt;}
.y253{bottom:645.720011pt;}
.y11b{bottom:647.094799pt;}
.y4e{bottom:647.152935pt;}
.y288{bottom:647.493449pt;}
.y284{bottom:647.494782pt;}
.y287{bottom:647.501343pt;}
.yb{bottom:650.864280pt;}
.y365{bottom:651.307363pt;}
.y1ba{bottom:653.753318pt;}
.ya8{bottom:654.964559pt;}
.y11a{bottom:660.430839pt;}
.y17c{bottom:660.434839pt;}
.y4d{bottom:660.484935pt;}
.y283{bottom:660.828116pt;}
.y364{bottom:662.637363pt;}
.y20b{bottom:665.194661pt;}
.ya{bottom:665.528280pt;}
.y1b9{bottom:667.085318pt;}
.y20c{bottom:667.434530pt;}
.y20e{bottom:669.226685pt;}
.y20a{bottom:669.233361pt;}
.ya7{bottom:670.551226pt;}
.y119{bottom:673.762839pt;}
.y17b{bottom:673.766839pt;}
.y4c{bottom:673.818228pt;}
.y363{bottom:673.967363pt;}
.y282{bottom:674.161490pt;}
.y1b8{bottom:680.419984pt;}
.y209{bottom:682.565361pt;}
.y27f{bottom:683.461344pt;}
.y362{bottom:685.297363pt;}
.ya6{bottom:686.137893pt;}
.y118{bottom:687.094839pt;}
.y17a{bottom:687.098839pt;}
.y4b{bottom:687.154228pt;}
.yc3{bottom:687.216421pt;}
.y281{bottom:687.493490pt;}
.y27e{bottom:687.500156pt;}
.y280{bottom:687.501302pt;}
.y9{bottom:692.194906pt;}
.y1b7{bottom:693.751984pt;}
.y317{bottom:693.903352pt;}
.y361{bottom:696.627363pt;}
.y117{bottom:700.428173pt;}
.y179{bottom:700.430839pt;}
.y4a{bottom:700.486228pt;}
.yc2{bottom:700.548421pt;}
.y27d{bottom:700.832156pt;}
.ya5{bottom:701.724559pt;}
.y242{bottom:702.559977pt;}
.y24b{bottom:703.998372pt;}
.y1b6{bottom:707.085318pt;}
.y316{bottom:707.236685pt;}
.y24c{bottom:707.454508pt;}
.y360{bottom:707.957363pt;}
.y249{bottom:712.938558pt;}
.y116{bottom:713.762839pt;}
.y49{bottom:713.818228pt;}
.y240{bottom:716.597982pt;}
.ya4{bottom:717.311226pt;}
.y24e{bottom:717.558431pt;}
.y241{bottom:717.559896pt;}
.y35f{bottom:719.287363pt;}
.y1b5{bottom:720.419984pt;}
.y315{bottom:720.571352pt;}
.y8{bottom:721.512239pt;}
.y245{bottom:724.592122pt;}
.y27a{bottom:725.983968pt;}
.y115{bottom:727.094839pt;}
.y48{bottom:727.151561pt;}
.y247{bottom:728.047852pt;}
.ydb{bottom:728.481988pt;}
.y27b{bottom:730.159098pt;}
.y27c{bottom:730.160156pt;}
.y279{bottom:730.161490pt;}
.y35e{bottom:730.617363pt;}
.ya3{bottom:732.897893pt;}
.y1b4{bottom:733.751984pt;}
.y314{bottom:733.903352pt;}
.y178{bottom:740.430839pt;}
.y114{bottom:740.433506pt;}
.y47{bottom:740.487561pt;}
.y35d{bottom:741.947363pt;}
.y15b{bottom:742.687206pt;}
.y278{bottom:743.494823pt;}
.yda{bottom:744.068654pt;}
.y1b3{bottom:747.083984pt;}
.y313{bottom:747.238018pt;}
.ya2{bottom:748.484559pt;}
.y208{bottom:752.694693pt;}
.y274{bottom:752.794678pt;}
.y35c{bottom:753.277363pt;}
.y177{bottom:753.762839pt;}
.y113{bottom:753.765506pt;}
.y46{bottom:753.819561pt;}
.y275{bottom:755.034667pt;}
.y15a{bottom:756.019206pt;}
.y277{bottom:756.826823pt;}
.y273{bottom:756.830823pt;}
.yd9{bottom:759.655321pt;}
.y1b2{bottom:760.417318pt;}
.y312{bottom:760.570018pt;}
.y7{bottom:761.517572pt;}
.ya1{bottom:764.071226pt;}
.y35b{bottom:764.607363pt;}
.y176{bottom:767.094839pt;}
.y112{bottom:767.097506pt;}
.y45{bottom:767.151561pt;}
.y311{bottom:773.904685pt;}
.yd8{bottom:775.241988pt;}
.y35a{bottom:775.937363pt;}
.y2d2{bottom:776.826660pt;}
.y2d1{bottom:778.798096pt;}
.y2d5{bottom:779.120036pt;}
.ya0{bottom:779.657893pt;}
.y111{bottom:780.429506pt;}
.y175{bottom:780.434839pt;}
.y44{bottom:780.486228pt;}
.y2d4{bottom:780.920003pt;}
.y207{bottom:782.694693pt;}
.y168{bottom:784.059193pt;}
.y310{bottom:787.236685pt;}
.y359{bottom:787.267363pt;}
.y1b1{bottom:789.765318pt;}
.yd7{bottom:790.828654pt;}
.y110{bottom:793.761506pt;}
.y174{bottom:793.766839pt;}
.y43{bottom:793.818228pt;}
.y9f{bottom:795.244559pt;}
.y206{bottom:796.030693pt;}
.y358{bottom:798.597363pt;}
.y270{bottom:798.794678pt;}
.y167{bottom:799.645859pt;}
.y30f{bottom:800.570018pt;}
.y6{bottom:801.522906pt;}
.y272{bottom:802.826823pt;}
.y271{bottom:802.834635pt;}
.y26f{bottom:802.836173pt;}
.y1b0{bottom:803.097318pt;}
.yd6{bottom:806.415321pt;}
.y10f{bottom:807.097506pt;}
.y173{bottom:807.098839pt;}
.y42{bottom:807.158228pt;}
.y205{bottom:809.362693pt;}
.y357{bottom:809.927363pt;}
.y9e{bottom:810.831226pt;}
.y398{bottom:813.772174pt;}
.y30e{bottom:813.902018pt;}
.y166{bottom:815.232526pt;}
.y26e{bottom:816.168173pt;}
.y1af{bottom:816.429318pt;}
.y10e{bottom:820.429506pt;}
.y172{bottom:820.430839pt;}
.y41{bottom:820.490228pt;}
.y356{bottom:821.257363pt;}
.yd5{bottom:822.001988pt;}
.y204{bottom:822.694693pt;}
.y9d{bottom:826.417893pt;}
.y26d{bottom:829.500173pt;}
.y1ae{bottom:829.761318pt;}
.y165{bottom:830.819193pt;}
.yd4{bottom:831.997988pt;}
.y355{bottom:832.587363pt;}
.y10d{bottom:833.761506pt;}
.y171{bottom:833.762839pt;}
.y40{bottom:833.822228pt;}
.y203{bottom:836.826660pt;}
.y397{bottom:840.436173pt;}
.y5{bottom:841.528239pt;}
.y9c{bottom:842.004559pt;}
.y26c{bottom:842.832173pt;}
.y1ad{bottom:843.093318pt;}
.y354{bottom:843.917363pt;}
.y30d{bottom:844.035238pt;}
.y164{bottom:846.405859pt;}
.y10c{bottom:847.094839pt;}
.y3f{bottom:847.154228pt;}
.yd3{bottom:847.584654pt;}
.y2d{bottom:848.326009pt;}
.y9b{bottom:852.000559pt;}
.y396{bottom:853.768173pt;}
.y353{bottom:855.247363pt;}
.y1ac{bottom:856.425318pt;}
.y30c{bottom:857.368571pt;}
.yd2{bottom:857.580654pt;}
.y10b{bottom:860.428173pt;}
.y170{bottom:860.433506pt;}
.y3e{bottom:860.486228pt;}
.y163{bottom:861.992526pt;}
.y2c5{bottom:862.826660pt;}
.y202{bottom:866.028026pt;}
.y2cb{bottom:866.440104pt;}
.y352{bottom:866.577363pt;}
.y395{bottom:867.100173pt;}
.y9a{bottom:867.587226pt;}
.y1ab{bottom:869.757318pt;}
.y30b{bottom:870.701904pt;}
.y2c4{bottom:872.731445pt;}
.y2c7{bottom:872.918538pt;}
.yd1{bottom:873.167321pt;}
.y10a{bottom:873.761506pt;}
.y16f{bottom:873.765506pt;}
.y3d{bottom:873.818228pt;}
.y2cc{bottom:874.959961pt;}
.y1fd{bottom:875.327962pt;}
.y1ff{bottom:877.568034pt;}
.y162{bottom:877.579193pt;}
.y351{bottom:877.907363pt;}
.y1fc{bottom:879.357506pt;}
.y201{bottom:879.360026pt;}
.y394{bottom:880.432173pt;}
.y2c9{bottom:881.258626pt;}
.y2cf{bottom:881.380290pt;}
.y1aa{bottom:883.089318pt;}
.y99{bottom:883.173893pt;}
.y30a{bottom:884.035238pt;}
.y109{bottom:887.094839pt;}
.y16e{bottom:887.097506pt;}
.y3c{bottom:887.154228pt;}
.yc5{bottom:888.757988pt;}
.yd0{bottom:888.785986pt;}
.y350{bottom:889.237363pt;}
.y161{bottom:893.165859pt;}
.y393{bottom:893.764173pt;}
.y1a9{bottom:896.421318pt;}
.yc4{bottom:898.753988pt;}
.y98{bottom:898.760559pt;}
.y23c{bottom:899.360026pt;}
.y16d{bottom:900.429506pt;}
.y108{bottom:900.430839pt;}
.y3b{bottom:900.486228pt;}
.y34f{bottom:900.567363pt;}
.y23e{bottom:901.786784pt;}
.y23a{bottom:902.194550pt;}
.y23b{bottom:903.586833pt;}
.y392{bottom:907.096173pt;}
.y160{bottom:908.752526pt;}
.y1a8{bottom:909.753318pt;}
.y2b7{bottom:911.360026pt;}
.y34e{bottom:911.897363pt;}
.y309{bottom:912.574018pt;}
.y2c2{bottom:913.129639pt;}
.y16c{bottom:913.761506pt;}
.y107{bottom:913.762839pt;}
.y3a{bottom:913.818228pt;}
.y97{bottom:914.347226pt;}
.yc9{bottom:914.349988pt;}
.ycc{bottom:914.359320pt;}
.ycf{bottom:914.368652pt;}
.y2bd{bottom:915.013346pt;}
.y391{bottom:920.428173pt;}
.y2b6{bottom:921.527997pt;}
.y2b9{bottom:921.662272pt;}
.y1fa{bottom:923.061361pt;}
.y1a7{bottom:923.085318pt;}
.y34d{bottom:923.227363pt;}
.y2be{bottom:923.545573pt;}
.y15f{bottom:924.339191pt;}
.y15c{bottom:924.339193pt;}
.yc8{bottom:924.345988pt;}
.ycb{bottom:924.355320pt;}
.yce{bottom:924.364652pt;}
.y308{bottom:925.906018pt;}
.y1fb{bottom:927.093506pt;}
.y106{bottom:927.094839pt;}
.y1f9{bottom:927.096173pt;}
.y39{bottom:927.151561pt;}
.y2bb{bottom:929.846680pt;}
.y90{bottom:929.921847pt;}
.y8e{bottom:929.924642pt;}
.y93{bottom:929.931179pt;}
.y96{bottom:929.933893pt;}
.y2c1{bottom:930.577474pt;}
.y390{bottom:933.760173pt;}
.yca{bottom:934.351320pt;}
.ycd{bottom:934.360652pt;}
.y34c{bottom:934.557363pt;}
.y307{bottom:939.238018pt;}
.y15e{bottom:939.925857pt;}
.y92{bottom:939.927179pt;}
.y95{bottom:939.929893pt;}
.y105{bottom:940.428173pt;}
.y38{bottom:940.486228pt;}
.y34b{bottom:945.887363pt;}
.y266{bottom:949.583984pt;}
.y1f6{bottom:949.728027pt;}
.y91{bottom:949.923179pt;}
.y94{bottom:949.925893pt;}
.yc7{bottom:949.928654pt;}
.y26a{bottom:951.576009pt;}
.y306{bottom:952.570018pt;}
.y1a6{bottom:953.085318pt;}
.y268{bottom:953.759033pt;}
.y1f8{bottom:953.760173pt;}
.y104{bottom:953.761506pt;}
.y37{bottom:953.818228pt;}
.y34a{bottom:957.217363pt;}
.y15d{bottom:965.508524pt;}
.y8f{bottom:965.512642pt;}
.yc6{bottom:965.515321pt;}
.y305{bottom:965.902018pt;}
.y103{bottom:967.093506pt;}
.y36{bottom:967.150228pt;}
.y1a5{bottom:967.217367pt;}
.y349{bottom:968.547363pt;}
.y77{bottom:1013.902507pt;}
.ybb{bottom:1013.996908pt;}
.y35{bottom:1013.997070pt;}
.y4{bottom:1015.042236pt;}
.h6f{height:0.000000pt;}
.h43{height:1.921323pt;}
.h50{height:7.866667pt;}
.h51{height:8.133333pt;}
.h3c{height:8.801333pt;}
.h5b{height:10.266666pt;}
.h54{height:11.442869pt;}
.h45{height:11.489012pt;}
.h4f{height:11.600000pt;}
.h3f{height:11.733333pt;}
.h4d{height:11.866666pt;}
.h4b{height:12.000000pt;}
.h5e{height:12.133333pt;}
.h5d{height:12.666667pt;}
.h40{height:13.977622pt;}
.h52{height:14.400000pt;}
.h6a{height:14.934667pt;}
.h49{height:17.084371pt;}
.h5f{height:17.199999pt;}
.h6b{height:17.201333pt;}
.h65{height:21.282453pt;}
.h69{height:22.143243pt;}
.h4a{height:22.479475pt;}
.h47{height:25.553546pt;}
.h59{height:25.663061pt;}
.h48{height:25.991607pt;}
.h64{height:26.466173pt;}
.h68{height:26.904234pt;}
.h10{height:27.275268pt;}
.h58{height:28.003277pt;}
.h66{height:28.533333pt;}
.h62{height:29.066666pt;}
.h71{height:29.343194pt;}
.h6e{height:29.343276pt;}
.h57{height:30.000000pt;}
.h2{height:30.687500pt;}
.h74{height:31.476562pt;}
.h44{height:33.623146pt;}
.h3d{height:34.199543pt;}
.h7{height:34.523438pt;}
.h5c{height:34.535774pt;}
.h70{height:35.466667pt;}
.h6d{height:35.600000pt;}
.h42{height:36.000000pt;}
.h72{height:36.533333pt;}
.h53{height:36.798667pt;}
.h23{height:36.922667pt;}
.h25{height:36.982358pt;}
.h12{height:37.038880pt;}
.h21{height:38.229333pt;}
.h33{height:38.229342pt;}
.h8{height:39.197535pt;}
.h76{height:39.560000pt;}
.h77{height:40.080000pt;}
.h3{height:40.604167pt;}
.h6c{height:40.768243pt;}
.h56{height:40.828106pt;}
.h75{height:40.960000pt;}
.h63{height:41.160581pt;}
.h19{height:42.195312pt;}
.h67{height:42.312173pt;}
.h11{height:43.141927pt;}
.h6{height:43.718750pt;}
.h13{height:43.887578pt;}
.h3b{height:44.271479pt;}
.h39{height:44.271805pt;}
.h37{height:44.271967pt;}
.h38{height:44.272008pt;}
.h4e{height:44.272130pt;}
.h73{height:44.272456pt;}
.h78{height:44.834667pt;}
.h9{height:47.472000pt;}
.h3a{height:47.576930pt;}
.ha{height:47.592735pt;}
.h2f{height:47.598101pt;}
.h1e{height:47.603434pt;}
.h31{height:47.614101pt;}
.h35{height:47.624605pt;}
.h17{height:47.624930pt;}
.h34{height:47.629938pt;}
.h30{height:47.630101pt;}
.h36{height:47.635434pt;}
.h27{height:47.635475pt;}
.h2d{height:47.640605pt;}
.h18{height:47.640767pt;}
.h1b{height:47.640808pt;}
.h2a{height:47.640849pt;}
.h16{height:47.640930pt;}
.hd{height:47.641337pt;}
.h2e{height:47.645938pt;}
.hb{height:47.646101pt;}
.h1f{height:47.646118pt;}
.h1d{height:47.646121pt;}
.h29{height:47.646139pt;}
.h28{height:47.646141pt;}
.h14{height:47.646264pt;}
.h2c{height:47.651271pt;}
.hc{height:47.651434pt;}
.h32{height:47.651473pt;}
.he{height:47.651475pt;}
.h2b{height:47.651515pt;}
.h15{height:47.651597pt;}
.h4c{height:47.656605pt;}
.h1a{height:47.656767pt;}
.h61{height:47.656849pt;}
.h60{height:47.656930pt;}
.h3e{height:47.657296pt;}
.h55{height:48.022460pt;}
.h46{height:48.024087pt;}
.h5a{height:48.048276pt;}
.h41{height:48.090646pt;}
.h1c{height:48.096000pt;}
.h20{height:49.152000pt;}
.h4{height:50.755208pt;}
.h24{height:56.933333pt;}
.hf{height:69.046875pt;}
.h26{height:78.101342pt;}
.h22{height:78.213333pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.wb{width:4.466667pt;}
.wa{width:6.761333pt;}
.w8{width:13.720000pt;}
.wc{width:13.853333pt;}
.wd{width:14.574666pt;}
.wf{width:15.226667pt;}
.we{width:15.414666pt;}
.w7{width:16.026667pt;}
.w6{width:20.760000pt;}
.w18{width:21.773333pt;}
.w5{width:22.493333pt;}
.w20{width:22.494667pt;}
.w9{width:25.240000pt;}
.w15{width:28.506666pt;}
.w1b{width:30.413333pt;}
.w14{width:32.959999pt;}
.w3{width:47.214666pt;}
.w17{width:49.573333pt;}
.w2{width:55.253332pt;}
.w21{width:57.678665pt;}
.w22{width:57.679998pt;}
.w1a{width:75.826665pt;}
.w1e{width:77.120000pt;}
.w16{width:79.986669pt;}
.w1c{width:80.600000pt;}
.w1f{width:81.293335pt;}
.w19{width:84.826665pt;}
.w24{width:107.213338pt;}
.w23{width:126.026662pt;}
.w1d{width:127.240000pt;}
.w27{width:189.693339pt;}
.w2a{width:206.893331pt;}
.w13{width:271.413330pt;}
.w28{width:276.413330pt;}
.w29{width:336.880005pt;}
.w10{width:356.066650pt;}
.w26{width:372.933350pt;}
.w2c{width:375.693319pt;}
.w25{width:387.333333pt;}
.w2b{width:407.466675pt;}
.w4{width:444.626668pt;}
.w11{width:448.000000pt;}
.w12{width:456.573324pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x8b{left:-1.819092pt;}
.x0{left:0.000000pt;}
.x6d{left:1.701864pt;}
.x8{left:6.425200pt;}
.x8d{left:9.292928pt;}
.x40{left:11.838684pt;}
.x44{left:16.580933pt;}
.x94{left:17.587484pt;}
.x80{left:25.229980pt;}
.xa5{left:26.830139pt;}
.x90{left:30.320109pt;}
.x28{left:39.391602pt;}
.x91{left:45.391744pt;}
.x82{left:48.858114pt;}
.x3{left:54.803202pt;}
.xa{left:58.991999pt;}
.x83{left:67.373739pt;}
.xa6{left:72.933736pt;}
.x97{left:76.049601pt;}
.xa4{left:85.936768pt;}
.xbf{left:97.591349pt;}
.x84{left:99.065999pt;}
.xc8{left:102.546021pt;}
.x14{left:107.021333pt;}
.xb{left:116.027999pt;}
.x54{left:120.022135pt;}
.x7{left:125.685069pt;}
.xcf{left:127.117859pt;}
.x85{left:128.118001pt;}
.xce{left:129.805847pt;}
.xc1{left:143.695475pt;}
.x2d{left:144.603456pt;}
.x56{left:145.953857pt;}
.xcb{left:147.276388pt;}
.x61{left:148.214945pt;}
.xc{left:154.986532pt;}
.xc2{left:163.567464pt;}
.x58{left:164.685710pt;}
.x87{left:167.970133pt;}
.x2f{left:176.175314pt;}
.x63{left:179.786804pt;}
.xaf{left:186.393880pt;}
.xd{left:187.457198pt;}
.xb5{left:191.758016pt;}
.x77{left:195.628906pt;}
.x15{left:200.307998pt;}
.xc9{left:202.710002pt;}
.x89{left:206.958130pt;}
.x5{left:207.874003pt;}
.x6e{left:209.722005pt;}
.x1f{left:212.062927pt;}
.x5a{left:217.341838pt;}
.x5b{left:222.117839pt;}
.x6{left:223.880010pt;}
.x24{left:225.448933pt;}
.x31{left:227.187318pt;}
.x65{left:230.714945pt;}
.x3f{left:233.449341pt;}
.x36{left:237.087180pt;}
.x9e{left:238.041341pt;}
.x25{left:239.165324pt;}
.x46{left:240.545329pt;}
.x6f{left:241.941854pt;}
.x33{left:243.195049pt;}
.x74{left:245.098674pt;}
.x16{left:247.450664pt;}
.x7a{left:248.812785pt;}
.x38{left:249.771058pt;}
.x2c{left:251.072000pt;}
.x2b{left:252.767192pt;}
.x47{left:254.350138pt;}
.x41{left:256.097066pt;}
.x39{left:259.587180pt;}
.x68{left:261.087056pt;}
.x9f{left:262.349060pt;}
.xa8{left:263.548930pt;}
.x95{left:264.927999pt;}
.x7b{left:267.544515pt;}
.x96{left:268.605204pt;}
.xa1{left:270.415995pt;}
.x4d{left:272.842143pt;}
.x48{left:278.783997pt;}
.xad{left:279.718669pt;}
.xe{left:283.786530pt;}
.x20{left:284.984261pt;}
.xb3{left:286.918660pt;}
.x71{left:289.857992pt;}
.xb4{left:292.076660pt;}
.x17{left:293.585330pt;}
.x53{left:295.352010pt;}
.x52{left:297.053874pt;}
.x49{left:304.109333pt;}
.x72{left:305.577718pt;}
.xb9{left:308.217855pt;}
.x5d{left:311.434001pt;}
.xa0{left:313.868000pt;}
.xa7{left:317.299194pt;}
.x8e{left:318.432007pt;}
.xbb{left:330.069987pt;}
.x98{left:332.361328pt;}
.xc5{left:335.178670pt;}
.x42{left:337.034667pt;}
.xc6{left:338.853739pt;}
.x73{left:339.921468pt;}
.x8f{left:342.740153pt;}
.x5f{left:347.110107pt;}
.x7f{left:350.200806pt;}
.x43{left:351.539591pt;}
.x99{left:356.668945pt;}
.x45{left:357.848674pt;}
.x18{left:360.243996pt;}
.x8c{left:364.723348pt;}
.x4e{left:366.490926pt;}
.xb2{left:369.453735pt;}
.xd3{left:371.509460pt;}
.x81{left:375.040405pt;}
.xbc{left:378.538656pt;}
.x35{left:385.875184pt;}
.x67{left:389.246684pt;}
.xca{left:391.500285pt;}
.x76{left:393.579183pt;}
.x3a{left:394.563213pt;}
.xf{left:397.009195pt;}
.x6a{left:397.935079pt;}
.x21{left:400.325592pt;}
.xbd{left:402.869588pt;}
.x2e{left:405.179077pt;}
.x62{left:407.117716pt;}
.x9a{left:408.187866pt;}
.x7c{left:410.056519pt;}
.x3c{left:418.826804pt;}
.x6c{left:422.199198pt;}
.x19{left:425.259996pt;}
.x75{left:427.059326pt;}
.x55{left:428.609985pt;}
.xd0{left:437.520549pt;}
.x30{left:439.919189pt;}
.x64{left:441.845337pt;}
.x78{left:443.331746pt;}
.x57{left:446.813721pt;}
.x7e{left:452.908651pt;}
.x79{left:454.839478pt;}
.xd1{left:455.880412pt;}
.xa2{left:459.334147pt;}
.xbe{left:463.434123pt;}
.xcc{left:464.616414pt;}
.x59{left:465.545980pt;}
.x26{left:468.653320pt;}
.x10{left:470.929214pt;}
.x1a{left:472.402663pt;}
.x9b{left:473.669352pt;}
.x4f{left:475.395996pt;}
.xa3{left:476.288818pt;}
.xb6{left:482.696411pt;}
.x32{left:483.767049pt;}
.x66{left:485.609333pt;}
.xae{left:487.292684pt;}
.x50{left:490.833740pt;}
.x86{left:493.612915pt;}
.x9c{left:497.976685pt;}
.x34{left:499.775472pt;}
.x37{left:500.843058pt;}
.x27{left:502.044922pt;}
.x11{left:503.399881pt;}
.x3d{left:505.748006pt;}
.xb7{left:513.128662pt;}
.x29{left:515.814006pt;}
.x69{left:517.506144pt;}
.x1b{left:518.537328pt;}
.xc0{left:520.158122pt;}
.x4{left:521.612549pt;}
.x5c{left:525.258016pt;}
.x3e{left:528.260254pt;}
.xb8{left:530.672404pt;}
.x88{left:532.600789pt;}
.xb0{left:533.948405pt;}
.x92{left:543.050659pt;}
.x9d{left:549.495605pt;}
.xac{left:550.616781pt;}
.x93{left:558.562012pt;}
.xd2{left:559.884115pt;}
.xc3{left:561.977987pt;}
.x1c{left:565.679995pt;}
.xc7{left:569.061849pt;}
.x8a{left:573.328410pt;}
.xcd{left:575.772135pt;}
.xab{left:576.668009pt;}
.x70{left:579.197998pt;}
.x51{left:596.325317pt;}
.x12{left:599.729213pt;}
.xba{left:603.308919pt;}
.xa9{left:606.525350pt;}
.x1d{left:611.814660pt;}
.x5e{left:623.189616pt;}
.xb1{left:625.880656pt;}
.x22{left:628.740259pt;}
.x4a{left:634.598674pt;}
.x4b{left:641.444661pt;}
.x60{left:645.161987pt;}
.xaa{left:656.241618pt;}
.x3b{left:657.814941pt;}
.x6b{left:659.501994pt;}
.x7d{left:668.835449pt;}
.x1e{left:678.473327pt;}
.x9{left:708.791829pt;}
.x2{left:710.134766pt;}
.x13{left:712.951878pt;}
.xc4{left:719.073893pt;}
.x4c{left:723.593343pt;}
.x2a{left:724.820557pt;}
.x23{left:727.865560pt;}
.x1{left:733.334391pt;}
}




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