
    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_54ce8fc30c750c8300fc8437.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919000;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_c58e5bd3f217e6711eb0707c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b4453142c86511405006f3af.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0443eb26860d70cee4f9258d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7889c056e85a893a27d73475.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.887235;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_0b64625a0b931b0bd0ffb754.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.918000;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_ba29d606fa7de58549cf2e02.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_3f162c2726474ed3472c1f11.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ca02dda0d5a5c42080d5bd08.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.431000;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_97ca79a4087ef2a7b3905be9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_95c1e0d00f929210b59fed48.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.844000;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_ed056c90b06ee82f9d9e3730.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ccce1500a90fb135040d081b.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.022000;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_fe3bdfe1ae949af7fab6f5ed.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.917000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_94ec4213e4cce12a60e03987.woff2')format("woff");}.fff{font-family:fff;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_ee514427b215823354fe6fe3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.636000;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_7a7a239655e6aaff48e710f1.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.704000;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_77882bfe4594bafe4a1115a4.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.390000;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_839af5d267a3e31460964277.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.708000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_16ef7c6c417142fadb3936d1.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.860000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_9de340f8cfd5848511d69997.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_951c7ab3a32712e48cd9b04d.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.456000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_458615da75cdefacb3677376.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.021000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_9b4748c116f1ff9d26d38de0.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_5b8d7670da8eae9d47aa881f.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.635000;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;}
.ff1a{font-family:sans-serif;visibility:hidden;}
.ff1b{font-family:sans-serif;visibility:hidden;}
.ff1c{font-family:sans-serif;visibility:hidden;}
.ff1d{font-family:sans-serif;visibility:hidden;}
.ff1e{font-family:sans-serif;visibility:hidden;}
.ff1f{font-family:sans-serif;visibility:hidden;}
.ff20{font-family:sans-serif;visibility:hidden;}
.ff21{font-family:sans-serif;visibility:hidden;}
.m1{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);}
.v2{vertical-align:-21.690000px;}
.v3{vertical-align:-16.878000px;}
.v4{vertical-align:-8.964000px;}
.v7{vertical-align:-5.982000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:5.808000px;}
.v5{vertical-align:15.558000px;}
.vc{vertical-align:16.932000px;}
.v1{vertical-align:21.690000px;}
.v8{vertical-align:24.678000px;}
.vd{vertical-align:37.741594px;}
.va{vertical-align:39.456000px;}
.v6{vertical-align:56.790000px;}
.v9{vertical-align:71.568000px;}
.ls6{letter-spacing:0.000000px;}
.ls98{letter-spacing:0.000141px;}
.ls15{letter-spacing:0.000300px;}
.ls3b{letter-spacing:0.000615px;}
.ls43{letter-spacing:0.001140px;}
.ls45{letter-spacing:0.001409px;}
.ls86{letter-spacing:0.002172px;}
.ls2b{letter-spacing:0.002245px;}
.ls20{letter-spacing:0.002338px;}
.ls9a{letter-spacing:0.002367px;}
.ls19{letter-spacing:0.003031px;}
.ls10{letter-spacing:0.003269px;}
.ls30{letter-spacing:0.003413px;}
.lsbe{letter-spacing:0.003543px;}
.ls9{letter-spacing:0.004200px;}
.ls68{letter-spacing:0.004528px;}
.lsa2{letter-spacing:0.004738px;}
.lsac{letter-spacing:0.004896px;}
.ls5b{letter-spacing:0.005374px;}
.ls82{letter-spacing:0.006141px;}
.ls7d{letter-spacing:0.221549px;}
.ls57{letter-spacing:1.006868px;}
.ls2f{letter-spacing:1.012868px;}
.ls42{letter-spacing:1.880823px;}
.ls2d{letter-spacing:2.144023px;}
.ls32{letter-spacing:2.414908px;}
.ls35{letter-spacing:2.420908px;}
.lsa3{letter-spacing:2.933096px;}
.ls88{letter-spacing:2.984525px;}
.ls0{letter-spacing:2.985193px;}
.ls4{letter-spacing:2.986767px;}
.ls5{letter-spacing:2.987468px;}
.ls1{letter-spacing:2.988042px;}
.ls1d{letter-spacing:2.988775px;}
.ls2{letter-spacing:2.989870px;}
.ls9c{letter-spacing:2.990352px;}
.ls87{letter-spacing:2.990525px;}
.ls3{letter-spacing:2.992767px;}
.ls55{letter-spacing:2.994775px;}
.ls8a{letter-spacing:3.156921px;}
.ls83{letter-spacing:3.376742px;}
.ls13{letter-spacing:3.422408px;}
.ls28{letter-spacing:3.443602px;}
.ls49{letter-spacing:3.449602px;}
.ls9b{letter-spacing:4.149539px;}
.lsad{letter-spacing:4.270583px;}
.ls50{letter-spacing:4.272579px;}
.ls21{letter-spacing:4.276583px;}
.ls2a{letter-spacing:4.278579px;}
.ls62{letter-spacing:6.086823px;}
.ls7{letter-spacing:6.092823px;}
.lsd{letter-spacing:8.030685px;}
.ls77{letter-spacing:8.297139px;}
.ls78{letter-spacing:8.303139px;}
.ls75{letter-spacing:8.304065px;}
.lsb2{letter-spacing:9.132538px;}
.lsa{letter-spacing:9.956338px;}
.lsb{letter-spacing:9.962338px;}
.ls1f{letter-spacing:9.982525px;}
.ls33{letter-spacing:10.292847px;}
.ls44{letter-spacing:10.298847px;}
.ls99{letter-spacing:11.286613px;}
.ls70{letter-spacing:11.289056px;}
.ls4b{letter-spacing:13.277607px;}
.ls7e{letter-spacing:13.278538px;}
.ls31{letter-spacing:13.280338px;}
.ls4a{letter-spacing:13.281269px;}
.ls51{letter-spacing:13.283607px;}
.ls7c{letter-spacing:13.284538px;}
.ls5c{letter-spacing:13.286338px;}
.ls38{letter-spacing:13.286685px;}
.ls27{letter-spacing:13.288893px;}
.ls7b{letter-spacing:13.505549px;}
.lsa7{letter-spacing:13.602775px;}
.lsa1{letter-spacing:13.608775px;}
.ls79{letter-spacing:13.617269px;}
.ls7a{letter-spacing:13.620538px;}
.ls6f{letter-spacing:14.108915px;}
.ls92{letter-spacing:14.110612px;}
.ls6b{letter-spacing:14.113641px;}
.ls6c{letter-spacing:14.115056px;}
.ls97{letter-spacing:14.115543px;}
.ls66{letter-spacing:14.116612px;}
.ls85{letter-spacing:14.116669px;}
.ls84{letter-spacing:14.119289px;}
.ls24{letter-spacing:15.077607px;}
.ls9f{letter-spacing:15.140245px;}
.lsa0{letter-spacing:15.146245px;}
.ls7f{letter-spacing:15.840538px;}
.lsc{letter-spacing:15.934200px;}
.lsbb{letter-spacing:16.096896px;}
.lsa8{letter-spacing:16.102738px;}
.lsa4{letter-spacing:16.108738px;}
.ls29{letter-spacing:16.599269px;}
.ls48{letter-spacing:16.600618px;}
.ls12{letter-spacing:16.601607px;}
.lsf{letter-spacing:16.602538px;}
.ls1c{letter-spacing:16.605269px;}
.ls4f{letter-spacing:16.606618px;}
.lsb9{letter-spacing:16.606896px;}
.ls11{letter-spacing:16.607306px;}
.ls5e{letter-spacing:16.607607px;}
.lse{letter-spacing:16.608300px;}
.ls8b{letter-spacing:16.736338px;}
.ls6d{letter-spacing:16.934915px;}
.ls6a{letter-spacing:16.935056px;}
.ls69{letter-spacing:16.936528px;}
.ls67{letter-spacing:16.936612px;}
.ls93{letter-spacing:16.936669px;}
.ls6e{letter-spacing:16.941056px;}
.ls71{letter-spacing:16.942528px;}
.ls65{letter-spacing:16.942612px;}
.ls22{letter-spacing:17.028538px;}
.ls91{letter-spacing:17.411549px;}
.ls76{letter-spacing:17.448538px;}
.ls95{letter-spacing:17.464896px;}
.ls96{letter-spacing:17.470896px;}
.ls54{letter-spacing:17.562579px;}
.ls1b{letter-spacing:17.915607px;}
.ls1a{letter-spacing:17.919269px;}
.ls52{letter-spacing:18.482823px;}
.ls2c{letter-spacing:18.488823px;}
.lsb8{letter-spacing:19.288896px;}
.ls23{letter-spacing:19.356579px;}
.ls18{letter-spacing:19.590775px;}
.ls8e{letter-spacing:19.730525px;}
.ls64{letter-spacing:19.758921px;}
.ls4e{letter-spacing:19.924618px;}
.ls9e{letter-spacing:19.924896px;}
.lsb1{letter-spacing:19.925306px;}
.ls17{letter-spacing:19.932538px;}
.ls47{letter-spacing:20.051602px;}
.lsb6{letter-spacing:20.194896px;}
.ls26{letter-spacing:20.214538px;}
.lsb7{letter-spacing:20.356896px;}
.lsba{letter-spacing:20.716896px;}
.ls1e{letter-spacing:20.878583px;}
.ls2e{letter-spacing:20.926583px;}
.ls40{letter-spacing:21.304618px;}
.ls8c{letter-spacing:21.486921px;}
.ls3d{letter-spacing:21.701602px;}
.ls39{letter-spacing:22.010908px;}
.lsb3{letter-spacing:22.144896px;}
.ls90{letter-spacing:22.157549px;}
.ls8f{letter-spacing:22.601549px;}
.lsbd{letter-spacing:22.852896px;}
.lsbc{letter-spacing:22.858896px;}
.ls81{letter-spacing:23.009607px;}
.ls80{letter-spacing:23.231549px;}
.ls4d{letter-spacing:23.267602px;}
.ls41{letter-spacing:23.369602px;}
.ls25{letter-spacing:23.663602px;}
.ls89{letter-spacing:23.918338px;}
.ls9d{letter-spacing:23.960338px;}
.ls94{letter-spacing:24.023549px;}
.ls16{letter-spacing:24.210579px;}
.ls3f{letter-spacing:24.749602px;}
.ls74{letter-spacing:24.857139px;}
.ls73{letter-spacing:25.302065px;}
.ls8d{letter-spacing:25.404921px;}
.ls36{letter-spacing:26.566893px;}
.lsae{letter-spacing:26.870338px;}
.lsb4{letter-spacing:29.758896px;}
.ls8{letter-spacing:29.884893px;}
.ls63{letter-spacing:29.890178px;}
.lsb5{letter-spacing:30.712896px;}
.lsaf{letter-spacing:32.757029px;}
.ls3e{letter-spacing:33.832893px;}
.ls72{letter-spacing:34.924893px;}
.ls14{letter-spacing:35.284893px;}
.ls46{letter-spacing:65.402017px;}
.ls34{letter-spacing:84.102538px;}
.ls3a{letter-spacing:101.670538px;}
.ls5f{letter-spacing:119.550062px;}
.ls59{letter-spacing:119.554200px;}
.ls53{letter-spacing:159.376583px;}
.ls4c{letter-spacing:162.016583px;}
.ls37{letter-spacing:360.124583px;}
.lsa6{letter-spacing:503.239409px;}
.lsaa{letter-spacing:503.245409px;}
.lsa5{letter-spacing:534.787409px;}
.lsa9{letter-spacing:534.793409px;}
.lsb0{letter-spacing:577.768800px;}
.ls61{letter-spacing:589.678583px;}
.ls3c{letter-spacing:601.930583px;}
.lsab{letter-spacing:637.062240px;}
.ls56{letter-spacing:651.172583px;}
.ls5d{letter-spacing:718.342583px;}
.ls60{letter-spacing:755.032583px;}
.ls5a{letter-spacing:796.524775px;}
.ls58{letter-spacing:798.396579px;}
.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;}
}
.ws18b{word-spacing:-577.768800px;}
.ws76{word-spacing:-59.775600px;}
.ws101{word-spacing:-50.809387px;}
.ws81{word-spacing:-48.920351px;}
.ws3{word-spacing:-47.654765px;}
.ws97{word-spacing:-46.505417px;}
.wsa5{word-spacing:-43.157983px;}
.ws82{word-spacing:-40.437062px;}
.ws7e{word-spacing:-38.937826px;}
.wsd3{word-spacing:-36.702310px;}
.wsc5{word-spacing:-33.211407px;}
.ws79{word-spacing:-29.015076px;}
.wsa4{word-spacing:-28.975188px;}
.ws77{word-spacing:-28.955301px;}
.ws161{word-spacing:-26.181779px;}
.ws160{word-spacing:-26.133958px;}
.ws109{word-spacing:-24.759607px;}
.wsc0{word-spacing:-24.747161px;}
.wsfe{word-spacing:-24.699340px;}
.wsd7{word-spacing:-21.917456px;}
.ws10e{word-spacing:-19.123387px;}
.wsd2{word-spacing:-19.118814px;}
.ws10b{word-spacing:-19.118656px;}
.ws104{word-spacing:-19.117387px;}
.ws114{word-spacing:-19.112656px;}
.ws100{word-spacing:-19.110985px;}
.ws157{word-spacing:-19.105464px;}
.ws107{word-spacing:-19.105130px;}
.wsca{word-spacing:-19.104330px;}
.ws10a{word-spacing:-19.099533px;}
.wsc7{word-spacing:-19.097456px;}
.ws108{word-spacing:-19.094102px;}
.ws115{word-spacing:-19.093533px;}
.ws15a{word-spacing:-19.092002px;}
.wsdb{word-spacing:-19.091995px;}
.ws105{word-spacing:-19.088962px;}
.ws158{word-spacing:-19.085813px;}
.ws106{word-spacing:-19.085735px;}
.wsc8{word-spacing:-19.076993px;}
.ws156{word-spacing:-18.543206px;}
.wscd{word-spacing:-18.539901px;}
.ws15d{word-spacing:-18.538989px;}
.ws15c{word-spacing:-18.537272px;}
.wsc3{word-spacing:-18.532949px;}
.wsc4{word-spacing:-18.532266px;}
.wscc{word-spacing:-18.532180px;}
.wsc6{word-spacing:-18.531084px;}
.ws15e{word-spacing:-18.508290px;}
.ws103{word-spacing:-17.360643px;}
.ws12{word-spacing:-16.605662px;}
.wsd6{word-spacing:-16.298814px;}
.ws159{word-spacing:-16.285464px;}
.ws10f{word-spacing:-16.268962px;}
.wsdc{word-spacing:-16.265995px;}
.ws3e{word-spacing:-15.278643px;}
.ws6d{word-spacing:-14.111859px;}
.ws5{word-spacing:-13.117191px;}
.ws98{word-spacing:-3.335478px;}
.ws6b{word-spacing:-3.215927px;}
.ws18c{word-spacing:-3.096376px;}
.wsf2{word-spacing:-2.976825px;}
.ws120{word-spacing:-2.917049px;}
.wsb6{word-spacing:-2.618171px;}
.ws187{word-spacing:-2.498620px;}
.ws196{word-spacing:-2.438844px;}
.wsb5{word-spacing:-2.379069px;}
.ws72{word-spacing:-2.259518px;}
.wsfc{word-spacing:-2.139966px;}
.ws17c{word-spacing:-2.020415px;}
.wsfb{word-spacing:-1.781313px;}
.ws116{word-spacing:-1.661762px;}
.ws148{word-spacing:-1.601986px;}
.ws175{word-spacing:-1.482435px;}
.ws137{word-spacing:-1.422659px;}
.ws135{word-spacing:-1.400108px;}
.ws133{word-spacing:-1.364750px;}
.wsd{word-spacing:-1.303108px;}
.ws195{word-spacing:-1.064006px;}
.ws166{word-spacing:-1.004230px;}
.ws11c{word-spacing:-0.944454px;}
.wsb0{word-spacing:-0.884679px;}
.ws3c{word-spacing:-0.705352px;}
.ws132{word-spacing:-0.680108px;}
.ws14f{word-spacing:-0.674938px;}
.ws150{word-spacing:-0.645576px;}
.ws167{word-spacing:-0.526025px;}
.wsed{word-spacing:-0.466250px;}
.ws176{word-spacing:-0.406474px;}
.ws1a7{word-spacing:-0.346698px;}
.ws1a3{word-spacing:-0.286923px;}
.ws26{word-spacing:-0.227147px;}
.ws4d{word-spacing:-0.167372px;}
.wsab{word-spacing:-0.107596px;}
.ws165{word-spacing:-0.059776px;}
.ws36{word-spacing:-0.047820px;}
.ws2{word-spacing:-0.041843px;}
.ws8b{word-spacing:-0.015471px;}
.wsce{word-spacing:-0.009058px;}
.ws102{word-spacing:-0.004782px;}
.ws21{word-spacing:0.000000px;}
.ws8e{word-spacing:0.011955px;}
.ws8d{word-spacing:0.044456px;}
.ws90{word-spacing:0.071731px;}
.ws152{word-spacing:0.131506px;}
.ws153{word-spacing:0.135892px;}
.ws84{word-spacing:0.251058px;}
.wsac{word-spacing:0.310833px;}
.ws48{word-spacing:0.370609px;}
.ws5a{word-spacing:0.430384px;}
.ws9{word-spacing:0.490160px;}
.ws25{word-spacing:0.549936px;}
.ws78{word-spacing:0.669487px;}
.ws23{word-spacing:0.729262px;}
.wsea{word-spacing:0.789038px;}
.ws51{word-spacing:0.848814px;}
.ws121{word-spacing:0.908589px;}
.wsba{word-spacing:0.968365px;}
.wseb{word-spacing:1.028140px;}
.ws92{word-spacing:1.055969px;}
.ws7{word-spacing:1.147692px;}
.ws32{word-spacing:1.207467px;}
.ws126{word-spacing:1.215892px;}
.ws124{word-spacing:1.221234px;}
.wsb8{word-spacing:1.267243px;}
.ws5e{word-spacing:1.327018px;}
.ws8{word-spacing:1.386794px;}
.ws63{word-spacing:1.446570px;}
.wsb2{word-spacing:1.506345px;}
.ws45{word-spacing:1.566121px;}
.ws46{word-spacing:1.625896px;}
.ws91{word-spacing:1.685672px;}
.wsb{word-spacing:1.745448px;}
.ws174{word-spacing:1.774173px;}
.ws34{word-spacing:1.805223px;}
.ws31{word-spacing:1.864999px;}
.ws3a{word-spacing:1.924774px;}
.wsaa{word-spacing:1.984550px;}
.ws27{word-spacing:2.044326px;}
.wsae{word-spacing:2.163877px;}
.ws58{word-spacing:2.223652px;}
.ws163{word-spacing:2.283428px;}
.ws29{word-spacing:2.343204px;}
.ws59{word-spacing:2.402979px;}
.ws85{word-spacing:2.522530px;}
.ws1e{word-spacing:2.577530px;}
.ws18a{word-spacing:2.582306px;}
.ws2d{word-spacing:2.642082px;}
.ws119{word-spacing:2.672007px;}
.ws197{word-spacing:2.679578px;}
.ws80{word-spacing:2.701857px;}
.ws180{word-spacing:2.761633px;}
.ws1a8{word-spacing:2.773588px;}
.ws1a{word-spacing:2.816633px;}
.ws13b{word-spacing:2.821408px;}
.ws65{word-spacing:2.881184px;}
.wse6{word-spacing:2.940960px;}
.wsc1{word-spacing:2.951553px;}
.ws19f{word-spacing:2.952915px;}
.wsff{word-spacing:2.957553px;}
.ws16b{word-spacing:2.988787px;}
.ws2f{word-spacing:3.000735px;}
.ws3b{word-spacing:3.060511px;}
.ws28{word-spacing:3.120286px;}
.ws8a{word-spacing:3.170310px;}
.ws3d{word-spacing:3.180062px;}
.ws30{word-spacing:3.239838px;}
.ws1{word-spacing:3.299613px;}
.ws18e{word-spacing:3.306402px;}
.wsa0{word-spacing:3.315115px;}
.ws9e{word-spacing:3.315353px;}
.ws18f{word-spacing:3.315892px;}
.ws172{word-spacing:3.322918px;}
.ws134{word-spacing:3.323551px;}
.ws136{word-spacing:3.329551px;}
.ws8c{word-spacing:3.359389px;}
.ws14{word-spacing:3.419164px;}
.wsfd{word-spacing:3.478940px;}
.ws18{word-spacing:3.538716px;}
.ws3f{word-spacing:3.598491px;}
.wsec{word-spacing:3.658267px;}
.wse{word-spacing:3.718042px;}
.wsc{word-spacing:3.777818px;}
.wsbd{word-spacing:3.794412px;}
.ws49{word-spacing:3.801728px;}
.ws6c{word-spacing:3.820866px;}
.ws15{word-spacing:3.837594px;}
.ws24{word-spacing:3.897369px;}
.ws9b{word-spacing:3.939115px;}
.ws9c{word-spacing:3.957145px;}
.ws5b{word-spacing:4.016920px;}
.ws131{word-spacing:4.043551px;}
.ws7d{word-spacing:4.076696px;}
.ws43{word-spacing:4.136472px;}
.ws4b{word-spacing:4.196247px;}
.wsb1{word-spacing:4.256023px;}
.ws40{word-spacing:4.315798px;}
.wsad{word-spacing:4.375574px;}
.ws44{word-spacing:4.435350px;}
.ws53{word-spacing:4.495125px;}
.ws6{word-spacing:4.554901px;}
.ws57{word-spacing:4.614676px;}
.ws0{word-spacing:4.648169px;}
.ws5d{word-spacing:4.674452px;}
.ws9d{word-spacing:4.734228px;}
.ws69{word-spacing:4.794003px;}
.ws1a6{word-spacing:4.805958px;}
.ws52{word-spacing:4.853779px;}
.ws10{word-spacing:4.913554px;}
.wsf3{word-spacing:4.973330px;}
.ws75{word-spacing:5.033106px;}
.wsa7{word-spacing:5.092881px;}
.ws47{word-spacing:5.212432px;}
.ws4{word-spacing:5.245920px;}
.ws54{word-spacing:5.272208px;}
.ws61{word-spacing:5.331984px;}
.ws7a{word-spacing:5.391759px;}
.ws88{word-spacing:5.451535px;}
.ws89{word-spacing:5.463055px;}
.ws86{word-spacing:5.511310px;}
.ws56{word-spacing:5.571086px;}
.ws1ae{word-spacing:5.583041px;}
.ws140{word-spacing:5.630862px;}
.ws142{word-spacing:5.637892px;}
.ws199{word-spacing:5.690637px;}
.ws154{word-spacing:5.750413px;}
.ws39{word-spacing:5.810188px;}
.ws50{word-spacing:5.869964px;}
.ws149{word-spacing:5.908881px;}
.ws14a{word-spacing:5.918035px;}
.wsaf{word-spacing:5.929740px;}
.ws125{word-spacing:5.939551px;}
.ws13a{word-spacing:5.957551px;}
.ws87{word-spacing:5.989515px;}
.ws19{word-spacing:6.049291px;}
.ws1b2{word-spacing:6.061246px;}
.ws5f{word-spacing:6.109066px;}
.ws1a1{word-spacing:6.121021px;}
.ws155{word-spacing:6.228618px;}
.wsbc{word-spacing:6.348169px;}
.wsa{word-spacing:6.407944px;}
.ws7b{word-spacing:6.467720px;}
.ws4f{word-spacing:6.527496px;}
.wse7{word-spacing:6.587271px;}
.ws60{word-spacing:6.647047px;}
.ws19a{word-spacing:6.706822px;}
.ws33{word-spacing:6.766598px;}
.ws2c{word-spacing:6.826374px;}
.ws9a{word-spacing:6.886149px;}
.ws41{word-spacing:6.945925px;}
.ws68{word-spacing:7.005700px;}
.ws1b3{word-spacing:7.017655px;}
.ws4a{word-spacing:7.065476px;}
.wse2{word-spacing:7.125252px;}
.wsf8{word-spacing:7.185027px;}
.ws1a2{word-spacing:7.244803px;}
.wsdf{word-spacing:7.304578px;}
.ws1a0{word-spacing:7.316533px;}
.wsde{word-spacing:7.364354px;}
.ws138{word-spacing:7.421992px;}
.ws42{word-spacing:7.424130px;}
.ws5c{word-spacing:7.483905px;}
.ws11b{word-spacing:7.543681px;}
.ws13c{word-spacing:7.553551px;}
.ws17f{word-spacing:7.603456px;}
.ws2b{word-spacing:7.663232px;}
.ws1aa{word-spacing:7.723008px;}
.ws19d{word-spacing:7.757660px;}
.ws4c{word-spacing:7.842559px;}
.ws164{word-spacing:7.902334px;}
.ws66{word-spacing:7.962110px;}
.ws14e{word-spacing:7.964697px;}
.ws189{word-spacing:8.021886px;}
.wse4{word-spacing:8.043892px;}
.ws123{word-spacing:8.045551px;}
.wse5{word-spacing:8.081661px;}
.ws14b{word-spacing:8.141437px;}
.wsfa{word-spacing:8.153602px;}
.wsa8{word-spacing:8.201212px;}
.ws17{word-spacing:8.260988px;}
.ws1b0{word-spacing:8.272943px;}
.ws2e{word-spacing:8.320764px;}
.ws147{word-spacing:8.363992px;}
.ws151{word-spacing:8.380539px;}
.ws146{word-spacing:8.386881px;}
.ws70{word-spacing:8.459464px;}
.ws64{word-spacing:8.500090px;}
.ws2a{word-spacing:8.559866px;}
.ws16{word-spacing:8.619642px;}
.ws11a{word-spacing:8.679417px;}
.ws4e{word-spacing:8.739193px;}
.wse9{word-spacing:8.858744px;}
.ws38{word-spacing:8.918520px;}
.wsb4{word-spacing:8.978295px;}
.ws35{word-spacing:9.157622px;}
.ws117{word-spacing:9.277173px;}
.ws13f{word-spacing:9.321892px;}
.wsbb{word-spacing:9.336949px;}
.ws22{word-spacing:9.456500px;}
.ws12f{word-spacing:9.576051px;}
.ws12d{word-spacing:9.603892px;}
.ws198{word-spacing:9.635827px;}
.wsa9{word-spacing:9.695602px;}
.ws55{word-spacing:9.815154px;}
.ws1ab{word-spacing:9.878344px;}
.ws1a9{word-spacing:9.886727px;}
.ws1b1{word-spacing:9.887446px;}
.ws18d{word-spacing:9.934705px;}
.ws129{word-spacing:9.981892px;}
.ws127{word-spacing:9.994480px;}
.ws162{word-spacing:10.054256px;}
.wsb9{word-spacing:10.114032px;}
.ws190{word-spacing:10.173807px;}
.ws186{word-spacing:10.233583px;}
.ws141{word-spacing:10.367551px;}
.ws37{word-spacing:10.472685px;}
.wsf{word-spacing:10.592236px;}
.wsf7{word-spacing:10.652012px;}
.ws1ad{word-spacing:10.663967px;}
.ws1a4{word-spacing:10.771563px;}
.ws11e{word-spacing:10.796522px;}
.ws145{word-spacing:10.805992px;}
.ws14d{word-spacing:10.826035px;}
.ws17d{word-spacing:10.831339px;}
.ws6f{word-spacing:10.993956px;}
.ws143{word-spacing:11.010666px;}
.ws173{word-spacing:11.070441px;}
.wse1{word-spacing:11.130217px;}
.wse0{word-spacing:11.189992px;}
.wsef{word-spacing:11.249768px;}
.wsda{word-spacing:11.292112px;}
.wsbe{word-spacing:11.295197px;}
.wsee{word-spacing:11.309544px;}
.ws1af{word-spacing:11.429095px;}
.ws13d{word-spacing:11.488870px;}
.ws19e{word-spacing:11.594360px;}
.ws118{word-spacing:11.647013px;}
.ws67{word-spacing:11.727973px;}
.ws183{word-spacing:11.787748px;}
.ws16e{word-spacing:12.313805px;}
.wsb3{word-spacing:12.385504px;}
.ws73{word-spacing:12.445280px;}
.ws74{word-spacing:12.505056px;}
.ws185{word-spacing:12.624607px;}
.ws188{word-spacing:12.684382px;}
.ws194{word-spacing:12.716590px;}
.wse8{word-spacing:12.744158px;}
.wse3{word-spacing:12.773551px;}
.ws1ac{word-spacing:12.815889px;}
.ws130{word-spacing:12.923485px;}
.ws1a5{word-spacing:12.935440px;}
.ws184{word-spacing:12.983260px;}
.ws11f{word-spacing:13.102812px;}
.ws191{word-spacing:13.162587px;}
.ws6a{word-spacing:13.222363px;}
.ws139{word-spacing:13.278622px;}
.wsf0{word-spacing:13.282138px;}
.ws12b{word-spacing:13.282284px;}
.ws16d{word-spacing:13.365858px;}
.ws177{word-spacing:13.557067px;}
.ws192{word-spacing:13.876757px;}
.ws62{word-spacing:13.879894px;}
.ws13e{word-spacing:14.045551px;}
.ws193{word-spacing:14.118997px;}
.ws12c{word-spacing:14.321551px;}
.ws12e{word-spacing:14.327551px;}
.wsb7{word-spacing:14.656977px;}
.ws128{word-spacing:14.705551px;}
.ws13{word-spacing:15.278643px;}
.ws14c{word-spacing:15.620035px;}
.ws144{word-spacing:15.743551px;}
.ws11d{word-spacing:16.003013px;}
.ws19c{word-spacing:16.060838px;}
.ws179{word-spacing:16.067635px;}
.wsf5{word-spacing:16.489152px;}
.ws20{word-spacing:16.634077px;}
.ws1d{word-spacing:16.657050px;}
.ws1f{word-spacing:16.660135px;}
.wsd5{word-spacing:16.880672px;}
.wsd9{word-spacing:16.881767px;}
.ws10c{word-spacing:16.883242px;}
.wsc9{word-spacing:16.883755px;}
.wsbf{word-spacing:16.888092px;}
.ws10d{word-spacing:16.889242px;}
.ws111{word-spacing:16.889611px;}
.ws1c{word-spacing:16.897389px;}
.ws1b{word-spacing:16.903728px;}
.ws12a{word-spacing:17.189992px;}
.wsa1{word-spacing:18.646206px;}
.ws93{word-spacing:18.652206px;}
.ws95{word-spacing:19.543323px;}
.ws19b{word-spacing:19.657040px;}
.wsf4{word-spacing:19.813152px;}
.ws83{word-spacing:19.967166px;}
.ws122{word-spacing:20.033166px;}
.wsf1{word-spacing:20.659152px;}
.wsf9{word-spacing:21.214206px;}
.ws17a{word-spacing:21.214300px;}
.wsa3{word-spacing:21.964206px;}
.ws9f{word-spacing:21.970206px;}
.ws8f{word-spacing:22.018206px;}
.wsd0{word-spacing:22.551579px;}
.ws7f{word-spacing:26.080206px;}
.ws7c{word-spacing:28.432206px;}
.ws16f{word-spacing:30.294350px;}
.ws6e{word-spacing:35.860668px;}
.ws11{word-spacing:36.140329px;}
.ws171{word-spacing:39.686316px;}
.ws182{word-spacing:41.928027px;}
.ws178{word-spacing:53.753208px;}
.wsa6{word-spacing:59.775600px;}
.ws16c{word-spacing:63.099282px;}
.ws170{word-spacing:65.126875px;}
.ws17e{word-spacing:81.091346px;}
.ws17b{word-spacing:81.133189px;}
.ws169{word-spacing:86.292273px;}
.wsd8{word-spacing:87.504112px;}
.wsc2{word-spacing:87.513197px;}
.ws16a{word-spacing:106.090001px;}
.ws71{word-spacing:107.782850px;}
.ws168{word-spacing:113.069971px;}
.wsa2{word-spacing:122.495166px;}
.ws99{word-spacing:122.498547px;}
.ws96{word-spacing:124.918206px;}
.ws181{word-spacing:136.207265px;}
.wscf{word-spacing:163.722112px;}
.wscb{word-spacing:163.725197px;}
.wsd1{word-spacing:239.934112px;}
.wsdd{word-spacing:239.943197px;}
.wsd4{word-spacing:316.152112px;}
.ws110{word-spacing:316.155197px;}
.ws113{word-spacing:392.364112px;}
.ws15b{word-spacing:392.370112px;}
.ws112{word-spacing:392.373197px;}
.ws15f{word-spacing:468.582112px;}
.wsf6{word-spacing:675.894664px;}
.ws94{word-spacing:908.962206px;}
._4e{margin-left:-577.768800px;}
._50{margin-left:-31.233968px;}
._52{margin-left:-30.186678px;}
._1b{margin-left:-28.950513px;}
._5{margin-left:-26.999530px;}
._4{margin-left:-25.593592px;}
._1e{margin-left:-23.917404px;}
._51{margin-left:-22.908383px;}
._2{margin-left:-6.972253px;}
._b{margin-left:-5.140702px;}
._3{margin-left:-3.548279px;}
._1{margin-left:-2.324084px;}
._6{margin-left:-1.281589px;}
._11{width:1.386797px;}
._0{width:2.410162px;}
._19{width:3.524398px;}
._2f{width:5.172648px;}
._16{width:7.081246px;}
._30{width:8.319666px;}
._4f{width:9.711894px;}
._32{width:13.273591px;}
._22{width:14.678511px;}
._38{width:15.840534px;}
._15{width:16.957148px;}
._1a{width:18.018772px;}
._a{width:19.479682px;}
._f{width:21.473795px;}
._e{width:22.528237px;}
._37{width:23.723749px;}
._8{width:24.727961px;}
._7{width:25.756120px;}
._9{width:26.951632px;}
._d{width:28.326470px;}
._14{width:30.306229px;}
._1c{width:31.664341px;}
._21{width:32.972214px;}
._18{width:34.153383px;}
._17{width:35.607135px;}
._31{width:36.862423px;}
._20{width:38.555262px;}
._13{width:39.631223px;}
._1d{width:41.591859px;}
._10{width:43.091044px;}
._39{width:44.245918px;}
._34{width:45.988967px;}
._c{width:48.391934px;}
._36{width:50.350193px;}
._1f{width:52.516466px;}
._2e{width:54.204511px;}
._3a{width:55.459813px;}
._2b{width:56.906514px;}
._3c{width:70.726667px;}
._49{width:81.133189px;}
._4b{width:86.168617px;}
._42{width:87.769179px;}
._40{width:101.427493px;}
._3f{width:102.527366px;}
._3d{width:103.914164px;}
._45{width:118.498810px;}
._33{width:119.533122px;}
._2c{width:121.894709px;}
._29{width:137.369459px;}
._43{width:138.440637px;}
._4a{width:143.018690px;}
._3e{width:148.626425px;}
._41{width:155.369129px;}
._28{width:172.919290px;}
._26{width:176.410193px;}
._35{width:177.844811px;}
._46{width:180.384311px;}
._25{width:189.943423px;}
._27{width:223.991690px;}
._3b{width:232.540894px;}
._24{width:236.616329px;}
._2d{width:255.553286px;}
._4d{width:299.044786px;}
._2a{width:338.665489px;}
._23{width:364.082125px;}
._4c{width:527.721394px;}
._44{width:551.054138px;}
._48{width:558.657281px;}
._47{width:604.502932px;}
._12{width:1204.017496px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:29.887800px;}
.fs6{font-size:35.700000px;}
.fs3{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs1{font-size:59.775600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y233{bottom:8.691834px;}
.y271{bottom:17.616834px;}
.y232{bottom:20.341748px;}
.y231{bottom:29.777147px;}
.y243{bottom:48.195000px;}
.y234{bottom:52.712723px;}
.y23d{bottom:56.850822px;}
.y240{bottom:70.833274px;}
.y23e{bottom:74.192984px;}
.y242{bottom:80.818372px;}
.y241{bottom:83.220471px;}
.y235{bottom:90.497603px;}
.y23f{bottom:90.733294px;}
.y272{bottom:97.344669px;}
.y278{bottom:114.284765px;}
.y236{bottom:128.282483px;}
.y279{bottom:131.719692px;}
.y273{bottom:141.976614px;}
.y27a{bottom:144.940730px;}
.y23c{bottom:150.124915px;}
.y237{bottom:166.067363px;}
.y54{bottom:169.009500px;}
.y23{bottom:169.011000px;}
.y274{bottom:186.608560px;}
.y238{bottom:203.852243px;}
.yd4{bottom:210.147000px;}
.yd3{bottom:213.841500px;}
.y3a{bottom:215.073000px;}
.y9d{bottom:218.268000px;}
.y9b{bottom:218.848500px;}
.y53{bottom:219.037500px;}
.y12f{bottom:219.369000px;}
.y1fb{bottom:219.486000px;}
.y249{bottom:221.274000px;}
.y22{bottom:221.686500px;}
.y18c{bottom:223.221000px;}
.y6b{bottom:223.521000px;}
.y275{bottom:231.240506px;}
.y28d{bottom:231.733500px;}
.yfe{bottom:231.774000px;}
.y174{bottom:231.775500px;}
.y39{bottom:233.005500px;}
.y9e{bottom:233.128500px;}
.yd2{bottom:235.288500px;}
.y21{bottom:235.882500px;}
.y9a{bottom:236.823000px;}
.y52{bottom:236.970000px;}
.y12e{bottom:237.303000px;}
.y1fa{bottom:237.418500px;}
.yd1{bottom:238.983000px;}
.y248{bottom:239.206500px;}
.y18b{bottom:241.153500px;}
.y6a{bottom:241.453500px;}
.y239{bottom:241.637123px;}
.y22f{bottom:247.569000px;}
.y26f{bottom:249.373500px;}
.y173{bottom:249.628500px;}
.y28c{bottom:249.667500px;}
.yfd{bottom:249.708000px;}
.y20{bottom:250.080000px;}
.y38{bottom:250.938000px;}
.y9c{bottom:251.020500px;}
.y51{bottom:254.902500px;}
.y291{bottom:254.961000px;}
.y12d{bottom:255.235500px;}
.y1f9{bottom:255.351000px;}
.y99{bottom:256.914000px;}
.y247{bottom:257.139000px;}
.y18a{bottom:259.087500px;}
.y69{bottom:259.386000px;}
.y22e{bottom:259.524000px;}
.y2c6{bottom:260.646000px;}
.y2a4{bottom:261.184500px;}
.y1d4{bottom:261.256500px;}
.y15e{bottom:265.623000px;}
.yd0{bottom:267.144000px;}
.y26e{bottom:267.306000px;}
.y172{bottom:267.561000px;}
.y28b{bottom:267.600000px;}
.yfc{bottom:267.640500px;}
.y1f{bottom:268.495500px;}
.y37{bottom:268.870500px;}
.y22d{bottom:271.480500px;}
.y50{bottom:272.835000px;}
.y12c{bottom:273.168000px;}
.y98{bottom:274.846500px;}
.y246{bottom:275.071500px;}
.y276{bottom:275.872451px;}
.y189{bottom:277.020000px;}
.y68{bottom:277.318500px;}
.y2a3{bottom:279.117000px;}
.y1d3{bottom:279.189000px;}
.y23a{bottom:279.422003px;}
.y15d{bottom:279.819000px;}
.y290{bottom:283.429500px;}
.y22c{bottom:283.435500px;}
.y26d{bottom:285.240000px;}
.y171{bottom:285.495000px;}
.yfb{bottom:285.573000px;}
.y36{bottom:286.803000px;}
.y97{bottom:288.889500px;}
.ycd{bottom:289.149000px;}
.y2c5{bottom:289.518000px;}
.y4f{bottom:290.767500px;}
.y12b{bottom:291.100500px;}
.y1f8{bottom:292.495500px;}
.y96{bottom:292.780500px;}
.y245{bottom:293.004000px;}
.y15c{bottom:294.016500px;}
.y188{bottom:294.952500px;}
.y67{bottom:295.251000px;}
.y22b{bottom:295.390500px;}
.y28a{bottom:297.487500px;}
.y26c{bottom:303.172500px;}
.y170{bottom:303.427500px;}
.yfa{bottom:303.505500px;}
.ycf{bottom:304.011000px;}
.y1f7{bottom:304.450500px;}
.y22a{bottom:307.345500px;}
.y2c4{bottom:307.450500px;}
.yce{bottom:307.705500px;}
.y15b{bottom:308.212500px;}
.y2a2{bottom:308.526000px;}
.y1d2{bottom:308.670000px;}
.y4e{bottom:308.701500px;}
.y95{bottom:308.995500px;}
.y12a{bottom:309.033000px;}
.y1b9{bottom:309.699000px;}
.y94{bottom:312.885000px;}
.y1e{bottom:312.985500px;}
.y66{bottom:313.183500px;}
.y289{bottom:315.420000px;}
.y1f6{bottom:316.405500px;}
.y23b{bottom:317.206883px;}
.y229{bottom:319.300500px;}
.y277{bottom:320.504397px;}
.y26b{bottom:321.105000px;}
.yf9{bottom:321.438000px;}
.ycc{bottom:321.901500px;}
.y15a{bottom:322.410000px;}
.y1b8{bottom:323.895000px;}
.y35{bottom:324.022500px;}
.y2c3{bottom:325.383000px;}
.ycb{bottom:325.638000px;}
.y2a1{bottom:326.458500px;}
.y4d{bottom:326.634000px;}
.y129{bottom:326.965500px;}
.y16f{bottom:326.997000px;}
.y1f5{bottom:328.360500px;}
.y244{bottom:330.223500px;}
.y187{bottom:330.817500px;}
.y93{bottom:330.819000px;}
.y1d{bottom:330.918000px;}
.y65{bottom:331.117500px;}
.y228{bottom:331.255500px;}
.y288{bottom:333.352500px;}
.y159{bottom:336.606000px;}
.y1b7{bottom:338.092500px;}
.y1d1{bottom:338.151000px;}
.y26a{bottom:339.037500px;}
.yf8{bottom:339.370500px;}
.y1f4{bottom:340.315500px;}
.yca{bottom:343.570500px;}
.y2a0{bottom:344.391000px;}
.y4c{bottom:344.566500px;}
.y128{bottom:344.899500px;}
.y16e{bottom:344.929500px;}
.y186{bottom:348.750000px;}
.y92{bottom:348.751500px;}
.y1c{bottom:348.850500px;}
.y64{bottom:349.050000px;}
.y158{bottom:350.803500px;}
.y287{bottom:351.286500px;}
.y227{bottom:352.177500px;}
.y1f3{bottom:352.272000px;}
.y1b6{bottom:352.288500px;}
.y133{bottom:353.071500px;}
.y2c2{bottom:354.255000px;}
.y230{bottom:355.105500px;}
.y1d0{bottom:356.083500px;}
.y269{bottom:356.970000px;}
.yf7{bottom:357.304500px;}
.y4b{bottom:362.499000px;}
.y16d{bottom:362.862000px;}
.y226{bottom:364.132500px;}
.y1f2{bottom:364.227000px;}
.y157{bottom:364.999500px;}
.y1b5{bottom:366.486000px;}
.y91{bottom:366.684000px;}
.y1b{bottom:366.783000px;}
.y63{bottom:366.982500px;}
.yc7{bottom:367.843500px;}
.y286{bottom:369.219000px;}
.y2c1{bottom:372.187500px;}
.y29f{bottom:373.800000px;}
.y268{bottom:374.902500px;}
.yf6{bottom:375.237000px;}
.y225{bottom:376.087500px;}
.y1f1{bottom:376.182000px;}
.y156{bottom:379.197000px;}
.y4a{bottom:380.431500px;}
.y1b4{bottom:380.682000px;}
.y16c{bottom:380.794500px;}
.yc9{bottom:382.123500px;}
.y127{bottom:383.985000px;}
.y90{bottom:384.616500px;}
.y1a{bottom:384.717000px;}
.y62{bottom:384.915000px;}
.y1cf{bottom:385.158000px;}
.y132{bottom:385.348500px;}
.yc8{bottom:385.818000px;}
.y224{bottom:388.042500px;}
.y131{bottom:389.043000px;}
.y29e{bottom:391.734000px;}
.y267{bottom:392.836500px;}
.yf5{bottom:393.169500px;}
.y155{bottom:393.393000px;}
.y1b3{bottom:394.879500px;}
.y1f0{bottom:397.102500px;}
.y126{bottom:398.182500px;}
.y49{bottom:398.365500px;}
.y16b{bottom:398.728500px;}
.y285{bottom:399.106500px;}
.y223{bottom:399.997500px;}
.yc6{bottom:400.015500px;}
.y2c0{bottom:401.058000px;}
.y8f{bottom:402.549000px;}
.y19{bottom:402.649500px;}
.y61{bottom:402.847500px;}
.y1ce{bottom:403.090500px;}
.y154{bottom:407.590500px;}
.y1ef{bottom:409.059000px;}
.y1b2{bottom:409.075500px;}
.y266{bottom:410.769000px;}
.yf4{bottom:411.102000px;}
.y222{bottom:411.952500px;}
.y125{bottom:412.378500px;}
.y48{bottom:416.298000px;}
.y16a{bottom:416.661000px;}
.yc5{bottom:416.968500px;}
.y284{bottom:417.039000px;}
.y2bf{bottom:418.992000px;}
.y8e{bottom:420.481500px;}
.y60{bottom:420.780000px;}
.y1ee{bottom:421.014000px;}
.y1cd{bottom:421.023000px;}
.y29d{bottom:421.143000px;}
.y153{bottom:421.786500px;}
.y1b1{bottom:423.273000px;}
.y221{bottom:423.907500px;}
.y124{bottom:426.576000px;}
.y265{bottom:428.701500px;}
.yf3{bottom:429.034500px;}
.y1ed{bottom:432.969000px;}
.y18{bottom:434.031000px;}
.y47{bottom:434.230500px;}
.y169{bottom:434.593500px;}
.y283{bottom:434.971500px;}
.y220{bottom:435.864000px;}
.y152{bottom:435.984000px;}
.y2be{bottom:436.924500px;}
.y1b0{bottom:437.469000px;}
.y185{bottom:438.414000px;}
.y8d{bottom:438.415500px;}
.y5f{bottom:438.714000px;}
.y29c{bottom:439.075500px;}
.y123{bottom:440.772000px;}
.yc2{bottom:441.241500px;}
.y1ec{bottom:444.924000px;}
.y264{bottom:446.634000px;}
.yf2{bottom:446.968500px;}
.y151{bottom:450.180000px;}
.y1af{bottom:451.666500px;}
.y46{bottom:452.163000px;}
.y168{bottom:452.526000px;}
.y122{bottom:454.969500px;}
.yc4{bottom:455.521500px;}
.y8c{bottom:456.348000px;}
.y5e{bottom:456.646500px;}
.y21f{bottom:456.784500px;}
.y1eb{bottom:456.879000px;}
.yc3{bottom:459.216000px;}
.y1cc{bottom:464.326500px;}
.y150{bottom:464.377500px;}
.y282{bottom:464.860500px;}
.yf1{bottom:464.901000px;}
.y28e{bottom:465.612000px;}
.y2bd{bottom:465.795000px;}
.y1ae{bottom:465.862500px;}
.y29b{bottom:468.484500px;}
.y21e{bottom:468.739500px;}
.y1ea{bottom:468.834000px;}
.y121{bottom:469.167000px;}
.y45{bottom:470.095500px;}
.y167{bottom:470.458500px;}
.yc1{bottom:473.412000px;}
.y8b{bottom:474.280500px;}
.y5d{bottom:474.579000px;}
.y1cb{bottom:478.524000px;}
.y14f{bottom:478.573500px;}
.y1ad{bottom:480.060000px;}
.y21d{bottom:480.694500px;}
.y1e9{bottom:480.789000px;}
.y281{bottom:482.793000px;}
.yf0{bottom:482.833500px;}
.y120{bottom:483.363000px;}
.y2bc{bottom:483.727500px;}
.y263{bottom:483.778500px;}
.y29a{bottom:486.417000px;}
.y44{bottom:488.028000px;}
.y166{bottom:488.392500px;}
.yc0{bottom:490.365000px;}
.y8a{bottom:492.213000px;}
.y5c{bottom:492.511500px;}
.y21c{bottom:492.651000px;}
.y1ca{bottom:492.720000px;}
.y14e{bottom:492.771000px;}
.y1ac{bottom:494.256000px;}
.y262{bottom:495.733500px;}
.y11f{bottom:497.560500px;}
.y280{bottom:500.725500px;}
.yef{bottom:500.766000px;}
.y2bb{bottom:501.661500px;}
.y1e8{bottom:501.711000px;}
.y299{bottom:504.349500px;}
.y21b{bottom:504.606000px;}
.y17{bottom:504.783000px;}
.y43{bottom:505.962000px;}
.y165{bottom:506.325000px;}
.y1c9{bottom:506.917500px;}
.y14d{bottom:506.967000px;}
.y261{bottom:507.688500px;}
.y1ab{bottom:508.453500px;}
.y89{bottom:510.145500px;}
.y5b{bottom:510.444000px;}
.y11e{bottom:511.756500px;}
.y1e7{bottom:513.666000px;}
.ybf{bottom:513.889500px;}
.y21a{bottom:516.561000px;}
.ybe{bottom:517.584000px;}
.y27f{bottom:518.658000px;}
.yee{bottom:518.698500px;}
.y260{bottom:519.643500px;}
.y14c{bottom:521.164500px;}
.y1aa{bottom:522.649500px;}
.y16{bottom:522.715500px;}
.y42{bottom:523.894500px;}
.y1e6{bottom:525.621000px;}
.y11d{bottom:525.954000px;}
.y88{bottom:528.078000px;}
.y130{bottom:528.376500px;}
.y5a{bottom:528.378000px;}
.y219{bottom:528.516000px;}
.y1c8{bottom:529.930500px;}
.y2ba{bottom:530.532000px;}
.y25f{bottom:531.598500px;}
.y298{bottom:535.014000px;}
.y27e{bottom:536.590500px;}
.y1a9{bottom:536.847000px;}
.y1e5{bottom:537.576000px;}
.y11c{bottom:540.150000px;}
.y218{bottom:540.471000px;}
.y41{bottom:541.827000px;}
.y14b{bottom:542.152500px;}
.y164{bottom:543.072000px;}
.y25e{bottom:543.553500px;}
.ybd{bottom:545.745000px;}
.y184{bottom:546.010500px;}
.y87{bottom:546.012000px;}
.y59{bottom:546.310500px;}
.yed{bottom:547.426500px;}
.y2b9{bottom:548.464500px;}
.y1e4{bottom:549.531000px;}
.y15{bottom:550.942500px;}
.y1a8{bottom:551.043000px;}
.y1c7{bottom:552.346500px;}
.y27d{bottom:554.524500px;}
.y25d{bottom:555.508500px;}
.y217{bottom:556.012500px;}
.y163{bottom:557.268000px;}
.y40{bottom:559.759500px;}
.y11b{bottom:561.138000px;}
.y1e3{bottom:561.487500px;}
.ybc{bottom:563.677500px;}
.y86{bottom:563.944500px;}
.y58{bottom:564.243000px;}
.y1a7{bottom:565.240500px;}
.yec{bottom:565.359000px;}
.y25c{bottom:567.465000px;}
.y14{bottom:568.875000px;}
.y162{bottom:571.465500px;}
.y1e2{bottom:573.442500px;}
.y2b8{bottom:577.336500px;}
.y297{bottom:579.129000px;}
.y1a6{bottom:579.436500px;}
.y85{bottom:581.877000px;}
.y57{bottom:582.175500px;}
.y216{bottom:584.182500px;}
.y1e1{bottom:585.397500px;}
.y161{bottom:585.661500px;}
.y27c{bottom:585.906000px;}
.y13{bottom:586.809000px;}
.y1c6{bottom:587.316000px;}
.y25b{bottom:588.385500px;}
.yb9{bottom:589.774500px;}
.yb8{bottom:590.472000px;}
.y3f{bottom:591.142500px;}
.y1a5{bottom:593.634000px;}
.yeb{bottom:594.667500px;}
.y2b7{bottom:595.269000px;}
.y11a{bottom:596.538000px;}
.y296{bottom:597.061500px;}
.y84{bottom:599.809500px;}
.y160{bottom:599.859000px;}
.y56{bottom:600.108000px;}
.y25a{bottom:600.340500px;}
.y1e0{bottom:600.939000px;}
.ybb{bottom:604.635000px;}
.y12{bottom:604.741500px;}
.y1a4{bottom:607.830000px;}
.yba{bottom:608.329500px;}
.y259{bottom:612.295500px;}
.yea{bottom:612.600000px;}
.y2b6{bottom:613.201500px;}
.y119{bottom:614.472000px;}
.y1c5{bottom:614.779500px;}
.y295{bottom:614.994000px;}
.y83{bottom:617.742000px;}
.y55{bottom:618.040500px;}
.y15f{bottom:620.845500px;}
.y1a3{bottom:622.027500px;}
.yb7{bottom:622.527000px;}
.y11{bottom:622.674000px;}
.y258{bottom:624.252000px;}
.y1df{bottom:629.107500px;}
.y118{bottom:632.404500px;}
.y1c4{bottom:632.712000px;}
.y294{bottom:632.926500px;}
.y27b{bottom:634.996500px;}
.y82{bottom:635.676000px;}
.y3e{bottom:635.974500px;}
.y257{bottom:636.207000px;}
.y1a2{bottom:636.223500px;}
.yb6{bottom:638.649000px;}
.y10{bottom:640.606500px;}
.ye9{bottom:641.328000px;}
.y2b5{bottom:642.073500px;}
.y256{bottom:648.162000px;}
.y28f{bottom:648.544500px;}
.y183{bottom:649.125000px;}
.y1a1{bottom:650.421000px;}
.y1c3{bottom:650.644500px;}
.y293{bottom:650.859000px;}
.y81{bottom:653.608500px;}
.y3d{bottom:653.907000px;}
.yb5{bottom:656.581500px;}
.yf{bottom:658.539000px;}
.ye8{bottom:659.260500px;}
.y270{bottom:659.878500px;}
.y1de{bottom:659.884500px;}
.y2b4{bottom:660.006000px;}
.y255{bottom:660.117000px;}
.y1a0{bottom:664.617000px;}
.y14a{bottom:666.103500px;}
.y1c2{bottom:668.577000px;}
.y215{bottom:669.345000px;}
.y80{bottom:671.541000px;}
.y3c{bottom:671.839500px;}
.y254{bottom:672.072000px;}
.ye{bottom:676.471500px;}
.ye7{bottom:677.193000px;}
.y1dd{bottom:677.817000px;}
.y2b3{bottom:677.938500px;}
.y19f{bottom:678.814500px;}
.y149{bottom:680.299500px;}
.y214{bottom:681.300000px;}
.y292{bottom:681.523500px;}
.yb1{bottom:682.678500px;}
.y117{bottom:683.362500px;}
.yb2{bottom:683.376000px;}
.y1c1{bottom:686.509500px;}
.y7f{bottom:689.473500px;}
.y3b{bottom:689.772000px;}
.y253{bottom:692.994000px;}
.y19e{bottom:693.010500px;}
.y213{bottom:693.255000px;}
.y182{bottom:693.957000px;}
.yd{bottom:694.405500px;}
.y148{bottom:694.497000px;}
.ye6{bottom:695.125500px;}
.y1dc{bottom:695.749500px;}
.yb4{bottom:697.540500px;}
.y116{bottom:697.560000px;}
.yb3{bottom:701.235000px;}
.y1c0{bottom:704.442000px;}
.y252{bottom:704.949000px;}
.y212{bottom:705.210000px;}
.y2b2{bottom:706.810500px;}
.y19d{bottom:707.208000px;}
.y7e{bottom:707.406000px;}
.y34{bottom:707.704500px;}
.y147{bottom:708.693000px;}
.y115{bottom:711.756000px;}
.y181{bottom:711.889500px;}
.yc{bottom:712.338000px;}
.ye5{bottom:713.058000px;}
.y1db{bottom:713.682000px;}
.yb0{bottom:715.431000px;}
.y251{bottom:716.904000px;}
.y211{bottom:717.166500px;}
.y19c{bottom:721.404000px;}
.y1bf{bottom:722.376000px;}
.y146{bottom:722.890500px;}
.y2b1{bottom:724.743000px;}
.y7d{bottom:725.338500px;}
.y33{bottom:725.637000px;}
.y114{bottom:725.953500px;}
.y250{bottom:728.859000px;}
.y210{bottom:729.121500px;}
.y180{bottom:729.822000px;}
.yb{bottom:730.270500px;}
.ye4{bottom:730.990500px;}
.yaf{bottom:731.554500px;}
.y1da{bottom:731.614500px;}
.y19b{bottom:735.601500px;}
.y145{bottom:737.086500px;}
.y113{bottom:740.149500px;}
.y1be{bottom:740.308500px;}
.y24f{bottom:740.814000px;}
.y20f{bottom:741.076500px;}
.y32{bottom:743.571000px;}
.y17f{bottom:747.754500px;}
.ya{bottom:748.203000px;}
.ye3{bottom:748.924500px;}
.yae{bottom:749.487000px;}
.y1d9{bottom:749.548500px;}
.y19a{bottom:749.797500px;}
.y144{bottom:751.284000px;}
.y24e{bottom:752.769000px;}
.y20e{bottom:753.031500px;}
.y2b0{bottom:753.615000px;}
.y112{bottom:754.347000px;}
.y7c{bottom:756.721500px;}
.y1bd{bottom:758.241000px;}
.y31{bottom:761.503500px;}
.y199{bottom:763.995000px;}
.y24d{bottom:764.724000px;}
.y143{bottom:765.480000px;}
.y17e{bottom:765.687000px;}
.ye2{bottom:766.857000px;}
.yad{bottom:767.419500px;}
.y1d8{bottom:767.481000px;}
.y111{bottom:768.543000px;}
.y2af{bottom:771.547500px;}
.y20d{bottom:773.953500px;}
.y9{bottom:775.102500px;}
.y1bc{bottom:776.173500px;}
.y24c{bottom:776.680500px;}
.y198{bottom:778.191000px;}
.y30{bottom:779.436000px;}
.y142{bottom:779.677500px;}
.y110{bottom:782.740500px;}
.y17d{bottom:783.619500px;}
.ye1{bottom:784.789500px;}
.yac{bottom:785.352000px;}
.y1d7{bottom:785.413500px;}
.y20c{bottom:785.908500px;}
.y2ae{bottom:789.480000px;}
.y24b{bottom:792.222000px;}
.y197{bottom:792.388500px;}
.y141{bottom:793.873500px;}
.y1bb{bottom:794.106000px;}
.y10f{bottom:796.936500px;}
.y2f{bottom:797.368500px;}
.y20b{bottom:797.863500px;}
.y17c{bottom:801.553500px;}
.ye0{bottom:802.722000px;}
.yab{bottom:803.286000px;}
.y1d6{bottom:803.346000px;}
.y7b{bottom:806.410500px;}
.y196{bottom:806.584500px;}
.y140{bottom:808.071000px;}
.y20a{bottom:809.818500px;}
.y10e{bottom:811.134000px;}
.y2e{bottom:815.301000px;}
.y2ad{bottom:818.350500px;}
.y24a{bottom:820.390500px;}
.y7a{bottom:820.606500px;}
.ydf{bottom:820.654500px;}
.y195{bottom:820.782000px;}
.y1d5{bottom:821.278500px;}
.y209{bottom:821.773500px;}
.y13f{bottom:822.267000px;}
.y1ba{bottom:824.878500px;}
.y10d{bottom:825.330000px;}
.ya8{bottom:829.383000px;}
.y17b{bottom:831.441000px;}
.y2d{bottom:833.233500px;}
.y208{bottom:833.728500px;}
.y79{bottom:834.804000px;}
.y194{bottom:834.978000px;}
.y2ac{bottom:836.284500px;}
.y13e{bottom:836.464500px;}
.yde{bottom:838.587000px;}
.y10c{bottom:839.527500px;}
.yaa{bottom:844.243500px;}
.y207{bottom:845.683500px;}
.ya9{bottom:847.938000px;}
.y78{bottom:849.000000px;}
.y193{bottom:849.175500px;}
.y17a{bottom:849.373500px;}
.y13d{bottom:850.660500px;}
.y2c{bottom:851.167500px;}
.y10b{bottom:853.723500px;}
.y2ab{bottom:854.217000px;}
.ydd{bottom:856.521000px;}
.y206{bottom:857.638500px;}
.y8{bottom:860.133000px;}
.ya7{bottom:862.135500px;}
.y77{bottom:863.197500px;}
.y192{bottom:863.371500px;}
.y13c{bottom:864.858000px;}
.y179{bottom:867.306000px;}
.y10a{bottom:867.921000px;}
.y2b{bottom:869.100000px;}
.ydc{bottom:874.453500px;}
.y76{bottom:877.393500px;}
.y191{bottom:877.569000px;}
.y7{bottom:878.550000px;}
.y205{bottom:878.560500px;}
.y13b{bottom:879.054000px;}
.ya6{bottom:879.088500px;}
.y109{bottom:882.117000px;}
.y2aa{bottom:883.087500px;}
.y178{bottom:885.238500px;}
.y2a{bottom:887.032500px;}
.y204{bottom:890.515500px;}
.y75{bottom:891.591000px;}
.y190{bottom:891.765000px;}
.ydb{bottom:892.386000px;}
.y6{bottom:892.746000px;}
.y13a{bottom:893.251500px;}
.y108{bottom:896.314500px;}
.ya5{bottom:897.021000px;}
.y2a9{bottom:901.021500px;}
.y203{bottom:902.470500px;}
.y177{bottom:903.172500px;}
.y29{bottom:904.965000px;}
.y74{bottom:905.787000px;}
.y18f{bottom:905.962500px;}
.y5{bottom:906.943500px;}
.y139{bottom:907.447500px;}
.yda{bottom:910.318500px;}
.y107{bottom:910.510500px;}
.y202{bottom:914.425500px;}
.y2a8{bottom:918.954000px;}
.y73{bottom:919.984500px;}
.y18e{bottom:920.158500px;}
.y176{bottom:921.105000px;}
.y138{bottom:921.645000px;}
.y28{bottom:922.897500px;}
.ya2{bottom:923.118000px;}
.y106{bottom:924.708000px;}
.y201{bottom:926.382000px;}
.yd9{bottom:928.251000px;}
.y2c9{bottom:928.875000px;}
.y4{bottom:931.864500px;}
.y72{bottom:934.180500px;}
.y137{bottom:935.841000px;}
.ya4{bottom:937.978500px;}
.y200{bottom:938.337000px;}
.y105{bottom:938.904000px;}
.y175{bottom:939.037500px;}
.y27{bottom:940.831500px;}
.y18d{bottom:941.146500px;}
.ya3{bottom:941.673000px;}
.yd8{bottom:946.183500px;}
.y2c8{bottom:946.809000px;}
.y2a7{bottom:947.824500px;}
.y71{bottom:948.378000px;}
.y136{bottom:950.038500px;}
.y1ff{bottom:950.292000px;}
.y104{bottom:953.101500px;}
.ya1{bottom:955.870500px;}
.y26{bottom:958.764000px;}
.y1fe{bottom:962.247000px;}
.y70{bottom:962.574000px;}
.yd7{bottom:964.117500px;}
.y135{bottom:964.234500px;}
.y2c7{bottom:964.741500px;}
.y2a6{bottom:965.757000px;}
.y103{bottom:967.297500px;}
.ya0{bottom:969.834000px;}
.y3{bottom:976.696500px;}
.y6f{bottom:976.771500px;}
.y1fd{bottom:977.788500px;}
.y102{bottom:981.495000px;}
.yd6{bottom:982.050000px;}
.y2a5{bottom:983.691000px;}
.y134{bottom:985.222500px;}
.y9f{bottom:987.766500px;}
.y6e{bottom:991.566000px;}
.y25{bottom:994.629000px;}
.y101{bottom:995.692500px;}
.yd5{bottom:999.982500px;}
.y2{bottom:1003.596000px;}
.y6d{bottom:1005.762000px;}
.y1fc{bottom:1005.958500px;}
.y100{bottom:1009.888500px;}
.y24{bottom:1012.561500px;}
.y1{bottom:1030.494000px;}
.yff{bottom:1030.876500px;}
.y6c{bottom:1035.501000px;}
.h10{height:0.000000px;}
.h7{height:18.987450px;}
.h3{height:24.863300px;}
.hf{height:31.382100px;}
.h1c{height:32.344200px;}
.h1e{height:33.165300px;}
.h4{height:34.143908px;}
.h8{height:35.865450px;}
.h18{height:36.869683px;}
.h5{height:41.842920px;}
.h20{height:42.799330px;}
.h6{height:44.831700px;}
.h9{height:46.146763px;}
.hc{height:51.523916px;}
.ha{height:51.529916px;}
.h2{height:53.072100px;}
.h1f{height:53.569845px;}
.h11{height:54.511916px;}
.h13{height:54.517916px;}
.h19{height:56.060100px;}
.he{height:56.790000px;}
.h12{height:59.609700px;}
.h21{height:59.939700px;}
.h22{height:59.945700px;}
.hb{height:60.389700px;}
.h15{height:60.924763px;}
.h1{height:61.459121px;}
.hd{height:61.710763px;}
.h1a{height:61.763700px;}
.h16{height:69.289916px;}
.h17{height:69.295916px;}
.h1d{height:70.085794px;}
.h14{height:71.568000px;}
.h1b{height:385.560000px;}
.h0{height:1188.000000px;}
.w1{width:578.340000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5d{left:48.181055px;}
.x54{left:50.663320px;}
.x5c{left:53.633672px;}
.x53{left:56.115938px;}
.x52{left:61.080469px;}
.x4f{left:89.444474px;}
.x55{left:92.665841px;}
.x4c{left:130.930257px;}
.x4b{left:132.171390px;}
.x36{left:133.551000px;}
.x8{left:137.701500px;}
.x5{left:139.998000px;}
.x29{left:141.438000px;}
.x3c{left:143.064000px;}
.x6{left:144.453000px;}
.x23{left:145.588500px;}
.x5e{left:146.994750px;}
.x1c{left:149.739000px;}
.x9{left:154.090500px;}
.x2{left:158.023500px;}
.x4{left:159.175500px;}
.xa{left:160.566000px;}
.x1d{left:167.175000px;}
.x4a{left:169.833000px;}
.x3b{left:175.062000px;}
.x1{left:191.854500px;}
.x62{left:223.113000px;}
.x2b{left:225.705000px;}
.x2a{left:232.884000px;}
.x5a{left:238.375500px;}
.x43{left:239.998500px;}
.x41{left:242.775000px;}
.x31{left:249.120000px;}
.x56{left:255.652568px;}
.x30{left:256.960500px;}
.xb{left:262.810500px;}
.x2c{left:264.139500px;}
.x5f{left:265.617000px;}
.x46{left:267.453000px;}
.xe{left:275.241000px;}
.x2d{left:288.216000px;}
.x50{left:290.151750px;}
.x4d{left:293.916984px;}
.x47{left:295.677000px;}
.x2e{left:296.757000px;}
.x51{left:299.011381px;}
.x1e{left:300.387000px;}
.x63{left:316.540500px;}
.x49{left:318.223500px;}
.x45{left:321.960000px;}
.x61{left:324.790500px;}
.xd{left:325.938000px;}
.x60{left:332.844000px;}
.x2f{left:334.534500px;}
.x24{left:335.683500px;}
.x3d{left:337.392000px;}
.xf{left:340.746000px;}
.x3e{left:344.397000px;}
.x32{left:347.994000px;}
.x1f{left:349.618500px;}
.x33{left:356.535000px;}
.x20{left:358.159500px;}
.x38{left:364.786500px;}
.x3f{left:371.542500px;}
.x37{left:373.846500px;}
.x15{left:380.509500px;}
.x17{left:382.695000px;}
.x35{left:384.654000px;}
.x25{left:385.732500px;}
.x21{left:388.609500px;}
.x16{left:395.220000px;}
.x10{left:397.746000px;}
.x3{left:405.828000px;}
.x39{left:406.983000px;}
.x18{left:412.998000px;}
.x57{left:418.639295px;}
.x34{left:420.049500px;}
.x26{left:426.451500px;}
.x42{left:432.525000px;}
.x1a{left:440.922000px;}
.x3a{left:442.239000px;}
.x7{left:443.587500px;}
.x22{left:446.436000px;}
.x40{left:451.528500px;}
.x19{left:453.120000px;}
.xc{left:455.263500px;}
.x4e{left:456.903712px;}
.x11{left:488.763000px;}
.x27{left:493.062000px;}
.x58{left:500.132659px;}
.x28{left:501.603000px;}
.x48{left:503.644500px;}
.x44{left:507.379500px;}
.x1b{left:524.779500px;}
.x59{left:526.289400px;}
.x12{left:528.757500px;}
.x5b{left:535.884000px;}
.x13{left:594.262500px;}
.x14{left:659.767500px;}
@media print{
.v2{vertical-align:-19.280000pt;}
.v3{vertical-align:-15.002667pt;}
.v4{vertical-align:-7.968000pt;}
.v7{vertical-align:-5.317333pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:5.162667pt;}
.v5{vertical-align:13.829333pt;}
.vc{vertical-align:15.050667pt;}
.v1{vertical-align:19.280000pt;}
.v8{vertical-align:21.936000pt;}
.vd{vertical-align:33.548083pt;}
.va{vertical-align:35.072000pt;}
.v6{vertical-align:50.480000pt;}
.v9{vertical-align:63.616000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls98{letter-spacing:0.000125pt;}
.ls15{letter-spacing:0.000267pt;}
.ls3b{letter-spacing:0.000546pt;}
.ls43{letter-spacing:0.001014pt;}
.ls45{letter-spacing:0.001253pt;}
.ls86{letter-spacing:0.001931pt;}
.ls2b{letter-spacing:0.001995pt;}
.ls20{letter-spacing:0.002079pt;}
.ls9a{letter-spacing:0.002104pt;}
.ls19{letter-spacing:0.002694pt;}
.ls10{letter-spacing:0.002906pt;}
.ls30{letter-spacing:0.003033pt;}
.lsbe{letter-spacing:0.003149pt;}
.ls9{letter-spacing:0.003733pt;}
.ls68{letter-spacing:0.004025pt;}
.lsa2{letter-spacing:0.004212pt;}
.lsac{letter-spacing:0.004352pt;}
.ls5b{letter-spacing:0.004777pt;}
.ls82{letter-spacing:0.005459pt;}
.ls7d{letter-spacing:0.196932pt;}
.ls57{letter-spacing:0.894993pt;}
.ls2f{letter-spacing:0.900327pt;}
.ls42{letter-spacing:1.671842pt;}
.ls2d{letter-spacing:1.905799pt;}
.ls32{letter-spacing:2.146585pt;}
.ls35{letter-spacing:2.151919pt;}
.lsa3{letter-spacing:2.607197pt;}
.ls88{letter-spacing:2.652911pt;}
.ls0{letter-spacing:2.653505pt;}
.ls4{letter-spacing:2.654904pt;}
.ls5{letter-spacing:2.655527pt;}
.ls1{letter-spacing:2.656037pt;}
.ls1d{letter-spacing:2.656689pt;}
.ls2{letter-spacing:2.657662pt;}
.ls9c{letter-spacing:2.658091pt;}
.ls87{letter-spacing:2.658245pt;}
.ls3{letter-spacing:2.660238pt;}
.ls55{letter-spacing:2.662022pt;}
.ls8a{letter-spacing:2.806152pt;}
.ls83{letter-spacing:3.001549pt;}
.ls13{letter-spacing:3.042140pt;}
.ls28{letter-spacing:3.060980pt;}
.ls49{letter-spacing:3.066313pt;}
.ls9b{letter-spacing:3.688479pt;}
.lsad{letter-spacing:3.796074pt;}
.ls50{letter-spacing:3.797848pt;}
.ls21{letter-spacing:3.801407pt;}
.ls2a{letter-spacing:3.803181pt;}
.ls62{letter-spacing:5.410510pt;}
.ls7{letter-spacing:5.415843pt;}
.lsd{letter-spacing:7.138387pt;}
.ls77{letter-spacing:7.375235pt;}
.ls78{letter-spacing:7.380568pt;}
.ls75{letter-spacing:7.381391pt;}
.lsb2{letter-spacing:8.117812pt;}
.lsa{letter-spacing:8.850079pt;}
.lsb{letter-spacing:8.855412pt;}
.ls1f{letter-spacing:8.873356pt;}
.ls33{letter-spacing:9.149197pt;}
.ls44{letter-spacing:9.154531pt;}
.ls99{letter-spacing:10.032545pt;}
.ls70{letter-spacing:10.034717pt;}
.ls4b{letter-spacing:11.802318pt;}
.ls7e{letter-spacing:11.803145pt;}
.ls31{letter-spacing:11.804745pt;}
.ls4a{letter-spacing:11.805573pt;}
.ls51{letter-spacing:11.807651pt;}
.ls7c{letter-spacing:11.808479pt;}
.ls5c{letter-spacing:11.810079pt;}
.ls38{letter-spacing:11.810387pt;}
.ls27{letter-spacing:11.812349pt;}
.ls7b{letter-spacing:12.004932pt;}
.lsa7{letter-spacing:12.091356pt;}
.lsa1{letter-spacing:12.096689pt;}
.ls79{letter-spacing:12.104239pt;}
.ls7a{letter-spacing:12.107145pt;}
.ls6f{letter-spacing:12.541258pt;}
.ls92{letter-spacing:12.542767pt;}
.ls6b{letter-spacing:12.545458pt;}
.ls6c{letter-spacing:12.546717pt;}
.ls97{letter-spacing:12.547149pt;}
.ls66{letter-spacing:12.548100pt;}
.ls85{letter-spacing:12.548150pt;}
.ls84{letter-spacing:12.550479pt;}
.ls24{letter-spacing:13.402318pt;}
.ls9f{letter-spacing:13.457995pt;}
.lsa0{letter-spacing:13.463329pt;}
.ls7f{letter-spacing:14.080479pt;}
.lsc{letter-spacing:14.163733pt;}
.lsbb{letter-spacing:14.308352pt;}
.lsa8{letter-spacing:14.313545pt;}
.lsa4{letter-spacing:14.318878pt;}
.ls29{letter-spacing:14.754906pt;}
.ls48{letter-spacing:14.756105pt;}
.ls12{letter-spacing:14.756984pt;}
.lsf{letter-spacing:14.757812pt;}
.ls1c{letter-spacing:14.760239pt;}
.ls4f{letter-spacing:14.761438pt;}
.lsb9{letter-spacing:14.761685pt;}
.ls11{letter-spacing:14.762050pt;}
.ls5e{letter-spacing:14.762318pt;}
.lse{letter-spacing:14.762933pt;}
.ls8b{letter-spacing:14.876745pt;}
.ls6d{letter-spacing:15.053258pt;}
.ls6a{letter-spacing:15.053383pt;}
.ls69{letter-spacing:15.054692pt;}
.ls67{letter-spacing:15.054767pt;}
.ls93{letter-spacing:15.054817pt;}
.ls6e{letter-spacing:15.058717pt;}
.ls71{letter-spacing:15.060025pt;}
.ls65{letter-spacing:15.060100pt;}
.ls22{letter-spacing:15.136479pt;}
.ls91{letter-spacing:15.476932pt;}
.ls76{letter-spacing:15.509812pt;}
.ls95{letter-spacing:15.524352pt;}
.ls96{letter-spacing:15.529685pt;}
.ls54{letter-spacing:15.611181pt;}
.ls1b{letter-spacing:15.924984pt;}
.ls1a{letter-spacing:15.928239pt;}
.ls52{letter-spacing:16.429176pt;}
.ls2c{letter-spacing:16.434509pt;}
.lsb8{letter-spacing:17.145685pt;}
.ls23{letter-spacing:17.205848pt;}
.ls18{letter-spacing:17.414022pt;}
.ls8e{letter-spacing:17.538245pt;}
.ls64{letter-spacing:17.563485pt;}
.ls4e{letter-spacing:17.710771pt;}
.ls9e{letter-spacing:17.711018pt;}
.lsb1{letter-spacing:17.711383pt;}
.ls17{letter-spacing:17.717812pt;}
.ls47{letter-spacing:17.823646pt;}
.lsb6{letter-spacing:17.951018pt;}
.ls26{letter-spacing:17.968479pt;}
.lsb7{letter-spacing:18.095018pt;}
.lsba{letter-spacing:18.415018pt;}
.ls1e{letter-spacing:18.558740pt;}
.ls2e{letter-spacing:18.601407pt;}
.ls40{letter-spacing:18.937438pt;}
.ls8c{letter-spacing:19.099485pt;}
.ls3d{letter-spacing:19.290313pt;}
.ls39{letter-spacing:19.565252pt;}
.lsb3{letter-spacing:19.684352pt;}
.ls90{letter-spacing:19.695599pt;}
.ls8f{letter-spacing:20.090265pt;}
.lsbd{letter-spacing:20.313685pt;}
.lsbc{letter-spacing:20.319018pt;}
.ls81{letter-spacing:20.452984pt;}
.ls80{letter-spacing:20.650265pt;}
.ls4d{letter-spacing:20.682313pt;}
.ls41{letter-spacing:20.772980pt;}
.ls25{letter-spacing:21.034313pt;}
.ls89{letter-spacing:21.260745pt;}
.ls9d{letter-spacing:21.298079pt;}
.ls94{letter-spacing:21.354265pt;}
.ls16{letter-spacing:21.520515pt;}
.ls3f{letter-spacing:21.999646pt;}
.ls74{letter-spacing:22.095235pt;}
.ls73{letter-spacing:22.490724pt;}
.ls8d{letter-spacing:22.582152pt;}
.ls36{letter-spacing:23.615016pt;}
.lsae{letter-spacing:23.884745pt;}
.lsb4{letter-spacing:26.452352pt;}
.ls8{letter-spacing:26.564349pt;}
.ls63{letter-spacing:26.569047pt;}
.lsb5{letter-spacing:27.300352pt;}
.lsaf{letter-spacing:29.117359pt;}
.ls3e{letter-spacing:30.073682pt;}
.ls72{letter-spacing:31.044349pt;}
.ls14{letter-spacing:31.364349pt;}
.ls46{letter-spacing:58.135126pt;}
.ls34{letter-spacing:74.757812pt;}
.ls3a{letter-spacing:90.373812pt;}
.ls5f{letter-spacing:106.266721pt;}
.ls59{letter-spacing:106.270400pt;}
.ls53{letter-spacing:141.668074pt;}
.ls4c{letter-spacing:144.014740pt;}
.ls37{letter-spacing:320.110740pt;}
.lsa6{letter-spacing:447.323919pt;}
.lsaa{letter-spacing:447.329253pt;}
.lsa5{letter-spacing:475.366586pt;}
.lsa9{letter-spacing:475.371919pt;}
.lsb0{letter-spacing:513.572267pt;}
.ls61{letter-spacing:524.158740pt;}
.ls3c{letter-spacing:535.049407pt;}
.lsab{letter-spacing:566.277547pt;}
.ls56{letter-spacing:578.820074pt;}
.ls5d{letter-spacing:638.526740pt;}
.ls60{letter-spacing:671.140074pt;}
.ls5a{letter-spacing:708.022022pt;}
.ls58{letter-spacing:709.685848pt;}
.ws18b{word-spacing:-513.572267pt;}
.ws76{word-spacing:-53.133867pt;}
.ws101{word-spacing:-45.163900pt;}
.ws81{word-spacing:-43.484756pt;}
.ws3{word-spacing:-42.359791pt;}
.ws97{word-spacing:-41.338148pt;}
.wsa5{word-spacing:-38.362652pt;}
.ws82{word-spacing:-35.944055pt;}
.ws7e{word-spacing:-34.611401pt;}
.wsd3{word-spacing:-32.624276pt;}
.wsc5{word-spacing:-29.521250pt;}
.ws79{word-spacing:-25.791179pt;}
.wsa4{word-spacing:-25.755722pt;}
.ws77{word-spacing:-25.738045pt;}
.ws161{word-spacing:-23.272692pt;}
.ws160{word-spacing:-23.230185pt;}
.ws109{word-spacing:-22.008539pt;}
.wsc0{word-spacing:-21.997476pt;}
.wsfe{word-spacing:-21.954969pt;}
.wsd7{word-spacing:-19.482183pt;}
.ws10e{word-spacing:-16.998566pt;}
.wsd2{word-spacing:-16.994501pt;}
.ws10b{word-spacing:-16.994361pt;}
.ws104{word-spacing:-16.993233pt;}
.ws114{word-spacing:-16.989028pt;}
.ws100{word-spacing:-16.987543pt;}
.ws157{word-spacing:-16.982635pt;}
.ws107{word-spacing:-16.982338pt;}
.wsca{word-spacing:-16.981626pt;}
.ws10a{word-spacing:-16.977363pt;}
.wsc7{word-spacing:-16.975516pt;}
.ws108{word-spacing:-16.972535pt;}
.ws115{word-spacing:-16.972029pt;}
.ws15a{word-spacing:-16.970669pt;}
.wsdb{word-spacing:-16.970662pt;}
.ws105{word-spacing:-16.967966pt;}
.ws158{word-spacing:-16.965167pt;}
.ws106{word-spacing:-16.965097pt;}
.wsc8{word-spacing:-16.957327pt;}
.ws156{word-spacing:-16.482850pt;}
.wscd{word-spacing:-16.479912pt;}
.ws15d{word-spacing:-16.479101pt;}
.ws15c{word-spacing:-16.477575pt;}
.wsc3{word-spacing:-16.473733pt;}
.wsc4{word-spacing:-16.473126pt;}
.wscc{word-spacing:-16.473049pt;}
.wsc6{word-spacing:-16.472075pt;}
.ws15e{word-spacing:-16.451813pt;}
.ws103{word-spacing:-15.431683pt;}
.ws12{word-spacing:-14.760588pt;}
.wsd6{word-spacing:-14.487834pt;}
.ws159{word-spacing:-14.475968pt;}
.ws10f{word-spacing:-14.461300pt;}
.wsdc{word-spacing:-14.458662pt;}
.ws3e{word-spacing:-13.581016pt;}
.ws6d{word-spacing:-12.543875pt;}
.ws5{word-spacing:-11.659725pt;}
.ws98{word-spacing:-2.964870pt;}
.ws6b{word-spacing:-2.858602pt;}
.ws18c{word-spacing:-2.752334pt;}
.wsf2{word-spacing:-2.646067pt;}
.ws120{word-spacing:-2.592933pt;}
.wsb6{word-spacing:-2.327263pt;}
.ws187{word-spacing:-2.220996pt;}
.ws196{word-spacing:-2.167862pt;}
.wsb5{word-spacing:-2.114728pt;}
.ws72{word-spacing:-2.008460pt;}
.wsfc{word-spacing:-1.902192pt;}
.ws17c{word-spacing:-1.795925pt;}
.wsfb{word-spacing:-1.583389pt;}
.ws116{word-spacing:-1.477121pt;}
.ws148{word-spacing:-1.423988pt;}
.ws175{word-spacing:-1.317720pt;}
.ws137{word-spacing:-1.264586pt;}
.ws135{word-spacing:-1.244541pt;}
.ws133{word-spacing:-1.213111pt;}
.wsd{word-spacing:-1.158318pt;}
.ws195{word-spacing:-0.945783pt;}
.ws166{word-spacing:-0.892649pt;}
.ws11c{word-spacing:-0.839515pt;}
.wsb0{word-spacing:-0.786381pt;}
.ws3c{word-spacing:-0.626980pt;}
.ws132{word-spacing:-0.604541pt;}
.ws14f{word-spacing:-0.599945pt;}
.ws150{word-spacing:-0.573846pt;}
.ws167{word-spacing:-0.467578pt;}
.wsed{word-spacing:-0.414444pt;}
.ws176{word-spacing:-0.361310pt;}
.ws1a7{word-spacing:-0.308176pt;}
.ws1a3{word-spacing:-0.255043pt;}
.ws26{word-spacing:-0.201909pt;}
.ws4d{word-spacing:-0.148775pt;}
.wsab{word-spacing:-0.095641pt;}
.ws165{word-spacing:-0.053134pt;}
.ws36{word-spacing:-0.042507pt;}
.ws2{word-spacing:-0.037194pt;}
.ws8b{word-spacing:-0.013752pt;}
.wsce{word-spacing:-0.008052pt;}
.ws102{word-spacing:-0.004251pt;}
.ws21{word-spacing:0.000000pt;}
.ws8e{word-spacing:0.010627pt;}
.ws8d{word-spacing:0.039517pt;}
.ws90{word-spacing:0.063761pt;}
.ws152{word-spacing:0.116895pt;}
.ws153{word-spacing:0.120793pt;}
.ws84{word-spacing:0.223162pt;}
.wsac{word-spacing:0.276296pt;}
.ws48{word-spacing:0.329430pt;}
.ws5a{word-spacing:0.382564pt;}
.ws9{word-spacing:0.435698pt;}
.ws25{word-spacing:0.488832pt;}
.ws78{word-spacing:0.595099pt;}
.ws23{word-spacing:0.648233pt;}
.wsea{word-spacing:0.701367pt;}
.ws51{word-spacing:0.754501pt;}
.ws121{word-spacing:0.807635pt;}
.wsba{word-spacing:0.860769pt;}
.wseb{word-spacing:0.913903pt;}
.ws92{word-spacing:0.938639pt;}
.ws7{word-spacing:1.020170pt;}
.ws32{word-spacing:1.073304pt;}
.ws126{word-spacing:1.080793pt;}
.ws124{word-spacing:1.085541pt;}
.wsb8{word-spacing:1.126438pt;}
.ws5e{word-spacing:1.179572pt;}
.ws8{word-spacing:1.232706pt;}
.ws63{word-spacing:1.285840pt;}
.wsb2{word-spacing:1.338973pt;}
.ws45{word-spacing:1.392107pt;}
.ws46{word-spacing:1.445241pt;}
.ws91{word-spacing:1.498375pt;}
.wsb{word-spacing:1.551509pt;}
.ws174{word-spacing:1.577042pt;}
.ws34{word-spacing:1.604643pt;}
.ws31{word-spacing:1.657777pt;}
.ws3a{word-spacing:1.710911pt;}
.wsaa{word-spacing:1.764044pt;}
.ws27{word-spacing:1.817178pt;}
.wsae{word-spacing:1.923446pt;}
.ws58{word-spacing:1.976580pt;}
.ws163{word-spacing:2.029714pt;}
.ws29{word-spacing:2.082848pt;}
.ws59{word-spacing:2.135981pt;}
.ws85{word-spacing:2.242249pt;}
.ws1e{word-spacing:2.291138pt;}
.ws18a{word-spacing:2.295383pt;}
.ws2d{word-spacing:2.348517pt;}
.ws119{word-spacing:2.375118pt;}
.ws197{word-spacing:2.381847pt;}
.ws80{word-spacing:2.401651pt;}
.ws180{word-spacing:2.454785pt;}
.ws1a8{word-spacing:2.465411pt;}
.ws1a{word-spacing:2.503674pt;}
.ws13b{word-spacing:2.507919pt;}
.ws65{word-spacing:2.561052pt;}
.wse6{word-spacing:2.614186pt;}
.wsc1{word-spacing:2.623602pt;}
.ws19f{word-spacing:2.624813pt;}
.wsff{word-spacing:2.628936pt;}
.ws16b{word-spacing:2.656700pt;}
.ws2f{word-spacing:2.667320pt;}
.ws3b{word-spacing:2.720454pt;}
.ws28{word-spacing:2.773588pt;}
.ws8a{word-spacing:2.818054pt;}
.ws3d{word-spacing:2.826722pt;}
.ws30{word-spacing:2.879856pt;}
.ws1{word-spacing:2.932989pt;}
.ws18e{word-spacing:2.939024pt;}
.wsa0{word-spacing:2.946769pt;}
.ws9e{word-spacing:2.946981pt;}
.ws18f{word-spacing:2.947459pt;}
.ws172{word-spacing:2.953705pt;}
.ws134{word-spacing:2.954268pt;}
.ws136{word-spacing:2.959601pt;}
.ws8c{word-spacing:2.986123pt;}
.ws14{word-spacing:3.039257pt;}
.wsfd{word-spacing:3.092391pt;}
.ws18{word-spacing:3.145525pt;}
.ws3f{word-spacing:3.198659pt;}
.wsec{word-spacing:3.251793pt;}
.wse{word-spacing:3.304927pt;}
.wsc{word-spacing:3.358060pt;}
.wsbd{word-spacing:3.372811pt;}
.ws49{word-spacing:3.379314pt;}
.ws6c{word-spacing:3.396325pt;}
.ws15{word-spacing:3.411194pt;}
.ws24{word-spacing:3.464328pt;}
.ws9b{word-spacing:3.501436pt;}
.ws9c{word-spacing:3.517462pt;}
.ws5b{word-spacing:3.570596pt;}
.ws131{word-spacing:3.594268pt;}
.ws7d{word-spacing:3.623730pt;}
.ws43{word-spacing:3.676864pt;}
.ws4b{word-spacing:3.729997pt;}
.wsb1{word-spacing:3.783131pt;}
.ws40{word-spacing:3.836265pt;}
.wsad{word-spacing:3.889399pt;}
.ws44{word-spacing:3.942533pt;}
.ws53{word-spacing:3.995667pt;}
.ws6{word-spacing:4.048801pt;}
.ws57{word-spacing:4.101935pt;}
.ws0{word-spacing:4.131706pt;}
.ws5d{word-spacing:4.155068pt;}
.ws9d{word-spacing:4.208202pt;}
.ws69{word-spacing:4.261336pt;}
.ws1a6{word-spacing:4.271963pt;}
.ws52{word-spacing:4.314470pt;}
.ws10{word-spacing:4.367604pt;}
.wsf3{word-spacing:4.420738pt;}
.ws75{word-spacing:4.473872pt;}
.wsa7{word-spacing:4.527005pt;}
.ws47{word-spacing:4.633273pt;}
.ws4{word-spacing:4.663040pt;}
.ws54{word-spacing:4.686407pt;}
.ws61{word-spacing:4.739541pt;}
.ws7a{word-spacing:4.792675pt;}
.ws88{word-spacing:4.845809pt;}
.ws89{word-spacing:4.856049pt;}
.ws86{word-spacing:4.898943pt;}
.ws56{word-spacing:4.952076pt;}
.ws1ae{word-spacing:4.962703pt;}
.ws140{word-spacing:5.005210pt;}
.ws142{word-spacing:5.011459pt;}
.ws199{word-spacing:5.058344pt;}
.ws154{word-spacing:5.111478pt;}
.ws39{word-spacing:5.164612pt;}
.ws50{word-spacing:5.217746pt;}
.ws149{word-spacing:5.252338pt;}
.ws14a{word-spacing:5.260475pt;}
.wsaf{word-spacing:5.270880pt;}
.ws125{word-spacing:5.279601pt;}
.ws13a{word-spacing:5.295601pt;}
.ws87{word-spacing:5.324013pt;}
.ws19{word-spacing:5.377147pt;}
.ws1b2{word-spacing:5.387774pt;}
.ws5f{word-spacing:5.430281pt;}
.ws1a1{word-spacing:5.440908pt;}
.ws155{word-spacing:5.536549pt;}
.wsbc{word-spacing:5.642817pt;}
.wsa{word-spacing:5.695951pt;}
.ws7b{word-spacing:5.749084pt;}
.ws4f{word-spacing:5.802218pt;}
.wse7{word-spacing:5.855352pt;}
.ws60{word-spacing:5.908486pt;}
.ws19a{word-spacing:5.961620pt;}
.ws33{word-spacing:6.014754pt;}
.ws2c{word-spacing:6.067888pt;}
.ws9a{word-spacing:6.121021pt;}
.ws41{word-spacing:6.174155pt;}
.ws68{word-spacing:6.227289pt;}
.ws1b3{word-spacing:6.237916pt;}
.ws4a{word-spacing:6.280423pt;}
.wse2{word-spacing:6.333557pt;}
.wsf8{word-spacing:6.386691pt;}
.ws1a2{word-spacing:6.439825pt;}
.wsdf{word-spacing:6.492959pt;}
.ws1a0{word-spacing:6.503585pt;}
.wsde{word-spacing:6.546092pt;}
.ws138{word-spacing:6.597326pt;}
.ws42{word-spacing:6.599226pt;}
.ws5c{word-spacing:6.652360pt;}
.ws11b{word-spacing:6.705494pt;}
.ws13c{word-spacing:6.714268pt;}
.ws17f{word-spacing:6.758628pt;}
.ws2b{word-spacing:6.811762pt;}
.ws1aa{word-spacing:6.864896pt;}
.ws19d{word-spacing:6.895698pt;}
.ws4c{word-spacing:6.971163pt;}
.ws164{word-spacing:7.024297pt;}
.ws66{word-spacing:7.077431pt;}
.ws14e{word-spacing:7.079731pt;}
.ws189{word-spacing:7.130565pt;}
.wse4{word-spacing:7.150126pt;}
.ws123{word-spacing:7.151601pt;}
.wse5{word-spacing:7.183699pt;}
.ws14b{word-spacing:7.236833pt;}
.wsfa{word-spacing:7.247646pt;}
.wsa8{word-spacing:7.289967pt;}
.ws17{word-spacing:7.343100pt;}
.ws1b0{word-spacing:7.353727pt;}
.ws2e{word-spacing:7.396234pt;}
.ws147{word-spacing:7.434660pt;}
.ws151{word-spacing:7.449368pt;}
.ws146{word-spacing:7.455005pt;}
.ws70{word-spacing:7.519524pt;}
.ws64{word-spacing:7.555636pt;}
.ws2a{word-spacing:7.608770pt;}
.ws16{word-spacing:7.661904pt;}
.ws11a{word-spacing:7.715037pt;}
.ws4e{word-spacing:7.768171pt;}
.wse9{word-spacing:7.874439pt;}
.ws38{word-spacing:7.927573pt;}
.wsb4{word-spacing:7.980707pt;}
.ws35{word-spacing:8.140108pt;}
.ws117{word-spacing:8.246376pt;}
.ws13f{word-spacing:8.286126pt;}
.wsbb{word-spacing:8.299510pt;}
.ws22{word-spacing:8.405778pt;}
.ws12f{word-spacing:8.512045pt;}
.ws12d{word-spacing:8.536793pt;}
.ws198{word-spacing:8.565179pt;}
.wsa9{word-spacing:8.618313pt;}
.ws55{word-spacing:8.724581pt;}
.ws1ab{word-spacing:8.780750pt;}
.ws1a9{word-spacing:8.788202pt;}
.ws1b1{word-spacing:8.788841pt;}
.ws18d{word-spacing:8.830849pt;}
.ws129{word-spacing:8.872793pt;}
.ws127{word-spacing:8.883983pt;}
.ws162{word-spacing:8.937116pt;}
.wsb9{word-spacing:8.990250pt;}
.ws190{word-spacing:9.043384pt;}
.ws186{word-spacing:9.096518pt;}
.ws141{word-spacing:9.215601pt;}
.ws37{word-spacing:9.309053pt;}
.wsf{word-spacing:9.415321pt;}
.wsf7{word-spacing:9.468455pt;}
.ws1ad{word-spacing:9.479082pt;}
.ws1a4{word-spacing:9.574723pt;}
.ws11e{word-spacing:9.596909pt;}
.ws145{word-spacing:9.605326pt;}
.ws14d{word-spacing:9.623142pt;}
.ws17d{word-spacing:9.627857pt;}
.ws6f{word-spacing:9.772405pt;}
.ws143{word-spacing:9.787258pt;}
.ws173{word-spacing:9.840392pt;}
.wse1{word-spacing:9.893526pt;}
.wse0{word-spacing:9.946660pt;}
.wsef{word-spacing:9.999794pt;}
.wsda{word-spacing:10.037433pt;}
.wsbe{word-spacing:10.040175pt;}
.wsee{word-spacing:10.052928pt;}
.ws1af{word-spacing:10.159195pt;}
.ws13d{word-spacing:10.212329pt;}
.ws19e{word-spacing:10.306098pt;}
.ws118{word-spacing:10.352901pt;}
.ws67{word-spacing:10.424865pt;}
.ws183{word-spacing:10.477999pt;}
.ws16e{word-spacing:10.945604pt;}
.wsb3{word-spacing:11.009337pt;}
.ws73{word-spacing:11.062471pt;}
.ws74{word-spacing:11.115605pt;}
.ws185{word-spacing:11.221873pt;}
.ws188{word-spacing:11.275007pt;}
.ws194{word-spacing:11.303636pt;}
.wse8{word-spacing:11.328140pt;}
.wse3{word-spacing:11.354268pt;}
.ws1ac{word-spacing:11.391901pt;}
.ws130{word-spacing:11.487542pt;}
.ws1a5{word-spacing:11.498169pt;}
.ws184{word-spacing:11.540676pt;}
.ws11f{word-spacing:11.646944pt;}
.ws191{word-spacing:11.700077pt;}
.ws6a{word-spacing:11.753211pt;}
.ws139{word-spacing:11.803220pt;}
.wsf0{word-spacing:11.806345pt;}
.ws12b{word-spacing:11.806475pt;}
.ws16d{word-spacing:11.880762pt;}
.ws177{word-spacing:12.050726pt;}
.ws192{word-spacing:12.334895pt;}
.ws62{word-spacing:12.337684pt;}
.ws13e{word-spacing:12.484935pt;}
.ws193{word-spacing:12.550219pt;}
.ws12c{word-spacing:12.730268pt;}
.ws12e{word-spacing:12.735601pt;}
.wsb7{word-spacing:13.028424pt;}
.ws128{word-spacing:13.071601pt;}
.ws13{word-spacing:13.581016pt;}
.ws14c{word-spacing:13.884475pt;}
.ws144{word-spacing:13.994268pt;}
.ws11d{word-spacing:14.224901pt;}
.ws19c{word-spacing:14.276301pt;}
.ws179{word-spacing:14.282342pt;}
.wsf5{word-spacing:14.657024pt;}
.ws20{word-spacing:14.785846pt;}
.ws1d{word-spacing:14.806267pt;}
.ws1f{word-spacing:14.809009pt;}
.wsd5{word-spacing:15.005042pt;}
.wsd9{word-spacing:15.006015pt;}
.ws10c{word-spacing:15.007326pt;}
.wsc9{word-spacing:15.007782pt;}
.wsbf{word-spacing:15.011637pt;}
.ws10d{word-spacing:15.012659pt;}
.ws111{word-spacing:15.012988pt;}
.ws1c{word-spacing:15.019901pt;}
.ws1b{word-spacing:15.025536pt;}
.ws12a{word-spacing:15.279993pt;}
.wsa1{word-spacing:16.574405pt;}
.ws93{word-spacing:16.579739pt;}
.ws95{word-spacing:17.371843pt;}
.ws19b{word-spacing:17.472925pt;}
.wsf4{word-spacing:17.611690pt;}
.ws83{word-spacing:17.748592pt;}
.ws122{word-spacing:17.807259pt;}
.wsf1{word-spacing:18.363690pt;}
.wsf9{word-spacing:18.857072pt;}
.ws17a{word-spacing:18.857155pt;}
.wsa3{word-spacing:19.523739pt;}
.ws9f{word-spacing:19.529072pt;}
.ws8f{word-spacing:19.571739pt;}
.wsd0{word-spacing:20.045848pt;}
.ws7f{word-spacing:23.182405pt;}
.ws7c{word-spacing:25.273072pt;}
.ws16f{word-spacing:26.928311pt;}
.ws6e{word-spacing:31.876149pt;}
.ws11{word-spacing:32.124737pt;}
.ws171{word-spacing:35.276725pt;}
.ws182{word-spacing:37.269358pt;}
.ws178{word-spacing:47.780629pt;}
.wsa6{word-spacing:53.133867pt;}
.ws16c{word-spacing:56.088250pt;}
.ws170{word-spacing:57.890556pt;}
.ws17e{word-spacing:72.081197pt;}
.ws17b{word-spacing:72.118390pt;}
.ws169{word-spacing:76.704242pt;}
.wsd8{word-spacing:77.781433pt;}
.wsc2{word-spacing:77.789509pt;}
.ws16a{word-spacing:94.302223pt;}
.ws71{word-spacing:95.806978pt;}
.ws168{word-spacing:100.506641pt;}
.wsa2{word-spacing:108.884592pt;}
.ws99{word-spacing:108.887597pt;}
.ws96{word-spacing:111.038405pt;}
.ws181{word-spacing:121.073124pt;}
.wscf{word-spacing:145.530767pt;}
.wscb{word-spacing:145.533509pt;}
.wsd1{word-spacing:213.274767pt;}
.wsdd{word-spacing:213.282842pt;}
.wsd4{word-spacing:281.024100pt;}
.ws110{word-spacing:281.026842pt;}
.ws113{word-spacing:348.768100pt;}
.ws15b{word-spacing:348.773433pt;}
.ws112{word-spacing:348.776175pt;}
.ws15f{word-spacing:416.517433pt;}
.wsf6{word-spacing:600.795257pt;}
.ws94{word-spacing:807.966405pt;}
._4e{margin-left:-513.572267pt;}
._50{margin-left:-27.763527pt;}
._52{margin-left:-26.832603pt;}
._1b{margin-left:-25.733789pt;}
._5{margin-left:-23.999582pt;}
._4{margin-left:-22.749859pt;}
._1e{margin-left:-21.259915pt;}
._51{margin-left:-20.363007pt;}
._2{margin-left:-6.197558pt;}
._b{margin-left:-4.569513pt;}
._3{margin-left:-3.154026pt;}
._1{margin-left:-2.065853pt;}
._6{margin-left:-1.139190pt;}
._11{width:1.232709pt;}
._0{width:2.142366pt;}
._19{width:3.132798pt;}
._2f{width:4.597910pt;}
._16{width:6.294441pt;}
._30{width:7.395259pt;}
._4f{width:8.632795pt;}
._32{width:11.798748pt;}
._22{width:13.047565pt;}
._38{width:14.080475pt;}
._15{width:15.073020pt;}
._1a{width:16.016686pt;}
._a{width:17.315273pt;}
._f{width:19.087818pt;}
._e{width:20.025100pt;}
._37{width:21.087777pt;}
._8{width:21.980410pt;}
._7{width:22.894329pt;}
._9{width:23.957006pt;}
._d{width:25.179085pt;}
._14{width:26.938870pt;}
._1c{width:28.146081pt;}
._21{width:29.308635pt;}
._18{width:30.358563pt;}
._17{width:31.650787pt;}
._31{width:32.766598pt;}
._20{width:34.271344pt;}
._13{width:35.227754pt;}
._1d{width:36.970541pt;}
._10{width:38.303150pt;}
._39{width:39.329705pt;}
._34{width:40.879082pt;}
._c{width:43.015053pt;}
._36{width:44.755727pt;}
._1f{width:46.681303pt;}
._2e{width:48.181787pt;}
._3a{width:49.297612pt;}
._2b{width:50.583568pt;}
._3c{width:62.868149pt;}
._49{width:72.118390pt;}
._4b{width:76.594326pt;}
._42{width:78.017048pt;}
._40{width:90.157771pt;}
._3f{width:91.135437pt;}
._3d{width:92.368146pt;}
._45{width:105.332275pt;}
._33{width:106.251664pt;}
._2c{width:108.350853pt;}
._29{width:122.106186pt;}
._43{width:123.058344pt;}
._4a{width:127.127725pt;}
._3e{width:132.112378pt;}
._41{width:138.105893pt;}
._28{width:153.706035pt;}
._26{width:156.809061pt;}
._35{width:158.084277pt;}
._46{width:160.341610pt;}
._25{width:168.838598pt;}
._27{width:199.103725pt;}
._3b{width:206.703017pt;}
._24{width:210.325626pt;}
._2d{width:227.158477pt;}
._4d{width:265.817587pt;}
._2a{width:301.035990pt;}
._23{width:323.628556pt;}
._4c{width:469.085683pt;}
._44{width:489.825901pt;}
._48{width:496.584249pt;}
._47{width:537.335939pt;}
._12{width:1070.237774pt;}
.fs5{font-size:26.566933pt;}
.fs6{font-size:31.733333pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs1{font-size:53.133867pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y233{bottom:7.726075pt;}
.y271{bottom:15.659408pt;}
.y232{bottom:18.081554pt;}
.y231{bottom:26.468575pt;}
.y243{bottom:42.840000pt;}
.y234{bottom:46.855754pt;}
.y23d{bottom:50.534064pt;}
.y240{bottom:62.962911pt;}
.y23e{bottom:65.949319pt;}
.y242{bottom:71.838553pt;}
.y241{bottom:73.973752pt;}
.y235{bottom:80.442314pt;}
.y23f{bottom:80.651817pt;}
.y272{bottom:86.528595pt;}
.y278{bottom:101.586458pt;}
.y236{bottom:114.028874pt;}
.y279{bottom:117.084170pt;}
.y273{bottom:126.201435pt;}
.y27a{bottom:128.836204pt;}
.y23c{bottom:133.444369pt;}
.y237{bottom:147.615434pt;}
.y54{bottom:150.230667pt;}
.y23{bottom:150.232000pt;}
.y274{bottom:165.874276pt;}
.y238{bottom:181.201994pt;}
.yd4{bottom:186.797333pt;}
.yd3{bottom:190.081333pt;}
.y3a{bottom:191.176000pt;}
.y9d{bottom:194.016000pt;}
.y9b{bottom:194.532000pt;}
.y53{bottom:194.700000pt;}
.y12f{bottom:194.994667pt;}
.y1fb{bottom:195.098667pt;}
.y249{bottom:196.688000pt;}
.y22{bottom:197.054667pt;}
.y18c{bottom:198.418667pt;}
.y6b{bottom:198.685333pt;}
.y275{bottom:205.547116pt;}
.y28d{bottom:205.985333pt;}
.yfe{bottom:206.021333pt;}
.y174{bottom:206.022667pt;}
.y39{bottom:207.116000pt;}
.y9e{bottom:207.225333pt;}
.yd2{bottom:209.145333pt;}
.y21{bottom:209.673333pt;}
.y9a{bottom:210.509333pt;}
.y52{bottom:210.640000pt;}
.y12e{bottom:210.936000pt;}
.y1fa{bottom:211.038667pt;}
.yd1{bottom:212.429333pt;}
.y248{bottom:212.628000pt;}
.y18b{bottom:214.358667pt;}
.y6a{bottom:214.625333pt;}
.y239{bottom:214.788554pt;}
.y22f{bottom:220.061333pt;}
.y26f{bottom:221.665333pt;}
.y173{bottom:221.892000pt;}
.y28c{bottom:221.926667pt;}
.yfd{bottom:221.962667pt;}
.y20{bottom:222.293333pt;}
.y38{bottom:223.056000pt;}
.y9c{bottom:223.129333pt;}
.y51{bottom:226.580000pt;}
.y291{bottom:226.632000pt;}
.y12d{bottom:226.876000pt;}
.y1f9{bottom:226.978667pt;}
.y99{bottom:228.368000pt;}
.y247{bottom:228.568000pt;}
.y18a{bottom:230.300000pt;}
.y69{bottom:230.565333pt;}
.y22e{bottom:230.688000pt;}
.y2c6{bottom:231.685333pt;}
.y2a4{bottom:232.164000pt;}
.y1d4{bottom:232.228000pt;}
.y15e{bottom:236.109333pt;}
.yd0{bottom:237.461333pt;}
.y26e{bottom:237.605333pt;}
.y172{bottom:237.832000pt;}
.y28b{bottom:237.866667pt;}
.yfc{bottom:237.902667pt;}
.y1f{bottom:238.662667pt;}
.y37{bottom:238.996000pt;}
.y22d{bottom:241.316000pt;}
.y50{bottom:242.520000pt;}
.y12c{bottom:242.816000pt;}
.y98{bottom:244.308000pt;}
.y246{bottom:244.508000pt;}
.y276{bottom:245.219957pt;}
.y189{bottom:246.240000pt;}
.y68{bottom:246.505333pt;}
.y2a3{bottom:248.104000pt;}
.y1d3{bottom:248.168000pt;}
.y23a{bottom:248.375114pt;}
.y15d{bottom:248.728000pt;}
.y290{bottom:251.937333pt;}
.y22c{bottom:251.942667pt;}
.y26d{bottom:253.546667pt;}
.y171{bottom:253.773333pt;}
.yfb{bottom:253.842667pt;}
.y36{bottom:254.936000pt;}
.y97{bottom:256.790667pt;}
.ycd{bottom:257.021333pt;}
.y2c5{bottom:257.349333pt;}
.y4f{bottom:258.460000pt;}
.y12b{bottom:258.756000pt;}
.y1f8{bottom:259.996000pt;}
.y96{bottom:260.249333pt;}
.y245{bottom:260.448000pt;}
.y15c{bottom:261.348000pt;}
.y188{bottom:262.180000pt;}
.y67{bottom:262.445333pt;}
.y22b{bottom:262.569333pt;}
.y28a{bottom:264.433333pt;}
.y26c{bottom:269.486667pt;}
.y170{bottom:269.713333pt;}
.yfa{bottom:269.782667pt;}
.ycf{bottom:270.232000pt;}
.y1f7{bottom:270.622667pt;}
.y22a{bottom:273.196000pt;}
.y2c4{bottom:273.289333pt;}
.yce{bottom:273.516000pt;}
.y15b{bottom:273.966667pt;}
.y2a2{bottom:274.245333pt;}
.y1d2{bottom:274.373333pt;}
.y4e{bottom:274.401333pt;}
.y95{bottom:274.662667pt;}
.y12a{bottom:274.696000pt;}
.y1b9{bottom:275.288000pt;}
.y94{bottom:278.120000pt;}
.y1e{bottom:278.209333pt;}
.y66{bottom:278.385333pt;}
.y289{bottom:280.373333pt;}
.y1f6{bottom:281.249333pt;}
.y23b{bottom:281.961674pt;}
.y229{bottom:283.822667pt;}
.y277{bottom:284.892797pt;}
.y26b{bottom:285.426667pt;}
.yf9{bottom:285.722667pt;}
.ycc{bottom:286.134667pt;}
.y15a{bottom:286.586667pt;}
.y1b8{bottom:287.906667pt;}
.y35{bottom:288.020000pt;}
.y2c3{bottom:289.229333pt;}
.ycb{bottom:289.456000pt;}
.y2a1{bottom:290.185333pt;}
.y4d{bottom:290.341333pt;}
.y129{bottom:290.636000pt;}
.y16f{bottom:290.664000pt;}
.y1f5{bottom:291.876000pt;}
.y244{bottom:293.532000pt;}
.y187{bottom:294.060000pt;}
.y93{bottom:294.061333pt;}
.y1d{bottom:294.149333pt;}
.y65{bottom:294.326667pt;}
.y228{bottom:294.449333pt;}
.y288{bottom:296.313333pt;}
.y159{bottom:299.205333pt;}
.y1b7{bottom:300.526667pt;}
.y1d1{bottom:300.578667pt;}
.y26a{bottom:301.366667pt;}
.yf8{bottom:301.662667pt;}
.y1f4{bottom:302.502667pt;}
.yca{bottom:305.396000pt;}
.y2a0{bottom:306.125333pt;}
.y4c{bottom:306.281333pt;}
.y128{bottom:306.577333pt;}
.y16e{bottom:306.604000pt;}
.y186{bottom:310.000000pt;}
.y92{bottom:310.001333pt;}
.y1c{bottom:310.089333pt;}
.y64{bottom:310.266667pt;}
.y158{bottom:311.825333pt;}
.y287{bottom:312.254667pt;}
.y227{bottom:313.046667pt;}
.y1f3{bottom:313.130667pt;}
.y1b6{bottom:313.145333pt;}
.y133{bottom:313.841333pt;}
.y2c2{bottom:314.893333pt;}
.y230{bottom:315.649333pt;}
.y1d0{bottom:316.518667pt;}
.y269{bottom:317.306667pt;}
.yf7{bottom:317.604000pt;}
.y4b{bottom:322.221333pt;}
.y16d{bottom:322.544000pt;}
.y226{bottom:323.673333pt;}
.y1f2{bottom:323.757333pt;}
.y157{bottom:324.444000pt;}
.y1b5{bottom:325.765333pt;}
.y91{bottom:325.941333pt;}
.y1b{bottom:326.029333pt;}
.y63{bottom:326.206667pt;}
.yc7{bottom:326.972000pt;}
.y286{bottom:328.194667pt;}
.y2c1{bottom:330.833333pt;}
.y29f{bottom:332.266667pt;}
.y268{bottom:333.246667pt;}
.yf6{bottom:333.544000pt;}
.y225{bottom:334.300000pt;}
.y1f1{bottom:334.384000pt;}
.y156{bottom:337.064000pt;}
.y4a{bottom:338.161333pt;}
.y1b4{bottom:338.384000pt;}
.y16c{bottom:338.484000pt;}
.yc9{bottom:339.665333pt;}
.y127{bottom:341.320000pt;}
.y90{bottom:341.881333pt;}
.y1a{bottom:341.970667pt;}
.y62{bottom:342.146667pt;}
.y1cf{bottom:342.362667pt;}
.y132{bottom:342.532000pt;}
.yc8{bottom:342.949333pt;}
.y224{bottom:344.926667pt;}
.y131{bottom:345.816000pt;}
.y29e{bottom:348.208000pt;}
.y267{bottom:349.188000pt;}
.yf5{bottom:349.484000pt;}
.y155{bottom:349.682667pt;}
.y1b3{bottom:351.004000pt;}
.y1f0{bottom:352.980000pt;}
.y126{bottom:353.940000pt;}
.y49{bottom:354.102667pt;}
.y16b{bottom:354.425333pt;}
.y285{bottom:354.761333pt;}
.y223{bottom:355.553333pt;}
.yc6{bottom:355.569333pt;}
.y2c0{bottom:356.496000pt;}
.y8f{bottom:357.821333pt;}
.y19{bottom:357.910667pt;}
.y61{bottom:358.086667pt;}
.y1ce{bottom:358.302667pt;}
.y154{bottom:362.302667pt;}
.y1ef{bottom:363.608000pt;}
.y1b2{bottom:363.622667pt;}
.y266{bottom:365.128000pt;}
.yf4{bottom:365.424000pt;}
.y222{bottom:366.180000pt;}
.y125{bottom:366.558667pt;}
.y48{bottom:370.042667pt;}
.y16a{bottom:370.365333pt;}
.yc5{bottom:370.638667pt;}
.y284{bottom:370.701333pt;}
.y2bf{bottom:372.437333pt;}
.y8e{bottom:373.761333pt;}
.y60{bottom:374.026667pt;}
.y1ee{bottom:374.234667pt;}
.y1cd{bottom:374.242667pt;}
.y29d{bottom:374.349333pt;}
.y153{bottom:374.921333pt;}
.y1b1{bottom:376.242667pt;}
.y221{bottom:376.806667pt;}
.y124{bottom:379.178667pt;}
.y265{bottom:381.068000pt;}
.yf3{bottom:381.364000pt;}
.y1ed{bottom:384.861333pt;}
.y18{bottom:385.805333pt;}
.y47{bottom:385.982667pt;}
.y169{bottom:386.305333pt;}
.y283{bottom:386.641333pt;}
.y220{bottom:387.434667pt;}
.y152{bottom:387.541333pt;}
.y2be{bottom:388.377333pt;}
.y1b0{bottom:388.861333pt;}
.y185{bottom:389.701333pt;}
.y8d{bottom:389.702667pt;}
.y5f{bottom:389.968000pt;}
.y29c{bottom:390.289333pt;}
.y123{bottom:391.797333pt;}
.yc2{bottom:392.214667pt;}
.y1ec{bottom:395.488000pt;}
.y264{bottom:397.008000pt;}
.yf2{bottom:397.305333pt;}
.y151{bottom:400.160000pt;}
.y1af{bottom:401.481333pt;}
.y46{bottom:401.922667pt;}
.y168{bottom:402.245333pt;}
.y122{bottom:404.417333pt;}
.yc4{bottom:404.908000pt;}
.y8c{bottom:405.642667pt;}
.y5e{bottom:405.908000pt;}
.y21f{bottom:406.030667pt;}
.y1eb{bottom:406.114667pt;}
.yc3{bottom:408.192000pt;}
.y1cc{bottom:412.734667pt;}
.y150{bottom:412.780000pt;}
.y282{bottom:413.209333pt;}
.yf1{bottom:413.245333pt;}
.y28e{bottom:413.877333pt;}
.y2bd{bottom:414.040000pt;}
.y1ae{bottom:414.100000pt;}
.y29b{bottom:416.430667pt;}
.y21e{bottom:416.657333pt;}
.y1ea{bottom:416.741333pt;}
.y121{bottom:417.037333pt;}
.y45{bottom:417.862667pt;}
.y167{bottom:418.185333pt;}
.yc1{bottom:420.810667pt;}
.y8b{bottom:421.582667pt;}
.y5d{bottom:421.848000pt;}
.y1cb{bottom:425.354667pt;}
.y14f{bottom:425.398667pt;}
.y1ad{bottom:426.720000pt;}
.y21d{bottom:427.284000pt;}
.y1e9{bottom:427.368000pt;}
.y281{bottom:429.149333pt;}
.yf0{bottom:429.185333pt;}
.y120{bottom:429.656000pt;}
.y2bc{bottom:429.980000pt;}
.y263{bottom:430.025333pt;}
.y29a{bottom:432.370667pt;}
.y44{bottom:433.802667pt;}
.y166{bottom:434.126667pt;}
.yc0{bottom:435.880000pt;}
.y8a{bottom:437.522667pt;}
.y5c{bottom:437.788000pt;}
.y21c{bottom:437.912000pt;}
.y1ca{bottom:437.973333pt;}
.y14e{bottom:438.018667pt;}
.y1ac{bottom:439.338667pt;}
.y262{bottom:440.652000pt;}
.y11f{bottom:442.276000pt;}
.y280{bottom:445.089333pt;}
.yef{bottom:445.125333pt;}
.y2bb{bottom:445.921333pt;}
.y1e8{bottom:445.965333pt;}
.y299{bottom:448.310667pt;}
.y21b{bottom:448.538667pt;}
.y17{bottom:448.696000pt;}
.y43{bottom:449.744000pt;}
.y165{bottom:450.066667pt;}
.y1c9{bottom:450.593333pt;}
.y14d{bottom:450.637333pt;}
.y261{bottom:451.278667pt;}
.y1ab{bottom:451.958667pt;}
.y89{bottom:453.462667pt;}
.y5b{bottom:453.728000pt;}
.y11e{bottom:454.894667pt;}
.y1e7{bottom:456.592000pt;}
.ybf{bottom:456.790667pt;}
.y21a{bottom:459.165333pt;}
.ybe{bottom:460.074667pt;}
.y27f{bottom:461.029333pt;}
.yee{bottom:461.065333pt;}
.y260{bottom:461.905333pt;}
.y14c{bottom:463.257333pt;}
.y1aa{bottom:464.577333pt;}
.y16{bottom:464.636000pt;}
.y42{bottom:465.684000pt;}
.y1e6{bottom:467.218667pt;}
.y11d{bottom:467.514667pt;}
.y88{bottom:469.402667pt;}
.y130{bottom:469.668000pt;}
.y5a{bottom:469.669333pt;}
.y219{bottom:469.792000pt;}
.y1c8{bottom:471.049333pt;}
.y2ba{bottom:471.584000pt;}
.y25f{bottom:472.532000pt;}
.y298{bottom:475.568000pt;}
.y27e{bottom:476.969333pt;}
.y1a9{bottom:477.197333pt;}
.y1e5{bottom:477.845333pt;}
.y11c{bottom:480.133333pt;}
.y218{bottom:480.418667pt;}
.y41{bottom:481.624000pt;}
.y14b{bottom:481.913333pt;}
.y164{bottom:482.730667pt;}
.y25e{bottom:483.158667pt;}
.ybd{bottom:485.106667pt;}
.y184{bottom:485.342667pt;}
.y87{bottom:485.344000pt;}
.y59{bottom:485.609333pt;}
.yed{bottom:486.601333pt;}
.y2b9{bottom:487.524000pt;}
.y1e4{bottom:488.472000pt;}
.y15{bottom:489.726667pt;}
.y1a8{bottom:489.816000pt;}
.y1c7{bottom:490.974667pt;}
.y27d{bottom:492.910667pt;}
.y25d{bottom:493.785333pt;}
.y217{bottom:494.233333pt;}
.y163{bottom:495.349333pt;}
.y40{bottom:497.564000pt;}
.y11b{bottom:498.789333pt;}
.y1e3{bottom:499.100000pt;}
.ybc{bottom:501.046667pt;}
.y86{bottom:501.284000pt;}
.y58{bottom:501.549333pt;}
.y1a7{bottom:502.436000pt;}
.yec{bottom:502.541333pt;}
.y25c{bottom:504.413333pt;}
.y14{bottom:505.666667pt;}
.y162{bottom:507.969333pt;}
.y1e2{bottom:509.726667pt;}
.y2b8{bottom:513.188000pt;}
.y297{bottom:514.781333pt;}
.y1a6{bottom:515.054667pt;}
.y85{bottom:517.224000pt;}
.y57{bottom:517.489333pt;}
.y216{bottom:519.273333pt;}
.y1e1{bottom:520.353333pt;}
.y161{bottom:520.588000pt;}
.y27c{bottom:520.805333pt;}
.y13{bottom:521.608000pt;}
.y1c6{bottom:522.058667pt;}
.y25b{bottom:523.009333pt;}
.yb9{bottom:524.244000pt;}
.yb8{bottom:524.864000pt;}
.y3f{bottom:525.460000pt;}
.y1a5{bottom:527.674667pt;}
.yeb{bottom:528.593333pt;}
.y2b7{bottom:529.128000pt;}
.y11a{bottom:530.256000pt;}
.y296{bottom:530.721333pt;}
.y84{bottom:533.164000pt;}
.y160{bottom:533.208000pt;}
.y56{bottom:533.429333pt;}
.y25a{bottom:533.636000pt;}
.y1e0{bottom:534.168000pt;}
.ybb{bottom:537.453333pt;}
.y12{bottom:537.548000pt;}
.y1a4{bottom:540.293333pt;}
.yba{bottom:540.737333pt;}
.y259{bottom:544.262667pt;}
.yea{bottom:544.533333pt;}
.y2b6{bottom:545.068000pt;}
.y119{bottom:546.197333pt;}
.y1c5{bottom:546.470667pt;}
.y295{bottom:546.661333pt;}
.y83{bottom:549.104000pt;}
.y55{bottom:549.369333pt;}
.y15f{bottom:551.862667pt;}
.y1a3{bottom:552.913333pt;}
.yb7{bottom:553.357333pt;}
.y11{bottom:553.488000pt;}
.y258{bottom:554.890667pt;}
.y1df{bottom:559.206667pt;}
.y118{bottom:562.137333pt;}
.y1c4{bottom:562.410667pt;}
.y294{bottom:562.601333pt;}
.y27b{bottom:564.441333pt;}
.y82{bottom:565.045333pt;}
.y3e{bottom:565.310667pt;}
.y257{bottom:565.517333pt;}
.y1a2{bottom:565.532000pt;}
.yb6{bottom:567.688000pt;}
.y10{bottom:569.428000pt;}
.ye9{bottom:570.069333pt;}
.y2b5{bottom:570.732000pt;}
.y256{bottom:576.144000pt;}
.y28f{bottom:576.484000pt;}
.y183{bottom:577.000000pt;}
.y1a1{bottom:578.152000pt;}
.y1c3{bottom:578.350667pt;}
.y293{bottom:578.541333pt;}
.y81{bottom:580.985333pt;}
.y3d{bottom:581.250667pt;}
.yb5{bottom:583.628000pt;}
.yf{bottom:585.368000pt;}
.ye8{bottom:586.009333pt;}
.y270{bottom:586.558667pt;}
.y1de{bottom:586.564000pt;}
.y2b4{bottom:586.672000pt;}
.y255{bottom:586.770667pt;}
.y1a0{bottom:590.770667pt;}
.y14a{bottom:592.092000pt;}
.y1c2{bottom:594.290667pt;}
.y215{bottom:594.973333pt;}
.y80{bottom:596.925333pt;}
.y3c{bottom:597.190667pt;}
.y254{bottom:597.397333pt;}
.ye{bottom:601.308000pt;}
.ye7{bottom:601.949333pt;}
.y1dd{bottom:602.504000pt;}
.y2b3{bottom:602.612000pt;}
.y19f{bottom:603.390667pt;}
.y149{bottom:604.710667pt;}
.y214{bottom:605.600000pt;}
.y292{bottom:605.798667pt;}
.yb1{bottom:606.825333pt;}
.y117{bottom:607.433333pt;}
.yb2{bottom:607.445333pt;}
.y1c1{bottom:610.230667pt;}
.y7f{bottom:612.865333pt;}
.y3b{bottom:613.130667pt;}
.y253{bottom:615.994667pt;}
.y19e{bottom:616.009333pt;}
.y213{bottom:616.226667pt;}
.y182{bottom:616.850667pt;}
.yd{bottom:617.249333pt;}
.y148{bottom:617.330667pt;}
.ye6{bottom:617.889333pt;}
.y1dc{bottom:618.444000pt;}
.yb4{bottom:620.036000pt;}
.y116{bottom:620.053333pt;}
.yb3{bottom:623.320000pt;}
.y1c0{bottom:626.170667pt;}
.y252{bottom:626.621333pt;}
.y212{bottom:626.853333pt;}
.y2b2{bottom:628.276000pt;}
.y19d{bottom:628.629333pt;}
.y7e{bottom:628.805333pt;}
.y34{bottom:629.070667pt;}
.y147{bottom:629.949333pt;}
.y115{bottom:632.672000pt;}
.y181{bottom:632.790667pt;}
.yc{bottom:633.189333pt;}
.ye5{bottom:633.829333pt;}
.y1db{bottom:634.384000pt;}
.yb0{bottom:635.938667pt;}
.y251{bottom:637.248000pt;}
.y211{bottom:637.481333pt;}
.y19c{bottom:641.248000pt;}
.y1bf{bottom:642.112000pt;}
.y146{bottom:642.569333pt;}
.y2b1{bottom:644.216000pt;}
.y7d{bottom:644.745333pt;}
.y33{bottom:645.010667pt;}
.y114{bottom:645.292000pt;}
.y250{bottom:647.874667pt;}
.y210{bottom:648.108000pt;}
.y180{bottom:648.730667pt;}
.yb{bottom:649.129333pt;}
.ye4{bottom:649.769333pt;}
.yaf{bottom:650.270667pt;}
.y1da{bottom:650.324000pt;}
.y19b{bottom:653.868000pt;}
.y145{bottom:655.188000pt;}
.y113{bottom:657.910667pt;}
.y1be{bottom:658.052000pt;}
.y24f{bottom:658.501333pt;}
.y20f{bottom:658.734667pt;}
.y32{bottom:660.952000pt;}
.y17f{bottom:664.670667pt;}
.ya{bottom:665.069333pt;}
.ye3{bottom:665.710667pt;}
.yae{bottom:666.210667pt;}
.y1d9{bottom:666.265333pt;}
.y19a{bottom:666.486667pt;}
.y144{bottom:667.808000pt;}
.y24e{bottom:669.128000pt;}
.y20e{bottom:669.361333pt;}
.y2b0{bottom:669.880000pt;}
.y112{bottom:670.530667pt;}
.y7c{bottom:672.641333pt;}
.y1bd{bottom:673.992000pt;}
.y31{bottom:676.892000pt;}
.y199{bottom:679.106667pt;}
.y24d{bottom:679.754667pt;}
.y143{bottom:680.426667pt;}
.y17e{bottom:680.610667pt;}
.ye2{bottom:681.650667pt;}
.yad{bottom:682.150667pt;}
.y1d8{bottom:682.205333pt;}
.y111{bottom:683.149333pt;}
.y2af{bottom:685.820000pt;}
.y20d{bottom:687.958667pt;}
.y9{bottom:688.980000pt;}
.y1bc{bottom:689.932000pt;}
.y24c{bottom:690.382667pt;}
.y198{bottom:691.725333pt;}
.y30{bottom:692.832000pt;}
.y142{bottom:693.046667pt;}
.y110{bottom:695.769333pt;}
.y17d{bottom:696.550667pt;}
.ye1{bottom:697.590667pt;}
.yac{bottom:698.090667pt;}
.y1d7{bottom:698.145333pt;}
.y20c{bottom:698.585333pt;}
.y2ae{bottom:701.760000pt;}
.y24b{bottom:704.197333pt;}
.y197{bottom:704.345333pt;}
.y141{bottom:705.665333pt;}
.y1bb{bottom:705.872000pt;}
.y10f{bottom:708.388000pt;}
.y2f{bottom:708.772000pt;}
.y20b{bottom:709.212000pt;}
.y17c{bottom:712.492000pt;}
.ye0{bottom:713.530667pt;}
.yab{bottom:714.032000pt;}
.y1d6{bottom:714.085333pt;}
.y7b{bottom:716.809333pt;}
.y196{bottom:716.964000pt;}
.y140{bottom:718.285333pt;}
.y20a{bottom:719.838667pt;}
.y10e{bottom:721.008000pt;}
.y2e{bottom:724.712000pt;}
.y2ad{bottom:727.422667pt;}
.y24a{bottom:729.236000pt;}
.y7a{bottom:729.428000pt;}
.ydf{bottom:729.470667pt;}
.y195{bottom:729.584000pt;}
.y1d5{bottom:730.025333pt;}
.y209{bottom:730.465333pt;}
.y13f{bottom:730.904000pt;}
.y1ba{bottom:733.225333pt;}
.y10d{bottom:733.626667pt;}
.ya8{bottom:737.229333pt;}
.y17b{bottom:739.058667pt;}
.y2d{bottom:740.652000pt;}
.y208{bottom:741.092000pt;}
.y79{bottom:742.048000pt;}
.y194{bottom:742.202667pt;}
.y2ac{bottom:743.364000pt;}
.y13e{bottom:743.524000pt;}
.yde{bottom:745.410667pt;}
.y10c{bottom:746.246667pt;}
.yaa{bottom:750.438667pt;}
.y207{bottom:751.718667pt;}
.ya9{bottom:753.722667pt;}
.y78{bottom:754.666667pt;}
.y193{bottom:754.822667pt;}
.y17a{bottom:754.998667pt;}
.y13d{bottom:756.142667pt;}
.y2c{bottom:756.593333pt;}
.y10b{bottom:758.865333pt;}
.y2ab{bottom:759.304000pt;}
.ydd{bottom:761.352000pt;}
.y206{bottom:762.345333pt;}
.y8{bottom:764.562667pt;}
.ya7{bottom:766.342667pt;}
.y77{bottom:767.286667pt;}
.y192{bottom:767.441333pt;}
.y13c{bottom:768.762667pt;}
.y179{bottom:770.938667pt;}
.y10a{bottom:771.485333pt;}
.y2b{bottom:772.533333pt;}
.ydc{bottom:777.292000pt;}
.y76{bottom:779.905333pt;}
.y191{bottom:780.061333pt;}
.y7{bottom:780.933333pt;}
.y205{bottom:780.942667pt;}
.y13b{bottom:781.381333pt;}
.ya6{bottom:781.412000pt;}
.y109{bottom:784.104000pt;}
.y2aa{bottom:784.966667pt;}
.y178{bottom:786.878667pt;}
.y2a{bottom:788.473333pt;}
.y204{bottom:791.569333pt;}
.y75{bottom:792.525333pt;}
.y190{bottom:792.680000pt;}
.ydb{bottom:793.232000pt;}
.y6{bottom:793.552000pt;}
.y13a{bottom:794.001333pt;}
.y108{bottom:796.724000pt;}
.ya5{bottom:797.352000pt;}
.y2a9{bottom:800.908000pt;}
.y203{bottom:802.196000pt;}
.y177{bottom:802.820000pt;}
.y29{bottom:804.413333pt;}
.y74{bottom:805.144000pt;}
.y18f{bottom:805.300000pt;}
.y5{bottom:806.172000pt;}
.y139{bottom:806.620000pt;}
.yda{bottom:809.172000pt;}
.y107{bottom:809.342667pt;}
.y202{bottom:812.822667pt;}
.y2a8{bottom:816.848000pt;}
.y73{bottom:817.764000pt;}
.y18e{bottom:817.918667pt;}
.y176{bottom:818.760000pt;}
.y138{bottom:819.240000pt;}
.y28{bottom:820.353333pt;}
.ya2{bottom:820.549333pt;}
.y106{bottom:821.962667pt;}
.y201{bottom:823.450667pt;}
.yd9{bottom:825.112000pt;}
.y2c9{bottom:825.666667pt;}
.y4{bottom:828.324000pt;}
.y72{bottom:830.382667pt;}
.y137{bottom:831.858667pt;}
.ya4{bottom:833.758667pt;}
.y200{bottom:834.077333pt;}
.y105{bottom:834.581333pt;}
.y175{bottom:834.700000pt;}
.y27{bottom:836.294667pt;}
.y18d{bottom:836.574667pt;}
.ya3{bottom:837.042667pt;}
.yd8{bottom:841.052000pt;}
.y2c8{bottom:841.608000pt;}
.y2a7{bottom:842.510667pt;}
.y71{bottom:843.002667pt;}
.y136{bottom:844.478667pt;}
.y1ff{bottom:844.704000pt;}
.y104{bottom:847.201333pt;}
.ya1{bottom:849.662667pt;}
.y26{bottom:852.234667pt;}
.y1fe{bottom:855.330667pt;}
.y70{bottom:855.621333pt;}
.yd7{bottom:856.993333pt;}
.y135{bottom:857.097333pt;}
.y2c7{bottom:857.548000pt;}
.y2a6{bottom:858.450667pt;}
.y103{bottom:859.820000pt;}
.ya0{bottom:862.074667pt;}
.y3{bottom:868.174667pt;}
.y6f{bottom:868.241333pt;}
.y1fd{bottom:869.145333pt;}
.y102{bottom:872.440000pt;}
.yd6{bottom:872.933333pt;}
.y2a5{bottom:874.392000pt;}
.y134{bottom:875.753333pt;}
.y9f{bottom:878.014667pt;}
.y6e{bottom:881.392000pt;}
.y25{bottom:884.114667pt;}
.y101{bottom:885.060000pt;}
.yd5{bottom:888.873333pt;}
.y2{bottom:892.085333pt;}
.y6d{bottom:894.010667pt;}
.y1fc{bottom:894.185333pt;}
.y100{bottom:897.678667pt;}
.y24{bottom:900.054667pt;}
.y1{bottom:915.994667pt;}
.yff{bottom:916.334667pt;}
.y6c{bottom:920.445333pt;}
.h10{height:0.000000pt;}
.h7{height:16.877733pt;}
.h3{height:22.100711pt;}
.hf{height:27.895200pt;}
.h1c{height:28.750400pt;}
.h1e{height:29.480267pt;}
.h4{height:30.350141pt;}
.h8{height:31.880400pt;}
.h18{height:32.773051pt;}
.h5{height:37.193707pt;}
.h20{height:38.043849pt;}
.h6{height:39.850400pt;}
.h9{height:41.019345pt;}
.hc{height:45.799037pt;}
.ha{height:45.804370pt;}
.h2{height:47.175200pt;}
.h1f{height:47.617640pt;}
.h11{height:48.455037pt;}
.h13{height:48.460370pt;}
.h19{height:49.831200pt;}
.he{height:50.480000pt;}
.h12{height:52.986400pt;}
.h21{height:53.279733pt;}
.h22{height:53.285067pt;}
.hb{height:53.679733pt;}
.h15{height:54.155345pt;}
.h1{height:54.630330pt;}
.hd{height:54.854012pt;}
.h1a{height:54.901067pt;}
.h16{height:61.591037pt;}
.h17{height:61.596370pt;}
.h1d{height:62.298483pt;}
.h14{height:63.616000pt;}
.h1b{height:342.720000pt;}
.h0{height:1056.000000pt;}
.w1{width:514.080000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5d{left:42.827604pt;}
.x54{left:45.034063pt;}
.x5c{left:47.674375pt;}
.x53{left:49.880833pt;}
.x52{left:54.293750pt;}
.x4f{left:79.506199pt;}
.x55{left:82.369636pt;}
.x4c{left:116.382451pt;}
.x4b{left:117.485680pt;}
.x36{left:118.712000pt;}
.x8{left:122.401333pt;}
.x5{left:124.442667pt;}
.x29{left:125.722667pt;}
.x3c{left:127.168000pt;}
.x6{left:128.402667pt;}
.x23{left:129.412000pt;}
.x5e{left:130.662000pt;}
.x1c{left:133.101333pt;}
.x9{left:136.969333pt;}
.x2{left:140.465333pt;}
.x4{left:141.489333pt;}
.xa{left:142.725333pt;}
.x1d{left:148.600000pt;}
.x4a{left:150.962667pt;}
.x3b{left:155.610667pt;}
.x1{left:170.537333pt;}
.x62{left:198.322667pt;}
.x2b{left:200.626667pt;}
.x2a{left:207.008000pt;}
.x5a{left:211.889333pt;}
.x43{left:213.332000pt;}
.x41{left:215.800000pt;}
.x31{left:221.440000pt;}
.x56{left:227.246727pt;}
.x30{left:228.409333pt;}
.xb{left:233.609333pt;}
.x2c{left:234.790667pt;}
.x5f{left:236.104000pt;}
.x46{left:237.736000pt;}
.xe{left:244.658667pt;}
.x2d{left:256.192000pt;}
.x50{left:257.912667pt;}
.x4d{left:261.259542pt;}
.x47{left:262.824000pt;}
.x2e{left:263.784000pt;}
.x51{left:265.787895pt;}
.x1e{left:267.010667pt;}
.x63{left:281.369333pt;}
.x49{left:282.865333pt;}
.x45{left:286.186667pt;}
.x61{left:288.702667pt;}
.xd{left:289.722667pt;}
.x60{left:295.861333pt;}
.x2f{left:297.364000pt;}
.x24{left:298.385333pt;}
.x3d{left:299.904000pt;}
.xf{left:302.885333pt;}
.x3e{left:306.130667pt;}
.x32{left:309.328000pt;}
.x1f{left:310.772000pt;}
.x33{left:316.920000pt;}
.x20{left:318.364000pt;}
.x38{left:324.254667pt;}
.x3f{left:330.260000pt;}
.x37{left:332.308000pt;}
.x15{left:338.230667pt;}
.x17{left:340.173333pt;}
.x35{left:341.914667pt;}
.x25{left:342.873333pt;}
.x21{left:345.430667pt;}
.x16{left:351.306667pt;}
.x10{left:353.552000pt;}
.x3{left:360.736000pt;}
.x39{left:361.762667pt;}
.x18{left:367.109333pt;}
.x57{left:372.123818pt;}
.x34{left:373.377333pt;}
.x26{left:379.068000pt;}
.x42{left:384.466667pt;}
.x1a{left:391.930667pt;}
.x3a{left:393.101333pt;}
.x7{left:394.300000pt;}
.x22{left:396.832000pt;}
.x40{left:401.358667pt;}
.x19{left:402.773333pt;}
.xc{left:404.678667pt;}
.x4e{left:406.136633pt;}
.x11{left:434.456000pt;}
.x27{left:438.277333pt;}
.x58{left:444.562364pt;}
.x28{left:445.869333pt;}
.x48{left:447.684000pt;}
.x44{left:451.004000pt;}
.x1b{left:466.470667pt;}
.x59{left:467.812800pt;}
.x12{left:470.006667pt;}
.x5b{left:476.341333pt;}
.x13{left:528.233333pt;}
.x14{left:586.460000pt;}
}




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