
    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_47559e8c7e0c51907184638c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight: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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight: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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight: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_c32a377083f35a52c7b8fe73.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_15bb1653d56725d603bfc508.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.226000;font-style:normal;font-weight: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_4a750acda10b8c4325fd3753.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.010000;font-style:normal;font-weight: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_b639a2f058c56d1fa15fb12f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_dae975e1d69cad1e7caf40be.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d3a6cb7d569cf9e88888d694.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006348;font-style:normal;font-weight: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_5a3f1f0707edc1bd73f76972.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.215332;font-style:normal;font-weight: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_c6f46410e414033664ca90ea.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_eb2498f9390470d74f1d3c2e.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_74fc455c0d843a10958516aa.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.003906;font-style:normal;font-weight: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_1b770d333bc520c03dd859f6.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_9839dd3a21366fbc353a974c.woff2')format("woff");}.fff{font-family:fff;line-height:1.006348;font-style:normal;font-weight: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_a8887b567663cf9f2be99ff3.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.215332;font-style:normal;font-weight: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_bfe315beac5c727100722815.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.003906;font-style:normal;font-weight: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_eb2498f9390470d74f1d3c2e.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_e2731a2ec9b601d4aa9c4bd1.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_d6e87cb633c12fd4e16c48df.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_e5f9af44865af7587ae1ce8c.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.006348;font-style:normal;font-weight: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_4e921df02ed6d7e23d4bb813.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.215332;font-style:normal;font-weight: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_e83187890f6b33485a8c5626.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.003906;font-style:normal;font-weight: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_eb2498f9390470d74f1d3c2e.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_d20feca6214b31a29c246b51.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_9839dd3a21366fbc353a974c.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.006348;font-style:normal;font-weight: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_8997cade67413ebbe5be2a4d.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.215332;font-style:normal;font-weight: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_74fc455c0d843a10958516aa.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.003906;font-style:normal;font-weight: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_eb2498f9390470d74f1d3c2e.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_73f23539098bd72f8fa72af3.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.040000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_7c7e9c19dfddcd9610b8e3a4.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_315842d8232b9fe0600c2567.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.006348;font-style:normal;font-weight: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_8edd876de54e6fa43b6ebb7d.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.215332;font-style:normal;font-weight: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_4de16f2d7c3c5e68c120a3f9.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.003906;font-style:normal;font-weight: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_eb2498f9390470d74f1d3c2e.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_d6e87cb633c12fd4e16c48df.woff2')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_177260fe0b0fdfccbf7a39c9.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.006348;font-style:normal;font-weight: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_660f2ef6e2b5bb64bb34bfb9.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.215332;font-style:normal;font-weight: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_eb2498f9390470d74f1d3c2e.woff2')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_06e90ec8bac203c5342234dd.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.003906;font-style:normal;font-weight: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_d6e87cb633c12fd4e16c48df.woff2')format("woff");}.ff29{font-family:ff29;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:ff2a;src:url('chunks/assets/font_177260fe0b0fdfccbf7a39c9.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.006348;font-style:normal;font-weight: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_660f2ef6e2b5bb64bb34bfb9.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.215332;font-style:normal;font-weight: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_eb2498f9390470d74f1d3c2e.woff2')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_06e90ec8bac203c5342234dd.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.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);}
.m14{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);}
.m26{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);}
.m8{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);}
.m21{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);}
.m17{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);}
.m7{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);}
.m29{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);}
.md{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);}
.m1d{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);}
.mb{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);}
.m23{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);}
.m28{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);}
.me{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);}
.m9{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);}
.m1c{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);}
.m5{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);}
.m19{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);}
.m4{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);}
.m16{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);}
.m2a{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.m10{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);}
.m1e{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);}
.mc{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);}
.m22{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);}
.m11{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);}
.m1f{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);}
.m24{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);}
.m1b{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);}
.m15{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);}
.m1a{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);}
.m20{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);}
.ma{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);}
.m25{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);}
.mf{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);}
.m6{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);}
.m27{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);}
.m3{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:32.874000px;}
.ls7f{letter-spacing:-0.222444px;}
.ls7c{letter-spacing:-0.204408px;}
.lsc0{letter-spacing:-0.194400px;}
.lsb0{letter-spacing:-0.188055px;}
.lsb6{letter-spacing:-0.178848px;}
.ls4b{letter-spacing:-0.169118px;}
.ls79{letter-spacing:-0.162324px;}
.lsc2{letter-spacing:-0.144288px;}
.lsc1{letter-spacing:-0.138276px;}
.ls2e{letter-spacing:-0.135510px;}
.lsb1{letter-spacing:-0.132745px;}
.lsb4{letter-spacing:-0.127214px;}
.lsab{letter-spacing:-0.121683px;}
.ls74{letter-spacing:-0.120240px;}
.lsa5{letter-spacing:-0.119232px;}
.lsb2{letter-spacing:-0.116152px;}
.ls4d{letter-spacing:-0.110801px;}
.ls26{letter-spacing:-0.100160px;}
.ls7d{letter-spacing:-0.096192px;}
.ls82{letter-spacing:-0.090180px;}
.lsae{letter-spacing:-0.088497px;}
.ls73{letter-spacing:-0.078156px;}
.ls70{letter-spacing:-0.072144px;}
.ls2b{letter-spacing:-0.070701px;}
.ls53{letter-spacing:-0.069980px;}
.ls81{letter-spacing:-0.066132px;}
.lsa9{letter-spacing:-0.060841px;}
.ls77{letter-spacing:-0.060120px;}
.ls27{letter-spacing:-0.058918px;}
.ls4e{letter-spacing:-0.058316px;}
.ls78{letter-spacing:-0.054108px;}
.ls28{letter-spacing:-0.053026px;}
.ls49{letter-spacing:-0.052485px;}
.lsa6{letter-spacing:-0.049779px;}
.ls7a{letter-spacing:-0.048096px;}
.ls24{letter-spacing:-0.047134px;}
.ls4a{letter-spacing:-0.046653px;}
.lsb3{letter-spacing:-0.044248px;}
.ls80{letter-spacing:-0.042084px;}
.ls2a{letter-spacing:-0.041242px;}
.ls50{letter-spacing:-0.040821px;}
.lsac{letter-spacing:-0.038717px;}
.ls75{letter-spacing:-0.036072px;}
.ls23{letter-spacing:-0.035351px;}
.ls54{letter-spacing:-0.034990px;}
.lsaf{letter-spacing:-0.033186px;}
.ls6e{letter-spacing:-0.030060px;}
.ls29{letter-spacing:-0.029459px;}
.ls48{letter-spacing:-0.029158px;}
.lsaa{letter-spacing:-0.027655px;}
.ls30{letter-spacing:-0.026460px;}
.ls52{letter-spacing:-0.026190px;}
.ls6f{letter-spacing:-0.024048px;}
.ls22{letter-spacing:-0.023567px;}
.ls4c{letter-spacing:-0.023327px;}
.lsb7{letter-spacing:-0.022124px;}
.ls2f{letter-spacing:-0.021168px;}
.ls51{letter-spacing:-0.020952px;}
.ls76{letter-spacing:-0.018036px;}
.ls2d{letter-spacing:-0.017675px;}
.ls4f{letter-spacing:-0.017495px;}
.lsa8{letter-spacing:-0.016593px;}
.ls72{letter-spacing:-0.012024px;}
.ls25{letter-spacing:-0.011784px;}
.ls55{letter-spacing:-0.011663px;}
.lsa7{letter-spacing:-0.011062px;}
.ls7b{letter-spacing:-0.010800px;}
.ls71{letter-spacing:-0.006012px;}
.ls2c{letter-spacing:-0.005892px;}
.ls56{letter-spacing:-0.005832px;}
.lsb5{letter-spacing:-0.005531px;}
.ls6d{letter-spacing:-0.004788px;}
.ls20{letter-spacing:-0.004692px;}
.ls47{letter-spacing:-0.004644px;}
.lsa4{letter-spacing:-0.004405px;}
.ls0{letter-spacing:0.000000px;}
.lsc8{letter-spacing:0.000292px;}
.lsca{letter-spacing:0.003040px;}
.lsc9{letter-spacing:0.003155px;}
.ls9d{letter-spacing:0.004968px;}
.ls3d{letter-spacing:0.005238px;}
.ls18{letter-spacing:0.005292px;}
.lsb9{letter-spacing:0.005400px;}
.ls93{letter-spacing:0.005531px;}
.ls34{letter-spacing:0.005832px;}
.ls12{letter-spacing:0.005892px;}
.ls5b{letter-spacing:0.006012px;}
.ls9c{letter-spacing:0.009936px;}
.lsb8{letter-spacing:0.010800px;}
.ls8f{letter-spacing:0.011062px;}
.ls46{letter-spacing:0.011663px;}
.ls60{letter-spacing:0.012024px;}
.ls8a{letter-spacing:0.014904px;}
.ls3c{letter-spacing:0.015714px;}
.ls17{letter-spacing:0.015876px;}
.ls66{letter-spacing:0.016200px;}
.ls92{letter-spacing:0.016593px;}
.ls37{letter-spacing:0.017495px;}
.ls1f{letter-spacing:0.017675px;}
.ls62{letter-spacing:0.018036px;}
.ls8b{letter-spacing:0.019872px;}
.ls3f{letter-spacing:0.020952px;}
.ls1a{letter-spacing:0.021168px;}
.ls6b{letter-spacing:0.021600px;}
.ls97{letter-spacing:0.022124px;}
.ls11{letter-spacing:0.023567px;}
.ls5f{letter-spacing:0.024048px;}
.ls87{letter-spacing:0.026430px;}
.ls67{letter-spacing:0.027000px;}
.ls98{letter-spacing:0.027655px;}
.ls31{letter-spacing:0.027866px;}
.ls8{letter-spacing:0.028153px;}
.ls57{letter-spacing:0.028728px;}
.ls38{letter-spacing:0.029158px;}
.lse{letter-spacing:0.029459px;}
.lsa1{letter-spacing:0.029808px;}
.lsbd{letter-spacing:0.032400px;}
.ls99{letter-spacing:0.033186px;}
.ls3b{letter-spacing:0.034990px;}
.ls1d{letter-spacing:0.035351px;}
.ls5d{letter-spacing:0.036072px;}
.ls95{letter-spacing:0.038717px;}
.ls9e{letter-spacing:0.039744px;}
.ls45{letter-spacing:0.040821px;}
.ls15{letter-spacing:0.041242px;}
.ls5e{letter-spacing:0.042084px;}
.lsba{letter-spacing:0.043200px;}
.ls8c{letter-spacing:0.044712px;}
.ls36{letter-spacing:0.046653px;}
.ls16{letter-spacing:0.047134px;}
.ls65{letter-spacing:0.048096px;}
.ls6c{letter-spacing:0.048600px;}
.ls9f{letter-spacing:0.049680px;}
.ls94{letter-spacing:0.049779px;}
.lsf{letter-spacing:0.053026px;}
.lsbb{letter-spacing:0.054000px;}
.ls61{letter-spacing:0.054108px;}
.ls8d{letter-spacing:0.054648px;}
.ls90{letter-spacing:0.055310px;}
.ls44{letter-spacing:0.058316px;}
.lsd{letter-spacing:0.058918px;}
.ls69{letter-spacing:0.059400px;}
.ls7e{letter-spacing:0.060120px;}
.ls3a{letter-spacing:0.064148px;}
.ls8e{letter-spacing:0.064584px;}
.lsc{letter-spacing:0.064809px;}
.ls5c{letter-spacing:0.066132px;}
.ls96{letter-spacing:0.066372px;}
.ls41{letter-spacing:0.068094px;}
.ls1c{letter-spacing:0.068796px;}
.lsa0{letter-spacing:0.069552px;}
.lsad{letter-spacing:0.071904px;}
.ls63{letter-spacing:0.072144px;}
.lsbc{letter-spacing:0.075600px;}
.ls21{letter-spacing:0.076593px;}
.ls3e{letter-spacing:0.078570px;}
.ls19{letter-spacing:0.079380px;}
.ls68{letter-spacing:0.081000px;}
.ls14{letter-spacing:0.082485px;}
.ls9a{letter-spacing:0.082966px;}
.ls83{letter-spacing:0.084168px;}
.ls43{letter-spacing:0.087475px;}
.ls13{letter-spacing:0.088376px;}
.lsb{letter-spacing:0.094268px;}
.lsa2{letter-spacing:0.094392px;}
.ls40{letter-spacing:0.099522px;}
.ls1b{letter-spacing:0.100548px;}
.ls6a{letter-spacing:0.102600px;}
.lsa3{letter-spacing:0.105090px;}
.ls9b{letter-spacing:0.110621px;}
.lsbf{letter-spacing:0.114228px;}
.ls35{letter-spacing:0.116633px;}
.ls1e{letter-spacing:0.117835px;}
.ls5a{letter-spacing:0.120240px;}
.ls91{letter-spacing:0.138276px;}
.ls42{letter-spacing:0.145791px;}
.lsbe{letter-spacing:0.150300px;}
.ls89{letter-spacing:0.167388px;}
.ls33{letter-spacing:0.171841px;}
.lsa{letter-spacing:0.173613px;}
.ls39{letter-spacing:0.174949px;}
.ls88{letter-spacing:0.176198px;}
.ls10{letter-spacing:0.176753px;}
.ls64{letter-spacing:0.180360px;}
.ls59{letter-spacing:0.181944px;}
.ls32{letter-spacing:0.185774px;}
.ls9{letter-spacing:0.187690px;}
.ls58{letter-spacing:0.191520px;}
.ls85{letter-spacing:0.642088px;}
.ls84{letter-spacing:0.648088px;}
.ls1{letter-spacing:2.989200px;}
.ls2{letter-spacing:2.998354px;}
.ls86{letter-spacing:11.716018px;}
.ls5{letter-spacing:11.954850px;}
.lsc6{letter-spacing:14.764573px;}
.lsc4{letter-spacing:14.824349px;}
.lsc5{letter-spacing:14.943900px;}
.lsc3{letter-spacing:15.003676px;}
.ls7{letter-spacing:15.063451px;}
.lsc7{letter-spacing:16.676400px;}
.ls6{letter-spacing:21.459440px;}
.ls3{letter-spacing:62.761200px;}
.ls4{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;}
}
.ws101{word-spacing:-60.120000px;}
.ws8b{word-spacing:-58.917600px;}
.wsca{word-spacing:-58.316400px;}
.ws21{word-spacing:-14.943900px;}
.ws8a{word-spacing:-14.817776px;}
.ws8c{word-spacing:-14.811885px;}
.wsc8{word-spacing:-14.579100px;}
.wscb{word-spacing:-14.520784px;}
.ws17f{word-spacing:-13.910566px;}
.ws169{word-spacing:-13.449600px;}
.wsfe{word-spacing:-12.161520px;}
.wsff{word-spacing:-11.970000px;}
.ws2b{word-spacing:-11.955150px;}
.ws87{word-spacing:-11.918290px;}
.wsc6{word-spacing:-11.796674px;}
.ws88{word-spacing:-11.730600px;}
.wsc7{word-spacing:-11.610900px;}
.wsd{word-spacing:-11.357400px;}
.ws17c{word-spacing:-11.188598px;}
.ws17d{word-spacing:-11.012400px;}
.ws6{word-spacing:-10.460700px;}
.ws14d{word-spacing:-3.883752px;}
.ws14e{word-spacing:-3.877740px;}
.ws110{word-spacing:-3.498984px;}
.ws15b{word-spacing:-3.474936px;}
.ws15c{word-spacing:-3.444876px;}
.ws111{word-spacing:-3.426840px;}
.ws32{word-spacing:-3.347434px;}
.ws178{word-spacing:-3.287658px;}
.ws179{word-spacing:-3.227882px;}
.ws123{word-spacing:-3.216420px;}
.ws1ee{word-spacing:-3.168107px;}
.ws128{word-spacing:-3.138264px;}
.wsf0{word-spacing:-3.137422px;}
.ws127{word-spacing:-3.126240px;}
.ws122{word-spacing:-3.096180px;}
.wsfb{word-spacing:-3.090769px;}
.ws16e{word-spacing:-3.048556px;}
.wsfa{word-spacing:-3.038284px;}
.ws121{word-spacing:-2.981952px;}
.ws1ad{word-spacing:-2.925920px;}
.ws1ae{word-spacing:-2.876141px;}
.wsae{word-spacing:-2.780911px;}
.ws1dc{word-spacing:-2.770200px;}
.ws5e{word-spacing:-2.749678px;}
.ws11{word-spacing:-2.743718px;}
.ws1dd{word-spacing:-2.727000px;}
.ws1c6{word-spacing:-2.548584px;}
.ws1c7{word-spacing:-2.508840px;}
.ws10c{word-spacing:-2.488968px;}
.ws1e6{word-spacing:-2.428848px;}
.ws10b{word-spacing:-2.416824px;}
.wsaf{word-spacing:-2.350812px;}
.ws76{word-spacing:-2.271473px;}
.ws1aa{word-spacing:-2.256664px;}
.ws1d1{word-spacing:-2.234540px;}
.ws1d7{word-spacing:-2.211697px;}
.ws1fa{word-spacing:-2.205734px;}
.ws16c{word-spacing:-2.199748px;}
.ws50{word-spacing:-2.092146px;}
.ws109{word-spacing:-2.068128px;}
.ws1e1{word-spacing:-2.020032px;}
.wsdc{word-spacing:-2.017747px;}
.wsba{word-spacing:-2.016252px;}
.wse6{word-spacing:-1.995678px;}
.ws10a{word-spacing:-1.989972px;}
.ws1a3{word-spacing:-1.963519px;}
.wsdb{word-spacing:-1.947768px;}
.wsb9{word-spacing:-1.942164px;}
.ws202{word-spacing:-1.936742px;}
.ws1e2{word-spacing:-1.923840px;}
.wse5{word-spacing:-1.922346px;}
.ws1e7{word-spacing:-1.917828px;}
.ws19c{word-spacing:-1.908209px;}
.wsdd{word-spacing:-1.889451px;}
.ws1cb{word-spacing:-1.858429px;}
.ws86{word-spacing:-1.853044px;}
.ws16f{word-spacing:-1.793268px;}
.ws160{word-spacing:-1.791576px;}
.ws1cc{word-spacing:-1.769933px;}
.ws162{word-spacing:-1.767528px;}
.ws1d2{word-spacing:-1.764402px;}
.ws1fb{word-spacing:-1.721549px;}
.ws67{word-spacing:-1.673717px;}
.ws12c{word-spacing:-1.641600px;}
.ws12a{word-spacing:-1.630800px;}
.wscf{word-spacing:-1.627028px;}
.ws1d9{word-spacing:-1.620000px;}
.ws12b{word-spacing:-1.603800px;}
.wsd0{word-spacing:-1.603701px;}
.ws47{word-spacing:-1.554166px;}
.ws1a4{word-spacing:-1.543160px;}
.ws1c3{word-spacing:-1.490400px;}
.ws1ac{word-spacing:-1.382760px;}
.ws72{word-spacing:-1.374839px;}
.ws132{word-spacing:-1.352700px;}
.ws161{word-spacing:-1.346688px;}
.ws103{word-spacing:-1.344960px;}
.ws133{word-spacing:-1.340676px;}
.ws1ea{word-spacing:-1.328652px;}
.ws5f{word-spacing:-1.315063px;}
.wsd6{word-spacing:-1.306287px;}
.ws1de{word-spacing:-1.296000px;}
.ws1d8{word-spacing:-1.269000px;}
.ws193{word-spacing:-1.255546px;}
.ws26{word-spacing:-1.255288px;}
.ws1ab{word-spacing:-1.238953px;}
.ws1d4{word-spacing:-1.222360px;}
.ws1a6{word-spacing:-1.205767px;}
.ws6c{word-spacing:-1.195512px;}
.ws1c8{word-spacing:-1.192320px;}
.ws1c2{word-spacing:-1.167480px;}
.ws1a5{word-spacing:-1.150456px;}
.wsd5{word-spacing:-1.137170px;}
.ws4b{word-spacing:-1.135736px;}
.ws1f5{word-spacing:-1.075961px;}
.ws1df{word-spacing:-1.058400px;}
.ws10f{word-spacing:-1.028052px;}
.wsad{word-spacing:-1.019274px;}
.ws51{word-spacing:-1.016185px;}
.wsd3{word-spacing:-1.003042px;}
.ws135{word-spacing:-0.997992px;}
.ws10e{word-spacing:-0.973944px;}
.ws1c9{word-spacing:-0.973728px;}
.ws55{word-spacing:-0.956410px;}
.wsac{word-spacing:-0.954465px;}
.ws164{word-spacing:-0.943884px;}
.ws1a8{word-spacing:-0.929215px;}
.wsd4{word-spacing:-0.909736px;}
.ws1a7{word-spacing:-0.907091px;}
.ws73{word-spacing:-0.896634px;}
.ws3b{word-spacing:-0.836858px;}
.ws7e{word-spacing:-0.717307px;}
.ws1a{word-spacing:-0.645581px;}
.wsa9{word-spacing:-0.618635px;}
.wsf5{word-spacing:-0.618154px;}
.ws146{word-spacing:-0.613224px;}
.ws65{word-spacing:-0.597756px;}
.ws2{word-spacing:-0.585799px;}
.wsf6{word-spacing:-0.583164px;}
.ws145{word-spacing:-0.565128px;}
.wsb1{word-spacing:-0.559717px;}
.ws192{word-spacing:-0.547573px;}
.wsb0{word-spacing:-0.542042px;}
.ws203{word-spacing:-0.537984px;}
.ws181{word-spacing:-0.478205px;}
.wsb2{word-spacing:-0.477233px;}
.ws80{word-spacing:-0.418429px;}
.ws31{word-spacing:-0.358654px;}
.ws148{word-spacing:-0.300600px;}
.ws39{word-spacing:-0.298878px;}
.wsda{word-spacing:-0.285750px;}
.wsa3{word-spacing:-0.282804px;}
.ws104{word-spacing:-0.277704px;}
.ws1d0{word-spacing:-0.276552px;}
.ws91{word-spacing:-0.272150px;}
.ws11a{word-spacing:-0.270540px;}
.wscc{word-spacing:-0.269373px;}
.ws8f{word-spacing:-0.268992px;}
.wsb6{word-spacing:-0.259237px;}
.ws184{word-spacing:-0.255488px;}
.ws18d{word-spacing:-0.254428px;}
.ws119{word-spacing:-0.246492px;}
.ws28{word-spacing:-0.239102px;}
.ws12e{word-spacing:-0.232200px;}
.wsa1{word-spacing:-0.229779px;}
.wsa2{word-spacing:-0.217995px;}
.ws13{word-spacing:-0.215194px;}
.ws12f{word-spacing:-0.194400px;}
.wsb7{word-spacing:-0.185220px;}
.wse3{word-spacing:-0.183330px;}
.ws2c{word-spacing:-0.179327px;}
.ws137{word-spacing:-0.168336px;}
.ws8e{word-spacing:-0.161395px;}
.wsb8{word-spacing:-0.148176px;}
.wse4{word-spacing:-0.146664px;}
.wsf9{word-spacing:-0.145791px;}
.ws33{word-spacing:-0.119551px;}
.ws182{word-spacing:-0.107597px;}
.ws105{word-spacing:-0.081396px;}
.ws92{word-spacing:-0.079768px;}
.wscd{word-spacing:-0.078954px;}
.ws185{word-spacing:-0.074884px;}
.ws100{word-spacing:-0.060120px;}
.ws22{word-spacing:-0.059776px;}
.ws89{word-spacing:-0.058918px;}
.wsc9{word-spacing:-0.058316px;}
.ws17e{word-spacing:-0.055310px;}
.ws1b{word-spacing:-0.053798px;}
.ws190{word-spacing:-0.049779px;}
.ws207{word-spacing:-0.010291px;}
.ws205{word-spacing:-0.009312px;}
.ws213{word-spacing:-0.007661px;}
.ws204{word-spacing:-0.005971px;}
.ws20c{word-spacing:-0.005885px;}
.ws4{word-spacing:-0.005369px;}
.ws2a{word-spacing:-0.000448px;}
.ws0{word-spacing:0.000000px;}
.ws19a{word-spacing:0.016593px;}
.ws94{word-spacing:0.017675px;}
.ws1b4{word-spacing:0.022124px;}
.ws158{word-spacing:0.030060px;}
.ws1c1{word-spacing:0.033186px;}
.ws16b{word-spacing:0.047821px;}
.ws129{word-spacing:0.048096px;}
.ws19{word-spacing:0.053798px;}
.ws1f{word-spacing:0.059776px;}
.ws10d{word-spacing:0.060120px;}
.wsa0{word-spacing:0.064809px;}
.ws112{word-spacing:0.072144px;}
.ws157{word-spacing:0.078156px;}
.wsa5{word-spacing:0.088376px;}
.ws136{word-spacing:0.096192px;}
.ws18e{word-spacing:0.099559px;}
.ws130{word-spacing:0.102600px;}
.ws18b{word-spacing:0.104328px;}
.wsf1{word-spacing:0.104970px;}
.ws18f{word-spacing:0.105090px;}
.ws17{word-spacing:0.107597px;}
.ws1eb{word-spacing:0.108216px;}
.wsea{word-spacing:0.109998px;}
.wsbe{word-spacing:0.111132px;}
.ws11e{word-spacing:0.114228px;}
.ws1c0{word-spacing:0.116152px;}
.ws20{word-spacing:0.119551px;}
.ws1af{word-spacing:0.121683px;}
.ws1a9{word-spacing:0.127214px;}
.wse2{word-spacing:0.134128px;}
.ws131{word-spacing:0.135000px;}
.ws14f{word-spacing:0.138276px;}
.ws9f{word-spacing:0.147294px;}
.ws1ca{word-spacing:0.149040px;}
.ws11f{word-spacing:0.150300px;}
.ws118{word-spacing:0.156312px;}
.ws206{word-spacing:0.161395px;}
.ws1e0{word-spacing:0.162000px;}
.ws150{word-spacing:0.162324px;}
.wsa6{word-spacing:0.164969px;}
.ws18c{word-spacing:0.168912px;}
.ws36{word-spacing:0.179327px;}
.ws144{word-spacing:0.192384px;}
.ws14{word-spacing:0.215194px;}
.ws23{word-spacing:0.239102px;}
.ws15{word-spacing:0.268992px;}
.ws35{word-spacing:0.298878px;}
.ws20a{word-spacing:0.322790px;}
.ws1e{word-spacing:0.358654px;}
.ws1ff{word-spacing:0.376589px;}
.ws6b{word-spacing:0.418429px;}
.wsd9{word-spacing:0.425710px;}
.ws124{word-spacing:0.432864px;}
.ws113{word-spacing:0.444888px;}
.wse7{word-spacing:0.445230px;}
.wsbb{word-spacing:0.449820px;}
.ws1c5{word-spacing:0.452088px;}
.ws1c4{word-spacing:0.462024px;}
.ws163{word-spacing:0.462924px;}
.wsd8{word-spacing:0.466531px;}
.wsd7{word-spacing:0.472363px;}
.ws5d{word-spacing:0.478205px;}
.ws191{word-spacing:0.481200px;}
.ws1db{word-spacing:0.491400px;}
.ws1da{word-spacing:0.502200px;}
.ws3c{word-spacing:0.537980px;}
.ws1fc{word-spacing:0.537984px;}
.wse{word-spacing:0.556186px;}
.ws68{word-spacing:0.597756px;}
.ws2d{word-spacing:0.657532px;}
.ws49{word-spacing:0.717307px;}
.wsde{word-spacing:0.728955px;}
.ws48{word-spacing:0.777083px;}
.wsfc{word-spacing:0.781440px;}
.wsd2{word-spacing:0.787271px;}
.ws201{word-spacing:0.806976px;}
.wsdf{word-spacing:0.810598px;}
.ws15e{word-spacing:0.817632px;}
.wsaa{word-spacing:0.818955px;}
.ws15d{word-spacing:0.829656px;}
.ws79{word-spacing:0.836858px;}
.ws215{word-spacing:0.860774px;}
.ws170{word-spacing:0.896634px;}
.ws78{word-spacing:0.956410px;}
.ws25{word-spacing:1.016185px;}
.ws19d{word-spacing:1.034304px;}
.ws196{word-spacing:1.067491px;}
.ws27{word-spacing:1.075961px;}
.ws9c{word-spacing:1.101759px;}
.wsc0{word-spacing:1.119434px;}
.ws3a{word-spacing:1.135736px;}
.ws13f{word-spacing:1.166328px;}
.ws214{word-spacing:1.183565px;}
.ws4c{word-spacing:1.195512px;}
.ws140{word-spacing:1.208412px;}
.ws20b{word-spacing:1.237363px;}
.ws6d{word-spacing:1.255288px;}
.ws54{word-spacing:1.315063px;}
.ws1d3{word-spacing:1.360636px;}
.wsc{word-spacing:1.380812px;}
.wsc1{word-spacing:1.390455px;}
.ws19f{word-spacing:1.399353px;}
.ws19e{word-spacing:1.427008px;}
.ws4e{word-spacing:1.434614px;}
.ws1e9{word-spacing:1.478952px;}
.ws210{word-spacing:1.506355px;}
.ws9b{word-spacing:1.520074px;}
.ws95{word-spacing:1.531858px;}
.ws1e8{word-spacing:1.551096px;}
.ws3d{word-spacing:1.554166px;}
.ws96{word-spacing:1.555425px;}
.ws52{word-spacing:1.613941px;}
.ws188{word-spacing:1.614600px;}
.ws60{word-spacing:1.733492px;}
.ws1a1{word-spacing:1.769933px;}
.ws18a{word-spacing:1.773576px;}
.ws20f{word-spacing:1.775347px;}
.ws189{word-spacing:1.783512px;}
.ws1a0{word-spacing:1.792057px;}
.ws9e{word-spacing:1.796987px;}
.ws187{word-spacing:1.813320px;}
.wsd1{word-spacing:1.836967px;}
.ws74{word-spacing:1.853044px;}
.ws97{word-spacing:1.855904px;}
.ws98{word-spacing:1.867688px;}
.ws1f4{word-spacing:1.912819px;}
.ws9d{word-spacing:1.914822px;}
.ws66{word-spacing:1.972595px;}
.ws56{word-spacing:2.032370px;}
.ws90{word-spacing:2.044339px;}
.ws10{word-spacing:2.053494px;}
.ws57{word-spacing:2.092146px;}
.ws7d{word-spacing:2.151922px;}
.ws211{word-spacing:2.151936px;}
.wsc2{word-spacing:2.191735px;}
.wsbf{word-spacing:2.209410px;}
.wse9{word-spacing:2.210436px;}
.ws3f{word-spacing:2.211697px;}
.wsbd{word-spacing:2.233224px;}
.wse8{word-spacing:2.257578px;}
.ws12d{word-spacing:2.268000px;}
.ws6e{word-spacing:2.271473px;}
.wsbc{word-spacing:2.280852px;}
.ws7b{word-spacing:2.331248px;}
.ws1f6{word-spacing:2.391024px;}
.ws19b{word-spacing:2.406002px;}
.ws71{word-spacing:2.450800px;}
.wsf2{word-spacing:2.495942px;}
.wsc3{word-spacing:2.498106px;}
.ws3{word-spacing:2.510568px;}
.ws24{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.wse0{word-spacing:2.519268px;}
.ws1f1{word-spacing:2.570351px;}
.wsf3{word-spacing:2.571753px;}
.ws38{word-spacing:2.630126px;}
.ws116{word-spacing:2.651292px;}
.ws115{word-spacing:2.735460px;}
.ws41{word-spacing:2.749678px;}
.wsc5{word-spacing:2.809453px;}
.wsf4{word-spacing:2.845840px;}
.ws139{word-spacing:2.869229px;}
.wsf{word-spacing:2.869236px;}
.ws3e{word-spacing:2.929004px;}
.ws120{word-spacing:2.957904px;}
.ws20d{word-spacing:2.958912px;}
.ws17a{word-spacing:2.988780px;}
.ws1f8{word-spacing:3.048556px;}
.ws1ef{word-spacing:3.108331px;}
.ws4f{word-spacing:3.168107px;}
.ws212{word-spacing:3.226474px;}
.ws29{word-spacing:3.227882px;}
.ws200{word-spacing:3.227904px;}
.ws1d6{word-spacing:3.287658px;}
.ws13d{word-spacing:3.336660px;}
.ws85{word-spacing:3.347434px;}
.ws1c{word-spacing:3.357001px;}
.ws13e{word-spacing:3.360708px;}
.ws20e{word-spacing:3.389299px;}
.ws43{word-spacing:3.407209px;}
.ws7c{word-spacing:3.466985px;}
.ws217{word-spacing:3.496896px;}
.ws1d{word-spacing:3.586536px;}
.wsa8{word-spacing:3.617541px;}
.wsa7{word-spacing:3.629324px;}
.ws62{word-spacing:3.646312px;}
.ws1a2{word-spacing:3.694735px;}
.ws53{word-spacing:3.706087px;}
.ws11c{word-spacing:3.715416px;}
.ws1b0{word-spacing:3.722390px;}
.ws195{word-spacing:3.733452px;}
.ws194{word-spacing:3.744514px;}
.ws1b1{word-spacing:3.761107px;}
.ws4d{word-spacing:3.825638px;}
.ws34{word-spacing:3.885414px;}
.ws1f0{word-spacing:3.945190px;}
.ws11b{word-spacing:4.003992px;}
.ws58{word-spacing:4.004965px;}
.ws11d{word-spacing:4.022028px;}
.ws12{word-spacing:4.034880px;}
.ws114{word-spacing:4.058100px;}
.ws2e{word-spacing:4.064741px;}
.ws209{word-spacing:4.088678px;}
.wsc4{word-spacing:4.124516px;}
.ws7f{word-spacing:4.244068px;}
.ws42{word-spacing:4.303843px;}
.wsab{word-spacing:4.354011px;}
.ws59{word-spacing:4.363619px;}
.ws14c{word-spacing:4.400784px;}
.ws30{word-spacing:4.423394px;}
.ws108{word-spacing:4.442868px;}
.ws107{word-spacing:4.448880px;}
.ws14b{word-spacing:4.466916px;}
.ws64{word-spacing:4.483170px;}
.ws167{word-spacing:4.519066px;}
.ws84{word-spacing:4.542946px;}
.ws180{word-spacing:4.572864px;}
.ws2f{word-spacing:4.602721px;}
.ws16d{word-spacing:4.662497px;}
.ws1fe{word-spacing:4.680461px;}
.wsa4{word-spacing:4.683949px;}
.ws6f{word-spacing:4.722272px;}
.ws143{word-spacing:4.737456px;}
.ws1b8{word-spacing:4.745632px;}
.ws142{word-spacing:4.755492px;}
.ws15a{word-spacing:4.761504px;}
.ws159{word-spacing:4.773528px;}
.ws141{word-spacing:4.815612px;}
.ws70{word-spacing:4.901599px;}
.ws1bd{word-spacing:5.016653px;}
.ws1f7{word-spacing:5.021150px;}
.ws1bc{word-spacing:5.060902px;}
.ws17b{word-spacing:5.080926px;}
.ws81{word-spacing:5.200477px;}
.ws208{word-spacing:5.218445px;}
.ws1b6{word-spacing:5.337454px;}
.ws134{word-spacing:5.344668px;}
.ws5a{word-spacing:5.379804px;}
.ws1b7{word-spacing:5.420419px;}
.ws1b5{word-spacing:5.431481px;}
.wsa{word-spacing:5.481407px;}
.ws125{word-spacing:5.494968px;}
.ws5c{word-spacing:5.499355px;}
.ws126{word-spacing:5.500980px;}
.ws1f2{word-spacing:5.559131px;}
.ws75{word-spacing:5.618906px;}
.ws40{word-spacing:5.678682px;}
.ws1bf{word-spacing:5.702502px;}
.ws1be{word-spacing:5.724626px;}
.ws13a{word-spacing:5.798233px;}
.ws166{word-spacing:5.801580px;}
.ws165{word-spacing:5.819616px;}
.ws14a{word-spacing:5.849676px;}
.ws61{word-spacing:5.858009px;}
.ws18{word-spacing:5.864026px;}
.ws149{word-spacing:5.951880px;}
.ws44{word-spacing:6.037336px;}
.wsed{word-spacing:6.053242px;}
.wsee{word-spacing:6.064906px;}
.wsef{word-spacing:6.088232px;}
.ws216{word-spacing:6.133018px;}
.ws77{word-spacing:6.156887px;}
.ws147{word-spacing:6.174324px;}
.ws153{word-spacing:6.210396px;}
.ws37{word-spacing:6.216662px;}
.ws154{word-spacing:6.222420px;}
.ws16{word-spacing:6.240614px;}
.ws4a{word-spacing:6.276438px;}
.ws15f{word-spacing:6.306588px;}
.ws5b{word-spacing:6.336214px;}
.wsec{word-spacing:6.362319px;}
.ws1b9{word-spacing:6.382820px;}
.ws199{word-spacing:6.421537px;}
.wseb{word-spacing:6.449794px;}
.ws45{word-spacing:6.515540px;}
.ws63{word-spacing:6.575316px;}
.ws6a{word-spacing:6.635092px;}
.ws197{word-spacing:6.742338px;}
.ws83{word-spacing:6.754643px;}
.ws156{word-spacing:6.757488px;}
.ws69{word-spacing:6.814418px;}
.ws198{word-spacing:6.836365px;}
.ws1cf{word-spacing:6.941455px;}
.ws1ce{word-spacing:7.007828px;}
.ws138{word-spacing:7.053521px;}
.ws1cd{word-spacing:7.068669px;}
.ws1f9{word-spacing:7.113296px;}
.ws82{word-spacing:7.232848px;}
.ws13b{word-spacing:7.244460px;}
.ws155{word-spacing:7.292556px;}
.ws7a{word-spacing:7.292623px;}
.ws102{word-spacing:7.316582px;}
.ws8d{word-spacing:7.370381px;}
.ws177{word-spacing:7.412174px;}
.ws46{word-spacing:7.471950px;}
.ws1b3{word-spacing:7.494559px;}
.ws1b2{word-spacing:7.511152px;}
.ws13c{word-spacing:7.521012px;}
.ws1e5{word-spacing:7.545060px;}
.ws183{word-spacing:7.585574px;}
.ws1e4{word-spacing:7.617204px;}
.ws1e3{word-spacing:7.683336px;}
.ws151{word-spacing:7.701372px;}
.ws152{word-spacing:7.863696px;}
.ws1d5{word-spacing:8.009930px;}
.ws1f3{word-spacing:8.368584px;}
.wsb3{word-spacing:9.226496px;}
.ws117{word-spacing:9.420804px;}
.wsf8{word-spacing:9.517236px;}
.wsf7{word-spacing:9.558058px;}
.wsb4{word-spacing:9.615352px;}
.ws8{word-spacing:9.833058px;}
.wse1{word-spacing:10.537773px;}
.ws186{word-spacing:10.686433px;}
.wsce{word-spacing:11.271862px;}
.ws9a{word-spacing:11.359313px;}
.ws93{word-spacing:11.388066px;}
.ws99{word-spacing:11.488932px;}
.ws106{word-spacing:11.615688px;}
.ws9{word-spacing:11.841512px;}
.ws1bb{word-spacing:12.323157px;}
.ws1ba{word-spacing:12.472495px;}
.ws1fd{word-spacing:12.831764px;}
.wsb5{word-spacing:13.103274px;}
.wsfd{word-spacing:14.730723px;}
.ws5{word-spacing:15.481836px;}
.wsb{word-spacing:16.067635px;}
.ws7{word-spacing:22.339429px;}
.ws171{word-spacing:89.215219px;}
.ws168{word-spacing:113.101709px;}
.ws176{word-spacing:176.670038px;}
.ws172{word-spacing:202.873766px;}
.ws174{word-spacing:203.569238px;}
.ws1ed{word-spacing:226.814054px;}
.ws173{word-spacing:243.652954px;}
.ws175{word-spacing:244.347744px;}
.ws16a{word-spacing:261.675418px;}
.ws1ec{word-spacing:337.253443px;}
._1a{margin-left:-26.779469px;}
._3d{margin-left:-25.028164px;}
._3c{margin-left:-7.800628px;}
._7{margin-left:-6.677312px;}
._c{margin-left:-4.841856px;}
._0{margin-left:-3.765852px;}
._18{margin-left:-2.630135px;}
._5{margin-left:-1.464498px;}
._2c{width:1.140214px;}
._6{width:2.999822px;}
._19{width:7.113296px;}
._1{width:10.460700px;}
._8{width:11.739992px;}
._2{width:12.974970px;}
._34{width:14.083007px;}
._9{width:15.440141px;}
._d{width:16.569907px;}
._16{width:17.603910px;}
._a{width:18.614246px;}
._1b{width:19.660946px;}
._e{width:20.712384px;}
._10{width:22.176748px;}
._1c{width:23.384597px;}
._3{width:25.314894px;}
._15{width:26.839244px;}
._3a{width:27.855430px;}
._11{width:28.901498px;}
._b{width:30.133415px;}
._4{width:31.256572px;}
._14{width:32.667361px;}
._f{width:33.892992px;}
._2b{width:34.908950px;}
._1d{width:37.449401px;}
._17{width:39.182902px;}
._37{width:40.766959px;}
._39{width:42.799330px;}
._32{width:189.424166px;}
._31{width:216.323366px;}
._36{width:274.466218px;}
._35{width:275.837616px;}
._27{width:291.264538px;}
._33{width:302.131814px;}
._3b{width:316.059613px;}
._2a{width:343.986970px;}
._26{width:434.792682px;}
._1f{width:462.128256px;}
._21{width:475.577856px;}
._24{width:502.477056px;}
._25{width:539.167565px;}
._22{width:604.586419px;}
._28{width:612.010598px;}
._29{width:664.302643px;}
._20{width:683.939059px;}
._1e{width:699.594394px;}
._12{width:724.707365px;}
._23{width:879.872832px;}
._38{width:1901.124142px;}
._2e{width:2027.567322px;}
._2d{width:2048.481832px;}
._30{width:2066.538434px;}
._2f{width:2500.851000px;}
._13{width:2524.761000px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs16{font-size:44.049600px;}
.fs8{font-size:45.429600px;}
.fsf{font-size:46.443600px;}
.fsc{font-size:46.922400px;}
.fsa{font-size:47.820600px;}
.fs12{font-size:47.880000px;}
.fs18{font-size:49.680000px;}
.fs11{font-size:52.380000px;}
.fse{font-size:52.920000px;}
.fsb{font-size:53.798400px;}
.fs14{font-size:54.000000px;}
.fs17{font-size:55.310400px;}
.fs15{font-size:56.058000px;}
.fs10{font-size:58.316400px;}
.fsd{font-size:58.917600px;}
.fs6{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs13{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:107.596800px;}
.y230{bottom:-676.536306px;}
.y262{bottom:-666.902526px;}
.y253{bottom:-617.900136px;}
.y275{bottom:-610.263777px;}
.y252{bottom:-600.181450px;}
.y274{bottom:-592.545090px;}
.y251{bottom:-582.462763px;}
.y273{bottom:-574.909369px;}
.y250{bottom:-564.827042px;}
.y272{bottom:-557.190682px;}
.y24f{bottom:-547.108355px;}
.y271{bottom:-539.554961px;}
.y24e{bottom:-529.472634px;}
.y270{bottom:-521.836275px;}
.y24d{bottom:-511.753948px;}
.y26f{bottom:-504.117588px;}
.y24c{bottom:-494.035261px;}
.y24b{bottom:-476.399540px;}
.y26e{bottom:-470.253354px;}
.y24a{bottom:-458.680853px;}
.y26d{bottom:-454.272540px;}
.y249{bottom:-440.962167px;}
.y26c{bottom:-438.374940px;}
.y134{bottom:-426.326204px;}
.y248{bottom:-423.326446px;}
.y26b{bottom:-422.477340px;}
.y26a{bottom:-406.496526px;}
.y247{bottom:-405.607759px;}
.y246{bottom:-387.972038px;}
.y269{bottom:-385.879326px;}
.y245{bottom:-370.253351px;}
.y153{bottom:-363.200848px;}
.y1a4{bottom:-358.348050px;}
.y244{bottom:-352.534665px;}
.y152{bottom:-344.606664px;}
.y243{bottom:-334.897561px;}
.y151{bottom:-325.925005px;}
.y242{bottom:-317.178874px;}
.y150{bottom:-307.243346px;}
.y241{bottom:-299.541771px;}
.y27e{bottom:-298.834050px;}
.y1c4{bottom:-298.313793px;}
.y14f{bottom:-288.649162px;}
.y240{bottom:-281.823084px;}
.y1c3{bottom:-279.144531px;}
.y14e{bottom:-269.967504px;}
.y23f{bottom:-264.104397px;}
.y1c2{bottom:-259.885089px;}
.y14d{bottom:-251.373319px;}
.y23e{bottom:-246.468676px;}
.y166{bottom:-245.113050px;}
.y1c1{bottom:-240.715827px;}
.y291{bottom:-237.270192px;}
.y14c{bottom:-232.691661px;}
.y23d{bottom:-228.749990px;}
.y1c0{bottom:-221.456385px;}
.y109{bottom:-220.326099px;}
.y290{bottom:-218.010750px;}
.y23c{bottom:-211.114269px;}
.y14b{bottom:-209.732494px;}
.y1bf{bottom:-202.196943px;}
.y28f{bottom:-198.841488px;}
.y23b{bottom:-193.395582px;}
.y1be{bottom:-183.027681px;}
.y184{bottom:-180.401196px;}
.y28e{bottom:-179.582046px;}
.y23a{bottom:-175.676895px;}
.y14a{bottom:-173.590905px;}
.y1bd{bottom:-163.768239px;}
.y183{bottom:-161.231934px;}
.y28d{bottom:-160.412784px;}
.y128{bottom:-158.143829px;}
.y239{bottom:-158.041174px;}
.y149{bottom:-154.909246px;}
.y1bc{bottom:-144.508797px;}
.y182{bottom:-141.972492px;}
.y28c{bottom:-141.153342px;}
.y238{bottom:-140.322488px;}
.y127{bottom:-139.269576px;}
.y148{bottom:-136.315062px;}
.y181{bottom:-122.713050px;}
.y237{bottom:-122.603801px;}
.y28b{bottom:-121.893900px;}
.y1bb{bottom:-120.838050px;}
.y126{bottom:-120.483699px;}
.y147{bottom:-117.633403px;}
.y236{bottom:-104.968080px;}
.y235{bottom:-87.249393px;}
.y180{bottom:-85.903950px;}
.y28a{bottom:-85.084950px;}
.y125{bottom:-84.409458px;}
.y1ba{bottom:-84.028950px;}
.y146{bottom:-81.928431px;}
.y268{bottom:-77.698554px;}
.y17f{bottom:-68.533500px;}
.y289{bottom:-67.714500px;}
.y124{bottom:-67.299099px;}
.y1b9{bottom:-66.658500px;}
.y234{bottom:-65.472306px;}
.y145{bottom:-65.079094px;}
.y267{bottom:-61.717740px;}
.y17e{bottom:-51.253500px;}
.y288{bottom:-50.434500px;}
.y123{bottom:-50.364699px;}
.y1b8{bottom:-49.288050px;}
.y144{bottom:-48.317495px;}
.y266{bottom:-45.820140px;}
.y17d{bottom:-33.973500px;}
.y122{bottom:-33.430299px;}
.y287{bottom:-33.154500px;}
.y1b7{bottom:-32.008050px;}
.y233{bottom:-31.607520px;}
.y143{bottom:-31.468158px;}
.y265{bottom:-29.839326px;}
.y17c{bottom:-16.603050px;}
.y121{bottom:-16.495899px;}
.y286{bottom:-15.784050px;}
.y232{bottom:-15.626706px;}
.y1b6{bottom:-14.728050px;}
.y142{bottom:-14.706558px;}
.y264{bottom:-13.941726px;}
.y0{bottom:0.000000px;}
.y231{bottom:5.073112px;}
.y120{bottom:5.475603px;}
.y17b{bottom:5.814303px;}
.y285{bottom:6.625950px;}
.y263{bottom:6.675822px;}
.y141{bottom:7.036086px;}
.y1b5{bottom:7.689564px;}
.y65{bottom:31.890000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y27a{bottom:101.227500px;}
.y36{bottom:104.646000px;}
.y130{bottom:105.784500px;}
.y64{bottom:105.921000px;}
.y2a7{bottom:109.443000px;}
.y1d1{bottom:111.174000px;}
.yc4{bottom:119.148000px;}
.y9c{bottom:119.596500px;}
.y279{bottom:120.460500px;}
.y1fd{bottom:120.921000px;}
.y35{bottom:122.535000px;}
.y12f{bottom:124.614000px;}
.y63{bottom:124.750500px;}
.y2dd{bottom:127.110000px;}
.y2a6{bottom:128.272500px;}
.y1d0{bottom:130.003500px;}
.yf0{bottom:130.918500px;}
.y1a0{bottom:133.693500px;}
.y300{bottom:133.764000px;}
.yc3{bottom:137.977500px;}
.y9b{bottom:138.426000px;}
.y21{bottom:139.264499px;}
.y278{bottom:139.693500px;}
.y1fc{bottom:139.750500px;}
.y34{bottom:140.422500px;}
.y12e{bottom:143.443500px;}
.y62{bottom:143.580000px;}
.y2dc{bottom:145.939500px;}
.y2a5{bottom:147.102000px;}
.y1cf{bottom:148.833000px;}
.yef{bottom:149.748000px;}
.y2ff{bottom:151.024500px;}
.y19f{bottom:152.521500px;}
.yc2{bottom:156.807000px;}
.y9a{bottom:157.255500px;}
.y33{bottom:158.310000px;}
.y1fb{bottom:158.580000px;}
.y277{bottom:158.926500px;}
.y61{bottom:162.409500px;}
.y2db{bottom:164.769000px;}
.y162{bottom:165.130500px;}
.y2a4{bottom:165.931500px;}
.y2fe{bottom:168.285000px;}
.yee{bottom:168.577500px;}
.y19e{bottom:171.351000px;}
.y1ce{bottom:172.146000px;}
.yc1{bottom:175.636500px;}
.y99{bottom:176.085000px;}
.y32{bottom:176.199000px;}
.y12d{bottom:177.009000px;}
.y1fa{bottom:177.409500px;}
.y276{bottom:178.159500px;}
.y60{bottom:181.239000px;}
.y2da{bottom:183.598500px;}
.y161{bottom:183.960000px;}
.y2a3{bottom:184.761000px;}
.y2fd{bottom:185.544000px;}
.yed{bottom:187.407000px;}
.y19d{bottom:190.180500px;}
.y31{bottom:194.086500px;}
.yc0{bottom:194.466000px;}
.y98{bottom:194.914500px;}
.y1f9{bottom:196.239000px;}
.y12c{bottom:196.242000px;}
.y18{bottom:196.933500px;}
.y5f{bottom:200.068500px;}
.y25f{bottom:200.589000px;}
.y2d9{bottom:202.428000px;}
.y160{bottom:202.789500px;}
.y2fc{bottom:202.804500px;}
.y2a2{bottom:203.590500px;}
.y1cd{bottom:205.770000px;}
.yec{bottom:206.236500px;}
.y19c{bottom:209.010000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y30{bottom:211.974000px;}
.ybf{bottom:213.295500px;}
.y97{bottom:213.744000px;}
.y1f8{bottom:215.068500px;}
.y32f{bottom:215.461500px;}
.y12b{bottom:215.475000px;}
.y5e{bottom:218.898000px;}
.y2fb{bottom:220.065000px;}
.y2d8{bottom:221.257500px;}
.y15f{bottom:221.619000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y2a1{bottom:222.420000px;}
.y1cc{bottom:224.599500px;}
.yeb{bottom:225.066000px;}
.y19b{bottom:227.839500px;}
.y2f{bottom:229.863000px;}
.y22c{bottom:230.932500px;}
.ybe{bottom:232.125000px;}
.y96{bottom:232.573500px;}
.y32e{bottom:232.722000px;}
.y1f7{bottom:233.898000px;}
.y12a{bottom:234.708000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y2fa{bottom:237.325500px;}
.y5d{bottom:237.727500px;}
.y2d7{bottom:240.087000px;}
.y15e{bottom:240.448500px;}
.y2a0{bottom:241.249500px;}
.y1cb{bottom:243.429000px;}
.yea{bottom:243.895500px;}
.y19a{bottom:246.669000px;}
.y22b{bottom:249.762000px;}
.y32d{bottom:249.982500px;}
.ybd{bottom:250.954500px;}
.y95{bottom:251.403000px;}
.y1f6{bottom:252.727500px;}
.y129{bottom:253.939500px;}
.y2f9{bottom:254.586000px;}
.y5c{bottom:256.557000px;}
.y2d6{bottom:258.916500px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y29f{bottom:260.079000px;}
.y1ca{bottom:262.258500px;}
.ye9{bottom:262.725000px;}
.y15d{bottom:263.761500px;}
.y199{bottom:265.498500px;}
.y22a{bottom:268.590000px;}
.ybc{bottom:269.784000px;}
.y94{bottom:270.232500px;}
.y1f5{bottom:271.557000px;}
.y2f8{bottom:271.846500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y5b{bottom:275.386500px;}
.y106{bottom:276.369000px;}
.y2d5{bottom:277.746000px;}
.y29e{bottom:278.908500px;}
.ye8{bottom:281.554500px;}
.y198{bottom:284.328000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y229{bottom:287.419500px;}
.ybb{bottom:288.613500px;}
.y93{bottom:289.062000px;}
.y2f7{bottom:289.107000px;}
.y1f4{bottom:290.386500px;}
.y5a{bottom:294.216000px;}
.y1c9{bottom:295.824000px;}
.y2d4{bottom:296.575500px;}
.y2e{bottom:297.166500px;}
.y15c{bottom:297.385500px;}
.y29d{bottom:297.738000px;}
.ye7{bottom:300.384000px;}
.y197{bottom:303.157500px;}
.y228{bottom:306.249000px;}
.y32c{bottom:306.321000px;}
.y2f6{bottom:306.367500px;}
.yba{bottom:307.443000px;}
.y92{bottom:307.891500px;}
.y1f3{bottom:309.216000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y59{bottom:313.045500px;}
.y2d{bottom:315.054000px;}
.y1c8{bottom:315.057000px;}
.y2d3{bottom:315.405000px;}
.y15b{bottom:316.215000px;}
.y29c{bottom:316.567500px;}
.ye6{bottom:319.212000px;}
.y196{bottom:321.987000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y32b{bottom:323.581500px;}
.y2f5{bottom:323.626500px;}
.y227{bottom:325.078500px;}
.yb9{bottom:326.272500px;}
.y91{bottom:326.719500px;}
.y1f2{bottom:328.045500px;}
.y58{bottom:331.875000px;}
.y2c{bottom:332.943000px;}
.y2d2{bottom:334.234500px;}
.y1c7{bottom:334.290000px;}
.y15a{bottom:335.044500px;}
.y29b{bottom:335.397000px;}
.ye5{bottom:338.041500px;}
.y195{bottom:340.816500px;}
.y32a{bottom:340.842000px;}
.y2f4{bottom:340.887000px;}
.y284{bottom:341.605050px;}
.y226{bottom:343.908000px;}
.yb8{bottom:345.102000px;}
.y90{bottom:345.549000px;}
.y1f1{bottom:346.875000px;}
.yf{bottom:348.133500px;}
.y57{bottom:350.704500px;}
.y2b{bottom:350.830500px;}
.y2d1{bottom:353.064000px;}
.y1c6{bottom:353.523000px;}
.y159{bottom:353.872500px;}
.y29a{bottom:354.226500px;}
.ye4{bottom:356.871000px;}
.y329{bottom:358.102500px;}
.y2f3{bottom:358.147500px;}
.y283{bottom:358.975500px;}
.y194{bottom:359.646000px;}
.y225{bottom:362.737500px;}
.yb7{bottom:363.931500px;}
.y8f{bottom:364.378500px;}
.y1f0{bottom:365.704500px;}
.y22f{bottom:366.826618px;}
.y56{bottom:369.534000px;}
.y2d0{bottom:371.893500px;}
.y1c5{bottom:372.754500px;}
.y299{bottom:373.056000px;}
.y328{bottom:375.363000px;}
.y2f2{bottom:375.408000px;}
.y22e{bottom:375.686094px;}
.ye3{bottom:375.700500px;}
.y282{bottom:376.255500px;}
.y261{bottom:376.460398px;}
.y193{bottom:378.475500px;}
.y2a{bottom:379.179000px;}
.y224{bottom:381.567000px;}
.yb6{bottom:382.761000px;}
.y8e{bottom:383.208000px;}
.y1ef{bottom:384.534000px;}
.y260{bottom:385.319874px;}
.ye{bottom:386.785499px;}
.y158{bottom:387.439500px;}
.y55{bottom:388.363500px;}
.y2cf{bottom:390.723000px;}
.y298{bottom:391.884000px;}
.y327{bottom:392.623500px;}
.y2f1{bottom:392.668500px;}
.y281{bottom:393.625950px;}
.ye2{bottom:394.530000px;}
.y1a1{bottom:395.184000px;}
.y192{bottom:397.305000px;}
.y223{bottom:400.396500px;}
.yb5{bottom:401.589000px;}
.y8d{bottom:402.037500px;}
.y1ee{bottom:403.363500px;}
.y29{bottom:406.033500px;}
.y157{bottom:406.672500px;}
.y54{bottom:407.193000px;}
.yd{bottom:408.044999px;}
.y2ce{bottom:409.552500px;}
.y326{bottom:409.884000px;}
.y2f0{bottom:409.929000px;}
.y297{bottom:410.713500px;}
.y280{bottom:410.905950px;}
.ye1{bottom:413.359500px;}
.y140{bottom:415.513310px;}
.y191{bottom:416.134500px;}
.y222{bottom:419.226000px;}
.yb4{bottom:420.418500px;}
.y8c{bottom:420.867000px;}
.y1ed{bottom:422.193000px;}
.y28{bottom:423.921000px;}
.yc5{bottom:424.902000px;}
.y156{bottom:425.904000px;}
.y325{bottom:427.144500px;}
.y2ef{bottom:427.189500px;}
.y2cd{bottom:428.382000px;}
.y53{bottom:430.504500px;}
.ye0{bottom:432.189000px;}
.y1b4{bottom:432.668826px;}
.y11f{bottom:432.981709px;}
.y27f{bottom:433.316328px;}
.y13f{bottom:434.194969px;}
.y190{bottom:434.964000px;}
.y221{bottom:438.055500px;}
.yb3{bottom:439.248000px;}
.y8b{bottom:439.696500px;}
.y1ec{bottom:441.022500px;}
.y27{bottom:441.810000px;}
.y296{bottom:444.280500px;}
.y324{bottom:444.403500px;}
.y2ee{bottom:444.450000px;}
.y155{bottom:445.137000px;}
.y2cc{bottom:447.211500px;}
.ydf{bottom:451.018500px;}
.y11e{bottom:451.855962px;}
.y1b3{bottom:451.928268px;}
.y13e{bottom:452.876627px;}
.y18f{bottom:453.793500px;}
.y220{bottom:456.885000px;}
.yb2{bottom:458.077500px;}
.y8a{bottom:458.526000px;}
.y26{bottom:459.697500px;}
.y1eb{bottom:459.852000px;}
.y323{bottom:461.664000px;}
.y2ed{bottom:461.710500px;}
.y295{bottom:463.513500px;}
.y154{bottom:464.370000px;}
.y2cb{bottom:466.041000px;}
.y17a{bottom:469.044915px;}
.yde{bottom:469.848000px;}
.y11d{bottom:470.730215px;}
.y1b2{bottom:471.099033px;}
.y13d{bottom:471.470812px;}
.y18e{bottom:472.623000px;}
.y21f{bottom:475.714500px;}
.yb1{bottom:476.907000px;}
.y89{bottom:477.355500px;}
.y25{bottom:477.585000px;}
.y1ea{bottom:478.681500px;}
.y322{bottom:478.924500px;}
.y2ec{bottom:478.969500px;}
.y294{bottom:482.745000px;}
.y2ca{bottom:484.869000px;}
.y131{bottom:486.799500px;}
.y179{bottom:488.215680px;}
.ydd{bottom:488.677500px;}
.y11c{bottom:489.516092px;}
.y13c{bottom:490.152470px;}
.y1b1{bottom:490.358475px;}
.y18d{bottom:491.452500px;}
.y21e{bottom:494.544000px;}
.y24{bottom:495.474000px;}
.yb0{bottom:495.736500px;}
.y88{bottom:496.185000px;}
.y2eb{bottom:496.230000px;}
.y1e9{bottom:497.511000px;}
.y293{bottom:501.978000px;}
.yc{bottom:502.864502px;}
.y2c9{bottom:503.698500px;}
.y52{bottom:505.654500px;}
.y178{bottom:507.475122px;}
.ydc{bottom:507.507000px;}
.y11b{bottom:508.390345px;}
.y13b{bottom:508.834129px;}
.y1b0{bottom:509.527737px;}
.y18c{bottom:510.282000px;}
.y23{bottom:513.361500px;}
.y21d{bottom:513.373500px;}
.y321{bottom:513.445500px;}
.yaf{bottom:514.566000px;}
.y87{bottom:515.014500px;}
.y1e8{bottom:516.340500px;}
.y2ea{bottom:517.974000px;}
.yb{bottom:520.864502px;}
.y292{bottom:521.211000px;}
.y2c8{bottom:522.528000px;}
.y51{bottom:525.112500px;}
.ydb{bottom:526.336500px;}
.y177{bottom:526.644384px;}
.y11a{bottom:527.176222px;}
.y13a{bottom:527.428313px;}
.y1af{bottom:528.787179px;}
.y18b{bottom:529.111500px;}
.y320{bottom:530.706000px;}
.y22{bottom:531.249000px;}
.y21c{bottom:532.203000px;}
.yae{bottom:533.395500px;}
.y86{bottom:533.844000px;}
.y1e7{bottom:535.170000px;}
.ya{bottom:538.864499px;}
.y2c7{bottom:541.357500px;}
.y27b{bottom:543.640500px;}
.yda{bottom:545.166000px;}
.y176{bottom:545.903826px;}
.y119{bottom:546.050475px;}
.y139{bottom:546.109972px;}
.y18a{bottom:547.941000px;}
.y31f{bottom:547.966500px;}
.y1ae{bottom:548.046621px;}
.y21b{bottom:551.032500px;}
.y2e9{bottom:551.598000px;}
.yad{bottom:552.225000px;}
.y85{bottom:552.673500px;}
.y1e6{bottom:553.999500px;}
.y9{bottom:556.864499px;}
.y2c6{bottom:560.187000px;}
.y50{bottom:562.501500px;}
.yd9{bottom:563.995500px;}
.y138{bottom:564.704156px;}
.y118{bottom:564.924728px;}
.y175{bottom:565.163268px;}
.y31e{bottom:565.227000px;}
.y1ad{bottom:567.215883px;}
.y21a{bottom:569.862000px;}
.y25e{bottom:569.880000px;}
.yac{bottom:571.054500px;}
.y84{bottom:571.503000px;}
.y2e8{bottom:578.139000px;}
.y2c5{bottom:579.016500px;}
.y189{bottom:581.506500px;}
.y4f{bottom:581.959500px;}
.y31d{bottom:582.487500px;}
.yd8{bottom:582.825000px;}
.y137{bottom:583.385815px;}
.y117{bottom:583.712078px;}
.y174{bottom:584.334033px;}
.y1e5{bottom:585.166500px;}
.y1ac{bottom:586.475325px;}
.y219{bottom:588.691500px;}
.y25d{bottom:588.709500px;}
.yab{bottom:589.884000px;}
.y83{bottom:590.332500px;}
.y2e7{bottom:595.713000px;}
.y2c4{bottom:597.846000px;}
.y1e4{bottom:599.362500px;}
.y31c{bottom:599.746500px;}
.y188{bottom:600.739500px;}
.y4e{bottom:601.416000px;}
.yd7{bottom:601.654500px;}
.y136{bottom:602.067473px;}
.y116{bottom:602.586331px;}
.y173{bottom:603.593475px;}
.y1ab{bottom:605.734767px;}
.y218{bottom:607.521000px;}
.y25c{bottom:607.539000px;}
.yaa{bottom:608.713500px;}
.y82{bottom:609.162000px;}
.y2e6{bottom:613.287000px;}
.y1e3{bottom:613.560000px;}
.y2c3{bottom:616.675500px;}
.y31b{bottom:617.007000px;}
.y187{bottom:619.972500px;}
.yd6{bottom:620.484000px;}
.y135{bottom:620.663116px;}
.y4d{bottom:620.872500px;}
.y115{bottom:621.372208px;}
.y172{bottom:622.762737px;}
.y1aa{bottom:624.904029px;}
.y217{bottom:626.350500px;}
.y25b{bottom:626.368500px;}
.ya9{bottom:627.543000px;}
.y81{bottom:627.991500px;}
.y1e2{bottom:632.403000px;}
.y31a{bottom:634.267500px;}
.y2c2{bottom:635.505000px;}
.y186{bottom:639.205500px;}
.yd5{bottom:639.313500px;}
.y2e5{bottom:639.826500px;}
.y114{bottom:640.246461px;}
.y4c{bottom:640.330500px;}
.y171{bottom:642.022179px;}
.y1a9{bottom:644.163471px;}
.y216{bottom:645.180000px;}
.y25a{bottom:645.196500px;}
.y8{bottom:645.510000px;}
.ya8{bottom:646.372500px;}
.y80{bottom:646.821000px;}
.y319{bottom:651.528000px;}
.y2c1{bottom:654.334500px;}
.y1e1{bottom:656.044500px;}
.yd4{bottom:658.143000px;}
.y185{bottom:658.437000px;}
.y113{bottom:659.120714px;}
.y4b{bottom:659.787000px;}
.y170{bottom:661.281621px;}
.y1a8{bottom:663.332733px;}
.y215{bottom:664.009500px;}
.y259{bottom:664.026000px;}
.ya7{bottom:665.202000px;}
.y7f{bottom:665.650500px;}
.y2e4{bottom:666.367500px;}
.y7{bottom:666.771000px;}
.y318{bottom:668.788500px;}
.y133{bottom:673.741227px;}
.yd3{bottom:676.972500px;}
.y2c0{bottom:677.647500px;}
.y112{bottom:677.906591px;}
.y4a{bottom:679.243500px;}
.y1e0{bottom:679.684500px;}
.y16f{bottom:680.450883px;}
.y163{bottom:680.866500px;}
.y1a7{bottom:682.592175px;}
.y214{bottom:682.839000px;}
.y258{bottom:682.855500px;}
.y132{bottom:683.082197px;}
.y2e3{bottom:683.941500px;}
.ya6{bottom:684.031500px;}
.y7e{bottom:684.480000px;}
.y317{bottom:686.049000px;}
.yd2{bottom:695.802000px;}
.y111{bottom:696.780844px;}
.y49{bottom:698.701500px;}
.y16e{bottom:699.710325px;}
.y213{bottom:701.668500px;}
.y257{bottom:701.685000px;}
.y1a6{bottom:701.851617px;}
.ya5{bottom:702.861000px;}
.y7d{bottom:703.309500px;}
.y1df{bottom:703.326000px;}
.y2e2{bottom:710.482500px;}
.y2bf{bottom:711.271500px;}
.y110{bottom:715.655097px;}
.y105{bottom:716.310000px;}
.y48{bottom:718.158000px;}
.y16d{bottom:718.969767px;}
.y212{bottom:720.498000px;}
.y316{bottom:720.570000px;}
.y1a5{bottom:721.022382px;}
.ya4{bottom:721.690500px;}
.y7c{bottom:722.139000px;}
.y256{bottom:724.998000px;}
.y6{bottom:726.298500px;}
.y1de{bottom:726.966000px;}
.yd1{bottom:726.969000px;}
.y2e1{bottom:728.056500px;}
.y2be{bottom:730.101000px;}
.y10f{bottom:734.442447px;}
.y104{bottom:735.139500px;}
.y47{bottom:737.616000px;}
.y315{bottom:737.829000px;}
.y16c{bottom:738.139029px;}
.ya3{bottom:740.520000px;}
.y7b{bottom:740.968500px;}
.y2e0{bottom:745.630500px;}
.yd0{bottom:745.812000px;}
.y2bd{bottom:748.930500px;}
.y1dd{bottom:750.607500px;}
.y211{bottom:751.665000px;}
.y3{bottom:752.599495px;}
.y10e{bottom:753.316700px;}
.y103{bottom:753.969000px;}
.y314{bottom:755.089500px;}
.y255{bottom:755.425500px;}
.y46{bottom:757.072500px;}
.y16b{bottom:757.398471px;}
.ya2{bottom:759.349500px;}
.y7a{bottom:759.798000px;}
.y2df{bottom:763.204500px;}
.y210{bottom:765.861000px;}
.y2bc{bottom:767.760000px;}
.ycf{bottom:769.453500px;}
.y10d{bottom:772.102577px;}
.y313{bottom:772.350000px;}
.y102{bottom:772.798500px;}
.y1dc{bottom:774.247500px;}
.y254{bottom:774.658500px;}
.y1a3{bottom:775.742085px;}
.y45{bottom:776.529000px;}
.y16a{bottom:776.567733px;}
.ya1{bottom:778.179000px;}
.y79{bottom:778.627500px;}
.y20f{bottom:780.058500px;}
.y2de{bottom:780.778500px;}
.y1a2{bottom:785.371950px;}
.y2bb{bottom:786.589500px;}
.y312{bottom:789.610500px;}
.y10c{bottom:790.976830px;}
.y101{bottom:791.628000px;}
.yce{bottom:793.093500px;}
.y169{bottom:795.827175px;}
.y44{bottom:795.987000px;}
.ya0{bottom:797.008500px;}
.y22d{bottom:797.088000px;}
.y78{bottom:797.457000px;}
.y1db{bottom:797.887500px;}
.y20e{bottom:798.901500px;}
.y2ba{bottom:805.419000px;}
.y311{bottom:806.871000px;}
.y100{bottom:810.457500px;}
.y10b{bottom:814.172689px;}
.y168{bottom:815.086617px;}
.y9f{bottom:815.838000px;}
.y77{bottom:816.286500px;}
.ycd{bottom:816.735000px;}
.y1da{bottom:821.529000px;}
.y20d{bottom:822.543000px;}
.y310{bottom:824.131500px;}
.y2b9{bottom:824.248500px;}
.yff{bottom:829.287000px;}
.y167{bottom:834.257382px;}
.y43{bottom:834.571500px;}
.y9e{bottom:834.667500px;}
.y76{bottom:835.114500px;}
.y27d{bottom:835.256085px;}
.y10a{bottom:837.456924px;}
.ycc{bottom:840.375000px;}
.y30f{bottom:841.392000px;}
.y2b8{bottom:843.078000px;}
.y27c{bottom:844.885950px;}
.y1d9{bottom:845.169000px;}
.y20c{bottom:846.183000px;}
.yfe{bottom:848.116500px;}
.y42{bottom:850.711500px;}
.y75{bottom:853.944000px;}
.y9d{bottom:857.979000px;}
.y30e{bottom:858.652500px;}
.y2b7{bottom:861.907500px;}
.ycb{bottom:864.016500px;}
.yfd{bottom:866.946000px;}
.y1d7{bottom:868.810500px;}
.y20b{bottom:869.824500px;}
.y41{bottom:871.191000px;}
.y74{bottom:872.773500px;}
.y30d{bottom:875.913000px;}
.y1d5{bottom:877.029000px;}
.y2{bottom:879.369000px;}
.y2b6{bottom:880.737000px;}
.y40{bottom:882.990000px;}
.y1d4{bottom:885.249000px;}
.yfc{bottom:885.775500px;}
.yca{bottom:887.656500px;}
.y165{bottom:888.977085px;}
.y108{bottom:891.082233px;}
.y73{bottom:891.603000px;}
.y30c{bottom:893.172000px;}
.y20a{bottom:893.464500px;}
.y1d8{bottom:893.467500px;}
.y164{bottom:898.606950px;}
.y2b5{bottom:899.565000px;}
.y107{bottom:900.519501px;}
.y1d6{bottom:901.687500px;}
.y3f{bottom:903.469500px;}
.yfb{bottom:904.605000px;}
.y72{bottom:910.432500px;}
.yc9{bottom:911.298000px;}
.y3e{bottom:915.270000px;}
.y209{bottom:917.106000px;}
.y2b4{bottom:918.394500px;}
.yfa{bottom:923.434500px;}
.y30b{bottom:927.693000px;}
.y71{bottom:929.262000px;}
.y3d{bottom:931.410000px;}
.y1d3{bottom:933.306000px;}
.yc8{bottom:934.938000px;}
.y208{bottom:940.746000px;}
.yf9{bottom:942.264000px;}
.y30a{bottom:944.953500px;}
.y3c{bottom:947.548500px;}
.y70{bottom:948.091500px;}
.y2b3{bottom:949.563000px;}
.y3b{bottom:951.888000px;}
.y1d2{bottom:952.539000px;}
.yc7{bottom:958.579500px;}
.yf8{bottom:961.093500px;}
.y309{bottom:962.214000px;}
.y207{bottom:964.386000px;}
.y1{bottom:966.726000px;}
.y6f{bottom:966.921000px;}
.y2b1{bottom:971.395500px;}
.y308{bottom:979.474500px;}
.y2b2{bottom:979.614000px;}
.yf7{bottom:979.923000px;}
.y6e{bottom:985.750500px;}
.y2b0{bottom:987.832500px;}
.y206{bottom:988.027500px;}
.yc6{bottom:990.198000px;}
.y3a{bottom:996.565500px;}
.y307{bottom:996.735000px;}
.yf6{bottom:998.752500px;}
.y2ae{bottom:1003.117500px;}
.y2af{bottom:1003.552500px;}
.y2ac{bottom:1004.271000px;}
.y6d{bottom:1004.580000px;}
.y205{bottom:1011.667500px;}
.y2ad{bottom:1012.491000px;}
.y306{bottom:1013.995500px;}
.yf5{bottom:1017.582000px;}
.y2ab{bottom:1020.709500px;}
.y6c{bottom:1023.409500px;}
.y305{bottom:1031.254500px;}
.y203{bottom:1035.309000px;}
.yf4{bottom:1036.411500px;}
.y39{bottom:1036.485000px;}
.y6b{bottom:1042.239000px;}
.y201{bottom:1043.527500px;}
.y2aa{bottom:1044.351000px;}
.y304{bottom:1048.515000px;}
.y200{bottom:1051.747500px;}
.yf3{bottom:1055.241000px;}
.y204{bottom:1059.966000px;}
.y6a{bottom:1061.068500px;}
.y38{bottom:1064.728500px;}
.y303{bottom:1065.775500px;}
.y2a9{bottom:1067.991000px;}
.y202{bottom:1068.186000px;}
.yf2{bottom:1074.070500px;}
.y69{bottom:1079.898000px;}
.y302{bottom:1083.036000px;}
.y2a8{bottom:1084.429500px;}
.y37{bottom:1092.972000px;}
.yf1{bottom:1097.382000px;}
.y68{bottom:1098.727500px;}
.y1ff{bottom:1099.804500px;}
.y301{bottom:1100.296500px;}
.y67{bottom:1117.557000px;}
.y1fe{bottom:1119.037500px;}
.y66{bottom:1177.662000px;}
.h7{height:32.130000px;}
.hd{height:33.821261px;}
.h12{height:38.896243px;}
.h9{height:39.457760px;}
.h29{height:39.808364px;}
.h26{height:41.145940px;}
.h1d{height:41.971862px;}
.h17{height:42.404562px;}
.h10{height:43.217759px;}
.h23{height:43.269961px;}
.h1a{height:43.382132px;}
.h16{height:43.382686px;}
.h14{height:43.829371px;}
.ha{height:43.875290px;}
.h1f{height:44.723848px;}
.he{height:45.094826px;}
.h6{height:45.900000px;}
.h28{height:46.405195px;}
.h3{height:48.195000px;}
.h1c{height:48.927217px;}
.h18{height:49.431621px;}
.h21{height:50.440430px;}
.hf{height:50.731891px;}
.h27{height:51.664451px;}
.h1b{height:54.472301px;}
.hc{height:54.541601px;}
.h15{height:55.033871px;}
.h2{height:55.080000px;}
.h20{height:56.157012px;}
.h11{height:56.368391px;}
.h24{height:71.770243px;}
.h2c{height:71.776243px;}
.hb{height:77.792486px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h2b{height:324.322500px;}
.h25{height:335.414520px;}
.h2a{height:345.651360px;}
.h19{height:399.992595px;}
.h22{height:416.290500px;}
.h13{height:416.302530px;}
.h1e{height:451.635000px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w9{width:540.156840px;}
.w8{width:548.585880px;}
.w6{width:579.271500px;}
.w7{width:579.927000px;}
.wa{width:588.546000px;}
.w4{width:593.343450px;}
.w5{width:593.638545px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x15{left:-201.271500px;}
.x13{left:-191.454000px;}
.xc{left:-186.984000px;}
.x10{left:-183.805785px;}
.x1d{left:-175.536000px;}
.x16{left:-5.702590px;}
.x0{left:0.000000px;}
.x23{left:3.214500px;}
.xd{left:4.673532px;}
.x11{left:5.896058px;}
.x17{left:26.158807px;}
.x1f{left:33.699503px;}
.xe{left:35.896229px;}
.x5{left:53.574000px;}
.x26{left:75.514500px;}
.x2d{left:83.967000px;}
.x34{left:85.848000px;}
.x33{left:90.504000px;}
.x2e{left:95.365500px;}
.x25{left:97.719000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.x28{left:214.554000px;}
.x8{left:248.526000px;}
.x6{left:249.591000px;}
.xb{left:258.556500px;}
.x27{left:260.676000px;}
.x7{left:269.752500px;}
.x9{left:281.479500px;}
.x2f{left:294.229500px;}
.xa{left:314.232000px;}
.x18{left:329.776500px;}
.x29{left:388.978500px;}
.x19{left:433.398000px;}
.x3{left:454.959000px;}
.x30{left:458.022000px;}
.x20{left:535.570349px;}
.x1a{left:537.019500px;}
.x21{left:539.879460px;}
.x2a{left:541.804500px;}
.x1e{left:542.916367px;}
.x14{left:573.814474px;}
.x22{left:579.930684px;}
.x24{left:584.614500px;}
.x12{left:586.434326px;}
.xf{left:588.995564px;}
.x31{left:610.680000px;}
.x1b{left:640.639500px;}
.x2b{left:694.630500px;}
.x2c{left:738.658500px;}
.x1c{left:744.261000px;}
.x32{left:763.504500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:29.221333pt;}
.ls7f{letter-spacing:-0.197728pt;}
.ls7c{letter-spacing:-0.181696pt;}
.lsc0{letter-spacing:-0.172800pt;}
.lsb0{letter-spacing:-0.167160pt;}
.lsb6{letter-spacing:-0.158976pt;}
.ls4b{letter-spacing:-0.150327pt;}
.ls79{letter-spacing:-0.144288pt;}
.lsc2{letter-spacing:-0.128256pt;}
.lsc1{letter-spacing:-0.122912pt;}
.ls2e{letter-spacing:-0.120454pt;}
.lsb1{letter-spacing:-0.117996pt;}
.lsb4{letter-spacing:-0.113079pt;}
.lsab{letter-spacing:-0.108163pt;}
.ls74{letter-spacing:-0.106880pt;}
.lsa5{letter-spacing:-0.105984pt;}
.lsb2{letter-spacing:-0.103246pt;}
.ls4d{letter-spacing:-0.098490pt;}
.ls26{letter-spacing:-0.089031pt;}
.ls7d{letter-spacing:-0.085504pt;}
.ls82{letter-spacing:-0.080160pt;}
.lsae{letter-spacing:-0.078664pt;}
.ls73{letter-spacing:-0.069472pt;}
.ls70{letter-spacing:-0.064128pt;}
.ls2b{letter-spacing:-0.062845pt;}
.ls53{letter-spacing:-0.062204pt;}
.ls81{letter-spacing:-0.058784pt;}
.lsa9{letter-spacing:-0.054081pt;}
.ls77{letter-spacing:-0.053440pt;}
.ls27{letter-spacing:-0.052371pt;}
.ls4e{letter-spacing:-0.051837pt;}
.ls78{letter-spacing:-0.048096pt;}
.ls28{letter-spacing:-0.047134pt;}
.ls49{letter-spacing:-0.046653pt;}
.lsa6{letter-spacing:-0.044248pt;}
.ls7a{letter-spacing:-0.042752pt;}
.ls24{letter-spacing:-0.041897pt;}
.ls4a{letter-spacing:-0.041469pt;}
.lsb3{letter-spacing:-0.039332pt;}
.ls80{letter-spacing:-0.037408pt;}
.ls2a{letter-spacing:-0.036660pt;}
.ls50{letter-spacing:-0.036286pt;}
.lsac{letter-spacing:-0.034415pt;}
.ls75{letter-spacing:-0.032064pt;}
.ls23{letter-spacing:-0.031423pt;}
.ls54{letter-spacing:-0.031102pt;}
.lsaf{letter-spacing:-0.029499pt;}
.ls6e{letter-spacing:-0.026720pt;}
.ls29{letter-spacing:-0.026186pt;}
.ls48{letter-spacing:-0.025918pt;}
.lsaa{letter-spacing:-0.024582pt;}
.ls30{letter-spacing:-0.023520pt;}
.ls52{letter-spacing:-0.023280pt;}
.ls6f{letter-spacing:-0.021376pt;}
.ls22{letter-spacing:-0.020948pt;}
.ls4c{letter-spacing:-0.020735pt;}
.lsb7{letter-spacing:-0.019666pt;}
.ls2f{letter-spacing:-0.018816pt;}
.ls51{letter-spacing:-0.018624pt;}
.ls76{letter-spacing:-0.016032pt;}
.ls2d{letter-spacing:-0.015711pt;}
.ls4f{letter-spacing:-0.015551pt;}
.lsa8{letter-spacing:-0.014749pt;}
.ls72{letter-spacing:-0.010688pt;}
.ls25{letter-spacing:-0.010474pt;}
.ls55{letter-spacing:-0.010367pt;}
.lsa7{letter-spacing:-0.009833pt;}
.ls7b{letter-spacing:-0.009600pt;}
.ls71{letter-spacing:-0.005344pt;}
.ls2c{letter-spacing:-0.005237pt;}
.ls56{letter-spacing:-0.005184pt;}
.lsb5{letter-spacing:-0.004916pt;}
.ls6d{letter-spacing:-0.004256pt;}
.ls20{letter-spacing:-0.004171pt;}
.ls47{letter-spacing:-0.004128pt;}
.lsa4{letter-spacing:-0.003916pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc8{letter-spacing:0.000260pt;}
.lsca{letter-spacing:0.002703pt;}
.lsc9{letter-spacing:0.002805pt;}
.ls9d{letter-spacing:0.004416pt;}
.ls3d{letter-spacing:0.004656pt;}
.ls18{letter-spacing:0.004704pt;}
.lsb9{letter-spacing:0.004800pt;}
.ls93{letter-spacing:0.004916pt;}
.ls34{letter-spacing:0.005184pt;}
.ls12{letter-spacing:0.005237pt;}
.ls5b{letter-spacing:0.005344pt;}
.ls9c{letter-spacing:0.008832pt;}
.lsb8{letter-spacing:0.009600pt;}
.ls8f{letter-spacing:0.009833pt;}
.ls46{letter-spacing:0.010367pt;}
.ls60{letter-spacing:0.010688pt;}
.ls8a{letter-spacing:0.013248pt;}
.ls3c{letter-spacing:0.013968pt;}
.ls17{letter-spacing:0.014112pt;}
.ls66{letter-spacing:0.014400pt;}
.ls92{letter-spacing:0.014749pt;}
.ls37{letter-spacing:0.015551pt;}
.ls1f{letter-spacing:0.015711pt;}
.ls62{letter-spacing:0.016032pt;}
.ls8b{letter-spacing:0.017664pt;}
.ls3f{letter-spacing:0.018624pt;}
.ls1a{letter-spacing:0.018816pt;}
.ls6b{letter-spacing:0.019200pt;}
.ls97{letter-spacing:0.019666pt;}
.ls11{letter-spacing:0.020948pt;}
.ls5f{letter-spacing:0.021376pt;}
.ls87{letter-spacing:0.023493pt;}
.ls67{letter-spacing:0.024000pt;}
.ls98{letter-spacing:0.024582pt;}
.ls31{letter-spacing:0.024770pt;}
.ls8{letter-spacing:0.025025pt;}
.ls57{letter-spacing:0.025536pt;}
.ls38{letter-spacing:0.025918pt;}
.lse{letter-spacing:0.026186pt;}
.lsa1{letter-spacing:0.026496pt;}
.lsbd{letter-spacing:0.028800pt;}
.ls99{letter-spacing:0.029499pt;}
.ls3b{letter-spacing:0.031102pt;}
.ls1d{letter-spacing:0.031423pt;}
.ls5d{letter-spacing:0.032064pt;}
.ls95{letter-spacing:0.034415pt;}
.ls9e{letter-spacing:0.035328pt;}
.ls45{letter-spacing:0.036286pt;}
.ls15{letter-spacing:0.036660pt;}
.ls5e{letter-spacing:0.037408pt;}
.lsba{letter-spacing:0.038400pt;}
.ls8c{letter-spacing:0.039744pt;}
.ls36{letter-spacing:0.041469pt;}
.ls16{letter-spacing:0.041897pt;}
.ls65{letter-spacing:0.042752pt;}
.ls6c{letter-spacing:0.043200pt;}
.ls9f{letter-spacing:0.044160pt;}
.ls94{letter-spacing:0.044248pt;}
.lsf{letter-spacing:0.047134pt;}
.lsbb{letter-spacing:0.048000pt;}
.ls61{letter-spacing:0.048096pt;}
.ls8d{letter-spacing:0.048576pt;}
.ls90{letter-spacing:0.049165pt;}
.ls44{letter-spacing:0.051837pt;}
.lsd{letter-spacing:0.052371pt;}
.ls69{letter-spacing:0.052800pt;}
.ls7e{letter-spacing:0.053440pt;}
.ls3a{letter-spacing:0.057020pt;}
.ls8e{letter-spacing:0.057408pt;}
.lsc{letter-spacing:0.057608pt;}
.ls5c{letter-spacing:0.058784pt;}
.ls96{letter-spacing:0.058998pt;}
.ls41{letter-spacing:0.060528pt;}
.ls1c{letter-spacing:0.061152pt;}
.lsa0{letter-spacing:0.061824pt;}
.lsad{letter-spacing:0.063914pt;}
.ls63{letter-spacing:0.064128pt;}
.lsbc{letter-spacing:0.067200pt;}
.ls21{letter-spacing:0.068083pt;}
.ls3e{letter-spacing:0.069840pt;}
.ls19{letter-spacing:0.070560pt;}
.ls68{letter-spacing:0.072000pt;}
.ls14{letter-spacing:0.073320pt;}
.ls9a{letter-spacing:0.073747pt;}
.ls83{letter-spacing:0.074816pt;}
.ls43{letter-spacing:0.077755pt;}
.ls13{letter-spacing:0.078557pt;}
.lsb{letter-spacing:0.083794pt;}
.lsa2{letter-spacing:0.083904pt;}
.ls40{letter-spacing:0.088464pt;}
.ls1b{letter-spacing:0.089376pt;}
.ls6a{letter-spacing:0.091200pt;}
.lsa3{letter-spacing:0.093413pt;}
.ls9b{letter-spacing:0.098330pt;}
.lsbf{letter-spacing:0.101536pt;}
.ls35{letter-spacing:0.103674pt;}
.ls1e{letter-spacing:0.104742pt;}
.ls5a{letter-spacing:0.106880pt;}
.ls91{letter-spacing:0.122912pt;}
.ls42{letter-spacing:0.129592pt;}
.lsbe{letter-spacing:0.133600pt;}
.ls89{letter-spacing:0.148790pt;}
.ls33{letter-spacing:0.152748pt;}
.lsa{letter-spacing:0.154323pt;}
.ls39{letter-spacing:0.155510pt;}
.ls88{letter-spacing:0.156621pt;}
.ls10{letter-spacing:0.157114pt;}
.ls64{letter-spacing:0.160320pt;}
.ls59{letter-spacing:0.161728pt;}
.ls32{letter-spacing:0.165133pt;}
.ls9{letter-spacing:0.166835pt;}
.ls58{letter-spacing:0.170240pt;}
.ls85{letter-spacing:0.570745pt;}
.ls84{letter-spacing:0.576078pt;}
.ls1{letter-spacing:2.657067pt;}
.ls2{letter-spacing:2.665203pt;}
.ls86{letter-spacing:10.414238pt;}
.ls5{letter-spacing:10.626533pt;}
.lsc6{letter-spacing:13.124065pt;}
.lsc4{letter-spacing:13.177199pt;}
.lsc5{letter-spacing:13.283467pt;}
.lsc3{letter-spacing:13.336601pt;}
.ls7{letter-spacing:13.389734pt;}
.lsc7{letter-spacing:14.823467pt;}
.ls6{letter-spacing:19.075058pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ws101{word-spacing:-53.440000pt;}
.ws8b{word-spacing:-52.371200pt;}
.wsca{word-spacing:-51.836800pt;}
.ws21{word-spacing:-13.283467pt;}
.ws8a{word-spacing:-13.171357pt;}
.ws8c{word-spacing:-13.166120pt;}
.wsc8{word-spacing:-12.959200pt;}
.wscb{word-spacing:-12.907363pt;}
.ws17f{word-spacing:-12.364947pt;}
.ws169{word-spacing:-11.955200pt;}
.wsfe{word-spacing:-10.810240pt;}
.wsff{word-spacing:-10.640000pt;}
.ws2b{word-spacing:-10.626800pt;}
.ws87{word-spacing:-10.594035pt;}
.wsc6{word-spacing:-10.485933pt;}
.ws88{word-spacing:-10.427200pt;}
.wsc7{word-spacing:-10.320800pt;}
.wsd{word-spacing:-10.095467pt;}
.ws17c{word-spacing:-9.945421pt;}
.ws17d{word-spacing:-9.788800pt;}
.ws6{word-spacing:-9.298400pt;}
.ws14d{word-spacing:-3.452224pt;}
.ws14e{word-spacing:-3.446880pt;}
.ws110{word-spacing:-3.110208pt;}
.ws15b{word-spacing:-3.088832pt;}
.ws15c{word-spacing:-3.062112pt;}
.ws111{word-spacing:-3.046080pt;}
.ws32{word-spacing:-2.975497pt;}
.ws178{word-spacing:-2.922363pt;}
.ws179{word-spacing:-2.869229pt;}
.ws123{word-spacing:-2.859040pt;}
.ws1ee{word-spacing:-2.816095pt;}
.ws128{word-spacing:-2.789568pt;}
.wsf0{word-spacing:-2.788820pt;}
.ws127{word-spacing:-2.778880pt;}
.ws122{word-spacing:-2.752160pt;}
.wsfb{word-spacing:-2.747350pt;}
.ws16e{word-spacing:-2.709827pt;}
.wsfa{word-spacing:-2.700697pt;}
.ws121{word-spacing:-2.650624pt;}
.ws1ad{word-spacing:-2.600818pt;}
.ws1ae{word-spacing:-2.556570pt;}
.wsae{word-spacing:-2.471921pt;}
.ws1dc{word-spacing:-2.462400pt;}
.ws5e{word-spacing:-2.444158pt;}
.ws11{word-spacing:-2.438861pt;}
.ws1dd{word-spacing:-2.424000pt;}
.ws1c6{word-spacing:-2.265408pt;}
.ws1c7{word-spacing:-2.230080pt;}
.ws10c{word-spacing:-2.212416pt;}
.ws1e6{word-spacing:-2.158976pt;}
.ws10b{word-spacing:-2.148288pt;}
.wsaf{word-spacing:-2.089611pt;}
.ws76{word-spacing:-2.019087pt;}
.ws1aa{word-spacing:-2.005924pt;}
.ws1d1{word-spacing:-1.986258pt;}
.ws1d7{word-spacing:-1.965953pt;}
.ws1fa{word-spacing:-1.960653pt;}
.ws16c{word-spacing:-1.955331pt;}
.ws50{word-spacing:-1.859685pt;}
.ws109{word-spacing:-1.838336pt;}
.ws1e1{word-spacing:-1.795584pt;}
.wsdc{word-spacing:-1.793553pt;}
.wsba{word-spacing:-1.792224pt;}
.wse6{word-spacing:-1.773936pt;}
.ws10a{word-spacing:-1.768864pt;}
.ws1a3{word-spacing:-1.745350pt;}
.wsdb{word-spacing:-1.731349pt;}
.wsb9{word-spacing:-1.726368pt;}
.ws202{word-spacing:-1.721549pt;}
.ws1e2{word-spacing:-1.710080pt;}
.wse5{word-spacing:-1.708752pt;}
.ws1e7{word-spacing:-1.704736pt;}
.ws19c{word-spacing:-1.696186pt;}
.wsdd{word-spacing:-1.679512pt;}
.ws1cb{word-spacing:-1.651937pt;}
.ws86{word-spacing:-1.647150pt;}
.ws16f{word-spacing:-1.594016pt;}
.ws160{word-spacing:-1.592512pt;}
.ws1cc{word-spacing:-1.573274pt;}
.ws162{word-spacing:-1.571136pt;}
.ws1d2{word-spacing:-1.568357pt;}
.ws1fb{word-spacing:-1.530266pt;}
.ws67{word-spacing:-1.487748pt;}
.ws12c{word-spacing:-1.459200pt;}
.ws12a{word-spacing:-1.449600pt;}
.wscf{word-spacing:-1.446247pt;}
.ws1d9{word-spacing:-1.440000pt;}
.ws12b{word-spacing:-1.425600pt;}
.wsd0{word-spacing:-1.425512pt;}
.ws47{word-spacing:-1.381481pt;}
.ws1a4{word-spacing:-1.371698pt;}
.ws1c3{word-spacing:-1.324800pt;}
.ws1ac{word-spacing:-1.229120pt;}
.ws72{word-spacing:-1.222079pt;}
.ws132{word-spacing:-1.202400pt;}
.ws161{word-spacing:-1.197056pt;}
.ws103{word-spacing:-1.195520pt;}
.ws133{word-spacing:-1.191712pt;}
.ws1ea{word-spacing:-1.181024pt;}
.ws5f{word-spacing:-1.168945pt;}
.wsd6{word-spacing:-1.161144pt;}
.ws1de{word-spacing:-1.152000pt;}
.ws1d8{word-spacing:-1.128000pt;}
.ws193{word-spacing:-1.116041pt;}
.ws26{word-spacing:-1.115811pt;}
.ws1ab{word-spacing:-1.101292pt;}
.ws1d4{word-spacing:-1.086542pt;}
.ws1a6{word-spacing:-1.071793pt;}
.ws6c{word-spacing:-1.062677pt;}
.ws1c8{word-spacing:-1.059840pt;}
.ws1c2{word-spacing:-1.037760pt;}
.ws1a5{word-spacing:-1.022628pt;}
.wsd5{word-spacing:-1.010818pt;}
.ws4b{word-spacing:-1.009543pt;}
.ws1f5{word-spacing:-0.956410pt;}
.ws1df{word-spacing:-0.940800pt;}
.ws10f{word-spacing:-0.913824pt;}
.wsad{word-spacing:-0.906022pt;}
.ws51{word-spacing:-0.903276pt;}
.wsd3{word-spacing:-0.891593pt;}
.ws135{word-spacing:-0.887104pt;}
.ws10e{word-spacing:-0.865728pt;}
.ws1c9{word-spacing:-0.865536pt;}
.ws55{word-spacing:-0.850142pt;}
.wsac{word-spacing:-0.848413pt;}
.ws164{word-spacing:-0.839008pt;}
.ws1a8{word-spacing:-0.825969pt;}
.wsd4{word-spacing:-0.808654pt;}
.ws1a7{word-spacing:-0.806303pt;}
.ws73{word-spacing:-0.797008pt;}
.ws3b{word-spacing:-0.743874pt;}
.ws7e{word-spacing:-0.637606pt;}
.ws1a{word-spacing:-0.573850pt;}
.wsa9{word-spacing:-0.549898pt;}
.wsf5{word-spacing:-0.549470pt;}
.ws146{word-spacing:-0.545088pt;}
.ws65{word-spacing:-0.531339pt;}
.ws2{word-spacing:-0.520710pt;}
.wsf6{word-spacing:-0.518368pt;}
.ws145{word-spacing:-0.502336pt;}
.wsb1{word-spacing:-0.497526pt;}
.ws192{word-spacing:-0.486732pt;}
.wsb0{word-spacing:-0.481815pt;}
.ws203{word-spacing:-0.478208pt;}
.ws181{word-spacing:-0.425071pt;}
.wsb2{word-spacing:-0.424207pt;}
.ws80{word-spacing:-0.371937pt;}
.ws31{word-spacing:-0.318803pt;}
.ws148{word-spacing:-0.267200pt;}
.ws39{word-spacing:-0.265669pt;}
.wsda{word-spacing:-0.254000pt;}
.wsa3{word-spacing:-0.251382pt;}
.ws104{word-spacing:-0.246848pt;}
.ws1d0{word-spacing:-0.245824pt;}
.ws91{word-spacing:-0.241911pt;}
.ws11a{word-spacing:-0.240480pt;}
.wscc{word-spacing:-0.239443pt;}
.ws8f{word-spacing:-0.239104pt;}
.wsb6{word-spacing:-0.230433pt;}
.ws184{word-spacing:-0.227100pt;}
.ws18d{word-spacing:-0.226158pt;}
.ws119{word-spacing:-0.219104pt;}
.ws28{word-spacing:-0.212535pt;}
.ws12e{word-spacing:-0.206400pt;}
.wsa1{word-spacing:-0.204248pt;}
.wsa2{word-spacing:-0.193773pt;}
.ws13{word-spacing:-0.191283pt;}
.ws12f{word-spacing:-0.172800pt;}
.wsb7{word-spacing:-0.164640pt;}
.wse3{word-spacing:-0.162960pt;}
.ws2c{word-spacing:-0.159402pt;}
.ws137{word-spacing:-0.149632pt;}
.ws8e{word-spacing:-0.143462pt;}
.wsb8{word-spacing:-0.131712pt;}
.wse4{word-spacing:-0.130368pt;}
.wsf9{word-spacing:-0.129592pt;}
.ws33{word-spacing:-0.106268pt;}
.ws182{word-spacing:-0.095642pt;}
.ws105{word-spacing:-0.072352pt;}
.ws92{word-spacing:-0.070905pt;}
.wscd{word-spacing:-0.070181pt;}
.ws185{word-spacing:-0.066564pt;}
.ws100{word-spacing:-0.053440pt;}
.ws22{word-spacing:-0.053134pt;}
.ws89{word-spacing:-0.052371pt;}
.wsc9{word-spacing:-0.051837pt;}
.ws17e{word-spacing:-0.049165pt;}
.ws1b{word-spacing:-0.047821pt;}
.ws190{word-spacing:-0.044248pt;}
.ws207{word-spacing:-0.009148pt;}
.ws205{word-spacing:-0.008277pt;}
.ws213{word-spacing:-0.006810pt;}
.ws204{word-spacing:-0.005308pt;}
.ws20c{word-spacing:-0.005231pt;}
.ws4{word-spacing:-0.004772pt;}
.ws2a{word-spacing:-0.000398pt;}
.ws0{word-spacing:0.000000pt;}
.ws19a{word-spacing:0.014749pt;}
.ws94{word-spacing:0.015711pt;}
.ws1b4{word-spacing:0.019666pt;}
.ws158{word-spacing:0.026720pt;}
.ws1c1{word-spacing:0.029499pt;}
.ws16b{word-spacing:0.042507pt;}
.ws129{word-spacing:0.042752pt;}
.ws19{word-spacing:0.047821pt;}
.ws1f{word-spacing:0.053134pt;}
.ws10d{word-spacing:0.053440pt;}
.wsa0{word-spacing:0.057608pt;}
.ws112{word-spacing:0.064128pt;}
.ws157{word-spacing:0.069472pt;}
.wsa5{word-spacing:0.078557pt;}
.ws136{word-spacing:0.085504pt;}
.ws18e{word-spacing:0.088497pt;}
.ws130{word-spacing:0.091200pt;}
.ws18b{word-spacing:0.092736pt;}
.wsf1{word-spacing:0.093306pt;}
.ws18f{word-spacing:0.093413pt;}
.ws17{word-spacing:0.095642pt;}
.ws1eb{word-spacing:0.096192pt;}
.wsea{word-spacing:0.097776pt;}
.wsbe{word-spacing:0.098784pt;}
.ws11e{word-spacing:0.101536pt;}
.ws1c0{word-spacing:0.103246pt;}
.ws20{word-spacing:0.106268pt;}
.ws1af{word-spacing:0.108163pt;}
.ws1a9{word-spacing:0.113079pt;}
.wse2{word-spacing:0.119225pt;}
.ws131{word-spacing:0.120000pt;}
.ws14f{word-spacing:0.122912pt;}
.ws9f{word-spacing:0.130928pt;}
.ws1ca{word-spacing:0.132480pt;}
.ws11f{word-spacing:0.133600pt;}
.ws118{word-spacing:0.138944pt;}
.ws206{word-spacing:0.143462pt;}
.ws1e0{word-spacing:0.144000pt;}
.ws150{word-spacing:0.144288pt;}
.wsa6{word-spacing:0.146639pt;}
.ws18c{word-spacing:0.150144pt;}
.ws36{word-spacing:0.159402pt;}
.ws144{word-spacing:0.171008pt;}
.ws14{word-spacing:0.191283pt;}
.ws23{word-spacing:0.212535pt;}
.ws15{word-spacing:0.239104pt;}
.ws35{word-spacing:0.265669pt;}
.ws20a{word-spacing:0.286925pt;}
.ws1e{word-spacing:0.318803pt;}
.ws1ff{word-spacing:0.334746pt;}
.ws6b{word-spacing:0.371937pt;}
.wsd9{word-spacing:0.378409pt;}
.ws124{word-spacing:0.384768pt;}
.ws113{word-spacing:0.395456pt;}
.wse7{word-spacing:0.395760pt;}
.wsbb{word-spacing:0.399840pt;}
.ws1c5{word-spacing:0.401856pt;}
.ws1c4{word-spacing:0.410688pt;}
.ws163{word-spacing:0.411488pt;}
.wsd8{word-spacing:0.414694pt;}
.wsd7{word-spacing:0.419878pt;}
.ws5d{word-spacing:0.425071pt;}
.ws191{word-spacing:0.427734pt;}
.ws1db{word-spacing:0.436800pt;}
.ws1da{word-spacing:0.446400pt;}
.ws3c{word-spacing:0.478205pt;}
.ws1fc{word-spacing:0.478208pt;}
.wse{word-spacing:0.494387pt;}
.ws68{word-spacing:0.531339pt;}
.ws2d{word-spacing:0.584473pt;}
.ws49{word-spacing:0.637606pt;}
.wsde{word-spacing:0.647960pt;}
.ws48{word-spacing:0.690740pt;}
.wsfc{word-spacing:0.694613pt;}
.wsd2{word-spacing:0.699797pt;}
.ws201{word-spacing:0.717312pt;}
.wsdf{word-spacing:0.720532pt;}
.ws15e{word-spacing:0.726784pt;}
.wsaa{word-spacing:0.727960pt;}
.ws15d{word-spacing:0.737472pt;}
.ws79{word-spacing:0.743874pt;}
.ws215{word-spacing:0.765133pt;}
.ws170{word-spacing:0.797008pt;}
.ws78{word-spacing:0.850142pt;}
.ws25{word-spacing:0.903276pt;}
.ws19d{word-spacing:0.919382pt;}
.ws196{word-spacing:0.948881pt;}
.ws27{word-spacing:0.956410pt;}
.ws9c{word-spacing:0.979341pt;}
.wsc0{word-spacing:0.995053pt;}
.ws3a{word-spacing:1.009543pt;}
.ws13f{word-spacing:1.036736pt;}
.ws214{word-spacing:1.052058pt;}
.ws4c{word-spacing:1.062677pt;}
.ws140{word-spacing:1.074144pt;}
.ws20b{word-spacing:1.099878pt;}
.ws6d{word-spacing:1.115811pt;}
.ws54{word-spacing:1.168945pt;}
.ws1d3{word-spacing:1.209454pt;}
.wsc{word-spacing:1.227389pt;}
.wsc1{word-spacing:1.235960pt;}
.ws19f{word-spacing:1.243869pt;}
.ws19e{word-spacing:1.268452pt;}
.ws4e{word-spacing:1.275213pt;}
.ws1e9{word-spacing:1.314624pt;}
.ws210{word-spacing:1.338982pt;}
.ws9b{word-spacing:1.351177pt;}
.ws95{word-spacing:1.361651pt;}
.ws1e8{word-spacing:1.378752pt;}
.ws3d{word-spacing:1.381481pt;}
.ws96{word-spacing:1.382600pt;}
.ws52{word-spacing:1.434614pt;}
.ws188{word-spacing:1.435200pt;}
.ws60{word-spacing:1.540882pt;}
.ws1a1{word-spacing:1.573274pt;}
.ws18a{word-spacing:1.576512pt;}
.ws20f{word-spacing:1.578086pt;}
.ws189{word-spacing:1.585344pt;}
.ws1a0{word-spacing:1.592940pt;}
.ws9e{word-spacing:1.597322pt;}
.ws187{word-spacing:1.611840pt;}
.wsd1{word-spacing:1.632859pt;}
.ws74{word-spacing:1.647150pt;}
.ws97{word-spacing:1.649693pt;}
.ws98{word-spacing:1.660167pt;}
.ws1f4{word-spacing:1.700284pt;}
.ws9d{word-spacing:1.702064pt;}
.ws66{word-spacing:1.753418pt;}
.ws56{word-spacing:1.806551pt;}
.ws90{word-spacing:1.817190pt;}
.ws10{word-spacing:1.825328pt;}
.ws57{word-spacing:1.859685pt;}
.ws7d{word-spacing:1.912819pt;}
.ws211{word-spacing:1.912832pt;}
.wsc2{word-spacing:1.948209pt;}
.wsbf{word-spacing:1.963920pt;}
.wse9{word-spacing:1.964832pt;}
.ws3f{word-spacing:1.965953pt;}
.wsbd{word-spacing:1.985088pt;}
.wse8{word-spacing:2.006736pt;}
.ws12d{word-spacing:2.016000pt;}
.ws6e{word-spacing:2.019087pt;}
.wsbc{word-spacing:2.027424pt;}
.ws7b{word-spacing:2.072221pt;}
.ws1f6{word-spacing:2.125355pt;}
.ws19b{word-spacing:2.138669pt;}
.ws71{word-spacing:2.178489pt;}
.wsf2{word-spacing:2.218615pt;}
.wsc3{word-spacing:2.220539pt;}
.ws3{word-spacing:2.231616pt;}
.ws24{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.wse0{word-spacing:2.239350pt;}
.ws1f1{word-spacing:2.284756pt;}
.wsf3{word-spacing:2.286003pt;}
.ws38{word-spacing:2.337890pt;}
.ws116{word-spacing:2.356704pt;}
.ws115{word-spacing:2.431520pt;}
.ws41{word-spacing:2.444158pt;}
.wsc5{word-spacing:2.497292pt;}
.wsf4{word-spacing:2.529636pt;}
.ws139{word-spacing:2.550426pt;}
.wsf{word-spacing:2.550432pt;}
.ws3e{word-spacing:2.603559pt;}
.ws120{word-spacing:2.629248pt;}
.ws20d{word-spacing:2.630144pt;}
.ws17a{word-spacing:2.656693pt;}
.ws1f8{word-spacing:2.709827pt;}
.ws1ef{word-spacing:2.762961pt;}
.ws4f{word-spacing:2.816095pt;}
.ws212{word-spacing:2.867977pt;}
.ws29{word-spacing:2.869229pt;}
.ws200{word-spacing:2.869248pt;}
.ws1d6{word-spacing:2.922363pt;}
.ws13d{word-spacing:2.965920pt;}
.ws85{word-spacing:2.975497pt;}
.ws1c{word-spacing:2.984000pt;}
.ws13e{word-spacing:2.987296pt;}
.ws20e{word-spacing:3.012710pt;}
.ws43{word-spacing:3.028630pt;}
.ws7c{word-spacing:3.081764pt;}
.ws217{word-spacing:3.108352pt;}
.ws1d{word-spacing:3.188032pt;}
.wsa8{word-spacing:3.215592pt;}
.wsa7{word-spacing:3.226066pt;}
.ws62{word-spacing:3.241166pt;}
.ws1a2{word-spacing:3.284209pt;}
.ws53{word-spacing:3.294300pt;}
.ws11c{word-spacing:3.302592pt;}
.ws1b0{word-spacing:3.308791pt;}
.ws195{word-spacing:3.318624pt;}
.ws194{word-spacing:3.328457pt;}
.ws1b1{word-spacing:3.343206pt;}
.ws4d{word-spacing:3.400567pt;}
.ws34{word-spacing:3.453701pt;}
.ws1f0{word-spacing:3.506835pt;}
.ws11b{word-spacing:3.559104pt;}
.ws58{word-spacing:3.559969pt;}
.ws11d{word-spacing:3.575136pt;}
.ws12{word-spacing:3.586560pt;}
.ws114{word-spacing:3.607200pt;}
.ws2e{word-spacing:3.613103pt;}
.ws209{word-spacing:3.634381pt;}
.wsc4{word-spacing:3.666237pt;}
.ws7f{word-spacing:3.772505pt;}
.ws42{word-spacing:3.825638pt;}
.wsab{word-spacing:3.870232pt;}
.ws59{word-spacing:3.878772pt;}
.ws14c{word-spacing:3.911808pt;}
.ws30{word-spacing:3.931906pt;}
.ws108{word-spacing:3.949216pt;}
.ws107{word-spacing:3.954560pt;}
.ws14b{word-spacing:3.970592pt;}
.ws64{word-spacing:3.985040pt;}
.ws167{word-spacing:4.016947pt;}
.ws84{word-spacing:4.038174pt;}
.ws180{word-spacing:4.064768pt;}
.ws2f{word-spacing:4.091308pt;}
.ws16d{word-spacing:4.144442pt;}
.ws1fe{word-spacing:4.160410pt;}
.wsa4{word-spacing:4.163510pt;}
.ws6f{word-spacing:4.197575pt;}
.ws143{word-spacing:4.211072pt;}
.ws1b8{word-spacing:4.218340pt;}
.ws142{word-spacing:4.227104pt;}
.ws15a{word-spacing:4.232448pt;}
.ws159{word-spacing:4.243136pt;}
.ws141{word-spacing:4.280544pt;}
.ws70{word-spacing:4.356977pt;}
.ws1bd{word-spacing:4.459247pt;}
.ws1f7{word-spacing:4.463245pt;}
.ws1bc{word-spacing:4.498579pt;}
.ws17b{word-spacing:4.516379pt;}
.ws81{word-spacing:4.622646pt;}
.ws208{word-spacing:4.638618pt;}
.ws1b6{word-spacing:4.744403pt;}
.ws134{word-spacing:4.750816pt;}
.ws5a{word-spacing:4.782048pt;}
.ws1b7{word-spacing:4.818150pt;}
.ws1b5{word-spacing:4.827983pt;}
.wsa{word-spacing:4.872362pt;}
.ws125{word-spacing:4.884416pt;}
.ws5c{word-spacing:4.888316pt;}
.ws126{word-spacing:4.889760pt;}
.ws1f2{word-spacing:4.941450pt;}
.ws75{word-spacing:4.994583pt;}
.ws40{word-spacing:5.047717pt;}
.ws1bf{word-spacing:5.068891pt;}
.ws1be{word-spacing:5.088557pt;}
.ws13a{word-spacing:5.153985pt;}
.ws166{word-spacing:5.156960pt;}
.ws165{word-spacing:5.172992pt;}
.ws14a{word-spacing:5.199712pt;}
.ws61{word-spacing:5.207119pt;}
.ws18{word-spacing:5.212467pt;}
.ws149{word-spacing:5.290560pt;}
.ws44{word-spacing:5.366521pt;}
.wsed{word-spacing:5.380660pt;}
.wsee{word-spacing:5.391027pt;}
.wsef{word-spacing:5.411762pt;}
.ws216{word-spacing:5.451571pt;}
.ws77{word-spacing:5.472788pt;}
.ws147{word-spacing:5.488288pt;}
.ws153{word-spacing:5.520352pt;}
.ws37{word-spacing:5.525922pt;}
.ws154{word-spacing:5.531040pt;}
.ws16{word-spacing:5.547213pt;}
.ws4a{word-spacing:5.579056pt;}
.ws15f{word-spacing:5.605856pt;}
.ws5b{word-spacing:5.632190pt;}
.wsec{word-spacing:5.655395pt;}
.ws1b9{word-spacing:5.673618pt;}
.ws199{word-spacing:5.708033pt;}
.wseb{word-spacing:5.733150pt;}
.ws45{word-spacing:5.791591pt;}
.ws63{word-spacing:5.844725pt;}
.ws6a{word-spacing:5.897859pt;}
.ws197{word-spacing:5.993189pt;}
.ws83{word-spacing:6.004127pt;}
.ws156{word-spacing:6.006656pt;}
.ws69{word-spacing:6.057261pt;}
.ws198{word-spacing:6.076769pt;}
.ws1cf{word-spacing:6.170182pt;}
.ws1ce{word-spacing:6.229180pt;}
.ws138{word-spacing:6.269796pt;}
.ws1cd{word-spacing:6.283261pt;}
.ws1f9{word-spacing:6.322930pt;}
.ws82{word-spacing:6.429198pt;}
.ws13b{word-spacing:6.439520pt;}
.ws155{word-spacing:6.482272pt;}
.ws7a{word-spacing:6.482332pt;}
.ws102{word-spacing:6.503629pt;}
.ws8d{word-spacing:6.551450pt;}
.ws177{word-spacing:6.588599pt;}
.ws46{word-spacing:6.641733pt;}
.ws1b3{word-spacing:6.661830pt;}
.ws1b2{word-spacing:6.676580pt;}
.ws13c{word-spacing:6.685344pt;}
.ws1e5{word-spacing:6.706720pt;}
.ws183{word-spacing:6.742733pt;}
.ws1e4{word-spacing:6.770848pt;}
.ws1e3{word-spacing:6.829632pt;}
.ws151{word-spacing:6.845664pt;}
.ws152{word-spacing:6.989952pt;}
.ws1d5{word-spacing:7.119938pt;}
.ws1f3{word-spacing:7.438741pt;}
.wsb3{word-spacing:8.201330pt;}
.ws117{word-spacing:8.374048pt;}
.wsf8{word-spacing:8.459766pt;}
.wsf7{word-spacing:8.496052pt;}
.wsb4{word-spacing:8.546980pt;}
.ws8{word-spacing:8.740496pt;}
.wse1{word-spacing:9.366910pt;}
.ws186{word-spacing:9.499052pt;}
.wsce{word-spacing:10.019433pt;}
.ws9a{word-spacing:10.097167pt;}
.ws93{word-spacing:10.122726pt;}
.ws99{word-spacing:10.212384pt;}
.ws106{word-spacing:10.325056pt;}
.ws9{word-spacing:10.525789pt;}
.ws1bb{word-spacing:10.953917pt;}
.ws1ba{word-spacing:11.086662pt;}
.ws1fd{word-spacing:11.406012pt;}
.wsb5{word-spacing:11.647355pt;}
.wsfd{word-spacing:13.093976pt;}
.ws5{word-spacing:13.761632pt;}
.wsb{word-spacing:14.282342pt;}
.ws7{word-spacing:19.857270pt;}
.ws171{word-spacing:79.302417pt;}
.ws168{word-spacing:100.534852pt;}
.ws176{word-spacing:157.040034pt;}
.ws172{word-spacing:180.332237pt;}
.ws174{word-spacing:180.950434pt;}
.ws1ed{word-spacing:201.612493pt;}
.ws173{word-spacing:216.580403pt;}
.ws175{word-spacing:217.197995pt;}
.ws16a{word-spacing:232.600371pt;}
.ws1ec{word-spacing:299.780838pt;}
._1a{margin-left:-23.803972pt;}
._3d{margin-left:-22.247257pt;}
._3c{margin-left:-6.933891pt;}
._7{margin-left:-5.935389pt;}
._c{margin-left:-4.303872pt;}
._0{margin-left:-3.347424pt;}
._18{margin-left:-2.337898pt;}
._5{margin-left:-1.301776pt;}
._2c{width:1.013524pt;}
._6{width:2.666509pt;}
._19{width:6.322930pt;}
._1{width:9.298400pt;}
._8{width:10.435549pt;}
._2{width:11.533307pt;}
._34{width:12.518228pt;}
._9{width:13.724570pt;}
._d{width:14.728806pt;}
._16{width:15.647920pt;}
._a{width:16.545997pt;}
._1b{width:17.476397pt;}
._e{width:18.411008pt;}
._10{width:19.712665pt;}
._1c{width:20.786308pt;}
._3{width:22.502128pt;}
._15{width:23.857106pt;}
._3a{width:24.760382pt;}
._11{width:25.690221pt;}
._b{width:26.785258pt;}
._4{width:27.783619pt;}
._14{width:29.037654pt;}
._f{width:30.127104pt;}
._2b{width:31.030178pt;}
._1d{width:33.288356pt;}
._17{width:34.829246pt;}
._37{width:36.237297pt;}
._39{width:38.043849pt;}
._32{width:168.377037pt;}
._31{width:192.287437pt;}
._36{width:243.969971pt;}
._35{width:245.188992pt;}
._27{width:258.901811pt;}
._33{width:268.561613pt;}
._3b{width:280.941878pt;}
._2a{width:305.766195pt;}
._26{width:386.482384pt;}
._1f{width:410.780672pt;}
._21{width:422.735872pt;}
._24{width:446.646272pt;}
._25{width:479.260058pt;}
._22{width:537.410150pt;}
._28{width:544.009421pt;}
._29{width:590.491238pt;}
._20{width:607.945830pt;}
._1e{width:621.861683pt;}
._12{width:644.184325pt;}
._23{width:782.109184pt;}
._38{width:1689.888126pt;}
._2e{width:1802.282064pt;}
._2d{width:1820.872740pt;}
._30{width:1836.923052pt;}
._2f{width:2222.978667pt;}
._13{width:2244.232000pt;}
.fs9{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs16{font-size:39.155200pt;}
.fs8{font-size:40.381867pt;}
.fsf{font-size:41.283200pt;}
.fsc{font-size:41.708800pt;}
.fsa{font-size:42.507200pt;}
.fs12{font-size:42.560000pt;}
.fs18{font-size:44.160000pt;}
.fs11{font-size:46.560000pt;}
.fse{font-size:47.040000pt;}
.fsb{font-size:47.820800pt;}
.fs14{font-size:48.000000pt;}
.fs17{font-size:49.164800pt;}
.fs15{font-size:49.829333pt;}
.fs10{font-size:51.836800pt;}
.fsd{font-size:52.371200pt;}
.fs6{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs13{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:95.641600pt;}
.y230{bottom:-601.365605pt;}
.y262{bottom:-592.802245pt;}
.y253{bottom:-549.244566pt;}
.y275{bottom:-542.456690pt;}
.y252{bottom:-533.494622pt;}
.y274{bottom:-526.706747pt;}
.y251{bottom:-517.744678pt;}
.y273{bottom:-511.030550pt;}
.y250{bottom:-502.068482pt;}
.y272{bottom:-495.280607pt;}
.y24f{bottom:-486.318538pt;}
.y271{bottom:-479.604410pt;}
.y24e{bottom:-470.642342pt;}
.y270{bottom:-463.854466pt;}
.y24d{bottom:-454.892398pt;}
.y26f{bottom:-448.104523pt;}
.y24c{bottom:-439.142454pt;}
.y24b{bottom:-423.466258pt;}
.y26e{bottom:-418.002981pt;}
.y24a{bottom:-407.716314pt;}
.y26d{bottom:-403.797813pt;}
.y249{bottom:-391.966370pt;}
.y26c{bottom:-389.666613pt;}
.y134{bottom:-378.956625pt;}
.y248{bottom:-376.290174pt;}
.y26b{bottom:-375.535413pt;}
.y26a{bottom:-361.330245pt;}
.y247{bottom:-360.540230pt;}
.y246{bottom:-344.864034pt;}
.y269{bottom:-343.003845pt;}
.y245{bottom:-329.114090pt;}
.y153{bottom:-322.845198pt;}
.y1a4{bottom:-318.531600pt;}
.y244{bottom:-313.364146pt;}
.y152{bottom:-306.317035pt;}
.y243{bottom:-297.686721pt;}
.y151{bottom:-289.711116pt;}
.y242{bottom:-281.936777pt;}
.y150{bottom:-273.105197pt;}
.y241{bottom:-266.259352pt;}
.y27e{bottom:-265.630267pt;}
.y1c4{bottom:-265.167816pt;}
.y14f{bottom:-256.577033pt;}
.y240{bottom:-250.509408pt;}
.y1c3{bottom:-248.128472pt;}
.y14e{bottom:-239.971114pt;}
.y23f{bottom:-234.759464pt;}
.y1c2{bottom:-231.008968pt;}
.y14d{bottom:-223.442951pt;}
.y23e{bottom:-219.083268pt;}
.y166{bottom:-217.878267pt;}
.y1c1{bottom:-213.969624pt;}
.y291{bottom:-210.906837pt;}
.y14c{bottom:-206.837032pt;}
.y23d{bottom:-203.333324pt;}
.y1c0{bottom:-196.850120pt;}
.y109{bottom:-195.845421pt;}
.y290{bottom:-193.787333pt;}
.y23c{bottom:-187.657128pt;}
.y14b{bottom:-186.428884pt;}
.y1bf{bottom:-179.730616pt;}
.y28f{bottom:-176.747989pt;}
.y23b{bottom:-171.907184pt;}
.y1be{bottom:-162.691272pt;}
.y184{bottom:-160.356619pt;}
.y28e{bottom:-159.628485pt;}
.y23a{bottom:-156.157240pt;}
.y14a{bottom:-154.303027pt;}
.y1bd{bottom:-145.571768pt;}
.y183{bottom:-143.317275pt;}
.y28d{bottom:-142.589141pt;}
.y128{bottom:-140.572292pt;}
.y239{bottom:-140.481044pt;}
.y149{bottom:-137.697108pt;}
.y1bc{bottom:-128.452264pt;}
.y182{bottom:-126.197771pt;}
.y28c{bottom:-125.469637pt;}
.y238{bottom:-124.731100pt;}
.y127{bottom:-123.795178pt;}
.y148{bottom:-121.168944pt;}
.y181{bottom:-109.078267pt;}
.y237{bottom:-108.981156pt;}
.y28b{bottom:-108.350133pt;}
.y1bb{bottom:-107.411600pt;}
.y126{bottom:-107.096621pt;}
.y147{bottom:-104.563025pt;}
.y236{bottom:-93.304960pt;}
.y235{bottom:-77.555016pt;}
.y180{bottom:-76.359067pt;}
.y28a{bottom:-75.631067pt;}
.y125{bottom:-75.030629pt;}
.y1ba{bottom:-74.692400pt;}
.y146{bottom:-72.825272pt;}
.y268{bottom:-69.065381pt;}
.y17f{bottom:-60.918667pt;}
.y289{bottom:-60.190667pt;}
.y124{bottom:-59.821421pt;}
.y1b9{bottom:-59.252000pt;}
.y234{bottom:-58.197605pt;}
.y145{bottom:-57.848084pt;}
.y267{bottom:-54.860213pt;}
.y17e{bottom:-45.558667pt;}
.y288{bottom:-44.830667pt;}
.y123{bottom:-44.768621pt;}
.y1b8{bottom:-43.811600pt;}
.y144{bottom:-42.948884pt;}
.y266{bottom:-40.729013pt;}
.y17d{bottom:-30.198667pt;}
.y122{bottom:-29.715821pt;}
.y287{bottom:-29.470667pt;}
.y1b7{bottom:-28.451600pt;}
.y233{bottom:-28.095573pt;}
.y143{bottom:-27.971696pt;}
.y265{bottom:-26.523845pt;}
.y17c{bottom:-14.758267pt;}
.y121{bottom:-14.663021pt;}
.y286{bottom:-14.030267pt;}
.y232{bottom:-13.890405pt;}
.y1b6{bottom:-13.091600pt;}
.y142{bottom:-13.072496pt;}
.y264{bottom:-12.392645pt;}
.y0{bottom:0.000000pt;}
.y231{bottom:4.509433pt;}
.y120{bottom:4.867203pt;}
.y17b{bottom:5.168269pt;}
.y285{bottom:5.889733pt;}
.y263{bottom:5.934064pt;}
.y141{bottom:6.254299pt;}
.y1b5{bottom:6.835168pt;}
.y65{bottom:28.346667pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y27a{bottom:89.980000pt;}
.y36{bottom:93.018667pt;}
.y130{bottom:94.030667pt;}
.y64{bottom:94.152000pt;}
.y2a7{bottom:97.282667pt;}
.y1d1{bottom:98.821333pt;}
.yc4{bottom:105.909333pt;}
.y9c{bottom:106.308000pt;}
.y279{bottom:107.076000pt;}
.y1fd{bottom:107.485333pt;}
.y35{bottom:108.920000pt;}
.y12f{bottom:110.768000pt;}
.y63{bottom:110.889333pt;}
.y2dd{bottom:112.986667pt;}
.y2a6{bottom:114.020000pt;}
.y1d0{bottom:115.558667pt;}
.yf0{bottom:116.372000pt;}
.y1a0{bottom:118.838667pt;}
.y300{bottom:118.901333pt;}
.yc3{bottom:122.646667pt;}
.y9b{bottom:123.045333pt;}
.y21{bottom:123.790666pt;}
.y278{bottom:124.172000pt;}
.y1fc{bottom:124.222667pt;}
.y34{bottom:124.820000pt;}
.y12e{bottom:127.505333pt;}
.y62{bottom:127.626667pt;}
.y2dc{bottom:129.724000pt;}
.y2a5{bottom:130.757333pt;}
.y1cf{bottom:132.296000pt;}
.yef{bottom:133.109333pt;}
.y2ff{bottom:134.244000pt;}
.y19f{bottom:135.574667pt;}
.yc2{bottom:139.384000pt;}
.y9a{bottom:139.782667pt;}
.y33{bottom:140.720000pt;}
.y1fb{bottom:140.960000pt;}
.y277{bottom:141.268000pt;}
.y61{bottom:144.364000pt;}
.y2db{bottom:146.461333pt;}
.y162{bottom:146.782667pt;}
.y2a4{bottom:147.494667pt;}
.y2fe{bottom:149.586667pt;}
.yee{bottom:149.846667pt;}
.y19e{bottom:152.312000pt;}
.y1ce{bottom:153.018667pt;}
.yc1{bottom:156.121333pt;}
.y99{bottom:156.520000pt;}
.y32{bottom:156.621333pt;}
.y12d{bottom:157.341333pt;}
.y1fa{bottom:157.697333pt;}
.y276{bottom:158.364000pt;}
.y60{bottom:161.101333pt;}
.y2da{bottom:163.198667pt;}
.y161{bottom:163.520000pt;}
.y2a3{bottom:164.232000pt;}
.y2fd{bottom:164.928000pt;}
.yed{bottom:166.584000pt;}
.y19d{bottom:169.049333pt;}
.y31{bottom:172.521333pt;}
.yc0{bottom:172.858667pt;}
.y98{bottom:173.257333pt;}
.y1f9{bottom:174.434667pt;}
.y12c{bottom:174.437333pt;}
.y18{bottom:175.052000pt;}
.y5f{bottom:177.838667pt;}
.y25f{bottom:178.301333pt;}
.y2d9{bottom:179.936000pt;}
.y160{bottom:180.257333pt;}
.y2fc{bottom:180.270667pt;}
.y2a2{bottom:180.969333pt;}
.y1cd{bottom:182.906667pt;}
.yec{bottom:183.321333pt;}
.y19c{bottom:185.786667pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y30{bottom:188.421333pt;}
.ybf{bottom:189.596000pt;}
.y97{bottom:189.994667pt;}
.y1f8{bottom:191.172000pt;}
.y32f{bottom:191.521333pt;}
.y12b{bottom:191.533333pt;}
.y5e{bottom:194.576000pt;}
.y2fb{bottom:195.613333pt;}
.y2d8{bottom:196.673333pt;}
.y15f{bottom:196.994667pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y2a1{bottom:197.706667pt;}
.y1cc{bottom:199.644000pt;}
.yeb{bottom:200.058667pt;}
.y19b{bottom:202.524000pt;}
.y2f{bottom:204.322667pt;}
.y22c{bottom:205.273333pt;}
.ybe{bottom:206.333333pt;}
.y96{bottom:206.732000pt;}
.y32e{bottom:206.864000pt;}
.y1f7{bottom:207.909333pt;}
.y12a{bottom:208.629333pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y2fa{bottom:210.956000pt;}
.y5d{bottom:211.313333pt;}
.y2d7{bottom:213.410667pt;}
.y15e{bottom:213.732000pt;}
.y2a0{bottom:214.444000pt;}
.y1cb{bottom:216.381333pt;}
.yea{bottom:216.796000pt;}
.y19a{bottom:219.261333pt;}
.y22b{bottom:222.010667pt;}
.y32d{bottom:222.206667pt;}
.ybd{bottom:223.070667pt;}
.y95{bottom:223.469333pt;}
.y1f6{bottom:224.646667pt;}
.y129{bottom:225.724000pt;}
.y2f9{bottom:226.298667pt;}
.y5c{bottom:228.050667pt;}
.y2d6{bottom:230.148000pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y29f{bottom:231.181333pt;}
.y1ca{bottom:233.118667pt;}
.ye9{bottom:233.533333pt;}
.y15d{bottom:234.454667pt;}
.y199{bottom:235.998667pt;}
.y22a{bottom:238.746667pt;}
.ybc{bottom:239.808000pt;}
.y94{bottom:240.206667pt;}
.y1f5{bottom:241.384000pt;}
.y2f8{bottom:241.641333pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y5b{bottom:244.788000pt;}
.y106{bottom:245.661333pt;}
.y2d5{bottom:246.885333pt;}
.y29e{bottom:247.918667pt;}
.ye8{bottom:250.270667pt;}
.y198{bottom:252.736000pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y229{bottom:255.484000pt;}
.ybb{bottom:256.545333pt;}
.y93{bottom:256.944000pt;}
.y2f7{bottom:256.984000pt;}
.y1f4{bottom:258.121333pt;}
.y5a{bottom:261.525333pt;}
.y1c9{bottom:262.954667pt;}
.y2d4{bottom:263.622667pt;}
.y2e{bottom:264.148000pt;}
.y15c{bottom:264.342667pt;}
.y29d{bottom:264.656000pt;}
.ye7{bottom:267.008000pt;}
.y197{bottom:269.473333pt;}
.y228{bottom:272.221333pt;}
.y32c{bottom:272.285333pt;}
.y2f6{bottom:272.326667pt;}
.yba{bottom:273.282667pt;}
.y92{bottom:273.681333pt;}
.y1f3{bottom:274.858667pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y59{bottom:278.262667pt;}
.y2d{bottom:280.048000pt;}
.y1c8{bottom:280.050667pt;}
.y2d3{bottom:280.360000pt;}
.y15b{bottom:281.080000pt;}
.y29c{bottom:281.393333pt;}
.ye6{bottom:283.744000pt;}
.y196{bottom:286.210667pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y32b{bottom:287.628000pt;}
.y2f5{bottom:287.668000pt;}
.y227{bottom:288.958667pt;}
.yb9{bottom:290.020000pt;}
.y91{bottom:290.417333pt;}
.y1f2{bottom:291.596000pt;}
.y58{bottom:295.000000pt;}
.y2c{bottom:295.949333pt;}
.y2d2{bottom:297.097333pt;}
.y1c7{bottom:297.146667pt;}
.y15a{bottom:297.817333pt;}
.y29b{bottom:298.130667pt;}
.ye5{bottom:300.481333pt;}
.y195{bottom:302.948000pt;}
.y32a{bottom:302.970667pt;}
.y2f4{bottom:303.010667pt;}
.y284{bottom:303.648933pt;}
.y226{bottom:305.696000pt;}
.yb8{bottom:306.757333pt;}
.y90{bottom:307.154667pt;}
.y1f1{bottom:308.333333pt;}
.yf{bottom:309.452000pt;}
.y57{bottom:311.737333pt;}
.y2b{bottom:311.849333pt;}
.y2d1{bottom:313.834667pt;}
.y1c6{bottom:314.242667pt;}
.y159{bottom:314.553333pt;}
.y29a{bottom:314.868000pt;}
.ye4{bottom:317.218667pt;}
.y329{bottom:318.313333pt;}
.y2f3{bottom:318.353333pt;}
.y283{bottom:319.089333pt;}
.y194{bottom:319.685333pt;}
.y225{bottom:322.433333pt;}
.yb7{bottom:323.494667pt;}
.y8f{bottom:323.892000pt;}
.y1f0{bottom:325.070667pt;}
.y22f{bottom:326.068105pt;}
.y56{bottom:328.474667pt;}
.y2d0{bottom:330.572000pt;}
.y1c5{bottom:331.337333pt;}
.y299{bottom:331.605333pt;}
.y328{bottom:333.656000pt;}
.y2f2{bottom:333.696000pt;}
.y22e{bottom:333.943195pt;}
.ye3{bottom:333.956000pt;}
.y282{bottom:334.449333pt;}
.y261{bottom:334.631465pt;}
.y193{bottom:336.422667pt;}
.y2a{bottom:337.048000pt;}
.y224{bottom:339.170667pt;}
.yb6{bottom:340.232000pt;}
.y8e{bottom:340.629333pt;}
.y1ef{bottom:341.808000pt;}
.y260{bottom:342.506555pt;}
.ye{bottom:343.809333pt;}
.y158{bottom:344.390667pt;}
.y55{bottom:345.212000pt;}
.y2cf{bottom:347.309333pt;}
.y298{bottom:348.341333pt;}
.y327{bottom:348.998667pt;}
.y2f1{bottom:349.038667pt;}
.y281{bottom:349.889733pt;}
.ye2{bottom:350.693333pt;}
.y1a1{bottom:351.274667pt;}
.y192{bottom:353.160000pt;}
.y223{bottom:355.908000pt;}
.yb5{bottom:356.968000pt;}
.y8d{bottom:357.366667pt;}
.y1ee{bottom:358.545333pt;}
.y29{bottom:360.918667pt;}
.y157{bottom:361.486667pt;}
.y54{bottom:361.949333pt;}
.yd{bottom:362.706666pt;}
.y2ce{bottom:364.046667pt;}
.y326{bottom:364.341333pt;}
.y2f0{bottom:364.381333pt;}
.y297{bottom:365.078667pt;}
.y280{bottom:365.249733pt;}
.ye1{bottom:367.430667pt;}
.y140{bottom:369.345164pt;}
.y191{bottom:369.897333pt;}
.y222{bottom:372.645333pt;}
.yb4{bottom:373.705333pt;}
.y8c{bottom:374.104000pt;}
.y1ed{bottom:375.282667pt;}
.y28{bottom:376.818667pt;}
.yc5{bottom:377.690667pt;}
.y156{bottom:378.581333pt;}
.y325{bottom:379.684000pt;}
.y2ef{bottom:379.724000pt;}
.y2cd{bottom:380.784000pt;}
.y53{bottom:382.670667pt;}
.ye0{bottom:384.168000pt;}
.y1b4{bottom:384.594512pt;}
.y11f{bottom:384.872630pt;}
.y27f{bottom:385.170069pt;}
.y13f{bottom:385.951083pt;}
.y190{bottom:386.634667pt;}
.y221{bottom:389.382667pt;}
.yb3{bottom:390.442667pt;}
.y8b{bottom:390.841333pt;}
.y1ec{bottom:392.020000pt;}
.y27{bottom:392.720000pt;}
.y296{bottom:394.916000pt;}
.y324{bottom:395.025333pt;}
.y2ee{bottom:395.066667pt;}
.y155{bottom:395.677333pt;}
.y2cc{bottom:397.521333pt;}
.ydf{bottom:400.905333pt;}
.y11e{bottom:401.649744pt;}
.y1b3{bottom:401.714016pt;}
.y13e{bottom:402.557002pt;}
.y18f{bottom:403.372000pt;}
.y220{bottom:406.120000pt;}
.yb2{bottom:407.180000pt;}
.y8a{bottom:407.578667pt;}
.y26{bottom:408.620000pt;}
.y1eb{bottom:408.757333pt;}
.y323{bottom:410.368000pt;}
.y2ed{bottom:410.409333pt;}
.y295{bottom:412.012000pt;}
.y154{bottom:412.773333pt;}
.y2cb{bottom:414.258667pt;}
.y17a{bottom:416.928813pt;}
.yde{bottom:417.642667pt;}
.y11d{bottom:418.426858pt;}
.y1b2{bottom:418.754696pt;}
.y13d{bottom:419.085166pt;}
.y18e{bottom:420.109333pt;}
.y21f{bottom:422.857333pt;}
.yb1{bottom:423.917333pt;}
.y89{bottom:424.316000pt;}
.y25{bottom:424.520000pt;}
.y1ea{bottom:425.494667pt;}
.y322{bottom:425.710667pt;}
.y2ec{bottom:425.750667pt;}
.y294{bottom:429.106667pt;}
.y2ca{bottom:430.994667pt;}
.y131{bottom:432.710667pt;}
.y179{bottom:433.969493pt;}
.ydd{bottom:434.380000pt;}
.y11c{bottom:435.125415pt;}
.y13c{bottom:435.691085pt;}
.y1b1{bottom:435.874200pt;}
.y18d{bottom:436.846667pt;}
.y21e{bottom:439.594667pt;}
.y24{bottom:440.421333pt;}
.yb0{bottom:440.654667pt;}
.y88{bottom:441.053333pt;}
.y2eb{bottom:441.093333pt;}
.y1e9{bottom:442.232000pt;}
.y293{bottom:446.202667pt;}
.yc{bottom:446.990669pt;}
.y2c9{bottom:447.732000pt;}
.y52{bottom:449.470667pt;}
.y178{bottom:451.088997pt;}
.ydc{bottom:451.117333pt;}
.y11b{bottom:451.902529pt;}
.y13b{bottom:452.297004pt;}
.y1b0{bottom:452.913544pt;}
.y18c{bottom:453.584000pt;}
.y23{bottom:456.321333pt;}
.y21d{bottom:456.332000pt;}
.y321{bottom:456.396000pt;}
.yaf{bottom:457.392000pt;}
.y87{bottom:457.790667pt;}
.y1e8{bottom:458.969333pt;}
.y2ea{bottom:460.421333pt;}
.yb{bottom:462.990669pt;}
.y292{bottom:463.298667pt;}
.y2c8{bottom:464.469333pt;}
.y51{bottom:466.766667pt;}
.ydb{bottom:467.854667pt;}
.y177{bottom:468.128341pt;}
.y11a{bottom:468.601086pt;}
.y13a{bottom:468.825167pt;}
.y1af{bottom:470.033048pt;}
.y18b{bottom:470.321333pt;}
.y320{bottom:471.738667pt;}
.y22{bottom:472.221333pt;}
.y21c{bottom:473.069333pt;}
.yae{bottom:474.129333pt;}
.y86{bottom:474.528000pt;}
.y1e7{bottom:475.706667pt;}
.ya{bottom:478.990666pt;}
.y2c7{bottom:481.206667pt;}
.y27b{bottom:483.236000pt;}
.yda{bottom:484.592000pt;}
.y176{bottom:485.247845pt;}
.y119{bottom:485.378200pt;}
.y139{bottom:485.431086pt;}
.y18a{bottom:487.058667pt;}
.y31f{bottom:487.081333pt;}
.y1ae{bottom:487.152552pt;}
.y21b{bottom:489.806667pt;}
.y2e9{bottom:490.309333pt;}
.yad{bottom:490.866667pt;}
.y85{bottom:491.265333pt;}
.y1e6{bottom:492.444000pt;}
.y9{bottom:494.990666pt;}
.y2c6{bottom:497.944000pt;}
.y50{bottom:500.001333pt;}
.yd9{bottom:501.329333pt;}
.y138{bottom:501.959250pt;}
.y118{bottom:502.155314pt;}
.y175{bottom:502.367349pt;}
.y31e{bottom:502.424000pt;}
.y1ad{bottom:504.191896pt;}
.y21a{bottom:506.544000pt;}
.y25e{bottom:506.560000pt;}
.yac{bottom:507.604000pt;}
.y84{bottom:508.002667pt;}
.y2e8{bottom:513.901333pt;}
.y2c5{bottom:514.681333pt;}
.y189{bottom:516.894667pt;}
.y4f{bottom:517.297333pt;}
.y31d{bottom:517.766667pt;}
.yd8{bottom:518.066667pt;}
.y137{bottom:518.565169pt;}
.y117{bottom:518.855180pt;}
.y174{bottom:519.408029pt;}
.y1e5{bottom:520.148000pt;}
.y1ac{bottom:521.311400pt;}
.y219{bottom:523.281333pt;}
.y25d{bottom:523.297333pt;}
.yab{bottom:524.341333pt;}
.y83{bottom:524.740000pt;}
.y2e7{bottom:529.522667pt;}
.y2c4{bottom:531.418667pt;}
.y1e4{bottom:532.766667pt;}
.y31c{bottom:533.108000pt;}
.y188{bottom:533.990667pt;}
.y4e{bottom:534.592000pt;}
.yd7{bottom:534.804000pt;}
.y136{bottom:535.171088pt;}
.y116{bottom:535.632294pt;}
.y173{bottom:536.527533pt;}
.y1ab{bottom:538.430904pt;}
.y218{bottom:540.018667pt;}
.y25c{bottom:540.034667pt;}
.yaa{bottom:541.078667pt;}
.y82{bottom:541.477333pt;}
.y2e6{bottom:545.144000pt;}
.y1e3{bottom:545.386667pt;}
.y2c3{bottom:548.156000pt;}
.y31b{bottom:548.450667pt;}
.y187{bottom:551.086667pt;}
.yd6{bottom:551.541333pt;}
.y135{bottom:551.700547pt;}
.y4d{bottom:551.886667pt;}
.y115{bottom:552.330851pt;}
.y172{bottom:553.566877pt;}
.y1aa{bottom:555.470248pt;}
.y217{bottom:556.756000pt;}
.y25b{bottom:556.772000pt;}
.ya9{bottom:557.816000pt;}
.y81{bottom:558.214667pt;}
.y1e2{bottom:562.136000pt;}
.y31a{bottom:563.793333pt;}
.y2c2{bottom:564.893333pt;}
.y186{bottom:568.182667pt;}
.yd5{bottom:568.278667pt;}
.y2e5{bottom:568.734667pt;}
.y114{bottom:569.107965pt;}
.y4c{bottom:569.182667pt;}
.y171{bottom:570.686381pt;}
.y1a9{bottom:572.589752pt;}
.y216{bottom:573.493333pt;}
.y25a{bottom:573.508000pt;}
.y8{bottom:573.786667pt;}
.ya8{bottom:574.553333pt;}
.y80{bottom:574.952000pt;}
.y319{bottom:579.136000pt;}
.y2c1{bottom:581.630667pt;}
.y1e1{bottom:583.150667pt;}
.yd4{bottom:585.016000pt;}
.y185{bottom:585.277333pt;}
.y113{bottom:585.885079pt;}
.y4b{bottom:586.477333pt;}
.y170{bottom:587.805885pt;}
.y1a8{bottom:589.629096pt;}
.y215{bottom:590.230667pt;}
.y259{bottom:590.245333pt;}
.ya7{bottom:591.290667pt;}
.y7f{bottom:591.689333pt;}
.y2e4{bottom:592.326667pt;}
.y7{bottom:592.685334pt;}
.y318{bottom:594.478667pt;}
.y133{bottom:598.881091pt;}
.yd3{bottom:601.753333pt;}
.y2c0{bottom:602.353333pt;}
.y112{bottom:602.583636pt;}
.y4a{bottom:603.772000pt;}
.y1e0{bottom:604.164000pt;}
.y16f{bottom:604.845229pt;}
.y163{bottom:605.214667pt;}
.y1a7{bottom:606.748600pt;}
.y214{bottom:606.968000pt;}
.y258{bottom:606.982667pt;}
.y132{bottom:607.184175pt;}
.y2e3{bottom:607.948000pt;}
.ya6{bottom:608.028000pt;}
.y7e{bottom:608.426667pt;}
.y317{bottom:609.821333pt;}
.yd2{bottom:618.490667pt;}
.y111{bottom:619.360750pt;}
.y49{bottom:621.068000pt;}
.y16e{bottom:621.964733pt;}
.y213{bottom:623.705333pt;}
.y257{bottom:623.720000pt;}
.y1a6{bottom:623.868104pt;}
.ya5{bottom:624.765333pt;}
.y7d{bottom:625.164000pt;}
.y1df{bottom:625.178667pt;}
.y2e2{bottom:631.540000pt;}
.y2bf{bottom:632.241333pt;}
.y110{bottom:636.137864pt;}
.y105{bottom:636.720000pt;}
.y48{bottom:638.362667pt;}
.y16d{bottom:639.084237pt;}
.y212{bottom:640.442667pt;}
.y316{bottom:640.506667pt;}
.y1a5{bottom:640.908784pt;}
.ya4{bottom:641.502667pt;}
.y7c{bottom:641.901333pt;}
.y256{bottom:644.442667pt;}
.y6{bottom:645.598667pt;}
.y1de{bottom:646.192000pt;}
.yd1{bottom:646.194667pt;}
.y2e1{bottom:647.161333pt;}
.y2be{bottom:648.978667pt;}
.y10f{bottom:652.837730pt;}
.y104{bottom:653.457333pt;}
.y47{bottom:655.658667pt;}
.y315{bottom:655.848000pt;}
.y16c{bottom:656.123581pt;}
.ya3{bottom:658.240000pt;}
.y7b{bottom:658.638667pt;}
.y2e0{bottom:662.782667pt;}
.yd0{bottom:662.944000pt;}
.y2bd{bottom:665.716000pt;}
.y1dd{bottom:667.206667pt;}
.y211{bottom:668.146667pt;}
.y3{bottom:668.977329pt;}
.y10e{bottom:669.614844pt;}
.y103{bottom:670.194667pt;}
.y314{bottom:671.190667pt;}
.y255{bottom:671.489333pt;}
.y46{bottom:672.953333pt;}
.y16b{bottom:673.243085pt;}
.ya2{bottom:674.977333pt;}
.y7a{bottom:675.376000pt;}
.y2df{bottom:678.404000pt;}
.y210{bottom:680.765333pt;}
.y2bc{bottom:682.453333pt;}
.ycf{bottom:683.958667pt;}
.y10d{bottom:686.313401pt;}
.y313{bottom:686.533333pt;}
.y102{bottom:686.932000pt;}
.y1dc{bottom:688.220000pt;}
.y254{bottom:688.585333pt;}
.y1a3{bottom:689.548520pt;}
.y45{bottom:690.248000pt;}
.y16a{bottom:690.282429pt;}
.ya1{bottom:691.714667pt;}
.y79{bottom:692.113333pt;}
.y20f{bottom:693.385333pt;}
.y2de{bottom:694.025333pt;}
.y1a2{bottom:698.108400pt;}
.y2bb{bottom:699.190667pt;}
.y312{bottom:701.876000pt;}
.y10c{bottom:703.090515pt;}
.y101{bottom:703.669333pt;}
.yce{bottom:704.972000pt;}
.y169{bottom:707.401933pt;}
.y44{bottom:707.544000pt;}
.ya0{bottom:708.452000pt;}
.y22d{bottom:708.522667pt;}
.y78{bottom:708.850667pt;}
.y1db{bottom:709.233333pt;}
.y20e{bottom:710.134667pt;}
.y2ba{bottom:715.928000pt;}
.y311{bottom:717.218667pt;}
.y100{bottom:720.406667pt;}
.y10b{bottom:723.709057pt;}
.y168{bottom:724.521437pt;}
.y9f{bottom:725.189333pt;}
.y77{bottom:725.588000pt;}
.ycd{bottom:725.986667pt;}
.y1da{bottom:730.248000pt;}
.y20d{bottom:731.149333pt;}
.y310{bottom:732.561333pt;}
.y2b9{bottom:732.665333pt;}
.yff{bottom:737.144000pt;}
.y167{bottom:741.562117pt;}
.y43{bottom:741.841333pt;}
.y9e{bottom:741.926667pt;}
.y76{bottom:742.324000pt;}
.y27d{bottom:742.449853pt;}
.y10a{bottom:744.406155pt;}
.ycc{bottom:747.000000pt;}
.y30f{bottom:747.904000pt;}
.y2b8{bottom:749.402667pt;}
.y27c{bottom:751.009733pt;}
.y1d9{bottom:751.261333pt;}
.y20c{bottom:752.162667pt;}
.yfe{bottom:753.881333pt;}
.y42{bottom:756.188000pt;}
.y75{bottom:759.061333pt;}
.y9d{bottom:762.648000pt;}
.y30e{bottom:763.246667pt;}
.y2b7{bottom:766.140000pt;}
.ycb{bottom:768.014667pt;}
.yfd{bottom:770.618667pt;}
.y1d7{bottom:772.276000pt;}
.y20b{bottom:773.177333pt;}
.y41{bottom:774.392000pt;}
.y74{bottom:775.798667pt;}
.y30d{bottom:778.589333pt;}
.y1d5{bottom:779.581333pt;}
.y2{bottom:781.661334pt;}
.y2b6{bottom:782.877333pt;}
.y40{bottom:784.880000pt;}
.y1d4{bottom:786.888000pt;}
.yfc{bottom:787.356000pt;}
.yca{bottom:789.028000pt;}
.y165{bottom:790.201853pt;}
.y108{bottom:792.073096pt;}
.y73{bottom:792.536000pt;}
.y30c{bottom:793.930667pt;}
.y20a{bottom:794.190667pt;}
.y1d8{bottom:794.193333pt;}
.y164{bottom:798.761733pt;}
.y2b5{bottom:799.613333pt;}
.y107{bottom:800.461779pt;}
.y1d6{bottom:801.500000pt;}
.y3f{bottom:803.084000pt;}
.yfb{bottom:804.093333pt;}
.y72{bottom:809.273333pt;}
.yc9{bottom:810.042667pt;}
.y3e{bottom:813.573333pt;}
.y209{bottom:815.205333pt;}
.y2b4{bottom:816.350667pt;}
.yfa{bottom:820.830667pt;}
.y30b{bottom:824.616000pt;}
.y71{bottom:826.010667pt;}
.y3d{bottom:827.920000pt;}
.y1d3{bottom:829.605333pt;}
.yc8{bottom:831.056000pt;}
.y208{bottom:836.218667pt;}
.yf9{bottom:837.568000pt;}
.y30a{bottom:839.958667pt;}
.y3c{bottom:842.265333pt;}
.y70{bottom:842.748000pt;}
.y2b3{bottom:844.056000pt;}
.y3b{bottom:846.122667pt;}
.y1d2{bottom:846.701333pt;}
.yc7{bottom:852.070667pt;}
.yf8{bottom:854.305333pt;}
.y309{bottom:855.301333pt;}
.y207{bottom:857.232000pt;}
.y1{bottom:859.312000pt;}
.y6f{bottom:859.485333pt;}
.y2b1{bottom:863.462667pt;}
.y308{bottom:870.644000pt;}
.y2b2{bottom:870.768000pt;}
.yf7{bottom:871.042667pt;}
.y6e{bottom:876.222667pt;}
.y2b0{bottom:878.073333pt;}
.y206{bottom:878.246667pt;}
.yc6{bottom:880.176000pt;}
.y3a{bottom:885.836000pt;}
.y307{bottom:885.986667pt;}
.yf6{bottom:887.780000pt;}
.y2ae{bottom:891.660000pt;}
.y2af{bottom:892.046667pt;}
.y2ac{bottom:892.685333pt;}
.y6d{bottom:892.960000pt;}
.y205{bottom:899.260000pt;}
.y2ad{bottom:899.992000pt;}
.y306{bottom:901.329333pt;}
.yf5{bottom:904.517333pt;}
.y2ab{bottom:907.297333pt;}
.y6c{bottom:909.697333pt;}
.y305{bottom:916.670667pt;}
.y203{bottom:920.274667pt;}
.yf4{bottom:921.254667pt;}
.y39{bottom:921.320000pt;}
.y6b{bottom:926.434667pt;}
.y201{bottom:927.580000pt;}
.y2aa{bottom:928.312000pt;}
.y304{bottom:932.013333pt;}
.y200{bottom:934.886667pt;}
.yf3{bottom:937.992000pt;}
.y204{bottom:942.192000pt;}
.y6a{bottom:943.172000pt;}
.y38{bottom:946.425333pt;}
.y303{bottom:947.356000pt;}
.y2a9{bottom:949.325333pt;}
.y202{bottom:949.498667pt;}
.yf2{bottom:954.729333pt;}
.y69{bottom:959.909333pt;}
.y302{bottom:962.698667pt;}
.y2a8{bottom:963.937333pt;}
.y37{bottom:971.530667pt;}
.yf1{bottom:975.450667pt;}
.y68{bottom:976.646667pt;}
.y1ff{bottom:977.604000pt;}
.y301{bottom:978.041333pt;}
.y67{bottom:993.384000pt;}
.y1fe{bottom:994.700000pt;}
.y66{bottom:1046.810667pt;}
.h7{height:28.560000pt;}
.hd{height:30.063343pt;}
.h12{height:34.574438pt;}
.h9{height:35.073565pt;}
.h29{height:35.385213pt;}
.h26{height:36.574169pt;}
.h1d{height:37.308322pt;}
.h17{height:37.692944pt;}
.h10{height:38.415786pt;}
.h23{height:38.462187pt;}
.h1a{height:38.561895pt;}
.h16{height:38.562387pt;}
.h14{height:38.959441pt;}
.ha{height:39.000258pt;}
.h1f{height:39.754531pt;}
.he{height:40.084290pt;}
.h6{height:40.800000pt;}
.h28{height:41.249063pt;}
.h3{height:42.840000pt;}
.h1c{height:43.490859pt;}
.h18{height:43.939219pt;}
.h21{height:44.835938pt;}
.hf{height:45.095014pt;}
.h27{height:45.923956pt;}
.h1b{height:48.419823pt;}
.hc{height:48.481423pt;}
.h15{height:48.918997pt;}
.h2{height:48.960000pt;}
.h20{height:49.917344pt;}
.h11{height:50.105236pt;}
.h24{height:63.795772pt;}
.h2c{height:63.801105pt;}
.hb{height:69.148877pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h2b{height:288.286667pt;}
.h25{height:298.146240pt;}
.h2a{height:307.245653pt;}
.h19{height:355.548973pt;}
.h22{height:370.036000pt;}
.h13{height:370.046693pt;}
.h1e{height:401.453333pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w9{width:480.139413pt;}
.w8{width:487.631893pt;}
.w6{width:514.908000pt;}
.w7{width:515.490667pt;}
.wa{width:523.152000pt;}
.w4{width:527.416400pt;}
.w5{width:527.678707pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x15{left:-178.908000pt;}
.x13{left:-170.181333pt;}
.xc{left:-166.208000pt;}
.x10{left:-163.382920pt;}
.x1d{left:-156.032000pt;}
.x16{left:-5.068969pt;}
.x0{left:0.000000pt;}
.x23{left:2.857333pt;}
.xd{left:4.154251pt;}
.x11{left:5.240941pt;}
.x17{left:23.252273pt;}
.x1f{left:29.955114pt;}
.xe{left:31.907759pt;}
.x5{left:47.621333pt;}
.x26{left:67.124000pt;}
.x2d{left:74.637333pt;}
.x34{left:76.309333pt;}
.x33{left:80.448000pt;}
.x2e{left:84.769333pt;}
.x25{left:86.861333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.x28{left:190.714667pt;}
.x8{left:220.912000pt;}
.x6{left:221.858667pt;}
.xb{left:229.828000pt;}
.x27{left:231.712000pt;}
.x7{left:239.780000pt;}
.x9{left:250.204000pt;}
.x2f{left:261.537333pt;}
.xa{left:279.317333pt;}
.x18{left:293.134667pt;}
.x29{left:345.758667pt;}
.x19{left:385.242667pt;}
.x3{left:404.408000pt;}
.x30{left:407.130667pt;}
.x20{left:476.062533pt;}
.x1a{left:477.350667pt;}
.x21{left:479.892853pt;}
.x2a{left:481.604000pt;}
.x1e{left:482.592327pt;}
.x14{left:510.057310pt;}
.x22{left:515.493941pt;}
.x24{left:519.657333pt;}
.x12{left:521.274956pt;}
.xf{left:523.551612pt;}
.x31{left:542.826667pt;}
.x1b{left:569.457333pt;}
.x2b{left:617.449333pt;}
.x2c{left:656.585333pt;}
.x1c{left:661.565333pt;}
.x32{left:678.670667pt;}
}




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