
    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_0eedb3341e9d3d0ce1d471e5.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_dfa2173df9ec875e1fb7ad9d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.923000;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_e7068fafb7f4ff3eef5d921b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8f587b5e1fde8dbedf8e6ffd.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_419a967e3e988b655831d074.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.349000;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_e5d6f9fb5e5a5a0208bda48a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.656000;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_188e49f2f081dab133f88400.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.515000;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_d346965d6830243b57f0ae4e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_dd1b9a6921a15175c858e018.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.709000;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_f7ffb35549a6ea9f58191971.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.968000;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_7f2bae9e89397aaa2c1d6165.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.590000;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_d7aaefd65a121ed141a1cde9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.770000;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_64cd1a3a7e1ccef119e64cf6.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_7ebcd8ffd27918485d7c23e6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.709000;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_8e35fcbdff6bbef0026212bc.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_64cd1a3a7e1ccef119e64cf6.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_175dd0430add13a65f158482.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.662000;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_8214127745dbf9d6ba00ad6f.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_ab514a69547481ae3c26e10d.woff2')format("woff");}.ff13{font-family:ff13;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;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v3{vertical-align:-18.000000px;}
.v2{vertical-align:-16.992000px;}
.v1{vertical-align:-11.997000px;}
.v0{vertical-align:0.000000px;}
.ls21{letter-spacing:-1.050011px;}
.lsa{letter-spacing:-0.480000px;}
.ls25{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.240000px;}
.ls2a{letter-spacing:-0.168000px;}
.ls2e{letter-spacing:-0.062400px;}
.ls9{letter-spacing:-0.060000px;}
.ls28{letter-spacing:-0.048000px;}
.ls23{letter-spacing:-0.043200px;}
.ls6{letter-spacing:-0.042000px;}
.ls29{letter-spacing:-0.033600px;}
.ls27{letter-spacing:-0.014400px;}
.ls22{letter-spacing:-0.009600px;}
.ls7{letter-spacing:-0.006000px;}
.ls5{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.000600px;}
.ls39{letter-spacing:0.004800px;}
.ls1{letter-spacing:0.006000px;}
.ls1c{letter-spacing:0.009600px;}
.ls1d{letter-spacing:0.014400px;}
.lsc{letter-spacing:0.018000px;}
.ls1e{letter-spacing:0.028800px;}
.ls30{letter-spacing:0.033600px;}
.ls2d{letter-spacing:0.036000px;}
.ls38{letter-spacing:0.038400px;}
.ls31{letter-spacing:0.039600px;}
.ls2{letter-spacing:0.060001px;}
.ls26{letter-spacing:0.072000px;}
.ls37{letter-spacing:0.075600px;}
.ls34{letter-spacing:0.076800px;}
.ls51{letter-spacing:0.102600px;}
.ls20{letter-spacing:0.108000px;}
.ls2b{letter-spacing:0.114001px;}
.ls4a{letter-spacing:0.118800px;}
.ls3{letter-spacing:0.120001px;}
.ls0{letter-spacing:0.124200px;}
.ls32{letter-spacing:0.156002px;}
.ls56{letter-spacing:0.162000px;}
.ls33{letter-spacing:0.180002px;}
.ls36{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.240002px;}
.ls18{letter-spacing:0.300003px;}
.ls1f{letter-spacing:0.336000px;}
.ls13{letter-spacing:0.354004px;}
.ls4{letter-spacing:0.360004px;}
.ls1b{letter-spacing:0.396004px;}
.ls24{letter-spacing:0.720000px;}
.lsf{letter-spacing:8.880089px;}
.ls12{letter-spacing:9.000090px;}
.lse{letter-spacing:9.240092px;}
.ls3b{letter-spacing:10.314000px;}
.ls53{letter-spacing:10.962000px;}
.ls16{letter-spacing:11.940119px;}
.ls19{letter-spacing:11.964120px;}
.ls15{letter-spacing:12.060121px;}
.ls2c{letter-spacing:12.300123px;}
.ls55{letter-spacing:12.690000px;}
.ls3d{letter-spacing:13.743000px;}
.ls48{letter-spacing:14.364000px;}
.ls4d{letter-spacing:14.742000px;}
.ls4f{letter-spacing:15.390000px;}
.lsd{letter-spacing:15.540155px;}
.ls3e{letter-spacing:15.768000px;}
.ls10{letter-spacing:16.188162px;}
.ls17{letter-spacing:16.313991px;}
.ls1a{letter-spacing:16.506077px;}
.ls11{letter-spacing:16.548165px;}
.ls4c{letter-spacing:17.766000px;}
.ls40{letter-spacing:18.468000px;}
.ls41{letter-spacing:18.792000px;}
.ls14{letter-spacing:19.080191px;}
.ls3f{letter-spacing:20.520000px;}
.ls49{letter-spacing:22.221000px;}
.ls45{letter-spacing:24.948000px;}
.ls3c{letter-spacing:25.974000px;}
.ls46{letter-spacing:26.298000px;}
.ls44{letter-spacing:27.324000px;}
.ls50{letter-spacing:27.648000px;}
.ls43{letter-spacing:27.756000px;}
.ls42{letter-spacing:28.350000px;}
.ls3a{letter-spacing:31.374000px;}
.ls4e{letter-spacing:31.752000px;}
.ls52{letter-spacing:33.436800px;}
.ls54{letter-spacing:33.750000px;}
.ls4b{letter-spacing:34.776000px;}
.ls47{letter-spacing:39.204000px;}
.ls2f{letter-spacing:317.520000px;}
.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;}
}
.ws14a{word-spacing:-12.360124px;}
.wsd1{word-spacing:-12.024120px;}
.ws174{word-spacing:-11.616000px;}
.ws1fb{word-spacing:-10.896000px;}
.ws1fc{word-spacing:-10.881600px;}
.ws44{word-spacing:-10.855140px;}
.ws126{word-spacing:-10.464000px;}
.ws8d{word-spacing:-8.940089px;}
.ws125{word-spacing:-8.172000px;}
.ws141{word-spacing:-0.724800px;}
.ws1b5{word-spacing:-0.076800px;}
.ws2d{word-spacing:-0.060001px;}
.wse{word-spacing:-0.054000px;}
.ws12b{word-spacing:-0.048000px;}
.ws182{word-spacing:-0.033600px;}
.ws143{word-spacing:-0.028800px;}
.ws1ad{word-spacing:-0.024000px;}
.ws13e{word-spacing:-0.014400px;}
.ws13c{word-spacing:-0.009600px;}
.ws142{word-spacing:-0.004800px;}
.ws45{word-spacing:0.000000px;}
.ws13b{word-spacing:0.009600px;}
.ws140{word-spacing:0.014400px;}
.ws146{word-spacing:0.028800px;}
.ws181{word-spacing:0.062400px;}
.ws147{word-spacing:0.744000px;}
.ws13f{word-spacing:0.768000px;}
.ws13d{word-spacing:5.798400px;}
.ws144{word-spacing:5.808000px;}
.ws145{word-spacing:5.817600px;}
.wsa1{word-spacing:8.784088px;}
.ws81{word-spacing:8.790088px;}
.wscc{word-spacing:8.808088px;}
.wsc7{word-spacing:8.838088px;}
.ws1a8{word-spacing:8.893800px;}
.ws130{word-spacing:8.899200px;}
.ws1fe{word-spacing:8.904600px;}
.ws1af{word-spacing:8.915400px;}
.ws112{word-spacing:8.940089px;}
.wsa0{word-spacing:8.946089px;}
.ws5c{word-spacing:8.952090px;}
.ws6b{word-spacing:8.958090px;}
.ws88{word-spacing:8.964090px;}
.wsd3{word-spacing:8.970090px;}
.ws5a{word-spacing:8.976090px;}
.wsbf{word-spacing:8.982090px;}
.wsdb{word-spacing:9.000090px;}
.wsc6{word-spacing:9.024090px;}
.wsc3{word-spacing:9.102091px;}
.wsbe{word-spacing:9.114091px;}
.ws9a{word-spacing:9.120091px;}
.ws123{word-spacing:9.144091px;}
.ws204{word-spacing:9.147600px;}
.ws62{word-spacing:9.174092px;}
.wsdd{word-spacing:9.180092px;}
.wsfd{word-spacing:9.288093px;}
.ws28a{word-spacing:10.114200px;}
.ws12d{word-spacing:10.270800px;}
.ws20e{word-spacing:10.297800px;}
.ws12c{word-spacing:10.314000px;}
.ws220{word-spacing:10.405800px;}
.ws2c2{word-spacing:10.535400px;}
.ws2c3{word-spacing:10.584000px;}
.ws2b7{word-spacing:10.702800px;}
.ws221{word-spacing:10.756800px;}
.ws2b6{word-spacing:11.037600px;}
.ws1b2{word-spacing:11.075400px;}
.ws1b1{word-spacing:11.118600px;}
.ws9{word-spacing:11.151000px;}
.ws14f{word-spacing:11.328113px;}
.ws296{word-spacing:11.404800px;}
.ws14c{word-spacing:11.670117px;}
.ws14d{word-spacing:11.682117px;}
.ws14e{word-spacing:11.850118px;}
.ws27d{word-spacing:11.869200px;}
.ws161{word-spacing:11.904119px;}
.ws160{word-spacing:11.910119px;}
.ws27e{word-spacing:11.917800px;}
.ws288{word-spacing:11.977200px;}
.ws15f{word-spacing:12.024120px;}
.ws148{word-spacing:12.030120px;}
.ws287{word-spacing:12.085200px;}
.ws26b{word-spacing:12.106800px;}
.ws188{word-spacing:12.270123px;}
.ws15d{word-spacing:12.348123px;}
.ws1b8{word-spacing:12.354124px;}
.ws1f{word-spacing:12.396124px;}
.ws268{word-spacing:12.403800px;}
.ws1c{word-spacing:12.444124px;}
.wsc2{word-spacing:12.486125px;}
.ws15e{word-spacing:12.504125px;}
.ws267{word-spacing:12.506400px;}
.ws120{word-spacing:12.516125px;}
.ws1b9{word-spacing:12.600126px;}
.ws71{word-spacing:12.618126px;}
.ws157{word-spacing:12.672127px;}
.ws5b{word-spacing:12.690127px;}
.ws158{word-spacing:12.708127px;}
.ws1cd{word-spacing:12.714127px;}
.ws2bf{word-spacing:12.733200px;}
.ws237{word-spacing:12.749400px;}
.ws2be{word-spacing:12.771000px;}
.wsc1{word-spacing:12.798128px;}
.ws11f{word-spacing:12.810128px;}
.ws6e{word-spacing:12.870129px;}
.ws38{word-spacing:13.050130px;}
.ws6d{word-spacing:13.080131px;}
.ws231{word-spacing:13.176000px;}
.ws25d{word-spacing:13.186800px;}
.wsc0{word-spacing:13.278133px;}
.ws25e{word-spacing:13.278600px;}
.ws1a9{word-spacing:13.359600px;}
.ws11b{word-spacing:13.368134px;}
.ws21d{word-spacing:13.370400px;}
.ws3e{word-spacing:13.386134px;}
.ws40{word-spacing:13.422134px;}
.ws21e{word-spacing:13.456800px;}
.ws77{word-spacing:13.488135px;}
.ws78{word-spacing:13.518135px;}
.ws87{word-spacing:13.524135px;}
.ws1a7{word-spacing:13.537800px;}
.ws11d{word-spacing:13.566136px;}
.ws168{word-spacing:13.650136px;}
.ws1a6{word-spacing:13.672800px;}
.ws1a5{word-spacing:13.716000px;}
.ws1a{word-spacing:13.722137px;}
.ws173{word-spacing:13.752138px;}
.ws2b0{word-spacing:13.818600px;}
.ws121{word-spacing:13.854139px;}
.ws258{word-spacing:13.932000px;}
.ws1ff{word-spacing:13.969800px;}
.ws122{word-spacing:13.986140px;}
.ws1b0{word-spacing:13.991400px;}
.ws213{word-spacing:13.996800px;}
.ws1fd{word-spacing:14.040000px;}
.wsf0{word-spacing:14.046140px;}
.ws16f{word-spacing:14.160142px;}
.ws259{word-spacing:14.180400px;}
.ws3f{word-spacing:14.220142px;}
.ws2d2{word-spacing:14.250600px;}
.ws276{word-spacing:14.256000px;}
.ws212{word-spacing:14.266800px;}
.ws20b{word-spacing:14.277600px;}
.wsc4{word-spacing:14.280143px;}
.ws202{word-spacing:14.293800px;}
.ws18{word-spacing:14.310000px;}
.ws225{word-spacing:14.320800px;}
.ws2c4{word-spacing:14.326200px;}
.ws286{word-spacing:14.331600px;}
.ws218{word-spacing:14.337000px;}
.ws21f{word-spacing:14.353200px;}
.ws1ae{word-spacing:14.364000px;}
.ws205{word-spacing:14.380200px;}
.ws16e{word-spacing:14.406144px;}
.ws7{word-spacing:14.428800px;}
.ws10f{word-spacing:14.430144px;}
.ws244{word-spacing:14.450400px;}
.ws6{word-spacing:14.455800px;}
.wsa{word-spacing:14.477400px;}
.ws23d{word-spacing:14.482800px;}
.ws10e{word-spacing:14.496145px;}
.ws271{word-spacing:14.503200px;}
.ws1b4{word-spacing:14.504400px;}
.ws203{word-spacing:14.520600px;}
.ws284{word-spacing:14.553000px;}
.ws2d1{word-spacing:14.558400px;}
.ws211{word-spacing:14.563800px;}
.ws2bd{word-spacing:14.580000px;}
.ws2b2{word-spacing:14.596200px;}
.wsef{word-spacing:14.598146px;}
.ws282{word-spacing:14.607000px;}
.ws243{word-spacing:14.617800px;}
.ws289{word-spacing:14.628600px;}
.ws2b5{word-spacing:14.639400px;}
.wsd{word-spacing:14.644800px;}
.ws219{word-spacing:14.650200px;}
.ws246{word-spacing:14.661000px;}
.ws25a{word-spacing:14.671800px;}
.ws25b{word-spacing:14.677200px;}
.ws270{word-spacing:14.688000px;}
.ws2ae{word-spacing:14.698800px;}
.ws10{word-spacing:14.725800px;}
.ws5e{word-spacing:14.730147px;}
.ws20a{word-spacing:14.736600px;}
.ws80{word-spacing:14.772148px;}
.ws297{word-spacing:14.774400px;}
.ws6a{word-spacing:14.778148px;}
.ws8{word-spacing:14.796000px;}
.ws2c0{word-spacing:14.828400px;}
.ws5f{word-spacing:14.844148px;}
.wsf{word-spacing:14.860800px;}
.ws109{word-spacing:14.874149px;}
.ws2b3{word-spacing:14.877000px;}
.ws222{word-spacing:14.898600px;}
.ws12e{word-spacing:14.914800px;}
.ws7c{word-spacing:15.006150px;}
.ws17{word-spacing:15.006600px;}
.ws12f{word-spacing:15.012000px;}
.ws281{word-spacing:15.044400px;}
.ws1b3{word-spacing:15.060600px;}
.ws28c{word-spacing:15.087600px;}
.ws261{word-spacing:15.125400px;}
.ws113{word-spacing:15.144151px;}
.ws28d{word-spacing:15.157800px;}
.ws280{word-spacing:15.201000px;}
.ws262{word-spacing:15.238800px;}
.ws7f{word-spacing:15.246152px;}
.ws283{word-spacing:15.319800px;}
.ws239{word-spacing:15.357600px;}
.ws2a6{word-spacing:15.368400px;}
.ws28e{word-spacing:15.384600px;}
.ws196{word-spacing:15.390154px;}
.ws1dd{word-spacing:15.408154px;}
.ws2c1{word-spacing:15.471000px;}
.ws8a{word-spacing:15.480155px;}
.ws1bf{word-spacing:15.492155px;}
.wsb{word-spacing:15.541200px;}
.ws2c9{word-spacing:15.546600px;}
.ws2c8{word-spacing:15.660000px;}
.ws11c{word-spacing:15.672157px;}
.ws8b{word-spacing:15.690157px;}
.ws6c{word-spacing:15.714157px;}
.ws2cf{word-spacing:15.741000px;}
.ws192{word-spacing:15.750157px;}
.ws1de{word-spacing:15.792158px;}
.ws223{word-spacing:15.805800px;}
.ws73{word-spacing:15.822158px;}
.ws193{word-spacing:15.876159px;}
.ws8c{word-spacing:15.906159px;}
.ws1b{word-spacing:15.918159px;}
.ws24d{word-spacing:15.967800px;}
.ws2ad{word-spacing:15.973200px;}
.ws2ce{word-spacing:15.994800px;}
.ws224{word-spacing:16.000200px;}
.ws69{word-spacing:16.002160px;}
.ws1f5{word-spacing:16.032160px;}
.ws55{word-spacing:16.038160px;}
.ws83{word-spacing:16.044160px;}
.ws92{word-spacing:16.056161px;}
.ws17e{word-spacing:16.081200px;}
.ws2a7{word-spacing:16.086600px;}
.ws4c{word-spacing:16.092161px;}
.wsd7{word-spacing:16.134161px;}
.ws43{word-spacing:16.140161px;}
.ws34{word-spacing:16.164162px;}
.ws47{word-spacing:16.170162px;}
.ws17d{word-spacing:16.183800px;}
.ws10a{word-spacing:16.188162px;}
.ws24e{word-spacing:16.221600px;}
.ws94{word-spacing:16.224162px;}
.ws39{word-spacing:16.230162px;}
.ws257{word-spacing:16.237800px;}
.ws2f{word-spacing:16.260163px;}
.ws11{word-spacing:16.275600px;}
.ws18a{word-spacing:16.296163px;}
.ws117{word-spacing:16.314163px;}
.wsa7{word-spacing:16.368164px;}
.ws2a1{word-spacing:16.383600px;}
.ws93{word-spacing:16.392164px;}
.wsba{word-spacing:16.404164px;}
.ws95{word-spacing:16.410164px;}
.ws1ac{word-spacing:16.421400px;}
.wsfb{word-spacing:16.422164px;}
.ws96{word-spacing:16.428164px;}
.ws24f{word-spacing:16.443000px;}
.ws11e{word-spacing:16.446164px;}
.ws1d{word-spacing:16.452165px;}
.wsb0{word-spacing:16.482165px;}
.ws1f7{word-spacing:16.494165px;}
.ws12{word-spacing:16.497000px;}
.ws1e{word-spacing:16.500165px;}
.ws20{word-spacing:16.512165px;}
.ws2a2{word-spacing:16.529400px;}
.ws124{word-spacing:16.548165px;}
.ws1ab{word-spacing:16.556400px;}
.ws1be{word-spacing:16.578166px;}
.wsbb{word-spacing:16.602166px;}
.ws1aa{word-spacing:16.615800px;}
.ws56{word-spacing:16.650167px;}
.wse8{word-spacing:16.662167px;}
.ws14b{word-spacing:16.680167px;}
.wse1{word-spacing:16.716167px;}
.ws149{word-spacing:16.722167px;}
.ws33{word-spacing:16.728167px;}
.ws1e2{word-spacing:16.746167px;}
.ws1e1{word-spacing:16.752168px;}
.ws180{word-spacing:16.761600px;}
.ws21{word-spacing:16.776168px;}
.wsaf{word-spacing:16.788168px;}
.ws1e5{word-spacing:16.806168px;}
.ws17f{word-spacing:16.848000px;}
.ws17c{word-spacing:16.864200px;}
.ws17a{word-spacing:16.896600px;}
.ws260{word-spacing:16.923600px;}
.ws200{word-spacing:16.956000px;}
.ws17b{word-spacing:16.961400px;}
.ws201{word-spacing:16.993800px;}
.ws210{word-spacing:17.053200px;}
.ws118{word-spacing:17.112171px;}
.ws27f{word-spacing:17.139600px;}
.ws1e4{word-spacing:17.160172px;}
.ws20f{word-spacing:17.193600px;}
.wsc9{word-spacing:17.220172px;}
.ws159{word-spacing:17.292173px;}
.ws2af{word-spacing:17.317800px;}
.wsc8{word-spacing:17.358174px;}
.ws253{word-spacing:17.388000px;}
.ws119{word-spacing:17.406174px;}
.ws269{word-spacing:17.442000px;}
.ws1bd{word-spacing:17.460175px;}
.ws252{word-spacing:17.512200px;}
.ws207{word-spacing:17.517600px;}
.ws208{word-spacing:17.523000px;}
.ws26a{word-spacing:17.582400px;}
.ws9f{word-spacing:17.706177px;}
.ws1da{word-spacing:17.748177px;}
.ws3a{word-spacing:17.772178px;}
.ws179{word-spacing:17.782200px;}
.wse2{word-spacing:17.790178px;}
.ws31{word-spacing:17.808178px;}
.ws185{word-spacing:17.850178px;}
.wsc{word-spacing:17.857800px;}
.ws184{word-spacing:17.916179px;}
.ws178{word-spacing:17.987400px;}
.ws26f{word-spacing:18.025200px;}
.ws177{word-spacing:18.090000px;}
.ws110{word-spacing:18.108181px;}
.ws21c{word-spacing:18.122400px;}
.ws2b{word-spacing:18.132181px;}
.ws41{word-spacing:18.180182px;}
.ws2cd{word-spacing:18.187200px;}
.ws1bc{word-spacing:18.192182px;}
.ws234{word-spacing:18.192600px;}
.ws42{word-spacing:18.300183px;}
.ws3d{word-spacing:18.378184px;}
.ws2c5{word-spacing:18.381600px;}
.ws100{word-spacing:18.384184px;}
.ws23c{word-spacing:18.419400px;}
.ws1fa{word-spacing:18.420184px;}
.wsfe{word-spacing:18.468185px;}
.ws266{word-spacing:18.505800px;}
.wsff{word-spacing:18.510185px;}
.ws294{word-spacing:18.538200px;}
.ws170{word-spacing:18.546185px;}
.ws2cc{word-spacing:18.554400px;}
.ws20c{word-spacing:18.565200px;}
.ws7e{word-spacing:18.570186px;}
.ws35{word-spacing:18.576186px;}
.wsfc{word-spacing:18.588186px;}
.ws23a{word-spacing:18.619200px;}
.ws20d{word-spacing:18.624600px;}
.ws3c{word-spacing:18.672187px;}
.ws23b{word-spacing:18.673200px;}
.ws2ab{word-spacing:18.689400px;}
.ws23e{word-spacing:18.721800px;}
.ws265{word-spacing:18.732600px;}
.wsac{word-spacing:18.750188px;}
.ws295{word-spacing:18.802800px;}
.ws1d9{word-spacing:18.810188px;}
.wscb{word-spacing:18.858189px;}
.wsa4{word-spacing:18.918189px;}
.wsa8{word-spacing:18.936189px;}
.wsae{word-spacing:18.948189px;}
.wsad{word-spacing:18.960190px;}
.ws30{word-spacing:19.080191px;}
.wsa9{word-spacing:19.092191px;}
.ws5{word-spacing:19.115841px;}
.ws16c{word-spacing:19.134191px;}
.wsca{word-spacing:19.164192px;}
.ws19{word-spacing:19.173440px;}
.ws15c{word-spacing:19.176192px;}
.ws7b{word-spacing:19.230192px;}
.ws21b{word-spacing:19.261800px;}
.ws13a{word-spacing:19.283400px;}
.ws291{word-spacing:19.305000px;}
.ws72{word-spacing:19.332193px;}
.wsfa{word-spacing:19.338193px;}
.ws21a{word-spacing:19.369800px;}
.ws64{word-spacing:19.380194px;}
.ws63{word-spacing:19.404194px;}
.ws139{word-spacing:19.440000px;}
.ws1db{word-spacing:19.476195px;}
.ws4b{word-spacing:19.494195px;}
.wsb7{word-spacing:19.511837px;}
.ws1d2{word-spacing:19.512195px;}
.ws29e{word-spacing:19.521000px;}
.ws285{word-spacing:19.537200px;}
.wsa3{word-spacing:19.548195px;}
.ws1f6{word-spacing:19.576637px;}
.ws4a{word-spacing:19.596196px;}
.wsf9{word-spacing:19.608196px;}
.ws26d{word-spacing:19.656000px;}
.ws26e{word-spacing:19.710000px;}
.ws26c{word-spacing:19.866600px;}
.ws190{word-spacing:19.890199px;}
.ws1cc{word-spacing:19.902199px;}
.ws1d6{word-spacing:19.938199px;}
.ws189{word-spacing:19.944199px;}
.ws18f{word-spacing:20.034200px;}
.ws1d0{word-spacing:20.112201px;}
.ws131{word-spacing:20.115000px;}
.ws1dc{word-spacing:20.172202px;}
.ws15a{word-spacing:20.196202px;}
.ws15{word-spacing:20.239200px;}
.wsc5{word-spacing:20.244202px;}
.ws133{word-spacing:20.287800px;}
.ws132{word-spacing:20.298600px;}
.ws228{word-spacing:20.304000px;}
.ws1c7{word-spacing:20.322203px;}
.ws22b{word-spacing:20.363400px;}
.ws16d{word-spacing:20.388204px;}
.wsda{word-spacing:20.424204px;}
.ws162{word-spacing:20.454205px;}
.ws1d7{word-spacing:20.478205px;}
.ws29{word-spacing:20.514205px;}
.ws10d{word-spacing:20.562206px;}
.ws215{word-spacing:20.568600px;}
.ws76{word-spacing:20.586206px;}
.ws1cb{word-spacing:20.610206px;}
.ws11a{word-spacing:20.622206px;}
.ws14{word-spacing:20.644200px;}
.ws2a{word-spacing:20.658207px;}
.ws256{word-spacing:20.665800px;}
.ws166{word-spacing:20.790208px;}
.ws91{word-spacing:20.850208px;}
.ws233{word-spacing:20.941200px;}
.ws10c{word-spacing:20.964210px;}
.ws1b6{word-spacing:20.976210px;}
.ws1b7{word-spacing:21.006210px;}
.ws22c{word-spacing:21.033000px;}
.ws90{word-spacing:21.036210px;}
.ws27b{word-spacing:21.065400px;}
.wsdf{word-spacing:21.180212px;}
.ws16a{word-spacing:21.210212px;}
.ws108{word-spacing:21.216212px;}
.ws226{word-spacing:21.259800px;}
.ws70{word-spacing:21.294213px;}
.ws151{word-spacing:21.312213px;}
.ws2ba{word-spacing:21.319200px;}
.ws229{word-spacing:21.421800px;}
.ws230{word-spacing:21.454200px;}
.ws22a{word-spacing:21.465000px;}
.ws292{word-spacing:21.481200px;}
.wse3{word-spacing:21.528215px;}
.wsd6{word-spacing:21.534215px;}
.ws24b{word-spacing:21.535200px;}
.ws23{word-spacing:21.540215px;}
.ws1a4{word-spacing:21.552216px;}
.ws22{word-spacing:21.588216px;}
.ws28{word-spacing:21.600216px;}
.wse4{word-spacing:21.606216px;}
.ws107{word-spacing:21.630216px;}
.wsd5{word-spacing:21.642216px;}
.wse5{word-spacing:21.684217px;}
.ws101{word-spacing:21.720217px;}
.ws1ee{word-spacing:21.732217px;}
.ws293{word-spacing:21.794400px;}
.ws22f{word-spacing:21.816000px;}
.ws19f{word-spacing:21.852219px;}
.ws1d1{word-spacing:21.870219px;}
.ws1ce{word-spacing:21.888219px;}
.ws2c7{word-spacing:21.891600px;}
.ws102{word-spacing:21.906219px;}
.ws1ef{word-spacing:21.912219px;}
.ws167{word-spacing:21.918219px;}
.ws1f8{word-spacing:21.936219px;}
.ws1a0{word-spacing:21.948219px;}
.ws1ed{word-spacing:22.104221px;}
.ws172{word-spacing:22.116221px;}
.ws214{word-spacing:22.161600px;}
.ws59{word-spacing:22.194222px;}
.ws25f{word-spacing:22.269600px;}
.ws153{word-spacing:22.284223px;}
.ws13{word-spacing:22.339800px;}
.ws3b{word-spacing:22.386224px;}
.ws7d{word-spacing:22.404224px;}
.ws1c1{word-spacing:22.506225px;}
.ws138{word-spacing:22.550400px;}
.ws89{word-spacing:22.578226px;}
.ws171{word-spacing:22.602226px;}
.ws1df{word-spacing:22.614226px;}
.ws137{word-spacing:22.685400px;}
.ws68{word-spacing:22.746227px;}
.ws275{word-spacing:22.750200px;}
.ws49{word-spacing:22.782228px;}
.ws136{word-spacing:22.782600px;}
.ws75{word-spacing:22.890229px;}
.wse9{word-spacing:22.950229px;}
.ws277{word-spacing:22.960800px;}
.ws248{word-spacing:22.971600px;}
.wsed{word-spacing:22.974230px;}
.ws67{word-spacing:22.998230px;}
.ws278{word-spacing:23.058000px;}
.ws10b{word-spacing:23.082231px;}
.wsec{word-spacing:23.094231px;}
.ws247{word-spacing:23.112000px;}
.ws15b{word-spacing:23.166232px;}
.ws165{word-spacing:23.226232px;}
.ws1c9{word-spacing:23.232232px;}
.ws116{word-spacing:23.238232px;}
.ws115{word-spacing:23.274233px;}
.ws19d{word-spacing:23.298233px;}
.ws1c2{word-spacing:23.334233px;}
.ws240{word-spacing:23.403600px;}
.ws16{word-spacing:23.463000px;}
.ws1c8{word-spacing:23.466235px;}
.wscd{word-spacing:23.484235px;}
.ws2b1{word-spacing:23.527800px;}
.ws9b{word-spacing:23.556236px;}
.ws279{word-spacing:23.560200px;}
.ws1e7{word-spacing:23.574236px;}
.ws1e6{word-spacing:23.628236px;}
.ws99{word-spacing:23.640236px;}
.ws50{word-spacing:23.652237px;}
.ws6f{word-spacing:23.682237px;}
.ws48{word-spacing:23.778238px;}
.ws46{word-spacing:23.784238px;}
.wsd4{word-spacing:23.826238px;}
.ws1ec{word-spacing:23.892239px;}
.ws134{word-spacing:23.900400px;}
.ws84{word-spacing:23.952240px;}
.ws232{word-spacing:23.970600px;}
.wsb6{word-spacing:23.988240px;}
.wsab{word-spacing:23.994240px;}
.ws114{word-spacing:24.000240px;}
.ws135{word-spacing:24.008400px;}
.ws238{word-spacing:24.030000px;}
.ws54{word-spacing:24.042240px;}
.ws1ca{word-spacing:24.054241px;}
.ws7a{word-spacing:24.060241px;}
.ws154{word-spacing:24.108241px;}
.ws2d0{word-spacing:24.111000px;}
.wsb4{word-spacing:24.168242px;}
.wsb5{word-spacing:24.192242px;}
.ws79{word-spacing:24.234242px;}
.ws1eb{word-spacing:24.252243px;}
.ws65{word-spacing:24.258243px;}
.ws1e3{word-spacing:24.270243px;}
.wsaa{word-spacing:24.324243px;}
.ws2e{word-spacing:24.354244px;}
.ws298{word-spacing:24.456600px;}
.ws1c3{word-spacing:24.492245px;}
.ws16b{word-spacing:24.504245px;}
.ws1c4{word-spacing:24.552246px;}
.wsa2{word-spacing:24.576246px;}
.ws29a{word-spacing:24.742200px;}
.ws29b{word-spacing:24.742800px;}
.ws2c{word-spacing:24.744247px;}
.wscf{word-spacing:24.786248px;}
.wsd2{word-spacing:24.876249px;}
.ws249{word-spacing:24.899400px;}
.wsbc{word-spacing:24.972250px;}
.ws74{word-spacing:25.014250px;}
.ws98{word-spacing:25.038250px;}
.ws97{word-spacing:25.050250px;}
.wsd0{word-spacing:25.062251px;}
.ws24a{word-spacing:25.180200px;}
.ws111{word-spacing:25.254253px;}
.ws2c6{word-spacing:25.261200px;}
.ws1cf{word-spacing:25.272253px;}
.ws198{word-spacing:25.284253px;}
.ws191{word-spacing:25.296253px;}
.ws2ac{word-spacing:25.336800px;}
.wse0{word-spacing:25.350253px;}
.ws4f{word-spacing:25.404254px;}
.ws206{word-spacing:25.423200px;}
.ws25c{word-spacing:25.542000px;}
.ws274{word-spacing:25.558200px;}
.wsce{word-spacing:25.596256px;}
.ws5d{word-spacing:25.614256px;}
.ws1f4{word-spacing:25.662257px;}
.ws216{word-spacing:25.677000px;}
.ws273{word-spacing:25.698600px;}
.ws51{word-spacing:25.722257px;}
.ws19e{word-spacing:25.842258px;}
.ws217{word-spacing:25.860600px;}
.ws251{word-spacing:25.871400px;}
.ws195{word-spacing:25.884259px;}
.ws8e{word-spacing:25.956260px;}
.ws1d3{word-spacing:25.974260px;}
.ws250{word-spacing:26.200800px;}
.ws1d4{word-spacing:26.202262px;}
.ws1d5{word-spacing:26.226262px;}
.ws164{word-spacing:26.232262px;}
.ws1f9{word-spacing:26.292263px;}
.ws8f{word-spacing:26.340263px;}
.ws82{word-spacing:26.346263px;}
.ws163{word-spacing:26.352264px;}
.ws18b{word-spacing:26.358264px;}
.ws1bb{word-spacing:26.370264px;}
.ws1ba{word-spacing:26.454265px;}
.ws1e8{word-spacing:26.538265px;}
.ws235{word-spacing:26.638200px;}
.ws236{word-spacing:26.686800px;}
.ws290{word-spacing:26.692200px;}
.wsa5{word-spacing:26.700267px;}
.ws1c5{word-spacing:26.706267px;}
.ws1a3{word-spacing:26.712267px;}
.ws28f{word-spacing:26.719200px;}
.ws24c{word-spacing:26.821800px;}
.ws245{word-spacing:26.940600px;}
.wsa6{word-spacing:27.024270px;}
.ws299{word-spacing:27.216000px;}
.ws2a3{word-spacing:27.237600px;}
.ws1e9{word-spacing:27.342273px;}
.ws1f2{word-spacing:27.462275px;}
.ws57{word-spacing:27.486275px;}
.ws29f{word-spacing:27.502200px;}
.ws2a0{word-spacing:27.561600px;}
.ws152{word-spacing:27.654277px;}
.ws197{word-spacing:27.660277px;}
.ws58{word-spacing:27.666277px;}
.ws27{word-spacing:27.684277px;}
.ws272{word-spacing:27.869400px;}
.ws241{word-spacing:27.955800px;}
.ws28b{word-spacing:28.015200px;}
.ws26{word-spacing:28.230282px;}
.wsb1{word-spacing:28.338283px;}
.ws1ea{word-spacing:28.356284px;}
.ws242{word-spacing:28.377600px;}
.ws227{word-spacing:28.404000px;}
.wse6{word-spacing:28.434284px;}
.ws2b9{word-spacing:28.495800px;}
.wsde{word-spacing:28.644286px;}
.ws1c0{word-spacing:28.692287px;}
.wse7{word-spacing:28.722287px;}
.ws1d8{word-spacing:28.788288px;}
.ws0{word-spacing:28.836000px;}
.wsf1{word-spacing:28.980290px;}
.ws1{word-spacing:29.008800px;}
.ws187{word-spacing:29.034290px;}
.ws18d{word-spacing:29.040290px;}
.ws18e{word-spacing:29.094291px;}
.ws27a{word-spacing:29.111400px;}
.ws2{word-spacing:29.116800px;}
.ws18c{word-spacing:29.124291px;}
.ws4{word-spacing:29.149200px;}
.ws3{word-spacing:29.214000px;}
.wsd9{word-spacing:29.250292px;}
.ws36{word-spacing:29.382294px;}
.ws37{word-spacing:29.640296px;}
.ws4d{word-spacing:29.706297px;}
.ws61{word-spacing:30.036300px;}
.wsd8{word-spacing:30.180302px;}
.ws60{word-spacing:30.276303px;}
.ws22e{word-spacing:30.310200px;}
.ws4e{word-spacing:30.390304px;}
.ws169{word-spacing:30.396304px;}
.wsbd{word-spacing:30.450304px;}
.ws22d{word-spacing:30.488400px;}
.ws2b4{word-spacing:30.504600px;}
.ws66{word-spacing:30.678307px;}
.ws105{word-spacing:30.738307px;}
.wsb8{word-spacing:30.834308px;}
.wsb9{word-spacing:30.846308px;}
.ws19b{word-spacing:30.900309px;}
.ws1f3{word-spacing:31.038310px;}
.ws1c6{word-spacing:31.098311px;}
.wsf4{word-spacing:31.134311px;}
.ws209{word-spacing:31.185000px;}
.ws19c{word-spacing:31.242312px;}
.wsf3{word-spacing:31.632316px;}
.wsb3{word-spacing:31.728317px;}
.ws85{word-spacing:31.758318px;}
.ws27c{word-spacing:31.768200px;}
.wsb2{word-spacing:31.788318px;}
.ws19a{word-spacing:31.866319px;}
.ws9e{word-spacing:32.058321px;}
.ws53{word-spacing:32.118321px;}
.ws52{word-spacing:32.130321px;}
.ws9d{word-spacing:32.364324px;}
.ws106{word-spacing:32.424324px;}
.ws9c{word-spacing:32.466325px;}
.ws29c{word-spacing:32.740200px;}
.ws29d{word-spacing:32.745600px;}
.wsf7{word-spacing:33.096331px;}
.ws2aa{word-spacing:33.150600px;}
.ws2a4{word-spacing:33.161400px;}
.ws2a5{word-spacing:33.264000px;}
.ws2a9{word-spacing:33.274800px;}
.ws2b8{word-spacing:33.312600px;}
.ws2bc{word-spacing:33.415200px;}
.ws150{word-spacing:33.450335px;}
.ws194{word-spacing:33.486335px;}
.ws2bb{word-spacing:33.496200px;}
.ws104{word-spacing:33.744337px;}
.ws103{word-spacing:34.014340px;}
.ws1e0{word-spacing:34.116341px;}
.ws32{word-spacing:34.302343px;}
.ws264{word-spacing:34.511400px;}
.ws183{word-spacing:34.536345px;}
.ws263{word-spacing:34.630200px;}
.wseb{word-spacing:34.710347px;}
.wsea{word-spacing:34.824348px;}
.wsf2{word-spacing:34.884349px;}
.ws1f1{word-spacing:35.556356px;}
.ws1f0{word-spacing:35.694357px;}
.wsf8{word-spacing:36.498365px;}
.wsee{word-spacing:36.840368px;}
.ws1a2{word-spacing:37.542375px;}
.ws1a1{word-spacing:37.638376px;}
.ws156{word-spacing:37.950380px;}
.ws155{word-spacing:38.076381px;}
.ws186{word-spacing:38.220382px;}
.ws25{word-spacing:38.286383px;}
.ws24{word-spacing:38.538385px;}
.ws254{word-spacing:39.128400px;}
.ws86{word-spacing:39.162392px;}
.ws255{word-spacing:39.274200px;}
.wsf5{word-spacing:39.828398px;}
.wsf6{word-spacing:39.948399px;}
.ws2cb{word-spacing:41.207400px;}
.ws2a8{word-spacing:41.229000px;}
.ws23f{word-spacing:41.250600px;}
.ws2ca{word-spacing:41.358600px;}
.ws199{word-spacing:42.630426px;}
.wsdc{word-spacing:47.292473px;}
.ws127{word-spacing:73.632000px;}
.ws175{word-spacing:75.331200px;}
.ws176{word-spacing:76.540800px;}
.ws129{word-spacing:101.788800px;}
.ws128{word-spacing:273.120000px;}
.ws12a{word-spacing:331.344000px;}
._26{margin-left:-3000.030000px;}
._e{margin-left:-4.782000px;}
._f{margin-left:-2.534412px;}
._22{margin-left:-1.389627px;}
._2{width:1.080000px;}
._0{width:2.138400px;}
._19{width:4.236121px;}
._1f{width:8.256083px;}
._14{width:9.792098px;}
._27{width:10.880754px;}
._5{width:12.268800px;}
._a{width:14.100141px;}
._4{width:15.606000px;}
._6{width:16.621200px;}
._7{width:17.695800px;}
._9{width:19.342800px;}
._d{width:20.408991px;}
._17{width:21.648643px;}
._b{width:22.656227px;}
._8{width:23.668200px;}
._13{width:24.822248px;}
._c{width:25.938259px;}
._11{width:27.060271px;}
._28{width:28.878289px;}
._1{width:30.272400px;}
._10{width:31.288216px;}
._12{width:33.282333px;}
._21{width:34.404344px;}
._18{width:35.466355px;}
._1d{width:37.224372px;}
._1c{width:38.310383px;}
._2f{width:39.642407px;}
._20{width:40.914409px;}
._16{width:42.294423px;}
._15{width:43.416434px;}
._1b{width:47.550476px;}
._1a{width:55.890559px;}
._39{width:63.091200px;}
._3{width:69.255956px;}
._38{width:74.606400px;}
._3c{width:80.040000px;}
._37{width:86.126400px;}
._3b{width:91.651200px;}
._3a{width:96.760773px;}
._23{width:98.402427px;}
._2b{width:109.291200px;}
._2e{width:110.472000px;}
._35{width:111.940800px;}
._31{width:113.644800px;}
._36{width:120.388800px;}
._34{width:122.481600px;}
._30{width:125.668800px;}
._2a{width:132.331200px;}
._2d{width:133.521600px;}
._29{width:155.366400px;}
._2c{width:156.556800px;}
._24{width:331.584000px;}
._25{width:365.280000px;}
._33{width:378.144000px;}
._32{width:380.640000px;}
._1e{width:2173.101731px;}
.fc2{color:rgb(23,22,21);}
.fc1{color:rgb(16,15,13);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:35.995200px;}
.fs8{font-size:36.000000px;}
.fs5{font-size:39.996000px;}
.fs6{font-size:47.820000px;}
.fs9{font-size:47.999400px;}
.fs7{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:60.000600px;}
.fs1{font-size:71.999400px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ye9{bottom:82.913400px;}
.yea{bottom:86.655000px;}
.y169{bottom:86.662779px;}
.y2e3{bottom:86.669100px;}
.ye8{bottom:86.670558px;}
.yc8{bottom:86.670858px;}
.y24a{bottom:86.678187px;}
.y1ac{bottom:86.681016px;}
.y2a6{bottom:86.691750px;}
.y2e{bottom:86.696574px;}
.y1bb{bottom:86.786017px;}
.y3f{bottom:86.816575px;}
.y7e{bottom:86.924206px;}
.y167{bottom:100.006200px;}
.y2e2{bottom:102.491100px;}
.y2a5{bottom:102.513750px;}
.y168{bottom:103.747950px;}
.ye7{bottom:103.755729px;}
.yc7{bottom:103.756029px;}
.y249{bottom:103.763358px;}
.y1ab{bottom:103.766187px;}
.y2d{bottom:103.781745px;}
.y166{bottom:103.820491px;}
.y1ba{bottom:103.871188px;}
.y22f{bottom:103.900510px;}
.y3e{bottom:103.901746px;}
.y7d{bottom:104.009377px;}
.ye5{bottom:117.099150px;}
.y2e1{bottom:118.218600px;}
.y2a4{bottom:118.241250px;}
.ye6{bottom:120.840900px;}
.y248{bottom:120.848529px;}
.ye4{bottom:120.849579px;}
.y1aa{bottom:120.851357px;}
.yc6{bottom:120.859137px;}
.y2c{bottom:120.866916px;}
.y165{bottom:120.905661px;}
.y1b9{bottom:120.956358px;}
.y22e{bottom:120.985681px;}
.y3d{bottom:120.986917px;}
.y7c{bottom:121.094547px;}
.y2e0{bottom:133.946100px;}
.y2a3{bottom:137.546250px;}
.y247{bottom:137.933700px;}
.y1a9{bottom:137.936528px;}
.yc5{bottom:137.944307px;}
.y2b{bottom:137.952087px;}
.ye3{bottom:137.975274px;}
.y164{bottom:137.990832px;}
.y1b8{bottom:138.041529px;}
.y3c{bottom:138.072088px;}
.y22d{bottom:138.160853px;}
.y7b{bottom:138.179718px;}
.y2df{bottom:149.810250px;}
.y1a7{bottom:151.285050px;}
.y2a2{bottom:153.368250px;}
.y1a8{bottom:155.111700px;}
.yc4{bottom:155.119479px;}
.y2a{bottom:155.127258px;}
.ye2{bottom:155.150446px;}
.y163{bottom:155.166004px;}
.y1a6{bottom:155.189042px;}
.y1b7{bottom:155.216701px;}
.y22c{bottom:155.246024px;}
.y3b{bottom:155.247259px;}
.y7a{bottom:155.354890px;}
.y246{bottom:167.952750px;}
.yfb{bottom:168.462900px;}
.y2de{bottom:168.926250px;}
.y2a1{bottom:169.095750px;}
.yc3{bottom:172.204650px;}
.y29{bottom:172.212429px;}
.y154{bottom:172.227987px;}
.ye1{bottom:172.235617px;}
.yfa{bottom:172.244296px;}
.y162{bottom:172.251175px;}
.y1a5{bottom:172.274212px;}
.y1b6{bottom:172.301872px;}
.y22b{bottom:172.331195px;}
.y3a{bottom:172.332430px;}
.y79{bottom:172.440061px;}
.y2dd{bottom:184.653750px;}
.y2a0{bottom:184.823250px;}
.y27{bottom:185.555850px;}
.y28{bottom:189.297600px;}
.y26{bottom:189.305379px;}
.y153{bottom:189.313158px;}
.ye0{bottom:189.320787px;}
.yf9{bottom:189.329467px;}
.y161{bottom:189.336346px;}
.yc2{bottom:189.352204px;}
.y1a4{bottom:189.359383px;}
.y1b5{bottom:189.387043px;}
.y22a{bottom:189.416366px;}
.y39{bottom:189.417601px;}
.y78{bottom:189.525232px;}
.y2dc{bottom:200.381250px;}
.y24{bottom:202.648800px;}
.y29f{bottom:204.209250px;}
.y25{bottom:206.390550px;}
.y152{bottom:206.398329px;}
.ydf{bottom:206.405958px;}
.yf8{bottom:206.414637px;}
.y160{bottom:206.421517px;}
.yc1{bottom:206.437375px;}
.y23{bottom:206.444554px;}
.y1b4{bottom:206.472214px;}
.y229{bottom:206.501536px;}
.y38{bottom:206.502772px;}
.y77{bottom:206.610403px;}
.y2db{bottom:216.108750px;}
.y150{bottom:219.741600px;}
.y29e{bottom:219.936750px;}
.y151{bottom:223.483500px;}
.yde{bottom:223.491129px;}
.yf7{bottom:223.499808px;}
.y15f{bottom:223.506687px;}
.yc0{bottom:223.522546px;}
.y14f{bottom:223.525332px;}
.y22{bottom:223.529725px;}
.y1b3{bottom:223.557384px;}
.y228{bottom:223.586707px;}
.y37{bottom:223.587943px;}
.y76{bottom:223.695573px;}
.y2da{bottom:231.930750px;}
.y29d{bottom:235.664250px;}
.y245{bottom:236.409300px;}
.ydc{bottom:236.834550px;}
.ydd{bottom:240.576300px;}
.yf6{bottom:240.584979px;}
.y15e{bottom:240.591858px;}
.ydb{bottom:240.592458px;}
.ybf{bottom:240.607717px;}
.y21{bottom:240.614896px;}
.y1b2{bottom:240.642555px;}
.y227{bottom:240.671878px;}
.y36{bottom:240.673114px;}
.y75{bottom:240.780744px;}
.y2d9{bottom:250.979250px;}
.y29c{bottom:255.050250px;}
.y15d{bottom:257.677029px;}
.yda{bottom:257.677629px;}
.ybe{bottom:257.692887px;}
.y20{bottom:257.700067px;}
.yf5{bottom:257.710674px;}
.y1b1{bottom:257.727726px;}
.y226{bottom:257.757049px;}
.y35{bottom:257.758285px;}
.y74{bottom:257.865915px;}
.y2d8{bottom:266.706750px;}
.y29b{bottom:270.777750px;}
.y15c{bottom:274.762200px;}
.ybd{bottom:274.778058px;}
.y1f{bottom:274.785237px;}
.yd9{bottom:274.785387px;}
.yf4{bottom:274.795845px;}
.y1b0{bottom:274.812897px;}
.y225{bottom:274.842220px;}
.y34{bottom:274.843455px;}
.y73{bottom:274.951086px;}
.y2d7{bottom:282.434250px;}
.y29a{bottom:286.505250px;}
.ybc{bottom:291.863229px;}
.y1e{bottom:291.870408px;}
.yd8{bottom:291.870558px;}
.yf3{bottom:291.881016px;}
.y1af{bottom:291.898068px;}
.y224{bottom:291.927391px;}
.y33{bottom:291.928626px;}
.y72{bottom:292.036257px;}
.y2d6{bottom:298.256250px;}
.y15b{bottom:304.781100px;}
.y299{bottom:305.891250px;}
.y1d{bottom:308.955579px;}
.yd7{bottom:308.955729px;}
.yf2{bottom:308.966187px;}
.ybb{bottom:308.973966px;}
.y1ae{bottom:308.983239px;}
.y223{bottom:309.012561px;}
.y32{bottom:309.013797px;}
.y71{bottom:309.121428px;}
.y2d5{bottom:317.304750px;}
.y298{bottom:321.761550px;}
.y1c{bottom:326.040750px;}
.yd6{bottom:326.051357px;}
.yba{bottom:326.059137px;}
.y1ad{bottom:326.068410px;}
.y31{bottom:326.098968px;}
.y14e{bottom:326.141358px;}
.y222{bottom:326.187733px;}
.y70{bottom:326.206599px;}
.y2d4{bottom:333.032250px;}
.y297{bottom:337.489050px;}
.yd5{bottom:343.226529px;}
.yb9{bottom:343.234308px;}
.y221{bottom:343.272904px;}
.y30{bottom:343.274140px;}
.y15a{bottom:343.278124px;}
.y2d3{bottom:348.854250px;}
.y296{bottom:353.311050px;}
.yd4{bottom:356.569950px;}
.y6f{bottom:360.301940px;}
.y1b{bottom:360.311700px;}
.yb8{bottom:360.319479px;}
.y14d{bottom:360.320229px;}
.yf1{bottom:360.343075px;}
.yd3{bottom:360.350296px;}
.y220{bottom:360.358075px;}
.y2f{bottom:360.359311px;}
.y159{bottom:360.363295px;}
.y30f{bottom:363.767850px;}
.y2d2{bottom:364.581750px;}
.y20a{bottom:366.439500px;}
.y295{bottom:369.038550px;}
.yb6{bottom:373.662900px;}
.yb7{bottom:377.404650px;}
.y14c{bottom:377.427837px;}
.yf0{bottom:377.428246px;}
.yd2{bottom:377.435467px;}
.yb5{bottom:377.443246px;}
.y158{bottom:377.448466px;}
.y6e{bottom:377.477111px;}
.y30e{bottom:379.495350px;}
.y2d1{bottom:380.309250px;}
.y209{bottom:382.261500px;}
.y294{bottom:384.766050px;}
.y14b{bottom:394.513008px;}
.yef{bottom:394.513416px;}
.yd1{bottom:394.520637px;}
.yb4{bottom:394.528417px;}
.y157{bottom:394.533637px;}
.y6d{bottom:394.562282px;}
.y30d{bottom:395.317350px;}
.y208{bottom:397.989000px;}
.y2d0{bottom:399.438750px;}
.y293{bottom:404.152050px;}
.y244{bottom:407.423550px;}
.y207{bottom:410.314800px;}
.y14a{bottom:411.598179px;}
.yd0{bottom:411.605808px;}
.yb3{bottom:411.613587px;}
.y156{bottom:411.618808px;}
.y6c{bottom:411.647453px;}
.y206{bottom:413.716500px;}
.y30c{bottom:414.784350px;}
.y2cf{bottom:415.166250px;}
.y292{bottom:419.879550px;}
.y149{bottom:428.683350px;}
.ycf{bottom:428.690979px;}
.yb2{bottom:428.698758px;}
.y155{bottom:428.703979px;}
.y6b{bottom:428.732624px;}
.y30b{bottom:430.511850px;}
.y2ce{bottom:434.214750px;}
.y291{bottom:435.607050px;}
.y1f5{bottom:441.099000px;}
.yce{bottom:442.034550px;}
.ycd{bottom:445.776150px;}
.yb1{bottom:445.783929px;}
.y6a{bottom:445.817795px;}
.y243{bottom:445.871878px;}
.y1a{bottom:446.206350px;}
.y30a{bottom:446.239350px;}
.y2cd{bottom:449.942250px;}
.y290{bottom:451.334550px;}
.yaf{bottom:459.127500px;}
.y19{bottom:462.028350px;}
.y309{bottom:462.061350px;}
.yb0{bottom:462.869100px;}
.ycc{bottom:462.877437px;}
.yee{bottom:462.887208px;}
.yae{bottom:462.902895px;}
.y69{bottom:462.902966px;}
.y242{bottom:462.957049px;}
.y1f1{bottom:463.024650px;}
.y1f4{bottom:463.444650px;}
.y202{bottom:465.355200px;}
.y2cc{bottom:465.764250px;}
.y205{bottom:465.775200px;}
.y28f{bottom:467.062050px;}
.y21f{bottom:476.220450px;}
.y18{bottom:477.755850px;}
.y1a2{bottom:477.925950px;}
.y1f0{bottom:478.756650px;}
.y1f3{bottom:479.188650px;}
.yed{bottom:479.972379px;}
.yad{bottom:479.988066px;}
.y68{bottom:479.988136px;}
.y21e{bottom:480.019032px;}
.y241{bottom:480.042220px;}
.y201{bottom:481.087200px;}
.y2cb{bottom:481.491750px;}
.y204{bottom:481.519200px;}
.y308{bottom:481.528350px;}
.y28e{bottom:486.448050px;}
.y16{bottom:490.081800px;}
.y17{bottom:493.483350px;}
.y15{bottom:493.492950px;}
.y1a1{bottom:493.747950px;}
.y1ef{bottom:494.901000px;}
.y1f2{bottom:495.304650px;}
.yec{bottom:497.059104px;}
.ycb{bottom:497.062779px;}
.yac{bottom:497.073237px;}
.y67{bottom:497.073307px;}
.y21d{bottom:497.104203px;}
.y240{bottom:497.127391px;}
.y2ca{bottom:497.219250px;}
.y200{bottom:497.239200px;}
.y307{bottom:497.255850px;}
.y203{bottom:497.635200px;}
.y28d{bottom:502.175550px;}
.y14{bottom:509.220450px;}
.y1a0{bottom:509.475450px;}
.y306{bottom:512.983350px;}
.yeb{bottom:514.144275px;}
.yca{bottom:514.147950px;}
.yab{bottom:514.158407px;}
.y66{bottom:514.158478px;}
.y21c{bottom:514.189374px;}
.y23f{bottom:514.212561px;}
.y2c9{bottom:516.348750px;}
.y28c{bottom:517.997550px;}
.y1ee{bottom:519.909000px;}
.y1ff{bottom:520.127550px;}
.y12{bottom:521.631300px;}
.y19e{bottom:521.801400px;}
.y13{bottom:524.947950px;}
.y11{bottom:524.960250px;}
.y19f{bottom:525.202950px;}
.y19d{bottom:525.207750px;}
.y305{bottom:528.805350px;}
.yaa{bottom:531.243578px;}
.y65{bottom:531.243649px;}
.y21b{bottom:531.364546px;}
.y23e{bottom:531.387733px;}
.y2c8{bottom:532.076250px;}
.y28b{bottom:533.725050px;}
.y1ed{bottom:534.885000px;}
.y1fd{bottom:535.131900px;}
.y19b{bottom:537.618750px;}
.y10{bottom:540.782250px;}
.y19a{bottom:540.930600px;}
.y19c{bottom:540.935250px;}
.y304{bottom:544.532850px;}
.y2c7{bottom:547.803750px;}
.y64{bottom:548.328820px;}
.ya9{bottom:548.418750px;}
.y21a{bottom:548.449717px;}
.y23d{bottom:548.472904px;}
.y28a{bottom:549.452550px;}
.y1f6{bottom:550.155900px;}
.y1e5{bottom:550.156350px;}
.y147{bottom:555.056400px;}
.yf{bottom:556.509750px;}
.y199{bottom:556.752600px;}
.y2c6{bottom:563.531250px;}
.y303{bottom:563.999850px;}
.y289{bottom:565.180050px;}
.y63{bottom:565.413991px;}
.y219{bottom:565.534887px;}
.y23c{bottom:565.558075px;}
.y145{bottom:567.467400px;}
.y146{bottom:570.783900px;}
.y144{bottom:570.784050px;}
.ye{bottom:572.237250px;}
.y1f7{bottom:574.035900px;}
.y1e6{bottom:574.036350px;}
.ya8{bottom:577.502250px;}
.y302{bottom:579.727350px;}
.y62{bottom:582.589162px;}
.y218{bottom:582.620058px;}
.y23b{bottom:582.643246px;}
.y2c5{bottom:582.660750px;}
.y189{bottom:584.050350px;}
.y288{bottom:584.566050px;}
.y143{bottom:586.606050px;}
.yd{bottom:587.964750px;}
.y1f8{bottom:597.903900px;}
.y1e7{bottom:597.904350px;}
.y2c4{bottom:598.388250px;}
.y301{bottom:599.288850px;}
.y61{bottom:599.674333px;}
.y217{bottom:599.705229px;}
.y23a{bottom:599.728417px;}
.y287{bottom:600.293550px;}
.y142{bottom:602.333550px;}
.y186{bottom:606.018000px;}
.y188{bottom:606.198000px;}
.y196{bottom:607.890000px;}
.y1fe{bottom:607.937700px;}
.y1ec{bottom:607.938150px;}
.y198{bottom:608.584500px;}
.y215{bottom:613.048650px;}
.y2c3{bottom:614.115750px;}
.y140{bottom:614.664300px;}
.y300{bottom:615.016350px;}
.y286{bottom:616.021050px;}
.y60{bottom:616.759504px;}
.y216{bottom:616.790400px;}
.y239{bottom:616.813587px;}
.y214{bottom:616.836775px;}
.ya7{bottom:617.022841px;}
.yc{bottom:617.219250px;}
.y141{bottom:618.065850px;}
.y13f{bottom:618.070650px;}
.y185{bottom:620.530050px;}
.y187{bottom:620.730000px;}
.y1f9{bottom:621.783900px;}
.y1e8{bottom:621.784350px;}
.y197{bottom:623.749500px;}
.y195{bottom:623.947200px;}
.y2c2{bottom:629.843250px;}
.y285{bottom:631.748550px;}
.yb{bottom:632.946750px;}
.y13e{bottom:633.798150px;}
.y5f{bottom:633.844675px;}
.y238{bottom:633.898758px;}
.y213{bottom:633.921946px;}
.ya6{bottom:634.108012px;}
.y2ff{bottom:634.483350px;}
.y193{bottom:644.119200px;}
.y183{bottom:644.662050px;}
.y1fa{bottom:645.663900px;}
.y1e9{bottom:645.664350px;}
.y2c1{bottom:648.972750px;}
.y2fe{bottom:650.210850px;}
.y5e{bottom:650.929846px;}
.y237{bottom:650.983929px;}
.y212{bottom:651.007117px;}
.y284{bottom:651.134550px;}
.ya5{bottom:651.193183px;}
.y184{bottom:659.446050px;}
.y194{bottom:659.623200px;}
.y12d{bottom:661.180800px;}
.ya{bottom:662.198550px;}
.y2fd{bottom:662.626650px;}
.y235{bottom:664.327350px;}
.y2c0{bottom:664.700250px;}
.y2fc{bottom:666.017100px;}
.y283{bottom:666.862050px;}
.y5d{bottom:668.015017px;}
.y236{bottom:668.069100px;}
.y211{bottom:668.092287px;}
.y234{bottom:668.113594px;}
.ya4{bottom:668.368355px;}
.y1fb{bottom:669.543900px;}
.y1ea{bottom:669.544350px;}
.y17b{bottom:672.946050px;}
.y18b{bottom:673.243200px;}
.y2bf{bottom:680.427750px;}
.y2fb{bottom:681.839100px;}
.y282{bottom:682.684050px;}
.y12e{bottom:683.109900px;}
.y12c{bottom:684.108150px;}
.y5c{bottom:685.100187px;}
.y210{bottom:685.177458px;}
.y233{bottom:685.198764px;}
.ya3{bottom:685.453526px;}
.y9{bottom:691.453050px;}
.y1fc{bottom:693.423900px;}
.y1eb{bottom:693.424350px;}
.y17c{bottom:694.186050px;}
.y18c{bottom:694.435200px;}
.y2fa{bottom:697.566600px;}
.y281{bottom:698.411550px;}
.y2be{bottom:699.557250px;}
.y134{bottom:700.773900px;}
.y123{bottom:701.903550px;}
.y5b{bottom:702.185358px;}
.y20f{bottom:702.262629px;}
.y232{bottom:702.283935px;}
.ya2{bottom:702.538697px;}
.y2bd{bottom:715.284750px;}
.y17d{bottom:715.426050px;}
.y20d{bottom:715.606050px;}
.y18d{bottom:715.639200px;}
.y2f9{bottom:717.033600px;}
.y280{bottom:717.716550px;}
.y5a{bottom:719.270529px;}
.y20e{bottom:719.347800px;}
.y20c{bottom:719.350628px;}
.y231{bottom:719.369106px;}
.ya1{bottom:719.623867px;}
.y8{bottom:720.707550px;}
.y137{bottom:724.785900px;}
.y125{bottom:725.255550px;}
.y121{bottom:725.927550px;}
.y133{bottom:726.237900px;}
.y1e4{bottom:727.256550px;}
.y2bc{bottom:731.012250px;}
.y17a{bottom:732.149100px;}
.y58{bottom:732.613950px;}
.y2f8{bottom:732.761100px;}
.y27f{bottom:733.538550px;}
.y18a{bottom:736.350300px;}
.y59{bottom:736.355700px;}
.y57{bottom:736.425821px;}
.y20b{bottom:736.525800px;}
.y230{bottom:736.544278px;}
.y17e{bottom:736.666050px;}
.ya0{bottom:736.709038px;}
.y18e{bottom:736.843200px;}
.y1e3{bottom:742.984050px;}
.y138{bottom:745.437900px;}
.y126{bottom:745.463550px;}
.y11e{bottom:745.727550px;}
.y130{bottom:746.733900px;}
.y2bb{bottom:746.739750px;}
.y2f7{bottom:748.583100px;}
.y27e{bottom:749.266050px;}
.y7{bottom:749.962050px;}
.y56{bottom:753.510991px;}
.y1e1{bottom:755.404500px;}
.y17f{bottom:757.906050px;}
.y18f{bottom:758.047200px;}
.y1e2{bottom:758.806050px;}
.y1e0{bottom:758.810850px;}
.y2f6{bottom:764.310600px;}
.y11f{bottom:764.531550px;}
.y27d{bottom:764.993550px;}
.y127{bottom:765.696150px;}
.y2ba{bottom:765.944250px;}
.y139{bottom:766.093050px;}
.y131{bottom:767.517900px;}
.y55{bottom:770.596162px;}
.y9f{bottom:770.804379px;}
.y1df{bottom:774.538350px;}
.y26b{bottom:775.129050px;}
.y180{bottom:779.146050px;}
.y6{bottom:779.215650px;}
.y190{bottom:779.251200px;}
.y2f5{bottom:780.038100px;}
.y2b9{bottom:781.671750px;}
.y27c{bottom:784.379550px;}
.y128{bottom:785.904150px;}
.y120{bottom:786.299550px;}
.y132{bottom:786.609900px;}
.y13a{bottom:786.745050px;}
.y269{bottom:787.549500px;}
.y54{bottom:787.771334px;}
.y9e{bottom:787.889550px;}
.y9c{bottom:787.897329px;}
.y26a{bottom:790.951050px;}
.y268{bottom:790.955700px;}
.y9d{bottom:794.352600px;}
.y2b8{bottom:797.399250px;}
.y2f4{bottom:799.505100px;}
.y27b{bottom:800.107050px;}
.y181{bottom:800.386050px;}
.y191{bottom:800.455200px;}
.y1ce{bottom:801.921000px;}
.y53{bottom:804.856505px;}
.y9b{bottom:804.982500px;}
.y99{bottom:805.023924px;}
.y129{bottom:806.124150px;}
.y267{bottom:806.683200px;}
.y11d{bottom:806.795550px;}
.y12f{bottom:807.105900px;}
.y13b{bottom:807.397050px;}
.y9a{bottom:811.445400px;}
.y2b7{bottom:813.221250px;}
.y2f3{bottom:815.327100px;}
.y27a{bottom:815.834550px;}
.y182{bottom:821.626050px;}
.y192{bottom:821.659200px;}
.y98{bottom:822.109095px;}
.y1d5{bottom:823.762350px;}
.y1cc{bottom:823.830900px;}
.y12a{bottom:826.332150px;}
.y124{bottom:826.871550px;}
.y13c{bottom:828.049050px;}
.y136{bottom:828.213900px;}
.y2f2{bottom:831.054600px;}
.y279{bottom:831.562050px;}
.y2b6{bottom:832.269750px;}
.y25a{bottom:834.065850px;}
.y52{bottom:838.951846px;}
.y97{bottom:839.194266px;}
.y1c9{bottom:839.252250px;}
.y1d2{bottom:839.711700px;}
.y1d4{bottom:841.030350px;}
.y1cb{bottom:841.098900px;}
.y179{bottom:843.080100px;}
.y12b{bottom:846.552150px;}
.y122{bottom:846.671550px;}
.y2f1{bottom:846.782100px;}
.y2b5{bottom:847.997250px;}
.y135{bottom:848.013900px;}
.y13d{bottom:848.701050px;}
.y5{bottom:848.940150px;}
.y278{bottom:850.948050px;}
.y51{bottom:856.037017px;}
.y1c8{bottom:856.076250px;}
.y96{bottom:856.279437px;}
.y1d3{bottom:857.183700px;}
.y1ca{bottom:857.252250px;}
.y264{bottom:857.433000px;}
.y266{bottom:857.517150px;}
.y257{bottom:857.534100px;}
.y1d1{bottom:857.579700px;}
.y259{bottom:857.831250px;}
.y2b4{bottom:863.819250px;}
.y175{bottom:864.975750px;}
.y177{bottom:865.155750px;}
.y2f0{bottom:866.249100px;}
.y277{bottom:866.675550px;}
.y50{bottom:873.122187px;}
.y95{bottom:873.364607px;}
.y1d0{bottom:873.455700px;}
.y1c7{bottom:873.524250px;}
.y11c{bottom:874.544550px;}
.y10c{bottom:874.544700px;}
.y265{bottom:876.640650px;}
.y258{bottom:876.740100px;}
.y263{bottom:876.837000px;}
.y256{bottom:877.154100px;}
.y4{bottom:878.964150px;}
.y174{bottom:879.513450px;}
.y2b3{bottom:879.546750px;}
.y176{bottom:879.687750px;}
.y2ef{bottom:882.071100px;}
.y276{bottom:882.403050px;}
.y4f{bottom:890.207358px;}
.y94{bottom:890.449778px;}
.y1d6{bottom:895.678350px;}
.y1c5{bottom:895.718850px;}
.y117{bottom:896.439450px;}
.y103{bottom:896.834400px;}
.y2ee{bottom:897.798600px;}
.y275{bottom:898.225050px;}
.y2b2{bottom:898.595250px;}
.y261{bottom:900.511200px;}
.y254{bottom:900.693450px;}
.y173{bottom:902.973450px;}
.y4e{bottom:907.292529px;}
.y93{bottom:907.624950px;}
.y91{bottom:907.645867px;}
.y3{bottom:908.988150px;}
.y1d7{bottom:911.074350px;}
.y1c4{bottom:911.114850px;}
.y1cd{bottom:911.142900px;}
.y2ed{bottom:913.526100px;}
.y274{bottom:913.952550px;}
.y92{bottom:914.258100px;}
.y2b1{bottom:914.417250px;}
.y116{bottom:914.739450px;}
.y10b{bottom:915.502350px;}
.y262{bottom:916.303200px;}
.y255{bottom:916.485450px;}
.y178{bottom:918.639750px;}
.y171{bottom:918.657300px;}
.y4d{bottom:924.377700px;}
.y90{bottom:924.731038px;}
.y1de{bottom:926.074350px;}
.y1c3{bottom:926.546850px;}
.y2b0{bottom:930.144750px;}
.y24b{bottom:931.587300px;}
.y2ec{bottom:932.993100px;}
.y25c{bottom:933.031200px;}
.y16a{bottom:933.237300px;}
.y273{bottom:933.338550px;}
.y104{bottom:938.650350px;}
.y2{bottom:939.012150px;}
.y10d{bottom:939.103050px;}
.yfc{bottom:939.517650px;}
.y115{bottom:940.539450px;}
.y2af{bottom:945.872250px;}
.y1c2{bottom:947.786850px;}
.y2eb{bottom:948.720600px;}
.y272{bottom:949.066050px;}
.y1dd{bottom:951.514350px;}
.y24c{bottom:952.599300px;}
.y4c{bottom:953.461050px;}
.y16b{bottom:957.489300px;}
.y8f{bottom:958.826379px;}
.y10a{bottom:959.422350px;}
.yfd{bottom:960.229650px;}
.y10e{bottom:961.435050px;}
.y2ea{bottom:964.542600px;}
.y271{bottom:964.793550px;}
.y2ae{bottom:964.920750px;}
.y11b{bottom:964.923450px;}
.y1c1{bottom:969.026850px;}
.y25d{bottom:969.451200px;}
.y8d{bottom:972.169800px;}
.y24d{bottom:973.623300px;}
.y1{bottom:974.976150px;}
.y8e{bottom:975.911550px;}
.y8c{bottom:975.919329px;}
.y1dc{bottom:976.954350px;}
.y109{bottom:979.222350px;}
.y2e9{bottom:980.270100px;}
.y270{bottom:980.521050px;}
.y2ad{bottom:980.742750px;}
.yfe{bottom:980.942400px;}
.y1c6{bottom:981.714450px;}
.y16c{bottom:981.741300px;}
.y10f{bottom:984.039450px;}
.y11a{bottom:985.923450px;}
.y1cf{bottom:988.644900px;}
.y8a{bottom:989.262750px;}
.y1c0{bottom:990.266850px;}
.y253{bottom:991.430250px;}
.y172{bottom:992.032500px;}
.y8b{bottom:993.004500px;}
.y4b{bottom:993.012129px;}
.y89{bottom:993.019908px;}
.y24e{bottom:994.635300px;}
.y2e8{bottom:995.997600px;}
.y25b{bottom:996.285600px;}
.y2ac{bottom:996.470250px;}
.y26f{bottom:999.907050px;}
.y108{bottom:1000.990350px;}
.yff{bottom:1001.654400px;}
.y1db{bottom:1002.394350px;}
.y25e{bottom:1005.871200px;}
.y16d{bottom:1005.981300px;}
.y49{bottom:1006.355700px;}
.y119{bottom:1006.479450px;}
.y110{bottom:1006.587450px;}
.y4a{bottom:1010.097300px;}
.y88{bottom:1010.105079px;}
.y48{bottom:1010.128417px;}
.y1bf{bottom:1011.506850px;}
.y2ab{bottom:1012.197750px;}
.y2e7{bottom:1015.464600px;}
.y26e{bottom:1015.634550px;}
.y24f{bottom:1015.647300px;}
.y100{bottom:1022.366400px;}
.y107{bottom:1022.758350px;}
.y86{bottom:1023.448650px;}
.y87{bottom:1027.190250px;}
.y85{bottom:1027.198029px;}
.y47{bottom:1027.213587px;}
.y1da{bottom:1027.834350px;}
.y118{bottom:1028.247450px;}
.y111{bottom:1028.607450px;}
.y16e{bottom:1030.233300px;}
.y2e6{bottom:1031.286600px;}
.y2aa{bottom:1031.327250px;}
.y26d{bottom:1031.362050px;}
.y1be{bottom:1032.746850px;}
.y250{bottom:1036.659300px;}
.y83{bottom:1040.541450px;}
.y25f{bottom:1042.291200px;}
.y101{bottom:1043.078400px;}
.y106{bottom:1043.542350px;}
.y84{bottom:1044.283200px;}
.y82{bottom:1044.290829px;}
.y46{bottom:1044.298758px;}
.y2e5{bottom:1047.014100px;}
.y2a9{bottom:1047.054750px;}
.y26c{bottom:1047.089550px;}
.y114{bottom:1048.119450px;}
.y112{bottom:1050.939450px;}
.y1d9{bottom:1053.274350px;}
.y1bd{bottom:1053.986850px;}
.y16f{bottom:1054.485300px;}
.y251{bottom:1057.671300px;}
.y81{bottom:1061.376000px;}
.y45{bottom:1061.383929px;}
.y2e4{bottom:1062.741600px;}
.y2a8{bottom:1062.782250px;}
.y102{bottom:1063.790400px;}
.y105{bottom:1064.326350px;}
.y43{bottom:1073.805000px;}
.y113{bottom:1073.823450px;}
.y1bc{bottom:1075.226850px;}
.y44{bottom:1078.469100px;}
.y2a7{bottom:1078.509750px;}
.y252{bottom:1078.695300px;}
.y260{bottom:1078.711200px;}
.y1d8{bottom:1078.714350px;}
.y170{bottom:1078.737300px;}
.y7f{bottom:1078.749124px;}
.y80{bottom:1085.187150px;}
.y42{bottom:1087.995000px;}
.y41{bottom:1102.185000px;}
.y40{bottom:1116.375000px;}
.y148{bottom:1122.774450px;}
.y1a3{bottom:1122.774600px;}
.yc9{bottom:1122.791219px;}
.h9{height:25.628582px;}
.hf{height:25.637436px;}
.hb{height:28.477152px;}
.he{height:34.047840px;}
.h14{height:34.175573px;}
.h12{height:34.176000px;}
.h13{height:34.179000px;}
.h16{height:34.188600px;}
.h17{height:34.206600px;}
.h15{height:34.226400px;}
.h5{height:38.448000px;}
.h8{height:38.458800px;}
.h6{height:38.502000px;}
.h18{height:38.664000px;}
.h11{height:42.714211px;}
.ha{height:42.720427px;}
.hd{height:42.780428px;}
.h10{height:42.888683px;}
.hc{height:42.960430px;}
.h4{height:50.687578px;}
.h7{height:53.406000px;}
.h3{height:76.032000px;}
.h2{height:76.896000px;}
.h0{height:1199.991000px;}
.h1{height:1200.000000px;}
.w0{width:899.971500px;}
.w1{width:900.000000px;}
.x0{left:0.000000px;}
.x1{left:75.004650px;}
.x9b{left:81.467700px;}
.x36{left:86.561550px;}
.xd{left:97.540200px;}
.x29{left:102.217350px;}
.x9c{left:103.918200px;}
.x75{left:117.184200px;}
.x2a{left:120.670800px;}
.x76{left:126.283500px;}
.x2{left:129.344850px;}
.x35{left:131.215050px;}
.x37{left:133.925550px;}
.x38{left:135.701550px;}
.x2b{left:138.444150px;}
.x4c{left:142.690050px;}
.x95{left:143.812950px;}
.x4d{left:145.405950px;}
.x4e{left:147.181950px;}
.x2c{left:148.478700px;}
.x39{left:150.497550px;}
.x3a{left:152.273550px;}
.x9a{left:154.431450px;}
.x84{left:155.710050px;}
.x94{left:157.148700px;}
.x4f{left:161.977950px;}
.x50{left:163.753950px;}
.x60{left:165.061350px;}
.x6c{left:177.832050px;}
.x97{left:190.056600px;}
.x7a{left:192.137850px;}
.x85{left:194.857050px;}
.x7b{left:200.650950px;}
.x3d{left:203.737800px;}
.x8f{left:207.751050px;}
.x6d{left:210.064050px;}
.x83{left:212.003100px;}
.x5f{left:213.278700px;}
.x4b{left:215.218050px;}
.x90{left:218.296050px;}
.x3b{left:222.541800px;}
.x9{left:229.181100px;}
.x4a{left:234.802050px;}
.x5d{left:237.855150px;}
.xa{left:244.147950px;}
.x3e{left:251.716500px;}
.x49{left:256.654050px;}
.x2d{left:263.792100px;}
.x6b{left:266.656050px;}
.x96{left:275.772600px;}
.x2e{left:277.568400px;}
.x7e{left:280.374750px;}
.x98{left:281.395200px;}
.x6f{left:284.966700px;}
.x8c{left:293.640900px;}
.x27{left:301.294350px;}
.x8d{left:304.270800px;}
.x66{left:309.554550px;}
.x28{left:312.434550px;}
.x79{left:317.962200px;}
.xe{left:320.598300px;}
.x64{left:322.048950px;}
.xf{left:330.888150px;}
.x25{left:336.755850px;}
.x26{left:347.470800px;}
.x10{left:349.596750px;}
.x7d{left:351.200550px;}
.x11{left:361.417200px;}
.x8e{left:362.862900px;}
.x6e{left:364.561200px;}
.x68{left:368.236800px;}
.x7c{left:370.558950px;}
.x7{left:372.727500px;}
.x5a{left:376.639350px;}
.x8{left:378.169950px;}
.x48{left:379.498050px;}
.x65{left:384.448950px;}
.x5b{left:386.673900px;}
.x61{left:403.511700px;}
.x3{left:410.059800px;}
.x4{left:414.907050px;}
.x3c{left:417.817800px;}
.x9d{left:421.880250px;}
.x24{left:431.234550px;}
.x67{left:442.996800px;}
.x40{left:456.574950px;}
.xc{left:463.465143px;}
.x41{left:466.484700px;}
.x56{left:467.877450px;}
.x6a{left:469.586550px;}
.x70{left:478.659600px;}
.x86{left:480.219450px;}
.x81{left:481.951800px;}
.xb{left:485.995368px;}
.x71{left:492.459600px;}
.x1e{left:493.823550px;}
.x1f{left:497.905350px;}
.x15{left:504.028200px;}
.x20{left:508.535400px;}
.x3f{left:511.090950px;}
.x55{left:512.526600px;}
.x42{left:513.824700px;}
.x43{left:515.600700px;}
.x57{left:517.017450px;}
.x80{left:520.639800px;}
.x69{left:522.734550px;}
.x72{left:524.691600px;}
.x88{left:525.937050px;}
.x44{left:530.396700px;}
.x45{left:532.172700px;}
.x58{left:533.649450px;}
.x22{left:541.275450px;}
.x23{left:550.969950px;}
.x31{left:574.610850px;}
.x21{left:576.991950px;}
.x32{left:583.625100px;}
.x18{left:586.431450px;}
.x54{left:588.846600px;}
.x1a{left:590.768400px;}
.x87{left:598.708650px;}
.x13{left:600.377850px;}
.x74{left:601.483200px;}
.x8a{left:605.140050px;}
.x19{left:606.670650px;}
.x82{left:607.946250px;}
.x1b{left:611.092800px;}
.x62{left:612.283350px;}
.x63{left:617.640750px;}
.x14{left:620.447100px;}
.x77{left:627.420300px;}
.x59{left:629.801400px;}
.x47{left:633.543150px;}
.x78{left:646.044000px;}
.x53{left:647.106600px;}
.x51{left:666.870600px;}
.x33{left:667.984050px;}
.x34{left:676.913250px;}
.x73{left:679.202550px;}
.x99{left:686.094900px;}
.x89{left:694.931250px;}
.x7f{left:700.221900px;}
.x2f{left:706.591950px;}
.x30{left:712.034400px;}
.x92{left:723.174600px;}
.x1c{left:732.443850px;}
.x93{left:733.974600px;}
.x52{left:737.886600px;}
.x16{left:739.417200px;}
.x1d{left:743.669100px;}
.x17{left:757.870650px;}
.x91{left:768.075450px;}
.x46{left:786.020700px;}
.x5{left:794.777700px;}
.x6{left:804.727350px;}
.x5c{left:810.340050px;}
.x8b{left:813.316350px;}
.x5e{left:817.823400px;}
.x12{left:819.609150px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v2{vertical-align:-15.104000pt;}
.v1{vertical-align:-10.664000pt;}
.v0{vertical-align:0.000000pt;}
.ls21{letter-spacing:-0.933343pt;}
.lsa{letter-spacing:-0.426667pt;}
.ls25{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.213333pt;}
.ls2a{letter-spacing:-0.149333pt;}
.ls2e{letter-spacing:-0.055467pt;}
.ls9{letter-spacing:-0.053333pt;}
.ls28{letter-spacing:-0.042667pt;}
.ls23{letter-spacing:-0.038400pt;}
.ls6{letter-spacing:-0.037334pt;}
.ls29{letter-spacing:-0.029867pt;}
.ls27{letter-spacing:-0.012800pt;}
.ls22{letter-spacing:-0.008533pt;}
.ls7{letter-spacing:-0.005333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.000533pt;}
.ls39{letter-spacing:0.004267pt;}
.ls1{letter-spacing:0.005333pt;}
.ls1c{letter-spacing:0.008533pt;}
.ls1d{letter-spacing:0.012800pt;}
.lsc{letter-spacing:0.016000pt;}
.ls1e{letter-spacing:0.025600pt;}
.ls30{letter-spacing:0.029867pt;}
.ls2d{letter-spacing:0.032000pt;}
.ls38{letter-spacing:0.034133pt;}
.ls31{letter-spacing:0.035200pt;}
.ls2{letter-spacing:0.053334pt;}
.ls26{letter-spacing:0.064000pt;}
.ls37{letter-spacing:0.067200pt;}
.ls34{letter-spacing:0.068267pt;}
.ls51{letter-spacing:0.091200pt;}
.ls20{letter-spacing:0.096000pt;}
.ls2b{letter-spacing:0.101334pt;}
.ls4a{letter-spacing:0.105600pt;}
.ls3{letter-spacing:0.106668pt;}
.ls0{letter-spacing:0.110400pt;}
.ls32{letter-spacing:0.138668pt;}
.ls56{letter-spacing:0.144000pt;}
.ls33{letter-spacing:0.160002pt;}
.ls36{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.213335pt;}
.ls18{letter-spacing:0.266669pt;}
.ls1f{letter-spacing:0.298667pt;}
.ls13{letter-spacing:0.314670pt;}
.ls4{letter-spacing:0.320003pt;}
.ls1b{letter-spacing:0.352004pt;}
.ls24{letter-spacing:0.640000pt;}
.lsf{letter-spacing:7.893412pt;}
.ls12{letter-spacing:8.000080pt;}
.lse{letter-spacing:8.213415pt;}
.ls3b{letter-spacing:9.168000pt;}
.ls53{letter-spacing:9.744000pt;}
.ls16{letter-spacing:10.613439pt;}
.ls19{letter-spacing:10.634773pt;}
.ls15{letter-spacing:10.720107pt;}
.ls2c{letter-spacing:10.933443pt;}
.ls55{letter-spacing:11.280000pt;}
.ls3d{letter-spacing:12.216000pt;}
.ls48{letter-spacing:12.768000pt;}
.ls4d{letter-spacing:13.104000pt;}
.ls4f{letter-spacing:13.680000pt;}
.lsd{letter-spacing:13.813471pt;}
.ls3e{letter-spacing:14.016000pt;}
.ls10{letter-spacing:14.389477pt;}
.ls17{letter-spacing:14.501325pt;}
.ls1a{letter-spacing:14.672068pt;}
.ls11{letter-spacing:14.709480pt;}
.ls4c{letter-spacing:15.792000pt;}
.ls40{letter-spacing:16.416000pt;}
.ls41{letter-spacing:16.704000pt;}
.ls14{letter-spacing:16.960170pt;}
.ls3f{letter-spacing:18.240000pt;}
.ls49{letter-spacing:19.752000pt;}
.ls45{letter-spacing:22.176000pt;}
.ls3c{letter-spacing:23.088000pt;}
.ls46{letter-spacing:23.376000pt;}
.ls44{letter-spacing:24.288000pt;}
.ls50{letter-spacing:24.576000pt;}
.ls43{letter-spacing:24.672000pt;}
.ls42{letter-spacing:25.200000pt;}
.ls3a{letter-spacing:27.888000pt;}
.ls4e{letter-spacing:28.224000pt;}
.ls52{letter-spacing:29.721600pt;}
.ls54{letter-spacing:30.000000pt;}
.ls4b{letter-spacing:30.912000pt;}
.ls47{letter-spacing:34.848000pt;}
.ls2f{letter-spacing:282.240000pt;}
.ws14a{word-spacing:-10.986777pt;}
.wsd1{word-spacing:-10.688107pt;}
.ws174{word-spacing:-10.325333pt;}
.ws1fb{word-spacing:-9.685333pt;}
.ws1fc{word-spacing:-9.672533pt;}
.ws44{word-spacing:-9.649013pt;}
.ws126{word-spacing:-9.301333pt;}
.ws8d{word-spacing:-7.946746pt;}
.ws125{word-spacing:-7.264000pt;}
.ws141{word-spacing:-0.644267pt;}
.ws1b5{word-spacing:-0.068267pt;}
.ws2d{word-spacing:-0.053334pt;}
.wse{word-spacing:-0.048000pt;}
.ws12b{word-spacing:-0.042667pt;}
.ws182{word-spacing:-0.029867pt;}
.ws143{word-spacing:-0.025600pt;}
.ws1ad{word-spacing:-0.021333pt;}
.ws13e{word-spacing:-0.012800pt;}
.ws13c{word-spacing:-0.008533pt;}
.ws142{word-spacing:-0.004267pt;}
.ws45{word-spacing:0.000000pt;}
.ws13b{word-spacing:0.008533pt;}
.ws140{word-spacing:0.012800pt;}
.ws146{word-spacing:0.025600pt;}
.ws181{word-spacing:0.055467pt;}
.ws147{word-spacing:0.661333pt;}
.ws13f{word-spacing:0.682667pt;}
.ws13d{word-spacing:5.154133pt;}
.ws144{word-spacing:5.162667pt;}
.ws145{word-spacing:5.171200pt;}
.wsa1{word-spacing:7.808078pt;}
.ws81{word-spacing:7.813411pt;}
.wscc{word-spacing:7.829412pt;}
.wsc7{word-spacing:7.856079pt;}
.ws1a8{word-spacing:7.905600pt;}
.ws130{word-spacing:7.910400pt;}
.ws1fe{word-spacing:7.915200pt;}
.ws1af{word-spacing:7.924800pt;}
.ws112{word-spacing:7.946746pt;}
.wsa0{word-spacing:7.952080pt;}
.ws5c{word-spacing:7.957413pt;}
.ws6b{word-spacing:7.962746pt;}
.ws88{word-spacing:7.968080pt;}
.wsd3{word-spacing:7.973413pt;}
.ws5a{word-spacing:7.978746pt;}
.wsbf{word-spacing:7.984080pt;}
.wsdb{word-spacing:8.000080pt;}
.wsc6{word-spacing:8.021414pt;}
.wsc3{word-spacing:8.090748pt;}
.wsbe{word-spacing:8.101414pt;}
.ws9a{word-spacing:8.106748pt;}
.ws123{word-spacing:8.128081pt;}
.ws204{word-spacing:8.131200pt;}
.ws62{word-spacing:8.154748pt;}
.wsdd{word-spacing:8.160082pt;}
.wsfd{word-spacing:8.256083pt;}
.ws28a{word-spacing:8.990400pt;}
.ws12d{word-spacing:9.129600pt;}
.ws20e{word-spacing:9.153600pt;}
.ws12c{word-spacing:9.168000pt;}
.ws220{word-spacing:9.249600pt;}
.ws2c2{word-spacing:9.364800pt;}
.ws2c3{word-spacing:9.408000pt;}
.ws2b7{word-spacing:9.513600pt;}
.ws221{word-spacing:9.561600pt;}
.ws2b6{word-spacing:9.811200pt;}
.ws1b2{word-spacing:9.844800pt;}
.ws1b1{word-spacing:9.883200pt;}
.ws9{word-spacing:9.912000pt;}
.ws14f{word-spacing:10.069434pt;}
.ws296{word-spacing:10.137600pt;}
.ws14c{word-spacing:10.373437pt;}
.ws14d{word-spacing:10.384104pt;}
.ws14e{word-spacing:10.533439pt;}
.ws27d{word-spacing:10.550400pt;}
.ws161{word-spacing:10.581439pt;}
.ws160{word-spacing:10.586773pt;}
.ws27e{word-spacing:10.593600pt;}
.ws288{word-spacing:10.646400pt;}
.ws15f{word-spacing:10.688107pt;}
.ws148{word-spacing:10.693440pt;}
.ws287{word-spacing:10.742400pt;}
.ws26b{word-spacing:10.761600pt;}
.ws188{word-spacing:10.906776pt;}
.ws15d{word-spacing:10.976110pt;}
.ws1b8{word-spacing:10.981443pt;}
.ws1f{word-spacing:11.018777pt;}
.ws268{word-spacing:11.025600pt;}
.ws1c{word-spacing:11.061444pt;}
.wsc2{word-spacing:11.098778pt;}
.ws15e{word-spacing:11.114778pt;}
.ws267{word-spacing:11.116800pt;}
.ws120{word-spacing:11.125445pt;}
.ws1b9{word-spacing:11.200112pt;}
.ws71{word-spacing:11.216112pt;}
.ws157{word-spacing:11.264113pt;}
.ws5b{word-spacing:11.280113pt;}
.ws158{word-spacing:11.296113pt;}
.ws1cd{word-spacing:11.301446pt;}
.ws2bf{word-spacing:11.318400pt;}
.ws237{word-spacing:11.332800pt;}
.ws2be{word-spacing:11.352000pt;}
.wsc1{word-spacing:11.376114pt;}
.ws11f{word-spacing:11.386781pt;}
.ws6e{word-spacing:11.440114pt;}
.ws38{word-spacing:11.600116pt;}
.ws6d{word-spacing:11.626783pt;}
.ws231{word-spacing:11.712000pt;}
.ws25d{word-spacing:11.721600pt;}
.wsc0{word-spacing:11.802785pt;}
.ws25e{word-spacing:11.803200pt;}
.ws1a9{word-spacing:11.875200pt;}
.ws11b{word-spacing:11.882785pt;}
.ws21d{word-spacing:11.884800pt;}
.ws3e{word-spacing:11.898786pt;}
.ws40{word-spacing:11.930786pt;}
.ws21e{word-spacing:11.961600pt;}
.ws77{word-spacing:11.989453pt;}
.ws78{word-spacing:12.016120pt;}
.ws87{word-spacing:12.021454pt;}
.ws1a7{word-spacing:12.033600pt;}
.ws11d{word-spacing:12.058787pt;}
.ws168{word-spacing:12.133455pt;}
.ws1a6{word-spacing:12.153600pt;}
.ws1a5{word-spacing:12.192000pt;}
.ws1a{word-spacing:12.197455pt;}
.ws173{word-spacing:12.224122pt;}
.ws2b0{word-spacing:12.283200pt;}
.ws121{word-spacing:12.314790pt;}
.ws258{word-spacing:12.384000pt;}
.ws1ff{word-spacing:12.417600pt;}
.ws122{word-spacing:12.432124pt;}
.ws1b0{word-spacing:12.436800pt;}
.ws213{word-spacing:12.441600pt;}
.ws1fd{word-spacing:12.480000pt;}
.wsf0{word-spacing:12.485458pt;}
.ws16f{word-spacing:12.586793pt;}
.ws259{word-spacing:12.604800pt;}
.ws3f{word-spacing:12.640126pt;}
.ws2d2{word-spacing:12.667200pt;}
.ws276{word-spacing:12.672000pt;}
.ws212{word-spacing:12.681600pt;}
.ws20b{word-spacing:12.691200pt;}
.wsc4{word-spacing:12.693460pt;}
.ws202{word-spacing:12.705600pt;}
.ws18{word-spacing:12.720000pt;}
.ws225{word-spacing:12.729600pt;}
.ws2c4{word-spacing:12.734400pt;}
.ws286{word-spacing:12.739200pt;}
.ws218{word-spacing:12.744000pt;}
.ws21f{word-spacing:12.758400pt;}
.ws1ae{word-spacing:12.768000pt;}
.ws205{word-spacing:12.782400pt;}
.ws16e{word-spacing:12.805461pt;}
.ws7{word-spacing:12.825600pt;}
.ws10f{word-spacing:12.826795pt;}
.ws244{word-spacing:12.844800pt;}
.ws6{word-spacing:12.849600pt;}
.wsa{word-spacing:12.868800pt;}
.ws23d{word-spacing:12.873600pt;}
.ws10e{word-spacing:12.885462pt;}
.ws271{word-spacing:12.891733pt;}
.ws1b4{word-spacing:12.892800pt;}
.ws203{word-spacing:12.907200pt;}
.ws284{word-spacing:12.936000pt;}
.ws2d1{word-spacing:12.940800pt;}
.ws211{word-spacing:12.945600pt;}
.ws2bd{word-spacing:12.960000pt;}
.ws2b2{word-spacing:12.974400pt;}
.wsef{word-spacing:12.976130pt;}
.ws282{word-spacing:12.984000pt;}
.ws243{word-spacing:12.993600pt;}
.ws289{word-spacing:13.003200pt;}
.ws2b5{word-spacing:13.012800pt;}
.wsd{word-spacing:13.017600pt;}
.ws219{word-spacing:13.022400pt;}
.ws246{word-spacing:13.032000pt;}
.ws25a{word-spacing:13.041600pt;}
.ws25b{word-spacing:13.046400pt;}
.ws270{word-spacing:13.056000pt;}
.ws2ae{word-spacing:13.065600pt;}
.ws10{word-spacing:13.089600pt;}
.ws5e{word-spacing:13.093464pt;}
.ws20a{word-spacing:13.099200pt;}
.ws80{word-spacing:13.130798pt;}
.ws297{word-spacing:13.132800pt;}
.ws6a{word-spacing:13.136131pt;}
.ws8{word-spacing:13.152000pt;}
.ws2c0{word-spacing:13.180800pt;}
.ws5f{word-spacing:13.194799pt;}
.wsf{word-spacing:13.209600pt;}
.ws109{word-spacing:13.221466pt;}
.ws2b3{word-spacing:13.224000pt;}
.ws222{word-spacing:13.243200pt;}
.ws12e{word-spacing:13.257600pt;}
.ws7c{word-spacing:13.338800pt;}
.ws17{word-spacing:13.339200pt;}
.ws12f{word-spacing:13.344000pt;}
.ws281{word-spacing:13.372800pt;}
.ws1b3{word-spacing:13.387200pt;}
.ws28c{word-spacing:13.411200pt;}
.ws261{word-spacing:13.444800pt;}
.ws113{word-spacing:13.461468pt;}
.ws28d{word-spacing:13.473600pt;}
.ws280{word-spacing:13.512000pt;}
.ws262{word-spacing:13.545600pt;}
.ws7f{word-spacing:13.552136pt;}
.ws283{word-spacing:13.617600pt;}
.ws239{word-spacing:13.651200pt;}
.ws2a6{word-spacing:13.660800pt;}
.ws28e{word-spacing:13.675200pt;}
.ws196{word-spacing:13.680137pt;}
.ws1dd{word-spacing:13.696137pt;}
.ws2c1{word-spacing:13.752000pt;}
.ws8a{word-spacing:13.760138pt;}
.ws1bf{word-spacing:13.770804pt;}
.wsb{word-spacing:13.814400pt;}
.ws2c9{word-spacing:13.819200pt;}
.ws2c8{word-spacing:13.920000pt;}
.ws11c{word-spacing:13.930806pt;}
.ws8b{word-spacing:13.946806pt;}
.ws6c{word-spacing:13.968140pt;}
.ws2cf{word-spacing:13.992000pt;}
.ws192{word-spacing:14.000140pt;}
.ws1de{word-spacing:14.037474pt;}
.ws223{word-spacing:14.049600pt;}
.ws73{word-spacing:14.064141pt;}
.ws193{word-spacing:14.112141pt;}
.ws8c{word-spacing:14.138808pt;}
.ws1b{word-spacing:14.149475pt;}
.ws24d{word-spacing:14.193600pt;}
.ws2ad{word-spacing:14.198400pt;}
.ws2ce{word-spacing:14.217600pt;}
.ws224{word-spacing:14.222400pt;}
.ws69{word-spacing:14.224142pt;}
.ws1f5{word-spacing:14.250809pt;}
.ws55{word-spacing:14.256143pt;}
.ws83{word-spacing:14.261476pt;}
.ws92{word-spacing:14.272143pt;}
.ws17e{word-spacing:14.294400pt;}
.ws2a7{word-spacing:14.299200pt;}
.ws4c{word-spacing:14.304143pt;}
.wsd7{word-spacing:14.341477pt;}
.ws43{word-spacing:14.346810pt;}
.ws34{word-spacing:14.368144pt;}
.ws47{word-spacing:14.373477pt;}
.ws17d{word-spacing:14.385600pt;}
.ws10a{word-spacing:14.389477pt;}
.ws24e{word-spacing:14.419200pt;}
.ws94{word-spacing:14.421478pt;}
.ws39{word-spacing:14.426811pt;}
.ws257{word-spacing:14.433600pt;}
.ws2f{word-spacing:14.453478pt;}
.ws11{word-spacing:14.467200pt;}
.ws18a{word-spacing:14.485478pt;}
.ws117{word-spacing:14.501478pt;}
.wsa7{word-spacing:14.549479pt;}
.ws2a1{word-spacing:14.563200pt;}
.ws93{word-spacing:14.570812pt;}
.wsba{word-spacing:14.581479pt;}
.ws95{word-spacing:14.586813pt;}
.ws1ac{word-spacing:14.596800pt;}
.wsfb{word-spacing:14.597479pt;}
.ws96{word-spacing:14.602813pt;}
.ws24f{word-spacing:14.616000pt;}
.ws11e{word-spacing:14.618813pt;}
.ws1d{word-spacing:14.624146pt;}
.wsb0{word-spacing:14.650813pt;}
.ws1f7{word-spacing:14.661480pt;}
.ws12{word-spacing:14.664000pt;}
.ws1e{word-spacing:14.666813pt;}
.ws20{word-spacing:14.677480pt;}
.ws2a2{word-spacing:14.692800pt;}
.ws124{word-spacing:14.709480pt;}
.ws1ab{word-spacing:14.716800pt;}
.ws1be{word-spacing:14.736147pt;}
.wsbb{word-spacing:14.757481pt;}
.ws1aa{word-spacing:14.769600pt;}
.ws56{word-spacing:14.800148pt;}
.wse8{word-spacing:14.810815pt;}
.ws14b{word-spacing:14.826815pt;}
.wse1{word-spacing:14.858815pt;}
.ws149{word-spacing:14.864149pt;}
.ws33{word-spacing:14.869482pt;}
.ws1e2{word-spacing:14.885482pt;}
.ws1e1{word-spacing:14.890816pt;}
.ws180{word-spacing:14.899200pt;}
.ws21{word-spacing:14.912149pt;}
.wsaf{word-spacing:14.922816pt;}
.ws1e5{word-spacing:14.938816pt;}
.ws17f{word-spacing:14.976000pt;}
.ws17c{word-spacing:14.990400pt;}
.ws17a{word-spacing:15.019200pt;}
.ws260{word-spacing:15.043200pt;}
.ws200{word-spacing:15.072000pt;}
.ws17b{word-spacing:15.076800pt;}
.ws201{word-spacing:15.105600pt;}
.ws210{word-spacing:15.158400pt;}
.ws118{word-spacing:15.210819pt;}
.ws27f{word-spacing:15.235200pt;}
.ws1e4{word-spacing:15.253486pt;}
.ws20f{word-spacing:15.283200pt;}
.wsc9{word-spacing:15.306820pt;}
.ws159{word-spacing:15.370820pt;}
.ws2af{word-spacing:15.393600pt;}
.wsc8{word-spacing:15.429488pt;}
.ws253{word-spacing:15.456000pt;}
.ws119{word-spacing:15.472155pt;}
.ws269{word-spacing:15.504000pt;}
.ws1bd{word-spacing:15.520155pt;}
.ws252{word-spacing:15.566400pt;}
.ws207{word-spacing:15.571200pt;}
.ws208{word-spacing:15.576000pt;}
.ws26a{word-spacing:15.628800pt;}
.ws9f{word-spacing:15.738824pt;}
.ws1da{word-spacing:15.776158pt;}
.ws3a{word-spacing:15.797491pt;}
.ws179{word-spacing:15.806400pt;}
.wse2{word-spacing:15.813491pt;}
.ws31{word-spacing:15.829492pt;}
.ws185{word-spacing:15.866825pt;}
.wsc{word-spacing:15.873600pt;}
.ws184{word-spacing:15.925493pt;}
.ws178{word-spacing:15.988800pt;}
.ws26f{word-spacing:16.022400pt;}
.ws177{word-spacing:16.080000pt;}
.ws110{word-spacing:16.096161pt;}
.ws21c{word-spacing:16.108800pt;}
.ws2b{word-spacing:16.117495pt;}
.ws41{word-spacing:16.160162pt;}
.ws2cd{word-spacing:16.166400pt;}
.ws1bc{word-spacing:16.170828pt;}
.ws234{word-spacing:16.171200pt;}
.ws42{word-spacing:16.266829pt;}
.ws3d{word-spacing:16.336163pt;}
.ws2c5{word-spacing:16.339200pt;}
.ws100{word-spacing:16.341497pt;}
.ws23c{word-spacing:16.372800pt;}
.ws1fa{word-spacing:16.373497pt;}
.wsfe{word-spacing:16.416164pt;}
.ws266{word-spacing:16.449600pt;}
.wsff{word-spacing:16.453498pt;}
.ws294{word-spacing:16.478400pt;}
.ws170{word-spacing:16.485498pt;}
.ws2cc{word-spacing:16.492800pt;}
.ws20c{word-spacing:16.502400pt;}
.ws7e{word-spacing:16.506832pt;}
.ws35{word-spacing:16.512165pt;}
.wsfc{word-spacing:16.522832pt;}
.ws23a{word-spacing:16.550400pt;}
.ws20d{word-spacing:16.555200pt;}
.ws3c{word-spacing:16.597499pt;}
.ws23b{word-spacing:16.598400pt;}
.ws2ab{word-spacing:16.612800pt;}
.ws23e{word-spacing:16.641600pt;}
.ws265{word-spacing:16.651200pt;}
.wsac{word-spacing:16.666833pt;}
.ws295{word-spacing:16.713600pt;}
.ws1d9{word-spacing:16.720167pt;}
.wscb{word-spacing:16.762834pt;}
.wsa4{word-spacing:16.816168pt;}
.wsa8{word-spacing:16.832168pt;}
.wsae{word-spacing:16.842835pt;}
.wsad{word-spacing:16.853502pt;}
.ws30{word-spacing:16.960170pt;}
.wsa9{word-spacing:16.970836pt;}
.ws5{word-spacing:16.991858pt;}
.ws16c{word-spacing:17.008170pt;}
.wsca{word-spacing:17.034837pt;}
.ws19{word-spacing:17.043058pt;}
.ws15c{word-spacing:17.045504pt;}
.ws7b{word-spacing:17.093504pt;}
.ws21b{word-spacing:17.121600pt;}
.ws13a{word-spacing:17.140800pt;}
.ws291{word-spacing:17.160000pt;}
.ws72{word-spacing:17.184172pt;}
.wsfa{word-spacing:17.189505pt;}
.ws21a{word-spacing:17.217600pt;}
.ws64{word-spacing:17.226839pt;}
.ws63{word-spacing:17.248172pt;}
.ws139{word-spacing:17.280000pt;}
.ws1db{word-spacing:17.312173pt;}
.ws4b{word-spacing:17.328173pt;}
.wsb7{word-spacing:17.343855pt;}
.ws1d2{word-spacing:17.344173pt;}
.ws29e{word-spacing:17.352000pt;}
.ws285{word-spacing:17.366400pt;}
.wsa3{word-spacing:17.376174pt;}
.ws1f6{word-spacing:17.401455pt;}
.ws4a{word-spacing:17.418841pt;}
.wsf9{word-spacing:17.429508pt;}
.ws26d{word-spacing:17.472000pt;}
.ws26e{word-spacing:17.520000pt;}
.ws26c{word-spacing:17.659200pt;}
.ws190{word-spacing:17.680177pt;}
.ws1cc{word-spacing:17.690844pt;}
.ws1d6{word-spacing:17.722844pt;}
.ws189{word-spacing:17.728177pt;}
.ws18f{word-spacing:17.808178pt;}
.ws1d0{word-spacing:17.877512pt;}
.ws131{word-spacing:17.880000pt;}
.ws1dc{word-spacing:17.930846pt;}
.ws15a{word-spacing:17.952180pt;}
.ws15{word-spacing:17.990400pt;}
.wsc5{word-spacing:17.994847pt;}
.ws133{word-spacing:18.033600pt;}
.ws132{word-spacing:18.043200pt;}
.ws228{word-spacing:18.048000pt;}
.ws1c7{word-spacing:18.064181pt;}
.ws22b{word-spacing:18.100800pt;}
.ws16d{word-spacing:18.122848pt;}
.wsda{word-spacing:18.154848pt;}
.ws162{word-spacing:18.181515pt;}
.ws1d7{word-spacing:18.202849pt;}
.ws29{word-spacing:18.234849pt;}
.ws10d{word-spacing:18.277516pt;}
.ws215{word-spacing:18.283200pt;}
.ws76{word-spacing:18.298850pt;}
.ws1cb{word-spacing:18.320183pt;}
.ws11a{word-spacing:18.330850pt;}
.ws14{word-spacing:18.350400pt;}
.ws2a{word-spacing:18.362850pt;}
.ws256{word-spacing:18.369600pt;}
.ws166{word-spacing:18.480185pt;}
.ws91{word-spacing:18.533519pt;}
.ws233{word-spacing:18.614400pt;}
.ws10c{word-spacing:18.634853pt;}
.ws1b6{word-spacing:18.645520pt;}
.ws1b7{word-spacing:18.672187pt;}
.ws22c{word-spacing:18.696000pt;}
.ws90{word-spacing:18.698854pt;}
.ws27b{word-spacing:18.724800pt;}
.wsdf{word-spacing:18.826855pt;}
.ws16a{word-spacing:18.853522pt;}
.ws108{word-spacing:18.858855pt;}
.ws226{word-spacing:18.897600pt;}
.ws70{word-spacing:18.928189pt;}
.ws151{word-spacing:18.944189pt;}
.ws2ba{word-spacing:18.950400pt;}
.ws229{word-spacing:19.041600pt;}
.ws230{word-spacing:19.070400pt;}
.ws22a{word-spacing:19.080000pt;}
.ws292{word-spacing:19.094400pt;}
.wse3{word-spacing:19.136191pt;}
.wsd6{word-spacing:19.141525pt;}
.ws24b{word-spacing:19.142400pt;}
.ws23{word-spacing:19.146858pt;}
.ws1a4{word-spacing:19.157525pt;}
.ws22{word-spacing:19.189525pt;}
.ws28{word-spacing:19.200192pt;}
.wse4{word-spacing:19.205525pt;}
.ws107{word-spacing:19.226859pt;}
.wsd5{word-spacing:19.237526pt;}
.wse5{word-spacing:19.274859pt;}
.ws101{word-spacing:19.306860pt;}
.ws1ee{word-spacing:19.317527pt;}
.ws293{word-spacing:19.372800pt;}
.ws22f{word-spacing:19.392000pt;}
.ws19f{word-spacing:19.424194pt;}
.ws1d1{word-spacing:19.440194pt;}
.ws1ce{word-spacing:19.456195pt;}
.ws2c7{word-spacing:19.459200pt;}
.ws102{word-spacing:19.472195pt;}
.ws1ef{word-spacing:19.477528pt;}
.ws167{word-spacing:19.482861pt;}
.ws1f8{word-spacing:19.498862pt;}
.ws1a0{word-spacing:19.509528pt;}
.ws1ed{word-spacing:19.648196pt;}
.ws172{word-spacing:19.658863pt;}
.ws214{word-spacing:19.699200pt;}
.ws59{word-spacing:19.728197pt;}
.ws25f{word-spacing:19.795200pt;}
.ws153{word-spacing:19.808198pt;}
.ws13{word-spacing:19.857600pt;}
.ws3b{word-spacing:19.898866pt;}
.ws7d{word-spacing:19.914866pt;}
.ws1c1{word-spacing:20.005533pt;}
.ws138{word-spacing:20.044800pt;}
.ws89{word-spacing:20.069534pt;}
.ws171{word-spacing:20.090868pt;}
.ws1df{word-spacing:20.101534pt;}
.ws137{word-spacing:20.164800pt;}
.ws68{word-spacing:20.218869pt;}
.ws275{word-spacing:20.222400pt;}
.ws49{word-spacing:20.250869pt;}
.ws136{word-spacing:20.251200pt;}
.ws75{word-spacing:20.346870pt;}
.wse9{word-spacing:20.400204pt;}
.ws277{word-spacing:20.409600pt;}
.ws248{word-spacing:20.419200pt;}
.wsed{word-spacing:20.421538pt;}
.ws67{word-spacing:20.442871pt;}
.ws278{word-spacing:20.496000pt;}
.ws10b{word-spacing:20.517539pt;}
.wsec{word-spacing:20.528205pt;}
.ws247{word-spacing:20.544000pt;}
.ws15b{word-spacing:20.592206pt;}
.ws165{word-spacing:20.645540pt;}
.ws1c9{word-spacing:20.650873pt;}
.ws116{word-spacing:20.656207pt;}
.ws115{word-spacing:20.688207pt;}
.ws19d{word-spacing:20.709540pt;}
.ws1c2{word-spacing:20.741541pt;}
.ws240{word-spacing:20.803200pt;}
.ws16{word-spacing:20.856000pt;}
.ws1c8{word-spacing:20.858875pt;}
.wscd{word-spacing:20.874875pt;}
.ws2b1{word-spacing:20.913600pt;}
.ws9b{word-spacing:20.938876pt;}
.ws279{word-spacing:20.942400pt;}
.ws1e7{word-spacing:20.954876pt;}
.ws1e6{word-spacing:21.002877pt;}
.ws99{word-spacing:21.013543pt;}
.ws50{word-spacing:21.024210pt;}
.ws6f{word-spacing:21.050877pt;}
.ws48{word-spacing:21.136211pt;}
.ws46{word-spacing:21.141545pt;}
.wsd4{word-spacing:21.178878pt;}
.ws1ec{word-spacing:21.237546pt;}
.ws134{word-spacing:21.244800pt;}
.ws84{word-spacing:21.290880pt;}
.ws232{word-spacing:21.307200pt;}
.wsb6{word-spacing:21.322880pt;}
.wsab{word-spacing:21.328213pt;}
.ws114{word-spacing:21.333547pt;}
.ws135{word-spacing:21.340800pt;}
.ws238{word-spacing:21.360000pt;}
.ws54{word-spacing:21.370880pt;}
.ws1ca{word-spacing:21.381547pt;}
.ws7a{word-spacing:21.386881pt;}
.ws154{word-spacing:21.429548pt;}
.ws2d0{word-spacing:21.432000pt;}
.wsb4{word-spacing:21.482881pt;}
.wsb5{word-spacing:21.504215pt;}
.ws79{word-spacing:21.541549pt;}
.ws1eb{word-spacing:21.557549pt;}
.ws65{word-spacing:21.562882pt;}
.ws1e3{word-spacing:21.573549pt;}
.wsaa{word-spacing:21.621550pt;}
.ws2e{word-spacing:21.648216pt;}
.ws298{word-spacing:21.739200pt;}
.ws1c3{word-spacing:21.770884pt;}
.ws16b{word-spacing:21.781551pt;}
.ws1c4{word-spacing:21.824218pt;}
.wsa2{word-spacing:21.845552pt;}
.ws29a{word-spacing:21.993067pt;}
.ws29b{word-spacing:21.993600pt;}
.ws2c{word-spacing:21.994887pt;}
.wscf{word-spacing:22.032220pt;}
.wsd2{word-spacing:22.112221pt;}
.ws249{word-spacing:22.132800pt;}
.wsbc{word-spacing:22.197555pt;}
.ws74{word-spacing:22.234889pt;}
.ws98{word-spacing:22.256223pt;}
.ws97{word-spacing:22.266889pt;}
.wsd0{word-spacing:22.277556pt;}
.ws24a{word-spacing:22.382400pt;}
.ws111{word-spacing:22.448224pt;}
.ws2c6{word-spacing:22.454400pt;}
.ws1cf{word-spacing:22.464225pt;}
.ws198{word-spacing:22.474891pt;}
.ws191{word-spacing:22.485558pt;}
.ws2ac{word-spacing:22.521600pt;}
.wse0{word-spacing:22.533559pt;}
.ws4f{word-spacing:22.581559pt;}
.ws206{word-spacing:22.598400pt;}
.ws25c{word-spacing:22.704000pt;}
.ws274{word-spacing:22.718400pt;}
.wsce{word-spacing:22.752228pt;}
.ws5d{word-spacing:22.768228pt;}
.ws1f4{word-spacing:22.810895pt;}
.ws216{word-spacing:22.824000pt;}
.ws273{word-spacing:22.843200pt;}
.ws51{word-spacing:22.864229pt;}
.ws19e{word-spacing:22.970896pt;}
.ws217{word-spacing:22.987200pt;}
.ws251{word-spacing:22.996800pt;}
.ws195{word-spacing:23.008230pt;}
.ws8e{word-spacing:23.072231pt;}
.ws1d3{word-spacing:23.088231pt;}
.ws250{word-spacing:23.289600pt;}
.ws1d4{word-spacing:23.290900pt;}
.ws1d5{word-spacing:23.312233pt;}
.ws164{word-spacing:23.317567pt;}
.ws1f9{word-spacing:23.370900pt;}
.ws8f{word-spacing:23.413567pt;}
.ws82{word-spacing:23.418901pt;}
.ws163{word-spacing:23.424234pt;}
.ws18b{word-spacing:23.429568pt;}
.ws1bb{word-spacing:23.440234pt;}
.ws1ba{word-spacing:23.514902pt;}
.ws1e8{word-spacing:23.589569pt;}
.ws235{word-spacing:23.678400pt;}
.ws236{word-spacing:23.721600pt;}
.ws290{word-spacing:23.726400pt;}
.wsa5{word-spacing:23.733571pt;}
.ws1c5{word-spacing:23.738904pt;}
.ws1a3{word-spacing:23.744237pt;}
.ws28f{word-spacing:23.750400pt;}
.ws24c{word-spacing:23.841600pt;}
.ws245{word-spacing:23.947200pt;}
.wsa6{word-spacing:24.021574pt;}
.ws299{word-spacing:24.192000pt;}
.ws2a3{word-spacing:24.211200pt;}
.ws1e9{word-spacing:24.304243pt;}
.ws1f2{word-spacing:24.410911pt;}
.ws57{word-spacing:24.432244pt;}
.ws29f{word-spacing:24.446400pt;}
.ws2a0{word-spacing:24.499200pt;}
.ws152{word-spacing:24.581579pt;}
.ws197{word-spacing:24.586913pt;}
.ws58{word-spacing:24.592246pt;}
.ws27{word-spacing:24.608246pt;}
.ws272{word-spacing:24.772800pt;}
.ws241{word-spacing:24.849600pt;}
.ws28b{word-spacing:24.902400pt;}
.ws26{word-spacing:25.093584pt;}
.wsb1{word-spacing:25.189585pt;}
.ws1ea{word-spacing:25.205585pt;}
.ws242{word-spacing:25.224533pt;}
.ws227{word-spacing:25.248000pt;}
.wse6{word-spacing:25.274919pt;}
.ws2b9{word-spacing:25.329600pt;}
.wsde{word-spacing:25.461588pt;}
.ws1c0{word-spacing:25.504255pt;}
.wse7{word-spacing:25.530922pt;}
.ws1d8{word-spacing:25.589589pt;}
.ws0{word-spacing:25.632000pt;}
.wsf1{word-spacing:25.760258pt;}
.ws1{word-spacing:25.785600pt;}
.ws187{word-spacing:25.808258pt;}
.ws18d{word-spacing:25.813591pt;}
.ws18e{word-spacing:25.861592pt;}
.ws27a{word-spacing:25.876800pt;}
.ws2{word-spacing:25.881600pt;}
.ws18c{word-spacing:25.888259pt;}
.ws4{word-spacing:25.910400pt;}
.ws3{word-spacing:25.968000pt;}
.wsd9{word-spacing:26.000260pt;}
.ws36{word-spacing:26.117595pt;}
.ws37{word-spacing:26.346930pt;}
.ws4d{word-spacing:26.405597pt;}
.ws61{word-spacing:26.698934pt;}
.wsd8{word-spacing:26.826935pt;}
.ws60{word-spacing:26.912269pt;}
.ws22e{word-spacing:26.942400pt;}
.ws4e{word-spacing:27.013603pt;}
.ws169{word-spacing:27.018937pt;}
.wsbd{word-spacing:27.066937pt;}
.ws22d{word-spacing:27.100800pt;}
.ws2b4{word-spacing:27.115200pt;}
.ws66{word-spacing:27.269606pt;}
.ws105{word-spacing:27.322940pt;}
.wsb8{word-spacing:27.408274pt;}
.wsb9{word-spacing:27.418941pt;}
.ws19b{word-spacing:27.466941pt;}
.ws1f3{word-spacing:27.589609pt;}
.ws1c6{word-spacing:27.642943pt;}
.wsf4{word-spacing:27.674943pt;}
.ws209{word-spacing:27.720000pt;}
.ws19c{word-spacing:27.770944pt;}
.wsf3{word-spacing:28.117615pt;}
.wsb3{word-spacing:28.202949pt;}
.ws85{word-spacing:28.229616pt;}
.ws27c{word-spacing:28.238400pt;}
.wsb2{word-spacing:28.256283pt;}
.ws19a{word-spacing:28.325617pt;}
.ws9e{word-spacing:28.496285pt;}
.ws53{word-spacing:28.549619pt;}
.ws52{word-spacing:28.560286pt;}
.ws9d{word-spacing:28.768288pt;}
.ws106{word-spacing:28.821622pt;}
.ws9c{word-spacing:28.858955pt;}
.ws29c{word-spacing:29.102400pt;}
.ws29d{word-spacing:29.107200pt;}
.wsf7{word-spacing:29.418961pt;}
.ws2aa{word-spacing:29.467200pt;}
.ws2a4{word-spacing:29.476800pt;}
.ws2a5{word-spacing:29.568000pt;}
.ws2a9{word-spacing:29.577600pt;}
.ws2b8{word-spacing:29.611200pt;}
.ws2bc{word-spacing:29.702400pt;}
.ws150{word-spacing:29.733631pt;}
.ws194{word-spacing:29.765631pt;}
.ws2bb{word-spacing:29.774400pt;}
.ws104{word-spacing:29.994967pt;}
.ws103{word-spacing:30.234969pt;}
.ws1e0{word-spacing:30.325637pt;}
.ws32{word-spacing:30.490972pt;}
.ws264{word-spacing:30.676800pt;}
.ws183{word-spacing:30.698974pt;}
.ws263{word-spacing:30.782400pt;}
.wseb{word-spacing:30.853642pt;}
.wsea{word-spacing:30.954976pt;}
.wsf2{word-spacing:31.008310pt;}
.ws1f1{word-spacing:31.605649pt;}
.ws1f0{word-spacing:31.728317pt;}
.wsf8{word-spacing:32.442991pt;}
.wsee{word-spacing:32.746994pt;}
.ws1a2{word-spacing:33.371000pt;}
.ws1a1{word-spacing:33.456335pt;}
.ws156{word-spacing:33.733671pt;}
.ws155{word-spacing:33.845672pt;}
.ws186{word-spacing:33.973673pt;}
.ws25{word-spacing:34.032340pt;}
.ws24{word-spacing:34.256343pt;}
.ws254{word-spacing:34.780800pt;}
.ws86{word-spacing:34.811015pt;}
.ws255{word-spacing:34.910400pt;}
.wsf5{word-spacing:35.403021pt;}
.wsf6{word-spacing:35.509688pt;}
.ws2cb{word-spacing:36.628800pt;}
.ws2a8{word-spacing:36.648000pt;}
.ws23f{word-spacing:36.667200pt;}
.ws2ca{word-spacing:36.763200pt;}
.ws199{word-spacing:37.893712pt;}
.wsdc{word-spacing:42.037754pt;}
.ws127{word-spacing:65.450667pt;}
.ws175{word-spacing:66.961067pt;}
.ws176{word-spacing:68.036267pt;}
.ws129{word-spacing:90.478933pt;}
.ws128{word-spacing:242.773333pt;}
.ws12a{word-spacing:294.528000pt;}
._26{margin-left:-2666.693333pt;}
._e{margin-left:-4.250667pt;}
._f{margin-left:-2.252811pt;}
._22{margin-left:-1.235224pt;}
._2{width:0.960000pt;}
._0{width:1.900800pt;}
._19{width:3.765441pt;}
._1f{width:7.338740pt;}
._14{width:8.704087pt;}
._27{width:9.671781pt;}
._5{width:10.905600pt;}
._a{width:12.533459pt;}
._4{width:13.872000pt;}
._6{width:14.774400pt;}
._7{width:15.729600pt;}
._9{width:17.193600pt;}
._d{width:18.141325pt;}
._17{width:19.243238pt;}
._b{width:20.138868pt;}
._8{width:21.038400pt;}
._13{width:22.064221pt;}
._c{width:23.056231pt;}
._11{width:24.053574pt;}
._28{width:25.669590pt;}
._1{width:26.908800pt;}
._10{width:27.811747pt;}
._12{width:29.584296pt;}
._21{width:30.581639pt;}
._18{width:31.525649pt;}
._1d{width:33.088331pt;}
._1c{width:34.053674pt;}
._2f{width:35.237695pt;}
._20{width:36.368364pt;}
._16{width:37.595043pt;}
._15{width:38.592386pt;}
._1b{width:42.267089pt;}
._1a{width:49.680497pt;}
._39{width:56.081067pt;}
._3{width:61.560849pt;}
._38{width:66.316800pt;}
._3c{width:71.146667pt;}
._37{width:76.556800pt;}
._3b{width:81.467733pt;}
._3a{width:86.009576pt;}
._23{width:87.468824pt;}
._2b{width:97.147733pt;}
._2e{width:98.197333pt;}
._35{width:99.502933pt;}
._31{width:101.017600pt;}
._36{width:107.012267pt;}
._34{width:108.872533pt;}
._30{width:111.705600pt;}
._2a{width:117.627733pt;}
._2d{width:118.685867pt;}
._29{width:138.103467pt;}
._2c{width:139.161600pt;}
._24{width:294.741333pt;}
._25{width:324.693333pt;}
._33{width:336.128000pt;}
._32{width:338.346667pt;}
._1e{width:1931.645983pt;}
.fs3{font-size:31.995733pt;}
.fs8{font-size:32.000000pt;}
.fs5{font-size:35.552000pt;}
.fs6{font-size:42.506667pt;}
.fs9{font-size:42.666133pt;}
.fs7{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.333867pt;}
.fs1{font-size:63.999467pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ye9{bottom:73.700800pt;}
.yea{bottom:77.026667pt;}
.y169{bottom:77.033581pt;}
.y2e3{bottom:77.039200pt;}
.ye8{bottom:77.040496pt;}
.yc8{bottom:77.040763pt;}
.y24a{bottom:77.047278pt;}
.y1ac{bottom:77.049792pt;}
.y2a6{bottom:77.059333pt;}
.y2e{bottom:77.063621pt;}
.y1bb{bottom:77.143126pt;}
.y3f{bottom:77.170289pt;}
.y7e{bottom:77.265961pt;}
.y167{bottom:88.894400pt;}
.y2e2{bottom:91.103200pt;}
.y2a5{bottom:91.123333pt;}
.y168{bottom:92.220400pt;}
.ye7{bottom:92.227315pt;}
.yc7{bottom:92.227581pt;}
.y249{bottom:92.234096pt;}
.y1ab{bottom:92.236610pt;}
.y2d{bottom:92.250440pt;}
.y166{bottom:92.284881pt;}
.y1ba{bottom:92.329945pt;}
.y22f{bottom:92.356009pt;}
.y3e{bottom:92.357108pt;}
.y7d{bottom:92.452779pt;}
.ye5{bottom:104.088133pt;}
.y2e1{bottom:105.083200pt;}
.y2a4{bottom:105.103333pt;}
.ye6{bottom:107.414133pt;}
.y248{bottom:107.420915pt;}
.ye4{bottom:107.421848pt;}
.y1aa{bottom:107.423429pt;}
.yc6{bottom:107.430344pt;}
.y2c{bottom:107.437258pt;}
.y165{bottom:107.471699pt;}
.y1b9{bottom:107.516763pt;}
.y22e{bottom:107.542828pt;}
.y3d{bottom:107.543926pt;}
.y7c{bottom:107.639598pt;}
.y2e0{bottom:119.063200pt;}
.y2a3{bottom:122.263333pt;}
.y247{bottom:122.607733pt;}
.y1a9{bottom:122.610247pt;}
.yc5{bottom:122.617162pt;}
.y2b{bottom:122.624077pt;}
.ye3{bottom:122.644688pt;}
.y164{bottom:122.658518pt;}
.y1b8{bottom:122.703582pt;}
.y3c{bottom:122.730745pt;}
.y22d{bottom:122.809647pt;}
.y7b{bottom:122.826416pt;}
.y2df{bottom:133.164667pt;}
.y1a7{bottom:134.475600pt;}
.y2a2{bottom:136.327333pt;}
.y1a8{bottom:137.877067pt;}
.yc4{bottom:137.883981pt;}
.y2a{bottom:137.890896pt;}
.ye2{bottom:137.911507pt;}
.y163{bottom:137.925337pt;}
.y1a6{bottom:137.945815pt;}
.y1b7{bottom:137.970401pt;}
.y22c{bottom:137.996466pt;}
.y3b{bottom:137.997564pt;}
.y7a{bottom:138.093236pt;}
.y246{bottom:149.291333pt;}
.yfb{bottom:149.744800pt;}
.y2de{bottom:150.156667pt;}
.y2a1{bottom:150.307333pt;}
.yc3{bottom:153.070800pt;}
.y29{bottom:153.077715pt;}
.y154{bottom:153.091544pt;}
.ye1{bottom:153.098326pt;}
.yfa{bottom:153.106041pt;}
.y162{bottom:153.112155pt;}
.y1a5{bottom:153.132633pt;}
.y1b6{bottom:153.157219pt;}
.y22b{bottom:153.183284pt;}
.y3a{bottom:153.184383pt;}
.y79{bottom:153.280054pt;}
.y2dd{bottom:164.136667pt;}
.y2a0{bottom:164.287333pt;}
.y27{bottom:164.938533pt;}
.y28{bottom:168.264533pt;}
.y26{bottom:168.271448pt;}
.y153{bottom:168.278363pt;}
.ye0{bottom:168.285144pt;}
.yf9{bottom:168.292859pt;}
.y161{bottom:168.298974pt;}
.yc2{bottom:168.313070pt;}
.y1a4{bottom:168.319452pt;}
.y1b5{bottom:168.344038pt;}
.y22a{bottom:168.370103pt;}
.y39{bottom:168.371201pt;}
.y78{bottom:168.466873pt;}
.y2dc{bottom:178.116667pt;}
.y24{bottom:180.132267pt;}
.y29f{bottom:181.519333pt;}
.y25{bottom:183.458267pt;}
.y152{bottom:183.465181pt;}
.ydf{bottom:183.471963pt;}
.yf8{bottom:183.479678pt;}
.y160{bottom:183.485793pt;}
.yc1{bottom:183.499889pt;}
.y23{bottom:183.506270pt;}
.y1b4{bottom:183.530857pt;}
.y229{bottom:183.556921pt;}
.y38{bottom:183.558020pt;}
.y77{bottom:183.653691pt;}
.y2db{bottom:192.096667pt;}
.y150{bottom:195.325867pt;}
.y29e{bottom:195.499333pt;}
.y151{bottom:198.652000pt;}
.yde{bottom:198.658781pt;}
.yf7{bottom:198.666496pt;}
.y15f{bottom:198.672611pt;}
.yc0{bottom:198.686707pt;}
.y14f{bottom:198.689184pt;}
.y22{bottom:198.693089pt;}
.y1b3{bottom:198.717675pt;}
.y228{bottom:198.743740pt;}
.y37{bottom:198.744838pt;}
.y76{bottom:198.840510pt;}
.y2da{bottom:206.160667pt;}
.y29d{bottom:209.479333pt;}
.y245{bottom:210.141600pt;}
.ydc{bottom:210.519600pt;}
.ydd{bottom:213.845600pt;}
.yf6{bottom:213.853315pt;}
.y15e{bottom:213.859430pt;}
.ydb{bottom:213.859963pt;}
.ybf{bottom:213.873526pt;}
.y21{bottom:213.879907pt;}
.y1b2{bottom:213.904494pt;}
.y227{bottom:213.930558pt;}
.y36{bottom:213.931657pt;}
.y75{bottom:214.027328pt;}
.y2d9{bottom:223.092667pt;}
.y29c{bottom:226.711333pt;}
.y15d{bottom:229.046248pt;}
.yda{bottom:229.046781pt;}
.ybe{bottom:229.060344pt;}
.y20{bottom:229.066726pt;}
.yf5{bottom:229.076155pt;}
.y1b1{bottom:229.091312pt;}
.y226{bottom:229.117377pt;}
.y35{bottom:229.118475pt;}
.y74{bottom:229.214147pt;}
.y2d8{bottom:237.072667pt;}
.y29b{bottom:240.691333pt;}
.y15c{bottom:244.233067pt;}
.ybd{bottom:244.247163pt;}
.y1f{bottom:244.253544pt;}
.yd9{bottom:244.253678pt;}
.yf4{bottom:244.262973pt;}
.y1b0{bottom:244.278131pt;}
.y225{bottom:244.304195pt;}
.y34{bottom:244.305294pt;}
.y73{bottom:244.400965pt;}
.y2d7{bottom:251.052667pt;}
.y29a{bottom:254.671333pt;}
.ybc{bottom:259.433981pt;}
.y1e{bottom:259.440363pt;}
.yd8{bottom:259.440496pt;}
.yf3{bottom:259.449792pt;}
.y1af{bottom:259.464949pt;}
.y224{bottom:259.491014pt;}
.y33{bottom:259.492112pt;}
.y72{bottom:259.587784pt;}
.y2d6{bottom:265.116667pt;}
.y15b{bottom:270.916533pt;}
.y299{bottom:271.903333pt;}
.y1d{bottom:274.627181pt;}
.yd7{bottom:274.627315pt;}
.yf2{bottom:274.636610pt;}
.ybb{bottom:274.643525pt;}
.y1ae{bottom:274.651768pt;}
.y223{bottom:274.677832pt;}
.y32{bottom:274.678931pt;}
.y71{bottom:274.774602pt;}
.y2d5{bottom:282.048667pt;}
.y298{bottom:286.010267pt;}
.y1c{bottom:289.814000pt;}
.yd6{bottom:289.823429pt;}
.yba{bottom:289.830344pt;}
.y1ad{bottom:289.838586pt;}
.y31{bottom:289.865749pt;}
.y14e{bottom:289.903430pt;}
.y222{bottom:289.944652pt;}
.y70{bottom:289.961421pt;}
.y2d4{bottom:296.028667pt;}
.y297{bottom:299.990267pt;}
.yd5{bottom:305.090248pt;}
.yb9{bottom:305.097163pt;}
.y221{bottom:305.131470pt;}
.y30{bottom:305.132569pt;}
.y15a{bottom:305.136111pt;}
.y2d3{bottom:310.092667pt;}
.y296{bottom:314.054267pt;}
.yd4{bottom:316.951067pt;}
.y6f{bottom:320.268391pt;}
.y1b{bottom:320.277067pt;}
.yb8{bottom:320.283981pt;}
.y14d{bottom:320.284648pt;}
.yf1{bottom:320.304955pt;}
.yd3{bottom:320.311374pt;}
.y220{bottom:320.318289pt;}
.y2f{bottom:320.319387pt;}
.y159{bottom:320.322929pt;}
.y30f{bottom:323.349200pt;}
.y2d2{bottom:324.072667pt;}
.y20a{bottom:325.724000pt;}
.y295{bottom:328.034267pt;}
.yb6{bottom:332.144800pt;}
.yb7{bottom:335.470800pt;}
.y14c{bottom:335.491411pt;}
.yf0{bottom:335.491774pt;}
.yd2{bottom:335.498193pt;}
.yb5{bottom:335.505107pt;}
.y158{bottom:335.509748pt;}
.y6e{bottom:335.535210pt;}
.y30e{bottom:337.329200pt;}
.y2d1{bottom:338.052667pt;}
.y209{bottom:339.788000pt;}
.y294{bottom:342.014267pt;}
.y14b{bottom:350.678230pt;}
.yef{bottom:350.678592pt;}
.yd1{bottom:350.685011pt;}
.yb4{bottom:350.691926pt;}
.y157{bottom:350.696566pt;}
.y6d{bottom:350.722029pt;}
.y30d{bottom:351.393200pt;}
.y208{bottom:353.768000pt;}
.y2d0{bottom:355.056667pt;}
.y293{bottom:359.246267pt;}
.y244{bottom:362.154267pt;}
.y207{bottom:364.724267pt;}
.y14a{bottom:365.865048pt;}
.yd0{bottom:365.871830pt;}
.yb3{bottom:365.878744pt;}
.y156{bottom:365.883385pt;}
.y6c{bottom:365.908847pt;}
.y206{bottom:367.748000pt;}
.y30c{bottom:368.697200pt;}
.y2cf{bottom:369.036667pt;}
.y292{bottom:373.226267pt;}
.y149{bottom:381.051867pt;}
.ycf{bottom:381.058648pt;}
.yb2{bottom:381.065563pt;}
.y155{bottom:381.070203pt;}
.y6b{bottom:381.095666pt;}
.y30b{bottom:382.677200pt;}
.y2ce{bottom:385.968667pt;}
.y291{bottom:387.206267pt;}
.y1f5{bottom:392.088000pt;}
.yce{bottom:392.919600pt;}
.ycd{bottom:396.245467pt;}
.yb1{bottom:396.252381pt;}
.y6a{bottom:396.282484pt;}
.y243{bottom:396.330558pt;}
.y1a{bottom:396.627867pt;}
.y30a{bottom:396.657200pt;}
.y2cd{bottom:399.948667pt;}
.y290{bottom:401.186267pt;}
.yaf{bottom:408.113333pt;}
.y19{bottom:410.691867pt;}
.y309{bottom:410.721200pt;}
.yb0{bottom:411.439200pt;}
.ycc{bottom:411.446611pt;}
.yee{bottom:411.455296pt;}
.yae{bottom:411.469240pt;}
.y69{bottom:411.469303pt;}
.y242{bottom:411.517377pt;}
.y1f1{bottom:411.577467pt;}
.y1f4{bottom:411.950800pt;}
.y202{bottom:413.649067pt;}
.y2cc{bottom:414.012667pt;}
.y205{bottom:414.022400pt;}
.y28f{bottom:415.166267pt;}
.y21f{bottom:423.307067pt;}
.y18{bottom:424.671867pt;}
.y1a2{bottom:424.823067pt;}
.y1f0{bottom:425.561467pt;}
.y1f3{bottom:425.945467pt;}
.yed{bottom:426.642115pt;}
.yad{bottom:426.656058pt;}
.y68{bottom:426.656121pt;}
.y21e{bottom:426.683584pt;}
.y241{bottom:426.704195pt;}
.y201{bottom:427.633067pt;}
.y2cb{bottom:427.992667pt;}
.y204{bottom:428.017067pt;}
.y308{bottom:428.025200pt;}
.y28e{bottom:432.398267pt;}
.y16{bottom:435.628267pt;}
.y17{bottom:438.651867pt;}
.y15{bottom:438.660400pt;}
.y1a1{bottom:438.887067pt;}
.y1ef{bottom:439.912000pt;}
.y1f2{bottom:440.270800pt;}
.yec{bottom:441.830315pt;}
.ycb{bottom:441.833581pt;}
.yac{bottom:441.842877pt;}
.y67{bottom:441.842940pt;}
.y21d{bottom:441.870403pt;}
.y240{bottom:441.891014pt;}
.y2ca{bottom:441.972667pt;}
.y200{bottom:441.990400pt;}
.y307{bottom:442.005200pt;}
.y203{bottom:442.342400pt;}
.y28d{bottom:446.378267pt;}
.y14{bottom:452.640400pt;}
.y1a0{bottom:452.867067pt;}
.y306{bottom:455.985200pt;}
.yeb{bottom:457.017133pt;}
.yca{bottom:457.020400pt;}
.yab{bottom:457.029695pt;}
.y66{bottom:457.029758pt;}
.y21c{bottom:457.057221pt;}
.y23f{bottom:457.077832pt;}
.y2c9{bottom:458.976667pt;}
.y28c{bottom:460.442267pt;}
.y1ee{bottom:462.141333pt;}
.y1ff{bottom:462.335600pt;}
.y12{bottom:463.672267pt;}
.y19e{bottom:463.823467pt;}
.y13{bottom:466.620400pt;}
.y11{bottom:466.631333pt;}
.y19f{bottom:466.847067pt;}
.y19d{bottom:466.851333pt;}
.y305{bottom:470.049200pt;}
.yaa{bottom:472.216514pt;}
.y65{bottom:472.216577pt;}
.y21b{bottom:472.324041pt;}
.y23e{bottom:472.344652pt;}
.y2c8{bottom:472.956667pt;}
.y28b{bottom:474.422267pt;}
.y1ed{bottom:475.453333pt;}
.y1fd{bottom:475.672800pt;}
.y19b{bottom:477.883333pt;}
.y10{bottom:480.695333pt;}
.y19a{bottom:480.827200pt;}
.y19c{bottom:480.831333pt;}
.y304{bottom:484.029200pt;}
.y2c7{bottom:486.936667pt;}
.y64{bottom:487.403395pt;}
.ya9{bottom:487.483333pt;}
.y21a{bottom:487.510859pt;}
.y23d{bottom:487.531470pt;}
.y28a{bottom:488.402267pt;}
.y1f6{bottom:489.027467pt;}
.y1e5{bottom:489.027867pt;}
.y147{bottom:493.383467pt;}
.yf{bottom:494.675333pt;}
.y199{bottom:494.891200pt;}
.y2c6{bottom:500.916667pt;}
.y303{bottom:501.333200pt;}
.y289{bottom:502.382267pt;}
.y63{bottom:502.590214pt;}
.y219{bottom:502.697678pt;}
.y23c{bottom:502.718289pt;}
.y145{bottom:504.415467pt;}
.y146{bottom:507.363467pt;}
.y144{bottom:507.363600pt;}
.ye{bottom:508.655333pt;}
.y1f7{bottom:510.254133pt;}
.y1e6{bottom:510.254533pt;}
.ya8{bottom:513.335333pt;}
.y302{bottom:515.313200pt;}
.y62{bottom:517.857033pt;}
.y218{bottom:517.884496pt;}
.y23b{bottom:517.905107pt;}
.y2c5{bottom:517.920667pt;}
.y189{bottom:519.155867pt;}
.y288{bottom:519.614267pt;}
.y143{bottom:521.427600pt;}
.yd{bottom:522.635333pt;}
.y1f8{bottom:531.470133pt;}
.y1e7{bottom:531.470533pt;}
.y2c4{bottom:531.900667pt;}
.y301{bottom:532.701200pt;}
.y61{bottom:533.043852pt;}
.y217{bottom:533.071315pt;}
.y23a{bottom:533.091926pt;}
.y287{bottom:533.594267pt;}
.y142{bottom:535.407600pt;}
.y186{bottom:538.682667pt;}
.y188{bottom:538.842667pt;}
.y196{bottom:540.346667pt;}
.y1fe{bottom:540.389067pt;}
.y1ec{bottom:540.389467pt;}
.y198{bottom:540.964000pt;}
.y215{bottom:544.932133pt;}
.y2c3{bottom:545.880667pt;}
.y140{bottom:546.368267pt;}
.y300{bottom:546.681200pt;}
.y286{bottom:547.574267pt;}
.y60{bottom:548.230670pt;}
.y216{bottom:548.258133pt;}
.y239{bottom:548.278744pt;}
.y214{bottom:548.299355pt;}
.ya7{bottom:548.464748pt;}
.yc{bottom:548.639333pt;}
.y141{bottom:549.391867pt;}
.y13f{bottom:549.396133pt;}
.y185{bottom:551.582267pt;}
.y187{bottom:551.760000pt;}
.y1f9{bottom:552.696800pt;}
.y1e8{bottom:552.697200pt;}
.y197{bottom:554.444000pt;}
.y195{bottom:554.619733pt;}
.y2c2{bottom:559.860667pt;}
.y285{bottom:561.554267pt;}
.yb{bottom:562.619333pt;}
.y13e{bottom:563.376133pt;}
.y5f{bottom:563.417489pt;}
.y238{bottom:563.465563pt;}
.y213{bottom:563.486174pt;}
.ya6{bottom:563.651566pt;}
.y2ff{bottom:563.985200pt;}
.y193{bottom:572.550400pt;}
.y183{bottom:573.032933pt;}
.y1fa{bottom:573.923467pt;}
.y1e9{bottom:573.923867pt;}
.y2c1{bottom:576.864667pt;}
.y2fe{bottom:577.965200pt;}
.y5e{bottom:578.604307pt;}
.y237{bottom:578.652381pt;}
.y212{bottom:578.672993pt;}
.y284{bottom:578.786267pt;}
.ya5{bottom:578.838385pt;}
.y184{bottom:586.174267pt;}
.y194{bottom:586.331733pt;}
.y12d{bottom:587.716267pt;}
.ya{bottom:588.620933pt;}
.y2fd{bottom:589.001467pt;}
.y235{bottom:590.513200pt;}
.y2c0{bottom:590.844667pt;}
.y2fc{bottom:592.015200pt;}
.y283{bottom:592.766267pt;}
.y5d{bottom:593.791126pt;}
.y236{bottom:593.839200pt;}
.y211{bottom:593.859811pt;}
.y234{bottom:593.878750pt;}
.ya4{bottom:594.105204pt;}
.y1fb{bottom:595.150133pt;}
.y1ea{bottom:595.150533pt;}
.y17b{bottom:598.174267pt;}
.y18b{bottom:598.438400pt;}
.y2bf{bottom:604.824667pt;}
.y2fb{bottom:606.079200pt;}
.y282{bottom:606.830267pt;}
.y12e{bottom:607.208800pt;}
.y12c{bottom:608.096133pt;}
.y5c{bottom:608.977944pt;}
.y210{bottom:609.046630pt;}
.y233{bottom:609.065568pt;}
.ya3{bottom:609.292023pt;}
.y9{bottom:614.624933pt;}
.y1fc{bottom:616.376800pt;}
.y1eb{bottom:616.377200pt;}
.y17c{bottom:617.054267pt;}
.y18c{bottom:617.275733pt;}
.y2fa{bottom:620.059200pt;}
.y281{bottom:620.810267pt;}
.y2be{bottom:621.828667pt;}
.y134{bottom:622.910133pt;}
.y123{bottom:623.914267pt;}
.y5b{bottom:624.164763pt;}
.y20f{bottom:624.233448pt;}
.y232{bottom:624.252387pt;}
.ya2{bottom:624.478841pt;}
.y2bd{bottom:635.808667pt;}
.y17d{bottom:635.934267pt;}
.y20d{bottom:636.094267pt;}
.y18d{bottom:636.123733pt;}
.y2f9{bottom:637.363200pt;}
.y280{bottom:637.970267pt;}
.y5a{bottom:639.351581pt;}
.y20e{bottom:639.420267pt;}
.y20c{bottom:639.422781pt;}
.y231{bottom:639.439205pt;}
.ya1{bottom:639.665660pt;}
.y8{bottom:640.628933pt;}
.y137{bottom:644.254133pt;}
.y125{bottom:644.671600pt;}
.y121{bottom:645.268933pt;}
.y133{bottom:645.544800pt;}
.y1e4{bottom:646.450267pt;}
.y2bc{bottom:649.788667pt;}
.y17a{bottom:650.799200pt;}
.y58{bottom:651.212400pt;}
.y2f8{bottom:651.343200pt;}
.y27f{bottom:652.034267pt;}
.y18a{bottom:654.533600pt;}
.y59{bottom:654.538400pt;}
.y57{bottom:654.600729pt;}
.y20b{bottom:654.689600pt;}
.y230{bottom:654.706025pt;}
.y17e{bottom:654.814267pt;}
.ya0{bottom:654.852478pt;}
.y18e{bottom:654.971733pt;}
.y1e3{bottom:660.430267pt;}
.y138{bottom:662.611467pt;}
.y126{bottom:662.634267pt;}
.y11e{bottom:662.868933pt;}
.y130{bottom:663.763467pt;}
.y2bb{bottom:663.768667pt;}
.y2f7{bottom:665.407200pt;}
.y27e{bottom:666.014267pt;}
.y7{bottom:666.632933pt;}
.y56{bottom:669.787548pt;}
.y1e1{bottom:671.470667pt;}
.y17f{bottom:673.694267pt;}
.y18f{bottom:673.819733pt;}
.y1e2{bottom:674.494267pt;}
.y1e0{bottom:674.498533pt;}
.y2f6{bottom:679.387200pt;}
.y11f{bottom:679.583600pt;}
.y27d{bottom:679.994267pt;}
.y127{bottom:680.618800pt;}
.y2ba{bottom:680.839333pt;}
.y139{bottom:680.971600pt;}
.y131{bottom:682.238133pt;}
.y55{bottom:684.974366pt;}
.y9f{bottom:685.159448pt;}
.y1df{bottom:688.478533pt;}
.y26b{bottom:689.003600pt;}
.y180{bottom:692.574267pt;}
.y6{bottom:692.636133pt;}
.y190{bottom:692.667733pt;}
.y2f5{bottom:693.367200pt;}
.y2b9{bottom:694.819333pt;}
.y27c{bottom:697.226267pt;}
.y128{bottom:698.581467pt;}
.y120{bottom:698.932933pt;}
.y132{bottom:699.208800pt;}
.y13a{bottom:699.328933pt;}
.y269{bottom:700.044000pt;}
.y54{bottom:700.241186pt;}
.y9e{bottom:700.346267pt;}
.y9c{bottom:700.353181pt;}
.y26a{bottom:703.067600pt;}
.y268{bottom:703.071733pt;}
.y9d{bottom:706.091200pt;}
.y2b8{bottom:708.799333pt;}
.y2f4{bottom:710.671200pt;}
.y27b{bottom:711.206267pt;}
.y181{bottom:711.454267pt;}
.y191{bottom:711.515733pt;}
.y1ce{bottom:712.818667pt;}
.y53{bottom:715.428004pt;}
.y9b{bottom:715.540000pt;}
.y99{bottom:715.576821pt;}
.y129{bottom:716.554800pt;}
.y267{bottom:717.051733pt;}
.y11d{bottom:717.151600pt;}
.y12f{bottom:717.427467pt;}
.y13b{bottom:717.686267pt;}
.y9a{bottom:721.284800pt;}
.y2b7{bottom:722.863333pt;}
.y2f3{bottom:724.735200pt;}
.y27a{bottom:725.186267pt;}
.y182{bottom:730.334267pt;}
.y192{bottom:730.363733pt;}
.y98{bottom:730.763640pt;}
.y1d5{bottom:732.233200pt;}
.y1cc{bottom:732.294133pt;}
.y12a{bottom:734.517467pt;}
.y124{bottom:734.996933pt;}
.y13c{bottom:736.043600pt;}
.y136{bottom:736.190133pt;}
.y2f2{bottom:738.715200pt;}
.y279{bottom:739.166267pt;}
.y2b6{bottom:739.795333pt;}
.y25a{bottom:741.391867pt;}
.y52{bottom:745.734974pt;}
.y97{bottom:745.950458pt;}
.y1c9{bottom:746.002000pt;}
.y1d2{bottom:746.410400pt;}
.y1d4{bottom:747.582533pt;}
.y1cb{bottom:747.643467pt;}
.y179{bottom:749.404533pt;}
.y12b{bottom:752.490800pt;}
.y122{bottom:752.596933pt;}
.y2f1{bottom:752.695200pt;}
.y2b5{bottom:753.775333pt;}
.y135{bottom:753.790133pt;}
.y13d{bottom:754.400933pt;}
.y5{bottom:754.613467pt;}
.y278{bottom:756.398267pt;}
.y51{bottom:760.921793pt;}
.y1c8{bottom:760.956667pt;}
.y96{bottom:761.137277pt;}
.y1d3{bottom:761.941067pt;}
.y1ca{bottom:762.002000pt;}
.y264{bottom:762.162667pt;}
.y266{bottom:762.237467pt;}
.y257{bottom:762.252533pt;}
.y1d1{bottom:762.293067pt;}
.y259{bottom:762.516667pt;}
.y2b4{bottom:767.839333pt;}
.y175{bottom:768.867333pt;}
.y177{bottom:769.027333pt;}
.y2f0{bottom:769.999200pt;}
.y277{bottom:770.378267pt;}
.y50{bottom:776.108611pt;}
.y95{bottom:776.324095pt;}
.y1d0{bottom:776.405067pt;}
.y1c7{bottom:776.466000pt;}
.y11c{bottom:777.372933pt;}
.y10c{bottom:777.373067pt;}
.y265{bottom:779.236133pt;}
.y258{bottom:779.324533pt;}
.y263{bottom:779.410667pt;}
.y256{bottom:779.692533pt;}
.y4{bottom:781.301467pt;}
.y174{bottom:781.789733pt;}
.y2b3{bottom:781.819333pt;}
.y176{bottom:781.944667pt;}
.y2ef{bottom:784.063200pt;}
.y276{bottom:784.358267pt;}
.y4f{bottom:791.295430pt;}
.y94{bottom:791.510914pt;}
.y1d6{bottom:796.158533pt;}
.y1c5{bottom:796.194533pt;}
.y117{bottom:796.835067pt;}
.y103{bottom:797.186133pt;}
.y2ee{bottom:798.043200pt;}
.y275{bottom:798.422267pt;}
.y2b2{bottom:798.751333pt;}
.y261{bottom:800.454400pt;}
.y254{bottom:800.616400pt;}
.y173{bottom:802.643067pt;}
.y4e{bottom:806.482248pt;}
.y93{bottom:806.777733pt;}
.y91{bottom:806.796327pt;}
.y3{bottom:807.989467pt;}
.y1d7{bottom:809.843867pt;}
.y1c4{bottom:809.879867pt;}
.y1cd{bottom:809.904800pt;}
.y2ed{bottom:812.023200pt;}
.y274{bottom:812.402267pt;}
.y92{bottom:812.673867pt;}
.y2b1{bottom:812.815333pt;}
.y116{bottom:813.101733pt;}
.y10b{bottom:813.779867pt;}
.y262{bottom:814.491733pt;}
.y255{bottom:814.653733pt;}
.y178{bottom:816.568667pt;}
.y171{bottom:816.584267pt;}
.y4d{bottom:821.669067pt;}
.y90{bottom:821.983145pt;}
.y1de{bottom:823.177200pt;}
.y1c3{bottom:823.597200pt;}
.y2b0{bottom:826.795333pt;}
.y24b{bottom:828.077600pt;}
.y2ec{bottom:829.327200pt;}
.y25c{bottom:829.361067pt;}
.y16a{bottom:829.544267pt;}
.y273{bottom:829.634267pt;}
.y104{bottom:834.355867pt;}
.y2{bottom:834.677467pt;}
.y10d{bottom:834.758267pt;}
.yfc{bottom:835.126800pt;}
.y115{bottom:836.035067pt;}
.y2af{bottom:840.775333pt;}
.y1c2{bottom:842.477200pt;}
.y2eb{bottom:843.307200pt;}
.y272{bottom:843.614267pt;}
.y1dd{bottom:845.790533pt;}
.y24c{bottom:846.754933pt;}
.y4c{bottom:847.520933pt;}
.y16b{bottom:851.101600pt;}
.y8f{bottom:852.290115pt;}
.y10a{bottom:852.819867pt;}
.yfd{bottom:853.537467pt;}
.y10e{bottom:854.608933pt;}
.y2ea{bottom:857.371200pt;}
.y271{bottom:857.594267pt;}
.y2ae{bottom:857.707333pt;}
.y11b{bottom:857.709733pt;}
.y1c1{bottom:861.357200pt;}
.y25d{bottom:861.734400pt;}
.y8d{bottom:864.150933pt;}
.y24d{bottom:865.442933pt;}
.y1{bottom:866.645467pt;}
.y8e{bottom:867.476933pt;}
.y8c{bottom:867.483848pt;}
.y1dc{bottom:868.403867pt;}
.y109{bottom:870.419867pt;}
.y2e9{bottom:871.351200pt;}
.y270{bottom:871.574267pt;}
.y2ad{bottom:871.771333pt;}
.yfe{bottom:871.948800pt;}
.y1c6{bottom:872.635067pt;}
.y16c{bottom:872.658933pt;}
.y10f{bottom:874.701733pt;}
.y11a{bottom:876.376400pt;}
.y1cf{bottom:878.795467pt;}
.y8a{bottom:879.344667pt;}
.y1c0{bottom:880.237200pt;}
.y253{bottom:881.271333pt;}
.y172{bottom:881.806667pt;}
.y8b{bottom:882.670667pt;}
.y4b{bottom:882.677448pt;}
.y89{bottom:882.684363pt;}
.y24e{bottom:884.120267pt;}
.y2e8{bottom:885.331200pt;}
.y25b{bottom:885.587200pt;}
.y2ac{bottom:885.751333pt;}
.y26f{bottom:888.806267pt;}
.y108{bottom:889.769200pt;}
.yff{bottom:890.359467pt;}
.y1db{bottom:891.017200pt;}
.y25e{bottom:894.107733pt;}
.y16d{bottom:894.205600pt;}
.y49{bottom:894.538400pt;}
.y119{bottom:894.648400pt;}
.y110{bottom:894.744400pt;}
.y4a{bottom:897.864267pt;}
.y88{bottom:897.871181pt;}
.y48{bottom:897.891926pt;}
.y1bf{bottom:899.117200pt;}
.y2ab{bottom:899.731333pt;}
.y2e7{bottom:902.635200pt;}
.y26e{bottom:902.786267pt;}
.y24f{bottom:902.797600pt;}
.y100{bottom:908.770133pt;}
.y107{bottom:909.118533pt;}
.y86{bottom:909.732133pt;}
.y87{bottom:913.058000pt;}
.y85{bottom:913.064915pt;}
.y47{bottom:913.078744pt;}
.y1da{bottom:913.630533pt;}
.y118{bottom:913.997733pt;}
.y111{bottom:914.317733pt;}
.y16e{bottom:915.762933pt;}
.y2e6{bottom:916.699200pt;}
.y2aa{bottom:916.735333pt;}
.y26d{bottom:916.766267pt;}
.y1be{bottom:917.997200pt;}
.y250{bottom:921.474933pt;}
.y83{bottom:924.925733pt;}
.y25f{bottom:926.481067pt;}
.y101{bottom:927.180800pt;}
.y106{bottom:927.593200pt;}
.y84{bottom:928.251733pt;}
.y82{bottom:928.258515pt;}
.y46{bottom:928.265563pt;}
.y2e5{bottom:930.679200pt;}
.y2a9{bottom:930.715333pt;}
.y26c{bottom:930.746267pt;}
.y114{bottom:931.661733pt;}
.y112{bottom:934.168400pt;}
.y1d9{bottom:936.243867pt;}
.y1bd{bottom:936.877200pt;}
.y16f{bottom:937.320267pt;}
.y251{bottom:940.152267pt;}
.y81{bottom:943.445333pt;}
.y45{bottom:943.452381pt;}
.y2e4{bottom:944.659200pt;}
.y2a8{bottom:944.695333pt;}
.y102{bottom:945.591467pt;}
.y105{bottom:946.067867pt;}
.y43{bottom:954.493333pt;}
.y113{bottom:954.509733pt;}
.y1bc{bottom:955.757200pt;}
.y44{bottom:958.639200pt;}
.y2a7{bottom:958.675333pt;}
.y252{bottom:958.840267pt;}
.y260{bottom:958.854400pt;}
.y1d8{bottom:958.857200pt;}
.y170{bottom:958.877600pt;}
.y7f{bottom:958.888110pt;}
.y80{bottom:964.610800pt;}
.y42{bottom:967.106667pt;}
.y41{bottom:979.720000pt;}
.y40{bottom:992.333333pt;}
.y148{bottom:998.021733pt;}
.y1a3{bottom:998.021867pt;}
.yc9{bottom:998.036639pt;}
.h9{height:22.780962pt;}
.hf{height:22.788832pt;}
.hb{height:25.313024pt;}
.he{height:30.264747pt;}
.h14{height:30.378287pt;}
.h12{height:30.378667pt;}
.h13{height:30.381333pt;}
.h16{height:30.389867pt;}
.h17{height:30.405867pt;}
.h15{height:30.423467pt;}
.h5{height:34.176000pt;}
.h8{height:34.185600pt;}
.h6{height:34.224000pt;}
.h18{height:34.368000pt;}
.h11{height:37.968188pt;}
.ha{height:37.973713pt;}
.hd{height:38.027047pt;}
.h10{height:38.123274pt;}
.hc{height:38.187049pt;}
.h4{height:45.055625pt;}
.h7{height:47.472000pt;}
.h3{height:67.584000pt;}
.h2{height:68.352000pt;}
.h0{height:1066.658667pt;}
.h1{height:1066.666667pt;}
.w0{width:799.974667pt;}
.w1{width:800.000000pt;}
.x0{left:0.000000pt;}
.x1{left:66.670800pt;}
.x9b{left:72.415733pt;}
.x36{left:76.943600pt;}
.xd{left:86.702400pt;}
.x29{left:90.859867pt;}
.x9c{left:92.371733pt;}
.x75{left:104.163733pt;}
.x2a{left:107.262933pt;}
.x76{left:112.252000pt;}
.x2{left:114.973200pt;}
.x35{left:116.635600pt;}
.x37{left:119.044933pt;}
.x38{left:120.623600pt;}
.x2b{left:123.061467pt;}
.x4c{left:126.835600pt;}
.x95{left:127.833733pt;}
.x4d{left:129.249733pt;}
.x4e{left:130.828400pt;}
.x2c{left:131.981067pt;}
.x39{left:133.775600pt;}
.x3a{left:135.354267pt;}
.x9a{left:137.272400pt;}
.x84{left:138.408933pt;}
.x94{left:139.687733pt;}
.x4f{left:143.980400pt;}
.x50{left:145.559067pt;}
.x60{left:146.721200pt;}
.x6c{left:158.072933pt;}
.x97{left:168.939200pt;}
.x7a{left:170.789200pt;}
.x85{left:173.206267pt;}
.x7b{left:178.356400pt;}
.x3d{left:181.100267pt;}
.x8f{left:184.667600pt;}
.x6d{left:186.723600pt;}
.x83{left:188.447200pt;}
.x5f{left:189.581067pt;}
.x4b{left:191.304933pt;}
.x90{left:194.040933pt;}
.x3b{left:197.814933pt;}
.x9{left:203.716533pt;}
.x4a{left:208.712933pt;}
.x5d{left:211.426800pt;}
.xa{left:217.020400pt;}
.x3e{left:223.748000pt;}
.x49{left:228.136933pt;}
.x2d{left:234.481867pt;}
.x6b{left:237.027600pt;}
.x96{left:245.131200pt;}
.x2e{left:246.727467pt;}
.x7e{left:249.222000pt;}
.x98{left:250.129067pt;}
.x6f{left:253.303733pt;}
.x8c{left:261.014133pt;}
.x27{left:267.817200pt;}
.x8d{left:270.462933pt;}
.x66{left:275.159600pt;}
.x28{left:277.719600pt;}
.x79{left:282.633067pt;}
.xe{left:284.976267pt;}
.x64{left:286.265733pt;}
.xf{left:294.122800pt;}
.x25{left:299.338533pt;}
.x26{left:308.862933pt;}
.x10{left:310.752667pt;}
.x7d{left:312.178267pt;}
.x11{left:321.259733pt;}
.x8e{left:322.544800pt;}
.x6e{left:324.054400pt;}
.x68{left:327.321600pt;}
.x7c{left:329.385733pt;}
.x7{left:331.313333pt;}
.x5a{left:334.790533pt;}
.x8{left:336.151067pt;}
.x48{left:337.331600pt;}
.x65{left:341.732400pt;}
.x5b{left:343.710133pt;}
.x61{left:358.677067pt;}
.x3{left:364.497600pt;}
.x4{left:368.806267pt;}
.x3c{left:371.393600pt;}
.x9d{left:375.004667pt;}
.x24{left:383.319600pt;}
.x67{left:393.774933pt;}
.x40{left:405.844400pt;}
.xc{left:411.969016pt;}
.x41{left:414.653067pt;}
.x56{left:415.891067pt;}
.x6a{left:417.410267pt;}
.x70{left:425.475200pt;}
.x86{left:426.861733pt;}
.x81{left:428.401600pt;}
.xb{left:431.995883pt;}
.x71{left:437.741867pt;}
.x1e{left:438.954267pt;}
.x1f{left:442.582533pt;}
.x15{left:448.025067pt;}
.x20{left:452.031467pt;}
.x3f{left:454.303067pt;}
.x55{left:455.579200pt;}
.x42{left:456.733067pt;}
.x43{left:458.311733pt;}
.x57{left:459.571067pt;}
.x80{left:462.790933pt;}
.x69{left:464.652933pt;}
.x72{left:466.392533pt;}
.x88{left:467.499600pt;}
.x44{left:471.463733pt;}
.x45{left:473.042400pt;}
.x58{left:474.355067pt;}
.x22{left:481.133733pt;}
.x23{left:489.751067pt;}
.x31{left:510.765200pt;}
.x21{left:512.881733pt;}
.x32{left:518.777867pt;}
.x18{left:521.272400pt;}
.x54{left:523.419200pt;}
.x1a{left:525.127467pt;}
.x87{left:532.185467pt;}
.x13{left:533.669200pt;}
.x74{left:534.651733pt;}
.x8a{left:537.902267pt;}
.x19{left:539.262800pt;}
.x82{left:540.396667pt;}
.x1b{left:543.193600pt;}
.x62{left:544.251867pt;}
.x63{left:549.014000pt;}
.x14{left:551.508533pt;}
.x77{left:557.706933pt;}
.x59{left:559.823467pt;}
.x47{left:563.149467pt;}
.x78{left:574.261333pt;}
.x53{left:575.205867pt;}
.x51{left:592.773867pt;}
.x33{left:593.763600pt;}
.x34{left:601.700667pt;}
.x73{left:603.735600pt;}
.x99{left:609.862133pt;}
.x89{left:617.716667pt;}
.x7f{left:622.419467pt;}
.x2f{left:628.081733pt;}
.x30{left:632.919467pt;}
.x92{left:642.821867pt;}
.x1c{left:651.061200pt;}
.x93{left:652.421867pt;}
.x52{left:655.899200pt;}
.x16{left:657.259733pt;}
.x1d{left:661.039200pt;}
.x17{left:673.662800pt;}
.x91{left:682.733733pt;}
.x46{left:698.685067pt;}
.x5{left:706.469067pt;}
.x6{left:715.313200pt;}
.x5c{left:720.302267pt;}
.x8b{left:722.947867pt;}
.x5e{left:726.954133pt;}
.x12{left:728.541467pt;}
}




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