
    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_f8faac070d2c01da9eaa00bc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.959000;font-style:normal;font-weight: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_36f35ead4495d300cf02578d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.895000;font-style:normal;font-weight: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_842a6d61f8d110667814d52c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.976000;font-style:normal;font-weight: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_0a80533751836574f5565b5c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.108000;font-style:normal;font-weight: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_7fc05127a5c05558b7553fd7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938965;font-style:normal;font-weight: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_b9c4ec06be69476b7d404635.woff')format("woff");}.ff6{font-family:ff6;line-height:0.959000;font-style:normal;font-weight: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_7937ca9afd1a4167c15e2008.woff')format("woff");}.ff7{font-family:ff7;line-height:0.752000;font-style:normal;font-weight: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_490806d53d4afa4ffc4dd387.woff')format("woff");}.ff8{font-family:ff8;line-height:1.108000;font-style:normal;font-weight: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_36f35ead4495d300cf02578d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.895000;font-style:normal;font-weight: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_a14c8bdce4fbe290065bab4b.woff')format("woff");}.ffa{font-family:ffa;line-height:0.653000;font-style:normal;font-weight: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_842a6d61f8d110667814d52c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.976000;font-style:normal;font-weight: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_f5e6ddad91cc87f427f8abbc.woff')format("woff");}.ffc{font-family:ffc;line-height:0.764000;font-style:normal;font-weight: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_95d7dd5b04dde66da384402f.woff')format("woff");}.ffd{font-family:ffd;line-height:0.921000;font-style:normal;font-weight: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_34c89bb7e6dfdcd4c736a7e5.woff')format("woff");}.ffe{font-family:ffe;line-height:0.917000;font-style:normal;font-weight: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_2216f8f9151bc76ad5a74ffe.woff')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_0b8f62ce2f07f7c5415803a7.woff')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_69ebeab96bedb62d0ed47c10.woff')format("woff");}.ff11{font-family:ff11;line-height:2.399000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_f58fbc74428cd065a68c2a01.woff')format("woff");}.ff12{font-family:ff12;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_4d36eb29876d2f6d908eb7c6.woff')format("woff");}.ff13{font-family:ff13;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_8b080e2f66797db04e89e6ac.woff')format("woff");}.ff14{font-family:ff14;line-height:0.908000;font-style:normal;font-weight: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_96773de356a67c7197a8c7ee.woff')format("woff");}.ff15{font-family:ff15;line-height:0.699000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_6c9e5fff5ef321ef7f70cba9.woff')format("woff");}.ff16{font-family:ff16;line-height:0.696000;font-style:normal;font-weight: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_4a6cdd296214712d31d3fd87.woff')format("woff");}.ff17{font-family:ff17;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_b35ba052cf793d3e0599664a.woff')format("woff");}.ff18{font-family:ff18;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_3b573771a2c22c3397c65b31.woff')format("woff");}.ff19{font-family:ff19;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_8fc790bef671bacc6904ddc0.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.898200;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_266ab515c25b37432488c495.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.056000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1a{vertical-align:-44.931041px;}
.v23{vertical-align:-42.792081px;}
.v1c{vertical-align:-38.514162px;}
.v1b{vertical-align:-32.092987px;}
.v2{vertical-align:-18.042000px;}
.v4{vertical-align:-16.878000px;}
.v6{vertical-align:-14.946000px;}
.v5{vertical-align:-12.097055px;}
.v1d{vertical-align:-10.699094px;}
.v3{vertical-align:-8.970000px;}
.v7{vertical-align:-6.642000px;}
.va{vertical-align:-5.037136px;}
.v17{vertical-align:-3.954898px;}
.v0{vertical-align:0.000000px;}
.v21{vertical-align:1.086660px;}
.v16{vertical-align:5.814000px;}
.vd{vertical-align:7.578000px;}
.v9{vertical-align:9.594000px;}
.v1f{vertical-align:11.785754px;}
.v24{vertical-align:13.110148px;}
.v11{vertical-align:14.196000px;}
.v1e{vertical-align:15.526787px;}
.v8{vertical-align:16.878000px;}
.vb{vertical-align:20.012404px;}
.v1{vertical-align:21.706176px;}
.vc{vertical-align:23.382000px;}
.v12{vertical-align:24.831992px;}
.v20{vertical-align:27.312541px;}
.v14{vertical-align:28.945342px;}
.ve{vertical-align:30.960000px;}
.v10{vertical-align:33.516000px;}
.v15{vertical-align:35.098947px;}
.v13{vertical-align:37.176148px;}
.vf{vertical-align:40.422000px;}
.v22{vertical-align:44.832000px;}
.v19{vertical-align:56.790000px;}
.v18{vertical-align:84.288000px;}
.ls3{letter-spacing:-3.544002px;}
.ls1{letter-spacing:0.000000px;}
.ls87{letter-spacing:0.000198px;}
.lsc7{letter-spacing:0.000247px;}
.lsee{letter-spacing:0.000297px;}
.lsdc{letter-spacing:0.000305px;}
.ls39{letter-spacing:0.000482px;}
.ls81{letter-spacing:0.000559px;}
.ls68{letter-spacing:0.000654px;}
.ls44{letter-spacing:0.000700px;}
.ls93{letter-spacing:0.001062px;}
.ls4c{letter-spacing:0.001110px;}
.ls6e{letter-spacing:0.001157px;}
.ls84{letter-spacing:0.001296px;}
.lsb3{letter-spacing:0.001336px;}
.ls18{letter-spacing:0.001621px;}
.ls8c{letter-spacing:0.001804px;}
.lsa1{letter-spacing:0.001866px;}
.ls31{letter-spacing:0.001990px;}
.lsaf{letter-spacing:0.002059px;}
.ls53{letter-spacing:0.002116px;}
.lsb7{letter-spacing:0.002157px;}
.ls1b{letter-spacing:0.002165px;}
.ls77{letter-spacing:0.002196px;}
.lsf9{letter-spacing:0.002227px;}
.ls36{letter-spacing:0.002542px;}
.lsc1{letter-spacing:0.002632px;}
.ls33{letter-spacing:0.003014px;}
.ls8e{letter-spacing:0.003076px;}
.lsed{letter-spacing:0.003123px;}
.lscb{letter-spacing:0.003376px;}
.ls3d{letter-spacing:0.004059px;}
.ls20{letter-spacing:0.004648px;}
.ls1f{letter-spacing:0.004896px;}
.ls66{letter-spacing:0.005262px;}
.ls58{letter-spacing:0.005282px;}
.ls3a{letter-spacing:0.005670px;}
.ls3c{letter-spacing:0.006482px;}
.lsb1{letter-spacing:0.006490px;}
.ls40{letter-spacing:0.007624px;}
.lsf7{letter-spacing:0.008227px;}
.ls9b{letter-spacing:0.009479px;}
.ls6f{letter-spacing:0.009681px;}
.ls106{letter-spacing:0.010133px;}
.ls7b{letter-spacing:0.010665px;}
.lsd5{letter-spacing:0.010788px;}
.lsaa{letter-spacing:0.010809px;}
.ls102{letter-spacing:0.010872px;}
.ls16{letter-spacing:0.012586px;}
.ls10b{letter-spacing:0.013908px;}
.ls56{letter-spacing:0.014819px;}
.lsb{letter-spacing:0.015239px;}
.lsce{letter-spacing:0.015379px;}
.ls78{letter-spacing:0.016665px;}
.ls74{letter-spacing:0.017463px;}
.ls9{letter-spacing:0.019591px;}
.ls71{letter-spacing:0.019807px;}
.lsac{letter-spacing:0.020051px;}
.ls5b{letter-spacing:0.020598px;}
.lseb{letter-spacing:0.021894px;}
.ls25{letter-spacing:0.024573px;}
.ls7d{letter-spacing:0.024999px;}
.ls82{letter-spacing:0.025771px;}
.lsd{letter-spacing:0.026672px;}
.ls3f{letter-spacing:0.027459px;}
.lsfe{letter-spacing:0.027525px;}
.ls5c{letter-spacing:0.028278px;}
.ls7f{letter-spacing:0.028291px;}
.lsfc{letter-spacing:0.029590px;}
.ls113{letter-spacing:0.042605px;}
.ls60{letter-spacing:0.059776px;}
.lsbf{letter-spacing:0.239102px;}
.ls9f{letter-spacing:0.674522px;}
.lsb0{letter-spacing:0.718876px;}
.ls49{letter-spacing:0.769538px;}
.lsa5{letter-spacing:1.004227px;}
.lsc5{letter-spacing:1.297127px;}
.ls9c{letter-spacing:1.621308px;}
.ls4b{letter-spacing:1.656113px;}
.ls10e{letter-spacing:1.673717px;}
.ls4f{letter-spacing:1.783706px;}
.ls52{letter-spacing:1.787289px;}
.lsda{letter-spacing:1.853044px;}
.lsd8{letter-spacing:1.912819px;}
.ls6d{letter-spacing:2.044803px;}
.ls4e{letter-spacing:2.229825px;}
.ls1e{letter-spacing:2.426882px;}
.ls6a{letter-spacing:2.733248px;}
.ls69{letter-spacing:2.737354px;}
.lsf3{letter-spacing:2.860420px;}
.lsd6{letter-spacing:2.984525px;}
.ls3e{letter-spacing:2.988532px;}
.ls27{letter-spacing:2.988600px;}
.ls5a{letter-spacing:2.988648px;}
.lsc8{letter-spacing:2.988863px;}
.lsa{letter-spacing:2.989140px;}
.ls28{letter-spacing:2.989200px;}
.lsd7{letter-spacing:2.990525px;}
.ls0{letter-spacing:2.991000px;}
.ls4d{letter-spacing:3.026795px;}
.lsab{letter-spacing:3.110244px;}
.lscd{letter-spacing:3.114915px;}
.ls61{letter-spacing:3.407209px;}
.ls67{letter-spacing:3.696616px;}
.ls6c{letter-spacing:3.700721px;}
.ls98{letter-spacing:3.839587px;}
.ls1a{letter-spacing:3.994868px;}
.ls7{letter-spacing:4.000868px;}
.lsa8{letter-spacing:4.211160px;}
.lsba{letter-spacing:4.276748px;}
.lsb6{letter-spacing:4.279987px;}
.lsb9{letter-spacing:4.281043px;}
.ls6{letter-spacing:5.402908px;}
.ls10{letter-spacing:5.408908px;}
.ls34{letter-spacing:5.974363px;}
.ls32{letter-spacing:5.980363px;}
.lsf4{letter-spacing:6.395989px;}
.ls9a{letter-spacing:6.485788px;}
.lsfa{letter-spacing:6.515540px;}
.ls47{letter-spacing:7.138420px;}
.lsbb{letter-spacing:7.145991px;}
.ls99{letter-spacing:7.160310px;}
.lsc6{letter-spacing:7.165580px;}
.lsa7{letter-spacing:7.756278px;}
.ls90{letter-spacing:8.107436px;}
.lsd4{letter-spacing:8.308808px;}
.ls46{letter-spacing:8.423336px;}
.ls89{letter-spacing:8.510042px;}
.ls9e{letter-spacing:8.513297px;}
.ls55{letter-spacing:8.794534px;}
.ls51{letter-spacing:9.369947px;}
.ls10f{letter-spacing:9.922750px;}
.ls8{letter-spacing:9.982525px;}
.lsa9{letter-spacing:10.331634px;}
.ls45{letter-spacing:10.656100px;}
.lse4{letter-spacing:11.357364px;}
.ls6b{letter-spacing:11.369607px;}
.lsb2{letter-spacing:11.409853px;}
.lscf{letter-spacing:11.414148px;}
.ls116{letter-spacing:11.632298px;}
.lsb5{letter-spacing:11.895721px;}
.ls128{letter-spacing:12.313774px;}
.lse1{letter-spacing:12.399261px;}
.lse2{letter-spacing:12.455114px;}
.ls111{letter-spacing:12.568418px;}
.ls114{letter-spacing:12.611023px;}
.ls117{letter-spacing:12.929425px;}
.lsde{letter-spacing:12.930068px;}
.ls12a{letter-spacing:12.958903px;}
.lsdf{letter-spacing:12.988312px;}
.ls11{letter-spacing:13.270183px;}
.ls104{letter-spacing:13.449510px;}
.ls129{letter-spacing:13.748388px;}
.ls115{letter-spacing:13.846562px;}
.ls118{letter-spacing:14.107077px;}
.lsbc{letter-spacing:14.337559px;}
.lsd1{letter-spacing:14.593779px;}
.lsb4{letter-spacing:14.748563px;}
.ls105{letter-spacing:14.884124px;}
.ls12d{letter-spacing:14.896037px;}
.ls37{letter-spacing:14.940532px;}
.ls19{letter-spacing:14.943900px;}
.ls35{letter-spacing:14.946532px;}
.ls11a{letter-spacing:15.541695px;}
.ls11b{letter-spacing:15.780758px;}
.ls124{letter-spacing:16.079636px;}
.lsb8{letter-spacing:16.164528px;}
.lsd0{letter-spacing:16.168824px;}
.ls10c{letter-spacing:16.258963px;}
.lsca{letter-spacing:16.271374px;}
.lsa2{letter-spacing:16.602538px;}
.ls12{letter-spacing:16.617617px;}
.lsf0{letter-spacing:16.717892px;}
.ls64{letter-spacing:16.796944px;}
.lsea{letter-spacing:16.839214px;}
.ls13{letter-spacing:17.514251px;}
.ls14{letter-spacing:17.574026px;}
.lsf1{letter-spacing:17.715283px;}
.ls26{letter-spacing:17.728868px;}
.ls3b{letter-spacing:17.926363px;}
.ls38{letter-spacing:17.932363px;}
.lsf{letter-spacing:17.935140px;}
.lsec{letter-spacing:18.097941px;}
.ls110{letter-spacing:18.291334px;}
.lsbe{letter-spacing:18.351109px;}
.ls65{letter-spacing:18.410885px;}
.ls5f{letter-spacing:18.528648px;}
.ls7a{letter-spacing:18.692908px;}
.lsc2{letter-spacing:18.886868px;}
.ls85{letter-spacing:18.940868px;}
.ls62{letter-spacing:19.008641px;}
.lsae{letter-spacing:19.360179px;}
.lsad{letter-spacing:19.406718px;}
.ls5e{letter-spacing:19.534868px;}
.ls22{letter-spacing:19.591140px;}
.ls10d{letter-spacing:19.606397px;}
.lse{letter-spacing:19.905275px;}
.ls24{letter-spacing:19.966868px;}
.lsfb{letter-spacing:20.024826px;}
.lsfd{letter-spacing:20.084602px;}
.lsf6{letter-spacing:20.086363px;}
.lsf8{letter-spacing:20.092363px;}
.ls123{letter-spacing:20.263928px;}
.ls127{letter-spacing:20.383480px;}
.lsef{letter-spacing:20.474731px;}
.ls41{letter-spacing:20.540908px;}
.ls29{letter-spacing:20.602868px;}
.ls1d{letter-spacing:20.608868px;}
.ls2{letter-spacing:20.629152px;}
.ls11d{letter-spacing:21.519216px;}
.lsf5{letter-spacing:21.904868px;}
.ls15{letter-spacing:22.057196px;}
.ls76{letter-spacing:22.176748px;}
.ls11c{letter-spacing:22.415850px;}
.ls59{letter-spacing:22.458557px;}
.ls121{letter-spacing:22.714728px;}
.ls122{letter-spacing:22.774504px;}
.ls73{letter-spacing:22.884648px;}
.ls83{letter-spacing:22.915140px;}
.ls63{letter-spacing:23.013606px;}
.lse6{letter-spacing:23.240812px;}
.ls12c{letter-spacing:23.252708px;}
.lse9{letter-spacing:23.312484px;}
.ls107{letter-spacing:23.558888px;}
.ls5d{letter-spacing:23.768908px;}
.lsc3{letter-spacing:23.778538px;}
.ls126{letter-spacing:23.790689px;}
.ls12b{letter-spacing:23.830868px;}
.ls125{letter-spacing:23.850464px;}
.ls75{letter-spacing:24.304868px;}
.ls11e{letter-spacing:24.328669px;}
.ls42{letter-spacing:24.430868px;}
.ls17{letter-spacing:25.132868px;}
.lsc4{letter-spacing:25.134305px;}
.ls80{letter-spacing:25.732868px;}
.ls101{letter-spacing:25.882835px;}
.ls1c{letter-spacing:26.059140px;}
.lse5{letter-spacing:26.062227px;}
.lse3{letter-spacing:26.362393px;}
.lsc0{letter-spacing:26.600142px;}
.ls109{letter-spacing:27.437000px;}
.lse0{letter-spacing:27.490956px;}
.lsd3{letter-spacing:27.811140px;}
.ls70{letter-spacing:28.216868px;}
.ls100{letter-spacing:28.752064px;}
.lse8{letter-spacing:29.469371px;}
.lse7{letter-spacing:29.529146px;}
.ls72{letter-spacing:29.618908px;}
.lsbd{letter-spacing:29.905140px;}
.ls10a{letter-spacing:30.020525px;}
.ls108{letter-spacing:30.784434px;}
.ls103{letter-spacing:31.064908px;}
.lsd2{letter-spacing:31.561517px;}
.ls120{letter-spacing:31.621292px;}
.lsff{letter-spacing:32.351251px;}
.lsa4{letter-spacing:33.886868px;}
.ls7e{letter-spacing:35.188868px;}
.ls4{letter-spacing:35.865360px;}
.lsc{letter-spacing:37.382908px;}
.lsf2{letter-spacing:42.627889px;}
.ls50{letter-spacing:42.830520px;}
.lsd9{letter-spacing:46.191163px;}
.lsc9{letter-spacing:47.838863px;}
.ls11f{letter-spacing:49.195319px;}
.lsdb{letter-spacing:50.749484px;}
.ls86{letter-spacing:61.449317px;}
.ls112{letter-spacing:63.907211px;}
.ls119{letter-spacing:71.730900px;}
.lsa3{letter-spacing:89.664300px;}
.ls9d{letter-spacing:98.506155px;}
.ls30{letter-spacing:122.892695px;}
.ls8b{letter-spacing:124.786569px;}
.ls2d{letter-spacing:130.257617px;}
.ls57{letter-spacing:154.752532px;}
.ls2e{letter-spacing:166.540179px;}
.ls2a{letter-spacing:188.113813px;}
.ls2b{letter-spacing:189.882505px;}
.ls2f{letter-spacing:199.587682px;}
.ls88{letter-spacing:213.243551px;}
.ls2c{letter-spacing:235.517485px;}
.ls23{letter-spacing:248.804908px;}
.lscc{letter-spacing:297.976868px;}
.ls8d{letter-spacing:314.685262px;}
.ls97{letter-spacing:317.053925px;}
.ls8f{letter-spacing:323.915842px;}
.ls21{letter-spacing:330.470908px;}
.ls4a{letter-spacing:333.378341px;}
.lsa6{letter-spacing:358.444868px;}
.ls54{letter-spacing:382.813006px;}
.lsa0{letter-spacing:384.373765px;}
.ls43{letter-spacing:390.877438px;}
.ls48{letter-spacing:418.762520px;}
.ls91{letter-spacing:421.809736px;}
.ls79{letter-spacing:440.204908px;}
.ls94{letter-spacing:440.876407px;}
.lsdd{letter-spacing:441.954305px;}
.ls7c{letter-spacing:446.630908px;}
.ls92{letter-spacing:459.534411px;}
.ls8a{letter-spacing:478.232959px;}
.ls96{letter-spacing:492.089739px;}
.ls95{letter-spacing:558.099319px;}
.ls5{letter-spacing:2716.503403px;}
.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;}
}
.ws135{word-spacing:-47.624493px;}
.ws18f{word-spacing:-47.324343px;}
.ws214{word-spacing:-43.217759px;}
.ws213{word-spacing:-40.109428px;}
.wsf0{word-spacing:-39.954011px;}
.wsec{word-spacing:-38.937826px;}
.ws17f{word-spacing:-36.844840px;}
.ws19a{word-spacing:-33.877131px;}
.ws182{word-spacing:-33.647618px;}
.ws13b{word-spacing:-33.211407px;}
.ws100{word-spacing:-31.633157px;}
.ws188{word-spacing:-30.894642px;}
.ws1ca{word-spacing:-30.671066px;}
.ws180{word-spacing:-30.315434px;}
.ws14a{word-spacing:-29.015076px;}
.wsed{word-spacing:-28.955301px;}
.ws185{word-spacing:-27.873643px;}
.ws15d{word-spacing:-26.640871px;}
.ws1ec{word-spacing:-25.438609px;}
.ws1b4{word-spacing:-25.428540px;}
.ws19d{word-spacing:-23.993926px;}
.ws186{word-spacing:-22.644595px;}
.ws1fe{word-spacing:-22.559311px;}
.ws103{word-spacing:-22.320209px;}
.ws15f{word-spacing:-21.643090px;}
.ws1a8{word-spacing:-21.282194px;}
.ws1a3{word-spacing:-20.885595px;}
.ws189{word-spacing:-20.727652px;}
.ws1ae{word-spacing:-20.408514px;}
.ws153{word-spacing:-19.830531px;}
.ws15b{word-spacing:-19.810927px;}
.ws19c{word-spacing:-19.529376px;}
.ws18b{word-spacing:-19.186503px;}
.ws183{word-spacing:-18.680711px;}
.ws173{word-spacing:-18.017520px;}
.ws198{word-spacing:-18.016366px;}
.ws170{word-spacing:-17.896815px;}
.ws19b{word-spacing:-17.777863px;}
.ws18a{word-spacing:-17.465740px;}
.ws187{word-spacing:-17.176052px;}
.wsfe{word-spacing:-14.943900px;}
.ws1b9{word-spacing:-14.788483px;}
.ws154{word-spacing:-14.776530px;}
.ws102{word-spacing:-14.190727px;}
.ws1b7{word-spacing:-13.891849px;}
.ws168{word-spacing:-13.713242px;}
.ws175{word-spacing:-13.425582px;}
.ws1c2{word-spacing:-12.996561px;}
.ws169{word-spacing:-12.937608px;}
.ws19e{word-spacing:-12.397459px;}
.ws16a{word-spacing:-12.045242px;}
.ws13e{word-spacing:-11.955150px;}
.ws282{word-spacing:-11.372400px;}
.ws197{word-spacing:-11.201947px;}
.ws1c0{word-spacing:-11.126125px;}
.ws1c4{word-spacing:-11.122473px;}
.ws1c3{word-spacing:-11.119000px;}
.ws184{word-spacing:-10.908716px;}
.ws190{word-spacing:-10.765608px;}
.ws1aa{word-spacing:-10.448893px;}
.ws1ad{word-spacing:-10.390650px;}
.ws181{word-spacing:-10.072704px;}
.ws1b0{word-spacing:-10.019943px;}
.ws1b3{word-spacing:-9.964091px;}
.ws17e{word-spacing:-9.906456px;}
.ws1bd{word-spacing:-9.683671px;}
.ws1bc{word-spacing:-9.635851px;}
.ws199{word-spacing:-9.504456px;}
.ws1f1{word-spacing:-9.157167px;}
.ws16c{word-spacing:-8.733242px;}
.wsdb{word-spacing:-8.364540px;}
.ws1bb{word-spacing:-7.149180px;}
.wsf7{word-spacing:-7.053108px;}
.ws128{word-spacing:-3.586536px;}
.ws78{word-spacing:-3.407209px;}
.ws1f5{word-spacing:-3.347434px;}
.ws163{word-spacing:-3.287658px;}
.ws77{word-spacing:-3.227882px;}
.ws14d{word-spacing:-3.168107px;}
.ws147{word-spacing:-3.108331px;}
.ws146{word-spacing:-3.048556px;}
.ws84{word-spacing:-2.988780px;}
.ws207{word-spacing:-2.929004px;}
.ws6a{word-spacing:-2.869229px;}
.wsb7{word-spacing:-2.809453px;}
.ws1a5{word-spacing:-2.749678px;}
.ws230{word-spacing:-2.689902px;}
.ws63{word-spacing:-2.570351px;}
.ws19f{word-spacing:-2.510575px;}
.wscc{word-spacing:-2.450800px;}
.ws5f{word-spacing:-2.391024px;}
.ws1f7{word-spacing:-2.331248px;}
.ws1f4{word-spacing:-2.271473px;}
.wsd2{word-spacing:-2.211697px;}
.ws24c{word-spacing:-2.183501px;}
.ws2b{word-spacing:-2.167290px;}
.ws5d{word-spacing:-2.151922px;}
.wsb6{word-spacing:-2.092146px;}
.ws275{word-spacing:-2.047032px;}
.ws1f9{word-spacing:-2.032370px;}
.ws164{word-spacing:-2.005608px;}
.wscd{word-spacing:-1.972595px;}
.ws234{word-spacing:-1.912819px;}
.ws273{word-spacing:-1.910563px;}
.ws291{word-spacing:-1.865074px;}
.ws10b{word-spacing:-1.853044px;}
.ws205{word-spacing:-1.793268px;}
.ws36{word-spacing:-1.748580px;}
.ws136{word-spacing:-1.733492px;}
.ws280{word-spacing:-1.728605px;}
.ws264{word-spacing:-1.683115px;}
.wsca{word-spacing:-1.673717px;}
.ws29{word-spacing:-1.626012px;}
.ws11e{word-spacing:-1.613941px;}
.ws11d{word-spacing:-1.554166px;}
.ws85{word-spacing:-1.494390px;}
.ws237{word-spacing:-1.434614px;}
.wsaf{word-spacing:-1.374839px;}
.ws28f{word-spacing:-1.364688px;}
.ws296{word-spacing:-1.319198px;}
.ws1a6{word-spacing:-1.315063px;}
.ws28d{word-spacing:-1.273709px;}
.ws4b{word-spacing:-1.255288px;}
.ws56{word-spacing:-1.195512px;}
.ws29e{word-spacing:-1.182730px;}
.ws10e{word-spacing:-1.075961px;}
.ws22{word-spacing:-1.019574px;}
.ws107{word-spacing:-1.016185px;}
.ws2a1{word-spacing:-1.000771px;}
.ws7f{word-spacing:-0.956410px;}
.ws29a{word-spacing:-0.909792px;}
.wsd3{word-spacing:-0.896634px;}
.ws1dd{word-spacing:-0.836858px;}
.ws11f{word-spacing:-0.777083px;}
.ws289{word-spacing:-0.773323px;}
.wsa0{word-spacing:-0.717307px;}
.ws258{word-spacing:-0.682344px;}
.ws57{word-spacing:-0.657532px;}
.ws3d{word-spacing:-0.601932px;}
.wscf{word-spacing:-0.597756px;}
.ws240{word-spacing:-0.591365px;}
.ws248{word-spacing:-0.545875px;}
.ws19{word-spacing:-0.542784px;}
.ws83{word-spacing:-0.537980px;}
.ws80{word-spacing:-0.478205px;}
.ws268{word-spacing:-0.454896px;}
.ws18e{word-spacing:-0.418429px;}
.ws18d{word-spacing:-0.358654px;}
.ws241{word-spacing:-0.318427px;}
.ws196{word-spacing:-0.298878px;}
.ws1f8{word-spacing:-0.239102px;}
.ws208{word-spacing:-0.209214px;}
.ws242{word-spacing:-0.181958px;}
.wse7{word-spacing:-0.179327px;}
.ws1df{word-spacing:-0.119551px;}
.ws2f{word-spacing:-0.065784px;}
.ws73{word-spacing:-0.059776px;}
.ws106{word-spacing:-0.053798px;}
.ws13f{word-spacing:-0.035866px;}
.ws193{word-spacing:-0.029888px;}
.ws1ed{word-spacing:-0.027472px;}
.ws161{word-spacing:-0.020449px;}
.ws31{word-spacing:-0.017364px;}
.ws28{word-spacing:-0.016512px;}
.ws1d{word-spacing:-0.013944px;}
.ws42{word-spacing:-0.011148px;}
.ws1{word-spacing:-0.011088px;}
.ws0{word-spacing:-0.005160px;}
.ws3b{word-spacing:-0.005148px;}
.ws43{word-spacing:0.000000px;}
.wsc{word-spacing:0.000330px;}
.ws9{word-spacing:0.001200px;}
.wsb{word-spacing:0.001272px;}
.wsa{word-spacing:0.001650px;}
.wse{word-spacing:0.001956px;}
.ws28e{word-spacing:0.045490px;}
.ws1f3{word-spacing:0.059776px;}
.ws251{word-spacing:0.090979px;}
.ws133{word-spacing:0.119551px;}
.ws60{word-spacing:0.179327px;}
.ws209{word-spacing:0.239102px;}
.ws276{word-spacing:0.272938px;}
.ws12{word-spacing:0.292290px;}
.wse1{word-spacing:0.298878px;}
.ws72{word-spacing:0.358654px;}
.ws1a{word-spacing:0.408846px;}
.ws29c{word-spacing:0.409406px;}
.ws20b{word-spacing:0.418429px;}
.ws26d{word-spacing:0.454896px;}
.wsea{word-spacing:0.478205px;}
.ws108{word-spacing:0.537980px;}
.ws41{word-spacing:0.583488px;}
.wsc1{word-spacing:0.597756px;}
.ws1c{word-spacing:0.653574px;}
.ws1c6{word-spacing:0.657532px;}
.ws55{word-spacing:0.717307px;}
.ws79{word-spacing:0.777083px;}
.ws29b{word-spacing:0.818813px;}
.ws4f{word-spacing:0.836858px;}
.wsc2{word-spacing:0.896634px;}
.ws269{word-spacing:0.955282px;}
.ws14e{word-spacing:0.956410px;}
.ws61{word-spacing:1.016185px;}
.wsb5{word-spacing:1.075961px;}
.ws2a0{word-spacing:1.091750px;}
.wsbb{word-spacing:1.135736px;}
.ws26a{word-spacing:1.182730px;}
.ws58{word-spacing:1.195512px;}
.ws37{word-spacing:1.247370px;}
.wse5{word-spacing:1.255288px;}
.ws210{word-spacing:1.315063px;}
.ws284{word-spacing:1.364688px;}
.wsab{word-spacing:1.374839px;}
.wsae{word-spacing:1.434614px;}
.ws256{word-spacing:1.455667px;}
.wsd4{word-spacing:1.494390px;}
.ws270{word-spacing:1.501157px;}
.wsfa{word-spacing:1.554166px;}
.ws3c{word-spacing:1.603920px;}
.wsb3{word-spacing:1.613941px;}
.ws247{word-spacing:1.637626px;}
.wsda{word-spacing:1.673717px;}
.ws29f{word-spacing:1.683115px;}
.ws179{word-spacing:1.733492px;}
.wsb8{word-spacing:1.793268px;}
.ws228{word-spacing:1.853044px;}
.ws24d{word-spacing:1.910563px;}
.wsdd{word-spacing:1.912819px;}
.ws1b{word-spacing:1.967784px;}
.wsc3{word-spacing:1.972595px;}
.ws15a{word-spacing:1.990392px;}
.wsa5{word-spacing:2.032370px;}
.ws10f{word-spacing:2.092146px;}
.ws14{word-spacing:2.137908px;}
.ws70{word-spacing:2.151922px;}
.ws7a{word-spacing:2.271473px;}
.ws18{word-spacing:2.320068px;}
.ws9f{word-spacing:2.331248px;}
.ws28c{word-spacing:2.365459px;}
.ws9e{word-spacing:2.391024px;}
.ws69{word-spacing:2.450800px;}
.ws9d{word-spacing:2.510575px;}
.ws16b{word-spacing:2.534758px;}
.ws1f{word-spacing:2.545050px;}
.ws28b{word-spacing:2.547418px;}
.wsd5{word-spacing:2.570351px;}
.ws255{word-spacing:2.592907px;}
.wsfd{word-spacing:2.630126px;}
.ws45{word-spacing:2.689902px;}
.wsbd{word-spacing:2.749678px;}
.ws113{word-spacing:2.809453px;}
.wsf1{word-spacing:2.869229px;}
.ws278{word-spacing:2.911334px;}
.ws59{word-spacing:2.929004px;}
.ws6f{word-spacing:2.988780px;}
.ws9b{word-spacing:3.048556px;}
.ws40{word-spacing:3.100098px;}
.ws76{word-spacing:3.108331px;}
.ws239{word-spacing:3.168107px;}
.ws192{word-spacing:3.227882px;}
.ws274{word-spacing:3.275251px;}
.ws92{word-spacing:3.287658px;}
.ws23c{word-spacing:3.320741px;}
.ws4c{word-spacing:3.347434px;}
.wsa9{word-spacing:3.407209px;}
.ws50{word-spacing:3.466985px;}
.ws138{word-spacing:3.526760px;}
.wsde{word-spacing:3.586536px;}
.ws272{word-spacing:3.593678px;}
.ws8d{word-spacing:3.646312px;}
.ws290{word-spacing:3.684658px;}
.ws35{word-spacing:3.701352px;}
.ws4d{word-spacing:3.706087px;}
.wsaa{word-spacing:3.765863px;}
.ws298{word-spacing:3.775637px;}
.ws10a{word-spacing:3.825638px;}
.wse3{word-spacing:3.885414px;}
.ws109{word-spacing:3.945190px;}
.ws27a{word-spacing:3.957595px;}
.ws297{word-spacing:4.003085px;}
.ws14b{word-spacing:4.004965px;}
.ws4a{word-spacing:4.064741px;}
.wsfb{word-spacing:4.124516px;}
.ws252{word-spacing:4.230533px;}
.wsf6{word-spacing:4.244068px;}
.ws4e{word-spacing:4.303843px;}
.wsc6{word-spacing:4.363619px;}
.ws288{word-spacing:4.412491px;}
.wsd8{word-spacing:4.423394px;}
.ws24b{word-spacing:4.457981px;}
.ws9a{word-spacing:4.483170px;}
.ws25b{word-spacing:4.503470px;}
.wsa7{word-spacing:4.542946px;}
.wsa2{word-spacing:4.602721px;}
.ws48{word-spacing:4.662497px;}
.ws26e{word-spacing:4.685429px;}
.ws47{word-spacing:4.722272px;}
.ws299{word-spacing:4.730918px;}
.wsbc{word-spacing:4.782048px;}
.wsb1{word-spacing:4.841824px;}
.ws26b{word-spacing:4.867387px;}
.ws5b{word-spacing:4.901599px;}
.ws260{word-spacing:4.958366px;}
.ws7c{word-spacing:4.961375px;}
.ws117{word-spacing:4.973342px;}
.ws74{word-spacing:5.021150px;}
.ws29d{word-spacing:5.049346px;}
.ws158{word-spacing:5.080926px;}
.ws15{word-spacing:5.132574px;}
.ws277{word-spacing:5.140325px;}
.wse9{word-spacing:5.140702px;}
.ws287{word-spacing:5.185814px;}
.ws34{word-spacing:5.194068px;}
.wsdc{word-spacing:5.200477px;}
.ws23{word-spacing:5.251278px;}
.ws227{word-spacing:5.260253px;}
.ws254{word-spacing:5.276794px;}
.ws167{word-spacing:5.320028px;}
.ws249{word-spacing:5.322283px;}
.ws253{word-spacing:5.367773px;}
.wsce{word-spacing:5.379804px;}
.wsc5{word-spacing:5.439580px;}
.wsdf{word-spacing:5.499355px;}
.ws23f{word-spacing:5.504242px;}
.wsc7{word-spacing:5.559131px;}
.wsb0{word-spacing:5.618906px;}
.ws17{word-spacing:5.658408px;}
.ws71{word-spacing:5.678682px;}
.wsa3{word-spacing:5.738458px;}
.ws283{word-spacing:5.777179px;}
.ws99{word-spacing:5.798233px;}
.ws27c{word-spacing:5.822669px;}
.ws6b{word-spacing:5.858009px;}
.ws25f{word-spacing:5.868158px;}
.ws145{word-spacing:5.917784px;}
.ws292{word-spacing:5.959138px;}
.ws111{word-spacing:5.977560px;}
.wsac{word-spacing:6.037336px;}
.wsbe{word-spacing:6.097111px;}
.ws2d{word-spacing:6.150426px;}
.ws101{word-spacing:6.156887px;}
.wsb9{word-spacing:6.216662px;}
.ws88{word-spacing:6.276438px;}
.ws25d{word-spacing:6.323054px;}
.wsa4{word-spacing:6.336214px;}
.ws285{word-spacing:6.368544px;}
.wsf9{word-spacing:6.395989px;}
.wsfc{word-spacing:6.455765px;}
.ws23a{word-spacing:6.459523px;}
.ws28a{word-spacing:6.505013px;}
.ws21e{word-spacing:6.515540px;}
.ws27d{word-spacing:6.550502px;}
.ws62{word-spacing:6.575316px;}
.ws293{word-spacing:6.595992px;}
.ws139{word-spacing:6.635092px;}
.ws23b{word-spacing:6.641482px;}
.ws10{word-spacing:6.679920px;}
.ws246{word-spacing:6.686971px;}
.ws8a{word-spacing:6.694867px;}
.ws87{word-spacing:6.754643px;}
.ws12a{word-spacing:6.814418px;}
.ws1de{word-spacing:6.874194px;}
.ws294{word-spacing:6.914419px;}
.ws27{word-spacing:6.930426px;}
.ws211{word-spacing:6.933970px;}
.ws119{word-spacing:6.993745px;}
.ws3a{word-spacing:7.043352px;}
.ws212{word-spacing:7.053521px;}
.ws245{word-spacing:7.096378px;}
.ws95{word-spacing:7.113296px;}
.wsd{word-spacing:7.118950px;}
.ws203{word-spacing:7.173072px;}
.ws68{word-spacing:7.232848px;}
.ws5c{word-spacing:7.292623px;}
.ws262{word-spacing:7.323826px;}
.wsf3{word-spacing:7.352399px;}
.ws54{word-spacing:7.412174px;}
.ws96{word-spacing:7.471950px;}
.ws261{word-spacing:7.505784px;}
.ws7d{word-spacing:7.531726px;}
.ws3e{word-spacing:7.585920px;}
.ws105{word-spacing:7.591501px;}
.ws123{word-spacing:7.651277px;}
.ws110{word-spacing:7.711052px;}
.wsa1{word-spacing:7.770828px;}
.ws265{word-spacing:7.778722px;}
.ws13{word-spacing:7.824216px;}
.ws8b{word-spacing:7.830604px;}
.ws115{word-spacing:7.842578px;}
.ws12b{word-spacing:7.890379px;}
.ws116{word-spacing:7.890399px;}
.ws26f{word-spacing:7.915190px;}
.ws10c{word-spacing:7.950155px;}
.ws279{word-spacing:7.960680px;}
.wscb{word-spacing:8.009930px;}
.ws257{word-spacing:8.051659px;}
.wse0{word-spacing:8.069706px;}
.ws38{word-spacing:8.113920px;}
.ws8c{word-spacing:8.129482px;}
.ws2c{word-spacing:8.182716px;}
.ws114{word-spacing:8.189257px;}
.ws27f{word-spacing:8.233618px;}
.ws90{word-spacing:8.249033px;}
.ws24a{word-spacing:8.279107px;}
.ws21d{word-spacing:8.308808px;}
.ws1a0{word-spacing:8.368584px;}
.ws24f{word-spacing:8.370086px;}
.ws10d{word-spacing:8.428360px;}
.ws12e{word-spacing:8.488135px;}
.ws51{word-spacing:8.547911px;}
.ws295{word-spacing:8.552045px;}
.ws5a{word-spacing:8.607686px;}
.ws141{word-spacing:8.667462px;}
.ws13a{word-spacing:8.727238px;}
.ws98{word-spacing:8.787013px;}
.wsb4{word-spacing:8.846789px;}
.ws11{word-spacing:8.897958px;}
.ws126{word-spacing:8.906564px;}
.ws223{word-spacing:9.026116px;}
.wsc8{word-spacing:9.085891px;}
.ws206{word-spacing:9.145667px;}
.ws2a{word-spacing:9.252426px;}
.ws165{word-spacing:9.265218px;}
.wsa6{word-spacing:9.324994px;}
.ws24{word-spacing:9.368778px;}
.ws250{word-spacing:9.370858px;}
.ws27b{word-spacing:9.416347px;}
.ws6d{word-spacing:9.444545px;}
.wse4{word-spacing:9.504320px;}
.ws2e{word-spacing:9.556296px;}
.ws9c{word-spacing:9.564096px;}
.wsba{word-spacing:9.623872px;}
.ws16{word-spacing:9.729420px;}
.ws6c{word-spacing:9.743423px;}
.ws23d{word-spacing:9.780264px;}
.ws39{word-spacing:9.785784px;}
.ws49{word-spacing:9.803198px;}
.ws3f{word-spacing:9.850710px;}
.ws1a1{word-spacing:9.862974px;}
.ws137{word-spacing:9.922750px;}
.wsb2{word-spacing:9.982525px;}
.ws7b{word-spacing:10.042301px;}
.ws67{word-spacing:10.102076px;}
.ws25{word-spacing:10.154250px;}
.wsa8{word-spacing:10.161852px;}
.ws112{word-spacing:10.221628px;}
.ws195{word-spacing:10.281403px;}
.ws25c{word-spacing:10.326139px;}
.ws11c{word-spacing:10.341179px;}
.ws17d{word-spacing:10.400954px;}
.ws27e{word-spacing:10.417118px;}
.ws140{word-spacing:10.460730px;}
.ws75{word-spacing:10.520506px;}
.ws271{word-spacing:10.553587px;}
.wse2{word-spacing:10.580281px;}
.ws130{word-spacing:10.699832px;}
.wse8{word-spacing:10.759608px;}
.ws1c5{word-spacing:10.819384px;}
.wsbf{word-spacing:10.879159px;}
.ws1fc{word-spacing:10.938935px;}
.wsc4{word-spacing:10.998710px;}
.wsff{word-spacing:11.058486px;}
.ws33{word-spacing:11.108382px;}
.ws14c{word-spacing:11.118262px;}
.ws97{word-spacing:11.178037px;}
.ws132{word-spacing:11.237813px;}
.ws162{word-spacing:11.287812px;}
.ws91{word-spacing:11.297588px;}
.ws15e{word-spacing:11.328709px;}
.ws26{word-spacing:11.349342px;}
.ws178{word-spacing:11.417140px;}
.ws93{word-spacing:11.476915px;}
.ws281{word-spacing:11.508869px;}
.ws32{word-spacing:11.521710px;}
.wsad{word-spacing:11.536691px;}
.ws44{word-spacing:11.590456px;}
.wseb{word-spacing:11.596466px;}
.ws221{word-spacing:11.656242px;}
.ws120{word-spacing:11.716018px;}
.ws1ba{word-spacing:11.775793px;}
.ws225{word-spacing:11.835569px;}
.wsd1{word-spacing:11.895344px;}
.ws1fa{word-spacing:11.907329px;}
.ws18c{word-spacing:11.955120px;}
.ws24e{word-spacing:11.963765px;}
.ws25a{word-spacing:12.054744px;}
.ws122{word-spacing:12.074671px;}
.wse6{word-spacing:12.134447px;}
.ws11b{word-spacing:12.194222px;}
.ws148{word-spacing:12.253998px;}
.ws171{word-spacing:12.313774px;}
.ws1b2{word-spacing:12.343409px;}
.ws267{word-spacing:12.373171px;}
.ws104{word-spacing:12.373549px;}
.ws1af{word-spacing:12.399261px;}
.ws244{word-spacing:12.418661px;}
.ws53{word-spacing:12.433325px;}
.ws129{word-spacing:12.493100px;}
.ws215{word-spacing:12.525813px;}
.ws143{word-spacing:12.552876px;}
.ws25e{word-spacing:12.555130px;}
.ws216{word-spacing:12.568418px;}
.ws6e{word-spacing:12.612652px;}
.wsc9{word-spacing:12.732203px;}
.ws5e{word-spacing:12.791978px;}
.ws26c{word-spacing:12.828067px;}
.ws21b{word-spacing:12.851754px;}
.ws1ac{word-spacing:12.871825px;}
.ws201{word-spacing:12.911530px;}
.ws1a9{word-spacing:12.930068px;}
.ws1fd{word-spacing:12.971305px;}
.ws1cc{word-spacing:12.983864px;}
.ws263{word-spacing:13.010026px;}
.ws12f{word-spacing:13.031081px;}
.ws17b{word-spacing:13.090856px;}
.ws21c{word-spacing:13.150632px;}
.ws1a7{word-spacing:13.210408px;}
.wsf5{word-spacing:13.270183px;}
.ws118{word-spacing:13.329959px;}
.ws286{word-spacing:13.373942px;}
.ws17a{word-spacing:13.389734px;}
.ws89{word-spacing:13.449510px;}
.ws121{word-spacing:13.509286px;}
.ws22b{word-spacing:13.557067px;}
.wsd6{word-spacing:13.569061px;}
.ws1c7{word-spacing:13.688612px;}
.ws259{word-spacing:13.692370px;}
.ws159{word-spacing:13.808164px;}
.ws23e{word-spacing:13.828838px;}
.ws8f{word-spacing:13.927715px;}
.wsd0{word-spacing:13.987490px;}
.ws218{word-spacing:14.059256px;}
.ws232{word-spacing:14.107042px;}
.ws219{word-spacing:14.107077px;}
.ws236{word-spacing:14.166817px;}
.ws166{word-spacing:14.286368px;}
.ws1fb{word-spacing:14.405920px;}
.ws1ff{word-spacing:14.465695px;}
.ws7e{word-spacing:14.525471px;}
.ws22e{word-spacing:14.645022px;}
.ws191{word-spacing:14.764573px;}
.ws1a4{word-spacing:14.824349px;}
.ws65{word-spacing:14.884124px;}
.ws86{word-spacing:14.902157px;}
.ws52{word-spacing:14.943900px;}
.ws127{word-spacing:15.063451px;}
.ws11a{word-spacing:15.123227px;}
.ws1bf{word-spacing:15.238108px;}
.ws1c1{word-spacing:15.293319px;}
.ws94{word-spacing:15.302554px;}
.ws20a{word-spacing:15.481880px;}
.ws229{word-spacing:15.541656px;}
.ws150{word-spacing:15.601432px;}
.wsf4{word-spacing:15.661207px;}
.ws22c{word-spacing:15.720983px;}
.ws1d1{word-spacing:15.757186px;}
.ws1ce{word-spacing:15.762727px;}
.ws1cd{word-spacing:15.764326px;}
.ws1d0{word-spacing:15.772300px;}
.ws1cb{word-spacing:15.777841px;}
.ws231{word-spacing:15.780758px;}
.ws204{word-spacing:15.960085px;}
.ws243{word-spacing:16.194298px;}
.wsc0{word-spacing:16.199188px;}
.ws8e{word-spacing:16.258963px;}
.ws1c8{word-spacing:16.318739px;}
.ws6{word-spacing:16.386726px;}
.ws5{word-spacing:16.389426px;}
.ws8{word-spacing:16.390032px;}
.ws7{word-spacing:16.393338px;}
.ws30{word-spacing:16.428216px;}
.ws1a2{word-spacing:16.498066px;}
.ws131{word-spacing:16.557841px;}
.ws21f{word-spacing:16.677392px;}
.wsf2{word-spacing:16.916495px;}
.wsf8{word-spacing:17.036046px;}
.ws151{word-spacing:17.095822px;}
.ws224{word-spacing:17.215373px;}
.wsd7{word-spacing:17.275148px;}
.ws1be{word-spacing:17.334924px;}
.wsd9{word-spacing:17.394700px;}
.ws66{word-spacing:17.514251px;}
.ws1f6{word-spacing:17.574026px;}
.ws233{word-spacing:17.633802px;}
.ws82{word-spacing:17.753353px;}
.ws20c{word-spacing:17.813129px;}
.ws235{word-spacing:17.932680px;}
.ws64{word-spacing:18.410885px;}
.ws22d{word-spacing:18.470660px;}
.ws222{word-spacing:18.590212px;}
.ws124{word-spacing:18.649987px;}
.ws1d4{word-spacing:19.399262px;}
.ws1e{word-spacing:19.422654px;}
.ws202{word-spacing:19.785724px;}
.ws14f{word-spacing:20.443255px;}
.ws46{word-spacing:20.921460px;}
.wsef{word-spacing:21.818094px;}
.ws1b1{word-spacing:26.306540px;}
.ws81{word-spacing:26.845402px;}
.ws20{word-spacing:26.849628px;}
.ws142{word-spacing:26.899020px;}
.ws1ab{word-spacing:27.432713px;}
.ws1b6{word-spacing:27.855430px;}
.ws1b5{word-spacing:27.915205px;}
.ws125{word-spacing:28.632512px;}
.ws22f{word-spacing:29.409595px;}
.ws266{word-spacing:29.795688px;}
.ws238{word-spacing:30.126902px;}
.ws200{word-spacing:30.425780px;}
.ws16d{word-spacing:32.780758px;}
.ws12c{word-spacing:34.269437px;}
.ws2{word-spacing:36.416088px;}
.ws3{word-spacing:36.419148px;}
.ws4{word-spacing:36.427596px;}
.ws21{word-spacing:38.003784px;}
.wsee{word-spacing:38.017282px;}
.ws15c{word-spacing:38.566689px;}
.ws149{word-spacing:39.212794px;}
.ws144{word-spacing:39.810550px;}
.wsf{word-spacing:43.206120px;}
.ws226{word-spacing:46.086988px;}
.ws220{word-spacing:47.461826px;}
.ws1b8{word-spacing:54.276245px;}
.ws1d3{word-spacing:55.203503px;}
.ws1ee{word-spacing:56.664548px;}
.ws1d5{word-spacing:59.775750px;}
.ws217{word-spacing:63.864606px;}
.ws160{word-spacing:69.491784px;}
.ws12d{word-spacing:70.430548px;}
.ws21a{word-spacing:71.683079px;}
.ws1cf{word-spacing:79.890509px;}
.ws1e1{word-spacing:81.055917px;}
.ws1d2{word-spacing:88.634744px;}
.ws1c9{word-spacing:102.236887px;}
.ws1e6{word-spacing:108.696224px;}
.ws1e3{word-spacing:108.744044px;}
.ws1db{word-spacing:120.364450px;}
.ws1e8{word-spacing:140.592564px;}
.ws1ea{word-spacing:140.640385px;}
.ws20d{word-spacing:143.859898px;}
.ws1dc{word-spacing:148.243860px;}
.ws16f{word-spacing:151.208358px;}
.ws20f{word-spacing:160.771277px;}
.ws20e{word-spacing:164.360499px;}
.ws1e4{word-spacing:165.985303px;}
.ws1e7{word-spacing:166.033123px;}
.ws1d7{word-spacing:173.636599px;}
.ws1d6{word-spacing:177.653529px;}
.ws1d9{word-spacing:181.622639px;}
.ws177{word-spacing:190.228175px;}
.ws1eb{word-spacing:196.733948px;}
.ws1e9{word-spacing:196.781769px;}
.ws16e{word-spacing:197.355121px;}
.ws1da{word-spacing:199.077158px;}
.ws1d8{word-spacing:205.532939px;}
.ws1f0{word-spacing:209.332831px;}
.ws1e5{word-spacing:222.174508px;}
.ws1f2{word-spacing:223.031952px;}
.ws1e2{word-spacing:230.399651px;}
.ws176{word-spacing:247.303113px;}
.ws194{word-spacing:258.469694px;}
.ws1ef{word-spacing:299.952152px;}
.ws156{word-spacing:346.805557px;}
.ws174{word-spacing:350.788688px;}
.ws155{word-spacing:360.476950px;}
.ws157{word-spacing:411.735366px;}
.ws22a{word-spacing:440.619008px;}
.ws13c{word-spacing:451.091720px;}
.ws134{word-spacing:459.924369px;}
.ws13d{word-spacing:545.919970px;}
.ws152{word-spacing:585.350445px;}
.ws172{word-spacing:594.046334px;}
.ws17c{word-spacing:709.320580px;}
.ws1e0{word-spacing:2681.606508px;}
._22{margin-left:-7.591501px;}
._c{margin-left:-5.917784px;}
._4{margin-left:-4.771314px;}
._1{margin-left:-3.216912px;}
._0{margin-left:-1.861788px;}
._21{width:1.255284px;}
._2{width:2.614414px;}
._26{width:5.307690px;}
._46{width:6.515540px;}
._d{width:11.716018px;}
._45{width:13.558091px;}
._b{width:15.291820px;}
._a{width:16.447034px;}
._24{width:17.762855px;}
._8{width:18.948865px;}
._72{width:20.015424px;}
._5{width:21.205116px;}
._20{width:22.715657px;}
._9{width:24.448220px;}
._5a{width:25.703508px;}
._6{width:27.334392px;}
._71{width:28.485162px;}
._25{width:29.588922px;}
._68{width:30.773700px;}
._67{width:31.860395px;}
._47{width:33.943796px;}
._3{width:35.019000px;}
._70{width:36.194771px;}
._69{width:37.407402px;}
._44{width:39.246632px;}
._6e{width:41.259067px;}
._23{width:42.312456px;}
._6b{width:43.607981px;}
._6f{width:46.490371px;}
._5d{width:47.835819px;}
._27{width:49.170181px;}
._17{width:50.185383px;}
._5b{width:53.715757px;}
._48{width:55.292430px;}
._6c{width:57.109162px;}
._6d{width:58.206006px;}
._5c{width:59.335337px;}
._6a{width:60.637637px;}
._52{width:66.048831px;}
._39{width:67.081055px;}
._2d{width:70.457963px;}
._43{width:71.488339px;}
._32{width:73.884907px;}
._4e{width:76.048346px;}
._33{width:77.284435px;}
._51{width:78.502741px;}
._30{width:79.614757px;}
._31{width:80.711379px;}
._2c{width:84.138323px;}
._4f{width:86.294116px;}
._64{width:89.383202px;}
._50{width:90.735838px;}
._57{width:92.245937px;}
._2b{width:94.062752px;}
._28{width:95.927009px;}
._2e{width:98.202500px;}
._1b{width:99.402409px;}
._2a{width:100.899900px;}
._19{width:103.098260px;}
._36{width:104.343583px;}
._4b{width:105.967234px;}
._3c{width:107.753788px;}
._35{width:108.829057px;}
._34{width:111.115224px;}
._3a{width:113.936556px;}
._1a{width:115.177521px;}
._60{width:116.513032px;}
._62{width:117.627462px;}
._3b{width:118.681916px;}
._1c{width:120.748396px;}
._37{width:121.889535px;}
._13{width:123.328459px;}
._f{width:125.314466px;}
._16{width:126.335937px;}
._4d{width:127.498010px;}
._66{width:128.873302px;}
._38{width:131.649471px;}
._2f{width:135.103830px;}
._1e{width:136.244607px;}
._e{width:137.984613px;}
._1d{width:143.065227px;}
._3e{width:146.234544px;}
._61{width:151.524246px;}
._29{width:152.542133px;}
._63{width:153.758712px;}
._58{width:160.799847px;}
._4c{width:164.408295px;}
._65{width:171.542209px;}
._56{width:180.881204px;}
._41{width:193.912533px;}
._3d{width:198.324089px;}
._14{width:211.950593px;}
._54{width:230.973498px;}
._5e{width:248.464701px;}
._53{width:261.722144px;}
._5f{width:273.492249px;}
._55{width:287.114882px;}
._4a{width:315.653035px;}
._42{width:322.836871px;}
._15{width:342.923880px;}
._1f{width:380.115843px;}
._10{width:440.638662px;}
._3f{width:486.574605px;}
._40{width:492.787825px;}
._49{width:493.836905px;}
._11{width:590.195399px;}
._12{width:593.924583px;}
._18{width:669.318335px;}
._59{width:2693.663081px;}
._7{width:2716.928568px;}
.fc2{color:rgb(79,76,77);}
.fc1{color:rgb(11,111,174);}
.fc0{color:rgb(0,0,0);}
.fs1c{font-size:16.214430px;}
.fs1b{font-size:19.457447px;}
.fs19{font-size:20.448934px;}
.fs21{font-size:21.395182px;}
.fs16{font-size:21.415350px;}
.fs1a{font-size:25.943154px;}
.fs11{font-size:27.415550px;}
.fs2d{font-size:27.471615px;}
.fs5{font-size:27.618000px;}
.fs15{font-size:28.553680px;}
.fs18{font-size:28.628425px;}
.fs14{font-size:29.887800px;}
.fs20{font-size:29.953168px;}
.fs2e{font-size:32.335333px;}
.fs1e{font-size:32.577130px;}
.fs2b{font-size:33.122240px;}
.fsf{font-size:33.458161px;}
.fs23{font-size:33.459177px;}
.fs25{font-size:34.057110px;}
.fse{font-size:35.865600px;}
.fs1{font-size:35.868000px;}
.fs2c{font-size:36.628667px;}
.fs29{font-size:38.647265px;}
.fs6{font-size:39.450000px;}
.fs17{font-size:40.897868px;}
.fs4{font-size:41.424000px;}
.fsb{font-size:41.842800px;}
.fs0{font-size:41.844000px;}
.fs2f{font-size:42.604807px;}
.fs1f{font-size:42.790363px;}
.fs2a{font-size:44.162802px;}
.fs30{font-size:45.489600px;}
.fs7{font-size:46.026000px;}
.fs1d{font-size:46.538891px;}
.fs22{font-size:47.798961px;}
.fs10{font-size:47.820600px;}
.fs24{font-size:48.653154px;}
.fs13{font-size:51.430553px;}
.fs9{font-size:53.796000px;}
.fsd{font-size:53.798400px;}
.fsa{font-size:54.000000px;}
.fs28{font-size:55.210537px;}
.fs27{font-size:55.852527px;}
.fs26{font-size:58.243551px;}
.fs3{font-size:59.178000px;}
.fsc{font-size:59.775600px;}
.fs8{font-size:59.778000px;}
.fs12{font-size:68.573784px;}
.fs2{font-size:131.508000px;}
.y0{bottom:0.000000px;}
.y38{bottom:39.831000px;}
.ya0{bottom:47.301000px;}
.y14d{bottom:47.302500px;}
.y2c{bottom:78.546000px;}
.y2b7{bottom:78.547500px;}
.y242{bottom:90.480338px;}
.y189{bottom:91.996500px;}
.y241{bottom:92.813084px;}
.y240{bottom:92.953685px;}
.y37{bottom:96.478500px;}
.y2b{bottom:96.480000px;}
.y71{bottom:97.002000px;}
.y3cd{bottom:97.440000px;}
.y23f{bottom:100.643638px;}
.y50f{bottom:105.445500px;}
.y4b2{bottom:106.807500px;}
.y481{bottom:109.267500px;}
.y188{bottom:109.665000px;}
.y27b{bottom:114.372000px;}
.y9f{bottom:114.411000px;}
.y2a{bottom:114.412500px;}
.y70{bottom:114.934500px;}
.y3cc{bottom:115.372500px;}
.y126{bottom:116.616000px;}
.y594{bottom:118.896000px;}
.y50e{bottom:119.200500px;}
.y554{bottom:119.710500px;}
.y480{bottom:121.821000px;}
.y4b1{bottom:124.741500px;}
.y23e{bottom:125.850000px;}
.y422{bottom:128.943000px;}
.y27a{bottom:132.304500px;}
.y9e{bottom:132.343500px;}
.y29{bottom:132.345000px;}
.y50d{bottom:132.649500px;}
.y6f{bottom:132.867000px;}
.y553{bottom:133.161000px;}
.y3cb{bottom:133.305000px;}
.y202{bottom:133.647000px;}
.y593{bottom:133.839000px;}
.y47f{bottom:134.373000px;}
.y44f{bottom:136.698000px;}
.y187{bottom:142.500000px;}
.y4b0{bottom:142.674000px;}
.y23d{bottom:143.782500px;}
.y50c{bottom:146.098500px;}
.y552{bottom:146.610000px;}
.y592{bottom:147.289500px;}
.y1cd{bottom:150.025500px;}
.y279{bottom:150.237000px;}
.y28{bottom:150.277500px;}
.y407{bottom:150.525000px;}
.y33c{bottom:150.631500px;}
.y6e{bottom:150.799500px;}
.y36b{bottom:151.102500px;}
.y3ca{bottom:151.237500px;}
.y201{bottom:151.579500px;}
.y125{bottom:153.979500px;}
.y44e{bottom:154.630500px;}
.y421{bottom:157.201913px;}
.y50b{bottom:159.853500px;}
.y186{bottom:160.432500px;}
.y4af{bottom:160.606500px;}
.y591{bottom:160.738500px;}
.y551{bottom:160.875000px;}
.y23c{bottom:161.715000px;}
.y47e{bottom:163.138500px;}
.y1cc{bottom:167.958000px;}
.y278{bottom:168.169500px;}
.y27{bottom:168.210000px;}
.y406{bottom:168.457500px;}
.y33b{bottom:168.564000px;}
.y6d{bottom:168.732000px;}
.y36a{bottom:169.035000px;}
.y3c9{bottom:169.171500px;}
.y41f{bottom:169.184031px;}
.y200{bottom:169.512000px;}
.y124{bottom:171.912000px;}
.y44d{bottom:172.563000px;}
.y50a{bottom:173.302500px;}
.y550{bottom:174.324000px;}
.y590{bottom:175.683000px;}
.y47d{bottom:176.587500px;}
.y14c{bottom:177.522000px;}
.y185{bottom:178.365000px;}
.y4ae{bottom:178.539000px;}
.y23b{bottom:179.647500px;}
.y420{bottom:181.167484px;}
.y1cb{bottom:185.890500px;}
.y277{bottom:186.102000px;}
.y26{bottom:186.142500px;}
.y405{bottom:186.390000px;}
.y33a{bottom:186.496500px;}
.y6c{bottom:186.664500px;}
.y509{bottom:186.751500px;}
.y369{bottom:186.967500px;}
.y3c8{bottom:187.104000px;}
.y1ff{bottom:187.444500px;}
.y54f{bottom:187.773000px;}
.y36{bottom:188.617500px;}
.y58f{bottom:189.132000px;}
.y123{bottom:189.846000px;}
.y47c{bottom:190.038000px;}
.y44c{bottom:190.495500px;}
.y41e{bottom:193.682824px;}
.y14b{bottom:195.454500px;}
.y184{bottom:196.297500px;}
.y4ad{bottom:196.471500px;}
.y23a{bottom:197.581500px;}
.y508{bottom:200.506500px;}
.y3d6{bottom:200.869500px;}
.y54e{bottom:201.223500px;}
.y2b6{bottom:201.370500px;}
.y58e{bottom:202.582500px;}
.y303{bottom:202.726500px;}
.y47b{bottom:203.487000px;}
.y1ca{bottom:203.823000px;}
.y276{bottom:204.034500px;}
.y9d{bottom:204.075000px;}
.y25{bottom:204.076500px;}
.y16d{bottom:204.094500px;}
.y404{bottom:204.322500px;}
.y339{bottom:204.429000px;}
.y368{bottom:204.900000px;}
.y3c7{bottom:205.036500px;}
.y6b{bottom:205.120500px;}
.y1fe{bottom:205.377000px;}
.y41c{bottom:205.664941px;}
.y35{bottom:206.550000px;}
.y302{bottom:206.958000px;}
.y122{bottom:207.778500px;}
.y44b{bottom:208.428000px;}
.y14a{bottom:213.387000px;}
.y3d5{bottom:213.421500px;}
.y507{bottom:213.955500px;}
.y183{bottom:214.230000px;}
.y4ac{bottom:214.404000px;}
.y54d{bottom:215.488500px;}
.y239{bottom:215.514000px;}
.y58d{bottom:217.525500px;}
.y47a{bottom:217.534500px;}
.y41d{bottom:217.647059px;}
.y301{bottom:220.849500px;}
.y1c9{bottom:221.503500px;}
.ycc{bottom:221.767500px;}
.y9c{bottom:222.007500px;}
.y24{bottom:222.009000px;}
.y16c{bottom:222.027000px;}
.y403{bottom:222.255000px;}
.y338{bottom:222.363000px;}
.y367{bottom:222.832500px;}
.y3c6{bottom:222.969000px;}
.y6a{bottom:223.053000px;}
.y1fd{bottom:223.311000px;}
.y2b5{bottom:223.786500px;}
.y34{bottom:224.482500px;}
.y39a{bottom:224.998500px;}
.y300{bottom:225.081000px;}
.y3d4{bottom:225.975000px;}
.y44a{bottom:226.360500px;}
.y506{bottom:227.710500px;}
.y54c{bottom:228.937500px;}
.y41b{bottom:230.162398px;}
.y121{bottom:230.197500px;}
.y58c{bottom:230.976000px;}
.y479{bottom:230.983500px;}
.y149{bottom:231.321000px;}
.y182{bottom:232.164000px;}
.y4ab{bottom:232.338000px;}
.y238{bottom:233.446500px;}
.y1c8{bottom:239.436000px;}
.ycb{bottom:239.701500px;}
.y9b{bottom:239.940000px;}
.y23{bottom:239.941500px;}
.y402{bottom:240.189000px;}
.y337{bottom:240.648000px;}
.y3c5{bottom:240.901500px;}
.y69{bottom:240.985500px;}
.y505{bottom:241.159500px;}
.y1fc{bottom:241.243500px;}
.y366{bottom:241.590000px;}
.y419{bottom:242.145852px;}
.y54b{bottom:242.386500px;}
.y33{bottom:242.415000px;}
.y399{bottom:242.931000px;}
.y2ff{bottom:243.015000px;}
.y449{bottom:244.294500px;}
.y58b{bottom:244.425000px;}
.y478{bottom:244.434000px;}
.y2b4{bottom:246.202500px;}
.y3d3{bottom:246.670500px;}
.y120{bottom:248.130000px;}
.y148{bottom:249.253500px;}
.y181{bottom:250.096500px;}
.y237{bottom:251.379000px;}
.y41a{bottom:254.127969px;}
.y504{bottom:254.913000px;}
.y54a{bottom:255.837000px;}
.y4aa{bottom:256.654500px;}
.y1c7{bottom:257.370000px;}
.yca{bottom:257.634000px;}
.y22{bottom:257.874000px;}
.y16b{bottom:257.928000px;}
.y401{bottom:258.121500px;}
.y336{bottom:258.582000px;}
.y3c4{bottom:258.834000px;}
.y68{bottom:258.918000px;}
.y1fb{bottom:259.176000px;}
.y58a{bottom:259.369500px;}
.y365{bottom:259.524000px;}
.y32{bottom:260.347500px;}
.y2fe{bottom:260.947500px;}
.y448{bottom:262.227000px;}
.y398{bottom:262.359000px;}
.y2b3{bottom:265.672061px;}
.y11f{bottom:266.064000px;}
.y418{bottom:266.643309px;}
.y180{bottom:268.029000px;}
.y275{bottom:268.141500px;}
.y503{bottom:268.363500px;}
.y549{bottom:269.286000px;}
.y236{bottom:269.311500px;}
.y147{bottom:269.787000px;}
.y589{bottom:272.818500px;}
.y4a9{bottom:274.587000px;}
.y1c6{bottom:275.302500px;}
.yc9{bottom:275.566500px;}
.y21{bottom:275.806500px;}
.y16a{bottom:275.860500px;}
.y400{bottom:276.054000px;}
.y335{bottom:276.514500px;}
.y2b2{bottom:276.641747px;}
.y3c3{bottom:276.768000px;}
.y67{bottom:276.852000px;}
.y1fa{bottom:277.108500px;}
.y364{bottom:277.456500px;}
.y31{bottom:278.280000px;}
.y2fd{bottom:278.880000px;}
.y447{bottom:280.159500px;}
.y477{bottom:280.666500px;}
.y274{bottom:280.693500px;}
.y502{bottom:281.812500px;}
.y548{bottom:283.551000px;}
.y11e{bottom:283.996500px;}
.y17f{bottom:285.961500px;}
.y588{bottom:286.267500px;}
.y235{bottom:287.244000px;}
.y146{bottom:290.320500px;}
.y2b1{bottom:291.034500px;}
.y4a8{bottom:292.519500px;}
.y1c5{bottom:293.235000px;}
.yc8{bottom:293.499000px;}
.y20{bottom:293.739000px;}
.y2d8{bottom:293.740500px;}
.y169{bottom:293.793000px;}
.y3ff{bottom:293.986500px;}
.y334{bottom:294.447000px;}
.y9a{bottom:294.579000px;}
.y3c2{bottom:294.700500px;}
.y66{bottom:294.784500px;}
.y1f9{bottom:295.041000px;}
.y363{bottom:295.389000px;}
.y501{bottom:295.566000px;}
.y30{bottom:296.214000px;}
.y2fc{bottom:296.812500px;}
.y547{bottom:297.000000px;}
.y446{bottom:298.092000px;}
.y397{bottom:298.227000px;}
.y476{bottom:298.599000px;}
.y417{bottom:300.220500px;}
.y587{bottom:301.212000px;}
.y11d{bottom:301.929000px;}
.y17e{bottom:303.894000px;}
.y234{bottom:305.178000px;}
.y273{bottom:307.099137px;}
.y145{bottom:308.254500px;}
.y500{bottom:309.016500px;}
.y546{bottom:310.450500px;}
.y4a7{bottom:310.452000px;}
.y1c4{bottom:311.167500px;}
.yc7{bottom:311.431500px;}
.yf2{bottom:311.671500px;}
.y1f{bottom:311.673000px;}
.y168{bottom:311.742000px;}
.y3fe{bottom:311.919000px;}
.y333{bottom:312.379500px;}
.y99{bottom:312.511500px;}
.y3c1{bottom:312.633000px;}
.y65{bottom:312.717000px;}
.y1f8{bottom:312.973500px;}
.y362{bottom:313.321500px;}
.y2b0{bottom:313.450500px;}
.y2f{bottom:314.146500px;}
.y272{bottom:314.395354px;}
.y586{bottom:314.661000px;}
.y2fb{bottom:314.745000px;}
.y445{bottom:316.024500px;}
.y396{bottom:316.159500px;}
.y475{bottom:316.531500px;}
.y416{bottom:318.153000px;}
.y11c{bottom:319.861500px;}
.y271{bottom:321.691571px;}
.y17d{bottom:321.828000px;}
.y4ff{bottom:322.465500px;}
.y233{bottom:323.110500px;}
.y545{bottom:324.714000px;}
.y144{bottom:326.187000px;}
.y585{bottom:328.111500px;}
.y4a6{bottom:328.386000px;}
.y270{bottom:328.988601px;}
.y1c3{bottom:329.100000px;}
.yc6{bottom:329.365500px;}
.yf1{bottom:329.604000px;}
.y1e{bottom:329.605500px;}
.y167{bottom:329.674500px;}
.y3fd{bottom:329.851500px;}
.y98{bottom:330.445500px;}
.y3c0{bottom:330.565500px;}
.y64{bottom:330.649500px;}
.y1f7{bottom:330.907500px;}
.y1a1{bottom:331.045500px;}
.y361{bottom:331.254000px;}
.y2e{bottom:332.079000px;}
.y332{bottom:332.160000px;}
.y2fa{bottom:332.677500px;}
.y444{bottom:333.957000px;}
.y395{bottom:334.092000px;}
.y474{bottom:334.464000px;}
.y415{bottom:336.085500px;}
.y4fe{bottom:336.220500px;}
.y26f{bottom:336.284818px;}
.y11b{bottom:337.794000px;}
.y544{bottom:338.164500px;}
.y17c{bottom:339.760500px;}
.y232{bottom:341.043000px;}
.y584{bottom:343.054500px;}
.y26e{bottom:343.581035px;}
.y143{bottom:344.119500px;}
.y4a5{bottom:346.318500px;}
.y1c2{bottom:347.032500px;}
.yc5{bottom:347.298000px;}
.yf0{bottom:347.536500px;}
.y1d{bottom:347.538000px;}
.y166{bottom:347.608500px;}
.y3fc{bottom:347.785500px;}
.y97{bottom:348.378000px;}
.y3bf{bottom:348.498000px;}
.y63{bottom:348.582000px;}
.y1a0{bottom:348.978000px;}
.y360{bottom:349.188000px;}
.y4fd{bottom:349.669500px;}
.y2af{bottom:349.777500px;}
.y2d{bottom:350.011500px;}
.y1f6{bottom:350.142000px;}
.y2f9{bottom:350.611500px;}
.y26d{bottom:350.878066px;}
.y543{bottom:351.613500px;}
.y443{bottom:351.891000px;}
.y394{bottom:352.024500px;}
.y414{bottom:354.018000px;}
.y473{bottom:354.291000px;}
.y11a{bottom:355.728000px;}
.y583{bottom:356.505000px;}
.y2d7{bottom:356.997000px;}
.y17b{bottom:357.693000px;}
.y26c{bottom:358.174283px;}
.y231{bottom:359.280000px;}
.y142{bottom:362.052000px;}
.y4fc{bottom:363.118500px;}
.y4a4{bottom:364.251000px;}
.y1c1{bottom:364.966500px;}
.yc4{bottom:365.230500px;}
.yef{bottom:365.470500px;}
.y3fb{bottom:365.718000px;}
.y542{bottom:365.878500px;}
.y96{bottom:366.310500px;}
.y3be{bottom:366.430500px;}
.y62{bottom:366.514500px;}
.y19f{bottom:366.912000px;}
.y35f{bottom:367.120500px;}
.y2ae{bottom:367.750500px;}
.y1f5{bottom:368.074500px;}
.y2f8{bottom:368.544000px;}
.y331{bottom:368.772000px;}
.y442{bottom:369.823500px;}
.y582{bottom:369.954000px;}
.y393{bottom:369.958500px;}
.y1c{bottom:370.417500px;}
.y165{bottom:371.572500px;}
.y413{bottom:371.952000px;}
.y472{bottom:372.225000px;}
.y26b{bottom:372.767531px;}
.y119{bottom:373.660500px;}
.y2d6{bottom:374.929500px;}
.y17a{bottom:375.625500px;}
.y4fb{bottom:376.569000px;}
.y230{bottom:377.212500px;}
.y541{bottom:379.327500px;}
.y141{bottom:379.984500px;}
.y26a{bottom:380.063748px;}
.yc3{bottom:383.163000px;}
.yee{bottom:383.403000px;}
.y3fa{bottom:383.650500px;}
.y95{bottom:384.243000px;}
.y3bd{bottom:384.364500px;}
.y19e{bottom:384.844500px;}
.y581{bottom:384.898500px;}
.y35e{bottom:385.053000px;}
.y1f4{bottom:386.007000px;}
.y2f7{bottom:386.476500px;}
.y330{bottom:386.706000px;}
.y269{bottom:387.360778px;}
.y441{bottom:387.756000px;}
.y392{bottom:387.891000px;}
.y61{bottom:388.539000px;}
.y4a3{bottom:388.567500px;}
.y164{bottom:389.505000px;}
.y412{bottom:389.884500px;}
.y471{bottom:390.157500px;}
.y4fa{bottom:390.322500px;}
.y118{bottom:391.593000px;}
.y540{bottom:392.778000px;}
.y2d5{bottom:392.862000px;}
.y179{bottom:393.558000px;}
.y268{bottom:394.656995px;}
.y22f{bottom:395.145000px;}
.y140{bottom:397.917000px;}
.y580{bottom:398.347500px;}
.yc2{bottom:401.095500px;}
.yed{bottom:401.335500px;}
.y3f9{bottom:401.583000px;}
.y267{bottom:401.953212px;}
.y94{bottom:402.175500px;}
.y3bc{bottom:402.297000px;}
.y35d{bottom:402.985500px;}
.y4f9{bottom:403.771500px;}
.y1f3{bottom:403.939500px;}
.y2f6{bottom:404.409000px;}
.y32f{bottom:404.638500px;}
.y440{bottom:405.688500px;}
.y19d{bottom:405.712500px;}
.y391{bottom:405.823500px;}
.y60{bottom:406.471500px;}
.y4a2{bottom:406.500000px;}
.y53f{bottom:407.041500px;}
.y163{bottom:407.437500px;}
.y470{bottom:408.090000px;}
.y266{bottom:409.250243px;}
.y117{bottom:409.525500px;}
.y411{bottom:410.431500px;}
.y2d4{bottom:410.794500px;}
.y178{bottom:411.490500px;}
.y57f{bottom:411.798000px;}
.y22e{bottom:413.077500px;}
.y2ad{bottom:414.360000px;}
.y13f{bottom:415.851000px;}
.y265{bottom:416.546460px;}
.y4f8{bottom:417.526500px;}
.yc1{bottom:419.028000px;}
.yec{bottom:419.268000px;}
.y3f8{bottom:419.515500px;}
.y93{bottom:420.109500px;}
.y3bb{bottom:420.229500px;}
.y53e{bottom:420.492000px;}
.y35c{bottom:420.918000px;}
.y1f2{bottom:421.872000px;}
.y2f5{bottom:422.341500px;}
.y32e{bottom:422.571000px;}
.y43f{bottom:423.621000px;}
.y390{bottom:423.757500px;}
.y264{bottom:424.167369px;}
.y5f{bottom:424.405500px;}
.y4a1{bottom:424.432500px;}
.y57e{bottom:425.247000px;}
.y162{bottom:425.370000px;}
.y46f{bottom:426.022500px;}
.y4d5{bottom:426.313500px;}
.y1b{bottom:426.868500px;}
.y1c0{bottom:426.970500px;}
.y116{bottom:427.458000px;}
.y2d3{bottom:428.727000px;}
.y177{bottom:429.424500px;}
.y4f7{bottom:430.975500px;}
.y22d{bottom:431.314500px;}
.y2ac{bottom:432.294000px;}
.y13e{bottom:433.783500px;}
.y53d{bottom:433.941000px;}
.y290{bottom:434.317500px;}
.yc0{bottom:436.962000px;}
.yeb{bottom:437.200500px;}
.y3f7{bottom:437.448000px;}
.y92{bottom:438.042000px;}
.y35b{bottom:438.850500px;}
.y3ba{bottom:439.123500px;}
.y1f1{bottom:439.806000px;}
.y57d{bottom:440.191500px;}
.y32d{bottom:440.503500px;}
.y43e{bottom:441.555000px;}
.y38f{bottom:441.690000px;}
.y5e{bottom:442.338000px;}
.y4a0{bottom:442.366500px;}
.y3d2{bottom:443.266500px;}
.y161{bottom:443.302500px;}
.y46e{bottom:443.955000px;}
.y4d4{bottom:444.246000px;}
.y4f6{bottom:444.426000px;}
.y19c{bottom:444.619500px;}
.y1a{bottom:444.801000px;}
.y115{bottom:445.390500px;}
.y2d2{bottom:446.661000px;}
.y176{bottom:447.357000px;}
.y263{bottom:447.463500px;}
.y53c{bottom:448.206000px;}
.y410{bottom:448.662000px;}
.y22c{bottom:449.247000px;}
.y2f4{bottom:450.214500px;}
.y2ab{bottom:450.226500px;}
.y13d{bottom:451.716000px;}
.y57c{bottom:453.640500px;}
.y28f{bottom:453.787061px;}
.ybf{bottom:454.894500px;}
.yea{bottom:455.134500px;}
.y3f6{bottom:455.382000px;}
.y3b9{bottom:457.056000px;}
.y35a{bottom:457.608000px;}
.y1f0{bottom:457.738500px;}
.y1bf{bottom:457.746558px;}
.y4f5{bottom:458.179500px;}
.y91{bottom:458.308500px;}
.y32c{bottom:458.436000px;}
.y43d{bottom:459.487500px;}
.y38e{bottom:459.622500px;}
.y5d{bottom:460.270500px;}
.y49f{bottom:460.299000px;}
.y53b{bottom:461.655000px;}
.y46d{bottom:461.887500px;}
.y4d3{bottom:462.178500px;}
.y19b{bottom:462.552000px;}
.y114{bottom:463.324500px;}
.y2d1{bottom:464.593500px;}
.y28e{bottom:464.756747px;}
.y175{bottom:465.289500px;}
.y262{bottom:465.396000px;}
.y40f{bottom:466.596000px;}
.y57b{bottom:467.089500px;}
.y22b{bottom:467.179500px;}
.y160{bottom:467.203500px;}
.y2f3{bottom:468.147000px;}
.y2aa{bottom:468.159000px;}
.y13c{bottom:469.648500px;}
.y4f4{bottom:471.628500px;}
.ybe{bottom:472.827000px;}
.ye9{bottom:473.067000px;}
.y3f5{bottom:473.314500px;}
.y3b8{bottom:474.988500px;}
.y53a{bottom:475.105500px;}
.y359{bottom:475.542000px;}
.y1ef{bottom:475.671000px;}
.y1be{bottom:477.032155px;}
.y43c{bottom:477.420000px;}
.y38d{bottom:477.555000px;}
.y32b{bottom:478.218000px;}
.y49e{bottom:478.231500px;}
.y28d{bottom:479.149500px;}
.y46c{bottom:479.821500px;}
.y4d2{bottom:480.111000px;}
.y19a{bottom:480.484500px;}
.y57a{bottom:480.540000px;}
.y113{bottom:481.257000px;}
.y5c{bottom:482.295000px;}
.y2d0{bottom:482.526000px;}
.y174{bottom:483.222000px;}
.y261{bottom:483.328500px;}
.y40e{bottom:484.528500px;}
.y15d{bottom:484.836000px;}
.y4f3{bottom:485.079000px;}
.y2f2{bottom:486.079500px;}
.y2a9{bottom:486.091500px;}
.y13b{bottom:487.581000px;}
.y539{bottom:489.370500px;}
.ybd{bottom:490.759500px;}
.ye8{bottom:490.999500px;}
.y3f4{bottom:491.247000px;}
.y19{bottom:492.051000px;}
.y3b7{bottom:492.921000px;}
.y358{bottom:493.474500px;}
.y43b{bottom:495.352500px;}
.y579{bottom:495.483000px;}
.y38c{bottom:495.487500px;}
.y90{bottom:495.949500px;}
.y32a{bottom:496.150500px;}
.y49d{bottom:496.164000px;}
.y1bd{bottom:496.319903px;}
.y1ee{bottom:496.399500px;}
.y46b{bottom:497.754000px;}
.y4d1{bottom:498.043500px;}
.y199{bottom:498.418500px;}
.y4f2{bottom:498.528000px;}
.y15f{bottom:499.032000px;}
.y112{bottom:499.189500px;}
.y5b{bottom:500.227500px;}
.y2cf{bottom:500.458500px;}
.y173{bottom:501.154500px;}
.y260{bottom:501.261000px;}
.y28c{bottom:501.565500px;}
.y40d{bottom:502.461000px;}
.y538{bottom:502.819500px;}
.y15e{bottom:503.515500px;}
.y2f1{bottom:504.013500px;}
.y2a8{bottom:504.024000px;}
.y13a{bottom:505.515000px;}
.ybc{bottom:508.692000px;}
.ye7{bottom:508.932000px;}
.y578{bottom:508.933500px;}
.y18{bottom:509.985000px;}
.y3b6{bottom:510.853500px;}
.y357{bottom:511.407000px;}
.y4f1{bottom:512.281500px;}
.y43a{bottom:513.285000px;}
.y38b{bottom:513.420000px;}
.y8f{bottom:513.882000px;}
.y49c{bottom:514.096500px;}
.y1ed{bottom:514.332000px;}
.y1bc{bottom:515.605500px;}
.y4d0{bottom:515.976000px;}
.y537{bottom:517.084500px;}
.y111{bottom:517.122000px;}
.y46a{bottom:517.581000px;}
.y198{bottom:517.792500px;}
.y2ce{bottom:518.391000px;}
.y5a{bottom:518.682000px;}
.y172{bottom:519.087000px;}
.y25f{bottom:519.195000px;}
.y40c{bottom:520.393500px;}
.y2f0{bottom:521.946000px;}
.y2a7{bottom:521.956500px;}
.y577{bottom:522.382500px;}
.y15c{bottom:523.278000px;}
.y4f0{bottom:525.732000px;}
.y139{bottom:526.048500px;}
.ybb{bottom:526.624500px;}
.ye6{bottom:526.864500px;}
.y17{bottom:527.917500px;}
.y3b5{bottom:528.786000px;}
.y356{bottom:529.339500px;}
.y536{bottom:530.533500px;}
.y439{bottom:531.217500px;}
.y22a{bottom:531.342000px;}
.y38a{bottom:531.354000px;}
.y8e{bottom:531.814500px;}
.y49b{bottom:532.030500px;}
.y329{bottom:532.762500px;}
.y4cf{bottom:533.910000px;}
.y1bb{bottom:534.891097px;}
.y469{bottom:535.513500px;}
.y197{bottom:535.725000px;}
.y576{bottom:535.831500px;}
.y2cd{bottom:536.323500px;}
.y59{bottom:536.614500px;}
.y171{bottom:537.021000px;}
.y25e{bottom:537.127500px;}
.y28b{bottom:537.534000px;}
.y40b{bottom:538.326000px;}
.y4ef{bottom:539.181000px;}
.y2ef{bottom:539.878500px;}
.y2a6{bottom:539.890500px;}
.y159{bottom:540.909000px;}
.y535{bottom:543.982500px;}
.yba{bottom:544.558500px;}
.ye5{bottom:544.797000px;}
.y16{bottom:545.850000px;}
.y138{bottom:546.408000px;}
.y3b4{bottom:546.720000px;}
.y355{bottom:547.272000px;}
.y438{bottom:549.151500px;}
.y575{bottom:549.282000px;}
.y389{bottom:549.286500px;}
.y8d{bottom:549.747000px;}
.y49a{bottom:549.963000px;}
.y328{bottom:550.695000px;}
.y4ce{bottom:551.842500px;}
.y4ee{bottom:552.631500px;}
.y1ec{bottom:552.946500px;}
.y468{bottom:553.446000px;}
.y196{bottom:553.659000px;}
.y1ba{bottom:554.178845px;}
.y2cc{bottom:554.257500px;}
.y58{bottom:554.548500px;}
.y170{bottom:554.953500px;}
.y25d{bottom:555.060000px;}
.y15b{bottom:555.106500px;}
.y3f3{bottom:555.130500px;}
.y28a{bottom:555.508500px;}
.y40a{bottom:556.260000px;}
.y2ee{bottom:557.811000px;}
.y2a5{bottom:557.823000px;}
.y534{bottom:558.247500px;}
.y15a{bottom:559.590000px;}
.y229{bottom:560.106000px;}
.yb9{bottom:562.491000px;}
.ye4{bottom:562.731000px;}
.y15{bottom:563.782500px;}
.y574{bottom:564.225000px;}
.y137{bottom:564.340500px;}
.y3b3{bottom:564.652500px;}
.y354{bottom:565.204500px;}
.y437{bottom:567.084000px;}
.y388{bottom:567.219000px;}
.y3f2{bottom:567.684000px;}
.y499{bottom:567.895500px;}
.y8c{bottom:568.522500px;}
.y327{bottom:568.627500px;}
.y227{bottom:569.521500px;}
.y4cd{bottom:569.775000px;}
.y228{bottom:570.232500px;}
.y4ed{bottom:570.664500px;}
.y1eb{bottom:570.879000px;}
.y467{bottom:571.380000px;}
.y533{bottom:571.698000px;}
.y226{bottom:571.887000px;}
.y2cb{bottom:572.190000px;}
.y57{bottom:572.481000px;}
.y16f{bottom:572.886000px;}
.y225{bottom:573.781500px;}
.y409{bottom:574.192500px;}
.y1b9{bottom:574.322679px;}
.y25c{bottom:574.446000px;}
.y2ed{bottom:575.743500px;}
.y2a4{bottom:575.755500px;}
.y573{bottom:577.675500px;}
.y158{bottom:578.985000px;}
.yb8{bottom:580.423500px;}
.ye3{bottom:580.663500px;}
.y14{bottom:581.715000px;}
.y136{bottom:582.273000px;}
.y3b2{bottom:582.585000px;}
.y353{bottom:583.138500px;}
.y436{bottom:585.016500px;}
.y223{bottom:585.141000px;}
.y532{bottom:585.147000px;}
.y387{bottom:585.151500px;}
.y498{bottom:585.828000px;}
.y224{bottom:585.853500px;}
.y110{bottom:586.017000px;}
.y326{bottom:586.560000px;}
.y222{bottom:587.508000px;}
.y4cc{bottom:587.707500px;}
.y1ea{bottom:588.811500px;}
.y4ec{bottom:589.147500px;}
.y466{bottom:589.312500px;}
.y221{bottom:589.402500px;}
.y56{bottom:590.413500px;}
.y572{bottom:591.124500px;}
.y25b{bottom:592.378500px;}
.y195{bottom:592.566000px;}
.y2ca{bottom:592.656000px;}
.y2ec{bottom:593.676000px;}
.y2a3{bottom:593.688000px;}
.y3f1{bottom:594.948839px;}
.y157{bottom:596.917500px;}
.yb7{bottom:598.356000px;}
.ye2{bottom:598.596000px;}
.y531{bottom:599.412000px;}
.y13{bottom:599.649000px;}
.y135{bottom:600.205500px;}
.y3b1{bottom:600.517500px;}
.y21f{bottom:600.762000px;}
.y352{bottom:601.071000px;}
.y220{bottom:601.473000px;}
.y289{bottom:602.046000px;}
.y435{bottom:602.949000px;}
.y386{bottom:603.084000px;}
.y21e{bottom:603.127500px;}
.y497{bottom:603.760500px;}
.y3ef{bottom:604.042784px;}
.y325{bottom:604.494000px;}
.y21d{bottom:605.022000px;}
.y4cb{bottom:605.640000px;}
.y571{bottom:606.069000px;}
.y8b{bottom:606.162000px;}
.y465{bottom:607.245000px;}
.y55{bottom:608.346000px;}
.y1b8{bottom:608.500500px;}
.y194{bottom:610.498500px;}
.y2c9{bottom:610.588500px;}
.y2eb{bottom:611.610000px;}
.y2a2{bottom:611.620500px;}
.y530{bottom:612.861000px;}
.y3f0{bottom:613.136729px;}
.y10f{bottom:613.391533px;}
.y156{bottom:614.850000px;}
.yb6{bottom:616.288500px;}
.ye1{bottom:616.528500px;}
.y12{bottom:617.581500px;}
.y134{bottom:618.139500px;}
.y3b0{bottom:618.450000px;}
.y351{bottom:619.003500px;}
.y570{bottom:619.518000px;}
.y288{bottom:619.980000px;}
.y434{bottom:620.881500px;}
.y21c{bottom:621.015000px;}
.y385{bottom:621.018000px;}
.y496{bottom:621.693000px;}
.y324{bottom:622.426500px;}
.y3ee{bottom:622.635367px;}
.y10e{bottom:622.801260px;}
.y4ca{bottom:623.574000px;}
.y8a{bottom:624.094500px;}
.y464{bottom:625.177500px;}
.y4eb{bottom:626.170500px;}
.y54{bottom:626.278500px;}
.y52f{bottom:626.311500px;}
.y1b7{bottom:626.434500px;}
.y408{bottom:627.213000px;}
.y25a{bottom:628.113000px;}
.y193{bottom:628.431000px;}
.y2c8{bottom:628.521000px;}
.y16e{bottom:628.585500px;}
.y2ea{bottom:629.542500px;}
.y2a1{bottom:629.554500px;}
.y3ec{bottom:631.730326px;}
.y10d{bottom:632.212037px;}
.y155{bottom:632.782500px;}
.y56f{bottom:632.968500px;}
.yb5{bottom:634.221000px;}
.ye0{bottom:634.461000px;}
.y11{bottom:635.514000px;}
.y133{bottom:636.072000px;}
.y3af{bottom:636.384000px;}
.y350{bottom:636.936000px;}
.y287{bottom:637.912500px;}
.y433{bottom:638.814000px;}
.y384{bottom:638.950500px;}
.y495{bottom:639.627000px;}
.y52e{bottom:639.760500px;}
.y3d1{bottom:639.766500px;}
.y323{bottom:640.359000px;}
.y3ed{bottom:640.824271px;}
.y4c9{bottom:641.506500px;}
.y10c{bottom:641.621764px;}
.y89{bottom:642.027000px;}
.y463{bottom:643.110000px;}
.y4ea{bottom:644.103000px;}
.y53{bottom:644.211000px;}
.y1b6{bottom:644.367000px;}
.y259{bottom:646.045500px;}
.y192{bottom:646.363500px;}
.y2c7{bottom:646.453500px;}
.y2e9{bottom:647.475000px;}
.y56e{bottom:647.911500px;}
.y3eb{bottom:650.322910px;}
.y29f{bottom:650.430000px;}
.y10b{bottom:651.031492px;}
.yb4{bottom:652.155000px;}
.y3d0{bottom:652.318500px;}
.ydf{bottom:652.393500px;}
.y10{bottom:653.446500px;}
.y154{bottom:653.722500px;}
.y132{bottom:654.004500px;}
.y52d{bottom:654.025500px;}
.y3ae{bottom:654.316500px;}
.y34f{bottom:654.868500px;}
.y286{bottom:655.845000px;}
.y432{bottom:656.748000px;}
.y383{bottom:656.883000px;}
.y494{bottom:657.559500px;}
.y322{bottom:658.291500px;}
.y3ea{bottom:659.416855px;}
.y4c8{bottom:659.439000px;}
.y88{bottom:659.959500px;}
.y10a{bottom:660.442268px;}
.y29e{bottom:660.681000px;}
.y462{bottom:661.042500px;}
.y56d{bottom:661.362000px;}
.y52{bottom:662.145000px;}
.y1b5{bottom:662.299500px;}
.y2a0{bottom:663.783000px;}
.y258{bottom:663.978000px;}
.y2c6{bottom:664.246500px;}
.y191{bottom:664.297500px;}
.y2e8{bottom:665.407500px;}
.y4e9{bottom:666.181500px;}
.y52c{bottom:667.474500px;}
.y109{bottom:669.851996px;}
.yb3{bottom:670.087500px;}
.yde{bottom:670.327500px;}
.y1e9{bottom:671.298000px;}
.yf{bottom:671.379000px;}
.y131{bottom:671.937000px;}
.y3ad{bottom:672.249000px;}
.y34e{bottom:672.801000px;}
.y3cf{bottom:673.014000px;}
.y285{bottom:673.777500px;}
.y153{bottom:674.662500px;}
.y431{bottom:674.680500px;}
.y56c{bottom:674.811000px;}
.y382{bottom:674.815500px;}
.y493{bottom:675.492000px;}
.y321{bottom:676.224000px;}
.y4c7{bottom:677.371500px;}
.y87{bottom:677.893500px;}
.y461{bottom:678.976500px;}
.y108{bottom:679.262773px;}
.y51{bottom:680.077500px;}
.y1b4{bottom:680.232000px;}
.y52b{bottom:680.923500px;}
.y190{bottom:682.230000px;}
.y2e7{bottom:683.340000px;}
.y4e8{bottom:684.114000px;}
.y3e9{bottom:688.014000px;}
.yb2{bottom:688.020000px;}
.y257{bottom:688.081500px;}
.ydd{bottom:688.260000px;}
.y107{bottom:688.672500px;}
.ye{bottom:689.311500px;}
.y56b{bottom:689.755500px;}
.y130{bottom:689.869500px;}
.y3ac{bottom:690.181500px;}
.y34d{bottom:691.558500px;}
.y256{bottom:691.776000px;}
.y152{bottom:692.595000px;}
.y430{bottom:692.613000px;}
.y381{bottom:692.748000px;}
.y320{bottom:694.156500px;}
.y52a{bottom:695.188500px;}
.y4c6{bottom:695.304000px;}
.y86{bottom:695.826000px;}
.y460{bottom:696.909000px;}
.y50{bottom:698.010000px;}
.y106{bottom:698.082227px;}
.y1b3{bottom:698.164500px;}
.y21b{bottom:698.931000px;}
.y29d{bottom:699.591000px;}
.y2c5{bottom:699.655500px;}
.y492{bottom:699.808500px;}
.y284{bottom:699.963000px;}
.y1e8{bottom:700.062000px;}
.y18f{bottom:700.162500px;}
.y2e6{bottom:701.272500px;}
.y4e7{bottom:702.046500px;}
.y56a{bottom:703.204500px;}
.y3e8{bottom:705.946500px;}
.yb1{bottom:705.952500px;}
.ydc{bottom:706.192500px;}
.yd{bottom:707.245500px;}
.y105{bottom:707.493004px;}
.y12f{bottom:707.802000px;}
.y3ab{bottom:708.114000px;}
.y529{bottom:708.639000px;}
.y283{bottom:708.778500px;}
.y34c{bottom:709.492500px;}
.y151{bottom:710.527500px;}
.y42f{bottom:710.545500px;}
.y380{bottom:710.680500px;}
.y1e7{bottom:711.204000px;}
.y31f{bottom:712.090500px;}
.y4c5{bottom:713.236500px;}
.y85{bottom:713.758500px;}
.y45f{bottom:714.841500px;}
.y1e6{bottom:715.263000px;}
.y4f{bottom:715.942500px;}
.y255{bottom:716.319000px;}
.y569{bottom:716.653500px;}
.y104{bottom:716.902732px;}
.y29c{bottom:717.523500px;}
.y2c4{bottom:717.589500px;}
.y491{bottom:717.741000px;}
.y2e5{bottom:719.206500px;}
.y4e6{bottom:719.979000px;}
.y254{bottom:720.013500px;}
.y528{bottom:722.088000px;}
.y3e7{bottom:723.879000px;}
.yb0{bottom:723.885000px;}
.ydb{bottom:724.125000px;}
.y1b2{bottom:724.810500px;}
.yc{bottom:725.178000px;}
.y12e{bottom:725.736000px;}
.y21a{bottom:725.830167px;}
.y103{bottom:726.312459px;}
.y3aa{bottom:727.008000px;}
.y34b{bottom:727.425000px;}
.y1e5{bottom:727.437000px;}
.y150{bottom:728.461500px;}
.y42e{bottom:728.478000px;}
.y37f{bottom:728.614500px;}
.y31e{bottom:730.023000px;}
.y4c4{bottom:731.170500px;}
.y1e4{bottom:731.496000px;}
.y568{bottom:731.598000px;}
.y84{bottom:731.691000px;}
.y219{bottom:732.492012px;}
.y45e{bottom:734.668500px;}
.y218{bottom:734.975649px;}
.y29b{bottom:735.457500px;}
.y2c3{bottom:735.522000px;}
.y490{bottom:735.675000px;}
.y102{bottom:735.723236px;}
.y527{bottom:736.353000px;}
.y2e4{bottom:737.139000px;}
.y4e5{bottom:737.913000px;}
.y4e{bottom:737.967000px;}
.y3e6{bottom:741.811500px;}
.yaf{bottom:741.819000px;}
.yda{bottom:742.057500px;}
.y18e{bottom:742.059000px;}
.y217{bottom:743.197716px;}
.y12d{bottom:743.668500px;}
.y3a9{bottom:744.940500px;}
.y567{bottom:745.047000px;}
.y34a{bottom:745.357500px;}
.y101{bottom:745.551710px;}
.y14f{bottom:746.394000px;}
.y42d{bottom:746.410500px;}
.y37e{bottom:746.547000px;}
.y1e3{bottom:747.729000px;}
.y253{bottom:747.852000px;}
.y31d{bottom:747.955500px;}
.y4c3{bottom:749.103000px;}
.y83{bottom:749.623500px;}
.y526{bottom:749.802000px;}
.y216{bottom:751.228114px;}
.y45d{bottom:752.601000px;}
.y29a{bottom:753.390000px;}
.y2c2{bottom:753.454500px;}
.y48f{bottom:753.607500px;}
.y100{bottom:754.961437px;}
.y2e3{bottom:755.071500px;}
.y4e4{bottom:755.845500px;}
.y4d{bottom:755.899500px;}
.y215{bottom:758.081628px;}
.y282{bottom:759.054000px;}
.y3e5{bottom:759.744000px;}
.yae{bottom:759.751500px;}
.yd9{bottom:759.990000px;}
.y18d{bottom:759.991500px;}
.y214{bottom:760.394196px;}
.y1b1{bottom:760.423500px;}
.y12c{bottom:761.601000px;}
.y1e2{bottom:762.807000px;}
.y3a8{bottom:762.873000px;}
.y525{bottom:763.252500px;}
.y42c{bottom:764.344500px;}
.yff{bottom:764.371164px;}
.y37d{bottom:764.479500px;}
.y252{bottom:765.784500px;}
.y31c{bottom:765.888000px;}
.y82{bottom:767.556000px;}
.y213{bottom:768.615368px;}
.y45c{bottom:770.535000px;}
.y299{bottom:771.322500px;}
.y2c1{bottom:771.387000px;}
.y48e{bottom:771.540000px;}
.y2e2{bottom:773.004000px;}
.y566{bottom:773.440500px;}
.y4e3{bottom:773.778000px;}
.y4c{bottom:773.832000px;}
.y4c2{bottom:774.079500px;}
.y212{bottom:776.837435px;}
.y281{bottom:776.986500px;}
.y524{bottom:777.516000px;}
.y3e4{bottom:777.676500px;}
.yad{bottom:777.684000px;}
.yd8{bottom:777.924000px;}
.y1b0{bottom:778.356000px;}
.y12b{bottom:779.533500px;}
.y1e1{bottom:779.842500px;}
.y3a7{bottom:780.805500px;}
.y42b{bottom:782.277000px;}
.y251{bottom:783.717000px;}
.yb{bottom:783.775500px;}
.y211{bottom:785.225197px;}
.y81{bottom:785.490000px;}
.y565{bottom:786.891000px;}
.y45b{bottom:788.467500px;}
.y298{bottom:789.255000px;}
.y2c0{bottom:789.319500px;}
.y48d{bottom:789.472500px;}
.y2e1{bottom:790.936500px;}
.y523{bottom:790.966500px;}
.y1e0{bottom:790.984500px;}
.y4e2{bottom:791.710500px;}
.y4b{bottom:791.766000px;}
.y4c1{bottom:792.012000px;}
.yfe{bottom:794.437500px;}
.y280{bottom:795.027000px;}
.y1df{bottom:795.045000px;}
.y3e3{bottom:795.610500px;}
.yac{bottom:795.616500px;}
.yd7{bottom:795.856500px;}
.y1af{bottom:796.290000px;}
.y12a{bottom:797.466000px;}
.y14e{bottom:798.678000px;}
.y3a6{bottom:798.739500px;}
.y42a{bottom:800.209500px;}
.y564{bottom:800.340000px;}
.y250{bottom:801.649500px;}
.y522{bottom:804.415500px;}
.ya{bottom:806.088000px;}
.y45a{bottom:806.400000px;}
.y297{bottom:807.187500px;}
.y1de{bottom:807.217500px;}
.y2bf{bottom:807.253500px;}
.y48c{bottom:807.405000px;}
.y80{bottom:808.185000px;}
.y2e0{bottom:808.869000px;}
.y4e1{bottom:809.643000px;}
.y4a{bottom:809.698500px;}
.y4c0{bottom:809.946000px;}
.y1dd{bottom:811.276500px;}
.yfd{bottom:812.370000px;}
.y27f{bottom:812.959500px;}
.y210{bottom:813.181500px;}
.y3e2{bottom:813.543000px;}
.yab{bottom:813.549000px;}
.yd6{bottom:813.789000px;}
.y1ae{bottom:814.222500px;}
.y563{bottom:815.284500px;}
.y129{bottom:815.398500px;}
.y3a5{bottom:816.672000px;}
.y521{bottom:818.680500px;}
.y429{bottom:822.495000px;}
.y1dc{bottom:823.450500px;}
.y459{bottom:824.332500px;}
.y296{bottom:825.120000px;}
.y24f{bottom:825.174000px;}
.y2be{bottom:825.186000px;}
.y48b{bottom:825.337500px;}
.y7f{bottom:826.117500px;}
.y349{bottom:826.696500px;}
.y1db{bottom:827.509500px;}
.y4e0{bottom:827.577000px;}
.y49{bottom:827.631000px;}
.y4bf{bottom:827.878500px;}
.y9{bottom:828.658500px;}
.y562{bottom:828.733500px;}
.y2df{bottom:829.684500px;}
.yfc{bottom:830.302500px;}
.y27e{bottom:830.892000px;}
.y20f{bottom:831.114000px;}
.y3e1{bottom:831.475500px;}
.yaa{bottom:831.481500px;}
.yd5{bottom:831.721500px;}
.y520{bottom:832.129500px;}
.y1ad{bottom:832.155000px;}
.y128{bottom:833.332500px;}
.y24c{bottom:839.112000px;}
.y3a4{bottom:839.620500px;}
.y428{bottom:840.427500px;}
.y8{bottom:840.613500px;}
.y561{bottom:842.182500px;}
.y458{bottom:842.265000px;}
.y1da{bottom:842.587500px;}
.y24b{bottom:842.806500px;}
.y48a{bottom:843.271500px;}
.y37c{bottom:843.495000px;}
.y7e{bottom:844.051500px;}
.y2bd{bottom:844.776000px;}
.y4df{bottom:845.509500px;}
.y48{bottom:845.563500px;}
.y4be{bottom:845.811000px;}
.y31b{bottom:845.845500px;}
.y295{bottom:846.354000px;}
.y51f{bottom:846.394500px;}
.y2de{bottom:847.617000px;}
.y27d{bottom:848.824500px;}
.yfb{bottom:848.946000px;}
.y20e{bottom:849.046500px;}
.y3e0{bottom:849.408000px;}
.ya9{bottom:849.415500px;}
.yd4{bottom:849.654000px;}
.y18c{bottom:849.655500px;}
.y1ac{bottom:850.087500px;}
.y7{bottom:852.568500px;}
.y348{bottom:853.919100px;}
.y2bc{bottom:855.027000px;}
.y560{bottom:855.633000px;}
.y24e{bottom:857.004000px;}
.y3a3{bottom:857.554500px;}
.y1d9{bottom:859.624500px;}
.y51e{bottom:859.843500px;}
.y457{bottom:860.199000px;}
.y6{bottom:860.311500px;}
.y489{bottom:861.204000px;}
.y24d{bottom:861.486000px;}
.y7d{bottom:861.984000px;}
.y4de{bottom:863.442000px;}
.y47{bottom:863.496000px;}
.y4bd{bottom:863.743500px;}
.y294{bottom:864.286500px;}
.y347{bottom:864.678923px;}
.y2dd{bottom:865.549500px;}
.yfa{bottom:866.878500px;}
.y20d{bottom:866.980500px;}
.ya8{bottom:867.108000px;}
.y3df{bottom:867.340500px;}
.yd3{bottom:867.588000px;}
.y1ab{bottom:868.020000px;}
.y55f{bottom:869.082000px;}
.y37b{bottom:872.260500px;}
.y1d8{bottom:873.073500px;}
.y51d{bottom:873.294000px;}
.y346{bottom:873.683166px;}
.y31a{bottom:874.369500px;}
.y3a2{bottom:875.487000px;}
.y345{bottom:876.869176px;}
.y456{bottom:878.131500px;}
.y488{bottom:879.136500px;}
.y7c{bottom:879.916500px;}
.y24a{bottom:880.878000px;}
.y4dd{bottom:881.374500px;}
.y46{bottom:881.428500px;}
.y4bc{bottom:881.676000px;}
.y293{bottom:882.219000px;}
.y37a{bottom:883.401000px;}
.y127{bottom:883.711500px;}
.y55e{bottom:884.026500px;}
.yf9{bottom:884.811000px;}
.y20c{bottom:884.913000px;}
.y2dc{bottom:884.944500px;}
.ya7{bottom:885.040500px;}
.y3de{bottom:885.273000px;}
.yd2{bottom:885.520500px;}
.y1aa{bottom:885.952500px;}
.y1d7{bottom:886.524000px;}
.y51c{bottom:886.743000px;}
.y2bb{bottom:887.049000px;}
.y3ce{bottom:887.386500px;}
.y379{bottom:887.461500px;}
.y319{bottom:887.818500px;}
.y3a1{bottom:893.419500px;}
.y455{bottom:896.064000px;}
.y487{bottom:897.069000px;}
.y2ba{bottom:897.298500px;}
.y55d{bottom:897.475500px;}
.y7b{bottom:897.849000px;}
.y247{bottom:898.509000px;}
.y4dc{bottom:899.307000px;}
.y45{bottom:899.362500px;}
.y4bb{bottom:899.608500px;}
.y378{bottom:899.634000px;}
.y292{bottom:900.153000px;}
.y1d6{bottom:900.570000px;}
.y51b{bottom:901.008000px;}
.y27c{bottom:901.227000px;}
.y318{bottom:901.269000px;}
.yf8{bottom:902.743500px;}
.y20b{bottom:902.845500px;}
.y2db{bottom:902.877000px;}
.ya6{bottom:902.973000px;}
.y3dd{bottom:903.207000px;}
.yd1{bottom:903.453000px;}
.y377{bottom:903.694500px;}
.y5{bottom:905.383500px;}
.y3a0{bottom:911.352000px;}
.y55c{bottom:912.420000px;}
.y249{bottom:912.706500px;}
.y454{bottom:913.996500px;}
.y51a{bottom:914.457000px;}
.y317{bottom:914.718000px;}
.y486{bottom:915.001500px;}
.y7a{bottom:915.781500px;}
.y376{bottom:915.867000px;}
.y248{bottom:917.190000px;}
.y4db{bottom:917.239500px;}
.y44{bottom:917.295000px;}
.y291{bottom:918.085500px;}
.y4ba{bottom:919.462500px;}
.y375{bottom:919.926000px;}
.yf7{bottom:920.676000px;}
.y20a{bottom:920.778000px;}
.ya5{bottom:920.905500px;}
.y3dc{bottom:921.139500px;}
.y427{bottom:921.163500px;}
.yd0{bottom:921.385500px;}
.y55b{bottom:925.869000px;}
.y519{bottom:927.907500px;}
.y316{bottom:928.765500px;}
.y39f{bottom:929.284500px;}
.y2b9{bottom:930.607500px;}
.y453{bottom:931.929000px;}
.y485{bottom:932.934000px;}
.y79{bottom:933.714000px;}
.y374{bottom:935.005500px;}
.y246{bottom:935.127000px;}
.y4da{bottom:935.173500px;}
.y43{bottom:935.227500px;}
.y344{bottom:935.511000px;}
.y4b9{bottom:937.396500px;}
.yf6{bottom:938.608500px;}
.ya4{bottom:938.838000px;}
.y209{bottom:939.015000px;}
.y3db{bottom:939.072000px;}
.ycf{bottom:939.318000px;}
.y18b{bottom:939.319500px;}
.y245{bottom:939.360000px;}
.y518{bottom:942.171000px;}
.y4{bottom:943.341000px;}
.y39e{bottom:947.218500px;}
.y2b8{bottom:947.793000px;}
.y1a9{bottom:947.958000px;}
.y343{bottom:948.063000px;}
.y452{bottom:949.861500px;}
.y426{bottom:949.929000px;}
.y484{bottom:950.868000px;}
.y373{bottom:952.041000px;}
.y4d9{bottom:953.106000px;}
.y42{bottom:953.160000px;}
.y55a{bottom:954.262500px;}
.y4b8{bottom:955.329000px;}
.y517{bottom:955.621500px;}
.y78{bottom:956.410500px;}
.yf5{bottom:956.542500px;}
.ya3{bottom:956.772000px;}
.y208{bottom:956.947500px;}
.y3da{bottom:957.004500px;}
.yce{bottom:957.250500px;}
.y18a{bottom:957.252000px;}
.y244{bottom:957.292500px;}
.y1d5{bottom:962.709000px;}
.y372{bottom:963.183000px;}
.y425{bottom:963.378000px;}
.y39d{bottom:965.151000px;}
.y371{bottom:967.242000px;}
.y559{bottom:967.713000px;}
.y483{bottom:968.800500px;}
.y516{bottom:969.070500px;}
.y2da{bottom:969.582000px;}
.y4d8{bottom:971.038500px;}
.y41{bottom:971.092500px;}
.y451{bottom:971.184000px;}
.y4b7{bottom:973.261500px;}
.y77{bottom:974.343000px;}
.yf4{bottom:974.475000px;}
.ya2{bottom:974.704500px;}
.y1a8{bottom:974.746205px;}
.y207{bottom:974.880000px;}
.y3d9{bottom:974.937000px;}
.ycd{bottom:975.184500px;}
.y243{bottom:975.225000px;}
.y342{bottom:976.828500px;}
.y370{bottom:979.414500px;}
.y558{bottom:981.162000px;}
.y3{bottom:981.298500px;}
.y2d9{bottom:982.135500px;}
.y1a7{bottom:982.457377px;}
.y515{bottom:982.521000px;}
.y36f{bottom:983.475000px;}
.y482{bottom:986.733000px;}
.y39c{bottom:988.099500px;}
.y315{bottom:988.374000px;}
.y4d7{bottom:988.971000px;}
.y40{bottom:989.025000px;}
.y450{bottom:989.116500px;}
.y1a6{bottom:990.167688px;}
.y341{bottom:990.277500px;}
.y424{bottom:990.876000px;}
.y4b6{bottom:991.194000px;}
.y1d4{bottom:991.473000px;}
.yf3{bottom:992.407500px;}
.y206{bottom:992.812500px;}
.y3d8{bottom:992.869500px;}
.y76{bottom:993.117000px;}
.ya1{bottom:993.891000px;}
.y36e{bottom:995.647500px;}
.y557{bottom:996.106500px;}
.y514{bottom:996.784500px;}
.y1a5{bottom:997.878000px;}
.y36d{bottom:999.708000px;}
.y340{bottom:1003.728000px;}
.y423{bottom:1004.325000px;}
.y1d3{bottom:1004.923500px;}
.y1a4{bottom:1005.589172px;}
.y39b{bottom:1006.033500px;}
.y4d6{bottom:1006.903500px;}
.y3f{bottom:1006.959000px;}
.y4b5{bottom:1009.126500px;}
.y556{bottom:1009.555500px;}
.y513{bottom:1010.235000px;}
.y205{bottom:1010.746500px;}
.y3d7{bottom:1010.803500px;}
.y75{bottom:1011.049500px;}
.y313{bottom:1013.058422px;}
.y1a3{bottom:1013.299483px;}
.y314{bottom:1013.716423px;}
.y36c{bottom:1014.786000px;}
.y312{bottom:1015.244370px;}
.y311{bottom:1016.993960px;}
.y33f{bottom:1017.774000px;}
.y1d2{bottom:1018.372500px;}
.y1a2{bottom:1021.352915px;}
.y512{bottom:1023.684000px;}
.y555{bottom:1024.500000px;}
.y3e{bottom:1024.891500px;}
.y4b4{bottom:1027.059000px;}
.y204{bottom:1028.679000px;}
.y30f{bottom:1028.685596px;}
.y74{bottom:1028.982000px;}
.y310{bottom:1029.343597px;}
.y30e{bottom:1029.767488px;}
.y33e{bottom:1031.224500px;}
.y1d1{bottom:1031.821500px;}
.y30d{bottom:1032.526936px;}
.y511{bottom:1037.949000px;}
.y30b{bottom:1042.703093px;}
.y30c{bottom:1043.359709px;}
.y30a{bottom:1043.783600px;}
.y33d{bottom:1044.673500px;}
.y4b3{bottom:1044.993000px;}
.y1d0{bottom:1045.272000px;}
.y309{bottom:1046.544433px;}
.y203{bottom:1046.611500px;}
.y73{bottom:1046.914500px;}
.y3d{bottom:1046.916000px;}
.y2{bottom:1050.721500px;}
.y510{bottom:1051.398000px;}
.y595{bottom:1051.399500px;}
.y307{bottom:1055.767527px;}
.y308{bottom:1056.425528px;}
.y306{bottom:1056.849419px;}
.y1cf{bottom:1058.721000px;}
.y305{bottom:1059.608867px;}
.y72{bottom:1064.847000px;}
.y3c{bottom:1064.848500px;}
.y1{bottom:1069.984500px;}
.y1ce{bottom:1072.768500px;}
.y304{bottom:1073.534936px;}
.y3b{bottom:1113.900000px;}
.y3a{bottom:1126.665000px;}
.y39{bottom:1142.865000px;}
.h14{height:2.391024px;}
.h3c{height:4.790408px;}
.h2e{height:14.175201px;}
.h37{height:23.089407px;}
.h30{height:24.035747px;}
.h19{height:24.399839px;}
.h7{height:24.580020px;}
.h3{height:24.605448px;}
.h22{height:25.154260px;}
.h21{height:25.412775px;}
.h56{height:28.778447px;}
.h10{height:29.777763px;}
.h13{height:29.833916px;}
.hc{height:31.005515px;}
.h2{height:31.006404px;}
.h15{height:31.382100px;}
.h11{height:31.675000px;}
.h17{height:31.920384px;}
.h57{height:31.953605px;}
.h54{height:32.599513px;}
.h23{height:34.663049px;}
.h31{height:35.252148px;}
.h24{height:35.347325px;}
.h3f{height:35.849221px;}
.h59{height:35.865450px;}
.h43{height:36.489866px;}
.h3b{height:36.765958px;}
.h58{height:37.918278px;}
.h4a{height:39.304894px;}
.hb{height:39.339844px;}
.hf{height:39.864614px;}
.h5a{height:40.485744px;}
.ha{height:40.723572px;}
.he{height:40.725389px;}
.h8{height:40.963140px;}
.h1f{height:41.006062px;}
.h48{height:41.407903px;}
.h20{height:41.484266px;}
.h47{height:41.889396px;}
.h1d{height:42.121382px;}
.h1b{height:42.127382px;}
.h18{height:42.560334px;}
.h2b{height:42.799330px;}
.h46{height:43.682664px;}
.h3e{height:43.878527px;}
.h6{height:44.797746px;}
.h12{height:44.831700px;}
.h50{height:44.966979px;}
.h55{height:45.343556px;}
.h42{height:45.788100px;}
.h4d{height:45.855458px;}
.h4f{height:45.860999px;}
.h53{height:46.232250px;}
.h29{height:48.625382px;}
.h25{height:48.631382px;}
.h3d{height:48.669150px;}
.h4b{height:49.942850px;}
.h4e{height:49.948392px;}
.h2d{height:51.351349px;}
.h2c{height:51.523916px;}
.h51{height:51.965337px;}
.h5{height:53.064144px;}
.hd{height:53.200284px;}
.h9{height:53.202420px;}
.h4c{height:54.270418px;}
.h35{height:54.511916px;}
.h33{height:54.517916px;}
.h2f{height:55.511014px;}
.h2a{height:56.203382px;}
.h26{height:56.209382px;}
.h28{height:56.756334px;}
.h1c{height:58.796334px;}
.h1e{height:58.802334px;}
.h16{height:58.930092px;}
.h3a{height:59.181024px;}
.h34{height:59.609700px;}
.h52{height:60.709130px;}
.h1a{height:61.030668px;}
.h27{height:65.671382px;}
.h36{height:67.978284px;}
.h49{height:70.126284px;}
.h32{height:70.132284px;}
.h40{height:83.233330px;}
.h44{height:83.239330px;}
.h39{height:88.462284px;}
.h38{height:89.668284px;}
.h45{height:94.204284px;}
.h4{height:99.551556px;}
.h41{height:112.506223px;}
.h0{height:1174.393500px;}
.h1{height:1174.500000px;}
.w0{width:864.000000px;}
.x0{left:0.000000px;}
.x9{left:23.413500px;}
.x1{left:54.255000px;}
.x6{left:55.749000px;}
.xa1{left:59.941500px;}
.x39{left:63.222000px;}
.x20{left:66.703500px;}
.x5{left:68.104500px;}
.xb{left:69.199500px;}
.x7a{left:70.269000px;}
.x5d{left:71.984707px;}
.x15{left:73.861935px;}
.x87{left:76.180500px;}
.x38{left:77.460000px;}
.x8b{left:78.466288px;}
.x89{left:81.154500px;}
.x37{left:82.678500px;}
.x19{left:84.288000px;}
.x5e{left:85.887068px;}
.x16{left:87.090757px;}
.x5c{left:88.866262px;}
.xc{left:90.613500px;}
.x13{left:92.686637px;}
.x14{left:94.522195px;}
.xe{left:95.676634px;}
.x17{left:97.081902px;}
.x18{left:99.172486px;}
.x88{left:100.753500px;}
.x1f{left:101.821500px;}
.x3a{left:109.660500px;}
.x36{left:111.987000px;}
.x79{left:117.970500px;}
.x5a{left:119.208000px;}
.x9c{left:120.600000px;}
.x1e{left:123.237000px;}
.x9b{left:125.658000px;}
.x78{left:128.155500px;}
.x3d{left:131.508000px;}
.x41{left:137.611500px;}
.x3c{left:139.894500px;}
.x9d{left:141.121500px;}
.x42{left:145.318500px;}
.x43{left:146.637000px;}
.x96{left:151.828548px;}
.x40{left:152.848500px;}
.x44{left:154.345500px;}
.x3e{left:158.491500px;}
.x2{left:160.444500px;}
.x5b{left:161.523000px;}
.x59{left:173.067000px;}
.xf{left:181.161793px;}
.x6b{left:182.680500px;}
.x55{left:189.502500px;}
.x95{left:190.558448px;}
.x25{left:201.510000px;}
.x3b{left:212.734500px;}
.x54{left:215.175000px;}
.x69{left:216.439500px;}
.x45{left:218.980500px;}
.x3f{left:220.308000px;}
.x21{left:221.926500px;}
.x56{left:225.666000px;}
.x10{left:238.332761px;}
.x57{left:244.252500px;}
.x58{left:251.770500px;}
.x23{left:256.723500px;}
.x6c{left:259.456500px;}
.x22{left:262.213500px;}
.x6a{left:269.397000px;}
.x9a{left:272.430000px;}
.x27{left:279.516000px;}
.x24{left:280.798500px;}
.x26{left:285.007500px;}
.x11{left:295.503728px;}
.x7c{left:300.907500px;}
.x28{left:303.592500px;}
.x6d{left:304.595491px;}
.x8a{left:316.684061px;}
.x6e{left:327.141544px;}
.x3{left:343.639500px;}
.x6f{left:349.686524px;}
.x12{left:352.673647px;}
.x70{left:372.232578px;}
.x7b{left:392.008500px;}
.x71{left:394.778631px;}
.x72{left:417.324685px;}
.xa{left:440.820000px;}
.x7{left:446.457000px;}
.xd{left:447.951000px;}
.x63{left:449.130700px;}
.x1a{left:458.083500px;}
.x4d{left:460.257950px;}
.x8{left:461.400000px;}
.x7d{left:463.254723px;}
.x2d{left:464.556301px;}
.x2b{left:466.646840px;}
.x2e{left:468.647944px;}
.x2c{left:469.785657px;}
.x2f{left:471.848677px;}
.xa2{left:472.875000px;}
.x86{left:473.920500px;}
.x32{left:475.146867px;}
.x4{left:476.428500px;}
.x33{left:477.689313px;}
.x35{left:479.001405px;}
.x34{left:480.354365px;}
.x46{left:481.560533px;}
.x29{left:482.815500px;}
.x2a{left:485.255298px;}
.x9f{left:488.350500px;}
.x30{left:489.678881px;}
.x1b{left:494.860500px;}
.x99{left:508.844186px;}
.x31{left:510.907500px;}
.x8d{left:512.065500px;}
.x98{left:513.349174px;}
.x1c{left:515.437500px;}
.x90{left:518.169000px;}
.x8c{left:520.452000px;}
.x47{left:521.854500px;}
.x91{left:525.876000px;}
.x92{left:527.194500px;}
.x8f{left:533.406000px;}
.x93{left:534.903000px;}
.xa0{left:536.128500px;}
.x5f{left:538.395000px;}
.x48{left:539.521500px;}
.x94{left:540.543000px;}
.x7e{left:542.022277px;}
.x82{left:544.956268px;}
.x60{left:559.965000px;}
.x9e{left:563.356500px;}
.x75{left:591.652500px;}
.x4f{left:601.404978px;}
.x77{left:605.590500px;}
.x4e{left:610.876563px;}
.x8e{left:612.508500px;}
.x85{left:617.510907px;}
.x7f{left:620.280052px;}
.x1d{left:621.960000px;}
.x49{left:630.510000px;}
.x61{left:636.742500px;}
.x97{left:644.114088px;}
.x4a{left:661.315500px;}
.x62{left:662.878500px;}
.x64{left:666.763417px;}
.x73{left:683.013000px;}
.x4b{left:685.486500px;}
.x65{left:689.309470px;}
.x80{left:695.405744px;}
.x50{left:698.261651px;}
.x51{left:705.103894px;}
.x4c{left:711.070500px;}
.x74{left:722.719500px;}
.x52{left:728.117308px;}
.x66{left:734.401578px;}
.x67{left:756.947631px;}
.x84{left:766.526634px;}
.x83{left:769.459240px;}
.x81{left:771.088312px;}
.x68{left:779.492611px;}
.x76{left:784.210500px;}
.x53{left:791.682000px;}
@media print{
.v1a{vertical-align:-39.938703pt;}
.v23{vertical-align:-38.037406pt;}
.v1c{vertical-align:-34.234810pt;}
.v1b{vertical-align:-28.527100pt;}
.v2{vertical-align:-16.037333pt;}
.v4{vertical-align:-15.002667pt;}
.v6{vertical-align:-13.285333pt;}
.v5{vertical-align:-10.752938pt;}
.v1d{vertical-align:-9.510306pt;}
.v3{vertical-align:-7.973333pt;}
.v7{vertical-align:-5.904000pt;}
.va{vertical-align:-4.477454pt;}
.v17{vertical-align:-3.515465pt;}
.v0{vertical-align:0.000000pt;}
.v21{vertical-align:0.965920pt;}
.v16{vertical-align:5.168000pt;}
.vd{vertical-align:6.736000pt;}
.v9{vertical-align:8.528000pt;}
.v1f{vertical-align:10.476226pt;}
.v24{vertical-align:11.653465pt;}
.v11{vertical-align:12.618667pt;}
.v1e{vertical-align:13.801588pt;}
.v8{vertical-align:15.002667pt;}
.vb{vertical-align:17.788803pt;}
.v1{vertical-align:19.294379pt;}
.vc{vertical-align:20.784000pt;}
.v12{vertical-align:22.072882pt;}
.v20{vertical-align:24.277814pt;}
.v14{vertical-align:25.729193pt;}
.ve{vertical-align:27.520000pt;}
.v10{vertical-align:29.792000pt;}
.v15{vertical-align:31.199064pt;}
.v13{vertical-align:33.045465pt;}
.vf{vertical-align:35.930667pt;}
.v22{vertical-align:39.850667pt;}
.v19{vertical-align:50.480000pt;}
.v18{vertical-align:74.922667pt;}
.ls3{letter-spacing:-3.150224pt;}
.ls1{letter-spacing:0.000000pt;}
.ls87{letter-spacing:0.000176pt;}
.lsc7{letter-spacing:0.000220pt;}
.lsee{letter-spacing:0.000264pt;}
.lsdc{letter-spacing:0.000271pt;}
.ls39{letter-spacing:0.000429pt;}
.ls81{letter-spacing:0.000497pt;}
.ls68{letter-spacing:0.000582pt;}
.ls44{letter-spacing:0.000622pt;}
.ls93{letter-spacing:0.000944pt;}
.ls4c{letter-spacing:0.000987pt;}
.ls6e{letter-spacing:0.001028pt;}
.ls84{letter-spacing:0.001152pt;}
.lsb3{letter-spacing:0.001188pt;}
.ls18{letter-spacing:0.001441pt;}
.ls8c{letter-spacing:0.001604pt;}
.lsa1{letter-spacing:0.001659pt;}
.ls31{letter-spacing:0.001769pt;}
.lsaf{letter-spacing:0.001830pt;}
.ls53{letter-spacing:0.001881pt;}
.lsb7{letter-spacing:0.001918pt;}
.ls1b{letter-spacing:0.001924pt;}
.ls77{letter-spacing:0.001952pt;}
.lsf9{letter-spacing:0.001979pt;}
.ls36{letter-spacing:0.002260pt;}
.lsc1{letter-spacing:0.002340pt;}
.ls33{letter-spacing:0.002679pt;}
.ls8e{letter-spacing:0.002734pt;}
.lsed{letter-spacing:0.002776pt;}
.lscb{letter-spacing:0.003001pt;}
.ls3d{letter-spacing:0.003608pt;}
.ls20{letter-spacing:0.004132pt;}
.ls1f{letter-spacing:0.004352pt;}
.ls66{letter-spacing:0.004677pt;}
.ls58{letter-spacing:0.004695pt;}
.ls3a{letter-spacing:0.005040pt;}
.ls3c{letter-spacing:0.005762pt;}
.lsb1{letter-spacing:0.005769pt;}
.ls40{letter-spacing:0.006777pt;}
.lsf7{letter-spacing:0.007313pt;}
.ls9b{letter-spacing:0.008426pt;}
.ls6f{letter-spacing:0.008605pt;}
.ls106{letter-spacing:0.009007pt;}
.ls7b{letter-spacing:0.009480pt;}
.lsd5{letter-spacing:0.009589pt;}
.lsaa{letter-spacing:0.009608pt;}
.ls102{letter-spacing:0.009664pt;}
.ls16{letter-spacing:0.011187pt;}
.ls10b{letter-spacing:0.012363pt;}
.ls56{letter-spacing:0.013172pt;}
.lsb{letter-spacing:0.013545pt;}
.lsce{letter-spacing:0.013671pt;}
.ls78{letter-spacing:0.014813pt;}
.ls74{letter-spacing:0.015523pt;}
.ls9{letter-spacing:0.017414pt;}
.ls71{letter-spacing:0.017606pt;}
.lsac{letter-spacing:0.017823pt;}
.ls5b{letter-spacing:0.018309pt;}
.lseb{letter-spacing:0.019461pt;}
.ls25{letter-spacing:0.021843pt;}
.ls7d{letter-spacing:0.022222pt;}
.ls82{letter-spacing:0.022908pt;}
.lsd{letter-spacing:0.023709pt;}
.ls3f{letter-spacing:0.024408pt;}
.lsfe{letter-spacing:0.024467pt;}
.ls5c{letter-spacing:0.025136pt;}
.ls7f{letter-spacing:0.025148pt;}
.lsfc{letter-spacing:0.026302pt;}
.ls113{letter-spacing:0.037871pt;}
.ls60{letter-spacing:0.053134pt;}
.lsbf{letter-spacing:0.212535pt;}
.ls9f{letter-spacing:0.599575pt;}
.lsb0{letter-spacing:0.639001pt;}
.ls49{letter-spacing:0.684034pt;}
.lsa5{letter-spacing:0.892646pt;}
.lsc5{letter-spacing:1.153002pt;}
.ls9c{letter-spacing:1.441163pt;}
.ls4b{letter-spacing:1.472101pt;}
.ls10e{letter-spacing:1.487748pt;}
.ls4f{letter-spacing:1.585516pt;}
.ls52{letter-spacing:1.588701pt;}
.lsda{letter-spacing:1.647150pt;}
.lsd8{letter-spacing:1.700284pt;}
.ls6d{letter-spacing:1.817602pt;}
.ls4e{letter-spacing:1.982067pt;}
.ls1e{letter-spacing:2.157229pt;}
.ls6a{letter-spacing:2.429554pt;}
.ls69{letter-spacing:2.433203pt;}
.lsf3{letter-spacing:2.542596pt;}
.lsd6{letter-spacing:2.652911pt;}
.ls3e{letter-spacing:2.656473pt;}
.ls27{letter-spacing:2.656533pt;}
.ls5a{letter-spacing:2.656576pt;}
.lsc8{letter-spacing:2.656767pt;}
.lsa{letter-spacing:2.657014pt;}
.ls28{letter-spacing:2.657067pt;}
.lsd7{letter-spacing:2.658245pt;}
.ls0{letter-spacing:2.658667pt;}
.ls4d{letter-spacing:2.690484pt;}
.lsab{letter-spacing:2.764661pt;}
.lscd{letter-spacing:2.768814pt;}
.ls61{letter-spacing:3.028630pt;}
.ls67{letter-spacing:3.285881pt;}
.ls6c{letter-spacing:3.289530pt;}
.ls98{letter-spacing:3.412966pt;}
.ls1a{letter-spacing:3.550993pt;}
.ls7{letter-spacing:3.556327pt;}
.lsa8{letter-spacing:3.743253pt;}
.lsba{letter-spacing:3.801554pt;}
.lsb6{letter-spacing:3.804433pt;}
.lsb9{letter-spacing:3.805372pt;}
.ls6{letter-spacing:4.802585pt;}
.ls10{letter-spacing:4.807919pt;}
.ls34{letter-spacing:5.310545pt;}
.ls32{letter-spacing:5.315879pt;}
.lsf4{letter-spacing:5.685324pt;}
.ls9a{letter-spacing:5.765145pt;}
.lsfa{letter-spacing:5.791591pt;}
.ls47{letter-spacing:6.345262pt;}
.lsbb{letter-spacing:6.351992pt;}
.ls99{letter-spacing:6.364720pt;}
.lsc6{letter-spacing:6.369404pt;}
.lsa7{letter-spacing:6.894469pt;}
.ls90{letter-spacing:7.206610pt;}
.lsd4{letter-spacing:7.385607pt;}
.ls46{letter-spacing:7.487409pt;}
.ls89{letter-spacing:7.564482pt;}
.ls9e{letter-spacing:7.567376pt;}
.ls55{letter-spacing:7.817363pt;}
.ls51{letter-spacing:8.328842pt;}
.ls10f{letter-spacing:8.820222pt;}
.ls8{letter-spacing:8.873356pt;}
.lsa9{letter-spacing:9.183675pt;}
.ls45{letter-spacing:9.472089pt;}
.lse4{letter-spacing:10.095435pt;}
.ls6b{letter-spacing:10.106318pt;}
.lsb2{letter-spacing:10.142091pt;}
.lscf{letter-spacing:10.145909pt;}
.ls116{letter-spacing:10.339821pt;}
.lsb5{letter-spacing:10.573974pt;}
.ls128{letter-spacing:10.945577pt;}
.lse1{letter-spacing:11.021565pt;}
.lse2{letter-spacing:11.071212pt;}
.ls111{letter-spacing:11.171927pt;}
.ls114{letter-spacing:11.209798pt;}
.ls117{letter-spacing:11.492822pt;}
.lsde{letter-spacing:11.493394pt;}
.ls12a{letter-spacing:11.519025pt;}
.lsdf{letter-spacing:11.545166pt;}
.ls11{letter-spacing:11.795718pt;}
.ls104{letter-spacing:11.955120pt;}
.ls129{letter-spacing:12.220789pt;}
.ls115{letter-spacing:12.308055pt;}
.ls118{letter-spacing:12.539624pt;}
.lsbc{letter-spacing:12.744497pt;}
.lsd1{letter-spacing:12.972248pt;}
.lsb4{letter-spacing:13.109834pt;}
.ls105{letter-spacing:13.230333pt;}
.ls12d{letter-spacing:13.240922pt;}
.ls37{letter-spacing:13.280473pt;}
.ls19{letter-spacing:13.283467pt;}
.ls35{letter-spacing:13.285806pt;}
.ls11a{letter-spacing:13.814840pt;}
.ls11b{letter-spacing:14.027341pt;}
.ls124{letter-spacing:14.293010pt;}
.lsb8{letter-spacing:14.368470pt;}
.lsd0{letter-spacing:14.372288pt;}
.ls10c{letter-spacing:14.452412pt;}
.lsca{letter-spacing:14.463444pt;}
.lsa2{letter-spacing:14.757812pt;}
.ls12{letter-spacing:14.771215pt;}
.lsf0{letter-spacing:14.860349pt;}
.ls64{letter-spacing:14.930617pt;}
.lsea{letter-spacing:14.968190pt;}
.ls13{letter-spacing:15.568223pt;}
.ls14{letter-spacing:15.621357pt;}
.lsf1{letter-spacing:15.746918pt;}
.ls26{letter-spacing:15.758993pt;}
.ls3b{letter-spacing:15.934545pt;}
.ls38{letter-spacing:15.939879pt;}
.lsf{letter-spacing:15.942347pt;}
.lsec{letter-spacing:16.087058pt;}
.ls110{letter-spacing:16.258963pt;}
.lsbe{letter-spacing:16.312097pt;}
.ls65{letter-spacing:16.365231pt;}
.ls5f{letter-spacing:16.469909pt;}
.ls7a{letter-spacing:16.615919pt;}
.lsc2{letter-spacing:16.788327pt;}
.ls85{letter-spacing:16.836327pt;}
.ls62{letter-spacing:16.896570pt;}
.lsae{letter-spacing:17.209048pt;}
.lsad{letter-spacing:17.250416pt;}
.ls5e{letter-spacing:17.364327pt;}
.ls22{letter-spacing:17.414347pt;}
.ls10d{letter-spacing:17.427908pt;}
.lse{letter-spacing:17.693578pt;}
.ls24{letter-spacing:17.748327pt;}
.lsfb{letter-spacing:17.799845pt;}
.lsfd{letter-spacing:17.852979pt;}
.lsf6{letter-spacing:17.854545pt;}
.lsf8{letter-spacing:17.859879pt;}
.ls123{letter-spacing:18.012381pt;}
.ls127{letter-spacing:18.118649pt;}
.lsef{letter-spacing:18.199761pt;}
.ls41{letter-spacing:18.258585pt;}
.ls29{letter-spacing:18.313660pt;}
.ls1d{letter-spacing:18.318993pt;}
.ls2{letter-spacing:18.337024pt;}
.ls11d{letter-spacing:19.128192pt;}
.lsf5{letter-spacing:19.470993pt;}
.ls15{letter-spacing:19.606397pt;}
.ls76{letter-spacing:19.712665pt;}
.ls11c{letter-spacing:19.925200pt;}
.ls59{letter-spacing:19.963162pt;}
.ls121{letter-spacing:20.190869pt;}
.ls122{letter-spacing:20.244003pt;}
.ls73{letter-spacing:20.341909pt;}
.ls83{letter-spacing:20.369014pt;}
.ls63{letter-spacing:20.456539pt;}
.lse6{letter-spacing:20.658499pt;}
.ls12c{letter-spacing:20.669074pt;}
.lse9{letter-spacing:20.722208pt;}
.ls107{letter-spacing:20.941233pt;}
.ls5d{letter-spacing:21.127919pt;}
.lsc3{letter-spacing:21.136479pt;}
.ls126{letter-spacing:21.147279pt;}
.ls12b{letter-spacing:21.182993pt;}
.ls125{letter-spacing:21.200413pt;}
.ls75{letter-spacing:21.604327pt;}
.ls11e{letter-spacing:21.625484pt;}
.ls42{letter-spacing:21.716327pt;}
.ls17{letter-spacing:22.340327pt;}
.lsc4{letter-spacing:22.341605pt;}
.ls80{letter-spacing:22.873660pt;}
.ls101{letter-spacing:23.006964pt;}
.ls1c{letter-spacing:23.163680pt;}
.lse5{letter-spacing:23.166424pt;}
.lse3{letter-spacing:23.433238pt;}
.lsc0{letter-spacing:23.644571pt;}
.ls109{letter-spacing:24.388445pt;}
.lse0{letter-spacing:24.436406pt;}
.lsd3{letter-spacing:24.721014pt;}
.ls70{letter-spacing:25.081660pt;}
.ls100{letter-spacing:25.557390pt;}
.lse8{letter-spacing:26.194996pt;}
.lse7{letter-spacing:26.248130pt;}
.ls72{letter-spacing:26.327919pt;}
.lsbd{letter-spacing:26.582347pt;}
.ls10a{letter-spacing:26.684911pt;}
.ls108{letter-spacing:27.363941pt;}
.ls103{letter-spacing:27.613252pt;}
.lsd2{letter-spacing:28.054682pt;}
.ls120{letter-spacing:28.107815pt;}
.lsff{letter-spacing:28.756667pt;}
.lsa4{letter-spacing:30.121660pt;}
.ls7e{letter-spacing:31.278993pt;}
.ls4{letter-spacing:31.880320pt;}
.lsc{letter-spacing:33.229252pt;}
.lsf2{letter-spacing:37.891457pt;}
.ls50{letter-spacing:38.071574pt;}
.lsd9{letter-spacing:41.058811pt;}
.lsc9{letter-spacing:42.523433pt;}
.ls11f{letter-spacing:43.729172pt;}
.lsdb{letter-spacing:45.110653pt;}
.ls86{letter-spacing:54.621615pt;}
.ls112{letter-spacing:56.806410pt;}
.ls119{letter-spacing:63.760800pt;}
.lsa3{letter-spacing:79.701600pt;}
.ls9d{letter-spacing:87.561026pt;}
.ls30{letter-spacing:109.237951pt;}
.ls8b{letter-spacing:110.921395pt;}
.ls2d{letter-spacing:115.784548pt;}
.ls57{letter-spacing:137.557806pt;}
.ls2e{letter-spacing:148.035714pt;}
.ls2a{letter-spacing:167.212278pt;}
.ls2b{letter-spacing:168.784449pt;}
.ls2f{letter-spacing:177.411273pt;}
.ls88{letter-spacing:189.549823pt;}
.ls2c{letter-spacing:209.348875pt;}
.ls23{letter-spacing:221.159919pt;}
.lscc{letter-spacing:264.868327pt;}
.ls8d{letter-spacing:279.720233pt;}
.ls97{letter-spacing:281.825711pt;}
.ls8f{letter-spacing:287.925193pt;}
.ls21{letter-spacing:293.751919pt;}
.ls4a{letter-spacing:296.336303pt;}
.lsa6{letter-spacing:318.617660pt;}
.ls54{letter-spacing:340.278227pt;}
.lsa0{letter-spacing:341.665569pt;}
.ls43{letter-spacing:347.446612pt;}
.ls48{letter-spacing:372.233351pt;}
.ls91{letter-spacing:374.941988pt;}
.ls79{letter-spacing:391.293252pt;}
.ls94{letter-spacing:391.890140pt;}
.lsdd{letter-spacing:392.848271pt;}
.ls7c{letter-spacing:397.005252pt;}
.ls92{letter-spacing:408.475032pt;}
.ls8a{letter-spacing:425.095964pt;}
.ls96{letter-spacing:437.413102pt;}
.ls95{letter-spacing:496.088284pt;}
.ls5{letter-spacing:2414.669692pt;}
.ws135{word-spacing:-42.332883pt;}
.ws18f{word-spacing:-42.066082pt;}
.ws214{word-spacing:-38.415786pt;}
.ws213{word-spacing:-35.652825pt;}
.wsf0{word-spacing:-35.514676pt;}
.wsec{word-spacing:-34.611401pt;}
.ws17f{word-spacing:-32.750969pt;}
.ws19a{word-spacing:-30.113005pt;}
.ws182{word-spacing:-29.908994pt;}
.ws13b{word-spacing:-29.521250pt;}
.ws100{word-spacing:-28.118362pt;}
.ws188{word-spacing:-27.461904pt;}
.ws1ca{word-spacing:-27.263170pt;}
.ws180{word-spacing:-26.947052pt;}
.ws14a{word-spacing:-25.791179pt;}
.wsed{word-spacing:-25.738045pt;}
.ws185{word-spacing:-24.776571pt;}
.ws15d{word-spacing:-23.680774pt;}
.ws1ec{word-spacing:-22.612097pt;}
.ws1b4{word-spacing:-22.603147pt;}
.ws19d{word-spacing:-21.327934pt;}
.ws186{word-spacing:-20.128529pt;}
.ws1fe{word-spacing:-20.052721pt;}
.ws103{word-spacing:-19.840186pt;}
.ws15f{word-spacing:-19.238302pt;}
.ws1a8{word-spacing:-18.917505pt;}
.ws1a3{word-spacing:-18.564973pt;}
.ws189{word-spacing:-18.424580pt;}
.ws1ae{word-spacing:-18.140901pt;}
.ws153{word-spacing:-17.627139pt;}
.ws15b{word-spacing:-17.609713pt;}
.ws19c{word-spacing:-17.359445pt;}
.ws18b{word-spacing:-17.054669pt;}
.ws183{word-spacing:-16.605076pt;}
.ws173{word-spacing:-16.015574pt;}
.ws198{word-spacing:-16.014547pt;}
.ws170{word-spacing:-15.908280pt;}
.ws19b{word-spacing:-15.802544pt;}
.ws18a{word-spacing:-15.525102pt;}
.ws187{word-spacing:-15.267602pt;}
.wsfe{word-spacing:-13.283467pt;}
.ws1b9{word-spacing:-13.145319pt;}
.ws154{word-spacing:-13.134693pt;}
.ws102{word-spacing:-12.613980pt;}
.ws1b7{word-spacing:-12.348311pt;}
.ws168{word-spacing:-12.189549pt;}
.ws175{word-spacing:-11.933851pt;}
.ws1c2{word-spacing:-11.552498pt;}
.ws169{word-spacing:-11.500096pt;}
.ws19e{word-spacing:-11.019964pt;}
.ws16a{word-spacing:-10.706882pt;}
.ws13e{word-spacing:-10.626800pt;}
.ws282{word-spacing:-10.108800pt;}
.ws197{word-spacing:-9.957287pt;}
.ws1c0{word-spacing:-9.889889pt;}
.ws1c4{word-spacing:-9.886642pt;}
.ws1c3{word-spacing:-9.883556pt;}
.ws184{word-spacing:-9.696637pt;}
.ws190{word-spacing:-9.569429pt;}
.ws1aa{word-spacing:-9.287905pt;}
.ws1ad{word-spacing:-9.236133pt;}
.ws181{word-spacing:-8.953515pt;}
.ws1b0{word-spacing:-8.906616pt;}
.ws1b3{word-spacing:-8.856970pt;}
.ws17e{word-spacing:-8.805739pt;}
.ws1bd{word-spacing:-8.607708pt;}
.ws1bc{word-spacing:-8.565201pt;}
.ws199{word-spacing:-8.448405pt;}
.ws1f1{word-spacing:-8.139704pt;}
.ws16c{word-spacing:-7.762882pt;}
.wsdb{word-spacing:-7.435147pt;}
.ws1bb{word-spacing:-6.354826pt;}
.wsf7{word-spacing:-6.269429pt;}
.ws128{word-spacing:-3.188032pt;}
.ws78{word-spacing:-3.028630pt;}
.ws1f5{word-spacing:-2.975497pt;}
.ws163{word-spacing:-2.922363pt;}
.ws77{word-spacing:-2.869229pt;}
.ws14d{word-spacing:-2.816095pt;}
.ws147{word-spacing:-2.762961pt;}
.ws146{word-spacing:-2.709827pt;}
.ws84{word-spacing:-2.656693pt;}
.ws207{word-spacing:-2.603559pt;}
.ws6a{word-spacing:-2.550426pt;}
.wsb7{word-spacing:-2.497292pt;}
.ws1a5{word-spacing:-2.444158pt;}
.ws230{word-spacing:-2.391024pt;}
.ws63{word-spacing:-2.284756pt;}
.ws19f{word-spacing:-2.231622pt;}
.wscc{word-spacing:-2.178489pt;}
.ws5f{word-spacing:-2.125355pt;}
.ws1f7{word-spacing:-2.072221pt;}
.ws1f4{word-spacing:-2.019087pt;}
.wsd2{word-spacing:-1.965953pt;}
.ws24c{word-spacing:-1.940890pt;}
.ws2b{word-spacing:-1.926480pt;}
.ws5d{word-spacing:-1.912819pt;}
.wsb6{word-spacing:-1.859685pt;}
.ws275{word-spacing:-1.819584pt;}
.ws1f9{word-spacing:-1.806551pt;}
.ws164{word-spacing:-1.782763pt;}
.wscd{word-spacing:-1.753418pt;}
.ws234{word-spacing:-1.700284pt;}
.ws273{word-spacing:-1.698278pt;}
.ws291{word-spacing:-1.657843pt;}
.ws10b{word-spacing:-1.647150pt;}
.ws205{word-spacing:-1.594016pt;}
.ws36{word-spacing:-1.554293pt;}
.ws136{word-spacing:-1.540882pt;}
.ws280{word-spacing:-1.536538pt;}
.ws264{word-spacing:-1.496102pt;}
.wsca{word-spacing:-1.487748pt;}
.ws29{word-spacing:-1.445344pt;}
.ws11e{word-spacing:-1.434614pt;}
.ws11d{word-spacing:-1.381481pt;}
.ws85{word-spacing:-1.328347pt;}
.ws237{word-spacing:-1.275213pt;}
.wsaf{word-spacing:-1.222079pt;}
.ws28f{word-spacing:-1.213056pt;}
.ws296{word-spacing:-1.172621pt;}
.ws1a6{word-spacing:-1.168945pt;}
.ws28d{word-spacing:-1.132186pt;}
.ws4b{word-spacing:-1.115811pt;}
.ws56{word-spacing:-1.062677pt;}
.ws29e{word-spacing:-1.051315pt;}
.ws10e{word-spacing:-0.956410pt;}
.ws22{word-spacing:-0.906288pt;}
.ws107{word-spacing:-0.903276pt;}
.ws2a1{word-spacing:-0.889574pt;}
.ws7f{word-spacing:-0.850142pt;}
.ws29a{word-spacing:-0.808704pt;}
.wsd3{word-spacing:-0.797008pt;}
.ws1dd{word-spacing:-0.743874pt;}
.ws11f{word-spacing:-0.690740pt;}
.ws289{word-spacing:-0.687398pt;}
.wsa0{word-spacing:-0.637606pt;}
.ws258{word-spacing:-0.606528pt;}
.ws57{word-spacing:-0.584473pt;}
.ws3d{word-spacing:-0.535051pt;}
.wscf{word-spacing:-0.531339pt;}
.ws240{word-spacing:-0.525658pt;}
.ws248{word-spacing:-0.485222pt;}
.ws19{word-spacing:-0.482475pt;}
.ws83{word-spacing:-0.478205pt;}
.ws80{word-spacing:-0.425071pt;}
.ws268{word-spacing:-0.404352pt;}
.ws18e{word-spacing:-0.371937pt;}
.ws18d{word-spacing:-0.318803pt;}
.ws241{word-spacing:-0.283046pt;}
.ws196{word-spacing:-0.265669pt;}
.ws1f8{word-spacing:-0.212535pt;}
.ws208{word-spacing:-0.185968pt;}
.ws242{word-spacing:-0.161741pt;}
.wse7{word-spacing:-0.159402pt;}
.ws1df{word-spacing:-0.106268pt;}
.ws2f{word-spacing:-0.058475pt;}
.ws73{word-spacing:-0.053134pt;}
.ws106{word-spacing:-0.047821pt;}
.ws13f{word-spacing:-0.031881pt;}
.ws193{word-spacing:-0.026567pt;}
.ws1ed{word-spacing:-0.024419pt;}
.ws161{word-spacing:-0.018177pt;}
.ws31{word-spacing:-0.015435pt;}
.ws28{word-spacing:-0.014677pt;}
.ws1d{word-spacing:-0.012395pt;}
.ws42{word-spacing:-0.009909pt;}
.ws1{word-spacing:-0.009856pt;}
.ws0{word-spacing:-0.004587pt;}
.ws3b{word-spacing:-0.004576pt;}
.ws43{word-spacing:0.000000pt;}
.wsc{word-spacing:0.000293pt;}
.ws9{word-spacing:0.001067pt;}
.wsb{word-spacing:0.001131pt;}
.wsa{word-spacing:0.001467pt;}
.wse{word-spacing:0.001739pt;}
.ws28e{word-spacing:0.040435pt;}
.ws1f3{word-spacing:0.053134pt;}
.ws251{word-spacing:0.080870pt;}
.ws133{word-spacing:0.106268pt;}
.ws60{word-spacing:0.159402pt;}
.ws209{word-spacing:0.212535pt;}
.ws276{word-spacing:0.242611pt;}
.ws12{word-spacing:0.259813pt;}
.wse1{word-spacing:0.265669pt;}
.ws72{word-spacing:0.318803pt;}
.ws1a{word-spacing:0.363419pt;}
.ws29c{word-spacing:0.363917pt;}
.ws20b{word-spacing:0.371937pt;}
.ws26d{word-spacing:0.404352pt;}
.wsea{word-spacing:0.425071pt;}
.ws108{word-spacing:0.478205pt;}
.ws41{word-spacing:0.518656pt;}
.wsc1{word-spacing:0.531339pt;}
.ws1c{word-spacing:0.580955pt;}
.ws1c6{word-spacing:0.584473pt;}
.ws55{word-spacing:0.637606pt;}
.ws79{word-spacing:0.690740pt;}
.ws29b{word-spacing:0.727834pt;}
.ws4f{word-spacing:0.743874pt;}
.wsc2{word-spacing:0.797008pt;}
.ws269{word-spacing:0.849139pt;}
.ws14e{word-spacing:0.850142pt;}
.ws61{word-spacing:0.903276pt;}
.wsb5{word-spacing:0.956410pt;}
.ws2a0{word-spacing:0.970445pt;}
.wsbb{word-spacing:1.009543pt;}
.ws26a{word-spacing:1.051315pt;}
.ws58{word-spacing:1.062677pt;}
.ws37{word-spacing:1.108773pt;}
.wse5{word-spacing:1.115811pt;}
.ws210{word-spacing:1.168945pt;}
.ws284{word-spacing:1.213056pt;}
.wsab{word-spacing:1.222079pt;}
.wsae{word-spacing:1.275213pt;}
.ws256{word-spacing:1.293926pt;}
.wsd4{word-spacing:1.328347pt;}
.ws270{word-spacing:1.334362pt;}
.wsfa{word-spacing:1.381481pt;}
.ws3c{word-spacing:1.425707pt;}
.wsb3{word-spacing:1.434614pt;}
.ws247{word-spacing:1.455667pt;}
.wsda{word-spacing:1.487748pt;}
.ws29f{word-spacing:1.496102pt;}
.ws179{word-spacing:1.540882pt;}
.wsb8{word-spacing:1.594016pt;}
.ws228{word-spacing:1.647150pt;}
.ws24d{word-spacing:1.698278pt;}
.wsdd{word-spacing:1.700284pt;}
.ws1b{word-spacing:1.749141pt;}
.wsc3{word-spacing:1.753418pt;}
.ws15a{word-spacing:1.769237pt;}
.wsa5{word-spacing:1.806551pt;}
.ws10f{word-spacing:1.859685pt;}
.ws14{word-spacing:1.900363pt;}
.ws70{word-spacing:1.912819pt;}
.ws7a{word-spacing:2.019087pt;}
.ws18{word-spacing:2.062283pt;}
.ws9f{word-spacing:2.072221pt;}
.ws28c{word-spacing:2.102630pt;}
.ws9e{word-spacing:2.125355pt;}
.ws69{word-spacing:2.178489pt;}
.ws9d{word-spacing:2.231622pt;}
.ws16b{word-spacing:2.253118pt;}
.ws1f{word-spacing:2.262267pt;}
.ws28b{word-spacing:2.264371pt;}
.wsd5{word-spacing:2.284756pt;}
.ws255{word-spacing:2.304806pt;}
.wsfd{word-spacing:2.337890pt;}
.ws45{word-spacing:2.391024pt;}
.wsbd{word-spacing:2.444158pt;}
.ws113{word-spacing:2.497292pt;}
.wsf1{word-spacing:2.550426pt;}
.ws278{word-spacing:2.587853pt;}
.ws59{word-spacing:2.603559pt;}
.ws6f{word-spacing:2.656693pt;}
.ws9b{word-spacing:2.709827pt;}
.ws40{word-spacing:2.755643pt;}
.ws76{word-spacing:2.762961pt;}
.ws239{word-spacing:2.816095pt;}
.ws192{word-spacing:2.869229pt;}
.ws274{word-spacing:2.911334pt;}
.ws92{word-spacing:2.922363pt;}
.ws23c{word-spacing:2.951770pt;}
.ws4c{word-spacing:2.975497pt;}
.wsa9{word-spacing:3.028630pt;}
.ws50{word-spacing:3.081764pt;}
.ws138{word-spacing:3.134898pt;}
.wsde{word-spacing:3.188032pt;}
.ws272{word-spacing:3.194381pt;}
.ws8d{word-spacing:3.241166pt;}
.ws290{word-spacing:3.275251pt;}
.ws35{word-spacing:3.290091pt;}
.ws4d{word-spacing:3.294300pt;}
.wsaa{word-spacing:3.347434pt;}
.ws298{word-spacing:3.356122pt;}
.ws10a{word-spacing:3.400567pt;}
.wse3{word-spacing:3.453701pt;}
.ws109{word-spacing:3.506835pt;}
.ws27a{word-spacing:3.517862pt;}
.ws297{word-spacing:3.558298pt;}
.ws14b{word-spacing:3.559969pt;}
.ws4a{word-spacing:3.613103pt;}
.wsfb{word-spacing:3.666237pt;}
.ws252{word-spacing:3.760474pt;}
.wsf6{word-spacing:3.772505pt;}
.ws4e{word-spacing:3.825638pt;}
.wsc6{word-spacing:3.878772pt;}
.ws288{word-spacing:3.922214pt;}
.wsd8{word-spacing:3.931906pt;}
.ws24b{word-spacing:3.962650pt;}
.ws9a{word-spacing:3.985040pt;}
.ws25b{word-spacing:4.003085pt;}
.wsa7{word-spacing:4.038174pt;}
.wsa2{word-spacing:4.091308pt;}
.ws48{word-spacing:4.144442pt;}
.ws26e{word-spacing:4.164826pt;}
.ws47{word-spacing:4.197575pt;}
.ws299{word-spacing:4.205261pt;}
.wsbc{word-spacing:4.250709pt;}
.wsb1{word-spacing:4.303843pt;}
.ws26b{word-spacing:4.326566pt;}
.ws5b{word-spacing:4.356977pt;}
.ws260{word-spacing:4.407437pt;}
.ws7c{word-spacing:4.410111pt;}
.ws117{word-spacing:4.420749pt;}
.ws74{word-spacing:4.463245pt;}
.ws29d{word-spacing:4.488307pt;}
.ws158{word-spacing:4.516379pt;}
.ws15{word-spacing:4.562288pt;}
.ws277{word-spacing:4.569178pt;}
.wse9{word-spacing:4.569513pt;}
.ws287{word-spacing:4.609613pt;}
.ws34{word-spacing:4.616949pt;}
.wsdc{word-spacing:4.622646pt;}
.ws23{word-spacing:4.667803pt;}
.ws227{word-spacing:4.675780pt;}
.ws254{word-spacing:4.690483pt;}
.ws167{word-spacing:4.728914pt;}
.ws249{word-spacing:4.730918pt;}
.ws253{word-spacing:4.771354pt;}
.wsce{word-spacing:4.782048pt;}
.wsc5{word-spacing:4.835182pt;}
.wsdf{word-spacing:4.888316pt;}
.ws23f{word-spacing:4.892659pt;}
.wsc7{word-spacing:4.941450pt;}
.wsb0{word-spacing:4.994583pt;}
.ws17{word-spacing:5.029696pt;}
.ws71{word-spacing:5.047717pt;}
.wsa3{word-spacing:5.100851pt;}
.ws283{word-spacing:5.135270pt;}
.ws99{word-spacing:5.153985pt;}
.ws27c{word-spacing:5.175706pt;}
.ws6b{word-spacing:5.207119pt;}
.ws25f{word-spacing:5.216141pt;}
.ws145{word-spacing:5.260253pt;}
.ws292{word-spacing:5.297011pt;}
.ws111{word-spacing:5.313387pt;}
.wsac{word-spacing:5.366521pt;}
.wsbe{word-spacing:5.419654pt;}
.ws2d{word-spacing:5.467045pt;}
.ws101{word-spacing:5.472788pt;}
.wsb9{word-spacing:5.525922pt;}
.ws88{word-spacing:5.579056pt;}
.ws25d{word-spacing:5.620493pt;}
.wsa4{word-spacing:5.632190pt;}
.ws285{word-spacing:5.660928pt;}
.wsf9{word-spacing:5.685324pt;}
.wsfc{word-spacing:5.738458pt;}
.ws23a{word-spacing:5.741798pt;}
.ws28a{word-spacing:5.782234pt;}
.ws21e{word-spacing:5.791591pt;}
.ws27d{word-spacing:5.822669pt;}
.ws62{word-spacing:5.844725pt;}
.ws293{word-spacing:5.863104pt;}
.ws139{word-spacing:5.897859pt;}
.ws23b{word-spacing:5.903539pt;}
.ws10{word-spacing:5.937707pt;}
.ws246{word-spacing:5.943974pt;}
.ws8a{word-spacing:5.950993pt;}
.ws87{word-spacing:6.004127pt;}
.ws12a{word-spacing:6.057261pt;}
.ws1de{word-spacing:6.110395pt;}
.ws294{word-spacing:6.146150pt;}
.ws27{word-spacing:6.160379pt;}
.ws211{word-spacing:6.163529pt;}
.ws119{word-spacing:6.216662pt;}
.ws3a{word-spacing:6.260757pt;}
.ws212{word-spacing:6.269796pt;}
.ws245{word-spacing:6.307891pt;}
.ws95{word-spacing:6.322930pt;}
.wsd{word-spacing:6.327955pt;}
.ws203{word-spacing:6.376064pt;}
.ws68{word-spacing:6.429198pt;}
.ws5c{word-spacing:6.482332pt;}
.ws262{word-spacing:6.510067pt;}
.wsf3{word-spacing:6.535466pt;}
.ws54{word-spacing:6.588599pt;}
.ws96{word-spacing:6.641733pt;}
.ws261{word-spacing:6.671808pt;}
.ws7d{word-spacing:6.694867pt;}
.ws3e{word-spacing:6.743040pt;}
.ws105{word-spacing:6.748001pt;}
.ws123{word-spacing:6.801135pt;}
.ws110{word-spacing:6.854269pt;}
.wsa1{word-spacing:6.907403pt;}
.ws265{word-spacing:6.914419pt;}
.ws13{word-spacing:6.954859pt;}
.ws8b{word-spacing:6.960537pt;}
.ws115{word-spacing:6.971181pt;}
.ws12b{word-spacing:7.013670pt;}
.ws116{word-spacing:7.013688pt;}
.ws26f{word-spacing:7.035725pt;}
.ws10c{word-spacing:7.066804pt;}
.ws279{word-spacing:7.076160pt;}
.wscb{word-spacing:7.119938pt;}
.ws257{word-spacing:7.157030pt;}
.wse0{word-spacing:7.173072pt;}
.ws38{word-spacing:7.212373pt;}
.ws8c{word-spacing:7.226206pt;}
.ws2c{word-spacing:7.273525pt;}
.ws114{word-spacing:7.279340pt;}
.ws27f{word-spacing:7.318771pt;}
.ws90{word-spacing:7.332474pt;}
.ws24a{word-spacing:7.359206pt;}
.ws21d{word-spacing:7.385607pt;}
.ws1a0{word-spacing:7.438741pt;}
.ws24f{word-spacing:7.440077pt;}
.ws10d{word-spacing:7.491875pt;}
.ws12e{word-spacing:7.545009pt;}
.ws51{word-spacing:7.598143pt;}
.ws295{word-spacing:7.601818pt;}
.ws5a{word-spacing:7.651277pt;}
.ws141{word-spacing:7.704411pt;}
.ws13a{word-spacing:7.757545pt;}
.ws98{word-spacing:7.810678pt;}
.wsb4{word-spacing:7.863812pt;}
.ws11{word-spacing:7.909296pt;}
.ws126{word-spacing:7.916946pt;}
.ws223{word-spacing:8.023214pt;}
.wsc8{word-spacing:8.076348pt;}
.ws206{word-spacing:8.129482pt;}
.ws2a{word-spacing:8.224379pt;}
.ws165{word-spacing:8.235749pt;}
.wsa6{word-spacing:8.288883pt;}
.ws24{word-spacing:8.327803pt;}
.ws250{word-spacing:8.329651pt;}
.ws27b{word-spacing:8.370086pt;}
.ws6d{word-spacing:8.395151pt;}
.wse4{word-spacing:8.448285pt;}
.ws2e{word-spacing:8.494485pt;}
.ws9c{word-spacing:8.501419pt;}
.wsba{word-spacing:8.554553pt;}
.ws16{word-spacing:8.648373pt;}
.ws6c{word-spacing:8.660820pt;}
.ws23d{word-spacing:8.693568pt;}
.ws39{word-spacing:8.698475pt;}
.ws49{word-spacing:8.713954pt;}
.ws3f{word-spacing:8.756187pt;}
.ws1a1{word-spacing:8.767088pt;}
.ws137{word-spacing:8.820222pt;}
.wsb2{word-spacing:8.873356pt;}
.ws7b{word-spacing:8.926490pt;}
.ws67{word-spacing:8.979623pt;}
.ws25{word-spacing:9.026000pt;}
.wsa8{word-spacing:9.032757pt;}
.ws112{word-spacing:9.085891pt;}
.ws195{word-spacing:9.139025pt;}
.ws25c{word-spacing:9.178790pt;}
.ws11c{word-spacing:9.192159pt;}
.ws17d{word-spacing:9.245293pt;}
.ws27e{word-spacing:9.259661pt;}
.ws140{word-spacing:9.298427pt;}
.ws75{word-spacing:9.351561pt;}
.ws271{word-spacing:9.380966pt;}
.wse2{word-spacing:9.404694pt;}
.ws130{word-spacing:9.510962pt;}
.wse8{word-spacing:9.564096pt;}
.ws1c5{word-spacing:9.617230pt;}
.wsbf{word-spacing:9.670364pt;}
.ws1fc{word-spacing:9.723498pt;}
.wsc4{word-spacing:9.776631pt;}
.wsff{word-spacing:9.829765pt;}
.ws33{word-spacing:9.874117pt;}
.ws14c{word-spacing:9.882899pt;}
.ws97{word-spacing:9.936033pt;}
.ws132{word-spacing:9.989167pt;}
.ws162{word-spacing:10.033610pt;}
.ws91{word-spacing:10.042301pt;}
.ws15e{word-spacing:10.069964pt;}
.ws26{word-spacing:10.088304pt;}
.ws178{word-spacing:10.148569pt;}
.ws93{word-spacing:10.201702pt;}
.ws281{word-spacing:10.230106pt;}
.ws32{word-spacing:10.241520pt;}
.wsad{word-spacing:10.254836pt;}
.ws44{word-spacing:10.302627pt;}
.wseb{word-spacing:10.307970pt;}
.ws221{word-spacing:10.361104pt;}
.ws120{word-spacing:10.414238pt;}
.ws1ba{word-spacing:10.467372pt;}
.ws225{word-spacing:10.520506pt;}
.wsd1{word-spacing:10.573639pt;}
.ws1fa{word-spacing:10.584293pt;}
.ws18c{word-spacing:10.626773pt;}
.ws24e{word-spacing:10.634458pt;}
.ws25a{word-spacing:10.715328pt;}
.ws122{word-spacing:10.733041pt;}
.wse6{word-spacing:10.786175pt;}
.ws11b{word-spacing:10.839309pt;}
.ws148{word-spacing:10.892443pt;}
.ws171{word-spacing:10.945577pt;}
.ws1b2{word-spacing:10.971919pt;}
.ws267{word-spacing:10.998374pt;}
.ws104{word-spacing:10.998710pt;}
.ws1af{word-spacing:11.021565pt;}
.ws244{word-spacing:11.038810pt;}
.ws53{word-spacing:11.051844pt;}
.ws129{word-spacing:11.104978pt;}
.ws215{word-spacing:11.134056pt;}
.ws143{word-spacing:11.158112pt;}
.ws25e{word-spacing:11.160115pt;}
.ws216{word-spacing:11.171927pt;}
.ws6e{word-spacing:11.211246pt;}
.wsc9{word-spacing:11.317514pt;}
.ws5e{word-spacing:11.370647pt;}
.ws26c{word-spacing:11.402726pt;}
.ws21b{word-spacing:11.423781pt;}
.ws1ac{word-spacing:11.441622pt;}
.ws201{word-spacing:11.476915pt;}
.ws1a9{word-spacing:11.493394pt;}
.ws1fd{word-spacing:11.530049pt;}
.ws1cc{word-spacing:11.541212pt;}
.ws263{word-spacing:11.564467pt;}
.ws12f{word-spacing:11.583183pt;}
.ws17b{word-spacing:11.636317pt;}
.ws21c{word-spacing:11.689451pt;}
.ws1a7{word-spacing:11.742585pt;}
.wsf5{word-spacing:11.795718pt;}
.ws118{word-spacing:11.848852pt;}
.ws286{word-spacing:11.887949pt;}
.ws17a{word-spacing:11.901986pt;}
.ws89{word-spacing:11.955120pt;}
.ws121{word-spacing:12.008254pt;}
.ws22b{word-spacing:12.050726pt;}
.wsd6{word-spacing:12.061388pt;}
.ws1c7{word-spacing:12.167655pt;}
.ws259{word-spacing:12.170995pt;}
.ws159{word-spacing:12.273923pt;}
.ws23e{word-spacing:12.292301pt;}
.ws8f{word-spacing:12.380191pt;}
.wsd0{word-spacing:12.433325pt;}
.ws218{word-spacing:12.497117pt;}
.ws232{word-spacing:12.539593pt;}
.ws219{word-spacing:12.539624pt;}
.ws236{word-spacing:12.592726pt;}
.ws166{word-spacing:12.698994pt;}
.ws1fb{word-spacing:12.805262pt;}
.ws1ff{word-spacing:12.858396pt;}
.ws7e{word-spacing:12.911530pt;}
.ws22e{word-spacing:13.017797pt;}
.ws191{word-spacing:13.124065pt;}
.ws1a4{word-spacing:13.177199pt;}
.ws65{word-spacing:13.230333pt;}
.ws86{word-spacing:13.246362pt;}
.ws52{word-spacing:13.283467pt;}
.ws127{word-spacing:13.389734pt;}
.ws11a{word-spacing:13.442868pt;}
.ws1bf{word-spacing:13.544985pt;}
.ws1c1{word-spacing:13.594061pt;}
.ws94{word-spacing:13.602270pt;}
.ws20a{word-spacing:13.761671pt;}
.ws229{word-spacing:13.814805pt;}
.ws150{word-spacing:13.867939pt;}
.wsf4{word-spacing:13.921073pt;}
.ws22c{word-spacing:13.974207pt;}
.ws1d1{word-spacing:14.006387pt;}
.ws1ce{word-spacing:14.011313pt;}
.ws1cd{word-spacing:14.012735pt;}
.ws1d0{word-spacing:14.019822pt;}
.ws1cb{word-spacing:14.024748pt;}
.ws231{word-spacing:14.027341pt;}
.ws204{word-spacing:14.186742pt;}
.ws243{word-spacing:14.394931pt;}
.wsc0{word-spacing:14.399278pt;}
.ws8e{word-spacing:14.452412pt;}
.ws1c8{word-spacing:14.505546pt;}
.ws6{word-spacing:14.565979pt;}
.ws5{word-spacing:14.568379pt;}
.ws8{word-spacing:14.568917pt;}
.ws7{word-spacing:14.571856pt;}
.ws30{word-spacing:14.602859pt;}
.ws1a2{word-spacing:14.664947pt;}
.ws131{word-spacing:14.718081pt;}
.ws21f{word-spacing:14.824349pt;}
.wsf2{word-spacing:15.036884pt;}
.wsf8{word-spacing:15.143152pt;}
.ws151{word-spacing:15.196286pt;}
.ws224{word-spacing:15.302554pt;}
.wsd7{word-spacing:15.355687pt;}
.ws1be{word-spacing:15.408821pt;}
.wsd9{word-spacing:15.461955pt;}
.ws66{word-spacing:15.568223pt;}
.ws1f6{word-spacing:15.621357pt;}
.ws233{word-spacing:15.674491pt;}
.ws82{word-spacing:15.780758pt;}
.ws20c{word-spacing:15.833892pt;}
.ws235{word-spacing:15.940160pt;}
.ws64{word-spacing:16.365231pt;}
.ws22d{word-spacing:16.418365pt;}
.ws222{word-spacing:16.524633pt;}
.ws124{word-spacing:16.577766pt;}
.ws1d4{word-spacing:17.243788pt;}
.ws1e{word-spacing:17.264581pt;}
.ws202{word-spacing:17.587310pt;}
.ws14f{word-spacing:18.171782pt;}
.ws46{word-spacing:18.596853pt;}
.wsef{word-spacing:19.393861pt;}
.ws1b1{word-spacing:23.383591pt;}
.ws81{word-spacing:23.862579pt;}
.ws20{word-spacing:23.866336pt;}
.ws142{word-spacing:23.910240pt;}
.ws1ab{word-spacing:24.384634pt;}
.ws1b6{word-spacing:24.760382pt;}
.ws1b5{word-spacing:24.813516pt;}
.ws125{word-spacing:25.451122pt;}
.ws22f{word-spacing:26.141862pt;}
.ws266{word-spacing:26.485056pt;}
.ws238{word-spacing:26.779469pt;}
.ws200{word-spacing:27.045138pt;}
.ws16d{word-spacing:29.138451pt;}
.ws12c{word-spacing:30.461722pt;}
.ws2{word-spacing:32.369856pt;}
.ws3{word-spacing:32.372576pt;}
.ws4{word-spacing:32.380085pt;}
.ws21{word-spacing:33.781141pt;}
.wsee{word-spacing:33.793139pt;}
.ws15c{word-spacing:34.281502pt;}
.ws149{word-spacing:34.855817pt;}
.ws144{word-spacing:35.387155pt;}
.wsf{word-spacing:38.405440pt;}
.ws226{word-spacing:40.966211pt;}
.ws220{word-spacing:42.188290pt;}
.ws1b8{word-spacing:48.245551pt;}
.ws1d3{word-spacing:49.069780pt;}
.ws1ee{word-spacing:50.368487pt;}
.ws1d5{word-spacing:53.134000pt;}
.ws217{word-spacing:56.768539pt;}
.ws160{word-spacing:61.770475pt;}
.ws12d{word-spacing:62.604931pt;}
.ws21a{word-spacing:63.718293pt;}
.ws1cf{word-spacing:71.013786pt;}
.ws1e1{word-spacing:72.049704pt;}
.ws1d2{word-spacing:78.786439pt;}
.ws1c9{word-spacing:90.877233pt;}
.ws1e6{word-spacing:96.618866pt;}
.ws1e3{word-spacing:96.661373pt;}
.ws1db{word-spacing:106.990622pt;}
.ws1e8{word-spacing:124.971168pt;}
.ws1ea{word-spacing:125.013675pt;}
.ws20d{word-spacing:127.875465pt;}
.ws1dc{word-spacing:131.772320pt;}
.ws16f{word-spacing:134.407429pt;}
.ws20f{word-spacing:142.907802pt;}
.ws20e{word-spacing:146.098222pt;}
.ws1e4{word-spacing:147.542491pt;}
.ws1e7{word-spacing:147.584998pt;}
.ws1d7{word-spacing:154.343643pt;}
.ws1d6{word-spacing:157.914248pt;}
.ws1d9{word-spacing:161.442346pt;}
.ws177{word-spacing:169.091711pt;}
.ws1eb{word-spacing:174.874621pt;}
.ws1e9{word-spacing:174.917128pt;}
.ws16e{word-spacing:175.426774pt;}
.ws1da{word-spacing:176.957474pt;}
.ws1d8{word-spacing:182.695946pt;}
.ws1f0{word-spacing:186.073627pt;}
.ws1e5{word-spacing:197.488451pt;}
.ws1f2{word-spacing:198.250624pt;}
.ws1e2{word-spacing:204.799690pt;}
.ws176{word-spacing:219.824989pt;}
.ws194{word-spacing:229.750839pt;}
.ws1ef{word-spacing:266.624135pt;}
.ws156{word-spacing:308.271606pt;}
.ws174{word-spacing:311.812168pt;}
.ws155{word-spacing:320.423955pt;}
.ws157{word-spacing:365.986992pt;}
.ws22a{word-spacing:391.661341pt;}
.ws13c{word-spacing:400.970418pt;}
.ws134{word-spacing:408.821662pt;}
.ws13d{word-spacing:485.262195pt;}
.ws152{word-spacing:520.311507pt;}
.ws172{word-spacing:528.041185pt;}
.ws17c{word-spacing:630.507183pt;}
.ws1e0{word-spacing:2383.650229pt;}
._22{margin-left:-6.748001pt;}
._c{margin-left:-5.260253pt;}
._4{margin-left:-4.241168pt;}
._1{margin-left:-2.859477pt;}
._0{margin-left:-1.654923pt;}
._21{width:1.115808pt;}
._2{width:2.323924pt;}
._26{width:4.717947pt;}
._46{width:5.791591pt;}
._d{width:10.414238pt;}
._45{width:12.051636pt;}
._b{width:13.592729pt;}
._a{width:14.619586pt;}
._24{width:15.789204pt;}
._8{width:16.843436pt;}
._72{width:17.791488pt;}
._5{width:18.848992pt;}
._20{width:20.191695pt;}
._9{width:21.731751pt;}
._5a{width:22.847563pt;}
._6{width:24.297237pt;}
._71{width:25.320144pt;}
._25{width:26.301264pt;}
._68{width:27.354400pt;}
._67{width:28.320351pt;}
._47{width:30.172263pt;}
._3{width:31.128000pt;}
._70{width:32.173130pt;}
._69{width:33.251024pt;}
._44{width:34.885895pt;}
._6e{width:36.674726pt;}
._23{width:37.611072pt;}
._6b{width:38.762650pt;}
._6f{width:41.324774pt;}
._5d{width:42.520728pt;}
._27{width:43.706828pt;}
._17{width:44.609229pt;}
._5b{width:47.747340pt;}
._48{width:49.148827pt;}
._6c{width:50.763699pt;}
._6d{width:51.738672pt;}
._5c{width:52.742521pt;}
._6a{width:53.900122pt;}
._52{width:58.710072pt;}
._39{width:59.627604pt;}
._2d{width:62.629301pt;}
._43{width:63.545190pt;}
._32{width:65.675473pt;}
._4e{width:67.598529pt;}
._33{width:68.697276pt;}
._51{width:69.780215pt;}
._30{width:70.768673pt;}
._31{width:71.743448pt;}
._2c{width:74.789620pt;}
._4f{width:76.705881pt;}
._64{width:79.451735pt;}
._50{width:80.654078pt;}
._57{width:81.996389pt;}
._2b{width:83.611335pt;}
._28{width:85.268453pt;}
._2e{width:87.291111pt;}
._1b{width:88.357697pt;}
._2a{width:89.688800pt;}
._19{width:91.642898pt;}
._36{width:92.749852pt;}
._4b{width:94.193097pt;}
._3c{width:95.781145pt;}
._35{width:96.736940pt;}
._34{width:98.769088pt;}
._3a{width:101.276939pt;}
._1a{width:102.380019pt;}
._60{width:103.567139pt;}
._62{width:104.557744pt;}
._3b{width:105.495036pt;}
._1c{width:107.331908pt;}
._37{width:108.346254pt;}
._13{width:109.625297pt;}
._f{width:111.390636pt;}
._16{width:112.298611pt;}
._4d{width:113.331565pt;}
._66{width:114.554046pt;}
._38{width:117.021752pt;}
._2f{width:120.092294pt;}
._1e{width:121.106318pt;}
._e{width:122.652989pt;}
._1d{width:127.169091pt;}
._3e{width:129.986261pt;}
._61{width:134.688218pt;}
._29{width:135.593007pt;}
._63{width:136.674411pt;}
._58{width:142.933197pt;}
._4c{width:146.140707pt;}
._65{width:152.481963pt;}
._56{width:160.783293pt;}
._41{width:172.366696pt;}
._3d{width:176.288079pt;}
._14{width:188.400527pt;}
._54{width:205.309776pt;}
._5e{width:220.857512pt;}
._53{width:232.641906pt;}
._5f{width:243.104221pt;}
._55{width:255.213229pt;}
._4a{width:280.580475pt;}
._42{width:286.966107pt;}
._15{width:304.821227pt;}
._1f{width:337.880749pt;}
._10{width:391.678810pt;}
._3f{width:432.510760pt;}
._40{width:438.033622pt;}
._49{width:438.966138pt;}
._11{width:524.618133pt;}
._12{width:527.932963pt;}
._18{width:594.949631pt;}
._59{width:2394.367183pt;}
._7{width:2415.047616pt;}
.fs1c{font-size:14.412827pt;}
.fs1b{font-size:17.295508pt;}
.fs19{font-size:18.176830pt;}
.fs21{font-size:19.017939pt;}
.fs16{font-size:19.035866pt;}
.fs1a{font-size:23.060581pt;}
.fs11{font-size:24.369378pt;}
.fs2d{font-size:24.419213pt;}
.fs5{font-size:24.549333pt;}
.fs15{font-size:25.381049pt;}
.fs18{font-size:25.447489pt;}
.fs14{font-size:26.566933pt;}
.fs20{font-size:26.625039pt;}
.fs2e{font-size:28.742518pt;}
.fs1e{font-size:28.957449pt;}
.fs2b{font-size:29.441991pt;}
.fsf{font-size:29.740588pt;}
.fs23{font-size:29.741490pt;}
.fs25{font-size:30.272987pt;}
.fse{font-size:31.880533pt;}
.fs1{font-size:31.882667pt;}
.fs2c{font-size:32.558815pt;}
.fs29{font-size:34.353125pt;}
.fs6{font-size:35.066667pt;}
.fs17{font-size:36.353660pt;}
.fs4{font-size:36.821333pt;}
.fsb{font-size:37.193600pt;}
.fs0{font-size:37.194667pt;}
.fs2f{font-size:37.870940pt;}
.fs1f{font-size:38.035878pt;}
.fs2a{font-size:39.255824pt;}
.fs30{font-size:40.435200pt;}
.fs7{font-size:40.912000pt;}
.fs1d{font-size:41.367903pt;}
.fs22{font-size:42.487965pt;}
.fs10{font-size:42.507200pt;}
.fs24{font-size:43.247248pt;}
.fs13{font-size:45.716047pt;}
.fs9{font-size:47.818667pt;}
.fsd{font-size:47.820800pt;}
.fsa{font-size:48.000000pt;}
.fs28{font-size:49.076033pt;}
.fs27{font-size:49.646691pt;}
.fs26{font-size:51.772046pt;}
.fs3{font-size:52.602667pt;}
.fsc{font-size:53.133867pt;}
.fs8{font-size:53.136000pt;}
.fs12{font-size:60.954475pt;}
.fs2{font-size:116.896000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:35.405333pt;}
.ya0{bottom:42.045333pt;}
.y14d{bottom:42.046667pt;}
.y2c{bottom:69.818667pt;}
.y2b7{bottom:69.820000pt;}
.y242{bottom:80.426967pt;}
.y189{bottom:81.774667pt;}
.y241{bottom:82.500519pt;}
.y240{bottom:82.625498pt;}
.y37{bottom:85.758667pt;}
.y2b{bottom:85.760000pt;}
.y71{bottom:86.224000pt;}
.y3cd{bottom:86.613333pt;}
.y23f{bottom:89.461012pt;}
.y50f{bottom:93.729333pt;}
.y4b2{bottom:94.940000pt;}
.y481{bottom:97.126667pt;}
.y188{bottom:97.480000pt;}
.y27b{bottom:101.664000pt;}
.y9f{bottom:101.698667pt;}
.y2a{bottom:101.700000pt;}
.y70{bottom:102.164000pt;}
.y3cc{bottom:102.553333pt;}
.y126{bottom:103.658667pt;}
.y594{bottom:105.685333pt;}
.y50e{bottom:105.956000pt;}
.y554{bottom:106.409333pt;}
.y480{bottom:108.285333pt;}
.y4b1{bottom:110.881333pt;}
.y23e{bottom:111.866667pt;}
.y422{bottom:114.616000pt;}
.y27a{bottom:117.604000pt;}
.y9e{bottom:117.638667pt;}
.y29{bottom:117.640000pt;}
.y50d{bottom:117.910667pt;}
.y6f{bottom:118.104000pt;}
.y553{bottom:118.365333pt;}
.y3cb{bottom:118.493333pt;}
.y202{bottom:118.797333pt;}
.y593{bottom:118.968000pt;}
.y47f{bottom:119.442667pt;}
.y44f{bottom:121.509333pt;}
.y187{bottom:126.666667pt;}
.y4b0{bottom:126.821333pt;}
.y23d{bottom:127.806667pt;}
.y50c{bottom:129.865333pt;}
.y552{bottom:130.320000pt;}
.y592{bottom:130.924000pt;}
.y1cd{bottom:133.356000pt;}
.y279{bottom:133.544000pt;}
.y28{bottom:133.580000pt;}
.y407{bottom:133.800000pt;}
.y33c{bottom:133.894667pt;}
.y6e{bottom:134.044000pt;}
.y36b{bottom:134.313333pt;}
.y3ca{bottom:134.433333pt;}
.y201{bottom:134.737333pt;}
.y125{bottom:136.870667pt;}
.y44e{bottom:137.449333pt;}
.y421{bottom:139.735034pt;}
.y50b{bottom:142.092000pt;}
.y186{bottom:142.606667pt;}
.y4af{bottom:142.761333pt;}
.y591{bottom:142.878667pt;}
.y551{bottom:143.000000pt;}
.y23c{bottom:143.746667pt;}
.y47e{bottom:145.012000pt;}
.y1cc{bottom:149.296000pt;}
.y278{bottom:149.484000pt;}
.y27{bottom:149.520000pt;}
.y406{bottom:149.740000pt;}
.y33b{bottom:149.834667pt;}
.y6d{bottom:149.984000pt;}
.y36a{bottom:150.253333pt;}
.y3c9{bottom:150.374667pt;}
.y41f{bottom:150.385805pt;}
.y200{bottom:150.677333pt;}
.y124{bottom:152.810667pt;}
.y44d{bottom:153.389333pt;}
.y50a{bottom:154.046667pt;}
.y550{bottom:154.954667pt;}
.y590{bottom:156.162667pt;}
.y47d{bottom:156.966667pt;}
.y14c{bottom:157.797333pt;}
.y185{bottom:158.546667pt;}
.y4ae{bottom:158.701333pt;}
.y23b{bottom:159.686667pt;}
.y420{bottom:161.037764pt;}
.y1cb{bottom:165.236000pt;}
.y277{bottom:165.424000pt;}
.y26{bottom:165.460000pt;}
.y405{bottom:165.680000pt;}
.y33a{bottom:165.774667pt;}
.y6c{bottom:165.924000pt;}
.y509{bottom:166.001333pt;}
.y369{bottom:166.193333pt;}
.y3c8{bottom:166.314667pt;}
.y1ff{bottom:166.617333pt;}
.y54f{bottom:166.909333pt;}
.y36{bottom:167.660000pt;}
.y58f{bottom:168.117333pt;}
.y123{bottom:168.752000pt;}
.y47c{bottom:168.922667pt;}
.y44c{bottom:169.329333pt;}
.y41e{bottom:172.162510pt;}
.y14b{bottom:173.737333pt;}
.y184{bottom:174.486667pt;}
.y4ad{bottom:174.641333pt;}
.y23a{bottom:175.628000pt;}
.y508{bottom:178.228000pt;}
.y3d6{bottom:178.550667pt;}
.y54e{bottom:178.865333pt;}
.y2b6{bottom:178.996000pt;}
.y58e{bottom:180.073333pt;}
.y303{bottom:180.201333pt;}
.y47b{bottom:180.877333pt;}
.y1ca{bottom:181.176000pt;}
.y276{bottom:181.364000pt;}
.y9d{bottom:181.400000pt;}
.y25{bottom:181.401333pt;}
.y16d{bottom:181.417333pt;}
.y404{bottom:181.620000pt;}
.y339{bottom:181.714667pt;}
.y368{bottom:182.133333pt;}
.y3c7{bottom:182.254667pt;}
.y6b{bottom:182.329333pt;}
.y1fe{bottom:182.557333pt;}
.y41c{bottom:182.813281pt;}
.y35{bottom:183.600000pt;}
.y302{bottom:183.962667pt;}
.y122{bottom:184.692000pt;}
.y44b{bottom:185.269333pt;}
.y14a{bottom:189.677333pt;}
.y3d5{bottom:189.708000pt;}
.y507{bottom:190.182667pt;}
.y183{bottom:190.426667pt;}
.y4ac{bottom:190.581333pt;}
.y54d{bottom:191.545333pt;}
.y239{bottom:191.568000pt;}
.y58d{bottom:193.356000pt;}
.y47a{bottom:193.364000pt;}
.y41d{bottom:193.464052pt;}
.y301{bottom:196.310667pt;}
.y1c9{bottom:196.892000pt;}
.ycc{bottom:197.126667pt;}
.y9c{bottom:197.340000pt;}
.y24{bottom:197.341333pt;}
.y16c{bottom:197.357333pt;}
.y403{bottom:197.560000pt;}
.y338{bottom:197.656000pt;}
.y367{bottom:198.073333pt;}
.y3c6{bottom:198.194667pt;}
.y6a{bottom:198.269333pt;}
.y1fd{bottom:198.498667pt;}
.y2b5{bottom:198.921333pt;}
.y34{bottom:199.540000pt;}
.y39a{bottom:199.998667pt;}
.y300{bottom:200.072000pt;}
.y3d4{bottom:200.866667pt;}
.y44a{bottom:201.209333pt;}
.y506{bottom:202.409333pt;}
.y54c{bottom:203.500000pt;}
.y41b{bottom:204.588798pt;}
.y121{bottom:204.620000pt;}
.y58c{bottom:205.312000pt;}
.y479{bottom:205.318667pt;}
.y149{bottom:205.618667pt;}
.y182{bottom:206.368000pt;}
.y4ab{bottom:206.522667pt;}
.y238{bottom:207.508000pt;}
.y1c8{bottom:212.832000pt;}
.ycb{bottom:213.068000pt;}
.y9b{bottom:213.280000pt;}
.y23{bottom:213.281333pt;}
.y402{bottom:213.501333pt;}
.y337{bottom:213.909333pt;}
.y3c5{bottom:214.134667pt;}
.y69{bottom:214.209333pt;}
.y505{bottom:214.364000pt;}
.y1fc{bottom:214.438667pt;}
.y366{bottom:214.746667pt;}
.y419{bottom:215.240757pt;}
.y54b{bottom:215.454667pt;}
.y33{bottom:215.480000pt;}
.y399{bottom:215.938667pt;}
.y2ff{bottom:216.013333pt;}
.y449{bottom:217.150667pt;}
.y58b{bottom:217.266667pt;}
.y478{bottom:217.274667pt;}
.y2b4{bottom:218.846667pt;}
.y3d3{bottom:219.262667pt;}
.y120{bottom:220.560000pt;}
.y148{bottom:221.558667pt;}
.y181{bottom:222.308000pt;}
.y237{bottom:223.448000pt;}
.y41a{bottom:225.891528pt;}
.y504{bottom:226.589333pt;}
.y54a{bottom:227.410667pt;}
.y4aa{bottom:228.137333pt;}
.y1c7{bottom:228.773333pt;}
.yca{bottom:229.008000pt;}
.y22{bottom:229.221333pt;}
.y16b{bottom:229.269333pt;}
.y401{bottom:229.441333pt;}
.y336{bottom:229.850667pt;}
.y3c4{bottom:230.074667pt;}
.y68{bottom:230.149333pt;}
.y1fb{bottom:230.378667pt;}
.y58a{bottom:230.550667pt;}
.y365{bottom:230.688000pt;}
.y32{bottom:231.420000pt;}
.y2fe{bottom:231.953333pt;}
.y448{bottom:233.090667pt;}
.y398{bottom:233.208000pt;}
.y2b3{bottom:236.152943pt;}
.y11f{bottom:236.501333pt;}
.y418{bottom:237.016274pt;}
.y180{bottom:238.248000pt;}
.y275{bottom:238.348000pt;}
.y503{bottom:238.545333pt;}
.y549{bottom:239.365333pt;}
.y236{bottom:239.388000pt;}
.y147{bottom:239.810667pt;}
.y589{bottom:242.505333pt;}
.y4a9{bottom:244.077333pt;}
.y1c6{bottom:244.713333pt;}
.yc9{bottom:244.948000pt;}
.y21{bottom:245.161333pt;}
.y16a{bottom:245.209333pt;}
.y400{bottom:245.381333pt;}
.y335{bottom:245.790667pt;}
.y2b2{bottom:245.903775pt;}
.y3c3{bottom:246.016000pt;}
.y67{bottom:246.090667pt;}
.y1fa{bottom:246.318667pt;}
.y364{bottom:246.628000pt;}
.y31{bottom:247.360000pt;}
.y2fd{bottom:247.893333pt;}
.y447{bottom:249.030667pt;}
.y477{bottom:249.481333pt;}
.y274{bottom:249.505333pt;}
.y502{bottom:250.500000pt;}
.y548{bottom:252.045333pt;}
.y11e{bottom:252.441333pt;}
.y17f{bottom:254.188000pt;}
.y588{bottom:254.460000pt;}
.y235{bottom:255.328000pt;}
.y146{bottom:258.062667pt;}
.y2b1{bottom:258.697333pt;}
.y4a8{bottom:260.017333pt;}
.y1c5{bottom:260.653333pt;}
.yc8{bottom:260.888000pt;}
.y20{bottom:261.101333pt;}
.y2d8{bottom:261.102667pt;}
.y169{bottom:261.149333pt;}
.y3ff{bottom:261.321333pt;}
.y334{bottom:261.730667pt;}
.y9a{bottom:261.848000pt;}
.y3c2{bottom:261.956000pt;}
.y66{bottom:262.030667pt;}
.y1f9{bottom:262.258667pt;}
.y363{bottom:262.568000pt;}
.y501{bottom:262.725333pt;}
.y30{bottom:263.301333pt;}
.y2fc{bottom:263.833333pt;}
.y547{bottom:264.000000pt;}
.y446{bottom:264.970667pt;}
.y397{bottom:265.090667pt;}
.y476{bottom:265.421333pt;}
.y417{bottom:266.862667pt;}
.y587{bottom:267.744000pt;}
.y11d{bottom:268.381333pt;}
.y17e{bottom:270.128000pt;}
.y234{bottom:271.269333pt;}
.y273{bottom:272.977010pt;}
.y145{bottom:274.004000pt;}
.y500{bottom:274.681333pt;}
.y546{bottom:275.956000pt;}
.y4a7{bottom:275.957333pt;}
.y1c4{bottom:276.593333pt;}
.yc7{bottom:276.828000pt;}
.yf2{bottom:277.041333pt;}
.y1f{bottom:277.042667pt;}
.y168{bottom:277.104000pt;}
.y3fe{bottom:277.261333pt;}
.y333{bottom:277.670667pt;}
.y99{bottom:277.788000pt;}
.y3c1{bottom:277.896000pt;}
.y65{bottom:277.970667pt;}
.y1f8{bottom:278.198667pt;}
.y362{bottom:278.508000pt;}
.y2b0{bottom:278.622667pt;}
.y2f{bottom:279.241333pt;}
.y272{bottom:279.462536pt;}
.y586{bottom:279.698667pt;}
.y2fb{bottom:279.773333pt;}
.y445{bottom:280.910667pt;}
.y396{bottom:281.030667pt;}
.y475{bottom:281.361333pt;}
.y416{bottom:282.802667pt;}
.y11c{bottom:284.321333pt;}
.y271{bottom:285.948063pt;}
.y17d{bottom:286.069333pt;}
.y4ff{bottom:286.636000pt;}
.y233{bottom:287.209333pt;}
.y545{bottom:288.634667pt;}
.y144{bottom:289.944000pt;}
.y585{bottom:291.654667pt;}
.y4a6{bottom:291.898667pt;}
.y270{bottom:292.434312pt;}
.y1c3{bottom:292.533333pt;}
.yc6{bottom:292.769333pt;}
.yf1{bottom:292.981333pt;}
.y1e{bottom:292.982667pt;}
.y167{bottom:293.044000pt;}
.y3fd{bottom:293.201333pt;}
.y98{bottom:293.729333pt;}
.y3c0{bottom:293.836000pt;}
.y64{bottom:293.910667pt;}
.y1f7{bottom:294.140000pt;}
.y1a1{bottom:294.262667pt;}
.y361{bottom:294.448000pt;}
.y2e{bottom:295.181333pt;}
.y332{bottom:295.253333pt;}
.y2fa{bottom:295.713333pt;}
.y444{bottom:296.850667pt;}
.y395{bottom:296.970667pt;}
.y474{bottom:297.301333pt;}
.y415{bottom:298.742667pt;}
.y4fe{bottom:298.862667pt;}
.y26f{bottom:298.919838pt;}
.y11b{bottom:300.261333pt;}
.y544{bottom:300.590667pt;}
.y17c{bottom:302.009333pt;}
.y232{bottom:303.149333pt;}
.y584{bottom:304.937333pt;}
.y26e{bottom:305.405365pt;}
.y143{bottom:305.884000pt;}
.y4a5{bottom:307.838667pt;}
.y1c2{bottom:308.473333pt;}
.yc5{bottom:308.709333pt;}
.yf0{bottom:308.921333pt;}
.y1d{bottom:308.922667pt;}
.y166{bottom:308.985333pt;}
.y3fc{bottom:309.142667pt;}
.y97{bottom:309.669333pt;}
.y3bf{bottom:309.776000pt;}
.y63{bottom:309.850667pt;}
.y1a0{bottom:310.202667pt;}
.y360{bottom:310.389333pt;}
.y4fd{bottom:310.817333pt;}
.y2af{bottom:310.913333pt;}
.y2d{bottom:311.121333pt;}
.y1f6{bottom:311.237333pt;}
.y2f9{bottom:311.654667pt;}
.y26d{bottom:311.891614pt;}
.y543{bottom:312.545333pt;}
.y443{bottom:312.792000pt;}
.y394{bottom:312.910667pt;}
.y414{bottom:314.682667pt;}
.y473{bottom:314.925333pt;}
.y11a{bottom:316.202667pt;}
.y583{bottom:316.893333pt;}
.y2d7{bottom:317.330667pt;}
.y17b{bottom:317.949333pt;}
.y26c{bottom:318.377140pt;}
.y231{bottom:319.360000pt;}
.y142{bottom:321.824000pt;}
.y4fc{bottom:322.772000pt;}
.y4a4{bottom:323.778667pt;}
.y1c1{bottom:324.414667pt;}
.yc4{bottom:324.649333pt;}
.yef{bottom:324.862667pt;}
.y3fb{bottom:325.082667pt;}
.y542{bottom:325.225333pt;}
.y96{bottom:325.609333pt;}
.y3be{bottom:325.716000pt;}
.y62{bottom:325.790667pt;}
.y19f{bottom:326.144000pt;}
.y35f{bottom:326.329333pt;}
.y2ae{bottom:326.889333pt;}
.y1f5{bottom:327.177333pt;}
.y2f8{bottom:327.594667pt;}
.y331{bottom:327.797333pt;}
.y442{bottom:328.732000pt;}
.y582{bottom:328.848000pt;}
.y393{bottom:328.852000pt;}
.y1c{bottom:329.260000pt;}
.y165{bottom:330.286667pt;}
.y413{bottom:330.624000pt;}
.y472{bottom:330.866667pt;}
.y26b{bottom:331.348916pt;}
.y119{bottom:332.142667pt;}
.y2d6{bottom:333.270667pt;}
.y17a{bottom:333.889333pt;}
.y4fb{bottom:334.728000pt;}
.y230{bottom:335.300000pt;}
.y541{bottom:337.180000pt;}
.y141{bottom:337.764000pt;}
.y26a{bottom:337.834442pt;}
.yc3{bottom:340.589333pt;}
.yee{bottom:340.802667pt;}
.y3fa{bottom:341.022667pt;}
.y95{bottom:341.549333pt;}
.y3bd{bottom:341.657333pt;}
.y19e{bottom:342.084000pt;}
.y581{bottom:342.132000pt;}
.y35e{bottom:342.269333pt;}
.y1f4{bottom:343.117333pt;}
.y2f7{bottom:343.534667pt;}
.y330{bottom:343.738667pt;}
.y269{bottom:344.320692pt;}
.y441{bottom:344.672000pt;}
.y392{bottom:344.792000pt;}
.y61{bottom:345.368000pt;}
.y4a3{bottom:345.393333pt;}
.y164{bottom:346.226667pt;}
.y412{bottom:346.564000pt;}
.y471{bottom:346.806667pt;}
.y4fa{bottom:346.953333pt;}
.y118{bottom:348.082667pt;}
.y540{bottom:349.136000pt;}
.y2d5{bottom:349.210667pt;}
.y179{bottom:349.829333pt;}
.y268{bottom:350.806218pt;}
.y22f{bottom:351.240000pt;}
.y140{bottom:353.704000pt;}
.y580{bottom:354.086667pt;}
.yc2{bottom:356.529333pt;}
.yed{bottom:356.742667pt;}
.y3f9{bottom:356.962667pt;}
.y267{bottom:357.291744pt;}
.y94{bottom:357.489333pt;}
.y3bc{bottom:357.597333pt;}
.y35d{bottom:358.209333pt;}
.y4f9{bottom:358.908000pt;}
.y1f3{bottom:359.057333pt;}
.y2f6{bottom:359.474667pt;}
.y32f{bottom:359.678667pt;}
.y440{bottom:360.612000pt;}
.y19d{bottom:360.633333pt;}
.y391{bottom:360.732000pt;}
.y60{bottom:361.308000pt;}
.y4a2{bottom:361.333333pt;}
.y53f{bottom:361.814667pt;}
.y163{bottom:362.166667pt;}
.y470{bottom:362.746667pt;}
.y266{bottom:363.777994pt;}
.y117{bottom:364.022667pt;}
.y411{bottom:364.828000pt;}
.y2d4{bottom:365.150667pt;}
.y178{bottom:365.769333pt;}
.y57f{bottom:366.042667pt;}
.y22e{bottom:367.180000pt;}
.y2ad{bottom:368.320000pt;}
.y13f{bottom:369.645333pt;}
.y265{bottom:370.263520pt;}
.y4f8{bottom:371.134667pt;}
.yc1{bottom:372.469333pt;}
.yec{bottom:372.682667pt;}
.y3f8{bottom:372.902667pt;}
.y93{bottom:373.430667pt;}
.y3bb{bottom:373.537333pt;}
.y53e{bottom:373.770667pt;}
.y35c{bottom:374.149333pt;}
.y1f2{bottom:374.997333pt;}
.y2f5{bottom:375.414667pt;}
.y32e{bottom:375.618667pt;}
.y43f{bottom:376.552000pt;}
.y390{bottom:376.673333pt;}
.y264{bottom:377.037662pt;}
.y5f{bottom:377.249333pt;}
.y4a1{bottom:377.273333pt;}
.y57e{bottom:377.997333pt;}
.y162{bottom:378.106667pt;}
.y46f{bottom:378.686667pt;}
.y4d5{bottom:378.945333pt;}
.y1b{bottom:379.438667pt;}
.y1c0{bottom:379.529333pt;}
.y116{bottom:379.962667pt;}
.y2d3{bottom:381.090667pt;}
.y177{bottom:381.710667pt;}
.y4f7{bottom:383.089333pt;}
.y22d{bottom:383.390667pt;}
.y2ac{bottom:384.261333pt;}
.y13e{bottom:385.585333pt;}
.y53d{bottom:385.725333pt;}
.y290{bottom:386.060000pt;}
.yc0{bottom:388.410667pt;}
.yeb{bottom:388.622667pt;}
.y3f7{bottom:388.842667pt;}
.y92{bottom:389.370667pt;}
.y35b{bottom:390.089333pt;}
.y3ba{bottom:390.332000pt;}
.y1f1{bottom:390.938667pt;}
.y57d{bottom:391.281333pt;}
.y32d{bottom:391.558667pt;}
.y43e{bottom:392.493333pt;}
.y38f{bottom:392.613333pt;}
.y5e{bottom:393.189333pt;}
.y4a0{bottom:393.214667pt;}
.y3d2{bottom:394.014667pt;}
.y161{bottom:394.046667pt;}
.y46e{bottom:394.626667pt;}
.y4d4{bottom:394.885333pt;}
.y4f6{bottom:395.045333pt;}
.y19c{bottom:395.217333pt;}
.y1a{bottom:395.378667pt;}
.y115{bottom:395.902667pt;}
.y2d2{bottom:397.032000pt;}
.y176{bottom:397.650667pt;}
.y263{bottom:397.745333pt;}
.y53c{bottom:398.405333pt;}
.y410{bottom:398.810667pt;}
.y22c{bottom:399.330667pt;}
.y2f4{bottom:400.190667pt;}
.y2ab{bottom:400.201333pt;}
.y13d{bottom:401.525333pt;}
.y57c{bottom:403.236000pt;}
.y28f{bottom:403.366277pt;}
.ybf{bottom:404.350667pt;}
.yea{bottom:404.564000pt;}
.y3f6{bottom:404.784000pt;}
.y3b9{bottom:406.272000pt;}
.y35a{bottom:406.762667pt;}
.y1f0{bottom:406.878667pt;}
.y1bf{bottom:406.885829pt;}
.y4f5{bottom:407.270667pt;}
.y91{bottom:407.385333pt;}
.y32c{bottom:407.498667pt;}
.y43d{bottom:408.433333pt;}
.y38e{bottom:408.553333pt;}
.y5d{bottom:409.129333pt;}
.y49f{bottom:409.154667pt;}
.y53b{bottom:410.360000pt;}
.y46d{bottom:410.566667pt;}
.y4d3{bottom:410.825333pt;}
.y19b{bottom:411.157333pt;}
.y114{bottom:411.844000pt;}
.y2d1{bottom:412.972000pt;}
.y28e{bottom:413.117108pt;}
.y175{bottom:413.590667pt;}
.y262{bottom:413.685333pt;}
.y40f{bottom:414.752000pt;}
.y57b{bottom:415.190667pt;}
.y22b{bottom:415.270667pt;}
.y160{bottom:415.292000pt;}
.y2f3{bottom:416.130667pt;}
.y2aa{bottom:416.141333pt;}
.y13c{bottom:417.465333pt;}
.y4f4{bottom:419.225333pt;}
.ybe{bottom:420.290667pt;}
.ye9{bottom:420.504000pt;}
.y3f5{bottom:420.724000pt;}
.y3b8{bottom:422.212000pt;}
.y53a{bottom:422.316000pt;}
.y359{bottom:422.704000pt;}
.y1ef{bottom:422.818667pt;}
.y1be{bottom:424.028582pt;}
.y43c{bottom:424.373333pt;}
.y38d{bottom:424.493333pt;}
.y32b{bottom:425.082667pt;}
.y49e{bottom:425.094667pt;}
.y28d{bottom:425.910667pt;}
.y46c{bottom:426.508000pt;}
.y4d2{bottom:426.765333pt;}
.y19a{bottom:427.097333pt;}
.y57a{bottom:427.146667pt;}
.y113{bottom:427.784000pt;}
.y5c{bottom:428.706667pt;}
.y2d0{bottom:428.912000pt;}
.y174{bottom:429.530667pt;}
.y261{bottom:429.625333pt;}
.y40e{bottom:430.692000pt;}
.y15d{bottom:430.965333pt;}
.y4f3{bottom:431.181333pt;}
.y2f2{bottom:432.070667pt;}
.y2a9{bottom:432.081333pt;}
.y13b{bottom:433.405333pt;}
.y539{bottom:434.996000pt;}
.ybd{bottom:436.230667pt;}
.ye8{bottom:436.444000pt;}
.y3f4{bottom:436.664000pt;}
.y19{bottom:437.378667pt;}
.y3b7{bottom:438.152000pt;}
.y358{bottom:438.644000pt;}
.y43b{bottom:440.313333pt;}
.y579{bottom:440.429333pt;}
.y38c{bottom:440.433333pt;}
.y90{bottom:440.844000pt;}
.y32a{bottom:441.022667pt;}
.y49d{bottom:441.034667pt;}
.y1bd{bottom:441.173247pt;}
.y1ee{bottom:441.244000pt;}
.y46b{bottom:442.448000pt;}
.y4d1{bottom:442.705333pt;}
.y199{bottom:443.038667pt;}
.y4f2{bottom:443.136000pt;}
.y15f{bottom:443.584000pt;}
.y112{bottom:443.724000pt;}
.y5b{bottom:444.646667pt;}
.y2cf{bottom:444.852000pt;}
.y173{bottom:445.470667pt;}
.y260{bottom:445.565333pt;}
.y28c{bottom:445.836000pt;}
.y40d{bottom:446.632000pt;}
.y538{bottom:446.950667pt;}
.y15e{bottom:447.569333pt;}
.y2f1{bottom:448.012000pt;}
.y2a8{bottom:448.021333pt;}
.y13a{bottom:449.346667pt;}
.ybc{bottom:452.170667pt;}
.ye7{bottom:452.384000pt;}
.y578{bottom:452.385333pt;}
.y18{bottom:453.320000pt;}
.y3b6{bottom:454.092000pt;}
.y357{bottom:454.584000pt;}
.y4f1{bottom:455.361333pt;}
.y43a{bottom:456.253333pt;}
.y38b{bottom:456.373333pt;}
.y8f{bottom:456.784000pt;}
.y49c{bottom:456.974667pt;}
.y1ed{bottom:457.184000pt;}
.y1bc{bottom:458.316000pt;}
.y4d0{bottom:458.645333pt;}
.y537{bottom:459.630667pt;}
.y111{bottom:459.664000pt;}
.y46a{bottom:460.072000pt;}
.y198{bottom:460.260000pt;}
.y2ce{bottom:460.792000pt;}
.y5a{bottom:461.050667pt;}
.y172{bottom:461.410667pt;}
.y25f{bottom:461.506667pt;}
.y40c{bottom:462.572000pt;}
.y2f0{bottom:463.952000pt;}
.y2a7{bottom:463.961333pt;}
.y577{bottom:464.340000pt;}
.y15c{bottom:465.136000pt;}
.y4f0{bottom:467.317333pt;}
.y139{bottom:467.598667pt;}
.ybb{bottom:468.110667pt;}
.ye6{bottom:468.324000pt;}
.y17{bottom:469.260000pt;}
.y3b5{bottom:470.032000pt;}
.y356{bottom:470.524000pt;}
.y536{bottom:471.585333pt;}
.y439{bottom:472.193333pt;}
.y22a{bottom:472.304000pt;}
.y38a{bottom:472.314667pt;}
.y8e{bottom:472.724000pt;}
.y49b{bottom:472.916000pt;}
.y329{bottom:473.566667pt;}
.y4cf{bottom:474.586667pt;}
.y1bb{bottom:475.458753pt;}
.y469{bottom:476.012000pt;}
.y197{bottom:476.200000pt;}
.y576{bottom:476.294667pt;}
.y2cd{bottom:476.732000pt;}
.y59{bottom:476.990667pt;}
.y171{bottom:477.352000pt;}
.y25e{bottom:477.446667pt;}
.y28b{bottom:477.808000pt;}
.y40b{bottom:478.512000pt;}
.y4ef{bottom:479.272000pt;}
.y2ef{bottom:479.892000pt;}
.y2a6{bottom:479.902667pt;}
.y159{bottom:480.808000pt;}
.y535{bottom:483.540000pt;}
.yba{bottom:484.052000pt;}
.ye5{bottom:484.264000pt;}
.y16{bottom:485.200000pt;}
.y138{bottom:485.696000pt;}
.y3b4{bottom:485.973333pt;}
.y355{bottom:486.464000pt;}
.y438{bottom:488.134667pt;}
.y575{bottom:488.250667pt;}
.y389{bottom:488.254667pt;}
.y8d{bottom:488.664000pt;}
.y49a{bottom:488.856000pt;}
.y328{bottom:489.506667pt;}
.y4ce{bottom:490.526667pt;}
.y4ee{bottom:491.228000pt;}
.y1ec{bottom:491.508000pt;}
.y468{bottom:491.952000pt;}
.y196{bottom:492.141333pt;}
.y1ba{bottom:492.603418pt;}
.y2cc{bottom:492.673333pt;}
.y58{bottom:492.932000pt;}
.y170{bottom:493.292000pt;}
.y25d{bottom:493.386667pt;}
.y15b{bottom:493.428000pt;}
.y3f3{bottom:493.449333pt;}
.y28a{bottom:493.785333pt;}
.y40a{bottom:494.453333pt;}
.y2ee{bottom:495.832000pt;}
.y2a5{bottom:495.842667pt;}
.y534{bottom:496.220000pt;}
.y15a{bottom:497.413333pt;}
.y229{bottom:497.872000pt;}
.yb9{bottom:499.992000pt;}
.ye4{bottom:500.205333pt;}
.y15{bottom:501.140000pt;}
.y574{bottom:501.533333pt;}
.y137{bottom:501.636000pt;}
.y3b3{bottom:501.913333pt;}
.y354{bottom:502.404000pt;}
.y437{bottom:504.074667pt;}
.y388{bottom:504.194667pt;}
.y3f2{bottom:504.608000pt;}
.y499{bottom:504.796000pt;}
.y8c{bottom:505.353333pt;}
.y327{bottom:505.446667pt;}
.y227{bottom:506.241333pt;}
.y4cd{bottom:506.466667pt;}
.y228{bottom:506.873333pt;}
.y4ed{bottom:507.257333pt;}
.y1eb{bottom:507.448000pt;}
.y467{bottom:507.893333pt;}
.y533{bottom:508.176000pt;}
.y226{bottom:508.344000pt;}
.y2cb{bottom:508.613333pt;}
.y57{bottom:508.872000pt;}
.y16f{bottom:509.232000pt;}
.y225{bottom:510.028000pt;}
.y409{bottom:510.393333pt;}
.y1b9{bottom:510.509048pt;}
.y25c{bottom:510.618667pt;}
.y2ed{bottom:511.772000pt;}
.y2a4{bottom:511.782667pt;}
.y573{bottom:513.489333pt;}
.y158{bottom:514.653333pt;}
.yb8{bottom:515.932000pt;}
.ye3{bottom:516.145333pt;}
.y14{bottom:517.080000pt;}
.y136{bottom:517.576000pt;}
.y3b2{bottom:517.853333pt;}
.y353{bottom:518.345333pt;}
.y436{bottom:520.014667pt;}
.y223{bottom:520.125333pt;}
.y532{bottom:520.130667pt;}
.y387{bottom:520.134667pt;}
.y498{bottom:520.736000pt;}
.y224{bottom:520.758667pt;}
.y110{bottom:520.904000pt;}
.y326{bottom:521.386667pt;}
.y222{bottom:522.229333pt;}
.y4cc{bottom:522.406667pt;}
.y1ea{bottom:523.388000pt;}
.y4ec{bottom:523.686667pt;}
.y466{bottom:523.833333pt;}
.y221{bottom:523.913333pt;}
.y56{bottom:524.812000pt;}
.y572{bottom:525.444000pt;}
.y25b{bottom:526.558667pt;}
.y195{bottom:526.725333pt;}
.y2ca{bottom:526.805333pt;}
.y2ec{bottom:527.712000pt;}
.y2a3{bottom:527.722667pt;}
.y3f1{bottom:528.843413pt;}
.y157{bottom:530.593333pt;}
.yb7{bottom:531.872000pt;}
.ye2{bottom:532.085333pt;}
.y531{bottom:532.810667pt;}
.y13{bottom:533.021333pt;}
.y135{bottom:533.516000pt;}
.y3b1{bottom:533.793333pt;}
.y21f{bottom:534.010667pt;}
.y352{bottom:534.285333pt;}
.y220{bottom:534.642667pt;}
.y289{bottom:535.152000pt;}
.y435{bottom:535.954667pt;}
.y386{bottom:536.074667pt;}
.y21e{bottom:536.113333pt;}
.y497{bottom:536.676000pt;}
.y3ef{bottom:536.926919pt;}
.y325{bottom:537.328000pt;}
.y21d{bottom:537.797333pt;}
.y4cb{bottom:538.346667pt;}
.y571{bottom:538.728000pt;}
.y8b{bottom:538.810667pt;}
.y465{bottom:539.773333pt;}
.y55{bottom:540.752000pt;}
.y1b8{bottom:540.889333pt;}
.y194{bottom:542.665333pt;}
.y2c9{bottom:542.745333pt;}
.y2eb{bottom:543.653333pt;}
.y2a2{bottom:543.662667pt;}
.y530{bottom:544.765333pt;}
.y3f0{bottom:545.010426pt;}
.y10f{bottom:545.236918pt;}
.y156{bottom:546.533333pt;}
.yb6{bottom:547.812000pt;}
.ye1{bottom:548.025333pt;}
.y12{bottom:548.961333pt;}
.y134{bottom:549.457333pt;}
.y3b0{bottom:549.733333pt;}
.y351{bottom:550.225333pt;}
.y570{bottom:550.682667pt;}
.y288{bottom:551.093333pt;}
.y434{bottom:551.894667pt;}
.y21c{bottom:552.013333pt;}
.y385{bottom:552.016000pt;}
.y496{bottom:552.616000pt;}
.y324{bottom:553.268000pt;}
.y3ee{bottom:553.453660pt;}
.y10e{bottom:553.601120pt;}
.y4ca{bottom:554.288000pt;}
.y8a{bottom:554.750667pt;}
.y464{bottom:555.713333pt;}
.y4eb{bottom:556.596000pt;}
.y54{bottom:556.692000pt;}
.y52f{bottom:556.721333pt;}
.y1b7{bottom:556.830667pt;}
.y408{bottom:557.522667pt;}
.y25a{bottom:558.322667pt;}
.y193{bottom:558.605333pt;}
.y2c8{bottom:558.685333pt;}
.y16e{bottom:558.742667pt;}
.y2ea{bottom:559.593333pt;}
.y2a1{bottom:559.604000pt;}
.y3ec{bottom:561.538068pt;}
.y10d{bottom:561.966255pt;}
.y155{bottom:562.473333pt;}
.y56f{bottom:562.638667pt;}
.yb5{bottom:563.752000pt;}
.ye0{bottom:563.965333pt;}
.y11{bottom:564.901333pt;}
.y133{bottom:565.397333pt;}
.y3af{bottom:565.674667pt;}
.y350{bottom:566.165333pt;}
.y287{bottom:567.033333pt;}
.y433{bottom:567.834667pt;}
.y384{bottom:567.956000pt;}
.y495{bottom:568.557333pt;}
.y52e{bottom:568.676000pt;}
.y3d1{bottom:568.681333pt;}
.y323{bottom:569.208000pt;}
.y3ed{bottom:569.621574pt;}
.y4c9{bottom:570.228000pt;}
.y10c{bottom:570.330457pt;}
.y89{bottom:570.690667pt;}
.y463{bottom:571.653333pt;}
.y4ea{bottom:572.536000pt;}
.y53{bottom:572.632000pt;}
.y1b6{bottom:572.770667pt;}
.y259{bottom:574.262667pt;}
.y192{bottom:574.545333pt;}
.y2c7{bottom:574.625333pt;}
.y2e9{bottom:575.533333pt;}
.y56e{bottom:575.921333pt;}
.y3eb{bottom:578.064809pt;}
.y29f{bottom:578.160000pt;}
.y10b{bottom:578.694659pt;}
.yb4{bottom:579.693333pt;}
.y3d0{bottom:579.838667pt;}
.ydf{bottom:579.905333pt;}
.y10{bottom:580.841333pt;}
.y154{bottom:581.086667pt;}
.y132{bottom:581.337333pt;}
.y52d{bottom:581.356000pt;}
.y3ae{bottom:581.614667pt;}
.y34f{bottom:582.105333pt;}
.y286{bottom:582.973333pt;}
.y432{bottom:583.776000pt;}
.y383{bottom:583.896000pt;}
.y494{bottom:584.497333pt;}
.y322{bottom:585.148000pt;}
.y3ea{bottom:586.148315pt;}
.y4c8{bottom:586.168000pt;}
.y88{bottom:586.630667pt;}
.y10a{bottom:587.059794pt;}
.y29e{bottom:587.272000pt;}
.y462{bottom:587.593333pt;}
.y56d{bottom:587.877333pt;}
.y52{bottom:588.573333pt;}
.y1b5{bottom:588.710667pt;}
.y2a0{bottom:590.029333pt;}
.y258{bottom:590.202667pt;}
.y2c6{bottom:590.441333pt;}
.y191{bottom:590.486667pt;}
.y2e8{bottom:591.473333pt;}
.y4e9{bottom:592.161333pt;}
.y52c{bottom:593.310667pt;}
.y109{bottom:595.423996pt;}
.yb3{bottom:595.633333pt;}
.yde{bottom:595.846667pt;}
.y1e9{bottom:596.709333pt;}
.yf{bottom:596.781333pt;}
.y131{bottom:597.277333pt;}
.y3ad{bottom:597.554667pt;}
.y34e{bottom:598.045333pt;}
.y3cf{bottom:598.234667pt;}
.y285{bottom:598.913333pt;}
.y153{bottom:599.700000pt;}
.y431{bottom:599.716000pt;}
.y56c{bottom:599.832000pt;}
.y382{bottom:599.836000pt;}
.y493{bottom:600.437333pt;}
.y321{bottom:601.088000pt;}
.y4c7{bottom:602.108000pt;}
.y87{bottom:602.572000pt;}
.y461{bottom:603.534667pt;}
.y108{bottom:603.789131pt;}
.y51{bottom:604.513333pt;}
.y1b4{bottom:604.650667pt;}
.y52b{bottom:605.265333pt;}
.y190{bottom:606.426667pt;}
.y2e7{bottom:607.413333pt;}
.y4e8{bottom:608.101333pt;}
.y3e9{bottom:611.568000pt;}
.yb2{bottom:611.573333pt;}
.y257{bottom:611.628000pt;}
.ydd{bottom:611.786667pt;}
.y107{bottom:612.153333pt;}
.ye{bottom:612.721333pt;}
.y56b{bottom:613.116000pt;}
.y130{bottom:613.217333pt;}
.y3ac{bottom:613.494667pt;}
.y34d{bottom:614.718667pt;}
.y256{bottom:614.912000pt;}
.y152{bottom:615.640000pt;}
.y430{bottom:615.656000pt;}
.y381{bottom:615.776000pt;}
.y320{bottom:617.028000pt;}
.y52a{bottom:617.945333pt;}
.y4c6{bottom:618.048000pt;}
.y86{bottom:618.512000pt;}
.y460{bottom:619.474667pt;}
.y50{bottom:620.453333pt;}
.y106{bottom:620.517535pt;}
.y1b3{bottom:620.590667pt;}
.y21b{bottom:621.272000pt;}
.y29d{bottom:621.858667pt;}
.y2c5{bottom:621.916000pt;}
.y492{bottom:622.052000pt;}
.y284{bottom:622.189333pt;}
.y1e8{bottom:622.277333pt;}
.y18f{bottom:622.366667pt;}
.y2e6{bottom:623.353333pt;}
.y4e7{bottom:624.041333pt;}
.y56a{bottom:625.070667pt;}
.y3e8{bottom:627.508000pt;}
.yb1{bottom:627.513333pt;}
.ydc{bottom:627.726667pt;}
.yd{bottom:628.662667pt;}
.y105{bottom:628.882670pt;}
.y12f{bottom:629.157333pt;}
.y3ab{bottom:629.434667pt;}
.y529{bottom:629.901333pt;}
.y283{bottom:630.025333pt;}
.y34c{bottom:630.660000pt;}
.y151{bottom:631.580000pt;}
.y42f{bottom:631.596000pt;}
.y380{bottom:631.716000pt;}
.y1e7{bottom:632.181333pt;}
.y31f{bottom:632.969333pt;}
.y4c5{bottom:633.988000pt;}
.y85{bottom:634.452000pt;}
.y45f{bottom:635.414667pt;}
.y1e6{bottom:635.789333pt;}
.y4f{bottom:636.393333pt;}
.y255{bottom:636.728000pt;}
.y569{bottom:637.025333pt;}
.y104{bottom:637.246872pt;}
.y29c{bottom:637.798667pt;}
.y2c4{bottom:637.857333pt;}
.y491{bottom:637.992000pt;}
.y2e5{bottom:639.294667pt;}
.y4e6{bottom:639.981333pt;}
.y254{bottom:640.012000pt;}
.y528{bottom:641.856000pt;}
.y3e7{bottom:643.448000pt;}
.yb0{bottom:643.453333pt;}
.ydb{bottom:643.666667pt;}
.y1b2{bottom:644.276000pt;}
.yc{bottom:644.602667pt;}
.y12e{bottom:645.098667pt;}
.y21a{bottom:645.182371pt;}
.y103{bottom:645.611075pt;}
.y3aa{bottom:646.229333pt;}
.y34b{bottom:646.600000pt;}
.y1e5{bottom:646.610667pt;}
.y150{bottom:647.521333pt;}
.y42e{bottom:647.536000pt;}
.y37f{bottom:647.657333pt;}
.y31e{bottom:648.909333pt;}
.y4c4{bottom:649.929333pt;}
.y1e4{bottom:650.218667pt;}
.y568{bottom:650.309333pt;}
.y84{bottom:650.392000pt;}
.y219{bottom:651.104011pt;}
.y45e{bottom:653.038667pt;}
.y218{bottom:653.311688pt;}
.y29b{bottom:653.740000pt;}
.y2c3{bottom:653.797333pt;}
.y490{bottom:653.933333pt;}
.y102{bottom:653.976209pt;}
.y527{bottom:654.536000pt;}
.y2e4{bottom:655.234667pt;}
.y4e5{bottom:655.922667pt;}
.y4e{bottom:655.970667pt;}
.y3e6{bottom:659.388000pt;}
.yaf{bottom:659.394667pt;}
.yda{bottom:659.606667pt;}
.y18e{bottom:659.608000pt;}
.y217{bottom:660.620192pt;}
.y12d{bottom:661.038667pt;}
.y3a9{bottom:662.169333pt;}
.y567{bottom:662.264000pt;}
.y34a{bottom:662.540000pt;}
.y101{bottom:662.712631pt;}
.y14f{bottom:663.461333pt;}
.y42d{bottom:663.476000pt;}
.y37e{bottom:663.597333pt;}
.y1e3{bottom:664.648000pt;}
.y253{bottom:664.757333pt;}
.y31d{bottom:664.849333pt;}
.y4c3{bottom:665.869333pt;}
.y83{bottom:666.332000pt;}
.y526{bottom:666.490667pt;}
.y216{bottom:667.758324pt;}
.y45d{bottom:668.978667pt;}
.y29a{bottom:669.680000pt;}
.y2c2{bottom:669.737333pt;}
.y48f{bottom:669.873333pt;}
.y100{bottom:671.076833pt;}
.y2e3{bottom:671.174667pt;}
.y4e4{bottom:671.862667pt;}
.y4d{bottom:671.910667pt;}
.y215{bottom:673.850336pt;}
.y282{bottom:674.714667pt;}
.y3e5{bottom:675.328000pt;}
.yae{bottom:675.334667pt;}
.yd9{bottom:675.546667pt;}
.y18d{bottom:675.548000pt;}
.y214{bottom:675.905952pt;}
.y1b1{bottom:675.932000pt;}
.y12c{bottom:676.978667pt;}
.y1e2{bottom:678.050667pt;}
.y3a8{bottom:678.109333pt;}
.y525{bottom:678.446667pt;}
.y42c{bottom:679.417333pt;}
.yff{bottom:679.441035pt;}
.y37d{bottom:679.537333pt;}
.y252{bottom:680.697333pt;}
.y31c{bottom:680.789333pt;}
.y82{bottom:682.272000pt;}
.y213{bottom:683.213660pt;}
.y45c{bottom:684.920000pt;}
.y299{bottom:685.620000pt;}
.y2c1{bottom:685.677333pt;}
.y48e{bottom:685.813333pt;}
.y2e2{bottom:687.114667pt;}
.y566{bottom:687.502667pt;}
.y4e3{bottom:687.802667pt;}
.y4c{bottom:687.850667pt;}
.y4c2{bottom:688.070667pt;}
.y212{bottom:690.522164pt;}
.y281{bottom:690.654667pt;}
.y524{bottom:691.125333pt;}
.y3e4{bottom:691.268000pt;}
.yad{bottom:691.274667pt;}
.yd8{bottom:691.488000pt;}
.y1b0{bottom:691.872000pt;}
.y12b{bottom:692.918667pt;}
.y1e1{bottom:693.193333pt;}
.y3a7{bottom:694.049333pt;}
.y42b{bottom:695.357333pt;}
.y251{bottom:696.637333pt;}
.yb{bottom:696.689333pt;}
.y211{bottom:697.977953pt;}
.y81{bottom:698.213333pt;}
.y565{bottom:699.458667pt;}
.y45b{bottom:700.860000pt;}
.y298{bottom:701.560000pt;}
.y2c0{bottom:701.617333pt;}
.y48d{bottom:701.753333pt;}
.y2e1{bottom:703.054667pt;}
.y523{bottom:703.081333pt;}
.y1e0{bottom:703.097333pt;}
.y4e2{bottom:703.742667pt;}
.y4b{bottom:703.792000pt;}
.y4c1{bottom:704.010667pt;}
.yfe{bottom:706.166667pt;}
.y280{bottom:706.690667pt;}
.y1df{bottom:706.706667pt;}
.y3e3{bottom:707.209333pt;}
.yac{bottom:707.214667pt;}
.yd7{bottom:707.428000pt;}
.y1af{bottom:707.813333pt;}
.y12a{bottom:708.858667pt;}
.y14e{bottom:709.936000pt;}
.y3a6{bottom:709.990667pt;}
.y42a{bottom:711.297333pt;}
.y564{bottom:711.413333pt;}
.y250{bottom:712.577333pt;}
.y522{bottom:715.036000pt;}
.ya{bottom:716.522667pt;}
.y45a{bottom:716.800000pt;}
.y297{bottom:717.500000pt;}
.y1de{bottom:717.526667pt;}
.y2bf{bottom:717.558667pt;}
.y48c{bottom:717.693333pt;}
.y80{bottom:718.386667pt;}
.y2e0{bottom:718.994667pt;}
.y4e1{bottom:719.682667pt;}
.y4a{bottom:719.732000pt;}
.y4c0{bottom:719.952000pt;}
.y1dd{bottom:721.134667pt;}
.yfd{bottom:722.106667pt;}
.y27f{bottom:722.630667pt;}
.y210{bottom:722.828000pt;}
.y3e2{bottom:723.149333pt;}
.yab{bottom:723.154667pt;}
.yd6{bottom:723.368000pt;}
.y1ae{bottom:723.753333pt;}
.y563{bottom:724.697333pt;}
.y129{bottom:724.798667pt;}
.y3a5{bottom:725.930667pt;}
.y521{bottom:727.716000pt;}
.y429{bottom:731.106667pt;}
.y1dc{bottom:731.956000pt;}
.y459{bottom:732.740000pt;}
.y296{bottom:733.440000pt;}
.y24f{bottom:733.488000pt;}
.y2be{bottom:733.498667pt;}
.y48b{bottom:733.633333pt;}
.y7f{bottom:734.326667pt;}
.y349{bottom:734.841333pt;}
.y1db{bottom:735.564000pt;}
.y4e0{bottom:735.624000pt;}
.y49{bottom:735.672000pt;}
.y4bf{bottom:735.892000pt;}
.y9{bottom:736.585333pt;}
.y562{bottom:736.652000pt;}
.y2df{bottom:737.497333pt;}
.yfc{bottom:738.046667pt;}
.y27e{bottom:738.570667pt;}
.y20f{bottom:738.768000pt;}
.y3e1{bottom:739.089333pt;}
.yaa{bottom:739.094667pt;}
.yd5{bottom:739.308000pt;}
.y520{bottom:739.670667pt;}
.y1ad{bottom:739.693333pt;}
.y128{bottom:740.740000pt;}
.y24c{bottom:745.877333pt;}
.y3a4{bottom:746.329333pt;}
.y428{bottom:747.046667pt;}
.y8{bottom:747.212000pt;}
.y561{bottom:748.606667pt;}
.y458{bottom:748.680000pt;}
.y1da{bottom:748.966667pt;}
.y24b{bottom:749.161333pt;}
.y48a{bottom:749.574667pt;}
.y37c{bottom:749.773333pt;}
.y7e{bottom:750.268000pt;}
.y2bd{bottom:750.912000pt;}
.y4df{bottom:751.564000pt;}
.y48{bottom:751.612000pt;}
.y4be{bottom:751.832000pt;}
.y31b{bottom:751.862667pt;}
.y295{bottom:752.314667pt;}
.y51f{bottom:752.350667pt;}
.y2de{bottom:753.437333pt;}
.y27d{bottom:754.510667pt;}
.yfb{bottom:754.618667pt;}
.y20e{bottom:754.708000pt;}
.y3e0{bottom:755.029333pt;}
.ya9{bottom:755.036000pt;}
.yd4{bottom:755.248000pt;}
.y18c{bottom:755.249333pt;}
.y1ac{bottom:755.633333pt;}
.y7{bottom:757.838667pt;}
.y348{bottom:759.039200pt;}
.y2bc{bottom:760.024000pt;}
.y560{bottom:760.562667pt;}
.y24e{bottom:761.781333pt;}
.y3a3{bottom:762.270667pt;}
.y1d9{bottom:764.110667pt;}
.y51e{bottom:764.305333pt;}
.y457{bottom:764.621333pt;}
.y6{bottom:764.721333pt;}
.y489{bottom:765.514667pt;}
.y24d{bottom:765.765333pt;}
.y7d{bottom:766.208000pt;}
.y4de{bottom:767.504000pt;}
.y47{bottom:767.552000pt;}
.y4bd{bottom:767.772000pt;}
.y294{bottom:768.254667pt;}
.y347{bottom:768.603487pt;}
.y2dd{bottom:769.377333pt;}
.yfa{bottom:770.558667pt;}
.y20d{bottom:770.649333pt;}
.ya8{bottom:770.762667pt;}
.y3df{bottom:770.969333pt;}
.yd3{bottom:771.189333pt;}
.y1ab{bottom:771.573333pt;}
.y55f{bottom:772.517333pt;}
.y37b{bottom:775.342667pt;}
.y1d8{bottom:776.065333pt;}
.y51d{bottom:776.261333pt;}
.y346{bottom:776.607258pt;}
.y31a{bottom:777.217333pt;}
.y3a2{bottom:778.210667pt;}
.y345{bottom:779.439268pt;}
.y456{bottom:780.561333pt;}
.y488{bottom:781.454667pt;}
.y7c{bottom:782.148000pt;}
.y24a{bottom:783.002667pt;}
.y4dd{bottom:783.444000pt;}
.y46{bottom:783.492000pt;}
.y4bc{bottom:783.712000pt;}
.y293{bottom:784.194667pt;}
.y37a{bottom:785.245333pt;}
.y127{bottom:785.521333pt;}
.y55e{bottom:785.801333pt;}
.yf9{bottom:786.498667pt;}
.y20c{bottom:786.589333pt;}
.y2dc{bottom:786.617333pt;}
.ya7{bottom:786.702667pt;}
.y3de{bottom:786.909333pt;}
.yd2{bottom:787.129333pt;}
.y1aa{bottom:787.513333pt;}
.y1d7{bottom:788.021333pt;}
.y51c{bottom:788.216000pt;}
.y2bb{bottom:788.488000pt;}
.y3ce{bottom:788.788000pt;}
.y379{bottom:788.854667pt;}
.y319{bottom:789.172000pt;}
.y3a1{bottom:794.150667pt;}
.y455{bottom:796.501333pt;}
.y487{bottom:797.394667pt;}
.y2ba{bottom:797.598667pt;}
.y55d{bottom:797.756000pt;}
.y7b{bottom:798.088000pt;}
.y247{bottom:798.674667pt;}
.y4dc{bottom:799.384000pt;}
.y45{bottom:799.433333pt;}
.y4bb{bottom:799.652000pt;}
.y378{bottom:799.674667pt;}
.y292{bottom:800.136000pt;}
.y1d6{bottom:800.506667pt;}
.y51b{bottom:800.896000pt;}
.y27c{bottom:801.090667pt;}
.y318{bottom:801.128000pt;}
.yf8{bottom:802.438667pt;}
.y20b{bottom:802.529333pt;}
.y2db{bottom:802.557333pt;}
.ya6{bottom:802.642667pt;}
.y3dd{bottom:802.850667pt;}
.yd1{bottom:803.069333pt;}
.y377{bottom:803.284000pt;}
.y5{bottom:804.785333pt;}
.y3a0{bottom:810.090667pt;}
.y55c{bottom:811.040000pt;}
.y249{bottom:811.294667pt;}
.y454{bottom:812.441333pt;}
.y51a{bottom:812.850667pt;}
.y317{bottom:813.082667pt;}
.y486{bottom:813.334667pt;}
.y7a{bottom:814.028000pt;}
.y376{bottom:814.104000pt;}
.y248{bottom:815.280000pt;}
.y4db{bottom:815.324000pt;}
.y44{bottom:815.373333pt;}
.y291{bottom:816.076000pt;}
.y4ba{bottom:817.300000pt;}
.y375{bottom:817.712000pt;}
.yf7{bottom:818.378667pt;}
.y20a{bottom:818.469333pt;}
.ya5{bottom:818.582667pt;}
.y3dc{bottom:818.790667pt;}
.y427{bottom:818.812000pt;}
.yd0{bottom:819.009333pt;}
.y55b{bottom:822.994667pt;}
.y519{bottom:824.806667pt;}
.y316{bottom:825.569333pt;}
.y39f{bottom:826.030667pt;}
.y2b9{bottom:827.206667pt;}
.y453{bottom:828.381333pt;}
.y485{bottom:829.274667pt;}
.y79{bottom:829.968000pt;}
.y374{bottom:831.116000pt;}
.y246{bottom:831.224000pt;}
.y4da{bottom:831.265333pt;}
.y43{bottom:831.313333pt;}
.y344{bottom:831.565333pt;}
.y4b9{bottom:833.241333pt;}
.yf6{bottom:834.318667pt;}
.ya4{bottom:834.522667pt;}
.y209{bottom:834.680000pt;}
.y3db{bottom:834.730667pt;}
.ycf{bottom:834.949333pt;}
.y18b{bottom:834.950667pt;}
.y245{bottom:834.986667pt;}
.y518{bottom:837.485333pt;}
.y4{bottom:838.525333pt;}
.y39e{bottom:841.972000pt;}
.y2b8{bottom:842.482667pt;}
.y1a9{bottom:842.629333pt;}
.y343{bottom:842.722667pt;}
.y452{bottom:844.321333pt;}
.y426{bottom:844.381333pt;}
.y484{bottom:845.216000pt;}
.y373{bottom:846.258667pt;}
.y4d9{bottom:847.205333pt;}
.y42{bottom:847.253333pt;}
.y55a{bottom:848.233333pt;}
.y4b8{bottom:849.181333pt;}
.y517{bottom:849.441333pt;}
.y78{bottom:850.142667pt;}
.yf5{bottom:850.260000pt;}
.ya3{bottom:850.464000pt;}
.y208{bottom:850.620000pt;}
.y3da{bottom:850.670667pt;}
.yce{bottom:850.889333pt;}
.y18a{bottom:850.890667pt;}
.y244{bottom:850.926667pt;}
.y1d5{bottom:855.741333pt;}
.y372{bottom:856.162667pt;}
.y425{bottom:856.336000pt;}
.y39d{bottom:857.912000pt;}
.y371{bottom:859.770667pt;}
.y559{bottom:860.189333pt;}
.y483{bottom:861.156000pt;}
.y516{bottom:861.396000pt;}
.y2da{bottom:861.850667pt;}
.y4d8{bottom:863.145333pt;}
.y41{bottom:863.193333pt;}
.y451{bottom:863.274667pt;}
.y4b7{bottom:865.121333pt;}
.y77{bottom:866.082667pt;}
.yf4{bottom:866.200000pt;}
.ya2{bottom:866.404000pt;}
.y1a8{bottom:866.441071pt;}
.y207{bottom:866.560000pt;}
.y3d9{bottom:866.610667pt;}
.ycd{bottom:866.830667pt;}
.y243{bottom:866.866667pt;}
.y342{bottom:868.292000pt;}
.y370{bottom:870.590667pt;}
.y558{bottom:872.144000pt;}
.y3{bottom:872.265333pt;}
.y2d9{bottom:873.009333pt;}
.y1a7{bottom:873.295446pt;}
.y515{bottom:873.352000pt;}
.y36f{bottom:874.200000pt;}
.y482{bottom:877.096000pt;}
.y39c{bottom:878.310667pt;}
.y315{bottom:878.554667pt;}
.y4d7{bottom:879.085333pt;}
.y40{bottom:879.133333pt;}
.y450{bottom:879.214667pt;}
.y1a6{bottom:880.149056pt;}
.y341{bottom:880.246667pt;}
.y424{bottom:880.778667pt;}
.y4b6{bottom:881.061333pt;}
.y1d4{bottom:881.309333pt;}
.yf3{bottom:882.140000pt;}
.y206{bottom:882.500000pt;}
.y3d8{bottom:882.550667pt;}
.y76{bottom:882.770667pt;}
.ya1{bottom:883.458667pt;}
.y36e{bottom:885.020000pt;}
.y557{bottom:885.428000pt;}
.y514{bottom:886.030667pt;}
.y1a5{bottom:887.002667pt;}
.y36d{bottom:888.629333pt;}
.y340{bottom:892.202667pt;}
.y423{bottom:892.733333pt;}
.y1d3{bottom:893.265333pt;}
.y1a4{bottom:893.857041pt;}
.y39b{bottom:894.252000pt;}
.y4d6{bottom:895.025333pt;}
.y3f{bottom:895.074667pt;}
.y4b5{bottom:897.001333pt;}
.y556{bottom:897.382667pt;}
.y513{bottom:897.986667pt;}
.y205{bottom:898.441333pt;}
.y3d7{bottom:898.492000pt;}
.y75{bottom:898.710667pt;}
.y313{bottom:900.496375pt;}
.y1a3{bottom:900.710652pt;}
.y314{bottom:901.081265pt;}
.y36c{bottom:902.032000pt;}
.y312{bottom:902.439440pt;}
.y311{bottom:903.994631pt;}
.y33f{bottom:904.688000pt;}
.y1d2{bottom:905.220000pt;}
.y1a2{bottom:907.869258pt;}
.y512{bottom:909.941333pt;}
.y555{bottom:910.666667pt;}
.y3e{bottom:911.014667pt;}
.y4b4{bottom:912.941333pt;}
.y204{bottom:914.381333pt;}
.y30f{bottom:914.387197pt;}
.y74{bottom:914.650667pt;}
.y310{bottom:914.972086pt;}
.y30e{bottom:915.348879pt;}
.y33e{bottom:916.644000pt;}
.y1d1{bottom:917.174667pt;}
.y30d{bottom:917.801721pt;}
.y511{bottom:922.621333pt;}
.y30b{bottom:926.847194pt;}
.y30c{bottom:927.430852pt;}
.y30a{bottom:927.807644pt;}
.y33d{bottom:928.598667pt;}
.y4b3{bottom:928.882667pt;}
.y1d0{bottom:929.130667pt;}
.y309{bottom:930.261718pt;}
.y203{bottom:930.321333pt;}
.y73{bottom:930.590667pt;}
.y3d{bottom:930.592000pt;}
.y2{bottom:933.974667pt;}
.y510{bottom:934.576000pt;}
.y595{bottom:934.577333pt;}
.y307{bottom:938.460024pt;}
.y308{bottom:939.044914pt;}
.y306{bottom:939.421706pt;}
.y1cf{bottom:941.085333pt;}
.y305{bottom:941.874548pt;}
.y72{bottom:946.530667pt;}
.y3c{bottom:946.532000pt;}
.y1{bottom:951.097333pt;}
.y1ce{bottom:953.572000pt;}
.y304{bottom:954.253276pt;}
.y3b{bottom:990.133333pt;}
.y3a{bottom:1001.480000pt;}
.y39{bottom:1015.880000pt;}
.h14{height:2.125355pt;}
.h3c{height:4.258141pt;}
.h2e{height:12.600179pt;}
.h37{height:20.523917pt;}
.h30{height:21.365109pt;}
.h19{height:21.688746pt;}
.h7{height:21.848907pt;}
.h3{height:21.871509pt;}
.h22{height:22.359342pt;}
.h21{height:22.589134pt;}
.h56{height:25.580841pt;}
.h10{height:26.469123pt;}
.h13{height:26.519037pt;}
.hc{height:27.560458pt;}
.h2{height:27.561248pt;}
.h15{height:27.895200pt;}
.h11{height:28.155555pt;}
.h17{height:28.373675pt;}
.h57{height:28.403205pt;}
.h54{height:28.977345pt;}
.h23{height:30.811599pt;}
.h31{height:31.335243pt;}
.h24{height:31.419845pt;}
.h3f{height:31.865974pt;}
.h59{height:31.880400pt;}
.h43{height:32.435436pt;}
.h3b{height:32.680851pt;}
.h58{height:33.705136pt;}
.h4a{height:34.937684pt;}
.hb{height:34.968750pt;}
.hf{height:35.435213pt;}
.h5a{height:35.987328pt;}
.ha{height:36.198731pt;}
.he{height:36.200346pt;}
.h8{height:36.411680pt;}
.h1f{height:36.449833pt;}
.h48{height:36.807025pt;}
.h20{height:36.874903pt;}
.h47{height:37.235018pt;}
.h1d{height:37.441229pt;}
.h1b{height:37.446562pt;}
.h18{height:37.831408pt;}
.h2b{height:38.043849pt;}
.h46{height:38.829034pt;}
.h3e{height:39.003135pt;}
.h6{height:39.820219pt;}
.h12{height:39.850400pt;}
.h50{height:39.970648pt;}
.h55{height:40.305383pt;}
.h42{height:40.700533pt;}
.h4d{height:40.760407pt;}
.h4f{height:40.765332pt;}
.h53{height:41.095333pt;}
.h29{height:43.222562pt;}
.h25{height:43.227895pt;}
.h3d{height:43.261467pt;}
.h4b{height:44.393645pt;}
.h4e{height:44.398570pt;}
.h2d{height:45.645643pt;}
.h2c{height:45.799037pt;}
.h51{height:46.191411pt;}
.h5{height:47.168128pt;}
.hd{height:47.289141pt;}
.h9{height:47.291040pt;}
.h4c{height:48.240372pt;}
.h35{height:48.455037pt;}
.h33{height:48.460370pt;}
.h2f{height:49.343124pt;}
.h2a{height:49.958562pt;}
.h26{height:49.963895pt;}
.h28{height:50.450075pt;}
.h1c{height:52.263408pt;}
.h1e{height:52.268741pt;}
.h16{height:52.382304pt;}
.h3a{height:52.605355pt;}
.h34{height:52.986400pt;}
.h52{height:53.963671pt;}
.h1a{height:54.249482pt;}
.h27{height:58.374562pt;}
.h36{height:60.425141pt;}
.h49{height:62.334475pt;}
.h32{height:62.339808pt;}
.h40{height:73.985182pt;}
.h44{height:73.990515pt;}
.h39{height:78.633141pt;}
.h38{height:79.705141pt;}
.h45{height:83.737141pt;}
.h4{height:88.490272pt;}
.h41{height:100.005532pt;}
.h0{height:1043.905333pt;}
.h1{height:1044.000000pt;}
.w0{width:768.000000pt;}
.x0{left:0.000000pt;}
.x9{left:20.812000pt;}
.x1{left:48.226667pt;}
.x6{left:49.554667pt;}
.xa1{left:53.281333pt;}
.x39{left:56.197333pt;}
.x20{left:59.292000pt;}
.x5{left:60.537333pt;}
.xb{left:61.510667pt;}
.x7a{left:62.461333pt;}
.x5d{left:63.986406pt;}
.x15{left:65.655054pt;}
.x87{left:67.716000pt;}
.x38{left:68.853333pt;}
.x8b{left:69.747811pt;}
.x89{left:72.137333pt;}
.x37{left:73.492000pt;}
.x19{left:74.922667pt;}
.x5e{left:76.344061pt;}
.x16{left:77.414006pt;}
.x5c{left:78.992233pt;}
.xc{left:80.545333pt;}
.x13{left:82.388122pt;}
.x14{left:84.019729pt;}
.xe{left:85.045897pt;}
.x17{left:86.295024pt;}
.x18{left:88.153321pt;}
.x88{left:89.558667pt;}
.x1f{left:90.508000pt;}
.x3a{left:97.476000pt;}
.x36{left:99.544000pt;}
.x79{left:104.862667pt;}
.x5a{left:105.962667pt;}
.x9c{left:107.200000pt;}
.x1e{left:109.544000pt;}
.x9b{left:111.696000pt;}
.x78{left:113.916000pt;}
.x3d{left:116.896000pt;}
.x41{left:122.321333pt;}
.x3c{left:124.350667pt;}
.x9d{left:125.441333pt;}
.x42{left:129.172000pt;}
.x43{left:130.344000pt;}
.x96{left:134.958710pt;}
.x40{left:135.865333pt;}
.x44{left:137.196000pt;}
.x3e{left:140.881333pt;}
.x2{left:142.617333pt;}
.x5b{left:143.576000pt;}
.x59{left:153.837333pt;}
.xf{left:161.032705pt;}
.x6b{left:162.382667pt;}
.x55{left:168.446667pt;}
.x95{left:169.385287pt;}
.x25{left:179.120000pt;}
.x3b{left:189.097333pt;}
.x54{left:191.266667pt;}
.x69{left:192.390667pt;}
.x45{left:194.649333pt;}
.x3f{left:195.829333pt;}
.x21{left:197.268000pt;}
.x56{left:200.592000pt;}
.x10{left:211.851343pt;}
.x57{left:217.113333pt;}
.x58{left:223.796000pt;}
.x23{left:228.198667pt;}
.x6c{left:230.628000pt;}
.x22{left:233.078667pt;}
.x6a{left:239.464000pt;}
.x9a{left:242.160000pt;}
.x27{left:248.458667pt;}
.x24{left:249.598667pt;}
.x26{left:253.340000pt;}
.x11{left:262.669981pt;}
.x7c{left:267.473333pt;}
.x28{left:269.860000pt;}
.x6d{left:270.751547pt;}
.x8a{left:281.496943pt;}
.x6e{left:290.792484pt;}
.x3{left:305.457333pt;}
.x6f{left:310.832466pt;}
.x12{left:313.487686pt;}
.x70{left:330.873402pt;}
.x7b{left:348.452000pt;}
.x71{left:350.914339pt;}
.x72{left:370.955276pt;}
.xa{left:391.840000pt;}
.x7{left:396.850667pt;}
.xd{left:398.178667pt;}
.x63{left:399.227289pt;}
.x1a{left:407.185333pt;}
.x4d{left:409.118177pt;}
.x8{left:410.133333pt;}
.x7d{left:411.781976pt;}
.x2d{left:412.938935pt;}
.x2b{left:414.797191pt;}
.x2e{left:416.575950pt;}
.x2c{left:417.587251pt;}
.x2f{left:419.421047pt;}
.xa2{left:420.333333pt;}
.x86{left:421.262667pt;}
.x32{left:422.352770pt;}
.x4{left:423.492000pt;}
.x33{left:424.612723pt;}
.x35{left:425.779027pt;}
.x34{left:426.981658pt;}
.x46{left:428.053807pt;}
.x29{left:429.169333pt;}
.x2a{left:431.338043pt;}
.x9f{left:434.089333pt;}
.x30{left:435.270116pt;}
.x1b{left:439.876000pt;}
.x99{left:452.305943pt;}
.x31{left:454.140000pt;}
.x8d{left:455.169333pt;}
.x98{left:456.310377pt;}
.x1c{left:458.166667pt;}
.x90{left:460.594667pt;}
.x8c{left:462.624000pt;}
.x47{left:463.870667pt;}
.x91{left:467.445333pt;}
.x92{left:468.617333pt;}
.x8f{left:474.138667pt;}
.x93{left:475.469333pt;}
.xa0{left:476.558667pt;}
.x5f{left:478.573333pt;}
.x48{left:479.574667pt;}
.x94{left:480.482667pt;}
.x7e{left:481.797579pt;}
.x82{left:484.405571pt;}
.x60{left:497.746667pt;}
.x9e{left:500.761333pt;}
.x75{left:525.913333pt;}
.x4f{left:534.582203pt;}
.x77{left:538.302667pt;}
.x4e{left:543.001389pt;}
.x8e{left:544.452000pt;}
.x85{left:548.898584pt;}
.x7f{left:551.360046pt;}
.x1d{left:552.853333pt;}
.x49{left:560.453333pt;}
.x61{left:565.993333pt;}
.x97{left:572.545856pt;}
.x4a{left:587.836000pt;}
.x62{left:589.225333pt;}
.x64{left:592.678593pt;}
.x73{left:607.122667pt;}
.x4b{left:609.321333pt;}
.x65{left:612.719529pt;}
.x80{left:618.138439pt;}
.x50{left:620.677023pt;}
.x51{left:626.759016pt;}
.x4c{left:632.062667pt;}
.x74{left:642.417333pt;}
.x52{left:647.215385pt;}
.x66{left:652.801402pt;}
.x67{left:672.842339pt;}
.x84{left:681.357008pt;}
.x83{left:683.963769pt;}
.x81{left:685.411833pt;}
.x68{left:692.882321pt;}
.x76{left:697.076000pt;}
.x53{left:703.717333pt;}
}




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