
    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_7411919dbe626f3f259a3f83.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_36499a51fa10081ee2166447.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005371;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_9ecfe133162fa09d6bdaff2c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959961;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_27bdb3cbb166d5476fcc2aaf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.041000;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_d54b03dab3a30508ea666aac.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.931000;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_509d2bbae86e5e2c0622988e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.721000;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_394d78b4750db05a2ed6b4e3.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_10aa5432e94f1215daa2c5b8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.696000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a9605f75dc1fd7436fa1c1c7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.468000;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_3f147580d12be2169f656e77.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.721000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1f6dcc7dc916593455e5552f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_406b8dc85fcfc0768aa0bfe5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_292333c63d73ad3eaa4fb79c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_1d08c506d0623a1f2813a690.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.713000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_8c3312b7b5fb336e79e4918b.woff2')format("woff");}.fff{font-family:fff;line-height:0.728000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_5f2b22ef59473aa1f5715176.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.058000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_ddcd41028aefa08665521757.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.970000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_5fcf17618bc70dae8dd06927.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_68946124b59f83fe664d6181.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.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:ff14;src:url('chunks/assets/font_3f5cd6ef6b610b36949edfc3.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.721000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_bc3aaa7e970b0468e72b49bd.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.946000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_516802d058e178cbc1cbd73e.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.721000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_6c5a2a016c5e95c32bb84c85.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.954000;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);}
.v0{vertical-align:0.000000px;}
.ls32{letter-spacing:-1.248012px;}
.ls36{letter-spacing:-1.170012px;}
.ls35{letter-spacing:-1.152006px;}
.ls10{letter-spacing:-1.140011px;}
.ls38{letter-spacing:-1.122011px;}
.ls2e{letter-spacing:-1.098011px;}
.ls33{letter-spacing:-1.092011px;}
.ls2b{letter-spacing:-1.086011px;}
.ls39{letter-spacing:-1.074011px;}
.ls30{letter-spacing:-1.068011px;}
.ls2c{letter-spacing:-1.056011px;}
.ls34{letter-spacing:-1.050011px;}
.ls31{letter-spacing:-1.044010px;}
.ls2d{letter-spacing:-1.032010px;}
.ls54{letter-spacing:-0.963900px;}
.ls5c{letter-spacing:-0.942009px;}
.ls56{letter-spacing:-0.902700px;}
.ls11{letter-spacing:-0.888009px;}
.ls55{letter-spacing:-0.887400px;}
.ls5d{letter-spacing:-0.828008px;}
.ls12{letter-spacing:-0.726007px;}
.ls5e{letter-spacing:-0.690007px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000023px;}
.lsd{letter-spacing:0.000040px;}
.ls1{letter-spacing:0.054000px;}
.ls25{letter-spacing:0.059988px;}
.ls1e{letter-spacing:0.060001px;}
.ls4f{letter-spacing:0.102000px;}
.ls5{letter-spacing:0.119987px;}
.ls9{letter-spacing:0.119988px;}
.ls1f{letter-spacing:0.119999px;}
.ls48{letter-spacing:0.120012px;}
.ls15{letter-spacing:0.120047px;}
.ls41{letter-spacing:0.120059px;}
.ls6a{letter-spacing:0.153000px;}
.ls2{letter-spacing:0.162000px;}
.ls23{letter-spacing:0.179946px;}
.ls18{letter-spacing:0.179979px;}
.ls6{letter-spacing:0.179982px;}
.lsc{letter-spacing:0.179987px;}
.lsa{letter-spacing:0.179988px;}
.ls14{letter-spacing:0.180001px;}
.ls47{letter-spacing:0.180041px;}
.ls59{letter-spacing:0.180047px;}
.ls29{letter-spacing:0.204000px;}
.ls16{letter-spacing:0.239979px;}
.lsb{letter-spacing:0.239986px;}
.ls3{letter-spacing:0.240039px;}
.ls1d{letter-spacing:0.240046px;}
.ls61{letter-spacing:0.255000px;}
.ls20{letter-spacing:0.300001px;}
.ls3d{letter-spacing:0.359963px;}
.ls3f{letter-spacing:0.360023px;}
.ls45{letter-spacing:0.414004px;}
.ls3c{letter-spacing:0.426004px;}
.ls3e{letter-spacing:0.450005px;}
.ls67{letter-spacing:0.612000px;}
.ls68{letter-spacing:0.688500px;}
.ls66{letter-spacing:0.754800px;}
.ls57{letter-spacing:0.778490px;}
.ls5a{letter-spacing:0.868488px;}
.ls5b{letter-spacing:0.890988px;}
.ls1b{letter-spacing:0.895488px;}
.ls1a{letter-spacing:0.900000px;}
.lsf{letter-spacing:0.958487px;}
.ls1c{letter-spacing:0.985487px;}
.ls37{letter-spacing:11.832118px;}
.ls50{letter-spacing:12.189000px;}
.ls26{letter-spacing:12.336123px;}
.ls4e{letter-spacing:12.546000px;}
.ls4a{letter-spacing:13.380119px;}
.ls19{letter-spacing:13.500106px;}
.ls46{letter-spacing:14.160166px;}
.ls62{letter-spacing:14.229000px;}
.ls64{letter-spacing:14.280000px;}
.ls5f{letter-spacing:14.586000px;}
.ls4{letter-spacing:14.820166px;}
.ls40{letter-spacing:15.420179px;}
.ls22{letter-spacing:16.560166px;}
.ls2f{letter-spacing:16.680167px;}
.ls27{letter-spacing:16.740179px;}
.ls49{letter-spacing:17.100179px;}
.ls44{letter-spacing:17.460179px;}
.ls51{letter-spacing:17.940166px;}
.ls52{letter-spacing:18.120179px;}
.ls13{letter-spacing:18.120181px;}
.ls7{letter-spacing:18.480179px;}
.ls42{letter-spacing:18.840179px;}
.ls4d{letter-spacing:18.960166px;}
.ls4b{letter-spacing:18.960226px;}
.ls4c{letter-spacing:19.800239px;}
.ls43{letter-spacing:20.520179px;}
.ls28{letter-spacing:20.820179px;}
.ls69{letter-spacing:21.420000px;}
.ls3b{letter-spacing:21.720263px;}
.ls60{letter-spacing:21.726000px;}
.ls6c{letter-spacing:21.761700px;}
.ls6b{letter-spacing:22.134000px;}
.ls58{letter-spacing:22.680226px;}
.ls63{letter-spacing:23.103000px;}
.ls53{letter-spacing:25.260239px;}
.ls2a{letter-spacing:25.380226px;}
.ls3a{letter-spacing:25.602256px;}
.ls65{letter-spacing:27.387000px;}
.ls21{letter-spacing:28.662287px;}
.ls24{letter-spacing:30.360299px;}
.ls17{letter-spacing:33.540346px;}
.lse{letter-spacing:155.157968px;}
.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;}
}
.wsc8{word-spacing:-28.722287px;}
.ws124{word-spacing:-25.662257px;}
.ws1f1{word-spacing:-21.812700px;}
.ws69{word-spacing:-18.180182px;}
.ws10d{word-spacing:-16.740167px;}
.ws0{word-spacing:-13.986000px;}
.ws105{word-spacing:-12.396124px;}
.ws119{word-spacing:-11.892119px;}
.wsb8{word-spacing:-1.030486px;}
.ws205{word-spacing:-0.805800px;}
.ws206{word-spacing:-0.739500px;}
.ws140{word-spacing:-0.510005px;}
.ws2{word-spacing:-0.084000px;}
.wse4{word-spacing:-0.063001px;}
.ws25{word-spacing:-0.060001px;}
.wsb{word-spacing:-0.054000px;}
.ws133{word-spacing:-0.051000px;}
.ws22{word-spacing:-0.047999px;}
.ws38{word-spacing:-0.044999px;}
.ws3c{word-spacing:-0.041999px;}
.ws1{word-spacing:0.000000px;}
.ws49{word-spacing:0.666007px;}
.ws189{word-spacing:0.882009px;}
.ws113{word-spacing:1.188012px;}
.ws1df{word-spacing:9.945000px;}
.ws165{word-spacing:10.200000px;}
.ws1e0{word-spacing:10.251000px;}
.ws164{word-spacing:10.302000px;}
.ws1a0{word-spacing:10.404000px;}
.ws1e8{word-spacing:10.455000px;}
.ws1ad{word-spacing:10.506000px;}
.ws126{word-spacing:10.557000px;}
.ws181{word-spacing:10.694700px;}
.ws1e3{word-spacing:10.710000px;}
.wsa{word-spacing:10.746000px;}
.ws1e5{word-spacing:10.761000px;}
.ws1e4{word-spacing:10.812000px;}
.ws1b{word-spacing:10.854000px;}
.ws41{word-spacing:10.920109px;}
.ws214{word-spacing:11.016000px;}
.ws172{word-spacing:11.067000px;}
.wsc{word-spacing:11.124000px;}
.ws1ed{word-spacing:11.271000px;}
.ws20{word-spacing:11.279859px;}
.ws3d{word-spacing:11.297839px;}
.ws1eb{word-spacing:11.373000px;}
.ws1ec{word-spacing:11.475000px;}
.ws7a{word-spacing:11.506347px;}
.wsb9{word-spacing:11.524346px;}
.ws30{word-spacing:11.580116px;}
.ws3b{word-spacing:11.591834px;}
.ws3a{word-spacing:11.675833px;}
.ws19c{word-spacing:11.686344px;}
.ws19d{word-spacing:11.708844px;}
.ws208{word-spacing:11.730000px;}
.ws14{word-spacing:11.772000px;}
.ws207{word-spacing:11.781000px;}
.ws3e{word-spacing:11.801831px;}
.wse9{word-spacing:11.820118px;}
.ws1b4{word-spacing:11.832000px;}
.ws187{word-spacing:11.866342px;}
.wse7{word-spacing:11.940119px;}
.ws171{word-spacing:11.985000px;}
.ws108{word-spacing:12.000120px;}
.wse8{word-spacing:12.060121px;}
.ws1b5{word-spacing:12.087000px;}
.wsea{word-spacing:12.120121px;}
.ws1b2{word-spacing:12.138000px;}
.ws62{word-spacing:12.180122px;}
.ws1b1{word-spacing:12.189000px;}
.ws1b6{word-spacing:12.240000px;}
.ws1ea{word-spacing:12.291000px;}
.ws6a{word-spacing:12.300123px;}
.ws7{word-spacing:12.312000px;}
.ws16e{word-spacing:12.342000px;}
.ws188{word-spacing:12.360082px;}
.ws77{word-spacing:12.360124px;}
.ws1b0{word-spacing:12.393000px;}
.wsc1{word-spacing:12.420124px;}
.ws16f{word-spacing:12.444000px;}
.ws1e{word-spacing:12.464834px;}
.ws15f{word-spacing:12.480125px;}
.ws6b{word-spacing:12.540125px;}
.ws1de{word-spacing:12.546000px;}
.ws39{word-spacing:12.599832px;}
.ws120{word-spacing:12.600126px;}
.wsa4{word-spacing:12.660127px;}
.ws1dd{word-spacing:12.699000px;}
.ws182{word-spacing:12.720127px;}
.ws1a8{word-spacing:12.750000px;}
.ws107{word-spacing:12.780128px;}
.ws170{word-spacing:12.801000px;}
.wsd0{word-spacing:12.840128px;}
.ws134{word-spacing:12.852000px;}
.ws17e{word-spacing:12.900129px;}
.wsa5{word-spacing:12.960130px;}
.ws148{word-spacing:13.020130px;}
.ws132{word-spacing:13.056000px;}
.ws42{word-spacing:13.080131px;}
.ws1db{word-spacing:13.107000px;}
.wse0{word-spacing:13.140131px;}
.ws5c{word-spacing:13.200132px;}
.ws17d{word-spacing:13.200137px;}
.ws1f{word-spacing:13.247834px;}
.ws131{word-spacing:13.260000px;}
.wsc2{word-spacing:13.260124px;}
.ws24{word-spacing:13.260133px;}
.wsf3{word-spacing:13.320133px;}
.ws37{word-spacing:13.343850px;}
.ws1dc{word-spacing:13.362000px;}
.wsc3{word-spacing:13.380134px;}
.wsf{word-spacing:13.392000px;}
.ws26{word-spacing:13.440134px;}
.ws213{word-spacing:13.464000px;}
.ws10{word-spacing:13.500000px;}
.wsac{word-spacing:13.500135px;}
.ws212{word-spacing:13.515000px;}
.ws21{word-spacing:13.535831px;}
.wsbf{word-spacing:13.560136px;}
.ws200{word-spacing:13.566000px;}
.ws130{word-spacing:13.617000px;}
.wsad{word-spacing:13.620136px;}
.ws1f0{word-spacing:13.657800px;}
.ws1ef{word-spacing:13.668000px;}
.ws64{word-spacing:13.680137px;}
.ws84{word-spacing:13.740137px;}
.ws1da{word-spacing:13.770000px;}
.ws83{word-spacing:13.800138px;}
.ws116{word-spacing:13.806138px;}
.ws117{word-spacing:13.812132px;}
.ws1e6{word-spacing:13.821000px;}
.ws82{word-spacing:13.860139px;}
.ws1e7{word-spacing:13.872000px;}
.ws2e{word-spacing:13.920139px;}
.ws19a{word-spacing:13.923000px;}
.ws11a{word-spacing:13.950140px;}
.ws1b3{word-spacing:13.974000px;}
.ws159{word-spacing:13.980140px;}
.ws1a1{word-spacing:14.025000px;}
.wsd2{word-spacing:14.040140px;}
.ws135{word-spacing:14.076000px;}
.ws15a{word-spacing:14.100141px;}
.ws1d5{word-spacing:14.127000px;}
.ws1c{word-spacing:14.148000px;}
.ws168{word-spacing:14.178000px;}
.ws35{word-spacing:14.220142px;}
.ws1ac{word-spacing:14.229000px;}
.ws118{word-spacing:14.250142px;}
.ws128{word-spacing:14.280000px;}
.wsd7{word-spacing:14.280143px;}
.ws1d8{word-spacing:14.331000px;}
.ws20c{word-spacing:14.334600px;}
.wsdd{word-spacing:14.340143px;}
.ws127{word-spacing:14.382000px;}
.wsdc{word-spacing:14.400144px;}
.ws19b{word-spacing:14.433000px;}
.ws47{word-spacing:14.460145px;}
.ws137{word-spacing:14.520124px;}
.ws6c{word-spacing:14.520145px;}
.ws1d9{word-spacing:14.535000px;}
.wsbb{word-spacing:14.580146px;}
.ws1aa{word-spacing:14.586000px;}
.ws12c{word-spacing:14.640146px;}
.ws1ab{word-spacing:14.688000px;}
.ws144{word-spacing:14.700147px;}
.ws12b{word-spacing:14.760148px;}
.ws1c1{word-spacing:14.841000px;}
.ws143{word-spacing:14.880149px;}
.ws15d{word-spacing:14.880158px;}
.ws1c0{word-spacing:14.892000px;}
.ws15e{word-spacing:14.940149px;}
.ws1bf{word-spacing:14.943000px;}
.ws34{word-spacing:15.000150px;}
.ws160{word-spacing:15.060151px;}
.ws1d{word-spacing:15.066000px;}
.ws33{word-spacing:15.120151px;}
.ws1bc{word-spacing:15.147000px;}
.ws4f{word-spacing:15.180152px;}
.ws1ba{word-spacing:15.198000px;}
.ws74{word-spacing:15.240152px;}
.ws1bb{word-spacing:15.249000px;}
.ws6{word-spacing:15.282000px;}
.ws1c4{word-spacing:15.300000px;}
.ws73{word-spacing:15.300153px;}
.ws4b{word-spacing:15.360154px;}
.ws23{word-spacing:15.420154px;}
.ws204{word-spacing:15.504000px;}
.ws151{word-spacing:15.540155px;}
.ws12d{word-spacing:15.600156px;}
.wsa7{word-spacing:15.660157px;}
.ws106{word-spacing:15.720157px;}
.ws191{word-spacing:15.780158px;}
.ws17{word-spacing:15.822000px;}
.ws2a{word-spacing:15.840158px;}
.wsfe{word-spacing:15.900159px;}
.ws1f9{word-spacing:15.912000px;}
.wse{word-spacing:15.930000px;}
.ws72{word-spacing:15.960160px;}
.ws1fe{word-spacing:15.963000px;}
.ws1f8{word-spacing:16.014000px;}
.wsfc{word-spacing:16.020154px;}
.ws1ff{word-spacing:16.065000px;}
.wsd8{word-spacing:16.080159px;}
.ws16{word-spacing:16.092000px;}
.wsfd{word-spacing:16.140161px;}
.ws1fa{word-spacing:16.167000px;}
.ws1a{word-spacing:16.200000px;}
.wsa8{word-spacing:16.200162px;}
.ws9{word-spacing:16.254000px;}
.wsd9{word-spacing:16.260163px;}
.wsdb{word-spacing:16.260168px;}
.ws1a7{word-spacing:16.269000px;}
.ws1e9{word-spacing:16.320000px;}
.ws173{word-spacing:16.320133px;}
.wsee{word-spacing:16.320163px;}
.ws167{word-spacing:16.371000px;}
.ws174{word-spacing:16.380164px;}
.ws1a6{word-spacing:16.422000px;}
.ws46{word-spacing:16.428164px;}
.ws43{word-spacing:16.440164px;}
.ws166{word-spacing:16.473000px;}
.ws75{word-spacing:16.500165px;}
.ws51{word-spacing:16.500187px;}
.ws50{word-spacing:16.560166px;}
.ws15c{word-spacing:16.560176px;}
.ws17f{word-spacing:16.569900px;}
.ws1cd{word-spacing:16.575000px;}
.ws59{word-spacing:16.620137px;}
.ws2f{word-spacing:16.620166px;}
.ws209{word-spacing:16.626000px;}
.ws1ca{word-spacing:16.677000px;}
.ws52{word-spacing:16.680143px;}
.ws8d{word-spacing:16.680167px;}
.wsc4{word-spacing:16.680194px;}
.ws1ee{word-spacing:16.728000px;}
.ws44{word-spacing:16.740167px;}
.ws1ce{word-spacing:16.779000px;}
.ws180{word-spacing:16.799400px;}
.ws45{word-spacing:16.800168px;}
.ws5a{word-spacing:16.860169px;}
.ws1cc{word-spacing:16.881000px;}
.wsff{word-spacing:16.920154px;}
.ws5b{word-spacing:16.920169px;}
.ws1cb{word-spacing:16.932000px;}
.ws101{word-spacing:16.980170px;}
.ws9d{word-spacing:17.040170px;}
.ws1c8{word-spacing:17.136000px;}
.ws196{word-spacing:17.160151px;}
.ws197{word-spacing:17.160172px;}
.ws19e{word-spacing:17.187000px;}
.wsa3{word-spacing:17.220172px;}
.ws155{word-spacing:17.280173px;}
.ws1c9{word-spacing:17.289000px;}
.wsba{word-spacing:17.325165px;}
.ws1a9{word-spacing:17.340000px;}
.ws154{word-spacing:17.340173px;}
.ws76{word-spacing:17.388166px;}
.ws1f7{word-spacing:17.391000px;}
.ws18e{word-spacing:17.400174px;}
.ws19f{word-spacing:17.442000px;}
.ws5{word-spacing:17.451166px;}
.ws11d{word-spacing:17.454175px;}
.ws176{word-spacing:17.460175px;}
.ws156{word-spacing:17.520175px;}
.ws1a3{word-spacing:17.544000px;}
.wsb2{word-spacing:17.575875px;}
.wse3{word-spacing:17.577167px;}
.wsb1{word-spacing:17.580176px;}
.wse5{word-spacing:17.640168px;}
.ws81{word-spacing:17.640176px;}
.ws1a2{word-spacing:17.646000px;}
.ws3f{word-spacing:17.700177px;}
.ws19{word-spacing:17.712000px;}
.ws1a4{word-spacing:17.734200px;}
.ws1f5{word-spacing:17.748000px;}
.ws11c{word-spacing:17.772178px;}
.ws18d{word-spacing:17.820173px;}
.ws157{word-spacing:17.820178px;}
.ws1a5{word-spacing:17.850000px;}
.ws18b{word-spacing:17.880179px;}
.ws1f6{word-spacing:17.901000px;}
.ws11b{word-spacing:17.922179px;}
.ws68{word-spacing:17.940179px;}
.ws56{word-spacing:18.000180px;}
.ws1b7{word-spacing:18.003000px;}
.wsdf{word-spacing:18.060181px;}
.ws115{word-spacing:18.090181px;}
.ws6d{word-spacing:18.120181px;}
.ws1b9{word-spacing:18.207000px;}
.ws6e{word-spacing:18.240167px;}
.ws70{word-spacing:18.240182px;}
.wsf4{word-spacing:18.300183px;}
.ws112{word-spacing:18.300201px;}
.ws1b8{word-spacing:18.309000px;}
.wsd3{word-spacing:18.360184px;}
.ws10e{word-spacing:18.372194px;}
.ws31{word-spacing:18.420184px;}
.ws114{word-spacing:18.432184px;}
.ws216{word-spacing:18.462000px;}
.ws6f{word-spacing:18.480185px;}
.ws71{word-spacing:18.540185px;}
.ws98{word-spacing:18.600186px;}
.ws110{word-spacing:18.648186px;}
.wsec{word-spacing:18.660187px;}
.ws20e{word-spacing:18.717000px;}
.wsce{word-spacing:18.720187px;}
.ws10f{word-spacing:18.768188px;}
.ws147{word-spacing:18.780188px;}
.ws4{word-spacing:18.816000px;}
.ws4e{word-spacing:18.840188px;}
.ws210{word-spacing:18.870000px;}
.ws18{word-spacing:18.900000px;}
.ws4d{word-spacing:18.900189px;}
.ws67{word-spacing:18.960190px;}
.ws20f{word-spacing:18.972000px;}
.wscf{word-spacing:19.020190px;}
.ws211{word-spacing:19.023000px;}
.wsa6{word-spacing:19.080191px;}
.ws142{word-spacing:19.260190px;}
.ws2c{word-spacing:19.260193px;}
.ws2d{word-spacing:19.320193px;}
.ws36{word-spacing:19.380194px;}
.ws4c{word-spacing:19.440194px;}
.ws158{word-spacing:19.500195px;}
.ws169{word-spacing:19.560190px;}
.ws152{word-spacing:19.560196px;}
.ws4a{word-spacing:19.620196px;}
.ws153{word-spacing:19.680197px;}
.wsef{word-spacing:19.740197px;}
.ws8f{word-spacing:19.860199px;}
.wsf0{word-spacing:19.920199px;}
.ws14b{word-spacing:19.923109px;}
.wseb{word-spacing:19.980200px;}
.ws8e{word-spacing:20.040200px;}
.ws8c{word-spacing:20.100201px;}
.wsa2{word-spacing:20.160202px;}
.ws1c6{word-spacing:20.187600px;}
.ws14c{word-spacing:20.220202px;}
.ws32{word-spacing:20.280203px;}
.ws13e{word-spacing:20.334203px;}
.ws121{word-spacing:20.340195px;}
.wse6{word-spacing:20.340203px;}
.ws1c7{word-spacing:20.400000px;}
.ws14f{word-spacing:20.400204px;}
.ws10b{word-spacing:20.412204px;}
.ws14a{word-spacing:20.460205px;}
.ws9a{word-spacing:20.520205px;}
.ws1e2{word-spacing:20.553000px;}
.ws9b{word-spacing:20.580206px;}
.ws1e1{word-spacing:20.604000px;}
.ws8{word-spacing:20.628000px;}
.wsed{word-spacing:20.640206px;}
.ws7c{word-spacing:20.700163px;}
.ws7d{word-spacing:20.700207px;}
.ws1c5{word-spacing:20.706000px;}
.ws7b{word-spacing:20.760181px;}
.ws13f{word-spacing:20.820208px;}
.ws10c{word-spacing:20.838208px;}
.ws18c{word-spacing:20.928209px;}
.wsb3{word-spacing:20.940209px;}
.ws104{word-spacing:21.000210px;}
.ws175{word-spacing:21.060211px;}
.ws60{word-spacing:21.120211px;}
.ws102{word-spacing:21.162263px;}
.ws5f{word-spacing:21.180212px;}
.ws1af{word-spacing:21.318000px;}
.ws94{word-spacing:21.360214px;}
.ws20a{word-spacing:21.369000px;}
.ws20b{word-spacing:21.420000px;}
.wsf5{word-spacing:21.420214px;}
.ws1ae{word-spacing:21.471000px;}
.ws57{word-spacing:21.480215px;}
.ws1f4{word-spacing:21.573000px;}
.ws15{word-spacing:21.600000px;}
.ws95{word-spacing:21.600214px;}
.ws58{word-spacing:21.600216px;}
.ws48{word-spacing:21.660217px;}
.ws1f3{word-spacing:21.675000px;}
.ws27{word-spacing:21.720217px;}
.ws215{word-spacing:21.777000px;}
.ws17c{word-spacing:21.780218px;}
.ws96{word-spacing:21.840218px;}
.wsbd{word-spacing:21.900219px;}
.ws1f2{word-spacing:21.930000px;}
.wsbc{word-spacing:21.960220px;}
.ws20d{word-spacing:21.981000px;}
.ws1d7{word-spacing:22.032000px;}
.ws1d6{word-spacing:22.083000px;}
.ws17b{word-spacing:22.140221px;}
.ws201{word-spacing:22.185000px;}
.wsda{word-spacing:22.200222px;}
.ws2b{word-spacing:22.260223px;}
.ws203{word-spacing:22.338000px;}
.ws40{word-spacing:22.380224px;}
.ws202{word-spacing:22.389000px;}
.ws18f{word-spacing:22.560226px;}
.ws97{word-spacing:22.740227px;}
.ws1cf{word-spacing:22.797000px;}
.ws9c{word-spacing:22.800228px;}
.ws1d1{word-spacing:22.848000px;}
.wsf2{word-spacing:22.860229px;}
.ws1d0{word-spacing:22.899000px;}
.ws11f{word-spacing:22.920229px;}
.ws190{word-spacing:22.980230px;}
.ws29{word-spacing:23.040230px;}
.wsbe{word-spacing:23.100231px;}
.ws13d{word-spacing:23.160232px;}
.wsf6{word-spacing:23.280233px;}
.wsab{word-spacing:23.340233px;}
.ws3{word-spacing:23.352000px;}
.wsc5{word-spacing:23.400234px;}
.ws122{word-spacing:23.520235px;}
.wsb5{word-spacing:23.580236px;}
.ws185{word-spacing:23.760238px;}
.ws1bd{word-spacing:23.817000px;}
.ws86{word-spacing:23.820238px;}
.ws87{word-spacing:23.880239px;}
.ws85{word-spacing:23.940239px;}
.ws1be{word-spacing:24.021000px;}
.ws141{word-spacing:24.120241px;}
.ws28{word-spacing:24.180242px;}
.ws1d3{word-spacing:24.225000px;}
.ws13{word-spacing:24.300000px;}
.ws12{word-spacing:24.408000px;}
.ws5d{word-spacing:24.420244px;}
.ws1d4{word-spacing:24.429000px;}
.ws1d2{word-spacing:24.480000px;}
.ws100{word-spacing:24.480245px;}
.ws5e{word-spacing:24.540245px;}
.ws145{word-spacing:24.660247px;}
.wsf1{word-spacing:24.720247px;}
.wsc0{word-spacing:24.840248px;}
.wsd{word-spacing:24.948000px;}
.ws8a{word-spacing:24.960250px;}
.ws8b{word-spacing:25.020250px;}
.ws89{word-spacing:25.080240px;}
.ws16c{word-spacing:25.080251px;}
.ws12e{word-spacing:25.140251px;}
.ws11{word-spacing:25.164000px;}
.ws12f{word-spacing:25.260253px;}
.ws11e{word-spacing:25.320253px;}
.ws125{word-spacing:25.380254px;}
.ws123{word-spacing:25.440254px;}
.ws63{word-spacing:25.560256px;}
.ws198{word-spacing:25.680257px;}
.ws1c2{word-spacing:25.704000px;}
.ws1c3{word-spacing:25.755000px;}
.ws183{word-spacing:25.800258px;}
.ws146{word-spacing:25.860259px;}
.ws199{word-spacing:25.920259px;}
.ws111{word-spacing:26.208262px;}
.ws136{word-spacing:26.220262px;}
.wsde{word-spacing:26.280263px;}
.wsb6{word-spacing:26.340263px;}
.ws129{word-spacing:26.400264px;}
.ws18a{word-spacing:26.460265px;}
.ws161{word-spacing:26.520265px;}
.ws12a{word-spacing:26.580266px;}
.ws13c{word-spacing:26.640266px;}
.ws162{word-spacing:26.760268px;}
.ws163{word-spacing:26.820268px;}
.wse1{word-spacing:27.060271px;}
.wse2{word-spacing:27.180272px;}
.ws1fb{word-spacing:27.183000px;}
.ws1fd{word-spacing:27.234000px;}
.ws99{word-spacing:27.240272px;}
.ws54{word-spacing:27.300273px;}
.ws55{word-spacing:27.360274px;}
.ws53{word-spacing:27.480275px;}
.ws1fc{word-spacing:27.489000px;}
.ws177{word-spacing:27.720302px;}
.ws178{word-spacing:27.840278px;}
.wsd6{word-spacing:27.900279px;}
.wsd4{word-spacing:28.080281px;}
.ws179{word-spacing:28.140281px;}
.wsd5{word-spacing:28.200282px;}
.wsb4{word-spacing:28.260283px;}
.wsc7{word-spacing:28.440284px;}
.wsc9{word-spacing:28.560314px;}
.ws79{word-spacing:28.620286px;}
.wsca{word-spacing:28.800288px;}
.ws78{word-spacing:28.860289px;}
.ws65{word-spacing:28.920289px;}
.ws66{word-spacing:28.980290px;}
.ws138{word-spacing:29.040290px;}
.ws88{word-spacing:29.100291px;}
.ws14d{word-spacing:29.160260px;}
.ws14e{word-spacing:29.160292px;}
.ws194{word-spacing:29.160322px;}
.wsc6{word-spacing:29.220292px;}
.ws90{word-spacing:29.280293px;}
.ws195{word-spacing:29.400275px;}
.wsb7{word-spacing:29.520295px;}
.ws150{word-spacing:29.580296px;}
.wsd1{word-spacing:29.640296px;}
.ws103{word-spacing:29.760298px;}
.ws10a{word-spacing:29.796298px;}
.ws16d{word-spacing:29.820298px;}
.ws109{word-spacing:29.826298px;}
.ws91{word-spacing:29.880299px;}
.wsf9{word-spacing:30.000273px;}
.wsf7{word-spacing:30.120296px;}
.wsfa{word-spacing:30.120301px;}
.ws17a{word-spacing:30.180302px;}
.wsf8{word-spacing:30.300303px;}
.ws15b{word-spacing:30.360304px;}
.wsfb{word-spacing:30.420304px;}
.ws193{word-spacing:30.480305px;}
.wsb0{word-spacing:30.540305px;}
.ws192{word-spacing:30.600306px;}
.ws7e{word-spacing:30.960289px;}
.ws13a{word-spacing:31.026310px;}
.ws7f{word-spacing:31.140311px;}
.ws80{word-spacing:31.260313px;}
.wscb{word-spacing:31.380314px;}
.ws16b{word-spacing:31.440314px;}
.wscc{word-spacing:31.500315px;}
.ws149{word-spacing:31.560316px;}
.ws16a{word-spacing:31.620316px;}
.wscd{word-spacing:31.680317px;}
.ws139{word-spacing:31.740317px;}
.ws13b{word-spacing:31.860319px;}
.ws61{word-spacing:31.920319px;}
.wsa1{word-spacing:33.300333px;}
.ws9e{word-spacing:33.420334px;}
.wsa0{word-spacing:33.540335px;}
.ws9f{word-spacing:33.720337px;}
.ws92{word-spacing:33.900339px;}
.ws93{word-spacing:33.960340px;}
.wsaa{word-spacing:36.240362px;}
.wsa9{word-spacing:36.420364px;}
.wsae{word-spacing:38.220382px;}
.wsaf{word-spacing:38.280383px;}
.ws184{word-spacing:40.320403px;}
.ws186{word-spacing:155.158876px;}
._18{margin-left:-28.404267px;}
._1c{margin-left:-24.684264px;}
._21{margin-left:-21.746400px;}
._12{margin-left:-18.720006px;}
._1a{margin-left:-17.040351px;}
._1b{margin-left:-13.517758px;}
._19{margin-left:-12.060014px;}
._0{margin-left:-3.726000px;}
._1{margin-left:-2.160000px;}
._2{margin-left:-1.080000px;}
._d{width:1.919823px;}
._1e{width:8.364000px;}
._c{width:10.625848px;}
._1d{width:11.730000px;}
._5{width:13.068000px;}
._3{width:14.148000px;}
._9{width:15.336578px;}
._6{width:16.500165px;}
._e{width:17.640133px;}
._a{width:19.200021px;}
._7{width:20.724447px;}
._8{width:21.960220px;}
._4{width:23.976000px;}
._13{width:25.320274px;}
._10{width:26.820268px;}
._14{width:27.960280px;}
._20{width:28.980290px;}
._11{width:30.120301px;}
._1f{width:31.500315px;}
._f{width:33.000330px;}
._15{width:35.401730px;}
._16{width:39.480400px;}
._b{width:99.098359px;}
._17{width:159.673925px;}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(16,20,126);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:41.999400px;}
.fs9{font-size:44.999400px;}
.fsa{font-size:47.999400px;}
.fs2{font-size:48.000000px;}
.fsc{font-size:51.000000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs6{font-size:60.000600px;}
.fs8{font-size:63.000600px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs1{font-size:90.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:18.112560px;}
.y4a{bottom:30.103395px;}
.y49{bottom:42.094215px;}
.y48{bottom:54.085050px;}
.y156{bottom:64.200660px;}
.ye0{bottom:64.201200px;}
.y109{bottom:64.202970px;}
.y7c{bottom:64.204260px;}
.y178{bottom:64.204800px;}
.yb7{bottom:64.205400px;}
.y88{bottom:64.540650px;}
.y117{bottom:64.542150px;}
.y2{bottom:67.597501px;}
.y45{bottom:70.582650px;}
.y155{bottom:82.230840px;}
.ydf{bottom:82.231380px;}
.y108{bottom:82.233150px;}
.y7b{bottom:82.234440px;}
.yb6{bottom:82.235580px;}
.y87{bottom:82.570830px;}
.y116{bottom:82.572330px;}
.y1{bottom:84.097501px;}
.y177{bottom:91.247250px;}
.y1ad{bottom:99.004200px;}
.y154{bottom:100.171020px;}
.yde{bottom:100.171560px;}
.y7a{bottom:100.174620px;}
.yb5{bottom:100.175760px;}
.y86{bottom:100.601010px;}
.y115{bottom:100.602510px;}
.y44{bottom:105.703080px;}
.y107{bottom:110.797350px;}
.y1ac{bottom:113.972700px;}
.y153{bottom:118.201200px;}
.ydd{bottom:118.201740px;}
.y79{bottom:118.204800px;}
.yb4{bottom:118.205940px;}
.y85{bottom:118.541190px;}
.y114{bottom:118.542690px;}
.y43{bottom:123.643260px;}
.y1e6{bottom:124.380000px;}
.y106{bottom:125.765850px;}
.y1ab{bottom:129.030450px;}
.y152{bottom:136.231380px;}
.ydc{bottom:136.231920px;}
.y134{bottom:136.236120px;}
.yb3{bottom:136.242120px;}
.y84{bottom:136.571370px;}
.y113{bottom:136.572870px;}
.y176{bottom:137.338650px;}
.y1e5{bottom:139.437750px;}
.y105{bottom:140.823600px;}
.y42{bottom:141.673440px;}
.y1aa{bottom:143.998950px;}
.y78{bottom:145.162200px;}
.y151{bottom:154.171560px;}
.ydb{bottom:154.172100px;}
.y133{bottom:154.176300px;}
.yb2{bottom:154.182300px;}
.y1e4{bottom:154.406250px;}
.y83{bottom:154.593300px;}
.y112{bottom:154.603050px;}
.y104{bottom:155.792100px;}
.y1a9{bottom:158.967450px;}
.y41{bottom:159.703620px;}
.y175{bottom:164.296050px;}
.y1e3{bottom:169.374750px;}
.yb1{bottom:172.197480px;}
.y150{bottom:172.201740px;}
.yda{bottom:172.202280px;}
.y82{bottom:172.533480px;}
.y111{bottom:172.543230px;}
.y1a8{bottom:174.025200px;}
.y40{bottom:177.643800px;}
.y132{bottom:181.211550px;}
.y103{bottom:184.360560px;}
.y1e2{bottom:184.432500px;}
.y1a7{bottom:188.993700px;}
.yb0{bottom:190.227660px;}
.y14f{bottom:190.231920px;}
.yd9{bottom:190.232460px;}
.y81{bottom:190.563660px;}
.y77{bottom:190.572660px;}
.y110{bottom:190.573410px;}
.y3f{bottom:195.673980px;}
.y131{bottom:196.180050px;}
.y1e1{bottom:199.401000px;}
.y102{bottom:202.390740px;}
.y1a6{bottom:204.051450px;}
.yaf{bottom:208.167840px;}
.y14e{bottom:208.172100px;}
.yd8{bottom:208.172640px;}
.y80{bottom:208.593840px;}
.y76{bottom:208.602840px;}
.y10f{bottom:208.603590px;}
.y174{bottom:210.470850px;}
.y130{bottom:211.237800px;}
.y3e{bottom:213.704160px;}
.y1e0{bottom:214.369500px;}
.y1a5{bottom:219.019950px;}
.y101{bottom:220.420920px;}
.y173{bottom:225.439350px;}
.yae{bottom:226.198020px;}
.yd7{bottom:226.200930px;}
.y14d{bottom:226.202280px;}
.y16f{bottom:226.202820px;}
.y7f{bottom:226.534020px;}
.y75{bottom:226.543020px;}
.y10e{bottom:226.543770px;}
.y1df{bottom:229.427250px;}
.y3d{bottom:231.644340px;}
.y1a4{bottom:233.988450px;}
.y12f{bottom:238.189590px;}
.y100{bottom:238.361100px;}
.yad{bottom:244.228200px;}
.yd6{bottom:244.231110px;}
.y14c{bottom:244.232460px;}
.y16e{bottom:244.233000px;}
.y1de{bottom:244.395750px;}
.y7e{bottom:244.564200px;}
.y10d{bottom:244.573950px;}
.y74{bottom:244.579200px;}
.y1a3{bottom:249.046200px;}
.y3c{bottom:249.674520px;}
.y172{bottom:252.481800px;}
.y12e{bottom:256.219770px;}
.yff{bottom:256.391280px;}
.y1dd{bottom:259.453500px;}
.yac{bottom:262.168380px;}
.yd5{bottom:262.171290px;}
.y14b{bottom:262.172640px;}
.y73{bottom:262.594380px;}
.y10c{bottom:262.604130px;}
.y1a2{bottom:264.014700px;}
.y3b{bottom:267.704700px;}
.y16d{bottom:271.190550px;}
.y12d{bottom:274.159950px;}
.y1dc{bottom:274.347900px;}
.yfe{bottom:274.421460px;}
.y1a1{bottom:279.072450px;}
.yab{bottom:280.198560px;}
.yd4{bottom:280.201470px;}
.y14a{bottom:280.203540px;}
.y72{bottom:280.534560px;}
.y10b{bottom:280.544310px;}
.y3a{bottom:285.644880px;}
.y1db{bottom:289.316400px;}
.y12c{bottom:292.190130px;}
.yfd{bottom:292.361640px;}
.y1a0{bottom:294.040950px;}
.yaa{bottom:298.228740px;}
.yd3{bottom:298.231650px;}
.y149{bottom:298.233720px;}
.y71{bottom:298.564740px;}
.y10a{bottom:298.574490px;}
.y39{bottom:303.675060px;}
.y1da{bottom:304.374150px;}
.y19f{bottom:309.009450px;}
.y12b{bottom:310.220310px;}
.yfc{bottom:310.391820px;}
.ya9{bottom:316.168920px;}
.yd2{bottom:316.171830px;}
.y70{bottom:316.594920px;}
.y171{bottom:316.604670px;}
.y1d9{bottom:319.342650px;}
.y16c{bottom:319.572780px;}
.y38{bottom:321.705240px;}
.y19e{bottom:324.067200px;}
.y148{bottom:325.188990px;}
.y12a{bottom:328.160490px;}
.yfb{bottom:328.422000px;}
.ya8{bottom:334.199100px;}
.yd1{bottom:334.202010px;}
.y1d8{bottom:334.400400px;}
.y6f{bottom:334.535100px;}
.y170{bottom:334.550100px;}
.y16b{bottom:337.602960px;}
.y19d{bottom:339.035700px;}
.y37{bottom:339.645420px;}
.y129{bottom:346.190670px;}
.y1d7{bottom:349.368900px;}
.ya7{bottom:352.229280px;}
.yd0{bottom:352.232190px;}
.y6e{bottom:352.565280px;}
.y19c{bottom:354.093450px;}
.y16a{bottom:355.543140px;}
.yfa{bottom:356.987850px;}
.y36{bottom:357.675600px;}
.y14{bottom:363.562501px;}
.y128{bottom:364.220850px;}
.y1d6{bottom:364.337400px;}
.y19b{bottom:369.061950px;}
.ya6{bottom:370.169460px;}
.ycf{bottom:370.172370px;}
.y6d{bottom:370.595460px;}
.yf9{bottom:371.956350px;}
.y169{bottom:373.573320px;}
.y147{bottom:379.189530px;}
.y1d5{bottom:379.395150px;}
.y127{bottom:382.161030px;}
.y19a{bottom:384.030450px;}
.y35{bottom:384.633000px;}
.yf8{bottom:387.014100px;}
.ya5{bottom:388.199640px;}
.yce{bottom:388.202550px;}
.y6c{bottom:388.535640px;}
.y168{bottom:391.603500px;}
.y1d4{bottom:394.363650px;}
.y146{bottom:397.219710px;}
.y199{bottom:399.088200px;}
.y126{bottom:400.191210px;}
.ya4{bottom:406.229820px;}
.ycd{bottom:406.232730px;}
.y6b{bottom:406.565820px;}
.y1d3{bottom:409.421400px;}
.y167{bottom:409.543680px;}
.y198{bottom:413.989950px;}
.y145{bottom:415.159890px;}
.yf7{bottom:415.583520px;}
.y125{bottom:418.221390px;}
.ya3{bottom:424.170000px;}
.ycc{bottom:424.172910px;}
.y1d2{bottom:424.389900px;}
.y6a{bottom:424.596000px;}
.y166{bottom:427.573860px;}
.y13{bottom:427.912501px;}
.y197{bottom:428.958450px;}
.y144{bottom:433.190070px;}
.yf6{bottom:433.613700px;}
.y124{bottom:436.161570px;}
.y1d1{bottom:439.358400px;}
.ya2{bottom:442.200180px;}
.ycb{bottom:442.203090px;}
.y69{bottom:442.536180px;}
.y196{bottom:444.016200px;}
.y165{bottom:445.604040px;}
.y2e{bottom:450.484350px;}
.y143{bottom:451.220250px;}
.yf5{bottom:451.553880px;}
.y123{bottom:454.191750px;}
.y1d0{bottom:454.416150px;}
.y195{bottom:458.984700px;}
.ya1{bottom:460.230360px;}
.yca{bottom:460.233270px;}
.y68{bottom:460.566360px;}
.y164{bottom:463.544220px;}
.y2d{bottom:465.455850px;}
.y142{bottom:469.160430px;}
.y1cf{bottom:469.384650px;}
.yf4{bottom:469.584060px;}
.y122{bottom:472.221930px;}
.y194{bottom:474.042450px;}
.ya0{bottom:478.170540px;}
.yc9{bottom:478.173450px;}
.y67{bottom:478.596540px;}
.y2c{bottom:480.508350px;}
.y163{bottom:481.574400px;}
.y1ce{bottom:484.353150px;}
.y141{bottom:487.190610px;}
.yf3{bottom:487.614240px;}
.y193{bottom:489.010950px;}
.y121{bottom:490.162110px;}
.y12{bottom:492.262501px;}
.y2b{bottom:495.479850px;}
.y9f{bottom:496.200720px;}
.yc8{bottom:496.203630px;}
.y66{bottom:496.536720px;}
.y1cd{bottom:499.410900px;}
.y162{bottom:499.604580px;}
.y192{bottom:503.979450px;}
.y140{bottom:505.220790px;}
.yf2{bottom:505.554420px;}
.y120{bottom:508.192290px;}
.y2a{bottom:510.451350px;}
.y9e{bottom:514.230900px;}
.yc7{bottom:514.233810px;}
.y1cc{bottom:514.379400px;}
.y65{bottom:514.566900px;}
.y161{bottom:517.544760px;}
.y191{bottom:519.037200px;}
.y13f{bottom:523.160970px;}
.yf1{bottom:523.584600px;}
.y29{bottom:525.503850px;}
.y11f{bottom:526.222470px;}
.y1cb{bottom:529.437150px;}
.y9d{bottom:532.171080px;}
.yc6{bottom:532.173990px;}
.y64{bottom:532.597080px;}
.y190{bottom:534.005700px;}
.y160{bottom:535.574940px;}
.y28{bottom:540.475350px;}
.y13e{bottom:541.191150px;}
.yf0{bottom:541.614780px;}
.y11e{bottom:544.162650px;}
.y1ca{bottom:544.405650px;}
.y18f{bottom:549.063450px;}
.y9c{bottom:550.201260px;}
.yc5{bottom:550.204170px;}
.y63{bottom:550.537260px;}
.y15f{bottom:553.605120px;}
.y27{bottom:555.527850px;}
.y13d{bottom:559.221330px;}
.y1c9{bottom:559.374150px;}
.y11{bottom:559.543500px;}
.yef{bottom:559.554960px;}
.y11d{bottom:562.192830px;}
.y18e{bottom:564.031950px;}
.y9b{bottom:568.231440px;}
.yc4{bottom:568.234350px;}
.y62{bottom:568.567440px;}
.y26{bottom:570.499350px;}
.y15e{bottom:571.545300px;}
.y1c8{bottom:574.431900px;}
.y13c{bottom:577.161510px;}
.yee{bottom:577.585140px;}
.y18d{bottom:579.000450px;}
.y11c{bottom:580.223010px;}
.y25{bottom:585.470850px;}
.y9a{bottom:586.171620px;}
.yc3{bottom:586.174530px;}
.y61{bottom:586.597620px;}
.y1c7{bottom:589.400400px;}
.y15d{bottom:589.575480px;}
.y10{bottom:593.893501px;}
.y18c{bottom:594.058200px;}
.y13b{bottom:595.191690px;}
.yed{bottom:595.615320px;}
.y11b{bottom:598.163190px;}
.y24{bottom:600.523350px;}
.y99{bottom:604.201800px;}
.yc2{bottom:604.204710px;}
.y1c6{bottom:604.458150px;}
.y60{bottom:604.537800px;}
.y15c{bottom:607.605660px;}
.yf{bottom:608.893501px;}
.y18b{bottom:609.026700px;}
.y13a{bottom:613.221870px;}
.yec{bottom:613.555500px;}
.y23{bottom:615.494850px;}
.y11a{bottom:616.192920px;}
.y1c5{bottom:619.352550px;}
.y98{bottom:622.231980px;}
.yc1{bottom:622.234890px;}
.y5f{bottom:622.567980px;}
.ye{bottom:623.893500px;}
.y18a{bottom:624.084450px;}
.y15b{bottom:625.545840px;}
.y22{bottom:630.547350px;}
.y139{bottom:631.162050px;}
.yeb{bottom:631.585680px;}
.y119{bottom:634.223100px;}
.y1c4{bottom:634.321050px;}
.y189{bottom:639.052950px;}
.y97{bottom:640.172160px;}
.yc0{bottom:640.175070px;}
.y5e{bottom:640.598160px;}
.y15a{bottom:643.576020px;}
.y34{bottom:643.997895px;}
.y21{bottom:645.518850px;}
.y1c3{bottom:649.378800px;}
.yea{bottom:649.615860px;}
.y188{bottom:654.021450px;}
.y33{bottom:657.521715px;}
.y96{bottom:658.202340px;}
.ybf{bottom:658.205250px;}
.y138{bottom:658.365750px;}
.y5d{bottom:658.538340px;}
.y20{bottom:660.490350px;}
.y118{bottom:661.178370px;}
.y159{bottom:661.606200px;}
.y1c2{bottom:664.347300px;}
.ye9{bottom:667.556040px;}
.y187{bottom:669.079200px;}
.y32{bottom:671.045550px;}
.y137{bottom:673.423500px;}
.y1f{bottom:675.542850px;}
.y95{bottom:676.232520px;}
.ybe{bottom:676.235430px;}
.y5c{bottom:676.568520px;}
.y1c1{bottom:679.405050px;}
.y186{bottom:684.047700px;}
.y31{bottom:684.566850px;}
.ye8{bottom:685.586220px;}
.y136{bottom:688.392000px;}
.y158{bottom:688.557900px;}
.y1e{bottom:690.514350px;}
.y94{bottom:694.172700px;}
.ybd{bottom:694.175610px;}
.y1c0{bottom:694.373550px;}
.y5b{bottom:694.598700px;}
.y185{bottom:699.016200px;}
.y135{bottom:703.360500px;}
.y157{bottom:703.615650px;}
.ye7{bottom:703.616400px;}
.y1d{bottom:705.566850px;}
.yd{bottom:705.680989px;}
.y30{bottom:708.545265px;}
.y1bf{bottom:709.342050px;}
.y93{bottom:712.202880px;}
.ybc{bottom:712.205790px;}
.y5a{bottom:712.538880px;}
.y184{bottom:714.073950px;}
.y1c{bottom:720.538350px;}
.ye6{bottom:721.556580px;}
.y2f{bottom:722.069100px;}
.y1be{bottom:724.399800px;}
.y183{bottom:729.042450px;}
.y92{bottom:730.233060px;}
.ybb{bottom:730.235970px;}
.y59{bottom:730.569060px;}
.y1b{bottom:735.505350px;}
.yc{bottom:736.071004px;}
.y1bd{bottom:739.368300px;}
.ye5{bottom:739.586760px;}
.y91{bottom:748.173240px;}
.yba{bottom:748.176150px;}
.y58{bottom:748.599240px;}
.yb{bottom:754.130994px;}
.y1bc{bottom:754.426050px;}
.y182{bottom:756.084900px;}
.ye4{bottom:757.616940px;}
.y90{bottom:766.203420px;}
.y57{bottom:766.539420px;}
.y1bb{bottom:769.394550px;}
.ya{bottom:772.191006px;}
.yb9{bottom:775.222635px;}
.ye3{bottom:775.557120px;}
.y1a{bottom:779.130450px;}
.y8f{bottom:784.233600px;}
.y1ba{bottom:784.363050px;}
.y56{bottom:784.569600px;}
.y9{bottom:790.715993px;}
.yb8{bottom:793.162050px;}
.ye2{bottom:793.587300px;}
.y1b9{bottom:799.420800px;}
.y8e{bottom:802.173780px;}
.y55{bottom:802.599780px;}
.y19{bottom:806.853300px;}
.y181{bottom:810.068550px;}
.y1b8{bottom:814.389300px;}
.y8d{bottom:820.203960px;}
.y54{bottom:820.539960px;}
.ye1{bottom:820.544700px;}
.y180{bottom:825.037050px;}
.y1b7{bottom:829.357800px;}
.y18{bottom:835.340700px;}
.y8c{bottom:838.234140px;}
.y53{bottom:838.570140px;}
.y17f{bottom:840.094800px;}
.y8{bottom:843.615002px;}
.y1b6{bottom:844.415550px;}
.y17e{bottom:855.063300px;}
.y8b{bottom:856.174320px;}
.y52{bottom:856.600320px;}
.y1b5{bottom:859.384050px;}
.y17{bottom:859.406700px;}
.y17d{bottom:870.022050px;}
.y8a{bottom:874.204500px;}
.y1b4{bottom:874.441800px;}
.y51{bottom:874.540500px;}
.y16{bottom:883.388700px;}
.y17c{bottom:885.079800px;}
.y1b3{bottom:889.410300px;}
.y50{bottom:892.570680px;}
.y89{bottom:901.162050px;}
.y1b2{bottom:904.378800px;}
.y7{bottom:907.279504px;}
.y17b{bottom:907.532550px;}
.y4f{bottom:910.600860px;}
.y1b1{bottom:919.436550px;}
.y15{bottom:919.700550px;}
.y17a{bottom:922.590300px;}
.y4e{bottom:928.541040px;}
.y1b0{bottom:934.405050px;}
.y179{bottom:937.558800px;}
.y6{bottom:938.779498px;}
.y4d{bottom:946.571220px;}
.y1af{bottom:949.462800px;}
.y47{bottom:955.761180px;}
.y1ae{bottom:964.431300px;}
.y4c{bottom:964.601400px;}
.y46{bottom:969.193500px;}
.y5{bottom:970.279498px;}
.y7d{bottom:1004.995050px;}
.y4{bottom:1035.546001px;}
.y3{bottom:1165.122003px;}
.h19{height:30.029571px;}
.h10{height:30.824589px;}
.h18{height:32.174571px;}
.h12{height:34.319571px;}
.h17{height:34.607567px;}
.h1f{height:36.312000px;}
.h25{height:36.351000px;}
.h24{height:36.363000px;}
.h1e{height:36.516000px;}
.h26{height:36.579000px;}
.h27{height:36.608400px;}
.h4{height:36.726562px;}
.h28{height:36.812400px;}
.h1b{height:36.899508px;}
.hf{height:38.610000px;}
.h2{height:41.317383px;}
.h14{height:42.720427px;}
.h20{height:42.759427px;}
.h23{height:42.777548px;}
.h15{height:42.780428px;}
.h22{height:42.782228px;}
.h1c{height:42.840428px;}
.h1a{height:42.936430px;}
.h16{height:42.960430px;}
.h1d{height:42.967990px;}
.h21{height:43.260433px;}
.h11{height:44.280000px;}
.h8{height:45.000000px;}
.h13{height:45.423433px;}
.h7{height:45.908203px;}
.hb{height:49.200492px;}
.he{height:51.660492px;}
.h6{height:55.089844px;}
.hd{height:59.640000px;}
.hc{height:60.564000px;}
.h3{height:68.862305px;}
.h5{height:82.634766px;}
.h9{height:1054.488000px;}
.ha{height:1054.500000px;}
.h1{height:1249.500000px;}
.h0{height:1249.560000px;}
.w3{width:739.500000px;}
.w2{width:739.842000px;}
.w0{width:951.480000px;}
.w1{width:951.750000px;}
.x0{left:0.000000px;}
.x6{left:72.028350px;}
.xb{left:86.996850px;}
.x7{left:89.971650px;}
.x4{left:145.650000px;}
.x3{left:191.880000px;}
.x5{left:197.700000px;}
.x2{left:228.163499px;}
.x1{left:293.590494px;}
.xa{left:297.722700px;}
.x9{left:303.505350px;}
.x8{left:532.856550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls32{letter-spacing:-1.109344pt;}
.ls36{letter-spacing:-1.040010pt;}
.ls35{letter-spacing:-1.024005pt;}
.ls10{letter-spacing:-1.013343pt;}
.ls38{letter-spacing:-0.997343pt;}
.ls2e{letter-spacing:-0.976010pt;}
.ls33{letter-spacing:-0.970676pt;}
.ls2b{letter-spacing:-0.965343pt;}
.ls39{letter-spacing:-0.954676pt;}
.ls30{letter-spacing:-0.949343pt;}
.ls2c{letter-spacing:-0.938676pt;}
.ls34{letter-spacing:-0.933343pt;}
.ls31{letter-spacing:-0.928009pt;}
.ls2d{letter-spacing:-0.917343pt;}
.ls54{letter-spacing:-0.856800pt;}
.ls5c{letter-spacing:-0.837342pt;}
.ls56{letter-spacing:-0.802400pt;}
.ls11{letter-spacing:-0.789341pt;}
.ls55{letter-spacing:-0.788800pt;}
.ls5d{letter-spacing:-0.736007pt;}
.ls12{letter-spacing:-0.645340pt;}
.ls5e{letter-spacing:-0.613339pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000021pt;}
.lsd{letter-spacing:0.000036pt;}
.ls1{letter-spacing:0.048000pt;}
.ls25{letter-spacing:0.053323pt;}
.ls1e{letter-spacing:0.053334pt;}
.ls4f{letter-spacing:0.090667pt;}
.ls5{letter-spacing:0.106655pt;}
.ls9{letter-spacing:0.106656pt;}
.ls1f{letter-spacing:0.106666pt;}
.ls48{letter-spacing:0.106677pt;}
.ls15{letter-spacing:0.106708pt;}
.ls41{letter-spacing:0.106719pt;}
.ls6a{letter-spacing:0.136000pt;}
.ls2{letter-spacing:0.144000pt;}
.ls23{letter-spacing:0.159952pt;}
.ls18{letter-spacing:0.159981pt;}
.ls6{letter-spacing:0.159984pt;}
.lsc{letter-spacing:0.159988pt;}
.lsa{letter-spacing:0.159989pt;}
.ls14{letter-spacing:0.160001pt;}
.ls47{letter-spacing:0.160036pt;}
.ls59{letter-spacing:0.160042pt;}
.ls29{letter-spacing:0.181333pt;}
.ls16{letter-spacing:0.213315pt;}
.lsb{letter-spacing:0.213321pt;}
.ls3{letter-spacing:0.213368pt;}
.ls1d{letter-spacing:0.213374pt;}
.ls61{letter-spacing:0.226667pt;}
.ls20{letter-spacing:0.266668pt;}
.ls3d{letter-spacing:0.319967pt;}
.ls3f{letter-spacing:0.320021pt;}
.ls45{letter-spacing:0.368004pt;}
.ls3c{letter-spacing:0.378670pt;}
.ls3e{letter-spacing:0.400004pt;}
.ls67{letter-spacing:0.544000pt;}
.ls68{letter-spacing:0.612000pt;}
.ls66{letter-spacing:0.670933pt;}
.ls57{letter-spacing:0.691991pt;}
.ls5a{letter-spacing:0.771990pt;}
.ls5b{letter-spacing:0.791989pt;}
.ls1b{letter-spacing:0.795989pt;}
.ls1a{letter-spacing:0.800000pt;}
.lsf{letter-spacing:0.851989pt;}
.ls1c{letter-spacing:0.875988pt;}
.ls37{letter-spacing:10.517439pt;}
.ls50{letter-spacing:10.834667pt;}
.ls26{letter-spacing:10.965443pt;}
.ls4e{letter-spacing:11.152000pt;}
.ls4a{letter-spacing:11.893439pt;}
.ls19{letter-spacing:12.000094pt;}
.ls46{letter-spacing:12.586814pt;}
.ls62{letter-spacing:12.648000pt;}
.ls64{letter-spacing:12.693333pt;}
.ls5f{letter-spacing:12.965333pt;}
.ls4{letter-spacing:13.173481pt;}
.ls40{letter-spacing:13.706826pt;}
.ls22{letter-spacing:14.720148pt;}
.ls2f{letter-spacing:14.826815pt;}
.ls27{letter-spacing:14.880159pt;}
.ls49{letter-spacing:15.200159pt;}
.ls44{letter-spacing:15.520159pt;}
.ls51{letter-spacing:15.946814pt;}
.ls52{letter-spacing:16.106826pt;}
.ls13{letter-spacing:16.106828pt;}
.ls7{letter-spacing:16.426826pt;}
.ls42{letter-spacing:16.746826pt;}
.ls4d{letter-spacing:16.853481pt;}
.ls4b{letter-spacing:16.853534pt;}
.ls4c{letter-spacing:17.600213pt;}
.ls43{letter-spacing:18.240159pt;}
.ls28{letter-spacing:18.506826pt;}
.ls69{letter-spacing:19.040000pt;}
.ls3b{letter-spacing:19.306901pt;}
.ls60{letter-spacing:19.312000pt;}
.ls6c{letter-spacing:19.343733pt;}
.ls6b{letter-spacing:19.674667pt;}
.ls58{letter-spacing:20.160201pt;}
.ls63{letter-spacing:20.536000pt;}
.ls53{letter-spacing:22.453546pt;}
.ls2a{letter-spacing:22.560201pt;}
.ls3a{letter-spacing:22.757561pt;}
.ls65{letter-spacing:24.344000pt;}
.ls21{letter-spacing:25.477588pt;}
.ls24{letter-spacing:26.986933pt;}
.ls17{letter-spacing:29.813641pt;}
.lse{letter-spacing:137.918194pt;}
.wsc8{word-spacing:-25.530922pt;}
.ws124{word-spacing:-22.810895pt;}
.ws1f1{word-spacing:-19.389067pt;}
.ws69{word-spacing:-16.160162pt;}
.ws10d{word-spacing:-14.880149pt;}
.ws0{word-spacing:-12.432000pt;}
.ws105{word-spacing:-11.018777pt;}
.ws119{word-spacing:-10.570772pt;}
.wsb8{word-spacing:-0.915988pt;}
.ws205{word-spacing:-0.716267pt;}
.ws206{word-spacing:-0.657333pt;}
.ws140{word-spacing:-0.453338pt;}
.ws2{word-spacing:-0.074667pt;}
.wse4{word-spacing:-0.056001pt;}
.ws25{word-spacing:-0.053334pt;}
.wsb{word-spacing:-0.048000pt;}
.ws133{word-spacing:-0.045333pt;}
.ws22{word-spacing:-0.042666pt;}
.ws38{word-spacing:-0.039999pt;}
.ws3c{word-spacing:-0.037333pt;}
.ws1{word-spacing:0.000000pt;}
.ws49{word-spacing:0.592006pt;}
.ws189{word-spacing:0.784008pt;}
.ws113{word-spacing:1.056011pt;}
.ws1df{word-spacing:8.840000pt;}
.ws165{word-spacing:9.066667pt;}
.ws1e0{word-spacing:9.112000pt;}
.ws164{word-spacing:9.157333pt;}
.ws1a0{word-spacing:9.248000pt;}
.ws1e8{word-spacing:9.293333pt;}
.ws1ad{word-spacing:9.338667pt;}
.ws126{word-spacing:9.384000pt;}
.ws181{word-spacing:9.506400pt;}
.ws1e3{word-spacing:9.520000pt;}
.wsa{word-spacing:9.552000pt;}
.ws1e5{word-spacing:9.565333pt;}
.ws1e4{word-spacing:9.610667pt;}
.ws1b{word-spacing:9.648000pt;}
.ws41{word-spacing:9.706764pt;}
.ws214{word-spacing:9.792000pt;}
.ws172{word-spacing:9.837333pt;}
.wsc{word-spacing:9.888000pt;}
.ws1ed{word-spacing:10.018667pt;}
.ws20{word-spacing:10.026541pt;}
.ws3d{word-spacing:10.042523pt;}
.ws1eb{word-spacing:10.109333pt;}
.ws1ec{word-spacing:10.200000pt;}
.ws7a{word-spacing:10.227864pt;}
.wsb9{word-spacing:10.243863pt;}
.ws30{word-spacing:10.293436pt;}
.ws3b{word-spacing:10.303853pt;}
.ws3a{word-spacing:10.378518pt;}
.ws19c{word-spacing:10.387861pt;}
.ws19d{word-spacing:10.407861pt;}
.ws208{word-spacing:10.426667pt;}
.ws14{word-spacing:10.464000pt;}
.ws207{word-spacing:10.472000pt;}
.ws3e{word-spacing:10.490517pt;}
.wse9{word-spacing:10.506772pt;}
.ws1b4{word-spacing:10.517333pt;}
.ws187{word-spacing:10.547859pt;}
.wse7{word-spacing:10.613439pt;}
.ws171{word-spacing:10.653333pt;}
.ws108{word-spacing:10.666773pt;}
.wse8{word-spacing:10.720107pt;}
.ws1b5{word-spacing:10.744000pt;}
.wsea{word-spacing:10.773441pt;}
.ws1b2{word-spacing:10.789333pt;}
.ws62{word-spacing:10.826775pt;}
.ws1b1{word-spacing:10.834667pt;}
.ws1b6{word-spacing:10.880000pt;}
.ws1ea{word-spacing:10.925333pt;}
.ws6a{word-spacing:10.933443pt;}
.ws7{word-spacing:10.944000pt;}
.ws16e{word-spacing:10.970667pt;}
.ws188{word-spacing:10.986740pt;}
.ws77{word-spacing:10.986777pt;}
.ws1b0{word-spacing:11.016000pt;}
.wsc1{word-spacing:11.040110pt;}
.ws16f{word-spacing:11.061333pt;}
.ws1e{word-spacing:11.079852pt;}
.ws15f{word-spacing:11.093444pt;}
.ws6b{word-spacing:11.146778pt;}
.ws1de{word-spacing:11.152000pt;}
.ws39{word-spacing:11.199851pt;}
.ws120{word-spacing:11.200112pt;}
.wsa4{word-spacing:11.253446pt;}
.ws1dd{word-spacing:11.288000pt;}
.ws182{word-spacing:11.306780pt;}
.ws1a8{word-spacing:11.333333pt;}
.ws107{word-spacing:11.360114pt;}
.ws170{word-spacing:11.378667pt;}
.wsd0{word-spacing:11.413447pt;}
.ws134{word-spacing:11.424000pt;}
.ws17e{word-spacing:11.466781pt;}
.wsa5{word-spacing:11.520115pt;}
.ws148{word-spacing:11.573449pt;}
.ws132{word-spacing:11.605333pt;}
.ws42{word-spacing:11.626783pt;}
.ws1db{word-spacing:11.650667pt;}
.wse0{word-spacing:11.680117pt;}
.ws5c{word-spacing:11.733451pt;}
.ws17d{word-spacing:11.733455pt;}
.ws1f{word-spacing:11.775853pt;}
.ws131{word-spacing:11.786667pt;}
.wsc2{word-spacing:11.786777pt;}
.ws24{word-spacing:11.786785pt;}
.wsf3{word-spacing:11.840118pt;}
.ws37{word-spacing:11.861200pt;}
.ws1dc{word-spacing:11.877333pt;}
.wsc3{word-spacing:11.893452pt;}
.wsf{word-spacing:11.904000pt;}
.ws26{word-spacing:11.946786pt;}
.ws213{word-spacing:11.968000pt;}
.ws10{word-spacing:12.000000pt;}
.wsac{word-spacing:12.000120pt;}
.ws212{word-spacing:12.013333pt;}
.ws21{word-spacing:12.031850pt;}
.wsbf{word-spacing:12.053454pt;}
.ws200{word-spacing:12.058667pt;}
.ws130{word-spacing:12.104000pt;}
.wsad{word-spacing:12.106788pt;}
.ws1f0{word-spacing:12.140267pt;}
.ws1ef{word-spacing:12.149333pt;}
.ws64{word-spacing:12.160122pt;}
.ws84{word-spacing:12.213455pt;}
.ws1da{word-spacing:12.240000pt;}
.ws83{word-spacing:12.266789pt;}
.ws116{word-spacing:12.272123pt;}
.ws117{word-spacing:12.277451pt;}
.ws1e6{word-spacing:12.285333pt;}
.ws82{word-spacing:12.320123pt;}
.ws1e7{word-spacing:12.330667pt;}
.ws2e{word-spacing:12.373457pt;}
.ws19a{word-spacing:12.376000pt;}
.ws11a{word-spacing:12.400124pt;}
.ws1b3{word-spacing:12.421333pt;}
.ws159{word-spacing:12.426791pt;}
.ws1a1{word-spacing:12.466667pt;}
.wsd2{word-spacing:12.480125pt;}
.ws135{word-spacing:12.512000pt;}
.ws15a{word-spacing:12.533459pt;}
.ws1d5{word-spacing:12.557333pt;}
.ws1c{word-spacing:12.576000pt;}
.ws168{word-spacing:12.602667pt;}
.ws35{word-spacing:12.640126pt;}
.ws1ac{word-spacing:12.648000pt;}
.ws118{word-spacing:12.666793pt;}
.ws128{word-spacing:12.693333pt;}
.wsd7{word-spacing:12.693460pt;}
.ws1d8{word-spacing:12.738667pt;}
.ws20c{word-spacing:12.741867pt;}
.wsdd{word-spacing:12.746794pt;}
.ws127{word-spacing:12.784000pt;}
.wsdc{word-spacing:12.800128pt;}
.ws19b{word-spacing:12.829333pt;}
.ws47{word-spacing:12.853462pt;}
.ws137{word-spacing:12.906777pt;}
.ws6c{word-spacing:12.906796pt;}
.ws1d9{word-spacing:12.920000pt;}
.wsbb{word-spacing:12.960130pt;}
.ws1aa{word-spacing:12.965333pt;}
.ws12c{word-spacing:13.013463pt;}
.ws1ab{word-spacing:13.056000pt;}
.ws144{word-spacing:13.066797pt;}
.ws12b{word-spacing:13.120131pt;}
.ws1c1{word-spacing:13.192000pt;}
.ws143{word-spacing:13.226799pt;}
.ws15d{word-spacing:13.226807pt;}
.ws1c0{word-spacing:13.237333pt;}
.ws15e{word-spacing:13.280133pt;}
.ws1bf{word-spacing:13.282667pt;}
.ws34{word-spacing:13.333467pt;}
.ws160{word-spacing:13.386801pt;}
.ws1d{word-spacing:13.392000pt;}
.ws33{word-spacing:13.440134pt;}
.ws1bc{word-spacing:13.464000pt;}
.ws4f{word-spacing:13.493468pt;}
.ws1ba{word-spacing:13.509333pt;}
.ws74{word-spacing:13.546802pt;}
.ws1bb{word-spacing:13.554667pt;}
.ws6{word-spacing:13.584000pt;}
.ws1c4{word-spacing:13.600000pt;}
.ws73{word-spacing:13.600136pt;}
.ws4b{word-spacing:13.653470pt;}
.ws23{word-spacing:13.706804pt;}
.ws204{word-spacing:13.781333pt;}
.ws151{word-spacing:13.813471pt;}
.ws12d{word-spacing:13.866805pt;}
.wsa7{word-spacing:13.920139pt;}
.ws106{word-spacing:13.973473pt;}
.ws191{word-spacing:14.026807pt;}
.ws17{word-spacing:14.064000pt;}
.ws2a{word-spacing:14.080141pt;}
.wsfe{word-spacing:14.133475pt;}
.ws1f9{word-spacing:14.144000pt;}
.wse{word-spacing:14.160000pt;}
.ws72{word-spacing:14.186809pt;}
.ws1fe{word-spacing:14.189333pt;}
.ws1f8{word-spacing:14.234667pt;}
.wsfc{word-spacing:14.240137pt;}
.ws1ff{word-spacing:14.280000pt;}
.wsd8{word-spacing:14.293475pt;}
.ws16{word-spacing:14.304000pt;}
.wsfd{word-spacing:14.346810pt;}
.ws1fa{word-spacing:14.370667pt;}
.ws1a{word-spacing:14.400000pt;}
.wsa8{word-spacing:14.400144pt;}
.ws9{word-spacing:14.448000pt;}
.wsd9{word-spacing:14.453478pt;}
.wsdb{word-spacing:14.453483pt;}
.ws1a7{word-spacing:14.461333pt;}
.ws1e9{word-spacing:14.506667pt;}
.ws173{word-spacing:14.506785pt;}
.wsee{word-spacing:14.506812pt;}
.ws167{word-spacing:14.552000pt;}
.ws174{word-spacing:14.560146pt;}
.ws1a6{word-spacing:14.597333pt;}
.ws46{word-spacing:14.602813pt;}
.ws43{word-spacing:14.613479pt;}
.ws166{word-spacing:14.642667pt;}
.ws75{word-spacing:14.666813pt;}
.ws51{word-spacing:14.666833pt;}
.ws50{word-spacing:14.720147pt;}
.ws15c{word-spacing:14.720156pt;}
.ws17f{word-spacing:14.728800pt;}
.ws1cd{word-spacing:14.733333pt;}
.ws59{word-spacing:14.773455pt;}
.ws2f{word-spacing:14.773481pt;}
.ws209{word-spacing:14.778667pt;}
.ws1ca{word-spacing:14.824000pt;}
.ws52{word-spacing:14.826794pt;}
.ws8d{word-spacing:14.826815pt;}
.wsc4{word-spacing:14.826839pt;}
.ws1ee{word-spacing:14.869333pt;}
.ws44{word-spacing:14.880149pt;}
.ws1ce{word-spacing:14.914667pt;}
.ws180{word-spacing:14.932800pt;}
.ws45{word-spacing:14.933483pt;}
.ws5a{word-spacing:14.986817pt;}
.ws1cc{word-spacing:15.005333pt;}
.wsff{word-spacing:15.040137pt;}
.ws5b{word-spacing:15.040150pt;}
.ws1cb{word-spacing:15.050667pt;}
.ws101{word-spacing:15.093484pt;}
.ws9d{word-spacing:15.146818pt;}
.ws1c8{word-spacing:15.232000pt;}
.ws196{word-spacing:15.253467pt;}
.ws197{word-spacing:15.253486pt;}
.ws19e{word-spacing:15.277333pt;}
.wsa3{word-spacing:15.306820pt;}
.ws155{word-spacing:15.360154pt;}
.ws1c9{word-spacing:15.368000pt;}
.wsba{word-spacing:15.400147pt;}
.ws1a9{word-spacing:15.413333pt;}
.ws154{word-spacing:15.413487pt;}
.ws76{word-spacing:15.456147pt;}
.ws1f7{word-spacing:15.458667pt;}
.ws18e{word-spacing:15.466821pt;}
.ws19f{word-spacing:15.504000pt;}
.ws5{word-spacing:15.512148pt;}
.ws11d{word-spacing:15.514822pt;}
.ws176{word-spacing:15.520155pt;}
.ws156{word-spacing:15.573489pt;}
.ws1a3{word-spacing:15.594667pt;}
.wsb2{word-spacing:15.623000pt;}
.wse3{word-spacing:15.624149pt;}
.wsb1{word-spacing:15.626823pt;}
.wse5{word-spacing:15.680149pt;}
.ws81{word-spacing:15.680157pt;}
.ws1a2{word-spacing:15.685333pt;}
.ws3f{word-spacing:15.733491pt;}
.ws19{word-spacing:15.744000pt;}
.ws1a4{word-spacing:15.763733pt;}
.ws1f5{word-spacing:15.776000pt;}
.ws11c{word-spacing:15.797491pt;}
.ws18d{word-spacing:15.840154pt;}
.ws157{word-spacing:15.840158pt;}
.ws1a5{word-spacing:15.866667pt;}
.ws18b{word-spacing:15.893492pt;}
.ws1f6{word-spacing:15.912000pt;}
.ws11b{word-spacing:15.930826pt;}
.ws68{word-spacing:15.946826pt;}
.ws56{word-spacing:16.000160pt;}
.ws1b7{word-spacing:16.002667pt;}
.wsdf{word-spacing:16.053494pt;}
.ws115{word-spacing:16.080161pt;}
.ws6d{word-spacing:16.106828pt;}
.ws1b9{word-spacing:16.184000pt;}
.ws6e{word-spacing:16.213482pt;}
.ws70{word-spacing:16.213495pt;}
.wsf4{word-spacing:16.266829pt;}
.ws112{word-spacing:16.266845pt;}
.ws1b8{word-spacing:16.274667pt;}
.wsd3{word-spacing:16.320163pt;}
.ws10e{word-spacing:16.330839pt;}
.ws31{word-spacing:16.373497pt;}
.ws114{word-spacing:16.384164pt;}
.ws216{word-spacing:16.410667pt;}
.ws6f{word-spacing:16.426831pt;}
.ws71{word-spacing:16.480165pt;}
.ws98{word-spacing:16.533499pt;}
.ws110{word-spacing:16.576166pt;}
.wsec{word-spacing:16.586833pt;}
.ws20e{word-spacing:16.637333pt;}
.wsce{word-spacing:16.640166pt;}
.ws10f{word-spacing:16.682833pt;}
.ws147{word-spacing:16.693500pt;}
.ws4{word-spacing:16.725333pt;}
.ws4e{word-spacing:16.746834pt;}
.ws210{word-spacing:16.773333pt;}
.ws18{word-spacing:16.800000pt;}
.ws4d{word-spacing:16.800168pt;}
.ws67{word-spacing:16.853502pt;}
.ws20f{word-spacing:16.864000pt;}
.wscf{word-spacing:16.906836pt;}
.ws211{word-spacing:16.909333pt;}
.wsa6{word-spacing:16.960170pt;}
.ws142{word-spacing:17.120169pt;}
.ws2c{word-spacing:17.120171pt;}
.ws2d{word-spacing:17.173505pt;}
.ws36{word-spacing:17.226839pt;}
.ws4c{word-spacing:17.280173pt;}
.ws158{word-spacing:17.333507pt;}
.ws169{word-spacing:17.386835pt;}
.ws152{word-spacing:17.386841pt;}
.ws4a{word-spacing:17.440174pt;}
.ws153{word-spacing:17.493508pt;}
.wsef{word-spacing:17.546842pt;}
.ws8f{word-spacing:17.653510pt;}
.wsf0{word-spacing:17.706844pt;}
.ws14b{word-spacing:17.709430pt;}
.wseb{word-spacing:17.760178pt;}
.ws8e{word-spacing:17.813511pt;}
.ws8c{word-spacing:17.866845pt;}
.wsa2{word-spacing:17.920179pt;}
.ws1c6{word-spacing:17.944533pt;}
.ws14c{word-spacing:17.973513pt;}
.ws32{word-spacing:18.026847pt;}
.ws13e{word-spacing:18.074847pt;}
.ws121{word-spacing:18.080173pt;}
.wse6{word-spacing:18.080181pt;}
.ws1c7{word-spacing:18.133333pt;}
.ws14f{word-spacing:18.133515pt;}
.ws10b{word-spacing:18.144181pt;}
.ws14a{word-spacing:18.186849pt;}
.ws9a{word-spacing:18.240182pt;}
.ws1e2{word-spacing:18.269333pt;}
.ws9b{word-spacing:18.293516pt;}
.ws1e1{word-spacing:18.314667pt;}
.ws8{word-spacing:18.336000pt;}
.wsed{word-spacing:18.346850pt;}
.ws7c{word-spacing:18.400145pt;}
.ws7d{word-spacing:18.400184pt;}
.ws1c5{word-spacing:18.405333pt;}
.ws7b{word-spacing:18.453494pt;}
.ws13f{word-spacing:18.506852pt;}
.ws10c{word-spacing:18.522852pt;}
.ws18c{word-spacing:18.602853pt;}
.wsb3{word-spacing:18.613519pt;}
.ws104{word-spacing:18.666853pt;}
.ws175{word-spacing:18.720187pt;}
.ws60{word-spacing:18.773521pt;}
.ws102{word-spacing:18.810901pt;}
.ws5f{word-spacing:18.826855pt;}
.ws1af{word-spacing:18.949333pt;}
.ws94{word-spacing:18.986857pt;}
.ws20a{word-spacing:18.994667pt;}
.ws20b{word-spacing:19.040000pt;}
.wsf5{word-spacing:19.040190pt;}
.ws1ae{word-spacing:19.085333pt;}
.ws57{word-spacing:19.093524pt;}
.ws1f4{word-spacing:19.176000pt;}
.ws15{word-spacing:19.200000pt;}
.ws95{word-spacing:19.200190pt;}
.ws58{word-spacing:19.200192pt;}
.ws48{word-spacing:19.253526pt;}
.ws1f3{word-spacing:19.266667pt;}
.ws27{word-spacing:19.306860pt;}
.ws215{word-spacing:19.357333pt;}
.ws17c{word-spacing:19.360194pt;}
.ws96{word-spacing:19.413527pt;}
.wsbd{word-spacing:19.466861pt;}
.ws1f2{word-spacing:19.493333pt;}
.wsbc{word-spacing:19.520195pt;}
.ws20d{word-spacing:19.538667pt;}
.ws1d7{word-spacing:19.584000pt;}
.ws1d6{word-spacing:19.629333pt;}
.ws17b{word-spacing:19.680197pt;}
.ws201{word-spacing:19.720000pt;}
.wsda{word-spacing:19.733531pt;}
.ws2b{word-spacing:19.786865pt;}
.ws203{word-spacing:19.856000pt;}
.ws40{word-spacing:19.893532pt;}
.ws202{word-spacing:19.901333pt;}
.ws18f{word-spacing:20.053534pt;}
.ws97{word-spacing:20.213535pt;}
.ws1cf{word-spacing:20.264000pt;}
.ws9c{word-spacing:20.266869pt;}
.ws1d1{word-spacing:20.309333pt;}
.wsf2{word-spacing:20.320203pt;}
.ws1d0{word-spacing:20.354667pt;}
.ws11f{word-spacing:20.373537pt;}
.ws190{word-spacing:20.426871pt;}
.ws29{word-spacing:20.480205pt;}
.wsbe{word-spacing:20.533539pt;}
.ws13d{word-spacing:20.586873pt;}
.wsf6{word-spacing:20.693540pt;}
.wsab{word-spacing:20.746874pt;}
.ws3{word-spacing:20.757333pt;}
.wsc5{word-spacing:20.800208pt;}
.ws122{word-spacing:20.906876pt;}
.wsb5{word-spacing:20.960210pt;}
.ws185{word-spacing:21.120211pt;}
.ws1bd{word-spacing:21.170667pt;}
.ws86{word-spacing:21.173545pt;}
.ws87{word-spacing:21.226879pt;}
.ws85{word-spacing:21.280213pt;}
.ws1be{word-spacing:21.352000pt;}
.ws141{word-spacing:21.440214pt;}
.ws28{word-spacing:21.493548pt;}
.ws1d3{word-spacing:21.533333pt;}
.ws13{word-spacing:21.600000pt;}
.ws12{word-spacing:21.696000pt;}
.ws5d{word-spacing:21.706884pt;}
.ws1d4{word-spacing:21.714667pt;}
.ws1d2{word-spacing:21.760000pt;}
.ws100{word-spacing:21.760218pt;}
.ws5e{word-spacing:21.813551pt;}
.ws145{word-spacing:21.920219pt;}
.wsf1{word-spacing:21.973553pt;}
.wsc0{word-spacing:22.080221pt;}
.wsd{word-spacing:22.176000pt;}
.ws8a{word-spacing:22.186889pt;}
.ws8b{word-spacing:22.240222pt;}
.ws89{word-spacing:22.293547pt;}
.ws16c{word-spacing:22.293556pt;}
.ws12e{word-spacing:22.346890pt;}
.ws11{word-spacing:22.368000pt;}
.ws12f{word-spacing:22.453558pt;}
.ws11e{word-spacing:22.506892pt;}
.ws125{word-spacing:22.560226pt;}
.ws123{word-spacing:22.613559pt;}
.ws63{word-spacing:22.720227pt;}
.ws198{word-spacing:22.826895pt;}
.ws1c2{word-spacing:22.848000pt;}
.ws1c3{word-spacing:22.893333pt;}
.ws183{word-spacing:22.933563pt;}
.ws146{word-spacing:22.986897pt;}
.ws199{word-spacing:23.040230pt;}
.ws111{word-spacing:23.296233pt;}
.ws136{word-spacing:23.306900pt;}
.wsde{word-spacing:23.360234pt;}
.wsb6{word-spacing:23.413567pt;}
.ws129{word-spacing:23.466901pt;}
.ws18a{word-spacing:23.520235pt;}
.ws161{word-spacing:23.573569pt;}
.ws12a{word-spacing:23.626903pt;}
.ws13c{word-spacing:23.680237pt;}
.ws162{word-spacing:23.786905pt;}
.ws163{word-spacing:23.840238pt;}
.wse1{word-spacing:24.053574pt;}
.wse2{word-spacing:24.160242pt;}
.ws1fb{word-spacing:24.162667pt;}
.ws1fd{word-spacing:24.208000pt;}
.ws99{word-spacing:24.213575pt;}
.ws54{word-spacing:24.266909pt;}
.ws55{word-spacing:24.320243pt;}
.ws53{word-spacing:24.426911pt;}
.ws1fc{word-spacing:24.434667pt;}
.ws177{word-spacing:24.640268pt;}
.ws178{word-spacing:24.746914pt;}
.wsd6{word-spacing:24.800248pt;}
.wsd4{word-spacing:24.960250pt;}
.ws179{word-spacing:25.013583pt;}
.wsd5{word-spacing:25.066917pt;}
.wsb4{word-spacing:25.120251pt;}
.wsc7{word-spacing:25.280253pt;}
.wsc9{word-spacing:25.386946pt;}
.ws79{word-spacing:25.440254pt;}
.wsca{word-spacing:25.600256pt;}
.ws78{word-spacing:25.653590pt;}
.ws65{word-spacing:25.706924pt;}
.ws66{word-spacing:25.760258pt;}
.ws138{word-spacing:25.813591pt;}
.ws88{word-spacing:25.866925pt;}
.ws14d{word-spacing:25.920231pt;}
.ws14e{word-spacing:25.920259pt;}
.ws194{word-spacing:25.920286pt;}
.wsc6{word-spacing:25.973593pt;}
.ws90{word-spacing:26.026927pt;}
.ws195{word-spacing:26.133578pt;}
.wsb7{word-spacing:26.240262pt;}
.ws150{word-spacing:26.293596pt;}
.wsd1{word-spacing:26.346930pt;}
.ws103{word-spacing:26.453598pt;}
.ws10a{word-spacing:26.485598pt;}
.ws16d{word-spacing:26.506932pt;}
.ws109{word-spacing:26.512265pt;}
.ws91{word-spacing:26.560266pt;}
.wsf9{word-spacing:26.666909pt;}
.wsf7{word-spacing:26.773597pt;}
.wsfa{word-spacing:26.773601pt;}
.ws17a{word-spacing:26.826935pt;}
.wsf8{word-spacing:26.933603pt;}
.ws15b{word-spacing:26.986937pt;}
.wsfb{word-spacing:27.040270pt;}
.ws193{word-spacing:27.093604pt;}
.wsb0{word-spacing:27.146938pt;}
.ws192{word-spacing:27.200272pt;}
.ws7e{word-spacing:27.520257pt;}
.ws13a{word-spacing:27.578942pt;}
.ws7f{word-spacing:27.680277pt;}
.ws80{word-spacing:27.786945pt;}
.wscb{word-spacing:27.893612pt;}
.ws16b{word-spacing:27.946946pt;}
.wscc{word-spacing:28.000280pt;}
.ws149{word-spacing:28.053614pt;}
.ws16a{word-spacing:28.106948pt;}
.wscd{word-spacing:28.160282pt;}
.ws139{word-spacing:28.213615pt;}
.ws13b{word-spacing:28.320283pt;}
.ws61{word-spacing:28.373617pt;}
.wsa1{word-spacing:29.600296pt;}
.ws9e{word-spacing:29.706964pt;}
.wsa0{word-spacing:29.813631pt;}
.ws9f{word-spacing:29.973633pt;}
.ws92{word-spacing:30.133635pt;}
.ws93{word-spacing:30.186969pt;}
.wsaa{word-spacing:32.213655pt;}
.wsa9{word-spacing:32.373657pt;}
.wsae{word-spacing:33.973673pt;}
.wsaf{word-spacing:34.027007pt;}
.ws184{word-spacing:35.840358pt;}
.ws186{word-spacing:137.919001pt;}
._18{margin-left:-25.248237pt;}
._1c{margin-left:-21.941568pt;}
._21{margin-left:-19.330133pt;}
._12{margin-left:-16.640005pt;}
._1a{margin-left:-15.146979pt;}
._1b{margin-left:-12.015785pt;}
._19{margin-left:-10.720012pt;}
._0{margin-left:-3.312000pt;}
._1{margin-left:-1.920000pt;}
._2{margin-left:-0.960000pt;}
._d{width:1.706509pt;}
._1e{width:7.434667pt;}
._c{width:9.445198pt;}
._1d{width:10.426667pt;}
._5{width:11.616000pt;}
._3{width:12.576000pt;}
._9{width:13.632514pt;}
._6{width:14.666813pt;}
._e{width:15.680118pt;}
._a{width:17.066685pt;}
._7{width:18.421731pt;}
._8{width:19.520195pt;}
._4{width:21.312000pt;}
._13{width:22.506910pt;}
._10{width:23.840238pt;}
._14{width:24.853582pt;}
._20{width:25.760258pt;}
._11{width:26.773601pt;}
._1f{width:28.000280pt;}
._f{width:29.333627pt;}
._15{width:31.468204pt;}
._16{width:35.093689pt;}
._b{width:88.087430pt;}
._17{width:141.932378pt;}
.fsb{font-size:37.332800pt;}
.fs9{font-size:39.999467pt;}
.fsa{font-size:42.666133pt;}
.fs2{font-size:42.666667pt;}
.fsc{font-size:45.333333pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs6{font-size:53.333867pt;}
.fs8{font-size:56.000533pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs1{font-size:80.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:16.100053pt;}
.y4a{bottom:26.758573pt;}
.y49{bottom:37.417080pt;}
.y48{bottom:48.075600pt;}
.y156{bottom:57.067253pt;}
.ye0{bottom:57.067733pt;}
.y109{bottom:57.069307pt;}
.y7c{bottom:57.070453pt;}
.y178{bottom:57.070933pt;}
.yb7{bottom:57.071467pt;}
.y88{bottom:57.369467pt;}
.y117{bottom:57.370800pt;}
.y2{bottom:60.086668pt;}
.y45{bottom:62.740133pt;}
.y155{bottom:73.094080pt;}
.ydf{bottom:73.094560pt;}
.y108{bottom:73.096133pt;}
.y7b{bottom:73.097280pt;}
.yb6{bottom:73.098293pt;}
.y87{bottom:73.396293pt;}
.y116{bottom:73.397627pt;}
.y1{bottom:74.753335pt;}
.y177{bottom:81.108667pt;}
.y1ad{bottom:88.003733pt;}
.y154{bottom:89.040907pt;}
.yde{bottom:89.041387pt;}
.y7a{bottom:89.044107pt;}
.yb5{bottom:89.045120pt;}
.y86{bottom:89.423120pt;}
.y115{bottom:89.424453pt;}
.y44{bottom:93.958293pt;}
.y107{bottom:98.486533pt;}
.y1ac{bottom:101.309067pt;}
.y153{bottom:105.067733pt;}
.ydd{bottom:105.068213pt;}
.y79{bottom:105.070933pt;}
.yb4{bottom:105.071947pt;}
.y85{bottom:105.369947pt;}
.y114{bottom:105.371280pt;}
.y43{bottom:109.905120pt;}
.y1e6{bottom:110.560000pt;}
.y106{bottom:111.791867pt;}
.y1ab{bottom:114.693733pt;}
.y152{bottom:121.094560pt;}
.ydc{bottom:121.095040pt;}
.y134{bottom:121.098773pt;}
.yb3{bottom:121.104107pt;}
.y84{bottom:121.396773pt;}
.y113{bottom:121.398107pt;}
.y176{bottom:122.078800pt;}
.y1e5{bottom:123.944667pt;}
.y105{bottom:125.176533pt;}
.y42{bottom:125.931947pt;}
.y1aa{bottom:127.999067pt;}
.y78{bottom:129.033067pt;}
.y151{bottom:137.041387pt;}
.ydb{bottom:137.041867pt;}
.y133{bottom:137.045600pt;}
.yb2{bottom:137.050933pt;}
.y1e4{bottom:137.250000pt;}
.y83{bottom:137.416267pt;}
.y112{bottom:137.424933pt;}
.y104{bottom:138.481867pt;}
.y1a9{bottom:141.304400pt;}
.y41{bottom:141.958773pt;}
.y175{bottom:146.040933pt;}
.y1e3{bottom:150.555333pt;}
.yb1{bottom:153.064427pt;}
.y150{bottom:153.068213pt;}
.yda{bottom:153.068693pt;}
.y82{bottom:153.363093pt;}
.y111{bottom:153.371760pt;}
.y1a8{bottom:154.689067pt;}
.y40{bottom:157.905600pt;}
.y132{bottom:161.076933pt;}
.y103{bottom:163.876053pt;}
.y1e2{bottom:163.940000pt;}
.y1a7{bottom:167.994400pt;}
.yb0{bottom:169.091253pt;}
.y14f{bottom:169.095040pt;}
.yd9{bottom:169.095520pt;}
.y81{bottom:169.389920pt;}
.y77{bottom:169.397920pt;}
.y110{bottom:169.398587pt;}
.y3f{bottom:173.932427pt;}
.y131{bottom:174.382267pt;}
.y1e1{bottom:177.245333pt;}
.y102{bottom:179.902880pt;}
.y1a6{bottom:181.379067pt;}
.yaf{bottom:185.038080pt;}
.y14e{bottom:185.041867pt;}
.yd8{bottom:185.042347pt;}
.y80{bottom:185.416747pt;}
.y76{bottom:185.424747pt;}
.y10f{bottom:185.425413pt;}
.y174{bottom:187.085200pt;}
.y130{bottom:187.766933pt;}
.y3e{bottom:189.959253pt;}
.y1e0{bottom:190.550667pt;}
.y1a5{bottom:194.684400pt;}
.y101{bottom:195.929707pt;}
.y173{bottom:200.390533pt;}
.yae{bottom:201.064907pt;}
.yd7{bottom:201.067493pt;}
.y14d{bottom:201.068693pt;}
.y16f{bottom:201.069173pt;}
.y7f{bottom:201.363573pt;}
.y75{bottom:201.371573pt;}
.y10e{bottom:201.372240pt;}
.y1df{bottom:203.935333pt;}
.y3d{bottom:205.906080pt;}
.y1a4{bottom:207.989733pt;}
.y12f{bottom:211.724080pt;}
.y100{bottom:211.876533pt;}
.yad{bottom:217.091733pt;}
.yd6{bottom:217.094320pt;}
.y14c{bottom:217.095520pt;}
.y16e{bottom:217.096000pt;}
.y1de{bottom:217.240667pt;}
.y7e{bottom:217.390400pt;}
.y10d{bottom:217.399067pt;}
.y74{bottom:217.403733pt;}
.y1a3{bottom:221.374400pt;}
.y3c{bottom:221.932907pt;}
.y172{bottom:224.428267pt;}
.y12e{bottom:227.750907pt;}
.yff{bottom:227.903360pt;}
.y1dd{bottom:230.625333pt;}
.yac{bottom:233.038560pt;}
.yd5{bottom:233.041147pt;}
.y14b{bottom:233.042347pt;}
.y73{bottom:233.417227pt;}
.y10c{bottom:233.425893pt;}
.y1a2{bottom:234.679733pt;}
.y3b{bottom:237.959733pt;}
.y16d{bottom:241.058267pt;}
.y12d{bottom:243.697733pt;}
.y1dc{bottom:243.864800pt;}
.yfe{bottom:243.930187pt;}
.y1a1{bottom:248.064400pt;}
.yab{bottom:249.065387pt;}
.yd4{bottom:249.067973pt;}
.y14a{bottom:249.069813pt;}
.y72{bottom:249.364053pt;}
.y10b{bottom:249.372720pt;}
.y3a{bottom:253.906560pt;}
.y1db{bottom:257.170133pt;}
.y12c{bottom:259.724560pt;}
.yfd{bottom:259.877013pt;}
.y1a0{bottom:261.369733pt;}
.yaa{bottom:265.092213pt;}
.yd3{bottom:265.094800pt;}
.y149{bottom:265.096640pt;}
.y71{bottom:265.390880pt;}
.y10a{bottom:265.399547pt;}
.y39{bottom:269.933387pt;}
.y1da{bottom:270.554800pt;}
.y19f{bottom:274.675067pt;}
.y12b{bottom:275.751387pt;}
.yfc{bottom:275.903840pt;}
.ya9{bottom:281.039040pt;}
.yd2{bottom:281.041627pt;}
.y70{bottom:281.417707pt;}
.y171{bottom:281.426373pt;}
.y1d9{bottom:283.860133pt;}
.y16c{bottom:284.064693pt;}
.y38{bottom:285.960213pt;}
.y19e{bottom:288.059733pt;}
.y148{bottom:289.056880pt;}
.y12a{bottom:291.698213pt;}
.yfb{bottom:291.930667pt;}
.ya8{bottom:297.065867pt;}
.yd1{bottom:297.068453pt;}
.y1d8{bottom:297.244800pt;}
.y6f{bottom:297.364533pt;}
.y170{bottom:297.377867pt;}
.y16b{bottom:300.091520pt;}
.y19d{bottom:301.365067pt;}
.y37{bottom:301.907040pt;}
.y129{bottom:307.725040pt;}
.y1d7{bottom:310.550133pt;}
.ya7{bottom:313.092693pt;}
.yd0{bottom:313.095280pt;}
.y6e{bottom:313.391360pt;}
.y19c{bottom:314.749733pt;}
.y16a{bottom:316.038347pt;}
.yfa{bottom:317.322533pt;}
.y36{bottom:317.933867pt;}
.y14{bottom:323.166667pt;}
.y128{bottom:323.751867pt;}
.y1d6{bottom:323.855467pt;}
.y19b{bottom:328.055067pt;}
.ya6{bottom:329.039520pt;}
.ycf{bottom:329.042107pt;}
.y6d{bottom:329.418187pt;}
.yf9{bottom:330.627867pt;}
.y169{bottom:332.065173pt;}
.y147{bottom:337.057360pt;}
.y1d5{bottom:337.240133pt;}
.y127{bottom:339.698693pt;}
.y19a{bottom:341.360400pt;}
.y35{bottom:341.896000pt;}
.yf8{bottom:344.012533pt;}
.ya5{bottom:345.066347pt;}
.yce{bottom:345.068933pt;}
.y6c{bottom:345.365013pt;}
.y168{bottom:348.092000pt;}
.y1d4{bottom:350.545467pt;}
.y146{bottom:353.084187pt;}
.y199{bottom:354.745067pt;}
.y126{bottom:355.725520pt;}
.ya4{bottom:361.093173pt;}
.ycd{bottom:361.095760pt;}
.y6b{bottom:361.391840pt;}
.y1d3{bottom:363.930133pt;}
.y167{bottom:364.038827pt;}
.y198{bottom:367.991067pt;}
.y145{bottom:369.031013pt;}
.yf7{bottom:369.407573pt;}
.y125{bottom:371.752347pt;}
.ya3{bottom:377.040000pt;}
.ycc{bottom:377.042587pt;}
.y1d2{bottom:377.235467pt;}
.y6a{bottom:377.418667pt;}
.y166{bottom:380.065653pt;}
.y13{bottom:380.366667pt;}
.y197{bottom:381.296400pt;}
.y144{bottom:385.057840pt;}
.yf6{bottom:385.434400pt;}
.y124{bottom:387.699173pt;}
.y1d1{bottom:390.540800pt;}
.ya2{bottom:393.066827pt;}
.ycb{bottom:393.069413pt;}
.y69{bottom:393.365493pt;}
.y196{bottom:394.681067pt;}
.y165{bottom:396.092480pt;}
.y2e{bottom:400.430533pt;}
.y143{bottom:401.084667pt;}
.yf5{bottom:401.381227pt;}
.y123{bottom:403.726000pt;}
.y1d0{bottom:403.925467pt;}
.y195{bottom:407.986400pt;}
.ya1{bottom:409.093653pt;}
.yca{bottom:409.096240pt;}
.y68{bottom:409.392320pt;}
.y164{bottom:412.039307pt;}
.y2d{bottom:413.738533pt;}
.y142{bottom:417.031493pt;}
.y1cf{bottom:417.230800pt;}
.yf4{bottom:417.408053pt;}
.y122{bottom:419.752827pt;}
.y194{bottom:421.371067pt;}
.ya0{bottom:425.040480pt;}
.yc9{bottom:425.043067pt;}
.y67{bottom:425.419147pt;}
.y2c{bottom:427.118533pt;}
.y163{bottom:428.066133pt;}
.y1ce{bottom:430.536133pt;}
.y141{bottom:433.058320pt;}
.yf3{bottom:433.434880pt;}
.y193{bottom:434.676400pt;}
.y121{bottom:435.699653pt;}
.y12{bottom:437.566667pt;}
.y2b{bottom:440.426533pt;}
.y9f{bottom:441.067307pt;}
.yc8{bottom:441.069893pt;}
.y66{bottom:441.365973pt;}
.y1cd{bottom:443.920800pt;}
.y162{bottom:444.092960pt;}
.y192{bottom:447.981733pt;}
.y140{bottom:449.085147pt;}
.yf2{bottom:449.381707pt;}
.y120{bottom:451.726480pt;}
.y2a{bottom:453.734533pt;}
.y9e{bottom:457.094133pt;}
.yc7{bottom:457.096720pt;}
.y1cc{bottom:457.226133pt;}
.y65{bottom:457.392800pt;}
.y161{bottom:460.039787pt;}
.y191{bottom:461.366400pt;}
.y13f{bottom:465.031973pt;}
.yf1{bottom:465.408533pt;}
.y29{bottom:467.114533pt;}
.y11f{bottom:467.753307pt;}
.y1cb{bottom:470.610800pt;}
.y9d{bottom:473.040960pt;}
.yc6{bottom:473.043547pt;}
.y64{bottom:473.419627pt;}
.y190{bottom:474.671733pt;}
.y160{bottom:476.066613pt;}
.y28{bottom:480.422533pt;}
.y13e{bottom:481.058800pt;}
.yf0{bottom:481.435360pt;}
.y11e{bottom:483.700133pt;}
.y1ca{bottom:483.916133pt;}
.y18f{bottom:488.056400pt;}
.y9c{bottom:489.067787pt;}
.yc5{bottom:489.070373pt;}
.y63{bottom:489.366453pt;}
.y15f{bottom:492.093440pt;}
.y27{bottom:493.802533pt;}
.y13d{bottom:497.085627pt;}
.y1c9{bottom:497.221467pt;}
.y11{bottom:497.372000pt;}
.yef{bottom:497.382187pt;}
.y11d{bottom:499.726960pt;}
.y18e{bottom:501.361733pt;}
.y9b{bottom:505.094613pt;}
.yc4{bottom:505.097200pt;}
.y62{bottom:505.393280pt;}
.y26{bottom:507.110533pt;}
.y15e{bottom:508.040267pt;}
.y1c8{bottom:510.606133pt;}
.y13c{bottom:513.032453pt;}
.yee{bottom:513.409013pt;}
.y18d{bottom:514.667067pt;}
.y11c{bottom:515.753787pt;}
.y25{bottom:520.418533pt;}
.y9a{bottom:521.041440pt;}
.yc3{bottom:521.044027pt;}
.y61{bottom:521.420107pt;}
.y1c7{bottom:523.911467pt;}
.y15d{bottom:524.067093pt;}
.y10{bottom:527.905335pt;}
.y18c{bottom:528.051733pt;}
.y13b{bottom:529.059280pt;}
.yed{bottom:529.435840pt;}
.y11b{bottom:531.700613pt;}
.y24{bottom:533.798533pt;}
.y99{bottom:537.068267pt;}
.yc2{bottom:537.070853pt;}
.y1c6{bottom:537.296133pt;}
.y60{bottom:537.366933pt;}
.y15c{bottom:540.093920pt;}
.yf{bottom:541.238668pt;}
.y18b{bottom:541.357067pt;}
.y13a{bottom:545.086107pt;}
.yec{bottom:545.382667pt;}
.y23{bottom:547.106533pt;}
.y11a{bottom:547.727040pt;}
.y1c5{bottom:550.535600pt;}
.y98{bottom:553.095093pt;}
.yc1{bottom:553.097680pt;}
.y5f{bottom:553.393760pt;}
.ye{bottom:554.572000pt;}
.y18a{bottom:554.741733pt;}
.y15b{bottom:556.040747pt;}
.y22{bottom:560.486533pt;}
.y139{bottom:561.032933pt;}
.yeb{bottom:561.409493pt;}
.y119{bottom:563.753867pt;}
.y1c4{bottom:563.840933pt;}
.y189{bottom:568.047067pt;}
.y97{bottom:569.041920pt;}
.yc0{bottom:569.044507pt;}
.y5e{bottom:569.420587pt;}
.y15a{bottom:572.067573pt;}
.y34{bottom:572.442573pt;}
.y21{bottom:573.794533pt;}
.y1c3{bottom:577.225600pt;}
.yea{bottom:577.436320pt;}
.y188{bottom:581.352400pt;}
.y33{bottom:584.463747pt;}
.y96{bottom:585.068747pt;}
.ybf{bottom:585.071333pt;}
.y138{bottom:585.214000pt;}
.y5d{bottom:585.367413pt;}
.y20{bottom:587.102533pt;}
.y118{bottom:587.714107pt;}
.y159{bottom:588.094400pt;}
.y1c2{bottom:590.530933pt;}
.ye9{bottom:593.383147pt;}
.y187{bottom:594.737067pt;}
.y32{bottom:596.484933pt;}
.y137{bottom:598.598667pt;}
.y1f{bottom:600.482533pt;}
.y95{bottom:601.095573pt;}
.ybe{bottom:601.098160pt;}
.y5c{bottom:601.394240pt;}
.y1c1{bottom:603.915600pt;}
.y186{bottom:608.042400pt;}
.y31{bottom:608.503867pt;}
.ye8{bottom:609.409973pt;}
.y136{bottom:611.904000pt;}
.y158{bottom:612.051467pt;}
.y1e{bottom:613.790533pt;}
.y94{bottom:617.042400pt;}
.ybd{bottom:617.044987pt;}
.y1c0{bottom:617.220933pt;}
.y5b{bottom:617.421067pt;}
.y185{bottom:621.347733pt;}
.y135{bottom:625.209333pt;}
.y157{bottom:625.436133pt;}
.ye7{bottom:625.436800pt;}
.y1d{bottom:627.170533pt;}
.yd{bottom:627.271990pt;}
.y30{bottom:629.818013pt;}
.y1bf{bottom:630.526267pt;}
.y93{bottom:633.069227pt;}
.ybc{bottom:633.071813pt;}
.y5a{bottom:633.367893pt;}
.y184{bottom:634.732400pt;}
.y1c{bottom:640.478533pt;}
.ye6{bottom:641.383627pt;}
.y2f{bottom:641.839200pt;}
.y1be{bottom:643.910933pt;}
.y183{bottom:648.037733pt;}
.y92{bottom:649.096053pt;}
.ybb{bottom:649.098640pt;}
.y59{bottom:649.394720pt;}
.y1b{bottom:653.782533pt;}
.yc{bottom:654.285337pt;}
.y1bd{bottom:657.216267pt;}
.ye5{bottom:657.410453pt;}
.y91{bottom:665.042880pt;}
.yba{bottom:665.045467pt;}
.y58{bottom:665.421547pt;}
.yb{bottom:670.338661pt;}
.y1bc{bottom:670.600933pt;}
.y182{bottom:672.075467pt;}
.ye4{bottom:673.437280pt;}
.y90{bottom:681.069707pt;}
.y57{bottom:681.368373pt;}
.y1bb{bottom:683.906267pt;}
.ya{bottom:686.392006pt;}
.yb9{bottom:689.086787pt;}
.ye3{bottom:689.384107pt;}
.y1a{bottom:692.560400pt;}
.y8f{bottom:697.096533pt;}
.y1ba{bottom:697.211600pt;}
.y56{bottom:697.395200pt;}
.y9{bottom:702.858660pt;}
.yb8{bottom:705.032933pt;}
.ye2{bottom:705.410933pt;}
.y1b9{bottom:710.596267pt;}
.y8e{bottom:713.043360pt;}
.y55{bottom:713.422027pt;}
.y19{bottom:717.202933pt;}
.y181{bottom:720.060933pt;}
.y1b8{bottom:723.901600pt;}
.y8d{bottom:729.070187pt;}
.y54{bottom:729.368853pt;}
.ye1{bottom:729.373067pt;}
.y180{bottom:733.366267pt;}
.y1b7{bottom:737.206933pt;}
.y18{bottom:742.525067pt;}
.y8c{bottom:745.097013pt;}
.y53{bottom:745.395680pt;}
.y17f{bottom:746.750933pt;}
.y8{bottom:749.880002pt;}
.y1b6{bottom:750.591600pt;}
.y17e{bottom:760.056267pt;}
.y8b{bottom:761.043840pt;}
.y52{bottom:761.422507pt;}
.y1b5{bottom:763.896933pt;}
.y17{bottom:763.917067pt;}
.y17d{bottom:773.352933pt;}
.y8a{bottom:777.070667pt;}
.y1b4{bottom:777.281600pt;}
.y51{bottom:777.369333pt;}
.y16{bottom:785.234400pt;}
.y17c{bottom:786.737600pt;}
.y1b3{bottom:790.586933pt;}
.y50{bottom:793.396160pt;}
.y89{bottom:801.032933pt;}
.y1b2{bottom:803.892267pt;}
.y7{bottom:806.470670pt;}
.y17b{bottom:806.695600pt;}
.y4f{bottom:809.422987pt;}
.y1b1{bottom:817.276933pt;}
.y15{bottom:817.511600pt;}
.y17a{bottom:820.080267pt;}
.y4e{bottom:825.369813pt;}
.y1b0{bottom:830.582267pt;}
.y179{bottom:833.385600pt;}
.y6{bottom:834.470665pt;}
.y4d{bottom:841.396640pt;}
.y1af{bottom:843.966933pt;}
.y47{bottom:849.565493pt;}
.y1ae{bottom:857.272267pt;}
.y4c{bottom:857.423467pt;}
.y46{bottom:861.505333pt;}
.y5{bottom:862.470665pt;}
.y7d{bottom:893.328933pt;}
.y4{bottom:920.485335pt;}
.y3{bottom:1035.664002pt;}
.h19{height:26.692952pt;}
.h10{height:27.399635pt;}
.h18{height:28.599619pt;}
.h12{height:30.506285pt;}
.h17{height:30.762282pt;}
.h1f{height:32.277333pt;}
.h25{height:32.312000pt;}
.h24{height:32.322667pt;}
.h1e{height:32.458667pt;}
.h26{height:32.514667pt;}
.h27{height:32.540800pt;}
.h4{height:32.645833pt;}
.h28{height:32.722133pt;}
.h1b{height:32.799563pt;}
.hf{height:34.320000pt;}
.h2{height:36.726562pt;}
.h14{height:37.973713pt;}
.h20{height:38.008380pt;}
.h23{height:38.024487pt;}
.h15{height:38.027047pt;}
.h22{height:38.028647pt;}
.h1c{height:38.080380pt;}
.h1a{height:38.165715pt;}
.h16{height:38.187049pt;}
.h1d{height:38.193769pt;}
.h21{height:38.453718pt;}
.h11{height:39.360000pt;}
.h8{height:40.000000pt;}
.h13{height:40.376385pt;}
.h7{height:40.807292pt;}
.hb{height:43.733771pt;}
.he{height:45.920437pt;}
.h6{height:48.968750pt;}
.hd{height:53.013333pt;}
.hc{height:53.834667pt;}
.h3{height:61.210938pt;}
.h5{height:73.453125pt;}
.h9{height:937.322667pt;}
.ha{height:937.333333pt;}
.h1{height:1110.666667pt;}
.h0{height:1110.720000pt;}
.w3{width:657.333333pt;}
.w2{width:657.637333pt;}
.w0{width:845.760000pt;}
.w1{width:846.000000pt;}
.x0{left:0.000000pt;}
.x6{left:64.025200pt;}
.xb{left:77.330533pt;}
.x7{left:79.974800pt;}
.x4{left:129.466667pt;}
.x3{left:170.560000pt;}
.x5{left:175.733333pt;}
.x2{left:202.812000pt;}
.x1{left:260.969328pt;}
.xa{left:264.642400pt;}
.x9{left:269.782533pt;}
.x8{left:473.650267pt;}
}




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