
    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_e0f8e8f41c871f34362f6da4.woff')format("woff");}.ff1{font-family:ff1;line-height:0.905000;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_41674e223e64059fcbc0ac7f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.735000;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_f100b483849cb0481db0b05c.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_60e5b6b566d1637f4fb9abdf.woff')format("woff");}.ff4{font-family:ff4;line-height:0.761000;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_b8995d7afd89a62b35d6db87.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_38d3176f3d363108deb37f72.woff')format("woff");}.ff6{font-family:ff6;line-height:0.707000;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_db45c69ffd2b5fbf6a269081.woff')format("woff");}.ff7{font-family:ff7;line-height:1.001000;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_684d98877a09e0d361ab0743.woff')format("woff");}.ff8{font-family:ff8;line-height:0.680000;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_2c4c8fd9b2ab2b3f14e068da.woff')format("woff");}.ff9{font-family:ff9;line-height:0.702000;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_4d5743409732a3529aeffaf3.woff')format("woff");}.ffa{font-family:ffa;line-height:0.895000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2f945fa01c5128bd616fb350.woff')format("woff");}.ffb{font-family:ffb;line-height:1.001000;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_0b3646ff0667be1c0bd4ff92.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_ad7c1b829c6ee58316828dc7.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_05c80c71fabce7b277d83d21.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_0588d9baab1d72993acf2178.woff')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_5d5d28309d38e05040385f20.woff')format("woff");}.ff10{font-family:ff10;line-height:1.001000;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_19293d255eca8c2d87b8fcb0.woff')format("woff");}.ff11{font-family:ff11;line-height:0.705000;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_fa0c431bf7b6d9e9257e387b.woff')format("woff");}.ff12{font-family:ff12;line-height:2.399000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_7e4033312de756fd40858563.woff')format("woff");}.ff13{font-family:ff13;line-height:1.025000;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_88dafb5e63aae9b459057df2.woff')format("woff");}.ff14{font-family:ff14;line-height:0.460000;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_7a807d72e29aa38cffd3246e.woff')format("woff");}.ff15{font-family:ff15;line-height:0.049000;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_a875243e6f22d48b9e077957.woff')format("woff");}.ff16{font-family:ff16;line-height:0.852000;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_88c02f01fce1376589a9adb3.woff')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_3429547fe4e1d322c6244029.woff')format("woff");}.ff18{font-family:ff18;line-height:0.688000;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_1afa49a7c6b08454c849999b.woff')format("woff");}.ff19{font-family:ff19;line-height:0.698000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_3aa49bead2450a69a8f0e75d.woff')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_66974b34621964166d5d2085.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.735000;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:ff1c;src:url('chunks/assets/font_bd0020aa9b756eb2dce8a039.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.056000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_f0501d06519cd9b34e781951.woff')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_e06de08f28b5580a8ea24b54.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.909000;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:ff1f;src:url('chunks/assets/font_28635c1d2bd0777f42458b15.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_b2185e69607c462d09a9648d.woff')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_7505d65a26ad9a5fbedf7e6e.woff')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_98d8e690793ff1c4ed323185.woff')format("woff");}.ff22{font-family:ff22;line-height:0.705000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v10{vertical-align:-84.600000px;}
.v18{vertical-align:-54.816000px;}
.v1f{vertical-align:-30.480000px;}
.v2{vertical-align:-23.952000px;}
.v25{vertical-align:-21.774000px;}
.v3{vertical-align:-8.100000px;}
.v1b{vertical-align:-5.976000px;}
.v1d{vertical-align:-1.980000px;}
.v0{vertical-align:0.000000px;}
.v17{vertical-align:5.832000px;}
.v1c{vertical-align:7.020000px;}
.v20{vertical-align:9.000000px;}
.v13{vertical-align:11.688000px;}
.v24{vertical-align:12.912000px;}
.v16{vertical-align:14.832000px;}
.vc{vertical-align:17.334000px;}
.v9{vertical-align:20.688000px;}
.v4{vertical-align:21.774000px;}
.v8{vertical-align:23.628000px;}
.v14{vertical-align:24.774000px;}
.v1{vertical-align:26.130000px;}
.v1e{vertical-align:28.794000px;}
.v15{vertical-align:30.156000px;}
.v6{vertical-align:32.154000px;}
.v27{vertical-align:36.606000px;}
.v5{vertical-align:41.154000px;}
.v26{vertical-align:45.000000px;}
.vf{vertical-align:46.992000px;}
.v21{vertical-align:49.590000px;}
.ve{vertical-align:55.992000px;}
.vb{vertical-align:62.364000px;}
.v23{vertical-align:64.782000px;}
.v12{vertical-align:65.928000px;}
.v19{vertical-align:72.744000px;}
.v7{vertical-align:81.744000px;}
.va{vertical-align:84.600000px;}
.v11{vertical-align:103.524000px;}
.v22{vertical-align:113.388000px;}
.v1a{vertical-align:125.754000px;}
.vd{vertical-align:140.592000px;}
.ls3{letter-spacing:0.000000px;}
.ls9e{letter-spacing:0.000062px;}
.lsb5{letter-spacing:0.000993px;}
.ls44{letter-spacing:0.003283px;}
.lsf1{letter-spacing:0.004503px;}
.ls3b{letter-spacing:0.004596px;}
.lsb1{letter-spacing:0.006000px;}
.lse4{letter-spacing:0.006062px;}
.ls125{letter-spacing:0.006335px;}
.ls55{letter-spacing:0.006538px;}
.lseb{letter-spacing:0.006993px;}
.lsf6{letter-spacing:0.008552px;}
.ls9c{letter-spacing:0.008835px;}
.ls96{letter-spacing:0.011070px;}
.ls7{letter-spacing:0.012000px;}
.ls1c{letter-spacing:0.012538px;}
.ls102{letter-spacing:0.013158px;}
.ls53{letter-spacing:0.014172px;}
.lsfe{letter-spacing:0.014557px;}
.lsbd{letter-spacing:0.014580px;}
.ls7d{letter-spacing:0.014604px;}
.lsb6{letter-spacing:0.015631px;}
.ls12e{letter-spacing:0.017026px;}
.ls82{letter-spacing:0.018000px;}
.ls4a{letter-spacing:0.019207px;}
.ls15{letter-spacing:0.020172px;}
.lsfc{letter-spacing:0.022300px;}
.ls3f{letter-spacing:0.024000px;}
.lsfa{letter-spacing:0.024538px;}
.ls63{letter-spacing:0.024978px;}
.ls10c{letter-spacing:0.030000px;}
.ls76{letter-spacing:0.059776px;}
.lsf4{letter-spacing:0.239102px;}
.lsf7{letter-spacing:0.240000px;}
.ls103{letter-spacing:1.174107px;}
.ls18{letter-spacing:1.176000px;}
.ls124{letter-spacing:1.176538px;}
.ls122{letter-spacing:1.179269px;}
.ls128{letter-spacing:1.179996px;}
.ls100{letter-spacing:1.180107px;}
.ls20{letter-spacing:1.182000px;}
.ls14{letter-spacing:1.195512px;}
.lsb4{letter-spacing:1.613941px;}
.ls86{letter-spacing:1.673717px;}
.ls109{letter-spacing:1.800000px;}
.ls116{letter-spacing:2.154000px;}
.ls127{letter-spacing:2.271473px;}
.ls121{letter-spacing:2.280000px;}
.lsd3{letter-spacing:2.640000px;}
.ls56{letter-spacing:2.985306px;}
.ls115{letter-spacing:2.985843px;}
.ls13{letter-spacing:2.985924px;}
.ls38{letter-spacing:2.988277px;}
.ls6d{letter-spacing:2.989208px;}
.ls4{letter-spacing:2.989542px;}
.ls0{letter-spacing:2.990340px;}
.lsa5{letter-spacing:2.990869px;}
.ls99{letter-spacing:2.991924px;}
.ls34{letter-spacing:2.994277px;}
.ls9d{letter-spacing:2.995542px;}
.lsc6{letter-spacing:3.168000px;}
.ls32{letter-spacing:3.426000px;}
.lsa0{letter-spacing:3.438000px;}
.lsa3{letter-spacing:3.444000px;}
.ls74{letter-spacing:3.466985px;}
.ls2a{letter-spacing:3.480000px;}
.ls41{letter-spacing:3.960000px;}
.ls42{letter-spacing:4.004965px;}
.lsbe{letter-spacing:4.123696px;}
.ls6f{letter-spacing:4.279518px;}
.ls40{letter-spacing:4.303843px;}
.lsb2{letter-spacing:4.495548px;}
.ls6a{letter-spacing:4.860000px;}
.ls81{letter-spacing:4.901599px;}
.lsd{letter-spacing:5.032118px;}
.ls11f{letter-spacing:5.038118px;}
.ls123{letter-spacing:5.269542px;}
.ls2{letter-spacing:5.892960px;}
.lsed{letter-spacing:5.926776px;}
.lsac{letter-spacing:5.996987px;}
.ls8{letter-spacing:6.197361px;}
.ls66{letter-spacing:6.203361px;}
.ls88{letter-spacing:6.515540px;}
.ls130{letter-spacing:6.555552px;}
.ls101{letter-spacing:6.645306px;}
.ls5b{letter-spacing:7.158538px;}
.ls1f{letter-spacing:7.170000px;}
.ls17{letter-spacing:7.176000px;}
.ls1{letter-spacing:7.241700px;}
.ls132{letter-spacing:7.489854px;}
.ls6{letter-spacing:7.492067px;}
.ls98{letter-spacing:7.498067px;}
.lscb{letter-spacing:8.112000px;}
.lsc0{letter-spacing:8.118000px;}
.ls4c{letter-spacing:8.308808px;}
.ls70{letter-spacing:8.334000px;}
.ls26{letter-spacing:8.368584px;}
.lsaf{letter-spacing:8.400000px;}
.ls126{letter-spacing:8.483361px;}
.lsab{letter-spacing:8.995480px;}
.ls120{letter-spacing:9.778067px;}
.ls10e{letter-spacing:9.960000px;}
.ls114{letter-spacing:9.996000px;}
.ls4b{letter-spacing:10.161924px;}
.lsce{letter-spacing:10.283641px;}
.lsa7{letter-spacing:10.308993px;}
.lsd2{letter-spacing:10.329687px;}
.ls6b{letter-spacing:10.800000px;}
.ls69{letter-spacing:10.860000px;}
.lsc8{letter-spacing:11.328000px;}
.lsf2{letter-spacing:11.417140px;}
.lsae{letter-spacing:11.420315px;}
.lsaa{letter-spacing:11.993973px;}
.ls117{letter-spacing:12.081843px;}
.ls71{letter-spacing:12.961518px;}
.ls10d{letter-spacing:12.961542px;}
.lsf0{letter-spacing:12.990277px;}
.lsb3{letter-spacing:12.991542px;}
.ls1b{letter-spacing:13.320000px;}
.ls1e{letter-spacing:13.329959px;}
.ls1a{letter-spacing:13.332000px;}
.ls54{letter-spacing:13.338000px;}
.ls7b{letter-spacing:13.380000px;}
.lsc2{letter-spacing:13.447542px;}
.lsf5{letter-spacing:13.449510px;}
.ls19{letter-spacing:13.815306px;}
.lsc9{letter-spacing:14.160000px;}
.ls107{letter-spacing:14.220000px;}
.ls10a{letter-spacing:14.280000px;}
.ls111{letter-spacing:14.465695px;}
.lsd8{letter-spacing:14.525471px;}
.ls97{letter-spacing:14.668067px;}
.ls8d{letter-spacing:14.820000px;}
.lsdd{letter-spacing:14.880000px;}
.lsde{letter-spacing:14.884124px;}
.lsb7{letter-spacing:14.943900px;}
.lsa9{letter-spacing:15.043288px;}
.ls43{letter-spacing:15.300000px;}
.ls118{letter-spacing:16.080000px;}
.ls1d{letter-spacing:16.205361px;}
.ls10f{letter-spacing:16.320000px;}
.ls6c{letter-spacing:16.327208px;}
.ls6e{letter-spacing:16.327542px;}
.ls87{letter-spacing:16.557841px;}
.lsd5{letter-spacing:16.560000px;}
.ls83{letter-spacing:16.617617px;}
.ls57{letter-spacing:16.677392px;}
.lsb{letter-spacing:16.680000px;}
.lsc7{letter-spacing:16.992000px;}
.lsca{letter-spacing:17.040000px;}
.lsff{letter-spacing:17.488067px;}
.ls16{letter-spacing:17.494067px;}
.ls119{letter-spacing:17.700000px;}
.lse3{letter-spacing:17.875501px;}
.lsad{letter-spacing:17.990960px;}
.lsbc{letter-spacing:18.171782px;}
.lsbb{letter-spacing:18.180000px;}
.ls93{letter-spacing:18.351109px;}
.ls95{letter-spacing:18.360000px;}
.ls84{letter-spacing:18.660000px;}
.ls79{letter-spacing:18.829314px;}
.lsa2{letter-spacing:18.840000px;}
.lsf3{letter-spacing:19.020000px;}
.lsef{letter-spacing:19.128192px;}
.ls85{letter-spacing:19.183542px;}
.lsa8{letter-spacing:19.320000px;}
.ls131{letter-spacing:19.380000px;}
.ls64{letter-spacing:19.500000px;}
.ls4e{letter-spacing:19.560000px;}
.ls39{letter-spacing:19.652869px;}
.ls108{letter-spacing:19.653306px;}
.ls65{letter-spacing:19.653924px;}
.ls36{letter-spacing:19.657208px;}
.ls33{letter-spacing:19.657542px;}
.ls3a{letter-spacing:19.965050px;}
.ls4f{letter-spacing:19.980000px;}
.lscd{letter-spacing:20.024826px;}
.ls89{letter-spacing:20.040000px;}
.ls8b{letter-spacing:20.144377px;}
.ls45{letter-spacing:20.362118px;}
.ls5d{letter-spacing:20.494375px;}
.lsdc{letter-spacing:20.562806px;}
.lsdb{letter-spacing:20.580000px;}
.ls8f{letter-spacing:20.640000px;}
.ls37{letter-spacing:20.947518px;}
.ls9f{letter-spacing:20.953518px;}
.lsc5{letter-spacing:21.157548px;}
.ls110{letter-spacing:21.160562px;}
.ls12a{letter-spacing:21.220338px;}
.ls10b{letter-spacing:21.301542px;}
.lsc1{letter-spacing:21.393811px;}
.ls8a{letter-spacing:21.519216px;}
.lsec{letter-spacing:21.540000px;}
.ls61{letter-spacing:21.578992px;}
.ls112{letter-spacing:21.720000px;}
.ls90{letter-spacing:22.140000px;}
.ls4d{letter-spacing:22.176748px;}
.ls49{letter-spacing:22.260000px;}
.lsdf{letter-spacing:22.356074px;}
.ls75{letter-spacing:22.475626px;}
.lsd7{letter-spacing:22.573542px;}
.lsb0{letter-spacing:22.576118px;}
.ls12{letter-spacing:22.865361px;}
.ls10{letter-spacing:22.871361px;}
.lse7{letter-spacing:22.920000px;}
.ls2f{letter-spacing:22.983306px;}
.ls3c{letter-spacing:22.986277px;}
.ls46{letter-spacing:22.987542px;}
.ls137{letter-spacing:23.220000px;}
.ls47{letter-spacing:23.280000px;}
.lsd0{letter-spacing:23.372260px;}
.ls67{letter-spacing:23.460000px;}
.lse1{letter-spacing:23.551501px;}
.lse0{letter-spacing:23.552353px;}
.lse2{letter-spacing:23.557208px;}
.lsda{letter-spacing:23.564645px;}
.lsf9{letter-spacing:23.580000px;}
.ls8c{letter-spacing:23.818161px;}
.ls12d{letter-spacing:23.820000px;}
.ls28{letter-spacing:23.838538px;}
.ls27{letter-spacing:23.844000px;}
.ls133{letter-spacing:24.060000px;}
.lsa{letter-spacing:24.160067px;}
.ls62{letter-spacing:24.201547px;}
.ls129{letter-spacing:24.225306px;}
.ls58{letter-spacing:24.300000px;}
.ls3d{letter-spacing:24.687323px;}
.lsd9{letter-spacing:24.732277px;}
.lsd1{letter-spacing:24.747098px;}
.lsd4{letter-spacing:24.780000px;}
.ls3e{letter-spacing:24.840000px;}
.ls59{letter-spacing:24.900000px;}
.lsa4{letter-spacing:24.926425px;}
.ls113{letter-spacing:24.960000px;}
.ls23{letter-spacing:24.986201px;}
.ls24{letter-spacing:25.498338px;}
.ls135{letter-spacing:25.680000px;}
.ls12c{letter-spacing:25.980000px;}
.ls9a{letter-spacing:26.280000px;}
.ls5{letter-spacing:26.659918px;}
.ls136{letter-spacing:26.700000px;}
.ls94{letter-spacing:26.779469px;}
.ls92{letter-spacing:26.820000px;}
.ls12f{letter-spacing:26.823306px;}
.lsfb{letter-spacing:26.893518px;}
.ls31{letter-spacing:27.000000px;}
.ls134{letter-spacing:27.044869px;}
.ls2e{letter-spacing:27.420000px;}
.lse8{letter-spacing:27.480000px;}
.lsd6{letter-spacing:27.834277px;}
.ls30{letter-spacing:28.034756px;}
.lscf{letter-spacing:28.077811px;}
.ls11c{letter-spacing:28.190362px;}
.ls11b{letter-spacing:28.244160px;}
.ls8e{letter-spacing:28.740000px;}
.ls11e{letter-spacing:29.160000px;}
.ls9b{letter-spacing:29.280000px;}
.ls12b{letter-spacing:29.400000px;}
.ls106{letter-spacing:29.460000px;}
.ls91{letter-spacing:29.700000px;}
.ls22{letter-spacing:29.967306px;}
.ls80{letter-spacing:29.988000px;}
.lsa6{letter-spacing:29.994000px;}
.ls48{letter-spacing:30.545332px;}
.ls2c{letter-spacing:30.720000px;}
.lsea{letter-spacing:30.780000px;}
.lsee{letter-spacing:31.143088px;}
.lsba{letter-spacing:31.783542px;}
.lsc3{letter-spacing:32.172000px;}
.ls9{letter-spacing:32.344067px;}
.ls105{letter-spacing:32.400000px;}
.lsf{letter-spacing:32.999361px;}
.lse9{letter-spacing:33.055907px;}
.ls68{letter-spacing:33.360000px;}
.ls2b{letter-spacing:34.140000px;}
.ls7f{letter-spacing:35.280000px;}
.ls11d{letter-spacing:36.634067px;}
.lsfd{letter-spacing:36.900000px;}
.lscc{letter-spacing:38.073811px;}
.ls5f{letter-spacing:38.212941px;}
.ls5a{letter-spacing:39.007542px;}
.ls5e{letter-spacing:39.418200px;}
.ls104{letter-spacing:39.916067px;}
.ls7e{letter-spacing:40.300118px;}
.ls138{letter-spacing:42.480000px;}
.lsf8{letter-spacing:42.949208px;}
.lse5{letter-spacing:46.474014px;}
.lse6{letter-spacing:46.482924px;}
.ls5c{letter-spacing:48.934200px;}
.ls11{letter-spacing:49.638538px;}
.ls25{letter-spacing:49.972402px;}
.ls72{letter-spacing:51.987146px;}
.lsa1{letter-spacing:56.587518px;}
.ls11a{letter-spacing:59.770022px;}
.ls51{letter-spacing:67.152000px;}
.ls78{letter-spacing:69.972808px;}
.ls35{letter-spacing:69.997228px;}
.lsc{letter-spacing:74.136538px;}
.ls50{letter-spacing:74.142538px;}
.ls29{letter-spacing:116.754000px;}
.ls7a{letter-spacing:174.545224px;}
.lsb8{letter-spacing:318.304200px;}
.ls21{letter-spacing:424.380000px;}
.lsb9{letter-spacing:505.860000px;}
.lsc4{letter-spacing:566.880000px;}
.ls60{letter-spacing:567.576000px;}
.lse{letter-spacing:672.132000px;}
.lsbf{letter-spacing:709.740000px;}
.ls7c{letter-spacing:771.170834px;}
.ls52{letter-spacing:795.840000px;}
.ls77{letter-spacing:799.357542px;}
.ls73{letter-spacing:889.560000px;}
.ls2d{letter-spacing:983.940000px;}
.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;}
}
.ws47{word-spacing:-47.502000px;}
.ws148{word-spacing:-43.320000px;}
.ws35{word-spacing:-39.084000px;}
.ws80{word-spacing:-38.782409px;}
.wsfe{word-spacing:-36.504000px;}
.ws5a{word-spacing:-34.494000px;}
.ws138{word-spacing:-33.283054px;}
.ws5{word-spacing:-32.993400px;}
.wsb0{word-spacing:-32.880000px;}
.wsb8{word-spacing:-31.920000px;}
.ws72{word-spacing:-29.994000px;}
.ws149{word-spacing:-29.124000px;}
.ws14f{word-spacing:-29.064000px;}
.ws3e{word-spacing:-28.932000px;}
.ws163{word-spacing:-28.297958px;}
.ws37{word-spacing:-26.964000px;}
.ws4c{word-spacing:-26.904000px;}
.wsfc{word-spacing:-26.424000px;}
.ws102{word-spacing:-25.492800px;}
.ws88{word-spacing:-25.275836px;}
.ws178{word-spacing:-23.664000px;}
.wsa4{word-spacing:-22.466383px;}
.ws17d{word-spacing:-22.104000px;}
.ws89{word-spacing:-21.928403px;}
.ws1{word-spacing:-20.277600px;}
.ws8f{word-spacing:-19.194000px;}
.ws69{word-spacing:-19.134000px;}
.ws8a{word-spacing:-19.104000px;}
.wsb3{word-spacing:-18.804000px;}
.wsec{word-spacing:-17.996042px;}
.ws170{word-spacing:-17.169600px;}
.ws6a{word-spacing:-16.614000px;}
.ws46{word-spacing:-16.605662px;}
.wsdd{word-spacing:-16.554000px;}
.ws193{word-spacing:-16.314000px;}
.ws3b{word-spacing:-16.254000px;}
.ws191{word-spacing:-16.194000px;}
.wsba{word-spacing:-16.164000px;}
.ws1a6{word-spacing:-16.134000px;}
.wsc4{word-spacing:-16.074000px;}
.ws16d{word-spacing:-16.014000px;}
.ws0{word-spacing:-15.993600px;}
.ws15a{word-spacing:-15.954000px;}
.ws1a{word-spacing:-15.894000px;}
.ws4f{word-spacing:-15.774000px;}
.ws18{word-spacing:-15.741600px;}
.wsa9{word-spacing:-15.654000px;}
.ws53{word-spacing:-15.534000px;}
.ws1ae{word-spacing:-15.414000px;}
.ws1bf{word-spacing:-15.354000px;}
.wsd6{word-spacing:-15.234000px;}
.wsae{word-spacing:-15.174000px;}
.ws156{word-spacing:-15.054000px;}
.wsef{word-spacing:-14.997549px;}
.ws19e{word-spacing:-14.994000px;}
.ws173{word-spacing:-14.874000px;}
.wsd2{word-spacing:-14.814000px;}
.ws197{word-spacing:-14.754000px;}
.ws79{word-spacing:-14.691446px;}
.ws7a{word-spacing:-14.634000px;}
.ws179{word-spacing:-14.574000px;}
.ws6f{word-spacing:-14.514000px;}
.wse2{word-spacing:-14.454000px;}
.ws17f{word-spacing:-14.424000px;}
.wsd4{word-spacing:-14.394000px;}
.wsaa{word-spacing:-14.334000px;}
.ws6b{word-spacing:-14.274000px;}
.wsff{word-spacing:-14.164800px;}
.ws1b1{word-spacing:-14.154000px;}
.ws1b{word-spacing:-14.094000px;}
.ws147{word-spacing:-14.064000px;}
.ws17b{word-spacing:-14.034000px;}
.ws40{word-spacing:-13.974000px;}
.ws157{word-spacing:-13.914000px;}
.wsa2{word-spacing:-13.794000px;}
.wse9{word-spacing:-13.674000px;}
.ws152{word-spacing:-13.644000px;}
.ws1b4{word-spacing:-13.614000px;}
.wsf6{word-spacing:-13.582606px;}
.ws65{word-spacing:-13.554000px;}
.wsab{word-spacing:-13.494000px;}
.ws52{word-spacing:-13.492800px;}
.wsa{word-spacing:-13.435200px;}
.ws16c{word-spacing:-13.134000px;}
.ws1a4{word-spacing:-13.014000px;}
.wsdb{word-spacing:-12.954000px;}
.wsd3{word-spacing:-12.894000px;}
.wsdc{word-spacing:-12.834000px;}
.ws1a1{word-spacing:-12.714000px;}
.ws19b{word-spacing:-12.654000px;}
.ws26{word-spacing:-12.594000px;}
.wsbf{word-spacing:-12.534000px;}
.wsc7{word-spacing:-12.474000px;}
.ws39{word-spacing:-12.424082px;}
.ws1d{word-spacing:-12.414000px;}
.ws1ad{word-spacing:-12.294000px;}
.ws8c{word-spacing:-12.264000px;}
.wsd0{word-spacing:-12.234000px;}
.wsbe{word-spacing:-12.174000px;}
.wsbd{word-spacing:-12.114000px;}
.ws1bd{word-spacing:-12.054000px;}
.wsc3{word-spacing:-11.994000px;}
.wsc6{word-spacing:-11.814000px;}
.ws145{word-spacing:-11.694000px;}
.ws9d{word-spacing:-11.634000px;}
.ws174{word-spacing:-11.604000px;}
.ws1ab{word-spacing:-11.574000px;}
.ws45{word-spacing:-11.514000px;}
.wsf7{word-spacing:-11.454000px;}
.ws9f{word-spacing:-11.334000px;}
.ws8e{word-spacing:-11.284237px;}
.ws90{word-spacing:-11.274000px;}
.ws92{word-spacing:-11.154000px;}
.ws1e{word-spacing:-11.094000px;}
.wsb1{word-spacing:-11.034000px;}
.ws4{word-spacing:-11.015400px;}
.ws6c{word-spacing:-10.974000px;}
.ws6{word-spacing:-10.949400px;}
.ws57{word-spacing:-10.734000px;}
.wsd1{word-spacing:-10.614000px;}
.ws3c{word-spacing:-10.554000px;}
.ws8b{word-spacing:-10.507154px;}
.ws82{word-spacing:-10.494000px;}
.ws83{word-spacing:-10.434000px;}
.ws1c{word-spacing:-10.314000px;}
.ws12f{word-spacing:-10.194000px;}
.ws7c{word-spacing:-10.134000px;}
.wsb6{word-spacing:-10.074000px;}
.ws12{word-spacing:-10.033200px;}
.ws71{word-spacing:-10.028950px;}
.ws22{word-spacing:-10.014000px;}
.ws34{word-spacing:-9.969174px;}
.wsbc{word-spacing:-9.954000px;}
.ws1b6{word-spacing:-9.834000px;}
.wse4{word-spacing:-9.774000px;}
.ws108{word-spacing:-9.714000px;}
.ws3d{word-spacing:-9.654000px;}
.ws4d{word-spacing:-9.534000px;}
.ws10a{word-spacing:-9.414000px;}
.wse3{word-spacing:-9.354000px;}
.ws28{word-spacing:-9.294000px;}
.ws185{word-spacing:-9.234000px;}
.ws14{word-spacing:-9.223200px;}
.wsda{word-spacing:-9.114000px;}
.wsee{word-spacing:-9.000562px;}
.wscb{word-spacing:-8.994000px;}
.wsf0{word-spacing:-8.949740px;}
.wscd{word-spacing:-8.934000px;}
.ws176{word-spacing:-8.814000px;}
.ws19{word-spacing:-8.754000px;}
.wsa8{word-spacing:-8.634000px;}
.ws190{word-spacing:-8.574000px;}
.ws192{word-spacing:-8.514000px;}
.ws16{word-spacing:-8.500800px;}
.ws25{word-spacing:-8.454000px;}
.ws21{word-spacing:-8.394000px;}
.ws2a{word-spacing:-8.334000px;}
.ws29{word-spacing:-8.274000px;}
.ws121{word-spacing:-8.214000px;}
.wsa7{word-spacing:-8.154000px;}
.ws77{word-spacing:-8.094000px;}
.wsc9{word-spacing:-8.034000px;}
.ws131{word-spacing:-7.854000px;}
.wsb2{word-spacing:-7.794000px;}
.ws42{word-spacing:-7.674000px;}
.ws10f{word-spacing:-7.637926px;}
.wsb4{word-spacing:-7.374000px;}
.wsd9{word-spacing:-7.314000px;}
.ws7b{word-spacing:-7.254000px;}
.ws11a{word-spacing:-7.074000px;}
.ws1a0{word-spacing:-7.014000px;}
.wsd5{word-spacing:-6.954000px;}
.ws119{word-spacing:-6.894000px;}
.ws41{word-spacing:-6.774000px;}
.ws27{word-spacing:-6.714000px;}
.ws7f{word-spacing:-6.681516px;}
.ws7d{word-spacing:-6.654000px;}
.ws155{word-spacing:-6.617634px;}
.ws85{word-spacing:-6.602823px;}
.ws2c{word-spacing:-6.594000px;}
.ws86{word-spacing:-6.590582px;}
.ws11{word-spacing:-6.577200px;}
.ws12b{word-spacing:-6.563361px;}
.wsb5{word-spacing:-6.534000px;}
.ws6d{word-spacing:-6.474000px;}
.wsf4{word-spacing:-6.459466px;}
.ws13b{word-spacing:-6.414000px;}
.ws196{word-spacing:-6.354000px;}
.wsb9{word-spacing:-6.234000px;}
.wsbb{word-spacing:-6.174000px;}
.ws81{word-spacing:-6.114000px;}
.wsf1{word-spacing:-6.002069px;}
.ws158{word-spacing:-5.994000px;}
.ws94{word-spacing:-5.952000px;}
.ws73{word-spacing:-5.934000px;}
.wsd8{word-spacing:-5.874000px;}
.ws133{word-spacing:-5.814000px;}
.wsa3{word-spacing:-5.805662px;}
.ws100{word-spacing:-5.668800px;}
.wsca{word-spacing:-5.634000px;}
.ws8{word-spacing:-5.551200px;}
.ws5e{word-spacing:-5.454000px;}
.ws24{word-spacing:-5.334000px;}
.ws4e{word-spacing:-5.274000px;}
.ws137{word-spacing:-5.265662px;}
.ws49{word-spacing:-5.214000px;}
.ws74{word-spacing:-5.154000px;}
.wsde{word-spacing:-5.094000px;}
.ws150{word-spacing:-5.034000px;}
.ws172{word-spacing:-4.974000px;}
.wsf2{word-spacing:-4.934808px;}
.ws1f{word-spacing:-4.914000px;}
.ws5f{word-spacing:-4.794000px;}
.ws1aa{word-spacing:-4.674000px;}
.ws17a{word-spacing:-4.614000px;}
.ws16f{word-spacing:-4.554000px;}
.ws184{word-spacing:-4.494000px;}
.ws177{word-spacing:-4.434000px;}
.ws1bc{word-spacing:-4.314000px;}
.ws17e{word-spacing:-4.254000px;}
.ws61{word-spacing:-4.194000px;}
.ws66{word-spacing:-4.134000px;}
.ws122{word-spacing:-4.074000px;}
.ws55{word-spacing:-3.954000px;}
.ws50{word-spacing:-3.894000px;}
.ws33{word-spacing:-3.834000px;}
.ws18b{word-spacing:-3.774000px;}
.wsaf{word-spacing:-3.714000px;}
.ws2b{word-spacing:-3.654000px;}
.ws67{word-spacing:-3.594000px;}
.ws175{word-spacing:-3.474000px;}
.ws18a{word-spacing:-3.354000px;}
.ws11f{word-spacing:-3.294000px;}
.ws97{word-spacing:-3.285662px;}
.wsf8{word-spacing:-3.275703px;}
.ws17c{word-spacing:-3.234000px;}
.wsb7{word-spacing:-3.174000px;}
.ws64{word-spacing:-3.114000px;}
.ws109{word-spacing:-3.054000px;}
.wsd{word-spacing:-3.013200px;}
.ws48{word-spacing:-2.994000px;}
.ws96{word-spacing:-2.826000px;}
.ws188{word-spacing:-2.814000px;}
.wse5{word-spacing:-2.754000px;}
.wsf9{word-spacing:-2.694000px;}
.ws5c{word-spacing:-2.574000px;}
.ws11c{word-spacing:-2.514000px;}
.wsc8{word-spacing:-2.454000px;}
.ws32{word-spacing:-2.334000px;}
.wsc{word-spacing:-2.257200px;}
.ws2d{word-spacing:-2.214000px;}
.ws118{word-spacing:-2.154000px;}
.ws10e{word-spacing:-2.145662px;}
.wsdf{word-spacing:-1.974000px;}
.ws58{word-spacing:-1.914000px;}
.wsf{word-spacing:-1.825200px;}
.ws54{word-spacing:-1.794000px;}
.ws112{word-spacing:-1.721537px;}
.ws189{word-spacing:-1.674000px;}
.ws7{word-spacing:-1.555200px;}
.ws1a2{word-spacing:-1.554000px;}
.ws1a3{word-spacing:-1.494000px;}
.ws20{word-spacing:-1.434000px;}
.ws9{word-spacing:-1.393200px;}
.ws134{word-spacing:-1.314000px;}
.ws18c{word-spacing:-1.134000px;}
.wsb{word-spacing:-0.961200px;}
.ws120{word-spacing:-0.894000px;}
.ws11e{word-spacing:-0.714000px;}
.wsea{word-spacing:-0.596787px;}
.ws70{word-spacing:-0.590787px;}
.ws126{word-spacing:-0.589523px;}
.ws60{word-spacing:-0.534000px;}
.ws10{word-spacing:-0.529200px;}
.wsac{word-spacing:-0.474000px;}
.wsad{word-spacing:-0.414000px;}
.ws195{word-spacing:-0.354000px;}
.ws198{word-spacing:-0.294000px;}
.wsa6{word-spacing:-0.114000px;}
.ws84{word-spacing:-0.060000px;}
.wse8{word-spacing:-0.058799px;}
.wse{word-spacing:-0.054000px;}
.ws15b{word-spacing:-0.053798px;}
.ws3{word-spacing:-0.046200px;}
.wsa0{word-spacing:-0.041999px;}
.wsed{word-spacing:-0.035575px;}
.ws23{word-spacing:-0.033600px;}
.ws63{word-spacing:-0.028800px;}
.ws17{word-spacing:0.000000px;}
.ws103{word-spacing:0.006000px;}
.ws38{word-spacing:0.011955px;}
.ws36{word-spacing:0.014338px;}
.ws2e{word-spacing:0.066000px;}
.ws3a{word-spacing:0.071731px;}
.wse7{word-spacing:0.186000px;}
.wsc1{word-spacing:0.246000px;}
.ws171{word-spacing:0.306000px;}
.ws13{word-spacing:0.334800px;}
.ws19a{word-spacing:0.366000px;}
.wsc5{word-spacing:0.426000px;}
.ws9a{word-spacing:0.456000px;}
.ws30{word-spacing:0.486000px;}
.ws194{word-spacing:0.606000px;}
.ws12c{word-spacing:0.726000px;}
.ws12a{word-spacing:0.786000px;}
.ws1ba{word-spacing:0.906000px;}
.ws95{word-spacing:1.296000px;}
.ws59{word-spacing:1.446000px;}
.ws1b0{word-spacing:1.506000px;}
.ws1be{word-spacing:1.566000px;}
.ws199{word-spacing:1.686000px;}
.ws31{word-spacing:1.866000px;}
.ws1ac{word-spacing:2.106000px;}
.wsd7{word-spacing:2.346000px;}
.ws136{word-spacing:2.474338px;}
.wsc2{word-spacing:2.766000px;}
.ws14c{word-spacing:2.940960px;}
.ws56{word-spacing:2.949916px;}
.ws10d{word-spacing:3.000735px;}
.ws107{word-spacing:3.246000px;}
.ws9e{word-spacing:3.374338px;}
.wsa5{word-spacing:3.434338px;}
.ws68{word-spacing:3.546000px;}
.ws18d{word-spacing:3.606000px;}
.ws1bb{word-spacing:3.666000px;}
.ws2f{word-spacing:3.846000px;}
.ws14d{word-spacing:3.875382px;}
.ws110{word-spacing:3.957145px;}
.ws139{word-spacing:3.966000px;}
.wse6{word-spacing:4.146000px;}
.ws19f{word-spacing:4.986000px;}
.wse1{word-spacing:5.046000px;}
.wsc0{word-spacing:5.106000px;}
.ws9c{word-spacing:5.226000px;}
.ws98{word-spacing:5.273604px;}
.ws9b{word-spacing:5.286000px;}
.wscf{word-spacing:5.406000px;}
.ws1b2{word-spacing:5.586000px;}
.ws111{word-spacing:5.714338px;}
.ws1a5{word-spacing:5.886000px;}
.ws13a{word-spacing:5.989515px;}
.ws146{word-spacing:6.053364px;}
.ws116{word-spacing:6.066000px;}
.ws159{word-spacing:6.074345px;}
.ws13c{word-spacing:6.075826px;}
.ws144{word-spacing:6.076782px;}
.ws14e{word-spacing:6.080807px;}
.ws114{word-spacing:6.110462px;}
.ws117{word-spacing:6.126000px;}
.ws18f{word-spacing:6.186000px;}
.ws125{word-spacing:6.407944px;}
.ws1af{word-spacing:6.606000px;}
.ws16e{word-spacing:6.794338px;}
.ws1a9{word-spacing:7.146000px;}
.ws4a{word-spacing:7.326000px;}
.ws186{word-spacing:7.986000px;}
.ws127{word-spacing:7.994338px;}
.wsa1{word-spacing:8.106000px;}
.ws105{word-spacing:8.234338px;}
.ws13e{word-spacing:8.260988px;}
.ws13f{word-spacing:8.294338px;}
.ws62{word-spacing:9.194338px;}
.ws87{word-spacing:9.405213px;}
.ws5d{word-spacing:9.405746px;}
.ws123{word-spacing:9.934705px;}
.ws12e{word-spacing:10.626000px;}
.ws154{word-spacing:10.711788px;}
.ws1b9{word-spacing:10.746000px;}
.ws14b{word-spacing:10.754338px;}
.ws76{word-spacing:10.806000px;}
.ws19c{word-spacing:10.866000px;}
.ws10c{word-spacing:11.046000px;}
.ws101{word-spacing:11.455200px;}
.ws141{word-spacing:11.554782px;}
.ws18e{word-spacing:11.646000px;}
.wsfa{word-spacing:12.206178px;}
.ws124{word-spacing:12.428807px;}
.ws1b8{word-spacing:12.486000px;}
.wsce{word-spacing:12.588000px;}
.ws140{word-spacing:12.854338px;}
.ws1a8{word-spacing:13.866000px;}
.ws1a7{word-spacing:13.926000px;}
.ws12d{word-spacing:14.174338px;}
.ws10b{word-spacing:14.286000px;}
.ws135{word-spacing:14.537426px;}
.ws151{word-spacing:15.045887px;}
.ws143{word-spacing:16.574338px;}
.wsfb{word-spacing:16.677213px;}
.ws153{word-spacing:16.722998px;}
.ws104{word-spacing:16.749123px;}
.ws15{word-spacing:16.944000px;}
.ws129{word-spacing:18.004411px;}
.ws187{word-spacing:18.186000px;}
.ws14a{word-spacing:18.307063px;}
.ws115{word-spacing:19.454338px;}
.wsf5{word-spacing:19.536000px;}
.ws93{word-spacing:19.618413px;}
.ws4b{word-spacing:21.066000px;}
.wsf3{word-spacing:21.802604px;}
.ws130{word-spacing:22.080000px;}
.ws132{word-spacing:22.140000px;}
.ws5b{word-spacing:22.405832px;}
.ws11b{word-spacing:22.860000px;}
.ws2{word-spacing:23.400000px;}
.ws1b7{word-spacing:24.006000px;}
.ws128{word-spacing:24.030029px;}
.ws1b5{word-spacing:24.720000px;}
.ws19d{word-spacing:25.140000px;}
.ws99{word-spacing:25.476361px;}
.ws106{word-spacing:25.506000px;}
.ws6e{word-spacing:26.458413px;}
.ws113{word-spacing:26.851200px;}
.ws11d{word-spacing:27.360000px;}
.ws142{word-spacing:28.097364px;}
.ws15d{word-spacing:28.136563px;}
.ws15c{word-spacing:28.190362px;}
.ws13d{word-spacing:28.934338px;}
.ws51{word-spacing:29.041832px;}
.ws44{word-spacing:29.397746px;}
.wscc{word-spacing:30.447746px;}
.ws91{word-spacing:30.612016px;}
.ws3f{word-spacing:30.876000px;}
.ws7e{word-spacing:32.757746px;}
.ws1b3{word-spacing:35.700000px;}
.ws75{word-spacing:38.646016px;}
.ws168{word-spacing:56.434522px;}
.ws15e{word-spacing:59.740135px;}
.wse0{word-spacing:81.006000px;}
.ws43{word-spacing:90.876000px;}
.ws15f{word-spacing:172.716775px;}
.ws160{word-spacing:285.639616px;}
.ws181{word-spacing:370.372096px;}
.ws167{word-spacing:398.562458px;}
.ws161{word-spacing:398.616256px;}
.wseb{word-spacing:443.360266px;}
.ws8d{word-spacing:504.636000px;}
.ws164{word-spacing:511.539098px;}
.ws180{word-spacing:539.783258px;}
.ws182{word-spacing:596.271578px;}
.ws166{word-spacing:624.461939px;}
.ws165{word-spacing:624.515738px;}
.ws16b{word-spacing:680.950259px;}
.ws16a{word-spacing:737.438579px;}
.ws162{word-spacing:765.682739px;}
.ws183{word-spacing:793.926899px;}
.wsfd{word-spacing:806.122800px;}
.ws78{word-spacing:869.622000px;}
.ws169{word-spacing:906.849741px;}
._34{margin-left:-28.297958px;}
._17{margin-left:-22.176748px;}
._32{margin-left:-16.677392px;}
._1a{margin-left:-10.020000px;}
._1{margin-left:-7.956000px;}
._4{margin-left:-6.390000px;}
._2{margin-left:-5.124000px;}
._9{margin-left:-4.068000px;}
._0{margin-left:-2.652000px;}
._6{margin-left:-1.512000px;}
._5{width:1.848000px;}
._3{width:2.992680px;}
._19{width:4.860000px;}
._d{width:6.420000px;}
._20{width:8.704808px;}
._10{width:10.002000px;}
._e{width:12.684000px;}
._14{width:13.824000px;}
._8{width:15.132000px;}
._3d{width:16.452000px;}
._22{width:18.444000px;}
._1d{width:19.524000px;}
._b{width:20.664000px;}
._3c{width:21.912000px;}
._15{width:22.980000px;}
._21{width:24.072000px;}
._a{width:25.692000px;}
._f{width:27.186000px;}
._3a{width:28.190362px;}
._31{width:29.712000px;}
._c{width:31.092000px;}
._16{width:32.130000px;}
._12{width:33.912000px;}
._13{width:35.244000px;}
._1e{width:36.552000px;}
._1f{width:37.788000px;}
._33{width:38.800625px;}
._11{width:40.464000px;}
._30{width:41.652000px;}
._2e{width:44.514236px;}
._7{width:47.208000px;}
._35{width:56.488320px;}
._1b{width:57.646699px;}
._18{width:70.440000px;}
._2f{width:81.000000px;}
._37{width:84.678682px;}
._2d{width:95.256000px;}
._36{width:112.922842px;}
._39{width:141.113203px;}
._1c{width:156.990000px;}
._3b{width:169.357363px;}
._23{width:185.862996px;}
._38{width:197.601523px;}
._24{width:220.913872px;}
._26{width:246.629627px;}
._25{width:317.556110px;}
._27{width:406.638935px;}
._29{width:470.540400px;}
._2c{width:484.834800px;}
._2a{width:489.241200px;}
._2b{width:538.311600px;}
._28{width:627.738000px;}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:29.887800px;}
.fsf{font-size:33.600000px;}
.fse{font-size:35.575344px;}
.fs6{font-size:37.800000px;}
.fsb{font-size:41.999400px;}
.fs3{font-size:46.200000px;}
.fs7{font-size:48.000000px;}
.fs2{font-size:50.400000px;}
.fsd{font-size:50.821920px;}
.fs11{font-size:53.798400px;}
.fs5{font-size:54.000000px;}
.fsc{font-size:58.799400px;}
.fsa{font-size:59.775600px;}
.fs8{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs9{font-size:84.000000px;}
.fs0{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y11f{bottom:283.818000px;}
.y1c{bottom:283.819500px;}
.y174{bottom:330.748500px;}
.y6a{bottom:330.990000px;}
.y24d{bottom:331.068000px;}
.y1eb{bottom:331.860000px;}
.yb3{bottom:334.459500px;}
.y228{bottom:334.624500px;}
.y92{bottom:337.468500px;}
.yb2{bottom:338.167500px;}
.y22c{bottom:340.086000px;}
.y199{bottom:345.450000px;}
.y1ea{bottom:348.298500px;}
.y69{bottom:348.990000px;}
.y25a{bottom:349.068000px;}
.y212{bottom:349.845000px;}
.y227{bottom:351.063000px;}
.y159{bottom:353.625000px;}
.y158{bottom:353.649000px;}
.y11e{bottom:354.160500px;}
.y91{bottom:355.468500px;}
.y22b{bottom:358.086000px;}
.y43{bottom:359.929500px;}
.y173{bottom:360.705000px;}
.y198{bottom:363.450000px;}
.y24c{bottom:364.012500px;}
.y1e9{bottom:364.737000px;}
.yfd{bottom:366.609000px;}
.y263{bottom:367.068000px;}
.y226{bottom:367.501500px;}
.y211{bottom:367.845000px;}
.y41{bottom:370.218000px;}
.y11d{bottom:372.160500px;}
.y13f{bottom:372.217500px;}
.y1bb{bottom:372.291000px;}
.y90{bottom:373.468500px;}
.yb1{bottom:374.167500px;}
.y22a{bottom:376.086000px;}
.y68{bottom:379.663500px;}
.y42{bottom:380.365500px;}
.y1e8{bottom:381.175500px;}
.y24b{bottom:382.012500px;}
.y225{bottom:383.940000px;}
.yfc{bottom:384.609000px;}
.y210{bottom:385.845000px;}
.y157{bottom:389.557500px;}
.y8f{bottom:389.778000px;}
.y13e{bottom:390.217500px;}
.y197{bottom:390.415500px;}
.yb0{bottom:392.167500px;}
.yd7{bottom:396.276000px;}
.y1e7{bottom:397.614000px;}
.y11c{bottom:399.126000px;}
.y1ba{bottom:399.339000px;}
.y24a{bottom:400.012500px;}
.y8d{bottom:400.066500px;}
.y67{bottom:400.101000px;}
.y224{bottom:400.378500px;}
.y172{bottom:402.184500px;}
.yfb{bottom:402.609000px;}
.y20f{bottom:403.845000px;}
.yaf{bottom:404.994000px;}
.y229{bottom:407.536500px;}
.y156{bottom:407.557500px;}
.yae{bottom:410.167500px;}
.y8e{bottom:410.214000px;}
.y196{bottom:411.415500px;}
.y40{bottom:413.125500px;}
.y1e6{bottom:414.052500px;}
.yd6{bottom:414.276000px;}
.y223{bottom:416.817000px;}
.y11b{bottom:417.126000px;}
.y1b9{bottom:417.339000px;}
.y249{bottom:418.012500px;}
.y20e{bottom:418.137000px;}
.y171{bottom:420.184500px;}
.yfa{bottom:420.609000px;}
.y20d{bottom:421.845000px;}
.y8c{bottom:422.125500px;}
.y155{bottom:425.557500px;}
.yad{bottom:428.167500px;}
.y13d{bottom:429.286500px;}
.y1e5{bottom:430.489500px;}
.y3f{bottom:431.125500px;}
.y1b{bottom:432.001500px;}
.yd5{bottom:432.276000px;}
.y66{bottom:432.861000px;}
.y222{bottom:433.255500px;}
.y11a{bottom:435.126000px;}
.y1b8{bottom:435.339000px;}
.y262{bottom:436.012500px;}
.y20c{bottom:436.137000px;}
.y170{bottom:438.184500px;}
.yf9{bottom:438.609000px;}
.y20b{bottom:439.845000px;}
.y8b{bottom:440.125500px;}
.y13c{bottom:445.666500px;}
.yac{bottom:446.167500px;}
.y1a{bottom:446.251500px;}
.y1e4{bottom:446.928000px;}
.y3e{bottom:449.125500px;}
.yd4{bottom:449.503500px;}
.y221{bottom:449.694000px;}
.y195{bottom:450.348000px;}
.y65{bottom:450.861000px;}
.y248{bottom:450.955500px;}
.y119{bottom:453.126000px;}
.y1b7{bottom:453.339000px;}
.y16f{bottom:456.184500px;}
.yf8{bottom:456.609000px;}
.y154{bottom:457.195500px;}
.y20a{bottom:457.845000px;}
.y8a{bottom:458.125500px;}
.yd3{bottom:459.792000px;}
.y1e3{bottom:463.366500px;}
.yab{bottom:464.167500px;}
.y220{bottom:466.131000px;}
.y3d{bottom:467.125500px;}
.y153{bottom:467.484000px;}
.y152{bottom:467.508000px;}
.y194{bottom:468.348000px;}
.y64{bottom:468.861000px;}
.y247{bottom:468.955500px;}
.y1b6{bottom:471.339000px;}
.y118{bottom:472.620000px;}
.y16e{bottom:474.184500px;}
.yf7{bottom:474.609000px;}
.y19{bottom:475.446000px;}
.y209{bottom:475.845000px;}
.y89{bottom:476.125500px;}
.y1e2{bottom:479.805000px;}
.y193{bottom:483.120000px;}
.y3c{bottom:485.125500px;}
.y191{bottom:486.348000px;}
.y63{bottom:486.861000px;}
.y259{bottom:486.955500px;}
.y13b{bottom:487.599000px;}
.y117{bottom:489.126000px;}
.y1b5{bottom:489.339000px;}
.y192{bottom:489.448500px;}
.y18{bottom:491.946000px;}
.yf6{bottom:492.609000px;}
.y208{bottom:493.845000px;}
.y88{bottom:494.125500px;}
.y1e1{bottom:496.243500px;}
.y21f{bottom:499.008000px;}
.ya9{bottom:500.149500px;}
.y246{bottom:501.900000px;}
.y190{bottom:504.348000px;}
.y62{bottom:504.861000px;}
.y267{bottom:504.955500px;}
.y13a{bottom:505.599000px;}
.yd2{bottom:506.127000px;}
.y116{bottom:507.126000px;}
.y1b4{bottom:507.339000px;}
.y17{bottom:508.446000px;}
.yaa{bottom:510.439500px;}
.yf5{bottom:510.609000px;}
.y151{bottom:511.182000px;}
.y207{bottom:511.845000px;}
.y1e0{bottom:512.682000px;}
.y21e{bottom:515.446500px;}
.y3b{bottom:516.574500px;}
.y245{bottom:519.900000px;}
.ya8{bottom:520.587000px;}
.y18f{bottom:522.348000px;}
.y61{bottom:522.861000px;}
.y139{bottom:523.599000px;}
.y16{bottom:524.946000px;}
.y115{bottom:525.126000px;}
.y1b3{bottom:525.339000px;}
.y87{bottom:525.574500px;}
.y1df{bottom:529.120500px;}
.y150{bottom:529.182000px;}
.y206{bottom:529.845000px;}
.y21d{bottom:531.885000px;}
.y18e{bottom:537.120000px;}
.y16d{bottom:537.150000px;}
.y258{bottom:537.900000px;}
.y1b2{bottom:539.434500px;}
.y18c{bottom:540.348000px;}
.y15{bottom:541.446000px;}
.y138{bottom:541.599000px;}
.yf4{bottom:542.058000px;}
.yd1{bottom:542.127000px;}
.y1b1{bottom:543.339000px;}
.y18d{bottom:543.448500px;}
.y114{bottom:544.620000px;}
.y1de{bottom:545.559000px;}
.y14f{bottom:547.182000px;}
.y205{bottom:547.845000px;}
.y21c{bottom:548.323500px;}
.y60{bottom:549.826500px;}
.y244{bottom:552.843000px;}
.ya7{bottom:554.181000px;}
.y16c{bottom:555.150000px;}
.y257{bottom:555.900000px;}
.y14{bottom:557.946000px;}
.y3a{bottom:558.507000px;}
.y137{bottom:559.599000px;}
.yd0{bottom:560.127000px;}
.y113{bottom:561.126000px;}
.y1b0{bottom:561.339000px;}
.y1dd{bottom:561.997500px;}
.y21b{bottom:564.762000px;}
.y204{bottom:565.845000px;}
.yf3{bottom:566.058000px;}
.y86{bottom:567.507000px;}
.y243{bottom:570.843000px;}
.y261{bottom:570.844500px;}
.ya6{bottom:572.181000px;}
.y266{bottom:573.900000px;}
.y13{bottom:574.446000px;}
.y39{bottom:576.507000px;}
.y136{bottom:577.599000px;}
.ycf{bottom:578.127000px;}
.y1dc{bottom:578.436000px;}
.y14e{bottom:578.632500px;}
.y112{bottom:579.126000px;}
.y1af{bottom:579.339000px;}
.y18b{bottom:579.609000px;}
.y21a{bottom:581.200500px;}
.y16b{bottom:582.117000px;}
.y203{bottom:583.845000px;}
.y85{bottom:585.507000px;}
.y5f{bottom:588.759000px;}
.y242{bottom:588.843000px;}
.y260{bottom:588.844500px;}
.ya5{bottom:590.181000px;}
.y12{bottom:590.946000px;}
.y38{bottom:594.507000px;}
.y1db{bottom:594.874500px;}
.y135{bottom:595.599000px;}
.yce{bottom:596.127000px;}
.y1ae{bottom:597.339000px;}
.y18a{bottom:597.609000px;}
.y219{bottom:597.639000px;}
.y111{bottom:598.620000px;}
.y16a{bottom:600.117000px;}
.y202{bottom:601.845000px;}
.y84{bottom:603.507000px;}
.y5e{bottom:606.759000px;}
.y256{bottom:606.843000px;}
.y25f{bottom:606.844500px;}
.y11{bottom:607.446000px;}
.yf2{bottom:607.990500px;}
.ya4{bottom:608.181000px;}
.y1da{bottom:611.311500px;}
.y37{bottom:612.507000px;}
.y134{bottom:613.599000px;}
.y218{bottom:614.077500px;}
.ycd{bottom:614.127000px;}
.y110{bottom:615.126000px;}
.y1ad{bottom:615.339000px;}
.y189{bottom:615.609000px;}
.y83{bottom:616.335000px;}
.y169{bottom:618.117000px;}
.y201{bottom:619.845000px;}
.y82{bottom:621.508500px;}
.y241{bottom:621.787500px;}
.y10{bottom:623.946000px;}
.y5d{bottom:624.759000px;}
.y255{bottom:624.843000px;}
.y265{bottom:624.844500px;}
.yf1{bottom:625.990500px;}
.ya3{bottom:626.181000px;}
.y1d9{bottom:627.750000px;}
.y36{bottom:630.507000px;}
.y217{bottom:630.514500px;}
.y133{bottom:631.599000px;}
.ycc{bottom:632.127000px;}
.y10f{bottom:633.126000px;}
.y1ac{bottom:633.339000px;}
.y188{bottom:633.609000px;}
.y200{bottom:637.845000px;}
.y81{bottom:639.508500px;}
.y240{bottom:639.787500px;}
.yf{bottom:640.446000px;}
.y5c{bottom:642.759000px;}
.yf0{bottom:643.990500px;}
.y1d8{bottom:644.188500px;}
.y216{bottom:646.953000px;}
.y35{bottom:648.507000px;}
.y168{bottom:649.566000px;}
.y1ab{bottom:651.339000px;}
.y187{bottom:651.609000px;}
.y10e{bottom:652.620000px;}
.y1ff{bottom:655.845000px;}
.ye{bottom:656.946000px;}
.y80{bottom:657.508500px;}
.y23f{bottom:657.787500px;}
.ya2{bottom:657.817500px;}
.ycb{bottom:659.094000px;}
.y1d7{bottom:660.627000px;}
.y5b{bottom:660.759000px;}
.yef{bottom:661.990500px;}
.y215{bottom:663.391500px;}
.y34{bottom:666.507000px;}
.y132{bottom:667.531500px;}
.y10d{bottom:669.126000px;}
.y1aa{bottom:669.339000px;}
.yd{bottom:673.446000px;}
.y14d{bottom:674.623500px;}
.y7f{bottom:675.508500px;}
.y254{bottom:675.787500px;}
.y1d6{bottom:677.065500px;}
.ya1{bottom:678.255000px;}
.yca{bottom:678.588000px;}
.y5a{bottom:678.759000px;}
.yee{bottom:679.990500px;}
.y10c{bottom:681.954000px;}
.y186{bottom:683.058000px;}
.y33{bottom:684.507000px;}
.y10b{bottom:687.126000px;}
.y1fe{bottom:687.295500px;}
.y1a9{bottom:687.339000px;}
.y23e{bottom:690.732000px;}
.y1d5{bottom:693.504000px;}
.y253{bottom:693.787500px;}
.yc{bottom:694.429500px;}
.yc9{bottom:696.588000px;}
.y59{bottom:696.759000px;}
.yed{bottom:697.990500px;}
.y214{bottom:699.406500px;}
.y10a{bottom:701.818500px;}
.y32{bottom:702.507000px;}
.y131{bottom:703.465500px;}
.y14c{bottom:703.803673px;}
.y1a8{bottom:705.339000px;}
.y109{bottom:706.990500px;}
.y185{bottom:707.058000px;}
.y23d{bottom:708.732000px;}
.y1d4{bottom:709.942500px;}
.y1fd{bottom:711.295500px;}
.y7e{bottom:711.441000px;}
.ya0{bottom:712.807500px;}
.yc8{bottom:714.588000px;}
.yec{bottom:715.990500px;}
.y213{bottom:720.406500px;}
.y31{bottom:720.507000px;}
.y1a7{bottom:723.339000px;}
.y108{bottom:724.990500px;}
.y1d3{bottom:726.381000px;}
.y252{bottom:726.732000px;}
.y58{bottom:727.434000px;}
.y7d{bottom:729.441000px;}
.y9f{bottom:730.807500px;}
.y14b{bottom:733.979188px;}
.yeb{bottom:733.990500px;}
.y57{bottom:737.724000px;}
.y30{bottom:738.507000px;}
.y130{bottom:739.398000px;}
.yc7{bottom:740.059500px;}
.y1a6{bottom:741.339000px;}
.y23c{bottom:741.675000px;}
.y1d2{bottom:742.819500px;}
.y7c{bottom:743.253000px;}
.y167{bottom:743.485500px;}
.y107{bottom:744.486000px;}
.y251{bottom:744.732000px;}
.yb{bottom:746.794500px;}
.y7b{bottom:747.441000px;}
.y9e{bottom:748.807500px;}
.y184{bottom:748.990500px;}
.y14a{bottom:749.066946px;}
.yea{bottom:751.990500px;}
.y1fc{bottom:753.228000px;}
.y1a5{bottom:755.631000px;}
.y2f{bottom:756.507000px;}
.yc6{bottom:758.059500px;}
.y1d1{bottom:759.258000px;}
.y1a4{bottom:759.339000px;}
.y23b{bottom:759.675000px;}
.y7a{bottom:765.441000px;}
.y9d{bottom:766.807500px;}
.y183{bottom:766.990500px;}
.ya{bottom:767.044500px;}
.y106{bottom:769.957500px;}
.ye9{bottom:769.990500px;}
.y166{bottom:770.632500px;}
.y1fb{bottom:771.228000px;}
.y1a3{bottom:773.631000px;}
.y2e{bottom:774.507000px;}
.y12f{bottom:775.330500px;}
.y1d0{bottom:775.695000px;}
.yc5{bottom:776.059500px;}
.y1a2{bottom:777.339000px;}
.y23a{bottom:777.675000px;}
.y149{bottom:779.242461px;}
.y56{bottom:782.424000px;}
.y79{bottom:783.441000px;}
.y182{bottom:784.990500px;}
.y9c{bottom:785.247000px;}
.y105{bottom:787.957500px;}
.ye8{bottom:787.990500px;}
.y9b{bottom:788.956500px;}
.y1fa{bottom:789.228000px;}
.y1a1{bottom:791.091000px;}
.y1cf{bottom:792.133500px;}
.y2d{bottom:792.507000px;}
.y12e{bottom:793.330500px;}
.yc4{bottom:794.059500px;}
.y148{bottom:794.330218px;}
.y1a0{bottom:795.339000px;}
.y250{bottom:795.675000px;}
.y9a{bottom:799.245000px;}
.y165{bottom:799.731000px;}
.y55{bottom:800.424000px;}
.y78{bottom:801.441000px;}
.y181{bottom:802.990500px;}
.y104{bottom:805.957500px;}
.ye7{bottom:805.990500px;}
.y1f9{bottom:807.228000px;}
.y1ce{bottom:808.572000px;}
.y2c{bottom:810.507000px;}
.y239{bottom:810.619500px;}
.y12d{bottom:811.330500px;}
.y19f{bottom:813.339000px;}
.y54{bottom:818.424000px;}
.y77{bottom:819.441000px;}
.yc3{bottom:821.026500px;}
.y99{bottom:823.096500px;}
.y9{bottom:823.159500px;}
.y103{bottom:823.957500px;}
.ye6{bottom:823.990500px;}
.y147{bottom:824.505733px;}
.y1cd{bottom:825.010500px;}
.y1f8{bottom:825.228000px;}
.y164{bottom:828.231000px;}
.y2b{bottom:828.507000px;}
.y238{bottom:828.619500px;}
.y19e{bottom:831.339000px;}
.y180{bottom:834.441000px;}
.y53{bottom:836.424000px;}
.y76{bottom:837.441000px;}
.y12c{bottom:838.296000px;}
.y1cc{bottom:841.449000px;}
.ye5{bottom:841.990500px;}
.y1f7{bottom:843.228000px;}
.y8{bottom:843.409500px;}
.y2a{bottom:846.507000px;}
.y237{bottom:846.619500px;}
.y19d{bottom:849.339000px;}
.y52{bottom:854.424000px;}
.y146{bottom:854.681248px;}
.y98{bottom:855.105000px;}
.y102{bottom:855.406500px;}
.y75{bottom:855.441000px;}
.y163{bottom:856.731000px;}
.y12b{bottom:857.791500px;}
.y1cb{bottom:857.887500px;}
.yc2{bottom:859.959000px;}
.ye4{bottom:859.990500px;}
.y1f6{bottom:861.228000px;}
.y25e{bottom:864.619500px;}
.y97{bottom:865.395000px;}
.y19c{bottom:867.339000px;}
.y7{bottom:869.647500px;}
.y74{bottom:873.441000px;}
.y12a{bottom:874.296000px;}
.y1ca{bottom:874.326000px;}
.y29{bottom:877.957500px;}
.yc1{bottom:877.959000px;}
.ye3{bottom:877.990500px;}
.y1f5{bottom:879.228000px;}
.y101{bottom:879.406500px;}
.y236{bottom:879.564000px;}
.y6{bottom:883.909500px;}
.y51{bottom:884.520000px;}
.y162{bottom:885.231000px;}
.y19b{bottom:885.339000px;}
.y145{bottom:885.488861px;}
.y50{bottom:888.228000px;}
.y1c9{bottom:890.764500px;}
.y73{bottom:891.441000px;}
.y129{bottom:892.296000px;}
.y17f{bottom:894.373500px;}
.ye2{bottom:895.990500px;}
.y1f4{bottom:897.228000px;}
.y235{bottom:897.564000px;}
.y4f{bottom:898.518000px;}
.yc0{bottom:899.883000px;}
.y19a{bottom:903.339000px;}
.y5{bottom:904.159500px;}
.y1c8{bottom:907.203000px;}
.y96{bottom:908.218500px;}
.y72{bottom:909.441000px;}
.ybf{bottom:910.441500px;}
.y128{bottom:911.791500px;}
.y17e{bottom:912.373500px;}
.y161{bottom:913.731000px;}
.y1f3{bottom:915.228000px;}
.y25d{bottom:915.564000px;}
.y28{bottom:919.890000px;}
.y100{bottom:921.339000px;}
.ye1{bottom:922.957500px;}
.y1c7{bottom:923.641500px;}
.y17d{bottom:930.373500px;}
.y4{bottom:930.397500px;}
.y234{bottom:930.507000px;}
.y1f2{bottom:933.228000px;}
.y264{bottom:933.564000px;}
.y71{bottom:936.406500px;}
.ybe{bottom:937.209000px;}
.y127{bottom:937.263000px;}
.y27{bottom:937.890000px;}
.yff{bottom:939.339000px;}
.y1c6{bottom:940.078500px;}
.y95{bottom:940.227000px;}
.y160{bottom:942.828000px;}
.y4e{bottom:943.218000px;}
.y17c{bottom:948.373500px;}
.y233{bottom:948.507000px;}
.y94{bottom:950.515500px;}
.y1f1{bottom:951.228000px;}
.y144{bottom:951.675000px;}
.y3{bottom:955.120500px;}
.y126{bottom:955.263000px;}
.y26{bottom:955.890000px;}
.y4d{bottom:956.046000px;}
.y1c5{bottom:956.517000px;}
.yfe{bottom:957.339000px;}
.ybc{bottom:957.478500px;}
.y4c{bottom:961.218000px;}
.ye0{bottom:961.890000px;}
.y24f{bottom:966.507000px;}
.y1f0{bottom:969.228000px;}
.y1ec{bottom:972.955500px;}
.y125{bottom:973.263000px;}
.y25{bottom:973.890000px;}
.y70{bottom:975.339000px;}
.ybd{bottom:977.914500px;}
.y4b{bottom:979.218000px;}
.ydf{bottom:979.890000px;}
.y232{bottom:981.451500px;}
.y25c{bottom:984.507000px;}
.y1ef{bottom:987.228000px;}
.y1c4{bottom:989.394000px;}
.y124{bottom:991.263000px;}
.ybb{bottom:991.618500px;}
.y24{bottom:991.890000px;}
.y6f{bottom:993.339000px;}
.y143{bottom:993.609000px;}
.y17b{bottom:994.834500px;}
.yde{bottom:997.890000px;}
.y231{bottom:999.451500px;}
.y1c3{bottom:1005.832500px;}
.y2{bottom:1006.758000px;}
.y123{bottom:1009.263000px;}
.y23{bottom:1009.890000px;}
.y15f{bottom:1010.014500px;}
.y6e{bottom:1011.339000px;}
.yba{bottom:1011.663000px;}
.y49{bottom:1012.143000px;}
.y17a{bottom:1012.834500px;}
.y1ee{bottom:1014.193500px;}
.ydd{bottom:1015.890000px;}
.y230{bottom:1017.451500px;}
.yb9{bottom:1021.953000px;}
.y1c2{bottom:1022.271000px;}
.y48{bottom:1022.431500px;}
.y122{bottom:1023.555000px;}
.y121{bottom:1025.508000px;}
.y120{bottom:1027.263000px;}
.y22{bottom:1027.890000px;}
.y6d{bottom:1029.339000px;}
.y142{bottom:1029.541500px;}
.y179{bottom:1030.834500px;}
.y268{bottom:1032.396000px;}
.y4a{bottom:1032.580500px;}
.ydc{bottom:1033.890000px;}
.y1ed{bottom:1035.193500px;}
.y22f{bottom:1035.451500px;}
.y1c1{bottom:1038.709500px;}
.y1{bottom:1040.508000px;}
.y21{bottom:1045.890000px;}
.y6c{bottom:1047.339000px;}
.yb8{bottom:1048.720500px;}
.y24e{bottom:1050.396000px;}
.y15e{bottom:1051.494000px;}
.ydb{bottom:1051.890000px;}
.y1c0{bottom:1055.148000px;}
.y6b{bottom:1060.167000px;}
.y20{bottom:1063.890000px;}
.y47{bottom:1065.339000px;}
.y141{bottom:1065.474000px;}
.yb7{bottom:1066.720500px;}
.y22e{bottom:1068.396000px;}
.yda{bottom:1069.890000px;}
.y1bf{bottom:1071.586500px;}
.y1f{bottom:1081.890000px;}
.y46{bottom:1083.339000px;}
.yb6{bottom:1084.720500px;}
.y178{bottom:1084.834500px;}
.y15b{bottom:1085.155500px;}
.y22d{bottom:1086.396000px;}
.yd9{bottom:1087.890000px;}
.y1be{bottom:1088.025000px;}
.y15c{bottom:1090.272000px;}
.y15a{bottom:1095.444000px;}
.y93{bottom:1096.167000px;}
.y45{bottom:1101.339000px;}
.y140{bottom:1101.406500px;}
.y177{bottom:1102.834500px;}
.y25b{bottom:1104.396000px;}
.y1bd{bottom:1104.463500px;}
.yb5{bottom:1105.158000px;}
.y15d{bottom:1105.593000px;}
.yd8{bottom:1105.890000px;}
.y1e{bottom:1113.339000px;}
.yb4{bottom:1115.448000px;}
.y44{bottom:1119.339000px;}
.y176{bottom:1120.834500px;}
.y1bc{bottom:1120.900500px;}
.y1d{bottom:1137.339000px;}
.y175{bottom:1138.834500px;}
.h3c{height:20.263928px;}
.h32{height:31.499550px;}
.h35{height:31.541549px;}
.h4{height:34.696200px;}
.h8{height:36.048000px;}
.h3b{height:37.443686px;}
.h6{height:37.854000px;}
.h2e{height:38.167262px;}
.h33{height:39.651600px;}
.h34{height:39.657600px;}
.h2b{height:39.748394px;}
.h7{height:40.554000px;}
.h2f{height:41.982718px;}
.h2d{height:44.831700px;}
.h2c{height:44.927700px;}
.hc{height:45.000000px;}
.h9{height:45.060000px;}
.h26{height:45.743572px;}
.h1a{height:46.500000px;}
.h27{height:47.273572px;}
.h13{height:47.279572px;}
.h5{height:49.566000px;}
.hb{height:51.719572px;}
.h19{height:54.072000px;}
.h1d{height:54.719572px;}
.h1e{height:55.121550px;}
.h10{height:55.127550px;}
.h37{height:56.621572px;}
.h36{height:57.972000px;}
.h29{height:58.739572px;}
.h22{height:59.832000px;}
.h2a{height:59.892000px;}
.h20{height:60.101572px;}
.h3a{height:60.678000px;}
.h39{height:61.332000px;}
.h1c{height:61.812000px;}
.h28{height:62.663550px;}
.ha{height:63.084000px;}
.h3{height:63.980400px;}
.h11{height:65.748000px;}
.h21{height:65.754000px;}
.h3d{height:66.551572px;}
.h38{height:68.711572px;}
.h2{height:71.706000px;}
.hf{height:85.590000px;}
.h1f{height:86.154000px;}
.he{height:86.214000px;}
.h1b{height:86.220000px;}
.h30{height:87.090000px;}
.h25{height:87.294000px;}
.h12{height:92.309572px;}
.h18{height:95.873572px;}
.h31{height:115.788000px;}
.hd{height:126.744000px;}
.h16{height:126.750000px;}
.h24{height:128.154000px;}
.h23{height:133.463572px;}
.h17{height:133.469572px;}
.h15{height:142.992000px;}
.h14{height:148.301572px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6b{left:114.826500px;}
.x69{left:119.911500px;}
.x65{left:124.995000px;}
.x61{left:130.078500px;}
.x14{left:150.106500px;}
.x6a{left:151.612500px;}
.x4b{left:154.189500px;}
.x67{left:156.696000px;}
.x54{left:159.072000px;}
.x64{left:161.779500px;}
.x4a{left:165.105000px;}
.x62{left:166.864500px;}
.x2{left:168.039000px;}
.x7{left:170.601000px;}
.x15{left:172.522500px;}
.x1{left:176.236500px;}
.x6{left:178.360500px;}
.x66{left:179.994000px;}
.x9{left:185.665500px;}
.xd{left:186.892500px;}
.x6d{left:191.367000px;}
.x4{left:194.455500px;}
.x4c{left:196.385082px;}
.x6e{left:200.490000px;}
.x46{left:201.889500px;}
.xf{left:209.308500px;}
.xe{left:210.511500px;}
.x60{left:213.888000px;}
.x63{left:216.780000px;}
.x58{left:222.463500px;}
.x68{left:223.839000px;}
.x36{left:227.115000px;}
.x59{left:229.066500px;}
.x5a{left:237.397500px;}
.x19{left:244.279500px;}
.x5b{left:246.579000px;}
.x5c{left:253.182000px;}
.x3b{left:258.082500px;}
.x5d{left:261.513000px;}
.x1f{left:266.349000px;}
.x5{left:269.497500px;}
.x1a{left:275.364000px;}
.x37{left:306.994500px;}
.x3c{left:308.110500px;}
.x32{left:309.945000px;}
.x20{left:313.921500px;}
.xa{left:319.008000px;}
.x5e{left:328.059000px;}
.x16{left:329.260500px;}
.x41{left:335.379000px;}
.x4e{left:340.012500px;}
.x4d{left:342.537000px;}
.x38{left:355.012500px;}
.x53{left:356.530500px;}
.x3{left:359.352000px;}
.x24{left:362.548500px;}
.x2a{left:365.658000px;}
.x2c{left:368.238000px;}
.x8{left:370.534500px;}
.x10{left:372.294000px;}
.x33{left:381.634500px;}
.x42{left:389.934000px;}
.x39{left:391.882500px;}
.x50{left:393.508500px;}
.x1b{left:395.532000px;}
.xb{left:397.516500px;}
.x2e{left:398.865000px;}
.x1c{left:400.008000px;}
.x2f{left:403.341000px;}
.x2b{left:406.216500px;}
.x17{left:407.635500px;}
.x2d{left:410.127000px;}
.x21{left:414.619500px;}
.x23{left:417.045000px;}
.x47{left:418.914000px;}
.x57{left:420.565500px;}
.xc{left:424.315500px;}
.x3e{left:428.436000px;}
.x28{left:430.692000px;}
.x11{left:432.543000px;}
.x43{left:437.631000px;}
.x44{left:441.766500px;}
.x34{left:448.746000px;}
.x52{left:457.351500px;}
.x3f{left:458.758500px;}
.x13{left:461.100000px;}
.x51{left:467.367000px;}
.x22{left:474.562500px;}
.x3a{left:477.958500px;}
.x29{left:479.344500px;}
.x40{left:497.095500px;}
.x4f{left:498.471000px;}
.x18{left:507.204000px;}
.x12{left:514.429500px;}
.x3d{left:523.818000px;}
.x56{left:527.592000px;}
.x35{left:532.495500px;}
.x45{left:540.769500px;}
.x1d{left:541.848000px;}
.x1e{left:546.324000px;}
.x30{left:547.681500px;}
.x31{left:552.157500px;}
.x48{left:579.676500px;}
.x27{left:581.293500px;}
.x25{left:615.433500px;}
.x6c{left:617.176500px;}
.x5f{left:619.468500px;}
.x55{left:644.593500px;}
.x49{left:659.929500px;}
.x26{left:723.645000px;}
@media print{
.v10{vertical-align:-75.200000pt;}
.v18{vertical-align:-48.725333pt;}
.v1f{vertical-align:-27.093333pt;}
.v2{vertical-align:-21.290667pt;}
.v25{vertical-align:-19.354667pt;}
.v3{vertical-align:-7.200000pt;}
.v1b{vertical-align:-5.312000pt;}
.v1d{vertical-align:-1.760000pt;}
.v0{vertical-align:0.000000pt;}
.v17{vertical-align:5.184000pt;}
.v1c{vertical-align:6.240000pt;}
.v20{vertical-align:8.000000pt;}
.v13{vertical-align:10.389333pt;}
.v24{vertical-align:11.477333pt;}
.v16{vertical-align:13.184000pt;}
.vc{vertical-align:15.408000pt;}
.v9{vertical-align:18.389333pt;}
.v4{vertical-align:19.354667pt;}
.v8{vertical-align:21.002667pt;}
.v14{vertical-align:22.021333pt;}
.v1{vertical-align:23.226667pt;}
.v1e{vertical-align:25.594667pt;}
.v15{vertical-align:26.805333pt;}
.v6{vertical-align:28.581333pt;}
.v27{vertical-align:32.538667pt;}
.v5{vertical-align:36.581333pt;}
.v26{vertical-align:40.000000pt;}
.vf{vertical-align:41.770667pt;}
.v21{vertical-align:44.080000pt;}
.ve{vertical-align:49.770667pt;}
.vb{vertical-align:55.434667pt;}
.v23{vertical-align:57.584000pt;}
.v12{vertical-align:58.602667pt;}
.v19{vertical-align:64.661333pt;}
.v7{vertical-align:72.661333pt;}
.va{vertical-align:75.200000pt;}
.v11{vertical-align:92.021333pt;}
.v22{vertical-align:100.789333pt;}
.v1a{vertical-align:111.781333pt;}
.vd{vertical-align:124.970667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9e{letter-spacing:0.000055pt;}
.lsb5{letter-spacing:0.000882pt;}
.ls44{letter-spacing:0.002918pt;}
.lsf1{letter-spacing:0.004003pt;}
.ls3b{letter-spacing:0.004085pt;}
.lsb1{letter-spacing:0.005333pt;}
.lse4{letter-spacing:0.005388pt;}
.ls125{letter-spacing:0.005631pt;}
.ls55{letter-spacing:0.005812pt;}
.lseb{letter-spacing:0.006216pt;}
.lsf6{letter-spacing:0.007601pt;}
.ls9c{letter-spacing:0.007853pt;}
.ls96{letter-spacing:0.009840pt;}
.ls7{letter-spacing:0.010667pt;}
.ls1c{letter-spacing:0.011145pt;}
.ls102{letter-spacing:0.011696pt;}
.ls53{letter-spacing:0.012598pt;}
.lsfe{letter-spacing:0.012940pt;}
.lsbd{letter-spacing:0.012960pt;}
.ls7d{letter-spacing:0.012981pt;}
.lsb6{letter-spacing:0.013894pt;}
.ls12e{letter-spacing:0.015135pt;}
.ls82{letter-spacing:0.016000pt;}
.ls4a{letter-spacing:0.017073pt;}
.ls15{letter-spacing:0.017931pt;}
.lsfc{letter-spacing:0.019822pt;}
.ls3f{letter-spacing:0.021333pt;}
.lsfa{letter-spacing:0.021812pt;}
.ls63{letter-spacing:0.022202pt;}
.ls10c{letter-spacing:0.026667pt;}
.ls76{letter-spacing:0.053134pt;}
.lsf4{letter-spacing:0.212535pt;}
.lsf7{letter-spacing:0.213333pt;}
.ls103{letter-spacing:1.043651pt;}
.ls18{letter-spacing:1.045333pt;}
.ls124{letter-spacing:1.045812pt;}
.ls122{letter-spacing:1.048239pt;}
.ls128{letter-spacing:1.048886pt;}
.ls100{letter-spacing:1.048984pt;}
.ls20{letter-spacing:1.050667pt;}
.ls14{letter-spacing:1.062677pt;}
.lsb4{letter-spacing:1.434614pt;}
.ls86{letter-spacing:1.487748pt;}
.ls109{letter-spacing:1.600000pt;}
.ls116{letter-spacing:1.914667pt;}
.ls127{letter-spacing:2.019087pt;}
.ls121{letter-spacing:2.026667pt;}
.lsd3{letter-spacing:2.346667pt;}
.ls56{letter-spacing:2.653606pt;}
.ls115{letter-spacing:2.654082pt;}
.ls13{letter-spacing:2.654154pt;}
.ls38{letter-spacing:2.656247pt;}
.ls6d{letter-spacing:2.657074pt;}
.ls4{letter-spacing:2.657370pt;}
.ls0{letter-spacing:2.658080pt;}
.lsa5{letter-spacing:2.658550pt;}
.ls99{letter-spacing:2.659488pt;}
.ls34{letter-spacing:2.661580pt;}
.ls9d{letter-spacing:2.662704pt;}
.lsc6{letter-spacing:2.816000pt;}
.ls32{letter-spacing:3.045333pt;}
.lsa0{letter-spacing:3.056000pt;}
.lsa3{letter-spacing:3.061333pt;}
.ls74{letter-spacing:3.081764pt;}
.ls2a{letter-spacing:3.093333pt;}
.ls41{letter-spacing:3.520000pt;}
.ls42{letter-spacing:3.559969pt;}
.lsbe{letter-spacing:3.665507pt;}
.ls6f{letter-spacing:3.804016pt;}
.ls40{letter-spacing:3.825638pt;}
.lsb2{letter-spacing:3.996042pt;}
.ls6a{letter-spacing:4.320000pt;}
.ls81{letter-spacing:4.356977pt;}
.lsd{letter-spacing:4.472994pt;}
.ls11f{letter-spacing:4.478327pt;}
.ls123{letter-spacing:4.684037pt;}
.ls2{letter-spacing:5.238187pt;}
.lsed{letter-spacing:5.268245pt;}
.lsac{letter-spacing:5.330655pt;}
.ls8{letter-spacing:5.508766pt;}
.ls66{letter-spacing:5.514099pt;}
.ls88{letter-spacing:5.791591pt;}
.ls130{letter-spacing:5.827158pt;}
.ls101{letter-spacing:5.906939pt;}
.ls5b{letter-spacing:6.363145pt;}
.ls1f{letter-spacing:6.373333pt;}
.ls17{letter-spacing:6.378667pt;}
.ls1{letter-spacing:6.437067pt;}
.ls132{letter-spacing:6.657648pt;}
.ls6{letter-spacing:6.659615pt;}
.ls98{letter-spacing:6.664948pt;}
.lscb{letter-spacing:7.210667pt;}
.lsc0{letter-spacing:7.216000pt;}
.ls4c{letter-spacing:7.385607pt;}
.ls70{letter-spacing:7.408000pt;}
.ls26{letter-spacing:7.438741pt;}
.lsaf{letter-spacing:7.466667pt;}
.ls126{letter-spacing:7.540766pt;}
.lsab{letter-spacing:7.995982pt;}
.ls120{letter-spacing:8.691615pt;}
.ls10e{letter-spacing:8.853333pt;}
.ls114{letter-spacing:8.885333pt;}
.ls4b{letter-spacing:9.032821pt;}
.lsce{letter-spacing:9.141015pt;}
.lsa7{letter-spacing:9.163549pt;}
.lsd2{letter-spacing:9.181944pt;}
.ls6b{letter-spacing:9.600000pt;}
.ls69{letter-spacing:9.653333pt;}
.lsc8{letter-spacing:10.069333pt;}
.lsf2{letter-spacing:10.148569pt;}
.lsae{letter-spacing:10.151392pt;}
.lsaa{letter-spacing:10.661309pt;}
.ls117{letter-spacing:10.739416pt;}
.ls71{letter-spacing:11.521350pt;}
.ls10d{letter-spacing:11.521370pt;}
.lsf0{letter-spacing:11.546913pt;}
.lsb3{letter-spacing:11.548037pt;}
.ls1b{letter-spacing:11.840000pt;}
.ls1e{letter-spacing:11.848852pt;}
.ls1a{letter-spacing:11.850667pt;}
.ls54{letter-spacing:11.856000pt;}
.ls7b{letter-spacing:11.893333pt;}
.lsc2{letter-spacing:11.953370pt;}
.lsf5{letter-spacing:11.955120pt;}
.ls19{letter-spacing:12.280272pt;}
.lsc9{letter-spacing:12.586667pt;}
.ls107{letter-spacing:12.640000pt;}
.ls10a{letter-spacing:12.693333pt;}
.ls111{letter-spacing:12.858396pt;}
.lsd8{letter-spacing:12.911530pt;}
.ls97{letter-spacing:13.038282pt;}
.ls8d{letter-spacing:13.173333pt;}
.lsdd{letter-spacing:13.226667pt;}
.lsde{letter-spacing:13.230333pt;}
.lsb7{letter-spacing:13.283467pt;}
.lsa9{letter-spacing:13.371812pt;}
.ls43{letter-spacing:13.600000pt;}
.ls118{letter-spacing:14.293333pt;}
.ls1d{letter-spacing:14.404766pt;}
.ls10f{letter-spacing:14.506667pt;}
.ls6c{letter-spacing:14.513074pt;}
.ls6e{letter-spacing:14.513370pt;}
.ls87{letter-spacing:14.718081pt;}
.lsd5{letter-spacing:14.720000pt;}
.ls83{letter-spacing:14.771215pt;}
.ls57{letter-spacing:14.824349pt;}
.lsb{letter-spacing:14.826667pt;}
.lsc7{letter-spacing:15.104000pt;}
.lsca{letter-spacing:15.146667pt;}
.lsff{letter-spacing:15.544948pt;}
.ls16{letter-spacing:15.550282pt;}
.ls119{letter-spacing:15.733333pt;}
.lse3{letter-spacing:15.889335pt;}
.lsad{letter-spacing:15.991964pt;}
.lsbc{letter-spacing:16.152695pt;}
.lsbb{letter-spacing:16.160000pt;}
.ls93{letter-spacing:16.312097pt;}
.ls95{letter-spacing:16.320000pt;}
.ls84{letter-spacing:16.586667pt;}
.ls79{letter-spacing:16.737168pt;}
.lsa2{letter-spacing:16.746667pt;}
.lsf3{letter-spacing:16.906667pt;}
.lsef{letter-spacing:17.002837pt;}
.ls85{letter-spacing:17.052037pt;}
.lsa8{letter-spacing:17.173333pt;}
.ls131{letter-spacing:17.226667pt;}
.ls64{letter-spacing:17.333333pt;}
.ls4e{letter-spacing:17.386667pt;}
.ls39{letter-spacing:17.469217pt;}
.ls108{letter-spacing:17.469606pt;}
.ls65{letter-spacing:17.470154pt;}
.ls36{letter-spacing:17.473074pt;}
.ls33{letter-spacing:17.473370pt;}
.ls3a{letter-spacing:17.746711pt;}
.ls4f{letter-spacing:17.760000pt;}
.lscd{letter-spacing:17.799845pt;}
.ls89{letter-spacing:17.813333pt;}
.ls8b{letter-spacing:17.906113pt;}
.ls45{letter-spacing:18.099660pt;}
.ls5d{letter-spacing:18.217222pt;}
.lsdc{letter-spacing:18.278050pt;}
.lsdb{letter-spacing:18.293333pt;}
.ls8f{letter-spacing:18.346667pt;}
.ls37{letter-spacing:18.620016pt;}
.ls9f{letter-spacing:18.625350pt;}
.lsc5{letter-spacing:18.806709pt;}
.ls110{letter-spacing:18.809389pt;}
.ls12a{letter-spacing:18.862523pt;}
.ls10b{letter-spacing:18.934704pt;}
.lsc1{letter-spacing:19.016721pt;}
.ls8a{letter-spacing:19.128192pt;}
.lsec{letter-spacing:19.146667pt;}
.ls61{letter-spacing:19.181326pt;}
.ls112{letter-spacing:19.306667pt;}
.ls90{letter-spacing:19.680000pt;}
.ls4d{letter-spacing:19.712665pt;}
.ls49{letter-spacing:19.786667pt;}
.lsdf{letter-spacing:19.872066pt;}
.ls75{letter-spacing:19.978334pt;}
.lsd7{letter-spacing:20.065370pt;}
.lsb0{letter-spacing:20.067660pt;}
.ls12{letter-spacing:20.324766pt;}
.ls10{letter-spacing:20.330099pt;}
.lse7{letter-spacing:20.373333pt;}
.ls2f{letter-spacing:20.429606pt;}
.ls3c{letter-spacing:20.432247pt;}
.ls46{letter-spacing:20.433370pt;}
.ls137{letter-spacing:20.640000pt;}
.ls47{letter-spacing:20.693333pt;}
.lsd0{letter-spacing:20.775342pt;}
.ls67{letter-spacing:20.853333pt;}
.lse1{letter-spacing:20.934668pt;}
.lse0{letter-spacing:20.935425pt;}
.lse2{letter-spacing:20.939741pt;}
.lsda{letter-spacing:20.946351pt;}
.lsf9{letter-spacing:20.960000pt;}
.ls8c{letter-spacing:21.171699pt;}
.ls12d{letter-spacing:21.173333pt;}
.ls28{letter-spacing:21.189812pt;}
.ls27{letter-spacing:21.194667pt;}
.ls133{letter-spacing:21.386667pt;}
.lsa{letter-spacing:21.475615pt;}
.ls62{letter-spacing:21.512486pt;}
.ls129{letter-spacing:21.533606pt;}
.ls58{letter-spacing:21.600000pt;}
.ls3d{letter-spacing:21.944287pt;}
.lsd9{letter-spacing:21.984247pt;}
.lsd1{letter-spacing:21.997421pt;}
.lsd4{letter-spacing:22.026667pt;}
.ls3e{letter-spacing:22.080000pt;}
.ls59{letter-spacing:22.133333pt;}
.lsa4{letter-spacing:22.156822pt;}
.ls113{letter-spacing:22.186667pt;}
.ls23{letter-spacing:22.209956pt;}
.ls24{letter-spacing:22.665189pt;}
.ls135{letter-spacing:22.826667pt;}
.ls12c{letter-spacing:23.093333pt;}
.ls9a{letter-spacing:23.360000pt;}
.ls5{letter-spacing:23.697705pt;}
.ls136{letter-spacing:23.733333pt;}
.ls94{letter-spacing:23.803972pt;}
.ls92{letter-spacing:23.840000pt;}
.ls12f{letter-spacing:23.842939pt;}
.lsfb{letter-spacing:23.905350pt;}
.ls31{letter-spacing:24.000000pt;}
.ls134{letter-spacing:24.039884pt;}
.ls2e{letter-spacing:24.373333pt;}
.lse8{letter-spacing:24.426667pt;}
.lsd6{letter-spacing:24.741580pt;}
.ls30{letter-spacing:24.919783pt;}
.lscf{letter-spacing:24.958055pt;}
.ls11c{letter-spacing:25.058099pt;}
.ls11b{letter-spacing:25.105920pt;}
.ls8e{letter-spacing:25.546667pt;}
.ls11e{letter-spacing:25.920000pt;}
.ls9b{letter-spacing:26.026667pt;}
.ls12b{letter-spacing:26.133333pt;}
.ls106{letter-spacing:26.186667pt;}
.ls91{letter-spacing:26.400000pt;}
.ls22{letter-spacing:26.637606pt;}
.ls80{letter-spacing:26.656000pt;}
.lsa6{letter-spacing:26.661333pt;}
.ls48{letter-spacing:27.151406pt;}
.ls2c{letter-spacing:27.306667pt;}
.lsea{letter-spacing:27.360000pt;}
.lsee{letter-spacing:27.682745pt;}
.lsba{letter-spacing:28.252037pt;}
.lsc3{letter-spacing:28.597333pt;}
.ls9{letter-spacing:28.750282pt;}
.ls105{letter-spacing:28.800000pt;}
.lsf{letter-spacing:29.332766pt;}
.lse9{letter-spacing:29.383028pt;}
.ls68{letter-spacing:29.653333pt;}
.ls2b{letter-spacing:30.346667pt;}
.ls7f{letter-spacing:31.360000pt;}
.ls11d{letter-spacing:32.563615pt;}
.lsfd{letter-spacing:32.800000pt;}
.lscc{letter-spacing:33.843388pt;}
.ls5f{letter-spacing:33.967059pt;}
.ls5a{letter-spacing:34.673370pt;}
.ls5e{letter-spacing:35.038400pt;}
.ls104{letter-spacing:35.480948pt;}
.ls7e{letter-spacing:35.822327pt;}
.ls138{letter-spacing:37.760000pt;}
.lsf8{letter-spacing:38.177074pt;}
.lse5{letter-spacing:41.310235pt;}
.lse6{letter-spacing:41.318155pt;}
.ls5c{letter-spacing:43.497067pt;}
.ls11{letter-spacing:44.123145pt;}
.ls25{letter-spacing:44.419913pt;}
.ls72{letter-spacing:46.210796pt;}
.lsa1{letter-spacing:50.300016pt;}
.ls11a{letter-spacing:53.128909pt;}
.ls51{letter-spacing:59.690667pt;}
.ls78{letter-spacing:62.198051pt;}
.ls35{letter-spacing:62.219758pt;}
.lsc{letter-spacing:65.899145pt;}
.ls50{letter-spacing:65.904479pt;}
.ls29{letter-spacing:103.781333pt;}
.ls7a{letter-spacing:155.151311pt;}
.lsb8{letter-spacing:282.937067pt;}
.ls21{letter-spacing:377.226667pt;}
.lsb9{letter-spacing:449.653333pt;}
.lsc4{letter-spacing:503.893333pt;}
.ls60{letter-spacing:504.512000pt;}
.lse{letter-spacing:597.450667pt;}
.lsbf{letter-spacing:630.880000pt;}
.ls7c{letter-spacing:685.485186pt;}
.ls52{letter-spacing:707.413333pt;}
.ls77{letter-spacing:710.540037pt;}
.ls73{letter-spacing:790.720000pt;}
.ls2d{letter-spacing:874.613333pt;}
.ws47{word-spacing:-42.224000pt;}
.ws148{word-spacing:-38.506667pt;}
.ws35{word-spacing:-34.741333pt;}
.ws80{word-spacing:-34.473253pt;}
.wsfe{word-spacing:-32.448000pt;}
.ws5a{word-spacing:-30.661333pt;}
.ws138{word-spacing:-29.584937pt;}
.ws5{word-spacing:-29.327467pt;}
.wsb0{word-spacing:-29.226667pt;}
.wsb8{word-spacing:-28.373333pt;}
.ws72{word-spacing:-26.661333pt;}
.ws149{word-spacing:-25.888000pt;}
.ws14f{word-spacing:-25.834667pt;}
.ws3e{word-spacing:-25.717333pt;}
.ws163{word-spacing:-25.153741pt;}
.ws37{word-spacing:-23.968000pt;}
.ws4c{word-spacing:-23.914667pt;}
.wsfc{word-spacing:-23.488000pt;}
.ws102{word-spacing:-22.660267pt;}
.ws88{word-spacing:-22.467410pt;}
.ws178{word-spacing:-21.034667pt;}
.wsa4{word-spacing:-19.970118pt;}
.ws17d{word-spacing:-19.648000pt;}
.ws89{word-spacing:-19.491914pt;}
.ws1{word-spacing:-18.024533pt;}
.ws8f{word-spacing:-17.061333pt;}
.ws69{word-spacing:-17.008000pt;}
.ws8a{word-spacing:-16.981333pt;}
.wsb3{word-spacing:-16.714667pt;}
.wsec{word-spacing:-15.996482pt;}
.ws170{word-spacing:-15.261867pt;}
.ws6a{word-spacing:-14.768000pt;}
.ws46{word-spacing:-14.760588pt;}
.wsdd{word-spacing:-14.714667pt;}
.ws193{word-spacing:-14.501333pt;}
.ws3b{word-spacing:-14.448000pt;}
.ws191{word-spacing:-14.394667pt;}
.wsba{word-spacing:-14.368000pt;}
.ws1a6{word-spacing:-14.341333pt;}
.wsc4{word-spacing:-14.288000pt;}
.ws16d{word-spacing:-14.234667pt;}
.ws0{word-spacing:-14.216533pt;}
.ws15a{word-spacing:-14.181333pt;}
.ws1a{word-spacing:-14.128000pt;}
.ws4f{word-spacing:-14.021333pt;}
.ws18{word-spacing:-13.992533pt;}
.wsa9{word-spacing:-13.914667pt;}
.ws53{word-spacing:-13.808000pt;}
.ws1ae{word-spacing:-13.701333pt;}
.ws1bf{word-spacing:-13.648000pt;}
.wsd6{word-spacing:-13.541333pt;}
.wsae{word-spacing:-13.488000pt;}
.ws156{word-spacing:-13.381333pt;}
.wsef{word-spacing:-13.331154pt;}
.ws19e{word-spacing:-13.328000pt;}
.ws173{word-spacing:-13.221333pt;}
.wsd2{word-spacing:-13.168000pt;}
.ws197{word-spacing:-13.114667pt;}
.ws79{word-spacing:-13.059063pt;}
.ws7a{word-spacing:-13.008000pt;}
.ws179{word-spacing:-12.954667pt;}
.ws6f{word-spacing:-12.901333pt;}
.wse2{word-spacing:-12.848000pt;}
.ws17f{word-spacing:-12.821333pt;}
.wsd4{word-spacing:-12.794667pt;}
.wsaa{word-spacing:-12.741333pt;}
.ws6b{word-spacing:-12.688000pt;}
.wsff{word-spacing:-12.590933pt;}
.ws1b1{word-spacing:-12.581333pt;}
.ws1b{word-spacing:-12.528000pt;}
.ws147{word-spacing:-12.501333pt;}
.ws17b{word-spacing:-12.474667pt;}
.ws40{word-spacing:-12.421333pt;}
.ws157{word-spacing:-12.368000pt;}
.wsa2{word-spacing:-12.261333pt;}
.wse9{word-spacing:-12.154667pt;}
.ws152{word-spacing:-12.128000pt;}
.ws1b4{word-spacing:-12.101333pt;}
.wsf6{word-spacing:-12.073428pt;}
.ws65{word-spacing:-12.048000pt;}
.wsab{word-spacing:-11.994667pt;}
.ws52{word-spacing:-11.993600pt;}
.wsa{word-spacing:-11.942400pt;}
.ws16c{word-spacing:-11.674667pt;}
.ws1a4{word-spacing:-11.568000pt;}
.wsdb{word-spacing:-11.514667pt;}
.wsd3{word-spacing:-11.461333pt;}
.wsdc{word-spacing:-11.408000pt;}
.ws1a1{word-spacing:-11.301333pt;}
.ws19b{word-spacing:-11.248000pt;}
.ws26{word-spacing:-11.194667pt;}
.wsbf{word-spacing:-11.141333pt;}
.wsc7{word-spacing:-11.088000pt;}
.ws39{word-spacing:-11.043629pt;}
.ws1d{word-spacing:-11.034667pt;}
.ws1ad{word-spacing:-10.928000pt;}
.ws8c{word-spacing:-10.901333pt;}
.wsd0{word-spacing:-10.874667pt;}
.wsbe{word-spacing:-10.821333pt;}
.wsbd{word-spacing:-10.768000pt;}
.ws1bd{word-spacing:-10.714667pt;}
.wsc3{word-spacing:-10.661333pt;}
.wsc6{word-spacing:-10.501333pt;}
.ws145{word-spacing:-10.394667pt;}
.ws9d{word-spacing:-10.341333pt;}
.ws174{word-spacing:-10.314667pt;}
.ws1ab{word-spacing:-10.288000pt;}
.ws45{word-spacing:-10.234667pt;}
.wsf7{word-spacing:-10.181333pt;}
.ws9f{word-spacing:-10.074667pt;}
.ws8e{word-spacing:-10.030433pt;}
.ws90{word-spacing:-10.021333pt;}
.ws92{word-spacing:-9.914667pt;}
.ws1e{word-spacing:-9.861333pt;}
.wsb1{word-spacing:-9.808000pt;}
.ws4{word-spacing:-9.791467pt;}
.ws6c{word-spacing:-9.754667pt;}
.ws6{word-spacing:-9.732800pt;}
.ws57{word-spacing:-9.541333pt;}
.wsd1{word-spacing:-9.434667pt;}
.ws3c{word-spacing:-9.381333pt;}
.ws8b{word-spacing:-9.339693pt;}
.ws82{word-spacing:-9.328000pt;}
.ws83{word-spacing:-9.274667pt;}
.ws1c{word-spacing:-9.168000pt;}
.ws12f{word-spacing:-9.061333pt;}
.ws7c{word-spacing:-9.008000pt;}
.wsb6{word-spacing:-8.954667pt;}
.ws12{word-spacing:-8.918400pt;}
.ws71{word-spacing:-8.914622pt;}
.ws22{word-spacing:-8.901333pt;}
.ws34{word-spacing:-8.861488pt;}
.wsbc{word-spacing:-8.848000pt;}
.ws1b6{word-spacing:-8.741333pt;}
.wse4{word-spacing:-8.688000pt;}
.ws108{word-spacing:-8.634667pt;}
.ws3d{word-spacing:-8.581333pt;}
.ws4d{word-spacing:-8.474667pt;}
.ws10a{word-spacing:-8.368000pt;}
.wse3{word-spacing:-8.314667pt;}
.ws28{word-spacing:-8.261333pt;}
.ws185{word-spacing:-8.208000pt;}
.ws14{word-spacing:-8.198400pt;}
.wsda{word-spacing:-8.101333pt;}
.wsee{word-spacing:-8.000500pt;}
.wscb{word-spacing:-7.994667pt;}
.wsf0{word-spacing:-7.955325pt;}
.wscd{word-spacing:-7.941333pt;}
.ws176{word-spacing:-7.834667pt;}
.ws19{word-spacing:-7.781333pt;}
.wsa8{word-spacing:-7.674667pt;}
.ws190{word-spacing:-7.621333pt;}
.ws192{word-spacing:-7.568000pt;}
.ws16{word-spacing:-7.556267pt;}
.ws25{word-spacing:-7.514667pt;}
.ws21{word-spacing:-7.461333pt;}
.ws2a{word-spacing:-7.408000pt;}
.ws29{word-spacing:-7.354667pt;}
.ws121{word-spacing:-7.301333pt;}
.wsa7{word-spacing:-7.248000pt;}
.ws77{word-spacing:-7.194667pt;}
.wsc9{word-spacing:-7.141333pt;}
.ws131{word-spacing:-6.981333pt;}
.wsb2{word-spacing:-6.928000pt;}
.ws42{word-spacing:-6.821333pt;}
.ws10f{word-spacing:-6.789267pt;}
.wsb4{word-spacing:-6.554667pt;}
.wsd9{word-spacing:-6.501333pt;}
.ws7b{word-spacing:-6.448000pt;}
.ws11a{word-spacing:-6.288000pt;}
.ws1a0{word-spacing:-6.234667pt;}
.wsd5{word-spacing:-6.181333pt;}
.ws119{word-spacing:-6.128000pt;}
.ws41{word-spacing:-6.021333pt;}
.ws27{word-spacing:-5.968000pt;}
.ws7f{word-spacing:-5.939125pt;}
.ws7d{word-spacing:-5.914667pt;}
.ws155{word-spacing:-5.882342pt;}
.ws85{word-spacing:-5.869176pt;}
.ws2c{word-spacing:-5.861333pt;}
.ws86{word-spacing:-5.858295pt;}
.ws11{word-spacing:-5.846400pt;}
.ws12b{word-spacing:-5.834099pt;}
.wsb5{word-spacing:-5.808000pt;}
.ws6d{word-spacing:-5.754667pt;}
.wsf4{word-spacing:-5.741748pt;}
.ws13b{word-spacing:-5.701333pt;}
.ws196{word-spacing:-5.648000pt;}
.wsb9{word-spacing:-5.541333pt;}
.wsbb{word-spacing:-5.488000pt;}
.ws81{word-spacing:-5.434667pt;}
.wsf1{word-spacing:-5.335172pt;}
.ws158{word-spacing:-5.328000pt;}
.ws94{word-spacing:-5.290667pt;}
.ws73{word-spacing:-5.274667pt;}
.wsd8{word-spacing:-5.221333pt;}
.ws133{word-spacing:-5.168000pt;}
.wsa3{word-spacing:-5.160588pt;}
.ws100{word-spacing:-5.038933pt;}
.wsca{word-spacing:-5.008000pt;}
.ws8{word-spacing:-4.934400pt;}
.ws5e{word-spacing:-4.848000pt;}
.ws24{word-spacing:-4.741333pt;}
.ws4e{word-spacing:-4.688000pt;}
.ws137{word-spacing:-4.680588pt;}
.ws49{word-spacing:-4.634667pt;}
.ws74{word-spacing:-4.581333pt;}
.wsde{word-spacing:-4.528000pt;}
.ws150{word-spacing:-4.474667pt;}
.ws172{word-spacing:-4.421333pt;}
.wsf2{word-spacing:-4.386496pt;}
.ws1f{word-spacing:-4.368000pt;}
.ws5f{word-spacing:-4.261333pt;}
.ws1aa{word-spacing:-4.154667pt;}
.ws17a{word-spacing:-4.101333pt;}
.ws16f{word-spacing:-4.048000pt;}
.ws184{word-spacing:-3.994667pt;}
.ws177{word-spacing:-3.941333pt;}
.ws1bc{word-spacing:-3.834667pt;}
.ws17e{word-spacing:-3.781333pt;}
.ws61{word-spacing:-3.728000pt;}
.ws66{word-spacing:-3.674667pt;}
.ws122{word-spacing:-3.621333pt;}
.ws55{word-spacing:-3.514667pt;}
.ws50{word-spacing:-3.461333pt;}
.ws33{word-spacing:-3.408000pt;}
.ws18b{word-spacing:-3.354667pt;}
.wsaf{word-spacing:-3.301333pt;}
.ws2b{word-spacing:-3.248000pt;}
.ws67{word-spacing:-3.194667pt;}
.ws175{word-spacing:-3.088000pt;}
.ws18a{word-spacing:-2.981333pt;}
.ws11f{word-spacing:-2.928000pt;}
.ws97{word-spacing:-2.920588pt;}
.wsf8{word-spacing:-2.911736pt;}
.ws17c{word-spacing:-2.874667pt;}
.wsb7{word-spacing:-2.821333pt;}
.ws64{word-spacing:-2.768000pt;}
.ws109{word-spacing:-2.714667pt;}
.wsd{word-spacing:-2.678400pt;}
.ws48{word-spacing:-2.661333pt;}
.ws96{word-spacing:-2.512000pt;}
.ws188{word-spacing:-2.501333pt;}
.wse5{word-spacing:-2.448000pt;}
.wsf9{word-spacing:-2.394667pt;}
.ws5c{word-spacing:-2.288000pt;}
.ws11c{word-spacing:-2.234667pt;}
.wsc8{word-spacing:-2.181333pt;}
.ws32{word-spacing:-2.074667pt;}
.wsc{word-spacing:-2.006400pt;}
.ws2d{word-spacing:-1.968000pt;}
.ws118{word-spacing:-1.914667pt;}
.ws10e{word-spacing:-1.907255pt;}
.wsdf{word-spacing:-1.754667pt;}
.ws58{word-spacing:-1.701333pt;}
.wsf{word-spacing:-1.622400pt;}
.ws54{word-spacing:-1.594667pt;}
.ws112{word-spacing:-1.530255pt;}
.ws189{word-spacing:-1.488000pt;}
.ws7{word-spacing:-1.382400pt;}
.ws1a2{word-spacing:-1.381333pt;}
.ws1a3{word-spacing:-1.328000pt;}
.ws20{word-spacing:-1.274667pt;}
.ws9{word-spacing:-1.238400pt;}
.ws134{word-spacing:-1.168000pt;}
.ws18c{word-spacing:-1.008000pt;}
.wsb{word-spacing:-0.854400pt;}
.ws120{word-spacing:-0.794667pt;}
.ws11e{word-spacing:-0.634667pt;}
.wsea{word-spacing:-0.530477pt;}
.ws70{word-spacing:-0.525144pt;}
.ws126{word-spacing:-0.524020pt;}
.ws60{word-spacing:-0.474667pt;}
.ws10{word-spacing:-0.470400pt;}
.wsac{word-spacing:-0.421333pt;}
.wsad{word-spacing:-0.368000pt;}
.ws195{word-spacing:-0.314667pt;}
.ws198{word-spacing:-0.261333pt;}
.wsa6{word-spacing:-0.101333pt;}
.ws84{word-spacing:-0.053333pt;}
.wse8{word-spacing:-0.052266pt;}
.wse{word-spacing:-0.048000pt;}
.ws15b{word-spacing:-0.047821pt;}
.ws3{word-spacing:-0.041067pt;}
.wsa0{word-spacing:-0.037333pt;}
.wsed{word-spacing:-0.031623pt;}
.ws23{word-spacing:-0.029867pt;}
.ws63{word-spacing:-0.025600pt;}
.ws17{word-spacing:0.000000pt;}
.ws103{word-spacing:0.005333pt;}
.ws38{word-spacing:0.010627pt;}
.ws36{word-spacing:0.012745pt;}
.ws2e{word-spacing:0.058667pt;}
.ws3a{word-spacing:0.063761pt;}
.wse7{word-spacing:0.165333pt;}
.wsc1{word-spacing:0.218667pt;}
.ws171{word-spacing:0.272000pt;}
.ws13{word-spacing:0.297600pt;}
.ws19a{word-spacing:0.325333pt;}
.wsc5{word-spacing:0.378667pt;}
.ws9a{word-spacing:0.405333pt;}
.ws30{word-spacing:0.432000pt;}
.ws194{word-spacing:0.538667pt;}
.ws12c{word-spacing:0.645333pt;}
.ws12a{word-spacing:0.698667pt;}
.ws1ba{word-spacing:0.805333pt;}
.ws95{word-spacing:1.152000pt;}
.ws59{word-spacing:1.285333pt;}
.ws1b0{word-spacing:1.338667pt;}
.ws1be{word-spacing:1.392000pt;}
.ws199{word-spacing:1.498667pt;}
.ws31{word-spacing:1.658667pt;}
.ws1ac{word-spacing:1.872000pt;}
.wsd7{word-spacing:2.085333pt;}
.ws136{word-spacing:2.199412pt;}
.wsc2{word-spacing:2.458667pt;}
.ws14c{word-spacing:2.614186pt;}
.ws56{word-spacing:2.622147pt;}
.ws10d{word-spacing:2.667320pt;}
.ws107{word-spacing:2.885333pt;}
.ws9e{word-spacing:2.999412pt;}
.wsa5{word-spacing:3.052745pt;}
.ws68{word-spacing:3.152000pt;}
.ws18d{word-spacing:3.205333pt;}
.ws1bb{word-spacing:3.258667pt;}
.ws2f{word-spacing:3.418667pt;}
.ws14d{word-spacing:3.444784pt;}
.ws110{word-spacing:3.517462pt;}
.ws139{word-spacing:3.525333pt;}
.wse6{word-spacing:3.685333pt;}
.ws19f{word-spacing:4.432000pt;}
.wse1{word-spacing:4.485333pt;}
.wsc0{word-spacing:4.538667pt;}
.ws9c{word-spacing:4.645333pt;}
.ws98{word-spacing:4.687648pt;}
.ws9b{word-spacing:4.698667pt;}
.wscf{word-spacing:4.805333pt;}
.ws1b2{word-spacing:4.965333pt;}
.ws111{word-spacing:5.079412pt;}
.ws1a5{word-spacing:5.232000pt;}
.ws13a{word-spacing:5.324013pt;}
.ws146{word-spacing:5.380768pt;}
.ws116{word-spacing:5.392000pt;}
.ws159{word-spacing:5.399418pt;}
.ws13c{word-spacing:5.400734pt;}
.ws144{word-spacing:5.401584pt;}
.ws14e{word-spacing:5.405162pt;}
.ws114{word-spacing:5.431522pt;}
.ws117{word-spacing:5.445333pt;}
.ws18f{word-spacing:5.498667pt;}
.ws125{word-spacing:5.695951pt;}
.ws1af{word-spacing:5.872000pt;}
.ws16e{word-spacing:6.039412pt;}
.ws1a9{word-spacing:6.352000pt;}
.ws4a{word-spacing:6.512000pt;}
.ws186{word-spacing:7.098667pt;}
.ws127{word-spacing:7.106079pt;}
.wsa1{word-spacing:7.205333pt;}
.ws105{word-spacing:7.319412pt;}
.ws13e{word-spacing:7.343100pt;}
.ws13f{word-spacing:7.372745pt;}
.ws62{word-spacing:8.172745pt;}
.ws87{word-spacing:8.360189pt;}
.ws5d{word-spacing:8.360663pt;}
.ws123{word-spacing:8.830849pt;}
.ws12e{word-spacing:9.445333pt;}
.ws154{word-spacing:9.521589pt;}
.ws1b9{word-spacing:9.552000pt;}
.ws14b{word-spacing:9.559412pt;}
.ws76{word-spacing:9.605333pt;}
.ws19c{word-spacing:9.658667pt;}
.ws10c{word-spacing:9.818667pt;}
.ws101{word-spacing:10.182400pt;}
.ws141{word-spacing:10.270917pt;}
.ws18e{word-spacing:10.352000pt;}
.wsfa{word-spacing:10.849936pt;}
.ws124{word-spacing:11.047828pt;}
.ws1b8{word-spacing:11.098667pt;}
.wsce{word-spacing:11.189333pt;}
.ws140{word-spacing:11.426079pt;}
.ws1a8{word-spacing:12.325333pt;}
.ws1a7{word-spacing:12.378667pt;}
.ws12d{word-spacing:12.599412pt;}
.ws10b{word-spacing:12.698667pt;}
.ws135{word-spacing:12.922156pt;}
.ws151{word-spacing:13.374121pt;}
.ws143{word-spacing:14.732745pt;}
.wsfb{word-spacing:14.824189pt;}
.ws153{word-spacing:14.864887pt;}
.ws104{word-spacing:14.888109pt;}
.ws15{word-spacing:15.061333pt;}
.ws129{word-spacing:16.003921pt;}
.ws187{word-spacing:16.165333pt;}
.ws14a{word-spacing:16.272945pt;}
.ws115{word-spacing:17.292745pt;}
.wsf5{word-spacing:17.365333pt;}
.ws93{word-spacing:17.438590pt;}
.ws4b{word-spacing:18.725333pt;}
.wsf3{word-spacing:19.380092pt;}
.ws130{word-spacing:19.626667pt;}
.ws132{word-spacing:19.680000pt;}
.ws5b{word-spacing:19.916295pt;}
.ws11b{word-spacing:20.320000pt;}
.ws2{word-spacing:20.800000pt;}
.ws1b7{word-spacing:21.338667pt;}
.ws128{word-spacing:21.360025pt;}
.ws1b5{word-spacing:21.973333pt;}
.ws19d{word-spacing:22.346667pt;}
.ws99{word-spacing:22.645654pt;}
.ws106{word-spacing:22.672000pt;}
.ws6e{word-spacing:23.518590pt;}
.ws113{word-spacing:23.867733pt;}
.ws11d{word-spacing:24.320000pt;}
.ws142{word-spacing:24.975435pt;}
.ws15d{word-spacing:25.010278pt;}
.ws15c{word-spacing:25.058099pt;}
.ws13d{word-spacing:25.719412pt;}
.ws51{word-spacing:25.814962pt;}
.ws44{word-spacing:26.131330pt;}
.wscc{word-spacing:27.064663pt;}
.ws91{word-spacing:27.210681pt;}
.ws3f{word-spacing:27.445333pt;}
.ws7e{word-spacing:29.117997pt;}
.ws1b3{word-spacing:31.733333pt;}
.ws75{word-spacing:34.352015pt;}
.ws168{word-spacing:50.164019pt;}
.ws15e{word-spacing:53.102342pt;}
.wse0{word-spacing:72.005333pt;}
.ws43{word-spacing:80.778667pt;}
.ws15f{word-spacing:153.526022pt;}
.ws160{word-spacing:253.901881pt;}
.ws181{word-spacing:329.219641pt;}
.ws167{word-spacing:354.277740pt;}
.ws161{word-spacing:354.325561pt;}
.wseb{word-spacing:394.098014pt;}
.ws8d{word-spacing:448.565333pt;}
.ws164{word-spacing:454.701420pt;}
.ws180{word-spacing:479.807340pt;}
.ws182{word-spacing:530.019180pt;}
.ws166{word-spacing:555.077279pt;}
.ws165{word-spacing:555.125100pt;}
.ws16b{word-spacing:605.289119pt;}
.ws16a{word-spacing:655.500959pt;}
.ws162{word-spacing:680.606879pt;}
.ws183{word-spacing:705.712799pt;}
.wsfd{word-spacing:716.553600pt;}
.ws78{word-spacing:772.997333pt;}
.ws169{word-spacing:806.088659pt;}
._34{margin-left:-25.153741pt;}
._17{margin-left:-19.712665pt;}
._32{margin-left:-14.824349pt;}
._1a{margin-left:-8.906667pt;}
._1{margin-left:-7.072000pt;}
._4{margin-left:-5.680000pt;}
._2{margin-left:-4.554667pt;}
._9{margin-left:-3.616000pt;}
._0{margin-left:-2.357333pt;}
._6{margin-left:-1.344000pt;}
._5{width:1.642667pt;}
._3{width:2.660160pt;}
._19{width:4.320000pt;}
._d{width:5.706667pt;}
._20{width:7.737607pt;}
._10{width:8.890667pt;}
._e{width:11.274667pt;}
._14{width:12.288000pt;}
._8{width:13.450667pt;}
._3d{width:14.624000pt;}
._22{width:16.394667pt;}
._1d{width:17.354667pt;}
._b{width:18.368000pt;}
._3c{width:19.477333pt;}
._15{width:20.426667pt;}
._21{width:21.397333pt;}
._a{width:22.837333pt;}
._f{width:24.165333pt;}
._3a{width:25.058099pt;}
._31{width:26.410667pt;}
._c{width:27.637333pt;}
._16{width:28.560000pt;}
._12{width:30.144000pt;}
._13{width:31.328000pt;}
._1e{width:32.490667pt;}
._1f{width:33.589333pt;}
._33{width:34.489445pt;}
._11{width:35.968000pt;}
._30{width:37.024000pt;}
._2e{width:39.568210pt;}
._7{width:41.962667pt;}
._35{width:50.211840pt;}
._1b{width:51.241511pt;}
._18{width:62.613333pt;}
._2f{width:72.000000pt;}
._37{width:75.269939pt;}
._2d{width:84.672000pt;}
._36{width:100.375859pt;}
._39{width:125.433958pt;}
._1c{width:139.546667pt;}
._3b{width:150.539878pt;}
._23{width:165.211552pt;}
._38{width:175.645798pt;}
._24{width:196.367887pt;}
._26{width:219.226335pt;}
._25{width:282.272098pt;}
._27{width:361.456831pt;}
._29{width:418.258133pt;}
._2c{width:430.964267pt;}
._2a{width:434.881067pt;}
._2b{width:478.499200pt;}
._28{width:557.989333pt;}
.fs10{font-size:26.566933pt;}
.fsf{font-size:29.866667pt;}
.fse{font-size:31.622528pt;}
.fs6{font-size:33.600000pt;}
.fsb{font-size:37.332800pt;}
.fs3{font-size:41.066667pt;}
.fs7{font-size:42.666667pt;}
.fs2{font-size:44.800000pt;}
.fsd{font-size:45.175040pt;}
.fs11{font-size:47.820800pt;}
.fs5{font-size:48.000000pt;}
.fsc{font-size:52.266133pt;}
.fsa{font-size:53.133867pt;}
.fs8{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs9{font-size:74.666667pt;}
.fs0{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y11f{bottom:252.282667pt;}
.y1c{bottom:252.284000pt;}
.y174{bottom:293.998667pt;}
.y6a{bottom:294.213333pt;}
.y24d{bottom:294.282667pt;}
.y1eb{bottom:294.986667pt;}
.yb3{bottom:297.297333pt;}
.y228{bottom:297.444000pt;}
.y92{bottom:299.972000pt;}
.yb2{bottom:300.593333pt;}
.y22c{bottom:302.298667pt;}
.y199{bottom:307.066667pt;}
.y1ea{bottom:309.598667pt;}
.y69{bottom:310.213333pt;}
.y25a{bottom:310.282667pt;}
.y212{bottom:310.973333pt;}
.y227{bottom:312.056000pt;}
.y159{bottom:314.333333pt;}
.y158{bottom:314.354667pt;}
.y11e{bottom:314.809333pt;}
.y91{bottom:315.972000pt;}
.y22b{bottom:318.298667pt;}
.y43{bottom:319.937333pt;}
.y173{bottom:320.626667pt;}
.y198{bottom:323.066667pt;}
.y24c{bottom:323.566667pt;}
.y1e9{bottom:324.210667pt;}
.yfd{bottom:325.874667pt;}
.y263{bottom:326.282667pt;}
.y226{bottom:326.668000pt;}
.y211{bottom:326.973333pt;}
.y41{bottom:329.082667pt;}
.y11d{bottom:330.809333pt;}
.y13f{bottom:330.860000pt;}
.y1bb{bottom:330.925333pt;}
.y90{bottom:331.972000pt;}
.yb1{bottom:332.593333pt;}
.y22a{bottom:334.298667pt;}
.y68{bottom:337.478667pt;}
.y42{bottom:338.102667pt;}
.y1e8{bottom:338.822667pt;}
.y24b{bottom:339.566667pt;}
.y225{bottom:341.280000pt;}
.yfc{bottom:341.874667pt;}
.y210{bottom:342.973333pt;}
.y157{bottom:346.273333pt;}
.y8f{bottom:346.469333pt;}
.y13e{bottom:346.860000pt;}
.y197{bottom:347.036000pt;}
.yb0{bottom:348.593333pt;}
.yd7{bottom:352.245333pt;}
.y1e7{bottom:353.434667pt;}
.y11c{bottom:354.778667pt;}
.y1ba{bottom:354.968000pt;}
.y24a{bottom:355.566667pt;}
.y8d{bottom:355.614667pt;}
.y67{bottom:355.645333pt;}
.y224{bottom:355.892000pt;}
.y172{bottom:357.497333pt;}
.yfb{bottom:357.874667pt;}
.y20f{bottom:358.973333pt;}
.yaf{bottom:359.994667pt;}
.y229{bottom:362.254667pt;}
.y156{bottom:362.273333pt;}
.yae{bottom:364.593333pt;}
.y8e{bottom:364.634667pt;}
.y196{bottom:365.702667pt;}
.y40{bottom:367.222667pt;}
.y1e6{bottom:368.046667pt;}
.yd6{bottom:368.245333pt;}
.y223{bottom:370.504000pt;}
.y11b{bottom:370.778667pt;}
.y1b9{bottom:370.968000pt;}
.y249{bottom:371.566667pt;}
.y20e{bottom:371.677333pt;}
.y171{bottom:373.497333pt;}
.yfa{bottom:373.874667pt;}
.y20d{bottom:374.973333pt;}
.y8c{bottom:375.222667pt;}
.y155{bottom:378.273333pt;}
.yad{bottom:380.593333pt;}
.y13d{bottom:381.588000pt;}
.y1e5{bottom:382.657333pt;}
.y3f{bottom:383.222667pt;}
.y1b{bottom:384.001333pt;}
.yd5{bottom:384.245333pt;}
.y66{bottom:384.765333pt;}
.y222{bottom:385.116000pt;}
.y11a{bottom:386.778667pt;}
.y1b8{bottom:386.968000pt;}
.y262{bottom:387.566667pt;}
.y20c{bottom:387.677333pt;}
.y170{bottom:389.497333pt;}
.yf9{bottom:389.874667pt;}
.y20b{bottom:390.973333pt;}
.y8b{bottom:391.222667pt;}
.y13c{bottom:396.148000pt;}
.yac{bottom:396.593333pt;}
.y1a{bottom:396.668000pt;}
.y1e4{bottom:397.269333pt;}
.y3e{bottom:399.222667pt;}
.yd4{bottom:399.558667pt;}
.y221{bottom:399.728000pt;}
.y195{bottom:400.309333pt;}
.y65{bottom:400.765333pt;}
.y248{bottom:400.849333pt;}
.y119{bottom:402.778667pt;}
.y1b7{bottom:402.968000pt;}
.y16f{bottom:405.497333pt;}
.yf8{bottom:405.874667pt;}
.y154{bottom:406.396000pt;}
.y20a{bottom:406.973333pt;}
.y8a{bottom:407.222667pt;}
.yd3{bottom:408.704000pt;}
.y1e3{bottom:411.881333pt;}
.yab{bottom:412.593333pt;}
.y220{bottom:414.338667pt;}
.y3d{bottom:415.222667pt;}
.y153{bottom:415.541333pt;}
.y152{bottom:415.562667pt;}
.y194{bottom:416.309333pt;}
.y64{bottom:416.765333pt;}
.y247{bottom:416.849333pt;}
.y1b6{bottom:418.968000pt;}
.y118{bottom:420.106667pt;}
.y16e{bottom:421.497333pt;}
.yf7{bottom:421.874667pt;}
.y19{bottom:422.618667pt;}
.y209{bottom:422.973333pt;}
.y89{bottom:423.222667pt;}
.y1e2{bottom:426.493333pt;}
.y193{bottom:429.440000pt;}
.y3c{bottom:431.222667pt;}
.y191{bottom:432.309333pt;}
.y63{bottom:432.765333pt;}
.y259{bottom:432.849333pt;}
.y13b{bottom:433.421333pt;}
.y117{bottom:434.778667pt;}
.y1b5{bottom:434.968000pt;}
.y192{bottom:435.065333pt;}
.y18{bottom:437.285333pt;}
.yf6{bottom:437.874667pt;}
.y208{bottom:438.973333pt;}
.y88{bottom:439.222667pt;}
.y1e1{bottom:441.105333pt;}
.y21f{bottom:443.562667pt;}
.ya9{bottom:444.577333pt;}
.y246{bottom:446.133333pt;}
.y190{bottom:448.309333pt;}
.y62{bottom:448.765333pt;}
.y267{bottom:448.849333pt;}
.y13a{bottom:449.421333pt;}
.yd2{bottom:449.890667pt;}
.y116{bottom:450.778667pt;}
.y1b4{bottom:450.968000pt;}
.y17{bottom:451.952000pt;}
.yaa{bottom:453.724000pt;}
.yf5{bottom:453.874667pt;}
.y151{bottom:454.384000pt;}
.y207{bottom:454.973333pt;}
.y1e0{bottom:455.717333pt;}
.y21e{bottom:458.174667pt;}
.y3b{bottom:459.177333pt;}
.y245{bottom:462.133333pt;}
.ya8{bottom:462.744000pt;}
.y18f{bottom:464.309333pt;}
.y61{bottom:464.765333pt;}
.y139{bottom:465.421333pt;}
.y16{bottom:466.618667pt;}
.y115{bottom:466.778667pt;}
.y1b3{bottom:466.968000pt;}
.y87{bottom:467.177333pt;}
.y1df{bottom:470.329333pt;}
.y150{bottom:470.384000pt;}
.y206{bottom:470.973333pt;}
.y21d{bottom:472.786667pt;}
.y18e{bottom:477.440000pt;}
.y16d{bottom:477.466667pt;}
.y258{bottom:478.133333pt;}
.y1b2{bottom:479.497333pt;}
.y18c{bottom:480.309333pt;}
.y15{bottom:481.285333pt;}
.y138{bottom:481.421333pt;}
.yf4{bottom:481.829333pt;}
.yd1{bottom:481.890667pt;}
.y1b1{bottom:482.968000pt;}
.y18d{bottom:483.065333pt;}
.y114{bottom:484.106667pt;}
.y1de{bottom:484.941333pt;}
.y14f{bottom:486.384000pt;}
.y205{bottom:486.973333pt;}
.y21c{bottom:487.398667pt;}
.y60{bottom:488.734667pt;}
.y244{bottom:491.416000pt;}
.ya7{bottom:492.605333pt;}
.y16c{bottom:493.466667pt;}
.y257{bottom:494.133333pt;}
.y14{bottom:495.952000pt;}
.y3a{bottom:496.450667pt;}
.y137{bottom:497.421333pt;}
.yd0{bottom:497.890667pt;}
.y113{bottom:498.778667pt;}
.y1b0{bottom:498.968000pt;}
.y1dd{bottom:499.553333pt;}
.y21b{bottom:502.010667pt;}
.y204{bottom:502.973333pt;}
.yf3{bottom:503.162667pt;}
.y86{bottom:504.450667pt;}
.y243{bottom:507.416000pt;}
.y261{bottom:507.417333pt;}
.ya6{bottom:508.605333pt;}
.y266{bottom:510.133333pt;}
.y13{bottom:510.618667pt;}
.y39{bottom:512.450667pt;}
.y136{bottom:513.421333pt;}
.ycf{bottom:513.890667pt;}
.y1dc{bottom:514.165333pt;}
.y14e{bottom:514.340000pt;}
.y112{bottom:514.778667pt;}
.y1af{bottom:514.968000pt;}
.y18b{bottom:515.208000pt;}
.y21a{bottom:516.622667pt;}
.y16b{bottom:517.437333pt;}
.y203{bottom:518.973333pt;}
.y85{bottom:520.450667pt;}
.y5f{bottom:523.341333pt;}
.y242{bottom:523.416000pt;}
.y260{bottom:523.417333pt;}
.ya5{bottom:524.605333pt;}
.y12{bottom:525.285333pt;}
.y38{bottom:528.450667pt;}
.y1db{bottom:528.777333pt;}
.y135{bottom:529.421333pt;}
.yce{bottom:529.890667pt;}
.y1ae{bottom:530.968000pt;}
.y18a{bottom:531.208000pt;}
.y219{bottom:531.234667pt;}
.y111{bottom:532.106667pt;}
.y16a{bottom:533.437333pt;}
.y202{bottom:534.973333pt;}
.y84{bottom:536.450667pt;}
.y5e{bottom:539.341333pt;}
.y256{bottom:539.416000pt;}
.y25f{bottom:539.417333pt;}
.y11{bottom:539.952000pt;}
.yf2{bottom:540.436000pt;}
.ya4{bottom:540.605333pt;}
.y1da{bottom:543.388000pt;}
.y37{bottom:544.450667pt;}
.y134{bottom:545.421333pt;}
.y218{bottom:545.846667pt;}
.ycd{bottom:545.890667pt;}
.y110{bottom:546.778667pt;}
.y1ad{bottom:546.968000pt;}
.y189{bottom:547.208000pt;}
.y83{bottom:547.853333pt;}
.y169{bottom:549.437333pt;}
.y201{bottom:550.973333pt;}
.y82{bottom:552.452000pt;}
.y241{bottom:552.700000pt;}
.y10{bottom:554.618667pt;}
.y5d{bottom:555.341333pt;}
.y255{bottom:555.416000pt;}
.y265{bottom:555.417333pt;}
.yf1{bottom:556.436000pt;}
.ya3{bottom:556.605333pt;}
.y1d9{bottom:558.000000pt;}
.y36{bottom:560.450667pt;}
.y217{bottom:560.457333pt;}
.y133{bottom:561.421333pt;}
.ycc{bottom:561.890667pt;}
.y10f{bottom:562.778667pt;}
.y1ac{bottom:562.968000pt;}
.y188{bottom:563.208000pt;}
.y200{bottom:566.973333pt;}
.y81{bottom:568.452000pt;}
.y240{bottom:568.700000pt;}
.yf{bottom:569.285333pt;}
.y5c{bottom:571.341333pt;}
.yf0{bottom:572.436000pt;}
.y1d8{bottom:572.612000pt;}
.y216{bottom:575.069333pt;}
.y35{bottom:576.450667pt;}
.y168{bottom:577.392000pt;}
.y1ab{bottom:578.968000pt;}
.y187{bottom:579.208000pt;}
.y10e{bottom:580.106667pt;}
.y1ff{bottom:582.973333pt;}
.ye{bottom:583.952000pt;}
.y80{bottom:584.452000pt;}
.y23f{bottom:584.700000pt;}
.ya2{bottom:584.726667pt;}
.ycb{bottom:585.861333pt;}
.y1d7{bottom:587.224000pt;}
.y5b{bottom:587.341333pt;}
.yef{bottom:588.436000pt;}
.y215{bottom:589.681333pt;}
.y34{bottom:592.450667pt;}
.y132{bottom:593.361333pt;}
.y10d{bottom:594.778667pt;}
.y1aa{bottom:594.968000pt;}
.yd{bottom:598.618667pt;}
.y14d{bottom:599.665333pt;}
.y7f{bottom:600.452000pt;}
.y254{bottom:600.700000pt;}
.y1d6{bottom:601.836000pt;}
.ya1{bottom:602.893333pt;}
.yca{bottom:603.189333pt;}
.y5a{bottom:603.341333pt;}
.yee{bottom:604.436000pt;}
.y10c{bottom:606.181333pt;}
.y186{bottom:607.162667pt;}
.y33{bottom:608.450667pt;}
.y10b{bottom:610.778667pt;}
.y1fe{bottom:610.929333pt;}
.y1a9{bottom:610.968000pt;}
.y23e{bottom:613.984000pt;}
.y1d5{bottom:616.448000pt;}
.y253{bottom:616.700000pt;}
.yc{bottom:617.270667pt;}
.yc9{bottom:619.189333pt;}
.y59{bottom:619.341333pt;}
.yed{bottom:620.436000pt;}
.y214{bottom:621.694667pt;}
.y10a{bottom:623.838667pt;}
.y32{bottom:624.450667pt;}
.y131{bottom:625.302667pt;}
.y14c{bottom:625.603265pt;}
.y1a8{bottom:626.968000pt;}
.y109{bottom:628.436000pt;}
.y185{bottom:628.496000pt;}
.y23d{bottom:629.984000pt;}
.y1d4{bottom:631.060000pt;}
.y1fd{bottom:632.262667pt;}
.y7e{bottom:632.392000pt;}
.ya0{bottom:633.606667pt;}
.yc8{bottom:635.189333pt;}
.yec{bottom:636.436000pt;}
.y213{bottom:640.361333pt;}
.y31{bottom:640.450667pt;}
.y1a7{bottom:642.968000pt;}
.y108{bottom:644.436000pt;}
.y1d3{bottom:645.672000pt;}
.y252{bottom:645.984000pt;}
.y58{bottom:646.608000pt;}
.y7d{bottom:648.392000pt;}
.y9f{bottom:649.606667pt;}
.y14b{bottom:652.425945pt;}
.yeb{bottom:652.436000pt;}
.y57{bottom:655.754667pt;}
.y30{bottom:656.450667pt;}
.y130{bottom:657.242667pt;}
.yc7{bottom:657.830667pt;}
.y1a6{bottom:658.968000pt;}
.y23c{bottom:659.266667pt;}
.y1d2{bottom:660.284000pt;}
.y7c{bottom:660.669333pt;}
.y167{bottom:660.876000pt;}
.y107{bottom:661.765333pt;}
.y251{bottom:661.984000pt;}
.yb{bottom:663.817333pt;}
.y7b{bottom:664.392000pt;}
.y9e{bottom:665.606667pt;}
.y184{bottom:665.769333pt;}
.y14a{bottom:665.837285pt;}
.yea{bottom:668.436000pt;}
.y1fc{bottom:669.536000pt;}
.y1a5{bottom:671.672000pt;}
.y2f{bottom:672.450667pt;}
.yc6{bottom:673.830667pt;}
.y1d1{bottom:674.896000pt;}
.y1a4{bottom:674.968000pt;}
.y23b{bottom:675.266667pt;}
.y7a{bottom:680.392000pt;}
.y9d{bottom:681.606667pt;}
.y183{bottom:681.769333pt;}
.ya{bottom:681.817333pt;}
.y106{bottom:684.406667pt;}
.ye9{bottom:684.436000pt;}
.y166{bottom:685.006667pt;}
.y1fb{bottom:685.536000pt;}
.y1a3{bottom:687.672000pt;}
.y2e{bottom:688.450667pt;}
.y12f{bottom:689.182667pt;}
.y1d0{bottom:689.506667pt;}
.yc5{bottom:689.830667pt;}
.y1a2{bottom:690.968000pt;}
.y23a{bottom:691.266667pt;}
.y149{bottom:692.659965pt;}
.y56{bottom:695.488000pt;}
.y79{bottom:696.392000pt;}
.y182{bottom:697.769333pt;}
.y9c{bottom:697.997333pt;}
.y105{bottom:700.406667pt;}
.ye8{bottom:700.436000pt;}
.y9b{bottom:701.294667pt;}
.y1fa{bottom:701.536000pt;}
.y1a1{bottom:703.192000pt;}
.y1cf{bottom:704.118667pt;}
.y2d{bottom:704.450667pt;}
.y12e{bottom:705.182667pt;}
.yc4{bottom:705.830667pt;}
.y148{bottom:706.071305pt;}
.y1a0{bottom:706.968000pt;}
.y250{bottom:707.266667pt;}
.y9a{bottom:710.440000pt;}
.y165{bottom:710.872000pt;}
.y55{bottom:711.488000pt;}
.y78{bottom:712.392000pt;}
.y181{bottom:713.769333pt;}
.y104{bottom:716.406667pt;}
.ye7{bottom:716.436000pt;}
.y1f9{bottom:717.536000pt;}
.y1ce{bottom:718.730667pt;}
.y2c{bottom:720.450667pt;}
.y239{bottom:720.550667pt;}
.y12d{bottom:721.182667pt;}
.y19f{bottom:722.968000pt;}
.y54{bottom:727.488000pt;}
.y77{bottom:728.392000pt;}
.yc3{bottom:729.801333pt;}
.y99{bottom:731.641333pt;}
.y9{bottom:731.697333pt;}
.y103{bottom:732.406667pt;}
.ye6{bottom:732.436000pt;}
.y147{bottom:732.893985pt;}
.y1cd{bottom:733.342667pt;}
.y1f8{bottom:733.536000pt;}
.y164{bottom:736.205333pt;}
.y2b{bottom:736.450667pt;}
.y238{bottom:736.550667pt;}
.y19e{bottom:738.968000pt;}
.y180{bottom:741.725333pt;}
.y53{bottom:743.488000pt;}
.y76{bottom:744.392000pt;}
.y12c{bottom:745.152000pt;}
.y1cc{bottom:747.954667pt;}
.ye5{bottom:748.436000pt;}
.y1f7{bottom:749.536000pt;}
.y8{bottom:749.697333pt;}
.y2a{bottom:752.450667pt;}
.y237{bottom:752.550667pt;}
.y19d{bottom:754.968000pt;}
.y52{bottom:759.488000pt;}
.y146{bottom:759.716665pt;}
.y98{bottom:760.093333pt;}
.y102{bottom:760.361333pt;}
.y75{bottom:760.392000pt;}
.y163{bottom:761.538667pt;}
.y12b{bottom:762.481333pt;}
.y1cb{bottom:762.566667pt;}
.yc2{bottom:764.408000pt;}
.ye4{bottom:764.436000pt;}
.y1f6{bottom:765.536000pt;}
.y25e{bottom:768.550667pt;}
.y97{bottom:769.240000pt;}
.y19c{bottom:770.968000pt;}
.y7{bottom:773.020000pt;}
.y74{bottom:776.392000pt;}
.y12a{bottom:777.152000pt;}
.y1ca{bottom:777.178667pt;}
.y29{bottom:780.406667pt;}
.yc1{bottom:780.408000pt;}
.ye3{bottom:780.436000pt;}
.y1f5{bottom:781.536000pt;}
.y101{bottom:781.694667pt;}
.y236{bottom:781.834667pt;}
.y6{bottom:785.697333pt;}
.y51{bottom:786.240000pt;}
.y162{bottom:786.872000pt;}
.y19b{bottom:786.968000pt;}
.y145{bottom:787.101210pt;}
.y50{bottom:789.536000pt;}
.y1c9{bottom:791.790667pt;}
.y73{bottom:792.392000pt;}
.y129{bottom:793.152000pt;}
.y17f{bottom:794.998667pt;}
.ye2{bottom:796.436000pt;}
.y1f4{bottom:797.536000pt;}
.y235{bottom:797.834667pt;}
.y4f{bottom:798.682667pt;}
.yc0{bottom:799.896000pt;}
.y19a{bottom:802.968000pt;}
.y5{bottom:803.697333pt;}
.y1c8{bottom:806.402667pt;}
.y96{bottom:807.305333pt;}
.y72{bottom:808.392000pt;}
.ybf{bottom:809.281333pt;}
.y128{bottom:810.481333pt;}
.y17e{bottom:810.998667pt;}
.y161{bottom:812.205333pt;}
.y1f3{bottom:813.536000pt;}
.y25d{bottom:813.834667pt;}
.y28{bottom:817.680000pt;}
.y100{bottom:818.968000pt;}
.ye1{bottom:820.406667pt;}
.y1c7{bottom:821.014667pt;}
.y17d{bottom:826.998667pt;}
.y4{bottom:827.020000pt;}
.y234{bottom:827.117333pt;}
.y1f2{bottom:829.536000pt;}
.y264{bottom:829.834667pt;}
.y71{bottom:832.361333pt;}
.ybe{bottom:833.074667pt;}
.y127{bottom:833.122667pt;}
.y27{bottom:833.680000pt;}
.yff{bottom:834.968000pt;}
.y1c6{bottom:835.625333pt;}
.y95{bottom:835.757333pt;}
.y160{bottom:838.069333pt;}
.y4e{bottom:838.416000pt;}
.y17c{bottom:842.998667pt;}
.y233{bottom:843.117333pt;}
.y94{bottom:844.902667pt;}
.y1f1{bottom:845.536000pt;}
.y144{bottom:845.933333pt;}
.y3{bottom:848.996000pt;}
.y126{bottom:849.122667pt;}
.y26{bottom:849.680000pt;}
.y4d{bottom:849.818667pt;}
.y1c5{bottom:850.237333pt;}
.yfe{bottom:850.968000pt;}
.ybc{bottom:851.092000pt;}
.y4c{bottom:854.416000pt;}
.ye0{bottom:855.013333pt;}
.y24f{bottom:859.117333pt;}
.y1f0{bottom:861.536000pt;}
.y1ec{bottom:864.849333pt;}
.y125{bottom:865.122667pt;}
.y25{bottom:865.680000pt;}
.y70{bottom:866.968000pt;}
.ybd{bottom:869.257333pt;}
.y4b{bottom:870.416000pt;}
.ydf{bottom:871.013333pt;}
.y232{bottom:872.401333pt;}
.y25c{bottom:875.117333pt;}
.y1ef{bottom:877.536000pt;}
.y1c4{bottom:879.461333pt;}
.y124{bottom:881.122667pt;}
.ybb{bottom:881.438667pt;}
.y24{bottom:881.680000pt;}
.y6f{bottom:882.968000pt;}
.y143{bottom:883.208000pt;}
.y17b{bottom:884.297333pt;}
.yde{bottom:887.013333pt;}
.y231{bottom:888.401333pt;}
.y1c3{bottom:894.073333pt;}
.y2{bottom:894.896000pt;}
.y123{bottom:897.122667pt;}
.y23{bottom:897.680000pt;}
.y15f{bottom:897.790667pt;}
.y6e{bottom:898.968000pt;}
.yba{bottom:899.256000pt;}
.y49{bottom:899.682667pt;}
.y17a{bottom:900.297333pt;}
.y1ee{bottom:901.505333pt;}
.ydd{bottom:903.013333pt;}
.y230{bottom:904.401333pt;}
.yb9{bottom:908.402667pt;}
.y1c2{bottom:908.685333pt;}
.y48{bottom:908.828000pt;}
.y122{bottom:909.826667pt;}
.y121{bottom:911.562667pt;}
.y120{bottom:913.122667pt;}
.y22{bottom:913.680000pt;}
.y6d{bottom:914.968000pt;}
.y142{bottom:915.148000pt;}
.y179{bottom:916.297333pt;}
.y268{bottom:917.685333pt;}
.y4a{bottom:917.849333pt;}
.ydc{bottom:919.013333pt;}
.y1ed{bottom:920.172000pt;}
.y22f{bottom:920.401333pt;}
.y1c1{bottom:923.297333pt;}
.y1{bottom:924.896000pt;}
.y21{bottom:929.680000pt;}
.y6c{bottom:930.968000pt;}
.yb8{bottom:932.196000pt;}
.y24e{bottom:933.685333pt;}
.y15e{bottom:934.661333pt;}
.ydb{bottom:935.013333pt;}
.y1c0{bottom:937.909333pt;}
.y6b{bottom:942.370667pt;}
.y20{bottom:945.680000pt;}
.y47{bottom:946.968000pt;}
.y141{bottom:947.088000pt;}
.yb7{bottom:948.196000pt;}
.y22e{bottom:949.685333pt;}
.yda{bottom:951.013333pt;}
.y1bf{bottom:952.521333pt;}
.y1f{bottom:961.680000pt;}
.y46{bottom:962.968000pt;}
.yb6{bottom:964.196000pt;}
.y178{bottom:964.297333pt;}
.y15b{bottom:964.582667pt;}
.y22d{bottom:965.685333pt;}
.yd9{bottom:967.013333pt;}
.y1be{bottom:967.133333pt;}
.y15c{bottom:969.130667pt;}
.y15a{bottom:973.728000pt;}
.y93{bottom:974.370667pt;}
.y45{bottom:978.968000pt;}
.y140{bottom:979.028000pt;}
.y177{bottom:980.297333pt;}
.y25b{bottom:981.685333pt;}
.y1bd{bottom:981.745333pt;}
.yb5{bottom:982.362667pt;}
.y15d{bottom:982.749333pt;}
.yd8{bottom:983.013333pt;}
.y1e{bottom:989.634667pt;}
.yb4{bottom:991.509333pt;}
.y44{bottom:994.968000pt;}
.y176{bottom:996.297333pt;}
.y1bc{bottom:996.356000pt;}
.y1d{bottom:1010.968000pt;}
.y175{bottom:1012.297333pt;}
.h3c{height:18.012381pt;}
.h32{height:27.999600pt;}
.h35{height:28.036933pt;}
.h4{height:30.841067pt;}
.h8{height:32.042667pt;}
.h3b{height:33.283277pt;}
.h6{height:33.648000pt;}
.h2e{height:33.926455pt;}
.h33{height:35.245867pt;}
.h34{height:35.251200pt;}
.h2b{height:35.331906pt;}
.h7{height:36.048000pt;}
.h2f{height:37.317971pt;}
.h2d{height:39.850400pt;}
.h2c{height:39.935733pt;}
.hc{height:40.000000pt;}
.h9{height:40.053333pt;}
.h26{height:40.660953pt;}
.h1a{height:41.333333pt;}
.h27{height:42.020953pt;}
.h13{height:42.026286pt;}
.h5{height:44.058667pt;}
.hb{height:45.972953pt;}
.h19{height:48.064000pt;}
.h1d{height:48.639620pt;}
.h1e{height:48.996933pt;}
.h10{height:49.002267pt;}
.h37{height:50.330286pt;}
.h36{height:51.530667pt;}
.h29{height:52.212953pt;}
.h22{height:53.184000pt;}
.h2a{height:53.237333pt;}
.h20{height:53.423620pt;}
.h3a{height:53.936000pt;}
.h39{height:54.517333pt;}
.h1c{height:54.944000pt;}
.h28{height:55.700933pt;}
.ha{height:56.074667pt;}
.h3{height:56.871467pt;}
.h11{height:58.442667pt;}
.h21{height:58.448000pt;}
.h3d{height:59.156953pt;}
.h38{height:61.076953pt;}
.h2{height:63.738667pt;}
.hf{height:76.080000pt;}
.h1f{height:76.581333pt;}
.he{height:76.634667pt;}
.h1b{height:76.640000pt;}
.h30{height:77.413333pt;}
.h25{height:77.594667pt;}
.h12{height:82.052953pt;}
.h18{height:85.220953pt;}
.h31{height:102.922667pt;}
.hd{height:112.661333pt;}
.h16{height:112.666667pt;}
.h24{height:113.914667pt;}
.h23{height:118.634286pt;}
.h17{height:118.639620pt;}
.h15{height:127.104000pt;}
.h14{height:131.823620pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6b{left:102.068000pt;}
.x69{left:106.588000pt;}
.x65{left:111.106667pt;}
.x61{left:115.625333pt;}
.x14{left:133.428000pt;}
.x6a{left:134.766667pt;}
.x4b{left:137.057333pt;}
.x67{left:139.285333pt;}
.x54{left:141.397333pt;}
.x64{left:143.804000pt;}
.x4a{left:146.760000pt;}
.x62{left:148.324000pt;}
.x2{left:149.368000pt;}
.x7{left:151.645333pt;}
.x15{left:153.353333pt;}
.x1{left:156.654667pt;}
.x6{left:158.542667pt;}
.x66{left:159.994667pt;}
.x9{left:165.036000pt;}
.xd{left:166.126667pt;}
.x6d{left:170.104000pt;}
.x4{left:172.849333pt;}
.x4c{left:174.564517pt;}
.x6e{left:178.213333pt;}
.x46{left:179.457333pt;}
.xf{left:186.052000pt;}
.xe{left:187.121333pt;}
.x60{left:190.122667pt;}
.x63{left:192.693333pt;}
.x58{left:197.745333pt;}
.x68{left:198.968000pt;}
.x36{left:201.880000pt;}
.x59{left:203.614667pt;}
.x5a{left:211.020000pt;}
.x19{left:217.137333pt;}
.x5b{left:219.181333pt;}
.x5c{left:225.050667pt;}
.x3b{left:229.406667pt;}
.x5d{left:232.456000pt;}
.x1f{left:236.754667pt;}
.x5{left:239.553333pt;}
.x1a{left:244.768000pt;}
.x37{left:272.884000pt;}
.x3c{left:273.876000pt;}
.x32{left:275.506667pt;}
.x20{left:279.041333pt;}
.xa{left:283.562667pt;}
.x5e{left:291.608000pt;}
.x16{left:292.676000pt;}
.x41{left:298.114667pt;}
.x4e{left:302.233333pt;}
.x4d{left:304.477333pt;}
.x38{left:315.566667pt;}
.x53{left:316.916000pt;}
.x3{left:319.424000pt;}
.x24{left:322.265333pt;}
.x2a{left:325.029333pt;}
.x2c{left:327.322667pt;}
.x8{left:329.364000pt;}
.x10{left:330.928000pt;}
.x33{left:339.230667pt;}
.x42{left:346.608000pt;}
.x39{left:348.340000pt;}
.x50{left:349.785333pt;}
.x1b{left:351.584000pt;}
.xb{left:353.348000pt;}
.x2e{left:354.546667pt;}
.x1c{left:355.562667pt;}
.x2f{left:358.525333pt;}
.x2b{left:361.081333pt;}
.x17{left:362.342667pt;}
.x2d{left:364.557333pt;}
.x21{left:368.550667pt;}
.x23{left:370.706667pt;}
.x47{left:372.368000pt;}
.x57{left:373.836000pt;}
.xc{left:377.169333pt;}
.x3e{left:380.832000pt;}
.x28{left:382.837333pt;}
.x11{left:384.482667pt;}
.x43{left:389.005333pt;}
.x44{left:392.681333pt;}
.x34{left:398.885333pt;}
.x52{left:406.534667pt;}
.x3f{left:407.785333pt;}
.x13{left:409.866667pt;}
.x51{left:415.437333pt;}
.x22{left:421.833333pt;}
.x3a{left:424.852000pt;}
.x29{left:426.084000pt;}
.x40{left:441.862667pt;}
.x4f{left:443.085333pt;}
.x18{left:450.848000pt;}
.x12{left:457.270667pt;}
.x3d{left:465.616000pt;}
.x56{left:468.970667pt;}
.x35{left:473.329333pt;}
.x45{left:480.684000pt;}
.x1d{left:481.642667pt;}
.x1e{left:485.621333pt;}
.x30{left:486.828000pt;}
.x31{left:490.806667pt;}
.x48{left:515.268000pt;}
.x27{left:516.705333pt;}
.x25{left:547.052000pt;}
.x6c{left:548.601333pt;}
.x5f{left:550.638667pt;}
.x55{left:572.972000pt;}
.x49{left:586.604000pt;}
.x26{left:643.240000pt;}
}




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