
    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_765a49c391c344b107ac1fcd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.930000;font-style:normal;font-weight: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_8c3075972072ed10de2d366d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;font-style:normal;font-weight: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_05f1fb803d5501fb8c7c0698.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;font-style:normal;font-weight: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_482ae9bbe6241dbce5b4b6e9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941000;font-style:normal;font-weight: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_109a96f59e2059c275d1e002.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941000;font-style:normal;font-weight: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_04ad3df0e2340e42662308df.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2d53e817c697bf0e03f7f996.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.932000;font-style:normal;font-weight: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_4c37fbe92e97d15dc28c7e57.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.949000;font-style:normal;font-weight: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_87b5bf198e3124fae543c52e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.251000;font-style:normal;font-weight: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_e819d6fbd2b8ac536026038e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.961000;font-style:normal;font-weight: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_a400042a39a594aac91b29da.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.675000;font-style:normal;font-weight: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_de7655952ab5e804c1ed3227.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.927000;font-style:normal;font-weight: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_71393437f6ae3b62fd1f9910.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.660000;font-style:normal;font-weight: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_ef3e287813bac39034becc0c.woff2')format("woff");}.ffe{font-family:ffe;line-height:2.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_4e88a115e45127641c3cb25e.woff2')format("woff");}.fff{font-family:fff;line-height:0.452000;font-style:normal;font-weight: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_2330206b43b04897f35cd505.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.955000;font-style:normal;font-weight: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_605c30ca2249c0cc3ee3123e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.462000;font-style:normal;font-weight: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_bd3c0d737e4fb84482444257.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.760125;font-style:normal;font-weight: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_f8275bfbd1813b90de601919.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.730400;font-style:normal;font-weight: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_f2980548f97b34b601f1f143.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.264000;font-style:normal;font-weight: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_abff03622b5fdf7b97b9768e.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.222000;font-style:normal;font-weight: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_9d3c2b61fa5585d327fbae4c.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.984000;font-style:normal;font-weight: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_3885cd1e8ab69d7315aaa560.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.972000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.237489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237489,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.237494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237494,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237499,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,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);}
.m3{transform:matrix(0.267207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267207,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.ve{vertical-align:-35.729470px;}
.v1{vertical-align:-15.839722px;}
.v2{vertical-align:-8.640015px;}
.v9{vertical-align:-7.044436px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:6.343739px;}
.vd{vertical-align:12.110671px;}
.vb{vertical-align:13.255788px;}
.va{vertical-align:16.405681px;}
.v4{vertical-align:36.017659px;}
.v8{vertical-align:37.420715px;}
.v7{vertical-align:63.359436px;}
.v6{vertical-align:72.016818px;}
.v3{vertical-align:81.360277px;}
.v5{vertical-align:117.359436px;}
.lsd4{letter-spacing:-3.720707px;}
.lscf{letter-spacing:-0.338030px;}
.lsce{letter-spacing:-0.314717px;}
.lscd{letter-spacing:-0.303061px;}
.lsd6{letter-spacing:-0.120509px;}
.ls5f{letter-spacing:-0.005858px;}
.ls19{letter-spacing:0.000000px;}
.ls93{letter-spacing:0.002391px;}
.ls1c{letter-spacing:0.005858px;}
.ls67{letter-spacing:0.006329px;}
.ls71{letter-spacing:0.006924px;}
.lse{letter-spacing:0.011716px;}
.lsd0{letter-spacing:0.023312px;}
.ls99{letter-spacing:0.033475px;}
.ls11e{letter-spacing:0.035148px;}
.ls97{letter-spacing:0.037157px;}
.ls137{letter-spacing:0.044829px;}
.ls64{letter-spacing:0.046841px;}
.ls6f{letter-spacing:0.053614px;}
.ls91{letter-spacing:0.053899px;}
.ls8e{letter-spacing:0.066554px;}
.ls8b{letter-spacing:0.117162px;}
.lsac{letter-spacing:0.200847px;}
.lsd7{letter-spacing:0.227627px;}
.lsa5{letter-spacing:0.279753px;}
.ls6c{letter-spacing:0.379489px;}
.ls6b{letter-spacing:0.407081px;}
.ls11f{letter-spacing:0.515508px;}
.ls113{letter-spacing:0.527224px;}
.ls5b{letter-spacing:0.533082px;}
.lsf9{letter-spacing:0.544798px;}
.ls3d{letter-spacing:0.550656px;}
.lsdd{letter-spacing:0.556514px;}
.ls103{letter-spacing:0.562372px;}
.ls107{letter-spacing:0.568230px;}
.lscb{letter-spacing:0.579946px;}
.ls111{letter-spacing:0.585804px;}
.lsc8{letter-spacing:0.591662px;}
.ls5c{letter-spacing:0.597520px;}
.ls1a{letter-spacing:0.609236px;}
.ls1d{letter-spacing:0.620952px;}
.lsf{letter-spacing:0.626810px;}
.ls2b{letter-spacing:0.632668px;}
.lsc1{letter-spacing:0.638526px;}
.ls115{letter-spacing:0.644384px;}
.ls10a{letter-spacing:0.650242px;}
.ls3b{letter-spacing:0.656100px;}
.lsed{letter-spacing:0.661959px;}
.ls46{letter-spacing:0.667817px;}
.lsf8{letter-spacing:0.685391px;}
.lsfc{letter-spacing:0.697107px;}
.ls49{letter-spacing:0.702965px;}
.ls10f{letter-spacing:0.708823px;}
.lsec{letter-spacing:0.720539px;}
.ls10{letter-spacing:0.738113px;}
.ls12e{letter-spacing:0.755687px;}
.ls26{letter-spacing:0.761545px;}
.lsef{letter-spacing:0.773261px;}
.ls38{letter-spacing:0.784977px;}
.ls60{letter-spacing:0.790835px;}
.lsc2{letter-spacing:0.796693px;}
.ls7e{letter-spacing:0.808410px;}
.ls5d{letter-spacing:0.814268px;}
.ls35{letter-spacing:0.825984px;}
.ls16{letter-spacing:0.831842px;}
.ls52{letter-spacing:0.837700px;}
.lsf0{letter-spacing:0.843558px;}
.lsf5{letter-spacing:0.849416px;}
.ls126{letter-spacing:0.855274px;}
.lsc4{letter-spacing:0.866990px;}
.ls44{letter-spacing:0.872848px;}
.ls9{letter-spacing:0.878706px;}
.ls15{letter-spacing:0.884564px;}
.ls31{letter-spacing:0.896280px;}
.ls131{letter-spacing:0.925570px;}
.ls1f{letter-spacing:0.931428px;}
.ls1e{letter-spacing:0.937286px;}
.ls116{letter-spacing:0.949002px;}
.lsc6{letter-spacing:0.978293px;}
.ls4f{letter-spacing:0.984151px;}
.ls80{letter-spacing:0.990009px;}
.ls1b{letter-spacing:0.995867px;}
.ls77{letter-spacing:1.013441px;}
.ls36{letter-spacing:1.019299px;}
.lsd2{letter-spacing:1.025157px;}
.lsf2{letter-spacing:1.031015px;}
.ls58{letter-spacing:1.036873px;}
.ls5{letter-spacing:1.042731px;}
.ls54{letter-spacing:1.048589px;}
.lsc5{letter-spacing:1.054447px;}
.lsb8{letter-spacing:1.066163px;}
.ls61{letter-spacing:1.077879px;}
.lsca{letter-spacing:1.095453px;}
.ls78{letter-spacing:1.113028px;}
.ls27{letter-spacing:1.130602px;}
.lsb{letter-spacing:1.136460px;}
.ls114{letter-spacing:1.142318px;}
.ls59{letter-spacing:1.154034px;}
.lse2{letter-spacing:1.159892px;}
.ls117{letter-spacing:1.183324px;}
.ls2e{letter-spacing:1.189182px;}
.ls40{letter-spacing:1.200898px;}
.ls4a{letter-spacing:1.206756px;}
.ls3a{letter-spacing:1.212614px;}
.ls25{letter-spacing:1.218472px;}
.ls45{letter-spacing:1.230188px;}
.ls119{letter-spacing:1.241904px;}
.ls37{letter-spacing:1.247763px;}
.ls129{letter-spacing:1.253621px;}
.ls108{letter-spacing:1.259479px;}
.ls128{letter-spacing:1.265337px;}
.ls130{letter-spacing:1.271195px;}
.ls39{letter-spacing:1.277053px;}
.lse5{letter-spacing:1.282911px;}
.lsda{letter-spacing:1.288604px;}
.lsf6{letter-spacing:1.288769px;}
.ls3e{letter-spacing:1.294627px;}
.ls122{letter-spacing:1.300485px;}
.ls32{letter-spacing:1.306343px;}
.ls57{letter-spacing:1.312201px;}
.ls4{letter-spacing:1.318059px;}
.lsb2{letter-spacing:1.327651px;}
.ls34{letter-spacing:1.335633px;}
.ls1{letter-spacing:1.341491px;}
.ls56{letter-spacing:1.347349px;}
.lsdb{letter-spacing:1.353207px;}
.lsf7{letter-spacing:1.359065px;}
.ls8{letter-spacing:1.364923px;}
.ls12{letter-spacing:1.370781px;}
.ls7{letter-spacing:1.376639px;}
.lsbf{letter-spacing:1.382497px;}
.lsbe{letter-spacing:1.405930px;}
.ls50{letter-spacing:1.411788px;}
.ls87{letter-spacing:1.435220px;}
.lsb9{letter-spacing:1.441078px;}
.ls88{letter-spacing:1.452794px;}
.ls10c{letter-spacing:1.458652px;}
.ls2c{letter-spacing:1.464510px;}
.lsb1{letter-spacing:1.482084px;}
.ls0{letter-spacing:1.487942px;}
.ls20{letter-spacing:1.499658px;}
.ls12f{letter-spacing:1.505516px;}
.ls29{letter-spacing:1.517232px;}
.ls53{letter-spacing:1.523090px;}
.lsfa{letter-spacing:1.528948px;}
.ls135{letter-spacing:1.534806px;}
.ls106{letter-spacing:1.546523px;}
.ls110{letter-spacing:1.558239px;}
.ls85{letter-spacing:1.564097px;}
.ls3{letter-spacing:1.593387px;}
.ls120{letter-spacing:1.599245px;}
.ls11d{letter-spacing:1.610961px;}
.ls121{letter-spacing:1.622677px;}
.lsfb{letter-spacing:1.634393px;}
.lsb7{letter-spacing:1.640041px;}
.lsf4{letter-spacing:1.640251px;}
.ls118{letter-spacing:1.651967px;}
.lsd{letter-spacing:1.657825px;}
.lsf1{letter-spacing:1.681257px;}
.ls82{letter-spacing:1.698832px;}
.lsd3{letter-spacing:1.704690px;}
.lsc0{letter-spacing:1.739838px;}
.ls24{letter-spacing:1.745696px;}
.ls123{letter-spacing:1.751554px;}
.ls100{letter-spacing:1.757412px;}
.ls28{letter-spacing:1.769128px;}
.lsb5{letter-spacing:1.786702px;}
.ls33{letter-spacing:1.804276px;}
.ls42{letter-spacing:1.815993px;}
.lsc9{letter-spacing:1.839425px;}
.ls4b{letter-spacing:1.845283px;}
.ls132{letter-spacing:1.874573px;}
.lsde{letter-spacing:1.893857px;}
.lse6{letter-spacing:1.909721px;}
.ls101{letter-spacing:1.927295px;}
.ls5e{letter-spacing:1.933153px;}
.lsb4{letter-spacing:1.952430px;}
.ls30{letter-spacing:1.962443px;}
.ls43{letter-spacing:1.968301px;}
.ls41{letter-spacing:1.974159px;}
.lscc{letter-spacing:1.985876px;}
.ls104{letter-spacing:2.003450px;}
.ls47{letter-spacing:2.009308px;}
.ls7c{letter-spacing:2.026882px;}
.ls3f{letter-spacing:2.032740px;}
.ls14{letter-spacing:2.038598px;}
.ls22{letter-spacing:2.050314px;}
.ls79{letter-spacing:2.056172px;}
.lse8{letter-spacing:2.062030px;}
.ls63{letter-spacing:2.073746px;}
.lsea{letter-spacing:2.132327px;}
.ls81{letter-spacing:2.161617px;}
.ls6{letter-spacing:2.167475px;}
.ls109{letter-spacing:2.179191px;}
.lsdf{letter-spacing:2.210151px;}
.lse1{letter-spacing:2.217960px;}
.lse0{letter-spacing:2.221865px;}
.ls3c{letter-spacing:2.226055px;}
.ls105{letter-spacing:2.249487px;}
.ls12b{letter-spacing:2.255345px;}
.ls133{letter-spacing:2.272920px;}
.ls10e{letter-spacing:2.296352px;}
.ls10b{letter-spacing:2.313926px;}
.ls13{letter-spacing:2.319784px;}
.lsc{letter-spacing:2.354932px;}
.lsee{letter-spacing:2.372506px;}
.lsbb{letter-spacing:2.378364px;}
.lsa{letter-spacing:2.401796px;}
.ls2d{letter-spacing:2.431087px;}
.lsf3{letter-spacing:2.466235px;}
.lsff{letter-spacing:2.472093px;}
.ls86{letter-spacing:2.477951px;}
.ls12c{letter-spacing:2.524815px;}
.ls139{letter-spacing:2.530673px;}
.lsb6{letter-spacing:2.538159px;}
.ls7d{letter-spacing:2.571680px;}
.ls112{letter-spacing:2.577538px;}
.ls125{letter-spacing:2.612686px;}
.ls10d{letter-spacing:2.624402px;}
.lseb{letter-spacing:2.653692px;}
.ls72{letter-spacing:2.654806px;}
.ls68{letter-spacing:2.655401px;}
.ls96{letter-spacing:2.671266px;}
.ls21{letter-spacing:2.682982px;}
.ls138{letter-spacing:2.688840px;}
.lsd9{letter-spacing:2.729847px;}
.ls5a{letter-spacing:2.806001px;}
.ls12a{letter-spacing:2.811859px;}
.lsd1{letter-spacing:2.864582px;}
.ls124{letter-spacing:2.882156px;}
.ls127{letter-spacing:2.893872px;}
.ls2{letter-spacing:2.911446px;}
.ls4e{letter-spacing:2.923162px;}
.ls55{letter-spacing:2.929020px;}
.lsb0{letter-spacing:2.934878px;}
.ls4d{letter-spacing:2.940736px;}
.ls48{letter-spacing:2.952452px;}
.ls102{letter-spacing:2.958310px;}
.ls12d{letter-spacing:2.964168px;}
.ls76{letter-spacing:2.970026px;}
.lsfd{letter-spacing:2.981742px;}
.lsbd{letter-spacing:2.987600px;}
.ls2a{letter-spacing:2.993458px;}
.ls11{letter-spacing:2.999317px;}
.ls17{letter-spacing:3.005175px;}
.ls2f{letter-spacing:3.011033px;}
.ls134{letter-spacing:3.016891px;}
.lsbc{letter-spacing:3.022749px;}
.lsc3{letter-spacing:3.034465px;}
.ls4c{letter-spacing:3.046181px;}
.ls23{letter-spacing:3.057897px;}
.lsdc{letter-spacing:3.069613px;}
.ls74{letter-spacing:3.375371px;}
.ls98{letter-spacing:6.183684px;}
.lsab{letter-spacing:6.201065px;}
.lsa3{letter-spacing:6.201706px;}
.ls9e{letter-spacing:6.208047px;}
.lsa7{letter-spacing:6.218066px;}
.ls8d{letter-spacing:7.809655px;}
.ls8c{letter-spacing:10.082611px;}
.ls94{letter-spacing:10.574758px;}
.ls8f{letter-spacing:10.575445px;}
.ls6e{letter-spacing:12.239008px;}
.ls6a{letter-spacing:12.938382px;}
.ls11b{letter-spacing:13.766282px;}
.ls11a{letter-spacing:14.101024px;}
.ls11c{letter-spacing:14.101029px;}
.lsad{letter-spacing:14.785869px;}
.lsa1{letter-spacing:14.832881px;}
.ls136{letter-spacing:14.883824px;}
.ls9d{letter-spacing:15.346099px;}
.ls9c{letter-spacing:15.409480px;}
.ls69{letter-spacing:15.615377px;}
.ls6d{letter-spacing:15.615468px;}
.ls18{letter-spacing:15.733176px;}
.ls90{letter-spacing:15.735870px;}
.ls75{letter-spacing:16.334798px;}
.ls73{letter-spacing:16.335439px;}
.ls66{letter-spacing:16.551802px;}
.ls92{letter-spacing:18.495397px;}
.ls70{letter-spacing:19.214818px;}
.ls65{letter-spacing:19.215414px;}
.ls89{letter-spacing:19.565853px;}
.ls8a{letter-spacing:19.565854px;}
.ls84{letter-spacing:20.034498px;}
.ls83{letter-spacing:20.093077px;}
.ls51{letter-spacing:20.444560px;}
.ls62{letter-spacing:20.737462px;}
.ls7f{letter-spacing:21.264684px;}
.lsfe{letter-spacing:21.276401px;}
.lse4{letter-spacing:21.428710px;}
.lsc7{letter-spacing:21.440428px;}
.lsb3{letter-spacing:22.612033px;}
.lse3{letter-spacing:23.332573px;}
.lse7{letter-spacing:23.549320px;}
.ls7a{letter-spacing:23.607901px;}
.ls7b{letter-spacing:23.900800px;}
.lse9{letter-spacing:23.900805px;}
.lsa0{letter-spacing:24.049495px;}
.lsba{letter-spacing:24.310867px;}
.lsaf{letter-spacing:27.005566px;}
.lsae{letter-spacing:27.357045px;}
.lsaa{letter-spacing:28.267901px;}
.ls95{letter-spacing:28.521309px;}
.lsa9{letter-spacing:30.745021px;}
.lsa4{letter-spacing:30.974862px;}
.lsa8{letter-spacing:32.849440px;}
.ls9f{letter-spacing:40.699449px;}
.ls9b{letter-spacing:40.708748px;}
.ls9a{letter-spacing:49.916062px;}
.lsa2{letter-spacing:49.979444px;}
.lsa6{letter-spacing:58.748002px;}
.lsd8{letter-spacing:62.202944px;}
.lsd5{letter-spacing:112.894074px;}
.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;}
}
.ws98{word-spacing:-112.940700px;}
.ws9a{word-spacing:-58.794628px;}
.ws97{word-spacing:-53.619208px;}
.wsb0{word-spacing:-23.391154px;}
.wsb2{word-spacing:-21.487291px;}
.wsbf{word-spacing:-21.334982px;}
.ws7a{word-spacing:-20.796042px;}
.ws129{word-spacing:-10.508400px;}
.ws69{word-spacing:-2.026882px;}
.ws8{word-spacing:-0.061568px;}
.ws76{word-spacing:-0.058580px;}
.ws7f{word-spacing:-0.058281px;}
.ws3b{word-spacing:-0.047821px;}
.ws95{word-spacing:-0.046625px;}
.wsf9{word-spacing:-0.044831px;}
.ws122{word-spacing:-0.043637px;}
.ws96{word-spacing:-0.033475px;}
.ws3e{word-spacing:0.000000px;}
.ws94{word-spacing:3.674081px;}
.ws83{word-spacing:12.868447px;}
.wsec{word-spacing:13.808124px;}
.wscd{word-spacing:13.933653px;}
.ws81{word-spacing:13.940814px;}
.wseb{word-spacing:14.017338px;}
.wsd3{word-spacing:14.059181px;}
.wsce{word-spacing:14.184710px;}
.ws80{word-spacing:14.255530px;}
.ws3c{word-spacing:14.268395px;}
.ws128{word-spacing:14.356507px;}
.ws82{word-spacing:14.360436px;}
.ws10c{word-spacing:14.390687px;}
.ws127{word-spacing:14.443781px;}
.ws3d{word-spacing:14.519452px;}
.ws10d{word-spacing:14.525179px;}
.ws9b{word-spacing:14.539224px;}
.ws116{word-spacing:14.614841px;}
.ws10f{word-spacing:14.659671px;}
.ws125{word-spacing:14.661965px;}
.ws10a{word-spacing:14.704483px;}
.ws105{word-spacing:14.704497px;}
.ws120{word-spacing:14.704499px;}
.ws104{word-spacing:14.704502px;}
.ws112{word-spacing:14.704504px;}
.ws126{word-spacing:14.705602px;}
.ws123{word-spacing:14.749238px;}
.ws103{word-spacing:14.749330px;}
.wsfa{word-spacing:14.749333px;}
.ws11b{word-spacing:14.749335px;}
.ws110{word-spacing:14.749339px;}
.ws119{word-spacing:14.794155px;}
.ws117{word-spacing:14.794157px;}
.ws36{word-spacing:14.794164px;}
.ws115{word-spacing:14.794166px;}
.ws106{word-spacing:14.838989px;}
.ws114{word-spacing:14.838993px;}
.wsfc{word-spacing:14.838995px;}
.ws109{word-spacing:14.839001px;}
.ws124{word-spacing:14.880155px;}
.ws102{word-spacing:14.883819px;}
.ws34{word-spacing:14.883825px;}
.ws11d{word-spacing:14.883830px;}
.ws121{word-spacing:14.883832px;}
.ws113{word-spacing:14.928652px;}
.ws111{word-spacing:14.928654px;}
.ws33{word-spacing:14.928656px;}
.ws108{word-spacing:14.973482px;}
.ws11a{word-spacing:14.973484px;}
.wsfd{word-spacing:14.973487px;}
.ws10e{word-spacing:14.973491px;}
.ws11c{word-spacing:15.018313px;}
.ws11f{word-spacing:15.018315px;}
.ws32{word-spacing:15.018318px;}
.ws10b{word-spacing:15.063148px;}
.ws100{word-spacing:15.107979px;}
.ws107{word-spacing:15.107982px;}
.ws118{word-spacing:15.152810px;}
.wsfb{word-spacing:15.197641px;}
.ws11e{word-spacing:15.197645px;}
.ws99{word-spacing:15.210929px;}
.ws101{word-spacing:15.287302px;}
.wsfe{word-spacing:15.332133px;}
.ws37{word-spacing:15.350607px;}
.wsff{word-spacing:15.376964px;}
.wsea{word-spacing:15.494069px;}
.ws35{word-spacing:15.511456px;}
.ws39{word-spacing:15.541890px;}
.ws7e{word-spacing:15.589711px;}
.wscb{word-spacing:15.637533px;}
.wscc{word-spacing:15.685354px;}
.wse9{word-spacing:15.733175px;}
.ws3a{word-spacing:15.780999px;}
.wsb6{word-spacing:15.828817px;}
.ws38{word-spacing:16.020102px;}
.wsd1{word-spacing:17.753274px;}
.wsc8{word-spacing:17.807072px;}
.wsb3{word-spacing:17.860870px;}
.wsb4{word-spacing:17.914667px;}
.wscf{word-spacing:17.968465px;}
.wsd0{word-spacing:18.022263px;}
.wsc7{word-spacing:18.076061px;}
.wse8{word-spacing:18.129859px;}
.wsd6{word-spacing:18.147689px;}
.wsc9{word-spacing:18.183656px;}
.ws5d{word-spacing:18.202682px;}
.wsde{word-spacing:18.257675px;}
.wsdd{word-spacing:18.312668px;}
.wsad{word-spacing:18.862889px;}
.wse6{word-spacing:19.038630px;}
.wsa0{word-spacing:19.120649px;}
.ws90{word-spacing:19.132362px;}
.wsf7{word-spacing:19.144069px;}
.ws8c{word-spacing:19.155794px;}
.ws5e{word-spacing:19.196797px;}
.wsbe{word-spacing:19.202655px;}
.wsee{word-spacing:19.208513px;}
.wsc4{word-spacing:19.214371px;}
.wsb1{word-spacing:19.220229px;}
.ws75{word-spacing:19.226087px;}
.wsdb{word-spacing:19.231945px;}
.wsa1{word-spacing:19.243662px;}
.ws40{word-spacing:19.267094px;}
.ws6c{word-spacing:19.272952px;}
.ws7b{word-spacing:19.284668px;}
.wsed{word-spacing:19.308100px;}
.wsc3{word-spacing:19.325674px;}
.ws41{word-spacing:19.331532px;}
.ws9f{word-spacing:19.337407px;}
.wsf6{word-spacing:19.354964px;}
.ws70{word-spacing:19.360822px;}
.ws24{word-spacing:19.378396px;}
.wsaa{word-spacing:19.390111px;}
.ws44{word-spacing:19.390113px;}
.wse4{word-spacing:19.395971px;}
.ws51{word-spacing:19.401829px;}
.wsa9{word-spacing:19.407687px;}
.wsb7{word-spacing:19.413545px;}
.wsd5{word-spacing:19.419403px;}
.ws48{word-spacing:19.425261px;}
.wsbc{word-spacing:19.431119px;}
.wse5{word-spacing:19.436977px;}
.ws66{word-spacing:19.442835px;}
.ws89{word-spacing:19.448693px;}
.ws79{word-spacing:19.454551px;}
.ws1e{word-spacing:19.460409px;}
.ws68{word-spacing:19.466267px;}
.ws2d{word-spacing:19.472125px;}
.ws20{word-spacing:19.477983px;}
.wsa2{word-spacing:19.483839px;}
.wsb8{word-spacing:19.483841px;}
.ws77{word-spacing:19.489699px;}
.ws1c{word-spacing:19.495557px;}
.ws8a{word-spacing:19.495558px;}
.wse2{word-spacing:19.501415px;}
.ws92{word-spacing:19.507271px;}
.ws3f{word-spacing:19.507273px;}
.ws43{word-spacing:19.513131px;}
.ws2e{word-spacing:19.518989px;}
.ws67{word-spacing:19.524847px;}
.ws6f{word-spacing:19.530706px;}
.ws87{word-spacing:19.536564px;}
.ws2c{word-spacing:19.542422px;}
.ws58{word-spacing:19.548280px;}
.ws26{word-spacing:19.554138px;}
.ws5c{word-spacing:19.559996px;}
.ws2b{word-spacing:19.565854px;}
.wsba{word-spacing:19.571712px;}
.ws45{word-spacing:19.577570px;}
.ws7c{word-spacing:19.583428px;}
.wsd7{word-spacing:19.589281px;}
.ws93{word-spacing:19.589286px;}
.ws1d{word-spacing:19.595144px;}
.ws17{word-spacing:19.601002px;}
.ws16{word-spacing:19.606396px;}
.ws4b{word-spacing:19.606860px;}
.wsc2{word-spacing:19.612718px;}
.ws2f{word-spacing:19.618576px;}
.ws1f{word-spacing:19.624434px;}
.ws8b{word-spacing:19.630292px;}
.ws5a{word-spacing:19.636150px;}
.ws27{word-spacing:19.642008px;}
.ws71{word-spacing:19.647866px;}
.ws56{word-spacing:19.653724px;}
.ws8f{word-spacing:19.653727px;}
.ws42{word-spacing:19.659582px;}
.ws21{word-spacing:19.665440px;}
.ws30{word-spacing:19.671298px;}
.wse3{word-spacing:19.677157px;}
.ws22{word-spacing:19.683015px;}
.ws18{word-spacing:19.688873px;}
.ws91{word-spacing:19.694731px;}
.ws6e{word-spacing:19.706447px;}
.wsbd{word-spacing:19.712305px;}
.wse1{word-spacing:19.718163px;}
.wsf5{word-spacing:19.724021px;}
.ws11{word-spacing:19.725948px;}
.ws4c{word-spacing:19.729879px;}
.ws78{word-spacing:19.735737px;}
.ws59{word-spacing:19.741595px;}
.ws4e{word-spacing:19.747453px;}
.ws49{word-spacing:19.753311px;}
.ws1b{word-spacing:19.759169px;}
.ws28{word-spacing:19.765027px;}
.wsa3{word-spacing:19.770885px;}
.ws5f{word-spacing:19.776743px;}
.ws25{word-spacing:19.782601px;}
.ws13{word-spacing:19.785723px;}
.wsb9{word-spacing:19.788459px;}
.ws52{word-spacing:19.800175px;}
.ws60{word-spacing:19.806033px;}
.ws61{word-spacing:19.817749px;}
.wse0{word-spacing:19.835324px;}
.wsa4{word-spacing:19.835327px;}
.ws53{word-spacing:19.841182px;}
.ws88{word-spacing:19.847040px;}
.wsc1{word-spacing:19.852898px;}
.ws5b{word-spacing:19.858756px;}
.ws7d{word-spacing:19.864614px;}
.wsd9{word-spacing:19.876330px;}
.wsaf{word-spacing:19.882188px;}
.wsda{word-spacing:19.899762px;}
.wsa{word-spacing:19.905274px;}
.wsd{word-spacing:19.905277px;}
.wsa8{word-spacing:19.917336px;}
.ws6a{word-spacing:19.923194px;}
.wsf4{word-spacing:19.946626px;}
.ws6b{word-spacing:19.952484px;}
.ws12{word-spacing:19.965037px;}
.ws10{word-spacing:19.965050px;}
.ws54{word-spacing:19.975917px;}
.wsac{word-spacing:19.987627px;}
.wsc{word-spacing:20.024825px;}
.wse7{word-spacing:20.028639px;}
.ws50{word-spacing:20.034497px;}
.ws14{word-spacing:20.084599px;}
.wsb{word-spacing:20.084601px;}
.ws62{word-spacing:20.093077px;}
.ws4a{word-spacing:20.139942px;}
.wsf{word-spacing:20.144377px;}
.ws57{word-spacing:20.151658px;}
.ws84{word-spacing:20.169232px;}
.ws65{word-spacing:20.210238px;}
.wsab{word-spacing:20.221954px;}
.ws85{word-spacing:20.221956px;}
.ws15{word-spacing:20.263928px;}
.ws9{word-spacing:20.263931px;}
.ws2a{word-spacing:20.268819px;}
.wse{word-spacing:20.323703px;}
.ws19{word-spacing:20.327399px;}
.ws86{word-spacing:20.391837px;}
.wsc5{word-spacing:20.444560px;}
.wsa6{word-spacing:20.444566px;}
.ws1a{word-spacing:20.503140px;}
.ws8e{word-spacing:20.503142px;}
.ws8d{word-spacing:20.561721px;}
.wsdf{word-spacing:20.620301px;}
.ws55{word-spacing:20.655449px;}
.ws23{word-spacing:20.678881px;}
.wsbb{word-spacing:20.737462px;}
.wsa5{word-spacing:20.760894px;}
.ws46{word-spacing:20.796042px;}
.ws4f{word-spacing:21.030364px;}
.ws9e{word-spacing:21.083086px;}
.ws29{word-spacing:21.135808px;}
.ws9c{word-spacing:21.165099px;}
.ws4{word-spacing:21.567311px;}
.ws6{word-spacing:21.764573px;}
.wsdc{word-spacing:21.780193px;}
.ws9d{word-spacing:21.885635px;}
.ws5{word-spacing:21.961835px;}
.wsa7{word-spacing:22.026231px;}
.ws3{word-spacing:22.093343px;}
.ws7{word-spacing:22.159097px;}
.wsef{word-spacing:22.313275px;}
.wsf0{word-spacing:22.324991px;}
.ws74{word-spacing:22.383571px;}
.ws73{word-spacing:22.483158px;}
.wsf8{word-spacing:22.817066px;}
.ws47{word-spacing:22.893220px;}
.ws4d{word-spacing:22.899079px;}
.ws6d{word-spacing:23.115826px;}
.wsf1{word-spacing:23.596185px;}
.ws63{word-spacing:24.058970px;}
.wsae{word-spacing:24.896670px;}
.ws72{word-spacing:25.482474px;}
.ws0{word-spacing:26.421060px;}
.wsf2{word-spacing:28.206463px;}
.wsf3{word-spacing:28.470075px;}
.wsd8{word-spacing:28.774693px;}
.ws64{word-spacing:35.950792px;}
.ws31{word-spacing:36.712337px;}
.wsc6{word-spacing:37.380154px;}
.wsc0{word-spacing:39.125849px;}
.ws2{word-spacing:47.485657px;}
.ws1{word-spacing:47.772580px;}
.wsca{word-spacing:116.253338px;}
.wsb5{word-spacing:120.605067px;}
.wsd2{word-spacing:719.039564px;}
.wsd4{word-spacing:794.549261px;}
._10{margin-left:-54.178713px;}
._f{margin-left:-48.350538px;}
._15{margin-left:-21.733329px;}
._a{margin-left:-20.210238px;}
._b{margin-left:-19.097211px;}
._e{margin-left:-9.231829px;}
._3d{margin-left:-2.079000px;}
._6{margin-left:-1.054447px;}
._4{width:1.183572px;}
._d{width:3.776657px;}
._13{width:6.341054px;}
._0{width:8.470281px;}
._3c{width:14.076871px;}
._24{width:15.105251px;}
._7{width:16.183918px;}
._9{width:19.507273px;}
._5{width:21.292053px;}
._8{width:22.612035px;}
._c{width:24.474643px;}
._14{width:29.055879px;}
._3b{width:32.512122px;}
._1{width:35.279886px;}
._1e{width:43.232336px;}
._12{width:44.946884px;}
._38{width:46.721313px;}
._3{width:48.920269px;}
._2e{width:53.033711px;}
._11{width:54.132088px;}
._34{width:55.691346px;}
._25{width:60.637282px;}
._35{width:65.132475px;}
._26{width:73.022973px;}
._29{width:77.518166px;}
._28{width:79.670120px;}
._32{width:80.865650px;}
._1f{width:88.469221px;}
._3a{width:89.581268px;}
._21{width:92.820950px;}
._1a{width:99.755024px;}
._1b{width:100.854912px;}
._31{width:115.201272px;}
._1d{width:122.661379px;}
._2b{width:125.387187px;}
._39{width:126.965287px;}
._22{width:133.851540px;}
._33{width:140.307402px;}
._36{width:145.376449px;}
._37{width:159.483703px;}
._19{width:179.090395px;}
._20{width:180.238104px;}
._17{width:187.411284px;}
._18{width:199.127478px;}
._2d{width:224.568357px;}
._23{width:226.385563px;}
._1c{width:262.203640px;}
._30{width:270.285426px;}
._2c{width:301.752597px;}
._2f{width:347.803606px;}
._16{width:350.194648px;}
._27{width:371.522924px;}
._2a{width:417.192132px;}
._2{width:1615.026088px;}
.fc3{color:rgb(85,123,178);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs13{font-size:27.891000px;}
.fs8{font-size:29.883001px;}
.fs12{font-size:31.876199px;}
.fsf{font-size:33.474601px;}
.fs11{font-size:35.860800px;}
.fs17{font-size:37.800001px;}
.fsd{font-size:39.048600px;}
.fs16{font-size:40.800001px;}
.fsa{font-size:41.842801px;}
.fs14{font-size:43.636800px;}
.fs3{font-size:43.831201px;}
.fs7{font-size:44.830799px;}
.fse{font-size:46.625399px;}
.fs9{font-size:47.821200px;}
.fs15{font-size:53.349003px;}
.fs10{font-size:53.797800px;}
.fsb{font-size:54.992998px;}
.fsc{font-size:58.281000px;}
.fs6{font-size:58.580400px;}
.fs5{font-size:59.775599px;}
.fs4{font-size:61.568401px;}
.fs2{font-size:65.753998px;}
.fs0{font-size:77.709000px;}
.fs1{font-size:143.461201px;}
.y0{bottom:0.000000px;}
.y340{bottom:83.848798px;}
.y41{bottom:92.101413px;}
.y33f{bottom:94.347748px;}
.y1b8{bottom:95.247040px;}
.y1f6{bottom:95.251294px;}
.y21e{bottom:95.253303px;}
.y76{bottom:95.930505px;}
.y294{bottom:95.957731px;}
.yab{bottom:95.969940px;}
.y253{bottom:96.027610px;}
.y2d6{bottom:100.406366px;}
.y130{bottom:102.135352px;}
.y40{bottom:104.005690px;}
.y1b7{bottom:107.914947px;}
.y1f5{bottom:107.919202px;}
.y21d{bottom:113.193551px;}
.y2d5{bottom:113.844398px;}
.y75{bottom:113.870753px;}
.y293{bottom:113.897979px;}
.yaa{bottom:113.910188px;}
.y252{bottom:113.967858px;}
.y3f{bottom:115.993652px;}
.y16b{bottom:116.176555px;}
.y12e{bottom:117.609455px;}
.y12f{bottom:120.075600px;}
.y12d{bottom:120.078658px;}
.y1f4{bottom:120.670795px;}
.y33e{bottom:126.881538px;}
.y2d4{bottom:127.282430px;}
.y1b6{bottom:128.494503px;}
.y1b4{bottom:128.498815px;}
.y21c{bottom:131.133799px;}
.y74{bottom:131.811001px;}
.y292{bottom:131.838227px;}
.ya9{bottom:131.850436px;}
.y251{bottom:131.908106px;}
.y1b5{bottom:133.766853px;}
.y31b{bottom:133.953143px;}
.y16a{bottom:135.986487px;}
.y12c{bottom:138.018906px;}
.y12a{bottom:138.021952px;}
.y2d3{bottom:140.798915px;}
.y1f3{bottom:141.165447px;}
.y1f1{bottom:141.169622px;}
.y3c{bottom:141.931848px;}
.y12b{bottom:144.481796px;}
.y33d{bottom:145.496539px;}
.y1f2{bottom:146.522850px;}
.y31a{bottom:147.391175px;}
.y1b3{bottom:148.308746px;}
.y1b1{bottom:148.328539px;}
.y21b{bottom:149.074047px;}
.y219{bottom:149.089087px;}
.y73{bottom:149.754295px;}
.y291{bottom:149.778475px;}
.ya8{bottom:149.790684px;}
.y250{bottom:149.848354px;}
.y1b2{bottom:153.581097px;}
.y2d2{bottom:154.236947px;}
.y3b{bottom:155.448334px;}
.y21a{bottom:155.536949px;}
.y169{bottom:155.796418px;}
.y129{bottom:155.962200px;}
.y127{bottom:155.965247px;}
.y36{bottom:159.547334px;}
.y319{bottom:160.829207px;}
.y1f0{bottom:160.979553px;}
.y1ee{bottom:160.983716px;}
.y128{bottom:162.425102px;}
.y33c{bottom:164.111540px;}
.y1ef{bottom:166.336945px;}
.y218{bottom:166.941463px;}
.y2d1{bottom:167.674980px;}
.y72{bottom:167.697601px;}
.y290{bottom:167.718723px;}
.ya7{bottom:167.730932px;}
.y24f{bottom:167.788602px;}
.y1b0{bottom:168.138471px;}
.y3a{bottom:168.886366px;}
.y126{bottom:173.905495px;}
.y318{bottom:174.267239px;}
.y168{bottom:175.606350px;}
.y35{bottom:177.487582px;}
.y1ed{bottom:180.793648px;}
.y1eb{bottom:180.797971px;}
.y2d0{bottom:181.113012px;}
.y39{bottom:182.324398px;}
.y33b{bottom:182.726541px;}
.y217{bottom:184.881711px;}
.y28f{bottom:185.658970px;}
.ya6{bottom:185.671180px;}
.y24e{bottom:185.728850px;}
.y1ec{bottom:186.151199px;}
.y38{bottom:187.256699px;}
.y317{bottom:187.705271px;}
.y1af{bottom:187.948402px;}
.y125{bottom:191.763748px;}
.y123{bottom:191.769864px;}
.y2cf{bottom:194.551044px;}
.y167{bottom:195.330525px;}
.y34{bottom:195.339959px;}
.y37{bottom:195.760506px;}
.y124{bottom:198.311851px;}
.y1ea{bottom:200.607903px;}
.y1e8{bottom:200.634658px;}
.y316{bottom:201.143303px;}
.y33a{bottom:201.341542px;}
.y216{bottom:202.821959px;}
.y28e{bottom:203.599218px;}
.ya5{bottom:203.611428px;}
.y24d{bottom:203.669098px;}
.y71{bottom:203.744693px;}
.y1e9{bottom:205.880241px;}
.y1ae{bottom:207.674647px;}
.y2ce{bottom:207.989076px;}
.y122{bottom:209.710112px;}
.y166{bottom:211.833000px;}
.y33{bottom:213.280207px;}
.y315{bottom:214.659789px;}
.y339{bottom:219.956543px;}
.y1e7{bottom:220.444590px;}
.y215{bottom:220.762207px;}
.y2cd{bottom:221.505561px;}
.y28d{bottom:221.539466px;}
.ya4{bottom:221.551676px;}
.y24c{bottom:221.609346px;}
.y70{bottom:221.684941px;}
.y1ad{bottom:227.484578px;}
.y121{bottom:227.650360px;}
.y11f{bottom:227.656453px;}
.y314{bottom:228.097821px;}
.y24{bottom:231.176524px;}
.y32{bottom:231.220455px;}
.y120{bottom:234.198441px;}
.y2cc{bottom:234.943593px;}
.y214{bottom:238.705490px;}
.y28c{bottom:239.391843px;}
.ya3{bottom:239.404052px;}
.y24b{bottom:239.461722px;}
.y6f{bottom:239.537318px;}
.y1e6{bottom:240.254521px;}
.y313{bottom:241.535853px;}
.y11e{bottom:245.596701px;}
.y1ac{bottom:247.294510px;}
.y2cb{bottom:248.381625px;}
.y23{bottom:249.116772px;}
.y31{bottom:249.160703px;}
.y338{bottom:251.346449px;}
.y312{bottom:254.973885px;}
.y28b{bottom:257.332091px;}
.ya2{bottom:257.344300px;}
.y165{bottom:257.353395px;}
.y24a{bottom:257.401970px;}
.y6e{bottom:257.477566px;}
.y1e5{bottom:259.980766px;}
.y2ca{bottom:261.819657px;}
.y11d{bottom:263.536949px;}
.y11b{bottom:263.540007px;}
.y22{bottom:267.057020px;}
.y30{bottom:267.100951px;}
.y1ab{bottom:267.112819px;}
.y337{bottom:267.351151px;}
.y311{bottom:268.411917px;}
.y11c{bottom:270.000000px;}
.y213{bottom:274.592102px;}
.y211{bottom:274.643541px;}
.y2c9{bottom:275.257689px;}
.y28a{bottom:275.272339px;}
.ya1{bottom:275.284548px;}
.y164{bottom:275.293643px;}
.y249{bottom:275.342218px;}
.y6d{bottom:275.417814px;}
.y1e4{bottom:279.790698px;}
.y212{bottom:281.055153px;}
.y11a{bottom:281.480255px;}
.y118{bottom:281.483313px;}
.y310{bottom:281.849949px;}
.y1a8{bottom:283.516270px;}
.y1aa{bottom:283.521149px;}
.y21{bottom:284.997268px;}
.y2f{bottom:285.041199px;}
.y119{bottom:287.943306px;}
.y2c8{bottom:288.695721px;}
.y1a9{bottom:289.473907px;}
.y210{bottom:292.583789px;}
.y289{bottom:293.215645px;}
.ya0{bottom:293.224796px;}
.y163{bottom:293.233891px;}
.y248{bottom:293.282466px;}
.y6c{bottom:293.358062px;}
.y30f{bottom:295.287981px;}
.y117{bottom:299.423561px;}
.y1e3{bottom:299.600629px;}
.y1a7{bottom:300.018745px;}
.y2c7{bottom:302.212207px;}
.y20{bottom:302.937516px;}
.y2e{bottom:302.981447px;}
.y30e{bottom:308.804467px;}
.y20f{bottom:310.436166px;}
.y9f{bottom:311.165044px;}
.y162{bottom:311.174139px;}
.y247{bottom:311.222714px;}
.y6b{bottom:311.298310px;}
.y2c6{bottom:315.650239px;}
.y1e2{bottom:319.410561px;}
.y1f{bottom:320.877764px;}
.y2d{bottom:320.921695px;}
.y30d{bottom:322.242499px;}
.y116{bottom:325.629083px;}
.y20e{bottom:328.376414px;}
.y115{bottom:328.945701px;}
.y2c5{bottom:329.088271px;}
.y9e{bottom:329.105292px;}
.y161{bottom:329.114387px;}
.y246{bottom:329.162962px;}
.y288{bottom:329.214447px;}
.y6a{bottom:329.238558px;}
.ye7{bottom:329.373299px;}
.y1e1{bottom:332.848317px;}
.y30c{bottom:335.680531px;}
.y1e{bottom:338.730140px;}
.y2c{bottom:338.774071px;}
.y114{bottom:340.029092px;}
.y2c4{bottom:342.526303px;}
.y113{bottom:343.341437px;}
.ye6{bottom:343.786960px;}
.y20d{bottom:346.316662px;}
.y9d{bottom:347.045540px;}
.y160{bottom:347.054635px;}
.y245{bottom:347.103210px;}
.yf5{bottom:347.119056px;}
.yde{bottom:347.123502px;}
.y19a{bottom:347.139382px;}
.y104{bottom:347.154028px;}
.y287{bottom:347.154695px;}
.y69{bottom:347.178806px;}
.y30b{bottom:349.118563px;}
.y1e0{bottom:352.658249px;}
.y112{bottom:353.707514px;}
.yf4{bottom:354.602433px;}
.ydd{bottom:354.606878px;}
.y103{bottom:354.637405px;}
.y2c3{bottom:355.964335px;}
.y1d{bottom:356.670388px;}
.y2b{bottom:356.714319px;}
.y111{bottom:357.601547px;}
.ye5{bottom:358.042677px;}
.yf3{bottom:361.654525px;}
.ydc{bottom:361.658970px;}
.y102{bottom:361.689497px;}
.y30a{bottom:362.556595px;}
.y20c{bottom:364.256910px;}
.y9c{bottom:364.988846px;}
.y15f{bottom:364.994883px;}
.y244{bottom:365.043458px;}
.y199{bottom:365.079630px;}
.y286{bottom:365.094943px;}
.y68{bottom:365.119054px;}
.yf2{bottom:368.706616px;}
.ydb{bottom:368.711061px;}
.y101{bottom:368.741588px;}
.y110{bottom:368.825482px;}
.y2c2{bottom:369.402367px;}
.y10f{bottom:371.998856px;}
.ye4{bottom:372.438268px;}
.y1df{bottom:372.476558px;}
.y1c{bottom:374.610636px;}
.y2a{bottom:374.654567px;}
.yf1{bottom:375.618832px;}
.yda{bottom:375.623277px;}
.y100{bottom:375.653804px;}
.y309{bottom:375.994627px;}
.y20b{bottom:382.197158px;}
.yf0{bottom:382.670923px;}
.yd9{bottom:382.675368px;}
.yff{bottom:382.705895px;}
.y2c1{bottom:382.840399px;}
.y15e{bottom:382.847260px;}
.y243{bottom:382.895834px;}
.y198{bottom:382.932007px;}
.y285{bottom:382.947320px;}
.y67{bottom:382.971430px;}
.y10e{bottom:383.947207px;}
.yd0{bottom:386.685150px;}
.ye3{bottom:386.693985px;}
.yf6{bottom:386.715677px;}
.y10d{bottom:387.121559px;}
.y1de{bottom:388.884888px;}
.y1dc{bottom:388.889263px;}
.y308{bottom:389.511113px;}
.yef{bottom:389.583139px;}
.yd8{bottom:389.587584px;}
.yfe{bottom:389.618111px;}
.y1b{bottom:392.550884px;}
.y29{bottom:392.594815px;}
.y1dd{bottom:394.837784px;}
.y2c0{bottom:396.356885px;}
.yee{bottom:396.635230px;}
.yd7{bottom:396.639675px;}
.yfd{bottom:396.670202px;}
.y10c{bottom:398.345471px;}
.y20a{bottom:400.137406px;}
.y15d{bottom:400.790543px;}
.y242{bottom:400.836082px;}
.y197{bottom:400.872255px;}
.y284{bottom:400.887568px;}
.y66{bottom:400.911678px;}
.y9b{bottom:400.914721px;}
.ye2{bottom:401.089577px;}
.y10b{bottom:401.517431px;}
.y307{bottom:402.949145px;}
.yed{bottom:403.547446px;}
.yd6{bottom:403.551891px;}
.yfc{bottom:403.582418px;}
.y1d9{bottom:405.292737px;}
.y1db{bottom:405.297592px;}
.y2bf{bottom:409.794917px;}
.y1a{bottom:410.491132px;}
.y28{bottom:410.535063px;}
.yec{bottom:410.599537px;}
.yd5{bottom:410.603982px;}
.yfb{bottom:410.634509px;}
.y1da{bottom:411.335403px;}
.y10a{bottom:412.745480px;}
.ye1{bottom:415.485168px;}
.y109{bottom:415.777565px;}
.y306{bottom:416.387177px;}
.yeb{bottom:417.651629px;}
.yd4{bottom:417.656074px;}
.yfa{bottom:417.686601px;}
.y209{bottom:418.077654px;}
.y241{bottom:418.776330px;}
.y196{bottom:418.812502px;}
.y283{bottom:418.827816px;}
.y65{bottom:418.851926px;}
.y9a{bottom:418.854969px;}
.y1d8{bottom:421.795212px;}
.y2be{bottom:423.232949px;}
.yea{bottom:424.563844px;}
.yd3{bottom:424.568289px;}
.yf9{bottom:424.598816px;}
.y108{bottom:426.860955px;}
.y19{bottom:428.431380px;}
.y27{bottom:428.475311px;}
.ye0{bottom:429.741165px;}
.y305{bottom:429.825209px;}
.y107{bottom:430.177574px;}
.ye9{bottom:431.615936px;}
.yd2{bottom:431.620381px;}
.yf8{bottom:431.650908px;}
.y208{bottom:436.017902px;}
.y2bd{bottom:436.670981px;}
.y15c{bottom:436.698276px;}
.y240{bottom:436.716578px;}
.y195{bottom:436.752750px;}
.y282{bottom:436.768063px;}
.y64{bottom:436.792174px;}
.y99{bottom:436.795217px;}
.y106{bottom:441.259219px;}
.y304{bottom:443.263241px;}
.ydf{bottom:444.174271px;}
.y105{bottom:444.647741px;}
.y18{bottom:446.371628px;}
.y26{bottom:446.415559px;}
.y2bc{bottom:450.109013px;}
.ye8{bottom:452.061172px;}
.yd1{bottom:452.065618px;}
.yf7{bottom:452.096144px;}
.y207{bottom:453.870278px;}
.y15b{bottom:454.638524px;}
.y23f{bottom:454.656826px;}
.y194{bottom:454.692998px;}
.y281{bottom:454.708311px;}
.y63{bottom:454.732422px;}
.y98{bottom:454.735464px;}
.y303{bottom:456.701273px;}
.y2bb{bottom:463.547045px;}
.y17{bottom:464.314819px;}
.y25{bottom:464.355807px;}
.y1a6{bottom:468.077701px;}
.y302{bottom:470.139305px;}
.y206{bottom:471.810526px;}
.y15a{bottom:472.578772px;}
.y23e{bottom:472.597074px;}
.y193{bottom:472.633246px;}
.y280{bottom:472.648559px;}
.y62{bottom:472.672670px;}
.y97{bottom:472.675712px;}
.ycf{bottom:473.506546px;}
.y2ba{bottom:477.063530px;}
.y301{bottom:483.655790px;}
.y1a5{bottom:486.017949px;}
.y205{bottom:489.750774px;}
.y2b9{bottom:490.501562px;}
.y159{bottom:490.519020px;}
.y23d{bottom:490.537322px;}
.y192{bottom:490.573494px;}
.y27f{bottom:490.588807px;}
.y61{bottom:490.612918px;}
.y96{bottom:490.615960px;}
.yce{bottom:491.446794px;}
.y300{bottom:497.105030px;}
.y2b8{bottom:503.939595px;}
.y1a4{bottom:503.958197px;}
.y204{bottom:507.691022px;}
.y158{bottom:508.459267px;}
.y23c{bottom:508.477570px;}
.y191{bottom:508.513742px;}
.y27e{bottom:508.529055px;}
.y60{bottom:508.553166px;}
.y95{bottom:508.556208px;}
.y2ff{bottom:510.543062px;}
.ycd{bottom:511.425751px;}
.y16{bottom:514.266468px;}
.y2b7{bottom:517.377627px;}
.ycc{bottom:520.425613px;}
.y1a3{bottom:521.898445px;}
.y2fe{bottom:523.981094px;}
.y203{bottom:525.631270px;}
.y157{bottom:526.311644px;}
.y23b{bottom:526.329947px;}
.y190{bottom:526.366119px;}
.y27d{bottom:526.381432px;}
.y5f{bottom:526.405542px;}
.y94{bottom:526.408585px;}
.y2b6{bottom:530.815659px;}
.y2fd{bottom:537.419126px;}
.y15{bottom:539.686041px;}
.y1a2{bottom:539.750821px;}
.y202{bottom:543.571518px;}
.y200{bottom:543.574553px;}
.y2b5{bottom:544.239484px;}
.y156{bottom:544.251892px;}
.y154{bottom:544.254973px;}
.y23a{bottom:544.270195px;}
.y18f{bottom:544.306367px;}
.y27c{bottom:544.321680px;}
.y5e{bottom:544.345790px;}
.y93{bottom:544.348833px;}
.yca{bottom:547.653442px;}
.y201{bottom:550.034546px;}
.ycb{bottom:550.119598px;}
.yc9{bottom:550.122634px;}
.y155{bottom:550.800018px;}
.y2fc{bottom:550.857158px;}
.y14{bottom:557.633664px;}
.y1a1{bottom:557.691069px;}
.y1ff{bottom:561.514801px;}
.y153{bottom:562.195221px;}
.y151{bottom:562.198256px;}
.y239{bottom:562.210443px;}
.y18e{bottom:562.246615px;}
.y27b{bottom:562.261928px;}
.y5d{bottom:562.286038px;}
.y92{bottom:562.289081px;}
.y2fb{bottom:564.373644px;}
.yc7{bottom:565.596771px;}
.yc8{bottom:568.062881px;}
.yc6{bottom:568.068998px;}
.y152{bottom:568.743164px;}
.y13{bottom:575.581287px;}
.y2b4{bottom:575.621043px;}
.y1a0{bottom:575.631317px;}
.y2fa{bottom:577.811676px;}
.y1fe{bottom:579.458084px;}
.y150{bottom:580.138504px;}
.y14e{bottom:580.141539px;}
.y238{bottom:580.150690px;}
.y18d{bottom:580.186863px;}
.y27a{bottom:580.202176px;}
.y5c{bottom:580.226286px;}
.y91{bottom:580.229329px;}
.yc5{bottom:586.009245px;}
.y14f{bottom:586.686447px;}
.y2b3{bottom:589.059075px;}
.y2f9{bottom:591.249708px;}
.y12{bottom:593.528910px;}
.y19f{bottom:593.574738px;}
.y14d{bottom:598.081787px;}
.y237{bottom:598.090938px;}
.y18c{bottom:598.127110px;}
.y279{bottom:598.142424px;}
.y14b{bottom:598.160647px;}
.y5b{bottom:598.166534px;}
.y90{bottom:598.169577px;}
.yc3{bottom:601.483337px;}
.yc4{bottom:603.949493px;}
.yc2{bottom:603.988746px;}
.y14c{bottom:604.544678px;}
.y2f8{bottom:604.687740px;}
.y1fd{bottom:615.278129px;}
.y11{bottom:615.899927px;}
.y2b2{bottom:616.013592px;}
.y236{bottom:616.031186px;}
.y18b{bottom:616.067358px;}
.y278{bottom:616.082672px;}
.y14a{bottom:616.100895px;}
.y5a{bottom:616.106782px;}
.y8f{bottom:616.109825px;}
.y2f7{bottom:618.125772px;}
.yc1{bottom:621.928994px;}
.y2b1{bottom:629.451624px;}
.y19e{bottom:629.570144px;}
.y2f6{bottom:631.563804px;}
.y1fc{bottom:633.218377px;}
.y10{bottom:633.847550px;}
.y235{bottom:633.971434px;}
.y18a{bottom:634.007606px;}
.y277{bottom:634.022919px;}
.y149{bottom:634.041143px;}
.y59{bottom:634.047030px;}
.y8e{bottom:634.050072px;}
.yc0{bottom:639.869242px;}
.y2f5{bottom:645.001836px;}
.y19d{bottom:647.510392px;}
.y1fb{bottom:651.158625px;}
.yf{bottom:651.795173px;}
.y234{bottom:651.911682px;}
.y189{bottom:651.947854px;}
.y276{bottom:651.963167px;}
.y148{bottom:651.981391px;}
.y58{bottom:651.987278px;}
.y8d{bottom:651.990320px;}
.y2b0{bottom:656.327689px;}
.ybf{bottom:657.721619px;}
.y2f4{bottom:658.518322px;}
.y19c{bottom:665.450640px;}
.y1fa{bottom:669.098873px;}
.ye{bottom:669.742796px;}
.y2af{bottom:669.765721px;}
.y233{bottom:669.771777px;}
.y188{bottom:669.800231px;}
.y275{bottom:669.815544px;}
.y147{bottom:669.833767px;}
.y57{bottom:669.839655px;}
.y8c{bottom:669.842697px;}
.y2f3{bottom:671.956354px;}
.ybe{bottom:675.661867px;}
.y2ae{bottom:683.282206px;}
.y19b{bottom:683.303017px;}
.y2f2{bottom:685.394386px;}
.y1f9{bottom:687.039121px;}
.yd{bottom:687.690419px;}
.y232{bottom:687.713242px;}
.y187{bottom:687.740479px;}
.y274{bottom:687.755792px;}
.y146{bottom:687.774015px;}
.y56{bottom:687.779903px;}
.y8b{bottom:687.782945px;}
.y336{bottom:689.937833px;}
.ybd{bottom:693.602115px;}
.y2ad{bottom:696.720238px;}
.y2f1{bottom:698.832418px;}
.y335{bottom:702.603414px;}
.y1f8{bottom:704.979369px;}
.yc{bottom:705.638042px;}
.y186{bottom:705.680727px;}
.y273{bottom:705.696040px;}
.y145{bottom:705.714263px;}
.y55{bottom:705.720151px;}
.y8a{bottom:705.723193px;}
.ybc{bottom:711.542363px;}
.y2f0{bottom:712.270450px;}
.y334{bottom:715.268996px;}
.y1d7{bottom:719.780343px;}
.y1f7{bottom:722.919617px;}
.y2ac{bottom:723.596302px;}
.y185{bottom:723.620975px;}
.y272{bottom:723.636288px;}
.y144{bottom:723.654511px;}
.y54{bottom:723.660398px;}
.y89{bottom:723.663441px;}
.y231{bottom:723.674516px;}
.y2ef{bottom:725.708482px;}
.yb{bottom:728.009060px;}
.y333{bottom:728.021851px;}
.ybb{bottom:729.482611px;}
.y1d6{bottom:732.531937px;}
.y2ab{bottom:737.034334px;}
.y2ee{bottom:739.224967px;}
.y184{bottom:741.561223px;}
.y271{bottom:741.576536px;}
.y143{bottom:741.594759px;}
.y53{bottom:741.600646px;}
.y88{bottom:741.603689px;}
.y230{bottom:741.614764px;}
.y1d5{bottom:745.199844px;}
.ya{bottom:745.956683px;}
.yba{bottom:747.422859px;}
.y2aa{bottom:750.472366px;}
.y2a8{bottom:750.477029px;}
.y332{bottom:752.562141px;}
.y2ed{bottom:752.662999px;}
.y2a9{bottom:755.489548px;}
.y183{bottom:759.501471px;}
.y270{bottom:759.516784px;}
.y142{bottom:759.535007px;}
.y52{bottom:759.540894px;}
.y87{bottom:759.543937px;}
.y22f{bottom:759.555012px;}
.y9{bottom:763.904306px;}
.y2a5{bottom:763.989964px;}
.y2a7{bottom:763.993515px;}
.yb9{bottom:765.363107px;}
.y1d4{bottom:765.779388px;}
.y1d2{bottom:765.783574px;}
.y331{bottom:766.000173px;}
.y2ec{bottom:766.101031px;}
.y263{bottom:767.220381px;}
.y265{bottom:767.225098px;}
.y2a6{bottom:768.925781px;}
.y1d3{bottom:771.051727px;}
.y264{bottom:771.902069px;}
.y2a4{bottom:777.427996px;}
.y182{bottom:777.441718px;}
.y26f{bottom:777.457032px;}
.y141{bottom:777.475255px;}
.y51{bottom:777.481142px;}
.y86{bottom:777.484185px;}
.y22e{bottom:777.495260px;}
.y330{bottom:779.438205px;}
.y2eb{bottom:779.539063px;}
.y8{bottom:781.851929px;}
.y262{bottom:782.189643px;}
.yb8{bottom:783.303354px;}
.y1d1{bottom:785.593506px;}
.y1cf{bottom:785.597783px;}
.y1d0{bottom:790.866028px;}
.y32f{bottom:792.876237px;}
.y2ea{bottom:792.977095px;}
.y181{bottom:795.381966px;}
.y26e{bottom:795.397280px;}
.y140{bottom:795.415503px;}
.y50{bottom:795.421390px;}
.y85{bottom:795.424433px;}
.y22d{bottom:795.435508px;}
.y2a3{bottom:795.798340px;}
.y261{bottom:797.158905px;}
.yb6{bottom:798.774628px;}
.yb7{bottom:801.155731px;}
.yb5{bottom:801.158721px;}
.y2a2{bottom:804.294335px;}
.y1ce{bottom:805.407715px;}
.y1cc{bottom:805.410535px;}
.y32e{bottom:806.314269px;}
.y2e9{bottom:806.415127px;}
.y7{bottom:808.724213px;}
.y1cd{bottom:810.680145px;}
.y180{bottom:813.234343px;}
.y26d{bottom:813.249656px;}
.y13f{bottom:813.267880px;}
.y4f{bottom:813.273767px;}
.y84{bottom:813.276809px;}
.y22c{bottom:813.287884px;}
.yb3{bottom:816.717865px;}
.y260{bottom:817.757904px;}
.yb4{bottom:819.098968px;}
.yb2{bottom:819.105130px;}
.y32d{bottom:819.752301px;}
.y2e8{bottom:819.853159px;}
.y1cb{bottom:825.136780px;}
.y1c9{bottom:825.163604px;}
.y1ca{bottom:830.494171px;}
.y2a1{bottom:831.170399px;}
.y17f{bottom:831.174591px;}
.y17d{bottom:831.177672px;}
.y26c{bottom:831.189904px;}
.y25f{bottom:831.195660px;}
.y13e{bottom:831.208128px;}
.y4e{bottom:831.214015px;}
.y83{bottom:831.217057px;}
.y22b{bottom:831.228132px;}
.y32c{bottom:833.291202px;}
.y2e7{bottom:833.369645px;}
.yb1{bottom:837.045378px;}
.y17e{bottom:837.722717px;}
.y2a0{bottom:844.608431px;}
.y1c8{bottom:844.973536px;}
.y32b{bottom:846.729234px;}
.y2e6{bottom:846.807677px;}
.y17c{bottom:849.117920px;}
.y17a{bottom:849.124173px;}
.y26b{bottom:849.130152px;}
.y13d{bottom:849.148375px;}
.y4d{bottom:849.154263px;}
.y82{bottom:849.157305px;}
.y22a{bottom:849.168380px;}
.y25e{bottom:851.005592px;}
.yb0{bottom:852.519470px;}
.yaf{bottom:854.985626px;}
.y17b{bottom:855.665955px;}
.y29f{bottom:858.124917px;}
.y32a{bottom:860.167266px;}
.y2e5{bottom:860.245709px;}
.y25d{bottom:864.443349px;}
.y1c7{bottom:864.783467px;}
.y5{bottom:866.295868px;}
.y179{bottom:867.064421px;}
.y26a{bottom:867.070400px;}
.y13c{bottom:867.088623px;}
.y4c{bottom:867.094511px;}
.y81{bottom:867.097553px;}
.y229{bottom:867.108628px;}
.y29e{bottom:871.562949px;}
.y329{bottom:873.605298px;}
.y6{bottom:873.609283px;}
.y2e4{bottom:873.683741px;}
.y25c{bottom:884.253280px;}
.y1c6{bottom:884.593399px;}
.y29d{bottom:885.000981px;}
.y178{bottom:885.004669px;}
.y176{bottom:885.007567px;}
.y269{bottom:885.010648px;}
.y13b{bottom:885.028871px;}
.y4b{bottom:885.034759px;}
.y80{bottom:885.037801px;}
.y228{bottom:885.048876px;}
.yae{bottom:885.195557px;}
.y328{bottom:887.043330px;}
.y2e3{bottom:887.121773px;}
.y177{bottom:891.467377px;}
.y25b{bottom:897.691037px;}
.y29c{bottom:898.439013px;}
.y327{bottom:900.481362px;}
.y2e2{bottom:900.559805px;}
.y4{bottom:902.067393px;}
.y175{bottom:902.947815px;}
.y268{bottom:902.950896px;}
.y173{bottom:902.962866px;}
.y13a{bottom:902.969119px;}
.y4a{bottom:902.975006px;}
.y7f{bottom:902.978049px;}
.y227{bottom:902.989124px;}
.y1c5{bottom:904.403330px;}
.y174{bottom:909.410889px;}
.y29b{bottom:911.877045px;}
.y326{bottom:913.997848px;}
.y2e1{bottom:914.076291px;}
.yad{bottom:914.853333px;}
.y25a{bottom:917.500969px;}
.y267{bottom:920.891144px;}
.y172{bottom:920.903114px;}
.y139{bottom:920.909367px;}
.y49{bottom:920.915254px;}
.y7e{bottom:920.918297px;}
.y226{bottom:920.929372px;}
.y1c4{bottom:924.213262px;}
.y325{bottom:927.435880px;}
.y2e0{bottom:927.514323px;}
.y259{bottom:937.227213px;}
.y266{bottom:938.834381px;}
.y171{bottom:938.843362px;}
.y138{bottom:938.849615px;}
.y48{bottom:938.855502px;}
.y7d{bottom:938.858545px;}
.y225{bottom:938.869620px;}
.y324{bottom:940.873912px;}
.y3{bottom:940.945379px;}
.y2df{bottom:940.952355px;}
.y1c3{bottom:943.939505px;}
.yac{bottom:945.000641px;}
.y323{bottom:954.311944px;}
.y2de{bottom:954.390387px;}
.y170{bottom:956.695738px;}
.y137{bottom:956.701992px;}
.y47{bottom:956.707879px;}
.y7c{bottom:956.710921px;}
.y224{bottom:956.721997px;}
.y29a{bottom:956.738147px;}
.y258{bottom:957.037145px;}
.y1c2{bottom:957.460950px;}
.y322{bottom:967.749976px;}
.y2dd{bottom:967.828419px;}
.y16f{bottom:974.635986px;}
.y136{bottom:974.642240px;}
.y46{bottom:974.648127px;}
.y7b{bottom:974.651169px;}
.y223{bottom:974.662245px;}
.y299{bottom:974.678395px;}
.y257{bottom:976.847076px;}
.y1c1{bottom:977.187195px;}
.y2{bottom:979.823364px;}
.y16e{bottom:981.184021px;}
.y321{bottom:981.188008px;}
.y2dc{bottom:981.266451px;}
.y135{bottom:992.582488px;}
.y45{bottom:992.588375px;}
.y7a{bottom:992.591417px;}
.y222{bottom:992.602492px;}
.y298{bottom:992.618643px;}
.y320{bottom:994.704494px;}
.y2db{bottom:994.782937px;}
.y256{bottom:996.659716px;}
.y1c0{bottom:996.996548px;}
.y133{bottom:1008.056580px;}
.y31f{bottom:1008.142526px;}
.y2da{bottom:1008.220969px;}
.y254{bottom:1010.097473px;}
.y134{bottom:1010.522736px;}
.y44{bottom:1010.528623px;}
.y79{bottom:1010.531665px;}
.y221{bottom:1010.542740px;}
.y297{bottom:1010.558891px;}
.y1bf{bottom:1013.499023px;}
.y1bd{bottom:1013.503261px;}
.y255{bottom:1015.454956px;}
.y1be{bottom:1019.451782px;}
.y31e{bottom:1021.580558px;}
.y2d9{bottom:1021.659001px;}
.y43{bottom:1028.468871px;}
.y78{bottom:1028.471913px;}
.y220{bottom:1028.482988px;}
.y296{bottom:1028.499139px;}
.y1bc{bottom:1029.911591px;}
.y1ba{bottom:1029.915737px;}
.y31d{bottom:1035.018590px;}
.y2d8{bottom:1035.097033px;}
.y1bb{bottom:1035.864258px;}
.y1{bottom:1036.629639px;}
.y132{bottom:1043.942963px;}
.y1b9{bottom:1046.324066px;}
.y42{bottom:1046.409119px;}
.y77{bottom:1046.412161px;}
.y131{bottom:1046.422070px;}
.y21f{bottom:1046.423236px;}
.y295{bottom:1046.439387px;}
.y31c{bottom:1048.456622px;}
.y2d7{bottom:1048.535065px;}
.y3e{bottom:1115.203695px;}
.y16d{bottom:1115.221178px;}
.y3d{bottom:1130.088043px;}
.y16c{bottom:1130.105527px;}
.h15{height:2.144768px;}
.h2e{height:20.109411px;}
.h2d{height:20.896295px;}
.ha{height:21.545644px;}
.h2a{height:22.982739px;}
.h25{height:24.101713px;}
.h2c{height:24.538253px;}
.h29{height:25.855637px;}
.h27{height:26.185439px;}
.hf{height:27.138777px;}
.h2b{height:27.685458px;}
.h26{height:28.271187px;}
.h32{height:28.350001px;}
.hc{height:30.168660px;}
.h14{height:30.772763px;}
.h31{height:31.089601px;}
.h2f{height:31.462133px;}
.h5{height:31.602296px;}
.h9{height:32.323006px;}
.h16{height:33.570287px;}
.hb{height:34.479085px;}
.h17{height:38.498917px;}
.h11{height:38.604484px;}
.h28{height:38.788214px;}
.h1f{height:38.790441px;}
.h1c{height:38.796094px;}
.h19{height:39.355597px;}
.h21{height:39.355688px;}
.h23{height:39.372693px;}
.hd{height:39.649952px;}
.h30{height:40.651940px;}
.h10{height:40.713378px;}
.he{height:41.962320px;}
.h8{height:42.412210px;}
.h1b{height:42.883434px;}
.h7{height:43.098207px;}
.h1e{height:43.452501px;}
.h24{height:44.021570px;}
.h6{height:44.390817px;}
.h20{height:46.256916px;}
.h1d{height:46.257008px;}
.h22{height:46.331317px;}
.h1a{height:46.819094px;}
.h18{height:46.826075px;}
.h4{height:47.408632px;}
.h2{height:56.028189px;}
.h12{height:84.041203px;}
.h3{height:103.435526px;}
.h13{height:120.040362px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039352px;}
.x11{left:89.036247px;}
.x1{left:90.396898px;}
.x5d{left:91.502398px;}
.x1a{left:93.373198px;}
.xe{left:94.733849px;}
.x13{left:97.033689px;}
.x73{left:98.220451px;}
.x25{left:100.516502px;}
.x58{left:102.047253px;}
.x1b{left:104.768555px;}
.x15{left:106.581448px;}
.x3d{left:115.398445px;}
.x43{left:117.014099px;}
.x26{left:118.204651px;}
.x5b{left:119.565296px;}
.x2a{left:128.086120px;}
.x27{left:131.640896px;}
.x57{left:135.637802px;}
.x2b{left:138.168863px;}
.x1c{left:141.590549px;}
.x2c{left:150.691349px;}
.x1d{left:152.900700px;}
.x28{left:154.771648px;}
.x2d{left:162.499231px;}
.x29{left:167.780846px;}
.x16{left:171.099152px;}
.x2e{left:172.150689px;}
.x56{left:173.990547px;}
.x2f{left:182.233431px;}
.x17{left:183.514950px;}
.x3{left:187.256699px;}
.x22{left:188.277145px;}
.x1e{left:193.209457px;}
.x30{left:195.765669px;}
.x4{left:197.461349px;}
.x1f{left:199.587296px;}
.x5c{left:201.542787px;}
.x6f{left:209.451897px;}
.x20{left:216.340050px;}
.x44{left:219.826790px;}
.x18{left:221.782654px;}
.x21{left:228.160652px;}
.x31{left:230.469671px;}
.x19{left:234.283356px;}
.x45{left:238.450356px;}
.x3e{left:252.651901px;}
.x32{left:262.869520px;}
.x46{left:265.407898px;}
.x12{left:267.873894px;}
.x72{left:277.663141px;}
.x70{left:284.116493px;}
.x33{left:292.101530px;}
.x5{left:293.981094px;}
.x6{left:299.593643px;}
.x54{left:300.954300px;}
.x47{left:304.440903px;}
.x55{left:306.566849px;}
.x3f{left:310.648796px;}
.x34{left:314.709516px;}
.x5a{left:316.261345px;}
.x48{left:331.398308px;}
.x35{left:337.173536px;}
.x6e{left:342.198303px;}
.x3a{left:355.549507px;}
.x36{left:358.341535px;}
.x40{left:369.836105px;}
.x3b{left:372.557396px;}
.x7{left:378.425102px;}
.x37{left:379.509374px;}
.x8{left:384.037628px;}
.x41{left:386.418732px;}
.x3c{left:390.415649px;}
.x59{left:396.453461px;}
.x38{left:401.685369px;}
.x71{left:405.294002px;}
.x39{left:411.907059px;}
.x42{left:424.431473px;}
.x23{left:426.727478px;}
.x24{left:432.595184px;}
.xf{left:457.083466px;}
.x74{left:461.083328px;}
.x69{left:462.273880px;}
.x68{left:463.379379px;}
.x79{left:465.335266px;}
.x6a{left:466.780930px;}
.x10{left:469.077803px;}
.x61{left:472.733688px;}
.x5e{left:474.689713px;}
.x62{left:478.346420px;}
.x9{left:480.387314px;}
.x6b{left:481.662918px;}
.xa{left:485.999863px;}
.x65{left:487.785736px;}
.x4c{left:492.462891px;}
.x4d{left:503.773041px;}
.x49{left:513.127487px;}
.x4a{left:530.135422px;}
.x75{left:541.020309px;}
.x52{left:542.210861px;}
.x76{left:545.017181px;}
.x53{left:553.180939px;}
.x4b{left:596.806183px;}
.xb{left:600.802963px;}
.xc{left:611.602936px;}
.x6c{left:617.128427px;}
.x51{left:623.083328px;}
.x77{left:628.865982px;}
.x5f{left:631.417191px;}
.x78{left:632.862900px;}
.x60{left:637.029739px;}
.x66{left:640.598377px;}
.x63{left:699.533707px;}
.x64{left:705.146255px;}
.x67{left:720.447825px;}
.x4e{left:731.338486px;}
.x6d{left:733.202431px;}
.xd{left:736.865982px;}
.x50{left:738.736816px;}
.x4f{left:742.648636px;}
.x14{left:749.192155px;}
@media print{
.ve{vertical-align:-31.759529pt;}
.v1{vertical-align:-14.079753pt;}
.v2{vertical-align:-7.680013pt;}
.v9{vertical-align:-6.261721pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:5.638879pt;}
.vd{vertical-align:10.765041pt;}
.vb{vertical-align:11.782922pt;}
.va{vertical-align:14.582827pt;}
.v4{vertical-align:32.015697pt;}
.v8{vertical-align:33.262858pt;}
.v7{vertical-align:56.319499pt;}
.v6{vertical-align:64.014949pt;}
.v3{vertical-align:72.320247pt;}
.v5{vertical-align:104.319499pt;}
.lsd4{letter-spacing:-3.307295pt;}
.lscf{letter-spacing:-0.300471pt;}
.lsce{letter-spacing:-0.279749pt;}
.lscd{letter-spacing:-0.269388pt;}
.lsd6{letter-spacing:-0.107119pt;}
.ls5f{letter-spacing:-0.005207pt;}
.ls19{letter-spacing:0.000000pt;}
.ls93{letter-spacing:0.002126pt;}
.ls1c{letter-spacing:0.005207pt;}
.ls67{letter-spacing:0.005626pt;}
.ls71{letter-spacing:0.006155pt;}
.lse{letter-spacing:0.010414pt;}
.lsd0{letter-spacing:0.020722pt;}
.ls99{letter-spacing:0.029755pt;}
.ls11e{letter-spacing:0.031243pt;}
.ls97{letter-spacing:0.033029pt;}
.ls137{letter-spacing:0.039848pt;}
.ls64{letter-spacing:0.041636pt;}
.ls6f{letter-spacing:0.047657pt;}
.ls91{letter-spacing:0.047910pt;}
.ls8e{letter-spacing:0.059159pt;}
.ls8b{letter-spacing:0.104144pt;}
.lsac{letter-spacing:0.178531pt;}
.lsd7{letter-spacing:0.202335pt;}
.lsa5{letter-spacing:0.248669pt;}
.ls6c{letter-spacing:0.337324pt;}
.ls6b{letter-spacing:0.361850pt;}
.ls11f{letter-spacing:0.458229pt;}
.ls113{letter-spacing:0.468643pt;}
.ls5b{letter-spacing:0.473850pt;}
.lsf9{letter-spacing:0.484265pt;}
.ls3d{letter-spacing:0.489472pt;}
.lsdd{letter-spacing:0.494679pt;}
.ls103{letter-spacing:0.499886pt;}
.ls107{letter-spacing:0.505093pt;}
.lscb{letter-spacing:0.515508pt;}
.ls111{letter-spacing:0.520715pt;}
.lsc8{letter-spacing:0.525922pt;}
.ls5c{letter-spacing:0.531129pt;}
.ls1a{letter-spacing:0.541543pt;}
.ls1d{letter-spacing:0.551958pt;}
.lsf{letter-spacing:0.557165pt;}
.ls2b{letter-spacing:0.562372pt;}
.lsc1{letter-spacing:0.567579pt;}
.ls115{letter-spacing:0.572786pt;}
.ls10a{letter-spacing:0.577993pt;}
.ls3b{letter-spacing:0.583200pt;}
.lsed{letter-spacing:0.588408pt;}
.ls46{letter-spacing:0.593615pt;}
.lsf8{letter-spacing:0.609236pt;}
.lsfc{letter-spacing:0.619650pt;}
.ls49{letter-spacing:0.624858pt;}
.ls10f{letter-spacing:0.630065pt;}
.lsec{letter-spacing:0.640479pt;}
.ls10{letter-spacing:0.656100pt;}
.ls12e{letter-spacing:0.671722pt;}
.ls26{letter-spacing:0.676929pt;}
.lsef{letter-spacing:0.687343pt;}
.ls38{letter-spacing:0.697758pt;}
.ls60{letter-spacing:0.702965pt;}
.lsc2{letter-spacing:0.708172pt;}
.ls7e{letter-spacing:0.718586pt;}
.ls5d{letter-spacing:0.723793pt;}
.ls35{letter-spacing:0.734208pt;}
.ls16{letter-spacing:0.739415pt;}
.ls52{letter-spacing:0.744622pt;}
.lsf0{letter-spacing:0.749829pt;}
.lsf5{letter-spacing:0.755036pt;}
.ls126{letter-spacing:0.760243pt;}
.lsc4{letter-spacing:0.770658pt;}
.ls44{letter-spacing:0.775865pt;}
.ls9{letter-spacing:0.781072pt;}
.ls15{letter-spacing:0.786279pt;}
.ls31{letter-spacing:0.796693pt;}
.ls131{letter-spacing:0.822729pt;}
.ls1f{letter-spacing:0.827936pt;}
.ls1e{letter-spacing:0.833143pt;}
.ls116{letter-spacing:0.843558pt;}
.lsc6{letter-spacing:0.869593pt;}
.ls4f{letter-spacing:0.874801pt;}
.ls80{letter-spacing:0.880008pt;}
.ls1b{letter-spacing:0.885215pt;}
.ls77{letter-spacing:0.900836pt;}
.ls36{letter-spacing:0.906044pt;}
.lsd2{letter-spacing:0.911251pt;}
.lsf2{letter-spacing:0.916458pt;}
.ls58{letter-spacing:0.921665pt;}
.ls5{letter-spacing:0.926872pt;}
.ls54{letter-spacing:0.932079pt;}
.lsc5{letter-spacing:0.937286pt;}
.lsb8{letter-spacing:0.947701pt;}
.ls61{letter-spacing:0.958115pt;}
.lsca{letter-spacing:0.973736pt;}
.ls78{letter-spacing:0.989358pt;}
.ls27{letter-spacing:1.004979pt;}
.lsb{letter-spacing:1.010186pt;}
.ls114{letter-spacing:1.015394pt;}
.ls59{letter-spacing:1.025808pt;}
.lse2{letter-spacing:1.031015pt;}
.ls117{letter-spacing:1.051844pt;}
.ls2e{letter-spacing:1.057051pt;}
.ls40{letter-spacing:1.067465pt;}
.ls4a{letter-spacing:1.072672pt;}
.ls3a{letter-spacing:1.077879pt;}
.ls25{letter-spacing:1.083087pt;}
.ls45{letter-spacing:1.093501pt;}
.ls119{letter-spacing:1.103915pt;}
.ls37{letter-spacing:1.109122pt;}
.ls129{letter-spacing:1.114329pt;}
.ls108{letter-spacing:1.119537pt;}
.ls128{letter-spacing:1.124744pt;}
.ls130{letter-spacing:1.129951pt;}
.ls39{letter-spacing:1.135158pt;}
.lse5{letter-spacing:1.140365pt;}
.lsda{letter-spacing:1.145426pt;}
.lsf6{letter-spacing:1.145572pt;}
.ls3e{letter-spacing:1.150779pt;}
.ls122{letter-spacing:1.155987pt;}
.ls32{letter-spacing:1.161194pt;}
.ls57{letter-spacing:1.166401pt;}
.ls4{letter-spacing:1.171608pt;}
.lsb2{letter-spacing:1.180134pt;}
.ls34{letter-spacing:1.187229pt;}
.ls1{letter-spacing:1.192437pt;}
.ls56{letter-spacing:1.197644pt;}
.lsdb{letter-spacing:1.202851pt;}
.lsf7{letter-spacing:1.208058pt;}
.ls8{letter-spacing:1.213265pt;}
.ls12{letter-spacing:1.218472pt;}
.ls7{letter-spacing:1.223679pt;}
.lsbf{letter-spacing:1.228887pt;}
.lsbe{letter-spacing:1.249715pt;}
.ls50{letter-spacing:1.254922pt;}
.ls87{letter-spacing:1.275751pt;}
.lsb9{letter-spacing:1.280958pt;}
.ls88{letter-spacing:1.291372pt;}
.ls10c{letter-spacing:1.296580pt;}
.ls2c{letter-spacing:1.301787pt;}
.lsb1{letter-spacing:1.317408pt;}
.ls0{letter-spacing:1.322615pt;}
.ls20{letter-spacing:1.333030pt;}
.ls12f{letter-spacing:1.338237pt;}
.ls29{letter-spacing:1.348651pt;}
.ls53{letter-spacing:1.353858pt;}
.lsfa{letter-spacing:1.359065pt;}
.ls135{letter-spacing:1.364272pt;}
.ls106{letter-spacing:1.374687pt;}
.ls110{letter-spacing:1.385101pt;}
.ls85{letter-spacing:1.390308pt;}
.ls3{letter-spacing:1.416344pt;}
.ls120{letter-spacing:1.421551pt;}
.ls11d{letter-spacing:1.431965pt;}
.ls121{letter-spacing:1.442380pt;}
.lsfb{letter-spacing:1.452794pt;}
.lsb7{letter-spacing:1.457814pt;}
.lsf4{letter-spacing:1.458001pt;}
.ls118{letter-spacing:1.468415pt;}
.lsd{letter-spacing:1.473623pt;}
.lsf1{letter-spacing:1.494451pt;}
.ls82{letter-spacing:1.510073pt;}
.lsd3{letter-spacing:1.515280pt;}
.lsc0{letter-spacing:1.546523pt;}
.ls24{letter-spacing:1.551730pt;}
.ls123{letter-spacing:1.556937pt;}
.ls100{letter-spacing:1.562144pt;}
.ls28{letter-spacing:1.572558pt;}
.lsb5{letter-spacing:1.588180pt;}
.ls33{letter-spacing:1.603801pt;}
.ls42{letter-spacing:1.614216pt;}
.lsc9{letter-spacing:1.635044pt;}
.ls4b{letter-spacing:1.640251pt;}
.ls132{letter-spacing:1.666287pt;}
.lsde{letter-spacing:1.683429pt;}
.lse6{letter-spacing:1.697530pt;}
.ls101{letter-spacing:1.713151pt;}
.ls5e{letter-spacing:1.718358pt;}
.lsb4{letter-spacing:1.735494pt;}
.ls30{letter-spacing:1.744394pt;}
.ls43{letter-spacing:1.749601pt;}
.ls41{letter-spacing:1.754808pt;}
.lscc{letter-spacing:1.765223pt;}
.ls104{letter-spacing:1.780844pt;}
.ls47{letter-spacing:1.786051pt;}
.ls7c{letter-spacing:1.801673pt;}
.ls3f{letter-spacing:1.806880pt;}
.ls14{letter-spacing:1.812087pt;}
.ls22{letter-spacing:1.822501pt;}
.ls79{letter-spacing:1.827708pt;}
.lse8{letter-spacing:1.832916pt;}
.ls63{letter-spacing:1.843330pt;}
.lsea{letter-spacing:1.895401pt;}
.ls81{letter-spacing:1.921437pt;}
.ls6{letter-spacing:1.926644pt;}
.ls109{letter-spacing:1.937059pt;}
.lsdf{letter-spacing:1.964578pt;}
.lse1{letter-spacing:1.971520pt;}
.lse0{letter-spacing:1.974991pt;}
.ls3c{letter-spacing:1.978716pt;}
.ls105{letter-spacing:1.999544pt;}
.ls12b{letter-spacing:2.004751pt;}
.ls133{letter-spacing:2.020373pt;}
.ls10e{letter-spacing:2.041202pt;}
.ls10b{letter-spacing:2.056823pt;}
.ls13{letter-spacing:2.062030pt;}
.lsc{letter-spacing:2.093273pt;}
.lsee{letter-spacing:2.108894pt;}
.lsbb{letter-spacing:2.114102pt;}
.lsa{letter-spacing:2.134930pt;}
.ls2d{letter-spacing:2.160966pt;}
.lsf3{letter-spacing:2.192209pt;}
.lsff{letter-spacing:2.197416pt;}
.ls86{letter-spacing:2.202623pt;}
.ls12c{letter-spacing:2.244280pt;}
.ls139{letter-spacing:2.249487pt;}
.lsb6{letter-spacing:2.256141pt;}
.ls7d{letter-spacing:2.285937pt;}
.ls112{letter-spacing:2.291145pt;}
.ls125{letter-spacing:2.322387pt;}
.ls10d{letter-spacing:2.332802pt;}
.lseb{letter-spacing:2.358837pt;}
.ls72{letter-spacing:2.359827pt;}
.ls68{letter-spacing:2.360356pt;}
.ls96{letter-spacing:2.374459pt;}
.ls21{letter-spacing:2.384873pt;}
.ls138{letter-spacing:2.390080pt;}
.lsd9{letter-spacing:2.426530pt;}
.ls5a{letter-spacing:2.494223pt;}
.ls12a{letter-spacing:2.499430pt;}
.lsd1{letter-spacing:2.546295pt;}
.ls124{letter-spacing:2.561916pt;}
.ls127{letter-spacing:2.572330pt;}
.ls2{letter-spacing:2.587952pt;}
.ls4e{letter-spacing:2.598366pt;}
.ls55{letter-spacing:2.603573pt;}
.lsb0{letter-spacing:2.608780pt;}
.ls4d{letter-spacing:2.613988pt;}
.ls48{letter-spacing:2.624402pt;}
.ls102{letter-spacing:2.629609pt;}
.ls12d{letter-spacing:2.634816pt;}
.ls76{letter-spacing:2.640023pt;}
.lsfd{letter-spacing:2.650438pt;}
.lsbd{letter-spacing:2.655645pt;}
.ls2a{letter-spacing:2.660852pt;}
.ls11{letter-spacing:2.666059pt;}
.ls17{letter-spacing:2.671266pt;}
.ls2f{letter-spacing:2.676473pt;}
.ls134{letter-spacing:2.681681pt;}
.lsbc{letter-spacing:2.686888pt;}
.lsc3{letter-spacing:2.697302pt;}
.ls4c{letter-spacing:2.707716pt;}
.ls23{letter-spacing:2.718131pt;}
.lsdc{letter-spacing:2.728545pt;}
.ls74{letter-spacing:3.000330pt;}
.ls98{letter-spacing:5.496608pt;}
.lsab{letter-spacing:5.512058pt;}
.lsa3{letter-spacing:5.512627pt;}
.ls9e{letter-spacing:5.518264pt;}
.lsa7{letter-spacing:5.527170pt;}
.ls8d{letter-spacing:6.941916pt;}
.ls8c{letter-spacing:8.962321pt;}
.ls94{letter-spacing:9.399785pt;}
.ls8f{letter-spacing:9.400395pt;}
.ls6e{letter-spacing:10.879118pt;}
.ls6a{letter-spacing:11.500784pt;}
.ls11b{letter-spacing:12.236695pt;}
.ls11a{letter-spacing:12.534244pt;}
.ls11c{letter-spacing:12.534248pt;}
.lsad{letter-spacing:13.142995pt;}
.lsa1{letter-spacing:13.184783pt;}
.ls136{letter-spacing:13.230066pt;}
.ls9d{letter-spacing:13.640977pt;}
.ls9c{letter-spacing:13.697316pt;}
.ls69{letter-spacing:13.880335pt;}
.ls6d{letter-spacing:13.880416pt;}
.ls18{letter-spacing:13.985045pt;}
.ls90{letter-spacing:13.987440pt;}
.ls75{letter-spacing:14.519821pt;}
.ls73{letter-spacing:14.520391pt;}
.ls66{letter-spacing:14.712713pt;}
.ls92{letter-spacing:16.440353pt;}
.ls70{letter-spacing:17.079839pt;}
.ls65{letter-spacing:17.080368pt;}
.ls89{letter-spacing:17.391869pt;}
.ls8a{letter-spacing:17.391870pt;}
.ls84{letter-spacing:17.808442pt;}
.ls83{letter-spacing:17.860513pt;}
.ls51{letter-spacing:18.172942pt;}
.ls62{letter-spacing:18.433299pt;}
.ls7f{letter-spacing:18.901941pt;}
.lsfe{letter-spacing:18.912357pt;}
.lse4{letter-spacing:19.047743pt;}
.lsc7{letter-spacing:19.058158pt;}
.lsb3{letter-spacing:20.099585pt;}
.lse3{letter-spacing:20.740065pt;}
.lse7{letter-spacing:20.932729pt;}
.ls7a{letter-spacing:20.984801pt;}
.ls7b{letter-spacing:21.245156pt;}
.lse9{letter-spacing:21.245160pt;}
.lsa0{letter-spacing:21.377329pt;}
.lsba{letter-spacing:21.609659pt;}
.lsaf{letter-spacing:24.004947pt;}
.lsae{letter-spacing:24.317374pt;}
.lsaa{letter-spacing:25.127023pt;}
.ls95{letter-spacing:25.352275pt;}
.lsa9{letter-spacing:27.328908pt;}
.lsa4{letter-spacing:27.533211pt;}
.lsa8{letter-spacing:29.199502pt;}
.ls9f{letter-spacing:36.177288pt;}
.ls9b{letter-spacing:36.185553pt;}
.ls9a{letter-spacing:44.369833pt;}
.lsa2{letter-spacing:44.426172pt;}
.lsa6{letter-spacing:52.220446pt;}
.lsd8{letter-spacing:55.291506pt;}
.lsd5{letter-spacing:100.350288pt;}
.ws98{word-spacing:-100.391733pt;}
.ws9a{word-spacing:-52.261891pt;}
.ws97{word-spacing:-47.661519pt;}
.wsb0{word-spacing:-20.792137pt;}
.wsb2{word-spacing:-19.099814pt;}
.wsbf{word-spacing:-18.964428pt;}
.ws7a{word-spacing:-18.485371pt;}
.ws129{word-spacing:-9.340800pt;}
.ws69{word-spacing:-1.801673pt;}
.ws8{word-spacing:-0.054727pt;}
.ws76{word-spacing:-0.052071pt;}
.ws7f{word-spacing:-0.051805pt;}
.ws3b{word-spacing:-0.042508pt;}
.ws95{word-spacing:-0.041445pt;}
.wsf9{word-spacing:-0.039850pt;}
.ws122{word-spacing:-0.038788pt;}
.ws96{word-spacing:-0.029755pt;}
.ws3e{word-spacing:0.000000pt;}
.ws94{word-spacing:3.265850pt;}
.ws83{word-spacing:11.438620pt;}
.wsec{word-spacing:12.273888pt;}
.wscd{word-spacing:12.385469pt;}
.ws81{word-spacing:12.391835pt;}
.wseb{word-spacing:12.459856pt;}
.wsd3{word-spacing:12.497050pt;}
.wsce{word-spacing:12.608631pt;}
.ws80{word-spacing:12.671582pt;}
.ws3c{word-spacing:12.683018pt;}
.ws128{word-spacing:12.761340pt;}
.ws82{word-spacing:12.764832pt;}
.ws10c{word-spacing:12.791721pt;}
.ws127{word-spacing:12.838916pt;}
.ws3d{word-spacing:12.906180pt;}
.ws10d{word-spacing:12.911270pt;}
.ws9b{word-spacing:12.923754pt;}
.ws116{word-spacing:12.990969pt;}
.ws10f{word-spacing:13.030819pt;}
.ws125{word-spacing:13.032858pt;}
.ws10a{word-spacing:13.070652pt;}
.ws105{word-spacing:13.070664pt;}
.ws120{word-spacing:13.070666pt;}
.ws104{word-spacing:13.070669pt;}
.ws112{word-spacing:13.070670pt;}
.ws126{word-spacing:13.071646pt;}
.ws123{word-spacing:13.110434pt;}
.ws103{word-spacing:13.110516pt;}
.wsfa{word-spacing:13.110518pt;}
.ws11b{word-spacing:13.110520pt;}
.ws110{word-spacing:13.110524pt;}
.ws119{word-spacing:13.150360pt;}
.ws117{word-spacing:13.150362pt;}
.ws36{word-spacing:13.150368pt;}
.ws115{word-spacing:13.150370pt;}
.ws106{word-spacing:13.190213pt;}
.ws114{word-spacing:13.190216pt;}
.wsfc{word-spacing:13.190217pt;}
.ws109{word-spacing:13.190223pt;}
.ws124{word-spacing:13.226804pt;}
.ws102{word-spacing:13.230061pt;}
.ws34{word-spacing:13.230067pt;}
.ws11d{word-spacing:13.230071pt;}
.ws121{word-spacing:13.230073pt;}
.ws113{word-spacing:13.269913pt;}
.ws111{word-spacing:13.269915pt;}
.ws33{word-spacing:13.269917pt;}
.ws108{word-spacing:13.309762pt;}
.ws11a{word-spacing:13.309764pt;}
.wsfd{word-spacing:13.309766pt;}
.ws10e{word-spacing:13.309770pt;}
.ws11c{word-spacing:13.349612pt;}
.ws11f{word-spacing:13.349613pt;}
.ws32{word-spacing:13.349616pt;}
.ws10b{word-spacing:13.389465pt;}
.ws100{word-spacing:13.429315pt;}
.ws107{word-spacing:13.429318pt;}
.ws118{word-spacing:13.469165pt;}
.wsfb{word-spacing:13.509014pt;}
.ws11e{word-spacing:13.509018pt;}
.ws99{word-spacing:13.520826pt;}
.ws101{word-spacing:13.588713pt;}
.wsfe{word-spacing:13.628563pt;}
.ws37{word-spacing:13.644984pt;}
.wsff{word-spacing:13.668413pt;}
.wsea{word-spacing:13.772506pt;}
.ws35{word-spacing:13.787961pt;}
.ws39{word-spacing:13.815013pt;}
.ws7e{word-spacing:13.857521pt;}
.wscb{word-spacing:13.900029pt;}
.wscc{word-spacing:13.942537pt;}
.wse9{word-spacing:13.985044pt;}
.ws3a{word-spacing:14.027555pt;}
.wsb6{word-spacing:14.070060pt;}
.ws38{word-spacing:14.240091pt;}
.wsd1{word-spacing:15.780688pt;}
.wsc8{word-spacing:15.828508pt;}
.wsb3{word-spacing:15.876329pt;}
.wsb4{word-spacing:15.924149pt;}
.wscf{word-spacing:15.971969pt;}
.wsd0{word-spacing:16.019789pt;}
.wsc7{word-spacing:16.067610pt;}
.wse8{word-spacing:16.115430pt;}
.wsd6{word-spacing:16.131279pt;}
.wsc9{word-spacing:16.163250pt;}
.ws5d{word-spacing:16.180162pt;}
.wsde{word-spacing:16.229045pt;}
.wsdd{word-spacing:16.277927pt;}
.wsad{word-spacing:16.767012pt;}
.wse6{word-spacing:16.923227pt;}
.wsa0{word-spacing:16.996132pt;}
.ws90{word-spacing:17.006544pt;}
.wsf7{word-spacing:17.016950pt;}
.ws8c{word-spacing:17.027372pt;}
.ws5e{word-spacing:17.063820pt;}
.wsbe{word-spacing:17.069027pt;}
.wsee{word-spacing:17.074234pt;}
.wsc4{word-spacing:17.079441pt;}
.wsb1{word-spacing:17.084648pt;}
.ws75{word-spacing:17.089855pt;}
.wsdb{word-spacing:17.095063pt;}
.wsa1{word-spacing:17.105477pt;}
.ws40{word-spacing:17.126306pt;}
.ws6c{word-spacing:17.131513pt;}
.ws7b{word-spacing:17.141927pt;}
.wsed{word-spacing:17.162756pt;}
.wsc3{word-spacing:17.178377pt;}
.ws41{word-spacing:17.183584pt;}
.ws9f{word-spacing:17.188806pt;}
.wsf6{word-spacing:17.204413pt;}
.ws70{word-spacing:17.209620pt;}
.ws24{word-spacing:17.225241pt;}
.wsaa{word-spacing:17.235655pt;}
.ws44{word-spacing:17.235656pt;}
.wse4{word-spacing:17.240863pt;}
.ws51{word-spacing:17.246070pt;}
.wsa9{word-spacing:17.251277pt;}
.wsb7{word-spacing:17.256484pt;}
.wsd5{word-spacing:17.261691pt;}
.ws48{word-spacing:17.266898pt;}
.wsbc{word-spacing:17.272106pt;}
.wse5{word-spacing:17.277313pt;}
.ws66{word-spacing:17.282520pt;}
.ws89{word-spacing:17.287727pt;}
.ws79{word-spacing:17.292934pt;}
.ws1e{word-spacing:17.298141pt;}
.ws68{word-spacing:17.303348pt;}
.ws2d{word-spacing:17.308556pt;}
.ws20{word-spacing:17.313763pt;}
.wsa2{word-spacing:17.318968pt;}
.wsb8{word-spacing:17.318970pt;}
.ws77{word-spacing:17.324177pt;}
.ws1c{word-spacing:17.329384pt;}
.ws8a{word-spacing:17.329385pt;}
.wse2{word-spacing:17.334591pt;}
.ws92{word-spacing:17.339796pt;}
.ws3f{word-spacing:17.339799pt;}
.ws43{word-spacing:17.345006pt;}
.ws2e{word-spacing:17.350213pt;}
.ws67{word-spacing:17.355420pt;}
.ws6f{word-spacing:17.360627pt;}
.ws87{word-spacing:17.365834pt;}
.ws2c{word-spacing:17.371041pt;}
.ws58{word-spacing:17.376249pt;}
.ws26{word-spacing:17.381456pt;}
.ws5c{word-spacing:17.386663pt;}
.ws2b{word-spacing:17.391870pt;}
.wsba{word-spacing:17.397077pt;}
.ws45{word-spacing:17.402284pt;}
.ws7c{word-spacing:17.407491pt;}
.wsd7{word-spacing:17.412694pt;}
.ws93{word-spacing:17.412699pt;}
.ws1d{word-spacing:17.417906pt;}
.ws17{word-spacing:17.423113pt;}
.ws16{word-spacing:17.427908pt;}
.ws4b{word-spacing:17.428320pt;}
.wsc2{word-spacing:17.433527pt;}
.ws2f{word-spacing:17.438734pt;}
.ws1f{word-spacing:17.443941pt;}
.ws8b{word-spacing:17.449149pt;}
.ws5a{word-spacing:17.454356pt;}
.ws27{word-spacing:17.459563pt;}
.ws71{word-spacing:17.464770pt;}
.ws56{word-spacing:17.469977pt;}
.ws8f{word-spacing:17.469980pt;}
.ws42{word-spacing:17.475184pt;}
.ws21{word-spacing:17.480391pt;}
.ws30{word-spacing:17.485599pt;}
.wse3{word-spacing:17.490806pt;}
.ws22{word-spacing:17.496013pt;}
.ws18{word-spacing:17.501220pt;}
.ws91{word-spacing:17.506427pt;}
.ws6e{word-spacing:17.516842pt;}
.wsbd{word-spacing:17.522049pt;}
.wse1{word-spacing:17.527256pt;}
.wsf5{word-spacing:17.532463pt;}
.ws11{word-spacing:17.534176pt;}
.ws4c{word-spacing:17.537670pt;}
.ws78{word-spacing:17.542877pt;}
.ws59{word-spacing:17.548084pt;}
.ws4e{word-spacing:17.553292pt;}
.ws49{word-spacing:17.558499pt;}
.ws1b{word-spacing:17.563706pt;}
.ws28{word-spacing:17.568913pt;}
.wsa3{word-spacing:17.574120pt;}
.ws5f{word-spacing:17.579327pt;}
.ws25{word-spacing:17.584534pt;}
.ws13{word-spacing:17.587309pt;}
.wsb9{word-spacing:17.589742pt;}
.ws52{word-spacing:17.600156pt;}
.ws60{word-spacing:17.605363pt;}
.ws61{word-spacing:17.615777pt;}
.wse0{word-spacing:17.631399pt;}
.wsa4{word-spacing:17.631402pt;}
.ws53{word-spacing:17.636606pt;}
.ws88{word-spacing:17.641814pt;}
.wsc1{word-spacing:17.647020pt;}
.ws5b{word-spacing:17.652227pt;}
.ws7d{word-spacing:17.657434pt;}
.wsd9{word-spacing:17.667849pt;}
.wsaf{word-spacing:17.673056pt;}
.wsda{word-spacing:17.688677pt;}
.wsa{word-spacing:17.693577pt;}
.wsd{word-spacing:17.693579pt;}
.wsa8{word-spacing:17.704299pt;}
.ws6a{word-spacing:17.709506pt;}
.wsf4{word-spacing:17.730335pt;}
.ws6b{word-spacing:17.735542pt;}
.ws12{word-spacing:17.746699pt;}
.ws10{word-spacing:17.746711pt;}
.ws54{word-spacing:17.756370pt;}
.wsac{word-spacing:17.766779pt;}
.wsc{word-spacing:17.799845pt;}
.wse7{word-spacing:17.803235pt;}
.ws50{word-spacing:17.808442pt;}
.ws14{word-spacing:17.852977pt;}
.wsb{word-spacing:17.852979pt;}
.ws62{word-spacing:17.860513pt;}
.ws4a{word-spacing:17.902170pt;}
.wsf{word-spacing:17.906113pt;}
.ws57{word-spacing:17.912585pt;}
.ws84{word-spacing:17.928206pt;}
.ws65{word-spacing:17.964656pt;}
.wsab{word-spacing:17.975070pt;}
.ws85{word-spacing:17.975072pt;}
.ws15{word-spacing:18.012380pt;}
.ws9{word-spacing:18.012384pt;}
.ws2a{word-spacing:18.016728pt;}
.wse{word-spacing:18.065514pt;}
.ws19{word-spacing:18.068799pt;}
.ws86{word-spacing:18.126078pt;}
.wsc5{word-spacing:18.172942pt;}
.wsa6{word-spacing:18.172947pt;}
.ws1a{word-spacing:18.225013pt;}
.ws8e{word-spacing:18.225016pt;}
.ws8d{word-spacing:18.277085pt;}
.wsdf{word-spacing:18.329156pt;}
.ws55{word-spacing:18.360399pt;}
.ws23{word-spacing:18.381228pt;}
.wsbb{word-spacing:18.433299pt;}
.wsa5{word-spacing:18.454128pt;}
.ws46{word-spacing:18.485371pt;}
.ws4f{word-spacing:18.693657pt;}
.ws9e{word-spacing:18.740521pt;}
.ws29{word-spacing:18.787385pt;}
.ws9c{word-spacing:18.813421pt;}
.ws4{word-spacing:19.170943pt;}
.ws6{word-spacing:19.346287pt;}
.wsdc{word-spacing:19.360171pt;}
.ws9d{word-spacing:19.453897pt;}
.ws5{word-spacing:19.521631pt;}
.wsa7{word-spacing:19.578872pt;}
.ws3{word-spacing:19.638527pt;}
.ws7{word-spacing:19.696975pt;}
.wsef{word-spacing:19.834022pt;}
.wsf0{word-spacing:19.844436pt;}
.ws74{word-spacing:19.896508pt;}
.ws73{word-spacing:19.985029pt;}
.wsf8{word-spacing:20.281836pt;}
.ws47{word-spacing:20.349529pt;}
.ws4d{word-spacing:20.354736pt;}
.ws6d{word-spacing:20.547401pt;}
.wsf1{word-spacing:20.974387pt;}
.ws63{word-spacing:21.385752pt;}
.wsae{word-spacing:22.130373pt;}
.ws72{word-spacing:22.651088pt;}
.ws0{word-spacing:23.485387pt;}
.wsf2{word-spacing:25.072411pt;}
.wsf3{word-spacing:25.306733pt;}
.wsd8{word-spacing:25.577505pt;}
.ws64{word-spacing:31.956259pt;}
.ws31{word-spacing:32.633188pt;}
.wsc6{word-spacing:33.226803pt;}
.wsc0{word-spacing:34.778533pt;}
.ws2{word-spacing:42.209473pt;}
.ws1{word-spacing:42.464515pt;}
.wsca{word-spacing:103.336301pt;}
.wsb5{word-spacing:107.204504pt;}
.wsd2{word-spacing:639.146279pt;}
.wsd4{word-spacing:706.266010pt;}
._10{margin-left:-48.158856pt;}
._f{margin-left:-42.978256pt;}
._15{margin-left:-19.318514pt;}
._a{margin-left:-17.964656pt;}
._b{margin-left:-16.975298pt;}
._e{margin-left:-8.206070pt;}
._3d{margin-left:-1.848000pt;}
._6{margin-left:-0.937286pt;}
._4{width:1.052064pt;}
._d{width:3.357029pt;}
._13{width:5.636493pt;}
._0{width:7.529139pt;}
._3c{width:12.512774pt;}
._24{width:13.426890pt;}
._7{width:14.385705pt;}
._9{width:17.339799pt;}
._5{width:18.926269pt;}
._8{width:20.099586pt;}
._c{width:21.755239pt;}
._14{width:25.827448pt;}
._3b{width:28.899664pt;}
._1{width:31.359898pt;}
._1e{width:38.428743pt;}
._12{width:39.952786pt;}
._38{width:41.530056pt;}
._3{width:43.484684pt;}
._2e{width:47.141077pt;}
._11{width:48.117411pt;}
._34{width:49.503418pt;}
._25{width:53.899806pt;}
._35{width:57.895533pt;}
._26{width:64.909309pt;}
._29{width:68.905036pt;}
._28{width:70.817884pt;}
._32{width:71.880578pt;}
._1f{width:78.639307pt;}
._3a{width:79.627794pt;}
._21{width:82.507511pt;}
._1a{width:88.671132pt;}
._1b{width:89.648810pt;}
._31{width:102.401130pt;}
._1d{width:109.032337pt;}
._2b{width:111.455278pt;}
._39{width:112.858033pt;}
._22{width:118.979146pt;}
._33{width:124.717691pt;}
._36{width:129.223510pt;}
._37{width:141.763292pt;}
._19{width:159.191463pt;}
._20{width:160.211648pt;}
._17{width:166.587808pt;}
._18{width:177.002203pt;}
._2d{width:199.616317pt;}
._23{width:201.231611pt;}
._1c{width:233.069902pt;}
._30{width:240.253712pt;}
._2c{width:268.224530pt;}
._2f{width:309.158760pt;}
._16{width:311.284132pt;}
._27{width:330.242599pt;}
._2a{width:370.837451pt;}
._2{width:1435.578745pt;}
.fs13{font-size:24.792000pt;}
.fs8{font-size:26.562668pt;}
.fs12{font-size:28.334399pt;}
.fsf{font-size:29.755201pt;}
.fs11{font-size:31.876266pt;}
.fs17{font-size:33.600001pt;}
.fsd{font-size:34.709867pt;}
.fs16{font-size:36.266668pt;}
.fsa{font-size:37.193601pt;}
.fs14{font-size:38.788266pt;}
.fs3{font-size:38.961067pt;}
.fs7{font-size:39.849599pt;}
.fse{font-size:41.444799pt;}
.fs9{font-size:42.507734pt;}
.fs15{font-size:47.421336pt;}
.fs10{font-size:47.820267pt;}
.fsb{font-size:48.882665pt;}
.fsc{font-size:51.805333pt;}
.fs6{font-size:52.071467pt;}
.fs5{font-size:53.133865pt;}
.fs4{font-size:54.727468pt;}
.fs2{font-size:58.447998pt;}
.fs0{font-size:69.074666pt;}
.fs1{font-size:127.521067pt;}
.y0{bottom:0.000000pt;}
.y340{bottom:74.532265pt;}
.y41{bottom:81.867922pt;}
.y33f{bottom:83.864665pt;}
.y1b8{bottom:84.664035pt;}
.y1f6{bottom:84.667817pt;}
.y21e{bottom:84.669603pt;}
.y76{bottom:85.271560pt;}
.y294{bottom:85.295761pt;}
.yab{bottom:85.306613pt;}
.y253{bottom:85.357876pt;}
.y2d6{bottom:89.250103pt;}
.y130{bottom:90.786979pt;}
.y40{bottom:92.449502pt;}
.y1b7{bottom:95.924398pt;}
.y1f5{bottom:95.928180pt;}
.y21d{bottom:100.616490pt;}
.y2d5{bottom:101.195020pt;}
.y75{bottom:101.218447pt;}
.y293{bottom:101.242648pt;}
.yaa{bottom:101.253500pt;}
.y252{bottom:101.304763pt;}
.y3f{bottom:103.105469pt;}
.y16b{bottom:103.268049pt;}
.y12e{bottom:104.541738pt;}
.y12f{bottom:106.733866pt;}
.y12d{bottom:106.736585pt;}
.y1f4{bottom:107.262929pt;}
.y33e{bottom:112.783589pt;}
.y2d4{bottom:113.139938pt;}
.y1b6{bottom:114.217336pt;}
.y1b4{bottom:114.221169pt;}
.y21c{bottom:116.563377pt;}
.y74{bottom:117.165334pt;}
.y292{bottom:117.189535pt;}
.ya9{bottom:117.200388pt;}
.y251{bottom:117.251650pt;}
.y1b5{bottom:118.903870pt;}
.y31b{bottom:119.069461pt;}
.y16a{bottom:120.876877pt;}
.y12c{bottom:122.683472pt;}
.y12a{bottom:122.686180pt;}
.y2d3{bottom:125.154592pt;}
.y1f3{bottom:125.480398pt;}
.y1f1{bottom:125.484108pt;}
.y3c{bottom:126.161643pt;}
.y12b{bottom:128.428263pt;}
.y33d{bottom:129.330257pt;}
.y1f2{bottom:130.242533pt;}
.y31a{bottom:131.014378pt;}
.y1b3{bottom:131.829997pt;}
.y1b1{bottom:131.847590pt;}
.y21b{bottom:132.510264pt;}
.y219{bottom:132.523632pt;}
.y73{bottom:133.114929pt;}
.y291{bottom:133.136422pt;}
.ya8{bottom:133.147275pt;}
.y250{bottom:133.198537pt;}
.y1b2{bottom:136.516530pt;}
.y2d2{bottom:137.099509pt;}
.y3b{bottom:138.176297pt;}
.y21a{bottom:138.255066pt;}
.y169{bottom:138.485705pt;}
.y129{bottom:138.633067pt;}
.y127{bottom:138.635775pt;}
.y36{bottom:141.819853pt;}
.y319{bottom:142.959295pt;}
.y1f0{bottom:143.092936pt;}
.y1ee{bottom:143.096637pt;}
.y128{bottom:144.377869pt;}
.y33c{bottom:145.876925pt;}
.y1ef{bottom:147.855062pt;}
.y218{bottom:148.392412pt;}
.y2d1{bottom:149.044426pt;}
.y72{bottom:149.064534pt;}
.y290{bottom:149.083309pt;}
.ya7{bottom:149.094162pt;}
.y24f{bottom:149.145424pt;}
.y1b0{bottom:149.456418pt;}
.y3a{bottom:150.121214pt;}
.y126{bottom:154.582662pt;}
.y318{bottom:154.904213pt;}
.y168{bottom:156.094533pt;}
.y35{bottom:157.766740pt;}
.y1ed{bottom:160.705465pt;}
.y1eb{bottom:160.709308pt;}
.y2d0{bottom:160.989344pt;}
.y39{bottom:162.066132pt;}
.y33b{bottom:162.423592pt;}
.y217{bottom:164.339299pt;}
.y28f{bottom:165.030196pt;}
.ya6{bottom:165.041049pt;}
.y24e{bottom:165.092311pt;}
.y1ec{bottom:165.467733pt;}
.y38{bottom:166.450399pt;}
.y317{bottom:166.849130pt;}
.y1af{bottom:167.065246pt;}
.y125{bottom:170.456665pt;}
.y123{bottom:170.462102pt;}
.y2cf{bottom:172.934261pt;}
.y167{bottom:173.627133pt;}
.y34{bottom:173.635519pt;}
.y37{bottom:174.009338pt;}
.y124{bottom:176.277201pt;}
.y1ea{bottom:178.318136pt;}
.y1e8{bottom:178.341918pt;}
.y316{bottom:178.794048pt;}
.y33a{bottom:178.970260pt;}
.y216{bottom:180.286186pt;}
.y28e{bottom:180.977083pt;}
.ya5{bottom:180.987936pt;}
.y24d{bottom:181.039198pt;}
.y71{bottom:181.106394pt;}
.y1e9{bottom:183.004659pt;}
.y1ae{bottom:184.599686pt;}
.y2ce{bottom:184.879178pt;}
.y122{bottom:186.408989pt;}
.y166{bottom:188.296000pt;}
.y33{bottom:189.582406pt;}
.y315{bottom:190.808701pt;}
.y339{bottom:195.516927pt;}
.y1e7{bottom:195.950746pt;}
.y215{bottom:196.233073pt;}
.y2cd{bottom:196.893832pt;}
.y28d{bottom:196.923970pt;}
.ya4{bottom:196.934823pt;}
.y24c{bottom:196.986085pt;}
.y70{bottom:197.053281pt;}
.y1ad{bottom:202.208514pt;}
.y121{bottom:202.355876pt;}
.y11f{bottom:202.361292pt;}
.y314{bottom:202.753619pt;}
.y24{bottom:205.490243pt;}
.y32{bottom:205.529293pt;}
.y120{bottom:208.176392pt;}
.y2cc{bottom:208.838750pt;}
.y214{bottom:212.182658pt;}
.y28c{bottom:212.792749pt;}
.ya3{bottom:212.803602pt;}
.y24b{bottom:212.854864pt;}
.y6f{bottom:212.922061pt;}
.y1e6{bottom:213.559574pt;}
.y313{bottom:214.698536pt;}
.y11e{bottom:218.308179pt;}
.y1ac{bottom:219.817342pt;}
.y2cb{bottom:220.783667pt;}
.y23{bottom:221.437131pt;}
.y31{bottom:221.476180pt;}
.y338{bottom:223.419066pt;}
.y312{bottom:226.643453pt;}
.y28b{bottom:228.739636pt;}
.ya2{bottom:228.750489pt;}
.y165{bottom:228.758574pt;}
.y24a{bottom:228.801751pt;}
.y6e{bottom:228.868948pt;}
.y1e5{bottom:231.094014pt;}
.y2ca{bottom:232.728584pt;}
.y11d{bottom:234.255066pt;}
.y11b{bottom:234.257784pt;}
.y22{bottom:237.384018pt;}
.y30{bottom:237.423067pt;}
.y1ab{bottom:237.433617pt;}
.y337{bottom:237.645467pt;}
.y311{bottom:238.588371pt;}
.y11c{bottom:240.000000pt;}
.y213{bottom:244.081868pt;}
.y211{bottom:244.127592pt;}
.y2c9{bottom:244.673502pt;}
.y28a{bottom:244.686523pt;}
.ya1{bottom:244.697376pt;}
.y164{bottom:244.705461pt;}
.y249{bottom:244.748638pt;}
.y6d{bottom:244.815835pt;}
.y1e4{bottom:248.702842pt;}
.y212{bottom:249.826803pt;}
.y11a{bottom:250.204671pt;}
.y118{bottom:250.207389pt;}
.y310{bottom:250.533288pt;}
.y1a8{bottom:252.014462pt;}
.y1aa{bottom:252.018799pt;}
.y21{bottom:253.330905pt;}
.y2f{bottom:253.369954pt;}
.y119{bottom:255.949605pt;}
.y2c8{bottom:256.618419pt;}
.y1a9{bottom:257.310140pt;}
.y210{bottom:260.074479pt;}
.y289{bottom:260.636129pt;}
.ya0{bottom:260.644263pt;}
.y163{bottom:260.652348pt;}
.y248{bottom:260.695525pt;}
.y6c{bottom:260.762722pt;}
.y30f{bottom:262.478206pt;}
.y117{bottom:266.154277pt;}
.y1e3{bottom:266.311670pt;}
.y1a7{bottom:266.683329pt;}
.y2c7{bottom:268.633073pt;}
.y20{bottom:269.277792pt;}
.y2e{bottom:269.316841pt;}
.y30e{bottom:274.492859pt;}
.y20f{bottom:275.943259pt;}
.y9f{bottom:276.591150pt;}
.y162{bottom:276.599235pt;}
.y247{bottom:276.642412pt;}
.y6b{bottom:276.709609pt;}
.y2c6{bottom:280.577990pt;}
.y1e2{bottom:283.920498pt;}
.y1f{bottom:285.224679pt;}
.y2d{bottom:285.263729pt;}
.y30d{bottom:286.437777pt;}
.y116{bottom:289.448073pt;}
.y20e{bottom:291.890146pt;}
.y115{bottom:292.396179pt;}
.y2c5{bottom:292.522908pt;}
.y9e{bottom:292.538037pt;}
.y161{bottom:292.546122pt;}
.y246{bottom:292.589299pt;}
.y288{bottom:292.635064pt;}
.y6a{bottom:292.656496pt;}
.ye7{bottom:292.776265pt;}
.y1e1{bottom:295.865171pt;}
.y30c{bottom:298.382694pt;}
.y1e{bottom:301.093458pt;}
.y2c{bottom:301.132508pt;}
.y114{bottom:302.248081pt;}
.y2c4{bottom:304.467825pt;}
.y113{bottom:305.192388pt;}
.ye6{bottom:305.588409pt;}
.y20d{bottom:307.837033pt;}
.y9d{bottom:308.484924pt;}
.y160{bottom:308.493009pt;}
.y245{bottom:308.536187pt;}
.yf5{bottom:308.550272pt;}
.yde{bottom:308.554224pt;}
.y19a{bottom:308.568339pt;}
.y104{bottom:308.581358pt;}
.y287{bottom:308.581951pt;}
.y69{bottom:308.603383pt;}
.y30b{bottom:310.327611pt;}
.y1e0{bottom:313.473999pt;}
.y112{bottom:314.406679pt;}
.yf4{bottom:315.202163pt;}
.ydd{bottom:315.206114pt;}
.y103{bottom:315.233249pt;}
.y2c3{bottom:316.412742pt;}
.y1d{bottom:317.040345pt;}
.y2b{bottom:317.079395pt;}
.y111{bottom:317.868042pt;}
.ye5{bottom:318.260157pt;}
.yf3{bottom:321.470689pt;}
.ydc{bottom:321.474640pt;}
.y102{bottom:321.501775pt;}
.y30a{bottom:322.272529pt;}
.y20c{bottom:323.783920pt;}
.y9c{bottom:324.434530pt;}
.y15f{bottom:324.439896pt;}
.y244{bottom:324.483074pt;}
.y199{bottom:324.515227pt;}
.y286{bottom:324.528838pt;}
.y68{bottom:324.550270pt;}
.yf2{bottom:327.739214pt;}
.ydb{bottom:327.743166pt;}
.y101{bottom:327.770301pt;}
.y110{bottom:327.844873pt;}
.y2c2{bottom:328.357660pt;}
.y10f{bottom:330.665649pt;}
.ye4{bottom:331.056239pt;}
.y1df{bottom:331.090274pt;}
.y1c{bottom:332.987232pt;}
.y2a{bottom:333.026282pt;}
.yf1{bottom:333.883406pt;}
.yda{bottom:333.887357pt;}
.y100{bottom:333.914492pt;}
.y309{bottom:334.217446pt;}
.y20b{bottom:339.730807pt;}
.yf0{bottom:340.151932pt;}
.yd9{bottom:340.155883pt;}
.yff{bottom:340.183018pt;}
.y2c1{bottom:340.302577pt;}
.y15e{bottom:340.308675pt;}
.y243{bottom:340.351853pt;}
.y198{bottom:340.384006pt;}
.y285{bottom:340.397618pt;}
.y67{bottom:340.419049pt;}
.y10e{bottom:341.286406pt;}
.yd0{bottom:343.720133pt;}
.ye3{bottom:343.727986pt;}
.yf6{bottom:343.747268pt;}
.y10d{bottom:344.108052pt;}
.y1de{bottom:345.675456pt;}
.y1dc{bottom:345.679345pt;}
.y308{bottom:346.232100pt;}
.yef{bottom:346.296123pt;}
.yd8{bottom:346.300074pt;}
.yfe{bottom:346.327209pt;}
.y1b{bottom:348.934119pt;}
.y29{bottom:348.973169pt;}
.y1dd{bottom:350.966919pt;}
.y2c0{bottom:352.317231pt;}
.yee{bottom:352.564649pt;}
.yd7{bottom:352.568600pt;}
.yfd{bottom:352.595735pt;}
.y10c{bottom:354.084863pt;}
.y20a{bottom:355.677694pt;}
.y15d{bottom:356.258260pt;}
.y242{bottom:356.298740pt;}
.y197{bottom:356.330893pt;}
.y284{bottom:356.344505pt;}
.y66{bottom:356.365936pt;}
.y9b{bottom:356.368641pt;}
.ye2{bottom:356.524068pt;}
.y10b{bottom:356.904384pt;}
.y307{bottom:358.177017pt;}
.yed{bottom:358.708841pt;}
.yd6{bottom:358.712792pt;}
.yfc{bottom:358.739927pt;}
.y1d9{bottom:360.260210pt;}
.y1db{bottom:360.264526pt;}
.y2bf{bottom:364.262148pt;}
.y1a{bottom:364.881006pt;}
.y28{bottom:364.920056pt;}
.yec{bottom:364.977366pt;}
.yd5{bottom:364.981318pt;}
.yfb{bottom:365.008453pt;}
.y1da{bottom:365.631470pt;}
.y10a{bottom:366.884871pt;}
.ye1{bottom:369.320150pt;}
.y109{bottom:369.580058pt;}
.y306{bottom:370.121935pt;}
.yeb{bottom:371.245892pt;}
.yd4{bottom:371.249844pt;}
.yfa{bottom:371.276979pt;}
.y209{bottom:371.624581pt;}
.y241{bottom:372.245627pt;}
.y196{bottom:372.277780pt;}
.y283{bottom:372.291392pt;}
.y65{bottom:372.312823pt;}
.y9a{bottom:372.315528pt;}
.y1d8{bottom:374.929077pt;}
.y2be{bottom:376.207066pt;}
.yea{bottom:377.390084pt;}
.yd3{bottom:377.394035pt;}
.yf9{bottom:377.421170pt;}
.y108{bottom:379.431960pt;}
.y19{bottom:380.827893pt;}
.y27{bottom:380.866943pt;}
.ye0{bottom:381.992147pt;}
.y305{bottom:382.066852pt;}
.y107{bottom:382.380066pt;}
.ye9{bottom:383.658610pt;}
.yd2{bottom:383.662561pt;}
.yf8{bottom:383.689696pt;}
.y208{bottom:387.571468pt;}
.y2bd{bottom:388.151983pt;}
.y15c{bottom:388.176245pt;}
.y240{bottom:388.192514pt;}
.y195{bottom:388.224667pt;}
.y282{bottom:388.238279pt;}
.y64{bottom:388.259710pt;}
.y99{bottom:388.262415pt;}
.y106{bottom:392.230417pt;}
.y304{bottom:394.011770pt;}
.ydf{bottom:394.821574pt;}
.y105{bottom:395.242436pt;}
.y18{bottom:396.774780pt;}
.y26{bottom:396.813830pt;}
.y2bc{bottom:400.096900pt;}
.ye8{bottom:401.832153pt;}
.yd1{bottom:401.836105pt;}
.yf7{bottom:401.863240pt;}
.y207{bottom:403.440247pt;}
.y15b{bottom:404.123132pt;}
.y23f{bottom:404.139401pt;}
.y194{bottom:404.171554pt;}
.y281{bottom:404.185166pt;}
.y63{bottom:404.206597pt;}
.y98{bottom:404.209302pt;}
.y303{bottom:405.956687pt;}
.y2bb{bottom:412.041818pt;}
.y17{bottom:412.724284pt;}
.y25{bottom:412.760717pt;}
.y1a6{bottom:416.069067pt;}
.y302{bottom:417.901604pt;}
.y206{bottom:419.387134pt;}
.y15a{bottom:420.070019pt;}
.y23e{bottom:420.086288pt;}
.y193{bottom:420.118441pt;}
.y280{bottom:420.132053pt;}
.y62{bottom:420.153484pt;}
.y97{bottom:420.156189pt;}
.ycf{bottom:420.894707pt;}
.y2ba{bottom:424.056472pt;}
.y301{bottom:429.916258pt;}
.y1a5{bottom:432.015954pt;}
.y205{bottom:435.334021pt;}
.y2b9{bottom:436.001389pt;}
.y159{bottom:436.016906pt;}
.y23d{bottom:436.033175pt;}
.y192{bottom:436.065328pt;}
.y27f{bottom:436.078940pt;}
.y61{bottom:436.100371pt;}
.y96{bottom:436.103076pt;}
.yce{bottom:436.841594pt;}
.y300{bottom:441.871138pt;}
.y2b8{bottom:447.946306pt;}
.y1a4{bottom:447.962841pt;}
.y204{bottom:451.280909pt;}
.y158{bottom:451.963793pt;}
.y23c{bottom:451.980062pt;}
.y191{bottom:452.012215pt;}
.y27e{bottom:452.025827pt;}
.y60{bottom:452.047258pt;}
.y95{bottom:452.049963pt;}
.y2ff{bottom:453.816055pt;}
.ycd{bottom:454.600667pt;}
.y16{bottom:457.125750pt;}
.y2b7{bottom:459.891224pt;}
.ycc{bottom:462.600545pt;}
.y1a3{bottom:463.909728pt;}
.y2fe{bottom:465.760973pt;}
.y203{bottom:467.227796pt;}
.y157{bottom:467.832573pt;}
.y23b{bottom:467.848841pt;}
.y190{bottom:467.880994pt;}
.y27d{bottom:467.894606pt;}
.y5f{bottom:467.916038pt;}
.y94{bottom:467.918742pt;}
.y2b6{bottom:471.836141pt;}
.y2fd{bottom:477.705890pt;}
.y15{bottom:479.720925pt;}
.y1a2{bottom:479.778508pt;}
.y202{bottom:483.174683pt;}
.y200{bottom:483.177381pt;}
.y2b5{bottom:483.768430pt;}
.y156{bottom:483.779460pt;}
.y154{bottom:483.782198pt;}
.y23a{bottom:483.795729pt;}
.y18f{bottom:483.827882pt;}
.y27c{bottom:483.841493pt;}
.y5e{bottom:483.862925pt;}
.y93{bottom:483.865629pt;}
.yca{bottom:486.803060pt;}
.y201{bottom:488.919596pt;}
.ycb{bottom:488.995199pt;}
.yc9{bottom:488.997896pt;}
.y155{bottom:489.600016pt;}
.y2fc{bottom:489.650807pt;}
.y14{bottom:495.674368pt;}
.y1a1{bottom:495.725395pt;}
.y1ff{bottom:499.124268pt;}
.y153{bottom:499.729085pt;}
.y151{bottom:499.731783pt;}
.y239{bottom:499.742616pt;}
.y18e{bottom:499.774769pt;}
.y27b{bottom:499.788380pt;}
.y5d{bottom:499.809812pt;}
.y92{bottom:499.812516pt;}
.y2fb{bottom:501.665461pt;}
.yc7{bottom:502.752686pt;}
.yc8{bottom:504.944784pt;}
.yc6{bottom:504.950220pt;}
.y152{bottom:505.549479pt;}
.y13{bottom:511.627811pt;}
.y2b4{bottom:511.663149pt;}
.y1a0{bottom:511.672282pt;}
.y2fa{bottom:513.610379pt;}
.y1fe{bottom:515.073853pt;}
.y150{bottom:515.678670pt;}
.y14e{bottom:515.681368pt;}
.y238{bottom:515.689503pt;}
.y18d{bottom:515.721656pt;}
.y27a{bottom:515.735267pt;}
.y5c{bottom:515.756699pt;}
.y91{bottom:515.759403pt;}
.yc5{bottom:520.897107pt;}
.y14f{bottom:521.499064pt;}
.y2b3{bottom:523.608067pt;}
.y2f9{bottom:525.555296pt;}
.y12{bottom:527.581253pt;}
.y19f{bottom:527.621989pt;}
.y14d{bottom:531.628255pt;}
.y237{bottom:531.636390pt;}
.y18c{bottom:531.668543pt;}
.y279{bottom:531.682154pt;}
.y14b{bottom:531.698353pt;}
.y5b{bottom:531.703586pt;}
.y90{bottom:531.706290pt;}
.yc3{bottom:534.651855pt;}
.yc4{bottom:536.843994pt;}
.yc2{bottom:536.878886pt;}
.y14c{bottom:537.373047pt;}
.y2f8{bottom:537.500213pt;}
.y1fd{bottom:546.913893pt;}
.y11{bottom:547.466602pt;}
.y2b2{bottom:547.567638pt;}
.y236{bottom:547.583277pt;}
.y18b{bottom:547.615430pt;}
.y278{bottom:547.629041pt;}
.y14a{bottom:547.645240pt;}
.y5a{bottom:547.650473pt;}
.y8f{bottom:547.653177pt;}
.y2f7{bottom:549.445131pt;}
.yc1{bottom:552.825773pt;}
.y2b1{bottom:559.512555pt;}
.y19e{bottom:559.617906pt;}
.y2f6{bottom:561.390048pt;}
.y1fc{bottom:562.860780pt;}
.y10{bottom:563.420045pt;}
.y235{bottom:563.530164pt;}
.y18a{bottom:563.562317pt;}
.y277{bottom:563.575928pt;}
.y149{bottom:563.592127pt;}
.y59{bottom:563.597360pt;}
.y8e{bottom:563.600064pt;}
.yc0{bottom:568.772660pt;}
.y2f5{bottom:573.334965pt;}
.y19d{bottom:575.564793pt;}
.y1fb{bottom:578.807667pt;}
.yf{bottom:579.373487pt;}
.y234{bottom:579.477051pt;}
.y189{bottom:579.509204pt;}
.y276{bottom:579.522815pt;}
.y148{bottom:579.539014pt;}
.y58{bottom:579.544247pt;}
.y8d{bottom:579.546951pt;}
.y2b0{bottom:583.402390pt;}
.ybf{bottom:584.641439pt;}
.y2f4{bottom:585.349619pt;}
.y19c{bottom:591.511680pt;}
.y1fa{bottom:594.754554pt;}
.ye{bottom:595.326930pt;}
.y2af{bottom:595.347307pt;}
.y233{bottom:595.352690pt;}
.y188{bottom:595.377983pt;}
.y275{bottom:595.391595pt;}
.y147{bottom:595.407793pt;}
.y57{bottom:595.413026pt;}
.y8c{bottom:595.415731pt;}
.y2f3{bottom:597.294537pt;}
.ybe{bottom:600.588326pt;}
.y2ae{bottom:607.361961pt;}
.y19b{bottom:607.380459pt;}
.y2f2{bottom:609.239454pt;}
.y1f9{bottom:610.701441pt;}
.yd{bottom:611.280373pt;}
.y232{bottom:611.300659pt;}
.y187{bottom:611.324870pt;}
.y274{bottom:611.338482pt;}
.y146{bottom:611.354680pt;}
.y56{bottom:611.359913pt;}
.y8b{bottom:611.362618pt;}
.y336{bottom:613.278074pt;}
.ybd{bottom:616.535213pt;}
.y2ad{bottom:619.306878pt;}
.y2f1{bottom:621.184371pt;}
.y335{bottom:624.536368pt;}
.y1f8{bottom:626.648328pt;}
.yc{bottom:627.233815pt;}
.y186{bottom:627.271757pt;}
.y273{bottom:627.285369pt;}
.y145{bottom:627.301567pt;}
.y55{bottom:627.306800pt;}
.y8a{bottom:627.309505pt;}
.ybc{bottom:632.482100pt;}
.y2f0{bottom:633.129289pt;}
.y334{bottom:635.794663pt;}
.y1d7{bottom:639.804750pt;}
.y1f7{bottom:642.595215pt;}
.y2ac{bottom:643.196713pt;}
.y185{bottom:643.218644pt;}
.y272{bottom:643.232256pt;}
.y144{bottom:643.248454pt;}
.y54{bottom:643.253687pt;}
.y89{bottom:643.256392pt;}
.y231{bottom:643.266236pt;}
.y2ef{bottom:645.074206pt;}
.yb{bottom:647.119164pt;}
.y333{bottom:647.130534pt;}
.ybb{bottom:648.428987pt;}
.y1d6{bottom:651.139499pt;}
.y2ab{bottom:655.141630pt;}
.y2ee{bottom:657.088860pt;}
.y184{bottom:659.165531pt;}
.y271{bottom:659.179143pt;}
.y143{bottom:659.195341pt;}
.y53{bottom:659.200575pt;}
.y88{bottom:659.203279pt;}
.y230{bottom:659.213123pt;}
.y1d5{bottom:662.399862pt;}
.ya{bottom:663.072607pt;}
.yba{bottom:664.375874pt;}
.y2aa{bottom:667.086548pt;}
.y2a8{bottom:667.090693pt;}
.y332{bottom:668.944126pt;}
.y2ed{bottom:669.033777pt;}
.y2a9{bottom:671.546265pt;}
.y183{bottom:675.112418pt;}
.y270{bottom:675.126030pt;}
.y142{bottom:675.142229pt;}
.y52{bottom:675.147462pt;}
.y87{bottom:675.150166pt;}
.y22f{bottom:675.160011pt;}
.y9{bottom:679.026050pt;}
.y2a5{bottom:679.102190pt;}
.y2a7{bottom:679.105347pt;}
.yb9{bottom:680.322761pt;}
.y1d4{bottom:680.692790pt;}
.y1d2{bottom:680.696511pt;}
.y331{bottom:680.889043pt;}
.y2ec{bottom:680.978695pt;}
.y263{bottom:681.973672pt;}
.y265{bottom:681.977865pt;}
.y2a6{bottom:683.489583pt;}
.y1d3{bottom:685.379313pt;}
.y264{bottom:686.135173pt;}
.y2a4{bottom:691.047107pt;}
.y182{bottom:691.059305pt;}
.y26f{bottom:691.072917pt;}
.y141{bottom:691.089116pt;}
.y51{bottom:691.094349pt;}
.y86{bottom:691.097053pt;}
.y22e{bottom:691.106898pt;}
.y330{bottom:692.833960pt;}
.y2eb{bottom:692.923612pt;}
.y8{bottom:694.979492pt;}
.y262{bottom:695.279683pt;}
.yb8{bottom:696.269648pt;}
.y1d1{bottom:698.305339pt;}
.y1cf{bottom:698.309141pt;}
.y1d0{bottom:702.992025pt;}
.y32f{bottom:704.778878pt;}
.y2ea{bottom:704.868529pt;}
.y181{bottom:707.006192pt;}
.y26e{bottom:707.019804pt;}
.y140{bottom:707.036003pt;}
.y50{bottom:707.041236pt;}
.y85{bottom:707.043940pt;}
.y22d{bottom:707.053785pt;}
.y2a3{bottom:707.376302pt;}
.y261{bottom:708.585693pt;}
.yb6{bottom:710.021891pt;}
.yb7{bottom:712.138428pt;}
.yb5{bottom:712.141085pt;}
.y2a2{bottom:714.928298pt;}
.y1ce{bottom:715.917969pt;}
.y1cc{bottom:715.920476pt;}
.y32e{bottom:716.723795pt;}
.y2e9{bottom:716.813447pt;}
.y7{bottom:718.865967pt;}
.y1cd{bottom:720.604574pt;}
.y180{bottom:722.874972pt;}
.y26d{bottom:722.888583pt;}
.y13f{bottom:722.904782pt;}
.y4f{bottom:722.910015pt;}
.y84{bottom:722.912719pt;}
.y22c{bottom:722.922564pt;}
.yb3{bottom:725.971436pt;}
.y260{bottom:726.895914pt;}
.yb4{bottom:728.087972pt;}
.yb2{bottom:728.093449pt;}
.y32d{bottom:728.668712pt;}
.y2e8{bottom:728.758364pt;}
.y1cb{bottom:733.454915pt;}
.y1c9{bottom:733.478759pt;}
.y1ca{bottom:738.217041pt;}
.y2a1{bottom:738.818132pt;}
.y17f{bottom:738.821859pt;}
.y17d{bottom:738.824597pt;}
.y26c{bottom:738.835470pt;}
.y25f{bottom:738.840587pt;}
.y13e{bottom:738.851669pt;}
.y4e{bottom:738.856902pt;}
.y83{bottom:738.859606pt;}
.y22b{bottom:738.869451pt;}
.y32c{bottom:740.703291pt;}
.y2e7{bottom:740.773018pt;}
.yb1{bottom:744.040336pt;}
.y17e{bottom:744.642415pt;}
.y2a0{bottom:750.763050pt;}
.y1c8{bottom:751.087587pt;}
.y32b{bottom:752.648208pt;}
.y2e6{bottom:752.717935pt;}
.y17c{bottom:754.771484pt;}
.y17a{bottom:754.777043pt;}
.y26b{bottom:754.782357pt;}
.y13d{bottom:754.798556pt;}
.y4d{bottom:754.803789pt;}
.y82{bottom:754.806493pt;}
.y22a{bottom:754.816338pt;}
.y25e{bottom:756.449415pt;}
.yb0{bottom:757.795085pt;}
.yaf{bottom:759.987223pt;}
.y17b{bottom:760.591960pt;}
.y29f{bottom:762.777704pt;}
.y32a{bottom:764.593125pt;}
.y2e5{bottom:764.662853pt;}
.y25d{bottom:768.394088pt;}
.y1c7{bottom:768.696415pt;}
.y5{bottom:770.040771pt;}
.y179{bottom:770.723930pt;}
.y26a{bottom:770.729244pt;}
.y13c{bottom:770.745443pt;}
.y4c{bottom:770.750676pt;}
.y81{bottom:770.753380pt;}
.y229{bottom:770.763225pt;}
.y29e{bottom:774.722621pt;}
.y329{bottom:776.538043pt;}
.y6{bottom:776.541585pt;}
.y2e4{bottom:776.607770pt;}
.y25c{bottom:786.002916pt;}
.y1c6{bottom:786.305243pt;}
.y29d{bottom:786.667538pt;}
.y178{bottom:786.670817pt;}
.y176{bottom:786.673393pt;}
.y269{bottom:786.676132pt;}
.y13b{bottom:786.692330pt;}
.y4b{bottom:786.697563pt;}
.y80{bottom:786.700268pt;}
.y228{bottom:786.710112pt;}
.yae{bottom:786.840495pt;}
.y328{bottom:788.482960pt;}
.y2e3{bottom:788.552687pt;}
.y177{bottom:792.415446pt;}
.y25b{bottom:797.947588pt;}
.y29c{bottom:798.612456pt;}
.y327{bottom:800.427878pt;}
.y2e2{bottom:800.497605pt;}
.y4{bottom:801.837683pt;}
.y175{bottom:802.620280pt;}
.y268{bottom:802.623019pt;}
.y173{bottom:802.633659pt;}
.y13a{bottom:802.639217pt;}
.y4a{bottom:802.644450pt;}
.y7f{bottom:802.647155pt;}
.y227{bottom:802.656999pt;}
.y1c5{bottom:803.914071pt;}
.y174{bottom:808.365234pt;}
.y29b{bottom:810.557373pt;}
.y326{bottom:812.442531pt;}
.y2e1{bottom:812.512259pt;}
.yad{bottom:813.202962pt;}
.y25a{bottom:815.556416pt;}
.y267{bottom:818.569906pt;}
.y172{bottom:818.580546pt;}
.y139{bottom:818.586104pt;}
.y49{bottom:818.591337pt;}
.y7e{bottom:818.594042pt;}
.y226{bottom:818.603886pt;}
.y1c4{bottom:821.522899pt;}
.y325{bottom:824.387449pt;}
.y2e0{bottom:824.457176pt;}
.y259{bottom:833.090856pt;}
.y266{bottom:834.519450pt;}
.y171{bottom:834.527433pt;}
.y138{bottom:834.532991pt;}
.y48{bottom:834.538224pt;}
.y7d{bottom:834.540929pt;}
.y225{bottom:834.550773pt;}
.y324{bottom:836.332366pt;}
.y3{bottom:836.395892pt;}
.y2df{bottom:836.402093pt;}
.y1c3{bottom:839.057338pt;}
.yac{bottom:840.000570pt;}
.y323{bottom:848.277283pt;}
.y2de{bottom:848.347011pt;}
.y170{bottom:850.396212pt;}
.y137{bottom:850.401771pt;}
.y47{bottom:850.407004pt;}
.y7c{bottom:850.409708pt;}
.y224{bottom:850.419553pt;}
.y29a{bottom:850.433909pt;}
.y258{bottom:850.699684pt;}
.y1c2{bottom:851.076400pt;}
.y322{bottom:860.222201pt;}
.y2dd{bottom:860.291928pt;}
.y16f{bottom:866.343099pt;}
.y136{bottom:866.348658pt;}
.y46{bottom:866.353891pt;}
.y7b{bottom:866.356595pt;}
.y223{bottom:866.366440pt;}
.y299{bottom:866.380796pt;}
.y257{bottom:868.308512pt;}
.y1c1{bottom:868.610840pt;}
.y2{bottom:870.954102pt;}
.y16e{bottom:872.163574pt;}
.y321{bottom:872.167118pt;}
.y2dc{bottom:872.236845pt;}
.y135{bottom:882.295545pt;}
.y45{bottom:882.300778pt;}
.y7a{bottom:882.303482pt;}
.y222{bottom:882.313327pt;}
.y298{bottom:882.327683pt;}
.y320{bottom:884.181772pt;}
.y2db{bottom:884.251499pt;}
.y256{bottom:885.919748pt;}
.y1c0{bottom:886.219154pt;}
.y133{bottom:896.050293pt;}
.y31f{bottom:896.126689pt;}
.y2da{bottom:896.196417pt;}
.y254{bottom:897.864421pt;}
.y134{bottom:898.242432pt;}
.y44{bottom:898.247665pt;}
.y79{bottom:898.250369pt;}
.y221{bottom:898.260214pt;}
.y297{bottom:898.274570pt;}
.y1bf{bottom:900.888021pt;}
.y1bd{bottom:900.891788pt;}
.y255{bottom:902.626628pt;}
.y1be{bottom:906.179362pt;}
.y31e{bottom:908.071607pt;}
.y2d9{bottom:908.141334pt;}
.y43{bottom:914.194552pt;}
.y78{bottom:914.197256pt;}
.y220{bottom:914.207101pt;}
.y296{bottom:914.221457pt;}
.y1bc{bottom:915.476969pt;}
.y1ba{bottom:915.480655pt;}
.y31d{bottom:920.016524pt;}
.y2d8{bottom:920.086251pt;}
.y1bb{bottom:920.768229pt;}
.y1{bottom:921.448568pt;}
.y132{bottom:927.949300pt;}
.y1b9{bottom:930.065837pt;}
.y42{bottom:930.141439pt;}
.y77{bottom:930.144143pt;}
.y131{bottom:930.152951pt;}
.y21f{bottom:930.153988pt;}
.y295{bottom:930.168344pt;}
.y31c{bottom:931.961441pt;}
.y2d7{bottom:932.031169pt;}
.y3e{bottom:991.292173pt;}
.y16d{bottom:991.307714pt;}
.y3d{bottom:1004.522705pt;}
.y16c{bottom:1004.538246pt;}
.h15{height:1.906461pt;}
.h2e{height:17.875032pt;}
.h2d{height:18.574484pt;}
.ha{height:19.151684pt;}
.h2a{height:20.429102pt;}
.h25{height:21.423744pt;}
.h2c{height:21.811781pt;}
.h29{height:22.982788pt;}
.h27{height:23.275946pt;}
.hf{height:24.123357pt;}
.h2b{height:24.609296pt;}
.h26{height:25.129944pt;}
.h32{height:25.200001pt;}
.hc{height:26.816586pt;}
.h14{height:27.353567pt;}
.h31{height:27.635201pt;}
.h2f{height:27.966340pt;}
.h5{height:28.090929pt;}
.h9{height:28.731561pt;}
.h16{height:29.840255pt;}
.hb{height:30.648076pt;}
.h17{height:34.221260pt;}
.h11{height:34.315097pt;}
.h28{height:34.478412pt;}
.h1f{height:34.480392pt;}
.h1c{height:34.485417pt;}
.h19{height:34.982753pt;}
.h21{height:34.982834pt;}
.h23{height:34.997949pt;}
.hd{height:35.244401pt;}
.h30{height:36.135058pt;}
.h10{height:36.189670pt;}
.he{height:37.299840pt;}
.h8{height:37.699742pt;}
.h1b{height:38.118608pt;}
.h7{height:38.309517pt;}
.h1e{height:38.624445pt;}
.h24{height:39.130284pt;}
.h6{height:39.458504pt;}
.h20{height:41.117259pt;}
.h1d{height:41.117340pt;}
.h22{height:41.183393pt;}
.h1a{height:41.616972pt;}
.h18{height:41.623177pt;}
.h4{height:42.141007pt;}
.h2{height:49.802834pt;}
.h12{height:74.703292pt;}
.h3{height:91.942689pt;}
.h13{height:106.702544pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590535pt;}
.x11{left:79.143331pt;}
.x1{left:80.352798pt;}
.x5d{left:81.335464pt;}
.x1a{left:82.998398pt;}
.xe{left:84.207865pt;}
.x13{left:86.252168pt;}
.x73{left:87.307068pt;}
.x25{left:89.348002pt;}
.x58{left:90.708669pt;}
.x1b{left:93.127604pt;}
.x15{left:94.739065pt;}
.x3d{left:102.576396pt;}
.x43{left:104.012533pt;}
.x26{left:105.070801pt;}
.x5b{left:106.280263pt;}
.x2a{left:113.854329pt;}
.x27{left:117.014130pt;}
.x57{left:120.566935pt;}
.x2b{left:122.816767pt;}
.x1c{left:125.858266pt;}
.x2c{left:133.947866pt;}
.x1d{left:135.911733pt;}
.x28{left:137.574799pt;}
.x2d{left:144.443761pt;}
.x29{left:149.138529pt;}
.x16{left:152.088135pt;}
.x2e{left:153.022835pt;}
.x56{left:154.658264pt;}
.x2f{left:161.985272pt;}
.x17{left:163.124400pt;}
.x3{left:166.450399pt;}
.x22{left:167.357463pt;}
.x1e{left:171.741740pt;}
.x30{left:174.013928pt;}
.x4{left:175.521200pt;}
.x1f{left:177.410929pt;}
.x5c{left:179.149144pt;}
.x6f{left:186.179464pt;}
.x20{left:192.302266pt;}
.x44{left:195.401591pt;}
.x18{left:197.140137pt;}
.x21{left:202.809469pt;}
.x31{left:204.861930pt;}
.x19{left:208.251872pt;}
.x45{left:211.955872pt;}
.x3e{left:224.579468pt;}
.x32{left:233.661795pt;}
.x46{left:235.918132pt;}
.x12{left:238.110128pt;}
.x72{left:246.811681pt;}
.x70{left:252.547994pt;}
.x33{left:259.645804pt;}
.x5{left:261.316528pt;}
.x6{left:266.305461pt;}
.x54{left:267.514933pt;}
.x47{left:270.614136pt;}
.x55{left:272.503866pt;}
.x3f{left:276.132263pt;}
.x34{left:279.741792pt;}
.x5a{left:281.121195pt;}
.x48{left:294.576274pt;}
.x35{left:299.709810pt;}
.x6e{left:304.176270pt;}
.x3a{left:316.044006pt;}
.x36{left:318.525809pt;}
.x40{left:328.743205pt;}
.x3b{left:331.162130pt;}
.x7{left:336.377869pt;}
.x37{left:337.341666pt;}
.x8{left:341.366781pt;}
.x41{left:343.483317pt;}
.x3c{left:347.036133pt;}
.x59{left:352.403076pt;}
.x38{left:357.053661pt;}
.x71{left:360.261335pt;}
.x39{left:366.139608pt;}
.x42{left:377.272420pt;}
.x23{left:379.313314pt;}
.x24{left:384.529053pt;}
.xf{left:406.296414pt;}
.x74{left:409.851847pt;}
.x69{left:410.910116pt;}
.x68{left:411.892782pt;}
.x79{left:413.631348pt;}
.x6a{left:414.916382pt;}
.x10{left:416.958047pt;}
.x61{left:420.207723pt;}
.x5e{left:421.946411pt;}
.x62{left:425.196818pt;}
.x9{left:427.010946pt;}
.x6b{left:428.144816pt;}
.xa{left:431.999878pt;}
.x65{left:433.587321pt;}
.x4c{left:437.744792pt;}
.x4d{left:447.798258pt;}
.x49{left:456.113322pt;}
.x4a{left:471.231486pt;}
.x75{left:480.906942pt;}
.x52{left:481.965210pt;}
.x76{left:484.459717pt;}
.x53{left:491.716390pt;}
.x4b{left:530.494385pt;}
.xb{left:534.047078pt;}
.xc{left:543.647054pt;}
.x6c{left:548.558602pt;}
.x51{left:553.851847pt;}
.x77{left:558.991984pt;}
.x5f{left:561.259725pt;}
.x78{left:562.544800pt;}
.x60{left:566.248657pt;}
.x66{left:569.420779pt;}
.x63{left:621.807739pt;}
.x64{left:626.796672pt;}
.x67{left:640.398067pt;}
.x4e{left:650.078654pt;}
.x6d{left:651.735495pt;}
.xd{left:654.991984pt;}
.x50{left:656.654948pt;}
.x4f{left:660.132121pt;}
.x14{left:665.948582pt;}
}




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