
    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_cb8f43274e3834f5e4bbcc3a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989000;font-style:normal;font-weight: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_dad59c4abde94faafc4d4a5c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;font-style:normal;font-weight: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_d9c41db20412bb5f117ebba3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight: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_1830de2cab313326de5d6b71.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691000;font-style:normal;font-weight: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_fdc2edb345614e4894a40801.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.761000;font-style:normal;font-weight: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_741ff34c9310506f1792bfc2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.734000;font-style:normal;font-weight: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_64f8ee19e6a6337ab8e5cf93.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.900000;font-style:normal;font-weight: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_36c5137d2deba98c40f4117d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.803000;font-style:normal;font-weight: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_d8ac5b70b12f6b02f4144fdf.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000488;font-style:normal;font-weight: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_4b007605735380490a246589.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.006836;font-style:normal;font-weight: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_4ace8a9b09d3fc21f9c4cc3a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.011230;font-style:normal;font-weight: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_401c28f16510dac0a6cfb786.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.727539;font-style:normal;font-weight: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_618af98ffe5df89b30e9226f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.015137;font-style:normal;font-weight: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_d8ac5b70b12f6b02f4144fdf.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000488;font-style:normal;font-weight: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_4b007605735380490a246589.woff2')format("woff");}.fff{font-family:fff;line-height:1.006836;font-style:normal;font-weight: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_4ace8a9b09d3fc21f9c4cc3a.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.011230;font-style:normal;font-weight: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_401c28f16510dac0a6cfb786.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.727539;font-style:normal;font-weight: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_618af98ffe5df89b30e9226f.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.015137;font-style:normal;font-weight: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_a60bb8331d548e4962fa9286.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000488;font-style:normal;font-weight: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_fe01dffdbf0cfcd2adaeb94c.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.006836;font-style:normal;font-weight: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_39209cb7faf13c5d36e0ad30.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.011230;font-style:normal;font-weight: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_401c28f16510dac0a6cfb786.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.727539;font-style:normal;font-weight: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_677fd63d94b8467ea8f587ba.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.000488;font-style:normal;font-weight: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_7c045b581f489292b90320f7.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.006836;font-style:normal;font-weight: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_5a265d9c62387709e7a21c46.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.011230;font-style:normal;font-weight: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_401c28f16510dac0a6cfb786.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.727539;font-style:normal;font-weight: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_5898bbb72ced37bcf895be9d.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.015137;font-style:normal;font-weight: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_f7b60c8a5e1d6cff6e716e18.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.700195;font-style:normal;font-weight: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_677fd63d94b8467ea8f587ba.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.000488;font-style:normal;font-weight: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_7c045b581f489292b90320f7.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.006836;font-style:normal;font-weight: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_5a265d9c62387709e7a21c46.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.011230;font-style:normal;font-weight: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_401c28f16510dac0a6cfb786.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.727539;font-style:normal;font-weight: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_5898bbb72ced37bcf895be9d.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.015137;font-style:normal;font-weight: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_f7b60c8a5e1d6cff6e716e18.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.700195;font-style:normal;font-weight: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_261f4430e48c402d28d1e5af.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.000488;font-style:normal;font-weight: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_7d943af1e4ccc31abc4efa17.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.006836;font-style:normal;font-weight: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_2ab28f2316597fe8a6b81291.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.011230;font-style:normal;font-weight: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_401c28f16510dac0a6cfb786.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.727539;font-style:normal;font-weight: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_b1eabc0c9f43b41f06701379.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.015137;font-style:normal;font-weight: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_a60bb8331d548e4962fa9286.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.000488;font-style:normal;font-weight: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_bc89be3382134e5651a94fea.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.006836;font-style:normal;font-weight: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_dfb19f48cfc167e25c9200cf.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.011230;font-style:normal;font-weight: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_401c28f16510dac0a6cfb786.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.727539;font-style:normal;font-weight: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_dd397472e0fabac8a531acae.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.015137;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m28{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.v2{vertical-align:-17.364000px;}
.v3{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:16.272000px;}
.v4{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v6{vertical-align:25.530000px;}
.ls90{letter-spacing:-0.361800px;}
.ls8a{letter-spacing:-0.199800px;}
.ls96{letter-spacing:-0.186372px;}
.ls73{letter-spacing:-0.180792px;}
.lsbe{letter-spacing:-0.171943px;}
.lsc3{letter-spacing:-0.165330px;}
.lsc1{letter-spacing:-0.158717px;}
.lsad{letter-spacing:-0.148770px;}
.lsc4{letter-spacing:-0.125651px;}
.ls38{letter-spacing:-0.120240px;}
.lscc{letter-spacing:-0.119038px;}
.ls58{letter-spacing:-0.115430px;}
.lsc9{letter-spacing:-0.112424px;}
.ls88{letter-spacing:-0.108000px;}
.lsc2{letter-spacing:-0.105811px;}
.lsbf{letter-spacing:-0.099198px;}
.lsc7{letter-spacing:-0.092585px;}
.lsd5{letter-spacing:-0.089100px;}
.lscd{letter-spacing:-0.085972px;}
.ls37{letter-spacing:-0.084168px;}
.ls57{letter-spacing:-0.080801px;}
.lsd7{letter-spacing:-0.079358px;}
.ls39{letter-spacing:-0.078156px;}
.ls34{letter-spacing:-0.075600px;}
.ls59{letter-spacing:-0.075030px;}
.lsca{letter-spacing:-0.072745px;}
.ls54{letter-spacing:-0.072576px;}
.ls93{letter-spacing:-0.072144px;}
.ls8b{letter-spacing:-0.070200px;}
.lsc5{letter-spacing:-0.066132px;}
.ls92{letter-spacing:-0.060120px;}
.lsc6{letter-spacing:-0.059519px;}
.ls89{letter-spacing:-0.059400px;}
.ls99{letter-spacing:-0.054108px;}
.lsc8{letter-spacing:-0.052906px;}
.ls8e{letter-spacing:-0.048600px;}
.ls91{letter-spacing:-0.048096px;}
.lsc0{letter-spacing:-0.046292px;}
.ls32{letter-spacing:-0.043200px;}
.ls52{letter-spacing:-0.041472px;}
.lsa9{letter-spacing:-0.041040px;}
.lsd6{letter-spacing:-0.039679px;}
.ls36{letter-spacing:-0.037800px;}
.ls56{letter-spacing:-0.036288px;}
.ls76{letter-spacing:-0.035154px;}
.lsa7{letter-spacing:-0.034268px;}
.lsd9{letter-spacing:-0.033066px;}
.ls8c{letter-spacing:-0.032400px;}
.lsd0{letter-spacing:-0.026453px;}
.ls77{letter-spacing:-0.025110px;}
.lsa6{letter-spacing:-0.022846px;}
.ls31{letter-spacing:-0.021600px;}
.ls51{letter-spacing:-0.020736px;}
.lsac{letter-spacing:-0.020520px;}
.lsce{letter-spacing:-0.019840px;}
.ls94{letter-spacing:-0.018036px;}
.ls33{letter-spacing:-0.016200px;}
.ls53{letter-spacing:-0.015552px;}
.lsab{letter-spacing:-0.015390px;}
.ls74{letter-spacing:-0.015066px;}
.lsd2{letter-spacing:-0.013226px;}
.ls98{letter-spacing:-0.012024px;}
.lsd4{letter-spacing:-0.011880px;}
.ls8f{letter-spacing:-0.010800px;}
.lsa8{letter-spacing:-0.010260px;}
.ls75{letter-spacing:-0.010044px;}
.lsd8{letter-spacing:-0.006613px;}
.ls95{letter-spacing:-0.006012px;}
.ls35{letter-spacing:-0.005400px;}
.ls55{letter-spacing:-0.005184px;}
.lsaa{letter-spacing:-0.005130px;}
.ls72{letter-spacing:-0.005022px;}
.ls10{letter-spacing:0.000000px;}
.ls6f{letter-spacing:0.000297px;}
.lse6{letter-spacing:0.000800px;}
.lse5{letter-spacing:0.001036px;}
.lsde{letter-spacing:0.001155px;}
.ls18{letter-spacing:0.001506px;}
.lsb{letter-spacing:0.001933px;}
.lsa{letter-spacing:0.001952px;}
.ls4f{letter-spacing:0.002009px;}
.ls85{letter-spacing:0.002259px;}
.lsdb{letter-spacing:0.002544px;}
.lse2{letter-spacing:0.002618px;}
.ls4{letter-spacing:0.002725px;}
.lse8{letter-spacing:0.002841px;}
.lse3{letter-spacing:0.002872px;}
.ls6d{letter-spacing:0.003530px;}
.ls6e{letter-spacing:0.003668px;}
.ls1{letter-spacing:0.004200px;}
.ls70{letter-spacing:0.004565px;}
.ls5{letter-spacing:0.004766px;}
.ls87{letter-spacing:0.004800px;}
.ls5e{letter-spacing:0.005022px;}
.ls42{letter-spacing:0.005184px;}
.ls24{letter-spacing:0.005400px;}
.ls4e{letter-spacing:0.005772px;}
.ls30{letter-spacing:0.006012px;}
.lsbd{letter-spacing:0.006613px;}
.ls61{letter-spacing:0.010044px;}
.ls3f{letter-spacing:0.010368px;}
.ls21{letter-spacing:0.010800px;}
.ls80{letter-spacing:0.012024px;}
.lsb4{letter-spacing:0.013226px;}
.ls62{letter-spacing:0.015066px;}
.lsa0{letter-spacing:0.015390px;}
.ls7a{letter-spacing:0.016200px;}
.lsb6{letter-spacing:0.017820px;}
.ls84{letter-spacing:0.018036px;}
.lsbc{letter-spacing:0.019840px;}
.ls66{letter-spacing:0.020088px;}
.lsa1{letter-spacing:0.020520px;}
.ls40{letter-spacing:0.020736px;}
.ls22{letter-spacing:0.021600px;}
.ls81{letter-spacing:0.024048px;}
.ls5f{letter-spacing:0.025110px;}
.ls9e{letter-spacing:0.025650px;}
.ls44{letter-spacing:0.025920px;}
.lsd1{letter-spacing:0.026453px;}
.ls26{letter-spacing:0.027000px;}
.ls4c{letter-spacing:0.028858px;}
.lsb5{letter-spacing:0.029700px;}
.ls2e{letter-spacing:0.030060px;}
.ls65{letter-spacing:0.030132px;}
.ls43{letter-spacing:0.031104px;}
.ls5a{letter-spacing:0.031170px;}
.ls9a{letter-spacing:0.031840px;}
.ls3a{letter-spacing:0.032175px;}
.ls25{letter-spacing:0.032400px;}
.lsba{letter-spacing:0.033066px;}
.ls1c{letter-spacing:0.033516px;}
.ls69{letter-spacing:0.035154px;}
.lsb9{letter-spacing:0.035640px;}
.lsa2{letter-spacing:0.035910px;}
.ls45{letter-spacing:0.036288px;}
.lsaf{letter-spacing:0.036868px;}
.ls27{letter-spacing:0.037800px;}
.ls5c{letter-spacing:0.040076px;}
.ls9c{letter-spacing:0.040937px;}
.ls3c{letter-spacing:0.041368px;}
.ls48{letter-spacing:0.041472px;}
.ls1e{letter-spacing:0.043092px;}
.ls2a{letter-spacing:0.043200px;}
.ls60{letter-spacing:0.045198px;}
.lsa4{letter-spacing:0.046170px;}
.lsb1{letter-spacing:0.047401px;}
.lsb8{letter-spacing:0.047520px;}
.ls7f{letter-spacing:0.048096px;}
.ls68{letter-spacing:0.050220px;}
.lsa3{letter-spacing:0.051300px;}
.lsbb{letter-spacing:0.052906px;}
.ls8d{letter-spacing:0.054000px;}
.ls97{letter-spacing:0.054108px;}
.ls46{letter-spacing:0.057024px;}
.ls28{letter-spacing:0.059400px;}
.lsb3{letter-spacing:0.059519px;}
.ls67{letter-spacing:0.060264px;}
.ls47{letter-spacing:0.062208px;}
.ls4d{letter-spacing:0.063487px;}
.ls29{letter-spacing:0.064800px;}
.ls2f{letter-spacing:0.066132px;}
.ls49{letter-spacing:0.067392px;}
.ls2b{letter-spacing:0.070200px;}
.ls3e{letter-spacing:0.072576px;}
.ls20{letter-spacing:0.075600px;}
.ls7e{letter-spacing:0.078156px;}
.ls6a{letter-spacing:0.085374px;}
.lscb{letter-spacing:0.085972px;}
.ls9f{letter-spacing:0.087210px;}
.ls41{letter-spacing:0.088128px;}
.ls23{letter-spacing:0.091800px;}
.lscf{letter-spacing:0.099198px;}
.ls63{letter-spacing:0.100440px;}
.lsb7{letter-spacing:0.100980px;}
.ls83{letter-spacing:0.102204px;}
.ls79{letter-spacing:0.108000px;}
.ls6c{letter-spacing:0.115506px;}
.ls4a{letter-spacing:0.119232px;}
.ls2c{letter-spacing:0.124200px;}
.ls5d{letter-spacing:0.155849px;}
.lsd3{letter-spacing:0.158717px;}
.ls3d{letter-spacing:0.160877px;}
.ls9d{letter-spacing:0.163750px;}
.ls64{letter-spacing:0.165726px;}
.ls1f{letter-spacing:0.167580px;}
.ls5b{letter-spacing:0.169208px;}
.ls4b{letter-spacing:0.171072px;}
.ls78{letter-spacing:0.172368px;}
.ls9b{letter-spacing:0.172847px;}
.ls3b{letter-spacing:0.174666px;}
.ls2d{letter-spacing:0.178200px;}
.ls82{letter-spacing:0.180360px;}
.ls1d{letter-spacing:0.181944px;}
.lsb2{letter-spacing:0.189605px;}
.lsb0{letter-spacing:0.200138px;}
.ls6b{letter-spacing:0.386694px;}
.ls7d{letter-spacing:0.448200px;}
.ls19{letter-spacing:0.542815px;}
.ls11{letter-spacing:0.717483px;}
.ls7b{letter-spacing:1.620000px;}
.ls7c{letter-spacing:2.338200px;}
.ls7{letter-spacing:2.989200px;}
.ls3{letter-spacing:2.998354px;}
.ls12{letter-spacing:3.553200px;}
.ls16{letter-spacing:3.559200px;}
.ls71{letter-spacing:4.856274px;}
.ls0{letter-spacing:10.461300px;}
.lsc{letter-spacing:11.953952px;}
.lsf{letter-spacing:11.954850px;}
.ls9{letter-spacing:11.959933px;}
.ls14{letter-spacing:13.301501px;}
.lsdf{letter-spacing:13.310044px;}
.lseb{letter-spacing:13.330598px;}
.ls86{letter-spacing:13.394918px;}
.lse0{letter-spacing:13.448400px;}
.ls50{letter-spacing:13.450800px;}
.lse4{letter-spacing:13.451499px;}
.lse1{letter-spacing:13.454400px;}
.lsea{letter-spacing:13.487210px;}
.lsa5{letter-spacing:13.579588px;}
.lsed{letter-spacing:13.580520px;}
.lsec{letter-spacing:13.614490px;}
.lse7{letter-spacing:13.776931px;}
.lsae{letter-spacing:14.704798px;}
.lsdd{letter-spacing:14.796662px;}
.ls1b{letter-spacing:14.944200px;}
.ls2{letter-spacing:14.945108px;}
.ls15{letter-spacing:15.103118px;}
.lse9{letter-spacing:15.315106px;}
.ls13{letter-spacing:16.440600px;}
.lsda{letter-spacing:17.455485px;}
.lsdc{letter-spacing:18.879015px;}
.ls1a{letter-spacing:19.565141px;}
.ls17{letter-spacing:20.265141px;}
.ls6{letter-spacing:57.415200px;}
.ls8{letter-spacing:62.761200px;}
.lse{letter-spacing:62.917200px;}
.lsd{letter-spacing:64.321654px;}
.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;}
}
.wsf8{word-spacing:-60.120000px;}
.ws147{word-spacing:-51.300000px;}
.ws12{word-spacing:-14.943900px;}
.wse{word-spacing:-14.355754px;}
.ws76{word-spacing:-13.527000px;}
.ws75{word-spacing:-13.500000px;}
.ws9f{word-spacing:-13.449600px;}
.ws15f{word-spacing:-13.367138px;}
.ws160{word-spacing:-13.167000px;}
.ws9b{word-spacing:-12.985920px;}
.ws9a{word-spacing:-12.960000px;}
.ws146{word-spacing:-12.825000px;}
.wsc8{word-spacing:-12.555000px;}
.ws73{word-spacing:-12.151944px;}
.ws74{word-spacing:-11.970000px;}
.ws14{word-spacing:-11.955150px;}
.ws98{word-spacing:-11.665866px;}
.ws143{word-spacing:-11.544347px;}
.ws99{word-spacing:-11.491200px;}
.ws144{word-spacing:-11.371500px;}
.wsd{word-spacing:-11.357400px;}
.wsc6{word-spacing:-11.301308px;}
.wsc7{word-spacing:-11.132100px;}
.ws2{word-spacing:-10.460700px;}
.wsdd{word-spacing:-3.214080px;}
.ws128{word-spacing:-3.102192px;}
.wsdc{word-spacing:-2.882628px;}
.wse9{word-spacing:-2.852496px;}
.wsde{word-spacing:-2.832408px;}
.ws1dd{word-spacing:-2.528525px;}
.ws51{word-spacing:-2.474726px;}
.ws186{word-spacing:-2.341073px;}
.wsd9{word-spacing:-2.234790px;}
.wsda{word-spacing:-2.224746px;}
.ws6b{word-spacing:-2.211697px;}
.ws50{word-spacing:-2.151922px;}
.wsdb{word-spacing:-1.993734px;}
.ws4f{word-spacing:-1.972595px;}
.ws46{word-spacing:-1.853044px;}
.wse0{word-spacing:-1.843074px;}
.wsdf{word-spacing:-1.822986px;}
.ws3c{word-spacing:-1.733492px;}
.ws96{word-spacing:-1.713420px;}
.wsc4{word-spacing:-1.644883px;}
.ws97{word-spacing:-1.629252px;}
.wsa0{word-spacing:-1.613952px;}
.ws56{word-spacing:-1.613941px;}
.wsc5{word-spacing:-1.564082px;}
.ws1ac{word-spacing:-1.452557px;}
.ws36{word-spacing:-1.434614px;}
.ws19e{word-spacing:-1.374839px;}
.ws1a0{word-spacing:-1.315063px;}
.ws192{word-spacing:-1.195512px;}
.ws66{word-spacing:-1.075961px;}
.ws135{word-spacing:-1.046088px;}
.ws19c{word-spacing:-1.016185px;}
.ws103{word-spacing:-0.966600px;}
.ws104{word-spacing:-0.912600px;}
.ws49{word-spacing:-0.896634px;}
.ws102{word-spacing:-0.880200px;}
.ws1aa{word-spacing:-0.860774px;}
.ws190{word-spacing:-0.836858px;}
.ws1c7{word-spacing:-0.806976px;}
.ws17c{word-spacing:-0.727452px;}
.ws1ba{word-spacing:-0.699379px;}
.ws70{word-spacing:-0.657532px;}
.ws136{word-spacing:-0.613224px;}
.ws19d{word-spacing:-0.597756px;}
.ws1a2{word-spacing:-0.537980px;}
.wsd1{word-spacing:-0.527310px;}
.wsd0{word-spacing:-0.507222px;}
.ws191{word-spacing:-0.478205px;}
.wsf2{word-spacing:-0.418429px;}
.ws26{word-spacing:-0.358654px;}
.ws126{word-spacing:-0.348696px;}
.wsc9{word-spacing:-0.322790px;}
.ws163{word-spacing:-0.300208px;}
.ws42{word-spacing:-0.298878px;}
.ws17a{word-spacing:-0.297594px;}
.ws179{word-spacing:-0.284368px;}
.ws95{word-spacing:-0.276552px;}
.ws78{word-spacing:-0.272916px;}
.ws127{word-spacing:-0.270540px;}
.ws1a{word-spacing:-0.268992px;}
.wsc3{word-spacing:-0.265490px;}
.wsa6{word-spacing:-0.261999px;}
.ws14a{word-spacing:-0.259270px;}
.ws177{word-spacing:-0.257915px;}
.wscd{word-spacing:-0.253812px;}
.ws8f{word-spacing:-0.248400px;}
.ws3b{word-spacing:-0.239102px;}
.wsbd{word-spacing:-0.238464px;}
.ws17b{word-spacing:-0.218236px;}
.ws1a4{word-spacing:-0.215194px;}
.ws150{word-spacing:-0.194940px;}
.ws91{word-spacing:-0.186372px;}
.ws38{word-spacing:-0.179327px;}
.wsbf{word-spacing:-0.178917px;}
.ws14f{word-spacing:-0.169290px;}
.ws9d{word-spacing:-0.161395px;}
.ws151{word-spacing:-0.159030px;}
.ws94{word-spacing:-0.150300px;}
.ws164{word-spacing:-0.147470px;}
.wsc2{word-spacing:-0.144288px;}
.ws79{word-spacing:-0.134064px;}
.wsa7{word-spacing:-0.128701px;}
.ws14b{word-spacing:-0.127361px;}
.wsce{word-spacing:-0.124680px;}
.ws32{word-spacing:-0.119551px;}
.wsa1{word-spacing:-0.107597px;}
.ws134{word-spacing:-0.084168px;}
.ws161{word-spacing:-0.066132px;}
.ws77{word-spacing:-0.060120px;}
.wsb{word-spacing:-0.059776px;}
.ws9c{word-spacing:-0.057715px;}
.wsf7{word-spacing:-0.054000px;}
.ws1b{word-spacing:-0.053798px;}
.ws145{word-spacing:-0.051300px;}
.ws15{word-spacing:-0.047821px;}
.ws3{word-spacing:-0.041843px;}
.ws100{word-spacing:-0.012451px;}
.wsf{word-spacing:-0.004441px;}
.ws10{word-spacing:-0.001133px;}
.ws1{word-spacing:0.000000px;}
.wsc{word-spacing:0.004276px;}
.wscc{word-spacing:0.053798px;}
.ws39{word-spacing:0.059776px;}
.ws15b{word-spacing:0.082080px;}
.ws137{word-spacing:0.096192px;}
.ws1e{word-spacing:0.107597px;}
.wsbc{word-spacing:0.108864px;}
.ws8e{word-spacing:0.113400px;}
.wsb7{word-spacing:0.114048px;}
.ws89{word-spacing:0.118800px;}
.ws16d{word-spacing:0.119038px;}
.ws45{word-spacing:0.119551px;}
.ws14e{word-spacing:0.119939px;}
.ws15e{word-spacing:0.123120px;}
.ws16e{word-spacing:0.125651px;}
.wsb6{word-spacing:0.134784px;}
.ws176{word-spacing:0.136620px;}
.ws88{word-spacing:0.140400px;}
.ws138{word-spacing:0.144288px;}
.ws125{word-spacing:0.145800px;}
.ws16a{word-spacing:0.152104px;}
.ws174{word-spacing:0.160380px;}
.ws17{word-spacing:0.161395px;}
.ws168{word-spacing:0.165330px;}
.ws40{word-spacing:0.179327px;}
.ws15d{word-spacing:0.179550px;}
.ws124{word-spacing:0.189000px;}
.ws169{word-spacing:0.191783px;}
.ws166{word-spacing:0.198396px;}
.wsbe{word-spacing:0.207360px;}
.ws16b{word-spacing:0.211622px;}
.ws1f{word-spacing:0.215194px;}
.ws90{word-spacing:0.216000px;}
.ws16c{word-spacing:0.218236px;}
.ws13c{word-spacing:0.224160px;}
.ws31{word-spacing:0.239102px;}
.wsb5{word-spacing:0.243648px;}
.ws87{word-spacing:0.253800px;}
.ws167{word-spacing:0.264528px;}
.ws18{word-spacing:0.268992px;}
.ws175{word-spacing:0.285120px;}
.ws35{word-spacing:0.298878px;}
.ws15c{word-spacing:0.318060px;}
.ws1d{word-spacing:0.322790px;}
.ws2d{word-spacing:0.358654px;}
.ws55{word-spacing:0.418429px;}
.ws1d6{word-spacing:0.430387px;}
.ws1a1{word-spacing:0.478205px;}
.ws9e{word-spacing:0.537984px;}
.ws4d{word-spacing:0.544500px;}
.ws10e{word-spacing:0.545400px;}
.ws60{word-spacing:0.568500px;}
.ws19a{word-spacing:0.597756px;}
.ws2e{word-spacing:0.657532px;}
.wsa4{word-spacing:0.717307px;}
.ws1ad{word-spacing:0.753178px;}
.ws34{word-spacing:0.777083px;}
.ws1a6{word-spacing:0.806976px;}
.ws158{word-spacing:0.820800px;}
.wsaf{word-spacing:0.834624px;}
.ws1a3{word-spacing:0.836858px;}
.ws1db{word-spacing:0.860774px;}
.ws81{word-spacing:0.869400px;}
.wsb0{word-spacing:0.881280px;}
.ws10c{word-spacing:0.885600px;}
.ws82{word-spacing:0.918000px;}
.ws18f{word-spacing:0.956410px;}
.ws10d{word-spacing:0.961200px;}
.ws41{word-spacing:1.016185px;}
.wsa3{word-spacing:1.129766px;}
.wsd7{word-spacing:1.150038px;}
.wsd8{word-spacing:1.175148px;}
.ws1a7{word-spacing:1.183565px;}
.ws37{word-spacing:1.195512px;}
.ws17d{word-spacing:1.236668px;}
.ws43{word-spacing:1.255288px;}
.ws72{word-spacing:1.315063px;}
.ws171{word-spacing:1.336500px;}
.ws1b8{word-spacing:1.344960px;}
.ws16f{word-spacing:1.354320px;}
.ws170{word-spacing:1.366200px;}
.ws69{word-spacing:1.374839px;}
.ws9{word-spacing:1.380812px;}
.ws17e{word-spacing:1.382159px;}
.ws13a{word-spacing:1.434614px;}
.ws1e4{word-spacing:1.452557px;}
.wsd5{word-spacing:1.476468px;}
.wsd4{word-spacing:1.491534px;}
.ws139{word-spacing:1.494390px;}
.ws1af{word-spacing:1.506355px;}
.ws157{word-spacing:1.518480px;}
.ws4c{word-spacing:1.554166px;}
.ws115{word-spacing:1.555200px;}
.ws156{word-spacing:1.559520px;}
.wsca{word-spacing:1.560154px;}
.wsf3{word-spacing:1.613941px;}
.ws114{word-spacing:1.636200px;}
.ws117{word-spacing:1.690200px;}
.ws4a{word-spacing:1.733492px;}
.wse8{word-spacing:1.817964px;}
.ws116{word-spacing:1.819800px;}
.wse7{word-spacing:1.828008px;}
.ws1ee{word-spacing:1.829146px;}
.ws19f{word-spacing:1.853044px;}
.ws1e6{word-spacing:1.882944px;}
.ws153{word-spacing:1.887840px;}
.ws2c{word-spacing:1.912819px;}
.ws152{word-spacing:1.923750px;}
.ws1ae{word-spacing:1.936742px;}
.ws193{word-spacing:1.972595px;}
.ws1c{word-spacing:1.990541px;}
.ws5c{word-spacing:2.032370px;}
.ws162{word-spacing:2.044339px;}
.ws5b{word-spacing:2.092146px;}
.ws20{word-spacing:2.098138px;}
.ws18a{word-spacing:2.151936px;}
.ws1b5{word-spacing:2.205734px;}
.wsb2{word-spacing:2.234304px;}
.wsb1{word-spacing:2.239488px;}
.ws196{word-spacing:2.271473px;}
.wsff{word-spacing:2.313331px;}
.ws84{word-spacing:2.327400px;}
.ws141{word-spacing:2.331248px;}
.ws83{word-spacing:2.332800px;}
.ws122{word-spacing:2.386800px;}
.ws13f{word-spacing:2.391024px;}
.ws123{word-spacing:2.408400px;}
.ws2b{word-spacing:2.450800px;}
.ws1bb{word-spacing:2.474726px;}
.ws13e{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws1ce{word-spacing:2.528525px;}
.ws19{word-spacing:2.582323px;}
.ws130{word-spacing:2.603196px;}
.ws12f{word-spacing:2.615220px;}
.ws4e{word-spacing:2.630126px;}
.ws1b2{word-spacing:2.636122px;}
.ws11e{word-spacing:2.640600px;}
.ws11f{word-spacing:2.656800px;}
.ws129{word-spacing:2.669328px;}
.ws12a{word-spacing:2.681352px;}
.ws2f{word-spacing:2.689902px;}
.wsf1{word-spacing:2.749678px;}
.ws5d{word-spacing:2.809453px;}
.wsfd{word-spacing:2.851315px;}
.ws4b{word-spacing:2.929004px;}
.ws187{word-spacing:2.949487px;}
.wsfb{word-spacing:2.958912px;}
.ws194{word-spacing:2.988780px;}
.ws68{word-spacing:3.048556px;}
.ws58{word-spacing:3.108331px;}
.ws57{word-spacing:3.168107px;}
.wse2{word-spacing:3.173904px;}
.wse1{word-spacing:3.183948px;}
.ws14d{word-spacing:3.186961px;}
.wse3{word-spacing:3.188970px;}
.ws1b9{word-spacing:3.190694px;}
.wse4{word-spacing:3.214080px;}
.ws1c5{word-spacing:3.218880px;}
.ws1e0{word-spacing:3.221040px;}
.ws1d2{word-spacing:3.222509px;}
.ws1ef{word-spacing:3.222720px;}
.ws1d9{word-spacing:3.223181px;}
.ws1be{word-spacing:3.227904px;}
.wsec{word-spacing:3.287658px;}
.ws2a{word-spacing:3.347434px;}
.ws119{word-spacing:3.375000px;}
.ws118{word-spacing:3.402000px;}
.wsa2{word-spacing:3.443098px;}
.ws11a{word-spacing:3.450600px;}
.ws33{word-spacing:3.466985px;}
.ws16{word-spacing:3.468128px;}
.wsfc{word-spacing:3.496896px;}
.wse5{word-spacing:3.500334px;}
.ws1a9{word-spacing:3.502304px;}
.ws195{word-spacing:3.526760px;}
.wse6{word-spacing:3.540510px;}
.wsfa{word-spacing:3.550694px;}
.ws24{word-spacing:3.586536px;}
.wsf9{word-spacing:3.604493px;}
.ws178{word-spacing:3.630647px;}
.ws62{word-spacing:3.646312px;}
.ws11b{word-spacing:3.720600px;}
.ws11c{word-spacing:3.726000px;}
.ws11d{word-spacing:3.780000px;}
.ws25{word-spacing:3.825638px;}
.wsc1{word-spacing:3.826518px;}
.wsc0{word-spacing:3.861147px;}
.ws1a8{word-spacing:3.873485px;}
.ws63{word-spacing:3.885414px;}
.wsab{word-spacing:3.903552px;}
.ws3a{word-spacing:3.945190px;}
.ws1b1{word-spacing:3.981082px;}
.ws93{word-spacing:3.985956px;}
.wsa9{word-spacing:3.996864px;}
.ws28{word-spacing:4.004965px;}
.wsaa{word-spacing:4.017600px;}
.ws92{word-spacing:4.022028px;}
.ws65{word-spacing:4.064741px;}
.ws7d{word-spacing:4.066200px;}
.wsfe{word-spacing:4.088678px;}
.wsa5{word-spacing:4.124516px;}
.ws1b6{word-spacing:4.142477px;}
.ws7b{word-spacing:4.163400px;}
.wsed{word-spacing:4.184292px;}
.ws7c{word-spacing:4.185000px;}
.ws1a5{word-spacing:4.250074px;}
.wsad{word-spacing:4.297536px;}
.wsf5{word-spacing:4.303843px;}
.wsac{word-spacing:4.307904px;}
.wsae{word-spacing:4.313088px;}
.ws5f{word-spacing:4.363619px;}
.ws47{word-spacing:4.423394px;}
.ws182{word-spacing:4.437457px;}
.ws183{word-spacing:4.463910px;}
.ws7f{word-spacing:4.476600px;}
.ws27{word-spacing:4.483170px;}
.ws7e{word-spacing:4.487400px;}
.ws80{word-spacing:4.492800px;}
.ws1cd{word-spacing:4.519066px;}
.ws6c{word-spacing:4.542946px;}
.ws6d{word-spacing:4.602721px;}
.wsba{word-spacing:4.624128px;}
.wscb{word-spacing:4.626662px;}
.wseb{word-spacing:4.662497px;}
.wsbb{word-spacing:4.670784px;}
.ws1ab{word-spacing:4.680461px;}
.ws5a{word-spacing:4.722272px;}
.ws1b0{word-spacing:4.734259px;}
.ws59{word-spacing:4.782048px;}
.ws1c0{word-spacing:4.788058px;}
.ws8c{word-spacing:4.816800px;}
.ws121{word-spacing:4.822200px;}
.ws109{word-spacing:4.827600px;}
.wsd6{word-spacing:4.836186px;}
.ws120{word-spacing:4.838400px;}
.ws67{word-spacing:4.841824px;}
.ws8d{word-spacing:4.865400px;}
.wsf6{word-spacing:4.901599px;}
.ws64{word-spacing:5.021150px;}
.ws12d{word-spacing:5.104188px;}
.ws29{word-spacing:5.140702px;}
.wsd2{word-spacing:5.142528px;}
.ws12e{word-spacing:5.146272px;}
.wsd3{word-spacing:5.177682px;}
.ws10b{word-spacing:5.221800px;}
.ws17f{word-spacing:5.231041px;}
.ws180{word-spacing:5.250881px;}
.ws13b{word-spacing:5.272243px;}
.ws5e{word-spacing:5.320028px;}
.ws10a{word-spacing:5.329800px;}
.ws3f{word-spacing:5.379804px;}
.ws1f0{word-spacing:5.379840px;}
.ws1b7{word-spacing:5.433638px;}
.ws7{word-spacing:5.481407px;}
.ws71{word-spacing:5.559131px;}
.wsb9{word-spacing:5.640192px;}
.ws19b{word-spacing:5.678682px;}
.wsb8{word-spacing:5.692032px;}
.ws12b{word-spacing:5.837652px;}
.ws3e{word-spacing:5.858009px;}
.ws12c{word-spacing:5.867712px;}
.ws8b{word-spacing:5.875200px;}
.ws113{word-spacing:5.918400px;}
.ws8a{word-spacing:5.929200px;}
.ws112{word-spacing:5.934600px;}
.ws159{word-spacing:5.935410px;}
.ws15a{word-spacing:5.971320px;}
.ws61{word-spacing:5.977560px;}
.ws181{word-spacing:6.004786px;}
.ws148{word-spacing:6.025421px;}
.ws184{word-spacing:6.031238px;}
.wsf0{word-spacing:6.037336px;}
.ws185{word-spacing:6.070918px;}
.ws1b4{word-spacing:6.294413px;}
.wsee{word-spacing:6.336214px;}
.wsf4{word-spacing:6.395989px;}
.ws133{word-spacing:6.553080px;}
.ws1e9{word-spacing:6.617203px;}
.ws108{word-spacing:6.631200px;}
.ws107{word-spacing:6.652800px;}
.ws1bc{word-spacing:6.671002px;}
.ws106{word-spacing:6.679800px;}
.wsef{word-spacing:6.694867px;}
.wsea{word-spacing:6.754643px;}
.ws173{word-spacing:6.914160px;}
.ws172{word-spacing:6.943860px;}
.ws111{word-spacing:6.949800px;}
.ws10f{word-spacing:6.982200px;}
.ws110{word-spacing:6.993000px;}
.ws30{word-spacing:6.993745px;}
.ws155{word-spacing:6.997320px;}
.ws154{word-spacing:7.028100px;}
.ws13{word-spacing:7.156891px;}
.ws199{word-spacing:7.173072px;}
.ws105{word-spacing:7.349400px;}
.ws1f4{word-spacing:7.477978px;}
.ws1b3{word-spacing:7.531776px;}
.ws198{word-spacing:7.591501px;}
.ws132{word-spacing:7.635240px;}
.ws131{word-spacing:7.641252px;}
.ws6a{word-spacing:7.830604px;}
.ws44{word-spacing:7.890379px;}
.ws6f{word-spacing:8.069706px;}
.ws197{word-spacing:8.189257px;}
.ws3d{word-spacing:8.488135px;}
.ws5{word-spacing:9.833058px;}
.wscf{word-spacing:10.807043px;}
.ws14c{word-spacing:11.034904px;}
.ws142{word-spacing:11.118262px;}
.wsa8{word-spacing:11.155657px;}
.ws101{word-spacing:11.615688px;}
.ws7a{word-spacing:11.620476px;}
.ws6{word-spacing:11.841512px;}
.wsb4{word-spacing:11.897280px;}
.ws23{word-spacing:11.906461px;}
.wsb3{word-spacing:11.918016px;}
.ws86{word-spacing:12.393000px;}
.ws85{word-spacing:12.414600px;}
.ws165{word-spacing:12.777257px;}
.ws1d8{word-spacing:13.126810px;}
.ws1d7{word-spacing:13.234406px;}
.ws1eb{word-spacing:13.266714px;}
.ws1f5{word-spacing:13.385549px;}
.ws1ea{word-spacing:13.386902px;}
.ws1d3{word-spacing:13.389418px;}
.ws1da{word-spacing:13.391030px;}
.ws1cb{word-spacing:13.391549px;}
.ws1ca{word-spacing:13.392077px;}
.ws1c3{word-spacing:13.392125px;}
.ws1c4{word-spacing:13.393498px;}
.ws1c6{word-spacing:13.393603px;}
.ws1dc{word-spacing:13.394112px;}
.ws1e1{word-spacing:13.394870px;}
.ws1ed{word-spacing:13.395226px;}
.ws1cc{word-spacing:13.395802px;}
.ws1e7{word-spacing:13.449600px;}
.ws1ec{word-spacing:13.503398px;}
.ws1f1{word-spacing:13.557197px;}
.ws1f2{word-spacing:13.566027px;}
.ws1e3{word-spacing:13.688987px;}
.ws22{word-spacing:13.772390px;}
.ws149{word-spacing:14.687196px;}
.ws1e5{word-spacing:14.843777px;}
.ws48{word-spacing:14.884124px;}
.ws6e{word-spacing:16.256803px;}
.ws1cf{word-spacing:16.354714px;}
.ws1bd{word-spacing:16.450226px;}
.ws1e2{word-spacing:16.610803px;}
.ws1d0{word-spacing:16.611485px;}
.ws1c8{word-spacing:16.616563px;}
.ws1bf{word-spacing:16.616986px;}
.ws1e8{word-spacing:16.617293px;}
.ws1df{word-spacing:16.617379px;}
.ws1d5{word-spacing:16.617965px;}
.ws1de{word-spacing:16.619232px;}
.ws1c2{word-spacing:16.619914px;}
.ws1c1{word-spacing:16.621411px;}
.ws1d1{word-spacing:16.623706px;}
.ws1c9{word-spacing:16.731302px;}
.ws1d4{word-spacing:17.000294px;}
.ws1f3{word-spacing:17.430682px;}
.ws140{word-spacing:18.187687px;}
.ws188{word-spacing:21.902918px;}
.ws189{word-spacing:21.975664px;}
.ws4{word-spacing:22.339429px;}
.ws8{word-spacing:22.720640px;}
.ws21{word-spacing:30.964844px;}
.ws11{word-spacing:40.068708px;}
.wsa{word-spacing:46.608830px;}
.ws53{word-spacing:362.439821px;}
.ws54{word-spacing:372.930509px;}
.ws52{word-spacing:375.889421px;}
.ws18c{word-spacing:385.734528px;}
.ws18d{word-spacing:425.168755px;}
.ws18b{word-spacing:455.564851px;}
.ws18e{word-spacing:482.840640px;}
.ws13d{word-spacing:706.300176px;}
._4{margin-left:-11.943245px;}
._29{margin-left:-8.034005px;}
._7{margin-left:-6.682063px;}
._a{margin-left:-4.997282px;}
._0{margin-left:-3.849538px;}
._c{margin-left:-2.694545px;}
._1{margin-left:-1.673712px;}
._25{width:1.007812px;}
._5{width:2.999980px;}
._6{width:4.075591px;}
._2{width:12.971761px;}
._9{width:14.274428px;}
._b{width:15.422173px;}
._d{width:17.107891px;}
._16{width:18.530436px;}
._13{width:20.562806px;}
._e{width:21.900574px;}
._17{width:23.790689px;}
._15{width:24.866650px;}
._3{width:25.946136px;}
._23{width:27.556552px;}
._a6{width:28.925940px;}
._12{width:30.425780px;}
._14{width:32.398375px;}
._f{width:34.215782px;}
._43{width:35.994999px;}
._2a{width:37.359740px;}
._a5{width:40.647408px;}
._a4{width:41.962466px;}
._24{width:43.253666px;}
._8{width:54.945613px;}
._a8{width:61.868160px;}
._a7{width:88.767360px;}
._36{width:139.571712px;}
._1b{width:161.450880px;}
._1a{width:163.810159px;}
._37{width:191.891856px;}
._19{width:196.579354px;}
._39{width:220.927104px;}
._18{width:243.007373px;}
._72{width:282.015838px;}
._3f{width:287.866272px;}
._71{width:310.685760px;}
._60{width:312.378739px;}
._61{width:315.571212px;}
._45{width:324.532850px;}
._48{width:327.764290px;}
._53{width:333.308290px;}
._55{width:338.852290px;}
._5d{width:348.356290px;}
._50{width:353.440850px;}
._38{width:359.699376px;}
._4b{width:360.869692px;}
._32{width:364.080672px;}
._2d{width:383.179104px;}
._5e{width:384.414070px;}
._5a{width:387.246697px;}
._62{width:395.480290px;}
._8b{width:406.393114px;}
._82{width:409.249054px;}
._21{width:412.526131px;}
._7c{width:413.534993px;}
._7e{width:416.459376px;}
._1e{width:425.975731px;}
._91{width:428.665651px;}
._80{width:432.548705px;}
._70{width:434.200918px;}
._7d{width:436.574016px;}
._1f{width:438.941146px;}
._31{width:440.070912px;}
._8a{width:442.384243px;}
._8c{width:444.751373px;}
._85{width:448.947648px;}
._35{width:450.202944px;}
._7b{width:453.197722px;}
._a1{width:457.931981px;}
._6a{width:459.761126px;}
._20{width:460.837094px;}
._1c{width:462.343450px;}
._81{width:464.602982px;}
._75{width:465.625152px;}
._94{width:467.884685px;}
._6d{width:469.068250px;}
._7f{width:470.736000px;}
._22{width:472.834138px;}
._1d{width:474.286694px;}
._66{width:477.299405px;}
._78{width:479.558938px;}
._86{width:482.948237px;}
._69{width:488.166682px;}
._9e{width:490.264819px;}
._5f{width:491.277420px;}
._89{width:493.536953px;}
._54{width:504.308020px;}
._56{width:513.768064px;}
._4e{width:516.916580px;}
._9a{width:528.778505px;}
._76{width:530.990208px;}
._68{width:534.092582px;}
._77{width:537.343045px;}
._7a{width:545.784768px;}
._41{width:548.609184px;}
._79{width:555.014146px;}
._99{width:559.718554px;}
._10{width:561.770719px;}
._9b{width:563.843098px;}
._97{width:567.357926px;}
._9d{width:569.725056px;}
._51{width:573.915197px;}
._84{width:579.946752px;}
._58{width:582.536632px;}
._96{width:600.228749px;}
._98{width:613.785946px;}
._9c{width:621.479117px;}
._49{width:624.664022px;}
._46{width:627.673820px;}
._93{width:630.006163px;}
._57{width:631.021406px;}
._67{width:635.588089px;}
._4c{width:637.348338px;}
._4f{width:639.814547px;}
._a0{width:642.191501px;}
._6c{width:648.970099px;}
._5b{width:651.972064px;}
._92{width:654.296141px;}
._90{width:656.797766px;}
._83{width:658.394388px;}
._95{width:664.786829px;}
._52{width:669.874590px;}
._9f{width:676.837670px;}
._59{width:680.392754px;}
._8f{width:691.524634px;}
._6b{width:693.353779px;}
._88{width:695.774707px;}
._3a{width:700.320672px;}
._40{width:702.786432px;}
._65{width:708.010499px;}
._6f{width:709.600896px;}
._3d{width:711.797664px;}
._4d{width:717.483888px;}
._3e{width:728.340672px;}
._30{width:730.855889px;}
._74{width:738.759629px;}
._4a{width:752.620778px;}
._47{width:754.426134px;}
._8e{width:758.122427px;}
._87{width:762.652080px;}
._8d{width:766.949990px;}
._6e{width:768.133555px;}
._5c{width:769.626119px;}
._a3{width:771.092467px;}
._a2{width:796.216320px;}
._63{width:798.394529px;}
._73{width:804.555072px;}
._3c{width:826.298592px;}
._3b{width:858.936288px;}
._2f{width:896.729664px;}
._34{width:917.128224px;}
._33{width:921.521760px;}
._64{width:927.320170px;}
._2e{width:1099.728960px;}
._28{width:1898.597466px;}
._42{width:1916.857366px;}
._27{width:1959.842546px;}
._2c{width:2017.744596px;}
._26{width:2041.502652px;}
._44{width:2219.519056px;}
._2b{width:2452.983000px;}
._11{width:2476.893000px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(45,70,152);}
.fc0{color:rgb(0,0,0);}
.fs15{font-size:34.072200px;}
.fs5{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs13{font-size:43.600200px;}
.fs10{font-size:44.528400px;}
.fs14{font-size:44.832000px;}
.fs4{font-size:45.429600px;}
.fs16{font-size:45.486000px;}
.fsd{font-size:45.964800px;}
.fs9{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fsa{font-size:47.880000px;}
.fs12{font-size:50.220000px;}
.fs18{font-size:51.300000px;}
.fsf{font-size:51.840000px;}
.fs1a{font-size:52.668000px;}
.fs7{font-size:53.798400px;}
.fsc{font-size:54.000000px;}
.fs11{font-size:55.911600px;}
.fs19{font-size:56.058000px;}
.fs17{font-size:57.114000px;}
.fse{font-size:57.715200px;}
.fs1c{font-size:59.400000px;}
.fs2{font-size:59.775600px;}
.fsb{font-size:60.120000px;}
.fs8{font-size:62.286600px;}
.fs1b{font-size:66.132000px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:136.067040px;}
.y137{bottom:-724.572351px;}
.y136{bottom:-705.403089px;}
.y135{bottom:-686.143647px;}
.y134{bottom:-662.472900px;}
.y133{bottom:-625.663050px;}
.y132{bottom:-608.203500px;}
.y131{bottom:-590.923500px;}
.y130{bottom:-573.643500px;}
.y12f{bottom:-556.363500px;}
.y12e{bottom:-538.993050px;}
.y12d{bottom:-521.713050px;}
.y1cb{bottom:-506.233677px;}
.y12c{bottom:-504.433050px;}
.y12b{bottom:-487.153050px;}
.y1ca{bottom:-486.974235px;}
.y1c9{bottom:-467.803470px;}
.y12a{bottom:-464.653050px;}
.y1c8{bottom:-448.544028px;}
.y1c7{bottom:-429.284586px;}
.y1c6{bottom:-410.115324px;}
.y1c5{bottom:-390.855882px;}
.y1c4{bottom:-371.596440px;}
.y1c3{bottom:-352.427178px;}
.y269{bottom:-338.443047px;}
.y1c2{bottom:-333.167736px;}
.y268{bottom:-317.356858px;}
.y1c1{bottom:-313.998474px;}
.y149{bottom:-300.662257px;}
.y267{bottom:-296.171472px;}
.y1c0{bottom:-290.239050px;}
.y148{bottom:-282.259765px;}
.y266{bottom:-274.986086px;}
.y1f6{bottom:-269.986677px;}
.y147{bottom:-263.770701px;}
.y265{bottom:-253.899898px;}
.y1bf{bottom:-253.429950px;}
.y1f5{bottom:-250.727235px;}
.y146{bottom:-241.046784px;}
.y1be{bottom:-236.059500px;}
.y264{bottom:-232.714512px;}
.y1f4{bottom:-231.556470px;}
.y1bd{bottom:-218.329950px;}
.y170{bottom:-212.424462px;}
.y1f3{bottom:-212.297028px;}
.y263{bottom:-211.628323px;}
.y145{bottom:-205.709328px;}
.y1bc{bottom:-201.049950px;}
.y16f{bottom:-196.354062px;}
.y1f2{bottom:-193.037586px;}
.y262{bottom:-190.442937px;}
.y144{bottom:-188.948160px;}
.y1bb{bottom:-183.769950px;}
.y16e{bottom:-180.283662px;}
.y1f1{bottom:-173.868324px;}
.y143{bottom:-172.359360px;}
.y261{bottom:-169.257551px;}
.y1ba{bottom:-166.489950px;}
.y16d{bottom:-164.129143px;}
.y142{bottom:-155.770560px;}
.y1f0{bottom:-154.608882px;}
.y1b9{bottom:-149.119500px;}
.y260{bottom:-148.171363px;}
.y16c{bottom:-148.058743px;}
.y141{bottom:-139.181760px;}
.y1ef{bottom:-135.349440px;}
.y242{bottom:-132.168180px;}
.y16b{bottom:-131.988343px;}
.y1b8{bottom:-131.839500px;}
.y25f{bottom:-126.985977px;}
.y140{bottom:-122.506128px;}
.y1ee{bottom:-116.180178px;}
.y16a{bottom:-115.917943px;}
.y241{bottom:-115.666252px;}
.y1b7{bottom:-114.559500px;}
.y13f{bottom:-105.917328px;}
.y25e{bottom:-100.948155px;}
.y169{bottom:-99.763425px;}
.y240{bottom:-99.250253px;}
.y1b6{bottom:-97.279500px;}
.y1ed{bottom:-96.920736px;}
.y13e{bottom:-89.328528px;}
.y168{bottom:-83.693025px;}
.y23f{bottom:-82.748325px;}
.y1b5{bottom:-79.909050px;}
.y1ec{bottom:-77.751474px;}
.y13d{bottom:-72.739728px;}
.y167{bottom:-67.622625px;}
.y23e{bottom:-66.332325px;}
.y1b4{bottom:-62.629050px;}
.y25d{bottom:-60.456660px;}
.y1eb{bottom:-53.992050px;}
.y166{bottom:-51.552225px;}
.y13c{bottom:-51.139728px;}
.y23d{bottom:-49.916325px;}
.y1b3{bottom:-45.349050px;}
.y25c{bottom:-41.251155px;}
.y165{bottom:-35.397706px;}
.y23c{bottom:-33.500325px;}
.y1b2{bottom:-28.069050px;}
.y25b{bottom:-22.243155px;}
.y164{bottom:-19.327306px;}
.y1ea{bottom:-17.182950px;}
.y23b{bottom:-16.998398px;}
.y1b1{bottom:-5.569050px;}
.y0{bottom:0.000000px;}
.y1e9{bottom:0.187500px;}
.y163{bottom:1.513994px;}
.y25a{bottom:2.407845px;}
.y23a{bottom:4.290051px;}
.y1c{bottom:13.870617px;}
.y1e8{bottom:17.917050px;}
.y4c{bottom:31.890000px;}
.y1e7{bottom:35.197050px;}
.y1e6{bottom:52.477050px;}
.y1e5{bottom:69.757050px;}
.y1e4{bottom:87.127500px;}
.y302{bottom:103.906500px;}
.y1e3{bottom:104.407500px;}
.y1a{bottom:104.646000px;}
.y2d0{bottom:107.491500px;}
.y2a4{bottom:107.869500px;}
.y17f{bottom:108.789000px;}
.y234{bottom:108.885000px;}
.y24a{bottom:114.271500px;}
.yea{bottom:114.502500px;}
.y118{bottom:118.251000px;}
.y1ad{bottom:119.148000px;}
.y2c7{bottom:119.596500px;}
.y301{bottom:121.480500px;}
.y1e2{bottom:121.687500px;}
.y19{bottom:122.535000px;}
.y2cf{bottom:125.536500px;}
.yb6{bottom:126.505500px;}
.y2a3{bottom:126.699000px;}
.y233{bottom:127.714500px;}
.y17e{bottom:128.022000px;}
.y33a{bottom:129.817500px;}
.ye9{bottom:133.332000px;}
.y249{bottom:133.504500px;}
.y36f{bottom:133.719000px;}
.y82{bottom:133.942500px;}
.y117{bottom:137.080500px;}
.y1ac{bottom:137.977500px;}
.y2c6{bottom:138.426000px;}
.y1e1{bottom:138.967500px;}
.y18{bottom:140.422500px;}
.yb5{bottom:142.944000px;}
.y1f7{bottom:143.544000px;}
.y2ce{bottom:143.581500px;}
.y2a2{bottom:145.528500px;}
.y232{bottom:146.544000px;}
.y339{bottom:147.078000px;}
.y17d{bottom:147.255000px;}
.y300{bottom:148.020000px;}
.y36e{bottom:150.978000px;}
.y248{bottom:152.737500px;}
.y81{bottom:152.772000px;}
.y116{bottom:155.910000px;}
.y1e0{bottom:156.337950px;}
.ye8{bottom:156.645000px;}
.y1ab{bottom:156.807000px;}
.y2c5{bottom:157.255500px;}
.y17{bottom:158.310000px;}
.y4b{bottom:158.584500px;}
.yb4{bottom:159.382500px;}
.y2cd{bottom:161.626500px;}
.y1d9{bottom:162.777000px;}
.y338{bottom:164.338500px;}
.y2a1{bottom:164.358000px;}
.y231{bottom:165.372000px;}
.y2ff{bottom:165.595500px;}
.y17c{bottom:166.488000px;}
.y36d{bottom:168.238500px;}
.y80{bottom:171.601500px;}
.y247{bottom:171.970500px;}
.y1df{bottom:173.617950px;}
.y115{bottom:174.739500px;}
.y1aa{bottom:175.636500px;}
.yb3{bottom:175.821000px;}
.y2c4{bottom:176.085000px;}
.y16{bottom:176.199000px;}
.y4a{bottom:178.041000px;}
.y2cc{bottom:179.671500px;}
.y337{bottom:181.599000px;}
.y1d7{bottom:182.010000px;}
.y2fe{bottom:183.169500px;}
.y2a0{bottom:183.187500px;}
.y230{bottom:184.201500px;}
.y36c{bottom:185.499000px;}
.y17b{bottom:185.719500px;}
.y1d8{bottom:186.892500px;}
.ye7{bottom:190.269000px;}
.y7f{bottom:190.431000px;}
.y1de{bottom:190.897950px;}
.y246{bottom:191.203500px;}
.yb2{bottom:192.259500px;}
.y114{bottom:193.569000px;}
.y15{bottom:194.086500px;}
.y1a9{bottom:194.466000px;}
.y2c3{bottom:194.914500px;}
.y2cb{bottom:197.716500px;}
.y336{bottom:198.859500px;}
.y2fd{bottom:200.743500px;}
.y1d6{bottom:201.243000px;}
.y29f{bottom:202.017000px;}
.y36b{bottom:202.759500px;}
.y22f{bottom:203.031000px;}
.y17a{bottom:204.952500px;}
.y1dd{bottom:208.177950px;}
.y26c{bottom:208.558500px;}
.yb1{bottom:208.698000px;}
.ye6{bottom:209.098500px;}
.y7e{bottom:209.260500px;}
.y245{bottom:210.435000px;}
.y14{bottom:211.974000px;}
.y113{bottom:212.398500px;}
.y1a8{bottom:213.295500px;}
.y2c2{bottom:213.744000px;}
.y49{bottom:215.431500px;}
.y2ca{bottom:215.761500px;}
.y335{bottom:216.120000px;}
.y2fc{bottom:218.317500px;}
.y36a{bottom:220.020000px;}
.y1d5{bottom:220.476000px;}
.y29e{bottom:220.846500px;}
.y22e{bottom:221.860500px;}
.y179{bottom:224.185500px;}
.yb0{bottom:225.136500px;}
.y26b{bottom:227.791500px;}
.ye4{bottom:227.928000px;}
.y7d{bottom:228.090000px;}
.y244{bottom:229.668000px;}
.y13{bottom:229.863000px;}
.y1dc{bottom:230.677950px;}
.y112{bottom:231.228000px;}
.y1a7{bottom:232.125000px;}
.y2c1{bottom:232.573500px;}
.ye5{bottom:233.352000px;}
.y334{bottom:233.380500px;}
.y2c9{bottom:233.806500px;}
.y48{bottom:234.888000px;}
.y2fb{bottom:235.891500px;}
.y369{bottom:237.280500px;}
.y29d{bottom:239.676000px;}
.y1d4{bottom:239.709000px;}
.y22d{bottom:240.690000px;}
.yaf{bottom:241.575000px;}
.y178{bottom:243.418500px;}
.ye3{bottom:246.757500px;}
.y7c{bottom:246.919500px;}
.y26a{bottom:247.024500px;}
.y243{bottom:248.901000px;}
.y111{bottom:250.057500px;}
.y333{bottom:250.641000px;}
.y1a6{bottom:250.954500px;}
.y2c0{bottom:251.403000px;}
.y2fa{bottom:253.465500px;}
.y47{bottom:254.344500px;}
.y368{bottom:254.541000px;}
.yae{bottom:258.013500px;}
.y29c{bottom:258.505500px;}
.y1d3{bottom:258.942000px;}
.y22c{bottom:259.519500px;}
.y177{bottom:262.651500px;}
.ye2{bottom:265.587000px;}
.y7b{bottom:265.749000px;}
.y332{bottom:267.900000px;}
.y110{bottom:268.887000px;}
.y24b{bottom:269.454000px;}
.y1a5{bottom:269.784000px;}
.y2bf{bottom:270.232500px;}
.y2f9{bottom:271.039500px;}
.y367{bottom:271.801500px;}
.y46{bottom:273.802500px;}
.y235{bottom:274.320000px;}
.yad{bottom:274.452000px;}
.y29b{bottom:277.335000px;}
.y1d2{bottom:278.173500px;}
.y22b{bottom:278.349000px;}
.y176{bottom:281.884500px;}
.ye1{bottom:284.416500px;}
.y7a{bottom:284.578500px;}
.y331{bottom:285.160500px;}
.y10f{bottom:287.716500px;}
.y1a4{bottom:288.613500px;}
.y2be{bottom:289.062000px;}
.yac{bottom:290.889000px;}
.y45{bottom:293.259000px;}
.y29a{bottom:296.164500px;}
.y1d1{bottom:297.406500px;}
.y12{bottom:299.892000px;}
.y15f{bottom:300.886500px;}
.y175{bottom:301.117500px;}
.y22a{bottom:301.662000px;}
.y330{bottom:302.421000px;}
.ye0{bottom:303.246000px;}
.y79{bottom:303.408000px;}
.y366{bottom:306.321000px;}
.y10e{bottom:306.546000px;}
.yab{bottom:307.327500px;}
.y1a3{bottom:307.443000px;}
.y2bd{bottom:307.891500px;}
.y138{bottom:308.067000px;}
.y44{bottom:312.715500px;}
.y2f8{bottom:315.154500px;}
.y1d0{bottom:316.639500px;}
.y11{bottom:317.779500px;}
.y299{bottom:319.476000px;}
.y32f{bottom:319.681500px;}
.y15e{bottom:319.716000px;}
.y174{bottom:320.350500px;}
.ydf{bottom:322.075500px;}
.y78{bottom:322.237500px;}
.y365{bottom:323.581500px;}
.yaa{bottom:323.766000px;}
.y10d{bottom:325.375500px;}
.y1a2{bottom:326.272500px;}
.y2bc{bottom:326.719500px;}
.y127{bottom:330.496500px;}
.y43{bottom:332.173500px;}
.y2f7{bottom:332.728500px;}
.y10{bottom:335.667000px;}
.y1cf{bottom:335.872500px;}
.y32e{bottom:336.942000px;}
.y15d{bottom:338.545500px;}
.y173{bottom:339.583500px;}
.ya9{bottom:340.204500px;}
.y364{bottom:340.842000px;}
.yde{bottom:340.905000px;}
.y77{bottom:341.067000px;}
.y10c{bottom:344.205000px;}
.y1a1{bottom:345.102000px;}
.y2bb{bottom:345.549000px;}
.y229{bottom:347.086500px;}
.y129{bottom:347.507085px;}
.y42{bottom:351.630000px;}
.yf{bottom:353.556000px;}
.y32d{bottom:354.202500px;}
.y1ce{bottom:355.105500px;}
.ya8{bottom:356.643000px;}
.y128{bottom:357.136950px;}
.y15c{bottom:357.375000px;}
.y363{bottom:358.102500px;}
.y172{bottom:358.816500px;}
.y2f6{bottom:359.269500px;}
.y228{bottom:359.850000px;}
.y76{bottom:359.896500px;}
.y10b{bottom:363.034500px;}
.y1a0{bottom:363.931500px;}
.ydd{bottom:364.216500px;}
.y2ba{bottom:364.378500px;}
.y298{bottom:364.789500px;}
.y41{bottom:371.088000px;}
.y32c{bottom:371.463000px;}
.ya7{bottom:373.081500px;}
.y1cd{bottom:374.338500px;}
.y362{bottom:375.363000px;}
.y15b{bottom:376.204500px;}
.y227{bottom:376.662000px;}
.y2f5{bottom:376.843500px;}
.y171{bottom:378.048000px;}
.y75{bottom:378.726000px;}
.y297{bottom:381.228000px;}
.y10a{bottom:381.864000px;}
.ye{bottom:381.904500px;}
.y19f{bottom:382.761000px;}
.y2b9{bottom:383.208000px;}
.y32b{bottom:388.723500px;}
.ya6{bottom:389.520000px;}
.y40{bottom:390.544500px;}
.y361{bottom:392.623500px;}
.y226{bottom:393.474000px;}
.y1cc{bottom:393.571500px;}
.y15a{bottom:395.034000px;}
.y74{bottom:397.555500px;}
.y296{bottom:397.666500px;}
.ydc{bottom:397.840500px;}
.yd{bottom:399.792000px;}
.y160{bottom:400.477500px;}
.y109{bottom:400.693500px;}
.y19e{bottom:401.589000px;}
.y2b8{bottom:402.037500px;}
.y2f4{bottom:403.383000px;}
.ya5{bottom:405.958500px;}
.y32a{bottom:405.984000px;}
.y360{bottom:409.884000px;}
.y3f{bottom:410.001000px;}
.y225{bottom:410.286000px;}
.y21a{bottom:413.337000px;}
.y159{bottom:413.863500px;}
.y295{bottom:414.103500px;}
.y73{bottom:416.383500px;}
.ydb{bottom:416.670000px;}
.yc{bottom:417.679500px;}
.y1ae{bottom:418.989000px;}
.y108{bottom:419.523000px;}
.y19d{bottom:420.418500px;}
.y2b7{bottom:420.867000px;}
.y2f3{bottom:420.957000px;}
.ya4{bottom:422.397000px;}
.y329{bottom:423.243000px;}
.y224{bottom:427.098000px;}
.y35f{bottom:427.144500px;}
.y3e{bottom:429.459000px;}
.y294{bottom:430.542000px;}
.y158{bottom:432.693000px;}
.y72{bottom:435.213000px;}
.yda{bottom:435.499500px;}
.y107{bottom:438.352500px;}
.y2f2{bottom:438.532500px;}
.ya3{bottom:438.835500px;}
.y19c{bottom:439.248000px;}
.y2b6{bottom:439.696500px;}
.y328{bottom:440.503500px;}
.y223{bottom:443.910000px;}
.y35e{bottom:444.403500px;}
.yb{bottom:444.534000px;}
.y293{bottom:446.980500px;}
.y3d{bottom:448.915500px;}
.y157{bottom:451.522500px;}
.y71{bottom:454.042500px;}
.yd8{bottom:454.329000px;}
.y2f1{bottom:456.106500px;}
.y106{bottom:457.182000px;}
.y327{bottom:457.764000px;}
.y19b{bottom:458.077500px;}
.y2b5{bottom:458.526000px;}
.yd9{bottom:459.754500px;}
.y222{bottom:460.722000px;}
.y35d{bottom:461.664000px;}
.ya{bottom:462.423000px;}
.ya2{bottom:462.475500px;}
.y292{bottom:463.419000px;}
.y3c{bottom:468.372000px;}
.y156{bottom:470.352000px;}
.y70{bottom:472.872000px;}
.yd7{bottom:473.158500px;}
.y2f0{bottom:473.680500px;}
.y326{bottom:475.024500px;}
.y105{bottom:476.011500px;}
.y19a{bottom:476.907000px;}
.y2b4{bottom:477.355500px;}
.y221{bottom:477.534000px;}
.y35c{bottom:478.924500px;}
.y291{bottom:479.857500px;}
.y9{bottom:480.310500px;}
.y3b{bottom:487.830000px;}
.y155{bottom:489.181500px;}
.y6f{bottom:491.701500px;}
.yd6{bottom:491.988000px;}
.y325{bottom:492.285000px;}
.ya1{bottom:494.095500px;}
.y220{bottom:494.346000px;}
.y104{bottom:494.841000px;}
.y199{bottom:495.736500px;}
.y2b3{bottom:496.185000px;}
.y290{bottom:496.296000px;}
.y8{bottom:498.198000px;}
.y2c8{bottom:500.220000px;}
.y3a{bottom:507.286500px;}
.y154{bottom:508.011000px;}
.y324{bottom:509.545500px;}
.y6e{bottom:510.531000px;}
.y21f{bottom:511.158000px;}
.y28f{bottom:512.734500px;}
.y9f{bottom:513.328500px;}
.y35b{bottom:513.445500px;}
.y103{bottom:513.670500px;}
.y198{bottom:514.566000px;}
.y2b2{bottom:515.014500px;}
.yd5{bottom:515.301000px;}
.y21c{bottom:515.983500px;}
.y7{bottom:516.087000px;}
.y2ef{bottom:517.794000px;}
.ya0{bottom:518.209500px;}
.y21e{bottom:522.366000px;}
.y323{bottom:526.806000px;}
.y21b{bottom:528.747000px;}
.y28e{bottom:529.173000px;}
.y6d{bottom:529.360500px;}
.y35a{bottom:530.706000px;}
.y153{bottom:531.322500px;}
.y259{bottom:532.750845px;}
.y197{bottom:533.395500px;}
.y21d{bottom:533.574000px;}
.y2b1{bottom:533.844000px;}
.y6{bottom:533.974500px;}
.y2ee{bottom:535.369500px;}
.y102{bottom:536.982000px;}
.y322{bottom:544.066500px;}
.y28d{bottom:545.611500px;}
.y359{bottom:547.966500px;}
.y6c{bottom:548.190000px;}
.yd4{bottom:548.925000px;}
.y39{bottom:550.212000px;}
.y9e{bottom:550.432500px;}
.y5{bottom:551.862000px;}
.y196{bottom:552.225000px;}
.y2b0{bottom:552.673500px;}
.y2ed{bottom:552.943500px;}
.y258{bottom:554.926845px;}
.y217{bottom:557.587500px;}
.y219{bottom:558.366000px;}
.y1b0{bottom:559.091085px;}
.y321{bottom:561.325500px;}
.y152{bottom:561.750000px;}
.y28c{bottom:562.050000px;}
.y358{bottom:565.227000px;}
.y38{bottom:566.352000px;}
.y6b{bottom:567.019500px;}
.yd3{bottom:567.754500px;}
.y1af{bottom:568.720950px;}
.y9d{bottom:569.262000px;}
.y218{bottom:569.574000px;}
.y4{bottom:569.751000px;}
.y216{bottom:570.351000px;}
.y2ec{bottom:570.517500px;}
.y101{bottom:570.606000px;}
.y195{bottom:571.054500px;}
.y2af{bottom:571.503000px;}
.y257{bottom:577.201845px;}
.y37{bottom:578.151000px;}
.y28b{bottom:578.487000px;}
.y320{bottom:578.586000px;}
.y151{bottom:580.983000px;}
.y357{bottom:582.487500px;}
.y6a{bottom:585.849000px;}
.yd2{bottom:586.584000px;}
.y215{bottom:587.163000px;}
.y3{bottom:587.638500px;}
.y9c{bottom:588.091500px;}
.y100{bottom:589.435500px;}
.y194{bottom:589.884000px;}
.y2ae{bottom:590.332500px;}
.y28a{bottom:594.925500px;}
.y31f{bottom:595.846500px;}
.y36{bottom:598.630500px;}
.y256{bottom:599.476845px;}
.y356{bottom:599.746500px;}
.y150{bottom:600.216000px;}
.y214{bottom:603.975000px;}
.y69{bottom:604.678500px;}
.yd1{bottom:605.413500px;}
.y2{bottom:605.526000px;}
.y2eb{bottom:605.665500px;}
.y9b{bottom:606.921000px;}
.yff{bottom:608.265000px;}
.y193{bottom:608.713500px;}
.y2ad{bottom:609.162000px;}
.y212{bottom:609.579000px;}
.y35{bottom:610.431000px;}
.y289{bottom:611.364000px;}
.y31e{bottom:613.107000px;}
.y213{bottom:615.183000px;}
.y355{bottom:617.007000px;}
.y14f{bottom:619.449000px;}
.y255{bottom:621.751845px;}
.y2ea{bottom:623.239500px;}
.y1{bottom:623.415000px;}
.y68{bottom:623.508000px;}
.yd0{bottom:624.243000px;}
.y9a{bottom:625.750500px;}
.yfe{bottom:627.094500px;}
.y192{bottom:627.543000px;}
.y288{bottom:627.802500px;}
.y2ac{bottom:627.991500px;}
.y31d{bottom:630.367500px;}
.y34{bottom:630.909000px;}
.y211{bottom:631.995000px;}
.y354{bottom:634.267500px;}
.y210{bottom:637.599000px;}
.y14e{bottom:638.682000px;}
.y2e9{bottom:640.813500px;}
.y67{bottom:642.337500px;}
.y33{bottom:642.709500px;}
.ycf{bottom:643.072500px;}
.y254{bottom:644.026845px;}
.y287{bottom:644.241000px;}
.y99{bottom:644.580000px;}
.yfc{bottom:645.924000px;}
.y191{bottom:646.372500px;}
.y2ab{bottom:646.821000px;}
.y31c{bottom:647.628000px;}
.yfd{bottom:651.349500px;}
.y353{bottom:651.528000px;}
.y14d{bottom:657.915000px;}
.y2e8{bottom:658.387500px;}
.y20f{bottom:660.015000px;}
.y286{bottom:660.679500px;}
.y66{bottom:661.167000px;}
.y202{bottom:661.513500px;}
.yce{bottom:661.902000px;}
.y32{bottom:663.189000px;}
.y98{bottom:663.408000px;}
.yfb{bottom:664.753500px;}
.y31b{bottom:664.888500px;}
.y190{bottom:665.202000px;}
.y20e{bottom:665.619000px;}
.y2aa{bottom:665.650500px;}
.y253{bottom:666.301845px;}
.y352{bottom:668.788500px;}
.y31{bottom:674.988000px;}
.y2e7{bottom:675.961500px;}
.y285{bottom:677.118000px;}
.y14c{bottom:677.148000px;}
.y65{bottom:679.996500px;}
.ycd{bottom:680.731500px;}
.y31a{bottom:682.149000px;}
.y97{bottom:682.237500px;}
.yfa{bottom:683.583000px;}
.y18f{bottom:684.031500px;}
.y2a9{bottom:684.480000px;}
.y351{bottom:686.049000px;}
.y20d{bottom:688.035000px;}
.y252{bottom:688.576845px;}
.y2e6{bottom:693.535500px;}
.y284{bottom:693.556500px;}
.y20b{bottom:693.639000px;}
.y30{bottom:695.467500px;}
.y14b{bottom:696.381000px;}
.y64{bottom:698.826000px;}
.y20c{bottom:699.243000px;}
.y319{bottom:699.409500px;}
.ycc{bottom:699.561000px;}
.y96{bottom:701.067000px;}
.y18e{bottom:702.861000px;}
.y2a8{bottom:703.309500px;}
.yf9{bottom:706.896000px;}
.y283{bottom:709.995000px;}
.y251{bottom:710.752845px;}
.y2e5{bottom:711.109500px;}
.y2f{bottom:711.607500px;}
.y14a{bottom:715.614000px;}
.y20a{bottom:716.055000px;}
.y318{bottom:716.668500px;}
.y63{bottom:717.655500px;}
.ycb{bottom:718.390500px;}
.y95{bottom:719.896500px;}
.y350{bottom:720.570000px;}
.y209{bottom:721.659000px;}
.y18d{bottom:721.690500px;}
.y2a7{bottom:722.139000px;}
.y2e{bottom:723.406500px;}
.y282{bottom:726.433500px;}
.y13b{bottom:728.534002px;}
.y2e4{bottom:728.685000px;}
.y250{bottom:733.027845px;}
.y317{bottom:733.929000px;}
.y62{bottom:736.485000px;}
.yca{bottom:737.220000px;}
.y13a{bottom:737.778672px;}
.y34f{bottom:737.829000px;}
.y139{bottom:738.042000px;}
.y94{bottom:738.726000px;}
.yf8{bottom:740.520000px;}
.y2a6{bottom:740.968500px;}
.y281{bottom:742.870500px;}
.y2d{bottom:743.886000px;}
.y208{bottom:744.075000px;}
.y18c{bottom:745.003500px;}
.y2e3{bottom:746.259000px;}
.y206{bottom:749.679000px;}
.y316{bottom:751.189500px;}
.y34e{bottom:755.089500px;}
.y207{bottom:755.283000px;}
.y24f{bottom:755.302845px;}
.y61{bottom:755.314500px;}
.y2c{bottom:755.686500px;}
.yc9{bottom:756.049500px;}
.y93{bottom:757.555500px;}
.y280{bottom:759.309000px;}
.yf7{bottom:759.349500px;}
.y2a5{bottom:759.798000px;}
.y162{bottom:762.430819px;}
.y2e2{bottom:763.833000px;}
.y315{bottom:768.450000px;}
.y161{bottom:771.386594px;}
.y205{bottom:772.095000px;}
.y34d{bottom:772.350000px;}
.y60{bottom:774.144000px;}
.yc8{bottom:774.879000px;}
.y27f{bottom:775.747500px;}
.y2b{bottom:776.166000px;}
.y92{bottom:776.385000px;}
.y24e{bottom:777.577845px;}
.y204{bottom:777.699000px;}
.yf6{bottom:778.179000px;}
.y18b{bottom:778.627500px;}
.y2e1{bottom:781.407000px;}
.y372{bottom:785.053500px;}
.y314{bottom:785.710500px;}
.y2a{bottom:787.965000px;}
.y34c{bottom:789.610500px;}
.y27e{bottom:792.186000px;}
.y5f{bottom:792.973500px;}
.yc7{bottom:793.708500px;}
.y239{bottom:794.053876px;}
.y91{bottom:795.214500px;}
.y1db{bottom:795.338085px;}
.yf5{bottom:797.008500px;}
.y18a{bottom:797.457000px;}
.y2e0{bottom:798.981000px;}
.y203{bottom:800.115000px;}
.y371{bottom:802.312500px;}
.y313{bottom:802.971000px;}
.y29{bottom:804.105000px;}
.y1da{bottom:804.967950px;}
.y34b{bottom:806.871000px;}
.y27d{bottom:808.624500px;}
.y5e{bottom:811.803000px;}
.y238{bottom:812.266103px;}
.yc6{bottom:812.536500px;}
.y126{bottom:814.044000px;}
.yf4{bottom:815.838000px;}
.y189{bottom:816.286500px;}
.y2df{bottom:816.555000px;}
.y90{bottom:818.527500px;}
.y370{bottom:819.573000px;}
.y312{bottom:820.231500px;}
.y201{bottom:824.128500px;}
.y34a{bottom:824.131500px;}
.y28{bottom:824.584500px;}
.y27c{bottom:825.063000px;}
.y5d{bottom:830.632500px;}
.yc5{bottom:831.366000px;}
.y125{bottom:832.873500px;}
.y2de{bottom:834.129000px;}
.yf2{bottom:834.667500px;}
.y188{bottom:835.114500px;}
.y27{bottom:836.383500px;}
.y311{bottom:837.492000px;}
.y24d{bottom:838.561994px;}
.yf3{bottom:840.091500px;}
.y200{bottom:840.940500px;}
.y349{bottom:841.392000px;}
.y27b{bottom:841.501500px;}
.y1fb{bottom:848.692500px;}
.y24c{bottom:849.154845px;}
.y5c{bottom:849.462000px;}
.yc4{bottom:850.195500px;}
.y123{bottom:851.703000px;}
.y8f{bottom:852.151500px;}
.y26{bottom:852.523500px;}
.yf1{bottom:853.497000px;}
.y187{bottom:853.944000px;}
.y310{bottom:854.751000px;}
.y124{bottom:857.128500px;}
.y1ff{bottom:857.752500px;}
.y27a{bottom:857.940000px;}
.y348{bottom:858.652500px;}
.y237{bottom:864.250231px;}
.y5b{bottom:868.291500px;}
.y25{bottom:868.663500px;}
.y2dd{bottom:869.277000px;}
.y122{bottom:870.532500px;}
.y8e{bottom:870.981000px;}
.y30f{bottom:872.011500px;}
.yef{bottom:872.326500px;}
.y186{bottom:872.773500px;}
.y236{bottom:873.398603px;}
.yc3{bottom:873.508500px;}
.y279{bottom:874.378500px;}
.y1fe{bottom:874.564500px;}
.y347{bottom:875.913000px;}
.yf0{bottom:877.750500px;}
.y2dc{bottom:886.851000px;}
.y5a{bottom:887.121000px;}
.y24{bottom:889.143000px;}
.y30e{bottom:889.272000px;}
.y121{bottom:889.362000px;}
.y8d{bottom:889.810500px;}
.y278{bottom:890.817000px;}
.yee{bottom:891.156000px;}
.y1fd{bottom:891.376500px;}
.y185{bottom:891.603000px;}
.y346{bottom:893.172000px;}
.y2db{bottom:904.425000px;}
.y59{bottom:905.950500px;}
.y30d{bottom:906.532500px;}
.y277{bottom:907.254000px;}
.y1fc{bottom:908.188500px;}
.y8c{bottom:908.640000px;}
.yed{bottom:909.984000px;}
.y184{bottom:910.432500px;}
.y120{bottom:912.675000px;}
.yc2{bottom:915.832500px;}
.y2da{bottom:922.000500px;}
.y276{bottom:923.692500px;}
.y30c{bottom:923.793000px;}
.y58{bottom:924.778500px;}
.y8b{bottom:927.469500px;}
.y345{bottom:927.693000px;}
.yec{bottom:928.813500px;}
.y183{bottom:929.262000px;}
.y1fa{bottom:932.203500px;}
.yc1{bottom:932.271000px;}
.y11f{bottom:932.848500px;}
.y23{bottom:933.819000px;}
.y275{bottom:940.131000px;}
.y30b{bottom:941.053500px;}
.y57{bottom:943.608000px;}
.y344{bottom:944.953500px;}
.yeb{bottom:947.643000px;}
.y182{bottom:948.091500px;}
.y2d9{bottom:948.540000px;}
.yc0{bottom:948.709500px;}
.y8a{bottom:950.782500px;}
.y22{bottom:952.648500px;}
.y274{bottom:956.569500px;}
.y30a{bottom:958.314000px;}
.y343{bottom:962.214000px;}
.y56{bottom:962.437500px;}
.ybf{bottom:965.148000px;}
.y2d8{bottom:966.114000px;}
.y11e{bottom:966.472500px;}
.y181{bottom:966.921000px;}
.y1f9{bottom:967.072500px;}
.y89{bottom:970.956000px;}
.y21{bottom:971.478000px;}
.y273{bottom:973.008000px;}
.y309{bottom:975.574500px;}
.y342{bottom:979.474500px;}
.y55{bottom:981.267000px;}
.ybe{bottom:981.586500px;}
.y2d7{bottom:983.688000px;}
.y11d{bottom:985.302000px;}
.y180{bottom:985.750500px;}
.y1f8{bottom:986.305500px;}
.y272{bottom:989.446500px;}
.y308{bottom:992.835000px;}
.y341{bottom:996.735000px;}
.ybd{bottom:998.023500px;}
.y54{bottom:1000.096500px;}
.y2d6{bottom:1001.262000px;}
.y11c{bottom:1004.131500px;}
.y88{bottom:1004.580000px;}
.y271{bottom:1005.885000px;}
.y20{bottom:1008.240000px;}
.y307{bottom:1010.094000px;}
.y340{bottom:1013.995500px;}
.ybc{bottom:1014.462000px;}
.y2d5{bottom:1018.837500px;}
.y53{bottom:1018.926000px;}
.y270{bottom:1022.323500px;}
.y11b{bottom:1022.961000px;}
.y87{bottom:1023.409500px;}
.y306{bottom:1027.354500px;}
.ybb{bottom:1030.900500px;}
.y33f{bottom:1031.254500px;}
.y1f{bottom:1036.485000px;}
.y52{bottom:1037.755500px;}
.y11a{bottom:1041.790500px;}
.y86{bottom:1042.239000px;}
.y305{bottom:1044.615000px;}
.y2d4{bottom:1045.377000px;}
.y26f{bottom:1045.963500px;}
.yba{bottom:1047.339000px;}
.y33e{bottom:1048.515000px;}
.y51{bottom:1056.585000px;}
.y85{bottom:1061.068500px;}
.y2d3{bottom:1063.422000px;}
.yb9{bottom:1063.777500px;}
.y1e{bottom:1064.728500px;}
.y119{bottom:1065.103500px;}
.y33d{bottom:1065.775500px;}
.y304{bottom:1066.359000px;}
.y50{bottom:1075.414500px;}
.y84{bottom:1079.898000px;}
.y26e{bottom:1080.571500px;}
.y2d2{bottom:1081.467000px;}
.y33c{bottom:1083.036000px;}
.yb8{bottom:1087.419000px;}
.y1d{bottom:1092.972000px;}
.y4f{bottom:1094.244000px;}
.y83{bottom:1098.727500px;}
.y2d1{bottom:1099.512000px;}
.y26d{bottom:1099.804500px;}
.y303{bottom:1099.983000px;}
.y33b{bottom:1100.296500px;}
.y4e{bottom:1117.557000px;}
.yb7{bottom:1119.037500px;}
.y1b{bottom:1136.460000px;}
.y4d{bottom:1177.662000px;}
.h2e{height:9.756000px;}
.h9{height:26.110157px;}
.h2d{height:29.037733px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h16{height:31.526842px;}
.h31{height:32.413536px;}
.h28{height:32.504862px;}
.h32{height:32.637696px;}
.h27{height:32.787513px;}
.h17{height:33.072749px;}
.h37{height:33.203892px;}
.h36{height:33.492621px;}
.h21{height:33.553406px;}
.h20{height:33.845175px;}
.ha{height:34.813397px;}
.h1a{height:34.951465px;}
.hc{height:35.052500px;}
.h19{height:35.255391px;}
.h2b{height:36.659619px;}
.h2a{height:36.978398px;}
.h3a{height:37.447998px;}
.h39{height:37.773633px;}
.h24{height:37.842188px;}
.h23{height:38.171250px;}
.h3e{height:38.446611px;}
.h3d{height:38.780930px;}
.h43{height:38.896243px;}
.hb{height:39.165235px;}
.h1d{height:39.418945px;}
.h12{height:39.434227px;}
.h1c{height:39.761719px;}
.h29{height:40.814376px;}
.h30{height:40.906201px;}
.h14{height:41.482876px;}
.h25{height:41.539163px;}
.h38{height:41.692104px;}
.h3b{height:41.697234px;}
.hf{height:41.723369px;}
.h22{height:42.130969px;}
.hd{height:43.217759px;}
.h1e{height:43.269961px;}
.h41{height:43.360840px;}
.he{height:43.516637px;}
.h40{height:43.737891px;}
.h6{height:43.815515px;}
.h1b{height:43.886426px;}
.h3f{height:48.275068px;}
.h42{height:48.694852px;}
.h13{height:49.776344px;}
.h11{height:49.782344px;}
.h2f{height:49.991558px;}
.h4{height:50.930649px;}
.h15{height:53.222842px;}
.h10{height:53.228842px;}
.h8{height:54.541601px;}
.h33{height:55.053696px;}
.h34{height:58.167696px;}
.h7{height:77.792486px;}
.h5{height:92.253453px;}
.h18{height:309.271500px;}
.h1f{height:394.456320px;}
.h3c{height:505.442850px;}
.h2c{height:524.292000px;}
.h26{height:732.030435px;}
.h35{height:781.941675px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w7{width:10.125000px;}
.w2{width:241.345133px;}
.w3{width:542.453850px;}
.w9{width:547.562400px;}
.w5{width:553.203711px;}
.w4{width:580.607856px;}
.w8{width:638.694690px;}
.w6{width:645.057750px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x81{left:-529.077000px;}
.x83{left:-333.507000px;}
.x84{left:-301.647909px;}
.xa5{left:-208.441200px;}
.xab{left:-160.723200px;}
.xa9{left:-158.149200px;}
.xa8{left:-156.664200px;}
.xa6{left:-154.486200px;}
.xa7{left:-152.902200px;}
.xaa{left:-140.626200px;}
.x77{left:-81.005139px;}
.x6e{left:-64.309650px;}
.x72{left:-61.737264px;}
.x7b{left:-57.927750px;}
.xa4{left:-55.149210px;}
.x0{left:0.000000px;}
.xad{left:6.685800px;}
.xae{left:41.732453px;}
.x1{left:53.574000px;}
.x2{left:58.056971px;}
.x86{left:68.823000px;}
.xce{left:85.848000px;}
.x87{left:91.051500px;}
.xb5{left:95.503500px;}
.x79{left:100.874961px;}
.xb6{left:107.836500px;}
.xb4{left:109.572000px;}
.xb1{left:111.649500px;}
.xb2{left:113.391000px;}
.xb0{left:114.615000px;}
.x7a{left:123.716250px;}
.x73{left:126.009936px;}
.xaf{left:127.270500px;}
.x70{left:131.260350px;}
.x7d{left:137.642250px;}
.x8e{left:139.462500px;}
.x94{left:146.697000px;}
.x9a{left:150.205500px;}
.x92{left:152.167500px;}
.x74{left:156.596106px;}
.x71{left:163.120944px;}
.x7e{left:169.501341px;}
.x8d{left:171.804000px;}
.xa1{left:173.545500px;}
.x97{left:183.352500px;}
.x82{left:193.352850px;}
.x88{left:194.818500px;}
.x89{left:197.104500px;}
.x95{left:198.315000px;}
.x8b{left:200.394000px;}
.x9b{left:202.848000px;}
.x8c{left:205.236000px;}
.x9e{left:212.134500px;}
.x9f{left:213.412500px;}
.x8a{left:214.633500px;}
.xa0{left:217.755000px;}
.x98{left:231.277500px;}
.x6{left:248.526000px;}
.x3{left:249.591000px;}
.x4{left:268.108500px;}
.x5{left:269.914500px;}
.x3d{left:274.569000px;}
.x7{left:281.479500px;}
.x68{left:286.351500px;}
.x58{left:287.368500px;}
.x3f{left:290.998500px;}
.x3e{left:294.360000px;}
.x63{left:300.448500px;}
.xc7{left:301.696500px;}
.x40{left:306.588000px;}
.x1b{left:314.662500px;}
.xc5{left:316.306500px;}
.x1c{left:322.135500px;}
.xc6{left:331.251000px;}
.x55{left:336.945000px;}
.x1d{left:340.707000px;}
.x2b{left:344.332500px;}
.x69{left:346.456500px;}
.x1e{left:355.651500px;}
.x1f{left:359.391000px;}
.x4b{left:360.474000px;}
.x64{left:366.859500px;}
.x4c{left:369.705000px;}
.x20{left:374.335500px;}
.x35{left:378.714000px;}
.xcd{left:385.176000px;}
.x90{left:391.416000px;}
.x36{left:393.658500px;}
.x9d{left:397.843500px;}
.x9c{left:399.328500px;}
.xc9{left:405.889500px;}
.xca{left:409.551000px;}
.xbf{left:411.310500px;}
.x2f{left:413.271000px;}
.x62{left:416.400000px;}
.x27{left:422.028000px;}
.xcb{left:424.495500px;}
.xc0{left:426.253500px;}
.x30{left:428.214000px;}
.x31{left:432.025500px;}
.x4d{left:433.737000px;}
.x28{left:436.972500px;}
.x5e{left:438.139500px;}
.x5f{left:442.645500px;}
.xa2{left:445.710000px;}
.x32{left:446.968500px;}
.x4e{left:448.680000px;}
.x2e{left:452.728500px;}
.xa{left:453.736500px;}
.xb7{left:457.593000px;}
.xb{left:461.208000px;}
.xc1{left:467.574000px;}
.x60{left:468.976500px;}
.xb8{left:472.537500px;}
.xa3{left:474.679500px;}
.x61{left:484.743000px;}
.x96{left:491.233500px;}
.x4f{left:497.877000px;}
.x49{left:500.388000px;}
.x29{left:507.534000px;}
.x50{left:510.168000px;}
.xbb{left:513.429000px;}
.x4a{left:516.420000px;}
.xbc{left:520.752000px;}
.x5c{left:525.885000px;}
.x51{left:530.719500px;}
.x56{left:531.804000px;}
.x99{left:533.077500px;}
.x80{left:535.987500px;}
.x52{left:537.525000px;}
.x57{left:538.611000px;}
.x12{left:540.087000px;}
.xac{left:546.235635px;}
.x13{left:547.560000px;}
.x85{left:549.528000px;}
.xb9{left:550.827000px;}
.xbd{left:554.301000px;}
.x2a{left:556.947000px;}
.x78{left:561.224822px;}
.x33{left:566.007000px;}
.x93{left:570.271500px;}
.x8f{left:572.518500px;}
.x34{left:575.907000px;}
.xba{left:584.464500px;}
.xcc{left:588.730500px;}
.x91{left:590.199000px;}
.x59{left:597.633000px;}
.xc8{left:600.072000px;}
.x8{left:603.349500px;}
.xc3{left:605.923500px;}
.x9{left:610.821000px;}
.x5a{left:612.577500px;}
.x75{left:617.545500px;}
.xe{left:621.210000px;}
.x10{left:624.807000px;}
.xf{left:628.681500px;}
.x11{left:632.280000px;}
.x76{left:636.250500px;}
.x5b{left:643.186500px;}
.x47{left:645.121500px;}
.x6f{left:651.010200px;}
.x48{left:662.436000px;}
.x7c{left:664.502100px;}
.x3b{left:671.580000px;}
.x46{left:674.167500px;}
.x6a{left:676.696500px;}
.x3c{left:680.251500px;}
.x41{left:683.140500px;}
.x23{left:690.708000px;}
.x6b{left:692.709000px;}
.x65{left:695.334000px;}
.x42{left:698.085000px;}
.x43{left:701.745000px;}
.x66{left:702.925500px;}
.x24{left:705.651000px;}
.x6c{left:707.533500px;}
.x44{left:716.689500px;}
.x67{left:717.870000px;}
.x6d{left:723.358500px;}
.x21{left:737.112000px;}
.xb3{left:739.069500px;}
.xbe{left:745.840500px;}
.x25{left:747.817500px;}
.xc{left:750.673500px;}
.x22{left:752.056500px;}
.xd{left:758.145000px;}
.x37{left:761.646000px;}
.x26{left:762.762000px;}
.xc4{left:764.950500px;}
.xc2{left:774.310500px;}
.x38{left:776.590500px;}
.x39{left:780.400500px;}
.x7f{left:785.799000px;}
.x18{left:787.659000px;}
.x53{left:789.547500px;}
.x19{left:795.132000px;}
.x45{left:797.970000px;}
.x3a{left:799.156500px;}
.x1a{left:801.691500px;}
.x54{left:807.004500px;}
.x2c{left:810.238500px;}
.x14{left:813.886500px;}
.x2d{left:817.785000px;}
.x5d{left:819.357000px;}
.x15{left:821.359500px;}
.x16{left:825.169500px;}
.x17{left:832.642500px;}
@media print{
.v2{vertical-align:-15.434667pt;}
.v3{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:14.464000pt;}
.v4{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v6{vertical-align:22.693333pt;}
.ls90{letter-spacing:-0.321600pt;}
.ls8a{letter-spacing:-0.177600pt;}
.ls96{letter-spacing:-0.165664pt;}
.ls73{letter-spacing:-0.160704pt;}
.lsbe{letter-spacing:-0.152838pt;}
.lsc3{letter-spacing:-0.146960pt;}
.lsc1{letter-spacing:-0.141082pt;}
.lsad{letter-spacing:-0.132240pt;}
.lsc4{letter-spacing:-0.111690pt;}
.ls38{letter-spacing:-0.106880pt;}
.lscc{letter-spacing:-0.105811pt;}
.ls58{letter-spacing:-0.102605pt;}
.lsc9{letter-spacing:-0.099933pt;}
.ls88{letter-spacing:-0.096000pt;}
.lsc2{letter-spacing:-0.094054pt;}
.lsbf{letter-spacing:-0.088176pt;}
.lsc7{letter-spacing:-0.082298pt;}
.lsd5{letter-spacing:-0.079200pt;}
.lscd{letter-spacing:-0.076419pt;}
.ls37{letter-spacing:-0.074816pt;}
.ls57{letter-spacing:-0.071823pt;}
.lsd7{letter-spacing:-0.070541pt;}
.ls39{letter-spacing:-0.069472pt;}
.ls34{letter-spacing:-0.067200pt;}
.ls59{letter-spacing:-0.066693pt;}
.lsca{letter-spacing:-0.064662pt;}
.ls54{letter-spacing:-0.064512pt;}
.ls93{letter-spacing:-0.064128pt;}
.ls8b{letter-spacing:-0.062400pt;}
.lsc5{letter-spacing:-0.058784pt;}
.ls92{letter-spacing:-0.053440pt;}
.lsc6{letter-spacing:-0.052906pt;}
.ls89{letter-spacing:-0.052800pt;}
.ls99{letter-spacing:-0.048096pt;}
.lsc8{letter-spacing:-0.047027pt;}
.ls8e{letter-spacing:-0.043200pt;}
.ls91{letter-spacing:-0.042752pt;}
.lsc0{letter-spacing:-0.041149pt;}
.ls32{letter-spacing:-0.038400pt;}
.ls52{letter-spacing:-0.036864pt;}
.lsa9{letter-spacing:-0.036480pt;}
.lsd6{letter-spacing:-0.035270pt;}
.ls36{letter-spacing:-0.033600pt;}
.ls56{letter-spacing:-0.032256pt;}
.ls76{letter-spacing:-0.031248pt;}
.lsa7{letter-spacing:-0.030461pt;}
.lsd9{letter-spacing:-0.029392pt;}
.ls8c{letter-spacing:-0.028800pt;}
.lsd0{letter-spacing:-0.023514pt;}
.ls77{letter-spacing:-0.022320pt;}
.lsa6{letter-spacing:-0.020307pt;}
.ls31{letter-spacing:-0.019200pt;}
.ls51{letter-spacing:-0.018432pt;}
.lsac{letter-spacing:-0.018240pt;}
.lsce{letter-spacing:-0.017635pt;}
.ls94{letter-spacing:-0.016032pt;}
.ls33{letter-spacing:-0.014400pt;}
.ls53{letter-spacing:-0.013824pt;}
.lsab{letter-spacing:-0.013680pt;}
.ls74{letter-spacing:-0.013392pt;}
.lsd2{letter-spacing:-0.011757pt;}
.ls98{letter-spacing:-0.010688pt;}
.lsd4{letter-spacing:-0.010560pt;}
.ls8f{letter-spacing:-0.009600pt;}
.lsa8{letter-spacing:-0.009120pt;}
.ls75{letter-spacing:-0.008928pt;}
.lsd8{letter-spacing:-0.005878pt;}
.ls95{letter-spacing:-0.005344pt;}
.ls35{letter-spacing:-0.004800pt;}
.ls55{letter-spacing:-0.004608pt;}
.lsaa{letter-spacing:-0.004560pt;}
.ls72{letter-spacing:-0.004464pt;}
.ls10{letter-spacing:0.000000pt;}
.ls6f{letter-spacing:0.000264pt;}
.lse6{letter-spacing:0.000711pt;}
.lse5{letter-spacing:0.000921pt;}
.lsde{letter-spacing:0.001026pt;}
.ls18{letter-spacing:0.001338pt;}
.lsb{letter-spacing:0.001718pt;}
.lsa{letter-spacing:0.001735pt;}
.ls4f{letter-spacing:0.001786pt;}
.ls85{letter-spacing:0.002008pt;}
.lsdb{letter-spacing:0.002262pt;}
.lse2{letter-spacing:0.002327pt;}
.ls4{letter-spacing:0.002422pt;}
.lse8{letter-spacing:0.002525pt;}
.lse3{letter-spacing:0.002553pt;}
.ls6d{letter-spacing:0.003138pt;}
.ls6e{letter-spacing:0.003261pt;}
.ls1{letter-spacing:0.003733pt;}
.ls70{letter-spacing:0.004058pt;}
.ls5{letter-spacing:0.004237pt;}
.ls87{letter-spacing:0.004267pt;}
.ls5e{letter-spacing:0.004464pt;}
.ls42{letter-spacing:0.004608pt;}
.ls24{letter-spacing:0.004800pt;}
.ls4e{letter-spacing:0.005130pt;}
.ls30{letter-spacing:0.005344pt;}
.lsbd{letter-spacing:0.005878pt;}
.ls61{letter-spacing:0.008928pt;}
.ls3f{letter-spacing:0.009216pt;}
.ls21{letter-spacing:0.009600pt;}
.ls80{letter-spacing:0.010688pt;}
.lsb4{letter-spacing:0.011757pt;}
.ls62{letter-spacing:0.013392pt;}
.lsa0{letter-spacing:0.013680pt;}
.ls7a{letter-spacing:0.014400pt;}
.lsb6{letter-spacing:0.015840pt;}
.ls84{letter-spacing:0.016032pt;}
.lsbc{letter-spacing:0.017635pt;}
.ls66{letter-spacing:0.017856pt;}
.lsa1{letter-spacing:0.018240pt;}
.ls40{letter-spacing:0.018432pt;}
.ls22{letter-spacing:0.019200pt;}
.ls81{letter-spacing:0.021376pt;}
.ls5f{letter-spacing:0.022320pt;}
.ls9e{letter-spacing:0.022800pt;}
.ls44{letter-spacing:0.023040pt;}
.lsd1{letter-spacing:0.023514pt;}
.ls26{letter-spacing:0.024000pt;}
.ls4c{letter-spacing:0.025651pt;}
.lsb5{letter-spacing:0.026400pt;}
.ls2e{letter-spacing:0.026720pt;}
.ls65{letter-spacing:0.026784pt;}
.ls43{letter-spacing:0.027648pt;}
.ls5a{letter-spacing:0.027707pt;}
.ls9a{letter-spacing:0.028302pt;}
.ls3a{letter-spacing:0.028600pt;}
.ls25{letter-spacing:0.028800pt;}
.lsba{letter-spacing:0.029392pt;}
.ls1c{letter-spacing:0.029792pt;}
.ls69{letter-spacing:0.031248pt;}
.lsb9{letter-spacing:0.031680pt;}
.lsa2{letter-spacing:0.031920pt;}
.ls45{letter-spacing:0.032256pt;}
.lsaf{letter-spacing:0.032771pt;}
.ls27{letter-spacing:0.033600pt;}
.ls5c{letter-spacing:0.035623pt;}
.ls9c{letter-spacing:0.036389pt;}
.ls3c{letter-spacing:0.036772pt;}
.ls48{letter-spacing:0.036864pt;}
.ls1e{letter-spacing:0.038304pt;}
.ls2a{letter-spacing:0.038400pt;}
.ls60{letter-spacing:0.040176pt;}
.lsa4{letter-spacing:0.041040pt;}
.lsb1{letter-spacing:0.042134pt;}
.lsb8{letter-spacing:0.042240pt;}
.ls7f{letter-spacing:0.042752pt;}
.ls68{letter-spacing:0.044640pt;}
.lsa3{letter-spacing:0.045600pt;}
.lsbb{letter-spacing:0.047027pt;}
.ls8d{letter-spacing:0.048000pt;}
.ls97{letter-spacing:0.048096pt;}
.ls46{letter-spacing:0.050688pt;}
.ls28{letter-spacing:0.052800pt;}
.lsb3{letter-spacing:0.052906pt;}
.ls67{letter-spacing:0.053568pt;}
.ls47{letter-spacing:0.055296pt;}
.ls4d{letter-spacing:0.056433pt;}
.ls29{letter-spacing:0.057600pt;}
.ls2f{letter-spacing:0.058784pt;}
.ls49{letter-spacing:0.059904pt;}
.ls2b{letter-spacing:0.062400pt;}
.ls3e{letter-spacing:0.064512pt;}
.ls20{letter-spacing:0.067200pt;}
.ls7e{letter-spacing:0.069472pt;}
.ls6a{letter-spacing:0.075888pt;}
.lscb{letter-spacing:0.076419pt;}
.ls9f{letter-spacing:0.077520pt;}
.ls41{letter-spacing:0.078336pt;}
.ls23{letter-spacing:0.081600pt;}
.lscf{letter-spacing:0.088176pt;}
.ls63{letter-spacing:0.089280pt;}
.lsb7{letter-spacing:0.089760pt;}
.ls83{letter-spacing:0.090848pt;}
.ls79{letter-spacing:0.096000pt;}
.ls6c{letter-spacing:0.102672pt;}
.ls4a{letter-spacing:0.105984pt;}
.ls2c{letter-spacing:0.110400pt;}
.ls5d{letter-spacing:0.138533pt;}
.lsd3{letter-spacing:0.141082pt;}
.ls3d{letter-spacing:0.143002pt;}
.ls9d{letter-spacing:0.145555pt;}
.ls64{letter-spacing:0.147312pt;}
.ls1f{letter-spacing:0.148960pt;}
.ls5b{letter-spacing:0.150407pt;}
.ls4b{letter-spacing:0.152064pt;}
.ls78{letter-spacing:0.153216pt;}
.ls9b{letter-spacing:0.153642pt;}
.ls3b{letter-spacing:0.155259pt;}
.ls2d{letter-spacing:0.158400pt;}
.ls82{letter-spacing:0.160320pt;}
.ls1d{letter-spacing:0.161728pt;}
.lsb2{letter-spacing:0.168538pt;}
.lsb0{letter-spacing:0.177901pt;}
.ls6b{letter-spacing:0.343728pt;}
.ls7d{letter-spacing:0.398400pt;}
.ls19{letter-spacing:0.482502pt;}
.ls11{letter-spacing:0.637762pt;}
.ls7b{letter-spacing:1.440000pt;}
.ls7c{letter-spacing:2.078400pt;}
.ls7{letter-spacing:2.657067pt;}
.ls3{letter-spacing:2.665203pt;}
.ls12{letter-spacing:3.158400pt;}
.ls16{letter-spacing:3.163733pt;}
.ls71{letter-spacing:4.316688pt;}
.ls0{letter-spacing:9.298933pt;}
.lsc{letter-spacing:10.625735pt;}
.lsf{letter-spacing:10.626533pt;}
.ls9{letter-spacing:10.631051pt;}
.ls14{letter-spacing:11.823557pt;}
.lsdf{letter-spacing:11.831150pt;}
.lseb{letter-spacing:11.849420pt;}
.ls86{letter-spacing:11.906593pt;}
.lse0{letter-spacing:11.954133pt;}
.ls50{letter-spacing:11.956267pt;}
.lse4{letter-spacing:11.956888pt;}
.lse1{letter-spacing:11.959467pt;}
.lsea{letter-spacing:11.988631pt;}
.lsa5{letter-spacing:12.070745pt;}
.lsed{letter-spacing:12.071574pt;}
.lsec{letter-spacing:12.101768pt;}
.lse7{letter-spacing:12.246161pt;}
.lsae{letter-spacing:13.070931pt;}
.lsdd{letter-spacing:13.152588pt;}
.ls1b{letter-spacing:13.283733pt;}
.ls2{letter-spacing:13.284541pt;}
.ls15{letter-spacing:13.424994pt;}
.lse9{letter-spacing:13.613427pt;}
.ls13{letter-spacing:14.613867pt;}
.lsda{letter-spacing:15.515987pt;}
.lsdc{letter-spacing:16.781346pt;}
.ls1a{letter-spacing:17.391237pt;}
.ls17{letter-spacing:18.013459pt;}
.ls6{letter-spacing:51.035733pt;}
.ls8{letter-spacing:55.787733pt;}
.lse{letter-spacing:55.926400pt;}
.lsd{letter-spacing:57.174803pt;}
.wsf8{word-spacing:-53.440000pt;}
.ws147{word-spacing:-45.600000pt;}
.ws12{word-spacing:-13.283467pt;}
.wse{word-spacing:-12.760670pt;}
.ws76{word-spacing:-12.024000pt;}
.ws75{word-spacing:-12.000000pt;}
.ws9f{word-spacing:-11.955200pt;}
.ws15f{word-spacing:-11.881901pt;}
.ws160{word-spacing:-11.704000pt;}
.ws9b{word-spacing:-11.543040pt;}
.ws9a{word-spacing:-11.520000pt;}
.ws146{word-spacing:-11.400000pt;}
.wsc8{word-spacing:-11.160000pt;}
.ws73{word-spacing:-10.801728pt;}
.ws74{word-spacing:-10.640000pt;}
.ws14{word-spacing:-10.626800pt;}
.ws98{word-spacing:-10.369659pt;}
.ws143{word-spacing:-10.261642pt;}
.ws99{word-spacing:-10.214400pt;}
.ws144{word-spacing:-10.108000pt;}
.wsd{word-spacing:-10.095467pt;}
.wsc6{word-spacing:-10.045607pt;}
.wsc7{word-spacing:-9.895200pt;}
.ws2{word-spacing:-9.298400pt;}
.wsdd{word-spacing:-2.856960pt;}
.ws128{word-spacing:-2.757504pt;}
.wsdc{word-spacing:-2.562336pt;}
.wse9{word-spacing:-2.535552pt;}
.wsde{word-spacing:-2.517696pt;}
.ws1dd{word-spacing:-2.247578pt;}
.ws51{word-spacing:-2.199757pt;}
.ws186{word-spacing:-2.080954pt;}
.wsd9{word-spacing:-1.986480pt;}
.wsda{word-spacing:-1.977552pt;}
.ws6b{word-spacing:-1.965953pt;}
.ws50{word-spacing:-1.912819pt;}
.wsdb{word-spacing:-1.772208pt;}
.ws4f{word-spacing:-1.753418pt;}
.ws46{word-spacing:-1.647150pt;}
.wse0{word-spacing:-1.638288pt;}
.wsdf{word-spacing:-1.620432pt;}
.ws3c{word-spacing:-1.540882pt;}
.ws96{word-spacing:-1.523040pt;}
.wsc4{word-spacing:-1.462118pt;}
.ws97{word-spacing:-1.448224pt;}
.wsa0{word-spacing:-1.434624pt;}
.ws56{word-spacing:-1.434614pt;}
.wsc5{word-spacing:-1.390295pt;}
.ws1ac{word-spacing:-1.291162pt;}
.ws36{word-spacing:-1.275213pt;}
.ws19e{word-spacing:-1.222079pt;}
.ws1a0{word-spacing:-1.168945pt;}
.ws192{word-spacing:-1.062677pt;}
.ws66{word-spacing:-0.956410pt;}
.ws135{word-spacing:-0.929856pt;}
.ws19c{word-spacing:-0.903276pt;}
.ws103{word-spacing:-0.859200pt;}
.ws104{word-spacing:-0.811200pt;}
.ws49{word-spacing:-0.797008pt;}
.ws102{word-spacing:-0.782400pt;}
.ws1aa{word-spacing:-0.765133pt;}
.ws190{word-spacing:-0.743874pt;}
.ws1c7{word-spacing:-0.717312pt;}
.ws17c{word-spacing:-0.646624pt;}
.ws1ba{word-spacing:-0.621670pt;}
.ws70{word-spacing:-0.584473pt;}
.ws136{word-spacing:-0.545088pt;}
.ws19d{word-spacing:-0.531339pt;}
.ws1a2{word-spacing:-0.478205pt;}
.wsd1{word-spacing:-0.468720pt;}
.wsd0{word-spacing:-0.450864pt;}
.ws191{word-spacing:-0.425071pt;}
.wsf2{word-spacing:-0.371937pt;}
.ws26{word-spacing:-0.318803pt;}
.ws126{word-spacing:-0.309952pt;}
.wsc9{word-spacing:-0.286925pt;}
.ws163{word-spacing:-0.266851pt;}
.ws42{word-spacing:-0.265669pt;}
.ws17a{word-spacing:-0.264528pt;}
.ws179{word-spacing:-0.252771pt;}
.ws95{word-spacing:-0.245824pt;}
.ws78{word-spacing:-0.242592pt;}
.ws127{word-spacing:-0.240480pt;}
.ws1a{word-spacing:-0.239104pt;}
.wsc3{word-spacing:-0.235991pt;}
.wsa6{word-spacing:-0.232888pt;}
.ws14a{word-spacing:-0.230462pt;}
.ws177{word-spacing:-0.229258pt;}
.wscd{word-spacing:-0.225611pt;}
.ws8f{word-spacing:-0.220800pt;}
.ws3b{word-spacing:-0.212535pt;}
.wsbd{word-spacing:-0.211968pt;}
.ws17b{word-spacing:-0.193987pt;}
.ws1a4{word-spacing:-0.191283pt;}
.ws150{word-spacing:-0.173280pt;}
.ws91{word-spacing:-0.165664pt;}
.ws38{word-spacing:-0.159402pt;}
.wsbf{word-spacing:-0.159037pt;}
.ws14f{word-spacing:-0.150480pt;}
.ws9d{word-spacing:-0.143462pt;}
.ws151{word-spacing:-0.141360pt;}
.ws94{word-spacing:-0.133600pt;}
.ws164{word-spacing:-0.131085pt;}
.wsc2{word-spacing:-0.128256pt;}
.ws79{word-spacing:-0.119168pt;}
.wsa7{word-spacing:-0.114401pt;}
.ws14b{word-spacing:-0.113210pt;}
.wsce{word-spacing:-0.110826pt;}
.ws32{word-spacing:-0.106268pt;}
.wsa1{word-spacing:-0.095642pt;}
.ws134{word-spacing:-0.074816pt;}
.ws161{word-spacing:-0.058784pt;}
.ws77{word-spacing:-0.053440pt;}
.wsb{word-spacing:-0.053134pt;}
.ws9c{word-spacing:-0.051302pt;}
.wsf7{word-spacing:-0.048000pt;}
.ws1b{word-spacing:-0.047821pt;}
.ws145{word-spacing:-0.045600pt;}
.ws15{word-spacing:-0.042507pt;}
.ws3{word-spacing:-0.037194pt;}
.ws100{word-spacing:-0.011068pt;}
.wsf{word-spacing:-0.003948pt;}
.ws10{word-spacing:-0.001007pt;}
.ws1{word-spacing:0.000000pt;}
.wsc{word-spacing:0.003801pt;}
.wscc{word-spacing:0.047821pt;}
.ws39{word-spacing:0.053134pt;}
.ws15b{word-spacing:0.072960pt;}
.ws137{word-spacing:0.085504pt;}
.ws1e{word-spacing:0.095642pt;}
.wsbc{word-spacing:0.096768pt;}
.ws8e{word-spacing:0.100800pt;}
.wsb7{word-spacing:0.101376pt;}
.ws89{word-spacing:0.105600pt;}
.ws16d{word-spacing:0.105811pt;}
.ws45{word-spacing:0.106268pt;}
.ws14e{word-spacing:0.106613pt;}
.ws15e{word-spacing:0.109440pt;}
.ws16e{word-spacing:0.111690pt;}
.wsb6{word-spacing:0.119808pt;}
.ws176{word-spacing:0.121440pt;}
.ws88{word-spacing:0.124800pt;}
.ws138{word-spacing:0.128256pt;}
.ws125{word-spacing:0.129600pt;}
.ws16a{word-spacing:0.135203pt;}
.ws174{word-spacing:0.142560pt;}
.ws17{word-spacing:0.143462pt;}
.ws168{word-spacing:0.146960pt;}
.ws40{word-spacing:0.159402pt;}
.ws15d{word-spacing:0.159600pt;}
.ws124{word-spacing:0.168000pt;}
.ws169{word-spacing:0.170474pt;}
.ws166{word-spacing:0.176352pt;}
.wsbe{word-spacing:0.184320pt;}
.ws16b{word-spacing:0.188109pt;}
.ws1f{word-spacing:0.191283pt;}
.ws90{word-spacing:0.192000pt;}
.ws16c{word-spacing:0.193987pt;}
.ws13c{word-spacing:0.199253pt;}
.ws31{word-spacing:0.212535pt;}
.wsb5{word-spacing:0.216576pt;}
.ws87{word-spacing:0.225600pt;}
.ws167{word-spacing:0.235136pt;}
.ws18{word-spacing:0.239104pt;}
.ws175{word-spacing:0.253440pt;}
.ws35{word-spacing:0.265669pt;}
.ws15c{word-spacing:0.282720pt;}
.ws1d{word-spacing:0.286925pt;}
.ws2d{word-spacing:0.318803pt;}
.ws55{word-spacing:0.371937pt;}
.ws1d6{word-spacing:0.382566pt;}
.ws1a1{word-spacing:0.425071pt;}
.ws9e{word-spacing:0.478208pt;}
.ws4d{word-spacing:0.484000pt;}
.ws10e{word-spacing:0.484800pt;}
.ws60{word-spacing:0.505333pt;}
.ws19a{word-spacing:0.531339pt;}
.ws2e{word-spacing:0.584473pt;}
.wsa4{word-spacing:0.637606pt;}
.ws1ad{word-spacing:0.669491pt;}
.ws34{word-spacing:0.690740pt;}
.ws1a6{word-spacing:0.717312pt;}
.ws158{word-spacing:0.729600pt;}
.wsaf{word-spacing:0.741888pt;}
.ws1a3{word-spacing:0.743874pt;}
.ws1db{word-spacing:0.765133pt;}
.ws81{word-spacing:0.772800pt;}
.wsb0{word-spacing:0.783360pt;}
.ws10c{word-spacing:0.787200pt;}
.ws82{word-spacing:0.816000pt;}
.ws18f{word-spacing:0.850142pt;}
.ws10d{word-spacing:0.854400pt;}
.ws41{word-spacing:0.903276pt;}
.wsa3{word-spacing:1.004237pt;}
.wsd7{word-spacing:1.022256pt;}
.wsd8{word-spacing:1.044576pt;}
.ws1a7{word-spacing:1.052058pt;}
.ws37{word-spacing:1.062677pt;}
.ws17d{word-spacing:1.099261pt;}
.ws43{word-spacing:1.115811pt;}
.ws72{word-spacing:1.168945pt;}
.ws171{word-spacing:1.188000pt;}
.ws1b8{word-spacing:1.195520pt;}
.ws16f{word-spacing:1.203840pt;}
.ws170{word-spacing:1.214400pt;}
.ws69{word-spacing:1.222079pt;}
.ws9{word-spacing:1.227389pt;}
.ws17e{word-spacing:1.228586pt;}
.ws13a{word-spacing:1.275213pt;}
.ws1e4{word-spacing:1.291162pt;}
.wsd5{word-spacing:1.312416pt;}
.wsd4{word-spacing:1.325808pt;}
.ws139{word-spacing:1.328347pt;}
.ws1af{word-spacing:1.338982pt;}
.ws157{word-spacing:1.349760pt;}
.ws4c{word-spacing:1.381481pt;}
.ws115{word-spacing:1.382400pt;}
.ws156{word-spacing:1.386240pt;}
.wsca{word-spacing:1.386803pt;}
.wsf3{word-spacing:1.434614pt;}
.ws114{word-spacing:1.454400pt;}
.ws117{word-spacing:1.502400pt;}
.ws4a{word-spacing:1.540882pt;}
.wse8{word-spacing:1.615968pt;}
.ws116{word-spacing:1.617600pt;}
.wse7{word-spacing:1.624896pt;}
.ws1ee{word-spacing:1.625907pt;}
.ws19f{word-spacing:1.647150pt;}
.ws1e6{word-spacing:1.673728pt;}
.ws153{word-spacing:1.678080pt;}
.ws2c{word-spacing:1.700284pt;}
.ws152{word-spacing:1.710000pt;}
.ws1ae{word-spacing:1.721549pt;}
.ws193{word-spacing:1.753418pt;}
.ws1c{word-spacing:1.769370pt;}
.ws5c{word-spacing:1.806551pt;}
.ws162{word-spacing:1.817190pt;}
.ws5b{word-spacing:1.859685pt;}
.ws20{word-spacing:1.865011pt;}
.ws18a{word-spacing:1.912832pt;}
.ws1b5{word-spacing:1.960653pt;}
.wsb2{word-spacing:1.986048pt;}
.wsb1{word-spacing:1.990656pt;}
.ws196{word-spacing:2.019087pt;}
.wsff{word-spacing:2.056294pt;}
.ws84{word-spacing:2.068800pt;}
.ws141{word-spacing:2.072221pt;}
.ws83{word-spacing:2.073600pt;}
.ws122{word-spacing:2.121600pt;}
.ws13f{word-spacing:2.125355pt;}
.ws123{word-spacing:2.140800pt;}
.ws2b{word-spacing:2.178489pt;}
.ws1bb{word-spacing:2.199757pt;}
.ws13e{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws1ce{word-spacing:2.247578pt;}
.ws19{word-spacing:2.295398pt;}
.ws130{word-spacing:2.313952pt;}
.ws12f{word-spacing:2.324640pt;}
.ws4e{word-spacing:2.337890pt;}
.ws1b2{word-spacing:2.343219pt;}
.ws11e{word-spacing:2.347200pt;}
.ws11f{word-spacing:2.361600pt;}
.ws129{word-spacing:2.372736pt;}
.ws12a{word-spacing:2.383424pt;}
.ws2f{word-spacing:2.391024pt;}
.wsf1{word-spacing:2.444158pt;}
.ws5d{word-spacing:2.497292pt;}
.wsfd{word-spacing:2.534502pt;}
.ws4b{word-spacing:2.603559pt;}
.ws187{word-spacing:2.621766pt;}
.wsfb{word-spacing:2.630144pt;}
.ws194{word-spacing:2.656693pt;}
.ws68{word-spacing:2.709827pt;}
.ws58{word-spacing:2.762961pt;}
.ws57{word-spacing:2.816095pt;}
.wse2{word-spacing:2.821248pt;}
.wse1{word-spacing:2.830176pt;}
.ws14d{word-spacing:2.832854pt;}
.wse3{word-spacing:2.834640pt;}
.ws1b9{word-spacing:2.836172pt;}
.wse4{word-spacing:2.856960pt;}
.ws1c5{word-spacing:2.861227pt;}
.ws1e0{word-spacing:2.863147pt;}
.ws1d2{word-spacing:2.864452pt;}
.ws1ef{word-spacing:2.864640pt;}
.ws1d9{word-spacing:2.865050pt;}
.ws1be{word-spacing:2.869248pt;}
.wsec{word-spacing:2.922363pt;}
.ws2a{word-spacing:2.975497pt;}
.ws119{word-spacing:3.000000pt;}
.ws118{word-spacing:3.024000pt;}
.wsa2{word-spacing:3.060531pt;}
.ws11a{word-spacing:3.067200pt;}
.ws33{word-spacing:3.081764pt;}
.ws16{word-spacing:3.082780pt;}
.wsfc{word-spacing:3.108352pt;}
.wse5{word-spacing:3.111408pt;}
.ws1a9{word-spacing:3.113159pt;}
.ws195{word-spacing:3.134898pt;}
.wse6{word-spacing:3.147120pt;}
.wsfa{word-spacing:3.156173pt;}
.ws24{word-spacing:3.188032pt;}
.wsf9{word-spacing:3.203994pt;}
.ws178{word-spacing:3.227242pt;}
.ws62{word-spacing:3.241166pt;}
.ws11b{word-spacing:3.307200pt;}
.ws11c{word-spacing:3.312000pt;}
.ws11d{word-spacing:3.360000pt;}
.ws25{word-spacing:3.400567pt;}
.wsc1{word-spacing:3.401349pt;}
.wsc0{word-spacing:3.432131pt;}
.ws1a8{word-spacing:3.443098pt;}
.ws63{word-spacing:3.453701pt;}
.wsab{word-spacing:3.469824pt;}
.ws3a{word-spacing:3.506835pt;}
.ws1b1{word-spacing:3.538739pt;}
.ws93{word-spacing:3.543072pt;}
.wsa9{word-spacing:3.552768pt;}
.ws28{word-spacing:3.559969pt;}
.wsaa{word-spacing:3.571200pt;}
.ws92{word-spacing:3.575136pt;}
.ws65{word-spacing:3.613103pt;}
.ws7d{word-spacing:3.614400pt;}
.wsfe{word-spacing:3.634381pt;}
.wsa5{word-spacing:3.666237pt;}
.ws1b6{word-spacing:3.682202pt;}
.ws7b{word-spacing:3.700800pt;}
.wsed{word-spacing:3.719371pt;}
.ws7c{word-spacing:3.720000pt;}
.ws1a5{word-spacing:3.777843pt;}
.wsad{word-spacing:3.820032pt;}
.wsf5{word-spacing:3.825638pt;}
.wsac{word-spacing:3.829248pt;}
.wsae{word-spacing:3.833856pt;}
.ws5f{word-spacing:3.878772pt;}
.ws47{word-spacing:3.931906pt;}
.ws182{word-spacing:3.944406pt;}
.ws183{word-spacing:3.967920pt;}
.ws7f{word-spacing:3.979200pt;}
.ws27{word-spacing:3.985040pt;}
.ws7e{word-spacing:3.988800pt;}
.ws80{word-spacing:3.993600pt;}
.ws1cd{word-spacing:4.016947pt;}
.ws6c{word-spacing:4.038174pt;}
.ws6d{word-spacing:4.091308pt;}
.wsba{word-spacing:4.110336pt;}
.wscb{word-spacing:4.112589pt;}
.wseb{word-spacing:4.144442pt;}
.wsbb{word-spacing:4.151808pt;}
.ws1ab{word-spacing:4.160410pt;}
.ws5a{word-spacing:4.197575pt;}
.ws1b0{word-spacing:4.208230pt;}
.ws59{word-spacing:4.250709pt;}
.ws1c0{word-spacing:4.256051pt;}
.ws8c{word-spacing:4.281600pt;}
.ws121{word-spacing:4.286400pt;}
.ws109{word-spacing:4.291200pt;}
.wsd6{word-spacing:4.298832pt;}
.ws120{word-spacing:4.300800pt;}
.ws67{word-spacing:4.303843pt;}
.ws8d{word-spacing:4.324800pt;}
.wsf6{word-spacing:4.356977pt;}
.ws64{word-spacing:4.463245pt;}
.ws12d{word-spacing:4.537056pt;}
.ws29{word-spacing:4.569513pt;}
.wsd2{word-spacing:4.571136pt;}
.ws12e{word-spacing:4.574464pt;}
.wsd3{word-spacing:4.602384pt;}
.ws10b{word-spacing:4.641600pt;}
.ws17f{word-spacing:4.649814pt;}
.ws180{word-spacing:4.667450pt;}
.ws13b{word-spacing:4.686438pt;}
.ws5e{word-spacing:4.728914pt;}
.ws10a{word-spacing:4.737600pt;}
.ws3f{word-spacing:4.782048pt;}
.ws1f0{word-spacing:4.782080pt;}
.ws1b7{word-spacing:4.829901pt;}
.ws7{word-spacing:4.872362pt;}
.ws71{word-spacing:4.941450pt;}
.wsb9{word-spacing:5.013504pt;}
.ws19b{word-spacing:5.047717pt;}
.wsb8{word-spacing:5.059584pt;}
.ws12b{word-spacing:5.189024pt;}
.ws3e{word-spacing:5.207119pt;}
.ws12c{word-spacing:5.215744pt;}
.ws8b{word-spacing:5.222400pt;}
.ws113{word-spacing:5.260800pt;}
.ws8a{word-spacing:5.270400pt;}
.ws112{word-spacing:5.275200pt;}
.ws159{word-spacing:5.275920pt;}
.ws15a{word-spacing:5.307840pt;}
.ws61{word-spacing:5.313387pt;}
.ws181{word-spacing:5.337587pt;}
.ws148{word-spacing:5.355930pt;}
.ws184{word-spacing:5.361101pt;}
.wsf0{word-spacing:5.366521pt;}
.ws185{word-spacing:5.396371pt;}
.ws1b4{word-spacing:5.595034pt;}
.wsee{word-spacing:5.632190pt;}
.wsf4{word-spacing:5.685324pt;}
.ws133{word-spacing:5.824960pt;}
.ws1e9{word-spacing:5.881958pt;}
.ws108{word-spacing:5.894400pt;}
.ws107{word-spacing:5.913600pt;}
.ws1bc{word-spacing:5.929779pt;}
.ws106{word-spacing:5.937600pt;}
.wsef{word-spacing:5.950993pt;}
.wsea{word-spacing:6.004127pt;}
.ws173{word-spacing:6.145920pt;}
.ws172{word-spacing:6.172320pt;}
.ws111{word-spacing:6.177600pt;}
.ws10f{word-spacing:6.206400pt;}
.ws110{word-spacing:6.216000pt;}
.ws30{word-spacing:6.216662pt;}
.ws155{word-spacing:6.219840pt;}
.ws154{word-spacing:6.247200pt;}
.ws13{word-spacing:6.361681pt;}
.ws199{word-spacing:6.376064pt;}
.ws105{word-spacing:6.532800pt;}
.ws1f4{word-spacing:6.647091pt;}
.ws1b3{word-spacing:6.694912pt;}
.ws198{word-spacing:6.748001pt;}
.ws132{word-spacing:6.786880pt;}
.ws131{word-spacing:6.792224pt;}
.ws6a{word-spacing:6.960537pt;}
.ws44{word-spacing:7.013670pt;}
.ws6f{word-spacing:7.173072pt;}
.ws197{word-spacing:7.279340pt;}
.ws3d{word-spacing:7.545009pt;}
.ws5{word-spacing:8.740496pt;}
.wscf{word-spacing:9.606260pt;}
.ws14c{word-spacing:9.808803pt;}
.ws142{word-spacing:9.882899pt;}
.wsa8{word-spacing:9.916140pt;}
.ws101{word-spacing:10.325056pt;}
.ws7a{word-spacing:10.329312pt;}
.ws6{word-spacing:10.525789pt;}
.wsb4{word-spacing:10.575360pt;}
.ws23{word-spacing:10.583521pt;}
.wsb3{word-spacing:10.593792pt;}
.ws86{word-spacing:11.016000pt;}
.ws85{word-spacing:11.035200pt;}
.ws165{word-spacing:11.357562pt;}
.ws1d8{word-spacing:11.668275pt;}
.ws1d7{word-spacing:11.763917pt;}
.ws1eb{word-spacing:11.792634pt;}
.ws1f5{word-spacing:11.898266pt;}
.ws1ea{word-spacing:11.899469pt;}
.ws1d3{word-spacing:11.901705pt;}
.ws1da{word-spacing:11.903138pt;}
.ws1cb{word-spacing:11.903599pt;}
.ws1ca{word-spacing:11.904068pt;}
.ws1c3{word-spacing:11.904111pt;}
.ws1c4{word-spacing:11.905331pt;}
.ws1c6{word-spacing:11.905425pt;}
.ws1dc{word-spacing:11.905877pt;}
.ws1e1{word-spacing:11.906551pt;}
.ws1ed{word-spacing:11.906867pt;}
.ws1cc{word-spacing:11.907379pt;}
.ws1e7{word-spacing:11.955200pt;}
.ws1ec{word-spacing:12.003021pt;}
.ws1f1{word-spacing:12.050842pt;}
.ws1f2{word-spacing:12.058691pt;}
.ws1e3{word-spacing:12.167988pt;}
.ws22{word-spacing:12.242125pt;}
.ws149{word-spacing:13.055285pt;}
.ws1e5{word-spacing:13.194468pt;}
.ws48{word-spacing:13.230333pt;}
.ws6e{word-spacing:14.450491pt;}
.ws1cf{word-spacing:14.537523pt;}
.ws1bd{word-spacing:14.622423pt;}
.ws1e2{word-spacing:14.765158pt;}
.ws1d0{word-spacing:14.765764pt;}
.ws1c8{word-spacing:14.770278pt;}
.ws1bf{word-spacing:14.770654pt;}
.ws1e8{word-spacing:14.770927pt;}
.ws1df{word-spacing:14.771004pt;}
.ws1d5{word-spacing:14.771524pt;}
.ws1de{word-spacing:14.772651pt;}
.ws1c2{word-spacing:14.773257pt;}
.ws1c1{word-spacing:14.774588pt;}
.ws1d1{word-spacing:14.776627pt;}
.ws1c9{word-spacing:14.872269pt;}
.ws1d4{word-spacing:15.111373pt;}
.ws1f3{word-spacing:15.493939pt;}
.ws140{word-spacing:16.166833pt;}
.ws188{word-spacing:19.469261pt;}
.ws189{word-spacing:19.533923pt;}
.ws4{word-spacing:19.857270pt;}
.ws8{word-spacing:20.196125pt;}
.ws21{word-spacing:27.524305pt;}
.ws11{word-spacing:35.616629pt;}
.wsa{word-spacing:41.430071pt;}
.ws53{word-spacing:322.168730pt;}
.ws54{word-spacing:331.493786pt;}
.ws52{word-spacing:334.123930pt;}
.ws18c{word-spacing:342.875136pt;}
.ws18d{word-spacing:377.927782pt;}
.ws18b{word-spacing:404.946534pt;}
.ws18e{word-spacing:429.191680pt;}
.ws13d{word-spacing:627.822379pt;}
._4{margin-left:-10.616218pt;}
._29{margin-left:-7.141338pt;}
._7{margin-left:-5.939612pt;}
._a{margin-left:-4.442029pt;}
._0{margin-left:-3.421811pt;}
._c{margin-left:-2.395151pt;}
._1{margin-left:-1.487744pt;}
._25{width:0.895833pt;}
._5{width:2.666649pt;}
._6{width:3.622748pt;}
._2{width:11.530454pt;}
._9{width:12.688381pt;}
._b{width:13.708598pt;}
._d{width:15.207014pt;}
._16{width:16.471499pt;}
._13{width:18.278050pt;}
._e{width:19.467177pt;}
._17{width:21.147279pt;}
._15{width:22.103689pt;}
._3{width:23.063232pt;}
._23{width:24.494713pt;}
._a6{width:25.711946pt;}
._12{width:27.045138pt;}
._14{width:28.798556pt;}
._f{width:30.414029pt;}
._43{width:31.995555pt;}
._2a{width:33.208658pt;}
._a5{width:36.131029pt;}
._a4{width:37.299970pt;}
._24{width:38.447703pt;}
._8{width:48.840545pt;}
._a8{width:54.993920pt;}
._a7{width:78.904320pt;}
._36{width:124.063744pt;}
._1b{width:143.511893pt;}
._1a{width:145.609030pt;}
._37{width:170.570539pt;}
._19{width:174.737203pt;}
._39{width:196.379648pt;}
._18{width:216.006554pt;}
._72{width:250.680745pt;}
._3f{width:255.881131pt;}
._71{width:276.165120pt;}
._60{width:277.669990pt;}
._61{width:280.507744pt;}
._45{width:288.473645pt;}
._48{width:291.346035pt;}
._53{width:296.274035pt;}
._55{width:301.202035pt;}
._5d{width:309.650035pt;}
._50{width:314.169645pt;}
._38{width:319.732779pt;}
._4b{width:320.773059pt;}
._32{width:323.627264pt;}
._2d{width:340.603648pt;}
._5e{width:341.701395pt;}
._5a{width:344.219286pt;}
._62{width:351.538035pt;}
._8b{width:361.238323pt;}
._82{width:363.776937pt;}
._21{width:366.689894pt;}
._7c{width:367.586661pt;}
._7e{width:370.186112pt;}
._1e{width:378.645094pt;}
._91{width:381.036134pt;}
._80{width:384.487738pt;}
._70{width:385.956371pt;}
._7d{width:388.065792pt;}
._1f{width:390.169907pt;}
._31{width:391.174144pt;}
._8a{width:393.230438pt;}
._8c{width:395.334554pt;}
._85{width:399.064576pt;}
._35{width:400.180395pt;}
._7b{width:402.842419pt;}
._a1{width:407.050650pt;}
._6a{width:408.676557pt;}
._20{width:409.632973pt;}
._1c{width:410.971955pt;}
._81{width:412.980429pt;}
._75{width:413.889024pt;}
._94{width:415.897498pt;}
._6d{width:416.949555pt;}
._7f{width:418.432000pt;}
._22{width:420.297011pt;}
._1d{width:421.588173pt;}
._66{width:424.266138pt;}
._78{width:426.274611pt;}
._86{width:429.287322pt;}
._69{width:433.925939pt;}
._9e{width:435.790950pt;}
._5f{width:436.691040pt;}
._89{width:438.699514pt;}
._54{width:448.273795pt;}
._56{width:456.682723pt;}
._4e{width:459.481405pt;}
._9a{width:470.025338pt;}
._76{width:471.991296pt;}
._68{width:474.748962pt;}
._77{width:477.638262pt;}
._7a{width:485.142016pt;}
._41{width:487.652608pt;}
._79{width:493.345907pt;}
._99{width:497.527603pt;}
._10{width:499.351750pt;}
._9b{width:501.193865pt;}
._97{width:504.318157pt;}
._9d{width:506.422272pt;}
._51{width:510.146842pt;}
._84{width:515.508224pt;}
._58{width:517.810339pt;}
._96{width:533.536666pt;}
._98{width:545.587507pt;}
._9c{width:552.425882pt;}
._49{width:555.256909pt;}
._46{width:557.932285pt;}
._93{width:560.005478pt;}
._57{width:560.907917pt;}
._67{width:564.967190pt;}
._4c{width:566.531856pt;}
._4f{width:568.724042pt;}
._a0{width:570.836890pt;}
._6c{width:576.862310pt;}
._5b{width:579.530723pt;}
._92{width:581.596570pt;}
._90{width:583.820237pt;}
._83{width:585.239456pt;}
._95{width:590.921626pt;}
._52{width:595.444080pt;}
._9f{width:601.633485pt;}
._59{width:604.793559pt;}
._8f{width:614.688563pt;}
._6b{width:616.314470pt;}
._88{width:618.466406pt;}
._3a{width:622.507264pt;}
._40{width:624.699051pt;}
._65{width:629.342666pt;}
._6f{width:630.756352pt;}
._3d{width:632.709035pt;}
._4d{width:637.763456pt;}
._3e{width:647.413931pt;}
._30{width:649.649679pt;}
._74{width:656.675226pt;}
._4a{width:668.996247pt;}
._47{width:670.601008pt;}
._8e{width:673.886602pt;}
._87{width:677.912960pt;}
._8d{width:681.733325pt;}
._6e{width:682.785382pt;}
._5c{width:684.112106pt;}
._a3{width:685.415526pt;}
._a2{width:707.747840pt;}
._63{width:709.684026pt;}
._73{width:715.160064pt;}
._3c{width:734.487637pt;}
._3b{width:763.498923pt;}
._2f{width:797.093035pt;}
._34{width:815.225088pt;}
._33{width:819.130453pt;}
._64{width:824.284595pt;}
._2e{width:977.536853pt;}
._28{width:1687.642192pt;}
._42{width:1703.873214pt;}
._27{width:1742.082263pt;}
._2c{width:1793.550752pt;}
._26{width:1814.669024pt;}
._44{width:1972.905827pt;}
._2b{width:2180.429333pt;}
._11{width:2201.682667pt;}
.fs15{font-size:30.286400pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs13{font-size:38.755733pt;}
.fs10{font-size:39.580800pt;}
.fs14{font-size:39.850667pt;}
.fs4{font-size:40.381867pt;}
.fs16{font-size:40.432000pt;}
.fsd{font-size:40.857600pt;}
.fs9{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fsa{font-size:42.560000pt;}
.fs12{font-size:44.640000pt;}
.fs18{font-size:45.600000pt;}
.fsf{font-size:46.080000pt;}
.fs1a{font-size:46.816000pt;}
.fs7{font-size:47.820800pt;}
.fsc{font-size:48.000000pt;}
.fs11{font-size:49.699200pt;}
.fs19{font-size:49.829333pt;}
.fs17{font-size:50.768000pt;}
.fse{font-size:51.302400pt;}
.fs1c{font-size:52.800000pt;}
.fs2{font-size:53.133867pt;}
.fsb{font-size:53.440000pt;}
.fs8{font-size:55.365867pt;}
.fs1b{font-size:58.784000pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:120.948480pt;}
.y137{bottom:-644.064312pt;}
.y136{bottom:-627.024968pt;}
.y135{bottom:-609.905464pt;}
.y134{bottom:-588.864800pt;}
.y133{bottom:-556.144933pt;}
.y132{bottom:-540.625333pt;}
.y131{bottom:-525.265333pt;}
.y130{bottom:-509.905333pt;}
.y12f{bottom:-494.545333pt;}
.y12e{bottom:-479.104933pt;}
.y12d{bottom:-463.744933pt;}
.y1cb{bottom:-449.985491pt;}
.y12c{bottom:-448.384933pt;}
.y12b{bottom:-433.024933pt;}
.y1ca{bottom:-432.865987pt;}
.y1c9{bottom:-415.825307pt;}
.y12a{bottom:-413.024933pt;}
.y1c8{bottom:-398.705803pt;}
.y1c7{bottom:-381.586299pt;}
.y1c6{bottom:-364.546955pt;}
.y1c5{bottom:-347.427451pt;}
.y1c4{bottom:-330.307947pt;}
.y1c3{bottom:-313.268603pt;}
.y269{bottom:-300.838264pt;}
.y1c2{bottom:-296.149099pt;}
.y268{bottom:-282.094985pt;}
.y1c1{bottom:-279.109755pt;}
.y149{bottom:-267.255340pt;}
.y267{bottom:-263.263531pt;}
.y1c0{bottom:-257.990267pt;}
.y148{bottom:-250.897569pt;}
.y266{bottom:-244.432077pt;}
.y1f6{bottom:-239.988157pt;}
.y147{bottom:-234.462845pt;}
.y265{bottom:-225.688798pt;}
.y1bf{bottom:-225.271067pt;}
.y1f5{bottom:-222.868653pt;}
.y146{bottom:-214.263808pt;}
.y1be{bottom:-209.830667pt;}
.y264{bottom:-206.857344pt;}
.y1f4{bottom:-205.827973pt;}
.y1bd{bottom:-194.071067pt;}
.y170{bottom:-188.821744pt;}
.y1f3{bottom:-188.708469pt;}
.y263{bottom:-188.114065pt;}
.y145{bottom:-182.852736pt;}
.y1bc{bottom:-178.711067pt;}
.y16f{bottom:-174.536944pt;}
.y1f2{bottom:-171.588965pt;}
.y262{bottom:-169.282611pt;}
.y144{bottom:-167.953920pt;}
.y1bb{bottom:-163.351067pt;}
.y16e{bottom:-160.252144pt;}
.y1f1{bottom:-154.549621pt;}
.y143{bottom:-153.208320pt;}
.y261{bottom:-150.451157pt;}
.y1ba{bottom:-147.991067pt;}
.y16d{bottom:-145.892572pt;}
.y142{bottom:-138.462720pt;}
.y1f0{bottom:-137.430117pt;}
.y1b9{bottom:-132.550667pt;}
.y260{bottom:-131.707878pt;}
.y16c{bottom:-131.607772pt;}
.y141{bottom:-123.717120pt;}
.y1ef{bottom:-120.310613pt;}
.y242{bottom:-117.482827pt;}
.y16b{bottom:-117.322972pt;}
.y1b8{bottom:-117.190667pt;}
.y25f{bottom:-112.876424pt;}
.y140{bottom:-108.894336pt;}
.y1ee{bottom:-103.271269pt;}
.y16a{bottom:-103.038172pt;}
.y241{bottom:-102.814447pt;}
.y1b7{bottom:-101.830667pt;}
.y13f{bottom:-94.148736pt;}
.y25e{bottom:-89.731693pt;}
.y169{bottom:-88.678600pt;}
.y240{bottom:-88.222447pt;}
.y1b6{bottom:-86.470667pt;}
.y1ed{bottom:-86.151765pt;}
.y13e{bottom:-79.403136pt;}
.y168{bottom:-74.393800pt;}
.y23f{bottom:-73.554067pt;}
.y1b5{bottom:-71.030267pt;}
.y1ec{bottom:-69.112421pt;}
.y13d{bottom:-64.657536pt;}
.y167{bottom:-60.109000pt;}
.y23e{bottom:-58.962067pt;}
.y1b4{bottom:-55.670267pt;}
.y25d{bottom:-53.739253pt;}
.y1eb{bottom:-47.992933pt;}
.y166{bottom:-45.824200pt;}
.y13c{bottom:-45.457536pt;}
.y23d{bottom:-44.370067pt;}
.y1b3{bottom:-40.310267pt;}
.y25c{bottom:-36.667693pt;}
.y165{bottom:-31.464628pt;}
.y23c{bottom:-29.778067pt;}
.y1b2{bottom:-24.950267pt;}
.y25b{bottom:-19.771693pt;}
.y164{bottom:-17.179828pt;}
.y1ea{bottom:-15.273733pt;}
.y23b{bottom:-15.109687pt;}
.y1b1{bottom:-4.950267pt;}
.y0{bottom:0.000000pt;}
.y1e9{bottom:0.166667pt;}
.y163{bottom:1.345772pt;}
.y25a{bottom:2.140307pt;}
.y23a{bottom:3.813379pt;}
.y1c{bottom:12.329438pt;}
.y1e8{bottom:15.926267pt;}
.y4c{bottom:28.346667pt;}
.y1e7{bottom:31.286267pt;}
.y1e6{bottom:46.646267pt;}
.y1e5{bottom:62.006267pt;}
.y1e4{bottom:77.446667pt;}
.y302{bottom:92.361333pt;}
.y1e3{bottom:92.806667pt;}
.y1a{bottom:93.018667pt;}
.y2d0{bottom:95.548000pt;}
.y2a4{bottom:95.884000pt;}
.y17f{bottom:96.701333pt;}
.y234{bottom:96.786667pt;}
.y24a{bottom:101.574667pt;}
.yea{bottom:101.780000pt;}
.y118{bottom:105.112000pt;}
.y1ad{bottom:105.909333pt;}
.y2c7{bottom:106.308000pt;}
.y301{bottom:107.982667pt;}
.y1e2{bottom:108.166667pt;}
.y19{bottom:108.920000pt;}
.y2cf{bottom:111.588000pt;}
.yb6{bottom:112.449333pt;}
.y2a3{bottom:112.621333pt;}
.y233{bottom:113.524000pt;}
.y17e{bottom:113.797333pt;}
.y33a{bottom:115.393333pt;}
.ye9{bottom:118.517333pt;}
.y249{bottom:118.670667pt;}
.y36f{bottom:118.861333pt;}
.y82{bottom:119.060000pt;}
.y117{bottom:121.849333pt;}
.y1ac{bottom:122.646667pt;}
.y2c6{bottom:123.045333pt;}
.y1e1{bottom:123.526667pt;}
.y18{bottom:124.820000pt;}
.yb5{bottom:127.061333pt;}
.y1f7{bottom:127.594667pt;}
.y2ce{bottom:127.628000pt;}
.y2a2{bottom:129.358667pt;}
.y232{bottom:130.261333pt;}
.y339{bottom:130.736000pt;}
.y17d{bottom:130.893333pt;}
.y300{bottom:131.573333pt;}
.y36e{bottom:134.202667pt;}
.y248{bottom:135.766667pt;}
.y81{bottom:135.797333pt;}
.y116{bottom:138.586667pt;}
.y1e0{bottom:138.967067pt;}
.ye8{bottom:139.240000pt;}
.y1ab{bottom:139.384000pt;}
.y2c5{bottom:139.782667pt;}
.y17{bottom:140.720000pt;}
.y4b{bottom:140.964000pt;}
.yb4{bottom:141.673333pt;}
.y2cd{bottom:143.668000pt;}
.y1d9{bottom:144.690667pt;}
.y338{bottom:146.078667pt;}
.y2a1{bottom:146.096000pt;}
.y231{bottom:146.997333pt;}
.y2ff{bottom:147.196000pt;}
.y17c{bottom:147.989333pt;}
.y36d{bottom:149.545333pt;}
.y80{bottom:152.534667pt;}
.y247{bottom:152.862667pt;}
.y1df{bottom:154.327067pt;}
.y115{bottom:155.324000pt;}
.y1aa{bottom:156.121333pt;}
.yb3{bottom:156.285333pt;}
.y2c4{bottom:156.520000pt;}
.y16{bottom:156.621333pt;}
.y4a{bottom:158.258667pt;}
.y2cc{bottom:159.708000pt;}
.y337{bottom:161.421333pt;}
.y1d7{bottom:161.786667pt;}
.y2fe{bottom:162.817333pt;}
.y2a0{bottom:162.833333pt;}
.y230{bottom:163.734667pt;}
.y36c{bottom:164.888000pt;}
.y17b{bottom:165.084000pt;}
.y1d8{bottom:166.126667pt;}
.ye7{bottom:169.128000pt;}
.y7f{bottom:169.272000pt;}
.y1de{bottom:169.687067pt;}
.y246{bottom:169.958667pt;}
.yb2{bottom:170.897333pt;}
.y114{bottom:172.061333pt;}
.y15{bottom:172.521333pt;}
.y1a9{bottom:172.858667pt;}
.y2c3{bottom:173.257333pt;}
.y2cb{bottom:175.748000pt;}
.y336{bottom:176.764000pt;}
.y2fd{bottom:178.438667pt;}
.y1d6{bottom:178.882667pt;}
.y29f{bottom:179.570667pt;}
.y36b{bottom:180.230667pt;}
.y22f{bottom:180.472000pt;}
.y17a{bottom:182.180000pt;}
.y1dd{bottom:185.047067pt;}
.y26c{bottom:185.385333pt;}
.yb1{bottom:185.509333pt;}
.ye6{bottom:185.865333pt;}
.y7e{bottom:186.009333pt;}
.y245{bottom:187.053333pt;}
.y14{bottom:188.421333pt;}
.y113{bottom:188.798667pt;}
.y1a8{bottom:189.596000pt;}
.y2c2{bottom:189.994667pt;}
.y49{bottom:191.494667pt;}
.y2ca{bottom:191.788000pt;}
.y335{bottom:192.106667pt;}
.y2fc{bottom:194.060000pt;}
.y36a{bottom:195.573333pt;}
.y1d5{bottom:195.978667pt;}
.y29e{bottom:196.308000pt;}
.y22e{bottom:197.209333pt;}
.y179{bottom:199.276000pt;}
.yb0{bottom:200.121333pt;}
.y26b{bottom:202.481333pt;}
.ye4{bottom:202.602667pt;}
.y7d{bottom:202.746667pt;}
.y244{bottom:204.149333pt;}
.y13{bottom:204.322667pt;}
.y1dc{bottom:205.047067pt;}
.y112{bottom:205.536000pt;}
.y1a7{bottom:206.333333pt;}
.y2c1{bottom:206.732000pt;}
.ye5{bottom:207.424000pt;}
.y334{bottom:207.449333pt;}
.y2c9{bottom:207.828000pt;}
.y48{bottom:208.789333pt;}
.y2fb{bottom:209.681333pt;}
.y369{bottom:210.916000pt;}
.y29d{bottom:213.045333pt;}
.y1d4{bottom:213.074667pt;}
.y22d{bottom:213.946667pt;}
.yaf{bottom:214.733333pt;}
.y178{bottom:216.372000pt;}
.ye3{bottom:219.340000pt;}
.y7c{bottom:219.484000pt;}
.y26a{bottom:219.577333pt;}
.y243{bottom:221.245333pt;}
.y111{bottom:222.273333pt;}
.y333{bottom:222.792000pt;}
.y1a6{bottom:223.070667pt;}
.y2c0{bottom:223.469333pt;}
.y2fa{bottom:225.302667pt;}
.y47{bottom:226.084000pt;}
.y368{bottom:226.258667pt;}
.yae{bottom:229.345333pt;}
.y29c{bottom:229.782667pt;}
.y1d3{bottom:230.170667pt;}
.y22c{bottom:230.684000pt;}
.y177{bottom:233.468000pt;}
.ye2{bottom:236.077333pt;}
.y7b{bottom:236.221333pt;}
.y332{bottom:238.133333pt;}
.y110{bottom:239.010667pt;}
.y24b{bottom:239.514667pt;}
.y1a5{bottom:239.808000pt;}
.y2bf{bottom:240.206667pt;}
.y2f9{bottom:240.924000pt;}
.y367{bottom:241.601333pt;}
.y46{bottom:243.380000pt;}
.y235{bottom:243.840000pt;}
.yad{bottom:243.957333pt;}
.y29b{bottom:246.520000pt;}
.y1d2{bottom:247.265333pt;}
.y22b{bottom:247.421333pt;}
.y176{bottom:250.564000pt;}
.ye1{bottom:252.814667pt;}
.y7a{bottom:252.958667pt;}
.y331{bottom:253.476000pt;}
.y10f{bottom:255.748000pt;}
.y1a4{bottom:256.545333pt;}
.y2be{bottom:256.944000pt;}
.yac{bottom:258.568000pt;}
.y45{bottom:260.674667pt;}
.y29a{bottom:263.257333pt;}
.y1d1{bottom:264.361333pt;}
.y12{bottom:266.570667pt;}
.y15f{bottom:267.454667pt;}
.y175{bottom:267.660000pt;}
.y22a{bottom:268.144000pt;}
.y330{bottom:268.818667pt;}
.ye0{bottom:269.552000pt;}
.y79{bottom:269.696000pt;}
.y366{bottom:272.285333pt;}
.y10e{bottom:272.485333pt;}
.yab{bottom:273.180000pt;}
.y1a3{bottom:273.282667pt;}
.y2bd{bottom:273.681333pt;}
.y138{bottom:273.837333pt;}
.y44{bottom:277.969333pt;}
.y2f8{bottom:280.137333pt;}
.y1d0{bottom:281.457333pt;}
.y11{bottom:282.470667pt;}
.y299{bottom:283.978667pt;}
.y32f{bottom:284.161333pt;}
.y15e{bottom:284.192000pt;}
.y174{bottom:284.756000pt;}
.ydf{bottom:286.289333pt;}
.y78{bottom:286.433333pt;}
.y365{bottom:287.628000pt;}
.yaa{bottom:287.792000pt;}
.y10d{bottom:289.222667pt;}
.y1a2{bottom:290.020000pt;}
.y2bc{bottom:290.417333pt;}
.y127{bottom:293.774667pt;}
.y43{bottom:295.265333pt;}
.y2f7{bottom:295.758667pt;}
.y10{bottom:298.370667pt;}
.y1cf{bottom:298.553333pt;}
.y32e{bottom:299.504000pt;}
.y15d{bottom:300.929333pt;}
.y173{bottom:301.852000pt;}
.ya9{bottom:302.404000pt;}
.y364{bottom:302.970667pt;}
.yde{bottom:303.026667pt;}
.y77{bottom:303.170667pt;}
.y10c{bottom:305.960000pt;}
.y1a1{bottom:306.757333pt;}
.y2bb{bottom:307.154667pt;}
.y229{bottom:308.521333pt;}
.y129{bottom:308.895187pt;}
.y42{bottom:312.560000pt;}
.yf{bottom:314.272000pt;}
.y32d{bottom:314.846667pt;}
.y1ce{bottom:315.649333pt;}
.ya8{bottom:317.016000pt;}
.y128{bottom:317.455067pt;}
.y15c{bottom:317.666667pt;}
.y363{bottom:318.313333pt;}
.y172{bottom:318.948000pt;}
.y2f6{bottom:319.350667pt;}
.y228{bottom:319.866667pt;}
.y76{bottom:319.908000pt;}
.y10b{bottom:322.697333pt;}
.y1a0{bottom:323.494667pt;}
.ydd{bottom:323.748000pt;}
.y2ba{bottom:323.892000pt;}
.y298{bottom:324.257333pt;}
.y41{bottom:329.856000pt;}
.y32c{bottom:330.189333pt;}
.ya7{bottom:331.628000pt;}
.y1cd{bottom:332.745333pt;}
.y362{bottom:333.656000pt;}
.y15b{bottom:334.404000pt;}
.y227{bottom:334.810667pt;}
.y2f5{bottom:334.972000pt;}
.y171{bottom:336.042667pt;}
.y75{bottom:336.645333pt;}
.y297{bottom:338.869333pt;}
.y10a{bottom:339.434667pt;}
.ye{bottom:339.470667pt;}
.y19f{bottom:340.232000pt;}
.y2b9{bottom:340.629333pt;}
.y32b{bottom:345.532000pt;}
.ya6{bottom:346.240000pt;}
.y40{bottom:347.150667pt;}
.y361{bottom:348.998667pt;}
.y226{bottom:349.754667pt;}
.y1cc{bottom:349.841333pt;}
.y15a{bottom:351.141333pt;}
.y74{bottom:353.382667pt;}
.y296{bottom:353.481333pt;}
.ydc{bottom:353.636000pt;}
.yd{bottom:355.370667pt;}
.y160{bottom:355.980000pt;}
.y109{bottom:356.172000pt;}
.y19e{bottom:356.968000pt;}
.y2b8{bottom:357.366667pt;}
.y2f4{bottom:358.562667pt;}
.ya5{bottom:360.852000pt;}
.y32a{bottom:360.874667pt;}
.y360{bottom:364.341333pt;}
.y3f{bottom:364.445333pt;}
.y225{bottom:364.698667pt;}
.y21a{bottom:367.410667pt;}
.y159{bottom:367.878667pt;}
.y295{bottom:368.092000pt;}
.y73{bottom:370.118667pt;}
.ydb{bottom:370.373333pt;}
.yc{bottom:371.270667pt;}
.y1ae{bottom:372.434667pt;}
.y108{bottom:372.909333pt;}
.y19d{bottom:373.705333pt;}
.y2b7{bottom:374.104000pt;}
.y2f3{bottom:374.184000pt;}
.ya4{bottom:375.464000pt;}
.y329{bottom:376.216000pt;}
.y224{bottom:379.642667pt;}
.y35f{bottom:379.684000pt;}
.y3e{bottom:381.741333pt;}
.y294{bottom:382.704000pt;}
.y158{bottom:384.616000pt;}
.y72{bottom:386.856000pt;}
.yda{bottom:387.110667pt;}
.y107{bottom:389.646667pt;}
.y2f2{bottom:389.806667pt;}
.ya3{bottom:390.076000pt;}
.y19c{bottom:390.442667pt;}
.y2b6{bottom:390.841333pt;}
.y328{bottom:391.558667pt;}
.y223{bottom:394.586667pt;}
.y35e{bottom:395.025333pt;}
.yb{bottom:395.141333pt;}
.y293{bottom:397.316000pt;}
.y3d{bottom:399.036000pt;}
.y157{bottom:401.353333pt;}
.y71{bottom:403.593333pt;}
.yd8{bottom:403.848000pt;}
.y2f1{bottom:405.428000pt;}
.y106{bottom:406.384000pt;}
.y327{bottom:406.901333pt;}
.y19b{bottom:407.180000pt;}
.y2b5{bottom:407.578667pt;}
.yd9{bottom:408.670667pt;}
.y222{bottom:409.530667pt;}
.y35d{bottom:410.368000pt;}
.ya{bottom:411.042667pt;}
.ya2{bottom:411.089333pt;}
.y292{bottom:411.928000pt;}
.y3c{bottom:416.330667pt;}
.y156{bottom:418.090667pt;}
.y70{bottom:420.330667pt;}
.yd7{bottom:420.585333pt;}
.y2f0{bottom:421.049333pt;}
.y326{bottom:422.244000pt;}
.y105{bottom:423.121333pt;}
.y19a{bottom:423.917333pt;}
.y2b4{bottom:424.316000pt;}
.y221{bottom:424.474667pt;}
.y35c{bottom:425.710667pt;}
.y291{bottom:426.540000pt;}
.y9{bottom:426.942667pt;}
.y3b{bottom:433.626667pt;}
.y155{bottom:434.828000pt;}
.y6f{bottom:437.068000pt;}
.yd6{bottom:437.322667pt;}
.y325{bottom:437.586667pt;}
.ya1{bottom:439.196000pt;}
.y220{bottom:439.418667pt;}
.y104{bottom:439.858667pt;}
.y199{bottom:440.654667pt;}
.y2b3{bottom:441.053333pt;}
.y290{bottom:441.152000pt;}
.y8{bottom:442.842667pt;}
.y2c8{bottom:444.640000pt;}
.y3a{bottom:450.921333pt;}
.y154{bottom:451.565333pt;}
.y324{bottom:452.929333pt;}
.y6e{bottom:453.805333pt;}
.y21f{bottom:454.362667pt;}
.y28f{bottom:455.764000pt;}
.y9f{bottom:456.292000pt;}
.y35b{bottom:456.396000pt;}
.y103{bottom:456.596000pt;}
.y198{bottom:457.392000pt;}
.y2b2{bottom:457.790667pt;}
.yd5{bottom:458.045333pt;}
.y21c{bottom:458.652000pt;}
.y7{bottom:458.744000pt;}
.y2ef{bottom:460.261333pt;}
.ya0{bottom:460.630667pt;}
.y21e{bottom:464.325333pt;}
.y323{bottom:468.272000pt;}
.y21b{bottom:469.997333pt;}
.y28e{bottom:470.376000pt;}
.y6d{bottom:470.542667pt;}
.y35a{bottom:471.738667pt;}
.y153{bottom:472.286667pt;}
.y259{bottom:473.556307pt;}
.y197{bottom:474.129333pt;}
.y21d{bottom:474.288000pt;}
.y2b1{bottom:474.528000pt;}
.y6{bottom:474.644000pt;}
.y2ee{bottom:475.884000pt;}
.y102{bottom:477.317333pt;}
.y322{bottom:483.614667pt;}
.y28d{bottom:484.988000pt;}
.y359{bottom:487.081333pt;}
.y6c{bottom:487.280000pt;}
.yd4{bottom:487.933333pt;}
.y39{bottom:489.077333pt;}
.y9e{bottom:489.273333pt;}
.y5{bottom:490.544000pt;}
.y196{bottom:490.866667pt;}
.y2b0{bottom:491.265333pt;}
.y2ed{bottom:491.505333pt;}
.y258{bottom:493.268307pt;}
.y217{bottom:495.633333pt;}
.y219{bottom:496.325333pt;}
.y1b0{bottom:496.969853pt;}
.y321{bottom:498.956000pt;}
.y152{bottom:499.333333pt;}
.y28c{bottom:499.600000pt;}
.y358{bottom:502.424000pt;}
.y38{bottom:503.424000pt;}
.y6b{bottom:504.017333pt;}
.yd3{bottom:504.670667pt;}
.y1af{bottom:505.529733pt;}
.y9d{bottom:506.010667pt;}
.y218{bottom:506.288000pt;}
.y4{bottom:506.445333pt;}
.y216{bottom:506.978667pt;}
.y2ec{bottom:507.126667pt;}
.y101{bottom:507.205333pt;}
.y195{bottom:507.604000pt;}
.y2af{bottom:508.002667pt;}
.y257{bottom:513.068307pt;}
.y37{bottom:513.912000pt;}
.y28b{bottom:514.210667pt;}
.y320{bottom:514.298667pt;}
.y151{bottom:516.429333pt;}
.y357{bottom:517.766667pt;}
.y6a{bottom:520.754667pt;}
.yd2{bottom:521.408000pt;}
.y215{bottom:521.922667pt;}
.y3{bottom:522.345333pt;}
.y9c{bottom:522.748000pt;}
.y100{bottom:523.942667pt;}
.y194{bottom:524.341333pt;}
.y2ae{bottom:524.740000pt;}
.y28a{bottom:528.822667pt;}
.y31f{bottom:529.641333pt;}
.y36{bottom:532.116000pt;}
.y256{bottom:532.868307pt;}
.y356{bottom:533.108000pt;}
.y150{bottom:533.525333pt;}
.y214{bottom:536.866667pt;}
.y69{bottom:537.492000pt;}
.yd1{bottom:538.145333pt;}
.y2{bottom:538.245333pt;}
.y2eb{bottom:538.369333pt;}
.y9b{bottom:539.485333pt;}
.yff{bottom:540.680000pt;}
.y193{bottom:541.078667pt;}
.y2ad{bottom:541.477333pt;}
.y212{bottom:541.848000pt;}
.y35{bottom:542.605333pt;}
.y289{bottom:543.434667pt;}
.y31e{bottom:544.984000pt;}
.y213{bottom:546.829333pt;}
.y355{bottom:548.450667pt;}
.y14f{bottom:550.621333pt;}
.y255{bottom:552.668307pt;}
.y2ea{bottom:553.990667pt;}
.y1{bottom:554.146667pt;}
.y68{bottom:554.229333pt;}
.yd0{bottom:554.882667pt;}
.y9a{bottom:556.222667pt;}
.yfe{bottom:557.417333pt;}
.y192{bottom:557.816000pt;}
.y288{bottom:558.046667pt;}
.y2ac{bottom:558.214667pt;}
.y31d{bottom:560.326667pt;}
.y34{bottom:560.808000pt;}
.y211{bottom:561.773333pt;}
.y354{bottom:563.793333pt;}
.y210{bottom:566.754667pt;}
.y14e{bottom:567.717333pt;}
.y2e9{bottom:569.612000pt;}
.y67{bottom:570.966667pt;}
.y33{bottom:571.297333pt;}
.ycf{bottom:571.620000pt;}
.y254{bottom:572.468307pt;}
.y287{bottom:572.658667pt;}
.y99{bottom:572.960000pt;}
.yfc{bottom:574.154667pt;}
.y191{bottom:574.553333pt;}
.y2ab{bottom:574.952000pt;}
.y31c{bottom:575.669333pt;}
.yfd{bottom:578.977333pt;}
.y353{bottom:579.136000pt;}
.y14d{bottom:584.813333pt;}
.y2e8{bottom:585.233333pt;}
.y20f{bottom:586.680000pt;}
.y286{bottom:587.270667pt;}
.y66{bottom:587.704000pt;}
.y202{bottom:588.012000pt;}
.yce{bottom:588.357333pt;}
.y32{bottom:589.501333pt;}
.y98{bottom:589.696000pt;}
.yfb{bottom:590.892000pt;}
.y31b{bottom:591.012000pt;}
.y190{bottom:591.290667pt;}
.y20e{bottom:591.661333pt;}
.y2aa{bottom:591.689333pt;}
.y253{bottom:592.268307pt;}
.y352{bottom:594.478667pt;}
.y31{bottom:599.989333pt;}
.y2e7{bottom:600.854667pt;}
.y285{bottom:601.882667pt;}
.y14c{bottom:601.909333pt;}
.y65{bottom:604.441333pt;}
.ycd{bottom:605.094667pt;}
.y31a{bottom:606.354667pt;}
.y97{bottom:606.433333pt;}
.yfa{bottom:607.629333pt;}
.y18f{bottom:608.028000pt;}
.y2a9{bottom:608.426667pt;}
.y351{bottom:609.821333pt;}
.y20d{bottom:611.586667pt;}
.y252{bottom:612.068307pt;}
.y2e6{bottom:616.476000pt;}
.y284{bottom:616.494667pt;}
.y20b{bottom:616.568000pt;}
.y30{bottom:618.193333pt;}
.y14b{bottom:619.005333pt;}
.y64{bottom:621.178667pt;}
.y20c{bottom:621.549333pt;}
.y319{bottom:621.697333pt;}
.ycc{bottom:621.832000pt;}
.y96{bottom:623.170667pt;}
.y18e{bottom:624.765333pt;}
.y2a8{bottom:625.164000pt;}
.yf9{bottom:628.352000pt;}
.y283{bottom:631.106667pt;}
.y251{bottom:631.780307pt;}
.y2e5{bottom:632.097333pt;}
.y2f{bottom:632.540000pt;}
.y14a{bottom:636.101333pt;}
.y20a{bottom:636.493333pt;}
.y318{bottom:637.038667pt;}
.y63{bottom:637.916000pt;}
.ycb{bottom:638.569333pt;}
.y95{bottom:639.908000pt;}
.y350{bottom:640.506667pt;}
.y209{bottom:641.474667pt;}
.y18d{bottom:641.502667pt;}
.y2a7{bottom:641.901333pt;}
.y2e{bottom:643.028000pt;}
.y282{bottom:645.718667pt;}
.y13b{bottom:647.585779pt;}
.y2e4{bottom:647.720000pt;}
.y250{bottom:651.580307pt;}
.y317{bottom:652.381333pt;}
.y62{bottom:654.653333pt;}
.yca{bottom:655.306667pt;}
.y13a{bottom:655.803264pt;}
.y34f{bottom:655.848000pt;}
.y139{bottom:656.037333pt;}
.y94{bottom:656.645333pt;}
.yf8{bottom:658.240000pt;}
.y2a6{bottom:658.638667pt;}
.y281{bottom:660.329333pt;}
.y2d{bottom:661.232000pt;}
.y208{bottom:661.400000pt;}
.y18c{bottom:662.225333pt;}
.y2e3{bottom:663.341333pt;}
.y206{bottom:666.381333pt;}
.y316{bottom:667.724000pt;}
.y34e{bottom:671.190667pt;}
.y207{bottom:671.362667pt;}
.y24f{bottom:671.380307pt;}
.y61{bottom:671.390667pt;}
.y2c{bottom:671.721333pt;}
.yc9{bottom:672.044000pt;}
.y93{bottom:673.382667pt;}
.y280{bottom:674.941333pt;}
.yf7{bottom:674.977333pt;}
.y2a5{bottom:675.376000pt;}
.y162{bottom:677.716284pt;}
.y2e2{bottom:678.962667pt;}
.y315{bottom:683.066667pt;}
.y161{bottom:685.676972pt;}
.y205{bottom:686.306667pt;}
.y34d{bottom:686.533333pt;}
.y60{bottom:688.128000pt;}
.yc8{bottom:688.781333pt;}
.y27f{bottom:689.553333pt;}
.y2b{bottom:689.925333pt;}
.y92{bottom:690.120000pt;}
.y24e{bottom:691.180307pt;}
.y204{bottom:691.288000pt;}
.yf6{bottom:691.714667pt;}
.y18b{bottom:692.113333pt;}
.y2e1{bottom:694.584000pt;}
.y372{bottom:697.825333pt;}
.y314{bottom:698.409333pt;}
.y2a{bottom:700.413333pt;}
.y34c{bottom:701.876000pt;}
.y27e{bottom:704.165333pt;}
.y5f{bottom:704.865333pt;}
.yc7{bottom:705.518667pt;}
.y239{bottom:705.825667pt;}
.y91{bottom:706.857333pt;}
.y1db{bottom:706.967187pt;}
.yf5{bottom:708.452000pt;}
.y18a{bottom:708.850667pt;}
.y2e0{bottom:710.205333pt;}
.y203{bottom:711.213333pt;}
.y371{bottom:713.166667pt;}
.y313{bottom:713.752000pt;}
.y29{bottom:714.760000pt;}
.y1da{bottom:715.527067pt;}
.y34b{bottom:717.218667pt;}
.y27d{bottom:718.777333pt;}
.y5e{bottom:721.602667pt;}
.y238{bottom:722.014313pt;}
.yc6{bottom:722.254667pt;}
.y126{bottom:723.594667pt;}
.yf4{bottom:725.189333pt;}
.y189{bottom:725.588000pt;}
.y2df{bottom:725.826667pt;}
.y90{bottom:727.580000pt;}
.y370{bottom:728.509333pt;}
.y312{bottom:729.094667pt;}
.y201{bottom:732.558667pt;}
.y34a{bottom:732.561333pt;}
.y28{bottom:732.964000pt;}
.y27c{bottom:733.389333pt;}
.y5d{bottom:738.340000pt;}
.yc5{bottom:738.992000pt;}
.y125{bottom:740.332000pt;}
.y2de{bottom:741.448000pt;}
.yf2{bottom:741.926667pt;}
.y188{bottom:742.324000pt;}
.y27{bottom:743.452000pt;}
.y311{bottom:744.437333pt;}
.y24d{bottom:745.388439pt;}
.yf3{bottom:746.748000pt;}
.y200{bottom:747.502667pt;}
.y349{bottom:747.904000pt;}
.y27b{bottom:748.001333pt;}
.y1fb{bottom:754.393333pt;}
.y24c{bottom:754.804307pt;}
.y5c{bottom:755.077333pt;}
.yc4{bottom:755.729333pt;}
.y123{bottom:757.069333pt;}
.y8f{bottom:757.468000pt;}
.y26{bottom:757.798667pt;}
.yf1{bottom:758.664000pt;}
.y187{bottom:759.061333pt;}
.y310{bottom:759.778667pt;}
.y124{bottom:761.892000pt;}
.y1ff{bottom:762.446667pt;}
.y27a{bottom:762.613333pt;}
.y348{bottom:763.246667pt;}
.y237{bottom:768.222427pt;}
.y5b{bottom:771.814667pt;}
.y25{bottom:772.145333pt;}
.y2dd{bottom:772.690667pt;}
.y122{bottom:773.806667pt;}
.y8e{bottom:774.205333pt;}
.y30f{bottom:775.121333pt;}
.yef{bottom:775.401333pt;}
.y186{bottom:775.798667pt;}
.y236{bottom:776.354313pt;}
.yc3{bottom:776.452000pt;}
.y279{bottom:777.225333pt;}
.y1fe{bottom:777.390667pt;}
.y347{bottom:778.589333pt;}
.yf0{bottom:780.222667pt;}
.y2dc{bottom:788.312000pt;}
.y5a{bottom:788.552000pt;}
.y24{bottom:790.349333pt;}
.y30e{bottom:790.464000pt;}
.y121{bottom:790.544000pt;}
.y8d{bottom:790.942667pt;}
.y278{bottom:791.837333pt;}
.yee{bottom:792.138667pt;}
.y1fd{bottom:792.334667pt;}
.y185{bottom:792.536000pt;}
.y346{bottom:793.930667pt;}
.y2db{bottom:803.933333pt;}
.y59{bottom:805.289333pt;}
.y30d{bottom:805.806667pt;}
.y277{bottom:806.448000pt;}
.y1fc{bottom:807.278667pt;}
.y8c{bottom:807.680000pt;}
.yed{bottom:808.874667pt;}
.y184{bottom:809.273333pt;}
.y120{bottom:811.266667pt;}
.yc2{bottom:814.073333pt;}
.y2da{bottom:819.556000pt;}
.y276{bottom:821.060000pt;}
.y30c{bottom:821.149333pt;}
.y58{bottom:822.025333pt;}
.y8b{bottom:824.417333pt;}
.y345{bottom:824.616000pt;}
.yec{bottom:825.612000pt;}
.y183{bottom:826.010667pt;}
.y1fa{bottom:828.625333pt;}
.yc1{bottom:828.685333pt;}
.y11f{bottom:829.198667pt;}
.y23{bottom:830.061333pt;}
.y275{bottom:835.672000pt;}
.y30b{bottom:836.492000pt;}
.y57{bottom:838.762667pt;}
.y344{bottom:839.958667pt;}
.yeb{bottom:842.349333pt;}
.y182{bottom:842.748000pt;}
.y2d9{bottom:843.146667pt;}
.yc0{bottom:843.297333pt;}
.y8a{bottom:845.140000pt;}
.y22{bottom:846.798667pt;}
.y274{bottom:850.284000pt;}
.y30a{bottom:851.834667pt;}
.y343{bottom:855.301333pt;}
.y56{bottom:855.500000pt;}
.ybf{bottom:857.909333pt;}
.y2d8{bottom:858.768000pt;}
.y11e{bottom:859.086667pt;}
.y181{bottom:859.485333pt;}
.y1f9{bottom:859.620000pt;}
.y89{bottom:863.072000pt;}
.y21{bottom:863.536000pt;}
.y273{bottom:864.896000pt;}
.y309{bottom:867.177333pt;}
.y342{bottom:870.644000pt;}
.y55{bottom:872.237333pt;}
.ybe{bottom:872.521333pt;}
.y2d7{bottom:874.389333pt;}
.y11d{bottom:875.824000pt;}
.y180{bottom:876.222667pt;}
.y1f8{bottom:876.716000pt;}
.y272{bottom:879.508000pt;}
.y308{bottom:882.520000pt;}
.y341{bottom:885.986667pt;}
.ybd{bottom:887.132000pt;}
.y54{bottom:888.974667pt;}
.y2d6{bottom:890.010667pt;}
.y11c{bottom:892.561333pt;}
.y88{bottom:892.960000pt;}
.y271{bottom:894.120000pt;}
.y20{bottom:896.213333pt;}
.y307{bottom:897.861333pt;}
.y340{bottom:901.329333pt;}
.ybc{bottom:901.744000pt;}
.y2d5{bottom:905.633333pt;}
.y53{bottom:905.712000pt;}
.y270{bottom:908.732000pt;}
.y11b{bottom:909.298667pt;}
.y87{bottom:909.697333pt;}
.y306{bottom:913.204000pt;}
.ybb{bottom:916.356000pt;}
.y33f{bottom:916.670667pt;}
.y1f{bottom:921.320000pt;}
.y52{bottom:922.449333pt;}
.y11a{bottom:926.036000pt;}
.y86{bottom:926.434667pt;}
.y305{bottom:928.546667pt;}
.y2d4{bottom:929.224000pt;}
.y26f{bottom:929.745333pt;}
.yba{bottom:930.968000pt;}
.y33e{bottom:932.013333pt;}
.y51{bottom:939.186667pt;}
.y85{bottom:943.172000pt;}
.y2d3{bottom:945.264000pt;}
.yb9{bottom:945.580000pt;}
.y1e{bottom:946.425333pt;}
.y119{bottom:946.758667pt;}
.y33d{bottom:947.356000pt;}
.y304{bottom:947.874667pt;}
.y50{bottom:955.924000pt;}
.y84{bottom:959.909333pt;}
.y26e{bottom:960.508000pt;}
.y2d2{bottom:961.304000pt;}
.y33c{bottom:962.698667pt;}
.yb8{bottom:966.594667pt;}
.y1d{bottom:971.530667pt;}
.y4f{bottom:972.661333pt;}
.y83{bottom:976.646667pt;}
.y2d1{bottom:977.344000pt;}
.y26d{bottom:977.604000pt;}
.y303{bottom:977.762667pt;}
.y33b{bottom:978.041333pt;}
.y4e{bottom:993.384000pt;}
.yb7{bottom:994.700000pt;}
.y1b{bottom:1010.186667pt;}
.y4d{bottom:1046.810667pt;}
.h2e{height:8.672000pt;}
.h9{height:23.209028pt;}
.h2d{height:25.811318pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h16{height:28.023859pt;}
.h31{height:28.812032pt;}
.h28{height:28.893211pt;}
.h32{height:29.011285pt;}
.h27{height:29.144456pt;}
.h17{height:29.397999pt;}
.h37{height:29.514570pt;}
.h36{height:29.771219pt;}
.h21{height:29.825250pt;}
.h20{height:30.084600pt;}
.ha{height:30.945242pt;}
.h1a{height:31.067969pt;}
.hc{height:31.157778pt;}
.h19{height:31.338125pt;}
.h2b{height:32.586328pt;}
.h2a{height:32.869687pt;}
.h3a{height:33.287109pt;}
.h39{height:33.576563pt;}
.h24{height:33.637500pt;}
.h23{height:33.930000pt;}
.h3e{height:34.174766pt;}
.h3d{height:34.471938pt;}
.h43{height:34.574438pt;}
.hb{height:34.813542pt;}
.h1d{height:35.039062pt;}
.h12{height:35.052646pt;}
.h1c{height:35.343750pt;}
.h29{height:36.279445pt;}
.h30{height:36.361067pt;}
.h14{height:36.873667pt;}
.h25{height:36.923700pt;}
.h38{height:37.059648pt;}
.h3b{height:37.064208pt;}
.hf{height:37.087439pt;}
.h22{height:37.449750pt;}
.hd{height:38.415786pt;}
.h1e{height:38.462187pt;}
.h41{height:38.542969pt;}
.he{height:38.681455pt;}
.h40{height:38.878125pt;}
.h6{height:38.947124pt;}
.h1b{height:39.010156pt;}
.h3f{height:42.911172pt;}
.h42{height:43.284313pt;}
.h13{height:44.245639pt;}
.h11{height:44.250973pt;}
.h2f{height:44.436941pt;}
.h4{height:45.271688pt;}
.h15{height:47.309193pt;}
.h10{height:47.314526pt;}
.h8{height:48.481423pt;}
.h33{height:48.936619pt;}
.h34{height:51.704619pt;}
.h7{height:69.148877pt;}
.h5{height:82.003069pt;}
.h18{height:274.908000pt;}
.h1f{height:350.627840pt;}
.h3c{height:449.282533pt;}
.h2c{height:466.037333pt;}
.h26{height:650.693720pt;}
.h35{height:695.059267pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w7{width:9.000000pt;}
.w2{width:214.529007pt;}
.w3{width:482.181200pt;}
.w9{width:486.722133pt;}
.w5{width:491.736632pt;}
.w4{width:516.095872pt;}
.w8{width:567.728613pt;}
.w6{width:573.384667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x81{left:-470.290667pt;}
.x83{left:-296.450667pt;}
.x84{left:-268.131475pt;}
.xa5{left:-185.281067pt;}
.xab{left:-142.865067pt;}
.xa9{left:-140.577067pt;}
.xa8{left:-139.257067pt;}
.xa6{left:-137.321067pt;}
.xa7{left:-135.913067pt;}
.xaa{left:-125.001067pt;}
.x77{left:-72.004568pt;}
.x6e{left:-57.164133pt;}
.x72{left:-54.877568pt;}
.x7b{left:-51.491333pt;}
.xa4{left:-49.021520pt;}
.x0{left:0.000000pt;}
.xad{left:5.942933pt;}
.xae{left:37.095514pt;}
.x1{left:47.621333pt;}
.x2{left:51.606197pt;}
.x86{left:61.176000pt;}
.xce{left:76.309333pt;}
.x87{left:80.934667pt;}
.xb5{left:84.892000pt;}
.x79{left:89.666632pt;}
.xb6{left:95.854667pt;}
.xb4{left:97.397333pt;}
.xb1{left:99.244000pt;}
.xb2{left:100.792000pt;}
.xb0{left:101.880000pt;}
.x7a{left:109.970000pt;}
.x73{left:112.008832pt;}
.xaf{left:113.129333pt;}
.x70{left:116.675867pt;}
.x7d{left:122.348667pt;}
.x8e{left:123.966667pt;}
.x94{left:130.397333pt;}
.x9a{left:133.516000pt;}
.x92{left:135.260000pt;}
.x74{left:139.196539pt;}
.x71{left:144.996395pt;}
.x7e{left:150.667859pt;}
.x8d{left:152.714667pt;}
.xa1{left:154.262667pt;}
.x97{left:162.980000pt;}
.x82{left:171.869200pt;}
.x88{left:173.172000pt;}
.x89{left:175.204000pt;}
.x95{left:176.280000pt;}
.x8b{left:178.128000pt;}
.x9b{left:180.309333pt;}
.x8c{left:182.432000pt;}
.x9e{left:188.564000pt;}
.x9f{left:189.700000pt;}
.x8a{left:190.785333pt;}
.xa0{left:193.560000pt;}
.x98{left:205.580000pt;}
.x6{left:220.912000pt;}
.x3{left:221.858667pt;}
.x4{left:238.318667pt;}
.x5{left:239.924000pt;}
.x3d{left:244.061333pt;}
.x7{left:250.204000pt;}
.x68{left:254.534667pt;}
.x58{left:255.438667pt;}
.x3f{left:258.665333pt;}
.x3e{left:261.653333pt;}
.x63{left:267.065333pt;}
.xc7{left:268.174667pt;}
.x40{left:272.522667pt;}
.x1b{left:279.700000pt;}
.xc5{left:281.161333pt;}
.x1c{left:286.342667pt;}
.xc6{left:294.445333pt;}
.x55{left:299.506667pt;}
.x1d{left:302.850667pt;}
.x2b{left:306.073333pt;}
.x69{left:307.961333pt;}
.x1e{left:316.134667pt;}
.x1f{left:319.458667pt;}
.x4b{left:320.421333pt;}
.x64{left:326.097333pt;}
.x4c{left:328.626667pt;}
.x20{left:332.742667pt;}
.x35{left:336.634667pt;}
.xcd{left:342.378667pt;}
.x90{left:347.925333pt;}
.x36{left:349.918667pt;}
.x9d{left:353.638667pt;}
.x9c{left:354.958667pt;}
.xc9{left:360.790667pt;}
.xca{left:364.045333pt;}
.xbf{left:365.609333pt;}
.x2f{left:367.352000pt;}
.x62{left:370.133333pt;}
.x27{left:375.136000pt;}
.xcb{left:377.329333pt;}
.xc0{left:378.892000pt;}
.x30{left:380.634667pt;}
.x31{left:384.022667pt;}
.x4d{left:385.544000pt;}
.x28{left:388.420000pt;}
.x5e{left:389.457333pt;}
.x5f{left:393.462667pt;}
.xa2{left:396.186667pt;}
.x32{left:397.305333pt;}
.x4e{left:398.826667pt;}
.x2e{left:402.425333pt;}
.xa{left:403.321333pt;}
.xb7{left:406.749333pt;}
.xb{left:409.962667pt;}
.xc1{left:415.621333pt;}
.x60{left:416.868000pt;}
.xb8{left:420.033333pt;}
.xa3{left:421.937333pt;}
.x61{left:430.882667pt;}
.x96{left:436.652000pt;}
.x4f{left:442.557333pt;}
.x49{left:444.789333pt;}
.x29{left:451.141333pt;}
.x50{left:453.482667pt;}
.xbb{left:456.381333pt;}
.x4a{left:459.040000pt;}
.xbc{left:462.890667pt;}
.x5c{left:467.453333pt;}
.x51{left:471.750667pt;}
.x56{left:472.714667pt;}
.x99{left:473.846667pt;}
.x80{left:476.433333pt;}
.x52{left:477.800000pt;}
.x57{left:478.765333pt;}
.x12{left:480.077333pt;}
.xac{left:485.542787pt;}
.x13{left:486.720000pt;}
.x85{left:488.469333pt;}
.xb9{left:489.624000pt;}
.xbd{left:492.712000pt;}
.x2a{left:495.064000pt;}
.x78{left:498.866508pt;}
.x33{left:503.117333pt;}
.x93{left:506.908000pt;}
.x8f{left:508.905333pt;}
.x34{left:511.917333pt;}
.xba{left:519.524000pt;}
.xcc{left:523.316000pt;}
.x91{left:524.621333pt;}
.x59{left:531.229333pt;}
.xc8{left:533.397333pt;}
.x8{left:536.310667pt;}
.xc3{left:538.598667pt;}
.x9{left:542.952000pt;}
.x5a{left:544.513333pt;}
.x75{left:548.929333pt;}
.xe{left:552.186667pt;}
.x10{left:555.384000pt;}
.xf{left:558.828000pt;}
.x11{left:562.026667pt;}
.x76{left:565.556000pt;}
.x5b{left:571.721333pt;}
.x47{left:573.441333pt;}
.x6f{left:578.675733pt;}
.x48{left:588.832000pt;}
.x7c{left:590.668533pt;}
.x3b{left:596.960000pt;}
.x46{left:599.260000pt;}
.x6a{left:601.508000pt;}
.x3c{left:604.668000pt;}
.x41{left:607.236000pt;}
.x23{left:613.962667pt;}
.x6b{left:615.741333pt;}
.x65{left:618.074667pt;}
.x42{left:620.520000pt;}
.x43{left:623.773333pt;}
.x66{left:624.822667pt;}
.x24{left:627.245333pt;}
.x6c{left:628.918667pt;}
.x44{left:637.057333pt;}
.x67{left:638.106667pt;}
.x6d{left:642.985333pt;}
.x21{left:655.210667pt;}
.xb3{left:656.950667pt;}
.xbe{left:662.969333pt;}
.x25{left:664.726667pt;}
.xc{left:667.265333pt;}
.x22{left:668.494667pt;}
.xd{left:673.906667pt;}
.x37{left:677.018667pt;}
.x26{left:678.010667pt;}
.xc4{left:679.956000pt;}
.xc2{left:688.276000pt;}
.x38{left:690.302667pt;}
.x39{left:693.689333pt;}
.x7f{left:698.488000pt;}
.x18{left:700.141333pt;}
.x53{left:701.820000pt;}
.x19{left:706.784000pt;}
.x45{left:709.306667pt;}
.x3a{left:710.361333pt;}
.x1a{left:712.614667pt;}
.x54{left:717.337333pt;}
.x2c{left:720.212000pt;}
.x14{left:723.454667pt;}
.x2d{left:726.920000pt;}
.x5d{left:728.317333pt;}
.x15{left:730.097333pt;}
.x16{left:733.484000pt;}
.x17{left:740.126667pt;}
}




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