
    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_0cca421228aa278473837de2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.934000;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_f4b557e67a0ab786e8b2e26c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.039000;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_592988e988ccbe061eb98e82.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.933000;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_344e107f3aaf9798fef35544.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.052000;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_38535144412357edf4714dda.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.952000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_cbbfa7bcb220b6839b718351.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.744000;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_4b6c2e63be640c2f0864199f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e6eef6c0547ec43c5fcf127b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_96ec2dbb9507330e22d78c80.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_119c7914583b2eb665579d72.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760864px;}
.v4{vertical-align:-18.000000px;}
.v3{vertical-align:-15.799805px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760498px;}
.ls6d{letter-spacing:-3.529897px;}
.lsf5{letter-spacing:-3.227578px;}
.lsb3{letter-spacing:-2.896394px;}
.lsae{letter-spacing:-2.372273px;}
.ls16b{letter-spacing:-1.900575px;}
.ls193{letter-spacing:-1.789311px;}
.lsb1{letter-spacing:-1.670856px;}
.ls167{letter-spacing:-1.665153px;}
.ls166{letter-spacing:-1.653748px;}
.lsb6{letter-spacing:-1.550817px;}
.ls8e{letter-spacing:-1.271675px;}
.lsba{letter-spacing:-1.203244px;}
.ls8b{letter-spacing:-1.180434px;}
.ls11a{letter-spacing:-1.070761px;}
.ls197{letter-spacing:-1.068178px;}
.lse7{letter-spacing:-1.050365px;}
.ls127{letter-spacing:-1.043572px;}
.ls13f{letter-spacing:-1.026464px;}
.ls89{letter-spacing:-1.003654px;}
.ls62{letter-spacing:-0.986546px;}
.ls155{letter-spacing:-0.980844px;}
.ls149{letter-spacing:-0.975141px;}
.lsdf{letter-spacing:-0.968783px;}
.ls142{letter-spacing:-0.958033px;}
.lsea{letter-spacing:-0.953487px;}
.ls168{letter-spacing:-0.952331px;}
.ls64{letter-spacing:-0.940926px;}
.lse1{letter-spacing:-0.938955px;}
.ls14e{letter-spacing:-0.935223px;}
.ls86{letter-spacing:-0.929521px;}
.ls14b{letter-spacing:-0.929515px;}
.ls93{letter-spacing:-0.906710px;}
.ls151{letter-spacing:-0.889602px;}
.ls13a{letter-spacing:-0.883900px;}
.lseb{letter-spacing:-0.882103px;}
.ls10b{letter-spacing:-0.866792px;}
.ls1d8{letter-spacing:-0.864000px;}
.ls1d3{letter-spacing:-0.862267px;}
.ls16a{letter-spacing:-0.861090px;}
.lsf7{letter-spacing:-0.846411px;}
.ls97{letter-spacing:-0.843982px;}
.ls10e{letter-spacing:-0.838279px;}
.ls68{letter-spacing:-0.815469px;}
.ls8c{letter-spacing:-0.769848px;}
.ls164{letter-spacing:-0.764146px;}
.ls1e9{letter-spacing:-0.703104px;}
.ls8a{letter-spacing:-0.587366px;}
.ls9a{letter-spacing:-0.575961px;}
.ls133{letter-spacing:-0.564555px;}
.lsb8{letter-spacing:-0.553150px;}
.lsb4{letter-spacing:-0.513232px;}
.ls136{letter-spacing:-0.507530px;}
.ls6e{letter-spacing:-0.473314px;}
.ls161{letter-spacing:-0.461909px;}
.ls35{letter-spacing:-0.415751px;}
.ls199{letter-spacing:-0.356059px;}
.ls81{letter-spacing:-0.353560px;}
.ls101{letter-spacing:-0.351821px;}
.ls2a{letter-spacing:-0.348087px;}
.ls137{letter-spacing:-0.342155px;}
.ls10a{letter-spacing:-0.338009px;}
.ls4f{letter-spacing:-0.336452px;}
.ls107{letter-spacing:-0.331426px;}
.lsef{letter-spacing:-0.330750px;}
.ls1ed{letter-spacing:-0.310989px;}
.ls1c2{letter-spacing:-0.306481px;}
.lsd4{letter-spacing:-0.300833px;}
.ls135{letter-spacing:-0.290832px;}
.lsf6{letter-spacing:-0.290635px;}
.lscc{letter-spacing:-0.289971px;}
.ls15e{letter-spacing:-0.285536px;}
.lsee{letter-spacing:-0.285129px;}
.ls4d{letter-spacing:-0.280437px;}
.ls1b8{letter-spacing:-0.279439px;}
.ls16d{letter-spacing:-0.279426px;}
.lsad{letter-spacing:-0.273724px;}
.ls1c4{letter-spacing:-0.270425px;}
.lse6{letter-spacing:-0.270240px;}
.ls94{letter-spacing:-0.268021px;}
.ls72{letter-spacing:-0.262319px;}
.ls16c{letter-spacing:-0.256616px;}
.lse5{letter-spacing:-0.254943px;}
.lsfe{letter-spacing:-0.249844px;}
.ls1a4{letter-spacing:-0.247889px;}
.ls3d{letter-spacing:-0.245211px;}
.lsfa{letter-spacing:-0.244745px;}
.lse3{letter-spacing:-0.239646px;}
.ls139{letter-spacing:-0.239508px;}
.ls1aa{letter-spacing:-0.238875px;}
.lsd3{letter-spacing:-0.234548px;}
.ls1ea{letter-spacing:-0.234368px;}
.ls46{letter-spacing:-0.233806px;}
.ls10d{letter-spacing:-0.228103px;}
.ls1bb{letter-spacing:-0.225354px;}
.ls192{letter-spacing:-0.224373px;}
.ls61{letter-spacing:-0.222401px;}
.ls1b5{letter-spacing:-0.220847px;}
.lsec{letter-spacing:-0.219251px;}
.ls42{letter-spacing:-0.216698px;}
.ls1ae{letter-spacing:-0.211833px;}
.lsaf{letter-spacing:-0.211175px;}
.ls39{letter-spacing:-0.210995px;}
.lse2{letter-spacing:-0.209053px;}
.ls128{letter-spacing:-0.206944px;}
.ls5f{letter-spacing:-0.205293px;}
.lsda{letter-spacing:-0.203954px;}
.ls13c{letter-spacing:-0.200046px;}
.ls4b{letter-spacing:-0.199590px;}
.lse9{letter-spacing:-0.198856px;}
.ls1b4{letter-spacing:-0.198312px;}
.ls96{letter-spacing:-0.193888px;}
.lsd9{letter-spacing:-0.193757px;}
.lsb5{letter-spacing:-0.191377px;}
.ls1bf{letter-spacing:-0.189297px;}
.ls56{letter-spacing:-0.188185px;}
.ls19f{letter-spacing:-0.184790px;}
.lsde{letter-spacing:-0.183559px;}
.ls91{letter-spacing:-0.182483px;}
.ls1a8{letter-spacing:-0.180283px;}
.ls4c{letter-spacing:-0.178460px;}
.ls3c{letter-spacing:-0.176780px;}
.ls1be{letter-spacing:-0.175776px;}
.ls95{letter-spacing:-0.171077px;}
.ls195{letter-spacing:-0.166762px;}
.ls1a9{letter-spacing:-0.165555px;}
.ls73{letter-spacing:-0.165375px;}
.lscd{letter-spacing:-0.163164px;}
.ls1b1{letter-spacing:-0.162255px;}
.ls8d{letter-spacing:-0.159672px;}
.ls1bc{letter-spacing:-0.157748px;}
.ls20{letter-spacing:-0.156039px;}
.ls38{letter-spacing:-0.153970px;}
.ls1b9{letter-spacing:-0.153241px;}
.ls3e{letter-spacing:-0.148267px;}
.ls37{letter-spacing:-0.144861px;}
.ls1ba{letter-spacing:-0.144227px;}
.ls1d4{letter-spacing:-0.144000px;}
.lsd7{letter-spacing:-0.142768px;}
.ls47{letter-spacing:-0.142565px;}
.ls198{letter-spacing:-0.139719px;}
.ls1d{letter-spacing:-0.138034px;}
.lsa0{letter-spacing:-0.137963px;}
.ls82{letter-spacing:-0.136862px;}
.ls1db{letter-spacing:-0.134400px;}
.lse8{letter-spacing:-0.132570px;}
.ls99{letter-spacing:-0.131159px;}
.ls1b2{letter-spacing:-0.126198px;}
.ls70{letter-spacing:-0.125457px;}
.ls102{letter-spacing:-0.122373px;}
.ls1eb{letter-spacing:-0.121691px;}
.ls1a{letter-spacing:-0.120030px;}
.ls76{letter-spacing:-0.120000px;}
.ls90{letter-spacing:-0.119754px;}
.ls121{letter-spacing:-0.117274px;}
.ls33{letter-spacing:-0.115200px;}
.ls48{letter-spacing:-0.114052px;}
.ls1a2{letter-spacing:-0.112677px;}
.ls103{letter-spacing:-0.112175px;}
.ls1e3{letter-spacing:-0.110400px;}
.ls4e{letter-spacing:-0.108349px;}
.ls1bd{letter-spacing:-0.108170px;}
.ls24{letter-spacing:-0.108027px;}
.ls1e5{letter-spacing:-0.105600px;}
.lsb9{letter-spacing:-0.102646px;}
.ls1dd{letter-spacing:-0.100800px;}
.ls1b0{letter-spacing:-0.099156px;}
.ls10c{letter-spacing:-0.096944px;}
.lsd6{letter-spacing:-0.096878px;}
.ls75{letter-spacing:-0.096000px;}
.ls1a0{letter-spacing:-0.094649px;}
.lsa4{letter-spacing:-0.091241px;}
.ls1e0{letter-spacing:-0.091200px;}
.ls19a{letter-spacing:-0.090142px;}
.ls26{letter-spacing:-0.090022px;}
.ls120{letter-spacing:-0.086681px;}
.ls1c3{letter-spacing:-0.085635px;}
.ls44{letter-spacing:-0.085539px;}
.ls1d6{letter-spacing:-0.081600px;}
.ls1a5{letter-spacing:-0.081127px;}
.lsa9{letter-spacing:-0.079836px;}
.ls1f{letter-spacing:-0.078019px;}
.ls1d5{letter-spacing:-0.076800px;}
.ls1c1{letter-spacing:-0.076620px;}
.lsdc{letter-spacing:-0.076483px;}
.ls5d{letter-spacing:-0.074134px;}
.ls1a3{letter-spacing:-0.072113px;}
.ls2f{letter-spacing:-0.072018px;}
.ls84{letter-spacing:-0.068431px;}
.ls30{letter-spacing:-0.066016px;}
.lsb0{letter-spacing:-0.065992px;}
.ls1e7{letter-spacing:-0.063099px;}
.lsa6{letter-spacing:-0.062728px;}
.ls34{letter-spacing:-0.057600px;}
.ls74{letter-spacing:-0.057026px;}
.ls147{letter-spacing:-0.056087px;}
.ls1a7{letter-spacing:-0.054085px;}
.ls23{letter-spacing:-0.054013px;}
.ls9d{letter-spacing:-0.051323px;}
.lsf8{letter-spacing:-0.050989px;}
.ls2e{letter-spacing:-0.048012px;}
.lsff{letter-spacing:-0.045890px;}
.lsa2{letter-spacing:-0.045621px;}
.ls131{letter-spacing:-0.041389px;}
.ls43{letter-spacing:-0.039918px;}
.lsfc{letter-spacing:-0.035692px;}
.lsa1{letter-spacing:-0.034491px;}
.ls7c{letter-spacing:-0.034215px;}
.ls17{letter-spacing:-0.032996px;}
.ls36{letter-spacing:-0.030593px;}
.ls32{letter-spacing:-0.030007px;}
.ls9b{letter-spacing:-0.028513px;}
.lsd0{letter-spacing:-0.025494px;}
.ls40{letter-spacing:-0.022810px;}
.ls138{letter-spacing:-0.020694px;}
.lsfb{letter-spacing:-0.020395px;}
.ls2c{letter-spacing:-0.018004px;}
.ls9f{letter-spacing:-0.017108px;}
.ls130{letter-spacing:-0.015297px;}
.ls1c5{letter-spacing:-0.013521px;}
.ls31{letter-spacing:-0.012003px;}
.ls69{letter-spacing:-0.011405px;}
.ls106{letter-spacing:-0.010198px;}
.ls21{letter-spacing:-0.006001px;}
.ls80{letter-spacing:-0.005703px;}
.ls104{letter-spacing:-0.005099px;}
.ls1b{letter-spacing:0.000000px;}
.ls179{letter-spacing:0.004507px;}
.ls1d0{letter-spacing:0.004800px;}
.ls124{letter-spacing:0.005099px;}
.ls57{letter-spacing:0.005703px;}
.ls18d{letter-spacing:0.009014px;}
.ls11b{letter-spacing:0.010198px;}
.ls98{letter-spacing:0.011405px;}
.ls11{letter-spacing:0.014400px;}
.ls6a{letter-spacing:0.017108px;}
.ls4{letter-spacing:0.018004px;}
.ls1ac{letter-spacing:0.018028px;}
.ls1cc{letter-spacing:0.019200px;}
.lsd1{letter-spacing:0.020395px;}
.ls7e{letter-spacing:0.022810px;}
.lsf{letter-spacing:0.024006px;}
.lsdd{letter-spacing:0.025494px;}
.ls185{letter-spacing:0.027042px;}
.ls12c{letter-spacing:0.027593px;}
.lsb7{letter-spacing:0.028513px;}
.ls1c9{letter-spacing:0.028800px;}
.ls17a{letter-spacing:0.031550px;}
.ls129{letter-spacing:0.034215px;}
.ls12f{letter-spacing:0.034491px;}
.ls11e{letter-spacing:0.035692px;}
.ls177{letter-spacing:0.036057px;}
.lsa3{letter-spacing:0.039918px;}
.ls17f{letter-spacing:0.040564px;}
.lsc5{letter-spacing:0.040791px;}
.ls17b{letter-spacing:0.045071px;}
.ls78{letter-spacing:0.045621px;}
.ls100{letter-spacing:0.045890px;}
.ls118{letter-spacing:0.048287px;}
.ls170{letter-spacing:0.049578px;}
.ls122{letter-spacing:0.050989px;}
.ls154{letter-spacing:0.051323px;}
.lsb{letter-spacing:0.054013px;}
.ls19d{letter-spacing:0.054085px;}
.lsf2{letter-spacing:0.056087px;}
.ls50{letter-spacing:0.057026px;}
.ls176{letter-spacing:0.058592px;}
.ls9{letter-spacing:0.060015px;}
.lse0{letter-spacing:0.062137px;}
.ls188{letter-spacing:0.063099px;}
.ls17c{letter-spacing:0.067606px;}
.ls11f{letter-spacing:0.071384px;}
.ls10{letter-spacing:0.072000px;}
.ls18e{letter-spacing:0.072113px;}
.ls175{letter-spacing:0.076620px;}
.lsbb{letter-spacing:0.079191px;}
.ls71{letter-spacing:0.079836px;}
.ls171{letter-spacing:0.081127px;}
.ls7a{letter-spacing:0.082778px;}
.lsa7{letter-spacing:0.085539px;}
.ls18f{letter-spacing:0.085635px;}
.lsd2{letter-spacing:0.086681px;}
.ls17e{letter-spacing:0.090142px;}
.ls141{letter-spacing:0.091241px;}
.ls173{letter-spacing:0.094649px;}
.ls14{letter-spacing:0.096878px;}
.ls92{letter-spacing:0.096944px;}
.ls16e{letter-spacing:0.099156px;}
.ls123{letter-spacing:0.101977px;}
.lsf0{letter-spacing:0.102646px;}
.lscb{letter-spacing:0.103561px;}
.ls17d{letter-spacing:0.103663px;}
.ls178{letter-spacing:0.108170px;}
.ls65{letter-spacing:0.108349px;}
.ls10f{letter-spacing:0.112175px;}
.ls180{letter-spacing:0.112677px;}
.ls126{letter-spacing:0.114052px;}
.ls190{letter-spacing:0.117184px;}
.lsf3{letter-spacing:0.119748px;}
.ls85{letter-spacing:0.119754px;}
.ls1d2{letter-spacing:0.120000px;}
.ls18b{letter-spacing:0.121691px;}
.ls117{letter-spacing:0.124167px;}
.ls7f{letter-spacing:0.125457px;}
.ls189{letter-spacing:0.126198px;}
.ls1c7{letter-spacing:0.129600px;}
.ls77{letter-spacing:0.129654px;}
.ls18a{letter-spacing:0.130705px;}
.ls160{letter-spacing:0.131065px;}
.ls58{letter-spacing:0.131159px;}
.lsce{letter-spacing:0.132570px;}
.ls186{letter-spacing:0.135212px;}
.ls41{letter-spacing:0.136862px;}
.ls1cf{letter-spacing:0.139200px;}
.ls194{letter-spacing:0.139719px;}
.ls83{letter-spacing:0.142565px;}
.ls11d{letter-spacing:0.142768px;}
.ls1ce{letter-spacing:0.144000px;}
.ls16f{letter-spacing:0.144227px;}
.lsfd{letter-spacing:0.147867px;}
.ls88{letter-spacing:0.148267px;}
.ls174{letter-spacing:0.148734px;}
.ls1cd{letter-spacing:0.148800px;}
.lsc{letter-spacing:0.150037px;}
.lscf{letter-spacing:0.152966px;}
.ls181{letter-spacing:0.153241px;}
.ls3b{letter-spacing:0.153970px;}
.ls191{letter-spacing:0.157748px;}
.lsc7{letter-spacing:0.158065px;}
.ls1cb{letter-spacing:0.158400px;}
.lsa5{letter-spacing:0.159672px;}
.ls182{letter-spacing:0.162255px;}
.ls1da{letter-spacing:0.162592px;}
.ls4a{letter-spacing:0.165375px;}
.ls196{letter-spacing:0.166762px;}
.ls1c8{letter-spacing:0.168000px;}
.lsc4{letter-spacing:0.168262px;}
.ls66{letter-spacing:0.171077px;}
.ls172{letter-spacing:0.171269px;}
.ls1ab{letter-spacing:0.175776px;}
.ls8f{letter-spacing:0.176780px;}
.ls12{letter-spacing:0.178460px;}
.ls1ad{letter-spacing:0.180283px;}
.ls1ca{letter-spacing:0.182400px;}
.ls67{letter-spacing:0.182483px;}
.ls110{letter-spacing:0.183559px;}
.ls187{letter-spacing:0.184790px;}
.lsa{letter-spacing:0.187399px;}
.ls45{letter-spacing:0.188185px;}
.lsc1{letter-spacing:0.188658px;}
.ls1b7{letter-spacing:0.189297px;}
.ls1df{letter-spacing:0.192000px;}
.lsc3{letter-spacing:0.193757px;}
.ls184{letter-spacing:0.193804px;}
.ls5a{letter-spacing:0.193888px;}
.ls183{letter-spacing:0.198312px;}
.lsf1{letter-spacing:0.198856px;}
.ls49{letter-spacing:0.199590px;}
.lsbd{letter-spacing:0.203954px;}
.ls28{letter-spacing:0.204051px;}
.ls53{letter-spacing:0.205293px;}
.ls1d1{letter-spacing:0.206400px;}
.ls1e8{letter-spacing:0.207326px;}
.ls1{letter-spacing:0.209053px;}
.lsb2{letter-spacing:0.210995px;}
.lsbe{letter-spacing:0.214152px;}
.ls1d9{letter-spacing:0.216000px;}
.ls2b{letter-spacing:0.216054px;}
.ls18c{letter-spacing:0.216340px;}
.ls55{letter-spacing:0.216698px;}
.lsbc{letter-spacing:0.219251px;}
.ls1e2{letter-spacing:0.220800px;}
.ls60{letter-spacing:0.222401px;}
.lsc8{letter-spacing:0.224350px;}
.ls63{letter-spacing:0.228103px;}
.lsc6{letter-spacing:0.229449px;}
.ls116{letter-spacing:0.231399px;}
.ls9c{letter-spacing:0.233806px;}
.ls19{letter-spacing:0.234058px;}
.ls18{letter-spacing:0.234548px;}
.ls59{letter-spacing:0.239508px;}
.ls0{letter-spacing:0.239646px;}
.ls15{letter-spacing:0.244745px;}
.ls1d7{letter-spacing:0.244800px;}
.ls52{letter-spacing:0.245211px;}
.ls1e1{letter-spacing:0.249600px;}
.lse4{letter-spacing:0.249844px;}
.ls3a{letter-spacing:0.250914px;}
.ls22{letter-spacing:0.252063px;}
.ls1e4{letter-spacing:0.254400px;}
.lsbf{letter-spacing:0.254943px;}
.ls6c{letter-spacing:0.256616px;}
.ls1dc{letter-spacing:0.259200px;}
.lsc2{letter-spacing:0.260042px;}
.ls54{letter-spacing:0.262319px;}
.ls1de{letter-spacing:0.264000px;}
.ls13{letter-spacing:0.265141px;}
.ls3f{letter-spacing:0.268021px;}
.ls2{letter-spacing:0.270240px;}
.ls5c{letter-spacing:0.273724px;}
.lsc0{letter-spacing:0.275338px;}
.lsab{letter-spacing:0.279426px;}
.lsd5{letter-spacing:0.280437px;}
.ls1a1{letter-spacing:0.283946px;}
.ls6b{letter-spacing:0.285129px;}
.lsd8{letter-spacing:0.285536px;}
.ls11c{letter-spacing:0.290635px;}
.ls13d{letter-spacing:0.290832px;}
.ls29{letter-spacing:0.294073px;}
.lsdb{letter-spacing:0.295734px;}
.ls14c{letter-spacing:0.296534px;}
.ls162{letter-spacing:0.302237px;}
.ls148{letter-spacing:0.305932px;}
.ls25{letter-spacing:0.306076px;}
.lsed{letter-spacing:0.307939px;}
.ls105{letter-spacing:0.311030px;}
.ls169{letter-spacing:0.313642px;}
.ls145{letter-spacing:0.316129px;}
.lsaa{letter-spacing:0.319344px;}
.ls19e{letter-spacing:0.324510px;}
.ls125{letter-spacing:0.325047px;}
.ls6f{letter-spacing:0.330750px;}
.ls134{letter-spacing:0.335031px;}
.lsac{letter-spacing:0.342155px;}
.ls146{letter-spacing:0.351821px;}
.lsa8{letter-spacing:0.353560px;}
.ls1e{letter-spacing:0.354088px;}
.ls9e{letter-spacing:0.541745px;}
.ls5b{letter-spacing:0.553150px;}
.ls1e6{letter-spacing:0.599442px;}
.ls5e{letter-spacing:0.672904px;}
.ls1c{letter-spacing:0.834208px;}
.lsf9{letter-spacing:0.841312px;}
.ls14d{letter-spacing:1.026464px;}
.ls109{letter-spacing:1.049275px;}
.ls13e{letter-spacing:1.750692px;}
.ls1b3{letter-spacing:5.011873px;}
.ls157{letter-spacing:5.017254px;}
.ls19b{letter-spacing:5.250748px;}
.ls156{letter-spacing:5.348738px;}
.ls12a{letter-spacing:5.525800px;}
.ls1b6{letter-spacing:5.971881px;}
.ls1a6{letter-spacing:6.557801px;}
.ls113{letter-spacing:6.613205px;}
.ls114{letter-spacing:6.613228px;}
.ls1c6{letter-spacing:6.642465px;}
.ls1af{letter-spacing:6.652450px;}
.ls111{letter-spacing:6.653989px;}
.ls112{letter-spacing:6.654035px;}
.ls19c{letter-spacing:6.688507px;}
.lsf4{letter-spacing:6.842956px;}
.ls119{letter-spacing:7.099652px;}
.ls115{letter-spacing:7.105329px;}
.ls13b{letter-spacing:7.185251px;}
.ls79{letter-spacing:7.316410px;}
.ls1ec{letter-spacing:7.373583px;}
.ls15c{letter-spacing:7.587089px;}
.ls15b{letter-spacing:7.643252px;}
.ls158{letter-spacing:7.944079px;}
.ls15a{letter-spacing:7.974684px;}
.ls159{letter-spacing:8.000167px;}
.ls15d{letter-spacing:8.255110px;}
.ls163{letter-spacing:8.405603px;}
.ls140{letter-spacing:9.135533px;}
.ls7b{letter-spacing:9.510506px;}
.ls12d{letter-spacing:9.510689px;}
.lsca{letter-spacing:9.845899px;}
.lsc9{letter-spacing:9.866294px;}
.ls12e{letter-spacing:10.230659px;}
.ls3{letter-spacing:10.267269px;}
.ls5{letter-spacing:10.987240px;}
.ls27{letter-spacing:11.396848px;}
.ls2d{letter-spacing:11.426856px;}
.ls8{letter-spacing:11.707211px;}
.ls7{letter-spacing:11.707394px;}
.lsd{letter-spacing:11.707943px;}
.lse{letter-spacing:12.427181px;}
.ls6{letter-spacing:12.427364px;}
.ls12b{letter-spacing:13.506861px;}
.ls165{letter-spacing:14.644225px;}
.ls15f{letter-spacing:15.668788px;}
.ls108{letter-spacing:16.326487px;}
.ls1c0{letter-spacing:17.491977px;}
.ls16{letter-spacing:18.675950px;}
.ls1ee{letter-spacing:18.875651px;}
.ls132{letter-spacing:19.206289px;}
.ls143{letter-spacing:19.400187px;}
.ls144{letter-spacing:20.118693px;}
.ls14f{letter-spacing:21.202192px;}
.ls153{letter-spacing:22.867346px;}
.ls51{letter-spacing:24.960193px;}
.ls14a{letter-spacing:24.965895px;}
.ls7d{letter-spacing:30.725501px;}
.ls150{letter-spacing:31.808991px;}
.ls87{letter-spacing:32.196767px;}
.ls152{letter-spacing:34.802846px;}
.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;}
}
.ws386{word-spacing:-63.315746px;}
.wsbd{word-spacing:-60.709667px;}
.ws381{word-spacing:-60.321891px;}
.ws9d{word-spacing:-59.238401px;}
.ws339{word-spacing:-53.478795px;}
.ws5b{word-spacing:-53.473093px;}
.ws38b{word-spacing:-51.380246px;}
.ws375{word-spacing:-49.715092px;}
.ws2b8{word-spacing:-47.719189px;}
.ws1fa{word-spacing:-44.839387px;}
.ws36{word-spacing:-43.689600px;}
.ws37{word-spacing:-43.372801px;}
.ws35{word-spacing:-43.344000px;}
.ws3c2{word-spacing:-43.157125px;}
.ws38{word-spacing:-42.796801px;}
.ws25{word-spacing:-41.434354px;}
.ws4fd{word-spacing:-41.411050px;}
.ws18{word-spacing:-41.404347px;}
.ws497{word-spacing:-40.027376px;}
.ws308{word-spacing:-37.648433px;}
.ws3b5{word-spacing:-36.918503px;}
.ws143{word-spacing:-35.360594px;}
.ws144{word-spacing:-35.340199px;}
.ws11c{word-spacing:-34.573476px;}
.ws293{word-spacing:-34.538986px;}
.ws2d6{word-spacing:-34.525190px;}
.wsf8{word-spacing:-34.352736px;}
.ws3f{word-spacing:-34.345838px;}
.ws447{word-spacing:-34.325143px;}
.ws2f8{word-spacing:-34.290653px;}
.ws291{word-spacing:-34.283755px;}
.ws146{word-spacing:-34.230428px;}
.ws206{word-spacing:-34.152690px;}
.ws29c{word-spacing:-34.038700px;}
.ws4aa{word-spacing:-33.628431px;}
.ws0{word-spacing:-32.963104px;}
.ws11e{word-spacing:-32.930108px;}
.ws11d{word-spacing:-32.784925px;}
.ws403{word-spacing:-32.771727px;}
.ws12c{word-spacing:-31.445283px;}
.ws3f8{word-spacing:-31.095525px;}
.ws4f4{word-spacing:-29.908982px;}
.ws202{word-spacing:-29.562175px;}
.ws423{word-spacing:-29.223906px;}
.ws46b{word-spacing:-29.187849px;}
.ws440{word-spacing:-29.093201px;}
.ws21e{word-spacing:-29.054645px;}
.ws88{word-spacing:-28.843650px;}
.ws3d8{word-spacing:-28.775219px;}
.ws2c0{word-spacing:-28.758111px;}
.ws33d{word-spacing:-28.752408px;}
.ws205{word-spacing:-28.741003px;}
.ws6c{word-spacing:-28.729598px;}
.ws3d6{word-spacing:-28.712490px;}
.wsf9{word-spacing:-28.701085px;}
.ws84{word-spacing:-28.695383px;}
.wsfc{word-spacing:-28.661167px;}
.ws1bf{word-spacing:-28.615546px;}
.ws203{word-spacing:-28.530008px;}
.ws46{word-spacing:-28.512900px;}
.ws47d{word-spacing:-28.507280px;}
.ws7d{word-spacing:-28.501495px;}
.ws2aa{word-spacing:-28.478685px;}
.wseb{word-spacing:-28.461577px;}
.ws2bc{word-spacing:-28.450172px;}
.ws10b{word-spacing:-28.433064px;}
.ws38a{word-spacing:-28.421659px;}
.ws29b{word-spacing:-28.404551px;}
.ws307{word-spacing:-28.398848px;}
.ws371{word-spacing:-28.370335px;}
.ws2d0{word-spacing:-28.358930px;}
.ws20b{word-spacing:-28.330417px;}
.wsf6{word-spacing:-28.324715px;}
.ws59{word-spacing:-28.176448px;}
.ws2ce{word-spacing:-28.170745px;}
.ws422{word-spacing:-27.786148px;}
.ws478{word-spacing:-27.547272px;}
.ws2b4{word-spacing:-27.018600px;}
.ws2f7{word-spacing:-26.231868px;}
.ws3a3{word-spacing:-25.805330px;}
.ws16b{word-spacing:-25.790034px;}
.ws17c{word-spacing:-25.769638px;}
.ws262{word-spacing:-25.754342px;}
.ws31b{word-spacing:-25.749243px;}
.ws3a6{word-spacing:-25.744144px;}
.ws3d{word-spacing:-25.739045px;}
.ws57{word-spacing:-25.733946px;}
.ws3a2{word-spacing:-25.723749px;}
.ws149{word-spacing:-25.713551px;}
.ws2{word-spacing:-25.703353px;}
.ws14d{word-spacing:-25.698254px;}
.ws3a8{word-spacing:-25.688057px;}
.ws3a4{word-spacing:-25.682958px;}
.ws243{word-spacing:-25.606475px;}
.ws3c{word-spacing:-25.591178px;}
.ws241{word-spacing:-25.484102px;}
.ws242{word-spacing:-25.468806px;}
.ws3e{word-spacing:-25.463707px;}
.ws1db{word-spacing:-25.448410px;}
.ws263{word-spacing:-25.407619px;}
.ws1e0{word-spacing:-25.382125px;}
.ws267{word-spacing:-25.377026px;}
.ws1df{word-spacing:-25.371927px;}
.ws1e9{word-spacing:-25.361730px;}
.ws147{word-spacing:-25.331136px;}
.ws406{word-spacing:-25.300543px;}
.ws17f{word-spacing:-25.285247px;}
.ws17a{word-spacing:-25.259752px;}
.ws184{word-spacing:-25.254654px;}
.ws1cf{word-spacing:-25.249555px;}
.ws3ac{word-spacing:-25.224060px;}
.ws3a7{word-spacing:-25.208764px;}
.ws1c7{word-spacing:-25.203665px;}
.ws1ef{word-spacing:-25.162874px;}
.ws1dc{word-spacing:-25.142479px;}
.ws1aa{word-spacing:-24.612197px;}
.ws179{word-spacing:-24.525517px;}
.ws244{word-spacing:-24.423539px;}
.ws4b1{word-spacing:-24.244800px;}
.ws4c3{word-spacing:-24.144000px;}
.ws427{word-spacing:-22.859909px;}
.ws47e{word-spacing:-22.751739px;}
.ws449{word-spacing:-22.733711px;}
.ws44c{word-spacing:-22.729204px;}
.ws465{word-spacing:-22.720190px;}
.ws45d{word-spacing:-22.715683px;}
.ws453{word-spacing:-22.711176px;}
.ws40d{word-spacing:-22.706668px;}
.ws46a{word-spacing:-22.702161px;}
.ws446{word-spacing:-22.697654px;}
.ws49b{word-spacing:-22.693147px;}
.ws442{word-spacing:-22.688640px;}
.ws456{word-spacing:-22.684133px;}
.ws43f{word-spacing:-22.679626px;}
.ws443{word-spacing:-22.675119px;}
.ws437{word-spacing:-22.670612px;}
.ws429{word-spacing:-22.666105px;}
.ws42c{word-spacing:-22.661598px;}
.ws42f{word-spacing:-22.657091px;}
.ws433{word-spacing:-22.652584px;}
.ws441{word-spacing:-22.648076px;}
.ws426{word-spacing:-22.643569px;}
.ws439{word-spacing:-22.639062px;}
.ws435{word-spacing:-22.634555px;}
.ws424{word-spacing:-22.630048px;}
.ws43b{word-spacing:-22.625541px;}
.ws430{word-spacing:-22.616527px;}
.ws428{word-spacing:-22.612020px;}
.ws438{word-spacing:-22.603006px;}
.ws471{word-spacing:-22.598499px;}
.ws425{word-spacing:-22.589484px;}
.ws434{word-spacing:-22.580470px;}
.ws43e{word-spacing:-22.575963px;}
.ws41c{word-spacing:-22.571456px;}
.ws431{word-spacing:-22.566949px;}
.ws45b{word-spacing:-22.562442px;}
.ws42b{word-spacing:-22.539907px;}
.ws444{word-spacing:-22.481314px;}
.ws43a{word-spacing:-22.463286px;}
.ws43d{word-spacing:-22.454272px;}
.ws42e{word-spacing:-22.440751px;}
.ws436{word-spacing:-22.422722px;}
.ws4f1{word-spacing:-22.413708px;}
.ws3c4{word-spacing:-22.412056px;}
.ws42d{word-spacing:-22.395680px;}
.ws485{word-spacing:-22.391173px;}
.ws488{word-spacing:-22.377652px;}
.ws495{word-spacing:-22.359623px;}
.ws445{word-spacing:-22.355116px;}
.ws42a{word-spacing:-22.350609px;}
.ws496{word-spacing:-22.346102px;}
.ws49d{word-spacing:-22.323567px;}
.ws47c{word-spacing:-22.314553px;}
.ws486{word-spacing:-22.310045px;}
.ws44e{word-spacing:-22.296524px;}
.ws43c{word-spacing:-22.287510px;}
.ws4a0{word-spacing:-22.228918px;}
.ws41f{word-spacing:-22.179340px;}
.ws420{word-spacing:-21.811918px;}
.ws2ac{word-spacing:-21.487706px;}
.ws145{word-spacing:-21.375032px;}
.ws17d{word-spacing:-21.292182px;}
.ws292{word-spacing:-21.032429px;}
.ws8{word-spacing:-20.525130px;}
.wsb{word-spacing:-20.045010px;}
.ws2a{word-spacing:-19.894972px;}
.ws2c{word-spacing:-19.876967px;}
.ws11{word-spacing:-19.840958px;}
.wscd{word-spacing:-19.668199px;}
.wsed{word-spacing:-19.559849px;}
.ws361{word-spacing:-19.428690px;}
.ws30{word-spacing:-19.420853px;}
.ws17e{word-spacing:-19.365944px;}
.ws362{word-spacing:-19.360259px;}
.ws12b{word-spacing:-19.282921px;}
.ws2b9{word-spacing:-19.263315px;}
.ws1f4{word-spacing:-19.234802px;}
.ws1a{word-spacing:-19.198798px;}
.ws2d1{word-spacing:-19.194884px;}
.ws29{word-spacing:-19.192796px;}
.wsf5{word-spacing:-19.109346px;}
.ws21{word-spacing:-19.102774px;}
.ws309{word-spacing:-19.092238px;}
.ws5{word-spacing:-19.084770px;}
.ws1c4{word-spacing:-19.063725px;}
.ws31{word-spacing:-19.060763px;}
.ws21f{word-spacing:-19.040915px;}
.ws1d{word-spacing:-19.018753px;}
.ws354{word-spacing:-19.018104px;}
.ws313{word-spacing:-18.949674px;}
.wsb8{word-spacing:-18.904052px;}
.ws8a{word-spacing:-18.824216px;}
.ws27{word-spacing:-18.760688px;}
.ws226{word-spacing:-18.738588px;}
.ws119{word-spacing:-18.732975px;}
.ws10{word-spacing:-18.730681px;}
.ws370{word-spacing:-18.698760px;}
.ws14{word-spacing:-18.694672px;}
.ws6{word-spacing:-18.646659px;}
.ws9{word-spacing:-18.610651px;}
.wsf{word-spacing:-18.604650px;}
.ws19{word-spacing:-18.598648px;}
.ws2d{word-spacing:-18.556637px;}
.ws1fb{word-spacing:-18.521979px;}
.ws1b{word-spacing:-18.502624px;}
.ws3b3{word-spacing:-18.499169px;}
.wsef{word-spacing:-18.493467px;}
.ws401{word-spacing:-18.487765px;}
.ws2e{word-spacing:-18.478618px;}
.ws17{word-spacing:-18.460613px;}
.ws2a1{word-spacing:-18.442143px;}
.ws400{word-spacing:-18.436441px;}
.ws16{word-spacing:-18.430606px;}
.ws2fa{word-spacing:-18.425036px;}
.ws3eb{word-spacing:-18.413631px;}
.ws1ff{word-spacing:-18.390821px;}
.ws7{word-spacing:-18.370591px;}
.ws39{word-spacing:-18.365630px;}
.ws3d4{word-spacing:-18.350902px;}
.ws2c6{word-spacing:-18.345200px;}
.wsa{word-spacing:-18.334582px;}
.ws12{word-spacing:-18.328580px;}
.ws116{word-spacing:-18.328092px;}
.ws38f{word-spacing:-18.288174px;}
.ws23{word-spacing:-18.280568px;}
.ws1f9{word-spacing:-18.276769px;}
.ws1b0{word-spacing:-18.265364px;}
.ws34{word-spacing:-18.238558px;}
.ws22e{word-spacing:-18.231148px;}
.ws2ab{word-spacing:-18.204191px;}
.ws33c{word-spacing:-18.162717px;}
.ws1ce{word-spacing:-18.146842px;}
.ws2e5{word-spacing:-18.139907px;}
.ws227{word-spacing:-18.117097px;}
.ws216{word-spacing:-18.105691px;}
.ws3fc{word-spacing:-18.048665px;}
.wsc{word-spacing:-18.040508px;}
.ws3ff{word-spacing:-18.037261px;}
.ws305{word-spacing:-18.003045px;}
.ws3fa{word-spacing:-17.946019px;}
.ws3f9{word-spacing:-17.911804px;}
.ws32{word-spacing:-17.866464px;}
.ws1e7{word-spacing:-17.820516px;}
.ws283{word-spacing:-17.814860px;}
.ws2de{word-spacing:-17.805208px;}
.ws2c9{word-spacing:-17.797752px;}
.ws2d3{word-spacing:-17.786347px;}
.ws2a5{word-spacing:-17.784824px;}
.ws402{word-spacing:-17.774942px;}
.ws240{word-spacing:-17.774626px;}
.ws344{word-spacing:-17.769245px;}
.ws3fb{word-spacing:-17.769239px;}
.ws48{word-spacing:-17.763537px;}
.ws3a5{word-spacing:-17.749131px;}
.ws3aa{word-spacing:-17.738934px;}
.ws192{word-spacing:-17.733835px;}
.ws1c6{word-spacing:-17.728736px;}
.ws15{word-spacing:-17.728430px;}
.ws101{word-spacing:-17.706511px;}
.ws196{word-spacing:-17.698143px;}
.ws1a1{word-spacing:-17.682846px;}
.ws160{word-spacing:-17.677748px;}
.wsce{word-spacing:-17.660890px;}
.ws2e7{word-spacing:-17.649485px;}
.ws278{word-spacing:-17.632377px;}
.wse0{word-spacing:-17.620972px;}
.ws3a9{word-spacing:-17.606364px;}
.ws378{word-spacing:-17.603864px;}
.ws1de{word-spacing:-17.580869px;}
.wse{word-spacing:-17.578393px;}
.wscf{word-spacing:-17.569649px;}
.wsf3{word-spacing:-17.512623px;}
.ws75{word-spacing:-17.501218px;}
.ws1f{word-spacing:-17.500373px;}
.ws16f{word-spacing:-17.458497px;}
.ws252{word-spacing:-17.427903px;}
.ws1d1{word-spacing:-17.417705px;}
.ws1e6{word-spacing:-17.407508px;}
.ws3fd{word-spacing:-17.352951px;}
.ws1eb{word-spacing:-17.336124px;}
.ws170{word-spacing:-17.325926px;}
.ws325{word-spacing:-17.320828px;}
.ws26e{word-spacing:-17.310630px;}
.ws26f{word-spacing:-17.300432px;}
.ws25e{word-spacing:-17.259641px;}
.ws1dd{word-spacing:-17.254542px;}
.ws23f{word-spacing:-17.229048px;}
.ws261{word-spacing:-17.218850px;}
.ws16c{word-spacing:-17.208652px;}
.ws404{word-spacing:-17.193356px;}
.ws1e8{word-spacing:-17.183158px;}
.ws188{word-spacing:-17.162763px;}
.ws14f{word-spacing:-17.147466px;}
.ws2d5{word-spacing:-17.141878px;}
.ws1cd{word-spacing:-17.091378px;}
.ws1ea{word-spacing:-17.086280px;}
.ws1a4{word-spacing:-17.081181px;}
.ws250{word-spacing:-17.060786px;}
.ws191{word-spacing:-17.035292px;}
.ws1d2{word-spacing:-17.030193px;}
.ws2c8{word-spacing:-17.022201px;}
.ws83{word-spacing:-17.016498px;}
.wsea{word-spacing:-17.010796px;}
.ws2ba{word-spacing:-16.987986px;}
.ws1e3{word-spacing:-16.984303px;}
.ws17b{word-spacing:-16.979204px;}
.ws198{word-spacing:-16.974105px;}
.ws374{word-spacing:-16.970878px;}
.ws1a0{word-spacing:-16.953710px;}
.ws1a7{word-spacing:-16.943512px;}
.ws1e2{word-spacing:-16.928216px;}
.ws320{word-spacing:-16.923116px;}
.ws357{word-spacing:-16.913852px;}
.ws2fc{word-spacing:-16.902447px;}
.ws166{word-spacing:-16.882325px;}
.ws182{word-spacing:-16.872128px;}
.ws126{word-spacing:-16.868232px;}
.ws133{word-spacing:-16.811206px;}
.ws158{word-spacing:-16.810941px;}
.ws98{word-spacing:-16.799801px;}
.ws159{word-spacing:-16.780349px;}
.ws26a{word-spacing:-16.770151px;}
.ws26b{word-spacing:-16.759953px;}
.ws246{word-spacing:-16.754854px;}
.ws1bd{word-spacing:-16.737073px;}
.ws167{word-spacing:-16.729360px;}
.ws2bb{word-spacing:-16.697154px;}
.ws1cc{word-spacing:-16.668173px;}
.ws1d4{word-spacing:-16.657975px;}
.ws281{word-spacing:-16.645831px;}
.ws189{word-spacing:-16.617184px;}
.ws3fe{word-spacing:-16.588805px;}
.ws25d{word-spacing:-16.581493px;}
.ws4d0{word-spacing:-16.569600px;}
.ws3{word-spacing:-16.555998px;}
.ws377{word-spacing:-16.548887px;}
.ws16e{word-spacing:-16.540702px;}
.ws4cb{word-spacing:-16.521600px;}
.ws3e1{word-spacing:-16.520374px;}
.ws1e1{word-spacing:-16.505010px;}
.ws1a2{word-spacing:-16.499911px;}
.ws1a8{word-spacing:-16.494812px;}
.ws154{word-spacing:-16.489713px;}
.wsc5{word-spacing:-16.480457px;}
.ws1d5{word-spacing:-16.479515px;}
.ws258{word-spacing:-16.464219px;}
.ws171{word-spacing:-16.459120px;}
.ws25c{word-spacing:-16.454021px;}
.ws234{word-spacing:-16.446240px;}
.ws321{word-spacing:-16.443824px;}
.ws19b{word-spacing:-16.413230px;}
.ws3b0{word-spacing:-16.389215px;}
.ws181{word-spacing:-16.382637px;}
.ws405{word-spacing:-16.362242px;}
.ws1{word-spacing:-16.352044px;}
.ws4cf{word-spacing:-16.348800px;}
.ws289{word-spacing:-16.343594px;}
.ws1e5{word-spacing:-16.336748px;}
.ws326{word-spacing:-16.331648px;}
.ws345{word-spacing:-16.309379px;}
.ws1a5{word-spacing:-16.295957px;}
.ws18e{word-spacing:-16.290858px;}
.ws193{word-spacing:-16.280660px;}
.ws161{word-spacing:-16.270462px;}
.ws2a4{word-spacing:-16.265367px;}
.ws4be{word-spacing:-16.262400px;}
.ws24d{word-spacing:-16.255166px;}
.ws4d1{word-spacing:-16.252800px;}
.ws4c9{word-spacing:-16.243200px;}
.ws168{word-spacing:-16.234771px;}
.ws4d3{word-spacing:-16.233600px;}
.ws2ec{word-spacing:-16.229543px;}
.ws4{word-spacing:-16.224573px;}
.wsec{word-spacing:-16.218138px;}
.ws175{word-spacing:-16.214374px;}
.ws26c{word-spacing:-16.199078px;}
.ws6d{word-spacing:-16.195327px;}
.ws4c1{word-spacing:-16.195200px;}
.ws150{word-spacing:-16.193979px;}
.ws1d3{word-spacing:-16.178683px;}
.ws1d0{word-spacing:-16.173584px;}
.ws1f7{word-spacing:-16.161112px;}
.ws270{word-spacing:-16.158287px;}
.ws4b7{word-spacing:-16.156800px;}
.ws1a6{word-spacing:-16.153188px;}
.ws3b7{word-spacing:-16.149707px;}
.ws186{word-spacing:-16.142991px;}
.ws4b3{word-spacing:-16.128000px;}
.ws4b5{word-spacing:-16.108800px;}
.ws1d7{word-spacing:-16.081804px;}
.ws31c{word-spacing:-16.061409px;}
.ws36b{word-spacing:-16.058465px;}
.ws323{word-spacing:-16.051211px;}
.ws269{word-spacing:-16.046112px;}
.ws4c7{word-spacing:-16.032000px;}
.ws19c{word-spacing:-16.030816px;}
.ws1d8{word-spacing:-16.020618px;}
.ws153{word-spacing:-16.010420px;}
.ws1d9{word-spacing:-15.990025px;}
.ws1d6{word-spacing:-15.979827px;}
.ws1da{word-spacing:-15.964531px;}
.ws140{word-spacing:-15.950117px;}
.ws23e{word-spacing:-15.938711px;}
.ws99{word-spacing:-15.936000px;}
.ws53{word-spacing:-15.927306px;}
.ws3d7{word-spacing:-15.921603px;}
.ws151{word-spacing:-15.857455px;}
.ws324{word-spacing:-15.847257px;}
.ws265{word-spacing:-15.842158px;}
.ws24e{word-spacing:-15.831960px;}
.ws197{word-spacing:-15.816664px;}
.ws2a9{word-spacing:-15.807551px;}
.ws4d2{word-spacing:-15.801600px;}
.ws3ab{word-spacing:-15.801367px;}
.ws3b{word-spacing:-15.786070px;}
.ws257{word-spacing:-15.780971px;}
.ws14e{word-spacing:-15.770774px;}
.ws25b{word-spacing:-15.765675px;}
.ws29f{word-spacing:-15.761931px;}
.ws4c5{word-spacing:-15.753600px;}
.ws1a9{word-spacing:-15.735082px;}
.ws1cb{word-spacing:-15.729983px;}
.ws152{word-spacing:-15.714686px;}
.ws26d{word-spacing:-15.699422px;}
.ws3af{word-spacing:-15.693500px;}
.ws194{word-spacing:-15.668797px;}
.ws392{word-spacing:-15.664987px;}
.ws18b{word-spacing:-15.648401px;}
.ws279{word-spacing:-15.647879px;}
.ws4bc{word-spacing:-15.638400px;}
.ws254{word-spacing:-15.597413px;}
.ws328{word-spacing:-15.587243px;}
.ws19a{word-spacing:-15.587215px;}
.ws451{word-spacing:-15.585482px;}
.ws176{word-spacing:-15.582116px;}
.ws4af{word-spacing:-15.580800px;}
.ws2ca{word-spacing:-15.579449px;}
.ws190{word-spacing:-15.571918px;}
.ws415{word-spacing:-15.558439px;}
.ws367{word-spacing:-15.556638px;}
.ws4c2{word-spacing:-15.552000px;}
.ws469{word-spacing:-15.549426px;}
.ws1ee{word-spacing:-15.541325px;}
.ws4d5{word-spacing:-15.532800px;}
.ws4cc{word-spacing:-15.523200px;}
.ws18a{word-spacing:-15.515831px;}
.ws15e{word-spacing:-15.500534px;}
.ws187{word-spacing:-15.485238px;}
.ws4cd{word-spacing:-15.484800px;}
.ws2d7{word-spacing:-15.476802px;}
.ws19d{word-spacing:-15.475040px;}
.ws4c0{word-spacing:-15.456000px;}
.ws4f6{word-spacing:-15.450270px;}
.wsc9{word-spacing:-15.448289px;}
.ws183{word-spacing:-15.444447px;}
.ws4fe{word-spacing:-15.441256px;}
.ws48d{word-spacing:-15.427734px;}
.ws169{word-spacing:-15.424051px;}
.ws2bf{word-spacing:-15.419776px;}
.ws457{word-spacing:-15.414213px;}
.ws4b2{word-spacing:-15.388800px;}
.ws2c3{word-spacing:-15.385561px;}
.ws481{word-spacing:-15.382664px;}
.ws4ae{word-spacing:-15.360000px;}
.ws165{word-spacing:-15.352667px;}
.ws45a{word-spacing:-15.346607px;}
.ws264{word-spacing:-15.342470px;}
.ws4bb{word-spacing:-15.340800px;}
.ws4bd{word-spacing:-15.321600px;}
.ws15c{word-spacing:-15.311877px;}
.ws15d{word-spacing:-15.291481px;}
.ws472{word-spacing:-15.288015px;}
.ws1c8{word-spacing:-15.265987px;}
.ws4b6{word-spacing:-15.264000px;}
.ws4ca{word-spacing:-15.225600px;}
.ws4a4{word-spacing:-15.224916px;}
.ws4b0{word-spacing:-15.177600px;}
.ws16d{word-spacing:-15.164010px;}
.ws162{word-spacing:-15.158911px;}
.ws16a{word-spacing:-15.143614px;}
.ws172{word-spacing:-15.128317px;}
.ws4a5{word-spacing:-15.098718px;}
.ws45c{word-spacing:-15.094211px;}
.ws4ad{word-spacing:-15.091200px;}
.ws14a{word-spacing:-15.087526px;}
.ws1e4{word-spacing:-15.082428px;}
.wsc8{word-spacing:-15.077621px;}
.ws18f{word-spacing:-15.062032px;}
.ws1ed{word-spacing:-15.026340px;}
.ws4c6{word-spacing:-15.024000px;}
.ws409{word-spacing:-15.017590px;}
.ws1a3{word-spacing:-15.016143px;}
.ws1f0{word-spacing:-14.974975px;}
.ws4dc{word-spacing:-14.968013px;}
.ws414{word-spacing:-14.949984px;}
.ws1ec{word-spacing:-14.943900px;}
.ws41b{word-spacing:-14.931956px;}
.ws40a{word-spacing:-14.895899px;}
.wsaf{word-spacing:-14.895139px;}
.ws3bc{word-spacing:-14.883734px;}
.ws15f{word-spacing:-14.878473px;}
.ws41a{word-spacing:-14.873364px;}
.ws418{word-spacing:-14.841814px;}
.ws411{word-spacing:-14.832800px;}
.ws4fa{word-spacing:-14.810264px;}
.ws4ce{word-spacing:-14.803200px;}
.ws40f{word-spacing:-14.792236px;}
.ws410{word-spacing:-14.783222px;}
.ws25a{word-spacing:-14.781595px;}
.ws285{word-spacing:-14.781087px;}
.ws1ac{word-spacing:-14.776497px;}
.ws3ee{word-spacing:-14.775385px;}
.ws28e{word-spacing:-14.763980px;}
.ws4ba{word-spacing:-14.755200px;}
.ws195{word-spacing:-14.751002px;}
.ws3a{word-spacing:-14.745903px;}
.ws4ab{word-spacing:-14.736000px;}
.ws3db{word-spacing:-14.735467px;}
.ws137{word-spacing:-14.712656px;}
.ws3bd{word-spacing:-14.678441px;}
.ws34a{word-spacing:-14.667036px;}
.ws459{word-spacing:-14.666038px;}
.ws1ab{word-spacing:-14.654123px;}
.ws9a{word-spacing:-14.640000px;}
.ws413{word-spacing:-14.638995px;}
.ws19e{word-spacing:-14.638827px;}
.ws4a2{word-spacing:-14.625474px;}
.ws416{word-spacing:-14.620967px;}
.ws253{word-spacing:-14.592937px;}
.ws47f{word-spacing:-14.589418px;}
.ws15a{word-spacing:-14.587838px;}
.ws4c4{word-spacing:-14.582400px;}
.ws2b6{word-spacing:-14.564389px;}
.ws18c{word-spacing:-14.547048px;}
.ws4d4{word-spacing:-14.544000px;}
.ws148{word-spacing:-14.526652px;}
.ws4c8{word-spacing:-14.505600px;}
.ws4e4{word-spacing:-14.499276px;}
.ws417{word-spacing:-14.440684px;}
.ws225{word-spacing:-14.427527px;}
.ws342{word-spacing:-14.404717px;}
.ws4eb{word-spacing:-14.377585px;}
.ws452{word-spacing:-14.373078px;}
.ws483{word-spacing:-14.368571px;}
.ws102{word-spacing:-14.330584px;}
.ws327{word-spacing:-14.327797px;}
.ws236{word-spacing:-14.324881px;}
.ws19f{word-spacing:-14.322698px;}
.ws18d{word-spacing:-14.307401px;}
.ws412{word-spacing:-14.300964px;}
.ws408{word-spacing:-14.296457px;}
.ws21a{word-spacing:-14.239342px;}
.ws4a8{word-spacing:-14.228851px;}
.ws185{word-spacing:-14.190127px;}
.ws1f6{word-spacing:-14.188019px;}
.ws303{word-spacing:-14.182316px;}
.ws22a{word-spacing:-14.176614px;}
.ws8f{word-spacing:-14.170911px;}
.ws4e0{word-spacing:-14.161245px;}
.ws260{word-spacing:-14.154435px;}
.ws4ac{word-spacing:-14.150400px;}
.ws174{word-spacing:-14.139139px;}
.ws45f{word-spacing:-14.138709px;}
.ws1ae{word-spacing:-14.125291px;}
.ws4e8{word-spacing:-14.116174px;}
.ws4b9{word-spacing:-14.112000px;}
.ws4bf{word-spacing:-14.102400px;}
.ws4dd{word-spacing:-14.098146px;}
.ws237{word-spacing:-14.073968px;}
.ws44b{word-spacing:-14.057582px;}
.ws28c{word-spacing:-14.056860px;}
.ws49c{word-spacing:-14.035047px;}
.ws3e7{word-spacing:-14.034049px;}
.ws349{word-spacing:-14.022644px;}
.ws40c{word-spacing:-14.003497px;}
.wsf2{word-spacing:-13.977023px;}
.ws419{word-spacing:-13.958426px;}
.wsfa{word-spacing:-13.942808px;}
.ws3e2{word-spacing:-13.937106px;}
.ws77{word-spacing:-13.891485px;}
.ws204{word-spacing:-13.885783px;}
.wsb3{word-spacing:-13.862972px;}
.ws40b{word-spacing:-13.845750px;}
.ws266{word-spacing:-13.802614px;}
.ws199{word-spacing:-13.787317px;}
.ws4e5{word-spacing:-13.751101px;}
.ws490{word-spacing:-13.746594px;}
.ws304{word-spacing:-13.743217px;}
.ws41e{word-spacing:-13.742087px;}
.ws48a{word-spacing:-13.737579px;}
.ws49e{word-spacing:-13.669973px;}
.ws14b{word-spacing:-13.629253px;}
.ws37a{word-spacing:-13.617761px;}
.ws177{word-spacing:-13.578264px;}
.ws347{word-spacing:-13.555032px;}
.wse4{word-spacing:-13.549330px;}
.ws48e{word-spacing:-13.548282px;}
.ws15b{word-spacing:-13.547671px;}
.ws482{word-spacing:-13.534761px;}
.ws2d2{word-spacing:-13.503912px;}
.ws49f{word-spacing:-13.449126px;}
.ws157{word-spacing:-13.425299px;}
.ws3d9{word-spacing:-13.401062px;}
.ws4e6{word-spacing:-13.309407px;}
.ws14c{word-spacing:-13.287629px;}
.ws36a{word-spacing:-13.281308px;}
.ws28f{word-spacing:-13.266527px;}
.ws4f9{word-spacing:-13.264336px;}
.ws1b4{word-spacing:-13.235689px;}
.ws44f{word-spacing:-13.228280px;}
.ws380{word-spacing:-13.212877px;}
.ws368{word-spacing:-13.195770px;}
.ws2a2{word-spacing:-13.190067px;}
.ws180{word-spacing:-13.185659px;}
.ws210{word-spacing:-13.161555px;}
.ws164{word-spacing:-13.139763px;}
.ws491{word-spacing:-13.129124px;}
.ws4b4{word-spacing:-13.104000px;}
.ws31d{word-spacing:-13.083675px;}
.ws7e{word-spacing:-13.064610px;}
.ws178{word-spacing:-13.053082px;}
.ws10e{word-spacing:-12.996180px;}
.ws2dd{word-spacing:-12.961964px;}
.ws389{word-spacing:-12.916343px;}
.ws89{word-spacing:-12.899236px;}
.ws208{word-spacing:-12.882128px;}
.ws4f3{word-spacing:-12.863206px;}
.ws484{word-spacing:-12.854192px;}
.ws11b{word-spacing:-12.847912px;}
.ws125{word-spacing:-12.813697px;}
.ws2c7{word-spacing:-12.785223px;}
.ws334{word-spacing:-12.750970px;}
.ws475{word-spacing:-12.714472px;}
.ws3c3{word-spacing:-12.699646px;}
.ws467{word-spacing:-12.691937px;}
.ws64{word-spacing:-12.688241px;}
.ws311{word-spacing:-12.688240px;}
.ws2ef{word-spacing:-12.654024px;}
.ws2c1{word-spacing:-12.642620px;}
.ws4a9{word-spacing:-12.597288px;}
.wse8{word-spacing:-12.551379px;}
.ws463{word-spacing:-12.543203px;}
.ws4a6{word-spacing:-12.529682px;}
.ws87{word-spacing:-12.528569px;}
.ws46c{word-spacing:-12.520668px;}
.ws4e7{word-spacing:-12.498133px;}
.ws4a{word-spacing:-12.460138px;}
.ws340{word-spacing:-12.460137px;}
.ws432{word-spacing:-12.430526px;}
.ws464{word-spacing:-12.398976px;}
.ws25f{word-spacing:-12.385131px;}
.ws4e1{word-spacing:-12.371935px;}
.ws477{word-spacing:-12.331371px;}
.ws48f{word-spacing:-12.317850px;}
.ws155{word-spacing:-12.288253px;}
.ws479{word-spacing:-12.259257px;}
.ws4de{word-spacing:-12.232215px;}
.ws276{word-spacing:-12.209224px;}
.ws4e2{word-spacing:-12.160102px;}
.ws3f4{word-spacing:-12.146496px;}
.ws372{word-spacing:-12.072361px;}
.wsca{word-spacing:-12.060956px;}
.ws455{word-spacing:-12.056439px;}
.ws2cb{word-spacing:-12.050203px;}
.ws359{word-spacing:-12.003930px;}
.ws4e9{word-spacing:-11.993340px;}
.ws458{word-spacing:-11.975311px;}
.ws500{word-spacing:-11.961790px;}
.ws3c5{word-spacing:-11.935500px;}
.ws35e{word-spacing:-11.935499px;}
.wsde{word-spacing:-11.924094px;}
.ws1b2{word-spacing:-11.889880px;}
.ws20d{word-spacing:-11.855664px;}
.ws310{word-spacing:-11.849961px;}
.ws2f0{word-spacing:-11.821449px;}
.ws3f7{word-spacing:-11.804340px;}
.ws233{word-spacing:-11.753018px;}
.ws290{word-spacing:-11.730207px;}
.ws74{word-spacing:-11.724505px;}
.ws2bd{word-spacing:-11.701695px;}
.ws173{word-spacing:-11.671291px;}
.ws3ed{word-spacing:-11.656074px;}
.ws27c{word-spacing:-11.644668px;}
.ws38e{word-spacing:-11.638966px;}
.ws156{word-spacing:-11.630500px;}
.ws163{word-spacing:-11.625411px;}
.ws71{word-spacing:-11.559130px;}
.ws1c1{word-spacing:-11.536320px;}
.ws86{word-spacing:-11.479294px;}
.wse1{word-spacing:-11.445078px;}
.wsb2{word-spacing:-11.433673px;}
.ws3dc{word-spacing:-11.342432px;}
.ws2a7{word-spacing:-11.302514px;}
.ws69{word-spacing:-11.291109px;}
.ws3ae{word-spacing:-11.279704px;}
.wsa4{word-spacing:-11.268299px;}
.ws219{word-spacing:-11.199867px;}
.ws23a{word-spacing:-11.177057px;}
.ws5c{word-spacing:-11.171354px;}
.ws4a7{word-spacing:-11.155023px;}
.ws1ba{word-spacing:-11.137138px;}
.wsac{word-spacing:-11.074411px;}
.ws4a1{word-spacing:-11.046853px;}
.ws2d4{word-spacing:-11.045897px;}
.ws1fd{word-spacing:-11.005980px;}
.ws93{word-spacing:-11.000277px;}
.ws20c{word-spacing:-10.988871px;}
.ws28b{word-spacing:-10.983169px;}
.ws68{word-spacing:-10.948953px;}
.ws3c1{word-spacing:-10.937548px;}
.wsfb{word-spacing:-10.897630px;}
.ws213{word-spacing:-10.863415px;}
.ws2e9{word-spacing:-10.812091px;}
.wsdf{word-spacing:-10.783579px;}
.ws3b4{word-spacing:-10.772173px;}
.ws2eb{word-spacing:-10.737958px;}
.ws282{word-spacing:-10.726553px;}
.ws4f5{word-spacing:-10.713329px;}
.ws2fb{word-spacing:-10.703743px;}
.ws2df{word-spacing:-10.692338px;}
.ws1c2{word-spacing:-10.652419px;}
.ws10a{word-spacing:-10.641014px;}
.ws3d3{word-spacing:-10.555476px;}
.ws30c{word-spacing:-10.538368px;}
.ws5d{word-spacing:-10.515558px;}
.ws21d{word-spacing:-10.504153px;}
.ws4ef{word-spacing:-10.438397px;}
.ws1b9{word-spacing:-10.372993px;}
.ws3c6{word-spacing:-10.315967px;}
.ws231{word-spacing:-10.310265px;}
.ws3f0{word-spacing:-10.281752px;}
.ws4d9{word-spacing:-10.280649px;}
.wsf7{word-spacing:-10.236130px;}
.ws12a{word-spacing:-10.219024px;}
.ws348{word-spacing:-10.207623px;}
.ws131{word-spacing:-10.179105px;}
.ws2f6{word-spacing:-10.082162px;}
.ws448{word-spacing:-10.028253px;}
.ws3b6{word-spacing:-9.996623px;}
.ws390{word-spacing:-9.945300px;}
.ws4da{word-spacing:-9.920083px;}
.wscc{word-spacing:-9.905381px;}
.ws61{word-spacing:-9.893976px;}
.ws9e{word-spacing:-9.888274px;}
.ws7c{word-spacing:-9.876869px;}
.ws399{word-spacing:-9.859760px;}
.ws421{word-spacing:-9.852477px;}
.ws65{word-spacing:-9.785627px;}
.ws1f8{word-spacing:-9.779925px;}
.wsa6{word-spacing:-9.774222px;}
.ws1f1{word-spacing:-9.751411px;}
.ws3bb{word-spacing:-9.740006px;}
.ws22f{word-spacing:-9.717197px;}
.ws3bf{word-spacing:-9.717196px;}
.ws6b{word-spacing:-9.694386px;}
.ws487{word-spacing:-9.690221px;}
.ws480{word-spacing:-9.685714px;}
.wsd4{word-spacing:-9.682982px;}
.ws489{word-spacing:-9.681207px;}
.ws476{word-spacing:-9.654165px;}
.ws45e{word-spacing:-9.636136px;}
.ws46d{word-spacing:-9.627123px;}
.wsa5{word-spacing:-9.625954px;}
.ws4a3{word-spacing:-9.618109px;}
.ws492{word-spacing:-9.609094px;}
.ws44a{word-spacing:-9.600080px;}
.ws1c5{word-spacing:-9.570560px;}
.ws332{word-spacing:-9.534714px;}
.ws48c{word-spacing:-9.527967px;}
.ws44d{word-spacing:-9.509938px;}
.ws454{word-spacing:-9.455853px;}
.ws364{word-spacing:-9.443473px;}
.ws329{word-spacing:-9.437770px;}
.ws92{word-spacing:-9.375042px;}
.ws21c{word-spacing:-9.312313px;}
.ws3ec{word-spacing:-9.306610px;}
.ws474{word-spacing:-9.198951px;}
.ws350{word-spacing:-9.169748px;}
.wsfe{word-spacing:-9.164045px;}
.ws13f{word-spacing:-9.158344px;}
.ws22d{word-spacing:-9.152641px;}
.ws41{word-spacing:-9.124129px;}
.ws360{word-spacing:-9.112723px;}
.ws47b{word-spacing:-9.095287px;}
.ws494{word-spacing:-9.081766px;}
.ws29a{word-spacing:-9.078507px;}
.ws81{word-spacing:-9.010077px;}
.ws4ff{word-spacing:-8.969089px;}
.wsa9{word-spacing:-8.953050px;}
.ws473{word-spacing:-8.942046px;}
.ws214{word-spacing:-8.918835px;}
.ws4ea{word-spacing:-8.905990px;}
.ws124{word-spacing:-8.890323px;}
.ws2f2{word-spacing:-8.884619px;}
.ws4db{word-spacing:-8.869933px;}
.ws3c0{word-spacing:-8.856106px;}
.wsf0{word-spacing:-8.793378px;}
.ws366{word-spacing:-8.770568px;}
.ws4d6{word-spacing:-8.707678px;}
.ws12d{word-spacing:-8.685029px;}
.ws239{word-spacing:-8.588086px;}
.ws8b{word-spacing:-8.565276px;}
.ws2f9{word-spacing:-8.519654px;}
.ws4fc{word-spacing:-8.513874px;}
.ws4d8{word-spacing:-8.405705px;}
.ws32d{word-spacing:-8.399900px;}
.wsd6{word-spacing:-8.394198px;}
.ws393{word-spacing:-8.365685px;}
.ws201{word-spacing:-8.325766px;}
.ws1fe{word-spacing:-8.308658px;}
.ws2d8{word-spacing:-8.297254px;}
.ws1fc{word-spacing:-8.285849px;}
.wsf1{word-spacing:-8.240229px;}
.wse9{word-spacing:-8.211715px;}
.ws11a{word-spacing:-8.148986px;}
.wsc3{word-spacing:-8.131879px;}
.ws1c3{word-spacing:-8.114772px;}
.ws1b6{word-spacing:-8.034935px;}
.ws4fb{word-spacing:-8.022602px;}
.ws2f{word-spacing:-7.987574px;}
.ws3de{word-spacing:-7.937991px;}
.ws36f{word-spacing:-7.926587px;}
.ws466{word-spacing:-7.914432px;}
.ws200{word-spacing:-7.892371px;}
.wse7{word-spacing:-7.789725px;}
.ws3e0{word-spacing:-7.738401px;}
.ws369{word-spacing:-7.669970px;}
.ws382{word-spacing:-7.624350px;}
.ws391{word-spacing:-7.578728px;}
.ws35a{word-spacing:-7.567324px;}
.ws4f0{word-spacing:-7.558372px;}
.ws8e{word-spacing:-7.533108px;}
.ws2f5{word-spacing:-7.498893px;}
.ws2e0{word-spacing:-7.487488px;}
.ws4ed{word-spacing:-7.477245px;}
.ws287{word-spacing:-7.476083px;}
.ws398{word-spacing:-7.464677px;}
.wsba{word-spacing:-7.447570px;}
.wsbf{word-spacing:-7.441867px;}
.ws4f7{word-spacing:-7.378089px;}
.ws109{word-spacing:-7.362031px;}
.ws108{word-spacing:-7.327815px;}
.wsa2{word-spacing:-7.270790px;}
.ws36c{word-spacing:-7.219467px;}
.ws3e8{word-spacing:-7.196657px;}
.wsdd{word-spacing:-7.179549px;}
.wsdc{word-spacing:-7.168143px;}
.ws4ec{word-spacing:-7.157243px;}
.ws2cf{word-spacing:-7.111117px;}
.ws3e9{word-spacing:-7.094009px;}
.ws356{word-spacing:-7.054091px;}
.wsff{word-spacing:-7.025578px;}
.ws2cd{word-spacing:-6.985661px;}
.ws209{word-spacing:-6.962851px;}
.ws3be{word-spacing:-6.934337px;}
.ws379{word-spacing:-6.917229px;}
.ws8d{word-spacing:-6.883015px;}
.ws3ea{word-spacing:-6.860203px;}
.ws29d{word-spacing:-6.791773px;}
.ws103{word-spacing:-6.723341px;}
.ws358{word-spacing:-6.706233px;}
.ws335{word-spacing:-6.672019px;}
.ws97{word-spacing:-6.649209px;}
.ws220{word-spacing:-6.637803px;}
.ws1c{word-spacing:-6.546873px;}
.ws26{word-spacing:-6.546677px;}
.ws28{word-spacing:-6.546493px;}
.wsd{word-spacing:-6.546297px;}
.ws22{word-spacing:-6.546114px;}
.ws3ad{word-spacing:-6.466726px;}
.ws29e{word-spacing:-6.403997px;}
.ws32c{word-spacing:-6.358377px;}
.ws20a{word-spacing:-6.289946px;}
.ws106{word-spacing:-6.221515px;}
.ws355{word-spacing:-6.210110px;}
.ws90{word-spacing:-6.181596px;}
.ws462{word-spacing:-6.170193px;}
.ws331{word-spacing:-6.073247px;}
.ws28d{word-spacing:-6.061843px;}
.ws32b{word-spacing:-6.056140px;}
.ws107{word-spacing:-6.050437px;}
.ws34d{word-spacing:-6.044734px;}
.ws46e{word-spacing:-5.985402px;}
.ws4df{word-spacing:-5.962867px;}
.ws461{word-spacing:-5.958360px;}
.ws4f8{word-spacing:-5.917796px;}
.ws111{word-spacing:-5.913576px;}
.ws1f2{word-spacing:-5.873658px;}
.ws235{word-spacing:-5.862252px;}
.ws129{word-spacing:-5.850848px;}
.ws3cd{word-spacing:-5.833739px;}
.ws24{word-spacing:-5.826706px;}
.ws1e{word-spacing:-5.826326px;}
.ws20{word-spacing:-5.826143px;}
.wsfd{word-spacing:-5.788118px;}
.ws34c{word-spacing:-5.759605px;}
.ws2a3{word-spacing:-5.656959px;}
.ws4b8{word-spacing:-5.638157px;}
.wsd8{word-spacing:-5.628446px;}
.ws365{word-spacing:-5.599934px;}
.ws2a6{word-spacing:-5.588528px;}
.ws128{word-spacing:-5.587446px;}
.ws2b3{word-spacing:-5.587347px;}
.ws3ba{word-spacing:-5.560015px;}
.ws82{word-spacing:-5.554313px;}
.ws238{word-spacing:-5.514395px;}
.ws50{word-spacing:-5.423154px;}
.wse3{word-spacing:-5.411748px;}
.wsd7{word-spacing:-5.383236px;}
.ws343{word-spacing:-5.309103px;}
.ws27f{word-spacing:-5.297696px;}
.ws460{word-spacing:-5.295819px;}
.wsb9{word-spacing:-5.291994px;}
.ws407{word-spacing:-5.165114px;}
.ws1f3{word-spacing:-5.132323px;}
.ws2b{word-spacing:-5.106355px;}
.ws33{word-spacing:-5.106283px;}
.ws13{word-spacing:-5.106172px;}
.ws312{word-spacing:-5.069593px;}
.ws493{word-spacing:-5.025394px;}
.ws44{word-spacing:-4.989758px;}
.ws104{word-spacing:-4.875706px;}
.ws1b7{word-spacing:-4.841490px;}
.wsc0{word-spacing:-4.807276px;}
.ws470{word-spacing:-4.741447px;}
.ws3f5{word-spacing:-4.727439px;}
.ws5e{word-spacing:-4.676115px;}
.ws4ee{word-spacing:-4.642293px;}
.ws468{word-spacing:-4.619757px;}
.ws35c{word-spacing:-4.619089px;}
.ws34b{word-spacing:-4.567766px;}
.ws1bb{word-spacing:-4.510741px;}
.ws3f6{word-spacing:-4.413797px;}
.ws27b{word-spacing:-4.322556px;}
.ws46f{word-spacing:-4.290740px;}
.ws2a0{word-spacing:-4.254124px;}
.ws33e{word-spacing:-4.242719px;}
.ws338{word-spacing:-4.231314px;}
.wse6{word-spacing:-4.219910px;}
.ws2c5{word-spacing:-4.208505px;}
.ws10c{word-spacing:-4.185693px;}
.ws3b9{word-spacing:-4.179992px;}
.ws56{word-spacing:-4.140275px;}
.wsa0{word-spacing:-4.088750px;}
.ws223{word-spacing:-4.060237px;}
.ws2ff{word-spacing:-4.048831px;}
.wsee{word-spacing:-4.037427px;}
.ws4f2{word-spacing:-4.011302px;}
.ws2a8{word-spacing:-4.008913px;}
.ws384{word-spacing:-4.003212px;}
.ws3b2{word-spacing:-3.986103px;}
.ws4e3{word-spacing:-3.970738px;}
.ws4e{word-spacing:-3.923375px;}
.ws91{word-spacing:-3.860646px;}
.ws4f{word-spacing:-3.797919px;}
.ws3e6{word-spacing:-3.780811px;}
.ws8c{word-spacing:-3.740893px;}
.ws123{word-spacing:-3.706677px;}
.ws3b1{word-spacing:-3.604030px;}
.ws314{word-spacing:-3.535600px;}
.ws2cc{word-spacing:-3.495682px;}
.ws341{word-spacing:-3.444358px;}
.ws2f1{word-spacing:-3.313200px;}
.ws230{word-spacing:-3.278984px;}
.ws60{word-spacing:-3.261875px;}
.ws37e{word-spacing:-3.250471px;}
.ws9f{word-spacing:-3.216255px;}
.ws3e3{word-spacing:-3.204849px;}
.ws135{word-spacing:-3.199147px;}
.ws450{word-spacing:-3.191013px;}
.ws13d{word-spacing:-3.170634px;}
.ws2ae{word-spacing:-3.142121px;}
.ws2e8{word-spacing:-3.125015px;}
.ws1ad{word-spacing:-3.096501px;}
.ws7f{word-spacing:-3.085095px;}
.ws105{word-spacing:-2.953936px;}
.ws215{word-spacing:-2.760049px;}
.ws37f{word-spacing:-2.748644px;}
.ws121{word-spacing:-2.668807px;}
.ws388{word-spacing:-2.623186px;}
.ws3df{word-spacing:-2.617485px;}
.ws39b{word-spacing:-2.531946px;}
.ws228{word-spacing:-2.503432px;}
.ws13b{word-spacing:-2.389381px;}
.ws4d7{word-spacing:-2.388752px;}
.ws3a0{word-spacing:-2.377977px;}
.ws295{word-spacing:-2.366571px;}
.ws7a{word-spacing:-2.326652px;}
.ws32f{word-spacing:-2.258221px;}
.ws41d{word-spacing:-2.244526px;}
.ws48b{word-spacing:-2.240019px;}
.ws2e4{word-spacing:-2.189790px;}
.ws33f{word-spacing:-2.166981px;}
.ws33b{word-spacing:-2.030119px;}
.ws353{word-spacing:-1.973093px;}
.ws22c{word-spacing:-1.893256px;}
.ws42{word-spacing:-1.887555px;}
.ws2be{word-spacing:-1.830528px;}
.ws383{word-spacing:-1.807717px;}
.ws13a{word-spacing:-1.784908px;}
.ws122{word-spacing:-1.773503px;}
.ws30d{word-spacing:-1.767799px;}
.ws30e{word-spacing:-1.528292px;}
.ws80{word-spacing:-1.482671px;}
.ws55{word-spacing:-1.463373px;}
.ws1f5{word-spacing:-1.442753px;}
.ws212{word-spacing:-1.397133px;}
.ws2db{word-spacing:-1.259100px;}
.wsb1{word-spacing:-1.226055px;}
.ws2ed{word-spacing:-1.180435px;}
.ws138{word-spacing:-1.151920px;}
.ws118{word-spacing:-1.134814px;}
.ws3d5{word-spacing:-1.123409px;}
.ws30b{word-spacing:-1.123408px;}
.ws34f{word-spacing:-1.106301px;}
.ws127{word-spacing:-1.089192px;}
.ws6e{word-spacing:-1.077787px;}
.ws346{word-spacing:-1.060680px;}
.ws333{word-spacing:-1.032168px;}
.ws134{word-spacing:-1.026464px;}
.ws2af{word-spacing:-0.906710px;}
.ws31a{word-spacing:-0.895304px;}
.ws302{word-spacing:-0.741336px;}
.ws218{word-spacing:-0.644392px;}
.ws47{word-spacing:-0.610175px;}
.ws2b2{word-spacing:-0.598771px;}
.ws39c{word-spacing:-0.581662px;}
.wsd3{word-spacing:-0.507529px;}
.ws3dd{word-spacing:-0.461909px;}
.wsf4{word-spacing:-0.433396px;}
.ws3c8{word-spacing:-0.393478px;}
.ws27e{word-spacing:-0.364965px;}
.ws2e2{word-spacing:-0.347858px;}
.ws52{word-spacing:-0.342155px;}
.ws66{word-spacing:-0.330750px;}
.wsd2{word-spacing:-0.325048px;}
.ws211{word-spacing:-0.307939px;}
.ws255{word-spacing:-0.290635px;}
.ws139{word-spacing:-0.279427px;}
.ws245{word-spacing:-0.275338px;}
.ws2f3{word-spacing:-0.268021px;}
.ws1ca{word-spacing:-0.244745px;}
.ws24c{word-spacing:-0.239646px;}
.ws37c{word-spacing:-0.239508px;}
.ws32e{word-spacing:-0.153969px;}
.ws221{word-spacing:-0.148268px;}
.ws142{word-spacing:-0.105587px;}
.ws40e{word-spacing:-0.076620px;}
.ws100{word-spacing:-0.062729px;}
.ws9b{word-spacing:0.000000px;}
.ws79{word-spacing:0.022810px;}
.ws387{word-spacing:0.102646px;}
.ws24f{word-spacing:0.168262px;}
.ws2e1{word-spacing:0.188184px;}
.wsab{word-spacing:0.205294px;}
.ws2b5{word-spacing:0.233805px;}
.ws35b{word-spacing:0.250914px;}
.ws47a{word-spacing:0.279438px;}
.ws3f3{word-spacing:0.319345px;}
.ws2e6{word-spacing:0.330750px;}
.ws385{word-spacing:0.353560px;}
.ws3e5{word-spacing:0.364964px;}
.ws207{word-spacing:0.456208px;}
.ws37d{word-spacing:0.467612px;}
.ws39a{word-spacing:0.473314px;}
.ws45{word-spacing:0.547447px;}
.wsa8{word-spacing:0.547448px;}
.ws1b1{word-spacing:0.553151px;}
.ws39d{word-spacing:0.570257px;}
.ws2c4{word-spacing:0.581663px;}
.wsd1{word-spacing:0.593069px;}
.ws3b8{word-spacing:0.604473px;}
.ws136{word-spacing:0.644392px;}
.wsc7{word-spacing:0.695714px;}
.ws1be{word-spacing:0.712823px;}
.wsa3{word-spacing:0.826874px;}
.ws3cb{word-spacing:0.838279px;}
.ws28a{word-spacing:0.861090px;}
.ws2b0{word-spacing:0.969438px;}
.ws58{word-spacing:0.992249px;}
.ws306{word-spacing:0.997952px;}
.ws222{word-spacing:1.003655px;}
.wsd9{word-spacing:1.043572px;}
.ws6a{word-spacing:1.049276px;}
.ws96{word-spacing:1.072084px;}
.ws20f{word-spacing:1.083489px;}
.ws284{word-spacing:1.083492px;}
.wsda{word-spacing:1.094895px;}
.ws232{word-spacing:1.117704px;}
.ws2fd{word-spacing:1.140516px;}
.ws39f{word-spacing:1.243164px;}
.ws396{word-spacing:1.362918px;}
.ws7b{word-spacing:1.459860px;}
.ws363{word-spacing:1.476970px;}
.ws1bc{word-spacing:1.630936px;}
.ws1b5{word-spacing:1.665153px;}
.ws132{word-spacing:1.722179px;}
.wsaa{word-spacing:1.756394px;}
.ws67{word-spacing:1.784908px;}
.wse2{word-spacing:1.813421px;}
.ws1b8{word-spacing:1.830529px;}
.ws376{word-spacing:1.898960px;}
.ws95{word-spacing:2.007307px;}
.ws9c{word-spacing:2.281033px;}
.wsa7{word-spacing:2.320950px;}
.wsc2{word-spacing:2.349464px;}
.wsb7{word-spacing:2.400785px;}
.ws78{word-spacing:2.412191px;}
.ws36d{word-spacing:2.429300px;}
.wsc6{word-spacing:2.435002px;}
.ws280{word-spacing:2.463515px;}
.ws2ea{word-spacing:2.509136px;}
.ws3c7{word-spacing:2.554755px;}
.ws5a{word-spacing:2.577567px;}
.ws294{word-spacing:2.623186px;}
.ws30a{word-spacing:2.645996px;}
.ws63{word-spacing:2.925425px;}
.ws49{word-spacing:2.936827px;}
.ws3ef{word-spacing:2.959640px;}
.wse5{word-spacing:3.022366px;}
.ws288{word-spacing:3.050880px;}
.ws4d{word-spacing:3.221958px;}
.ws394{word-spacing:3.313200px;}
.ws62{word-spacing:3.353116px;}
.ws3e4{word-spacing:3.398739px;}
.ws373{word-spacing:3.558409px;}
.ws297{word-spacing:3.695271px;}
.wsa1{word-spacing:3.723785px;}
.ws110{word-spacing:3.815025px;}
.ws23b{word-spacing:3.894861px;}
.ws330{word-spacing:3.906268px;}
.ws10f{word-spacing:4.008913px;}
.ws319{word-spacing:4.054534px;}
.ws397{word-spacing:4.191397px;}
.ws301{word-spacing:4.214207px;}
.ws498{word-spacing:4.326796px;}
.ws130{word-spacing:4.402392px;}
.ws318{word-spacing:4.505038px;}
.ws4b{word-spacing:4.562065px;}
.ws271{word-spacing:4.767355px;}
.ws70{word-spacing:4.818681px;}
.ws3ce{word-spacing:4.824383px;}
.wsc1{word-spacing:4.892814px;}
.ws35f{word-spacing:5.069592px;}
.ws395{word-spacing:5.115214px;}
.ws317{word-spacing:5.314803px;}
.ws2b1{word-spacing:5.366128px;}
.ws3f1{word-spacing:5.383236px;}
.ws274{word-spacing:5.394640px;}
.wsbb{word-spacing:5.406046px;}
.ws13e{word-spacing:5.502990px;}
.ws120{word-spacing:5.508692px;}
.wsae{word-spacing:5.611339px;}
.ws33a{word-spacing:5.719688px;}
.ws3a1{word-spacing:5.805225px;}
.ws3d2{word-spacing:6.090355px;}
.ws21b{word-spacing:6.135977px;}
.ws2ad{word-spacing:6.204406px;}
.wsad{word-spacing:6.221513px;}
.ws229{word-spacing:6.369781px;}
.ws336{word-spacing:6.466724px;}
.ws51{word-spacing:6.518048px;}
.ws2fe{word-spacing:6.672017px;}
.ws39e{word-spacing:6.689127px;}
.ws6f{word-spacing:6.763261px;}
.ws12e{word-spacing:6.831690px;}
.ws299{word-spacing:6.837394px;}
.ws1b3{word-spacing:6.911526px;}
.ws499{word-spacing:7.130200px;}
.ws31e{word-spacing:7.163899px;}
.ws296{word-spacing:7.185249px;}
.ws23c{word-spacing:7.390545px;}
.ws2ee{word-spacing:7.487488px;}
.ws3d1{word-spacing:7.595837px;}
.ws12f{word-spacing:7.709887px;}
.ws32a{word-spacing:7.749806px;}
.ws3c9{word-spacing:7.778318px;}
.ws3f2{word-spacing:7.909480px;}
.ws322{word-spacing:8.015408px;}
.ws20e{word-spacing:8.223120px;}
.ws38c{word-spacing:8.245931px;}
.ws43{word-spacing:8.342875px;}
.ws1af{word-spacing:8.485440px;}
.ws2b7{word-spacing:8.827594px;}
.ws3cc{word-spacing:8.975860px;}
.ws286{word-spacing:9.124127px;}
.ws5f{word-spacing:9.369340px;}
.ws3da{word-spacing:9.586036px;}
.ws117{word-spacing:9.643063px;}
.ws217{word-spacing:9.665874px;}
.ws54{word-spacing:9.814139px;}
.wsd0{word-spacing:9.859762px;}
.ws315{word-spacing:9.979515px;}
.ws11f{word-spacing:10.059350px;}
.wsb4{word-spacing:10.201916px;}
.wsbe{word-spacing:10.213322px;}
.ws72{word-spacing:10.230429px;}
.ws2d9{word-spacing:10.333075px;}
.ws2dc{word-spacing:10.372994px;}
.wsc4{word-spacing:10.407208px;}
.ws2da{word-spacing:10.521259px;}
.ws352{word-spacing:10.589692px;}
.ws277{word-spacing:10.641014px;}
.ws22b{word-spacing:11.091517px;}
.ws10d{word-spacing:11.251190px;}
.ws37b{word-spacing:11.319623px;}
.ws114{word-spacing:11.359541px;}
.ws27a{word-spacing:11.519213px;}
.ws273{word-spacing:11.998228px;}
.ws112{word-spacing:12.152199px;}
.ws13c{word-spacing:12.431624px;}
.ws35d{word-spacing:12.568487px;}
.ws224{word-spacing:12.636919px;}
.ws40{word-spacing:13.081719px;}
.ws275{word-spacing:13.332632px;}
.wsb6{word-spacing:13.366846px;}
.ws73{word-spacing:13.446684px;}
.ws316{word-spacing:13.988430px;}
.ws38d{word-spacing:14.461744px;}
.ws49a{word-spacing:14.589419px;}
.ws36e{word-spacing:14.672739px;}
.wsbc{word-spacing:15.619366px;}
.ws23d{word-spacing:15.950117px;}
.ws34e{word-spacing:15.955820px;}
.ws2f4{word-spacing:16.223840px;}
.ws300{word-spacing:16.258056px;}
.ws2c2{word-spacing:16.782694px;}
.ws3d0{word-spacing:17.495517px;}
.ws30f{word-spacing:17.518327px;}
.ws3ca{word-spacing:17.712214px;}
.ws298{word-spacing:17.774942px;}
.wsd5{word-spacing:17.946019px;}
.ws115{word-spacing:19.200585px;}
.ws351{word-spacing:19.730927px;}
.ws337{word-spacing:19.993247px;}
.ws3cf{word-spacing:21.344757px;}
.wsb0{word-spacing:21.863693px;}
.ws113{word-spacing:22.211549px;}
.ws2e3{word-spacing:23.813973px;}
.wsdb{word-spacing:24.201750px;}
.ws4c{word-spacing:24.258776px;}
.ws1c0{word-spacing:24.310100px;}
.ws272{word-spacing:25.245323px;}
.ws94{word-spacing:25.724338px;}
.ws27d{word-spacing:26.117816px;}
.ws76{word-spacing:29.579284px;}
.ws141{word-spacing:33.691775px;}
.wscb{word-spacing:34.608961px;}
.ws85{word-spacing:36.678997px;}
.wsb5{word-spacing:78.712712px;}
.ws247{word-spacing:135.526551px;}
.ws251{word-spacing:135.526825px;}
.ws249{word-spacing:160.006178px;}
.ws268{word-spacing:197.446394px;}
.ws31f{word-spacing:314.086317px;}
.ws248{word-spacing:407.516705px;}
.ws24a{word-spacing:413.706721px;}
.ws24b{word-spacing:439.731302px;}
.ws1c9{word-spacing:636.977950px;}
.ws256{word-spacing:669.533349px;}
.ws259{word-spacing:764.438430px;}
._5b{margin-left:-36.176940px;}
._5c{margin-left:-35.036653px;}
._5a{margin-left:-34.010414px;}
._2c{margin-left:-32.584544px;}
._2d{margin-left:-31.307157px;}
._2a{margin-left:-30.020168px;}
._19{margin-left:-25.730042px;}
._1a{margin-left:-24.714981px;}
._59{margin-left:-22.719079px;}
._58{margin-left:-21.356162px;}
._49{margin-left:-20.170026px;}
._36{margin-left:-18.698759px;}
._31{margin-left:-16.862516px;}
._35{margin-left:-15.699216px;}
._8{margin-left:-13.691725px;}
._7{margin-left:-11.668220px;}
._6{margin-left:-10.477314px;}
._b{margin-left:-9.295348px;}
._32{margin-left:-8.219369px;}
._1d{margin-left:-6.232920px;}
._9{margin-left:-5.190631px;}
._a{margin-left:-3.676503px;}
._2{margin-left:-2.146584px;}
._0{margin-left:-1.042677px;}
._3{width:1.414470px;}
._e{width:2.975613px;}
._25{width:4.038561px;}
._f{width:5.768911px;}
._1{width:7.683902px;}
._24{width:9.632299px;}
._5{width:11.403758px;}
._4{width:12.596151px;}
._d{width:13.609364px;}
._1e{width:14.730823px;}
._20{width:16.431548px;}
._26{width:17.472061px;}
._1b{width:18.476130px;}
._11{width:20.284077px;}
._18{width:22.246750px;}
._27{width:23.364780px;}
._13{width:24.700289px;}
._1c{width:25.723465px;}
._23{width:27.007418px;}
._22{width:28.061523px;}
._c{width:29.564185px;}
._21{width:31.124220px;}
._14{width:32.556031px;}
._2f{width:33.912346px;}
._15{width:35.641520px;}
._33{width:36.822432px;}
._12{width:38.425293px;}
._17{width:39.558796px;}
._30{width:40.934843px;}
._10{width:43.281709px;}
._37{width:45.686543px;}
._2e{width:47.911309px;}
._57{width:49.760714px;}
._56{width:50.942458px;}
._2b{width:52.451872px;}
._16{width:53.862822px;}
._28{width:55.626899px;}
._1f{width:59.544628px;}
._47{width:60.917669px;}
._46{width:62.938467px;}
._34{width:64.505720px;}
._29{width:70.626473px;}
._41{width:87.568092px;}
._3f{width:123.780784px;}
._3d{width:126.337278px;}
._3a{width:146.028990px;}
._4b{width:177.557775px;}
._4a{width:180.297329px;}
._44{width:185.230513px;}
._3e{width:186.530730px;}
._48{width:214.436239px;}
._38{width:217.270315px;}
._43{width:219.347284px;}
._54{width:224.620550px;}
._4f{width:272.608006px;}
._52{width:341.720899px;}
._4d{width:345.500854px;}
._51{width:370.738511px;}
._4c{width:376.592003px;}
._53{width:381.604182px;}
._42{width:397.085410px;}
._55{width:408.635018px;}
._4e{width:426.047626px;}
._45{width:435.638875px;}
._39{width:439.478028px;}
._40{width:455.981921px;}
._50{width:459.883625px;}
._3c{width:489.736796px;}
._3b{width:818.565807px;}
.fc4{color:rgb(184,30,15);}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,103,175);}
.fsf{font-size:23.910600px;}
.fsc{font-size:29.887799px;}
.fs3{font-size:32.876999px;}
.fse{font-size:45.070799px;}
.fs9{font-size:47.820600px;}
.fs7{font-size:48.000000px;}
.fs1{font-size:50.988600px;}
.fsa{font-size:54.037199px;}
.fs6{font-size:57.025800px;}
.fs2{font-size:60.014997px;}
.fs0{font-size:65.992200px;}
.fs5{font-size:68.981398px;}
.fsb{font-size:69.040798px;}
.fs8{font-size:72.030000px;}
.fsd{font-size:91.241999px;}
.fs4{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y6e{bottom:47.092500px;}
.y322{bottom:86.307421px;}
.y6d{bottom:86.311829px;}
.ya6{bottom:86.314512px;}
.y228{bottom:86.315220px;}
.y38c{bottom:86.315672px;}
.y35a{bottom:86.320724px;}
.y2fa{bottom:86.321686px;}
.y4f{bottom:86.323210px;}
.y1f1{bottom:86.324610px;}
.y19a{bottom:86.324707px;}
.ydb{bottom:86.326038px;}
.y110{bottom:86.326232px;}
.y291{bottom:86.326996px;}
.y192{bottom:86.327559px;}
.y2ad{bottom:86.327745px;}
.y18a{bottom:86.330410px;}
.y2c4{bottom:86.330595px;}
.y367{bottom:86.331362px;}
.y31{bottom:86.333178px;}
.y46a{bottom:95.335388px;}
.y3dc{bottom:98.039040px;}
.y30{bottom:101.272838px;}
.y321{bottom:104.307610px;}
.y6c{bottom:104.312022px;}
.ya5{bottom:104.314706px;}
.y227{bottom:104.315414px;}
.y38b{bottom:104.315861px;}
.y359{bottom:104.320919px;}
.y2f9{bottom:104.321880px;}
.y4e{bottom:104.323404px;}
.y1f0{bottom:104.324810px;}
.y199{bottom:104.324901px;}
.yda{bottom:104.326232px;}
.y10f{bottom:104.326426px;}
.y290{bottom:104.327190px;}
.y191{bottom:104.327752px;}
.y2ac{bottom:104.327946px;}
.y1e5{bottom:104.329079px;}
.y189{bottom:104.330604px;}
.y2c3{bottom:104.330795px;}
.y366{bottom:104.331551px;}
.y420{bottom:104.526041px;}
.y469{bottom:108.835219px;}
.y3db{bottom:111.358588px;}
.y2f{bottom:116.212498px;}
.y41f{bottom:118.025872px;}
.y320{bottom:122.307816px;}
.y6b{bottom:122.312216px;}
.ya4{bottom:122.314900px;}
.y226{bottom:122.315609px;}
.y38a{bottom:122.316055px;}
.y358{bottom:122.321114px;}
.y2f8{bottom:122.322075px;}
.y4d{bottom:122.323597px;}
.y1ef{bottom:122.325005px;}
.y198{bottom:122.325095px;}
.yd9{bottom:122.326426px;}
.y10e{bottom:122.326619px;}
.y28f{bottom:122.327385px;}
.y190{bottom:122.327946px;}
.y2ab{bottom:122.328140px;}
.y1e4{bottom:122.329273px;}
.y188{bottom:122.330797px;}
.y2c2{bottom:122.330990px;}
.y365{bottom:122.331745px;}
.y468{bottom:122.335050px;}
.y25d{bottom:124.493523px;}
.y41e{bottom:131.345420px;}
.y467{bottom:135.654598px;}
.y3da{bottom:138.718816px;}
.y25c{bottom:139.433178px;}
.y31f{bottom:140.128384px;}
.y6a{bottom:140.132779px;}
.ya3{bottom:140.135462px;}
.y225{bottom:140.136177px;}
.y389{bottom:140.136635px;}
.y357{bottom:140.141682px;}
.y2f7{bottom:140.142632px;}
.y4c{bottom:140.144160px;}
.y1ee{bottom:140.145573px;}
.y197{bottom:140.145657px;}
.yd8{bottom:140.146988px;}
.y10d{bottom:140.147182px;}
.y28e{bottom:140.147942px;}
.y18f{bottom:140.148509px;}
.y2aa{bottom:140.148708px;}
.y1e3{bottom:140.149841px;}
.y187{bottom:140.151360px;}
.y2c1{bottom:140.151558px;}
.y364{bottom:140.152302px;}
.y41d{bottom:144.845251px;}
.y466{bottom:149.154429px;}
.y4d9{bottom:149.169583px;}
.y3d9{bottom:152.218647px;}
.y25b{bottom:154.372845px;}
.y31e{bottom:158.128578px;}
.y69{bottom:158.132973px;}
.ya2{bottom:158.135656px;}
.y224{bottom:158.136372px;}
.y388{bottom:158.136829px;}
.y356{bottom:158.141876px;}
.y2f6{bottom:158.142826px;}
.y4b{bottom:158.144354px;}
.y1ed{bottom:158.145767px;}
.y196{bottom:158.145851px;}
.y2e{bottom:158.146988px;}
.yd7{bottom:158.147182px;}
.y10c{bottom:158.147376px;}
.y28d{bottom:158.148136px;}
.y18e{bottom:158.148702px;}
.y2a9{bottom:158.148903px;}
.y1e2{bottom:158.150036px;}
.y186{bottom:158.151554px;}
.y2c0{bottom:158.151752px;}
.y363{bottom:158.152496px;}
.y41c{bottom:158.345082px;}
.y465{bottom:162.654260px;}
.y4d8{bottom:162.669414px;}
.y3d8{bottom:165.718478px;}
.y25a{bottom:169.312500px;}
.y41b{bottom:171.844913px;}
.y31d{bottom:176.128750px;}
.y68{bottom:176.133166px;}
.ya1{bottom:176.135850px;}
.y223{bottom:176.136555px;}
.y387{bottom:176.137001px;}
.y355{bottom:176.142071px;}
.y2f5{bottom:176.143021px;}
.y4a{bottom:176.144547px;}
.y1ec{bottom:176.145962px;}
.y195{bottom:176.146045px;}
.y2d{bottom:176.147182px;}
.yd6{bottom:176.147376px;}
.y10b{bottom:176.147569px;}
.y28c{bottom:176.148331px;}
.y18d{bottom:176.148896px;}
.y2a8{bottom:176.149075px;}
.y1e1{bottom:176.150230px;}
.y185{bottom:176.151747px;}
.y2bf{bottom:176.151947px;}
.y464{bottom:176.154091px;}
.y4d7{bottom:176.169246px;}
.y3d7{bottom:179.218309px;}
.y41a{bottom:185.164461px;}
.y463{bottom:189.473639px;}
.y4d6{bottom:189.488793px;}
.y259{bottom:189.652840px;}
.y362{bottom:191.092495px;}
.y3d6{bottom:192.537857px;}
.y31c{bottom:193.949318px;}
.y67{bottom:193.953729px;}
.ya0{bottom:193.956412px;}
.y222{bottom:193.957123px;}
.y386{bottom:193.957581px;}
.y354{bottom:193.962639px;}
.y2f4{bottom:193.963577px;}
.y49{bottom:193.965110px;}
.y1eb{bottom:193.966507px;}
.y194{bottom:193.966607px;}
.y2c{bottom:193.967744px;}
.yd5{bottom:193.967938px;}
.y10a{bottom:193.968132px;}
.y28b{bottom:193.968910px;}
.y18c{bottom:193.969459px;}
.y2a7{bottom:193.969643px;}
.y1e0{bottom:193.970787px;}
.y2be{bottom:193.972298px;}
.y184{bottom:193.972310px;}
.y360{bottom:197.034187px;}
.y419{bottom:198.664292px;}
.y462{bottom:202.973470px;}
.y4d5{bottom:202.988624px;}
.y258{bottom:204.592506px;}
.y3d5{bottom:206.037688px;}
.y31b{bottom:211.949524px;}
.y66{bottom:211.953923px;}
.y9f{bottom:211.956606px;}
.y221{bottom:211.957329px;}
.y385{bottom:211.957764px;}
.y353{bottom:211.962822px;}
.y2f3{bottom:211.963760px;}
.y48{bottom:211.965304px;}
.y1ea{bottom:211.966713px;}
.y193{bottom:211.966801px;}
.y2b{bottom:211.967938px;}
.yd4{bottom:211.968132px;}
.y109{bottom:211.968326px;}
.y28a{bottom:211.969070px;}
.y18b{bottom:211.969652px;}
.y2a6{bottom:211.969849px;}
.y1df{bottom:211.970993px;}
.y183{bottom:211.972504px;}
.y35f{bottom:211.973854px;}
.y418{bottom:212.164123px;}
.y461{bottom:216.473301px;}
.y4d4{bottom:216.488455px;}
.y3d4{bottom:219.537519px;}
.y257{bottom:224.392845px;}
.y417{bottom:225.483671px;}
.y35e{bottom:226.913521px;}
.y31a{bottom:229.770081px;}
.y65{bottom:229.774485px;}
.y9e{bottom:229.777168px;}
.y220{bottom:229.777885px;}
.y384{bottom:229.778320px;}
.y352{bottom:229.783379px;}
.y2f2{bottom:229.784340px;}
.y47{bottom:229.785866px;}
.y1e9{bottom:229.787270px;}
.y2a{bottom:229.788501px;}
.yd3{bottom:229.788694px;}
.y108{bottom:229.788888px;}
.y289{bottom:229.789650px;}
.y2a5{bottom:229.790405px;}
.y1de{bottom:229.791550px;}
.y460{bottom:229.792849px;}
.y4d3{bottom:229.808003px;}
.y3d3{bottom:232.857067px;}
.y416{bottom:238.983502px;}
.y256{bottom:239.332489px;}
.y35d{bottom:241.853165px;}
.y45f{bottom:243.292680px;}
.y4d2{bottom:243.307834px;}
.y3d2{bottom:246.356898px;}
.y319{bottom:247.770264px;}
.y64{bottom:247.774679px;}
.y9d{bottom:247.777362px;}
.y21f{bottom:247.778069px;}
.y383{bottom:247.778526px;}
.y351{bottom:247.783585px;}
.y2f1{bottom:247.784546px;}
.y46{bottom:247.786060px;}
.y1e8{bottom:247.787453px;}
.y29{bottom:247.788694px;}
.yd2{bottom:247.788888px;}
.y107{bottom:247.789082px;}
.y288{bottom:247.789856px;}
.y2a4{bottom:247.790588px;}
.y1dd{bottom:247.791756px;}
.y415{bottom:252.483333px;}
.y45e{bottom:256.792511px;}
.y35c{bottom:256.792854px;}
.y4d1{bottom:256.807665px;}
.y255{bottom:259.132507px;}
.y318{bottom:265.770470px;}
.y63{bottom:265.774873px;}
.y9c{bottom:265.777556px;}
.y21e{bottom:265.778275px;}
.y382{bottom:265.778709px;}
.y350{bottom:265.783768px;}
.y2f0{bottom:265.784729px;}
.y45{bottom:265.786254px;}
.y1e7{bottom:265.787659px;}
.y28{bottom:265.788888px;}
.yd1{bottom:265.789082px;}
.y106{bottom:265.789276px;}
.y287{bottom:265.790039px;}
.y2a3{bottom:265.790794px;}
.y1dc{bottom:265.791939px;}
.y414{bottom:265.983164px;}
.y4d0{bottom:270.307496px;}
.y45d{bottom:270.317890px;}
.y35b{bottom:271.732498px;}
.y3d1{bottom:273.356560px;}
.y161{bottom:278.218378px;}
.y254{bottom:278.932846px;}
.y413{bottom:279.302712px;}
.y172{bottom:279.662621px;}
.y182{bottom:279.666445px;}
.y317{bottom:283.591026px;}
.y62{bottom:283.595435px;}
.y9b{bottom:283.598118px;}
.y21d{bottom:283.598831px;}
.y381{bottom:283.599289px;}
.y34f{bottom:283.604347px;}
.y2ef{bottom:283.605286px;}
.y44{bottom:283.606816px;}
.y1e6{bottom:283.608215px;}
.y27{bottom:283.609451px;}
.yd0{bottom:283.609644px;}
.y105{bottom:283.609838px;}
.y286{bottom:283.610596px;}
.y2a2{bottom:283.611351px;}
.y1db{bottom:283.612495px;}
.y4cf{bottom:283.627044px;}
.y45c{bottom:283.637438px;}
.y3d0{bottom:286.676108px;}
.y412{bottom:292.802543px;}
.y160{bottom:293.158038px;}
.y253{bottom:293.872490px;}
.y171{bottom:294.602280px;}
.y181{bottom:294.606105px;}
.y4ce{bottom:297.126875px;}
.y45b{bottom:297.137269px;}
.y3cf{bottom:300.175939px;}
.y316{bottom:301.591232px;}
.y61{bottom:301.595629px;}
.y9a{bottom:301.598312px;}
.y21c{bottom:301.599037px;}
.y380{bottom:301.599472px;}
.y34e{bottom:301.604530px;}
.y2ee{bottom:301.605469px;}
.y43{bottom:301.607010px;}
.y26{bottom:301.609644px;}
.ycf{bottom:301.609838px;}
.y104{bottom:301.610032px;}
.y285{bottom:301.610779px;}
.y2a1{bottom:301.611557px;}
.y411{bottom:306.302374px;}
.y15f{bottom:308.097698px;}
.y170{bottom:309.541940px;}
.y180{bottom:309.545764px;}
.y4cd{bottom:310.626706px;}
.y45a{bottom:310.637100px;}
.y252{bottom:313.672852px;}
.y3ce{bottom:313.675770px;}
.y2bd{bottom:316.551819px;}
.y315{bottom:319.591415px;}
.y60{bottom:319.595823px;}
.y99{bottom:319.598506px;}
.y21b{bottom:319.599220px;}
.y37f{bottom:319.599678px;}
.y34d{bottom:319.604736px;}
.y2ed{bottom:319.605675px;}
.y42{bottom:319.607204px;}
.y25{bottom:319.609838px;}
.yce{bottom:319.610032px;}
.y103{bottom:319.610226px;}
.y284{bottom:319.610985px;}
.y2a0{bottom:319.611740px;}
.y410{bottom:319.621922px;}
.y15e{bottom:323.037358px;}
.y4cc{bottom:323.946254px;}
.y459{bottom:323.956648px;}
.y16f{bottom:324.481600px;}
.y17f{bottom:324.485424px;}
.y3cd{bottom:326.995318px;}
.y251{bottom:328.612495px;}
.y1da{bottom:330.952835px;}
.y40f{bottom:333.121753px;}
.y2bc{bottom:334.552505px;}
.y314{bottom:337.411972px;}
.y5f{bottom:337.416385px;}
.y98{bottom:337.419068px;}
.y21a{bottom:337.419777px;}
.y37e{bottom:337.420235px;}
.y34c{bottom:337.425293px;}
.y2ec{bottom:337.426231px;}
.y41{bottom:337.427766px;}
.y24{bottom:337.430401px;}
.ycd{bottom:337.430594px;}
.y102{bottom:337.430788px;}
.y283{bottom:337.431564px;}
.y29f{bottom:337.432297px;}
.y4cb{bottom:337.446085px;}
.y458{bottom:337.456479px;}
.y15d{bottom:338.156753px;}
.y16e{bottom:339.421260px;}
.y3cc{bottom:340.495149px;}
.y40e{bottom:346.621584px;}
.y250{bottom:348.412834px;}
.y4ca{bottom:350.945916px;}
.y457{bottom:350.956310px;}
.y1d9{bottom:352.012505px;}
.y15c{bottom:353.096412px;}
.y3cb{bottom:353.994980px;}
.y16d{bottom:354.360920px;}
.y17e{bottom:354.364744px;}
.y313{bottom:355.412178px;}
.y5e{bottom:355.416579px;}
.y97{bottom:355.419262px;}
.y219{bottom:355.419983px;}
.y37d{bottom:355.420418px;}
.y34b{bottom:355.425476px;}
.y2eb{bottom:355.426415px;}
.y40{bottom:355.427960px;}
.y23{bottom:355.430594px;}
.y29e{bottom:355.430786px;}
.ycc{bottom:355.430788px;}
.y101{bottom:355.430982px;}
.y282{bottom:355.431747px;}
.y3a0{bottom:355.432503px;}
.y40d{bottom:360.121415px;}
.y24f{bottom:363.352500px;}
.y4c9{bottom:364.445747px;}
.y456{bottom:364.456141px;}
.y1d8{bottom:366.232498px;}
.y493{bottom:366.772499px;}
.y3ca{bottom:367.494811px;}
.y15b{bottom:368.036072px;}
.y16c{bottom:369.300579px;}
.y17d{bottom:369.304404px;}
.y312{bottom:373.232735px;}
.y5d{bottom:373.237141px;}
.y96{bottom:373.239825px;}
.y218{bottom:373.240540px;}
.y37c{bottom:373.240974px;}
.y34a{bottom:373.246056px;}
.y2ea{bottom:373.246994px;}
.y3f{bottom:373.248523px;}
.y22{bottom:373.251157px;}
.ycb{bottom:373.251351px;}
.y29d{bottom:373.251366px;}
.y100{bottom:373.251544px;}
.y2bb{bottom:373.252121px;}
.y281{bottom:373.252304px;}
.y40c{bottom:373.440963px;}
.y4c8{bottom:377.765295px;}
.y455{bottom:377.775689px;}
.y492{bottom:380.272509px;}
.y15a{bottom:382.975732px;}
.y24e{bottom:384.052505px;}
.y16b{bottom:384.240239px;}
.y17c{bottom:384.244063px;}
.y1d7{bottom:386.032516px;}
.y40b{bottom:386.940794px;}
.y39f{bottom:387.292511px;}
.y311{bottom:391.232941px;}
.y5c{bottom:391.237335px;}
.y95{bottom:391.240018px;}
.y217{bottom:391.240723px;}
.y37b{bottom:391.241180px;}
.y349{bottom:391.246216px;}
.y2e9{bottom:391.247177px;}
.y3e{bottom:391.248716px;}
.y21{bottom:391.251351px;}
.yca{bottom:391.251544px;}
.y29c{bottom:391.251572px;}
.yff{bottom:391.251738px;}
.y2ba{bottom:391.252304px;}
.y280{bottom:391.252487px;}
.y4c7{bottom:391.265126px;}
.y454{bottom:391.275520px;}
.y3c9{bottom:394.855039px;}
.y1d4{bottom:397.013168px;}
.y159{bottom:397.915392px;}
.y16a{bottom:399.179899px;}
.y17b{bottom:399.183723px;}
.y491{bottom:399.712509px;}
.y40a{bottom:400.440625px;}
.y24d{bottom:402.413177px;}
.y4c6{bottom:404.764957px;}
.y453{bottom:404.775351px;}
.y1d6{bottom:405.832489px;}
.y3c8{bottom:408.174587px;}
.y310{bottom:409.233124px;}
.y5b{bottom:409.237529px;}
.y94{bottom:409.240212px;}
.y216{bottom:409.240906px;}
.y37a{bottom:409.241364px;}
.y348{bottom:409.246445px;}
.y2e8{bottom:409.247406px;}
.y3d{bottom:409.248910px;}
.y2b9{bottom:409.250244px;}
.y20{bottom:409.251544px;}
.yc9{bottom:409.251738px;}
.y29b{bottom:409.251755px;}
.yfe{bottom:409.251932px;}
.y1d3{bottom:411.952835px;}
.y158{bottom:412.855052px;}
.y409{bottom:413.760173px;}
.y169{bottom:414.119559px;}
.y17a{bottom:414.123383px;}
.y24c{bottom:417.352844px;}
.y490{bottom:417.712509px;}
.y4c5{bottom:418.264788px;}
.y452{bottom:418.275182px;}
.y3c7{bottom:421.674418px;}
.y27f{bottom:424.193207px;}
.y1d5{bottom:425.632507px;}
.y1d2{bottom:426.892502px;}
.y39e{bottom:427.046265px;}
.y30f{bottom:427.053680px;}
.y5a{bottom:427.058091px;}
.y93{bottom:427.060775px;}
.y215{bottom:427.061508px;}
.y379{bottom:427.061920px;}
.y347{bottom:427.067001px;}
.y2e7{bottom:427.067963px;}
.y3c{bottom:427.069473px;}
.y2b8{bottom:427.070801px;}
.y1f{bottom:427.072107px;}
.yc8{bottom:427.072301px;}
.y29a{bottom:427.072311px;}
.yfd{bottom:427.072495px;}
.y408{bottom:427.260004px;}
.y157{bottom:427.794711px;}
.y168{bottom:429.059219px;}
.y179{bottom:429.063043px;}
.y48f{bottom:431.032504px;}
.y4c4{bottom:431.584336px;}
.y451{bottom:431.594730px;}
.y24b{bottom:432.292511px;}
.y3c6{bottom:435.174249px;}
.y407{bottom:440.759835px;}
.y27e{bottom:442.012848px;}
.y156{bottom:442.734371px;}
.y167{bottom:443.998878px;}
.y178{bottom:444.002703px;}
.y39d{bottom:445.046448px;}
.y30e{bottom:445.053864px;}
.y59{bottom:445.058285px;}
.y92{bottom:445.060969px;}
.y214{bottom:445.061691px;}
.y378{bottom:445.062149px;}
.y346{bottom:445.067184px;}
.y2e6{bottom:445.068146px;}
.y3b{bottom:445.069666px;}
.y2b7{bottom:445.070984px;}
.y1e{bottom:445.072301px;}
.yc7{bottom:445.072495px;}
.yfc{bottom:445.073585px;}
.y4c3{bottom:445.084167px;}
.y450{bottom:445.094561px;}
.y1d1{bottom:445.432480px;}
.y3c5{bottom:448.493797px;}
.y48e{bottom:450.472504px;}
.y406{bottom:454.259666px;}
.y155{bottom:457.674031px;}
.y4c2{bottom:458.583998px;}
.y44f{bottom:458.594392px;}
.y166{bottom:458.938538px;}
.y177{bottom:458.942362px;}
.y3c4{bottom:461.993628px;}
.y39c{bottom:463.046631px;}
.y30d{bottom:463.054092px;}
.y58{bottom:463.058479px;}
.y91{bottom:463.061162px;}
.y213{bottom:463.061874px;}
.y377{bottom:463.062332px;}
.y345{bottom:463.067368px;}
.y2e5{bottom:463.068329px;}
.y3a{bottom:463.069860px;}
.y2b6{bottom:463.071167px;}
.y1d{bottom:463.072495px;}
.yfb{bottom:463.072958px;}
.y1d0{bottom:465.232498px;}
.y405{bottom:467.579213px;}
.y48d{bottom:468.472504px;}
.y4c1{bottom:471.903546px;}
.y44e{bottom:471.913940px;}
.y154{bottom:472.613691px;}
.y165{bottom:473.878198px;}
.y176{bottom:473.882022px;}
.y3c3{bottom:475.493459px;}
.y24a{bottom:476.034531px;}
.y1cd{bottom:476.213196px;}
.yc6{bottom:478.012174px;}
.y27d{bottom:478.012482px;}
.y299{bottom:478.012894px;}
.y39b{bottom:480.867187px;}
.y30c{bottom:480.874649px;}
.y57{bottom:480.879041px;}
.y90{bottom:480.881725px;}
.y212{bottom:480.882431px;}
.y376{bottom:480.882889px;}
.y344{bottom:480.887924px;}
.y2e4{bottom:480.888885px;}
.y39{bottom:480.890423px;}
.y2b5{bottom:480.891769px;}
.yfa{bottom:480.892502px;}
.y404{bottom:481.079045px;}
.y48c{bottom:481.972491px;}
.y1cf{bottom:485.032516px;}
.y4c0{bottom:485.403377px;}
.y44d{bottom:485.413771px;}
.y153{bottom:487.553351px;}
.y164{bottom:488.817858px;}
.y175{bottom:488.821682px;}
.y3c2{bottom:488.993290px;}
.y249{bottom:490.974197px;}
.y1cc{bottom:491.152863px;}
.y403{bottom:494.578876px;}
.y1c{bottom:495.832489px;}
.y39a{bottom:498.867416px;}
.y30b{bottom:498.874832px;}
.y56{bottom:498.879235px;}
.y8f{bottom:498.881919px;}
.y211{bottom:498.882614px;}
.y375{bottom:498.883072px;}
.y343{bottom:498.888153px;}
.y2e3{bottom:498.889069px;}
.y38{bottom:498.890616px;}
.y2b4{bottom:498.891953px;}
.y4bf{bottom:498.903208px;}
.y44c{bottom:498.913602px;}
.y48b{bottom:501.232498px;}
.y3c1{bottom:502.312838px;}
.y152{bottom:502.493010px;}
.y163{bottom:503.757518px;}
.y174{bottom:503.761342px;}
.y1ce{bottom:504.832489px;}
.y248{bottom:505.913864px;}
.y1cb{bottom:506.092484px;}
.y402{bottom:508.078707px;}
.y4be{bottom:512.403039px;}
.y44b{bottom:512.413433px;}
.yc5{bottom:513.832489px;}
.y48a{bottom:514.732485px;}
.y3c0{bottom:515.812669px;}
.y399{bottom:516.687973px;}
.y30a{bottom:516.695389px;}
.y55{bottom:516.699798px;}
.y27c{bottom:516.702438px;}
.y8e{bottom:516.702481px;}
.y210{bottom:516.703217px;}
.y374{bottom:516.703629px;}
.y342{bottom:516.708710px;}
.y2e2{bottom:516.709671px;}
.y37{bottom:516.711179px;}
.y2b3{bottom:516.711548px;}
.yf9{bottom:516.712122px;}
.y151{bottom:517.432670px;}
.y162{bottom:518.697177px;}
.y173{bottom:518.701002px;}
.y247{bottom:520.853531px;}
.y401{bottom:521.398254px;}
.y1ca{bottom:524.632507px;}
.y4bd{bottom:525.722587px;}
.y44a{bottom:525.732981px;}
.y3bf{bottom:529.312500px;}
.y150{bottom:533.992493px;}
.y489{bottom:534.172485px;}
.y398{bottom:534.688156px;}
.y309{bottom:534.695572px;}
.y54{bottom:534.699992px;}
.y27b{bottom:534.702621px;}
.y8d{bottom:534.702675px;}
.y20f{bottom:534.703400px;}
.y373{bottom:534.703812px;}
.y341{bottom:534.708893px;}
.y2e1{bottom:534.709854px;}
.y298{bottom:534.711365px;}
.y36{bottom:534.711373px;}
.y2b2{bottom:534.711731px;}
.yf8{bottom:534.712315px;}
.y400{bottom:534.898085px;}
.y246{bottom:535.793198px;}
.y4bc{bottom:539.222418px;}
.y449{bottom:539.232812px;}
.y1c9{bottom:544.432480px;}
.y1b{bottom:544.973158px;}
.y3ff{bottom:548.397916px;}
.y245{bottom:550.732864px;}
.y488{bottom:552.172485px;}
.yc4{bottom:552.680054px;}
.y397{bottom:552.688339px;}
.y308{bottom:552.695755px;}
.y53{bottom:552.700185px;}
.y27a{bottom:552.702805px;}
.y8c{bottom:552.702869px;}
.y20e{bottom:552.703583px;}
.y372{bottom:552.704041px;}
.y340{bottom:552.709076px;}
.y2e0{bottom:552.710037px;}
.y297{bottom:552.711548px;}
.y35{bottom:552.711566px;}
.y2b1{bottom:552.711960px;}
.yf7{bottom:552.712509px;}
.y4bb{bottom:552.722249px;}
.y448{bottom:552.732643px;}
.y1a{bottom:559.912818px;}
.y3fe{bottom:561.717464px;}
.y14f{bottom:564.051843px;}
.y244{bottom:565.672485px;}
.y4ba{bottom:566.041797px;}
.y447{bottom:566.052191px;}
.y3be{bottom:567.652496px;}
.y487{bottom:569.992493px;}
.y1c6{bottom:570.353165px;}
.yc3{bottom:570.500617px;}
.y396{bottom:570.508896px;}
.y307{bottom:570.516357px;}
.y52{bottom:570.520748px;}
.y279{bottom:570.523361px;}
.y8b{bottom:570.523431px;}
.y20d{bottom:570.524139px;}
.y371{bottom:570.524597px;}
.y2b0{bottom:570.525284px;}
.y33f{bottom:570.529633px;}
.yf6{bottom:570.529836px;}
.y2df{bottom:570.530594px;}
.y296{bottom:570.532104px;}
.y34{bottom:570.532129px;}
.y19{bottom:574.852478px;}
.y3fd{bottom:575.217295px;}
.y1c8{bottom:579.172485px;}
.y4b9{bottom:579.541628px;}
.y446{bottom:579.552022px;}
.y14e{bottom:582.052505px;}
.y1c5{bottom:585.292831px;}
.y243{bottom:586.012482px;}
.y486{bottom:587.992493px;}
.yc2{bottom:588.500811px;}
.y395{bottom:588.509079px;}
.y306{bottom:588.516541px;}
.y51{bottom:588.520942px;}
.y278{bottom:588.523590px;}
.y8a{bottom:588.523625px;}
.y20c{bottom:588.524323px;}
.y370{bottom:588.524780px;}
.y2af{bottom:588.525467px;}
.y33e{bottom:588.529861px;}
.yf5{bottom:588.530030px;}
.y2de{bottom:588.530777px;}
.y295{bottom:588.532288px;}
.y33{bottom:588.532323px;}
.y3fc{bottom:588.717126px;}
.y4b8{bottom:593.041459px;}
.y445{bottom:593.051853px;}
.y1c7{bottom:598.972504px;}
.y18{bottom:599.152496px;}
.y1c4{bottom:600.232498px;}
.y485{bottom:601.492480px;}
.y3fb{bottom:602.216957px;}
.y242{bottom:605.812500px;}
.yc1{bottom:606.501004px;}
.y394{bottom:606.509308px;}
.y305{bottom:606.516724px;}
.y50{bottom:606.521135px;}
.y277{bottom:606.523773px;}
.y89{bottom:606.523819px;}
.y20b{bottom:606.524550px;}
.y36f{bottom:606.524963px;}
.y2ae{bottom:606.525650px;}
.y33d{bottom:606.530045px;}
.yf4{bottom:606.530224px;}
.y2dd{bottom:606.531006px;}
.y32{bottom:606.532516px;}
.y4b7{bottom:606.541290px;}
.y444{bottom:606.551684px;}
.y3fa{bottom:615.536505px;}
.y3bd{bottom:616.976971px;}
.y4b6{bottom:619.860838px;}
.y443{bottom:619.871232px;}
.y484{bottom:620.932480px;}
.yc0{bottom:624.321567px;}
.y393{bottom:624.329865px;}
.y304{bottom:624.337280px;}
.y276{bottom:624.344330px;}
.y88{bottom:624.344381px;}
.y20a{bottom:624.345108px;}
.y36e{bottom:624.345520px;}
.y33c{bottom:624.350601px;}
.yf3{bottom:624.350786px;}
.y2dc{bottom:624.351562px;}
.y1c1{bottom:624.893188px;}
.y241{bottom:625.612518px;}
.y3f9{bottom:629.036336px;}
.y3bc{bottom:630.296519px;}
.y12c{bottom:632.818697px;}
.y4b5{bottom:633.360669px;}
.y442{bottom:633.371063px;}
.y1c3{bottom:633.712509px;}
.y483{bottom:634.252520px;}
.y13e{bottom:634.262949px;}
.y1c0{bottom:639.832855px;}
.ybf{bottom:642.321761px;}
.y392{bottom:642.330048px;}
.y303{bottom:642.337463px;}
.y275{bottom:642.344513px;}
.y87{bottom:642.344575px;}
.y209{bottom:642.345291px;}
.y36d{bottom:642.345749px;}
.y33b{bottom:642.350784px;}
.yf2{bottom:642.350980px;}
.y2db{bottom:642.351746px;}
.y3f8{bottom:642.536167px;}
.y294{bottom:643.973190px;}
.y240{bottom:645.412491px;}
.y4b4{bottom:646.860500px;}
.y441{bottom:646.870894px;}
.y12b{bottom:647.758357px;}
.y13d{bottom:649.202609px;}
.y1c2{bottom:653.512482px;}
.y482{bottom:653.692520px;}
.y1bf{bottom:654.772522px;}
.y3f7{bottom:655.855715px;}
.y3bb{bottom:657.656747px;}
.y293{bottom:658.912857px;}
.ybe{bottom:660.142323px;}
.y391{bottom:660.150604px;}
.y302{bottom:660.158066px;}
.y274{bottom:660.165070px;}
.y86{bottom:660.165137px;}
.y208{bottom:660.165848px;}
.y36c{bottom:660.166306px;}
.y33a{bottom:660.171341px;}
.yf1{bottom:660.171543px;}
.y2da{bottom:660.172302px;}
.y4b3{bottom:660.180048px;}
.y440{bottom:660.190441px;}
.y12a{bottom:662.698016px;}
.y13c{bottom:664.142268px;}
.y14d{bottom:664.147367px;}
.y23f{bottom:665.212509px;}
.y3f6{bottom:669.355546px;}
.y3ba{bottom:671.156578px;}
.y481{bottom:671.692520px;}
.y4b2{bottom:673.679879px;}
.y43f{bottom:673.690272px;}
.y292{bottom:673.852478px;}
.y129{bottom:677.637676px;}
.ybd{bottom:678.142517px;}
.y390{bottom:678.150787px;}
.y301{bottom:678.158249px;}
.y273{bottom:678.165298px;}
.y85{bottom:678.165331px;}
.y207{bottom:678.166031px;}
.y36b{bottom:678.166489px;}
.y339{bottom:678.171570px;}
.yf0{bottom:678.171736px;}
.y2d9{bottom:678.172485px;}
.y13b{bottom:679.081928px;}
.y14c{bottom:679.087027px;}
.y1bc{bottom:679.433167px;}
.y3f5{bottom:682.855377px;}
.y3b9{bottom:684.656409px;}
.y23e{bottom:685.012482px;}
.y480{bottom:685.192507px;}
.y4b1{bottom:687.179710px;}
.y43e{bottom:687.190104px;}
.y1be{bottom:688.252487px;}
.y128{bottom:692.577336px;}
.y13a{bottom:694.021588px;}
.y14b{bottom:694.026687px;}
.y1bb{bottom:694.372833px;}
.ybc{bottom:696.142711px;}
.y38f{bottom:696.151016px;}
.y272{bottom:696.165482px;}
.y84{bottom:696.165525px;}
.y206{bottom:696.166214px;}
.y36a{bottom:696.166672px;}
.y338{bottom:696.171753px;}
.yef{bottom:696.171930px;}
.y3f4{bottom:696.355208px;}
.y3b8{bottom:698.156240px;}
.y17{bottom:699.772537px;}
.y4b0{bottom:700.679541px;}
.y43d{bottom:700.689935px;}
.y47f{bottom:704.632507px;}
.y23d{bottom:704.812500px;}
.y127{bottom:707.696731px;}
.y1bd{bottom:708.052505px;}
.y139{bottom:708.961248px;}
.y14a{bottom:708.966347px;}
.y1ba{bottom:709.312500px;}
.y3f3{bottom:709.674756px;}
.y2d8{bottom:711.112518px;}
.y3b7{bottom:711.475788px;}
.ybb{bottom:713.963273px;}
.y38e{bottom:713.971573px;}
.y271{bottom:713.986038px;}
.y83{bottom:713.986087px;}
.y205{bottom:713.986816px;}
.y369{bottom:713.987228px;}
.y337{bottom:713.992310px;}
.yee{bottom:713.992493px;}
.y4af{bottom:713.999088px;}
.y43c{bottom:714.009482px;}
.y300{bottom:718.853531px;}
.y47e{bottom:722.452515px;}
.y126{bottom:722.636390px;}
.y3f2{bottom:723.174587px;}
.y138{bottom:723.900908px;}
.y23c{bottom:724.612518px;}
.y3b6{bottom:724.975619px;}
.y4ae{bottom:727.498919px;}
.y43b{bottom:727.509313px;}
.y1b9{bottom:727.852478px;}
.yba{bottom:731.963467px;}
.y38d{bottom:731.971756px;}
.y270{bottom:731.986221px;}
.y82{bottom:731.986281px;}
.y204{bottom:731.986999px;}
.y368{bottom:731.987457px;}
.y336{bottom:731.992493px;}
.yed{bottom:731.993120px;}
.y2ff{bottom:733.793198px;}
.y3f1{bottom:736.674418px;}
.y125{bottom:737.576050px;}
.y3b5{bottom:738.475450px;}
.y16{bottom:738.652537px;}
.y137{bottom:738.840567px;}
.y149{bottom:738.845666px;}
.y47d{bottom:740.452515px;}
.y4ad{bottom:740.998751px;}
.y43a{bottom:741.009144px;}
.y23b{bottom:744.412491px;}
.y1b8{bottom:747.652496px;}
.y2fe{bottom:748.732864px;}
.y335{bottom:749.956558px;}
.yb9{bottom:749.963661px;}
.y2d7{bottom:749.979767px;}
.y26f{bottom:749.986404px;}
.y81{bottom:749.986475px;}
.y203{bottom:749.987183px;}
.yec{bottom:749.992493px;}
.y3f0{bottom:749.993966px;}
.y3b4{bottom:751.794998px;}
.y124{bottom:752.515710px;}
.y136{bottom:753.780227px;}
.y148{bottom:753.785326px;}
.y47c{bottom:753.952456px;}
.y4ac{bottom:754.498582px;}
.y439{bottom:754.508975px;}
.y1b5{bottom:758.633194px;}
.y3ef{bottom:763.493797px;}
.y2fd{bottom:763.672485px;}
.y23a{bottom:764.212509px;}
.y3b3{bottom:765.294829px;}
.y1b7{bottom:767.452515px;}
.y123{bottom:767.455370px;}
.y334{bottom:767.777161px;}
.yb8{bottom:767.784223px;}
.y2d6{bottom:767.800323px;}
.y26e{bottom:767.807007px;}
.y80{bottom:767.807037px;}
.y202{bottom:767.807739px;}
.y4ab{bottom:767.818129px;}
.y438{bottom:767.828523px;}
.y135{bottom:768.719887px;}
.y147{bottom:768.724986px;}
.y47b{bottom:773.212463px;}
.y1b4{bottom:773.572815px;}
.y361{bottom:774.292511px;}
.y3ee{bottom:776.993628px;}
.y15{bottom:777.532537px;}
.y3b2{bottom:778.794660px;}
.y4aa{bottom:781.317960px;}
.y437{bottom:781.328354px;}
.y122{bottom:782.395030px;}
.yeb{bottom:782.752533px;}
.y134{bottom:783.659547px;}
.y146{bottom:783.664646px;}
.y239{bottom:784.012482px;}
.y333{bottom:785.777344px;}
.yb7{bottom:785.784417px;}
.y2d5{bottom:785.800507px;}
.y26d{bottom:785.807190px;}
.y7f{bottom:785.807231px;}
.y201{bottom:785.807922px;}
.y1b6{bottom:787.252533px;}
.y1b3{bottom:788.512482px;}
.y3ed{bottom:790.493459px;}
.y47a{bottom:791.212463px;}
.y3b1{bottom:792.294491px;}
.y4a9{bottom:794.817791px;}
.y436{bottom:794.828185px;}
.y121{bottom:797.334689px;}
.y133{bottom:798.599207px;}
.y145{bottom:798.604305px;}
.y332{bottom:803.597900px;}
.yb6{bottom:803.604979px;}
.y2d4{bottom:803.621063px;}
.y26c{bottom:803.627747px;}
.y7e{bottom:803.627794px;}
.y200{bottom:803.628479px;}
.y238{bottom:803.812500px;}
.y3ec{bottom:803.813007px;}
.y3b0{bottom:805.614039px;}
.y4a8{bottom:808.137339px;}
.y435{bottom:808.147733px;}
.y479{bottom:809.212463px;}
.y120{bottom:812.274349px;}
.y1b0{bottom:813.173218px;}
.y132{bottom:813.538866px;}
.y144{bottom:813.543965px;}
.y14{bottom:816.412537px;}
.y3eb{bottom:817.312838px;}
.y3af{bottom:819.113870px;}
.y331{bottom:821.598083px;}
.yb5{bottom:821.605173px;}
.yea{bottom:821.616699px;}
.y2d3{bottom:821.621246px;}
.y26b{bottom:821.627930px;}
.y7d{bottom:821.627988px;}
.y1ff{bottom:821.628662px;}
.y4a7{bottom:821.637170px;}
.y434{bottom:821.647564px;}
.y1b2{bottom:821.992493px;}
.y478{bottom:822.532504px;}
.y237{bottom:823.612518px;}
.y11f{bottom:827.214009px;}
.y1af{bottom:828.112885px;}
.y131{bottom:828.478526px;}
.y143{bottom:828.483625px;}
.y3ea{bottom:830.812669px;}
.y4a6{bottom:835.137001px;}
.y433{bottom:835.147395px;}
.y330{bottom:839.598267px;}
.yb4{bottom:839.605367px;}
.ye9{bottom:839.616893px;}
.y2d2{bottom:839.621429px;}
.y26a{bottom:839.628113px;}
.y7c{bottom:839.628181px;}
.y1fe{bottom:839.628937px;}
.y1b1{bottom:841.792511px;}
.y477{bottom:841.972504px;}
.y11e{bottom:842.153669px;}
.y1ae{bottom:843.052460px;}
.y236{bottom:843.412537px;}
.y130{bottom:843.418186px;}
.y142{bottom:843.423285px;}
.y3e9{bottom:844.312500px;}
.y3ae{bottom:846.474099px;}
.y4a5{bottom:848.636832px;}
.y432{bottom:848.647226px;}
.y11d{bottom:857.093329px;}
.y32f{bottom:857.418823px;}
.yb3{bottom:857.425929px;}
.ye8{bottom:857.437455px;}
.y2d1{bottom:857.441986px;}
.y269{bottom:857.448669px;}
.y7b{bottom:857.448744px;}
.y1fd{bottom:857.449493px;}
.y12f{bottom:858.357846px;}
.y141{bottom:858.362945px;}
.y476{bottom:859.972504px;}
.y3ad{bottom:859.973930px;}
.y1ad{bottom:861.592529px;}
.y4a4{bottom:861.956380px;}
.y431{bottom:861.966774px;}
.y235{bottom:863.212463px;}
.y11c{bottom:872.032988px;}
.y3e8{bottom:872.392456px;}
.y3ac{bottom:873.293477px;}
.y12e{bottom:873.297506px;}
.y140{bottom:873.302604px;}
.y475{bottom:873.472537px;}
.y32e{bottom:875.419006px;}
.yb2{bottom:875.426123px;}
.ye7{bottom:875.437649px;}
.y2d0{bottom:875.442169px;}
.y7a{bottom:875.448938px;}
.y268{bottom:875.448944px;}
.y1fc{bottom:875.449677px;}
.y4a3{bottom:875.456211px;}
.y430{bottom:875.466605px;}
.y13{bottom:876.892458px;}
.y1a9{bottom:877.433533px;}
.y1ac{bottom:881.392456px;}
.y234{bottom:883.012482px;}
.y3ab{bottom:886.793308px;}
.y11b{bottom:886.972648px;}
.y12d{bottom:888.237165px;}
.y13f{bottom:888.242264px;}
.y4a2{bottom:888.956042px;}
.y42f{bottom:888.966436px;}
.y1a8{bottom:892.373199px;}
.y474{bottom:892.912537px;}
.y32d{bottom:893.419189px;}
.yb1{bottom:893.426317px;}
.ye6{bottom:893.437843px;}
.y2cf{bottom:893.442444px;}
.y267{bottom:893.449036px;}
.y79{bottom:893.449131px;}
.y1fb{bottom:893.449860px;}
.y11{bottom:894.892458px;}
.y3aa{bottom:900.293139px;}
.y12{bottom:900.832672px;}
.y1ab{bottom:901.192474px;}
.y4a1{bottom:902.275590px;}
.y42e{bottom:902.285984px;}
.y233{bottom:902.812500px;}
.y11a{bottom:903.532471px;}
.y1a7{bottom:907.312866px;}
.y473{bottom:910.732544px;}
.y32c{bottom:911.239838px;}
.yb0{bottom:911.246879px;}
.ye5{bottom:911.258405px;}
.y2ce{bottom:911.263000px;}
.y266{bottom:911.269684px;}
.y78{bottom:911.269694px;}
.y1fa{bottom:911.270416px;}
.y10{bottom:912.892510px;}
.y3a9{bottom:913.792970px;}
.y4a0{bottom:915.775421px;}
.y42d{bottom:915.785815px;}
.y1aa{bottom:920.992493px;}
.y1a6{bottom:922.252533px;}
.y232{bottom:922.612518px;}
.y3a8{bottom:927.112518px;}
.y472{bottom:928.732544px;}
.y3e7{bottom:928.737806px;}
.y32b{bottom:929.240021px;}
.yaf{bottom:929.247073px;}
.ye4{bottom:929.258599px;}
.y2cd{bottom:929.263184px;}
.y265{bottom:929.269867px;}
.y77{bottom:929.269888px;}
.y1f9{bottom:929.270599px;}
.y49f{bottom:929.275252px;}
.y42c{bottom:929.285646px;}
.yf{bottom:930.712465px;}
.y22f{bottom:933.593170px;}
.y119{bottom:933.951853px;}
.y1a5{bottom:940.792511px;}
.y3e6{bottom:942.237637px;}
.y231{bottom:942.412537px;}
.y49e{bottom:942.775083px;}
.y42b{bottom:942.785477px;}
.y471{bottom:946.732544px;}
.y32a{bottom:947.060577px;}
.yae{bottom:947.067636px;}
.ye3{bottom:947.079162px;}
.y2cc{bottom:947.083740px;}
.y264{bottom:947.090424px;}
.y76{bottom:947.090450px;}
.y1f8{bottom:947.091156px;}
.y22e{bottom:948.532837px;}
.yd{bottom:948.712518px;}
.y118{bottom:951.952515px;}
.ye{bottom:954.652679px;}
.y3e5{bottom:955.737468px;}
.y49d{bottom:956.094631px;}
.y42a{bottom:956.105025px;}
.y1a4{bottom:960.592529px;}
.y230{bottom:962.212463px;}
.y22d{bottom:963.472504px;}
.y3a7{bottom:964.014164px;}
.y470{bottom:964.552460px;}
.y329{bottom:965.060760px;}
.yad{bottom:965.067830px;}
.ye2{bottom:965.079356px;}
.y2cb{bottom:965.083923px;}
.y263{bottom:965.090607px;}
.y75{bottom:965.090644px;}
.y1f7{bottom:965.091339px;}
.yb{bottom:966.532473px;}
.y1a1{bottom:966.713196px;}
.y49c{bottom:969.594462px;}
.y429{bottom:969.604856px;}
.yc{bottom:972.652679px;}
.y117{bottom:977.513640px;}
.y3a6{bottom:978.953824px;}
.y1a3{bottom:980.393097px;}
.y1a0{bottom:981.652863px;}
.y22c{bottom:982.012482px;}
.y46f{bottom:982.552460px;}
.y328{bottom:983.060944px;}
.yac{bottom:983.068023px;}
.ye1{bottom:983.079549px;}
.y2ca{bottom:983.084106px;}
.y262{bottom:983.090790px;}
.y74{bottom:983.090838px;}
.y1f6{bottom:983.091522px;}
.y49b{bottom:983.094293px;}
.y3e4{bottom:983.097696px;}
.y428{bottom:983.104687px;}
.ya{bottom:984.532473px;}
.y116{bottom:992.453299px;}
.y3a5{bottom:993.893484px;}
.y1a2{bottom:995.512482px;}
.y49a{bottom:996.413841px;}
.y3e3{bottom:996.417244px;}
.y427{bottom:996.424235px;}
.y19f{bottom:996.592529px;}
.y46e{bottom:1000.372467px;}
.y327{bottom:1000.881500px;}
.yab{bottom:1000.888586px;}
.ye0{bottom:1000.900112px;}
.y2c9{bottom:1000.904663px;}
.y261{bottom:1000.911346px;}
.y73{bottom:1000.911400px;}
.y1f5{bottom:1000.912079px;}
.y22b{bottom:1001.812500px;}
.y9{bottom:1002.532525px;}
.y115{bottom:1007.392959px;}
.y3a4{bottom:1008.833144px;}
.y499{bottom:1009.913672px;}
.y3e2{bottom:1009.917075px;}
.y426{bottom:1009.924066px;}
.y19e{bottom:1015.312500px;}
.y46d{bottom:1018.372467px;}
.y326{bottom:1018.881683px;}
.yaa{bottom:1018.888780px;}
.ydf{bottom:1018.900306px;}
.y2c8{bottom:1018.904846px;}
.y260{bottom:1018.911530px;}
.y72{bottom:1018.911594px;}
.y1f4{bottom:1018.912262px;}
.y8{bottom:1020.352480px;}
.y114{bottom:1022.332619px;}
.y2fc{bottom:1022.692474px;}
.y22a{bottom:1022.692841px;}
.y498{bottom:1023.413503px;}
.y3e1{bottom:1023.416906px;}
.y425{bottom:1023.423897px;}
.y3a3{bottom:1023.772804px;}
.y5{bottom:1029.353506px;}
.y19d{bottom:1035.112518px;}
.y46c{bottom:1036.372467px;}
.y325{bottom:1036.881866px;}
.ya9{bottom:1036.888973px;}
.yde{bottom:1036.900499px;}
.y2c7{bottom:1036.905029px;}
.y25f{bottom:1036.911713px;}
.y71{bottom:1036.911788px;}
.y1f3{bottom:1036.912537px;}
.y497{bottom:1036.913334px;}
.y3e0{bottom:1036.916737px;}
.y424{bottom:1036.923728px;}
.y229{bottom:1037.632507px;}
.y7{bottom:1038.352480px;}
.y3a2{bottom:1038.712463px;}
.y2fb{bottom:1041.053192px;}
.y4{bottom:1044.293166px;}
.y496{bottom:1050.232882px;}
.y3df{bottom:1050.236285px;}
.y423{bottom:1050.243276px;}
.y46b{bottom:1054.192474px;}
.y324{bottom:1054.702423px;}
.ya8{bottom:1054.709536px;}
.ydd{bottom:1054.721062px;}
.y2c6{bottom:1054.725586px;}
.y25e{bottom:1054.732269px;}
.y70{bottom:1054.732350px;}
.y19c{bottom:1055.992859px;}
.y6{bottom:1056.352532px;}
.y113{bottom:1058.512855px;}
.y3{bottom:1059.232826px;}
.y495{bottom:1063.732713px;}
.y3de{bottom:1063.736116px;}
.y422{bottom:1063.743107px;}
.y3a1{bottom:1064.632507px;}
.y1f2{bottom:1069.672485px;}
.y19b{bottom:1070.932526px;}
.y323{bottom:1072.702606px;}
.ya7{bottom:1072.709730px;}
.ydc{bottom:1072.721256px;}
.y2c5{bottom:1072.725861px;}
.y6f{bottom:1072.732544px;}
.y112{bottom:1073.452515px;}
.y2{bottom:1074.172485px;}
.y494{bottom:1077.232544px;}
.y3dd{bottom:1077.235947px;}
.y421{bottom:1077.242938px;}
.y1{bottom:1113.592529px;}
.y111{bottom:1113.772522px;}
.h10{height:21.369776px;}
.h1a{height:21.408000px;}
.h1c{height:22.127971px;}
.h7{height:23.507054px;}
.hd{height:36.456849px;}
.h19{height:37.003126px;}
.h1b{height:39.408000px;}
.h18{height:40.773447px;}
.h2{height:41.861641px;}
.ha{height:45.335511px;}
.h17{height:45.336335px;}
.h14{height:45.339356px;}
.h16{height:45.341553px;}
.h12{height:45.342377px;}
.h15{height:45.344483px;}
.h13{height:45.364442px;}
.h1{height:47.184423px;}
.h3{height:47.267552px;}
.h4{height:47.267702px;}
.h5{height:47.267911px;}
.h6{height:47.987882px;}
.hf{height:49.017803px;}
.h9{height:49.321699px;}
.he{height:49.364171px;}
.hb{height:51.501450px;}
.hc{height:56.633727px;}
.h11{height:56.737584px;}
.h8{height:102.960000px;}
.h0{height:1188.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xf{left:41.062500px;}
.x2{left:76.522499px;}
.x13{left:81.922503px;}
.x8{left:83.002499px;}
.x1{left:84.982498px;}
.x10{left:89.302500px;}
.xe{left:93.625955px;}
.x17{left:223.582489px;}
.x18{left:248.782494px;}
.x14{left:292.162491px;}
.x9{left:331.762505px;}
.x1a{left:334.462509px;}
.x3{left:335.902496px;}
.x19{left:337.702492px;}
.x11{left:340.221218px;}
.x1b{left:341.842506px;}
.xa{left:348.682059px;}
.x15{left:364.702492px;}
.xd{left:432.922485px;}
.x16{left:499.342484px;}
.x4{left:500.962509px;}
.x7{left:530.122513px;}
.x6{left:543.622513px;}
.xb{left:586.821797px;}
.x12{left:590.960208px;}
.xc{left:603.742779px;}
.x5{left:736.222504px;}
@media print{
.v2{vertical-align:-21.120768pt;}
.v4{vertical-align:-16.000000pt;}
.v3{vertical-align:-14.044271pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120443pt;}
.ls6d{letter-spacing:-3.137686pt;}
.lsf5{letter-spacing:-2.868959pt;}
.lsb3{letter-spacing:-2.574572pt;}
.lsae{letter-spacing:-2.108687pt;}
.ls16b{letter-spacing:-1.689400pt;}
.ls193{letter-spacing:-1.590498pt;}
.lsb1{letter-spacing:-1.485205pt;}
.ls167{letter-spacing:-1.480136pt;}
.ls166{letter-spacing:-1.469998pt;}
.lsb6{letter-spacing:-1.378504pt;}
.ls8e{letter-spacing:-1.130378pt;}
.lsba{letter-spacing:-1.069551pt;}
.ls8b{letter-spacing:-1.049275pt;}
.ls11a{letter-spacing:-0.951787pt;}
.ls197{letter-spacing:-0.949491pt;}
.lse7{letter-spacing:-0.933658pt;}
.ls127{letter-spacing:-0.927620pt;}
.ls13f{letter-spacing:-0.912413pt;}
.ls89{letter-spacing:-0.892137pt;}
.ls62{letter-spacing:-0.876930pt;}
.ls155{letter-spacing:-0.871861pt;}
.ls149{letter-spacing:-0.866792pt;}
.lsdf{letter-spacing:-0.861141pt;}
.ls142{letter-spacing:-0.851585pt;}
.lsea{letter-spacing:-0.847544pt;}
.ls168{letter-spacing:-0.846516pt;}
.ls64{letter-spacing:-0.836378pt;}
.lse1{letter-spacing:-0.834627pt;}
.ls14e{letter-spacing:-0.831309pt;}
.ls86{letter-spacing:-0.826240pt;}
.ls14b{letter-spacing:-0.826235pt;}
.ls93{letter-spacing:-0.805965pt;}
.ls151{letter-spacing:-0.790758pt;}
.ls13a{letter-spacing:-0.785689pt;}
.lseb{letter-spacing:-0.784091pt;}
.ls10b{letter-spacing:-0.770482pt;}
.ls1d8{letter-spacing:-0.768000pt;}
.ls1d3{letter-spacing:-0.766460pt;}
.ls16a{letter-spacing:-0.765413pt;}
.lsf7{letter-spacing:-0.752365pt;}
.ls97{letter-spacing:-0.750206pt;}
.ls10e{letter-spacing:-0.745137pt;}
.ls68{letter-spacing:-0.724861pt;}
.ls8c{letter-spacing:-0.684310pt;}
.ls164{letter-spacing:-0.679241pt;}
.ls1e9{letter-spacing:-0.624982pt;}
.ls8a{letter-spacing:-0.522103pt;}
.ls9a{letter-spacing:-0.511965pt;}
.ls133{letter-spacing:-0.501827pt;}
.lsb8{letter-spacing:-0.491689pt;}
.lsb4{letter-spacing:-0.456206pt;}
.ls136{letter-spacing:-0.451137pt;}
.ls6e{letter-spacing:-0.420724pt;}
.ls161{letter-spacing:-0.410586pt;}
.ls35{letter-spacing:-0.369556pt;}
.ls199{letter-spacing:-0.316497pt;}
.ls81{letter-spacing:-0.314276pt;}
.ls101{letter-spacing:-0.312730pt;}
.ls2a{letter-spacing:-0.309411pt;}
.ls137{letter-spacing:-0.304138pt;}
.ls10a{letter-spacing:-0.300452pt;}
.ls4f{letter-spacing:-0.299069pt;}
.ls107{letter-spacing:-0.294601pt;}
.lsef{letter-spacing:-0.294000pt;}
.ls1ed{letter-spacing:-0.276434pt;}
.ls1c2{letter-spacing:-0.272428pt;}
.lsd4{letter-spacing:-0.267407pt;}
.ls135{letter-spacing:-0.258517pt;}
.lsf6{letter-spacing:-0.258342pt;}
.lscc{letter-spacing:-0.257752pt;}
.ls15e{letter-spacing:-0.253810pt;}
.lsee{letter-spacing:-0.253448pt;}
.ls4d{letter-spacing:-0.249278pt;}
.ls1b8{letter-spacing:-0.248390pt;}
.ls16d{letter-spacing:-0.248379pt;}
.lsad{letter-spacing:-0.243310pt;}
.ls1c4{letter-spacing:-0.240378pt;}
.lse6{letter-spacing:-0.240213pt;}
.ls94{letter-spacing:-0.238241pt;}
.ls72{letter-spacing:-0.233172pt;}
.ls16c{letter-spacing:-0.228103pt;}
.lse5{letter-spacing:-0.226616pt;}
.lsfe{letter-spacing:-0.222084pt;}
.ls1a4{letter-spacing:-0.220346pt;}
.ls3d{letter-spacing:-0.217965pt;}
.lsfa{letter-spacing:-0.217551pt;}
.lse3{letter-spacing:-0.213019pt;}
.ls139{letter-spacing:-0.212896pt;}
.ls1aa{letter-spacing:-0.212334pt;}
.lsd3{letter-spacing:-0.208487pt;}
.ls1ea{letter-spacing:-0.208327pt;}
.ls46{letter-spacing:-0.207827pt;}
.ls10d{letter-spacing:-0.202758pt;}
.ls1bb{letter-spacing:-0.200315pt;}
.ls192{letter-spacing:-0.199443pt;}
.ls61{letter-spacing:-0.197689pt;}
.ls1b5{letter-spacing:-0.196308pt;}
.lsec{letter-spacing:-0.194890pt;}
.ls42{letter-spacing:-0.192620pt;}
.ls1ae{letter-spacing:-0.188296pt;}
.lsaf{letter-spacing:-0.187711pt;}
.ls39{letter-spacing:-0.187552pt;}
.lse2{letter-spacing:-0.185825pt;}
.ls128{letter-spacing:-0.183950pt;}
.ls5f{letter-spacing:-0.182483pt;}
.lsda{letter-spacing:-0.181293pt;}
.ls13c{letter-spacing:-0.177819pt;}
.ls4b{letter-spacing:-0.177414pt;}
.lse9{letter-spacing:-0.176760pt;}
.ls1b4{letter-spacing:-0.176277pt;}
.ls96{letter-spacing:-0.172345pt;}
.lsd9{letter-spacing:-0.172228pt;}
.lsb5{letter-spacing:-0.170113pt;}
.ls1bf{letter-spacing:-0.168264pt;}
.ls56{letter-spacing:-0.167276pt;}
.ls19f{letter-spacing:-0.164258pt;}
.lsde{letter-spacing:-0.163164pt;}
.ls91{letter-spacing:-0.162207pt;}
.ls1a8{letter-spacing:-0.160252pt;}
.ls4c{letter-spacing:-0.158631pt;}
.ls3c{letter-spacing:-0.157138pt;}
.ls1be{letter-spacing:-0.156245pt;}
.ls95{letter-spacing:-0.152069pt;}
.ls195{letter-spacing:-0.148233pt;}
.ls1a9{letter-spacing:-0.147160pt;}
.ls73{letter-spacing:-0.147000pt;}
.lscd{letter-spacing:-0.145034pt;}
.ls1b1{letter-spacing:-0.144227pt;}
.ls8d{letter-spacing:-0.141931pt;}
.ls1bc{letter-spacing:-0.140220pt;}
.ls20{letter-spacing:-0.138701pt;}
.ls38{letter-spacing:-0.136862pt;}
.ls1b9{letter-spacing:-0.136214pt;}
.ls3e{letter-spacing:-0.131793pt;}
.ls37{letter-spacing:-0.128765pt;}
.ls1ba{letter-spacing:-0.128201pt;}
.ls1d4{letter-spacing:-0.128000pt;}
.lsd7{letter-spacing:-0.126905pt;}
.ls47{letter-spacing:-0.126724pt;}
.ls198{letter-spacing:-0.124195pt;}
.ls1d{letter-spacing:-0.122697pt;}
.lsa0{letter-spacing:-0.122634pt;}
.ls82{letter-spacing:-0.121655pt;}
.ls1db{letter-spacing:-0.119467pt;}
.lse8{letter-spacing:-0.117840pt;}
.ls99{letter-spacing:-0.116586pt;}
.ls1b2{letter-spacing:-0.112176pt;}
.ls70{letter-spacing:-0.111517pt;}
.ls102{letter-spacing:-0.108776pt;}
.ls1eb{letter-spacing:-0.108170pt;}
.ls1a{letter-spacing:-0.106693pt;}
.ls76{letter-spacing:-0.106667pt;}
.ls90{letter-spacing:-0.106448pt;}
.ls121{letter-spacing:-0.104243pt;}
.ls33{letter-spacing:-0.102400pt;}
.ls48{letter-spacing:-0.101379pt;}
.ls1a2{letter-spacing:-0.100157pt;}
.ls103{letter-spacing:-0.099711pt;}
.ls1e3{letter-spacing:-0.098133pt;}
.ls4e{letter-spacing:-0.096310pt;}
.ls1bd{letter-spacing:-0.096151pt;}
.ls24{letter-spacing:-0.096024pt;}
.ls1e5{letter-spacing:-0.093867pt;}
.lsb9{letter-spacing:-0.091241pt;}
.ls1dd{letter-spacing:-0.089600pt;}
.ls1b0{letter-spacing:-0.088138pt;}
.ls10c{letter-spacing:-0.086172pt;}
.lsd6{letter-spacing:-0.086114pt;}
.ls75{letter-spacing:-0.085333pt;}
.ls1a0{letter-spacing:-0.084132pt;}
.lsa4{letter-spacing:-0.081103pt;}
.ls1e0{letter-spacing:-0.081067pt;}
.ls19a{letter-spacing:-0.080126pt;}
.ls26{letter-spacing:-0.080020pt;}
.ls120{letter-spacing:-0.077049pt;}
.ls1c3{letter-spacing:-0.076120pt;}
.ls44{letter-spacing:-0.076034pt;}
.ls1d6{letter-spacing:-0.072533pt;}
.ls1a5{letter-spacing:-0.072113pt;}
.lsa9{letter-spacing:-0.070965pt;}
.ls1f{letter-spacing:-0.069351pt;}
.ls1d5{letter-spacing:-0.068267pt;}
.ls1c1{letter-spacing:-0.068107pt;}
.lsdc{letter-spacing:-0.067985pt;}
.ls5d{letter-spacing:-0.065896pt;}
.ls1a3{letter-spacing:-0.064101pt;}
.ls2f{letter-spacing:-0.064016pt;}
.ls84{letter-spacing:-0.060828pt;}
.ls30{letter-spacing:-0.058681pt;}
.lsb0{letter-spacing:-0.058660pt;}
.ls1e7{letter-spacing:-0.056088pt;}
.lsa6{letter-spacing:-0.055759pt;}
.ls34{letter-spacing:-0.051200pt;}
.ls74{letter-spacing:-0.050690pt;}
.ls147{letter-spacing:-0.049856pt;}
.ls1a7{letter-spacing:-0.048076pt;}
.ls23{letter-spacing:-0.048012pt;}
.ls9d{letter-spacing:-0.045621pt;}
.lsf8{letter-spacing:-0.045323pt;}
.ls2e{letter-spacing:-0.042677pt;}
.lsff{letter-spacing:-0.040791pt;}
.lsa2{letter-spacing:-0.040552pt;}
.ls131{letter-spacing:-0.036790pt;}
.ls43{letter-spacing:-0.035483pt;}
.lsfc{letter-spacing:-0.031726pt;}
.lsa1{letter-spacing:-0.030658pt;}
.ls7c{letter-spacing:-0.030414pt;}
.ls17{letter-spacing:-0.029330pt;}
.ls36{letter-spacing:-0.027194pt;}
.ls32{letter-spacing:-0.026673pt;}
.ls9b{letter-spacing:-0.025345pt;}
.lsd0{letter-spacing:-0.022662pt;}
.ls40{letter-spacing:-0.020276pt;}
.ls138{letter-spacing:-0.018395pt;}
.lsfb{letter-spacing:-0.018129pt;}
.ls2c{letter-spacing:-0.016004pt;}
.ls9f{letter-spacing:-0.015207pt;}
.ls130{letter-spacing:-0.013597pt;}
.ls1c5{letter-spacing:-0.012019pt;}
.ls31{letter-spacing:-0.010669pt;}
.ls69{letter-spacing:-0.010138pt;}
.ls106{letter-spacing:-0.009065pt;}
.ls21{letter-spacing:-0.005335pt;}
.ls80{letter-spacing:-0.005069pt;}
.ls104{letter-spacing:-0.004532pt;}
.ls1b{letter-spacing:0.000000pt;}
.ls179{letter-spacing:0.004006pt;}
.ls1d0{letter-spacing:0.004267pt;}
.ls124{letter-spacing:0.004532pt;}
.ls57{letter-spacing:0.005069pt;}
.ls18d{letter-spacing:0.008013pt;}
.ls11b{letter-spacing:0.009065pt;}
.ls98{letter-spacing:0.010138pt;}
.ls11{letter-spacing:0.012800pt;}
.ls6a{letter-spacing:0.015207pt;}
.ls4{letter-spacing:0.016004pt;}
.ls1ac{letter-spacing:0.016025pt;}
.ls1cc{letter-spacing:0.017067pt;}
.lsd1{letter-spacing:0.018129pt;}
.ls7e{letter-spacing:0.020276pt;}
.lsf{letter-spacing:0.021339pt;}
.lsdd{letter-spacing:0.022662pt;}
.ls185{letter-spacing:0.024038pt;}
.ls12c{letter-spacing:0.024527pt;}
.lsb7{letter-spacing:0.025345pt;}
.ls1c9{letter-spacing:0.025600pt;}
.ls17a{letter-spacing:0.028044pt;}
.ls129{letter-spacing:0.030414pt;}
.ls12f{letter-spacing:0.030658pt;}
.ls11e{letter-spacing:0.031726pt;}
.ls177{letter-spacing:0.032050pt;}
.lsa3{letter-spacing:0.035483pt;}
.ls17f{letter-spacing:0.036057pt;}
.lsc5{letter-spacing:0.036259pt;}
.ls17b{letter-spacing:0.040063pt;}
.ls78{letter-spacing:0.040552pt;}
.ls100{letter-spacing:0.040791pt;}
.ls118{letter-spacing:0.042922pt;}
.ls170{letter-spacing:0.044069pt;}
.ls122{letter-spacing:0.045323pt;}
.ls154{letter-spacing:0.045621pt;}
.lsb{letter-spacing:0.048012pt;}
.ls19d{letter-spacing:0.048076pt;}
.lsf2{letter-spacing:0.049856pt;}
.ls50{letter-spacing:0.050690pt;}
.ls176{letter-spacing:0.052082pt;}
.ls9{letter-spacing:0.053347pt;}
.lse0{letter-spacing:0.055233pt;}
.ls188{letter-spacing:0.056088pt;}
.ls17c{letter-spacing:0.060094pt;}
.ls11f{letter-spacing:0.063452pt;}
.ls10{letter-spacing:0.064000pt;}
.ls18e{letter-spacing:0.064101pt;}
.ls175{letter-spacing:0.068107pt;}
.lsbb{letter-spacing:0.070392pt;}
.ls71{letter-spacing:0.070965pt;}
.ls171{letter-spacing:0.072113pt;}
.ls7a{letter-spacing:0.073580pt;}
.lsa7{letter-spacing:0.076034pt;}
.ls18f{letter-spacing:0.076120pt;}
.lsd2{letter-spacing:0.077049pt;}
.ls17e{letter-spacing:0.080126pt;}
.ls141{letter-spacing:0.081103pt;}
.ls173{letter-spacing:0.084132pt;}
.ls14{letter-spacing:0.086114pt;}
.ls92{letter-spacing:0.086172pt;}
.ls16e{letter-spacing:0.088138pt;}
.ls123{letter-spacing:0.090646pt;}
.lsf0{letter-spacing:0.091241pt;}
.lscb{letter-spacing:0.092054pt;}
.ls17d{letter-spacing:0.092145pt;}
.ls178{letter-spacing:0.096151pt;}
.ls65{letter-spacing:0.096310pt;}
.ls10f{letter-spacing:0.099711pt;}
.ls180{letter-spacing:0.100157pt;}
.ls126{letter-spacing:0.101379pt;}
.ls190{letter-spacing:0.104164pt;}
.lsf3{letter-spacing:0.106443pt;}
.ls85{letter-spacing:0.106448pt;}
.ls1d2{letter-spacing:0.106667pt;}
.ls18b{letter-spacing:0.108170pt;}
.ls117{letter-spacing:0.110370pt;}
.ls7f{letter-spacing:0.111517pt;}
.ls189{letter-spacing:0.112176pt;}
.ls1c7{letter-spacing:0.115200pt;}
.ls77{letter-spacing:0.115248pt;}
.ls18a{letter-spacing:0.116183pt;}
.ls160{letter-spacing:0.116502pt;}
.ls58{letter-spacing:0.116586pt;}
.lsce{letter-spacing:0.117840pt;}
.ls186{letter-spacing:0.120189pt;}
.ls41{letter-spacing:0.121655pt;}
.ls1cf{letter-spacing:0.123733pt;}
.ls194{letter-spacing:0.124195pt;}
.ls83{letter-spacing:0.126724pt;}
.ls11d{letter-spacing:0.126905pt;}
.ls1ce{letter-spacing:0.128000pt;}
.ls16f{letter-spacing:0.128201pt;}
.lsfd{letter-spacing:0.131437pt;}
.ls88{letter-spacing:0.131793pt;}
.ls174{letter-spacing:0.132208pt;}
.ls1cd{letter-spacing:0.132267pt;}
.lsc{letter-spacing:0.133367pt;}
.lscf{letter-spacing:0.135970pt;}
.ls181{letter-spacing:0.136214pt;}
.ls3b{letter-spacing:0.136862pt;}
.ls191{letter-spacing:0.140220pt;}
.lsc7{letter-spacing:0.140502pt;}
.ls1cb{letter-spacing:0.140800pt;}
.lsa5{letter-spacing:0.141931pt;}
.ls182{letter-spacing:0.144227pt;}
.ls1da{letter-spacing:0.144526pt;}
.ls4a{letter-spacing:0.147000pt;}
.ls196{letter-spacing:0.148233pt;}
.ls1c8{letter-spacing:0.149333pt;}
.lsc4{letter-spacing:0.149567pt;}
.ls66{letter-spacing:0.152069pt;}
.ls172{letter-spacing:0.152239pt;}
.ls1ab{letter-spacing:0.156245pt;}
.ls8f{letter-spacing:0.157138pt;}
.ls12{letter-spacing:0.158631pt;}
.ls1ad{letter-spacing:0.160252pt;}
.ls1ca{letter-spacing:0.162133pt;}
.ls67{letter-spacing:0.162207pt;}
.ls110{letter-spacing:0.163164pt;}
.ls187{letter-spacing:0.164258pt;}
.lsa{letter-spacing:0.166577pt;}
.ls45{letter-spacing:0.167276pt;}
.lsc1{letter-spacing:0.167696pt;}
.ls1b7{letter-spacing:0.168264pt;}
.ls1df{letter-spacing:0.170667pt;}
.lsc3{letter-spacing:0.172228pt;}
.ls184{letter-spacing:0.172271pt;}
.ls5a{letter-spacing:0.172345pt;}
.ls183{letter-spacing:0.176277pt;}
.lsf1{letter-spacing:0.176760pt;}
.ls49{letter-spacing:0.177414pt;}
.lsbd{letter-spacing:0.181293pt;}
.ls28{letter-spacing:0.181379pt;}
.ls53{letter-spacing:0.182483pt;}
.ls1d1{letter-spacing:0.183467pt;}
.ls1e8{letter-spacing:0.184289pt;}
.ls1{letter-spacing:0.185825pt;}
.lsb2{letter-spacing:0.187552pt;}
.lsbe{letter-spacing:0.190357pt;}
.ls1d9{letter-spacing:0.192000pt;}
.ls2b{letter-spacing:0.192048pt;}
.ls18c{letter-spacing:0.192302pt;}
.ls55{letter-spacing:0.192620pt;}
.lsbc{letter-spacing:0.194890pt;}
.ls1e2{letter-spacing:0.196267pt;}
.ls60{letter-spacing:0.197689pt;}
.lsc8{letter-spacing:0.199422pt;}
.ls63{letter-spacing:0.202758pt;}
.lsc6{letter-spacing:0.203954pt;}
.ls116{letter-spacing:0.205688pt;}
.ls9c{letter-spacing:0.207827pt;}
.ls19{letter-spacing:0.208052pt;}
.ls18{letter-spacing:0.208487pt;}
.ls59{letter-spacing:0.212896pt;}
.ls0{letter-spacing:0.213019pt;}
.ls15{letter-spacing:0.217551pt;}
.ls1d7{letter-spacing:0.217600pt;}
.ls52{letter-spacing:0.217965pt;}
.ls1e1{letter-spacing:0.221867pt;}
.lse4{letter-spacing:0.222084pt;}
.ls3a{letter-spacing:0.223034pt;}
.ls22{letter-spacing:0.224056pt;}
.ls1e4{letter-spacing:0.226133pt;}
.lsbf{letter-spacing:0.226616pt;}
.ls6c{letter-spacing:0.228103pt;}
.ls1dc{letter-spacing:0.230400pt;}
.lsc2{letter-spacing:0.231148pt;}
.ls54{letter-spacing:0.233172pt;}
.ls1de{letter-spacing:0.234667pt;}
.ls13{letter-spacing:0.235681pt;}
.ls3f{letter-spacing:0.238241pt;}
.ls2{letter-spacing:0.240213pt;}
.ls5c{letter-spacing:0.243310pt;}
.lsc0{letter-spacing:0.244745pt;}
.lsab{letter-spacing:0.248379pt;}
.lsd5{letter-spacing:0.249278pt;}
.ls1a1{letter-spacing:0.252396pt;}
.ls6b{letter-spacing:0.253448pt;}
.lsd8{letter-spacing:0.253810pt;}
.ls11c{letter-spacing:0.258342pt;}
.ls13d{letter-spacing:0.258517pt;}
.ls29{letter-spacing:0.261399pt;}
.lsdb{letter-spacing:0.262875pt;}
.ls14c{letter-spacing:0.263586pt;}
.ls162{letter-spacing:0.268655pt;}
.ls148{letter-spacing:0.271939pt;}
.ls25{letter-spacing:0.272068pt;}
.lsed{letter-spacing:0.273724pt;}
.ls105{letter-spacing:0.276472pt;}
.ls169{letter-spacing:0.278793pt;}
.ls145{letter-spacing:0.281004pt;}
.lsaa{letter-spacing:0.283862pt;}
.ls19e{letter-spacing:0.288453pt;}
.ls125{letter-spacing:0.288931pt;}
.ls6f{letter-spacing:0.294000pt;}
.ls134{letter-spacing:0.297805pt;}
.lsac{letter-spacing:0.304138pt;}
.ls146{letter-spacing:0.312730pt;}
.lsa8{letter-spacing:0.314276pt;}
.ls1e{letter-spacing:0.314745pt;}
.ls9e{letter-spacing:0.481551pt;}
.ls5b{letter-spacing:0.491689pt;}
.ls1e6{letter-spacing:0.532837pt;}
.ls5e{letter-spacing:0.598137pt;}
.ls1c{letter-spacing:0.741519pt;}
.lsf9{letter-spacing:0.747833pt;}
.ls14d{letter-spacing:0.912413pt;}
.ls109{letter-spacing:0.932689pt;}
.ls13e{letter-spacing:1.556171pt;}
.ls1b3{letter-spacing:4.454998pt;}
.ls157{letter-spacing:4.459781pt;}
.ls19b{letter-spacing:4.667332pt;}
.ls156{letter-spacing:4.754433pt;}
.ls12a{letter-spacing:4.911822pt;}
.ls1b6{letter-spacing:5.308339pt;}
.ls1a6{letter-spacing:5.829157pt;}
.ls113{letter-spacing:5.878405pt;}
.ls114{letter-spacing:5.878425pt;}
.ls1c6{letter-spacing:5.904413pt;}
.ls1af{letter-spacing:5.913289pt;}
.ls111{letter-spacing:5.914657pt;}
.ls112{letter-spacing:5.914698pt;}
.ls19c{letter-spacing:5.945339pt;}
.lsf4{letter-spacing:6.082628pt;}
.ls119{letter-spacing:6.310802pt;}
.ls115{letter-spacing:6.315848pt;}
.ls13b{letter-spacing:6.386890pt;}
.ls79{letter-spacing:6.503476pt;}
.ls1ec{letter-spacing:6.554296pt;}
.ls15c{letter-spacing:6.744079pt;}
.ls15b{letter-spacing:6.794002pt;}
.ls158{letter-spacing:7.061403pt;}
.ls15a{letter-spacing:7.088608pt;}
.ls159{letter-spacing:7.111260pt;}
.ls15d{letter-spacing:7.337876pt;}
.ls163{letter-spacing:7.471647pt;}
.ls140{letter-spacing:8.120474pt;}
.ls7b{letter-spacing:8.453783pt;}
.ls12d{letter-spacing:8.453945pt;}
.lsca{letter-spacing:8.751910pt;}
.lsc9{letter-spacing:8.770039pt;}
.ls12e{letter-spacing:9.093919pt;}
.ls3{letter-spacing:9.126462pt;}
.ls5{letter-spacing:9.766435pt;}
.ls27{letter-spacing:10.130532pt;}
.ls2d{letter-spacing:10.157205pt;}
.ls8{letter-spacing:10.406409pt;}
.ls7{letter-spacing:10.406572pt;}
.lsd{letter-spacing:10.407060pt;}
.lse{letter-spacing:11.046383pt;}
.ls6{letter-spacing:11.046546pt;}
.ls12b{letter-spacing:12.006099pt;}
.ls165{letter-spacing:13.017089pt;}
.ls15f{letter-spacing:13.927811pt;}
.ls108{letter-spacing:14.512432pt;}
.ls1c0{letter-spacing:15.548424pt;}
.ls16{letter-spacing:16.600844pt;}
.ls1ee{letter-spacing:16.778356pt;}
.ls132{letter-spacing:17.072257pt;}
.ls143{letter-spacing:17.244610pt;}
.ls144{letter-spacing:17.883282pt;}
.ls14f{letter-spacing:18.846393pt;}
.ls153{letter-spacing:20.326530pt;}
.ls51{letter-spacing:22.186838pt;}
.ls14a{letter-spacing:22.191907pt;}
.ls7d{letter-spacing:27.311556pt;}
.ls150{letter-spacing:28.274659pt;}
.ls87{letter-spacing:28.619348pt;}
.ls152{letter-spacing:30.935863pt;}
.ws386{word-spacing:-56.280663pt;}
.wsbd{word-spacing:-53.964148pt;}
.ws381{word-spacing:-53.619459pt;}
.ws9d{word-spacing:-52.656356pt;}
.ws339{word-spacing:-47.536707pt;}
.ws5b{word-spacing:-47.531638pt;}
.ws38b{word-spacing:-45.671330pt;}
.ws375{word-spacing:-44.191193pt;}
.ws2b8{word-spacing:-42.417057pt;}
.ws1fa{word-spacing:-39.857232pt;}
.ws36{word-spacing:-38.835200pt;}
.ws37{word-spacing:-38.553601pt;}
.ws35{word-spacing:-38.528000pt;}
.ws3c2{word-spacing:-38.361889pt;}
.ws38{word-spacing:-38.041601pt;}
.ws25{word-spacing:-36.830537pt;}
.ws4fd{word-spacing:-36.809822pt;}
.ws18{word-spacing:-36.803864pt;}
.ws497{word-spacing:-35.579890pt;}
.ws308{word-spacing:-33.465274pt;}
.ws3b5{word-spacing:-32.816447pt;}
.ws143{word-spacing:-31.431639pt;}
.ws144{word-spacing:-31.413510pt;}
.ws11c{word-spacing:-30.731979pt;}
.ws293{word-spacing:-30.701321pt;}
.ws2d6{word-spacing:-30.689057pt;}
.wsf8{word-spacing:-30.535765pt;}
.ws3f{word-spacing:-30.529634pt;}
.ws447{word-spacing:-30.511239pt;}
.ws2f8{word-spacing:-30.480580pt;}
.ws291{word-spacing:-30.474449pt;}
.ws146{word-spacing:-30.427047pt;}
.ws206{word-spacing:-30.357947pt;}
.ws29c{word-spacing:-30.256622pt;}
.ws4aa{word-spacing:-29.891939pt;}
.ws0{word-spacing:-29.300537pt;}
.ws11e{word-spacing:-29.271207pt;}
.ws11d{word-spacing:-29.142156pt;}
.ws403{word-spacing:-29.130424pt;}
.ws12c{word-spacing:-27.951363pt;}
.ws3f8{word-spacing:-27.640466pt;}
.ws4f4{word-spacing:-26.585762pt;}
.ws202{word-spacing:-26.277489pt;}
.ws423{word-spacing:-25.976805pt;}
.ws46b{word-spacing:-25.944755pt;}
.ws440{word-spacing:-25.860623pt;}
.ws21e{word-spacing:-25.826351pt;}
.ws88{word-spacing:-25.638800pt;}
.ws3d8{word-spacing:-25.577972pt;}
.ws2c0{word-spacing:-25.562765pt;}
.ws33d{word-spacing:-25.557696pt;}
.ws205{word-spacing:-25.547558pt;}
.ws6c{word-spacing:-25.537420pt;}
.ws3d6{word-spacing:-25.522214pt;}
.wsf9{word-spacing:-25.512076pt;}
.ws84{word-spacing:-25.507007pt;}
.wsfc{word-spacing:-25.476593pt;}
.ws1bf{word-spacing:-25.436041pt;}
.ws203{word-spacing:-25.360007pt;}
.ws46{word-spacing:-25.344800pt;}
.ws47d{word-spacing:-25.339805pt;}
.ws7d{word-spacing:-25.334662pt;}
.ws2aa{word-spacing:-25.314386pt;}
.wseb{word-spacing:-25.299179pt;}
.ws2bc{word-spacing:-25.289041pt;}
.ws10b{word-spacing:-25.273835pt;}
.ws38a{word-spacing:-25.263697pt;}
.ws29b{word-spacing:-25.248490pt;}
.ws307{word-spacing:-25.243421pt;}
.ws371{word-spacing:-25.218076pt;}
.ws2d0{word-spacing:-25.207938pt;}
.ws20b{word-spacing:-25.182593pt;}
.wsf6{word-spacing:-25.177524pt;}
.ws59{word-spacing:-25.045731pt;}
.ws2ce{word-spacing:-25.040662pt;}
.ws422{word-spacing:-24.698798pt;}
.ws478{word-spacing:-24.486464pt;}
.ws2b4{word-spacing:-24.016533pt;}
.ws2f7{word-spacing:-23.317216pt;}
.ws3a3{word-spacing:-22.938072pt;}
.ws16b{word-spacing:-22.924475pt;}
.ws17c{word-spacing:-22.906345pt;}
.ws262{word-spacing:-22.892748pt;}
.ws31b{word-spacing:-22.888216pt;}
.ws3a6{word-spacing:-22.883684pt;}
.ws3d{word-spacing:-22.879151pt;}
.ws57{word-spacing:-22.874619pt;}
.ws3a2{word-spacing:-22.865554pt;}
.ws149{word-spacing:-22.856490pt;}
.ws2{word-spacing:-22.847425pt;}
.ws14d{word-spacing:-22.842893pt;}
.ws3a8{word-spacing:-22.833828pt;}
.ws3a4{word-spacing:-22.829296pt;}
.ws243{word-spacing:-22.761311pt;}
.ws3c{word-spacing:-22.747714pt;}
.ws241{word-spacing:-22.652535pt;}
.ws242{word-spacing:-22.638938pt;}
.ws3e{word-spacing:-22.634406pt;}
.ws1db{word-spacing:-22.620809pt;}
.ws263{word-spacing:-22.584551pt;}
.ws1e0{word-spacing:-22.561889pt;}
.ws267{word-spacing:-22.557357pt;}
.ws1df{word-spacing:-22.552824pt;}
.ws1e9{word-spacing:-22.543760pt;}
.ws147{word-spacing:-22.516566pt;}
.ws406{word-spacing:-22.489372pt;}
.ws17f{word-spacing:-22.475775pt;}
.ws17a{word-spacing:-22.453113pt;}
.ws184{word-spacing:-22.448581pt;}
.ws1cf{word-spacing:-22.444049pt;}
.ws3ac{word-spacing:-22.421387pt;}
.ws3a7{word-spacing:-22.407790pt;}
.ws1c7{word-spacing:-22.403258pt;}
.ws1ef{word-spacing:-22.366999pt;}
.ws1dc{word-spacing:-22.348870pt;}
.ws1aa{word-spacing:-21.877509pt;}
.ws179{word-spacing:-21.800459pt;}
.ws244{word-spacing:-21.709813pt;}
.ws4b1{word-spacing:-21.550933pt;}
.ws4c3{word-spacing:-21.461333pt;}
.ws427{word-spacing:-20.319919pt;}
.ws47e{word-spacing:-20.223768pt;}
.ws449{word-spacing:-20.207743pt;}
.ws44c{word-spacing:-20.203737pt;}
.ws465{word-spacing:-20.195724pt;}
.ws45d{word-spacing:-20.191718pt;}
.ws453{word-spacing:-20.187712pt;}
.ws40d{word-spacing:-20.183705pt;}
.ws46a{word-spacing:-20.179699pt;}
.ws446{word-spacing:-20.175693pt;}
.ws49b{word-spacing:-20.171686pt;}
.ws442{word-spacing:-20.167680pt;}
.ws456{word-spacing:-20.163674pt;}
.ws43f{word-spacing:-20.159668pt;}
.ws443{word-spacing:-20.155661pt;}
.ws437{word-spacing:-20.151655pt;}
.ws429{word-spacing:-20.147649pt;}
.ws42c{word-spacing:-20.143642pt;}
.ws42f{word-spacing:-20.139636pt;}
.ws433{word-spacing:-20.135630pt;}
.ws441{word-spacing:-20.131623pt;}
.ws426{word-spacing:-20.127617pt;}
.ws439{word-spacing:-20.123611pt;}
.ws435{word-spacing:-20.119605pt;}
.ws424{word-spacing:-20.115598pt;}
.ws43b{word-spacing:-20.111592pt;}
.ws430{word-spacing:-20.103579pt;}
.ws428{word-spacing:-20.099573pt;}
.ws438{word-spacing:-20.091561pt;}
.ws471{word-spacing:-20.087554pt;}
.ws425{word-spacing:-20.079542pt;}
.ws434{word-spacing:-20.071529pt;}
.ws43e{word-spacing:-20.067523pt;}
.ws41c{word-spacing:-20.063517pt;}
.ws431{word-spacing:-20.059510pt;}
.ws45b{word-spacing:-20.055504pt;}
.ws42b{word-spacing:-20.035472pt;}
.ws444{word-spacing:-19.983391pt;}
.ws43a{word-spacing:-19.967365pt;}
.ws43d{word-spacing:-19.959353pt;}
.ws42e{word-spacing:-19.947334pt;}
.ws436{word-spacing:-19.931309pt;}
.ws4f1{word-spacing:-19.923296pt;}
.ws3c4{word-spacing:-19.921828pt;}
.ws42d{word-spacing:-19.907271pt;}
.ws485{word-spacing:-19.903265pt;}
.ws488{word-spacing:-19.891246pt;}
.ws495{word-spacing:-19.875221pt;}
.ws445{word-spacing:-19.871214pt;}
.ws42a{word-spacing:-19.867208pt;}
.ws496{word-spacing:-19.863202pt;}
.ws49d{word-spacing:-19.843170pt;}
.ws47c{word-spacing:-19.835158pt;}
.ws486{word-spacing:-19.831152pt;}
.ws44e{word-spacing:-19.819133pt;}
.ws43c{word-spacing:-19.811120pt;}
.ws4a0{word-spacing:-19.759038pt;}
.ws41f{word-spacing:-19.714969pt;}
.ws420{word-spacing:-19.388372pt;}
.ws2ac{word-spacing:-19.100183pt;}
.ws145{word-spacing:-19.000028pt;}
.ws17d{word-spacing:-18.926384pt;}
.ws292{word-spacing:-18.695492pt;}
.ws8{word-spacing:-18.244560pt;}
.wsb{word-spacing:-17.817786pt;}
.ws2a{word-spacing:-17.684419pt;}
.ws2c{word-spacing:-17.668415pt;}
.ws11{word-spacing:-17.636407pt;}
.wscd{word-spacing:-17.482843pt;}
.wsed{word-spacing:-17.386533pt;}
.ws361{word-spacing:-17.269947pt;}
.ws30{word-spacing:-17.262980pt;}
.ws17e{word-spacing:-17.214173pt;}
.ws362{word-spacing:-17.209119pt;}
.ws12b{word-spacing:-17.140374pt;}
.ws2b9{word-spacing:-17.122947pt;}
.ws1f4{word-spacing:-17.097602pt;}
.ws1a{word-spacing:-17.065598pt;}
.ws2d1{word-spacing:-17.062119pt;}
.ws29{word-spacing:-17.060263pt;}
.wsf5{word-spacing:-16.986085pt;}
.ws21{word-spacing:-16.980243pt;}
.ws309{word-spacing:-16.970878pt;}
.ws5{word-spacing:-16.964240pt;}
.ws1c4{word-spacing:-16.945533pt;}
.ws31{word-spacing:-16.942900pt;}
.ws21f{word-spacing:-16.925258pt;}
.ws1d{word-spacing:-16.905558pt;}
.ws354{word-spacing:-16.904981pt;}
.ws313{word-spacing:-16.844154pt;}
.wsb8{word-spacing:-16.803602pt;}
.ws8a{word-spacing:-16.732637pt;}
.ws27{word-spacing:-16.676167pt;}
.ws226{word-spacing:-16.656523pt;}
.ws119{word-spacing:-16.651534pt;}
.ws10{word-spacing:-16.649494pt;}
.ws370{word-spacing:-16.621120pt;}
.ws14{word-spacing:-16.617486pt;}
.ws6{word-spacing:-16.574808pt;}
.ws9{word-spacing:-16.542801pt;}
.wsf{word-spacing:-16.537466pt;}
.ws19{word-spacing:-16.532131pt;}
.ws2d{word-spacing:-16.494788pt;}
.ws1fb{word-spacing:-16.463982pt;}
.ws1b{word-spacing:-16.446776pt;}
.ws3b3{word-spacing:-16.443706pt;}
.wsef{word-spacing:-16.438638pt;}
.ws401{word-spacing:-16.433568pt;}
.ws2e{word-spacing:-16.425438pt;}
.ws17{word-spacing:-16.409434pt;}
.ws2a1{word-spacing:-16.393016pt;}
.ws400{word-spacing:-16.387948pt;}
.ws16{word-spacing:-16.382761pt;}
.ws2fa{word-spacing:-16.377810pt;}
.ws3eb{word-spacing:-16.367672pt;}
.ws1ff{word-spacing:-16.347396pt;}
.ws7{word-spacing:-16.329414pt;}
.ws39{word-spacing:-16.325004pt;}
.ws3d4{word-spacing:-16.311913pt;}
.ws2c6{word-spacing:-16.306844pt;}
.wsa{word-spacing:-16.297406pt;}
.ws12{word-spacing:-16.292071pt;}
.ws116{word-spacing:-16.291637pt;}
.ws38f{word-spacing:-16.256155pt;}
.ws23{word-spacing:-16.249394pt;}
.ws1f9{word-spacing:-16.246017pt;}
.ws1b0{word-spacing:-16.235879pt;}
.ws34{word-spacing:-16.212051pt;}
.ws22e{word-spacing:-16.205465pt;}
.ws2ab{word-spacing:-16.181503pt;}
.ws33c{word-spacing:-16.144638pt;}
.ws1ce{word-spacing:-16.130527pt;}
.ws2e5{word-spacing:-16.124361pt;}
.ws227{word-spacing:-16.104086pt;}
.ws216{word-spacing:-16.093948pt;}
.ws3fc{word-spacing:-16.043258pt;}
.wsc{word-spacing:-16.036007pt;}
.ws3ff{word-spacing:-16.033121pt;}
.ws305{word-spacing:-16.002707pt;}
.ws3fa{word-spacing:-15.952017pt;}
.ws3f9{word-spacing:-15.921603pt;}
.ws32{word-spacing:-15.881302pt;}
.ws1e7{word-spacing:-15.840459pt;}
.ws283{word-spacing:-15.835431pt;}
.ws2de{word-spacing:-15.826852pt;}
.ws2c9{word-spacing:-15.820224pt;}
.ws2d3{word-spacing:-15.810087pt;}
.ws2a5{word-spacing:-15.808732pt;}
.ws402{word-spacing:-15.799948pt;}
.ws240{word-spacing:-15.799668pt;}
.ws344{word-spacing:-15.794884pt;}
.ws3fb{word-spacing:-15.794879pt;}
.ws48{word-spacing:-15.789811pt;}
.ws3a5{word-spacing:-15.777006pt;}
.ws3aa{word-spacing:-15.767941pt;}
.ws192{word-spacing:-15.763409pt;}
.ws1c6{word-spacing:-15.758877pt;}
.ws15{word-spacing:-15.758605pt;}
.ws101{word-spacing:-15.739121pt;}
.ws196{word-spacing:-15.731683pt;}
.ws1a1{word-spacing:-15.718086pt;}
.ws160{word-spacing:-15.713554pt;}
.wsce{word-spacing:-15.698569pt;}
.ws2e7{word-spacing:-15.688431pt;}
.ws278{word-spacing:-15.673224pt;}
.wse0{word-spacing:-15.663086pt;}
.ws3a9{word-spacing:-15.650101pt;}
.ws378{word-spacing:-15.647879pt;}
.ws1de{word-spacing:-15.627439pt;}
.wse{word-spacing:-15.625238pt;}
.wscf{word-spacing:-15.617466pt;}
.wsf3{word-spacing:-15.566776pt;}
.ws75{word-spacing:-15.556638pt;}
.ws1f{word-spacing:-15.555887pt;}
.ws16f{word-spacing:-15.518664pt;}
.ws252{word-spacing:-15.491470pt;}
.ws1d1{word-spacing:-15.482405pt;}
.ws1e6{word-spacing:-15.473341pt;}
.ws3fd{word-spacing:-15.424845pt;}
.ws1eb{word-spacing:-15.409888pt;}
.ws170{word-spacing:-15.400823pt;}
.ws325{word-spacing:-15.396291pt;}
.ws26e{word-spacing:-15.387226pt;}
.ws26f{word-spacing:-15.378161pt;}
.ws25e{word-spacing:-15.341903pt;}
.ws1dd{word-spacing:-15.337371pt;}
.ws23f{word-spacing:-15.314709pt;}
.ws261{word-spacing:-15.305645pt;}
.ws16c{word-spacing:-15.296580pt;}
.ws404{word-spacing:-15.282983pt;}
.ws1e8{word-spacing:-15.273918pt;}
.ws188{word-spacing:-15.255789pt;}
.ws14f{word-spacing:-15.242192pt;}
.ws2d5{word-spacing:-15.237224pt;}
.ws1cd{word-spacing:-15.192336pt;}
.ws1ea{word-spacing:-15.187804pt;}
.ws1a4{word-spacing:-15.183272pt;}
.ws250{word-spacing:-15.165143pt;}
.ws191{word-spacing:-15.142481pt;}
.ws1d2{word-spacing:-15.137949pt;}
.ws2c8{word-spacing:-15.130845pt;}
.ws83{word-spacing:-15.125776pt;}
.wsea{word-spacing:-15.120708pt;}
.ws2ba{word-spacing:-15.100432pt;}
.ws1e3{word-spacing:-15.097158pt;}
.ws17b{word-spacing:-15.092626pt;}
.ws198{word-spacing:-15.088093pt;}
.ws374{word-spacing:-15.085225pt;}
.ws1a0{word-spacing:-15.069964pt;}
.ws1a7{word-spacing:-15.060899pt;}
.ws1e2{word-spacing:-15.047303pt;}
.ws320{word-spacing:-15.042770pt;}
.ws357{word-spacing:-15.034535pt;}
.ws2fc{word-spacing:-15.024398pt;}
.ws166{word-spacing:-15.006511pt;}
.ws182{word-spacing:-14.997447pt;}
.ws126{word-spacing:-14.993984pt;}
.ws133{word-spacing:-14.943294pt;}
.ws158{word-spacing:-14.943059pt;}
.ws98{word-spacing:-14.933156pt;}
.ws159{word-spacing:-14.915865pt;}
.ws26a{word-spacing:-14.906800pt;}
.ws26b{word-spacing:-14.897736pt;}
.ws246{word-spacing:-14.893203pt;}
.ws1bd{word-spacing:-14.877398pt;}
.ws167{word-spacing:-14.870542pt;}
.ws2bb{word-spacing:-14.841915pt;}
.ws1cc{word-spacing:-14.816154pt;}
.ws1d4{word-spacing:-14.807089pt;}
.ws281{word-spacing:-14.796294pt;}
.ws189{word-spacing:-14.770831pt;}
.ws3fe{word-spacing:-14.745605pt;}
.ws25d{word-spacing:-14.739105pt;}
.ws4d0{word-spacing:-14.728534pt;}
.ws3{word-spacing:-14.716443pt;}
.ws377{word-spacing:-14.710122pt;}
.ws16e{word-spacing:-14.702846pt;}
.ws4cb{word-spacing:-14.685867pt;}
.ws3e1{word-spacing:-14.684777pt;}
.ws1e1{word-spacing:-14.671120pt;}
.ws1a2{word-spacing:-14.666587pt;}
.ws1a8{word-spacing:-14.662055pt;}
.ws154{word-spacing:-14.657523pt;}
.wsc5{word-spacing:-14.649295pt;}
.ws1d5{word-spacing:-14.648458pt;}
.ws258{word-spacing:-14.634862pt;}
.ws171{word-spacing:-14.630329pt;}
.ws25c{word-spacing:-14.625796pt;}
.ws234{word-spacing:-14.618880pt;}
.ws321{word-spacing:-14.616732pt;}
.ws19b{word-spacing:-14.589538pt;}
.ws3b0{word-spacing:-14.568191pt;}
.ws181{word-spacing:-14.562344pt;}
.ws405{word-spacing:-14.544215pt;}
.ws1{word-spacing:-14.535150pt;}
.ws4cf{word-spacing:-14.532267pt;}
.ws289{word-spacing:-14.527639pt;}
.ws1e5{word-spacing:-14.521554pt;}
.ws326{word-spacing:-14.517021pt;}
.ws345{word-spacing:-14.497226pt;}
.ws1a5{word-spacing:-14.485295pt;}
.ws18e{word-spacing:-14.480762pt;}
.ws193{word-spacing:-14.471697pt;}
.ws161{word-spacing:-14.462633pt;}
.ws2a4{word-spacing:-14.458104pt;}
.ws4be{word-spacing:-14.455466pt;}
.ws24d{word-spacing:-14.449036pt;}
.ws4d1{word-spacing:-14.446933pt;}
.ws4c9{word-spacing:-14.438400pt;}
.ws168{word-spacing:-14.430907pt;}
.ws4d3{word-spacing:-14.429867pt;}
.ws2ec{word-spacing:-14.426260pt;}
.ws4{word-spacing:-14.421843pt;}
.wsec{word-spacing:-14.416123pt;}
.ws175{word-spacing:-14.412777pt;}
.ws26c{word-spacing:-14.399181pt;}
.ws6d{word-spacing:-14.395846pt;}
.ws4c1{word-spacing:-14.395733pt;}
.ws150{word-spacing:-14.394648pt;}
.ws1d3{word-spacing:-14.381051pt;}
.ws1d0{word-spacing:-14.376519pt;}
.ws1f7{word-spacing:-14.365433pt;}
.ws270{word-spacing:-14.362922pt;}
.ws4b7{word-spacing:-14.361600pt;}
.ws1a6{word-spacing:-14.358389pt;}
.ws3b7{word-spacing:-14.355295pt;}
.ws186{word-spacing:-14.349325pt;}
.ws4b3{word-spacing:-14.336000pt;}
.ws4b5{word-spacing:-14.318933pt;}
.ws1d7{word-spacing:-14.294937pt;}
.ws31c{word-spacing:-14.276808pt;}
.ws36b{word-spacing:-14.274191pt;}
.ws323{word-spacing:-14.267743pt;}
.ws269{word-spacing:-14.263211pt;}
.ws4c7{word-spacing:-14.250667pt;}
.ws19c{word-spacing:-14.249614pt;}
.ws1d8{word-spacing:-14.240549pt;}
.ws153{word-spacing:-14.231485pt;}
.ws1d9{word-spacing:-14.213356pt;}
.ws1d6{word-spacing:-14.204291pt;}
.ws1da{word-spacing:-14.190694pt;}
.ws140{word-spacing:-14.177881pt;}
.ws23e{word-spacing:-14.167743pt;}
.ws99{word-spacing:-14.165333pt;}
.ws53{word-spacing:-14.157605pt;}
.ws3d7{word-spacing:-14.152536pt;}
.ws151{word-spacing:-14.095515pt;}
.ws324{word-spacing:-14.086450pt;}
.ws265{word-spacing:-14.081918pt;}
.ws24e{word-spacing:-14.072854pt;}
.ws197{word-spacing:-14.059257pt;}
.ws2a9{word-spacing:-14.051157pt;}
.ws4d2{word-spacing:-14.045867pt;}
.ws3ab{word-spacing:-14.045660pt;}
.ws3b{word-spacing:-14.032062pt;}
.ws257{word-spacing:-14.027530pt;}
.ws14e{word-spacing:-14.018465pt;}
.ws25b{word-spacing:-14.013933pt;}
.ws29f{word-spacing:-14.010606pt;}
.ws4c5{word-spacing:-14.003200pt;}
.ws1a9{word-spacing:-13.986739pt;}
.ws1cb{word-spacing:-13.982207pt;}
.ws152{word-spacing:-13.968610pt;}
.ws26d{word-spacing:-13.955042pt;}
.ws3af{word-spacing:-13.949778pt;}
.ws194{word-spacing:-13.927819pt;}
.ws392{word-spacing:-13.924433pt;}
.ws18b{word-spacing:-13.909690pt;}
.ws279{word-spacing:-13.909226pt;}
.ws4bc{word-spacing:-13.900800pt;}
.ws254{word-spacing:-13.864367pt;}
.ws328{word-spacing:-13.855327pt;}
.ws19a{word-spacing:-13.855302pt;}
.ws451{word-spacing:-13.853762pt;}
.ws176{word-spacing:-13.850770pt;}
.ws4af{word-spacing:-13.849600pt;}
.ws2ca{word-spacing:-13.848399pt;}
.ws190{word-spacing:-13.841705pt;}
.ws415{word-spacing:-13.829724pt;}
.ws367{word-spacing:-13.828123pt;}
.ws4c2{word-spacing:-13.824000pt;}
.ws469{word-spacing:-13.821712pt;}
.ws1ee{word-spacing:-13.814511pt;}
.ws4d5{word-spacing:-13.806933pt;}
.ws4cc{word-spacing:-13.798400pt;}
.ws18a{word-spacing:-13.791850pt;}
.ws15e{word-spacing:-13.778253pt;}
.ws187{word-spacing:-13.764656pt;}
.ws4cd{word-spacing:-13.764267pt;}
.ws2d7{word-spacing:-13.757158pt;}
.ws19d{word-spacing:-13.755591pt;}
.ws4c0{word-spacing:-13.738667pt;}
.ws4f6{word-spacing:-13.733573pt;}
.wsc9{word-spacing:-13.731812pt;}
.ws183{word-spacing:-13.728398pt;}
.ws4fe{word-spacing:-13.725560pt;}
.ws48d{word-spacing:-13.713542pt;}
.ws169{word-spacing:-13.710268pt;}
.ws2bf{word-spacing:-13.706468pt;}
.ws457{word-spacing:-13.701523pt;}
.ws4b2{word-spacing:-13.678933pt;}
.ws2c3{word-spacing:-13.676054pt;}
.ws481{word-spacing:-13.673479pt;}
.ws4ae{word-spacing:-13.653333pt;}
.ws165{word-spacing:-13.646816pt;}
.ws45a{word-spacing:-13.641428pt;}
.ws264{word-spacing:-13.637751pt;}
.ws4bb{word-spacing:-13.636267pt;}
.ws4bd{word-spacing:-13.619200pt;}
.ws15c{word-spacing:-13.610557pt;}
.ws15d{word-spacing:-13.592427pt;}
.ws472{word-spacing:-13.589346pt;}
.ws1c8{word-spacing:-13.569766pt;}
.ws4b6{word-spacing:-13.568000pt;}
.ws4ca{word-spacing:-13.533867pt;}
.ws4a4{word-spacing:-13.533259pt;}
.ws4b0{word-spacing:-13.491200pt;}
.ws16d{word-spacing:-13.479120pt;}
.ws162{word-spacing:-13.474588pt;}
.ws16a{word-spacing:-13.460990pt;}
.ws172{word-spacing:-13.447393pt;}
.ws4a5{word-spacing:-13.421082pt;}
.ws45c{word-spacing:-13.417076pt;}
.ws4ad{word-spacing:-13.414400pt;}
.ws14a{word-spacing:-13.411135pt;}
.ws1e4{word-spacing:-13.406603pt;}
.wsc8{word-spacing:-13.402330pt;}
.ws18f{word-spacing:-13.388473pt;}
.ws1ed{word-spacing:-13.356747pt;}
.ws4c6{word-spacing:-13.354667pt;}
.ws409{word-spacing:-13.348969pt;}
.ws1a3{word-spacing:-13.347683pt;}
.ws1f0{word-spacing:-13.311089pt;}
.ws4dc{word-spacing:-13.304900pt;}
.ws414{word-spacing:-13.288874pt;}
.ws1ec{word-spacing:-13.283466pt;}
.ws41b{word-spacing:-13.272849pt;}
.ws40a{word-spacing:-13.240799pt;}
.wsaf{word-spacing:-13.240123pt;}
.ws3bc{word-spacing:-13.229986pt;}
.ws15f{word-spacing:-13.225310pt;}
.ws41a{word-spacing:-13.220768pt;}
.ws418{word-spacing:-13.192723pt;}
.ws411{word-spacing:-13.184711pt;}
.ws4fa{word-spacing:-13.164679pt;}
.ws4ce{word-spacing:-13.158400pt;}
.ws40f{word-spacing:-13.148655pt;}
.ws410{word-spacing:-13.140642pt;}
.ws25a{word-spacing:-13.139196pt;}
.ws285{word-spacing:-13.138744pt;}
.ws1ac{word-spacing:-13.134664pt;}
.ws3ee{word-spacing:-13.133675pt;}
.ws28e{word-spacing:-13.123538pt;}
.ws4ba{word-spacing:-13.115733pt;}
.ws195{word-spacing:-13.112002pt;}
.ws3a{word-spacing:-13.107469pt;}
.ws4ab{word-spacing:-13.098667pt;}
.ws3db{word-spacing:-13.098193pt;}
.ws137{word-spacing:-13.077917pt;}
.ws3bd{word-spacing:-13.047503pt;}
.ws34a{word-spacing:-13.037365pt;}
.ws459{word-spacing:-13.036478pt;}
.ws1ab{word-spacing:-13.025887pt;}
.ws9a{word-spacing:-13.013333pt;}
.ws413{word-spacing:-13.012440pt;}
.ws19e{word-spacing:-13.012290pt;}
.ws4a2{word-spacing:-13.000422pt;}
.ws416{word-spacing:-12.996415pt;}
.ws253{word-spacing:-12.971500pt;}
.ws47f{word-spacing:-12.968371pt;}
.ws15a{word-spacing:-12.966968pt;}
.ws4c4{word-spacing:-12.962133pt;}
.ws2b6{word-spacing:-12.946124pt;}
.ws18c{word-spacing:-12.930709pt;}
.ws4d4{word-spacing:-12.928000pt;}
.ws148{word-spacing:-12.912580pt;}
.ws4c8{word-spacing:-12.893867pt;}
.ws4e4{word-spacing:-12.888245pt;}
.ws417{word-spacing:-12.836164pt;}
.ws225{word-spacing:-12.824469pt;}
.ws342{word-spacing:-12.804193pt;}
.ws4eb{word-spacing:-12.780075pt;}
.ws452{word-spacing:-12.776069pt;}
.ws483{word-spacing:-12.772063pt;}
.ws102{word-spacing:-12.738297pt;}
.ws327{word-spacing:-12.735819pt;}
.ws236{word-spacing:-12.733227pt;}
.ws19f{word-spacing:-12.731287pt;}
.ws18d{word-spacing:-12.717690pt;}
.ws412{word-spacing:-12.711968pt;}
.ws408{word-spacing:-12.707962pt;}
.ws21a{word-spacing:-12.657193pt;}
.ws4a8{word-spacing:-12.647867pt;}
.ws185{word-spacing:-12.613447pt;}
.ws1f6{word-spacing:-12.611572pt;}
.ws303{word-spacing:-12.606503pt;}
.ws22a{word-spacing:-12.601434pt;}
.ws8f{word-spacing:-12.596365pt;}
.ws4e0{word-spacing:-12.587774pt;}
.ws260{word-spacing:-12.581720pt;}
.ws4ac{word-spacing:-12.578133pt;}
.ws174{word-spacing:-12.568123pt;}
.ws45f{word-spacing:-12.567742pt;}
.ws1ae{word-spacing:-12.555815pt;}
.ws4e8{word-spacing:-12.547711pt;}
.ws4b9{word-spacing:-12.544000pt;}
.ws4bf{word-spacing:-12.535466pt;}
.ws4dd{word-spacing:-12.531685pt;}
.ws237{word-spacing:-12.510194pt;}
.ws44b{word-spacing:-12.495629pt;}
.ws28c{word-spacing:-12.494987pt;}
.ws49c{word-spacing:-12.475597pt;}
.ws3e7{word-spacing:-12.474710pt;}
.ws349{word-spacing:-12.464572pt;}
.ws40c{word-spacing:-12.447553pt;}
.wsf2{word-spacing:-12.424021pt;}
.ws419{word-spacing:-12.407490pt;}
.wsfa{word-spacing:-12.393607pt;}
.ws3e2{word-spacing:-12.388539pt;}
.ws77{word-spacing:-12.347987pt;}
.ws204{word-spacing:-12.342918pt;}
.wsb3{word-spacing:-12.322642pt;}
.ws40b{word-spacing:-12.307333pt;}
.ws266{word-spacing:-12.268990pt;}
.ws199{word-spacing:-12.255393pt;}
.ws4e5{word-spacing:-12.223201pt;}
.ws490{word-spacing:-12.219194pt;}
.ws304{word-spacing:-12.216193pt;}
.ws41e{word-spacing:-12.215188pt;}
.ws48a{word-spacing:-12.211182pt;}
.ws49e{word-spacing:-12.151087pt;}
.ws14b{word-spacing:-12.114891pt;}
.ws37a{word-spacing:-12.104676pt;}
.ws177{word-spacing:-12.069568pt;}
.ws347{word-spacing:-12.048917pt;}
.wse4{word-spacing:-12.043849pt;}
.ws48e{word-spacing:-12.042917pt;}
.ws15b{word-spacing:-12.042374pt;}
.ws482{word-spacing:-12.030898pt;}
.ws2d2{word-spacing:-12.003477pt;}
.ws49f{word-spacing:-11.954779pt;}
.ws157{word-spacing:-11.933599pt;}
.ws3d9{word-spacing:-11.912055pt;}
.ws4e6{word-spacing:-11.830584pt;}
.ws14c{word-spacing:-11.811226pt;}
.ws36a{word-spacing:-11.805608pt;}
.ws28f{word-spacing:-11.792468pt;}
.ws4f9{word-spacing:-11.790521pt;}
.ws1b4{word-spacing:-11.765057pt;}
.ws44f{word-spacing:-11.758471pt;}
.ws380{word-spacing:-11.744780pt;}
.ws368{word-spacing:-11.729574pt;}
.ws2a2{word-spacing:-11.724504pt;}
.ws180{word-spacing:-11.720585pt;}
.ws210{word-spacing:-11.699160pt;}
.ws164{word-spacing:-11.679789pt;}
.ws491{word-spacing:-11.670332pt;}
.ws4b4{word-spacing:-11.648000pt;}
.ws31d{word-spacing:-11.629933pt;}
.ws7e{word-spacing:-11.612987pt;}
.ws178{word-spacing:-11.602739pt;}
.ws10e{word-spacing:-11.552160pt;}
.ws2dd{word-spacing:-11.521746pt;}
.ws389{word-spacing:-11.481194pt;}
.ws89{word-spacing:-11.465987pt;}
.ws208{word-spacing:-11.450781pt;}
.ws4f3{word-spacing:-11.433961pt;}
.ws484{word-spacing:-11.425948pt;}
.ws11b{word-spacing:-11.420366pt;}
.ws125{word-spacing:-11.389953pt;}
.ws2c7{word-spacing:-11.364643pt;}
.ws334{word-spacing:-11.334195pt;}
.ws475{word-spacing:-11.301753pt;}
.ws3c3{word-spacing:-11.288574pt;}
.ws467{word-spacing:-11.281722pt;}
.ws64{word-spacing:-11.278437pt;}
.ws311{word-spacing:-11.278435pt;}
.ws2ef{word-spacing:-11.248022pt;}
.ws2c1{word-spacing:-11.237885pt;}
.ws4a9{word-spacing:-11.197590pt;}
.wse8{word-spacing:-11.156781pt;}
.ws463{word-spacing:-11.149514pt;}
.ws4a6{word-spacing:-11.137495pt;}
.ws87{word-spacing:-11.136505pt;}
.ws46c{word-spacing:-11.129483pt;}
.ws4e7{word-spacing:-11.109451pt;}
.ws4a{word-spacing:-11.075678pt;}
.ws340{word-spacing:-11.075677pt;}
.ws432{word-spacing:-11.049357pt;}
.ws464{word-spacing:-11.021312pt;}
.ws25f{word-spacing:-11.009005pt;}
.ws4e1{word-spacing:-10.997275pt;}
.ws477{word-spacing:-10.961218pt;}
.ws48f{word-spacing:-10.949200pt;}
.ws155{word-spacing:-10.922891pt;}
.ws479{word-spacing:-10.897117pt;}
.ws4de{word-spacing:-10.873080pt;}
.ws276{word-spacing:-10.852643pt;}
.ws4e2{word-spacing:-10.808979pt;}
.ws3f4{word-spacing:-10.796885pt;}
.ws372{word-spacing:-10.730988pt;}
.wsca{word-spacing:-10.720850pt;}
.ws455{word-spacing:-10.716835pt;}
.ws2cb{word-spacing:-10.711292pt;}
.ws359{word-spacing:-10.670160pt;}
.ws4e9{word-spacing:-10.660747pt;}
.ws458{word-spacing:-10.644721pt;}
.ws500{word-spacing:-10.632702pt;}
.ws3c5{word-spacing:-10.609334pt;}
.ws35e{word-spacing:-10.609333pt;}
.wsde{word-spacing:-10.599195pt;}
.ws1b2{word-spacing:-10.568782pt;}
.ws20d{word-spacing:-10.538368pt;}
.ws310{word-spacing:-10.533298pt;}
.ws2f0{word-spacing:-10.507955pt;}
.ws3f7{word-spacing:-10.492747pt;}
.ws233{word-spacing:-10.447127pt;}
.ws290{word-spacing:-10.426851pt;}
.ws74{word-spacing:-10.421782pt;}
.ws2bd{word-spacing:-10.401506pt;}
.ws173{word-spacing:-10.374480pt;}
.ws3ed{word-spacing:-10.360954pt;}
.ws27c{word-spacing:-10.350816pt;}
.ws38e{word-spacing:-10.345748pt;}
.ws156{word-spacing:-10.338222pt;}
.ws163{word-spacing:-10.333699pt;}
.ws71{word-spacing:-10.274782pt;}
.ws1c1{word-spacing:-10.254506pt;}
.ws86{word-spacing:-10.203817pt;}
.wse1{word-spacing:-10.173403pt;}
.wsb2{word-spacing:-10.163264pt;}
.ws3dc{word-spacing:-10.082161pt;}
.ws2a7{word-spacing:-10.046679pt;}
.ws69{word-spacing:-10.036541pt;}
.ws3ae{word-spacing:-10.026403pt;}
.wsa4{word-spacing:-10.016266pt;}
.ws219{word-spacing:-9.955438pt;}
.ws23a{word-spacing:-9.935162pt;}
.ws5c{word-spacing:-9.930093pt;}
.ws4a7{word-spacing:-9.915576pt;}
.ws1ba{word-spacing:-9.899678pt;}
.wsac{word-spacing:-9.843921pt;}
.ws4a1{word-spacing:-9.819425pt;}
.ws2d4{word-spacing:-9.818575pt;}
.ws1fd{word-spacing:-9.783093pt;}
.ws93{word-spacing:-9.778024pt;}
.ws20c{word-spacing:-9.767886pt;}
.ws28b{word-spacing:-9.762817pt;}
.ws68{word-spacing:-9.732403pt;}
.ws3c1{word-spacing:-9.722265pt;}
.wsfb{word-spacing:-9.686782pt;}
.ws213{word-spacing:-9.656369pt;}
.ws2e9{word-spacing:-9.610748pt;}
.wsdf{word-spacing:-9.585404pt;}
.ws3b4{word-spacing:-9.575265pt;}
.ws2eb{word-spacing:-9.544852pt;}
.ws282{word-spacing:-9.534713pt;}
.ws4f5{word-spacing:-9.522959pt;}
.ws2fb{word-spacing:-9.514439pt;}
.ws2df{word-spacing:-9.504300pt;}
.ws1c2{word-spacing:-9.468817pt;}
.ws10a{word-spacing:-9.458679pt;}
.ws3d3{word-spacing:-9.382645pt;}
.ws30c{word-spacing:-9.367438pt;}
.ws5d{word-spacing:-9.347163pt;}
.ws21d{word-spacing:-9.337025pt;}
.ws4ef{word-spacing:-9.278575pt;}
.ws1b9{word-spacing:-9.220438pt;}
.ws3c6{word-spacing:-9.169748pt;}
.ws231{word-spacing:-9.164680pt;}
.ws3f0{word-spacing:-9.139335pt;}
.ws4d9{word-spacing:-9.138355pt;}
.wsf7{word-spacing:-9.098783pt;}
.ws12a{word-spacing:-9.083577pt;}
.ws348{word-spacing:-9.073443pt;}
.ws131{word-spacing:-9.048093pt;}
.ws2f6{word-spacing:-8.961922pt;}
.ws448{word-spacing:-8.914003pt;}
.ws3b6{word-spacing:-8.885887pt;}
.ws390{word-spacing:-8.840266pt;}
.ws4da{word-spacing:-8.817851pt;}
.wscc{word-spacing:-8.804783pt;}
.ws61{word-spacing:-8.794645pt;}
.ws9e{word-spacing:-8.789577pt;}
.ws7c{word-spacing:-8.779439pt;}
.ws399{word-spacing:-8.764232pt;}
.ws421{word-spacing:-8.757757pt;}
.ws65{word-spacing:-8.698335pt;}
.ws1f8{word-spacing:-8.693267pt;}
.wsa6{word-spacing:-8.688197pt;}
.ws1f1{word-spacing:-8.667921pt;}
.ws3bb{word-spacing:-8.657783pt;}
.ws22f{word-spacing:-8.637508pt;}
.ws3bf{word-spacing:-8.637507pt;}
.ws6b{word-spacing:-8.617232pt;}
.ws487{word-spacing:-8.613530pt;}
.ws480{word-spacing:-8.609524pt;}
.wsd4{word-spacing:-8.607095pt;}
.ws489{word-spacing:-8.605517pt;}
.ws476{word-spacing:-8.581480pt;}
.ws45e{word-spacing:-8.565454pt;}
.ws46d{word-spacing:-8.557443pt;}
.wsa5{word-spacing:-8.556404pt;}
.ws4a3{word-spacing:-8.549430pt;}
.ws492{word-spacing:-8.541417pt;}
.ws44a{word-spacing:-8.533404pt;}
.ws1c5{word-spacing:-8.507165pt;}
.ws332{word-spacing:-8.475301pt;}
.ws48c{word-spacing:-8.469304pt;}
.ws44d{word-spacing:-8.453278pt;}
.ws454{word-spacing:-8.405203pt;}
.ws364{word-spacing:-8.394198pt;}
.ws329{word-spacing:-8.389129pt;}
.ws92{word-spacing:-8.333371pt;}
.ws21c{word-spacing:-8.277612pt;}
.ws3ec{word-spacing:-8.272542pt;}
.ws474{word-spacing:-8.176845pt;}
.ws350{word-spacing:-8.150887pt;}
.wsfe{word-spacing:-8.145818pt;}
.ws13f{word-spacing:-8.140750pt;}
.ws22d{word-spacing:-8.135680pt;}
.ws41{word-spacing:-8.110337pt;}
.ws360{word-spacing:-8.100198pt;}
.ws47b{word-spacing:-8.084699pt;}
.ws494{word-spacing:-8.072681pt;}
.ws29a{word-spacing:-8.069784pt;}
.ws81{word-spacing:-8.008957pt;}
.ws4ff{word-spacing:-7.972523pt;}
.wsa9{word-spacing:-7.958267pt;}
.ws473{word-spacing:-7.948485pt;}
.ws214{word-spacing:-7.927854pt;}
.ws4ea{word-spacing:-7.916436pt;}
.ws124{word-spacing:-7.902509pt;}
.ws2f2{word-spacing:-7.897439pt;}
.ws4db{word-spacing:-7.884385pt;}
.ws3c0{word-spacing:-7.872094pt;}
.wsf0{word-spacing:-7.816336pt;}
.ws366{word-spacing:-7.796060pt;}
.ws4d6{word-spacing:-7.740159pt;}
.ws12d{word-spacing:-7.720025pt;}
.ws239{word-spacing:-7.633854pt;}
.ws8b{word-spacing:-7.613579pt;}
.ws2f9{word-spacing:-7.573026pt;}
.ws4fc{word-spacing:-7.567888pt;}
.ws4d8{word-spacing:-7.471737pt;}
.ws32d{word-spacing:-7.466577pt;}
.wsd6{word-spacing:-7.461510pt;}
.ws393{word-spacing:-7.436164pt;}
.ws201{word-spacing:-7.400681pt;}
.ws1fe{word-spacing:-7.385474pt;}
.ws2d8{word-spacing:-7.375336pt;}
.ws1fc{word-spacing:-7.365199pt;}
.wsf1{word-spacing:-7.324648pt;}
.wse9{word-spacing:-7.299302pt;}
.ws11a{word-spacing:-7.243543pt;}
.wsc3{word-spacing:-7.228337pt;}
.ws1c3{word-spacing:-7.213130pt;}
.ws1b6{word-spacing:-7.142164pt;}
.ws4fb{word-spacing:-7.131202pt;}
.ws2f{word-spacing:-7.100066pt;}
.ws3de{word-spacing:-7.055992pt;}
.ws36f{word-spacing:-7.045855pt;}
.ws466{word-spacing:-7.035050pt;}
.ws200{word-spacing:-7.015441pt;}
.wse7{word-spacing:-6.924200pt;}
.ws3e0{word-spacing:-6.878578pt;}
.ws369{word-spacing:-6.817751pt;}
.ws382{word-spacing:-6.777200pt;}
.ws391{word-spacing:-6.736647pt;}
.ws35a{word-spacing:-6.726510pt;}
.ws4f0{word-spacing:-6.718553pt;}
.ws8e{word-spacing:-6.696096pt;}
.ws2f5{word-spacing:-6.665683pt;}
.ws2e0{word-spacing:-6.655545pt;}
.ws4ed{word-spacing:-6.646440pt;}
.ws287{word-spacing:-6.645407pt;}
.ws398{word-spacing:-6.635269pt;}
.wsba{word-spacing:-6.620062pt;}
.wsbf{word-spacing:-6.614992pt;}
.ws4f7{word-spacing:-6.558302pt;}
.ws109{word-spacing:-6.544028pt;}
.ws108{word-spacing:-6.513613pt;}
.wsa2{word-spacing:-6.462924pt;}
.ws36c{word-spacing:-6.417304pt;}
.ws3e8{word-spacing:-6.397028pt;}
.wsdd{word-spacing:-6.381821pt;}
.wsdc{word-spacing:-6.371683pt;}
.ws4ec{word-spacing:-6.361993pt;}
.ws2cf{word-spacing:-6.320993pt;}
.ws3e9{word-spacing:-6.305786pt;}
.ws356{word-spacing:-6.270303pt;}
.wsff{word-spacing:-6.244958pt;}
.ws2cd{word-spacing:-6.209476pt;}
.ws209{word-spacing:-6.189200pt;}
.ws3be{word-spacing:-6.163855pt;}
.ws379{word-spacing:-6.148648pt;}
.ws8d{word-spacing:-6.118235pt;}
.ws3ea{word-spacing:-6.097958pt;}
.ws29d{word-spacing:-6.037132pt;}
.ws103{word-spacing:-5.976303pt;}
.ws358{word-spacing:-5.961096pt;}
.ws335{word-spacing:-5.930684pt;}
.ws97{word-spacing:-5.910408pt;}
.ws220{word-spacing:-5.900269pt;}
.ws1c{word-spacing:-5.819443pt;}
.ws26{word-spacing:-5.819268pt;}
.ws28{word-spacing:-5.819105pt;}
.wsd{word-spacing:-5.818931pt;}
.ws22{word-spacing:-5.818768pt;}
.ws3ad{word-spacing:-5.748201pt;}
.ws29e{word-spacing:-5.692442pt;}
.ws32c{word-spacing:-5.651891pt;}
.ws20a{word-spacing:-5.591063pt;}
.ws106{word-spacing:-5.530236pt;}
.ws355{word-spacing:-5.520097pt;}
.ws90{word-spacing:-5.494752pt;}
.ws462{word-spacing:-5.484616pt;}
.ws331{word-spacing:-5.398442pt;}
.ws28d{word-spacing:-5.388305pt;}
.ws32b{word-spacing:-5.383236pt;}
.ws107{word-spacing:-5.378166pt;}
.ws34d{word-spacing:-5.373097pt;}
.ws46e{word-spacing:-5.320357pt;}
.ws4df{word-spacing:-5.300326pt;}
.ws461{word-spacing:-5.296320pt;}
.ws4f8{word-spacing:-5.260263pt;}
.ws111{word-spacing:-5.256512pt;}
.ws1f2{word-spacing:-5.221029pt;}
.ws235{word-spacing:-5.210890pt;}
.ws129{word-spacing:-5.200754pt;}
.ws3cd{word-spacing:-5.185545pt;}
.ws24{word-spacing:-5.179294pt;}
.ws1e{word-spacing:-5.178957pt;}
.ws20{word-spacing:-5.178794pt;}
.wsfd{word-spacing:-5.144994pt;}
.ws34c{word-spacing:-5.119649pt;}
.ws2a3{word-spacing:-5.028408pt;}
.ws4b8{word-spacing:-5.011695pt;}
.wsd8{word-spacing:-5.003064pt;}
.ws365{word-spacing:-4.977719pt;}
.ws2a6{word-spacing:-4.967580pt;}
.ws128{word-spacing:-4.966619pt;}
.ws2b3{word-spacing:-4.966531pt;}
.ws3ba{word-spacing:-4.942236pt;}
.ws82{word-spacing:-4.937167pt;}
.ws238{word-spacing:-4.901684pt;}
.ws50{word-spacing:-4.820581pt;}
.wse3{word-spacing:-4.810443pt;}
.wsd7{word-spacing:-4.785099pt;}
.ws343{word-spacing:-4.719202pt;}
.ws27f{word-spacing:-4.709064pt;}
.ws460{word-spacing:-4.707395pt;}
.wsb9{word-spacing:-4.703995pt;}
.ws407{word-spacing:-4.591212pt;}
.ws1f3{word-spacing:-4.562065pt;}
.ws2b{word-spacing:-4.538983pt;}
.ws33{word-spacing:-4.538918pt;}
.ws13{word-spacing:-4.538820pt;}
.ws312{word-spacing:-4.506305pt;}
.ws493{word-spacing:-4.467017pt;}
.ws44{word-spacing:-4.435340pt;}
.ws104{word-spacing:-4.333961pt;}
.ws1b7{word-spacing:-4.303547pt;}
.wsc0{word-spacing:-4.273134pt;}
.ws470{word-spacing:-4.214620pt;}
.ws3f5{word-spacing:-4.202168pt;}
.ws5e{word-spacing:-4.156547pt;}
.ws4ee{word-spacing:-4.126483pt;}
.ws468{word-spacing:-4.106451pt;}
.ws35c{word-spacing:-4.105857pt;}
.ws34b{word-spacing:-4.060237pt;}
.ws1bb{word-spacing:-4.009548pt;}
.ws3f6{word-spacing:-3.923375pt;}
.ws27b{word-spacing:-3.842272pt;}
.ws46f{word-spacing:-3.813991pt;}
.ws2a0{word-spacing:-3.781444pt;}
.ws33e{word-spacing:-3.771306pt;}
.ws338{word-spacing:-3.761168pt;}
.wse6{word-spacing:-3.751031pt;}
.ws2c5{word-spacing:-3.740893pt;}
.ws10c{word-spacing:-3.720616pt;}
.ws3b9{word-spacing:-3.715548pt;}
.ws56{word-spacing:-3.680244pt;}
.wsa0{word-spacing:-3.634445pt;}
.ws223{word-spacing:-3.609100pt;}
.ws2ff{word-spacing:-3.598961pt;}
.wsee{word-spacing:-3.588824pt;}
.ws4f2{word-spacing:-3.565601pt;}
.ws2a8{word-spacing:-3.563479pt;}
.ws384{word-spacing:-3.558411pt;}
.ws3b2{word-spacing:-3.543203pt;}
.ws4e3{word-spacing:-3.529545pt;}
.ws4e{word-spacing:-3.487444pt;}
.ws91{word-spacing:-3.431686pt;}
.ws4f{word-spacing:-3.375928pt;}
.ws3e6{word-spacing:-3.360721pt;}
.ws8c{word-spacing:-3.325238pt;}
.ws123{word-spacing:-3.294824pt;}
.ws3b1{word-spacing:-3.203582pt;}
.ws314{word-spacing:-3.142756pt;}
.ws2cc{word-spacing:-3.107273pt;}
.ws341{word-spacing:-3.061651pt;}
.ws2f1{word-spacing:-2.945066pt;}
.ws230{word-spacing:-2.914653pt;}
.ws60{word-spacing:-2.899445pt;}
.ws37e{word-spacing:-2.889308pt;}
.ws9f{word-spacing:-2.858893pt;}
.ws3e3{word-spacing:-2.848755pt;}
.ws135{word-spacing:-2.843686pt;}
.ws450{word-spacing:-2.836456pt;}
.ws13d{word-spacing:-2.818342pt;}
.ws2ae{word-spacing:-2.792996pt;}
.ws2e8{word-spacing:-2.777791pt;}
.ws1ad{word-spacing:-2.752445pt;}
.ws7f{word-spacing:-2.742307pt;}
.ws105{word-spacing:-2.625721pt;}
.ws215{word-spacing:-2.453377pt;}
.ws37f{word-spacing:-2.443239pt;}
.ws121{word-spacing:-2.372273pt;}
.ws388{word-spacing:-2.331721pt;}
.ws3df{word-spacing:-2.326653pt;}
.ws39b{word-spacing:-2.250618pt;}
.ws228{word-spacing:-2.225273pt;}
.ws13b{word-spacing:-2.123894pt;}
.ws4d7{word-spacing:-2.123335pt;}
.ws3a0{word-spacing:-2.113757pt;}
.ws295{word-spacing:-2.103619pt;}
.ws7a{word-spacing:-2.068135pt;}
.ws32f{word-spacing:-2.007308pt;}
.ws41d{word-spacing:-1.995134pt;}
.ws48b{word-spacing:-1.991128pt;}
.ws2e4{word-spacing:-1.946480pt;}
.ws33f{word-spacing:-1.926205pt;}
.ws33b{word-spacing:-1.804550pt;}
.ws353{word-spacing:-1.753860pt;}
.ws22c{word-spacing:-1.682894pt;}
.ws42{word-spacing:-1.677826pt;}
.ws2be{word-spacing:-1.627136pt;}
.ws383{word-spacing:-1.606860pt;}
.ws13a{word-spacing:-1.586585pt;}
.ws122{word-spacing:-1.576447pt;}
.ws30d{word-spacing:-1.571377pt;}
.ws30e{word-spacing:-1.358482pt;}
.ws80{word-spacing:-1.317930pt;}
.ws55{word-spacing:-1.300776pt;}
.ws1f5{word-spacing:-1.282447pt;}
.ws212{word-spacing:-1.241896pt;}
.ws2db{word-spacing:-1.119200pt;}
.wsb1{word-spacing:-1.089827pt;}
.ws2ed{word-spacing:-1.049275pt;}
.ws138{word-spacing:-1.023929pt;}
.ws118{word-spacing:-1.008723pt;}
.ws3d5{word-spacing:-0.998586pt;}
.ws30b{word-spacing:-0.998585pt;}
.ws34f{word-spacing:-0.983379pt;}
.ws127{word-spacing:-0.968171pt;}
.ws6e{word-spacing:-0.958033pt;}
.ws346{word-spacing:-0.942826pt;}
.ws333{word-spacing:-0.917482pt;}
.ws134{word-spacing:-0.912412pt;}
.ws2af{word-spacing:-0.805964pt;}
.ws31a{word-spacing:-0.795826pt;}
.ws302{word-spacing:-0.658965pt;}
.ws218{word-spacing:-0.572792pt;}
.ws47{word-spacing:-0.542378pt;}
.ws2b2{word-spacing:-0.532241pt;}
.ws39c{word-spacing:-0.517033pt;}
.wsd3{word-spacing:-0.451137pt;}
.ws3dd{word-spacing:-0.410585pt;}
.wsf4{word-spacing:-0.385241pt;}
.ws3c8{word-spacing:-0.349758pt;}
.ws27e{word-spacing:-0.324413pt;}
.ws2e2{word-spacing:-0.309207pt;}
.ws52{word-spacing:-0.304138pt;}
.ws66{word-spacing:-0.294000pt;}
.wsd2{word-spacing:-0.288931pt;}
.ws211{word-spacing:-0.273724pt;}
.ws255{word-spacing:-0.258342pt;}
.ws139{word-spacing:-0.248379pt;}
.ws245{word-spacing:-0.244745pt;}
.ws2f3{word-spacing:-0.238241pt;}
.ws1ca{word-spacing:-0.217551pt;}
.ws24c{word-spacing:-0.213019pt;}
.ws37c{word-spacing:-0.212896pt;}
.ws32e{word-spacing:-0.136861pt;}
.ws221{word-spacing:-0.131794pt;}
.ws142{word-spacing:-0.093855pt;}
.ws40e{word-spacing:-0.068107pt;}
.ws100{word-spacing:-0.055759pt;}
.ws9b{word-spacing:0.000000pt;}
.ws79{word-spacing:0.020275pt;}
.ws387{word-spacing:0.091241pt;}
.ws24f{word-spacing:0.149567pt;}
.ws2e1{word-spacing:0.167275pt;}
.wsab{word-spacing:0.182483pt;}
.ws2b5{word-spacing:0.207827pt;}
.ws35b{word-spacing:0.223034pt;}
.ws47a{word-spacing:0.248390pt;}
.ws3f3{word-spacing:0.283862pt;}
.ws2e6{word-spacing:0.294000pt;}
.ws385{word-spacing:0.314276pt;}
.ws3e5{word-spacing:0.324413pt;}
.ws207{word-spacing:0.405518pt;}
.ws37d{word-spacing:0.415655pt;}
.ws39a{word-spacing:0.420724pt;}
.ws45{word-spacing:0.486620pt;}
.wsa8{word-spacing:0.486621pt;}
.ws1b1{word-spacing:0.491690pt;}
.ws39d{word-spacing:0.506895pt;}
.ws2c4{word-spacing:0.517034pt;}
.wsd1{word-spacing:0.527172pt;}
.ws3b8{word-spacing:0.537309pt;}
.ws136{word-spacing:0.572793pt;}
.wsc7{word-spacing:0.618413pt;}
.ws1be{word-spacing:0.633621pt;}
.wsa3{word-spacing:0.734999pt;}
.ws3cb{word-spacing:0.745137pt;}
.ws28a{word-spacing:0.765414pt;}
.ws2b0{word-spacing:0.861723pt;}
.ws58{word-spacing:0.881999pt;}
.ws306{word-spacing:0.887068pt;}
.ws222{word-spacing:0.892138pt;}
.wsd9{word-spacing:0.927620pt;}
.ws6a{word-spacing:0.932690pt;}
.ws96{word-spacing:0.952964pt;}
.ws20f{word-spacing:0.963101pt;}
.ws284{word-spacing:0.963104pt;}
.wsda{word-spacing:0.973240pt;}
.ws232{word-spacing:0.993515pt;}
.ws2fd{word-spacing:1.013792pt;}
.ws39f{word-spacing:1.105035pt;}
.ws396{word-spacing:1.211483pt;}
.ws7b{word-spacing:1.297653pt;}
.ws363{word-spacing:1.312862pt;}
.ws1bc{word-spacing:1.449721pt;}
.ws1b5{word-spacing:1.480136pt;}
.ws132{word-spacing:1.530826pt;}
.wsaa{word-spacing:1.561239pt;}
.ws67{word-spacing:1.586585pt;}
.wse2{word-spacing:1.611930pt;}
.ws1b8{word-spacing:1.627137pt;}
.ws376{word-spacing:1.687964pt;}
.ws95{word-spacing:1.784273pt;}
.ws9c{word-spacing:2.027585pt;}
.wsa7{word-spacing:2.063067pt;}
.wsc2{word-spacing:2.088413pt;}
.wsb7{word-spacing:2.134032pt;}
.ws78{word-spacing:2.144169pt;}
.ws36d{word-spacing:2.159378pt;}
.wsc6{word-spacing:2.164447pt;}
.ws280{word-spacing:2.189791pt;}
.ws2ea{word-spacing:2.230343pt;}
.ws3c7{word-spacing:2.270893pt;}
.ws5a{word-spacing:2.291171pt;}
.ws294{word-spacing:2.331721pt;}
.ws30a{word-spacing:2.351996pt;}
.ws63{word-spacing:2.600378pt;}
.ws49{word-spacing:2.610513pt;}
.ws3ef{word-spacing:2.630791pt;}
.wse5{word-spacing:2.686548pt;}
.ws288{word-spacing:2.711894pt;}
.ws4d{word-spacing:2.863962pt;}
.ws394{word-spacing:2.945066pt;}
.ws62{word-spacing:2.980548pt;}
.ws3e4{word-spacing:3.021101pt;}
.ws373{word-spacing:3.163030pt;}
.ws297{word-spacing:3.284685pt;}
.wsa1{word-spacing:3.310031pt;}
.ws110{word-spacing:3.391134pt;}
.ws23b{word-spacing:3.462099pt;}
.ws330{word-spacing:3.472238pt;}
.ws10f{word-spacing:3.563478pt;}
.ws319{word-spacing:3.604031pt;}
.ws397{word-spacing:3.725686pt;}
.ws301{word-spacing:3.745961pt;}
.ws498{word-spacing:3.846041pt;}
.ws130{word-spacing:3.913237pt;}
.ws318{word-spacing:4.004478pt;}
.ws4b{word-spacing:4.055169pt;}
.ws271{word-spacing:4.237649pt;}
.ws70{word-spacing:4.283272pt;}
.ws3ce{word-spacing:4.288341pt;}
.wsc1{word-spacing:4.349168pt;}
.ws35f{word-spacing:4.506304pt;}
.ws395{word-spacing:4.546857pt;}
.ws317{word-spacing:4.724269pt;}
.ws2b1{word-spacing:4.769892pt;}
.ws3f1{word-spacing:4.785099pt;}
.ws274{word-spacing:4.795236pt;}
.wsbb{word-spacing:4.805374pt;}
.ws13e{word-spacing:4.891546pt;}
.ws120{word-spacing:4.896615pt;}
.wsae{word-spacing:4.987857pt;}
.ws33a{word-spacing:5.084167pt;}
.ws3a1{word-spacing:5.160200pt;}
.ws3d2{word-spacing:5.413649pt;}
.ws21b{word-spacing:5.454202pt;}
.ws2ad{word-spacing:5.515028pt;}
.wsad{word-spacing:5.530234pt;}
.ws229{word-spacing:5.662028pt;}
.ws336{word-spacing:5.748199pt;}
.ws51{word-spacing:5.793821pt;}
.ws2fe{word-spacing:5.930682pt;}
.ws39e{word-spacing:5.945891pt;}
.ws6f{word-spacing:6.011788pt;}
.ws12e{word-spacing:6.072613pt;}
.ws299{word-spacing:6.077684pt;}
.ws1b3{word-spacing:6.143579pt;}
.ws499{word-spacing:6.337956pt;}
.ws31e{word-spacing:6.367910pt;}
.ws296{word-spacing:6.386888pt;}
.ws23c{word-spacing:6.569373pt;}
.ws2ee{word-spacing:6.655545pt;}
.ws3d1{word-spacing:6.751855pt;}
.ws12f{word-spacing:6.853233pt;}
.ws32a{word-spacing:6.888717pt;}
.ws3c9{word-spacing:6.914061pt;}
.ws3f2{word-spacing:7.030649pt;}
.ws322{word-spacing:7.124807pt;}
.ws20e{word-spacing:7.309440pt;}
.ws38c{word-spacing:7.329717pt;}
.ws43{word-spacing:7.415888pt;}
.ws1af{word-spacing:7.542613pt;}
.ws2b7{word-spacing:7.846750pt;}
.ws3cc{word-spacing:7.978542pt;}
.ws286{word-spacing:8.110335pt;}
.ws5f{word-spacing:8.328303pt;}
.ws3da{word-spacing:8.520921pt;}
.ws117{word-spacing:8.571612pt;}
.ws217{word-spacing:8.591888pt;}
.ws54{word-spacing:8.723679pt;}
.wsd0{word-spacing:8.764233pt;}
.ws315{word-spacing:8.870680pt;}
.ws11f{word-spacing:8.941644pt;}
.wsb4{word-spacing:9.068370pt;}
.wsbe{word-spacing:9.078509pt;}
.ws72{word-spacing:9.093715pt;}
.ws2d9{word-spacing:9.184956pt;}
.ws2dc{word-spacing:9.220439pt;}
.wsc4{word-spacing:9.250851pt;}
.ws2da{word-spacing:9.352231pt;}
.ws352{word-spacing:9.413059pt;}
.ws277{word-spacing:9.458679pt;}
.ws22b{word-spacing:9.859127pt;}
.ws10d{word-spacing:10.001057pt;}
.ws37b{word-spacing:10.061887pt;}
.ws114{word-spacing:10.097370pt;}
.ws27a{word-spacing:10.239300pt;}
.ws273{word-spacing:10.665092pt;}
.ws112{word-spacing:10.801954pt;}
.ws13c{word-spacing:11.050333pt;}
.ws35d{word-spacing:11.171988pt;}
.ws224{word-spacing:11.232817pt;}
.ws40{word-spacing:11.628195pt;}
.ws275{word-spacing:11.851228pt;}
.wsb6{word-spacing:11.881641pt;}
.ws73{word-spacing:11.952608pt;}
.ws316{word-spacing:12.434160pt;}
.ws38d{word-spacing:12.854884pt;}
.ws49a{word-spacing:12.968372pt;}
.ws36e{word-spacing:13.042435pt;}
.wsbc{word-spacing:13.883881pt;}
.ws23d{word-spacing:14.177882pt;}
.ws34e{word-spacing:14.182951pt;}
.ws2f4{word-spacing:14.421191pt;}
.ws300{word-spacing:14.451606pt;}
.ws2c2{word-spacing:14.917951pt;}
.ws3d0{word-spacing:15.551571pt;}
.ws30f{word-spacing:15.571846pt;}
.ws3ca{word-spacing:15.744190pt;}
.ws298{word-spacing:15.799948pt;}
.wsd5{word-spacing:15.952017pt;}
.ws115{word-spacing:17.067187pt;}
.ws351{word-spacing:17.538602pt;}
.ws337{word-spacing:17.771775pt;}
.ws3cf{word-spacing:18.973117pt;}
.wsb0{word-spacing:19.434394pt;}
.ws113{word-spacing:19.743599pt;}
.ws2e3{word-spacing:21.167976pt;}
.wsdb{word-spacing:21.512666pt;}
.ws4c{word-spacing:21.563356pt;}
.ws1c0{word-spacing:21.608978pt;}
.ws272{word-spacing:22.440287pt;}
.ws94{word-spacing:22.866079pt;}
.ws27d{word-spacing:23.215836pt;}
.ws76{word-spacing:26.292697pt;}
.ws141{word-spacing:29.948244pt;}
.wscb{word-spacing:30.763521pt;}
.ws85{word-spacing:32.603553pt;}
.wsb5{word-spacing:69.966855pt;}
.ws247{word-spacing:120.468045pt;}
.ws251{word-spacing:120.468289pt;}
.ws249{word-spacing:142.227713pt;}
.ws268{word-spacing:175.507905pt;}
.ws31f{word-spacing:279.187837pt;}
.ws248{word-spacing:362.237071pt;}
.ws24a{word-spacing:367.739307pt;}
.ws24b{word-spacing:390.872269pt;}
.ws1c9{word-spacing:566.202623pt;}
.ws256{word-spacing:595.140754pt;}
.ws259{word-spacing:679.500827pt;}
._5b{margin-left:-32.157280pt;}
._5c{margin-left:-31.143691pt;}
._5a{margin-left:-30.231479pt;}
._2c{margin-left:-28.964039pt;}
._2d{margin-left:-27.828584pt;}
._2a{margin-left:-26.684594pt;}
._19{margin-left:-22.871148pt;}
._1a{margin-left:-21.968872pt;}
._59{margin-left:-20.194737pt;}
._58{margin-left:-18.983255pt;}
._49{margin-left:-17.928912pt;}
._36{margin-left:-16.621120pt;}
._31{margin-left:-14.988903pt;}
._35{margin-left:-13.954858pt;}
._8{margin-left:-12.170422pt;}
._7{margin-left:-10.371752pt;}
._6{margin-left:-9.313168pt;}
._b{margin-left:-8.262532pt;}
._32{margin-left:-7.306106pt;}
._1d{margin-left:-5.540373pt;}
._9{margin-left:-4.613895pt;}
._a{margin-left:-3.268003pt;}
._2{margin-left:-1.908075pt;}
._0{margin-left:-0.926824pt;}
._3{width:1.257307pt;}
._e{width:2.644989pt;}
._25{width:3.589832pt;}
._f{width:5.127921pt;}
._1{width:6.830135pt;}
._24{width:8.562043pt;}
._5{width:10.136674pt;}
._4{width:11.196579pt;}
._d{width:12.097212pt;}
._1e{width:13.094065pt;}
._20{width:14.605820pt;}
._26{width:15.530721pt;}
._1b{width:16.423227pt;}
._11{width:18.030290pt;}
._18{width:19.774889pt;}
._27{width:20.768694pt;}
._13{width:21.955812pt;}
._1c{width:22.865302pt;}
._23{width:24.006594pt;}
._22{width:24.943576pt;}
._c{width:26.279275pt;}
._21{width:27.665974pt;}
._14{width:28.938694pt;}
._2f{width:30.144308pt;}
._15{width:31.681351pt;}
._33{width:32.731051pt;}
._12{width:34.155816pt;}
._17{width:35.163374pt;}
._30{width:36.386527pt;}
._10{width:38.472630pt;}
._37{width:40.610261pt;}
._2e{width:42.587830pt;}
._57{width:44.231746pt;}
._56{width:45.282185pt;}
._2b{width:46.623886pt;}
._16{width:47.878064pt;}
._28{width:49.446133pt;}
._1f{width:52.928558pt;}
._47{width:54.149039pt;}
._46{width:55.945304pt;}
._34{width:57.338417pt;}
._29{width:62.779087pt;}
._41{width:77.838304pt;}
._3f{width:110.027363pt;}
._3d{width:112.299802pt;}
._3a{width:129.803547pt;}
._4b{width:157.829133pt;}
._4a{width:160.264292pt;}
._44{width:164.649345pt;}
._3e{width:165.805094pt;}
._48{width:190.609991pt;}
._38{width:193.129169pt;}
._43{width:194.975363pt;}
._54{width:199.662711pt;}
._4f{width:242.318228pt;}
._52{width:303.751910pt;}
._4d{width:307.111870pt;}
._51{width:329.545343pt;}
._4c{width:334.748447pt;}
._53{width:339.203717pt;}
._42{width:352.964809pt;}
._55{width:363.231127pt;}
._4e{width:378.709000pt;}
._45{width:387.234556pt;}
._39{width:390.647136pt;}
._40{width:405.317263pt;}
._50{width:408.785444pt;}
._3c{width:435.321596pt;}
._3b{width:727.614050pt;}
.fsf{font-size:21.253867pt;}
.fsc{font-size:26.566933pt;}
.fs3{font-size:29.223999pt;}
.fse{font-size:40.062932pt;}
.fs9{font-size:42.507200pt;}
.fs7{font-size:42.666667pt;}
.fs1{font-size:45.323200pt;}
.fsa{font-size:48.033066pt;}
.fs6{font-size:50.689600pt;}
.fs2{font-size:53.346664pt;}
.fs0{font-size:58.659733pt;}
.fs5{font-size:61.316798pt;}
.fsb{font-size:61.369598pt;}
.fs8{font-size:64.026667pt;}
.fsd{font-size:81.103999pt;}
.fs4{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:41.860000pt;}
.y322{bottom:76.717707pt;}
.y6d{bottom:76.721626pt;}
.ya6{bottom:76.724011pt;}
.y228{bottom:76.724640pt;}
.y38c{bottom:76.725042pt;}
.y35a{bottom:76.729533pt;}
.y2fa{bottom:76.730387pt;}
.y4f{bottom:76.731742pt;}
.y1f1{bottom:76.732986pt;}
.y19a{bottom:76.733073pt;}
.ydb{bottom:76.734256pt;}
.y110{bottom:76.734428pt;}
.y291{bottom:76.735107pt;}
.y192{bottom:76.735608pt;}
.y2ad{bottom:76.735774pt;}
.y18a{bottom:76.738142pt;}
.y2c4{bottom:76.738307pt;}
.y367{bottom:76.738988pt;}
.y31{bottom:76.740603pt;}
.y46a{bottom:84.742567pt;}
.y3dc{bottom:87.145813pt;}
.y30{bottom:90.020300pt;}
.y321{bottom:92.717875pt;}
.y6c{bottom:92.721798pt;}
.ya5{bottom:92.724183pt;}
.y227{bottom:92.724813pt;}
.y38b{bottom:92.725210pt;}
.y359{bottom:92.729706pt;}
.y2f9{bottom:92.730560pt;}
.y4e{bottom:92.731914pt;}
.y1f0{bottom:92.733164pt;}
.y199{bottom:92.733245pt;}
.yda{bottom:92.734428pt;}
.y10f{bottom:92.734600pt;}
.y290{bottom:92.735280pt;}
.y191{bottom:92.735780pt;}
.y2ac{bottom:92.735952pt;}
.y1e5{bottom:92.736959pt;}
.y189{bottom:92.738314pt;}
.y2c3{bottom:92.738485pt;}
.y366{bottom:92.739156pt;}
.y420{bottom:92.912037pt;}
.y469{bottom:96.742417pt;}
.y3db{bottom:98.985411pt;}
.y2f{bottom:103.299998pt;}
.y41f{bottom:104.911886pt;}
.y320{bottom:108.718058pt;}
.y6b{bottom:108.721970pt;}
.ya4{bottom:108.724355pt;}
.y226{bottom:108.724986pt;}
.y38a{bottom:108.725382pt;}
.y358{bottom:108.729879pt;}
.y2f8{bottom:108.730733pt;}
.y4d{bottom:108.732087pt;}
.y1ef{bottom:108.733337pt;}
.y198{bottom:108.733418pt;}
.yd9{bottom:108.734600pt;}
.y10e{bottom:108.734773pt;}
.y28f{bottom:108.735453pt;}
.y190{bottom:108.735952pt;}
.y2ab{bottom:108.736125pt;}
.y1e4{bottom:108.737132pt;}
.y188{bottom:108.738487pt;}
.y2c2{bottom:108.738658pt;}
.y365{bottom:108.739329pt;}
.y468{bottom:108.742267pt;}
.y25d{bottom:110.660909pt;}
.y41e{bottom:116.751484pt;}
.y467{bottom:120.581865pt;}
.y3da{bottom:123.305614pt;}
.y25c{bottom:123.940603pt;}
.y31f{bottom:124.558563pt;}
.y6a{bottom:124.562470pt;}
.ya3{bottom:124.564855pt;}
.y225{bottom:124.565491pt;}
.y389{bottom:124.565898pt;}
.y357{bottom:124.570384pt;}
.y2f7{bottom:124.571228pt;}
.y4c{bottom:124.572587pt;}
.y1ee{bottom:124.573842pt;}
.y197{bottom:124.573918pt;}
.yd8{bottom:124.575100pt;}
.y10d{bottom:124.575273pt;}
.y28e{bottom:124.575948pt;}
.y18f{bottom:124.576452pt;}
.y2aa{bottom:124.576630pt;}
.y1e3{bottom:124.577637pt;}
.y187{bottom:124.578987pt;}
.y2c1{bottom:124.579163pt;}
.y364{bottom:124.579824pt;}
.y41d{bottom:128.751334pt;}
.y466{bottom:132.581715pt;}
.y4d9{bottom:132.595185pt;}
.y3d9{bottom:135.305464pt;}
.y25b{bottom:137.220306pt;}
.y31e{bottom:140.558736pt;}
.y69{bottom:140.562642pt;}
.ya2{bottom:140.565027pt;}
.y224{bottom:140.565664pt;}
.y388{bottom:140.566071pt;}
.y356{bottom:140.570557pt;}
.y2f6{bottom:140.571401pt;}
.y4b{bottom:140.572759pt;}
.y1ed{bottom:140.574015pt;}
.y196{bottom:140.574090pt;}
.y2e{bottom:140.575100pt;}
.yd7{bottom:140.575273pt;}
.y10c{bottom:140.575445pt;}
.y28d{bottom:140.576121pt;}
.y18e{bottom:140.576624pt;}
.y2a9{bottom:140.576803pt;}
.y1e2{bottom:140.577810pt;}
.y186{bottom:140.579159pt;}
.y2c0{bottom:140.579336pt;}
.y363{bottom:140.579997pt;}
.y41c{bottom:140.751184pt;}
.y465{bottom:144.581565pt;}
.y4d8{bottom:144.595035pt;}
.y3d8{bottom:147.305314pt;}
.y25a{bottom:150.500000pt;}
.y41b{bottom:152.751034pt;}
.y31d{bottom:156.558889pt;}
.y68{bottom:156.562814pt;}
.ya1{bottom:156.565200pt;}
.y223{bottom:156.565826pt;}
.y387{bottom:156.566223pt;}
.y355{bottom:156.570730pt;}
.y2f5{bottom:156.571574pt;}
.y4a{bottom:156.572931pt;}
.y1ec{bottom:156.574188pt;}
.y195{bottom:156.574262pt;}
.y2d{bottom:156.575273pt;}
.yd6{bottom:156.575445pt;}
.y10b{bottom:156.575617pt;}
.y28c{bottom:156.576294pt;}
.y18d{bottom:156.576797pt;}
.y2a8{bottom:156.576955pt;}
.y1e1{bottom:156.577983pt;}
.y185{bottom:156.579331pt;}
.y2bf{bottom:156.579508pt;}
.y464{bottom:156.581414pt;}
.y4d7{bottom:156.594885pt;}
.y3d7{bottom:159.305164pt;}
.y41a{bottom:164.590632pt;}
.y463{bottom:168.421012pt;}
.y4d6{bottom:168.434483pt;}
.y259{bottom:168.580302pt;}
.y362{bottom:169.859996pt;}
.y3d6{bottom:171.144762pt;}
.y31c{bottom:172.399394pt;}
.y67{bottom:172.403314pt;}
.ya0{bottom:172.405700pt;}
.y222{bottom:172.406331pt;}
.y386{bottom:172.406738pt;}
.y354{bottom:172.411235pt;}
.y2f4{bottom:172.412069pt;}
.y49{bottom:172.413431pt;}
.y1eb{bottom:172.414673pt;}
.y194{bottom:172.414762pt;}
.y2c{bottom:172.415773pt;}
.yd5{bottom:172.415945pt;}
.y10a{bottom:172.416117pt;}
.y28b{bottom:172.416809pt;}
.y18c{bottom:172.417297pt;}
.y2a7{bottom:172.417460pt;}
.y1e0{bottom:172.418477pt;}
.y2be{bottom:172.419820pt;}
.y184{bottom:172.419831pt;}
.y360{bottom:175.141500pt;}
.y419{bottom:176.590482pt;}
.y462{bottom:180.420862pt;}
.y4d5{bottom:180.434333pt;}
.y258{bottom:181.860006pt;}
.y3d5{bottom:183.144612pt;}
.y31b{bottom:188.399577pt;}
.y66{bottom:188.403487pt;}
.y9f{bottom:188.405872pt;}
.y221{bottom:188.406514pt;}
.y385{bottom:188.406901pt;}
.y353{bottom:188.411397pt;}
.y2f3{bottom:188.412231pt;}
.y48{bottom:188.413603pt;}
.y1ea{bottom:188.414856pt;}
.y193{bottom:188.414934pt;}
.y2b{bottom:188.415945pt;}
.yd4{bottom:188.416117pt;}
.y109{bottom:188.416289pt;}
.y28a{bottom:188.416951pt;}
.y18b{bottom:188.417469pt;}
.y2a6{bottom:188.417643pt;}
.y1df{bottom:188.418660pt;}
.y183{bottom:188.420003pt;}
.y35f{bottom:188.421204pt;}
.y418{bottom:188.590332pt;}
.y461{bottom:192.420712pt;}
.y4d4{bottom:192.434183pt;}
.y3d4{bottom:195.144461pt;}
.y257{bottom:199.460307pt;}
.y417{bottom:200.429930pt;}
.y35e{bottom:201.700907pt;}
.y31a{bottom:204.240072pt;}
.y65{bottom:204.243987pt;}
.y9e{bottom:204.246372pt;}
.y220{bottom:204.247009pt;}
.y384{bottom:204.247396pt;}
.y352{bottom:204.251892pt;}
.y2f2{bottom:204.252747pt;}
.y47{bottom:204.254103pt;}
.y1e9{bottom:204.255351pt;}
.y2a{bottom:204.256445pt;}
.yd3{bottom:204.256617pt;}
.y108{bottom:204.256789pt;}
.y289{bottom:204.257467pt;}
.y2a5{bottom:204.258138pt;}
.y1de{bottom:204.259155pt;}
.y460{bottom:204.260310pt;}
.y4d3{bottom:204.273781pt;}
.y3d3{bottom:206.984059pt;}
.y416{bottom:212.429779pt;}
.y256{bottom:212.739990pt;}
.y35d{bottom:214.980591pt;}
.y45f{bottom:216.260160pt;}
.y4d2{bottom:216.273630pt;}
.y3d2{bottom:218.983909pt;}
.y319{bottom:220.240234pt;}
.y64{bottom:220.244159pt;}
.y9d{bottom:220.246544pt;}
.y21f{bottom:220.247172pt;}
.y383{bottom:220.247579pt;}
.y351{bottom:220.252075pt;}
.y2f1{bottom:220.252930pt;}
.y46{bottom:220.254276pt;}
.y1e8{bottom:220.255514pt;}
.y29{bottom:220.256617pt;}
.yd2{bottom:220.256789pt;}
.y107{bottom:220.256962pt;}
.y288{bottom:220.257650pt;}
.y2a4{bottom:220.258301pt;}
.y1dd{bottom:220.259338pt;}
.y415{bottom:224.429629pt;}
.y45e{bottom:228.260010pt;}
.y35c{bottom:228.260315pt;}
.y4d1{bottom:228.273480pt;}
.y255{bottom:230.340007pt;}
.y318{bottom:236.240417pt;}
.y63{bottom:236.244331pt;}
.y9c{bottom:236.246716pt;}
.y21e{bottom:236.247355pt;}
.y382{bottom:236.247742pt;}
.y350{bottom:236.252238pt;}
.y2f0{bottom:236.253092pt;}
.y45{bottom:236.254448pt;}
.y1e7{bottom:236.255697pt;}
.y28{bottom:236.256789pt;}
.yd1{bottom:236.256962pt;}
.y106{bottom:236.257134pt;}
.y287{bottom:236.257812pt;}
.y2a3{bottom:236.258484pt;}
.y1dc{bottom:236.259501pt;}
.y414{bottom:236.429479pt;}
.y4d0{bottom:240.273330pt;}
.y45d{bottom:240.282569pt;}
.y35b{bottom:241.539998pt;}
.y3d1{bottom:242.983609pt;}
.y161{bottom:247.305225pt;}
.y254{bottom:247.940308pt;}
.y413{bottom:248.269077pt;}
.y172{bottom:248.588996pt;}
.y182{bottom:248.592395pt;}
.y317{bottom:252.080912pt;}
.y62{bottom:252.084831pt;}
.y9b{bottom:252.087216pt;}
.y21d{bottom:252.087850pt;}
.y381{bottom:252.088257pt;}
.y34f{bottom:252.092753pt;}
.y2ef{bottom:252.093587pt;}
.y44{bottom:252.094948pt;}
.y1e6{bottom:252.096191pt;}
.y27{bottom:252.097289pt;}
.yd0{bottom:252.097462pt;}
.y105{bottom:252.097634pt;}
.y286{bottom:252.098307pt;}
.y2a2{bottom:252.098979pt;}
.y1db{bottom:252.099996pt;}
.y4cf{bottom:252.112928pt;}
.y45c{bottom:252.122167pt;}
.y3d0{bottom:254.823207pt;}
.y412{bottom:260.268927pt;}
.y160{bottom:260.584923pt;}
.y253{bottom:261.219991pt;}
.y171{bottom:261.868694pt;}
.y181{bottom:261.872093pt;}
.y4ce{bottom:264.112778pt;}
.y45b{bottom:264.122017pt;}
.y3cf{bottom:266.823057pt;}
.y316{bottom:268.081095pt;}
.y61{bottom:268.085003pt;}
.y9a{bottom:268.087389pt;}
.y21c{bottom:268.088033pt;}
.y380{bottom:268.088420pt;}
.y34e{bottom:268.092916pt;}
.y2ee{bottom:268.093750pt;}
.y43{bottom:268.095120pt;}
.y26{bottom:268.097462pt;}
.ycf{bottom:268.097634pt;}
.y104{bottom:268.097806pt;}
.y285{bottom:268.098470pt;}
.y2a1{bottom:268.099162pt;}
.y411{bottom:272.268777pt;}
.y15f{bottom:273.864621pt;}
.y170{bottom:275.148391pt;}
.y180{bottom:275.151791pt;}
.y4cd{bottom:276.112628pt;}
.y45a{bottom:276.121867pt;}
.y252{bottom:278.820312pt;}
.y3ce{bottom:278.822907pt;}
.y2bd{bottom:281.379395pt;}
.y315{bottom:284.081258pt;}
.y60{bottom:284.085176pt;}
.y99{bottom:284.087561pt;}
.y21b{bottom:284.088196pt;}
.y37f{bottom:284.088603pt;}
.y34d{bottom:284.093099pt;}
.y2ed{bottom:284.093933pt;}
.y42{bottom:284.095292pt;}
.y25{bottom:284.097634pt;}
.yce{bottom:284.097806pt;}
.y103{bottom:284.097978pt;}
.y284{bottom:284.098653pt;}
.y2a0{bottom:284.099325pt;}
.y410{bottom:284.108375pt;}
.y15e{bottom:287.144318pt;}
.y4cc{bottom:287.952226pt;}
.y459{bottom:287.961465pt;}
.y16f{bottom:288.428089pt;}
.y17f{bottom:288.431488pt;}
.y3cd{bottom:290.662505pt;}
.y251{bottom:292.099996pt;}
.y1da{bottom:294.180298pt;}
.y40f{bottom:296.108225pt;}
.y2bc{bottom:297.380005pt;}
.y314{bottom:299.921753pt;}
.y5f{bottom:299.925676pt;}
.y98{bottom:299.928061pt;}
.y21a{bottom:299.928691pt;}
.y37e{bottom:299.929097pt;}
.y34c{bottom:299.933594pt;}
.y2ec{bottom:299.934428pt;}
.y41{bottom:299.935792pt;}
.y24{bottom:299.938134pt;}
.ycd{bottom:299.938306pt;}
.y102{bottom:299.938478pt;}
.y283{bottom:299.939168pt;}
.y29f{bottom:299.939819pt;}
.y4cb{bottom:299.952076pt;}
.y458{bottom:299.961315pt;}
.y15d{bottom:300.583780pt;}
.y16e{bottom:301.707787pt;}
.y3cc{bottom:302.662354pt;}
.y40e{bottom:308.108074pt;}
.y250{bottom:309.700297pt;}
.y4ca{bottom:311.951925pt;}
.y457{bottom:311.961165pt;}
.y1d9{bottom:312.900004pt;}
.y15c{bottom:313.863478pt;}
.y3cb{bottom:314.662204pt;}
.y16d{bottom:314.987484pt;}
.y17e{bottom:314.990883pt;}
.y313{bottom:315.921936pt;}
.y5e{bottom:315.925848pt;}
.y97{bottom:315.928233pt;}
.y219{bottom:315.928874pt;}
.y37d{bottom:315.929260pt;}
.y34b{bottom:315.933757pt;}
.y2eb{bottom:315.934591pt;}
.y40{bottom:315.935964pt;}
.y23{bottom:315.938306pt;}
.y29e{bottom:315.938477pt;}
.ycc{bottom:315.938478pt;}
.y101{bottom:315.938651pt;}
.y282{bottom:315.939331pt;}
.y3a0{bottom:315.940002pt;}
.y40d{bottom:320.107924pt;}
.y24f{bottom:322.980000pt;}
.y4c9{bottom:323.951775pt;}
.y456{bottom:323.961014pt;}
.y1d8{bottom:325.539998pt;}
.y493{bottom:326.019999pt;}
.y3ca{bottom:326.662054pt;}
.y15b{bottom:327.143175pt;}
.y16c{bottom:328.267182pt;}
.y17d{bottom:328.270581pt;}
.y312{bottom:331.762431pt;}
.y5d{bottom:331.766348pt;}
.y96{bottom:331.768733pt;}
.y218{bottom:331.769368pt;}
.y37c{bottom:331.769755pt;}
.y34a{bottom:331.774272pt;}
.y2ea{bottom:331.775106pt;}
.y3f{bottom:331.776464pt;}
.y22{bottom:331.778806pt;}
.ycb{bottom:331.778978pt;}
.y29d{bottom:331.778992pt;}
.y100{bottom:331.779151pt;}
.y2bb{bottom:331.779663pt;}
.y281{bottom:331.779826pt;}
.y40c{bottom:331.947522pt;}
.y4c8{bottom:335.791373pt;}
.y455{bottom:335.800612pt;}
.y492{bottom:338.020008pt;}
.y15a{bottom:340.422873pt;}
.y24e{bottom:341.380005pt;}
.y16b{bottom:341.546879pt;}
.y17c{bottom:341.550279pt;}
.y1d7{bottom:343.140015pt;}
.y40b{bottom:343.947372pt;}
.y39f{bottom:344.260010pt;}
.y311{bottom:347.762614pt;}
.y5c{bottom:347.766520pt;}
.y95{bottom:347.768905pt;}
.y217{bottom:347.769531pt;}
.y37b{bottom:347.769938pt;}
.y349{bottom:347.774414pt;}
.y2e9{bottom:347.775269pt;}
.y3e{bottom:347.776637pt;}
.y21{bottom:347.778978pt;}
.yca{bottom:347.779151pt;}
.y29c{bottom:347.779175pt;}
.yff{bottom:347.779323pt;}
.y2ba{bottom:347.779826pt;}
.y280{bottom:347.779989pt;}
.y4c7{bottom:347.791223pt;}
.y454{bottom:347.800462pt;}
.y3c9{bottom:350.982257pt;}
.y1d4{bottom:352.900594pt;}
.y159{bottom:353.702570pt;}
.y16a{bottom:354.826577pt;}
.y17b{bottom:354.829976pt;}
.y491{bottom:355.300008pt;}
.y40a{bottom:355.947222pt;}
.y24d{bottom:357.700602pt;}
.y4c6{bottom:359.791073pt;}
.y453{bottom:359.800312pt;}
.y1d6{bottom:360.739990pt;}
.y3c8{bottom:362.821855pt;}
.y310{bottom:363.762777pt;}
.y5b{bottom:363.766692pt;}
.y94{bottom:363.769078pt;}
.y216{bottom:363.769694pt;}
.y37a{bottom:363.770101pt;}
.y348{bottom:363.774618pt;}
.y2e8{bottom:363.775472pt;}
.y3d{bottom:363.776809pt;}
.y2b9{bottom:363.777995pt;}
.y20{bottom:363.779151pt;}
.yc9{bottom:363.779323pt;}
.y29b{bottom:363.779338pt;}
.yfe{bottom:363.779495pt;}
.y1d3{bottom:366.180298pt;}
.y158{bottom:366.982268pt;}
.y409{bottom:367.786820pt;}
.y169{bottom:368.106275pt;}
.y17a{bottom:368.109674pt;}
.y24c{bottom:370.980306pt;}
.y490{bottom:371.300008pt;}
.y4c5{bottom:371.790923pt;}
.y452{bottom:371.800162pt;}
.y3c7{bottom:374.821705pt;}
.y27f{bottom:377.060628pt;}
.y1d5{bottom:378.340007pt;}
.y1d2{bottom:379.460002pt;}
.y39e{bottom:379.596680pt;}
.y30f{bottom:379.603271pt;}
.y5a{bottom:379.607192pt;}
.y93{bottom:379.609578pt;}
.y215{bottom:379.610229pt;}
.y379{bottom:379.610596pt;}
.y347{bottom:379.615112pt;}
.y2e7{bottom:379.615967pt;}
.y3c{bottom:379.617309pt;}
.y2b8{bottom:379.618490pt;}
.y1f{bottom:379.619651pt;}
.yc8{bottom:379.619823pt;}
.y29a{bottom:379.619832pt;}
.yfd{bottom:379.619995pt;}
.y408{bottom:379.786670pt;}
.y157{bottom:380.261966pt;}
.y168{bottom:381.385972pt;}
.y179{bottom:381.389371pt;}
.y48f{bottom:383.140003pt;}
.y4c4{bottom:383.630521pt;}
.y451{bottom:383.639760pt;}
.y24b{bottom:384.260010pt;}
.y3c6{bottom:386.821555pt;}
.y407{bottom:391.786520pt;}
.y27e{bottom:392.900309pt;}
.y156{bottom:393.541663pt;}
.y167{bottom:394.665670pt;}
.y178{bottom:394.669069pt;}
.y39d{bottom:395.596842pt;}
.y30e{bottom:395.603434pt;}
.y59{bottom:395.607365pt;}
.y92{bottom:395.609750pt;}
.y214{bottom:395.610392pt;}
.y378{bottom:395.610799pt;}
.y346{bottom:395.615275pt;}
.y2e6{bottom:395.616130pt;}
.y3b{bottom:395.617481pt;}
.y2b7{bottom:395.618652pt;}
.y1e{bottom:395.619823pt;}
.yc7{bottom:395.619995pt;}
.yfc{bottom:395.620965pt;}
.y4c3{bottom:395.630371pt;}
.y450{bottom:395.639610pt;}
.y1d1{bottom:395.939982pt;}
.y3c5{bottom:398.661153pt;}
.y48e{bottom:400.420003pt;}
.y406{bottom:403.786369pt;}
.y155{bottom:406.821361pt;}
.y4c2{bottom:407.630220pt;}
.y44f{bottom:407.639459pt;}
.y166{bottom:407.945367pt;}
.y177{bottom:407.948767pt;}
.y3c4{bottom:410.661003pt;}
.y39c{bottom:411.597005pt;}
.y30d{bottom:411.603638pt;}
.y58{bottom:411.607537pt;}
.y91{bottom:411.609922pt;}
.y213{bottom:411.610555pt;}
.y377{bottom:411.610962pt;}
.y345{bottom:411.615438pt;}
.y2e5{bottom:411.616292pt;}
.y3a{bottom:411.617653pt;}
.y2b6{bottom:411.618815pt;}
.y1d{bottom:411.619995pt;}
.yfb{bottom:411.620407pt;}
.y1d0{bottom:413.539998pt;}
.y405{bottom:415.625968pt;}
.y48d{bottom:416.420003pt;}
.y4c1{bottom:419.469819pt;}
.y44e{bottom:419.479058pt;}
.y154{bottom:420.101058pt;}
.y165{bottom:421.225065pt;}
.y176{bottom:421.228464pt;}
.y3c3{bottom:422.660853pt;}
.y24a{bottom:423.141805pt;}
.y1cd{bottom:423.300618pt;}
.yc6{bottom:424.899710pt;}
.y27d{bottom:424.899984pt;}
.y299{bottom:424.900350pt;}
.y39b{bottom:427.437500pt;}
.y30c{bottom:427.444132pt;}
.y57{bottom:427.448037pt;}
.y90{bottom:427.450422pt;}
.y212{bottom:427.451050pt;}
.y376{bottom:427.451457pt;}
.y344{bottom:427.455933pt;}
.y2e4{bottom:427.456787pt;}
.y39{bottom:427.458153pt;}
.y2b5{bottom:427.459351pt;}
.yfa{bottom:427.460002pt;}
.y404{bottom:427.625817pt;}
.y48c{bottom:428.419992pt;}
.y1cf{bottom:431.140015pt;}
.y4c0{bottom:431.469668pt;}
.y44d{bottom:431.478907pt;}
.y153{bottom:433.380756pt;}
.y164{bottom:434.504763pt;}
.y175{bottom:434.508162pt;}
.y3c2{bottom:434.660702pt;}
.y249{bottom:436.421509pt;}
.y1cc{bottom:436.580322pt;}
.y403{bottom:439.625667pt;}
.y1c{bottom:440.739990pt;}
.y39a{bottom:443.437703pt;}
.y30b{bottom:443.444295pt;}
.y56{bottom:443.448209pt;}
.y8f{bottom:443.450594pt;}
.y211{bottom:443.451213pt;}
.y375{bottom:443.451619pt;}
.y343{bottom:443.456136pt;}
.y2e3{bottom:443.456950pt;}
.y38{bottom:443.458326pt;}
.y2b4{bottom:443.459513pt;}
.y4bf{bottom:443.469518pt;}
.y44c{bottom:443.478757pt;}
.y48b{bottom:445.539998pt;}
.y3c1{bottom:446.500300pt;}
.y152{bottom:446.660454pt;}
.y163{bottom:447.784460pt;}
.y174{bottom:447.787859pt;}
.y1ce{bottom:448.739990pt;}
.y248{bottom:449.701213pt;}
.y1cb{bottom:449.859985pt;}
.y402{bottom:451.625517pt;}
.y4be{bottom:455.469368pt;}
.y44b{bottom:455.478607pt;}
.yc5{bottom:456.739990pt;}
.y48a{bottom:457.539987pt;}
.y3c0{bottom:458.500150pt;}
.y399{bottom:459.278198pt;}
.y30a{bottom:459.284790pt;}
.y55{bottom:459.288709pt;}
.y27c{bottom:459.291056pt;}
.y8e{bottom:459.291094pt;}
.y210{bottom:459.291748pt;}
.y374{bottom:459.292114pt;}
.y342{bottom:459.296631pt;}
.y2e2{bottom:459.297485pt;}
.y37{bottom:459.298826pt;}
.y2b3{bottom:459.299154pt;}
.yf9{bottom:459.299664pt;}
.y151{bottom:459.940151pt;}
.y162{bottom:461.064158pt;}
.y173{bottom:461.067557pt;}
.y247{bottom:462.980916pt;}
.y401{bottom:463.465115pt;}
.y1ca{bottom:466.340007pt;}
.y4bd{bottom:467.308966pt;}
.y44a{bottom:467.318205pt;}
.y3bf{bottom:470.500000pt;}
.y150{bottom:474.659993pt;}
.y489{bottom:474.819987pt;}
.y398{bottom:475.278361pt;}
.y309{bottom:475.284953pt;}
.y54{bottom:475.288881pt;}
.y27b{bottom:475.291219pt;}
.y8d{bottom:475.291267pt;}
.y20f{bottom:475.291911pt;}
.y373{bottom:475.292277pt;}
.y341{bottom:475.296794pt;}
.y2e1{bottom:475.297648pt;}
.y298{bottom:475.298991pt;}
.y36{bottom:475.298998pt;}
.y2b2{bottom:475.299316pt;}
.yf8{bottom:475.299836pt;}
.y400{bottom:475.464965pt;}
.y246{bottom:476.260620pt;}
.y4bc{bottom:479.308816pt;}
.y449{bottom:479.318055pt;}
.y1c9{bottom:483.939982pt;}
.y1b{bottom:484.420585pt;}
.y3ff{bottom:487.464815pt;}
.y245{bottom:489.540324pt;}
.y488{bottom:490.819987pt;}
.yc4{bottom:491.271159pt;}
.y397{bottom:491.278524pt;}
.y308{bottom:491.285116pt;}
.y53{bottom:491.289054pt;}
.y27a{bottom:491.291382pt;}
.y8c{bottom:491.291439pt;}
.y20e{bottom:491.292074pt;}
.y372{bottom:491.292480pt;}
.y340{bottom:491.296956pt;}
.y2e0{bottom:491.297811pt;}
.y297{bottom:491.299154pt;}
.y35{bottom:491.299170pt;}
.y2b1{bottom:491.299520pt;}
.yf7{bottom:491.300008pt;}
.y4bb{bottom:491.308666pt;}
.y448{bottom:491.317905pt;}
.y1a{bottom:497.700283pt;}
.y3fe{bottom:499.304413pt;}
.y14f{bottom:501.379416pt;}
.y244{bottom:502.819987pt;}
.y4ba{bottom:503.148264pt;}
.y447{bottom:503.157503pt;}
.y3be{bottom:504.579997pt;}
.y487{bottom:506.659993pt;}
.y1c6{bottom:506.980591pt;}
.yc3{bottom:507.111659pt;}
.y396{bottom:507.119019pt;}
.y307{bottom:507.125651pt;}
.y52{bottom:507.129554pt;}
.y279{bottom:507.131877pt;}
.y8b{bottom:507.131939pt;}
.y20d{bottom:507.132568pt;}
.y371{bottom:507.132975pt;}
.y2b0{bottom:507.133586pt;}
.y33f{bottom:507.137451pt;}
.yf6{bottom:507.137632pt;}
.y2df{bottom:507.138306pt;}
.y296{bottom:507.139648pt;}
.y34{bottom:507.139670pt;}
.y19{bottom:510.979980pt;}
.y3fd{bottom:511.304263pt;}
.y1c8{bottom:514.819987pt;}
.y4b9{bottom:515.148114pt;}
.y446{bottom:515.157353pt;}
.y14e{bottom:517.380005pt;}
.y1c5{bottom:520.260295pt;}
.y243{bottom:520.899984pt;}
.y486{bottom:522.659993pt;}
.yc2{bottom:523.111832pt;}
.y395{bottom:523.119181pt;}
.y306{bottom:523.125814pt;}
.y51{bottom:523.129726pt;}
.y278{bottom:523.132080pt;}
.y8a{bottom:523.132111pt;}
.y20c{bottom:523.132731pt;}
.y370{bottom:523.133138pt;}
.y2af{bottom:523.133748pt;}
.y33e{bottom:523.137655pt;}
.yf5{bottom:523.137805pt;}
.y2de{bottom:523.138468pt;}
.y295{bottom:523.139811pt;}
.y33{bottom:523.139842pt;}
.y3fc{bottom:523.304112pt;}
.y4b8{bottom:527.147963pt;}
.y445{bottom:527.157202pt;}
.y1c7{bottom:532.420003pt;}
.y18{bottom:532.579997pt;}
.y1c4{bottom:533.539998pt;}
.y485{bottom:534.659982pt;}
.y3fb{bottom:535.303962pt;}
.y242{bottom:538.500000pt;}
.yc1{bottom:539.112004pt;}
.y394{bottom:539.119385pt;}
.y305{bottom:539.125977pt;}
.y50{bottom:539.129898pt;}
.y277{bottom:539.132243pt;}
.y89{bottom:539.132283pt;}
.y20b{bottom:539.132933pt;}
.y36f{bottom:539.133301pt;}
.y2ae{bottom:539.133911pt;}
.y33d{bottom:539.137817pt;}
.yf4{bottom:539.137977pt;}
.y2dd{bottom:539.138672pt;}
.y32{bottom:539.140015pt;}
.y4b7{bottom:539.147813pt;}
.y444{bottom:539.157052pt;}
.y3fa{bottom:547.143560pt;}
.y3bd{bottom:548.423974pt;}
.y4b6{bottom:550.987411pt;}
.y443{bottom:550.996650pt;}
.y484{bottom:551.939982pt;}
.yc0{bottom:554.952504pt;}
.y393{bottom:554.959880pt;}
.y304{bottom:554.966471pt;}
.y276{bottom:554.972738pt;}
.y88{bottom:554.972783pt;}
.y20a{bottom:554.973429pt;}
.y36e{bottom:554.973796pt;}
.y33c{bottom:554.978312pt;}
.yf3{bottom:554.978477pt;}
.y2dc{bottom:554.979167pt;}
.y1c1{bottom:555.460612pt;}
.y241{bottom:556.100016pt;}
.y3f9{bottom:559.143410pt;}
.y3bc{bottom:560.263572pt;}
.y12c{bottom:562.505508pt;}
.y4b5{bottom:562.987261pt;}
.y442{bottom:562.996500pt;}
.y1c3{bottom:563.300008pt;}
.y483{bottom:563.780018pt;}
.y13e{bottom:563.789288pt;}
.y1c0{bottom:568.740316pt;}
.ybf{bottom:570.952676pt;}
.y392{bottom:570.960042pt;}
.y303{bottom:570.966634pt;}
.y275{bottom:570.972900pt;}
.y87{bottom:570.972955pt;}
.y209{bottom:570.973592pt;}
.y36d{bottom:570.973999pt;}
.y33b{bottom:570.978475pt;}
.yf2{bottom:570.978649pt;}
.y2db{bottom:570.979329pt;}
.y3f8{bottom:571.143260pt;}
.y294{bottom:572.420614pt;}
.y240{bottom:573.699992pt;}
.y4b4{bottom:574.987111pt;}
.y441{bottom:574.996350pt;}
.y12b{bottom:575.785206pt;}
.y13d{bottom:577.068985pt;}
.y1c2{bottom:580.899984pt;}
.y482{bottom:581.060018pt;}
.y1bf{bottom:582.020020pt;}
.y3f7{bottom:582.982858pt;}
.y3bb{bottom:584.583775pt;}
.y293{bottom:585.700317pt;}
.ybe{bottom:586.793176pt;}
.y391{bottom:586.800537pt;}
.y302{bottom:586.807170pt;}
.y274{bottom:586.813395pt;}
.y86{bottom:586.813455pt;}
.y208{bottom:586.814087pt;}
.y36c{bottom:586.814494pt;}
.y33a{bottom:586.818970pt;}
.yf1{bottom:586.819149pt;}
.y2da{bottom:586.819824pt;}
.y4b3{bottom:586.826709pt;}
.y440{bottom:586.835948pt;}
.y12a{bottom:589.064903pt;}
.y13c{bottom:590.348683pt;}
.y14d{bottom:590.353215pt;}
.y23f{bottom:591.300008pt;}
.y3f6{bottom:594.982708pt;}
.y3ba{bottom:596.583625pt;}
.y481{bottom:597.060018pt;}
.y4b2{bottom:598.826559pt;}
.y43f{bottom:598.835798pt;}
.y292{bottom:598.979980pt;}
.y129{bottom:602.344601pt;}
.ybd{bottom:602.793348pt;}
.y390{bottom:602.800700pt;}
.y301{bottom:602.807332pt;}
.y273{bottom:602.813599pt;}
.y85{bottom:602.813628pt;}
.y207{bottom:602.814250pt;}
.y36b{bottom:602.814657pt;}
.y339{bottom:602.819173pt;}
.yf0{bottom:602.819321pt;}
.y2d9{bottom:602.819987pt;}
.y13b{bottom:603.628381pt;}
.y14c{bottom:603.632913pt;}
.y1bc{bottom:603.940592pt;}
.y3f5{bottom:606.982558pt;}
.y3b9{bottom:608.583475pt;}
.y23e{bottom:608.899984pt;}
.y480{bottom:609.060007pt;}
.y4b1{bottom:610.826409pt;}
.y43e{bottom:610.835648pt;}
.y1be{bottom:611.779989pt;}
.y128{bottom:615.624299pt;}
.y13a{bottom:616.908078pt;}
.y14b{bottom:616.912611pt;}
.y1bb{bottom:617.220296pt;}
.ybc{bottom:618.793521pt;}
.y38f{bottom:618.800903pt;}
.y272{bottom:618.813761pt;}
.y84{bottom:618.813800pt;}
.y206{bottom:618.814412pt;}
.y36a{bottom:618.814819pt;}
.y338{bottom:618.819336pt;}
.yef{bottom:618.819493pt;}
.y3f4{bottom:618.982407pt;}
.y3b8{bottom:620.583325pt;}
.y17{bottom:622.020033pt;}
.y4b0{bottom:622.826258pt;}
.y43d{bottom:622.835497pt;}
.y47f{bottom:626.340007pt;}
.y23d{bottom:626.500000pt;}
.y127{bottom:629.063760pt;}
.y1bd{bottom:629.380005pt;}
.y139{bottom:630.187776pt;}
.y14a{bottom:630.192308pt;}
.y1ba{bottom:630.500000pt;}
.y3f3{bottom:630.822005pt;}
.y2d8{bottom:632.100016pt;}
.y3b7{bottom:632.422923pt;}
.ybb{bottom:634.634021pt;}
.y38e{bottom:634.641398pt;}
.y271{bottom:634.654256pt;}
.y83{bottom:634.654300pt;}
.y205{bottom:634.654948pt;}
.y369{bottom:634.655314pt;}
.y337{bottom:634.659831pt;}
.yee{bottom:634.659993pt;}
.y4af{bottom:634.665856pt;}
.y43c{bottom:634.675095pt;}
.y300{bottom:638.980916pt;}
.y47e{bottom:642.180013pt;}
.y126{bottom:642.343458pt;}
.y3f2{bottom:642.821855pt;}
.y138{bottom:643.467473pt;}
.y23c{bottom:644.100016pt;}
.y3b6{bottom:644.422773pt;}
.y4ae{bottom:646.665706pt;}
.y43b{bottom:646.674945pt;}
.y1b9{bottom:646.979980pt;}
.yba{bottom:650.634193pt;}
.y38d{bottom:650.641561pt;}
.y270{bottom:650.654419pt;}
.y82{bottom:650.654472pt;}
.y204{bottom:650.655111pt;}
.y368{bottom:650.655518pt;}
.y336{bottom:650.659993pt;}
.yed{bottom:650.660551pt;}
.y2ff{bottom:652.260620pt;}
.y3f1{bottom:654.821705pt;}
.y125{bottom:655.623156pt;}
.y3b5{bottom:656.422622pt;}
.y16{bottom:656.580033pt;}
.y137{bottom:656.747171pt;}
.y149{bottom:656.751703pt;}
.y47d{bottom:658.180013pt;}
.y4ad{bottom:658.665556pt;}
.y43a{bottom:658.674795pt;}
.y23b{bottom:661.699992pt;}
.y1b8{bottom:664.579997pt;}
.y2fe{bottom:665.540324pt;}
.y335{bottom:666.628052pt;}
.yb9{bottom:666.634365pt;}
.y2d7{bottom:666.648682pt;}
.y26f{bottom:666.654582pt;}
.y81{bottom:666.654644pt;}
.y203{bottom:666.655273pt;}
.yec{bottom:666.659993pt;}
.y3f0{bottom:666.661303pt;}
.y3b4{bottom:668.262221pt;}
.y124{bottom:668.902853pt;}
.y136{bottom:670.026869pt;}
.y148{bottom:670.031401pt;}
.y47c{bottom:670.179961pt;}
.y4ac{bottom:670.665406pt;}
.y439{bottom:670.674645pt;}
.y1b5{bottom:674.340617pt;}
.y3ef{bottom:678.661153pt;}
.y2fd{bottom:678.819987pt;}
.y23a{bottom:679.300008pt;}
.y3b3{bottom:680.262070pt;}
.y1b7{bottom:682.180013pt;}
.y123{bottom:682.182551pt;}
.y334{bottom:682.468587pt;}
.yb8{bottom:682.474865pt;}
.y2d6{bottom:682.489176pt;}
.y26e{bottom:682.495117pt;}
.y80{bottom:682.495144pt;}
.y202{bottom:682.495768pt;}
.y4ab{bottom:682.505004pt;}
.y438{bottom:682.514243pt;}
.y135{bottom:683.306566pt;}
.y147{bottom:683.311099pt;}
.y47b{bottom:687.299967pt;}
.y1b4{bottom:687.620280pt;}
.y361{bottom:688.260010pt;}
.y3ee{bottom:690.661003pt;}
.y15{bottom:691.140033pt;}
.y3b2{bottom:692.261920pt;}
.y4aa{bottom:694.504854pt;}
.y437{bottom:694.514093pt;}
.y122{bottom:695.462248pt;}
.yeb{bottom:695.780029pt;}
.y134{bottom:696.586264pt;}
.y146{bottom:696.590796pt;}
.y239{bottom:696.899984pt;}
.y333{bottom:698.468750pt;}
.yb7{bottom:698.475037pt;}
.y2d5{bottom:698.489339pt;}
.y26d{bottom:698.495280pt;}
.y7f{bottom:698.495317pt;}
.y201{bottom:698.495931pt;}
.y1b6{bottom:699.780029pt;}
.y1b3{bottom:700.899984pt;}
.y3ed{bottom:702.660853pt;}
.y47a{bottom:703.299967pt;}
.y3b1{bottom:704.261770pt;}
.y4a9{bottom:706.504704pt;}
.y436{bottom:706.513943pt;}
.y121{bottom:708.741946pt;}
.y133{bottom:709.865961pt;}
.y145{bottom:709.870494pt;}
.y332{bottom:714.309245pt;}
.yb6{bottom:714.315537pt;}
.y2d4{bottom:714.329834pt;}
.y26c{bottom:714.335775pt;}
.y7e{bottom:714.335817pt;}
.y200{bottom:714.336426pt;}
.y238{bottom:714.500000pt;}
.y3ec{bottom:714.500451pt;}
.y3b0{bottom:716.101368pt;}
.y4a8{bottom:718.344302pt;}
.y435{bottom:718.353541pt;}
.y479{bottom:719.299967pt;}
.y120{bottom:722.021644pt;}
.y1b0{bottom:722.820638pt;}
.y132{bottom:723.145659pt;}
.y144{bottom:723.150191pt;}
.y14{bottom:725.700033pt;}
.y3eb{bottom:726.500300pt;}
.y3af{bottom:728.101218pt;}
.y331{bottom:730.309408pt;}
.yb5{bottom:730.315710pt;}
.yea{bottom:730.325955pt;}
.y2d3{bottom:730.329997pt;}
.y26b{bottom:730.335937pt;}
.y7d{bottom:730.335989pt;}
.y1ff{bottom:730.336589pt;}
.y4a7{bottom:730.344151pt;}
.y434{bottom:730.353390pt;}
.y1b2{bottom:730.659993pt;}
.y478{bottom:731.140003pt;}
.y237{bottom:732.100016pt;}
.y11f{bottom:735.301341pt;}
.y1af{bottom:736.100342pt;}
.y131{bottom:736.425357pt;}
.y143{bottom:736.429889pt;}
.y3ea{bottom:738.500150pt;}
.y4a6{bottom:742.344001pt;}
.y433{bottom:742.353240pt;}
.y330{bottom:746.309570pt;}
.yb4{bottom:746.315882pt;}
.ye9{bottom:746.326127pt;}
.y2d2{bottom:746.330160pt;}
.y26a{bottom:746.336100pt;}
.y7c{bottom:746.336161pt;}
.y1fe{bottom:746.336833pt;}
.y1b1{bottom:748.260010pt;}
.y477{bottom:748.420003pt;}
.y11e{bottom:748.581039pt;}
.y1ae{bottom:749.379964pt;}
.y236{bottom:749.700033pt;}
.y130{bottom:749.705054pt;}
.y142{bottom:749.709587pt;}
.y3e9{bottom:750.500000pt;}
.y3ae{bottom:752.421421pt;}
.y4a5{bottom:754.343851pt;}
.y432{bottom:754.353090pt;}
.y11d{bottom:761.860736pt;}
.y32f{bottom:762.150065pt;}
.yb3{bottom:762.156382pt;}
.ye8{bottom:762.166627pt;}
.y2d1{bottom:762.170654pt;}
.y269{bottom:762.176595pt;}
.y7b{bottom:762.176661pt;}
.y1fd{bottom:762.177327pt;}
.y12f{bottom:762.984752pt;}
.y141{bottom:762.989284pt;}
.y476{bottom:764.420003pt;}
.y3ad{bottom:764.421271pt;}
.y1ad{bottom:765.860026pt;}
.y4a4{bottom:766.183449pt;}
.y431{bottom:766.192688pt;}
.y235{bottom:767.299967pt;}
.y11c{bottom:775.140434pt;}
.y3e8{bottom:775.459961pt;}
.y3ac{bottom:776.260869pt;}
.y12e{bottom:776.264449pt;}
.y140{bottom:776.268982pt;}
.y475{bottom:776.420033pt;}
.y32e{bottom:778.150228pt;}
.yb2{bottom:778.156554pt;}
.ye7{bottom:778.166799pt;}
.y2d0{bottom:778.170817pt;}
.y7a{bottom:778.176833pt;}
.y268{bottom:778.176839pt;}
.y1fc{bottom:778.177490pt;}
.y4a3{bottom:778.183299pt;}
.y430{bottom:778.192538pt;}
.y13{bottom:779.459963pt;}
.y1a9{bottom:779.940918pt;}
.y1ac{bottom:783.459961pt;}
.y234{bottom:784.899984pt;}
.y3ab{bottom:788.260719pt;}
.y11b{bottom:788.420132pt;}
.y12d{bottom:789.544147pt;}
.y13f{bottom:789.548679pt;}
.y4a2{bottom:790.183149pt;}
.y42f{bottom:790.192388pt;}
.y1a8{bottom:793.220622pt;}
.y474{bottom:793.700033pt;}
.y32d{bottom:794.150391pt;}
.yb1{bottom:794.156726pt;}
.ye6{bottom:794.166972pt;}
.y2cf{bottom:794.171061pt;}
.y267{bottom:794.176921pt;}
.y79{bottom:794.177006pt;}
.y1fb{bottom:794.177653pt;}
.y11{bottom:795.459963pt;}
.y3aa{bottom:800.260568pt;}
.y12{bottom:800.740153pt;}
.y1ab{bottom:801.059977pt;}
.y4a1{bottom:802.022747pt;}
.y42e{bottom:802.031986pt;}
.y233{bottom:802.500000pt;}
.y11a{bottom:803.139974pt;}
.y1a7{bottom:806.500326pt;}
.y473{bottom:809.540039pt;}
.y32c{bottom:809.990967pt;}
.yb0{bottom:809.997226pt;}
.ye5{bottom:810.007472pt;}
.y2ce{bottom:810.011556pt;}
.y266{bottom:810.017497pt;}
.y78{bottom:810.017506pt;}
.y1fa{bottom:810.018148pt;}
.y10{bottom:811.460009pt;}
.y3a9{bottom:812.260418pt;}
.y4a0{bottom:814.022597pt;}
.y42d{bottom:814.031836pt;}
.y1aa{bottom:818.659993pt;}
.y1a6{bottom:819.780029pt;}
.y232{bottom:820.100016pt;}
.y3a8{bottom:824.100016pt;}
.y472{bottom:825.540039pt;}
.y3e7{bottom:825.544716pt;}
.y32b{bottom:825.991130pt;}
.yaf{bottom:825.997398pt;}
.ye4{bottom:826.007644pt;}
.y2cd{bottom:826.011719pt;}
.y265{bottom:826.017660pt;}
.y77{bottom:826.017678pt;}
.y1f9{bottom:826.018311pt;}
.y49f{bottom:826.022446pt;}
.y42c{bottom:826.031685pt;}
.yf{bottom:827.299969pt;}
.y22f{bottom:829.860596pt;}
.y119{bottom:830.179424pt;}
.y1a5{bottom:836.260010pt;}
.y3e6{bottom:837.544566pt;}
.y231{bottom:837.700033pt;}
.y49e{bottom:838.022296pt;}
.y42b{bottom:838.031535pt;}
.y471{bottom:841.540039pt;}
.y32a{bottom:841.831624pt;}
.yae{bottom:841.837898pt;}
.ye3{bottom:841.848144pt;}
.y2cc{bottom:841.852214pt;}
.y264{bottom:841.858154pt;}
.y76{bottom:841.858178pt;}
.y1f8{bottom:841.858805pt;}
.y22e{bottom:843.140299pt;}
.yd{bottom:843.300016pt;}
.y118{bottom:846.180013pt;}
.ye{bottom:848.580160pt;}
.y3e5{bottom:849.544416pt;}
.y49d{bottom:849.861894pt;}
.y42a{bottom:849.871133pt;}
.y1a4{bottom:853.860026pt;}
.y230{bottom:855.299967pt;}
.y22d{bottom:856.420003pt;}
.y3a7{bottom:856.901479pt;}
.y470{bottom:857.379964pt;}
.y329{bottom:857.831787pt;}
.yad{bottom:857.838071pt;}
.ye2{bottom:857.848316pt;}
.y2cb{bottom:857.852376pt;}
.y263{bottom:857.858317pt;}
.y75{bottom:857.858350pt;}
.y1f7{bottom:857.858968pt;}
.yb{bottom:859.139976pt;}
.y1a1{bottom:859.300618pt;}
.y49c{bottom:861.861744pt;}
.y429{bottom:861.870983pt;}
.yc{bottom:864.580160pt;}
.y117{bottom:868.901013pt;}
.y3a6{bottom:870.181177pt;}
.y1a3{bottom:871.460531pt;}
.y1a0{bottom:872.580322pt;}
.y22c{bottom:872.899984pt;}
.y46f{bottom:873.379964pt;}
.y328{bottom:873.831950pt;}
.yac{bottom:873.838243pt;}
.ye1{bottom:873.848488pt;}
.y2ca{bottom:873.852539pt;}
.y262{bottom:873.858480pt;}
.y74{bottom:873.858522pt;}
.y1f6{bottom:873.859131pt;}
.y49b{bottom:873.861594pt;}
.y3e4{bottom:873.864619pt;}
.y428{bottom:873.870833pt;}
.ya{bottom:875.139976pt;}
.y116{bottom:882.180711pt;}
.y3a5{bottom:883.460875pt;}
.y1a2{bottom:884.899984pt;}
.y49a{bottom:885.701192pt;}
.y3e3{bottom:885.704217pt;}
.y427{bottom:885.710431pt;}
.y19f{bottom:885.860026pt;}
.y46e{bottom:889.219971pt;}
.y327{bottom:889.672445pt;}
.yab{bottom:889.678743pt;}
.ye0{bottom:889.688988pt;}
.y2c9{bottom:889.693034pt;}
.y261{bottom:889.698975pt;}
.y73{bottom:889.699022pt;}
.y1f5{bottom:889.699626pt;}
.y22b{bottom:890.500000pt;}
.y9{bottom:891.140022pt;}
.y115{bottom:895.460408pt;}
.y3a4{bottom:896.740572pt;}
.y499{bottom:897.701042pt;}
.y3e2{bottom:897.704067pt;}
.y426{bottom:897.710281pt;}
.y19e{bottom:902.500000pt;}
.y46d{bottom:905.219971pt;}
.y326{bottom:905.672607pt;}
.yaa{bottom:905.678915pt;}
.ydf{bottom:905.689161pt;}
.y2c8{bottom:905.693197pt;}
.y260{bottom:905.699137pt;}
.y72{bottom:905.699195pt;}
.y1f4{bottom:905.699788pt;}
.y8{bottom:906.979982pt;}
.y114{bottom:908.740106pt;}
.y2fc{bottom:909.059977pt;}
.y22a{bottom:909.060303pt;}
.y498{bottom:909.700892pt;}
.y3e1{bottom:909.703916pt;}
.y425{bottom:909.710131pt;}
.y3a3{bottom:910.020270pt;}
.y5{bottom:914.980894pt;}
.y19d{bottom:920.100016pt;}
.y46c{bottom:921.219971pt;}
.y325{bottom:921.672770pt;}
.ya9{bottom:921.679087pt;}
.yde{bottom:921.689333pt;}
.y2c7{bottom:921.693359pt;}
.y25f{bottom:921.699300pt;}
.y71{bottom:921.699367pt;}
.y1f3{bottom:921.700033pt;}
.y497{bottom:921.700741pt;}
.y3e0{bottom:921.703766pt;}
.y424{bottom:921.709980pt;}
.y229{bottom:922.340007pt;}
.y7{bottom:922.979982pt;}
.y3a2{bottom:923.299967pt;}
.y2fb{bottom:925.380615pt;}
.y4{bottom:928.260592pt;}
.y496{bottom:933.540339pt;}
.y3df{bottom:933.543364pt;}
.y423{bottom:933.549578pt;}
.y46b{bottom:937.059977pt;}
.y324{bottom:937.513265pt;}
.ya8{bottom:937.519587pt;}
.ydd{bottom:937.529833pt;}
.y2c6{bottom:937.533854pt;}
.y25e{bottom:937.539795pt;}
.y70{bottom:937.539867pt;}
.y19c{bottom:938.660319pt;}
.y6{bottom:938.980029pt;}
.y113{bottom:940.900315pt;}
.y3{bottom:941.540289pt;}
.y495{bottom:945.540189pt;}
.y3de{bottom:945.543214pt;}
.y422{bottom:945.549428pt;}
.y3a1{bottom:946.340007pt;}
.y1f2{bottom:950.819987pt;}
.y19b{bottom:951.940023pt;}
.y323{bottom:953.513428pt;}
.ya7{bottom:953.519760pt;}
.ydc{bottom:953.530005pt;}
.y2c5{bottom:953.534098pt;}
.y6f{bottom:953.540039pt;}
.y112{bottom:954.180013pt;}
.y2{bottom:954.819987pt;}
.y494{bottom:957.540039pt;}
.y3dd{bottom:957.543064pt;}
.y421{bottom:957.549278pt;}
.y1{bottom:989.860026pt;}
.y111{bottom:990.020020pt;}
.h10{height:18.995357pt;}
.h1a{height:19.029333pt;}
.h1c{height:19.669307pt;}
.h7{height:20.895159pt;}
.hd{height:32.406088pt;}
.h19{height:32.891667pt;}
.h1b{height:35.029333pt;}
.h18{height:36.243064pt;}
.h2{height:37.210347pt;}
.ha{height:40.298232pt;}
.h17{height:40.298964pt;}
.h14{height:40.301650pt;}
.h16{height:40.303603pt;}
.h12{height:40.304336pt;}
.h15{height:40.306207pt;}
.h13{height:40.323948pt;}
.h1{height:41.941709pt;}
.h3{height:42.015602pt;}
.h4{height:42.015735pt;}
.h5{height:42.015921pt;}
.h6{height:42.655895pt;}
.hf{height:43.571380pt;}
.h9{height:43.841510pt;}
.he{height:43.879263pt;}
.hb{height:45.779067pt;}
.hc{height:50.341091pt;}
.h11{height:50.433408pt;}
.h8{height:91.520000pt;}
.h0{height:1056.000000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xf{left:36.500000pt;}
.x2{left:68.019999pt;}
.x13{left:72.820002pt;}
.x8{left:73.779999pt;}
.x1{left:75.539998pt;}
.x10{left:79.380000pt;}
.xe{left:83.223071pt;}
.x17{left:198.739990pt;}
.x18{left:221.139994pt;}
.x14{left:259.699992pt;}
.x9{left:294.900004pt;}
.x1a{left:297.300008pt;}
.x3{left:298.579997pt;}
.x19{left:300.179993pt;}
.x11{left:302.418860pt;}
.x1b{left:303.860006pt;}
.xa{left:309.939608pt;}
.x15{left:324.179993pt;}
.xd{left:384.819987pt;}
.x16{left:443.859985pt;}
.x4{left:445.300008pt;}
.x7{left:471.220011pt;}
.x6{left:483.220011pt;}
.xb{left:521.619375pt;}
.x12{left:525.297962pt;}
.xc{left:536.660248pt;}
.x5{left:654.420003pt;}
}




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