
    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_39baa63b04bb05c563fb8f06.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_6ea8ea8ad148b961e395a2d3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691000;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_2b3b14ed24812e79b507223b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.009000;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_ff265e895094f3656b376768.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.989000;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_41bef591371201b7b997ff31.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.011000;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_7d3f5d59b6ffac711389acf3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.043000;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_f4b50eab42ec3764d82c7465.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.997000;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_29f0f83acbc4b7659fac7658.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.999758;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_bc4a9a511f4b7eabdd187331.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.988000;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_88d3e9af161aa8981876b4b4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.703000;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_cef0c2b501f05434521fca30.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.218000;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_cac67a44471b7f16de975768.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_eed40c3c9edde5eb8abaa1bc.woff2')format("woff");}.fff{font-family:fff;line-height:1.000488;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_adcb994aae8b93b8eb120aa0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.675781;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_49062578855cce3f70998e78.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000488;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_0f7924de14667653566461ec.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.008301;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_353ee25ae85fc4f0fc1852c6.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.995605;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_465f72bd808c4636d3b0f62a.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.689453;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_70fc6009996874d3381b34a0.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.752441;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_6f1f655edd25f5d054b327b1.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_eed40c3c9edde5eb8abaa1bc.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.000488;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_adcb994aae8b93b8eb120aa0.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.675781;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_49062578855cce3f70998e78.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.000488;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_0f7924de14667653566461ec.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.008301;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_353ee25ae85fc4f0fc1852c6.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.995605;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_465f72bd808c4636d3b0f62a.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.689453;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_70fc6009996874d3381b34a0.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.752441;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_6f1f655edd25f5d054b327b1.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_a0d35a6a65e9ec1b6cf28125.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.000488;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_adcb994aae8b93b8eb120aa0.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_24237e42749f82d63b621e75.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_f47d32d41581550a7fe69563.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.008301;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:ff23;src:url('chunks/assets/font_6ecc4b10264f57ae430dc3a9.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.995605;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:ff24;src:url('chunks/assets/font_58b54827321b28d791430032.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.689453;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:ff25;src:url('chunks/assets/font_70fc6009996874d3381b34a0.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.752441;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:ff26;src:url('chunks/assets/font_a0eee139d32d54c209e0dd1c.woff2')format("woff");}.ff26{font-family:ff26;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:ff27;src:url('chunks/assets/font_205f178ad8b73d3acdcc96cc.woff2')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_2da857200570739556e565e1.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.900000;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;}
.m2b{transform:matrix(0.000000,-0.257565,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.257565,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.257565,0.250000,0.000000,0,0);}
.m28{transform:matrix(0.000000,-0.275084,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.275084,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.275084,0.250000,0.000000,0,0);}
.m25{transform:matrix(0.000000,-0.285769,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.285769,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.285769,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,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);}
.mb{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.257562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257562,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.257564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257564,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.257565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257565,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.275084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275084,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.285769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285769,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.285772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285772,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.530000px;}
.v4{vertical-align:-11.142000px;}
.v6{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:8.970000px;}
.va{vertical-align:11.760000px;}
.v1{vertical-align:21.696000px;}
.vb{vertical-align:28.392000px;}
.v8{vertical-align:29.862000px;}
.vc{vertical-align:32.874000px;}
.v7{vertical-align:40.464000px;}
.v5{vertical-align:41.790000px;}
.v3{vertical-align:47.844000px;}
.lsd6{letter-spacing:-2.679601px;}
.lsde{letter-spacing:-2.134424px;}
.lsdf{letter-spacing:-1.807376px;}
.lsd5{letter-spacing:-1.332947px;}
.lsdc{letter-spacing:-1.321966px;}
.ls130{letter-spacing:-1.191584px;}
.ls12f{letter-spacing:-1.125139px;}
.lsdd{letter-spacing:-0.994917px;}
.lsd4{letter-spacing:-0.817632px;}
.ls121{letter-spacing:-0.793584px;}
.lsd1{letter-spacing:-0.787572px;}
.ls11b{letter-spacing:-0.781560px;}
.lsd2{letter-spacing:-0.691380px;}
.lscd{letter-spacing:-0.685368px;}
.ls123{letter-spacing:-0.679356px;}
.lscf{letter-spacing:-0.673344px;}
.lsce{letter-spacing:-0.667332px;}
.lscc{letter-spacing:-0.661320px;}
.lsd0{letter-spacing:-0.649296px;}
.ls11e{letter-spacing:-0.643284px;}
.lsd3{letter-spacing:-0.631260px;}
.ls11c{letter-spacing:-0.619236px;}
.ls11f{letter-spacing:-0.613224px;}
.ls11d{letter-spacing:-0.577152px;}
.ls122{letter-spacing:-0.553104px;}
.ls99{letter-spacing:-0.529056px;}
.lsb3{letter-spacing:-0.523044px;}
.lsa2{letter-spacing:-0.498996px;}
.ls120{letter-spacing:-0.492984px;}
.lsc4{letter-spacing:-0.486972px;}
.lsc1{letter-spacing:-0.480960px;}
.lsca{letter-spacing:-0.462924px;}
.ls115{letter-spacing:-0.456912px;}
.ls114{letter-spacing:-0.453600px;}
.ls9d{letter-spacing:-0.450900px;}
.ls93{letter-spacing:-0.432864px;}
.ls12c{letter-spacing:-0.426852px;}
.ls12e{letter-spacing:-0.425249px;}
.lsb2{letter-spacing:-0.420840px;}
.ls134{letter-spacing:-0.363870px;}
.ls125{letter-spacing:-0.354708px;}
.lsbe{letter-spacing:-0.348696px;}
.ls124{letter-spacing:-0.342684px;}
.ls119{letter-spacing:-0.336672px;}
.lsc9{letter-spacing:-0.324648px;}
.lsc5{letter-spacing:-0.312624px;}
.ls128{letter-spacing:-0.306612px;}
.lsb7{letter-spacing:-0.300600px;}
.ls116{letter-spacing:-0.294588px;}
.lsac{letter-spacing:-0.282564px;}
.ls12d{letter-spacing:-0.276552px;}
.lsdb{letter-spacing:-0.274457px;}
.ls12b{letter-spacing:-0.270540px;}
.lsae{letter-spacing:-0.258516px;}
.lsbf{letter-spacing:-0.252504px;}
.lsbd{letter-spacing:-0.232200px;}
.ls11a{letter-spacing:-0.228456px;}
.lsc0{letter-spacing:-0.222444px;}
.lsc3{letter-spacing:-0.216432px;}
.ls129{letter-spacing:-0.210420px;}
.ls12a{letter-spacing:-0.204408px;}
.lsb5{letter-spacing:-0.192384px;}
.lsc2{letter-spacing:-0.189000px;}
.lsc8{letter-spacing:-0.186372px;}
.lsa3{letter-spacing:-0.180360px;}
.lsaa{letter-spacing:-0.174348px;}
.lsab{letter-spacing:-0.168336px;}
.lsb0{letter-spacing:-0.162324px;}
.lse2{letter-spacing:-0.161803px;}
.ls95{letter-spacing:-0.156312px;}
.lsb1{letter-spacing:-0.150300px;}
.ls126{letter-spacing:-0.144288px;}
.lse3{letter-spacing:-0.142623px;}
.lsc6{letter-spacing:-0.138276px;}
.ls112{letter-spacing:-0.135000px;}
.lsa7{letter-spacing:-0.132264px;}
.ls97{letter-spacing:-0.126252px;}
.ls110{letter-spacing:-0.124200px;}
.ls9e{letter-spacing:-0.120240px;}
.lsa4{letter-spacing:-0.114228px;}
.lsa0{letter-spacing:-0.108216px;}
.lscb{letter-spacing:-0.102204px;}
.lsad{letter-spacing:-0.096192px;}
.ls127{letter-spacing:-0.091800px;}
.lsc7{letter-spacing:-0.090180px;}
.ls98{letter-spacing:-0.084168px;}
.lsa8{letter-spacing:-0.078156px;}
.ls131{letter-spacing:-0.075305px;}
.ls9a{letter-spacing:-0.072144px;}
.lsaf{letter-spacing:-0.066132px;}
.ls9b{letter-spacing:-0.060120px;}
.lsa6{letter-spacing:-0.054108px;}
.lsb6{letter-spacing:-0.048096px;}
.ls9f{letter-spacing:-0.042084px;}
.lsb9{letter-spacing:-0.037800px;}
.ls94{letter-spacing:-0.036072px;}
.ls96{letter-spacing:-0.030060px;}
.lsb4{letter-spacing:-0.024048px;}
.lsb8{letter-spacing:-0.021600px;}
.lsa5{letter-spacing:-0.018036px;}
.lsa1{letter-spacing:-0.012024px;}
.ls111{letter-spacing:-0.010800px;}
.ls9c{letter-spacing:-0.006012px;}
.lsbb{letter-spacing:-0.005400px;}
.ls91{letter-spacing:-0.004788px;}
.ls0{letter-spacing:0.000000px;}
.ls149{letter-spacing:0.000061px;}
.ls151{letter-spacing:0.000088px;}
.ls5{letter-spacing:0.000319px;}
.ls3c{letter-spacing:0.000608px;}
.ls22{letter-spacing:0.000620px;}
.lse5{letter-spacing:0.001133px;}
.ls14f{letter-spacing:0.001303px;}
.lsea{letter-spacing:0.001555px;}
.ls10a{letter-spacing:0.001800px;}
.lse4{letter-spacing:0.002467px;}
.ls9{letter-spacing:0.002496px;}
.lse{letter-spacing:0.003247px;}
.ls145{letter-spacing:0.003542px;}
.ls32{letter-spacing:0.004200px;}
.ls13e{letter-spacing:0.004362px;}
.ls141{letter-spacing:0.004665px;}
.ls14d{letter-spacing:0.004800px;}
.ls79{letter-spacing:0.006012px;}
.ls85{letter-spacing:0.010800px;}
.ls60{letter-spacing:0.012024px;}
.lsee{letter-spacing:0.016200px;}
.ls74{letter-spacing:0.018036px;}
.ls75{letter-spacing:0.024048px;}
.ls69{letter-spacing:0.030060px;}
.lsf7{letter-spacing:0.032400px;}
.ls6c{letter-spacing:0.036072px;}
.ls81{letter-spacing:0.037800px;}
.ls65{letter-spacing:0.042084px;}
.lsba{letter-spacing:0.043200px;}
.ls64{letter-spacing:0.048096px;}
.lsfd{letter-spacing:0.054000px;}
.ls6b{letter-spacing:0.054108px;}
.ls80{letter-spacing:0.059400px;}
.ls6f{letter-spacing:0.060120px;}
.lsf4{letter-spacing:0.064800px;}
.ls66{letter-spacing:0.066132px;}
.ls117{letter-spacing:0.072144px;}
.lsf2{letter-spacing:0.075600px;}
.ls7c{letter-spacing:0.078156px;}
.lsfb{letter-spacing:0.081000px;}
.ls87{letter-spacing:0.084168px;}
.ls76{letter-spacing:0.090180px;}
.ls72{letter-spacing:0.096192px;}
.ls107{letter-spacing:0.097200px;}
.lsfc{letter-spacing:0.102600px;}
.ls113{letter-spacing:0.108000px;}
.ls7d{letter-spacing:0.114228px;}
.lsbc{letter-spacing:0.124200px;}
.ls6d{letter-spacing:0.126252px;}
.ls118{letter-spacing:0.132264px;}
.ls5e{letter-spacing:0.134064px;}
.lsa9{letter-spacing:0.138276px;}
.ls92{letter-spacing:0.143640px;}
.ls86{letter-spacing:0.144288px;}
.ls7e{letter-spacing:0.162324px;}
.ls7f{letter-spacing:0.178200px;}
.ls67{letter-spacing:0.180360px;}
.ls5d{letter-spacing:0.181944px;}
.lse0{letter-spacing:0.189344px;}
.lsda{letter-spacing:0.226156px;}
.lsd8{letter-spacing:0.243289px;}
.ls47{letter-spacing:0.246620px;}
.ls43{letter-spacing:0.252620px;}
.ls40{letter-spacing:0.253200px;}
.ls132{letter-spacing:0.270210px;}
.ls2e{letter-spacing:0.447292px;}
.ls106{letter-spacing:0.450900px;}
.ls27{letter-spacing:0.453292px;}
.lse1{letter-spacing:0.468196px;}
.lsd7{letter-spacing:0.469444px;}
.lsd9{letter-spacing:0.479724px;}
.ls8f{letter-spacing:0.485409px;}
.lsfa{letter-spacing:0.540000px;}
.ls57{letter-spacing:0.561943px;}
.ls28{letter-spacing:0.565200px;}
.ls21{letter-spacing:0.567943px;}
.ls3a{letter-spacing:0.571200px;}
.ls133{letter-spacing:0.643889px;}
.ls34{letter-spacing:0.741247px;}
.ls59{letter-spacing:0.741634px;}
.lsa{letter-spacing:0.742483px;}
.ls136{letter-spacing:0.745694px;}
.ls4a{letter-spacing:0.747634px;}
.ls12{letter-spacing:0.748483px;}
.ls33{letter-spacing:0.749108px;}
.ls105{letter-spacing:0.811620px;}
.ls10f{letter-spacing:0.863788px;}
.ls3f{letter-spacing:0.882571px;}
.ls45{letter-spacing:0.888571px;}
.lsf9{letter-spacing:0.901800px;}
.ls54{letter-spacing:1.011292px;}
.ls4d{letter-spacing:1.017292px;}
.ls148{letter-spacing:1.074422px;}
.ls63{letter-spacing:1.172340px;}
.lsd{letter-spacing:1.494390px;}
.ls2c{letter-spacing:1.494775px;}
.ls38{letter-spacing:1.500172px;}
.ls61{letter-spacing:1.527048px;}
.ls62{letter-spacing:1.533060px;}
.ls14{letter-spacing:1.641247px;}
.ls17{letter-spacing:1.647247px;}
.ls104{letter-spacing:1.887768px;}
.lsc{letter-spacing:1.939625px;}
.ls13{letter-spacing:1.945625px;}
.ls42{letter-spacing:2.089694px;}
.ls3d{letter-spacing:2.095694px;}
.ls4f{letter-spacing:2.155200px;}
.ls8b{letter-spacing:2.248488px;}
.ls49{letter-spacing:2.269694px;}
.ls25{letter-spacing:2.273108px;}
.ls1a{letter-spacing:2.389694px;}
.ls30{letter-spacing:2.395694px;}
.ls8c{letter-spacing:2.609208px;}
.ls7b{letter-spacing:2.969928px;}
.ls46{letter-spacing:2.983694px;}
.ls13c{letter-spacing:2.985943px;}
.ls13b{letter-spacing:2.989200px;}
.ls56{letter-spacing:2.989694px;}
.ls13f{letter-spacing:2.991943px;}
.ls3e{letter-spacing:3.287658px;}
.ls7a{letter-spacing:3.330648px;}
.ls100{letter-spacing:3.691368px;}
.ls4b{letter-spacing:3.733200px;}
.ls52{letter-spacing:3.739200px;}
.ls53{letter-spacing:4.002374px;}
.ls4c{letter-spacing:4.008374px;}
.ls101{letter-spacing:4.052088px;}
.ls51{letter-spacing:4.302571px;}
.ls50{letter-spacing:4.308571px;}
.ls84{letter-spacing:4.406796px;}
.ls83{letter-spacing:4.412808px;}
.ls41{letter-spacing:4.620571px;}
.ls82{letter-spacing:4.767516px;}
.ls70{letter-spacing:5.128236px;}
.ls6e{letter-spacing:5.488956px;}
.ls89{letter-spacing:5.849676px;}
.ls8a{letter-spacing:6.205104px;}
.ls88{letter-spacing:6.210396px;}
.ls71{letter-spacing:6.571116px;}
.ls73{letter-spacing:6.931836px;}
.lsff{letter-spacing:7.647264px;}
.lsfe{letter-spacing:8.007984px;}
.ls6a{letter-spacing:8.729424px;}
.ls68{letter-spacing:9.090144px;}
.ls78{letter-spacing:10.887732px;}
.ls77{letter-spacing:11.248452px;}
.ls20{letter-spacing:11.607247px;}
.ls109{letter-spacing:11.609172px;}
.ls31{letter-spacing:11.616493px;}
.ls1f{letter-spacing:11.622493px;}
.ls4{letter-spacing:11.954850px;}
.ls108{letter-spacing:11.969892px;}
.ls37{letter-spacing:12.340200px;}
.ls24{letter-spacing:12.366493px;}
.ls1e{letter-spacing:12.370200px;}
.ls2d{letter-spacing:12.372493px;}
.ls35{letter-spacing:12.374725px;}
.lseb{letter-spacing:13.444090px;}
.ls14a{letter-spacing:13.448400px;}
.lsec{letter-spacing:13.450800px;}
.ls152{letter-spacing:13.454400px;}
.lse7{letter-spacing:13.509286px;}
.ls14b{letter-spacing:13.550400px;}
.ls14e{letter-spacing:13.565475px;}
.lse9{letter-spacing:13.569061px;}
.ls14c{letter-spacing:13.712480px;}
.lse8{letter-spacing:13.748388px;}
.ls150{letter-spacing:13.754876px;}
.ls103{letter-spacing:13.767480px;}
.ls26{letter-spacing:13.805108px;}
.lsb{letter-spacing:13.866493px;}
.ls102{letter-spacing:14.128200px;}
.ls1d{letter-spacing:14.163634px;}
.ls23{letter-spacing:14.611200px;}
.ls39{letter-spacing:14.617200px;}
.ls153{letter-spacing:14.726871px;}
.ls3{letter-spacing:14.824349px;}
.ls90{letter-spacing:14.884124px;}
.ls142{letter-spacing:14.942100px;}
.ls11{letter-spacing:14.942496px;}
.ls8{letter-spacing:14.943900px;}
.ls143{letter-spacing:14.948100px;}
.ls6{letter-spacing:15.063451px;}
.ls7{letter-spacing:15.242778px;}
.ls147{letter-spacing:15.243634px;}
.ls44{letter-spacing:15.492571px;}
.ls48{letter-spacing:15.498571px;}
.lsf{letter-spacing:15.686496px;}
.ls15{letter-spacing:15.692496px;}
.ls5c{letter-spacing:15.900310px;}
.ls135{letter-spacing:16.079636px;}
.ls5b{letter-spacing:16.199188px;}
.ls18{letter-spacing:17.184493px;}
.ls1c{letter-spacing:17.346493px;}
.ls2b{letter-spacing:17.352493px;}
.ls144{letter-spacing:17.935200px;}
.ls2a{letter-spacing:20.157943px;}
.ls1b{letter-spacing:20.163943px;}
.ls36{letter-spacing:20.316493px;}
.ls13d{letter-spacing:21.582493px;}
.ls13a{letter-spacing:21.588493px;}
.ls5a{letter-spacing:22.242493px;}
.ls146{letter-spacing:23.277281px;}
.ls139{letter-spacing:24.571200px;}
.ls138{letter-spacing:26.568493px;}
.ls137{letter-spacing:29.553943px;}
.ls2{letter-spacing:67.247510px;}
.ls1{letter-spacing:70.236600px;}
.ls8d{letter-spacing:73.225532px;}
.ls8e{letter-spacing:103.221615px;}
.ls55{letter-spacing:110.877943px;}
.ls58{letter-spacing:130.869943px;}
.ls4e{letter-spacing:157.641943px;}
.ls10d{letter-spacing:182.231479px;}
.lsf1{letter-spacing:182.698200px;}
.lsf3{letter-spacing:188.098200px;}
.ls10e{letter-spacing:188.870583px;}
.lsf6{letter-spacing:219.780000px;}
.lsf8{letter-spacing:239.581800px;}
.lsef{letter-spacing:248.221800px;}
.ls10{letter-spacing:283.101247px;}
.ls16{letter-spacing:319.593247px;}
.lsf0{letter-spacing:355.141800px;}
.ls140{letter-spacing:457.467943px;}
.lsf5{letter-spacing:473.941800px;}
.lse6{letter-spacing:479.413133px;}
.ls10b{letter-spacing:521.730000px;}
.ls3b{letter-spacing:610.233943px;}
.ls2f{letter-spacing:691.623943px;}
.ls29{letter-spacing:822.993943px;}
.ls10c{letter-spacing:846.000000px;}
.ls19{letter-spacing:957.363247px;}
.lsed{letter-spacing:2068.109568px;}
.ls5f{letter-spacing:2092.231512px;}
.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;}
}
.ws13d{word-spacing:-60.210180px;}
.wsb3{word-spacing:-60.120000px;}
.ws13e{word-spacing:-59.849460px;}
.wsc5{word-spacing:-54.000000px;}
.ws85{word-spacing:-47.880000px;}
.ws5e{word-spacing:-46.481507px;}
.ws13f{word-spacing:-36.000000px;}
.ws64{word-spacing:-34.885040px;}
.ws60{word-spacing:-29.863890px;}
.ws14{word-spacing:-14.943900px;}
.wsf6{word-spacing:-13.449600px;}
.ws147{word-spacing:-13.178298px;}
.ws1b{word-spacing:-11.955150px;}
.ws1{word-spacing:-11.357400px;}
.ws144{word-spacing:-11.122926px;}
.ws73{word-spacing:-3.347434px;}
.ws29{word-spacing:-2.689902px;}
.ws12{word-spacing:-2.630126px;}
.ws5b{word-spacing:-2.570351px;}
.ws159{word-spacing:-2.271473px;}
.ws16d{word-spacing:-2.259533px;}
.ws5a{word-spacing:-2.211697px;}
.ws77{word-spacing:-2.092146px;}
.wse{word-spacing:-1.972595px;}
.ws27{word-spacing:-1.793268px;}
.ws170{word-spacing:-1.775347px;}
.ws37{word-spacing:-1.673717px;}
.ws105{word-spacing:-1.613941px;}
.ws7a{word-spacing:-1.554166px;}
.ws3{word-spacing:-1.434614px;}
.ws104{word-spacing:-1.374839px;}
.ws103{word-spacing:-1.315063px;}
.ws187{word-spacing:-1.291162px;}
.ws15{word-spacing:-1.255288px;}
.wsf3{word-spacing:-1.198032px;}
.ws19{word-spacing:-1.195512px;}
.wsef{word-spacing:-1.182177px;}
.ws4a{word-spacing:-1.075961px;}
.wsf2{word-spacing:-0.919180px;}
.ws148{word-spacing:-0.880561px;}
.ws4f{word-spacing:-0.777083px;}
.wsee{word-spacing:-0.630494px;}
.ws53{word-spacing:-0.478205px;}
.ws54{word-spacing:-0.418429px;}
.ws28{word-spacing:-0.358654px;}
.ws177{word-spacing:-0.322790px;}
.ws2{word-spacing:-0.298878px;}
.ws162{word-spacing:-0.268992px;}
.ws96{word-spacing:-0.240480px;}
.wsf{word-spacing:-0.239102px;}
.ws86{word-spacing:-0.229824px;}
.wsc1{word-spacing:-0.222444px;}
.ws165{word-spacing:-0.215194px;}
.ws9c{word-spacing:-0.204408px;}
.wsab{word-spacing:-0.198396px;}
.ws128{word-spacing:-0.192384px;}
.ws88{word-spacing:-0.191520px;}
.ws9e{word-spacing:-0.186372px;}
.ws6{word-spacing:-0.179327px;}
.wsca{word-spacing:-0.178200px;}
.wsc0{word-spacing:-0.174348px;}
.ws123{word-spacing:-0.162000px;}
.ws167{word-spacing:-0.161395px;}
.ws121{word-spacing:-0.156600px;}
.wsa9{word-spacing:-0.156312px;}
.ws138{word-spacing:-0.151200px;}
.wsbc{word-spacing:-0.150300px;}
.wsd9{word-spacing:-0.144288px;}
.wsbf{word-spacing:-0.138276px;}
.ws120{word-spacing:-0.135000px;}
.ws127{word-spacing:-0.132264px;}
.ws11c{word-spacing:-0.129600px;}
.ws94{word-spacing:-0.126252px;}
.wsa3{word-spacing:-0.120240px;}
.wsb{word-spacing:-0.119551px;}
.ws11d{word-spacing:-0.118800px;}
.ws9a{word-spacing:-0.114228px;}
.wsc6{word-spacing:-0.113400px;}
.ws8d{word-spacing:-0.108216px;}
.ws122{word-spacing:-0.108000px;}
.ws166{word-spacing:-0.107597px;}
.ws91{word-spacing:-0.102204px;}
.wsc8{word-spacing:-0.097200px;}
.ws9b{word-spacing:-0.096192px;}
.wsc7{word-spacing:-0.091800px;}
.ws98{word-spacing:-0.090180px;}
.ws11e{word-spacing:-0.086400px;}
.wsb1{word-spacing:-0.084168px;}
.wsb0{word-spacing:-0.078156px;}
.ws89{word-spacing:-0.072144px;}
.ws11a{word-spacing:-0.070200px;}
.wsb7{word-spacing:-0.066132px;}
.wsd1{word-spacing:-0.064800px;}
.ws99{word-spacing:-0.060120px;}
.ws16{word-spacing:-0.059776px;}
.ws95{word-spacing:-0.054108px;}
.wsc3{word-spacing:-0.054000px;}
.ws107{word-spacing:-0.053798px;}
.wsc9{word-spacing:-0.048600px;}
.wsa1{word-spacing:-0.048096px;}
.ws87{word-spacing:-0.047880px;}
.ws1c{word-spacing:-0.047821px;}
.ws11b{word-spacing:-0.043200px;}
.ws84{word-spacing:-0.043092px;}
.wsa6{word-spacing:-0.042084px;}
.wsba{word-spacing:-0.036072px;}
.ws13c{word-spacing:-0.036000px;}
.wsc2{word-spacing:-0.032400px;}
.ws8e{word-spacing:-0.030060px;}
.ws182{word-spacing:-0.028522px;}
.ws8b{word-spacing:-0.024048px;}
.ws50{word-spacing:-0.022623px;}
.ws9f{word-spacing:-0.018036px;}
.wsc4{word-spacing:-0.016200px;}
.wsbd{word-spacing:-0.012024px;}
.wsa7{word-spacing:-0.006012px;}
.ws14c{word-spacing:-0.002476px;}
.ws151{word-spacing:-0.000826px;}
.ws0{word-spacing:0.000000px;}
.wsb4{word-spacing:0.006012px;}
.ws93{word-spacing:0.012024px;}
.wsf0{word-spacing:0.017133px;}
.wsaa{word-spacing:0.018036px;}
.wsf5{word-spacing:0.019016px;}
.ws90{word-spacing:0.024048px;}
.wsd6{word-spacing:0.030060px;}
.wsaf{word-spacing:0.036072px;}
.ws137{word-spacing:0.037800px;}
.wsdb{word-spacing:0.042084px;}
.wsa0{word-spacing:0.048096px;}
.ws154{word-spacing:0.053798px;}
.wsa5{word-spacing:0.054108px;}
.ws11{word-spacing:0.059776px;}
.ws9d{word-spacing:0.060120px;}
.ws8f{word-spacing:0.066132px;}
.ws119{word-spacing:0.070200px;}
.wsa8{word-spacing:0.072144px;}
.wsd5{word-spacing:0.078156px;}
.ws11f{word-spacing:0.081000px;}
.ws136{word-spacing:0.084168px;}
.wsb6{word-spacing:0.090180px;}
.ws8c{word-spacing:0.096192px;}
.wsb5{word-spacing:0.102204px;}
.ws22{word-spacing:0.107597px;}
.wsad{word-spacing:0.108216px;}
.wsac{word-spacing:0.114228px;}
.ws1d{word-spacing:0.119551px;}
.wsa4{word-spacing:0.120240px;}
.wsd7{word-spacing:0.126252px;}
.wsbb{word-spacing:0.132264px;}
.wsd0{word-spacing:0.135000px;}
.ws13b{word-spacing:0.144288px;}
.ws13a{word-spacing:0.150300px;}
.wsd2{word-spacing:0.156312px;}
.ws16f{word-spacing:0.161395px;}
.wsce{word-spacing:0.162324px;}
.ws12a{word-spacing:0.168336px;}
.wscb{word-spacing:0.178200px;}
.ws7{word-spacing:0.179327px;}
.wscd{word-spacing:0.192384px;}
.wsb2{word-spacing:0.198396px;}
.ws141{word-spacing:0.216432px;}
.wsae{word-spacing:0.222444px;}
.ws126{word-spacing:0.234468px;}
.ws2c{word-spacing:0.239102px;}
.wsbe{word-spacing:0.240480px;}
.ws139{word-spacing:0.246492px;}
.wsd4{word-spacing:0.252504px;}
.wsd8{word-spacing:0.264528px;}
.ws15e{word-spacing:0.268992px;}
.ws129{word-spacing:0.276552px;}
.ws134{word-spacing:0.282564px;}
.wscc{word-spacing:0.288576px;}
.ws135{word-spacing:0.294588px;}
.ws2a{word-spacing:0.298878px;}
.wsf1{word-spacing:0.354902px;}
.ws58{word-spacing:0.358654px;}
.wsb8{word-spacing:0.360720px;}
.ws140{word-spacing:0.366732px;}
.ws8a{word-spacing:0.372744px;}
.ws97{word-spacing:0.390780px;}
.ws125{word-spacing:0.396792px;}
.ws124{word-spacing:0.399600px;}
.wsda{word-spacing:0.402804px;}
.wsf4{word-spacing:0.413114px;}
.wscf{word-spacing:0.420840px;}
.wsd3{word-spacing:0.426852px;}
.ws130{word-spacing:0.432864px;}
.wsa2{word-spacing:0.438876px;}
.wsb9{word-spacing:0.462924px;}
.ws92{word-spacing:0.468936px;}
.ws158{word-spacing:0.478205px;}
.ws168{word-spacing:0.484186px;}
.ws132{word-spacing:0.492984px;}
.ws156{word-spacing:0.497910px;}
.ws149{word-spacing:0.514270px;}
.ws12d{word-spacing:0.517032px;}
.wsed{word-spacing:0.537980px;}
.ws12f{word-spacing:0.553104px;}
.ws12c{word-spacing:0.559116px;}
.wse3{word-spacing:0.571140px;}
.ws12e{word-spacing:0.583164px;}
.wse0{word-spacing:0.589176px;}
.ws45{word-spacing:0.597756px;}
.wsdc{word-spacing:0.601200px;}
.wsde{word-spacing:0.607212px;}
.wsdf{word-spacing:0.613224px;}
.ws43{word-spacing:0.613559px;}
.ws133{word-spacing:0.619236px;}
.wsdd{word-spacing:0.625248px;}
.wse2{word-spacing:0.631260px;}
.ws12b{word-spacing:0.721440px;}
.wse1{word-spacing:0.727452px;}
.ws131{word-spacing:0.733464px;}
.ws178{word-spacing:0.753178px;}
.wse4{word-spacing:0.757512px;}
.wsc{word-spacing:0.777083px;}
.ws48{word-spacing:0.836858px;}
.ws25{word-spacing:0.896634px;}
.ws160{word-spacing:0.914573px;}
.ws17{word-spacing:0.956410px;}
.ws180{word-spacing:0.968371px;}
.ws7c{word-spacing:1.016185px;}
.ws5{word-spacing:1.075961px;}
.ws7e{word-spacing:1.135736px;}
.ws2b{word-spacing:1.195512px;}
.ws2e{word-spacing:1.255288px;}
.ws181{word-spacing:1.291162px;}
.ws5c{word-spacing:1.315063px;}
.ws3e{word-spacing:1.374839px;}
.ws4b{word-spacing:1.434614px;}
.ws13{word-spacing:1.554166px;}
.ws3b{word-spacing:1.613941px;}
.ws18a{word-spacing:1.667750px;}
.ws10b{word-spacing:1.673717px;}
.ws33{word-spacing:1.733492px;}
.ws7f{word-spacing:1.793268px;}
.ws15a{word-spacing:1.912819px;}
.ws3c{word-spacing:1.972595px;}
.ws39{word-spacing:2.032370px;}
.wsec{word-spacing:2.151922px;}
.ws173{word-spacing:2.151936px;}
.ws42{word-spacing:2.211697px;}
.ws4{word-spacing:2.271473px;}
.ws38{word-spacing:2.331248px;}
.ws46{word-spacing:2.570351px;}
.ws6e{word-spacing:2.630126px;}
.ws185{word-spacing:2.636122px;}
.ws1e{word-spacing:2.749678px;}
.ws15c{word-spacing:2.809453px;}
.ws78{word-spacing:2.949817px;}
.ws47{word-spacing:3.048556px;}
.ws56{word-spacing:3.108331px;}
.ws4d{word-spacing:3.168107px;}
.ws36{word-spacing:3.227882px;}
.ws164{word-spacing:3.227904px;}
.ws66{word-spacing:3.249000px;}
.ws61{word-spacing:3.255000px;}
.ws5d{word-spacing:3.287658px;}
.ws7d{word-spacing:3.347434px;}
.ws175{word-spacing:3.389299px;}
.ws8{word-spacing:3.407209px;}
.ws18{word-spacing:3.526760px;}
.ws9{word-spacing:3.583475px;}
.ws3f{word-spacing:3.586536px;}
.ws41{word-spacing:3.945190px;}
.ws59{word-spacing:4.004965px;}
.ws2f{word-spacing:4.363619px;}
.ws15b{word-spacing:4.483170px;}
.ws80{word-spacing:4.542946px;}
.ws32{word-spacing:4.662497px;}
.ws183{word-spacing:4.895654px;}
.ws35{word-spacing:5.021150px;}
.ws7b{word-spacing:5.080926px;}
.ws4e{word-spacing:5.200477px;}
.ws26{word-spacing:5.260253px;}
.ws3a{word-spacing:5.320028px;}
.ws17e{word-spacing:5.595034px;}
.ws52{word-spacing:5.618906px;}
.wsd{word-spacing:5.738458px;}
.ws2d{word-spacing:5.858009px;}
.ws10a{word-spacing:5.917784px;}
.ws102{word-spacing:6.073216px;}
.ws4c{word-spacing:6.097111px;}
.ws34{word-spacing:6.395989px;}
.ws16e{word-spacing:6.778598px;}
.ws57{word-spacing:7.053521px;}
.ws74{word-spacing:7.340400px;}
.ws72{word-spacing:7.770828px;}
.ws67{word-spacing:7.917000px;}
.ws6c{word-spacing:7.923000px;}
.ws150{word-spacing:8.009930px;}
.ws14f{word-spacing:8.069706px;}
.ws75{word-spacing:8.234400px;}
.ws6f{word-spacing:8.249033px;}
.ws70{word-spacing:8.308808px;}
.ws169{word-spacing:8.338752px;}
.ws30{word-spacing:8.607686px;}
.ws31{word-spacing:8.667462px;}
.ws62{word-spacing:8.817000px;}
.ws49{word-spacing:9.683647px;}
.ws71{word-spacing:9.748979px;}
.ws63{word-spacing:9.803198px;}
.ws6b{word-spacing:9.903791px;}
.ws6a{word-spacing:10.646033px;}
.ws171{word-spacing:10.759680px;}
.ws79{word-spacing:10.856400px;}
.ws1a{word-spacing:11.906882px;}
.ws188{word-spacing:12.104640px;}
.ws14b{word-spacing:13.211743px;}
.ws14a{word-spacing:13.217743px;}
.ws17f{word-spacing:13.386970px;}
.ws186{word-spacing:13.393459px;}
.ws17c{word-spacing:13.395389px;}
.ws15f{word-spacing:13.395802px;}
.ws76{word-spacing:13.403264px;}
.ws176{word-spacing:13.610995px;}
.ws17b{word-spacing:14.095181px;}
.ws179{word-spacing:14.148979px;}
.ws6d{word-spacing:14.430810px;}
.ws69{word-spacing:14.436810px;}
.ws40{word-spacing:14.585246px;}
.ws5f{word-spacing:14.882782px;}
.ws51{word-spacing:14.884124px;}
.ws55{word-spacing:14.943900px;}
.ws3d{word-spacing:15.003676px;}
.ws157{word-spacing:15.362329px;}
.ws44{word-spacing:15.481880px;}
.ws174{word-spacing:15.547738px;}
.ws16a{word-spacing:16.619414px;}
.ws189{word-spacing:16.621430px;}
.ws163{word-spacing:16.623706px;}
.ws17a{word-spacing:16.624714px;}
.ws68{word-spacing:16.737168px;}
.ws16b{word-spacing:16.785101px;}
.ws172{word-spacing:16.892698px;}
.ws16c{word-spacing:16.946496px;}
.ws17d{word-spacing:17.054093px;}
.ws10{word-spacing:18.203790px;}
.ws184{word-spacing:18.291456px;}
.ws161{word-spacing:19.797811px;}
.wsa{word-spacing:22.116972px;}
.ws65{word-spacing:25.592033px;}
.ws15d{word-spacing:51.754061px;}
.wse6{word-spacing:60.874933px;}
.wse5{word-spacing:62.591236px;}
.wse8{word-spacing:77.326003px;}
.wsea{word-spacing:89.419927px;}
.wse9{word-spacing:90.740455px;}
.ws142{word-spacing:156.092456px;}
.ws145{word-spacing:162.031152px;}
.ws10c{word-spacing:165.376282px;}
.ws109{word-spacing:167.635814px;}
.ws111{word-spacing:171.595594px;}
.ws20{word-spacing:171.670694px;}
.ws143{word-spacing:173.207803px;}
.ws10d{word-spacing:174.502915px;}
.ws146{word-spacing:176.359712px;}
.ws113{word-spacing:178.234099px;}
.ws115{word-spacing:193.082458px;}
.ws117{word-spacing:196.417958px;}
.ws114{word-spacing:199.699661px;}
.ws10f{word-spacing:202.122778px;}
.ws106{word-spacing:217.351594px;}
.ws152{word-spacing:227.793706px;}
.ws118{word-spacing:233.323661px;}
.ws116{word-spacing:235.905984px;}
.wse7{word-spacing:267.487154px;}
.ws23{word-spacing:277.352400px;}
.ws110{word-spacing:283.551034px;}
.wsf7{word-spacing:288.354000px;}
.ws101{word-spacing:288.360000px;}
.ws10e{word-spacing:289.435392px;}
.ws108{word-spacing:291.587328px;}
.ws112{word-spacing:297.003034px;}
.ws24{word-spacing:298.844688px;}
.wsf8{word-spacing:301.806000px;}
.wsf9{word-spacing:301.807200px;}
.ws14e{word-spacing:303.261581px;}
.wseb{word-spacing:307.971642px;}
.wsfc{word-spacing:309.831216px;}
.wsff{word-spacing:309.878784px;}
.ws14d{word-spacing:311.385139px;}
.ws21{word-spacing:320.369472px;}
.ws153{word-spacing:320.638464px;}
.wsfd{word-spacing:331.344346px;}
.ws155{word-spacing:342.157824px;}
.ws82{word-spacing:359.228347px;}
.ws81{word-spacing:385.915450px;}
.wsfa{word-spacing:424.630771px;}
.wsfe{word-spacing:443.635594px;}
.ws100{word-spacing:466.796016px;}
.wsfb{word-spacing:474.168778px;}
.ws83{word-spacing:524.926726px;}
.ws1f{word-spacing:681.033946px;}
._0{margin-left:-11.943245px;}
._20{margin-left:-7.955266px;}
._3{margin-left:-6.939994px;}
._6{margin-left:-5.917824px;}
._4{margin-left:-3.981082px;}
._16{margin-left:-2.151922px;}
._8{margin-left:-1.016185px;}
._1d{width:1.434614px;}
._2{width:3.001205px;}
._1e{width:4.063214px;}
._1f{width:5.228400px;}
._7c{width:12.158438px;}
._11{width:13.449600px;}
._47{width:14.645022px;}
._5{width:15.709133px;}
._7{width:17.645875px;}
._a{width:18.829314px;}
._1a{width:19.905275px;}
._c{width:21.220338px;}
._9{width:22.296299px;}
._e{width:23.908800px;}
._18{width:25.942610px;}
._46{width:27.114280px;}
._b{width:29.409595px;}
._19{width:30.545108px;}
._17{width:32.278824px;}
._1{width:33.355008px;}
._14{width:34.669848px;}
._1c{width:36.044687px;}
._15{width:37.060872px;}
._1b{width:43.038432px;}
._7d{width:60.069120px;}
._7e{width:61.868160px;}
._32{width:68.841487px;}
._60{width:73.972800px;}
._7b{width:89.681933px;}
._4e{width:96.998515px;}
._4d{width:98.558669px;}
._54{width:108.726566px;}
._78{width:136.271347px;}
._62{width:140.091034px;}
._5b{width:147.819341px;}
._3b{width:149.344358px;}
._66{width:153.558566px;}
._45{width:158.966035px;}
._5c{width:161.353399px;}
._2a{width:164.519600px;}
._65{width:174.486144px;}
._6d{width:177.058047px;}
._39{width:181.999987px;}
._67{width:185.514386px;}
._5d{width:192.544459px;}
._38{width:195.449587px;}
._37{width:199.215475px;}
._4a{width:202.604774px;}
._2b{width:206.514554px;}
._51{width:208.678312px;}
._27{width:211.426844px;}
._68{width:213.149261px;}
._4c{width:214.763213px;}
._79{width:220.294454px;}
._22{width:224.374255px;}
._53{width:226.808373px;}
._35{width:230.949627px;}
._63{width:237.089549px;}
._77{width:238.219315px;}
._21{width:239.282352px;}
._23{width:240.298515px;}
._42{width:241.608614px;}
._5e{width:246.773261px;}
._7a{width:254.520230px;}
._4b{width:258.232320px;}
._5a{width:260.222861px;}
._57{width:263.232470px;}
._70{width:265.764096px;}
._76{width:269.368574px;}
._3c{width:273.252240px;}
._2d{width:279.024551px;}
._33{width:285.513127px;}
._58{width:291.641126px;}
._3d{width:295.723574px;}
._52{width:301.324838px;}
._25{width:302.888103px;}
._43{width:306.160464px;}
._30{width:307.715600px;}
._61{width:310.470566px;}
._6a{width:312.028051px;}
._41{width:317.087770px;}
._5f{width:318.486528px;}
._34{width:319.525606px;}
._59{width:325.641715px;}
._74{width:329.837990px;}
._3a{width:331.207843px;}
._64{width:332.718211px;}
._2c{width:335.149584px;}
._40{width:344.847744px;}
._56{width:351.142157px;}
._69{width:355.822618px;}
._6c{width:365.560128px;}
._29{width:367.023105px;}
._24{width:380.317232px;}
._28{width:405.662150px;}
._26{width:417.617300px;}
._75{width:421.725658px;}
._4f{width:423.447206px;}
._36{width:426.459917px;}
._10{width:449.648506px;}
._3f{width:467.400499px;}
._6b{width:474.232896px;}
._44{width:478.590566px;}
._2e{width:499.880103px;}
._3e{width:501.723878px;}
._73{width:506.350541px;}
._71{width:519.208358px;}
._12{width:523.135642px;}
._72{width:532.657958px;}
._6e{width:534.971290px;}
._6f{width:545.838566px;}
._31{width:563.996156px;}
._50{width:569.288988px;}
._13{width:579.139776px;}
._2f{width:590.261638px;}
._48{width:733.863974px;}
._d{width:790.664300px;}
._49{width:966.434458px;}
._55{width:2072.498250px;}
._f{width:2096.408250px;}
.fc3{color:rgb(30,45,83);}
.fc2{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc1{color:rgb(77,128,114);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:34.266000px;}
.fs11{font-size:34.426200px;}
.fs15{font-size:34.804800px;}
.fs13{font-size:36.000000px;}
.fs9{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs14{font-size:44.296800px;}
.fs8{font-size:45.429600px;}
.fs10{font-size:47.320200px;}
.fs12{font-size:47.541000px;}
.fsb{font-size:47.820600px;}
.fsc{font-size:47.880000px;}
.fs16{font-size:48.516000px;}
.fsa{font-size:53.798400px;}
.fsd{font-size:54.000000px;}
.fs6{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fse{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:107.596800px;}
.fs5{font-size:128.507760px;}
.y10b{bottom:-623.330100px;}
.y10a{bottom:-605.330550px;}
.y123{bottom:-570.410469px;}
.y122{bottom:-550.160307px;}
.y121{bottom:-529.910388px;}
.y120{bottom:-509.660469px;}
.y11f{bottom:-489.410127px;}
.y11e{bottom:-469.160208px;}
.y11d{bottom:-449.000469px;}
.y11c{bottom:-428.750550px;}
.y1b7{bottom:-415.806600px;}
.y1b6{bottom:-397.807050px;}
.y11b{bottom:-390.860550px;}
.y11a{bottom:-366.470550px;}
.y12e{bottom:-347.030171px;}
.y12d{bottom:-335.150550px;}
.y12c{bottom:-317.330051px;}
.y12b{bottom:-309.050550px;}
.y1d6{bottom:-301.327050px;}
.y12a{bottom:-296.900550px;}
.y1d5{bottom:-279.546969px;}
.y1d4{bottom:-259.296627px;}
.y134{bottom:-255.941100px;}
.y1d3{bottom:-239.046708px;}
.y133{bottom:-237.941550px;}
.y1d2{bottom:-218.796789px;}
.y14c{bottom:-203.021469px;}
.y1d1{bottom:-198.637050px;}
.y14b{bottom:-182.771307px;}
.y1d0{bottom:-169.387050px;}
.y14a{bottom:-162.521388px;}
.y149{bottom:-142.271469px;}
.y1cf{bottom:-140.137050px;}
.y12f{bottom:-136.880550px;}
.y148{bottom:-122.021127px;}
.y1ce{bottom:-119.886969px;}
.y147{bottom:-101.771208px;}
.y1cd{bottom:-99.636738px;}
.y119{bottom:-91.970469px;}
.y146{bottom:-81.611469px;}
.y1cc{bottom:-79.386819px;}
.y118{bottom:-71.720550px;}
.y145{bottom:-61.361550px;}
.y1cb{bottom:-59.136900px;}
.y117{bottom:-33.920550px;}
.y144{bottom:-23.471550px;}
.y1ca{bottom:-21.337050px;}
.y116{bottom:-0.350550px;}
.y0{bottom:0.000000px;}
.y143{bottom:0.918450px;}
.y1c9{bottom:3.143100px;}
.y1db{bottom:11.602950px;}
.y23{bottom:16.704213px;}
.y128{bottom:18.909376px;}
.y157{bottom:20.358829px;}
.y1da{bottom:25.102643px;}
.y127{bottom:30.699450px;}
.y156{bottom:32.238450px;}
.y1d9{bottom:35.633100px;}
.y126{bottom:48.429876px;}
.y155{bottom:50.058949px;}
.y1d7{bottom:54.442950px;}
.y125{bottom:56.619450px;}
.y154{bottom:58.338450px;}
.y4e{bottom:63.780000px;}
.y5{bottom:66.525004px;}
.y153{bottom:70.488450px;}
.y124{bottom:82.719450px;}
.y4{bottom:97.125005px;}
.y7e{bottom:108.612000px;}
.y221{bottom:109.912500px;}
.y4d{bottom:110.847000px;}
.y187{bottom:113.542500px;}
.y1dd{bottom:122.451000px;}
.yab{bottom:123.121500px;}
.y186{bottom:127.740000px;}
.y254{bottom:128.325000px;}
.y7d{bottom:128.875500px;}
.y220{bottom:129.279000px;}
.y4c{bottom:131.110500px;}
.y201{bottom:134.038500px;}
.y21{bottom:139.264499px;}
.yaa{bottom:143.386500px;}
.y1d8{bottom:144.892576px;}
.y253{bottom:147.691500px;}
.y21f{bottom:148.647000px;}
.y7c{bottom:149.139000px;}
.y185{bottom:149.515500px;}
.y1b4{bottom:150.858000px;}
.y4b{bottom:151.375500px;}
.y200{bottom:154.302000px;}
.yc9{bottom:156.276000px;}
.ya9{bottom:163.650000px;}
.y184{bottom:166.029000px;}
.y252{bottom:167.059500px;}
.yf7{bottom:167.305500px;}
.y21e{bottom:168.015000px;}
.y7b{bottom:169.404000px;}
.y4a{bottom:171.639000px;}
.y1ff{bottom:174.567000px;}
.ya8{bottom:183.913500px;}
.y251{bottom:186.427500px;}
.y21d{bottom:187.381500px;}
.yf6{bottom:187.569000px;}
.y7a{bottom:189.667500px;}
.y183{bottom:189.744000px;}
.y49{bottom:191.902500px;}
.yc8{bottom:193.426500px;}
.y1fe{bottom:194.830500px;}
.y18{bottom:196.933500px;}
.ya7{bottom:204.178500px;}
.y250{bottom:205.794000px;}
.y21c{bottom:206.749500px;}
.yf5{bottom:207.832500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y79{bottom:209.932500px;}
.y48{bottom:212.167500px;}
.y182{bottom:213.459000px;}
.yc7{bottom:213.690000px;}
.y1fd{bottom:215.094000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.ya6{bottom:224.442000px;}
.y24f{bottom:225.162000px;}
.y21b{bottom:226.116000px;}
.y129{bottom:228.069450px;}
.yf4{bottom:228.097500px;}
.y78{bottom:230.196000px;}
.y158{bottom:230.508450px;}
.y47{bottom:232.431000px;}
.y159{bottom:232.657500px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y1fc{bottom:235.359000px;}
.y181{bottom:237.175500px;}
.y24e{bottom:244.528500px;}
.ya5{bottom:244.707000px;}
.y21a{bottom:245.484000px;}
.yf3{bottom:248.361000px;}
.y77{bottom:250.459500px;}
.yc6{bottom:250.842000px;}
.y46{bottom:252.696000px;}
.y180{bottom:253.687500px;}
.y1fb{bottom:255.622500px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y131{bottom:261.064500px;}
.y115{bottom:263.889693px;}
.y24d{bottom:263.896500px;}
.y219{bottom:264.852000px;}
.ya4{bottom:264.970500px;}
.yf2{bottom:268.626000px;}
.y76{bottom:270.724500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y45{bottom:272.959500px;}
.y142{bottom:275.418531px;}
.y1fa{bottom:275.887500px;}
.y17f{bottom:277.404000px;}
.y24c{bottom:283.264500px;}
.y114{bottom:284.139612px;}
.y218{bottom:284.218500px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.ya3{bottom:285.234000px;}
.yc5{bottom:287.992500px;}
.yf1{bottom:288.889500px;}
.y1dc{bottom:290.602950px;}
.y75{bottom:290.988000px;}
.y44{bottom:293.223000px;}
.y141{bottom:295.668450px;}
.y1f9{bottom:296.151000px;}
.y17e{bottom:301.119000px;}
.y24b{bottom:302.631000px;}
.y217{bottom:303.586500px;}
.y113{bottom:304.389531px;}
.ya2{bottom:305.499000px;}
.yc4{bottom:308.256000px;}
.yf0{bottom:309.153000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y74{bottom:311.253000px;}
.y43{bottom:313.488000px;}
.y1f8{bottom:316.414500px;}
.y24a{bottom:321.999000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y216{bottom:322.953000px;}
.y112{bottom:324.639693px;}
.y17d{bottom:324.834000px;}
.ya1{bottom:325.762500px;}
.y1c8{bottom:328.133181px;}
.yc3{bottom:328.521000px;}
.yef{bottom:329.418000px;}
.y73{bottom:331.516500px;}
.y140{bottom:333.468450px;}
.y42{bottom:333.751500px;}
.y17c{bottom:341.347500px;}
.y249{bottom:341.367000px;}
.y215{bottom:342.321000px;}
.y111{bottom:344.889612px;}
.ya0{bottom:346.027500px;}
.yf{bottom:348.133500px;}
.y1c7{bottom:348.383373px;}
.yc2{bottom:348.784500px;}
.yee{bottom:349.681500px;}
.y72{bottom:351.780000px;}
.y41{bottom:354.016500px;}
.y196{bottom:356.272500px;}
.y248{bottom:360.733500px;}
.y214{bottom:361.689000px;}
.y1f7{bottom:363.387000px;}
.y17b{bottom:365.064000px;}
.y110{bottom:365.139531px;}
.y9f{bottom:366.291000px;}
.y13f{bottom:367.038450px;}
.y1c6{bottom:368.543112px;}
.yc1{bottom:369.048000px;}
.yed{bottom:369.946500px;}
.y195{bottom:372.786000px;}
.y40{bottom:374.280000px;}
.y247{bottom:380.101500px;}
.y71{bottom:381.010500px;}
.y10f{bottom:385.389873px;}
.y151{bottom:386.298376px;}
.y9e{bottom:386.554500px;}
.ye{bottom:386.785499px;}
.y1f6{bottom:387.102000px;}
.y17a{bottom:388.779000px;}
.y1c5{bottom:388.793031px;}
.y194{bottom:389.299500px;}
.yc0{bottom:389.313000px;}
.y213{bottom:390.022500px;}
.yec{bottom:390.210000px;}
.y3f{bottom:394.543500px;}
.y150{bottom:398.088450px;}
.y246{bottom:399.468000px;}
.y1f5{bottom:403.615500px;}
.y10e{bottom:405.549612px;}
.y193{bottom:405.813000px;}
.y9d{bottom:406.819500px;}
.yd{bottom:408.044999px;}
.y1c4{bottom:409.043274px;}
.ybf{bottom:409.576500px;}
.yeb{bottom:410.473500px;}
.y179{bottom:412.494000px;}
.y3e{bottom:414.808500px;}
.y14f{bottom:415.818876px;}
.y70{bottom:415.830000px;}
.y245{bottom:418.836000px;}
.y1f4{bottom:420.129000px;}
.y14e{bottom:424.008450px;}
.y10d{bottom:425.799531px;}
.y9c{bottom:427.083000px;}
.y212{bottom:427.323000px;}
.y1c3{bottom:429.293193px;}
.y192{bottom:429.528000px;}
.yea{bottom:430.738500px;}
.y3d{bottom:435.072000px;}
.y6f{bottom:436.095000px;}
.y178{bottom:436.209000px;}
.y1f3{bottom:436.641000px;}
.ybe{bottom:438.094500px;}
.y244{bottom:438.204000px;}
.y10c{bottom:446.049450px;}
.y9b{bottom:447.348000px;}
.y1c2{bottom:449.543112px;}
.y14d{bottom:450.108450px;}
.ye9{bottom:451.002000px;}
.y211{bottom:451.486500px;}
.y177{bottom:452.722500px;}
.y191{bottom:453.243000px;}
.y3c{bottom:455.337000px;}
.y6e{bottom:456.358500px;}
.y243{bottom:457.570500px;}
.ybd{bottom:458.358000px;}
.y1f2{bottom:460.656000px;}
.y9a{bottom:467.611500px;}
.y176{bottom:469.236000px;}
.y1c1{bottom:469.793031px;}
.ye8{bottom:471.267000px;}
.y3b{bottom:475.600500px;}
.y6d{bottom:476.623500px;}
.y242{bottom:476.938500px;}
.y190{bottom:476.959500px;}
.y109{bottom:483.489450px;}
.y210{bottom:484.618500px;}
.y1b3{bottom:484.692000px;}
.y175{bottom:485.749500px;}
.y99{bottom:487.875000px;}
.y1c0{bottom:490.043292px;}
.ybc{bottom:490.249500px;}
.y18f{bottom:493.471500px;}
.y3a{bottom:495.864000px;}
.y241{bottom:496.305000px;}
.y6c{bottom:496.887000px;}
.y1f1{bottom:498.253500px;}
.y1b2{bottom:498.888000px;}
.ye7{bottom:500.497500px;}
.yc{bottom:502.864502px;}
.y20f{bottom:504.882000px;}
.y98{bottom:508.140000px;}
.y174{bottom:509.389500px;}
.y18e{bottom:509.985000px;}
.y1bf{bottom:510.203031px;}
.ybb{bottom:510.513000px;}
.y240{bottom:515.673000px;}
.y6b{bottom:517.150500px;}
.y1b1{bottom:520.663500px;}
.yb{bottom:520.864502px;}
.y39{bottom:525.094500px;}
.y20e{bottom:525.145500px;}
.y173{bottom:525.828000px;}
.y18d{bottom:526.498500px;}
.y97{bottom:528.403500px;}
.y1be{bottom:530.452950px;}
.y23f{bottom:535.041000px;}
.ye6{bottom:535.317000px;}
.y1f0{bottom:535.357500px;}
.y1b0{bottom:537.177000px;}
.y6a{bottom:537.415500px;}
.ya{bottom:538.864499px;}
.y130{bottom:539.257500px;}
.y20d{bottom:545.410500px;}
.y96{bottom:548.667000px;}
.yba{bottom:549.157500px;}
.y172{bottom:549.543000px;}
.y18c{bottom:550.213500px;}
.y1af{bottom:553.690500px;}
.y23e{bottom:554.407500px;}
.ye5{bottom:555.580500px;}
.y1ef{bottom:555.621000px;}
.y9{bottom:556.864499px;}
.y69{bottom:557.679000px;}
.y1bd{bottom:559.252500px;}
.y20c{bottom:565.674000px;}
.y171{bottom:566.056500px;}
.y108{bottom:567.664500px;}
.y95{bottom:568.932000px;}
.yb9{bottom:569.422500px;}
.y1ae{bottom:570.202500px;}
.y23d{bottom:573.775500px;}
.y18b{bottom:574.228500px;}
.ye4{bottom:575.844000px;}
.y1ee{bottom:575.886000px;}
.y68{bottom:577.944000px;}
.y1bc{bottom:578.782950px;}
.y20b{bottom:585.939000px;}
.y94{bottom:589.195500px;}
.y170{bottom:589.773000px;}
.y23c{bottom:593.142000px;}
.y1ad{bottom:593.919000px;}
.y152{bottom:595.458450px;}
.ye3{bottom:596.109000px;}
.y1ed{bottom:596.149500px;}
.y18a{bottom:597.943500px;}
.y67{bottom:598.207500px;}
.y1bb{bottom:599.752050px;}
.y38{bottom:600.606000px;}
.yb8{bottom:606.202500px;}
.y93{bottom:609.460500px;}
.y1ac{bottom:610.432500px;}
.y23b{bottom:612.510000px;}
.y16f{bottom:613.488000px;}
.ye2{bottom:616.372500px;}
.y1ba{bottom:617.932500px;}
.y66{bottom:618.471000px;}
.y189{bottom:621.658500px;}
.yb7{bottom:626.466000px;}
.y92{bottom:629.724000px;}
.y13e{bottom:631.278693px;}
.y23a{bottom:631.878000px;}
.y1ab{bottom:634.147500px;}
.y1b9{bottom:636.112950px;}
.y16e{bottom:637.203000px;}
.y65{bottom:638.736000px;}
.y37{bottom:638.803500px;}
.ye0{bottom:640.555500px;}
.y1ec{bottom:643.120500px;}
.y8{bottom:645.510000px;}
.yb6{bottom:646.731000px;}
.y91{bottom:649.987500px;}
.y239{bottom:651.244500px;}
.y13d{bottom:651.528612px;}
.y16d{bottom:653.716500px;}
.y1b8{bottom:654.382950px;}
.y1aa{bottom:657.862500px;}
.ydd{bottom:658.603500px;}
.y64{bottom:658.999500px;}
.y188{bottom:659.256000px;}
.y1eb{bottom:659.634000px;}
.y7{bottom:666.771000px;}
.yb5{bottom:666.994500px;}
.y16c{bottom:670.230000px;}
.y90{bottom:670.252500px;}
.y238{bottom:670.612500px;}
.y13c{bottom:671.778531px;}
.ydf{bottom:672.801000px;}
.y1ea{bottom:676.147500px;}
.yde{bottom:676.536000px;}
.y36{bottom:677.001000px;}
.ye1{bottom:678.346500px;}
.y63{bottom:679.264500px;}
.y1a9{bottom:681.579000px;}
.y16b{bottom:686.742000px;}
.yb4{bottom:687.258000px;}
.y237{bottom:689.979000px;}
.y8f{bottom:690.516000px;}
.y1b5{bottom:691.012950px;}
.y13b{bottom:692.028693px;}
.y1e9{bottom:692.659500px;}
.y35{bottom:697.264500px;}
.ydb{bottom:698.634000px;}
.y62{bottom:699.528000px;}
.y1a8{bottom:705.294000px;}
.yb3{bottom:707.523000px;}
.y1e8{bottom:709.173000px;}
.y236{bottom:709.347000px;}
.y16a{bottom:710.458500px;}
.y8e{bottom:710.781000px;}
.y13a{bottom:712.278612px;}
.yd8{bottom:716.683500px;}
.y34{bottom:717.528000px;}
.y61{bottom:719.791500px;}
.y6{bottom:726.298500px;}
.yb2{bottom:727.786500px;}
.y235{bottom:728.715000px;}
.y1a7{bottom:729.009000px;}
.yda{bottom:730.879500px;}
.y8d{bottom:731.044500px;}
.y139{bottom:732.528531px;}
.y1e7{bottom:733.188000px;}
.y169{bottom:734.173500px;}
.yd9{bottom:734.616000px;}
.ydc{bottom:736.426500px;}
.y33{bottom:737.793000px;}
.y60{bottom:740.056500px;}
.y1a6{bottom:745.522500px;}
.yb1{bottom:748.051500px;}
.y234{bottom:748.081500px;}
.y168{bottom:750.687000px;}
.y8c{bottom:751.308000px;}
.y3{bottom:752.599495px;}
.y138{bottom:752.778873px;}
.y32{bottom:758.056500px;}
.y5f{bottom:760.320000px;}
.yd6{bottom:763.468500px;}
.y233{bottom:767.449500px;}
.yb0{bottom:768.315000px;}
.y1a5{bottom:769.237500px;}
.y1e6{bottom:770.785500px;}
.y8b{bottom:771.573000px;}
.y137{bottom:772.938612px;}
.y167{bottom:774.402000px;}
.y31{bottom:778.321500px;}
.y5e{bottom:780.585000px;}
.yd3{bottom:781.518000px;}
.y232{bottom:786.816000px;}
.yaf{bottom:788.578500px;}
.y8a{bottom:791.836500px;}
.y1a4{bottom:792.954000px;}
.y136{bottom:793.188531px;}
.yd5{bottom:795.714000px;}
.y166{bottom:798.117000px;}
.y30{bottom:798.585000px;}
.yd4{bottom:799.450500px;}
.y5d{bottom:800.848500px;}
.yd7{bottom:801.261000px;}
.y231{bottom:806.184000px;}
.yae{bottom:808.843500px;}
.y89{bottom:812.101500px;}
.y1e5{bottom:812.449500px;}
.y135{bottom:813.438450px;}
.y1a3{bottom:816.669000px;}
.y2f{bottom:818.848500px;}
.y5c{bottom:821.112000px;}
.y165{bottom:821.833500px;}
.y230{bottom:825.552000px;}
.y1e4{bottom:828.963000px;}
.yad{bottom:829.107000px;}
.yd2{bottom:830.841000px;}
.y88{bottom:832.365000px;}
.y164{bottom:838.347000px;}
.y2e{bottom:839.113500px;}
.y1a2{bottom:840.384000px;}
.y22f{bottom:844.918500px;}
.y1e3{bottom:845.475000px;}
.y107{bottom:845.703000px;}
.y20a{bottom:849.372000px;}
.y132{bottom:850.878450px;}
.yd1{bottom:851.106000px;}
.y87{bottom:852.628500px;}
.y163{bottom:854.859000px;}
.yac{bottom:858.337500px;}
.y5b{bottom:859.138500px;}
.y106{bottom:859.899000px;}
.y1e2{bottom:861.988500px;}
.y1a1{bottom:864.100500px;}
.y22e{bottom:864.286500px;}
.y209{bottom:869.635500px;}
.y2d{bottom:870.136500px;}
.yd0{bottom:871.369500px;}
.y162{bottom:871.372500px;}
.y257{bottom:871.375500px;}
.y86{bottom:872.893500px;}
.y105{bottom:874.246500px;}
.y2{bottom:879.369000px;}
.y1a0{bottom:880.612500px;}
.y5a{bottom:880.914000px;}
.y22d{bottom:883.653000px;}
.y1e1{bottom:886.003500px;}
.y2c{bottom:888.294000px;}
.y104{bottom:888.442500px;}
.y208{bottom:889.899000px;}
.y256{bottom:890.742000px;}
.ycf{bottom:891.633000px;}
.y85{bottom:893.157000px;}
.y161{bottom:895.014000px;}
.y59{bottom:897.427500px;}
.y103{bottom:902.640000px;}
.y22c{bottom:903.021000px;}
.y19f{bottom:904.329000px;}
.y255{bottom:910.110000px;}
.y207{bottom:910.164000px;}
.y160{bottom:911.451000px;}
.yce{bottom:911.898000px;}
.y84{bottom:913.422000px;}
.y58{bottom:913.941000px;}
.y2b{bottom:915.417000px;}
.y22b{bottom:922.389000px;}
.y1e0{bottom:923.601000px;}
.y102{bottom:924.039000px;}
.y19e{bottom:928.044000px;}
.y206{bottom:930.427500px;}
.y101{bottom:931.137000px;}
.ycd{bottom:932.161500px;}
.y2a{bottom:933.574500px;}
.y83{bottom:933.685500px;}
.y15f{bottom:935.167500px;}
.y57{bottom:937.956000px;}
.y22a{bottom:941.755500px;}
.y56{bottom:949.710000px;}
.y205{bottom:950.692500px;}
.y15e{bottom:951.681000px;}
.y19d{bottom:951.759000px;}
.ycc{bottom:952.426500px;}
.y82{bottom:953.949000px;}
.y29{bottom:956.613000px;}
.y100{bottom:959.784000px;}
.y1df{bottom:960.705000px;}
.y229{bottom:961.123500px;}
.y1{bottom:966.726000px;}
.y204{bottom:970.956000px;}
.y81{bottom:974.214000px;}
.y28{bottom:974.770500px;}
.y19c{bottom:975.475500px;}
.y15d{bottom:975.694500px;}
.y228{bottom:980.490000px;}
.yff{bottom:981.183000px;}
.ycb{bottom:981.708000px;}
.y203{bottom:991.219500px;}
.yca{bottom:991.960500px;}
.y80{bottom:994.477500px;}
.yfe{bottom:995.380500px;}
.y27{bottom:997.012500px;}
.y1de{bottom:997.855500px;}
.y19b{bottom:999.190500px;}
.y55{bottom:999.268500px;}
.y15c{bottom:999.409500px;}
.y227{bottom:999.858000px;}
.yfd{bottom:1009.726500px;}
.y7f{bottom:1014.742500px;}
.y226{bottom:1019.226000px;}
.y202{bottom:1020.450000px;}
.y19a{bottom:1022.905500px;}
.y15b{bottom:1023.126000px;}
.yfc{bottom:1023.922500px;}
.y54{bottom:1035.006000px;}
.yfb{bottom:1038.120000px;}
.y225{bottom:1038.592500px;}
.y199{bottom:1039.419000px;}
.y26{bottom:1040.848500px;}
.y53{bottom:1055.269500px;}
.y198{bottom:1055.932500px;}
.y224{bottom:1057.960500px;}
.yfa{bottom:1059.967500px;}
.y15a{bottom:1060.722000px;}
.y25{bottom:1071.244500px;}
.y52{bottom:1075.534500px;}
.y223{bottom:1077.327000px;}
.y197{bottom:1079.946000px;}
.yf9{bottom:1081.515000px;}
.y51{bottom:1095.798000px;}
.y222{bottom:1096.695000px;}
.y24{bottom:1100.145000px;}
.y50{bottom:1116.063000px;}
.yf8{bottom:1117.543500px;}
.y22{bottom:1137.954000px;}
.y4f{bottom:1168.366500px;}
.h1b{height:0.059776px;}
.h27{height:24.946585px;}
.h29{height:25.063215px;}
.h34{height:25.338846px;}
.he{height:30.461558px;}
.h7{height:32.130000px;}
.h33{height:32.249282px;}
.h1a{height:33.299897px;}
.h28{height:34.450400px;}
.h1d{height:34.574294px;}
.h2a{height:34.611148px;}
.h15{height:34.813397px;}
.h22{height:34.974844px;}
.h12{height:35.052500px;}
.h35{height:35.320975px;}
.h23{height:36.492188px;}
.h14{height:38.896243px;}
.h2e{height:39.057638px;}
.hf{height:39.165235px;}
.h31{height:39.260742px;}
.h2c{height:39.434227px;}
.h26{height:39.445312px;}
.h1c{height:41.842920px;}
.h10{height:43.217759px;}
.h11{height:43.516637px;}
.h24{height:43.710293px;}
.hb{height:43.815515px;}
.h16{height:44.868485px;}
.h6{height:45.900000px;}
.h32{height:47.988281px;}
.h3{height:48.195000px;}
.h25{height:50.695312px;}
.h9{height:50.930649px;}
.hd{height:54.541601px;}
.h2{height:55.080000px;}
.h1f{height:62.966294px;}
.h1e{height:63.205397px;}
.h2d{height:71.931638px;}
.h2f{height:71.937638px;}
.hc{height:77.792486px;}
.h5{height:78.030000px;}
.h18{height:84.279515px;}
.h17{height:85.312637px;}
.h19{height:85.878485px;}
.h13{height:86.740243px;}
.ha{height:87.128261px;}
.h20{height:91.358294px;}
.h4{height:119.055004px;}
.h21{height:251.562000px;}
.h2b{height:253.974000px;}
.h30{height:309.475500px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:197.247128px;}
.w7{width:318.525000px;}
.w6{width:380.058000px;}
.w5{width:392.122500px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.xb4{left:-171.711000px;}
.x91{left:-141.547500px;}
.xb9{left:-139.851000px;}
.x82{left:-135.516000px;}
.x93{left:-109.687500px;}
.x84{left:-103.656000px;}
.xb6{left:-86.300250px;}
.xb7{left:-69.741000px;}
.xb8{left:-55.522800px;}
.x0{left:0.000000px;}
.x97{left:15.412500px;}
.x9a{left:20.272500px;}
.x88{left:21.444000px;}
.x9b{left:23.152500px;}
.x8c{left:26.304000px;}
.x8d{left:29.184000px;}
.x98{left:34.672500px;}
.xbc{left:37.989000px;}
.x89{left:40.704000px;}
.x94{left:50.062500px;}
.x85{left:56.094000px;}
.x6{left:58.056593px;}
.x96{left:59.872500px;}
.x87{left:65.904000px;}
.x9c{left:67.342500px;}
.x8a{left:72.204000px;}
.x8e{left:73.374000px;}
.xbd{left:82.719000px;}
.xbb{left:93.069000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x99{left:110.272500px;}
.x8f{left:112.704000px;}
.x5{left:114.802500px;}
.x8b{left:116.304000px;}
.x9{left:122.110500px;}
.x7{left:123.307500px;}
.xb3{left:124.471500px;}
.x12{left:126.471000px;}
.xa3{left:132.843000px;}
.xa8{left:135.210000px;}
.x7c{left:138.925500px;}
.xe{left:144.451500px;}
.x8{left:146.170500px;}
.xb0{left:147.945000px;}
.x7d{left:152.913000px;}
.xa6{left:155.626500px;}
.x55{left:157.911000px;}
.x64{left:159.244500px;}
.x7b{left:161.802000px;}
.x6e{left:164.242500px;}
.x59{left:170.935500px;}
.x56{left:172.854000px;}
.x74{left:177.699000px;}
.xb2{left:179.863500px;}
.xc2{left:182.071500px;}
.xc4{left:183.967500px;}
.xa{left:188.287500px;}
.xa1{left:190.312500px;}
.xc1{left:192.291000px;}
.xa4{left:194.199000px;}
.xa5{left:196.747500px;}
.xa0{left:201.205500px;}
.xa2{left:202.329000px;}
.x4{left:203.484001px;}
.x10{left:206.803500px;}
.xa7{left:210.930000px;}
.x2e{left:212.394000px;}
.x11{left:220.569000px;}
.x9f{left:221.757000px;}
.x57{left:223.918500px;}
.x4c{left:226.116000px;}
.x2f{left:227.338500px;}
.xae{left:228.843000px;}
.xc0{left:232.155000px;}
.x58{left:238.863000px;}
.x32{left:242.677500px;}
.xab{left:244.372500px;}
.x81{left:250.396500px;}
.xd4{left:252.414000px;}
.xbe{left:253.506000px;}
.xaa{left:255.199500px;}
.x90{left:256.428000px;}
.x33{left:257.622000px;}
.x1d{left:263.185500px;}
.x71{left:264.507000px;}
.x70{left:265.642500px;}
.x1e{left:270.657000px;}
.x6f{left:271.734000px;}
.x1b{left:275.980500px;}
.x5a{left:277.177500px;}
.x30{left:278.485500px;}
.x1c{left:283.452000px;}
.x3c{left:285.532500px;}
.x66{left:286.540500px;}
.x65{left:287.677500px;}
.x79{left:289.918500px;}
.x46{left:292.416000px;}
.x31{left:293.430000px;}
.x7a{left:294.874500px;}
.x5b{left:298.027500px;}
.x3d{left:300.475500px;}
.x50{left:304.431000px;}
.x47{left:307.359000px;}
.x67{left:308.526000px;}
.xba{left:315.189000px;}
.x52{left:318.052500px;}
.xc3{left:320.263500px;}
.x9e{left:323.367000px;}
.x19{left:324.447000px;}
.xad{left:325.909500px;}
.x7f{left:327.969000px;}
.x25{left:330.676500px;}
.x1a{left:331.920000px;}
.xd{left:333.132000px;}
.x4f{left:337.273500px;}
.xc6{left:338.695500px;}
.x26{left:345.621000px;}
.x21{left:347.949000px;}
.xc7{left:350.316000px;}
.x22{left:355.420500px;}
.xa9{left:357.555000px;}
.x4b{left:360.423000px;}
.x9d{left:362.028000px;}
.xb1{left:365.322000px;}
.x34{left:368.568000px;}
.xbf{left:370.252500px;}
.x7e{left:371.743500px;}
.x14{left:374.397000px;}
.x95{left:379.282500px;}
.x35{left:383.512500px;}
.x86{left:385.314000px;}
.x48{left:389.535000px;}
.x40{left:391.795500px;}
.xf{left:392.929500px;}
.x72{left:394.212000px;}
.x5e{left:398.535000px;}
.x5d{left:399.672000px;}
.x5c{left:405.342000px;}
.x41{left:406.740000px;}
.xaf{left:408.166500px;}
.x69{left:409.432500px;}
.x13{left:410.715000px;}
.x73{left:415.062000px;}
.x68{left:416.239500px;}
.x5f{left:420.522000px;}
.x2b{left:427.633500px;}
.x27{left:430.248000px;}
.x6a{left:431.418000px;}
.x42{left:433.479000px;}
.x75{left:437.682000px;}
.xc8{left:440.497500px;}
.x2c{left:442.578000px;}
.x28{left:445.192500px;}
.x43{left:448.422000px;}
.xc9{left:452.118000px;}
.x3{left:454.959000px;}
.xc5{left:459.982500px;}
.xb5{left:478.088850px;}
.x51{left:490.222500px;}
.xac{left:505.158000px;}
.x62{left:512.452500px;}
.x61{left:513.588000px;}
.x92{left:515.002350px;}
.x60{left:518.730000px;}
.x83{left:521.033850px;}
.x76{left:525.036000px;}
.x3e{left:531.207000px;}
.x63{left:534.438000px;}
.x17{left:536.350500px;}
.xca{left:537.615000px;}
.x53{left:542.623500px;}
.x18{left:543.822000px;}
.x3f{left:546.150000px;}
.x6c{left:550.779000px;}
.x6b{left:551.916000px;}
.x54{left:557.568000px;}
.x6d{left:572.764500px;}
.x1f{left:577.438500px;}
.xcb{left:583.440000px;}
.x20{left:584.910000px;}
.x2d{left:592.392000px;}
.x80{left:620.661000px;}
.x4d{left:631.198500px;}
.x44{left:635.994000px;}
.x4e{left:646.143000px;}
.x45{left:650.938500px;}
.xb{left:654.570000px;}
.xc{left:662.043000px;}
.xce{left:663.145500px;}
.x29{left:665.938500px;}
.x38{left:673.911000px;}
.x2a{left:680.883000px;}
.x39{left:688.855500px;}
.x15{left:690.264000px;}
.x3a{left:694.281000px;}
.x16{left:697.735500px;}
.xd3{left:700.930500px;}
.x3b{left:709.224000px;}
.x23{left:723.105000px;}
.x49{left:724.782000px;}
.x77{left:727.980000px;}
.xcc{left:729.567000px;}
.x24{left:730.576500px;}
.xd1{left:736.135500px;}
.x4a{left:739.726500px;}
.x78{left:742.456500px;}
.xcf{left:749.590500px;}
.xcd{left:756.465000px;}
.x36{left:758.091000px;}
.xd2{left:763.035000px;}
.x37{left:773.034000px;}
.xd0{left:776.490000px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v4{vertical-align:-9.904000pt;}
.v6{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:7.973333pt;}
.va{vertical-align:10.453333pt;}
.v1{vertical-align:19.285333pt;}
.vb{vertical-align:25.237333pt;}
.v8{vertical-align:26.544000pt;}
.vc{vertical-align:29.221333pt;}
.v7{vertical-align:35.968000pt;}
.v5{vertical-align:37.146667pt;}
.v3{vertical-align:42.528000pt;}
.lsd6{letter-spacing:-2.381868pt;}
.lsde{letter-spacing:-1.897266pt;}
.lsdf{letter-spacing:-1.606556pt;}
.lsd5{letter-spacing:-1.184842pt;}
.lsdc{letter-spacing:-1.175081pt;}
.ls130{letter-spacing:-1.059186pt;}
.ls12f{letter-spacing:-1.000123pt;}
.lsdd{letter-spacing:-0.884371pt;}
.lsd4{letter-spacing:-0.726784pt;}
.ls121{letter-spacing:-0.705408pt;}
.lsd1{letter-spacing:-0.700064pt;}
.ls11b{letter-spacing:-0.694720pt;}
.lsd2{letter-spacing:-0.614560pt;}
.lscd{letter-spacing:-0.609216pt;}
.ls123{letter-spacing:-0.603872pt;}
.lscf{letter-spacing:-0.598528pt;}
.lsce{letter-spacing:-0.593184pt;}
.lscc{letter-spacing:-0.587840pt;}
.lsd0{letter-spacing:-0.577152pt;}
.ls11e{letter-spacing:-0.571808pt;}
.lsd3{letter-spacing:-0.561120pt;}
.ls11c{letter-spacing:-0.550432pt;}
.ls11f{letter-spacing:-0.545088pt;}
.ls11d{letter-spacing:-0.513024pt;}
.ls122{letter-spacing:-0.491648pt;}
.ls99{letter-spacing:-0.470272pt;}
.lsb3{letter-spacing:-0.464928pt;}
.lsa2{letter-spacing:-0.443552pt;}
.ls120{letter-spacing:-0.438208pt;}
.lsc4{letter-spacing:-0.432864pt;}
.lsc1{letter-spacing:-0.427520pt;}
.lsca{letter-spacing:-0.411488pt;}
.ls115{letter-spacing:-0.406144pt;}
.ls114{letter-spacing:-0.403200pt;}
.ls9d{letter-spacing:-0.400800pt;}
.ls93{letter-spacing:-0.384768pt;}
.ls12c{letter-spacing:-0.379424pt;}
.ls12e{letter-spacing:-0.377999pt;}
.lsb2{letter-spacing:-0.374080pt;}
.ls134{letter-spacing:-0.323440pt;}
.ls125{letter-spacing:-0.315296pt;}
.lsbe{letter-spacing:-0.309952pt;}
.ls124{letter-spacing:-0.304608pt;}
.ls119{letter-spacing:-0.299264pt;}
.lsc9{letter-spacing:-0.288576pt;}
.lsc5{letter-spacing:-0.277888pt;}
.ls128{letter-spacing:-0.272544pt;}
.lsb7{letter-spacing:-0.267200pt;}
.ls116{letter-spacing:-0.261856pt;}
.lsac{letter-spacing:-0.251168pt;}
.ls12d{letter-spacing:-0.245824pt;}
.lsdb{letter-spacing:-0.243962pt;}
.ls12b{letter-spacing:-0.240480pt;}
.lsae{letter-spacing:-0.229792pt;}
.lsbf{letter-spacing:-0.224448pt;}
.lsbd{letter-spacing:-0.206400pt;}
.ls11a{letter-spacing:-0.203072pt;}
.lsc0{letter-spacing:-0.197728pt;}
.lsc3{letter-spacing:-0.192384pt;}
.ls129{letter-spacing:-0.187040pt;}
.ls12a{letter-spacing:-0.181696pt;}
.lsb5{letter-spacing:-0.171008pt;}
.lsc2{letter-spacing:-0.168000pt;}
.lsc8{letter-spacing:-0.165664pt;}
.lsa3{letter-spacing:-0.160320pt;}
.lsaa{letter-spacing:-0.154976pt;}
.lsab{letter-spacing:-0.149632pt;}
.lsb0{letter-spacing:-0.144288pt;}
.lse2{letter-spacing:-0.143825pt;}
.ls95{letter-spacing:-0.138944pt;}
.lsb1{letter-spacing:-0.133600pt;}
.ls126{letter-spacing:-0.128256pt;}
.lse3{letter-spacing:-0.126776pt;}
.lsc6{letter-spacing:-0.122912pt;}
.ls112{letter-spacing:-0.120000pt;}
.lsa7{letter-spacing:-0.117568pt;}
.ls97{letter-spacing:-0.112224pt;}
.ls110{letter-spacing:-0.110400pt;}
.ls9e{letter-spacing:-0.106880pt;}
.lsa4{letter-spacing:-0.101536pt;}
.lsa0{letter-spacing:-0.096192pt;}
.lscb{letter-spacing:-0.090848pt;}
.lsad{letter-spacing:-0.085504pt;}
.ls127{letter-spacing:-0.081600pt;}
.lsc7{letter-spacing:-0.080160pt;}
.ls98{letter-spacing:-0.074816pt;}
.lsa8{letter-spacing:-0.069472pt;}
.ls131{letter-spacing:-0.066937pt;}
.ls9a{letter-spacing:-0.064128pt;}
.lsaf{letter-spacing:-0.058784pt;}
.ls9b{letter-spacing:-0.053440pt;}
.lsa6{letter-spacing:-0.048096pt;}
.lsb6{letter-spacing:-0.042752pt;}
.ls9f{letter-spacing:-0.037408pt;}
.lsb9{letter-spacing:-0.033600pt;}
.ls94{letter-spacing:-0.032064pt;}
.ls96{letter-spacing:-0.026720pt;}
.lsb4{letter-spacing:-0.021376pt;}
.lsb8{letter-spacing:-0.019200pt;}
.lsa5{letter-spacing:-0.016032pt;}
.lsa1{letter-spacing:-0.010688pt;}
.ls111{letter-spacing:-0.009600pt;}
.ls9c{letter-spacing:-0.005344pt;}
.lsbb{letter-spacing:-0.004800pt;}
.ls91{letter-spacing:-0.004256pt;}
.ls0{letter-spacing:0.000000pt;}
.ls149{letter-spacing:0.000054pt;}
.ls151{letter-spacing:0.000078pt;}
.ls5{letter-spacing:0.000283pt;}
.ls3c{letter-spacing:0.000540pt;}
.ls22{letter-spacing:0.000551pt;}
.lse5{letter-spacing:0.001007pt;}
.ls14f{letter-spacing:0.001158pt;}
.lsea{letter-spacing:0.001382pt;}
.ls10a{letter-spacing:0.001600pt;}
.lse4{letter-spacing:0.002193pt;}
.ls9{letter-spacing:0.002219pt;}
.lse{letter-spacing:0.002886pt;}
.ls145{letter-spacing:0.003148pt;}
.ls32{letter-spacing:0.003733pt;}
.ls13e{letter-spacing:0.003878pt;}
.ls141{letter-spacing:0.004147pt;}
.ls14d{letter-spacing:0.004267pt;}
.ls79{letter-spacing:0.005344pt;}
.ls85{letter-spacing:0.009600pt;}
.ls60{letter-spacing:0.010688pt;}
.lsee{letter-spacing:0.014400pt;}
.ls74{letter-spacing:0.016032pt;}
.ls75{letter-spacing:0.021376pt;}
.ls69{letter-spacing:0.026720pt;}
.lsf7{letter-spacing:0.028800pt;}
.ls6c{letter-spacing:0.032064pt;}
.ls81{letter-spacing:0.033600pt;}
.ls65{letter-spacing:0.037408pt;}
.lsba{letter-spacing:0.038400pt;}
.ls64{letter-spacing:0.042752pt;}
.lsfd{letter-spacing:0.048000pt;}
.ls6b{letter-spacing:0.048096pt;}
.ls80{letter-spacing:0.052800pt;}
.ls6f{letter-spacing:0.053440pt;}
.lsf4{letter-spacing:0.057600pt;}
.ls66{letter-spacing:0.058784pt;}
.ls117{letter-spacing:0.064128pt;}
.lsf2{letter-spacing:0.067200pt;}
.ls7c{letter-spacing:0.069472pt;}
.lsfb{letter-spacing:0.072000pt;}
.ls87{letter-spacing:0.074816pt;}
.ls76{letter-spacing:0.080160pt;}
.ls72{letter-spacing:0.085504pt;}
.ls107{letter-spacing:0.086400pt;}
.lsfc{letter-spacing:0.091200pt;}
.ls113{letter-spacing:0.096000pt;}
.ls7d{letter-spacing:0.101536pt;}
.lsbc{letter-spacing:0.110400pt;}
.ls6d{letter-spacing:0.112224pt;}
.ls118{letter-spacing:0.117568pt;}
.ls5e{letter-spacing:0.119168pt;}
.lsa9{letter-spacing:0.122912pt;}
.ls92{letter-spacing:0.127680pt;}
.ls86{letter-spacing:0.128256pt;}
.ls7e{letter-spacing:0.144288pt;}
.ls7f{letter-spacing:0.158400pt;}
.ls67{letter-spacing:0.160320pt;}
.ls5d{letter-spacing:0.161728pt;}
.lse0{letter-spacing:0.168306pt;}
.lsda{letter-spacing:0.201027pt;}
.lsd8{letter-spacing:0.216257pt;}
.ls47{letter-spacing:0.219218pt;}
.ls43{letter-spacing:0.224551pt;}
.ls40{letter-spacing:0.225067pt;}
.ls132{letter-spacing:0.240187pt;}
.ls2e{letter-spacing:0.397593pt;}
.ls106{letter-spacing:0.400800pt;}
.ls27{letter-spacing:0.402926pt;}
.lse1{letter-spacing:0.416175pt;}
.lsd7{letter-spacing:0.417284pt;}
.lsd9{letter-spacing:0.426421pt;}
.ls8f{letter-spacing:0.431475pt;}
.lsfa{letter-spacing:0.480000pt;}
.ls57{letter-spacing:0.499505pt;}
.ls28{letter-spacing:0.502400pt;}
.ls21{letter-spacing:0.504838pt;}
.ls3a{letter-spacing:0.507733pt;}
.ls133{letter-spacing:0.572346pt;}
.ls34{letter-spacing:0.658886pt;}
.ls59{letter-spacing:0.659230pt;}
.lsa{letter-spacing:0.659985pt;}
.ls136{letter-spacing:0.662839pt;}
.ls4a{letter-spacing:0.664563pt;}
.ls12{letter-spacing:0.665318pt;}
.ls33{letter-spacing:0.665874pt;}
.ls105{letter-spacing:0.721440pt;}
.ls10f{letter-spacing:0.767811pt;}
.ls3f{letter-spacing:0.784508pt;}
.ls45{letter-spacing:0.789841pt;}
.lsf9{letter-spacing:0.801600pt;}
.ls54{letter-spacing:0.898926pt;}
.ls4d{letter-spacing:0.904259pt;}
.ls148{letter-spacing:0.955042pt;}
.ls63{letter-spacing:1.042080pt;}
.lsd{letter-spacing:1.328347pt;}
.ls2c{letter-spacing:1.328689pt;}
.ls38{letter-spacing:1.333486pt;}
.ls61{letter-spacing:1.357376pt;}
.ls62{letter-spacing:1.362720pt;}
.ls14{letter-spacing:1.458886pt;}
.ls17{letter-spacing:1.464219pt;}
.ls104{letter-spacing:1.678016pt;}
.lsc{letter-spacing:1.724111pt;}
.ls13{letter-spacing:1.729444pt;}
.ls42{letter-spacing:1.857506pt;}
.ls3d{letter-spacing:1.862839pt;}
.ls4f{letter-spacing:1.915733pt;}
.ls8b{letter-spacing:1.998656pt;}
.ls49{letter-spacing:2.017506pt;}
.ls25{letter-spacing:2.020541pt;}
.ls1a{letter-spacing:2.124173pt;}
.ls30{letter-spacing:2.129506pt;}
.ls8c{letter-spacing:2.319296pt;}
.ls7b{letter-spacing:2.639936pt;}
.ls46{letter-spacing:2.652173pt;}
.ls13c{letter-spacing:2.654172pt;}
.ls13b{letter-spacing:2.657067pt;}
.ls56{letter-spacing:2.657506pt;}
.ls13f{letter-spacing:2.659505pt;}
.ls3e{letter-spacing:2.922363pt;}
.ls7a{letter-spacing:2.960576pt;}
.ls100{letter-spacing:3.281216pt;}
.ls4b{letter-spacing:3.318400pt;}
.ls52{letter-spacing:3.323733pt;}
.ls53{letter-spacing:3.557666pt;}
.ls4c{letter-spacing:3.562999pt;}
.ls101{letter-spacing:3.601856pt;}
.ls51{letter-spacing:3.824508pt;}
.ls50{letter-spacing:3.829841pt;}
.ls84{letter-spacing:3.917152pt;}
.ls83{letter-spacing:3.922496pt;}
.ls41{letter-spacing:4.107174pt;}
.ls82{letter-spacing:4.237792pt;}
.ls70{letter-spacing:4.558432pt;}
.ls6e{letter-spacing:4.879072pt;}
.ls89{letter-spacing:5.199712pt;}
.ls8a{letter-spacing:5.515648pt;}
.ls88{letter-spacing:5.520352pt;}
.ls71{letter-spacing:5.840992pt;}
.ls73{letter-spacing:6.161632pt;}
.lsff{letter-spacing:6.797568pt;}
.lsfe{letter-spacing:7.118208pt;}
.ls6a{letter-spacing:7.759488pt;}
.ls68{letter-spacing:8.080128pt;}
.ls78{letter-spacing:9.677984pt;}
.ls77{letter-spacing:9.998624pt;}
.ls20{letter-spacing:10.317553pt;}
.ls109{letter-spacing:10.319264pt;}
.ls31{letter-spacing:10.325772pt;}
.ls1f{letter-spacing:10.331105pt;}
.ls4{letter-spacing:10.626533pt;}
.ls108{letter-spacing:10.639904pt;}
.ls37{letter-spacing:10.969067pt;}
.ls24{letter-spacing:10.992439pt;}
.ls1e{letter-spacing:10.995733pt;}
.ls2d{letter-spacing:10.997772pt;}
.ls35{letter-spacing:10.999756pt;}
.lseb{letter-spacing:11.950302pt;}
.ls14a{letter-spacing:11.954133pt;}
.lsec{letter-spacing:11.956267pt;}
.ls152{letter-spacing:11.959467pt;}
.lse7{letter-spacing:12.008254pt;}
.ls14b{letter-spacing:12.044800pt;}
.ls14e{letter-spacing:12.058200pt;}
.lse9{letter-spacing:12.061388pt;}
.ls14c{letter-spacing:12.188871pt;}
.lse8{letter-spacing:12.220789pt;}
.ls150{letter-spacing:12.226557pt;}
.ls103{letter-spacing:12.237760pt;}
.ls26{letter-spacing:12.271207pt;}
.lsb{letter-spacing:12.325772pt;}
.ls102{letter-spacing:12.558400pt;}
.ls1d{letter-spacing:12.589897pt;}
.ls23{letter-spacing:12.987733pt;}
.ls39{letter-spacing:12.993067pt;}
.ls153{letter-spacing:13.090552pt;}
.ls3{letter-spacing:13.177199pt;}
.ls90{letter-spacing:13.230333pt;}
.ls142{letter-spacing:13.281867pt;}
.ls11{letter-spacing:13.282219pt;}
.ls8{letter-spacing:13.283467pt;}
.ls143{letter-spacing:13.287200pt;}
.ls6{letter-spacing:13.389734pt;}
.ls7{letter-spacing:13.549136pt;}
.ls147{letter-spacing:13.549897pt;}
.ls44{letter-spacing:13.771174pt;}
.ls48{letter-spacing:13.776508pt;}
.lsf{letter-spacing:13.943552pt;}
.ls15{letter-spacing:13.948885pt;}
.ls5c{letter-spacing:14.133609pt;}
.ls135{letter-spacing:14.293010pt;}
.ls5b{letter-spacing:14.399278pt;}
.ls18{letter-spacing:15.275105pt;}
.ls1c{letter-spacing:15.419105pt;}
.ls2b{letter-spacing:15.424439pt;}
.ls144{letter-spacing:15.942400pt;}
.ls2a{letter-spacing:17.918172pt;}
.ls1b{letter-spacing:17.923505pt;}
.ls36{letter-spacing:18.059105pt;}
.ls13d{letter-spacing:19.184439pt;}
.ls13a{letter-spacing:19.189772pt;}
.ls5a{letter-spacing:19.771105pt;}
.ls146{letter-spacing:20.690916pt;}
.ls139{letter-spacing:21.841067pt;}
.ls138{letter-spacing:23.616439pt;}
.ls137{letter-spacing:26.270172pt;}
.ls2{letter-spacing:59.775565pt;}
.ls1{letter-spacing:62.432533pt;}
.ls8d{letter-spacing:65.089362pt;}
.ls8e{letter-spacing:91.752547pt;}
.ls55{letter-spacing:98.558172pt;}
.ls58{letter-spacing:116.328838pt;}
.ls4e{letter-spacing:140.126172pt;}
.ls10d{letter-spacing:161.983537pt;}
.lsf1{letter-spacing:162.398400pt;}
.lsf3{letter-spacing:167.198400pt;}
.ls10e{letter-spacing:167.884963pt;}
.lsf6{letter-spacing:195.360000pt;}
.lsf8{letter-spacing:212.961600pt;}
.lsef{letter-spacing:220.641600pt;}
.ls10{letter-spacing:251.645553pt;}
.ls16{letter-spacing:284.082886pt;}
.lsf0{letter-spacing:315.681600pt;}
.ls140{letter-spacing:406.638172pt;}
.lsf5{letter-spacing:421.281600pt;}
.lse6{letter-spacing:426.145007pt;}
.ls10b{letter-spacing:463.760000pt;}
.ls3b{letter-spacing:542.430172pt;}
.ls2f{letter-spacing:614.776838pt;}
.ls29{letter-spacing:731.550172pt;}
.ls10c{letter-spacing:752.000000pt;}
.ls19{letter-spacing:850.989553pt;}
.lsed{letter-spacing:1838.319616pt;}
.ls5f{letter-spacing:1859.761344pt;}
.ws13d{word-spacing:-53.520160pt;}
.wsb3{word-spacing:-53.440000pt;}
.ws13e{word-spacing:-53.199520pt;}
.wsc5{word-spacing:-48.000000pt;}
.ws85{word-spacing:-42.560000pt;}
.ws5e{word-spacing:-41.316895pt;}
.ws13f{word-spacing:-32.000000pt;}
.ws64{word-spacing:-31.008925pt;}
.ws60{word-spacing:-26.545680pt;}
.ws14{word-spacing:-13.283467pt;}
.wsf6{word-spacing:-11.955200pt;}
.ws147{word-spacing:-11.714043pt;}
.ws1b{word-spacing:-10.626800pt;}
.ws1{word-spacing:-10.095467pt;}
.ws144{word-spacing:-9.887046pt;}
.ws73{word-spacing:-2.975497pt;}
.ws29{word-spacing:-2.391024pt;}
.ws12{word-spacing:-2.337890pt;}
.ws5b{word-spacing:-2.284756pt;}
.ws159{word-spacing:-2.019087pt;}
.ws16d{word-spacing:-2.008474pt;}
.ws5a{word-spacing:-1.965953pt;}
.ws77{word-spacing:-1.859685pt;}
.wse{word-spacing:-1.753418pt;}
.ws27{word-spacing:-1.594016pt;}
.ws170{word-spacing:-1.578086pt;}
.ws37{word-spacing:-1.487748pt;}
.ws105{word-spacing:-1.434614pt;}
.ws7a{word-spacing:-1.381481pt;}
.ws3{word-spacing:-1.275213pt;}
.ws104{word-spacing:-1.222079pt;}
.ws103{word-spacing:-1.168945pt;}
.ws187{word-spacing:-1.147699pt;}
.ws15{word-spacing:-1.115811pt;}
.wsf3{word-spacing:-1.064917pt;}
.ws19{word-spacing:-1.062677pt;}
.wsef{word-spacing:-1.050824pt;}
.ws4a{word-spacing:-0.956410pt;}
.wsf2{word-spacing:-0.817048pt;}
.ws148{word-spacing:-0.782721pt;}
.ws4f{word-spacing:-0.690740pt;}
.wsee{word-spacing:-0.560439pt;}
.ws53{word-spacing:-0.425071pt;}
.ws54{word-spacing:-0.371937pt;}
.ws28{word-spacing:-0.318803pt;}
.ws177{word-spacing:-0.286925pt;}
.ws2{word-spacing:-0.265669pt;}
.ws162{word-spacing:-0.239104pt;}
.ws96{word-spacing:-0.213760pt;}
.wsf{word-spacing:-0.212535pt;}
.ws86{word-spacing:-0.204288pt;}
.wsc1{word-spacing:-0.197728pt;}
.ws165{word-spacing:-0.191283pt;}
.ws9c{word-spacing:-0.181696pt;}
.wsab{word-spacing:-0.176352pt;}
.ws128{word-spacing:-0.171008pt;}
.ws88{word-spacing:-0.170240pt;}
.ws9e{word-spacing:-0.165664pt;}
.ws6{word-spacing:-0.159402pt;}
.wsca{word-spacing:-0.158400pt;}
.wsc0{word-spacing:-0.154976pt;}
.ws123{word-spacing:-0.144000pt;}
.ws167{word-spacing:-0.143462pt;}
.ws121{word-spacing:-0.139200pt;}
.wsa9{word-spacing:-0.138944pt;}
.ws138{word-spacing:-0.134400pt;}
.wsbc{word-spacing:-0.133600pt;}
.wsd9{word-spacing:-0.128256pt;}
.wsbf{word-spacing:-0.122912pt;}
.ws120{word-spacing:-0.120000pt;}
.ws127{word-spacing:-0.117568pt;}
.ws11c{word-spacing:-0.115200pt;}
.ws94{word-spacing:-0.112224pt;}
.wsa3{word-spacing:-0.106880pt;}
.wsb{word-spacing:-0.106268pt;}
.ws11d{word-spacing:-0.105600pt;}
.ws9a{word-spacing:-0.101536pt;}
.wsc6{word-spacing:-0.100800pt;}
.ws8d{word-spacing:-0.096192pt;}
.ws122{word-spacing:-0.096000pt;}
.ws166{word-spacing:-0.095642pt;}
.ws91{word-spacing:-0.090848pt;}
.wsc8{word-spacing:-0.086400pt;}
.ws9b{word-spacing:-0.085504pt;}
.wsc7{word-spacing:-0.081600pt;}
.ws98{word-spacing:-0.080160pt;}
.ws11e{word-spacing:-0.076800pt;}
.wsb1{word-spacing:-0.074816pt;}
.wsb0{word-spacing:-0.069472pt;}
.ws89{word-spacing:-0.064128pt;}
.ws11a{word-spacing:-0.062400pt;}
.wsb7{word-spacing:-0.058784pt;}
.wsd1{word-spacing:-0.057600pt;}
.ws99{word-spacing:-0.053440pt;}
.ws16{word-spacing:-0.053134pt;}
.ws95{word-spacing:-0.048096pt;}
.wsc3{word-spacing:-0.048000pt;}
.ws107{word-spacing:-0.047821pt;}
.wsc9{word-spacing:-0.043200pt;}
.wsa1{word-spacing:-0.042752pt;}
.ws87{word-spacing:-0.042560pt;}
.ws1c{word-spacing:-0.042507pt;}
.ws11b{word-spacing:-0.038400pt;}
.ws84{word-spacing:-0.038304pt;}
.wsa6{word-spacing:-0.037408pt;}
.wsba{word-spacing:-0.032064pt;}
.ws13c{word-spacing:-0.032000pt;}
.wsc2{word-spacing:-0.028800pt;}
.ws8e{word-spacing:-0.026720pt;}
.ws182{word-spacing:-0.025353pt;}
.ws8b{word-spacing:-0.021376pt;}
.ws50{word-spacing:-0.020109pt;}
.ws9f{word-spacing:-0.016032pt;}
.wsc4{word-spacing:-0.014400pt;}
.wsbd{word-spacing:-0.010688pt;}
.wsa7{word-spacing:-0.005344pt;}
.ws14c{word-spacing:-0.002201pt;}
.ws151{word-spacing:-0.000734pt;}
.ws0{word-spacing:0.000000pt;}
.wsb4{word-spacing:0.005344pt;}
.ws93{word-spacing:0.010688pt;}
.wsf0{word-spacing:0.015229pt;}
.wsaa{word-spacing:0.016032pt;}
.wsf5{word-spacing:0.016903pt;}
.ws90{word-spacing:0.021376pt;}
.wsd6{word-spacing:0.026720pt;}
.wsaf{word-spacing:0.032064pt;}
.ws137{word-spacing:0.033600pt;}
.wsdb{word-spacing:0.037408pt;}
.wsa0{word-spacing:0.042752pt;}
.ws154{word-spacing:0.047821pt;}
.wsa5{word-spacing:0.048096pt;}
.ws11{word-spacing:0.053134pt;}
.ws9d{word-spacing:0.053440pt;}
.ws8f{word-spacing:0.058784pt;}
.ws119{word-spacing:0.062400pt;}
.wsa8{word-spacing:0.064128pt;}
.wsd5{word-spacing:0.069472pt;}
.ws11f{word-spacing:0.072000pt;}
.ws136{word-spacing:0.074816pt;}
.wsb6{word-spacing:0.080160pt;}
.ws8c{word-spacing:0.085504pt;}
.wsb5{word-spacing:0.090848pt;}
.ws22{word-spacing:0.095642pt;}
.wsad{word-spacing:0.096192pt;}
.wsac{word-spacing:0.101536pt;}
.ws1d{word-spacing:0.106268pt;}
.wsa4{word-spacing:0.106880pt;}
.wsd7{word-spacing:0.112224pt;}
.wsbb{word-spacing:0.117568pt;}
.wsd0{word-spacing:0.120000pt;}
.ws13b{word-spacing:0.128256pt;}
.ws13a{word-spacing:0.133600pt;}
.wsd2{word-spacing:0.138944pt;}
.ws16f{word-spacing:0.143462pt;}
.wsce{word-spacing:0.144288pt;}
.ws12a{word-spacing:0.149632pt;}
.wscb{word-spacing:0.158400pt;}
.ws7{word-spacing:0.159402pt;}
.wscd{word-spacing:0.171008pt;}
.wsb2{word-spacing:0.176352pt;}
.ws141{word-spacing:0.192384pt;}
.wsae{word-spacing:0.197728pt;}
.ws126{word-spacing:0.208416pt;}
.ws2c{word-spacing:0.212535pt;}
.wsbe{word-spacing:0.213760pt;}
.ws139{word-spacing:0.219104pt;}
.wsd4{word-spacing:0.224448pt;}
.wsd8{word-spacing:0.235136pt;}
.ws15e{word-spacing:0.239104pt;}
.ws129{word-spacing:0.245824pt;}
.ws134{word-spacing:0.251168pt;}
.wscc{word-spacing:0.256512pt;}
.ws135{word-spacing:0.261856pt;}
.ws2a{word-spacing:0.265669pt;}
.wsf1{word-spacing:0.315468pt;}
.ws58{word-spacing:0.318803pt;}
.wsb8{word-spacing:0.320640pt;}
.ws140{word-spacing:0.325984pt;}
.ws8a{word-spacing:0.331328pt;}
.ws97{word-spacing:0.347360pt;}
.ws125{word-spacing:0.352704pt;}
.ws124{word-spacing:0.355200pt;}
.wsda{word-spacing:0.358048pt;}
.wsf4{word-spacing:0.367213pt;}
.wscf{word-spacing:0.374080pt;}
.wsd3{word-spacing:0.379424pt;}
.ws130{word-spacing:0.384768pt;}
.wsa2{word-spacing:0.390112pt;}
.wsb9{word-spacing:0.411488pt;}
.ws92{word-spacing:0.416832pt;}
.ws158{word-spacing:0.425071pt;}
.ws168{word-spacing:0.430387pt;}
.ws132{word-spacing:0.438208pt;}
.ws156{word-spacing:0.442586pt;}
.ws149{word-spacing:0.457129pt;}
.ws12d{word-spacing:0.459584pt;}
.wsed{word-spacing:0.478205pt;}
.ws12f{word-spacing:0.491648pt;}
.ws12c{word-spacing:0.496992pt;}
.wse3{word-spacing:0.507680pt;}
.ws12e{word-spacing:0.518368pt;}
.wse0{word-spacing:0.523712pt;}
.ws45{word-spacing:0.531339pt;}
.wsdc{word-spacing:0.534400pt;}
.wsde{word-spacing:0.539744pt;}
.wsdf{word-spacing:0.545088pt;}
.ws43{word-spacing:0.545386pt;}
.ws133{word-spacing:0.550432pt;}
.wsdd{word-spacing:0.555776pt;}
.wse2{word-spacing:0.561120pt;}
.ws12b{word-spacing:0.641280pt;}
.wse1{word-spacing:0.646624pt;}
.ws131{word-spacing:0.651968pt;}
.ws178{word-spacing:0.669491pt;}
.wse4{word-spacing:0.673344pt;}
.wsc{word-spacing:0.690740pt;}
.ws48{word-spacing:0.743874pt;}
.ws25{word-spacing:0.797008pt;}
.ws160{word-spacing:0.812954pt;}
.ws17{word-spacing:0.850142pt;}
.ws180{word-spacing:0.860774pt;}
.ws7c{word-spacing:0.903276pt;}
.ws5{word-spacing:0.956410pt;}
.ws7e{word-spacing:1.009543pt;}
.ws2b{word-spacing:1.062677pt;}
.ws2e{word-spacing:1.115811pt;}
.ws181{word-spacing:1.147699pt;}
.ws5c{word-spacing:1.168945pt;}
.ws3e{word-spacing:1.222079pt;}
.ws4b{word-spacing:1.275213pt;}
.ws13{word-spacing:1.381481pt;}
.ws3b{word-spacing:1.434614pt;}
.ws18a{word-spacing:1.482445pt;}
.ws10b{word-spacing:1.487748pt;}
.ws33{word-spacing:1.540882pt;}
.ws7f{word-spacing:1.594016pt;}
.ws15a{word-spacing:1.700284pt;}
.ws3c{word-spacing:1.753418pt;}
.ws39{word-spacing:1.806551pt;}
.wsec{word-spacing:1.912819pt;}
.ws173{word-spacing:1.912832pt;}
.ws42{word-spacing:1.965953pt;}
.ws4{word-spacing:2.019087pt;}
.ws38{word-spacing:2.072221pt;}
.ws46{word-spacing:2.284756pt;}
.ws6e{word-spacing:2.337890pt;}
.ws185{word-spacing:2.343219pt;}
.ws1e{word-spacing:2.444158pt;}
.ws15c{word-spacing:2.497292pt;}
.ws78{word-spacing:2.622060pt;}
.ws47{word-spacing:2.709827pt;}
.ws56{word-spacing:2.762961pt;}
.ws4d{word-spacing:2.816095pt;}
.ws36{word-spacing:2.869229pt;}
.ws164{word-spacing:2.869248pt;}
.ws66{word-spacing:2.888000pt;}
.ws61{word-spacing:2.893333pt;}
.ws5d{word-spacing:2.922363pt;}
.ws7d{word-spacing:2.975497pt;}
.ws175{word-spacing:3.012710pt;}
.ws8{word-spacing:3.028630pt;}
.ws18{word-spacing:3.134898pt;}
.ws9{word-spacing:3.185311pt;}
.ws3f{word-spacing:3.188032pt;}
.ws41{word-spacing:3.506835pt;}
.ws59{word-spacing:3.559969pt;}
.ws2f{word-spacing:3.878772pt;}
.ws15b{word-spacing:3.985040pt;}
.ws80{word-spacing:4.038174pt;}
.ws32{word-spacing:4.144442pt;}
.ws183{word-spacing:4.351693pt;}
.ws35{word-spacing:4.463245pt;}
.ws7b{word-spacing:4.516379pt;}
.ws4e{word-spacing:4.622646pt;}
.ws26{word-spacing:4.675780pt;}
.ws3a{word-spacing:4.728914pt;}
.ws17e{word-spacing:4.973363pt;}
.ws52{word-spacing:4.994583pt;}
.wsd{word-spacing:5.100851pt;}
.ws2d{word-spacing:5.207119pt;}
.ws10a{word-spacing:5.260253pt;}
.ws102{word-spacing:5.398414pt;}
.ws4c{word-spacing:5.419654pt;}
.ws34{word-spacing:5.685324pt;}
.ws16e{word-spacing:6.025421pt;}
.ws57{word-spacing:6.269796pt;}
.ws74{word-spacing:6.524800pt;}
.ws72{word-spacing:6.907403pt;}
.ws67{word-spacing:7.037333pt;}
.ws6c{word-spacing:7.042667pt;}
.ws150{word-spacing:7.119938pt;}
.ws14f{word-spacing:7.173072pt;}
.ws75{word-spacing:7.319467pt;}
.ws6f{word-spacing:7.332474pt;}
.ws70{word-spacing:7.385607pt;}
.ws169{word-spacing:7.412224pt;}
.ws30{word-spacing:7.651277pt;}
.ws31{word-spacing:7.704411pt;}
.ws62{word-spacing:7.837333pt;}
.ws49{word-spacing:8.607686pt;}
.ws71{word-spacing:8.665759pt;}
.ws63{word-spacing:8.713954pt;}
.ws6b{word-spacing:8.803370pt;}
.ws6a{word-spacing:9.463140pt;}
.ws171{word-spacing:9.564160pt;}
.ws79{word-spacing:9.650133pt;}
.ws1a{word-spacing:10.583895pt;}
.ws188{word-spacing:10.759680pt;}
.ws14b{word-spacing:11.743772pt;}
.ws14a{word-spacing:11.749105pt;}
.ws17f{word-spacing:11.899529pt;}
.ws186{word-spacing:11.905297pt;}
.ws17c{word-spacing:11.907012pt;}
.ws15f{word-spacing:11.907379pt;}
.ws76{word-spacing:11.914013pt;}
.ws176{word-spacing:12.098662pt;}
.ws17b{word-spacing:12.529050pt;}
.ws179{word-spacing:12.576870pt;}
.ws6d{word-spacing:12.827387pt;}
.ws69{word-spacing:12.832720pt;}
.ws40{word-spacing:12.964663pt;}
.ws5f{word-spacing:13.229139pt;}
.ws51{word-spacing:13.230333pt;}
.ws55{word-spacing:13.283467pt;}
.ws3d{word-spacing:13.336601pt;}
.ws157{word-spacing:13.655404pt;}
.ws44{word-spacing:13.761671pt;}
.ws174{word-spacing:13.820211pt;}
.ws16a{word-spacing:14.772813pt;}
.ws189{word-spacing:14.774605pt;}
.ws163{word-spacing:14.776627pt;}
.ws17a{word-spacing:14.777523pt;}
.ws68{word-spacing:14.877483pt;}
.ws16b{word-spacing:14.920090pt;}
.ws172{word-spacing:15.015731pt;}
.ws16c{word-spacing:15.063552pt;}
.ws17d{word-spacing:15.159194pt;}
.ws10{word-spacing:16.181146pt;}
.ws184{word-spacing:16.259072pt;}
.ws161{word-spacing:17.598054pt;}
.wsa{word-spacing:19.659531pt;}
.ws65{word-spacing:22.748474pt;}
.ws15d{word-spacing:46.003610pt;}
.wse6{word-spacing:54.111051pt;}
.wse5{word-spacing:55.636654pt;}
.wse8{word-spacing:68.734225pt;}
.wsea{word-spacing:79.484380pt;}
.wse9{word-spacing:80.658182pt;}
.ws142{word-spacing:138.748850pt;}
.ws145{word-spacing:144.027691pt;}
.ws10c{word-spacing:147.001139pt;}
.ws109{word-spacing:149.009613pt;}
.ws111{word-spacing:152.529417pt;}
.ws20{word-spacing:152.596173pt;}
.ws143{word-spacing:153.962491pt;}
.ws10d{word-spacing:155.113702pt;}
.ws146{word-spacing:156.764189pt;}
.ws113{word-spacing:158.430310pt;}
.ws115{word-spacing:171.628851pt;}
.ws117{word-spacing:174.593741pt;}
.ws114{word-spacing:177.510810pt;}
.ws10f{word-spacing:179.664691pt;}
.ws106{word-spacing:193.201417pt;}
.ws152{word-spacing:202.483294pt;}
.ws118{word-spacing:207.398810pt;}
.ws116{word-spacing:209.694208pt;}
.wse7{word-spacing:237.766359pt;}
.ws23{word-spacing:246.535467pt;}
.ws110{word-spacing:252.045363pt;}
.wsf7{word-spacing:256.314667pt;}
.ws101{word-spacing:256.320000pt;}
.ws10e{word-spacing:257.275904pt;}
.ws108{word-spacing:259.188736pt;}
.ws112{word-spacing:264.002697pt;}
.ws24{word-spacing:265.639723pt;}
.wsf8{word-spacing:268.272000pt;}
.wsf9{word-spacing:268.273067pt;}
.ws14e{word-spacing:269.565850pt;}
.wseb{word-spacing:273.752570pt;}
.wsfc{word-spacing:275.405525pt;}
.wsff{word-spacing:275.447808pt;}
.ws14d{word-spacing:276.786790pt;}
.ws21{word-spacing:284.772864pt;}
.ws153{word-spacing:285.011968pt;}
.wsfd{word-spacing:294.528307pt;}
.ws155{word-spacing:304.140288pt;}
.ws82{word-spacing:319.314086pt;}
.ws81{word-spacing:343.035956pt;}
.wsfa{word-spacing:377.449574pt;}
.wsfe{word-spacing:394.342750pt;}
.ws100{word-spacing:414.929792pt;}
.wsfb{word-spacing:421.483358pt;}
.ws83{word-spacing:466.601534pt;}
.ws1f{word-spacing:605.363507pt;}
._0{margin-left:-10.616218pt;}
._20{margin-left:-7.071347pt;}
._3{margin-left:-6.168883pt;}
._6{margin-left:-5.260288pt;}
._4{margin-left:-3.538739pt;}
._16{margin-left:-1.912819pt;}
._8{margin-left:-0.903276pt;}
._1d{width:1.275213pt;}
._2{width:2.667738pt;}
._1e{width:3.611746pt;}
._1f{width:4.647467pt;}
._7c{width:10.807501pt;}
._11{width:11.955200pt;}
._47{width:13.017797pt;}
._5{width:13.963674pt;}
._7{width:15.685222pt;}
._a{width:16.737168pt;}
._1a{width:17.693578pt;}
._c{width:18.862523pt;}
._9{width:19.818932pt;}
._e{width:21.252267pt;}
._18{width:23.060098pt;}
._46{width:24.101582pt;}
._b{width:26.141862pt;}
._19{width:27.151207pt;}
._17{width:28.692288pt;}
._1{width:29.648896pt;}
._14{width:30.817643pt;}
._1c{width:32.039722pt;}
._15{width:32.942997pt;}
._1b{width:38.256384pt;}
._7d{width:53.394773pt;}
._7e{width:54.993920pt;}
._32{width:61.192433pt;}
._60{width:65.753600pt;}
._7b{width:79.717274pt;}
._4e{width:86.220902pt;}
._4d{width:87.607706pt;}
._54{width:96.645837pt;}
._78{width:121.130086pt;}
._62{width:124.525363pt;}
._5b{width:131.394970pt;}
._3b{width:132.750541pt;}
._66{width:136.496503pt;}
._45{width:141.303142pt;}
._5c{width:143.425243pt;}
._2a{width:146.239644pt;}
._65{width:155.098795pt;}
._6d{width:157.384931pt;}
._39{width:161.777766pt;}
._67{width:164.901677pt;}
._5d{width:171.150630pt;}
._38{width:173.732966pt;}
._37{width:177.080422pt;}
._4a{width:180.093133pt;}
._2b{width:183.568493pt;}
._51{width:185.491833pt;}
._27{width:187.934973pt;}
._68{width:189.466010pt;}
._4c{width:190.900634pt;}
._79{width:195.817293pt;}
._22{width:199.443782pt;}
._53{width:201.607443pt;}
._35{width:205.288558pt;}
._63{width:210.746266pt;}
._77{width:211.750502pt;}
._21{width:212.695424pt;}
._23{width:213.598680pt;}
._42{width:214.763213pt;}
._5e{width:219.354010pt;}
._7a{width:226.240205pt;}
._4b{width:229.539840pt;}
._5a{width:231.309210pt;}
._57{width:233.984418pt;}
._70{width:236.234752pt;}
._76{width:239.438733pt;}
._3c{width:242.890880pt;}
._2d{width:248.021823pt;}
._33{width:253.789446pt;}
._58{width:259.236557pt;}
._3d{width:262.865399pt;}
._52{width:267.844301pt;}
._25{width:269.233869pt;}
._43{width:272.142635pt;}
._30{width:273.524978pt;}
._61{width:275.973837pt;}
._6a{width:277.358268pt;}
._41{width:281.855795pt;}
._5f{width:283.099136pt;}
._34{width:284.022761pt;}
._59{width:289.459302pt;}
._74{width:293.189325pt;}
._3a{width:294.406972pt;}
._64{width:295.749521pt;}
._2c{width:297.910741pt;}
._40{width:306.531328pt;}
._56{width:312.126362pt;}
._69{width:316.286771pt;}
._6c{width:324.942336pt;}
._29{width:326.242760pt;}
._24{width:338.059762pt;}
._28{width:360.588578pt;}
._26{width:371.215378pt;}
._75{width:374.867251pt;}
._4f{width:376.397517pt;}
._36{width:379.075482pt;}
._10{width:399.687561pt;}
._3f{width:415.467110pt;}
._6b{width:421.540352pt;}
._44{width:425.413837pt;}
._2e{width:444.337869pt;}
._3e{width:445.976781pt;}
._73{width:450.089370pt;}
._71{width:461.518541pt;}
._12{width:465.009459pt;}
._72{width:473.473741pt;}
._6e{width:475.530035pt;}
._6f{width:485.189837pt;}
._31{width:501.329917pt;}
._50{width:506.034656pt;}
._13{width:514.790912pt;}
._2f{width:524.677011pt;}
._48{width:652.323533pt;}
._d{width:702.812711pt;}
._49{width:859.052851pt;}
._55{width:1842.220667pt;}
._f{width:1863.474000pt;}
.fsf{font-size:30.458667pt;}
.fs11{font-size:30.601067pt;}
.fs15{font-size:30.937600pt;}
.fs13{font-size:32.000000pt;}
.fs9{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs14{font-size:39.374933pt;}
.fs8{font-size:40.381867pt;}
.fs10{font-size:42.062400pt;}
.fs12{font-size:42.258667pt;}
.fsb{font-size:42.507200pt;}
.fsc{font-size:42.560000pt;}
.fs16{font-size:43.125333pt;}
.fsa{font-size:47.820800pt;}
.fsd{font-size:48.000000pt;}
.fs6{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fse{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:95.641600pt;}
.fs5{font-size:114.229120pt;}
.y10b{bottom:-554.071200pt;}
.y10a{bottom:-538.071600pt;}
.y123{bottom:-507.031528pt;}
.y122{bottom:-489.031384pt;}
.y121{bottom:-471.031456pt;}
.y120{bottom:-453.031528pt;}
.y11f{bottom:-435.031224pt;}
.y11e{bottom:-417.031296pt;}
.y11d{bottom:-399.111528pt;}
.y11c{bottom:-381.111600pt;}
.y1b7{bottom:-369.605867pt;}
.y1b6{bottom:-353.606267pt;}
.y11b{bottom:-347.431600pt;}
.y11a{bottom:-325.751600pt;}
.y12e{bottom:-308.471263pt;}
.y12d{bottom:-297.911600pt;}
.y12c{bottom:-282.071157pt;}
.y12b{bottom:-274.711600pt;}
.y1d6{bottom:-267.846267pt;}
.y12a{bottom:-263.911600pt;}
.y1d5{bottom:-248.486195pt;}
.y1d4{bottom:-230.485891pt;}
.y134{bottom:-227.503200pt;}
.y1d3{bottom:-212.485963pt;}
.y133{bottom:-211.503600pt;}
.y1d2{bottom:-194.486035pt;}
.y14c{bottom:-180.463528pt;}
.y1d1{bottom:-176.566267pt;}
.y14b{bottom:-162.463384pt;}
.y1d0{bottom:-150.566267pt;}
.y14a{bottom:-144.463456pt;}
.y149{bottom:-126.463528pt;}
.y1cf{bottom:-124.566267pt;}
.y12f{bottom:-121.671600pt;}
.y148{bottom:-108.463224pt;}
.y1ce{bottom:-106.566195pt;}
.y147{bottom:-90.463296pt;}
.y1cd{bottom:-88.565989pt;}
.y119{bottom:-81.751528pt;}
.y146{bottom:-72.543528pt;}
.y1cc{bottom:-70.566061pt;}
.y118{bottom:-63.751600pt;}
.y145{bottom:-54.543600pt;}
.y1cb{bottom:-52.566133pt;}
.y117{bottom:-30.151600pt;}
.y144{bottom:-20.863600pt;}
.y1ca{bottom:-18.966267pt;}
.y116{bottom:-0.311600pt;}
.y0{bottom:0.000000pt;}
.y143{bottom:0.816400pt;}
.y1c9{bottom:2.793867pt;}
.y1db{bottom:10.313733pt;}
.y23{bottom:14.848190pt;}
.y128{bottom:16.808334pt;}
.y157{bottom:18.096737pt;}
.y1da{bottom:22.313461pt;}
.y127{bottom:27.288400pt;}
.y156{bottom:28.656400pt;}
.y1d9{bottom:31.673867pt;}
.y126{bottom:43.048779pt;}
.y155{bottom:44.496843pt;}
.y1d7{bottom:48.393733pt;}
.y125{bottom:50.328400pt;}
.y154{bottom:51.856400pt;}
.y4e{bottom:56.693333pt;}
.y5{bottom:59.133337pt;}
.y153{bottom:62.656400pt;}
.y124{bottom:73.528400pt;}
.y4{bottom:86.333337pt;}
.y7e{bottom:96.544000pt;}
.y221{bottom:97.700000pt;}
.y4d{bottom:98.530667pt;}
.y187{bottom:100.926667pt;}
.y1dd{bottom:108.845333pt;}
.yab{bottom:109.441333pt;}
.y186{bottom:113.546667pt;}
.y254{bottom:114.066667pt;}
.y7d{bottom:114.556000pt;}
.y220{bottom:114.914667pt;}
.y4c{bottom:116.542667pt;}
.y201{bottom:119.145333pt;}
.y21{bottom:123.790666pt;}
.yaa{bottom:127.454667pt;}
.y1d8{bottom:128.793401pt;}
.y253{bottom:131.281333pt;}
.y21f{bottom:132.130667pt;}
.y7c{bottom:132.568000pt;}
.y185{bottom:132.902667pt;}
.y1b4{bottom:134.096000pt;}
.y4b{bottom:134.556000pt;}
.y200{bottom:137.157333pt;}
.yc9{bottom:138.912000pt;}
.ya9{bottom:145.466667pt;}
.y184{bottom:147.581333pt;}
.y252{bottom:148.497333pt;}
.yf7{bottom:148.716000pt;}
.y21e{bottom:149.346667pt;}
.y7b{bottom:150.581333pt;}
.y4a{bottom:152.568000pt;}
.y1ff{bottom:155.170667pt;}
.ya8{bottom:163.478667pt;}
.y251{bottom:165.713333pt;}
.y21d{bottom:166.561333pt;}
.yf6{bottom:166.728000pt;}
.y7a{bottom:168.593333pt;}
.y183{bottom:168.661333pt;}
.y49{bottom:170.580000pt;}
.yc8{bottom:171.934667pt;}
.y1fe{bottom:173.182667pt;}
.y18{bottom:175.052000pt;}
.ya7{bottom:181.492000pt;}
.y250{bottom:182.928000pt;}
.y21c{bottom:183.777333pt;}
.yf5{bottom:184.740000pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y79{bottom:186.606667pt;}
.y48{bottom:188.593333pt;}
.y182{bottom:189.741333pt;}
.yc7{bottom:189.946667pt;}
.y1fd{bottom:191.194667pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.ya6{bottom:199.504000pt;}
.y24f{bottom:200.144000pt;}
.y21b{bottom:200.992000pt;}
.y129{bottom:202.728400pt;}
.yf4{bottom:202.753333pt;}
.y78{bottom:204.618667pt;}
.y158{bottom:204.896400pt;}
.y47{bottom:206.605333pt;}
.y159{bottom:206.806667pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y1fc{bottom:209.208000pt;}
.y181{bottom:210.822667pt;}
.y24e{bottom:217.358667pt;}
.ya5{bottom:217.517333pt;}
.y21a{bottom:218.208000pt;}
.yf3{bottom:220.765333pt;}
.y77{bottom:222.630667pt;}
.yc6{bottom:222.970667pt;}
.y46{bottom:224.618667pt;}
.y180{bottom:225.500000pt;}
.y1fb{bottom:227.220000pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y131{bottom:232.057333pt;}
.y115{bottom:234.568616pt;}
.y24d{bottom:234.574667pt;}
.y219{bottom:235.424000pt;}
.ya4{bottom:235.529333pt;}
.yf2{bottom:238.778667pt;}
.y76{bottom:240.644000pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y45{bottom:242.630667pt;}
.y142{bottom:244.816472pt;}
.y1fa{bottom:245.233333pt;}
.y17f{bottom:246.581333pt;}
.y24c{bottom:251.790667pt;}
.y114{bottom:252.568544pt;}
.y218{bottom:252.638667pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.ya3{bottom:253.541333pt;}
.yc5{bottom:255.993333pt;}
.yf1{bottom:256.790667pt;}
.y1dc{bottom:258.313733pt;}
.y75{bottom:258.656000pt;}
.y44{bottom:260.642667pt;}
.y141{bottom:262.816400pt;}
.y1f9{bottom:263.245333pt;}
.y17e{bottom:267.661333pt;}
.y24b{bottom:269.005333pt;}
.y217{bottom:269.854667pt;}
.y113{bottom:270.568472pt;}
.ya2{bottom:271.554667pt;}
.yc4{bottom:274.005333pt;}
.yf0{bottom:274.802667pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y74{bottom:276.669333pt;}
.y43{bottom:278.656000pt;}
.y1f8{bottom:281.257333pt;}
.y24a{bottom:286.221333pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y216{bottom:287.069333pt;}
.y112{bottom:288.568616pt;}
.y17d{bottom:288.741333pt;}
.ya1{bottom:289.566667pt;}
.y1c8{bottom:291.673939pt;}
.yc3{bottom:292.018667pt;}
.yef{bottom:292.816000pt;}
.y73{bottom:294.681333pt;}
.y140{bottom:296.416400pt;}
.y42{bottom:296.668000pt;}
.y17c{bottom:303.420000pt;}
.y249{bottom:303.437333pt;}
.y215{bottom:304.285333pt;}
.y111{bottom:306.568544pt;}
.ya0{bottom:307.580000pt;}
.yf{bottom:309.452000pt;}
.y1c7{bottom:309.674109pt;}
.yc2{bottom:310.030667pt;}
.yee{bottom:310.828000pt;}
.y72{bottom:312.693333pt;}
.y41{bottom:314.681333pt;}
.y196{bottom:316.686667pt;}
.y248{bottom:320.652000pt;}
.y214{bottom:321.501333pt;}
.y1f7{bottom:323.010667pt;}
.y17b{bottom:324.501333pt;}
.y110{bottom:324.568472pt;}
.y9f{bottom:325.592000pt;}
.y13f{bottom:326.256400pt;}
.y1c6{bottom:327.593877pt;}
.yc1{bottom:328.042667pt;}
.yed{bottom:328.841333pt;}
.y195{bottom:331.365333pt;}
.y40{bottom:332.693333pt;}
.y247{bottom:337.868000pt;}
.y71{bottom:338.676000pt;}
.y10f{bottom:342.568776pt;}
.y151{bottom:343.376334pt;}
.y9e{bottom:343.604000pt;}
.ye{bottom:343.809333pt;}
.y1f6{bottom:344.090667pt;}
.y17a{bottom:345.581333pt;}
.y1c5{bottom:345.593805pt;}
.y194{bottom:346.044000pt;}
.yc0{bottom:346.056000pt;}
.y213{bottom:346.686667pt;}
.yec{bottom:346.853333pt;}
.y3f{bottom:350.705333pt;}
.y150{bottom:353.856400pt;}
.y246{bottom:355.082667pt;}
.y1f5{bottom:358.769333pt;}
.y10e{bottom:360.488544pt;}
.y193{bottom:360.722667pt;}
.y9d{bottom:361.617333pt;}
.yd{bottom:362.706666pt;}
.y1c4{bottom:363.594021pt;}
.ybf{bottom:364.068000pt;}
.yeb{bottom:364.865333pt;}
.y179{bottom:366.661333pt;}
.y3e{bottom:368.718667pt;}
.y14f{bottom:369.616779pt;}
.y70{bottom:369.626667pt;}
.y245{bottom:372.298667pt;}
.y1f4{bottom:373.448000pt;}
.y14e{bottom:376.896400pt;}
.y10d{bottom:378.488472pt;}
.y9c{bottom:379.629333pt;}
.y212{bottom:379.842667pt;}
.y1c3{bottom:381.593949pt;}
.y192{bottom:381.802667pt;}
.yea{bottom:382.878667pt;}
.y3d{bottom:386.730667pt;}
.y6f{bottom:387.640000pt;}
.y178{bottom:387.741333pt;}
.y1f3{bottom:388.125333pt;}
.ybe{bottom:389.417333pt;}
.y244{bottom:389.514667pt;}
.y10c{bottom:396.488400pt;}
.y9b{bottom:397.642667pt;}
.y1c2{bottom:399.593877pt;}
.y14d{bottom:400.096400pt;}
.ye9{bottom:400.890667pt;}
.y211{bottom:401.321333pt;}
.y177{bottom:402.420000pt;}
.y191{bottom:402.882667pt;}
.y3c{bottom:404.744000pt;}
.y6e{bottom:405.652000pt;}
.y243{bottom:406.729333pt;}
.ybd{bottom:407.429333pt;}
.y1f2{bottom:409.472000pt;}
.y9a{bottom:415.654667pt;}
.y176{bottom:417.098667pt;}
.y1c1{bottom:417.593805pt;}
.ye8{bottom:418.904000pt;}
.y3b{bottom:422.756000pt;}
.y6d{bottom:423.665333pt;}
.y242{bottom:423.945333pt;}
.y190{bottom:423.964000pt;}
.y109{bottom:429.768400pt;}
.y210{bottom:430.772000pt;}
.y1b3{bottom:430.837333pt;}
.y175{bottom:431.777333pt;}
.y99{bottom:433.666667pt;}
.y1c0{bottom:435.594037pt;}
.ybc{bottom:435.777333pt;}
.y18f{bottom:438.641333pt;}
.y3a{bottom:440.768000pt;}
.y241{bottom:441.160000pt;}
.y6c{bottom:441.677333pt;}
.y1f1{bottom:442.892000pt;}
.y1b2{bottom:443.456000pt;}
.ye7{bottom:444.886667pt;}
.yc{bottom:446.990669pt;}
.y20f{bottom:448.784000pt;}
.y98{bottom:451.680000pt;}
.y174{bottom:452.790667pt;}
.y18e{bottom:453.320000pt;}
.y1bf{bottom:453.513805pt;}
.ybb{bottom:453.789333pt;}
.y240{bottom:458.376000pt;}
.y6b{bottom:459.689333pt;}
.y1b1{bottom:462.812000pt;}
.yb{bottom:462.990669pt;}
.y39{bottom:466.750667pt;}
.y20e{bottom:466.796000pt;}
.y173{bottom:467.402667pt;}
.y18d{bottom:467.998667pt;}
.y97{bottom:469.692000pt;}
.y1be{bottom:471.513733pt;}
.y23f{bottom:475.592000pt;}
.ye6{bottom:475.837333pt;}
.y1f0{bottom:475.873333pt;}
.y1b0{bottom:477.490667pt;}
.y6a{bottom:477.702667pt;}
.ya{bottom:478.990666pt;}
.y130{bottom:479.340000pt;}
.y20d{bottom:484.809333pt;}
.y96{bottom:487.704000pt;}
.yba{bottom:488.140000pt;}
.y172{bottom:488.482667pt;}
.y18c{bottom:489.078667pt;}
.y1af{bottom:492.169333pt;}
.y23e{bottom:492.806667pt;}
.ye5{bottom:493.849333pt;}
.y1ef{bottom:493.885333pt;}
.y9{bottom:494.990666pt;}
.y69{bottom:495.714667pt;}
.y1bd{bottom:497.113333pt;}
.y20c{bottom:502.821333pt;}
.y171{bottom:503.161333pt;}
.y108{bottom:504.590667pt;}
.y95{bottom:505.717333pt;}
.yb9{bottom:506.153333pt;}
.y1ae{bottom:506.846667pt;}
.y23d{bottom:510.022667pt;}
.y18b{bottom:510.425333pt;}
.ye4{bottom:511.861333pt;}
.y1ee{bottom:511.898667pt;}
.y68{bottom:513.728000pt;}
.y1bc{bottom:514.473733pt;}
.y20b{bottom:520.834667pt;}
.y94{bottom:523.729333pt;}
.y170{bottom:524.242667pt;}
.y23c{bottom:527.237333pt;}
.y1ad{bottom:527.928000pt;}
.y152{bottom:529.296400pt;}
.ye3{bottom:529.874667pt;}
.y1ed{bottom:529.910667pt;}
.y18a{bottom:531.505333pt;}
.y67{bottom:531.740000pt;}
.y1bb{bottom:533.112933pt;}
.y38{bottom:533.872000pt;}
.yb8{bottom:538.846667pt;}
.y93{bottom:541.742667pt;}
.y1ac{bottom:542.606667pt;}
.y23b{bottom:544.453333pt;}
.y16f{bottom:545.322667pt;}
.ye2{bottom:547.886667pt;}
.y1ba{bottom:549.273333pt;}
.y66{bottom:549.752000pt;}
.y189{bottom:552.585333pt;}
.yb7{bottom:556.858667pt;}
.y92{bottom:559.754667pt;}
.y13e{bottom:561.136616pt;}
.y23a{bottom:561.669333pt;}
.y1ab{bottom:563.686667pt;}
.y1b9{bottom:565.433733pt;}
.y16e{bottom:566.402667pt;}
.y65{bottom:567.765333pt;}
.y37{bottom:567.825333pt;}
.ye0{bottom:569.382667pt;}
.y1ec{bottom:571.662667pt;}
.y8{bottom:573.786667pt;}
.yb6{bottom:574.872000pt;}
.y91{bottom:577.766667pt;}
.y239{bottom:578.884000pt;}
.y13d{bottom:579.136544pt;}
.y16d{bottom:581.081333pt;}
.y1b8{bottom:581.673733pt;}
.y1aa{bottom:584.766667pt;}
.ydd{bottom:585.425333pt;}
.y64{bottom:585.777333pt;}
.y188{bottom:586.005333pt;}
.y1eb{bottom:586.341333pt;}
.y7{bottom:592.685334pt;}
.yb5{bottom:592.884000pt;}
.y16c{bottom:595.760000pt;}
.y90{bottom:595.780000pt;}
.y238{bottom:596.100000pt;}
.y13c{bottom:597.136472pt;}
.ydf{bottom:598.045333pt;}
.y1ea{bottom:601.020000pt;}
.yde{bottom:601.365333pt;}
.y36{bottom:601.778667pt;}
.ye1{bottom:602.974667pt;}
.y63{bottom:603.790667pt;}
.y1a9{bottom:605.848000pt;}
.y16b{bottom:610.437333pt;}
.yb4{bottom:610.896000pt;}
.y237{bottom:613.314667pt;}
.y8f{bottom:613.792000pt;}
.y1b5{bottom:614.233733pt;}
.y13b{bottom:615.136616pt;}
.y1e9{bottom:615.697333pt;}
.y35{bottom:619.790667pt;}
.ydb{bottom:621.008000pt;}
.y62{bottom:621.802667pt;}
.y1a8{bottom:626.928000pt;}
.yb3{bottom:628.909333pt;}
.y1e8{bottom:630.376000pt;}
.y236{bottom:630.530667pt;}
.y16a{bottom:631.518667pt;}
.y8e{bottom:631.805333pt;}
.y13a{bottom:633.136544pt;}
.yd8{bottom:637.052000pt;}
.y34{bottom:637.802667pt;}
.y61{bottom:639.814667pt;}
.y6{bottom:645.598667pt;}
.yb2{bottom:646.921333pt;}
.y235{bottom:647.746667pt;}
.y1a7{bottom:648.008000pt;}
.yda{bottom:649.670667pt;}
.y8d{bottom:649.817333pt;}
.y139{bottom:651.136472pt;}
.y1e7{bottom:651.722667pt;}
.y169{bottom:652.598667pt;}
.yd9{bottom:652.992000pt;}
.ydc{bottom:654.601333pt;}
.y33{bottom:655.816000pt;}
.y60{bottom:657.828000pt;}
.y1a6{bottom:662.686667pt;}
.yb1{bottom:664.934667pt;}
.y234{bottom:664.961333pt;}
.y168{bottom:667.277333pt;}
.y8c{bottom:667.829333pt;}
.y3{bottom:668.977329pt;}
.y138{bottom:669.136776pt;}
.y32{bottom:673.828000pt;}
.y5f{bottom:675.840000pt;}
.yd6{bottom:678.638667pt;}
.y233{bottom:682.177333pt;}
.yb0{bottom:682.946667pt;}
.y1a5{bottom:683.766667pt;}
.y1e6{bottom:685.142667pt;}
.y8b{bottom:685.842667pt;}
.y137{bottom:687.056544pt;}
.y167{bottom:688.357333pt;}
.y31{bottom:691.841333pt;}
.y5e{bottom:693.853333pt;}
.yd3{bottom:694.682667pt;}
.y232{bottom:699.392000pt;}
.yaf{bottom:700.958667pt;}
.y8a{bottom:703.854667pt;}
.y1a4{bottom:704.848000pt;}
.y136{bottom:705.056472pt;}
.yd5{bottom:707.301333pt;}
.y166{bottom:709.437333pt;}
.y30{bottom:709.853333pt;}
.yd4{bottom:710.622667pt;}
.y5d{bottom:711.865333pt;}
.yd7{bottom:712.232000pt;}
.y231{bottom:716.608000pt;}
.yae{bottom:718.972000pt;}
.y89{bottom:721.868000pt;}
.y1e5{bottom:722.177333pt;}
.y135{bottom:723.056400pt;}
.y1a3{bottom:725.928000pt;}
.y2f{bottom:727.865333pt;}
.y5c{bottom:729.877333pt;}
.y165{bottom:730.518667pt;}
.y230{bottom:733.824000pt;}
.y1e4{bottom:736.856000pt;}
.yad{bottom:736.984000pt;}
.yd2{bottom:738.525333pt;}
.y88{bottom:739.880000pt;}
.y164{bottom:745.197333pt;}
.y2e{bottom:745.878667pt;}
.y1a2{bottom:747.008000pt;}
.y22f{bottom:751.038667pt;}
.y1e3{bottom:751.533333pt;}
.y107{bottom:751.736000pt;}
.y20a{bottom:754.997333pt;}
.y132{bottom:756.336400pt;}
.yd1{bottom:756.538667pt;}
.y87{bottom:757.892000pt;}
.y163{bottom:759.874667pt;}
.yac{bottom:762.966667pt;}
.y5b{bottom:763.678667pt;}
.y106{bottom:764.354667pt;}
.y1e2{bottom:766.212000pt;}
.y1a1{bottom:768.089333pt;}
.y22e{bottom:768.254667pt;}
.y209{bottom:773.009333pt;}
.y2d{bottom:773.454667pt;}
.yd0{bottom:774.550667pt;}
.y162{bottom:774.553333pt;}
.y257{bottom:774.556000pt;}
.y86{bottom:775.905333pt;}
.y105{bottom:777.108000pt;}
.y2{bottom:781.661334pt;}
.y1a0{bottom:782.766667pt;}
.y5a{bottom:783.034667pt;}
.y22d{bottom:785.469333pt;}
.y1e1{bottom:787.558667pt;}
.y2c{bottom:789.594667pt;}
.y104{bottom:789.726667pt;}
.y208{bottom:791.021333pt;}
.y256{bottom:791.770667pt;}
.ycf{bottom:792.562667pt;}
.y85{bottom:793.917333pt;}
.y161{bottom:795.568000pt;}
.y59{bottom:797.713333pt;}
.y103{bottom:802.346667pt;}
.y22c{bottom:802.685333pt;}
.y19f{bottom:803.848000pt;}
.y255{bottom:808.986667pt;}
.y207{bottom:809.034667pt;}
.y160{bottom:810.178667pt;}
.yce{bottom:810.576000pt;}
.y84{bottom:811.930667pt;}
.y58{bottom:812.392000pt;}
.y2b{bottom:813.704000pt;}
.y22b{bottom:819.901333pt;}
.y1e0{bottom:820.978667pt;}
.y102{bottom:821.368000pt;}
.y19e{bottom:824.928000pt;}
.y206{bottom:827.046667pt;}
.y101{bottom:827.677333pt;}
.ycd{bottom:828.588000pt;}
.y2a{bottom:829.844000pt;}
.y83{bottom:829.942667pt;}
.y15f{bottom:831.260000pt;}
.y57{bottom:833.738667pt;}
.y22a{bottom:837.116000pt;}
.y56{bottom:844.186667pt;}
.y205{bottom:845.060000pt;}
.y15e{bottom:845.938667pt;}
.y19d{bottom:846.008000pt;}
.ycc{bottom:846.601333pt;}
.y82{bottom:847.954667pt;}
.y29{bottom:850.322667pt;}
.y100{bottom:853.141333pt;}
.y1df{bottom:853.960000pt;}
.y229{bottom:854.332000pt;}
.y1{bottom:859.312000pt;}
.y204{bottom:863.072000pt;}
.y81{bottom:865.968000pt;}
.y28{bottom:866.462667pt;}
.y19c{bottom:867.089333pt;}
.y15d{bottom:867.284000pt;}
.y228{bottom:871.546667pt;}
.yff{bottom:872.162667pt;}
.ycb{bottom:872.629333pt;}
.y203{bottom:881.084000pt;}
.yca{bottom:881.742667pt;}
.y80{bottom:883.980000pt;}
.yfe{bottom:884.782667pt;}
.y27{bottom:886.233333pt;}
.y1de{bottom:886.982667pt;}
.y19b{bottom:888.169333pt;}
.y55{bottom:888.238667pt;}
.y15c{bottom:888.364000pt;}
.y227{bottom:888.762667pt;}
.yfd{bottom:897.534667pt;}
.y7f{bottom:901.993333pt;}
.y226{bottom:905.978667pt;}
.y202{bottom:907.066667pt;}
.y19a{bottom:909.249333pt;}
.y15b{bottom:909.445333pt;}
.yfc{bottom:910.153333pt;}
.y54{bottom:920.005333pt;}
.yfb{bottom:922.773333pt;}
.y225{bottom:923.193333pt;}
.y199{bottom:923.928000pt;}
.y26{bottom:925.198667pt;}
.y53{bottom:938.017333pt;}
.y198{bottom:938.606667pt;}
.y224{bottom:940.409333pt;}
.yfa{bottom:942.193333pt;}
.y15a{bottom:942.864000pt;}
.y25{bottom:952.217333pt;}
.y52{bottom:956.030667pt;}
.y223{bottom:957.624000pt;}
.y197{bottom:959.952000pt;}
.yf9{bottom:961.346667pt;}
.y51{bottom:974.042667pt;}
.y222{bottom:974.840000pt;}
.y24{bottom:977.906667pt;}
.y50{bottom:992.056000pt;}
.yf8{bottom:993.372000pt;}
.y22{bottom:1011.514667pt;}
.y4f{bottom:1038.548000pt;}
.h1b{height:0.053134pt;}
.h27{height:22.174742pt;}
.h29{height:22.278413pt;}
.h34{height:22.523419pt;}
.he{height:27.076941pt;}
.h7{height:28.560000pt;}
.h33{height:28.666028pt;}
.h1a{height:29.599908pt;}
.h28{height:30.622577pt;}
.h1d{height:30.732706pt;}
.h2a{height:30.765465pt;}
.h15{height:30.945242pt;}
.h22{height:31.088750pt;}
.h12{height:31.157778pt;}
.h35{height:31.396422pt;}
.h23{height:32.437500pt;}
.h14{height:34.574438pt;}
.h2e{height:34.717901pt;}
.hf{height:34.813542pt;}
.h31{height:34.898438pt;}
.h2c{height:35.052646pt;}
.h26{height:35.062500pt;}
.h1c{height:37.193707pt;}
.h10{height:38.415786pt;}
.h11{height:38.681455pt;}
.h24{height:38.853594pt;}
.hb{height:38.947124pt;}
.h16{height:39.883098pt;}
.h6{height:40.800000pt;}
.h32{height:42.656250pt;}
.h3{height:42.840000pt;}
.h25{height:45.062500pt;}
.h9{height:45.271688pt;}
.hd{height:48.481423pt;}
.h2{height:48.960000pt;}
.h1f{height:55.970039pt;}
.h1e{height:56.182575pt;}
.h2d{height:63.939234pt;}
.h2f{height:63.944567pt;}
.hc{height:69.148877pt;}
.h5{height:69.360000pt;}
.h18{height:74.915124pt;}
.h17{height:75.833455pt;}
.h19{height:76.336431pt;}
.h13{height:77.102438pt;}
.ha{height:77.447343pt;}
.h20{height:81.207372pt;}
.h4{height:105.826671pt;}
.h21{height:223.610667pt;}
.h2b{height:225.754667pt;}
.h30{height:275.089333pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:175.330780pt;}
.w7{width:283.133333pt;}
.w6{width:337.829333pt;}
.w5{width:348.553333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.xb4{left:-152.632000pt;}
.x91{left:-125.820000pt;}
.xb9{left:-124.312000pt;}
.x82{left:-120.458667pt;}
.x93{left:-97.500000pt;}
.x84{left:-92.138667pt;}
.xb6{left:-76.711333pt;}
.xb7{left:-61.992000pt;}
.xb8{left:-49.353600pt;}
.x0{left:0.000000pt;}
.x97{left:13.700000pt;}
.x9a{left:18.020000pt;}
.x88{left:19.061333pt;}
.x9b{left:20.580000pt;}
.x8c{left:23.381333pt;}
.x8d{left:25.941333pt;}
.x98{left:30.820000pt;}
.xbc{left:33.768000pt;}
.x89{left:36.181333pt;}
.x94{left:44.500000pt;}
.x85{left:49.861333pt;}
.x6{left:51.605861pt;}
.x96{left:53.220000pt;}
.x87{left:58.581333pt;}
.x9c{left:59.860000pt;}
.x8a{left:64.181333pt;}
.x8e{left:65.221333pt;}
.xbd{left:73.528000pt;}
.xbb{left:82.728000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x99{left:98.020000pt;}
.x8f{left:100.181333pt;}
.x5{left:102.046667pt;}
.x8b{left:103.381333pt;}
.x9{left:108.542667pt;}
.x7{left:109.606667pt;}
.xb3{left:110.641333pt;}
.x12{left:112.418667pt;}
.xa3{left:118.082667pt;}
.xa8{left:120.186667pt;}
.x7c{left:123.489333pt;}
.xe{left:128.401333pt;}
.x8{left:129.929333pt;}
.xb0{left:131.506667pt;}
.x7d{left:135.922667pt;}
.xa6{left:138.334667pt;}
.x55{left:140.365333pt;}
.x64{left:141.550667pt;}
.x7b{left:143.824000pt;}
.x6e{left:145.993333pt;}
.x59{left:151.942667pt;}
.x56{left:153.648000pt;}
.x74{left:157.954667pt;}
.xb2{left:159.878667pt;}
.xc2{left:161.841333pt;}
.xc4{left:163.526667pt;}
.xa{left:167.366667pt;}
.xa1{left:169.166667pt;}
.xc1{left:170.925333pt;}
.xa4{left:172.621333pt;}
.xa5{left:174.886667pt;}
.xa0{left:178.849333pt;}
.xa2{left:179.848000pt;}
.x4{left:180.874667pt;}
.x10{left:183.825333pt;}
.xa7{left:187.493333pt;}
.x2e{left:188.794667pt;}
.x11{left:196.061333pt;}
.x9f{left:197.117333pt;}
.x57{left:199.038667pt;}
.x4c{left:200.992000pt;}
.x2f{left:202.078667pt;}
.xae{left:203.416000pt;}
.xc0{left:206.360000pt;}
.x58{left:212.322667pt;}
.x32{left:215.713333pt;}
.xab{left:217.220000pt;}
.x81{left:222.574667pt;}
.xd4{left:224.368000pt;}
.xbe{left:225.338667pt;}
.xaa{left:226.844000pt;}
.x90{left:227.936000pt;}
.x33{left:228.997333pt;}
.x1d{left:233.942667pt;}
.x71{left:235.117333pt;}
.x70{left:236.126667pt;}
.x1e{left:240.584000pt;}
.x6f{left:241.541333pt;}
.x1b{left:245.316000pt;}
.x5a{left:246.380000pt;}
.x30{left:247.542667pt;}
.x1c{left:251.957333pt;}
.x3c{left:253.806667pt;}
.x66{left:254.702667pt;}
.x65{left:255.713333pt;}
.x79{left:257.705333pt;}
.x46{left:259.925333pt;}
.x31{left:260.826667pt;}
.x7a{left:262.110667pt;}
.x5b{left:264.913333pt;}
.x3d{left:267.089333pt;}
.x50{left:270.605333pt;}
.x47{left:273.208000pt;}
.x67{left:274.245333pt;}
.xba{left:280.168000pt;}
.x52{left:282.713333pt;}
.xc3{left:284.678667pt;}
.x9e{left:287.437333pt;}
.x19{left:288.397333pt;}
.xad{left:289.697333pt;}
.x7f{left:291.528000pt;}
.x25{left:293.934667pt;}
.x1a{left:295.040000pt;}
.xd{left:296.117333pt;}
.x4f{left:299.798667pt;}
.xc6{left:301.062667pt;}
.x26{left:307.218667pt;}
.x21{left:309.288000pt;}
.xc7{left:311.392000pt;}
.x22{left:315.929333pt;}
.xa9{left:317.826667pt;}
.x4b{left:320.376000pt;}
.x9d{left:321.802667pt;}
.xb1{left:324.730667pt;}
.x34{left:327.616000pt;}
.xbf{left:329.113333pt;}
.x7e{left:330.438667pt;}
.x14{left:332.797333pt;}
.x95{left:337.140000pt;}
.x35{left:340.900000pt;}
.x86{left:342.501333pt;}
.x48{left:346.253333pt;}
.x40{left:348.262667pt;}
.xf{left:349.270667pt;}
.x72{left:350.410667pt;}
.x5e{left:354.253333pt;}
.x5d{left:355.264000pt;}
.x5c{left:360.304000pt;}
.x41{left:361.546667pt;}
.xaf{left:362.814667pt;}
.x69{left:363.940000pt;}
.x13{left:365.080000pt;}
.x73{left:368.944000pt;}
.x68{left:369.990667pt;}
.x5f{left:373.797333pt;}
.x2b{left:380.118667pt;}
.x27{left:382.442667pt;}
.x6a{left:383.482667pt;}
.x42{left:385.314667pt;}
.x75{left:389.050667pt;}
.xc8{left:391.553333pt;}
.x2c{left:393.402667pt;}
.x28{left:395.726667pt;}
.x43{left:398.597333pt;}
.xc9{left:401.882667pt;}
.x3{left:404.408000pt;}
.xc5{left:408.873333pt;}
.xb5{left:424.967867pt;}
.x51{left:435.753333pt;}
.xac{left:449.029333pt;}
.x62{left:455.513333pt;}
.x61{left:456.522667pt;}
.x92{left:457.779867pt;}
.x60{left:461.093333pt;}
.x83{left:463.141200pt;}
.x76{left:466.698667pt;}
.x3e{left:472.184000pt;}
.x63{left:475.056000pt;}
.x17{left:476.756000pt;}
.xca{left:477.880000pt;}
.x53{left:482.332000pt;}
.x18{left:483.397333pt;}
.x3f{left:485.466667pt;}
.x6c{left:489.581333pt;}
.x6b{left:490.592000pt;}
.x54{left:495.616000pt;}
.x6d{left:509.124000pt;}
.x1f{left:513.278667pt;}
.xcb{left:518.613333pt;}
.x20{left:519.920000pt;}
.x2d{left:526.570667pt;}
.x80{left:551.698667pt;}
.x4d{left:561.065333pt;}
.x44{left:565.328000pt;}
.x4e{left:574.349333pt;}
.x45{left:578.612000pt;}
.xb{left:581.840000pt;}
.xc{left:588.482667pt;}
.xce{left:589.462667pt;}
.x29{left:591.945333pt;}
.x38{left:599.032000pt;}
.x2a{left:605.229333pt;}
.x39{left:612.316000pt;}
.x15{left:613.568000pt;}
.x3a{left:617.138667pt;}
.x16{left:620.209333pt;}
.xd3{left:623.049333pt;}
.x3b{left:630.421333pt;}
.x23{left:642.760000pt;}
.x49{left:644.250667pt;}
.x77{left:647.093333pt;}
.xcc{left:648.504000pt;}
.x24{left:649.401333pt;}
.xd1{left:654.342667pt;}
.x4a{left:657.534667pt;}
.x78{left:659.961333pt;}
.xcf{left:666.302667pt;}
.xcd{left:672.413333pt;}
.x36{left:673.858667pt;}
.xd2{left:678.253333pt;}
.x37{left:687.141333pt;}
.xd0{left:690.213333pt;}
}




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