
    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_1f7194cd7602aed9a43bd049.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.109000;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_3e35ecf35793b41eebc181ce.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.926758;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_07ded23815a280452f6582e3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.063477;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_aa980535a7dc0a961b698858.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.763184;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_81aaf4c3ae6528eeb3e1c604.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.144531;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_5b9f54a99812f8a6f6e2981e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.768720;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_8b59ce066c444b83e9146573.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.760254;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_8b59ce066c444b83e9146573.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.760254;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_5b9f54a99812f8a6f6e2981e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.768720;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_c68f89492f0a2767c87e8755.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.063477;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_81aaf4c3ae6528eeb3e1c604.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.144531;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_6358482e9a7468d4eebdd121.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.923828;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_4fac25b35977562feeb1c32e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.113281;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_873e18c3aa0aa9fe109fceac.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.106934;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_d92a40b29e69b543479085b4.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;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_96b03bb5cee68ef037c962f1.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938477;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_a7c194728501acfeebaf0ecb.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.726562;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_dd6b4ddc803fbd3ec2ac8511.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;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_dd474697c3081edc1b58eeee.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.886719;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_a322a8c794814edafbe758cd.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.682617;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_68cf7763c0545bc7d16a8c3a.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.910156;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_1ddd179832fd60fd97834ed1.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.868164;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_93c607b0d1326b05abfb4378.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.019531;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_91a2872dc12809ed9fd570ee.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.898438;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_9073319c97c0c939492f23bd.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.941895;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_1f7194cd7602aed9a43bd049.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.109000;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_3e35ecf35793b41eebc181ce.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.926758;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_13572dec0a518e3abdc9df00.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.063477;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_57434896eadb6af76849006e.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.763184;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_92cbd8f3ef4ce599595aaa14.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.144531;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_5b9f54a99812f8a6f6e2981e.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.768720;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_2bdd134a9c7c0545f80cf5b1.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.760254;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls43{letter-spacing:-0.703404px;}
.ls3d{letter-spacing:-0.697392px;}
.ls40{letter-spacing:-0.685368px;}
.ls42{letter-spacing:-0.679356px;}
.ls41{letter-spacing:-0.673344px;}
.ls3e{letter-spacing:-0.667332px;}
.ls3f{letter-spacing:-0.649296px;}
.ls45{letter-spacing:-0.505008px;}
.ls4f{letter-spacing:-0.342684px;}
.ls4d{letter-spacing:-0.324648px;}
.ls23{letter-spacing:-0.282564px;}
.ls73{letter-spacing:-0.280800px;}
.ls3b{letter-spacing:-0.270540px;}
.ls8d{letter-spacing:-0.264528px;}
.ls33{letter-spacing:-0.252504px;}
.ls51{letter-spacing:-0.246492px;}
.ls1d{letter-spacing:-0.234468px;}
.ls10{letter-spacing:-0.228456px;}
.ls12{letter-spacing:-0.222444px;}
.ls8e{letter-spacing:-0.210420px;}
.ls49{letter-spacing:-0.204408px;}
.ls52{letter-spacing:-0.198396px;}
.ls34{letter-spacing:-0.186372px;}
.ls50{letter-spacing:-0.162324px;}
.ls4b{letter-spacing:-0.150300px;}
.ls21{letter-spacing:-0.144288px;}
.ls24{letter-spacing:-0.138276px;}
.ls7a{letter-spacing:-0.136800px;}
.ls78{letter-spacing:-0.133200px;}
.ls29{letter-spacing:-0.132264px;}
.ls28{letter-spacing:-0.120240px;}
.ls66{letter-spacing:-0.118800px;}
.ls46{letter-spacing:-0.114228px;}
.ls1f{letter-spacing:-0.108216px;}
.ls72{letter-spacing:-0.108000px;}
.ls18{letter-spacing:-0.105336px;}
.ls31{letter-spacing:-0.102204px;}
.ls2d{letter-spacing:-0.096192px;}
.ls20{letter-spacing:-0.090180px;}
.ls76{letter-spacing:-0.090000px;}
.ls4a{letter-spacing:-0.084168px;}
.ls77{letter-spacing:-0.082800px;}
.ls63{letter-spacing:-0.079200px;}
.ls26{letter-spacing:-0.078156px;}
.ls6a{letter-spacing:-0.075600px;}
.ls1c{letter-spacing:-0.072144px;}
.ls8f{letter-spacing:-0.071820px;}
.lsd{letter-spacing:-0.066132px;}
.ls62{letter-spacing:-0.064800px;}
.ls4c{letter-spacing:-0.060120px;}
.ls74{letter-spacing:-0.057600px;}
.ls27{letter-spacing:-0.054108px;}
.ls6f{letter-spacing:-0.054000px;}
.ls6c{letter-spacing:-0.050400px;}
.ls2e{letter-spacing:-0.048096px;}
.ls5f{letter-spacing:-0.046800px;}
.ls61{letter-spacing:-0.043200px;}
.ls81{letter-spacing:-0.043092px;}
.ls1e{letter-spacing:-0.042084px;}
.ls80{letter-spacing:-0.038304px;}
.ls13{letter-spacing:-0.036072px;}
.ls70{letter-spacing:-0.032400px;}
.ls1b{letter-spacing:-0.030060px;}
.ls65{letter-spacing:-0.028800px;}
.ls30{letter-spacing:-0.028728px;}
.ls1a{letter-spacing:-0.024048px;}
.lsc{letter-spacing:-0.023940px;}
.ls69{letter-spacing:-0.021600px;}
.ls19{letter-spacing:-0.019152px;}
.ls14{letter-spacing:-0.018036px;}
.ls60{letter-spacing:-0.018000px;}
.ls79{letter-spacing:-0.014400px;}
.lse{letter-spacing:-0.012024px;}
.ls67{letter-spacing:-0.010800px;}
.ls75{letter-spacing:-0.007200px;}
.lsf{letter-spacing:-0.006012px;}
.ls39{letter-spacing:-0.004788px;}
.ls0{letter-spacing:0.000000px;}
.ls5e{letter-spacing:0.003600px;}
.ls7d{letter-spacing:0.004788px;}
.ls2{letter-spacing:0.006012px;}
.ls88{letter-spacing:0.009360px;}
.ls16{letter-spacing:0.009576px;}
.ls6b{letter-spacing:0.010800px;}
.ls6{letter-spacing:0.012024px;}
.ls85{letter-spacing:0.014364px;}
.ls56{letter-spacing:0.014400px;}
.ls9{letter-spacing:0.018036px;}
.ls15{letter-spacing:0.019152px;}
.ls4{letter-spacing:0.024048px;}
.ls71{letter-spacing:0.025200px;}
.ls7e{letter-spacing:0.028728px;}
.ls5{letter-spacing:0.030060px;}
.ls5a{letter-spacing:0.032400px;}
.ls7f{letter-spacing:0.033516px;}
.lsa{letter-spacing:0.036072px;}
.ls7{letter-spacing:0.042084px;}
.ls83{letter-spacing:0.043092px;}
.ls5b{letter-spacing:0.043200px;}
.ls3{letter-spacing:0.048096px;}
.ls7b{letter-spacing:0.050400px;}
.ls2c{letter-spacing:0.054108px;}
.ls17{letter-spacing:0.060120px;}
.ls87{letter-spacing:0.062244px;}
.ls55{letter-spacing:0.064800px;}
.ls8{letter-spacing:0.066132px;}
.ls57{letter-spacing:0.068400px;}
.ls6d{letter-spacing:0.072000px;}
.ls35{letter-spacing:0.072144px;}
.ls32{letter-spacing:0.078156px;}
.ls89{letter-spacing:0.081396px;}
.ls68{letter-spacing:0.082800px;}
.ls54{letter-spacing:0.086184px;}
.ls58{letter-spacing:0.086400px;}
.ls2b{letter-spacing:0.090180px;}
.ls37{letter-spacing:0.096192px;}
.lsb{letter-spacing:0.102204px;}
.ls82{letter-spacing:0.105336px;}
.ls4e{letter-spacing:0.108216px;}
.ls2f{letter-spacing:0.114228px;}
.ls64{letter-spacing:0.118800px;}
.ls11{letter-spacing:0.120240px;}
.ls84{letter-spacing:0.132264px;}
.ls5d{letter-spacing:0.136800px;}
.ls8b{letter-spacing:0.138276px;}
.ls8a{letter-spacing:0.140040px;}
.ls6e{letter-spacing:0.147600px;}
.ls86{letter-spacing:0.151200px;}
.ls59{letter-spacing:0.162000px;}
.ls3a{letter-spacing:0.180360px;}
.ls53{letter-spacing:0.204408px;}
.ls44{letter-spacing:0.216432px;}
.ls47{letter-spacing:0.244188px;}
.ls8c{letter-spacing:0.344736px;}
.ls36{letter-spacing:0.373464px;}
.ls1{letter-spacing:0.378252px;}
.ls5c{letter-spacing:167.760000px;}
.ls3c{letter-spacing:178.418124px;}
.ls2a{letter-spacing:185.940000px;}
.ls48{letter-spacing:187.418088px;}
.ls38{letter-spacing:190.811376px;}
.ls22{letter-spacing:192.089412px;}
.ls25{letter-spacing:196.057332px;}
.ls7c{letter-spacing:419.769360px;}
.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;}
}
.ws228{word-spacing:-17.978400px;}
.ws21f{word-spacing:-16.851636px;}
.ws74{word-spacing:-16.791516px;}
.ws221{word-spacing:-16.785504px;}
.ws227{word-spacing:-16.779492px;}
.ws140{word-spacing:-16.755444px;}
.ws2a{word-spacing:-16.749432px;}
.ws1e3{word-spacing:-16.737408px;}
.ws1ad{word-spacing:-16.731396px;}
.ws29{word-spacing:-16.725384px;}
.ws1e4{word-spacing:-16.719372px;}
.wsd2{word-spacing:-16.713360px;}
.ws1ac{word-spacing:-16.707348px;}
.ws1ef{word-spacing:-16.701336px;}
.ws1f0{word-spacing:-16.695324px;}
.ws2b{word-spacing:-16.677288px;}
.wsa6{word-spacing:-13.684104px;}
.ws225{word-spacing:-13.415976px;}
.ws223{word-spacing:-13.392036px;}
.ws222{word-spacing:-13.372884px;}
.ws220{word-spacing:-13.353732px;}
.ws21e{word-spacing:-13.339368px;}
.ws226{word-spacing:-13.325004px;}
.ws73{word-spacing:-13.320216px;}
.ws224{word-spacing:-13.315428px;}
.ws204{word-spacing:-12.430800px;}
.ws206{word-spacing:-12.398400px;}
.ws20b{word-spacing:-12.355200px;}
.ws207{word-spacing:-12.290400px;}
.ws205{word-spacing:-12.283200px;}
.ws208{word-spacing:-12.232800px;}
.ws4{word-spacing:-12.000000px;}
.ws2f{word-spacing:-10.797552px;}
.ws30{word-spacing:-10.436832px;}
.ws35{word-spacing:-9.366696px;}
.ws20c{word-spacing:-9.136800px;}
.ws20e{word-spacing:-9.003600px;}
.ws20d{word-spacing:-9.000000px;}
.ws20a{word-spacing:-8.989200px;}
.ws209{word-spacing:-8.719200px;}
.ws2e{word-spacing:-7.563096px;}
.ws2c{word-spacing:-7.557084px;}
.ws36{word-spacing:-5.044068px;}
.ws34{word-spacing:-1.082160px;}
.ws199{word-spacing:-0.571140px;}
.ws193{word-spacing:-0.559116px;}
.ws241{word-spacing:-0.547092px;}
.ws1d{word-spacing:-0.541080px;}
.ws1a5{word-spacing:-0.535068px;}
.ws1e6{word-spacing:-0.529056px;}
.ws14e{word-spacing:-0.523044px;}
.ws180{word-spacing:-0.511020px;}
.ws1ae{word-spacing:-0.505008px;}
.ws15b{word-spacing:-0.486972px;}
.ws16{word-spacing:-0.264528px;}
.ws1b7{word-spacing:-0.252504px;}
.ws1b{word-spacing:-0.246492px;}
.ws3d{word-spacing:-0.234468px;}
.wsfb{word-spacing:-0.222444px;}
.ws1f6{word-spacing:-0.216432px;}
.ws11{word-spacing:-0.210420px;}
.ws24{word-spacing:-0.204408px;}
.ws18e{word-spacing:-0.198396px;}
.ws7{word-spacing:-0.192384px;}
.wse{word-spacing:-0.186372px;}
.ws17{word-spacing:-0.180360px;}
.ws218{word-spacing:-0.177156px;}
.wsa{word-spacing:-0.174348px;}
.ws219{word-spacing:-0.172368px;}
.ws9{word-spacing:-0.168336px;}
.ws12{word-spacing:-0.162324px;}
.wsb{word-spacing:-0.156312px;}
.ws6{word-spacing:-0.150300px;}
.ws10{word-spacing:-0.144288px;}
.wsf{word-spacing:-0.138276px;}
.wsd{word-spacing:-0.132264px;}
.ws1a{word-spacing:-0.126252px;}
.ws1f{word-spacing:-0.120240px;}
.ws20{word-spacing:-0.114228px;}
.wsfc{word-spacing:-0.108216px;}
.ws26{word-spacing:-0.102204px;}
.ws1e7{word-spacing:-0.096192px;}
.ws32{word-spacing:-0.090180px;}
.ws19f{word-spacing:-0.084168px;}
.ws8{word-spacing:-0.078156px;}
.ws21{word-spacing:-0.072144px;}
.ws31{word-spacing:-0.066132px;}
.ws38{word-spacing:-0.060120px;}
.ws28{word-spacing:-0.054108px;}
.ws247{word-spacing:-0.048096px;}
.ws27{word-spacing:-0.036072px;}
.ws15a{word-spacing:-0.030060px;}
.ws33{word-spacing:-0.024048px;}
.ws240{word-spacing:-0.023940px;}
.ws21a{word-spacing:-0.014400px;}
.ws244{word-spacing:-0.014364px;}
.ws243{word-spacing:-0.009576px;}
.ws0{word-spacing:0.000000px;}
.ws23a{word-spacing:0.004788px;}
.wsd1{word-spacing:0.009576px;}
.ws21d{word-spacing:0.014400px;}
.wsd0{word-spacing:0.023940px;}
.ws21c{word-spacing:0.028800px;}
.ws91{word-spacing:0.042084px;}
.ws182{word-spacing:0.060120px;}
.ws23c{word-spacing:0.066132px;}
.ws18{word-spacing:0.078156px;}
.ws14{word-spacing:0.084168px;}
.ws22{word-spacing:0.090180px;}
.ws203{word-spacing:0.108216px;}
.ws3{word-spacing:0.120000px;}
.ws238{word-spacing:0.120240px;}
.wse4{word-spacing:0.126252px;}
.ws166{word-spacing:0.134064px;}
.ws2d{word-spacing:0.138276px;}
.ws100{word-spacing:0.144288px;}
.ws1f8{word-spacing:0.162324px;}
.ws62{word-spacing:0.174348px;}
.wsf7{word-spacing:0.186372px;}
.ws12d{word-spacing:0.192384px;}
.ws61{word-spacing:0.198396px;}
.ws1ee{word-spacing:0.222444px;}
.wsc9{word-spacing:0.258516px;}
.ws246{word-spacing:0.349524px;}
.ws242{word-spacing:0.360720px;}
.ws1c{word-spacing:0.397404px;}
.ws5{word-spacing:0.402192px;}
.ws75{word-spacing:0.406980px;}
.ws21b{word-spacing:0.414000px;}
.ws23d{word-spacing:0.450072px;}
.ws20f{word-spacing:0.517032px;}
.wsee{word-spacing:0.541080px;}
.wsc0{word-spacing:0.553104px;}
.ws19b{word-spacing:0.559116px;}
.ws210{word-spacing:0.565128px;}
.wsed{word-spacing:0.577152px;}
.ws19c{word-spacing:0.625248px;}
.ws14c{word-spacing:0.913824px;}
.ws79{word-spacing:0.925848px;}
.ws1cc{word-spacing:0.937872px;}
.ws115{word-spacing:0.943884px;}
.ws154{word-spacing:0.949896px;}
.ws1a9{word-spacing:0.955908px;}
.ws1aa{word-spacing:0.967932px;}
.ws153{word-spacing:0.973944px;}
.ws192{word-spacing:1.238472px;}
.wse9{word-spacing:1.262520px;}
.ws56{word-spacing:1.274544px;}
.ws13d{word-spacing:1.280556px;}
.ws12c{word-spacing:1.286568px;}
.ws1e{word-spacing:1.298592px;}
.ws19e{word-spacing:1.448892px;}
.ws1d6{word-spacing:1.605204px;}
.wsab{word-spacing:1.635264px;}
.wsea{word-spacing:1.641276px;}
.ws1a0{word-spacing:1.653300px;}
.wsb0{word-spacing:1.971936px;}
.wse3{word-spacing:1.977948px;}
.ws15f{word-spacing:1.983960px;}
.ws1e1{word-spacing:1.989972px;}
.ws160{word-spacing:1.995984px;}
.wse2{word-spacing:2.001996px;}
.wsb1{word-spacing:2.008008px;}
.ws40{word-spacing:2.014020px;}
.ws1e0{word-spacing:2.020032px;}
.ws213{word-spacing:2.302596px;}
.ws152{word-spacing:2.308608px;}
.wsa8{word-spacing:2.350692px;}
.ws1f4{word-spacing:2.356704px;}
.ws195{word-spacing:2.362716px;}
.ws16e{word-spacing:2.374740px;}
.ws187{word-spacing:2.386764px;}
.ws16b{word-spacing:2.416824px;}
.ws16c{word-spacing:2.440872px;}
.ws214{word-spacing:2.657304px;}
.ws6f{word-spacing:2.693376px;}
.ws215{word-spacing:2.699388px;}
.wsa3{word-spacing:2.711412px;}
.ws70{word-spacing:2.717424px;}
.wsc2{word-spacing:2.723436px;}
.ws133{word-spacing:2.747484px;}
.ws5b{word-spacing:2.759508px;}
.ws22b{word-spacing:2.765520px;}
.ws76{word-spacing:2.789568px;}
.ws22a{word-spacing:2.801592px;}
.ws78{word-spacing:2.807604px;}
.ws5a{word-spacing:2.825640px;}
.ws59{word-spacing:2.831652px;}
.ws77{word-spacing:2.837664px;}
.ws104{word-spacing:3.054096px;}
.ws6c{word-spacing:3.066120px;}
.wsf3{word-spacing:3.078144px;}
.ws9a{word-spacing:3.084156px;}
.wsbf{word-spacing:3.090168px;}
.ws13f{word-spacing:3.096180px;}
.ws12f{word-spacing:3.102192px;}
.wsf2{word-spacing:3.108204px;}
.ws109{word-spacing:3.414816px;}
.ws96{word-spacing:3.432852px;}
.ws95{word-spacing:3.444876px;}
.ws1ea{word-spacing:3.474936px;}
.ws68{word-spacing:3.504996px;}
.ws10c{word-spacing:3.769524px;}
.wse8{word-spacing:3.799584px;}
.ws7b{word-spacing:3.817620px;}
.ws7a{word-spacing:3.823632px;}
.ws176{word-spacing:4.154292px;}
.ws194{word-spacing:4.166316px;}
.wsaf{word-spacing:4.172328px;}
.wsb5{word-spacing:4.490964px;}
.ws44{word-spacing:4.496976px;}
.ws1a7{word-spacing:4.509000px;}
.ws43{word-spacing:4.515012px;}
.ws65{word-spacing:4.527036px;}
.ws42{word-spacing:4.533048px;}
.ws1d1{word-spacing:4.539060px;}
.ws128{word-spacing:4.857696px;}
.ws1e9{word-spacing:4.869720px;}
.ws1da{word-spacing:4.875732px;}
.ws4c{word-spacing:4.881744px;}
.ws1f5{word-spacing:4.899780px;}
.ws1db{word-spacing:4.917816px;}
.ws1e8{word-spacing:5.140260px;}
.wse7{word-spacing:5.230440px;}
.ws1dd{word-spacing:5.242464px;}
.ws172{word-spacing:5.248476px;}
.ws117{word-spacing:5.254488px;}
.ws159{word-spacing:5.260500px;}
.ws1dc{word-spacing:5.272524px;}
.ws5f{word-spacing:5.561100px;}
.ws3f{word-spacing:5.573124px;}
.ws1df{word-spacing:5.585148px;}
.ws57{word-spacing:5.591160px;}
.ws1f9{word-spacing:5.603184px;}
.ws158{word-spacing:5.615208px;}
.ws1d4{word-spacing:5.621220px;}
.ws114{word-spacing:5.933844px;}
.ws113{word-spacing:5.951880px;}
.ws201{word-spacing:5.981940px;}
.wsc6{word-spacing:6.264504px;}
.ws8e{word-spacing:6.270516px;}
.ws8d{word-spacing:6.300576px;}
.ws71{word-spacing:6.306588px;}
.ws1fe{word-spacing:6.318612px;}
.ws1a3{word-spacing:6.324624px;}
.wsa2{word-spacing:6.342660px;}
.wsc7{word-spacing:6.348672px;}
.ws1c5{word-spacing:6.366708px;}
.ws1c6{word-spacing:6.396768px;}
.ws1c7{word-spacing:6.498972px;}
.wsad{word-spacing:6.655284px;}
.ws18f{word-spacing:6.667308px;}
.ws136{word-spacing:6.673320px;}
.ws167{word-spacing:6.679332px;}
.ws161{word-spacing:6.691356px;}
.ws126{word-spacing:6.991956px;}
.ws10d{word-spacing:7.016004px;}
.ws196{word-spacing:7.034040px;}
.ws173{word-spacing:7.040052px;}
.ws148{word-spacing:7.052076px;}
.ws1a1{word-spacing:7.058088px;}
.wsae{word-spacing:7.070112px;}
.ws229{word-spacing:7.106184px;}
.ws9b{word-spacing:7.124220px;}
.ws9c{word-spacing:7.166304px;}
.ws1ab{word-spacing:7.304580px;}
.ws121{word-spacing:7.370712px;}
.ws10e{word-spacing:7.376724px;}
.ws10f{word-spacing:7.382736px;}
.ws58{word-spacing:7.388748px;}
.ws177{word-spacing:7.394760px;}
.ws6d{word-spacing:7.400772px;}
.ws17a{word-spacing:7.412796px;}
.ws127{word-spacing:7.436844px;}
.ws188{word-spacing:7.701372px;}
.ws125{word-spacing:7.725420px;}
.ws54{word-spacing:7.743456px;}
.ws4b{word-spacing:7.761492px;}
.wsc8{word-spacing:7.773516px;}
.ws231{word-spacing:7.839648px;}
.ws230{word-spacing:7.851672px;}
.ws23{word-spacing:8.092152px;}
.ws103{word-spacing:8.110188px;}
.wscc{word-spacing:8.122212px;}
.ws143{word-spacing:8.224416px;}
.ws142{word-spacing:8.254476px;}
.ws144{word-spacing:8.272512px;}
.ws1cb{word-spacing:8.368704px;}
.ws80{word-spacing:8.380728px;}
.ws1a8{word-spacing:8.458884px;}
.ws1cf{word-spacing:8.470908px;}
.ws9e{word-spacing:8.476920px;}
.ws51{word-spacing:8.843652px;}
.wsb6{word-spacing:8.855676px;}
.ws53{word-spacing:8.873712px;}
.ws10b{word-spacing:9.174312px;}
.ws139{word-spacing:9.180324px;}
.ws16f{word-spacing:9.186336px;}
.ws3e{word-spacing:9.198360px;}
.ws9f{word-spacing:9.204372px;}
.ws164{word-spacing:9.222408px;}
.ws1c3{word-spacing:9.547056px;}
.ws50{word-spacing:9.553068px;}
.ws1b2{word-spacing:9.559080px;}
.ws15e{word-spacing:9.565092px;}
.ws15d{word-spacing:9.571104px;}
.ws4d{word-spacing:9.655272px;}
.ws4e{word-spacing:9.673308px;}
.ws175{word-spacing:9.925812px;}
.ws9d{word-spacing:10.256472px;}
.ws4f{word-spacing:10.280520px;}
.ws1ca{word-spacing:10.310580px;}
.ws1ce{word-spacing:10.599156px;}
.ws179{word-spacing:10.623204px;}
.ws108{word-spacing:10.629216px;}
.ws87{word-spacing:10.635228px;}
.ws6a{word-spacing:10.641240px;}
.ws6b{word-spacing:10.659276px;}
.ws86{word-spacing:10.665288px;}
.ws233{word-spacing:10.737432px;}
.ws232{word-spacing:10.743444px;}
.wsdb{word-spacing:10.965888px;}
.ws14b{word-spacing:10.971900px;}
.wsfa{word-spacing:10.983924px;}
.ws13a{word-spacing:10.989936px;}
.ws5c{word-spacing:11.007972px;}
.ws13b{word-spacing:11.026008px;}
.wse6{word-spacing:11.332620px;}
.ws1ba{word-spacing:11.344644px;}
.wsb9{word-spacing:11.350656px;}
.ws94{word-spacing:11.374704px;}
.wsb8{word-spacing:11.380716px;}
.wsb3{word-spacing:11.669292px;}
.ws5d{word-spacing:11.687328px;}
.wsbe{word-spacing:11.693340px;}
.ws1be{word-spacing:11.717388px;}
.ws5e{word-spacing:11.735424px;}
.ws1bd{word-spacing:11.759472px;}
.ws13e{word-spacing:12.030012px;}
.ws13c{word-spacing:12.060072px;}
.ws41{word-spacing:12.084120px;}
.ws12a{word-spacing:12.090132px;}
.ws183{word-spacing:12.096144px;}
.wsb2{word-spacing:12.108168px;}
.ws184{word-spacing:12.432816px;}
.ws102{word-spacing:12.769488px;}
.ws3c{word-spacing:12.781512px;}
.ws200{word-spacing:12.793536px;}
.ws129{word-spacing:12.805560px;}
.wseb{word-spacing:12.811572px;}
.ws178{word-spacing:12.847644px;}
.wsa9{word-spacing:13.124196px;}
.ws10a{word-spacing:13.136220px;}
.ws16a{word-spacing:13.142232px;}
.ws181{word-spacing:13.160268px;}
.ws169{word-spacing:13.190328px;}
.wsec{word-spacing:13.514976px;}
.ws63{word-spacing:13.520988px;}
.wsbc{word-spacing:13.533012px;}
.wsbb{word-spacing:13.857660px;}
.ws1fc{word-spacing:13.875696px;}
.wsdf{word-spacing:13.881708px;}
.wsbd{word-spacing:13.893732px;}
.wse0{word-spacing:13.929804px;}
.ws235{word-spacing:14.206356px;}
.ws92{word-spacing:14.218380px;}
.ws15{word-spacing:14.230404px;}
.wsfd{word-spacing:14.236416px;}
.ws157{word-spacing:14.242428px;}
.ws1fd{word-spacing:14.579100px;}
.ws165{word-spacing:14.585112px;}
.ws47{word-spacing:14.591124px;}
.ws18a{word-spacing:14.597136px;}
.ws1a2{word-spacing:14.609160px;}
.ws48{word-spacing:14.621184px;}
.ws234{word-spacing:14.639220px;}
.ws186{word-spacing:14.915772px;}
.wsd7{word-spacing:14.939820px;}
.wsc{word-spacing:14.951844px;}
.wsd6{word-spacing:14.963868px;}
.wsb7{word-spacing:14.969880px;}
.ws138{word-spacing:14.999940px;}
.ws137{word-spacing:15.306552px;}
.ws8f{word-spacing:15.366672px;}
.ws11a{word-spacing:15.661260px;}
.ws60{word-spacing:15.685308px;}
.wscb{word-spacing:16.009956px;}
.ws1ff{word-spacing:16.027992px;}
.wsf8{word-spacing:16.034004px;}
.ws1d9{word-spacing:16.256448px;}
.ws13{word-spacing:16.412760px;}
.wsda{word-spacing:16.767468px;}
.ws22f{word-spacing:16.785504px;}
.ws22e{word-spacing:16.827588px;}
.ws106{word-spacing:17.098128px;}
.ws202{word-spacing:17.116164px;}
.ws2{word-spacing:17.160000px;}
.ws18d{word-spacing:17.170272px;}
.ws64{word-spacing:17.446824px;}
.ws52{word-spacing:17.464860px;}
.ws155{word-spacing:17.470872px;}
.ws12e{word-spacing:17.494920px;}
.ws1c8{word-spacing:17.825580px;}
.ws151{word-spacing:17.837604px;}
.ws72{word-spacing:17.843616px;}
.ws16d{word-spacing:17.849628px;}
.ws11e{word-spacing:18.168264px;}
.ws93{word-spacing:18.180288px;}
.wscf{word-spacing:18.222372px;}
.ws1{word-spacing:18.240000px;}
.ws191{word-spacing:18.534996px;}
.ws99{word-spacing:18.559044px;}
.ws4a{word-spacing:18.595116px;}
.ws55{word-spacing:18.919764px;}
.ws18c{word-spacing:19.262448px;}
.ws1d2{word-spacing:19.280484px;}
.wsf0{word-spacing:19.304532px;}
.ws8a{word-spacing:19.551024px;}
.ws101{word-spacing:19.605132px;}
.wsf1{word-spacing:19.629180px;}
.ws1ed{word-spacing:19.971864px;}
.ws1e5{word-spacing:19.989900px;}
.wsf5{word-spacing:20.326572px;}
.ws168{word-spacing:20.344608px;}
.ws189{word-spacing:20.362644px;}
.wsa5{word-spacing:20.699316px;}
.ws1d3{word-spacing:20.735388px;}
.wse1{word-spacing:21.072060px;}
.ws19d{word-spacing:21.084084px;}
.ws1de{word-spacing:21.090096px;}
.ws1af{word-spacing:21.144204px;}
.ws1b0{word-spacing:21.168252px;}
.ws1d0{word-spacing:21.408732px;}
.ws150{word-spacing:21.432780px;}
.wsba{word-spacing:21.793500px;}
.ws135{word-spacing:21.817548px;}
.wsc1{word-spacing:22.148208px;}
.wsf9{word-spacing:22.520952px;}
.wsa7{word-spacing:22.545000px;}
.ws1c2{word-spacing:22.557024px;}
.ws1f7{word-spacing:22.887684px;}
.ws11c{word-spacing:23.164236px;}
.ws171{word-spacing:23.224356px;}
.ws49{word-spacing:23.236380px;}
.ws170{word-spacing:23.242392px;}
.ws130{word-spacing:23.266440px;}
.wsf4{word-spacing:23.579064px;}
.ws134{word-spacing:23.633172px;}
.ws212{word-spacing:23.945796px;}
.wsdc{word-spacing:24.300504px;}
.ws1a6{word-spacing:24.312528px;}
.wsf6{word-spacing:24.336576px;}
.ws8c{word-spacing:24.697296px;}
.ws1d7{word-spacing:24.703308px;}
.ws1d8{word-spacing:24.751404px;}
.ws19a{word-spacing:24.997896px;}
.ws11b{word-spacing:25.052004px;}
.ws141{word-spacing:25.406712px;}
.ws211{word-spacing:25.412724px;}
.ws1bc{word-spacing:25.845588px;}
.wsac{word-spacing:26.116128px;}
.ws19{word-spacing:26.146188px;}
.ws1a4{word-spacing:26.452800px;}
.ws1b5{word-spacing:26.518932px;}
.ws112{word-spacing:26.837568px;}
.ws1b4{word-spacing:26.849592px;}
.ws17e{word-spacing:27.546984px;}
.ws147{word-spacing:27.895680px;}
.ws7d{word-spacing:27.961812px;}
.ws1b6{word-spacing:28.328544px;}
.ws1c9{word-spacing:28.623132px;}
.ws198{word-spacing:28.653192px;}
.ws67{word-spacing:28.995876px;}
.ws1f2{word-spacing:29.013912px;}
.ws149{word-spacing:29.326536px;}
.ws216{word-spacing:29.350584px;}
.wsb4{word-spacing:29.362608px;}
.ws1f1{word-spacing:29.368620px;}
.wsd8{word-spacing:29.452788px;}
.wsd9{word-spacing:29.476836px;}
.ws3b{word-spacing:29.699280px;}
.ws3a{word-spacing:29.711304px;}
.ws69{word-spacing:30.084048px;}
.ws39{word-spacing:30.150180px;}
.ws1f3{word-spacing:30.450780px;}
.wsa4{word-spacing:30.805488px;}
.ws12b{word-spacing:30.811500px;}
.ws1cd{word-spacing:31.172220px;}
.ws1b9{word-spacing:31.178232px;}
.wse5{word-spacing:31.520916px;}
.ws1c4{word-spacing:31.581036px;}
.ws163{word-spacing:31.875624px;}
.ws162{word-spacing:31.881636px;}
.ws46{word-spacing:31.923720px;}
.ws45{word-spacing:32.224320px;}
.wsc5{word-spacing:32.236344px;}
.ws8b{word-spacing:32.290452px;}
.wsff{word-spacing:32.554980px;}
.ws190{word-spacing:32.585040px;}
.ws1eb{word-spacing:32.591052px;}
.ws1ec{word-spacing:33.318504px;}
.ws122{word-spacing:33.667200px;}
.ws15c{word-spacing:33.685236px;}
.ws6e{word-spacing:33.691248px;}
.ws1d5{word-spacing:33.799464px;}
.wsaa{word-spacing:34.045956px;}
.ws156{word-spacing:34.382628px;}
.ws174{word-spacing:35.104068px;}
.ws7e{word-spacing:35.110080px;}
.ws217{word-spacing:35.819496px;}
.ws66{word-spacing:35.831520px;}
.ws98{word-spacing:35.849556px;}
.ws97{word-spacing:36.150156px;}
.ws110{word-spacing:36.162180px;}
.ws111{word-spacing:36.180216px;}
.ws25{word-spacing:36.564984px;}
.ws1e2{word-spacing:36.913680px;}
.ws90{word-spacing:37.262376px;}
.ws7c{word-spacing:37.286424px;}
.ws185{word-spacing:37.971792px;}
.ws1fa{word-spacing:38.332512px;}
.ws1fb{word-spacing:38.362572px;}
.ws124{word-spacing:38.398644px;}
.ws123{word-spacing:39.096036px;}
.ws17f{word-spacing:39.102048px;}
.ws17d{word-spacing:39.438720px;}
.wsdd{word-spacing:40.520880px;}
.wsde{word-spacing:40.526892px;}
.ws105{word-spacing:41.939712px;}
.ws22c{word-spacing:42.360552px;}
.ws22d{word-spacing:42.378588px;}
.wsef{word-spacing:42.679188px;}
.ws89{word-spacing:43.015860px;}
.wsa0{word-spacing:44.825472px;}
.wsa1{word-spacing:44.843508px;}
.ws146{word-spacing:44.861544px;}
.ws81{word-spacing:45.564948px;}
.wsc3{word-spacing:45.570960px;}
.wsca{word-spacing:45.907632px;}
.ws116{word-spacing:47.001816px;}
.ws1b8{word-spacing:48.126060px;}
.wsce{word-spacing:49.442688px;}
.ws18b{word-spacing:50.260320px;}
.ws14d{word-spacing:53.843472px;}
.ws107{word-spacing:54.889560px;}
.wscd{word-spacing:55.604988px;}
.ws1b1{word-spacing:60.348456px;}
.ws17c{word-spacing:61.027812px;}
.ws197{word-spacing:61.051860px;}
.ws17b{word-spacing:61.190136px;}
.wsfe{word-spacing:61.364484px;}
.ws120{word-spacing:61.761276px;}
.ws7f{word-spacing:62.085924px;}
.ws11d{word-spacing:63.186120px;}
.ws82{word-spacing:63.324396px;}
.wsd5{word-spacing:63.558864px;}
.wsd3{word-spacing:63.594936px;}
.wsd4{word-spacing:63.600948px;}
.ws14a{word-spacing:66.799332px;}
.wsc4{word-spacing:67.160052px;}
.ws236{word-spacing:68.320368px;}
.ws1c0{word-spacing:68.759244px;}
.ws145{word-spacing:70.045812px;}
.ws119{word-spacing:71.139996px;}
.ws132{word-spacing:73.653012px;}
.ws11f{word-spacing:75.402504px;}
.ws1bb{word-spacing:75.468636px;}
.ws84{word-spacing:81.216108px;}
.ws131{word-spacing:81.570816px;}
.ws1bf{word-spacing:81.901476px;}
.ws83{word-spacing:90.913464px;}
.ws237{word-spacing:96.011640px;}
.ws118{word-spacing:97.382376px;}
.ws88{word-spacing:124.406316px;}
.ws14f{word-spacing:130.207896px;}
.ws1b3{word-spacing:134.494452px;}
.ws85{word-spacing:156.462300px;}
.ws23b{word-spacing:187.321896px;}
.ws245{word-spacing:187.345944px;}
.ws23f{word-spacing:187.376004px;}
.ws239{word-spacing:187.400052px;}
.ws23e{word-spacing:187.436124px;}
.ws37{word-spacing:196.189596px;}
.ws1c1{word-spacing:202.153500px;}
._d{margin-left:-210.239640px;}
._e{margin-left:-197.283780px;}
._c{margin-left:-196.201620px;}
._42{margin-left:-187.360560px;}
._1f{margin-left:-63.721188px;}
._23{margin-left:-38.551536px;}
._a{margin-left:-15.759216px;}
._9{margin-left:-12.669876px;}
._8{margin-left:-11.162076px;}
._0{margin-left:-5.007965px;}
._1c{margin-left:-3.961908px;}
._2{margin-left:-2.448000px;}
._1{margin-left:-1.296000px;}
._3{width:1.104000px;}
._1e{width:2.158308px;}
._b{width:3.360708px;}
._2a{width:4.611204px;}
._4{width:5.705388px;}
._5{width:6.864108px;}
._6{width:9.634644px;}
._27{width:15.769476px;}
._16{width:17.999928px;}
._32{width:22.839588px;}
._30{width:24.048000px;}
._28{width:26.567028px;}
._11{width:27.607104px;}
._29{width:30.168216px;}
._17{width:31.322520px;}
._18{width:34.202268px;}
._1a{width:35.639136px;}
._15{width:41.398632px;}
._2b{width:42.480792px;}
._1b{width:43.562952px;}
._2d{width:44.927676px;}
._2e{width:47.091996px;}
._13{width:48.601008px;}
._31{width:50.332464px;}
._1d{width:51.841476px;}
._2f{width:54.288360px;}
._26{width:55.370520px;}
._2c{width:57.240252px;}
._24{width:58.347288px;}
._14{width:60.480720px;}
._19{width:63.721188px;}
._3e{width:75.283200px;}
._37{width:83.880000px;}
._33{width:95.760000px;}
._36{width:109.080000px;}
._3f{width:114.811200px;}
._40{width:135.655200px;}
._25{width:152.283960px;}
._34{width:159.480000px;}
._22{width:163.081512px;}
._3c{width:167.760000px;}
._20{width:170.999316px;}
._12{width:174.239784px;}
._f{width:178.201692px;}
._3a{width:181.080000px;}
._10{width:182.524320px;}
._21{width:185.758776px;}
._41{width:187.562376px;}
._35{width:193.680000px;}
._7{width:196.201620px;}
._3b{width:227.880000px;}
._38{width:230.400000px;}
._39{width:231.480000px;}
._3d{width:253.800000px;}
.fc6{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(128,128,128);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(96,85,62);}
.fsa{font-size:36.000000px;}
.fs7{font-size:47.880000px;}
.fs6{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs8{font-size:60.120000px;}
.fs0{font-size:67.675200px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:90.000000px;}
.fs5{font-size:144.000000px;}
.fs4{font-size:162.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:55.276950px;}
.y26{bottom:55.762500px;}
.y279{bottom:89.785464px;}
.y226{bottom:89.785644px;}
.y19c{bottom:89.872500px;}
.y58{bottom:90.142500px;}
.y1f6{bottom:93.475482px;}
.y1b7{bottom:93.565662px;}
.y86{bottom:93.565842px;}
.y1b3{bottom:93.653499px;}
.y107{bottom:93.655842px;}
.y16{bottom:95.525550px;}
.y24a{bottom:96.352338px;}
.y321{bottom:96.983517px;}
.yd6{bottom:99.144912px;}
.y128{bottom:101.031537px;}
.y340{bottom:103.732500px;}
.y2bd{bottom:103.733076px;}
.y176{bottom:103.913823px;}
.y2fa{bottom:106.612500px;}
.y29d{bottom:106.974408px;}
.y19b{bottom:107.062500px;}
.y278{bottom:107.065455px;}
.y225{bottom:107.065635px;}
.y1ee{bottom:107.155155px;}
.y57{bottom:107.422500px;}
.y1c9{bottom:108.953556px;}
.y147{bottom:109.042500px;}
.y15{bottom:109.169550px;}
.y1b6{bottom:110.755473px;}
.y85{bottom:110.755653px;}
.y1b2{bottom:110.843310px;}
.y106{bottom:110.845653px;}
.y249{bottom:113.722509px;}
.y320{bottom:114.173328px;}
.y2f4{bottom:116.242500px;}
.yd5{bottom:116.334723px;}
.y2f9{bottom:116.962500px;}
.y127{bottom:118.311528px;}
.y2bc{bottom:121.013067px;}
.y175{bottom:121.103634px;}
.y14{bottom:122.813550px;}
.y19a{bottom:124.252500px;}
.y33f{bottom:124.252527px;}
.y277{bottom:124.255266px;}
.y29c{bottom:124.344579px;}
.y1ed{bottom:124.344966px;}
.y224{bottom:124.345626px;}
.y56{bottom:124.702500px;}
.y2f6{bottom:125.962500px;}
.y1c8{bottom:126.233547px;}
.y1f5{bottom:128.035464px;}
.y1b1{bottom:128.123301px;}
.y105{bottom:128.125644px;}
.y84{bottom:128.125824px;}
.y146{bottom:129.742500px;}
.y248{bottom:131.002500px;}
.y2f5{bottom:131.092500px;}
.y31f{bottom:131.453319px;}
.yd4{bottom:133.614714px;}
.y126{bottom:135.591519px;}
.y13{bottom:136.457550px;}
.y2bb{bottom:138.293058px;}
.y174{bottom:138.383625px;}
.y199{bottom:141.532500px;}
.y276{bottom:141.535257px;}
.y33e{bottom:141.622698px;}
.y29b{bottom:141.624570px;}
.y1ec{bottom:141.624957px;}
.y223{bottom:141.625617px;}
.y55{bottom:141.892500px;}
.y1c7{bottom:143.423358px;}
.y2f3{bottom:145.132500px;}
.y2f8{bottom:145.312500px;}
.y1f4{bottom:145.315455px;}
.y1b0{bottom:145.403292px;}
.y104{bottom:145.405635px;}
.y83{bottom:145.405815px;}
.y247{bottom:148.282500px;}
.y31e{bottom:148.733310px;}
.y12{bottom:150.101550px;}
.y145{bottom:150.442500px;}
.yd3{bottom:150.894705px;}
.y2{bottom:152.471700px;}
.y125{bottom:153.861987px;}
.y2ba{bottom:155.573049px;}
.y2f7{bottom:155.662500px;}
.y173{bottom:155.753796px;}
.y198{bottom:158.812500px;}
.y275{bottom:158.815248px;}
.y33d{bottom:158.902689px;}
.y29a{bottom:158.904561px;}
.y1eb{bottom:158.904948px;}
.y222{bottom:158.905608px;}
.y54{bottom:159.172500px;}
.y1c6{bottom:160.703349px;}
.y1af{bottom:162.593103px;}
.y103{bottom:162.595446px;}
.y82{bottom:162.595626px;}
.y31d{bottom:165.923121px;}
.y246{bottom:166.552500px;}
.yd2{bottom:168.084516px;}
.y124{bottom:171.051798px;}
.y2b9{bottom:172.762860px;}
.y1{bottom:172.774350px;}
.y172{bottom:172.943607px;}
.y144{bottom:174.742338px;}
.y299{bottom:176.004192px;}
.y1ea{bottom:176.004579px;}
.y33c{bottom:176.092500px;}
.y197{bottom:176.094570px;}
.y274{bottom:176.095239px;}
.y221{bottom:176.095419px;}
.y53{bottom:176.452500px;}
.y1c5{bottom:177.983340px;}
.y1ae{bottom:179.873094px;}
.y102{bottom:179.875437px;}
.y81{bottom:179.875617px;}
.y31c{bottom:183.203112px;}
.y245{bottom:183.742500px;}
.y2f2{bottom:184.732500px;}
.yd1{bottom:185.364507px;}
.y123{bottom:188.331789px;}
.y2ee{bottom:189.142500px;}
.y2b8{bottom:190.042851px;}
.y171{bottom:190.223598px;}
.y143{bottom:192.112509px;}
.y298{bottom:193.284183px;}
.y33b{bottom:193.372500px;}
.y196{bottom:193.374561px;}
.y1e9{bottom:193.374750px;}
.y273{bottom:193.375230px;}
.y220{bottom:193.375410px;}
.y52{bottom:193.552500px;}
.y2f1{bottom:195.082500px;}
.y1c4{bottom:195.173151px;}
.y1f3{bottom:197.065248px;}
.y1ad{bottom:197.153085px;}
.y101{bottom:197.155428px;}
.y80{bottom:197.155608px;}
.y31b{bottom:200.483103px;}
.y244{bottom:201.022500px;}
.yd0{bottom:202.644498px;}
.y2ef{bottom:204.082500px;}
.y122{bottom:206.602257px;}
.y2b7{bottom:207.322842px;}
.y170{bottom:207.503589px;}
.y25{bottom:208.704450px;}
.y142{bottom:209.392500px;}
.y51{bottom:210.562500px;}
.y21f{bottom:210.565221px;}
.y33a{bottom:210.652500px;}
.y297{bottom:210.654354px;}
.y195{bottom:210.654552px;}
.y1e8{bottom:210.654741px;}
.y272{bottom:210.655221px;}
.y1c3{bottom:212.453142px;}
.y7f{bottom:214.255239px;}
.y1ac{bottom:214.342896px;}
.y100{bottom:214.345239px;}
.y31a{bottom:217.672914px;}
.y2ed{bottom:218.122500px;}
.y243{bottom:218.302500px;}
.ycf{bottom:219.834309px;}
.y24{bottom:222.233550px;}
.y2f0{bottom:223.432500px;}
.y121{bottom:223.792068px;}
.y2b6{bottom:224.512653px;}
.y16f{bottom:224.693400px;}
.y141{bottom:225.952500px;}
.y50{bottom:226.402896px;}
.y21e{bottom:227.755032px;}
.y339{bottom:227.842500px;}
.y296{bottom:227.844165px;}
.y194{bottom:227.844363px;}
.y1e7{bottom:227.844552px;}
.y271{bottom:227.845032px;}
.y1c2{bottom:229.733133px;}
.y1ab{bottom:231.622887px;}
.yff{bottom:231.625230px;}
.y7e{bottom:231.625410px;}
.y23{bottom:234.833550px;}
.y319{bottom:234.952905px;}
.y242{bottom:235.492500px;}
.y140{bottom:237.022500px;}
.yce{bottom:237.114300px;}
.y120{bottom:241.072059px;}
.y2b5{bottom:241.792644px;}
.y16e{bottom:241.973391px;}
.y4f{bottom:243.682887px;}
.y338{bottom:245.122509px;}
.y295{bottom:245.124156px;}
.y193{bottom:245.124354px;}
.y1e6{bottom:245.124543px;}
.y270{bottom:245.125023px;}
.y21d{bottom:245.125203px;}
.y1c1{bottom:246.922944px;}
.y22{bottom:248.333550px;}
.y1aa{bottom:248.812698px;}
.yfe{bottom:248.905221px;}
.y7d{bottom:248.905401px;}
.y318{bottom:252.232896px;}
.y2eb{bottom:252.412500px;}
.y241{bottom:252.772500px;}
.ycd{bottom:254.394291px;}
.y2b4{bottom:259.072635px;}
.y16d{bottom:259.163202px;}
.y11f{bottom:259.342527px;}
.y4e{bottom:260.962878px;}
.y21{bottom:261.833550px;}
.y337{bottom:262.402500px;}
.y294{bottom:262.404147px;}
.y192{bottom:262.404345px;}
.y1e5{bottom:262.404534px;}
.y26f{bottom:262.405014px;}
.y21c{bottom:262.405194px;}
.y2ea{bottom:263.302500px;}
.y1c0{bottom:264.202935px;}
.y1a9{bottom:266.002509px;}
.y1f2{bottom:266.004852px;}
.yfd{bottom:266.095032px;}
.y7c{bottom:266.095212px;}
.y317{bottom:269.422707px;}
.y240{bottom:270.052500px;}
.ycc{bottom:271.584102px;}
.y2ec{bottom:272.752500px;}
.y20{bottom:275.333550px;}
.y11{bottom:275.905350px;}
.y2b3{bottom:276.262446px;}
.y16c{bottom:276.443193px;}
.y11e{bottom:276.622518px;}
.y4d{bottom:278.152689px;}
.y293{bottom:279.503778px;}
.y336{bottom:279.592509px;}
.y191{bottom:279.594156px;}
.y1e4{bottom:279.594345px;}
.y26e{bottom:279.594825px;}
.y21b{bottom:279.595005px;}
.y1bf{bottom:281.482926px;}
.y1a8{bottom:283.282500px;}
.y1f1{bottom:283.284843px;}
.yfc{bottom:283.375023px;}
.y7b{bottom:283.375203px;}
.y316{bottom:286.702698px;}
.y23f{bottom:288.322500px;}
.ycb{bottom:288.864093px;}
.y2e9{bottom:292.282500px;}
.y2b2{bottom:293.542437px;}
.y16b{bottom:293.723184px;}
.y11d{bottom:293.812329px;}
.y4c{bottom:295.342500px;}
.y292{bottom:296.783769px;}
.y335{bottom:296.872500px;}
.y190{bottom:296.874147px;}
.y1e3{bottom:296.874336px;}
.y26d{bottom:296.874816px;}
.y21a{bottom:296.874996px;}
.y10{bottom:297.505350px;}
.y1be{bottom:298.672737px;}
.y1a7{bottom:300.562500px;}
.yfb{bottom:300.655014px;}
.y7a{bottom:300.655194px;}
.y315{bottom:303.982689px;}
.y23e{bottom:305.512500px;}
.yca{bottom:306.144084px;}
.y2b1{bottom:310.732248px;}
.y16a{bottom:310.912995px;}
.y11c{bottom:312.082797px;}
.y4b{bottom:312.352500px;}
.y334{bottom:314.152689px;}
.y291{bottom:314.153940px;}
.y18f{bottom:314.154138px;}
.y1e2{bottom:314.154327px;}
.y26c{bottom:314.154807px;}
.y219{bottom:314.154987px;}
.y1f{bottom:315.845550px;}
.y1bd{bottom:315.952728px;}
.ya{bottom:315.972900px;}
.y1a6{bottom:317.752500px;}
.y1b5{bottom:317.754645px;}
.yfa{bottom:317.844825px;}
.y79{bottom:317.845005px;}
.yf{bottom:319.105200px;}
.y314{bottom:321.172500px;}
.y2e6{bottom:322.072500px;}
.y23d{bottom:322.792500px;}
.yc9{bottom:323.333895px;}
.y2e8{bottom:323.422500px;}
.y2b0{bottom:328.012239px;}
.y4a{bottom:328.192896px;}
.y169{bottom:328.192986px;}
.y1e{bottom:329.345550px;}
.y11b{bottom:329.362788px;}
.y333{bottom:331.342707px;}
.y290{bottom:331.343751px;}
.y18e{bottom:331.343949px;}
.y1e1{bottom:331.344138px;}
.y26b{bottom:331.344618px;}
.y218{bottom:331.344798px;}
.y2e5{bottom:332.422500px;}
.y1bc{bottom:333.232719px;}
.y9{bottom:333.972900px;}
.y1a5{bottom:335.032500px;}
.yf9{bottom:335.124816px;}
.y78{bottom:335.124996px;}
.y2e0{bottom:336.922500px;}
.y23c{bottom:340.072500px;}
.yc8{bottom:340.613886px;}
.y1d{bottom:342.845550px;}
.y2af{bottom:345.292230px;}
.y49{bottom:345.472887px;}
.y168{bottom:345.472977px;}
.y11a{bottom:346.642779px;}
.y332{bottom:348.622698px;}
.y28f{bottom:348.623742px;}
.y18d{bottom:348.623940px;}
.y1e0{bottom:348.624129px;}
.y26a{bottom:348.624609px;}
.y217{bottom:348.624789px;}
.y1bb{bottom:350.422530px;}
.y2e1{bottom:351.772500px;}
.y1a4{bottom:352.312500px;}
.y77{bottom:352.314807px;}
.yf8{bottom:352.404807px;}
.y8{bottom:352.846950px;}
.y1c{bottom:356.345550px;}
.y313{bottom:356.632500px;}
.y23b{bottom:357.262500px;}
.yc7{bottom:357.893877px;}
.y2e4{bottom:360.772500px;}
.y2ae{bottom:362.482041px;}
.y167{bottom:362.662788px;}
.y48{bottom:362.752878px;}
.y119{bottom:364.823067px;}
.y2df{bottom:365.812500px;}
.y331{bottom:365.902689px;}
.y28e{bottom:365.903733px;}
.y18c{bottom:365.903931px;}
.y1df{bottom:365.904120px;}
.y269{bottom:365.904600px;}
.y216{bottom:365.904780px;}
.y1ba{bottom:367.702521px;}
.y1a3{bottom:369.502500px;}
.yf7{bottom:369.594618px;}
.y76{bottom:369.594798px;}
.y1b{bottom:369.845550px;}
.y2e3{bottom:371.122500px;}
.yc6{bottom:375.083688px;}
.y23a{bottom:375.532500px;}
.y2ad{bottom:379.762032px;}
.y47{bottom:379.942689px;}
.y166{bottom:379.942779px;}
.y2e7{bottom:380.122500px;}
.y2e2{bottom:381.472500px;}
.y118{bottom:382.103058px;}
.y330{bottom:383.092500px;}
.y28d{bottom:383.093544px;}
.y18b{bottom:383.093742px;}
.y1de{bottom:383.093931px;}
.y268{bottom:383.094411px;}
.y215{bottom:383.094591px;}
.y1a{bottom:383.345550px;}
.y1b9{bottom:384.982512px;}
.y1a2{bottom:386.782500px;}
.yf6{bottom:386.874609px;}
.y75{bottom:386.874789px;}
.y311{bottom:388.401951px;}
.y312{bottom:388.402500px;}
.yc5{bottom:392.363679px;}
.y239{bottom:393.802500px;}
.y2ac{bottom:397.042023px;}
.y46{bottom:397.132500px;}
.y165{bottom:397.222770px;}
.y117{bottom:399.383049px;}
.y32f{bottom:400.372689px;}
.y28c{bottom:400.373535px;}
.y18a{bottom:400.373733px;}
.y1dd{bottom:400.373922px;}
.y267{bottom:400.374402px;}
.y214{bottom:400.374582px;}
.y1a1{bottom:403.972500px;}
.yf5{bottom:404.064420px;}
.y74{bottom:404.064600px;}
.yc4{bottom:409.553490px;}
.y2cb{bottom:410.542500px;}
.y238{bottom:411.082500px;}
.y19{bottom:411.101550px;}
.y2d0{bottom:412.792500px;}
.y45{bottom:414.052500px;}
.y2ab{bottom:414.231834px;}
.y164{bottom:414.412581px;}
.y116{bottom:416.572860px;}
.y28b{bottom:417.473166px;}
.y32e{bottom:417.562500px;}
.y189{bottom:417.563544px;}
.y1dc{bottom:417.563733px;}
.y266{bottom:417.564213px;}
.y213{bottom:417.564393px;}
.y2d6{bottom:418.282500px;}
.y310{bottom:420.262500px;}
.y1f0{bottom:421.254231px;}
.y1a0{bottom:421.254411px;}
.yf4{bottom:421.344411px;}
.y73{bottom:421.344591px;}
.y2de{bottom:421.792500px;}
.y18{bottom:424.601550px;}
.yc3{bottom:426.833481px;}
.y2d8{bottom:427.282500px;}
.y2aa{bottom:428.092500px;}
.y237{bottom:428.272500px;}
.y2d5{bottom:429.172500px;}
.y44{bottom:429.982887px;}
.y163{bottom:431.692572px;}
.y2dd{bottom:432.772500px;}
.y115{bottom:433.852851px;}
.y32d{bottom:434.842509px;}
.y28a{bottom:434.843337px;}
.y188{bottom:434.843535px;}
.y1db{bottom:434.843724px;}
.y265{bottom:434.844204px;}
.y212{bottom:434.844384px;}
.y2d2{bottom:438.172500px;}
.y1ef{bottom:438.534222px;}
.yf3{bottom:438.624402px;}
.y72{bottom:438.624582px;}
.y2ca{bottom:438.892500px;}
.y2d9{bottom:440.152500px;}
.y2cf{bottom:441.772500px;}
.y2dc{bottom:443.662500px;}
.yc2{bottom:444.113472px;}
.y236{bottom:445.552500px;}
.y43{bottom:447.262878px;}
.y162{bottom:448.972563px;}
.y2d1{bottom:449.152500px;}
.y2c9{bottom:449.242500px;}
.y114{bottom:451.132842px;}
.y32c{bottom:452.122500px;}
.y289{bottom:452.123328px;}
.y187{bottom:452.123526px;}
.y1da{bottom:452.123715px;}
.y264{bottom:452.124195px;}
.y211{bottom:452.124375px;}
.y2ce{bottom:452.662500px;}
.y30e{bottom:452.751951px;}
.y30f{bottom:452.752500px;}
.y2db{bottom:454.642500px;}
.yf2{bottom:455.814213px;}
.y71{bottom:455.814393px;}
.y2d4{bottom:458.152500px;}
.y2d7{bottom:460.132500px;}
.yc1{bottom:461.303283px;}
.y235{bottom:462.832500px;}
.y2cd{bottom:463.642500px;}
.y42{bottom:464.452689px;}
.y2da{bottom:465.532500px;}
.y161{bottom:466.162374px;}
.y113{bottom:468.322653px;}
.y2d3{bottom:469.132500px;}
.y32b{bottom:469.312500px;}
.y288{bottom:469.313139px;}
.y186{bottom:469.313337px;}
.y1d9{bottom:469.313526px;}
.y263{bottom:469.314006px;}
.y210{bottom:469.314186px;}
.yf1{bottom:473.094204px;}
.y70{bottom:473.094384px;}
.y2cc{bottom:474.532500px;}
.y2c8{bottom:477.592500px;}
.y17{bottom:478.121550px;}
.yc0{bottom:478.583274px;}
.y234{bottom:480.022500px;}
.y41{bottom:481.642500px;}
.y160{bottom:483.442365px;}
.y30d{bottom:484.612500px;}
.y112{bottom:485.602644px;}
.y1d8{bottom:486.503337px;}
.y32a{bottom:486.592698px;}
.y287{bottom:486.593130px;}
.y185{bottom:486.593328px;}
.y262{bottom:486.593997px;}
.y20f{bottom:486.594177px;}
.y2c7{bottom:489.562500px;}
.y6f{bottom:490.284195px;}
.yf0{bottom:490.374195px;}
.y19f{bottom:490.374375px;}
.ybf{bottom:495.863265px;}
.y233{bottom:498.292500px;}
.y40{bottom:498.562500px;}
.y15f{bottom:500.722356px;}
.y2c6{bottom:503.782527px;}
.y329{bottom:503.872689px;}
.y111{bottom:503.873112px;}
.y286{bottom:503.873121px;}
.y184{bottom:503.873319px;}
.y1d7{bottom:503.873508px;}
.y261{bottom:503.873988px;}
.y20e{bottom:503.874168px;}
.y6e{bottom:507.474006px;}
.yef{bottom:507.564006px;}
.y19e{bottom:507.564186px;}
.ybe{bottom:513.053076px;}
.y3f{bottom:514.493085px;}
.y232{bottom:515.572500px;}
.y30c{bottom:517.102500px;}
.y15e{bottom:517.912167px;}
.yd{bottom:519.158250px;}
.y2c5{bottom:520.972338px;}
.y328{bottom:521.062518px;}
.y110{bottom:521.062923px;}
.y285{bottom:521.062932px;}
.y183{bottom:521.063130px;}
.y1d6{bottom:521.063319px;}
.y260{bottom:521.063799px;}
.y20d{bottom:521.063979px;}
.yee{bottom:524.843997px;}
.y6d{bottom:524.844177px;}
.ybd{bottom:530.333067px;}
.y3e{bottom:531.773076px;}
.y231{bottom:532.762500px;}
.y13f{bottom:533.029962px;}
.ya0{bottom:534.923940px;}
.y15d{bottom:535.192158px;}
.y2c4{bottom:538.252329px;}
.yc{bottom:538.299750px;}
.y327{bottom:538.342509px;}
.y10f{bottom:538.342914px;}
.y284{bottom:538.342923px;}
.y182{bottom:538.343121px;}
.y1d5{bottom:538.343310px;}
.y25f{bottom:538.343790px;}
.y20c{bottom:538.343970px;}
.yed{bottom:542.123988px;}
.y6c{bottom:542.124168px;}
.ybc{bottom:547.613058px;}
.y30b{bottom:548.962500px;}
.y3d{bottom:548.962887px;}
.y309{bottom:548.963346px;}
.y230{bottom:550.042500px;}
.y13e{bottom:550.219773px;}
.y9f{bottom:552.113751px;}
.y15c{bottom:552.472149px;}
.y2c3{bottom:555.622500px;}
.y10e{bottom:555.622905px;}
.y283{bottom:555.622914px;}
.y181{bottom:555.623112px;}
.y1d4{bottom:555.623301px;}
.y25e{bottom:555.623781px;}
.y20b{bottom:555.623961px;}
.yec{bottom:559.313799px;}
.y6b{bottom:559.313979px;}
.ybb{bottom:564.802869px;}
.y1b8{bottom:566.152500px;}
.y3c{bottom:566.242878px;}
.y22f{bottom:567.322500px;}
.y13d{bottom:567.499764px;}
.y9e{bottom:569.393742px;}
.y15b{bottom:569.661960px;}
.y10d{bottom:572.812716px;}
.y282{bottom:572.812725px;}
.y180{bottom:572.812923px;}
.y1d3{bottom:572.813112px;}
.y25d{bottom:572.813592px;}
.y20a{bottom:572.813772px;}
.y2c2{bottom:576.413430px;}
.yeb{bottom:576.593790px;}
.y6a{bottom:576.593970px;}
.y30a{bottom:580.732500px;}
.y308{bottom:580.732923px;}
.yba{bottom:582.082860px;}
.y3b{bottom:583.522869px;}
.y22e{bottom:584.512500px;}
.y13c{bottom:585.770232px;}
.y9d{bottom:586.673733px;}
.y15a{bottom:587.032131px;}
.y10c{bottom:590.092707px;}
.y281{bottom:590.092716px;}
.y17f{bottom:590.092914px;}
.y1d2{bottom:590.093103px;}
.y25c{bottom:590.093583px;}
.y209{bottom:590.093763px;}
.y69{bottom:593.783781px;}
.yea{bottom:593.873781px;}
.y19d{bottom:593.873961px;}
.yb9{bottom:599.362851px;}
.y3a{bottom:600.622500px;}
.y22d{bottom:601.792500px;}
.y9c{bottom:603.773364px;}
.y13b{bottom:604.040700px;}
.y159{bottom:604.312122px;}
.y10b{bottom:607.372698px;}
.y280{bottom:607.372707px;}
.y17e{bottom:607.372905px;}
.y1d1{bottom:607.373094px;}
.y25b{bottom:607.373574px;}
.y208{bottom:607.373754px;}
.ye9{bottom:611.063592px;}
.y68{bottom:611.063772px;}
.y307{bottom:612.502500px;}
.yb8{bottom:616.552662px;}
.y39{bottom:617.632500px;}
.y22c{bottom:620.062500px;}
.y9b{bottom:621.143535px;}
.y13a{bottom:621.320691px;}
.y158{bottom:621.592113px;}
.y10a{bottom:624.472329px;}
.y1d0{bottom:624.472725px;}
.y25a{bottom:624.473205px;}
.y27f{bottom:624.562518px;}
.y17d{bottom:624.562716px;}
.y207{bottom:624.563565px;}
.ye8{bottom:628.343583px;}
.y67{bottom:628.343763px;}
.y38{bottom:633.472737px;}
.yb7{bottom:633.832653px;}
.y22b{bottom:637.342500px;}
.y9a{bottom:638.423526px;}
.y157{bottom:638.781924px;}
.y139{bottom:639.500979px;}
.y27e{bottom:641.752329px;}
.y1cf{bottom:641.752716px;}
.y259{bottom:641.753196px;}
.y206{bottom:641.753376px;}
.y109{bottom:641.842500px;}
.y326{bottom:641.842509px;}
.y17c{bottom:641.842707px;}
.y306{bottom:645.082500px;}
.ye7{bottom:645.623574px;}
.y66{bottom:645.623754px;}
.y37{bottom:650.752728px;}
.yb6{bottom:651.112644px;}
.y2a9{bottom:655.342707px;}
.y99{bottom:655.523157px;}
.y22a{bottom:655.612500px;}
.y156{bottom:656.061915px;}
.y138{bottom:656.780970px;}
.y1ce{bottom:659.032707px;}
.y205{bottom:659.033367px;}
.y27d{bottom:659.122500px;}
.y325{bottom:659.122689px;}
.y17b{bottom:659.122698px;}
.y258{bottom:659.123367px;}
.y108{bottom:662.633025px;}
.y89{bottom:662.723385px;}
.ye6{bottom:662.813385px;}
.y65{bottom:662.813565px;}
.y36{bottom:668.032719px;}
.yb5{bottom:668.302455px;}
.y2a8{bottom:672.622698px;}
.y98{bottom:672.893328px;}
.y155{bottom:673.251726px;}
.y229{bottom:673.882350px;}
.y137{bottom:675.051438px;}
.y17a{bottom:676.222329px;}
.y1cd{bottom:676.222518px;}
.y324{bottom:676.312500px;}
.y257{bottom:676.313178px;}
.y204{bottom:676.313358px;}
.y305{bottom:676.852500px;}
.y304{bottom:676.852923px;}
.y27c{bottom:679.913196px;}
.ye5{bottom:680.093376px;}
.y64{bottom:680.093556px;}
.y35{bottom:685.132350px;}
.yb4{bottom:685.582446px;}
.y2a7{bottom:689.812509px;}
.y97{bottom:690.173319px;}
.y154{bottom:690.531717px;}
.y228{bottom:692.062500px;}
.y136{bottom:693.321906px;}
.y1cc{bottom:693.502509px;}
.y179{bottom:693.592500px;}
.y256{bottom:693.593169px;}
.y203{bottom:693.593349px;}
.y323{bottom:697.193187px;}
.y63{bottom:697.283367px;}
.ye4{bottom:697.373367px;}
.y88{bottom:697.373547px;}
.y34{bottom:702.142500px;}
.yb3{bottom:702.862437px;}
.y2a6{bottom:707.092500px;}
.y96{bottom:707.363130px;}
.y153{bottom:707.811708px;}
.y303{bottom:708.622500px;}
.y135{bottom:710.601897px;}
.y1cb{bottom:710.782500px;}
.y255{bottom:710.873160px;}
.y202{bottom:710.873340px;}
.y227{bottom:713.842500px;}
.y178{bottom:714.382998px;}
.y2c1{bottom:714.472998px;}
.y322{bottom:714.473178px;}
.ye3{bottom:714.563178px;}
.y62{bottom:714.563358px;}
.y33{bottom:718.073067px;}
.ye{bottom:718.543950px;}
.yb{bottom:718.595850px;}
.yb2{bottom:720.052248px;}
.y95{bottom:724.643121px;}
.y152{bottom:725.001519px;}
.y2a5{bottom:727.882338px;}
.y254{bottom:728.062971px;}
.y201{bottom:728.063151px;}
.y134{bottom:728.782185px;}
.y1ca{bottom:731.662809px;}
.y2c0{bottom:731.752989px;}
.ye2{bottom:731.843169px;}
.y61{bottom:731.843349px;}
.y32{bottom:735.262878px;}
.yb1{bottom:738.412896px;}
.y302{bottom:741.202350px;}
.y301{bottom:741.202773px;}
.y94{bottom:741.923112px;}
.y151{bottom:742.281510px;}
.y2a4{bottom:745.252509px;}
.y253{bottom:745.342962px;}
.y200{bottom:745.343142px;}
.y133{bottom:746.062176px;}
.y2bf{bottom:748.942800px;}
.ye1{bottom:749.032980px;}
.y60{bottom:749.033160px;}
.y31{bottom:752.542869px;}
.yb0{bottom:758.123238px;}
.y93{bottom:759.112923px;}
.y150{bottom:759.561501px;}
.y2a3{bottom:762.532500px;}
.y252{bottom:762.532773px;}
.y1ff{bottom:762.532953px;}
.y132{bottom:764.332644px;}
.y27b{bottom:766.222971px;}
.ye0{bottom:766.312971px;}
.y5f{bottom:766.313151px;}
.y30{bottom:769.642500px;}
.y300{bottom:772.972350px;}
.y92{bottom:776.392914px;}
.y14f{bottom:776.661132px;}
.yaf{bottom:776.843103px;}
.ya7{bottom:777.382350px;}
.y2a2{bottom:779.812500px;}
.y251{bottom:779.812764px;}
.y1fe{bottom:779.812944px;}
.y131{bottom:781.612635px;}
.y27a{bottom:783.502962px;}
.ydf{bottom:783.592962px;}
.y5e{bottom:783.593142px;}
.y2f{bottom:786.652350px;}
.y91{bottom:793.582725px;}
.y14e{bottom:794.031303px;}
.yae{bottom:794.032914px;}
.y5{bottom:794.344800px;}
.y2a1{bottom:797.092500px;}
.y250{bottom:797.092755px;}
.y1fd{bottom:797.092935px;}
.ya6{bottom:798.082350px;}
.y130{bottom:799.792923px;}
.y5d{bottom:800.692773px;}
.yde{bottom:800.782773px;}
.y177{bottom:800.782953px;}
.y2e{bottom:802.582878px;}
.y2ff{bottom:805.552500px;}
.y90{bottom:810.862716px;}
.y14d{bottom:811.311294px;}
.yad{bottom:811.312905px;}
.y4{bottom:811.594800px;}
.y1fc{bottom:814.192566px;}
.y2a0{bottom:814.282500px;}
.y24f{bottom:814.282566px;}
.y12f{bottom:817.072914px;}
.y5c{bottom:817.972764px;}
.ydd{bottom:818.062764px;}
.y87{bottom:818.062944px;}
.ya5{bottom:818.782350px;}
.y2d{bottom:819.772689px;}
.y8f{bottom:828.142707px;}
.yac{bottom:828.592896px;}
.y3{bottom:828.844800px;}
.y14c{bottom:829.581762px;}
.y1fb{bottom:831.472557px;}
.y24e{bottom:831.562557px;}
.y29f{bottom:831.562716px;}
.y12e{bottom:834.352905px;}
.ydc{bottom:835.342755px;}
.y5b{bottom:835.342935px;}
.y2c{bottom:836.962500px;}
.y2fe{bottom:837.322500px;}
.ya4{bottom:839.482350px;}
.y8e{bottom:845.332518px;}
.yab{bottom:845.782707px;}
.y14b{bottom:847.852230px;}
.y24d{bottom:848.752368px;}
.y1fa{bottom:848.752548px;}
.y29e{bottom:848.842707px;}
.y12d{bottom:851.542716px;}
.y1b4{bottom:852.442386px;}
.y2fd{bottom:852.442566px;}
.ydb{bottom:852.532566px;}
.y5a{bottom:852.532746px;}
.y2b{bottom:853.882350px;}
.ya3{bottom:860.182350px;}
.y8d{bottom:862.612509px;}
.yaa{bottom:863.062698px;}
.y24c{bottom:865.942179px;}
.y1f9{bottom:865.942359px;}
.y14a{bottom:866.032518px;}
.y12c{bottom:868.732527px;}
.y2fc{bottom:869.722557px;}
.yda{bottom:869.812557px;}
.y2a{bottom:869.812737px;}
.y8c{bottom:879.892500px;}
.ya9{bottom:880.342689px;}
.ya2{bottom:880.882350px;}
.y1f8{bottom:883.222350px;}
.y24b{bottom:883.312350px;}
.y149{bottom:883.312509px;}
.y12b{bottom:886.012518px;}
.y2be{bottom:887.002368px;}
.y2fb{bottom:887.002548px;}
.yd9{bottom:887.092548px;}
.y29{bottom:887.092728px;}
.ya8{bottom:897.532500px;}
.y8b{bottom:897.892500px;}
.y148{bottom:900.592500px;}
.ya1{bottom:901.582350px;}
.y12a{bottom:903.292509px;}
.y1f7{bottom:904.102179px;}
.y28{bottom:904.192359px;}
.yd8{bottom:904.282359px;}
.y59{bottom:904.282539px;}
.y7{bottom:911.773050px;}
.y129{bottom:920.572500px;}
.y8a{bottom:921.382350px;}
.y27{bottom:921.472350px;}
.yd7{bottom:921.562350px;}
.h16{height:24.398438px;}
.h18{height:24.644531px;}
.h17{height:29.460938px;}
.he{height:36.000000px;}
.h1b{height:41.848242px;}
.hf{height:42.000788px;}
.hd{height:42.117188px;}
.h10{height:43.227598px;}
.h3{height:43.681641px;}
.h15{height:43.769004px;}
.h1a{height:45.164531px;}
.h19{height:45.524531px;}
.h14{height:47.988281px;}
.h13{height:48.410156px;}
.h1c{height:52.417969px;}
.h12{height:53.896641px;}
.h11{height:54.278262px;}
.h6{height:56.396484px;}
.h4{height:63.175781px;}
.h2{height:65.238893px;}
.h5{height:67.500000px;}
.hc{height:67.675781px;}
.hb{height:78.969727px;}
.h8{height:108.000000px;}
.h7{height:114.372000px;}
.h9{height:1020.000000px;}
.ha{height:1020.472500px;}
.h0{height:1020.475350px;}
.h1{height:1020.750000px;}
.w0{width:722.833500px;}
.w2{width:722.835000px;}
.w1{width:723.000000px;}
.x2{left:-547.439400px;}
.x0{left:0.000000px;}
.x3{left:68.470650px;}
.x21{left:106.380000px;}
.x4{left:126.163650px;}
.x22{left:133.379892px;}
.x43{left:145.440360px;}
.x44{left:149.129514px;}
.x3f{left:152.100468px;}
.x2c{left:153.450000px;}
.x2b{left:157.411359px;}
.x23{left:159.299127px;}
.x26{left:160.379784px;}
.x38{left:167.670000px;}
.x31{left:169.740000px;}
.x46{left:171.143100px;}
.x3e{left:179.100000px;}
.x28{left:186.569559px;}
.x37{left:192.689775px;}
.x2e{left:212.759334px;}
.x2d{left:214.379568px;}
.x12{left:226.122900px;}
.x11{left:228.162900px;}
.x10{left:229.242900px;}
.xf{left:231.786900px;}
.x14{left:235.170900px;}
.x13{left:241.182900px;}
.x18{left:243.078900px;}
.x19{left:248.790900px;}
.x1b{left:250.050900px;}
.xc{left:254.327250px;}
.xd{left:256.889250px;}
.x1e{left:257.958900px;}
.xa{left:263.454450px;}
.x2f{left:265.949001px;}
.xe{left:271.091250px;}
.x32{left:279.630000px;}
.x1d{left:290.634900px;}
.x1f{left:295.650900px;}
.x39{left:299.610000px;}
.x5{left:301.491300px;}
.x40{left:308.250000px;}
.x9{left:312.494400px;}
.x1{left:314.504850px;}
.x6{left:321.409650px;}
.x29{left:322.920216px;}
.x1a{left:331.866900px;}
.x7{left:333.249150px;}
.x16{left:338.658900px;}
.x1c{left:340.062900px;}
.x15{left:342.174900px;}
.x17{left:348.162900px;}
.x25{left:367.920000px;}
.x24{left:369.991170px;}
.x20{left:374.670000px;}
.x2a{left:396.991062px;}
.x33{left:399.600000px;}
.x3b{left:408.420000px;}
.x3a{left:413.100000px;}
.x41{left:444.420000px;}
.xb{left:463.619700px;}
.x34{left:468.270000px;}
.x8{left:514.489650px;}
.x35{left:515.790000px;}
.x3c{left:535.680000px;}
.x3d{left:548.280000px;}
.x27{left:550.440000px;}
.x30{left:556.020000px;}
.x42{left:568.800000px;}
.x36{left:575.010000px;}
.x47{left:787.053150px;}
.x48{left:844.746150px;}
.x49{left:1020.073800px;}
.x4d{left:1031.076900px;}
.x45{left:1033.087350px;}
.x4a{left:1039.992150px;}
.x4b{left:1051.831650px;}
.x4c{left:1233.072150px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls43{letter-spacing:-0.625248pt;}
.ls3d{letter-spacing:-0.619904pt;}
.ls40{letter-spacing:-0.609216pt;}
.ls42{letter-spacing:-0.603872pt;}
.ls41{letter-spacing:-0.598528pt;}
.ls3e{letter-spacing:-0.593184pt;}
.ls3f{letter-spacing:-0.577152pt;}
.ls45{letter-spacing:-0.448896pt;}
.ls4f{letter-spacing:-0.304608pt;}
.ls4d{letter-spacing:-0.288576pt;}
.ls23{letter-spacing:-0.251168pt;}
.ls73{letter-spacing:-0.249600pt;}
.ls3b{letter-spacing:-0.240480pt;}
.ls8d{letter-spacing:-0.235136pt;}
.ls33{letter-spacing:-0.224448pt;}
.ls51{letter-spacing:-0.219104pt;}
.ls1d{letter-spacing:-0.208416pt;}
.ls10{letter-spacing:-0.203072pt;}
.ls12{letter-spacing:-0.197728pt;}
.ls8e{letter-spacing:-0.187040pt;}
.ls49{letter-spacing:-0.181696pt;}
.ls52{letter-spacing:-0.176352pt;}
.ls34{letter-spacing:-0.165664pt;}
.ls50{letter-spacing:-0.144288pt;}
.ls4b{letter-spacing:-0.133600pt;}
.ls21{letter-spacing:-0.128256pt;}
.ls24{letter-spacing:-0.122912pt;}
.ls7a{letter-spacing:-0.121600pt;}
.ls78{letter-spacing:-0.118400pt;}
.ls29{letter-spacing:-0.117568pt;}
.ls28{letter-spacing:-0.106880pt;}
.ls66{letter-spacing:-0.105600pt;}
.ls46{letter-spacing:-0.101536pt;}
.ls1f{letter-spacing:-0.096192pt;}
.ls72{letter-spacing:-0.096000pt;}
.ls18{letter-spacing:-0.093632pt;}
.ls31{letter-spacing:-0.090848pt;}
.ls2d{letter-spacing:-0.085504pt;}
.ls20{letter-spacing:-0.080160pt;}
.ls76{letter-spacing:-0.080000pt;}
.ls4a{letter-spacing:-0.074816pt;}
.ls77{letter-spacing:-0.073600pt;}
.ls63{letter-spacing:-0.070400pt;}
.ls26{letter-spacing:-0.069472pt;}
.ls6a{letter-spacing:-0.067200pt;}
.ls1c{letter-spacing:-0.064128pt;}
.ls8f{letter-spacing:-0.063840pt;}
.lsd{letter-spacing:-0.058784pt;}
.ls62{letter-spacing:-0.057600pt;}
.ls4c{letter-spacing:-0.053440pt;}
.ls74{letter-spacing:-0.051200pt;}
.ls27{letter-spacing:-0.048096pt;}
.ls6f{letter-spacing:-0.048000pt;}
.ls6c{letter-spacing:-0.044800pt;}
.ls2e{letter-spacing:-0.042752pt;}
.ls5f{letter-spacing:-0.041600pt;}
.ls61{letter-spacing:-0.038400pt;}
.ls81{letter-spacing:-0.038304pt;}
.ls1e{letter-spacing:-0.037408pt;}
.ls80{letter-spacing:-0.034048pt;}
.ls13{letter-spacing:-0.032064pt;}
.ls70{letter-spacing:-0.028800pt;}
.ls1b{letter-spacing:-0.026720pt;}
.ls65{letter-spacing:-0.025600pt;}
.ls30{letter-spacing:-0.025536pt;}
.ls1a{letter-spacing:-0.021376pt;}
.lsc{letter-spacing:-0.021280pt;}
.ls69{letter-spacing:-0.019200pt;}
.ls19{letter-spacing:-0.017024pt;}
.ls14{letter-spacing:-0.016032pt;}
.ls60{letter-spacing:-0.016000pt;}
.ls79{letter-spacing:-0.012800pt;}
.lse{letter-spacing:-0.010688pt;}
.ls67{letter-spacing:-0.009600pt;}
.ls75{letter-spacing:-0.006400pt;}
.lsf{letter-spacing:-0.005344pt;}
.ls39{letter-spacing:-0.004256pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5e{letter-spacing:0.003200pt;}
.ls7d{letter-spacing:0.004256pt;}
.ls2{letter-spacing:0.005344pt;}
.ls88{letter-spacing:0.008320pt;}
.ls16{letter-spacing:0.008512pt;}
.ls6b{letter-spacing:0.009600pt;}
.ls6{letter-spacing:0.010688pt;}
.ls85{letter-spacing:0.012768pt;}
.ls56{letter-spacing:0.012800pt;}
.ls9{letter-spacing:0.016032pt;}
.ls15{letter-spacing:0.017024pt;}
.ls4{letter-spacing:0.021376pt;}
.ls71{letter-spacing:0.022400pt;}
.ls7e{letter-spacing:0.025536pt;}
.ls5{letter-spacing:0.026720pt;}
.ls5a{letter-spacing:0.028800pt;}
.ls7f{letter-spacing:0.029792pt;}
.lsa{letter-spacing:0.032064pt;}
.ls7{letter-spacing:0.037408pt;}
.ls83{letter-spacing:0.038304pt;}
.ls5b{letter-spacing:0.038400pt;}
.ls3{letter-spacing:0.042752pt;}
.ls7b{letter-spacing:0.044800pt;}
.ls2c{letter-spacing:0.048096pt;}
.ls17{letter-spacing:0.053440pt;}
.ls87{letter-spacing:0.055328pt;}
.ls55{letter-spacing:0.057600pt;}
.ls8{letter-spacing:0.058784pt;}
.ls57{letter-spacing:0.060800pt;}
.ls6d{letter-spacing:0.064000pt;}
.ls35{letter-spacing:0.064128pt;}
.ls32{letter-spacing:0.069472pt;}
.ls89{letter-spacing:0.072352pt;}
.ls68{letter-spacing:0.073600pt;}
.ls54{letter-spacing:0.076608pt;}
.ls58{letter-spacing:0.076800pt;}
.ls2b{letter-spacing:0.080160pt;}
.ls37{letter-spacing:0.085504pt;}
.lsb{letter-spacing:0.090848pt;}
.ls82{letter-spacing:0.093632pt;}
.ls4e{letter-spacing:0.096192pt;}
.ls2f{letter-spacing:0.101536pt;}
.ls64{letter-spacing:0.105600pt;}
.ls11{letter-spacing:0.106880pt;}
.ls84{letter-spacing:0.117568pt;}
.ls5d{letter-spacing:0.121600pt;}
.ls8b{letter-spacing:0.122912pt;}
.ls8a{letter-spacing:0.124480pt;}
.ls6e{letter-spacing:0.131200pt;}
.ls86{letter-spacing:0.134400pt;}
.ls59{letter-spacing:0.144000pt;}
.ls3a{letter-spacing:0.160320pt;}
.ls53{letter-spacing:0.181696pt;}
.ls44{letter-spacing:0.192384pt;}
.ls47{letter-spacing:0.217056pt;}
.ls8c{letter-spacing:0.306432pt;}
.ls36{letter-spacing:0.331968pt;}
.ls1{letter-spacing:0.336224pt;}
.ls5c{letter-spacing:149.120000pt;}
.ls3c{letter-spacing:158.593888pt;}
.ls2a{letter-spacing:165.280000pt;}
.ls48{letter-spacing:166.593856pt;}
.ls38{letter-spacing:169.610112pt;}
.ls22{letter-spacing:170.746144pt;}
.ls25{letter-spacing:174.273184pt;}
.ls7c{letter-spacing:373.128320pt;}
.ws228{word-spacing:-15.980800pt;}
.ws21f{word-spacing:-14.979232pt;}
.ws74{word-spacing:-14.925792pt;}
.ws221{word-spacing:-14.920448pt;}
.ws227{word-spacing:-14.915104pt;}
.ws140{word-spacing:-14.893728pt;}
.ws2a{word-spacing:-14.888384pt;}
.ws1e3{word-spacing:-14.877696pt;}
.ws1ad{word-spacing:-14.872352pt;}
.ws29{word-spacing:-14.867008pt;}
.ws1e4{word-spacing:-14.861664pt;}
.wsd2{word-spacing:-14.856320pt;}
.ws1ac{word-spacing:-14.850976pt;}
.ws1ef{word-spacing:-14.845632pt;}
.ws1f0{word-spacing:-14.840288pt;}
.ws2b{word-spacing:-14.824256pt;}
.wsa6{word-spacing:-12.163648pt;}
.ws225{word-spacing:-11.925312pt;}
.ws223{word-spacing:-11.904032pt;}
.ws222{word-spacing:-11.887008pt;}
.ws220{word-spacing:-11.869984pt;}
.ws21e{word-spacing:-11.857216pt;}
.ws226{word-spacing:-11.844448pt;}
.ws73{word-spacing:-11.840192pt;}
.ws224{word-spacing:-11.835936pt;}
.ws204{word-spacing:-11.049600pt;}
.ws206{word-spacing:-11.020800pt;}
.ws20b{word-spacing:-10.982400pt;}
.ws207{word-spacing:-10.924800pt;}
.ws205{word-spacing:-10.918400pt;}
.ws208{word-spacing:-10.873600pt;}
.ws4{word-spacing:-10.666667pt;}
.ws2f{word-spacing:-9.597824pt;}
.ws30{word-spacing:-9.277184pt;}
.ws35{word-spacing:-8.325952pt;}
.ws20c{word-spacing:-8.121600pt;}
.ws20e{word-spacing:-8.003200pt;}
.ws20d{word-spacing:-8.000000pt;}
.ws20a{word-spacing:-7.990400pt;}
.ws209{word-spacing:-7.750400pt;}
.ws2e{word-spacing:-6.722752pt;}
.ws2c{word-spacing:-6.717408pt;}
.ws36{word-spacing:-4.483616pt;}
.ws34{word-spacing:-0.961920pt;}
.ws199{word-spacing:-0.507680pt;}
.ws193{word-spacing:-0.496992pt;}
.ws241{word-spacing:-0.486304pt;}
.ws1d{word-spacing:-0.480960pt;}
.ws1a5{word-spacing:-0.475616pt;}
.ws1e6{word-spacing:-0.470272pt;}
.ws14e{word-spacing:-0.464928pt;}
.ws180{word-spacing:-0.454240pt;}
.ws1ae{word-spacing:-0.448896pt;}
.ws15b{word-spacing:-0.432864pt;}
.ws16{word-spacing:-0.235136pt;}
.ws1b7{word-spacing:-0.224448pt;}
.ws1b{word-spacing:-0.219104pt;}
.ws3d{word-spacing:-0.208416pt;}
.wsfb{word-spacing:-0.197728pt;}
.ws1f6{word-spacing:-0.192384pt;}
.ws11{word-spacing:-0.187040pt;}
.ws24{word-spacing:-0.181696pt;}
.ws18e{word-spacing:-0.176352pt;}
.ws7{word-spacing:-0.171008pt;}
.wse{word-spacing:-0.165664pt;}
.ws17{word-spacing:-0.160320pt;}
.ws218{word-spacing:-0.157472pt;}
.wsa{word-spacing:-0.154976pt;}
.ws219{word-spacing:-0.153216pt;}
.ws9{word-spacing:-0.149632pt;}
.ws12{word-spacing:-0.144288pt;}
.wsb{word-spacing:-0.138944pt;}
.ws6{word-spacing:-0.133600pt;}
.ws10{word-spacing:-0.128256pt;}
.wsf{word-spacing:-0.122912pt;}
.wsd{word-spacing:-0.117568pt;}
.ws1a{word-spacing:-0.112224pt;}
.ws1f{word-spacing:-0.106880pt;}
.ws20{word-spacing:-0.101536pt;}
.wsfc{word-spacing:-0.096192pt;}
.ws26{word-spacing:-0.090848pt;}
.ws1e7{word-spacing:-0.085504pt;}
.ws32{word-spacing:-0.080160pt;}
.ws19f{word-spacing:-0.074816pt;}
.ws8{word-spacing:-0.069472pt;}
.ws21{word-spacing:-0.064128pt;}
.ws31{word-spacing:-0.058784pt;}
.ws38{word-spacing:-0.053440pt;}
.ws28{word-spacing:-0.048096pt;}
.ws247{word-spacing:-0.042752pt;}
.ws27{word-spacing:-0.032064pt;}
.ws15a{word-spacing:-0.026720pt;}
.ws33{word-spacing:-0.021376pt;}
.ws240{word-spacing:-0.021280pt;}
.ws21a{word-spacing:-0.012800pt;}
.ws244{word-spacing:-0.012768pt;}
.ws243{word-spacing:-0.008512pt;}
.ws0{word-spacing:0.000000pt;}
.ws23a{word-spacing:0.004256pt;}
.wsd1{word-spacing:0.008512pt;}
.ws21d{word-spacing:0.012800pt;}
.wsd0{word-spacing:0.021280pt;}
.ws21c{word-spacing:0.025600pt;}
.ws91{word-spacing:0.037408pt;}
.ws182{word-spacing:0.053440pt;}
.ws23c{word-spacing:0.058784pt;}
.ws18{word-spacing:0.069472pt;}
.ws14{word-spacing:0.074816pt;}
.ws22{word-spacing:0.080160pt;}
.ws203{word-spacing:0.096192pt;}
.ws3{word-spacing:0.106667pt;}
.ws238{word-spacing:0.106880pt;}
.wse4{word-spacing:0.112224pt;}
.ws166{word-spacing:0.119168pt;}
.ws2d{word-spacing:0.122912pt;}
.ws100{word-spacing:0.128256pt;}
.ws1f8{word-spacing:0.144288pt;}
.ws62{word-spacing:0.154976pt;}
.wsf7{word-spacing:0.165664pt;}
.ws12d{word-spacing:0.171008pt;}
.ws61{word-spacing:0.176352pt;}
.ws1ee{word-spacing:0.197728pt;}
.wsc9{word-spacing:0.229792pt;}
.ws246{word-spacing:0.310688pt;}
.ws242{word-spacing:0.320640pt;}
.ws1c{word-spacing:0.353248pt;}
.ws5{word-spacing:0.357504pt;}
.ws75{word-spacing:0.361760pt;}
.ws21b{word-spacing:0.368000pt;}
.ws23d{word-spacing:0.400064pt;}
.ws20f{word-spacing:0.459584pt;}
.wsee{word-spacing:0.480960pt;}
.wsc0{word-spacing:0.491648pt;}
.ws19b{word-spacing:0.496992pt;}
.ws210{word-spacing:0.502336pt;}
.wsed{word-spacing:0.513024pt;}
.ws19c{word-spacing:0.555776pt;}
.ws14c{word-spacing:0.812288pt;}
.ws79{word-spacing:0.822976pt;}
.ws1cc{word-spacing:0.833664pt;}
.ws115{word-spacing:0.839008pt;}
.ws154{word-spacing:0.844352pt;}
.ws1a9{word-spacing:0.849696pt;}
.ws1aa{word-spacing:0.860384pt;}
.ws153{word-spacing:0.865728pt;}
.ws192{word-spacing:1.100864pt;}
.wse9{word-spacing:1.122240pt;}
.ws56{word-spacing:1.132928pt;}
.ws13d{word-spacing:1.138272pt;}
.ws12c{word-spacing:1.143616pt;}
.ws1e{word-spacing:1.154304pt;}
.ws19e{word-spacing:1.287904pt;}
.ws1d6{word-spacing:1.426848pt;}
.wsab{word-spacing:1.453568pt;}
.wsea{word-spacing:1.458912pt;}
.ws1a0{word-spacing:1.469600pt;}
.wsb0{word-spacing:1.752832pt;}
.wse3{word-spacing:1.758176pt;}
.ws15f{word-spacing:1.763520pt;}
.ws1e1{word-spacing:1.768864pt;}
.ws160{word-spacing:1.774208pt;}
.wse2{word-spacing:1.779552pt;}
.wsb1{word-spacing:1.784896pt;}
.ws40{word-spacing:1.790240pt;}
.ws1e0{word-spacing:1.795584pt;}
.ws213{word-spacing:2.046752pt;}
.ws152{word-spacing:2.052096pt;}
.wsa8{word-spacing:2.089504pt;}
.ws1f4{word-spacing:2.094848pt;}
.ws195{word-spacing:2.100192pt;}
.ws16e{word-spacing:2.110880pt;}
.ws187{word-spacing:2.121568pt;}
.ws16b{word-spacing:2.148288pt;}
.ws16c{word-spacing:2.169664pt;}
.ws214{word-spacing:2.362048pt;}
.ws6f{word-spacing:2.394112pt;}
.ws215{word-spacing:2.399456pt;}
.wsa3{word-spacing:2.410144pt;}
.ws70{word-spacing:2.415488pt;}
.wsc2{word-spacing:2.420832pt;}
.ws133{word-spacing:2.442208pt;}
.ws5b{word-spacing:2.452896pt;}
.ws22b{word-spacing:2.458240pt;}
.ws76{word-spacing:2.479616pt;}
.ws22a{word-spacing:2.490304pt;}
.ws78{word-spacing:2.495648pt;}
.ws5a{word-spacing:2.511680pt;}
.ws59{word-spacing:2.517024pt;}
.ws77{word-spacing:2.522368pt;}
.ws104{word-spacing:2.714752pt;}
.ws6c{word-spacing:2.725440pt;}
.wsf3{word-spacing:2.736128pt;}
.ws9a{word-spacing:2.741472pt;}
.wsbf{word-spacing:2.746816pt;}
.ws13f{word-spacing:2.752160pt;}
.ws12f{word-spacing:2.757504pt;}
.wsf2{word-spacing:2.762848pt;}
.ws109{word-spacing:3.035392pt;}
.ws96{word-spacing:3.051424pt;}
.ws95{word-spacing:3.062112pt;}
.ws1ea{word-spacing:3.088832pt;}
.ws68{word-spacing:3.115552pt;}
.ws10c{word-spacing:3.350688pt;}
.wse8{word-spacing:3.377408pt;}
.ws7b{word-spacing:3.393440pt;}
.ws7a{word-spacing:3.398784pt;}
.ws176{word-spacing:3.692704pt;}
.ws194{word-spacing:3.703392pt;}
.wsaf{word-spacing:3.708736pt;}
.wsb5{word-spacing:3.991968pt;}
.ws44{word-spacing:3.997312pt;}
.ws1a7{word-spacing:4.008000pt;}
.ws43{word-spacing:4.013344pt;}
.ws65{word-spacing:4.024032pt;}
.ws42{word-spacing:4.029376pt;}
.ws1d1{word-spacing:4.034720pt;}
.ws128{word-spacing:4.317952pt;}
.ws1e9{word-spacing:4.328640pt;}
.ws1da{word-spacing:4.333984pt;}
.ws4c{word-spacing:4.339328pt;}
.ws1f5{word-spacing:4.355360pt;}
.ws1db{word-spacing:4.371392pt;}
.ws1e8{word-spacing:4.569120pt;}
.wse7{word-spacing:4.649280pt;}
.ws1dd{word-spacing:4.659968pt;}
.ws172{word-spacing:4.665312pt;}
.ws117{word-spacing:4.670656pt;}
.ws159{word-spacing:4.676000pt;}
.ws1dc{word-spacing:4.686688pt;}
.ws5f{word-spacing:4.943200pt;}
.ws3f{word-spacing:4.953888pt;}
.ws1df{word-spacing:4.964576pt;}
.ws57{word-spacing:4.969920pt;}
.ws1f9{word-spacing:4.980608pt;}
.ws158{word-spacing:4.991296pt;}
.ws1d4{word-spacing:4.996640pt;}
.ws114{word-spacing:5.274528pt;}
.ws113{word-spacing:5.290560pt;}
.ws201{word-spacing:5.317280pt;}
.wsc6{word-spacing:5.568448pt;}
.ws8e{word-spacing:5.573792pt;}
.ws8d{word-spacing:5.600512pt;}
.ws71{word-spacing:5.605856pt;}
.ws1fe{word-spacing:5.616544pt;}
.ws1a3{word-spacing:5.621888pt;}
.wsa2{word-spacing:5.637920pt;}
.wsc7{word-spacing:5.643264pt;}
.ws1c5{word-spacing:5.659296pt;}
.ws1c6{word-spacing:5.686016pt;}
.ws1c7{word-spacing:5.776864pt;}
.wsad{word-spacing:5.915808pt;}
.ws18f{word-spacing:5.926496pt;}
.ws136{word-spacing:5.931840pt;}
.ws167{word-spacing:5.937184pt;}
.ws161{word-spacing:5.947872pt;}
.ws126{word-spacing:6.215072pt;}
.ws10d{word-spacing:6.236448pt;}
.ws196{word-spacing:6.252480pt;}
.ws173{word-spacing:6.257824pt;}
.ws148{word-spacing:6.268512pt;}
.ws1a1{word-spacing:6.273856pt;}
.wsae{word-spacing:6.284544pt;}
.ws229{word-spacing:6.316608pt;}
.ws9b{word-spacing:6.332640pt;}
.ws9c{word-spacing:6.370048pt;}
.ws1ab{word-spacing:6.492960pt;}
.ws121{word-spacing:6.551744pt;}
.ws10e{word-spacing:6.557088pt;}
.ws10f{word-spacing:6.562432pt;}
.ws58{word-spacing:6.567776pt;}
.ws177{word-spacing:6.573120pt;}
.ws6d{word-spacing:6.578464pt;}
.ws17a{word-spacing:6.589152pt;}
.ws127{word-spacing:6.610528pt;}
.ws188{word-spacing:6.845664pt;}
.ws125{word-spacing:6.867040pt;}
.ws54{word-spacing:6.883072pt;}
.ws4b{word-spacing:6.899104pt;}
.wsc8{word-spacing:6.909792pt;}
.ws231{word-spacing:6.968576pt;}
.ws230{word-spacing:6.979264pt;}
.ws23{word-spacing:7.193024pt;}
.ws103{word-spacing:7.209056pt;}
.wscc{word-spacing:7.219744pt;}
.ws143{word-spacing:7.310592pt;}
.ws142{word-spacing:7.337312pt;}
.ws144{word-spacing:7.353344pt;}
.ws1cb{word-spacing:7.438848pt;}
.ws80{word-spacing:7.449536pt;}
.ws1a8{word-spacing:7.519008pt;}
.ws1cf{word-spacing:7.529696pt;}
.ws9e{word-spacing:7.535040pt;}
.ws51{word-spacing:7.861024pt;}
.wsb6{word-spacing:7.871712pt;}
.ws53{word-spacing:7.887744pt;}
.ws10b{word-spacing:8.154944pt;}
.ws139{word-spacing:8.160288pt;}
.ws16f{word-spacing:8.165632pt;}
.ws3e{word-spacing:8.176320pt;}
.ws9f{word-spacing:8.181664pt;}
.ws164{word-spacing:8.197696pt;}
.ws1c3{word-spacing:8.486272pt;}
.ws50{word-spacing:8.491616pt;}
.ws1b2{word-spacing:8.496960pt;}
.ws15e{word-spacing:8.502304pt;}
.ws15d{word-spacing:8.507648pt;}
.ws4d{word-spacing:8.582464pt;}
.ws4e{word-spacing:8.598496pt;}
.ws175{word-spacing:8.822944pt;}
.ws9d{word-spacing:9.116864pt;}
.ws4f{word-spacing:9.138240pt;}
.ws1ca{word-spacing:9.164960pt;}
.ws1ce{word-spacing:9.421472pt;}
.ws179{word-spacing:9.442848pt;}
.ws108{word-spacing:9.448192pt;}
.ws87{word-spacing:9.453536pt;}
.ws6a{word-spacing:9.458880pt;}
.ws6b{word-spacing:9.474912pt;}
.ws86{word-spacing:9.480256pt;}
.ws233{word-spacing:9.544384pt;}
.ws232{word-spacing:9.549728pt;}
.wsdb{word-spacing:9.747456pt;}
.ws14b{word-spacing:9.752800pt;}
.wsfa{word-spacing:9.763488pt;}
.ws13a{word-spacing:9.768832pt;}
.ws5c{word-spacing:9.784864pt;}
.ws13b{word-spacing:9.800896pt;}
.wse6{word-spacing:10.073440pt;}
.ws1ba{word-spacing:10.084128pt;}
.wsb9{word-spacing:10.089472pt;}
.ws94{word-spacing:10.110848pt;}
.wsb8{word-spacing:10.116192pt;}
.wsb3{word-spacing:10.372704pt;}
.ws5d{word-spacing:10.388736pt;}
.wsbe{word-spacing:10.394080pt;}
.ws1be{word-spacing:10.415456pt;}
.ws5e{word-spacing:10.431488pt;}
.ws1bd{word-spacing:10.452864pt;}
.ws13e{word-spacing:10.693344pt;}
.ws13c{word-spacing:10.720064pt;}
.ws41{word-spacing:10.741440pt;}
.ws12a{word-spacing:10.746784pt;}
.ws183{word-spacing:10.752128pt;}
.wsb2{word-spacing:10.762816pt;}
.ws184{word-spacing:11.051392pt;}
.ws102{word-spacing:11.350656pt;}
.ws3c{word-spacing:11.361344pt;}
.ws200{word-spacing:11.372032pt;}
.ws129{word-spacing:11.382720pt;}
.wseb{word-spacing:11.388064pt;}
.ws178{word-spacing:11.420128pt;}
.wsa9{word-spacing:11.665952pt;}
.ws10a{word-spacing:11.676640pt;}
.ws16a{word-spacing:11.681984pt;}
.ws181{word-spacing:11.698016pt;}
.ws169{word-spacing:11.724736pt;}
.wsec{word-spacing:12.013312pt;}
.ws63{word-spacing:12.018656pt;}
.wsbc{word-spacing:12.029344pt;}
.wsbb{word-spacing:12.317920pt;}
.ws1fc{word-spacing:12.333952pt;}
.wsdf{word-spacing:12.339296pt;}
.wsbd{word-spacing:12.349984pt;}
.wse0{word-spacing:12.382048pt;}
.ws235{word-spacing:12.627872pt;}
.ws92{word-spacing:12.638560pt;}
.ws15{word-spacing:12.649248pt;}
.wsfd{word-spacing:12.654592pt;}
.ws157{word-spacing:12.659936pt;}
.ws1fd{word-spacing:12.959200pt;}
.ws165{word-spacing:12.964544pt;}
.ws47{word-spacing:12.969888pt;}
.ws18a{word-spacing:12.975232pt;}
.ws1a2{word-spacing:12.985920pt;}
.ws48{word-spacing:12.996608pt;}
.ws234{word-spacing:13.012640pt;}
.ws186{word-spacing:13.258464pt;}
.wsd7{word-spacing:13.279840pt;}
.wsc{word-spacing:13.290528pt;}
.wsd6{word-spacing:13.301216pt;}
.wsb7{word-spacing:13.306560pt;}
.ws138{word-spacing:13.333280pt;}
.ws137{word-spacing:13.605824pt;}
.ws8f{word-spacing:13.659264pt;}
.ws11a{word-spacing:13.921120pt;}
.ws60{word-spacing:13.942496pt;}
.wscb{word-spacing:14.231072pt;}
.ws1ff{word-spacing:14.247104pt;}
.wsf8{word-spacing:14.252448pt;}
.ws1d9{word-spacing:14.450176pt;}
.ws13{word-spacing:14.589120pt;}
.wsda{word-spacing:14.904416pt;}
.ws22f{word-spacing:14.920448pt;}
.ws22e{word-spacing:14.957856pt;}
.ws106{word-spacing:15.198336pt;}
.ws202{word-spacing:15.214368pt;}
.ws2{word-spacing:15.253333pt;}
.ws18d{word-spacing:15.262464pt;}
.ws64{word-spacing:15.508288pt;}
.ws52{word-spacing:15.524320pt;}
.ws155{word-spacing:15.529664pt;}
.ws12e{word-spacing:15.551040pt;}
.ws1c8{word-spacing:15.844960pt;}
.ws151{word-spacing:15.855648pt;}
.ws72{word-spacing:15.860992pt;}
.ws16d{word-spacing:15.866336pt;}
.ws11e{word-spacing:16.149568pt;}
.ws93{word-spacing:16.160256pt;}
.wscf{word-spacing:16.197664pt;}
.ws1{word-spacing:16.213333pt;}
.ws191{word-spacing:16.475552pt;}
.ws99{word-spacing:16.496928pt;}
.ws4a{word-spacing:16.528992pt;}
.ws55{word-spacing:16.817568pt;}
.ws18c{word-spacing:17.122176pt;}
.ws1d2{word-spacing:17.138208pt;}
.wsf0{word-spacing:17.159584pt;}
.ws8a{word-spacing:17.378688pt;}
.ws101{word-spacing:17.426784pt;}
.wsf1{word-spacing:17.448160pt;}
.ws1ed{word-spacing:17.752768pt;}
.ws1e5{word-spacing:17.768800pt;}
.wsf5{word-spacing:18.068064pt;}
.ws168{word-spacing:18.084096pt;}
.ws189{word-spacing:18.100128pt;}
.wsa5{word-spacing:18.399392pt;}
.ws1d3{word-spacing:18.431456pt;}
.wse1{word-spacing:18.730720pt;}
.ws19d{word-spacing:18.741408pt;}
.ws1de{word-spacing:18.746752pt;}
.ws1af{word-spacing:18.794848pt;}
.ws1b0{word-spacing:18.816224pt;}
.ws1d0{word-spacing:19.029984pt;}
.ws150{word-spacing:19.051360pt;}
.wsba{word-spacing:19.372000pt;}
.ws135{word-spacing:19.393376pt;}
.wsc1{word-spacing:19.687296pt;}
.wsf9{word-spacing:20.018624pt;}
.wsa7{word-spacing:20.040000pt;}
.ws1c2{word-spacing:20.050688pt;}
.ws1f7{word-spacing:20.344608pt;}
.ws11c{word-spacing:20.590432pt;}
.ws171{word-spacing:20.643872pt;}
.ws49{word-spacing:20.654560pt;}
.ws170{word-spacing:20.659904pt;}
.ws130{word-spacing:20.681280pt;}
.wsf4{word-spacing:20.959168pt;}
.ws134{word-spacing:21.007264pt;}
.ws212{word-spacing:21.285152pt;}
.wsdc{word-spacing:21.600448pt;}
.ws1a6{word-spacing:21.611136pt;}
.wsf6{word-spacing:21.632512pt;}
.ws8c{word-spacing:21.953152pt;}
.ws1d7{word-spacing:21.958496pt;}
.ws1d8{word-spacing:22.001248pt;}
.ws19a{word-spacing:22.220352pt;}
.ws11b{word-spacing:22.268448pt;}
.ws141{word-spacing:22.583744pt;}
.ws211{word-spacing:22.589088pt;}
.ws1bc{word-spacing:22.973856pt;}
.wsac{word-spacing:23.214336pt;}
.ws19{word-spacing:23.241056pt;}
.ws1a4{word-spacing:23.513600pt;}
.ws1b5{word-spacing:23.572384pt;}
.ws112{word-spacing:23.855616pt;}
.ws1b4{word-spacing:23.866304pt;}
.ws17e{word-spacing:24.486208pt;}
.ws147{word-spacing:24.796160pt;}
.ws7d{word-spacing:24.854944pt;}
.ws1b6{word-spacing:25.180928pt;}
.ws1c9{word-spacing:25.442784pt;}
.ws198{word-spacing:25.469504pt;}
.ws67{word-spacing:25.774112pt;}
.ws1f2{word-spacing:25.790144pt;}
.ws149{word-spacing:26.068032pt;}
.ws216{word-spacing:26.089408pt;}
.wsb4{word-spacing:26.100096pt;}
.ws1f1{word-spacing:26.105440pt;}
.wsd8{word-spacing:26.180256pt;}
.wsd9{word-spacing:26.201632pt;}
.ws3b{word-spacing:26.399360pt;}
.ws3a{word-spacing:26.410048pt;}
.ws69{word-spacing:26.741376pt;}
.ws39{word-spacing:26.800160pt;}
.ws1f3{word-spacing:27.067360pt;}
.wsa4{word-spacing:27.382656pt;}
.ws12b{word-spacing:27.388000pt;}
.ws1cd{word-spacing:27.708640pt;}
.ws1b9{word-spacing:27.713984pt;}
.wse5{word-spacing:28.018592pt;}
.ws1c4{word-spacing:28.072032pt;}
.ws163{word-spacing:28.333888pt;}
.ws162{word-spacing:28.339232pt;}
.ws46{word-spacing:28.376640pt;}
.ws45{word-spacing:28.643840pt;}
.wsc5{word-spacing:28.654528pt;}
.ws8b{word-spacing:28.702624pt;}
.wsff{word-spacing:28.937760pt;}
.ws190{word-spacing:28.964480pt;}
.ws1eb{word-spacing:28.969824pt;}
.ws1ec{word-spacing:29.616448pt;}
.ws122{word-spacing:29.926400pt;}
.ws15c{word-spacing:29.942432pt;}
.ws6e{word-spacing:29.947776pt;}
.ws1d5{word-spacing:30.043968pt;}
.wsaa{word-spacing:30.263072pt;}
.ws156{word-spacing:30.562336pt;}
.ws174{word-spacing:31.203616pt;}
.ws7e{word-spacing:31.208960pt;}
.ws217{word-spacing:31.839552pt;}
.ws66{word-spacing:31.850240pt;}
.ws98{word-spacing:31.866272pt;}
.ws97{word-spacing:32.133472pt;}
.ws110{word-spacing:32.144160pt;}
.ws111{word-spacing:32.160192pt;}
.ws25{word-spacing:32.502208pt;}
.ws1e2{word-spacing:32.812160pt;}
.ws90{word-spacing:33.122112pt;}
.ws7c{word-spacing:33.143488pt;}
.ws185{word-spacing:33.752704pt;}
.ws1fa{word-spacing:34.073344pt;}
.ws1fb{word-spacing:34.100064pt;}
.ws124{word-spacing:34.132128pt;}
.ws123{word-spacing:34.752032pt;}
.ws17f{word-spacing:34.757376pt;}
.ws17d{word-spacing:35.056640pt;}
.wsdd{word-spacing:36.018560pt;}
.wsde{word-spacing:36.023904pt;}
.ws105{word-spacing:37.279744pt;}
.ws22c{word-spacing:37.653824pt;}
.ws22d{word-spacing:37.669856pt;}
.wsef{word-spacing:37.937056pt;}
.ws89{word-spacing:38.236320pt;}
.wsa0{word-spacing:39.844864pt;}
.wsa1{word-spacing:39.860896pt;}
.ws146{word-spacing:39.876928pt;}
.ws81{word-spacing:40.502176pt;}
.wsc3{word-spacing:40.507520pt;}
.wsca{word-spacing:40.806784pt;}
.ws116{word-spacing:41.779392pt;}
.ws1b8{word-spacing:42.778720pt;}
.wsce{word-spacing:43.949056pt;}
.ws18b{word-spacing:44.675840pt;}
.ws14d{word-spacing:47.860864pt;}
.ws107{word-spacing:48.790720pt;}
.wscd{word-spacing:49.426656pt;}
.ws1b1{word-spacing:53.643072pt;}
.ws17c{word-spacing:54.246944pt;}
.ws197{word-spacing:54.268320pt;}
.ws17b{word-spacing:54.391232pt;}
.wsfe{word-spacing:54.546208pt;}
.ws120{word-spacing:54.898912pt;}
.ws7f{word-spacing:55.187488pt;}
.ws11d{word-spacing:56.165440pt;}
.ws82{word-spacing:56.288352pt;}
.wsd5{word-spacing:56.496768pt;}
.wsd3{word-spacing:56.528832pt;}
.wsd4{word-spacing:56.534176pt;}
.ws14a{word-spacing:59.377184pt;}
.wsc4{word-spacing:59.697824pt;}
.ws236{word-spacing:60.729216pt;}
.ws1c0{word-spacing:61.119328pt;}
.ws145{word-spacing:62.262944pt;}
.ws119{word-spacing:63.235552pt;}
.ws132{word-spacing:65.469344pt;}
.ws11f{word-spacing:67.024448pt;}
.ws1bb{word-spacing:67.083232pt;}
.ws84{word-spacing:72.192096pt;}
.ws131{word-spacing:72.507392pt;}
.ws1bf{word-spacing:72.801312pt;}
.ws83{word-spacing:80.811968pt;}
.ws237{word-spacing:85.343680pt;}
.ws118{word-spacing:86.562112pt;}
.ws88{word-spacing:110.583392pt;}
.ws14f{word-spacing:115.740352pt;}
.ws1b3{word-spacing:119.550624pt;}
.ws85{word-spacing:139.077600pt;}
.ws23b{word-spacing:166.508352pt;}
.ws245{word-spacing:166.529728pt;}
.ws23f{word-spacing:166.556448pt;}
.ws239{word-spacing:166.577824pt;}
.ws23e{word-spacing:166.609888pt;}
.ws37{word-spacing:174.390752pt;}
.ws1c1{word-spacing:179.692000pt;}
._d{margin-left:-186.879680pt;}
._e{margin-left:-175.363360pt;}
._c{margin-left:-174.401440pt;}
._42{margin-left:-166.542720pt;}
._1f{margin-left:-56.641056pt;}
._23{margin-left:-34.268032pt;}
._a{margin-left:-14.008192pt;}
._9{margin-left:-11.262112pt;}
._8{margin-left:-9.921845pt;}
._0{margin-left:-4.451524pt;}
._1c{margin-left:-3.521696pt;}
._2{margin-left:-2.176000pt;}
._1{margin-left:-1.152000pt;}
._3{width:0.981333pt;}
._1e{width:1.918496pt;}
._b{width:2.987296pt;}
._2a{width:4.098848pt;}
._4{width:5.071456pt;}
._5{width:6.101429pt;}
._6{width:8.564128pt;}
._27{width:14.017312pt;}
._16{width:15.999936pt;}
._32{width:20.301856pt;}
._30{width:21.376000pt;}
._28{width:23.615136pt;}
._11{width:24.539648pt;}
._29{width:26.816192pt;}
._17{width:27.842240pt;}
._18{width:30.402016pt;}
._1a{width:31.679232pt;}
._15{width:36.798784pt;}
._2b{width:37.760704pt;}
._1b{width:38.722624pt;}
._2d{width:39.935712pt;}
._2e{width:41.859552pt;}
._13{width:43.200896pt;}
._31{width:44.739968pt;}
._1d{width:46.081312pt;}
._2f{width:48.256320pt;}
._26{width:49.218240pt;}
._2c{width:50.880224pt;}
._24{width:51.864256pt;}
._14{width:53.760640pt;}
._19{width:56.641056pt;}
._3e{width:66.918400pt;}
._37{width:74.560000pt;}
._33{width:85.120000pt;}
._36{width:96.960000pt;}
._3f{width:102.054400pt;}
._40{width:120.582400pt;}
._25{width:135.363520pt;}
._34{width:141.760000pt;}
._22{width:144.961344pt;}
._3c{width:149.120000pt;}
._20{width:151.999392pt;}
._12{width:154.879808pt;}
._f{width:158.401504pt;}
._3a{width:160.960000pt;}
._10{width:162.243840pt;}
._21{width:165.118912pt;}
._41{width:166.722112pt;}
._35{width:172.160000pt;}
._7{width:174.401440pt;}
._3b{width:202.560000pt;}
._38{width:204.800000pt;}
._39{width:205.760000pt;}
._3d{width:225.600000pt;}
.fsa{font-size:32.000000pt;}
.fs7{font-size:42.560000pt;}
.fs6{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs8{font-size:53.440000pt;}
.fs0{font-size:60.155733pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:80.000000pt;}
.fs5{font-size:128.000000pt;}
.fs4{font-size:144.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:49.135067pt;}
.y26{bottom:49.566667pt;}
.y279{bottom:79.809301pt;}
.y226{bottom:79.809461pt;}
.y19c{bottom:79.886667pt;}
.y58{bottom:80.126667pt;}
.y1f6{bottom:83.089317pt;}
.y1b7{bottom:83.169477pt;}
.y86{bottom:83.169637pt;}
.y1b3{bottom:83.247555pt;}
.y107{bottom:83.249637pt;}
.y16{bottom:84.911600pt;}
.y24a{bottom:85.646523pt;}
.y321{bottom:86.207571pt;}
.yd6{bottom:88.128811pt;}
.y128{bottom:89.805811pt;}
.y340{bottom:92.206667pt;}
.y2bd{bottom:92.207179pt;}
.y176{bottom:92.367843pt;}
.y2fa{bottom:94.766667pt;}
.y29d{bottom:95.088363pt;}
.y19b{bottom:95.166667pt;}
.y278{bottom:95.169293pt;}
.y225{bottom:95.169453pt;}
.y1ee{bottom:95.249027pt;}
.y57{bottom:95.486667pt;}
.y1c9{bottom:96.847605pt;}
.y147{bottom:96.926667pt;}
.y15{bottom:97.039600pt;}
.y1b6{bottom:98.449309pt;}
.y85{bottom:98.449469pt;}
.y1b2{bottom:98.527387pt;}
.y106{bottom:98.529469pt;}
.y249{bottom:101.086675pt;}
.y320{bottom:101.487403pt;}
.y2f4{bottom:103.326667pt;}
.yd5{bottom:103.408643pt;}
.y2f9{bottom:103.966667pt;}
.y127{bottom:105.165803pt;}
.y2bc{bottom:107.567171pt;}
.y175{bottom:107.647675pt;}
.y14{bottom:109.167600pt;}
.y19a{bottom:110.446667pt;}
.y33f{bottom:110.446691pt;}
.y277{bottom:110.449125pt;}
.y29c{bottom:110.528515pt;}
.y1ed{bottom:110.528859pt;}
.y224{bottom:110.529445pt;}
.y56{bottom:110.846667pt;}
.y2f6{bottom:111.966667pt;}
.y1c8{bottom:112.207597pt;}
.y1f5{bottom:113.809301pt;}
.y1b1{bottom:113.887379pt;}
.y105{bottom:113.889461pt;}
.y84{bottom:113.889621pt;}
.y146{bottom:115.326667pt;}
.y248{bottom:116.446667pt;}
.y2f5{bottom:116.526667pt;}
.y31f{bottom:116.847395pt;}
.yd4{bottom:118.768635pt;}
.y126{bottom:120.525795pt;}
.y13{bottom:121.295600pt;}
.y2bb{bottom:122.927163pt;}
.y174{bottom:123.007667pt;}
.y199{bottom:125.806667pt;}
.y276{bottom:125.809117pt;}
.y33e{bottom:125.886843pt;}
.y29b{bottom:125.888507pt;}
.y1ec{bottom:125.888851pt;}
.y223{bottom:125.889437pt;}
.y55{bottom:126.126667pt;}
.y1c7{bottom:127.487429pt;}
.y2f3{bottom:129.006667pt;}
.y2f8{bottom:129.166667pt;}
.y1f4{bottom:129.169293pt;}
.y1b0{bottom:129.247371pt;}
.y104{bottom:129.249453pt;}
.y83{bottom:129.249613pt;}
.y247{bottom:131.806667pt;}
.y31e{bottom:132.207387pt;}
.y12{bottom:133.423600pt;}
.y145{bottom:133.726667pt;}
.yd3{bottom:134.128627pt;}
.y2{bottom:135.530400pt;}
.y125{bottom:136.766211pt;}
.y2ba{bottom:138.287155pt;}
.y2f7{bottom:138.366667pt;}
.y173{bottom:138.447819pt;}
.y198{bottom:141.166667pt;}
.y275{bottom:141.169109pt;}
.y33d{bottom:141.246835pt;}
.y29a{bottom:141.248499pt;}
.y1eb{bottom:141.248843pt;}
.y222{bottom:141.249429pt;}
.y54{bottom:141.486667pt;}
.y1c6{bottom:142.847421pt;}
.y1af{bottom:144.527203pt;}
.y103{bottom:144.529285pt;}
.y82{bottom:144.529445pt;}
.y31d{bottom:147.487219pt;}
.y246{bottom:148.046667pt;}
.yd2{bottom:149.408459pt;}
.y124{bottom:152.046043pt;}
.y2b9{bottom:153.566987pt;}
.y1{bottom:153.577200pt;}
.y172{bottom:153.727651pt;}
.y144{bottom:155.326523pt;}
.y299{bottom:156.448171pt;}
.y1ea{bottom:156.448515pt;}
.y33c{bottom:156.526667pt;}
.y197{bottom:156.528507pt;}
.y274{bottom:156.529101pt;}
.y221{bottom:156.529261pt;}
.y53{bottom:156.846667pt;}
.y1c5{bottom:158.207413pt;}
.y1ae{bottom:159.887195pt;}
.y102{bottom:159.889277pt;}
.y81{bottom:159.889437pt;}
.y31c{bottom:162.847211pt;}
.y245{bottom:163.326667pt;}
.y2f2{bottom:164.206667pt;}
.yd1{bottom:164.768451pt;}
.y123{bottom:167.406035pt;}
.y2ee{bottom:168.126667pt;}
.y2b8{bottom:168.926979pt;}
.y171{bottom:169.087643pt;}
.y143{bottom:170.766675pt;}
.y298{bottom:171.808163pt;}
.y33b{bottom:171.886667pt;}
.y196{bottom:171.888499pt;}
.y1e9{bottom:171.888667pt;}
.y273{bottom:171.889093pt;}
.y220{bottom:171.889253pt;}
.y52{bottom:172.046667pt;}
.y2f1{bottom:173.406667pt;}
.y1c4{bottom:173.487245pt;}
.y1f3{bottom:175.169109pt;}
.y1ad{bottom:175.247187pt;}
.y101{bottom:175.249269pt;}
.y80{bottom:175.249429pt;}
.y31b{bottom:178.207203pt;}
.y244{bottom:178.686667pt;}
.yd0{bottom:180.128443pt;}
.y2ef{bottom:181.406667pt;}
.y122{bottom:183.646451pt;}
.y2b7{bottom:184.286971pt;}
.y170{bottom:184.447635pt;}
.y25{bottom:185.515067pt;}
.y142{bottom:186.126667pt;}
.y51{bottom:187.166667pt;}
.y21f{bottom:187.169085pt;}
.y33a{bottom:187.246667pt;}
.y297{bottom:187.248315pt;}
.y195{bottom:187.248491pt;}
.y1e8{bottom:187.248659pt;}
.y272{bottom:187.249085pt;}
.y1c3{bottom:188.847237pt;}
.y7f{bottom:190.449101pt;}
.y1ac{bottom:190.527019pt;}
.y100{bottom:190.529101pt;}
.y31a{bottom:193.487035pt;}
.y2ed{bottom:193.886667pt;}
.y243{bottom:194.046667pt;}
.ycf{bottom:195.408275pt;}
.y24{bottom:197.540933pt;}
.y2f0{bottom:198.606667pt;}
.y121{bottom:198.926283pt;}
.y2b6{bottom:199.566803pt;}
.y16f{bottom:199.727467pt;}
.y141{bottom:200.846667pt;}
.y50{bottom:201.247019pt;}
.y21e{bottom:202.448917pt;}
.y339{bottom:202.526667pt;}
.y296{bottom:202.528147pt;}
.y194{bottom:202.528323pt;}
.y1e7{bottom:202.528491pt;}
.y271{bottom:202.528917pt;}
.y1c2{bottom:204.207229pt;}
.y1ab{bottom:205.887011pt;}
.yff{bottom:205.889093pt;}
.y7e{bottom:205.889253pt;}
.y23{bottom:208.740933pt;}
.y319{bottom:208.847027pt;}
.y242{bottom:209.326667pt;}
.y140{bottom:210.686667pt;}
.yce{bottom:210.768267pt;}
.y120{bottom:214.286275pt;}
.y2b5{bottom:214.926795pt;}
.y16e{bottom:215.087459pt;}
.y4f{bottom:216.607011pt;}
.y338{bottom:217.886675pt;}
.y295{bottom:217.888139pt;}
.y193{bottom:217.888315pt;}
.y1e6{bottom:217.888483pt;}
.y270{bottom:217.888909pt;}
.y21d{bottom:217.889069pt;}
.y1c1{bottom:219.487061pt;}
.y22{bottom:220.740933pt;}
.y1aa{bottom:221.166843pt;}
.yfe{bottom:221.249085pt;}
.y7d{bottom:221.249245pt;}
.y318{bottom:224.207019pt;}
.y2eb{bottom:224.366667pt;}
.y241{bottom:224.686667pt;}
.ycd{bottom:226.128259pt;}
.y2b4{bottom:230.286787pt;}
.y16d{bottom:230.367291pt;}
.y11f{bottom:230.526691pt;}
.y4e{bottom:231.967003pt;}
.y21{bottom:232.740933pt;}
.y337{bottom:233.246667pt;}
.y294{bottom:233.248131pt;}
.y192{bottom:233.248307pt;}
.y1e5{bottom:233.248475pt;}
.y26f{bottom:233.248901pt;}
.y21c{bottom:233.249061pt;}
.y2ea{bottom:234.046667pt;}
.y1c0{bottom:234.847053pt;}
.y1a9{bottom:236.446675pt;}
.y1f2{bottom:236.448757pt;}
.yfd{bottom:236.528917pt;}
.y7c{bottom:236.529077pt;}
.y317{bottom:239.486851pt;}
.y240{bottom:240.046667pt;}
.ycc{bottom:241.408091pt;}
.y2ec{bottom:242.446667pt;}
.y20{bottom:244.740933pt;}
.y11{bottom:245.249200pt;}
.y2b3{bottom:245.566619pt;}
.y16c{bottom:245.727283pt;}
.y11e{bottom:245.886683pt;}
.y4d{bottom:247.246835pt;}
.y293{bottom:248.447803pt;}
.y336{bottom:248.526675pt;}
.y191{bottom:248.528139pt;}
.y1e4{bottom:248.528307pt;}
.y26e{bottom:248.528733pt;}
.y21b{bottom:248.528893pt;}
.y1bf{bottom:250.207045pt;}
.y1a8{bottom:251.806667pt;}
.y1f1{bottom:251.808749pt;}
.yfc{bottom:251.888909pt;}
.y7b{bottom:251.889069pt;}
.y316{bottom:254.846843pt;}
.y23f{bottom:256.286667pt;}
.ycb{bottom:256.768083pt;}
.y2e9{bottom:259.806667pt;}
.y2b2{bottom:260.926611pt;}
.y16b{bottom:261.087275pt;}
.y11d{bottom:261.166515pt;}
.y4c{bottom:262.526667pt;}
.y292{bottom:263.807795pt;}
.y335{bottom:263.886667pt;}
.y190{bottom:263.888131pt;}
.y1e3{bottom:263.888299pt;}
.y26d{bottom:263.888725pt;}
.y21a{bottom:263.888885pt;}
.y10{bottom:264.449200pt;}
.y1be{bottom:265.486877pt;}
.y1a7{bottom:267.166667pt;}
.yfb{bottom:267.248901pt;}
.y7a{bottom:267.249061pt;}
.y315{bottom:270.206835pt;}
.y23e{bottom:271.566667pt;}
.yca{bottom:272.128075pt;}
.y2b1{bottom:276.206443pt;}
.y16a{bottom:276.367107pt;}
.y11c{bottom:277.406931pt;}
.y4b{bottom:277.646667pt;}
.y334{bottom:279.246835pt;}
.y291{bottom:279.247947pt;}
.y18f{bottom:279.248123pt;}
.y1e2{bottom:279.248291pt;}
.y26c{bottom:279.248717pt;}
.y219{bottom:279.248877pt;}
.y1f{bottom:280.751600pt;}
.y1bd{bottom:280.846869pt;}
.ya{bottom:280.864800pt;}
.y1a6{bottom:282.446667pt;}
.y1b5{bottom:282.448573pt;}
.yfa{bottom:282.528733pt;}
.y79{bottom:282.528893pt;}
.yf{bottom:283.649067pt;}
.y314{bottom:285.486667pt;}
.y2e6{bottom:286.286667pt;}
.y23d{bottom:286.926667pt;}
.yc9{bottom:287.407907pt;}
.y2e8{bottom:287.486667pt;}
.y2b0{bottom:291.566435pt;}
.y4a{bottom:291.727019pt;}
.y169{bottom:291.727099pt;}
.y1e{bottom:292.751600pt;}
.y11b{bottom:292.766923pt;}
.y333{bottom:294.526851pt;}
.y290{bottom:294.527779pt;}
.y18e{bottom:294.527955pt;}
.y1e1{bottom:294.528123pt;}
.y26b{bottom:294.528549pt;}
.y218{bottom:294.528709pt;}
.y2e5{bottom:295.486667pt;}
.y1bc{bottom:296.206861pt;}
.y9{bottom:296.864800pt;}
.y1a5{bottom:297.806667pt;}
.yf9{bottom:297.888725pt;}
.y78{bottom:297.888885pt;}
.y2e0{bottom:299.486667pt;}
.y23c{bottom:302.286667pt;}
.yc8{bottom:302.767899pt;}
.y1d{bottom:304.751600pt;}
.y2af{bottom:306.926427pt;}
.y49{bottom:307.087011pt;}
.y168{bottom:307.087091pt;}
.y11a{bottom:308.126915pt;}
.y332{bottom:309.886843pt;}
.y28f{bottom:309.887771pt;}
.y18d{bottom:309.887947pt;}
.y1e0{bottom:309.888115pt;}
.y26a{bottom:309.888541pt;}
.y217{bottom:309.888701pt;}
.y1bb{bottom:311.486693pt;}
.y2e1{bottom:312.686667pt;}
.y1a4{bottom:313.166667pt;}
.y77{bottom:313.168717pt;}
.yf8{bottom:313.248717pt;}
.y8{bottom:313.641733pt;}
.y1c{bottom:316.751600pt;}
.y313{bottom:317.006667pt;}
.y23b{bottom:317.566667pt;}
.yc7{bottom:318.127891pt;}
.y2e4{bottom:320.686667pt;}
.y2ae{bottom:322.206259pt;}
.y167{bottom:322.366923pt;}
.y48{bottom:322.447003pt;}
.y119{bottom:324.287171pt;}
.y2df{bottom:325.166667pt;}
.y331{bottom:325.246835pt;}
.y28e{bottom:325.247763pt;}
.y18c{bottom:325.247939pt;}
.y1df{bottom:325.248107pt;}
.y269{bottom:325.248533pt;}
.y216{bottom:325.248693pt;}
.y1ba{bottom:326.846685pt;}
.y1a3{bottom:328.446667pt;}
.yf7{bottom:328.528549pt;}
.y76{bottom:328.528709pt;}
.y1b{bottom:328.751600pt;}
.y2e3{bottom:329.886667pt;}
.yc6{bottom:333.407723pt;}
.y23a{bottom:333.806667pt;}
.y2ad{bottom:337.566251pt;}
.y47{bottom:337.726835pt;}
.y166{bottom:337.726915pt;}
.y2e7{bottom:337.886667pt;}
.y2e2{bottom:339.086667pt;}
.y118{bottom:339.647163pt;}
.y330{bottom:340.526667pt;}
.y28d{bottom:340.527595pt;}
.y18b{bottom:340.527771pt;}
.y1de{bottom:340.527939pt;}
.y268{bottom:340.528365pt;}
.y215{bottom:340.528525pt;}
.y1a{bottom:340.751600pt;}
.y1b9{bottom:342.206677pt;}
.y1a2{bottom:343.806667pt;}
.yf6{bottom:343.888541pt;}
.y75{bottom:343.888701pt;}
.y311{bottom:345.246179pt;}
.y312{bottom:345.246667pt;}
.yc5{bottom:348.767715pt;}
.y239{bottom:350.046667pt;}
.y2ac{bottom:352.926243pt;}
.y46{bottom:353.006667pt;}
.y165{bottom:353.086907pt;}
.y117{bottom:355.007155pt;}
.y32f{bottom:355.886835pt;}
.y28c{bottom:355.887587pt;}
.y18a{bottom:355.887763pt;}
.y1dd{bottom:355.887931pt;}
.y267{bottom:355.888357pt;}
.y214{bottom:355.888517pt;}
.y1a1{bottom:359.086667pt;}
.yf5{bottom:359.168373pt;}
.y74{bottom:359.168533pt;}
.yc4{bottom:364.047547pt;}
.y2cb{bottom:364.926667pt;}
.y238{bottom:365.406667pt;}
.y19{bottom:365.423600pt;}
.y2d0{bottom:366.926667pt;}
.y45{bottom:368.046667pt;}
.y2ab{bottom:368.206075pt;}
.y164{bottom:368.366739pt;}
.y116{bottom:370.286987pt;}
.y28b{bottom:371.087259pt;}
.y32e{bottom:371.166667pt;}
.y189{bottom:371.167595pt;}
.y1dc{bottom:371.167763pt;}
.y266{bottom:371.168189pt;}
.y213{bottom:371.168349pt;}
.y2d6{bottom:371.806667pt;}
.y310{bottom:373.566667pt;}
.y1f0{bottom:374.448205pt;}
.y1a0{bottom:374.448365pt;}
.yf4{bottom:374.528365pt;}
.y73{bottom:374.528525pt;}
.y2de{bottom:374.926667pt;}
.y18{bottom:377.423600pt;}
.yc3{bottom:379.407539pt;}
.y2d8{bottom:379.806667pt;}
.y2aa{bottom:380.526667pt;}
.y237{bottom:380.686667pt;}
.y2d5{bottom:381.486667pt;}
.y44{bottom:382.207011pt;}
.y163{bottom:383.726731pt;}
.y2dd{bottom:384.686667pt;}
.y115{bottom:385.646979pt;}
.y32d{bottom:386.526675pt;}
.y28a{bottom:386.527411pt;}
.y188{bottom:386.527587pt;}
.y1db{bottom:386.527755pt;}
.y265{bottom:386.528181pt;}
.y212{bottom:386.528341pt;}
.y2d2{bottom:389.486667pt;}
.y1ef{bottom:389.808197pt;}
.yf3{bottom:389.888357pt;}
.y72{bottom:389.888517pt;}
.y2ca{bottom:390.126667pt;}
.y2d9{bottom:391.246667pt;}
.y2cf{bottom:392.686667pt;}
.y2dc{bottom:394.366667pt;}
.yc2{bottom:394.767531pt;}
.y236{bottom:396.046667pt;}
.y43{bottom:397.567003pt;}
.y162{bottom:399.086723pt;}
.y2d1{bottom:399.246667pt;}
.y2c9{bottom:399.326667pt;}
.y114{bottom:401.006971pt;}
.y32c{bottom:401.886667pt;}
.y289{bottom:401.887403pt;}
.y187{bottom:401.887579pt;}
.y1da{bottom:401.887747pt;}
.y264{bottom:401.888173pt;}
.y211{bottom:401.888333pt;}
.y2ce{bottom:402.366667pt;}
.y30e{bottom:402.446179pt;}
.y30f{bottom:402.446667pt;}
.y2db{bottom:404.126667pt;}
.yf2{bottom:405.168189pt;}
.y71{bottom:405.168349pt;}
.y2d4{bottom:407.246667pt;}
.y2d7{bottom:409.006667pt;}
.yc1{bottom:410.047363pt;}
.y235{bottom:411.406667pt;}
.y2cd{bottom:412.126667pt;}
.y42{bottom:412.846835pt;}
.y2da{bottom:413.806667pt;}
.y161{bottom:414.366555pt;}
.y113{bottom:416.286803pt;}
.y2d3{bottom:417.006667pt;}
.y32b{bottom:417.166667pt;}
.y288{bottom:417.167235pt;}
.y186{bottom:417.167411pt;}
.y1d9{bottom:417.167579pt;}
.y263{bottom:417.168005pt;}
.y210{bottom:417.168165pt;}
.yf1{bottom:420.528181pt;}
.y70{bottom:420.528341pt;}
.y2cc{bottom:421.806667pt;}
.y2c8{bottom:424.526667pt;}
.y17{bottom:424.996933pt;}
.yc0{bottom:425.407355pt;}
.y234{bottom:426.686667pt;}
.y41{bottom:428.126667pt;}
.y160{bottom:429.726547pt;}
.y30d{bottom:430.766667pt;}
.y112{bottom:431.646795pt;}
.y1d8{bottom:432.447411pt;}
.y32a{bottom:432.526843pt;}
.y287{bottom:432.527227pt;}
.y185{bottom:432.527403pt;}
.y262{bottom:432.527997pt;}
.y20f{bottom:432.528157pt;}
.y2c7{bottom:435.166667pt;}
.y6f{bottom:435.808173pt;}
.yf0{bottom:435.888173pt;}
.y19f{bottom:435.888333pt;}
.ybf{bottom:440.767347pt;}
.y233{bottom:442.926667pt;}
.y40{bottom:443.166667pt;}
.y15f{bottom:445.086539pt;}
.y2c6{bottom:447.806691pt;}
.y329{bottom:447.886835pt;}
.y111{bottom:447.887211pt;}
.y286{bottom:447.887219pt;}
.y184{bottom:447.887395pt;}
.y1d7{bottom:447.887563pt;}
.y261{bottom:447.887989pt;}
.y20e{bottom:447.888149pt;}
.y6e{bottom:451.088005pt;}
.yef{bottom:451.168005pt;}
.y19e{bottom:451.168165pt;}
.ybe{bottom:456.047179pt;}
.y3f{bottom:457.327187pt;}
.y232{bottom:458.286667pt;}
.y30c{bottom:459.646667pt;}
.y15e{bottom:460.366371pt;}
.yd{bottom:461.474000pt;}
.y2c5{bottom:463.086523pt;}
.y328{bottom:463.166683pt;}
.y110{bottom:463.167043pt;}
.y285{bottom:463.167051pt;}
.y183{bottom:463.167227pt;}
.y1d6{bottom:463.167395pt;}
.y260{bottom:463.167821pt;}
.y20d{bottom:463.167981pt;}
.yee{bottom:466.527997pt;}
.y6d{bottom:466.528157pt;}
.ybd{bottom:471.407171pt;}
.y3e{bottom:472.687179pt;}
.y231{bottom:473.566667pt;}
.y13f{bottom:473.804411pt;}
.ya0{bottom:475.487947pt;}
.y15d{bottom:475.726363pt;}
.y2c4{bottom:478.446515pt;}
.yc{bottom:478.488667pt;}
.y327{bottom:478.526675pt;}
.y10f{bottom:478.527035pt;}
.y284{bottom:478.527043pt;}
.y182{bottom:478.527219pt;}
.y1d5{bottom:478.527387pt;}
.y25f{bottom:478.527813pt;}
.y20c{bottom:478.527973pt;}
.yed{bottom:481.887989pt;}
.y6c{bottom:481.888149pt;}
.ybc{bottom:486.767163pt;}
.y30b{bottom:487.966667pt;}
.y3d{bottom:487.967011pt;}
.y309{bottom:487.967419pt;}
.y230{bottom:488.926667pt;}
.y13e{bottom:489.084243pt;}
.y9f{bottom:490.767779pt;}
.y15c{bottom:491.086355pt;}
.y2c3{bottom:493.886667pt;}
.y10e{bottom:493.887027pt;}
.y283{bottom:493.887035pt;}
.y181{bottom:493.887211pt;}
.y1d4{bottom:493.887379pt;}
.y25e{bottom:493.887805pt;}
.y20b{bottom:493.887965pt;}
.yec{bottom:497.167821pt;}
.y6b{bottom:497.167981pt;}
.ybb{bottom:502.046995pt;}
.y1b8{bottom:503.246667pt;}
.y3c{bottom:503.327003pt;}
.y22f{bottom:504.286667pt;}
.y13d{bottom:504.444235pt;}
.y9e{bottom:506.127771pt;}
.y15b{bottom:506.366187pt;}
.y10d{bottom:509.166859pt;}
.y282{bottom:509.166867pt;}
.y180{bottom:509.167043pt;}
.y1d3{bottom:509.167211pt;}
.y25d{bottom:509.167637pt;}
.y20a{bottom:509.167797pt;}
.y2c2{bottom:512.367493pt;}
.yeb{bottom:512.527813pt;}
.y6a{bottom:512.527973pt;}
.y30a{bottom:516.206667pt;}
.y308{bottom:516.207043pt;}
.yba{bottom:517.406987pt;}
.y3b{bottom:518.686995pt;}
.y22e{bottom:519.566667pt;}
.y13c{bottom:520.684651pt;}
.y9d{bottom:521.487763pt;}
.y15a{bottom:521.806339pt;}
.y10c{bottom:524.526851pt;}
.y281{bottom:524.526859pt;}
.y17f{bottom:524.527035pt;}
.y1d2{bottom:524.527203pt;}
.y25c{bottom:524.527629pt;}
.y209{bottom:524.527789pt;}
.y69{bottom:527.807805pt;}
.yea{bottom:527.887805pt;}
.y19d{bottom:527.887965pt;}
.yb9{bottom:532.766979pt;}
.y3a{bottom:533.886667pt;}
.y22d{bottom:534.926667pt;}
.y9c{bottom:536.687435pt;}
.y13b{bottom:536.925067pt;}
.y159{bottom:537.166331pt;}
.y10b{bottom:539.886843pt;}
.y280{bottom:539.886851pt;}
.y17e{bottom:539.887027pt;}
.y1d1{bottom:539.887195pt;}
.y25b{bottom:539.887621pt;}
.y208{bottom:539.887781pt;}
.ye9{bottom:543.167637pt;}
.y68{bottom:543.167797pt;}
.y307{bottom:544.446667pt;}
.yb8{bottom:548.046811pt;}
.y39{bottom:549.006667pt;}
.y22c{bottom:551.166667pt;}
.y9b{bottom:552.127587pt;}
.y13a{bottom:552.285059pt;}
.y158{bottom:552.526323pt;}
.y10a{bottom:555.086515pt;}
.y1d0{bottom:555.086867pt;}
.y25a{bottom:555.087293pt;}
.y27f{bottom:555.166683pt;}
.y17d{bottom:555.166859pt;}
.y207{bottom:555.167613pt;}
.ye8{bottom:558.527629pt;}
.y67{bottom:558.527789pt;}
.y38{bottom:563.086877pt;}
.yb7{bottom:563.406803pt;}
.y22b{bottom:566.526667pt;}
.y9a{bottom:567.487579pt;}
.y157{bottom:567.806155pt;}
.y139{bottom:568.445315pt;}
.y27e{bottom:570.446515pt;}
.y1cf{bottom:570.446859pt;}
.y259{bottom:570.447285pt;}
.y206{bottom:570.447445pt;}
.y109{bottom:570.526667pt;}
.y326{bottom:570.526675pt;}
.y17c{bottom:570.526851pt;}
.y306{bottom:573.406667pt;}
.ye7{bottom:573.887621pt;}
.y66{bottom:573.887781pt;}
.y37{bottom:578.446869pt;}
.yb6{bottom:578.766795pt;}
.y2a9{bottom:582.526851pt;}
.y99{bottom:582.687251pt;}
.y22a{bottom:582.766667pt;}
.y156{bottom:583.166147pt;}
.y138{bottom:583.805307pt;}
.y1ce{bottom:585.806851pt;}
.y205{bottom:585.807437pt;}
.y27d{bottom:585.886667pt;}
.y325{bottom:585.886835pt;}
.y17b{bottom:585.886843pt;}
.y258{bottom:585.887437pt;}
.y108{bottom:589.007133pt;}
.y89{bottom:589.087453pt;}
.ye6{bottom:589.167453pt;}
.y65{bottom:589.167613pt;}
.y36{bottom:593.806861pt;}
.yb5{bottom:594.046627pt;}
.y2a8{bottom:597.886843pt;}
.y98{bottom:598.127403pt;}
.y155{bottom:598.445979pt;}
.y229{bottom:599.006533pt;}
.y137{bottom:600.045723pt;}
.y17a{bottom:601.086515pt;}
.y1cd{bottom:601.086683pt;}
.y324{bottom:601.166667pt;}
.y257{bottom:601.167269pt;}
.y204{bottom:601.167429pt;}
.y305{bottom:601.646667pt;}
.y304{bottom:601.647043pt;}
.y27c{bottom:604.367285pt;}
.ye5{bottom:604.527445pt;}
.y64{bottom:604.527605pt;}
.y35{bottom:609.006533pt;}
.yb4{bottom:609.406619pt;}
.y2a7{bottom:613.166675pt;}
.y97{bottom:613.487395pt;}
.y154{bottom:613.805971pt;}
.y228{bottom:615.166667pt;}
.y136{bottom:616.286139pt;}
.y1cc{bottom:616.446675pt;}
.y179{bottom:616.526667pt;}
.y256{bottom:616.527261pt;}
.y203{bottom:616.527421pt;}
.y323{bottom:619.727277pt;}
.y63{bottom:619.807437pt;}
.ye4{bottom:619.887437pt;}
.y88{bottom:619.887597pt;}
.y34{bottom:624.126667pt;}
.yb3{bottom:624.766611pt;}
.y2a6{bottom:628.526667pt;}
.y96{bottom:628.767227pt;}
.y153{bottom:629.165963pt;}
.y303{bottom:629.886667pt;}
.y135{bottom:631.646131pt;}
.y1cb{bottom:631.806667pt;}
.y255{bottom:631.887253pt;}
.y202{bottom:631.887413pt;}
.y227{bottom:634.526667pt;}
.y178{bottom:635.007109pt;}
.y2c1{bottom:635.087109pt;}
.y322{bottom:635.087269pt;}
.ye3{bottom:635.167269pt;}
.y62{bottom:635.167429pt;}
.y33{bottom:638.287171pt;}
.ye{bottom:638.705733pt;}
.yb{bottom:638.751867pt;}
.yb2{bottom:640.046443pt;}
.y95{bottom:644.127219pt;}
.y152{bottom:644.445795pt;}
.y2a5{bottom:647.006523pt;}
.y254{bottom:647.167085pt;}
.y201{bottom:647.167245pt;}
.y134{bottom:647.806387pt;}
.y1ca{bottom:650.366941pt;}
.y2c0{bottom:650.447101pt;}
.ye2{bottom:650.527261pt;}
.y61{bottom:650.527421pt;}
.y32{bottom:653.567003pt;}
.yb1{bottom:656.367019pt;}
.y302{bottom:658.846533pt;}
.y301{bottom:658.846909pt;}
.y94{bottom:659.487211pt;}
.y151{bottom:659.805787pt;}
.y2a4{bottom:662.446675pt;}
.y253{bottom:662.527077pt;}
.y200{bottom:662.527237pt;}
.y133{bottom:663.166379pt;}
.y2bf{bottom:665.726933pt;}
.ye1{bottom:665.807093pt;}
.y60{bottom:665.807253pt;}
.y31{bottom:668.926995pt;}
.yb0{bottom:673.887323pt;}
.y93{bottom:674.767043pt;}
.y150{bottom:675.165779pt;}
.y2a3{bottom:677.806667pt;}
.y252{bottom:677.806909pt;}
.y1ff{bottom:677.807069pt;}
.y132{bottom:679.406795pt;}
.y27b{bottom:681.087085pt;}
.ye0{bottom:681.167085pt;}
.y5f{bottom:681.167245pt;}
.y30{bottom:684.126667pt;}
.y300{bottom:687.086533pt;}
.y92{bottom:690.127035pt;}
.y14f{bottom:690.365451pt;}
.yaf{bottom:690.527203pt;}
.ya7{bottom:691.006533pt;}
.y2a2{bottom:693.166667pt;}
.y251{bottom:693.166901pt;}
.y1fe{bottom:693.167061pt;}
.y131{bottom:694.766787pt;}
.y27a{bottom:696.447077pt;}
.ydf{bottom:696.527077pt;}
.y5e{bottom:696.527237pt;}
.y2f{bottom:699.246533pt;}
.y91{bottom:705.406867pt;}
.y14e{bottom:705.805603pt;}
.yae{bottom:705.807035pt;}
.y5{bottom:706.084267pt;}
.y2a1{bottom:708.526667pt;}
.y250{bottom:708.526893pt;}
.y1fd{bottom:708.527053pt;}
.ya6{bottom:709.406533pt;}
.y130{bottom:710.927043pt;}
.y5d{bottom:711.726909pt;}
.yde{bottom:711.806909pt;}
.y177{bottom:711.807069pt;}
.y2e{bottom:713.407003pt;}
.y2ff{bottom:716.046667pt;}
.y90{bottom:720.766859pt;}
.y14d{bottom:721.165595pt;}
.yad{bottom:721.167027pt;}
.y4{bottom:721.417600pt;}
.y1fc{bottom:723.726725pt;}
.y2a0{bottom:723.806667pt;}
.y24f{bottom:723.806725pt;}
.y12f{bottom:726.287035pt;}
.y5c{bottom:727.086901pt;}
.ydd{bottom:727.166901pt;}
.y87{bottom:727.167061pt;}
.ya5{bottom:727.806533pt;}
.y2d{bottom:728.686835pt;}
.y8f{bottom:736.126851pt;}
.yac{bottom:736.527019pt;}
.y3{bottom:736.750933pt;}
.y14c{bottom:737.406011pt;}
.y1fb{bottom:739.086717pt;}
.y24e{bottom:739.166717pt;}
.y29f{bottom:739.166859pt;}
.y12e{bottom:741.647027pt;}
.ydc{bottom:742.526893pt;}
.y5b{bottom:742.527053pt;}
.y2c{bottom:743.966667pt;}
.y2fe{bottom:744.286667pt;}
.ya4{bottom:746.206533pt;}
.y8e{bottom:751.406683pt;}
.yab{bottom:751.806851pt;}
.y14b{bottom:753.646427pt;}
.y24d{bottom:754.446549pt;}
.y1fa{bottom:754.446709pt;}
.y29e{bottom:754.526851pt;}
.y12d{bottom:756.926859pt;}
.y1b4{bottom:757.726565pt;}
.y2fd{bottom:757.726725pt;}
.ydb{bottom:757.806725pt;}
.y5a{bottom:757.806885pt;}
.y2b{bottom:759.006533pt;}
.ya3{bottom:764.606533pt;}
.y8d{bottom:766.766675pt;}
.yaa{bottom:767.166843pt;}
.y24c{bottom:769.726381pt;}
.y1f9{bottom:769.726541pt;}
.y14a{bottom:769.806683pt;}
.y12c{bottom:772.206691pt;}
.y2fc{bottom:773.086717pt;}
.yda{bottom:773.166717pt;}
.y2a{bottom:773.166877pt;}
.y8c{bottom:782.126667pt;}
.ya9{bottom:782.526835pt;}
.ya2{bottom:783.006533pt;}
.y1f8{bottom:785.086533pt;}
.y24b{bottom:785.166533pt;}
.y149{bottom:785.166675pt;}
.y12b{bottom:787.566683pt;}
.y2be{bottom:788.446549pt;}
.y2fb{bottom:788.446709pt;}
.yd9{bottom:788.526709pt;}
.y29{bottom:788.526869pt;}
.ya8{bottom:797.806667pt;}
.y8b{bottom:798.126667pt;}
.y148{bottom:800.526667pt;}
.ya1{bottom:801.406533pt;}
.y12a{bottom:802.926675pt;}
.y1f7{bottom:803.646381pt;}
.y28{bottom:803.726541pt;}
.yd8{bottom:803.806541pt;}
.y59{bottom:803.806701pt;}
.y7{bottom:810.464933pt;}
.y129{bottom:818.286667pt;}
.y8a{bottom:819.006533pt;}
.y27{bottom:819.086533pt;}
.yd7{bottom:819.166533pt;}
.h16{height:21.687500pt;}
.h18{height:21.906250pt;}
.h17{height:26.187500pt;}
.he{height:32.000000pt;}
.h1b{height:37.198438pt;}
.hf{height:37.334033pt;}
.hd{height:37.437500pt;}
.h10{height:38.424531pt;}
.h3{height:38.828125pt;}
.h15{height:38.905781pt;}
.h1a{height:40.146250pt;}
.h19{height:40.466250pt;}
.h14{height:42.656250pt;}
.h13{height:43.031250pt;}
.h1c{height:46.593750pt;}
.h12{height:47.908125pt;}
.h11{height:48.247344pt;}
.h6{height:50.130208pt;}
.h4{height:56.156250pt;}
.h2{height:57.990127pt;}
.h5{height:60.000000pt;}
.hc{height:60.156250pt;}
.hb{height:70.195312pt;}
.h8{height:96.000000pt;}
.h7{height:101.664000pt;}
.h9{height:906.666667pt;}
.ha{height:907.086667pt;}
.h0{height:907.089200pt;}
.h1{height:907.333333pt;}
.w0{width:642.518667pt;}
.w2{width:642.520000pt;}
.w1{width:642.666667pt;}
.x2{left:-486.612800pt;}
.x0{left:0.000000pt;}
.x3{left:60.862800pt;}
.x21{left:94.560000pt;}
.x4{left:112.145467pt;}
.x22{left:118.559904pt;}
.x43{left:129.280320pt;}
.x44{left:132.559568pt;}
.x3f{left:135.200416pt;}
.x2c{left:136.400000pt;}
.x2b{left:139.921208pt;}
.x23{left:141.599224pt;}
.x26{left:142.559808pt;}
.x38{left:149.040000pt;}
.x31{left:150.880000pt;}
.x46{left:152.127200pt;}
.x3e{left:159.200000pt;}
.x28{left:165.839608pt;}
.x37{left:171.279800pt;}
.x2e{left:189.119408pt;}
.x2d{left:190.559616pt;}
.x12{left:200.998133pt;}
.x11{left:202.811467pt;}
.x10{left:203.771467pt;}
.xf{left:206.032800pt;}
.x14{left:209.040800pt;}
.x13{left:214.384800pt;}
.x18{left:216.070133pt;}
.x19{left:221.147467pt;}
.x1b{left:222.267467pt;}
.xc{left:226.068667pt;}
.xd{left:228.346000pt;}
.x1e{left:229.296800pt;}
.xa{left:234.181733pt;}
.x2f{left:236.399112pt;}
.xe{left:240.970000pt;}
.x32{left:248.560000pt;}
.x1d{left:258.342133pt;}
.x1f{left:262.800800pt;}
.x39{left:266.320000pt;}
.x5{left:267.992267pt;}
.x40{left:274.000000pt;}
.x9{left:277.772800pt;}
.x1{left:279.559867pt;}
.x6{left:285.697467pt;}
.x29{left:287.040192pt;}
.x1a{left:294.992800pt;}
.x7{left:296.221467pt;}
.x16{left:301.030133pt;}
.x1c{left:302.278133pt;}
.x15{left:304.155467pt;}
.x17{left:309.478133pt;}
.x25{left:327.040000pt;}
.x24{left:328.881040pt;}
.x20{left:333.040000pt;}
.x2a{left:352.880944pt;}
.x33{left:355.200000pt;}
.x3b{left:363.040000pt;}
.x3a{left:367.200000pt;}
.x41{left:395.040000pt;}
.xb{left:412.106400pt;}
.x34{left:416.240000pt;}
.x8{left:457.324133pt;}
.x35{left:458.480000pt;}
.x3c{left:476.160000pt;}
.x3d{left:487.360000pt;}
.x27{left:489.280000pt;}
.x30{left:494.240000pt;}
.x42{left:505.600000pt;}
.x36{left:511.120000pt;}
.x47{left:699.602800pt;}
.x48{left:750.885467pt;}
.x49{left:906.732267pt;}
.x4d{left:916.512800pt;}
.x45{left:918.299867pt;}
.x4a{left:924.437467pt;}
.x4b{left:934.961467pt;}
.x4c{left:1096.064133pt;}
}




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