
    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_a6c0af09b42a4d5e83a5ab54.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106000;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_83462af628bbcb69ce67af45.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.711000;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_ae30d57c4534154e8925aa35.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.068000;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_f5a8a82387eeb2e4dd0beba7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.113000;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_2fdb6553590a1628325f3730.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.811000;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_0cb6abdbed43e108f2f187c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.128000;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_83462af628bbcb69ce67af45.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.711000;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_ae30d57c4534154e8925aa35.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.068000;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_90602b0cfd413db3d9724d33.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.106000;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_221c37e58ac18662ba2fea49.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.113000;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_450b426048efbbbd217c2ba7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.811000;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_1293494f0de1266df3ca3e6c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.753000;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_be1c91a7e0c6b6822d7a1f6e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.920000;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_efd5cd662af332800efae58b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.930000;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_a6f428dacf6c7760cbfd1a6a.woff2')format("woff");}.fff{font-family:fff;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;}
@font-face{font-family:ff10;src:url('chunks/assets/font_7434c6b248eb37f341c4d5a2.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.956000;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_570dd77d1b3a905c939b16ec.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.905000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_50460c9aa3c19a7bc064c3ac.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.718500;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_f2511e51b1a08f2347cba114.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.927000;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_d191154dbf80007529caf9ef.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.939000;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_1ef80261a2daec5606dc882f.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.731445;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_054055f1ed27b67906033d36.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_5908ef8c2d63df1acef98595.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.710000;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_cb6ab05d016a725fab9ed05e.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_5de900de789c3c63f1f14ed8.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_9e6e8ecec1ce9af18dfff7b8.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_40c7fd884b312f6f7bf95157.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.031000;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_0a456683bb7ba84f087eb974.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.029000;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_2c8740e3008276bb08d40528.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.042000;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_0cb6abdbed43e108f2f187c2.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.128000;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_61537d2f6e3befd2f648cb78.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.711000;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_ce0232b591330b9fbad03dfa.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.128000;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_b0caeea31d52e9c249e5f2da.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_a6c0af09b42a4d5e83a5ab54.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.106000;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_4c462843c51ec8db4d1e4a2f.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.042000;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_9a3f2a69559ba9b60360d209.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.113000;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_b9e79f429466d567ed5eb034.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.029000;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_542fab0cd61f2bdcb52564b5.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.741000;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_32d42b3cc3cfea32edc4da93.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.068000;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_d1b47d98d729292d4a96abfb.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.068000;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:ff29;src:url('chunks/assets/font_0cb6abdbed43e108f2f187c2.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.128000;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:ff2a;src:url('chunks/assets/font_75ec36848565bdf30a2436e4.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.067000;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:ff2b;src:url('chunks/assets/font_0cb6abdbed43e108f2f187c2.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.128000;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:ff2c;src:url('chunks/assets/font_75ec36848565bdf30a2436e4.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.067000;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:ff2d;src:url('chunks/assets/font_32d42b3cc3cfea32edc4da93.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.068000;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:ff2e;src:url('chunks/assets/font_a39518a7adbddfe794ed4a83.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_28c7a5e0e5e3d92c13893a8f.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.068000;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:ff30;src:url('chunks/assets/font_32d42b3cc3cfea32edc4da93.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.068000;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:ff31;src:url('chunks/assets/font_6a2b9fb319f18678e22d4343.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.930000;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:ff32;src:url('chunks/assets/font_2a493ddfb4dc8d00a4b51486.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.711000;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:ff33;src:url('chunks/assets/font_32d42b3cc3cfea32edc4da93.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.068000;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:ff34;src:url('chunks/assets/font_61ae4b0fe135119bb9031a95.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.067000;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:ff35;src:url('chunks/assets/font_d9c3ef91cbfbdd6a32f721b5.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.977000;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:ff36;src:url('chunks/assets/font_61537d2f6e3befd2f648cb78.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.711000;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:ff37;src:url('chunks/assets/font_0cb6abdbed43e108f2f187c2.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.128000;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:ff38;src:url('chunks/assets/font_2c8740e3008276bb08d40528.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.042000;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:ff39;src:url('chunks/assets/font_b99b0f322a80630b126f1645.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.128000;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:ff3a;src:url('chunks/assets/font_32d42b3cc3cfea32edc4da93.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:1.068000;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:ff3b;src:url('chunks/assets/font_bc62e870aed88714112ec92e.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.106000;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:ff3c;src:url('chunks/assets/font_0cb6abdbed43e108f2f187c2.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.128000;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:ff3d;src:url('chunks/assets/font_b6b4a15d630ba7fd424394a4.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:1.113000;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;}
.m7{transform:matrix(0.061633,-0.242284,0.242284,0.061633,0,0);-ms-transform:matrix(0.061633,-0.242284,0.242284,0.061633,0,0);-webkit-transform:matrix(0.061633,-0.242284,0.242284,0.061633,0,0);}
.m2{transform:matrix(0.083120,-0.235777,0.235777,0.083120,0,0);-ms-transform:matrix(0.083120,-0.235777,0.235777,0.083120,0,0);-webkit-transform:matrix(0.083120,-0.235777,0.235777,0.083120,0,0);}
.mf{transform:matrix(0.091629,-0.232603,0.232603,0.091629,0,0);-ms-transform:matrix(0.091629,-0.232603,0.232603,0.091629,0,0);-webkit-transform:matrix(0.091629,-0.232603,0.232603,0.091629,0,0);}
.mb{transform:matrix(0.096261,-0.230725,0.230725,0.096261,0,0);-ms-transform:matrix(0.096261,-0.230725,0.230725,0.096261,0,0);-webkit-transform:matrix(0.096261,-0.230725,0.230725,0.096261,0,0);}
.mc{transform:matrix(0.108360,-0.225295,0.225295,0.108360,0,0);-ms-transform:matrix(0.108360,-0.225295,0.225295,0.108360,0,0);-webkit-transform:matrix(0.108360,-0.225295,0.225295,0.108360,0,0);}
.m6{transform:matrix(0.117803,0.220505,-0.220505,0.117803,0,0);-ms-transform:matrix(0.117803,0.220505,-0.220505,0.117803,0,0);-webkit-transform:matrix(0.117803,0.220505,-0.220505,0.117803,0,0);}
.me{transform:matrix(0.120876,-0.218835,0.218835,0.120876,0,0);-ms-transform:matrix(0.120876,-0.218835,0.218835,0.120876,0,0);-webkit-transform:matrix(0.120876,-0.218835,0.218835,0.120876,0,0);}
.m13{transform:matrix(0.129538,0.213822,-0.213822,0.129538,0,0);-ms-transform:matrix(0.129538,0.213822,-0.213822,0.129538,0,0);-webkit-transform:matrix(0.129538,0.213822,-0.213822,0.129538,0,0);}
.m9{transform:matrix(0.141687,0.205973,-0.205973,0.141687,0,0);-ms-transform:matrix(0.141687,0.205973,-0.205973,0.141687,0,0);-webkit-transform:matrix(0.141687,0.205973,-0.205973,0.141687,0,0);}
.m10{transform:matrix(0.157667,0.194013,-0.194013,0.157667,0,0);-ms-transform:matrix(0.157667,0.194013,-0.194013,0.157667,0,0);-webkit-transform:matrix(0.157667,0.194013,-0.194013,0.157667,0,0);}
.m3{transform:matrix(0.162484,0.189997,-0.189997,0.162484,0,0);-ms-transform:matrix(0.162484,0.189997,-0.189997,0.162484,0,0);-webkit-transform:matrix(0.162484,0.189997,-0.189997,0.162484,0,0);}
.md{transform:matrix(0.195418,0.155922,-0.155922,0.195418,0,0);-ms-transform:matrix(0.195418,0.155922,-0.155922,0.195418,0,0);-webkit-transform:matrix(0.195418,0.155922,-0.155922,0.195418,0,0);}
.ma{transform:matrix(0.218658,0.121197,-0.121197,0.218658,0,0);-ms-transform:matrix(0.218658,0.121197,-0.121197,0.218658,0,0);-webkit-transform:matrix(0.218658,0.121197,-0.121197,0.218658,0,0);}
.m12{transform:matrix(0.226020,-0.106841,0.106841,0.226020,0,0);-ms-transform:matrix(0.226020,-0.106841,0.106841,0.226020,0,0);-webkit-transform:matrix(0.226020,-0.106841,0.106841,0.226020,0,0);}
.m5{transform:matrix(0.226161,-0.106541,0.106541,0.226161,0,0);-ms-transform:matrix(0.226161,-0.106541,0.106541,0.226161,0,0);-webkit-transform:matrix(0.226161,-0.106541,0.106541,0.226161,0,0);}
.m4{transform:matrix(0.244022,0.054342,-0.054342,0.244022,0,0);-ms-transform:matrix(0.244022,0.054342,-0.054342,0.244022,0,0);-webkit-transform:matrix(0.244022,0.054342,-0.054342,0.244022,0,0);}
.m11{transform:matrix(0.244193,0.053571,-0.053571,0.244193,0,0);-ms-transform:matrix(0.244193,0.053571,-0.053571,0.244193,0,0);-webkit-transform:matrix(0.244193,0.053571,-0.053571,0.244193,0,0);}
.m8{transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245192,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);}
.m14{transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250004,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);}
.ve{vertical-align:-46.752000px;}
.v1{vertical-align:-43.056000px;}
.vd{vertical-align:-32.605200px;}
.v7{vertical-align:-31.276610px;}
.vf{vertical-align:-27.600000px;}
.v6{vertical-align:-20.265000px;}
.v2{vertical-align:-12.099978px;}
.vb{vertical-align:-7.993319px;}
.vc{vertical-align:-6.453322px;}
.v3{vertical-align:-3.006661px;}
.v0{vertical-align:0.000000px;}
.v10{vertical-align:4.782000px;}
.va{vertical-align:8.004000px;}
.v9{vertical-align:14.849973px;}
.v8{vertical-align:15.913304px;}
.v4{vertical-align:17.599968px;}
.v5{vertical-align:28.526615px;}
.ls3{letter-spacing:-14.892000px;}
.ls28{letter-spacing:-7.740000px;}
.lscc{letter-spacing:-4.512000px;}
.ls7c{letter-spacing:-4.416000px;}
.lsab{letter-spacing:-3.843000px;}
.ls1b{letter-spacing:-3.339000px;}
.lscd{letter-spacing:-2.832000px;}
.lsbf{letter-spacing:-2.496000px;}
.lsc4{letter-spacing:-2.205000px;}
.ls3d{letter-spacing:-1.995000px;}
.lsca{letter-spacing:-1.968000px;}
.ls1e{letter-spacing:-1.197000px;}
.ls80{letter-spacing:-0.912000px;}
.lsbc{letter-spacing:-0.720000px;}
.lsbe{letter-spacing:-0.624000px;}
.ls26{letter-spacing:-0.576000px;}
.lsc9{letter-spacing:-0.528000px;}
.ls5{letter-spacing:-0.438000px;}
.ls38{letter-spacing:-0.378000px;}
.ls17{letter-spacing:-0.315000px;}
.ls20{letter-spacing:-0.296004px;}
.ls25{letter-spacing:-0.288000px;}
.ls3c{letter-spacing:-0.252000px;}
.lscb{letter-spacing:-0.192000px;}
.ls1f{letter-spacing:-0.150692px;}
.ls9d{letter-spacing:-0.144000px;}
.ls3b{letter-spacing:-0.126000px;}
.ls6a{letter-spacing:-0.096000px;}
.ls36{letter-spacing:-0.063000px;}
.lsbb{letter-spacing:-0.048000px;}
.ls1{letter-spacing:0.000000px;}
.lsbd{letter-spacing:0.048000px;}
.ls18{letter-spacing:0.063000px;}
.ls9f{letter-spacing:0.095400px;}
.ls69{letter-spacing:0.096000px;}
.ls22{letter-spacing:0.121680px;}
.lsaa{letter-spacing:0.126000px;}
.ls37{letter-spacing:0.132000px;}
.lsc1{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.145309px;}
.ls14{letter-spacing:0.161454px;}
.ls15{letter-spacing:0.172219px;}
.ls85{letter-spacing:0.173400px;}
.ls57{letter-spacing:0.189000px;}
.ls7f{letter-spacing:0.192000px;}
.ls32{letter-spacing:0.198000px;}
.lsae{letter-spacing:0.240000px;}
.ls23{letter-spacing:0.273780px;}
.ls84{letter-spacing:0.288000px;}
.ls35{letter-spacing:0.313800px;}
.ls5b{letter-spacing:0.314400px;}
.ls0{letter-spacing:0.315000px;}
.ls5d{letter-spacing:0.327000px;}
.ls5c{letter-spacing:0.329400px;}
.ls82{letter-spacing:0.336000px;}
.ls5a{letter-spacing:0.337200px;}
.ls9e{letter-spacing:0.346500px;}
.ls50{letter-spacing:0.359998px;}
.lsc{letter-spacing:0.360000px;}
.ls4f{letter-spacing:0.360003px;}
.ls44{letter-spacing:0.364800px;}
.ls42{letter-spacing:0.378000px;}
.lsc8{letter-spacing:0.383400px;}
.lsad{letter-spacing:0.384000px;}
.lsa1{letter-spacing:0.419997px;}
.ls8b{letter-spacing:0.420000px;}
.ls81{letter-spacing:0.432000px;}
.ls55{letter-spacing:0.441000px;}
.lsa6{letter-spacing:0.456600px;}
.ls49{letter-spacing:0.468000px;}
.ls4b{letter-spacing:0.479400px;}
.ls4a{letter-spacing:0.480000px;}
.ls5f{letter-spacing:0.492600px;}
.ls67{letter-spacing:0.495000px;}
.ls66{letter-spacing:0.495600px;}
.lsb6{letter-spacing:0.502800px;}
.ls61{letter-spacing:0.510000px;}
.ls60{letter-spacing:0.528000px;}
.ls4d{letter-spacing:0.630000px;}
.lsc0{letter-spacing:0.672000px;}
.ls4e{letter-spacing:0.693000px;}
.lsb8{letter-spacing:0.741900px;}
.lsb9{letter-spacing:0.742200px;}
.lsc3{letter-spacing:0.742500px;}
.lsa2{letter-spacing:0.769800px;}
.ls71{letter-spacing:0.780000px;}
.ls99{letter-spacing:0.819000px;}
.ls21{letter-spacing:0.823415px;}
.lsb0{letter-spacing:0.864000px;}
.ls51{letter-spacing:0.900013px;}
.lsc5{letter-spacing:0.900600px;}
.ls7d{letter-spacing:0.960000px;}
.ls53{letter-spacing:0.989100px;}
.ls98{letter-spacing:0.989400px;}
.ls70{letter-spacing:0.990000px;}
.ls86{letter-spacing:0.991800px;}
.ls7e{letter-spacing:1.008000px;}
.ls9a{letter-spacing:1.020000px;}
.ls68{letter-spacing:1.050000px;}
.ls88{letter-spacing:1.055400px;}
.ls64{letter-spacing:1.056000px;}
.lsa8{letter-spacing:1.065000px;}
.ls62{letter-spacing:1.068000px;}
.ls89{letter-spacing:1.071000px;}
.ls7b{letter-spacing:1.200000px;}
.ls1a{letter-spacing:1.260000px;}
.ls79{letter-spacing:1.285200px;}
.lsc7{letter-spacing:1.344600px;}
.ls72{letter-spacing:1.368000px;}
.ls74{letter-spacing:1.400400px;}
.ls78{letter-spacing:1.401600px;}
.ls33{letter-spacing:1.423800px;}
.ls34{letter-spacing:1.424400px;}
.ls2e{letter-spacing:1.425000px;}
.ls76{letter-spacing:1.429800px;}
.ls8c{letter-spacing:1.440000px;}
.ls3a{letter-spacing:1.452000px;}
.ls54{letter-spacing:1.485000px;}
.lsb2{letter-spacing:1.488000px;}
.lsb3{letter-spacing:1.488600px;}
.ls19{letter-spacing:1.500000px;}
.ls58{letter-spacing:1.560000px;}
.lsac{letter-spacing:1.584000px;}
.ls29{letter-spacing:1.648800px;}
.ls2b{letter-spacing:1.649400px;}
.ls2f{letter-spacing:1.716000px;}
.ls2{letter-spacing:1.752000px;}
.ls91{letter-spacing:1.799983px;}
.ls90{letter-spacing:1.799985px;}
.ls95{letter-spacing:1.799990px;}
.ls94{letter-spacing:1.799991px;}
.ls93{letter-spacing:1.799995px;}
.ls96{letter-spacing:1.799998px;}
.ls3f{letter-spacing:1.800000px;}
.ls92{letter-spacing:1.800009px;}
.ls9b{letter-spacing:1.824000px;}
.lsb7{letter-spacing:1.824600px;}
.ls24{letter-spacing:1.980000px;}
.ls27{letter-spacing:2.016000px;}
.ls6b{letter-spacing:2.099984px;}
.ls6c{letter-spacing:2.099992px;}
.ls9{letter-spacing:2.100000px;}
.ls6d{letter-spacing:2.100003px;}
.ls6e{letter-spacing:2.100009px;}
.ls12{letter-spacing:2.142000px;}
.ls4{letter-spacing:2.190000px;}
.ls7a{letter-spacing:2.193300px;}
.lsb1{letter-spacing:2.208000px;}
.ls73{letter-spacing:2.248500px;}
.ls77{letter-spacing:2.344800px;}
.ls65{letter-spacing:2.399400px;}
.ls63{letter-spacing:2.400000px;}
.lsa9{letter-spacing:2.413200px;}
.ls8a{letter-spacing:2.415000px;}
.lsa7{letter-spacing:2.421000px;}
.lsb5{letter-spacing:2.422200px;}
.ls8d{letter-spacing:2.424600px;}
.ls83{letter-spacing:2.448000px;}
.lsaf{letter-spacing:2.544000px;}
.ls43{letter-spacing:2.644500px;}
.lsa0{letter-spacing:2.651400px;}
.ls56{letter-spacing:2.820000px;}
.lsb4{letter-spacing:2.898600px;}
.ls9c{letter-spacing:2.976000px;}
.ls46{letter-spacing:2.999400px;}
.ls48{letter-spacing:3.030600px;}
.ls40{letter-spacing:3.037500px;}
.lsf{letter-spacing:3.127761px;}
.ls45{letter-spacing:3.149400px;}
.ls16{letter-spacing:3.150000px;}
.ls75{letter-spacing:3.163800px;}
.lsa3{letter-spacing:3.172200px;}
.lsa4{letter-spacing:3.179400px;}
.lsa5{letter-spacing:3.180600px;}
.ls30{letter-spacing:3.432000px;}
.lsd{letter-spacing:3.456000px;}
.lse{letter-spacing:3.501225px;}
.ls5e{letter-spacing:3.525000px;}
.ls59{letter-spacing:3.570000px;}
.ls31{letter-spacing:3.696000px;}
.lsc6{letter-spacing:3.720000px;}
.ls41{letter-spacing:3.780000px;}
.ls8{letter-spacing:3.960000px;}
.lsb{letter-spacing:4.320000px;}
.ls8f{letter-spacing:4.426800px;}
.lsa{letter-spacing:4.901400px;}
.ls3e{letter-spacing:5.520000px;}
.ls11{letter-spacing:5.575500px;}
.ls1d{letter-spacing:5.628600px;}
.ls1c{letter-spacing:5.681700px;}
.lsba{letter-spacing:5.733000px;}
.lsc2{letter-spacing:5.859000px;}
.ls6{letter-spacing:6.120000px;}
.ls7{letter-spacing:6.390000px;}
.ls4c{letter-spacing:6.832200px;}
.ls2d{letter-spacing:7.410000px;}
.ls10{letter-spacing:9.557400px;}
.ls47{letter-spacing:10.490400px;}
.ls39{letter-spacing:11.766000px;}
.ls2c{letter-spacing:14.889600px;}
.ls2a{letter-spacing:14.934000px;}
.ls97{letter-spacing:80.460000px;}
.ls52{letter-spacing:113.112000px;}
.ls87{letter-spacing:144.144000px;}
.ls6f{letter-spacing:167.292000px;}
.ls8e{letter-spacing:464.160000px;}
.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;}
}
.wsa{word-spacing:-116.640000px;}
.ws1{word-spacing:-87.330000px;}
.wsb{word-spacing:-83.070000px;}
.ws0{word-spacing:-70.956000px;}
.ws8{word-spacing:-68.766000px;}
.ws2f{word-spacing:-30.492000px;}
.ws49{word-spacing:-26.220000px;}
.ws4a{word-spacing:-25.137000px;}
.ws3d{word-spacing:-23.028000px;}
.ws3f{word-spacing:-21.489000px;}
.ws29{word-spacing:-21.261000px;}
.ws28{word-spacing:-19.812000px;}
.ws36{word-spacing:-18.069000px;}
.ws35{word-spacing:-16.929000px;}
.ws47{word-spacing:-16.758000px;}
.ws39{word-spacing:-16.017000px;}
.ws1e3{word-spacing:-15.939000px;}
.ws37{word-spacing:-15.846000px;}
.ws1e5{word-spacing:-15.813000px;}
.ws9{word-spacing:-15.624000px;}
.ws44{word-spacing:-15.504000px;}
.ws34{word-spacing:-15.333000px;}
.ws42{word-spacing:-15.060000px;}
.ws38{word-spacing:-14.763000px;}
.ws4d{word-spacing:-14.760000px;}
.ws3c{word-spacing:-14.364000px;}
.ws12{word-spacing:-14.018400px;}
.ws13{word-spacing:-13.965300px;}
.ws19{word-spacing:-13.920000px;}
.ws14{word-spacing:-13.912200px;}
.ws2b{word-spacing:-13.509000px;}
.ws4f{word-spacing:-13.500000px;}
.ws10{word-spacing:-13.440000px;}
.ws165{word-spacing:-13.356000px;}
.ws11{word-spacing:-13.200000px;}
.ws1ae{word-spacing:-13.041000px;}
.ws10c{word-spacing:-12.978000px;}
.ws167{word-spacing:-12.960000px;}
.ws82{word-spacing:-12.915000px;}
.ws2{word-spacing:-12.852000px;}
.ws1ad{word-spacing:-12.789000px;}
.wsde{word-spacing:-12.720000px;}
.ws10d{word-spacing:-12.663000px;}
.ws1e4{word-spacing:-12.600000px;}
.ws4c{word-spacing:-12.537000px;}
.ws10e{word-spacing:-12.474000px;}
.ws127{word-spacing:-12.411000px;}
.wseb{word-spacing:-12.285000px;}
.wsf{word-spacing:-12.222000px;}
.ws166{word-spacing:-12.159000px;}
.ws27{word-spacing:-12.084000px;}
.ws4e{word-spacing:-11.940000px;}
.ws1e0{word-spacing:-10.896000px;}
.ws1dc{word-spacing:-10.848000px;}
.ws1dd{word-spacing:-10.800000px;}
.ws50{word-spacing:-10.755000px;}
.ws1df{word-spacing:-10.752000px;}
.wse{word-spacing:-10.597041px;}
.ws1da{word-spacing:-10.416000px;}
.ws1e2{word-spacing:-10.368000px;}
.ws200{word-spacing:-10.332000px;}
.ws116{word-spacing:-10.128000px;}
.ws41{word-spacing:-10.089000px;}
.ws139{word-spacing:-10.032000px;}
.wse3{word-spacing:-9.936000px;}
.ws1b4{word-spacing:-9.888000px;}
.ws1de{word-spacing:-9.792000px;}
.ws83{word-spacing:-9.648000px;}
.wsdd{word-spacing:-9.552000px;}
.ws1a6{word-spacing:-9.323931px;}
.wse4{word-spacing:-9.256500px;}
.wse2{word-spacing:-8.694037px;}
.wse1{word-spacing:-8.694010px;}
.ws170{word-spacing:-8.694000px;}
.wse0{word-spacing:-8.693935px;}
.wsd{word-spacing:-8.136000px;}
.ws1e1{word-spacing:-7.920000px;}
.ws168{word-spacing:-7.870500px;}
.ws1a2{word-spacing:-7.773319px;}
.ws1a7{word-spacing:-7.632000px;}
.ws16c{word-spacing:-7.452036px;}
.ws16b{word-spacing:-7.452000px;}
.ws16f{word-spacing:-7.451993px;}
.ws16d{word-spacing:-7.451978px;}
.ws16e{word-spacing:-7.451964px;}
.ws169{word-spacing:-7.451939px;}
.ws16a{word-spacing:-7.451928px;}
.ws59{word-spacing:-7.410000px;}
.ws52{word-spacing:-6.012043px;}
.ws51{word-spacing:-6.012000px;}
.ws55{word-spacing:-6.011995px;}
.ws53{word-spacing:-6.011964px;}
.ws54{word-spacing:-6.011961px;}
.ws22{word-spacing:-5.681700px;}
.ws22e{word-spacing:-5.664000px;}
.ws7{word-spacing:-5.040000px;}
.ws17{word-spacing:-4.822138px;}
.ws7b{word-spacing:-4.800000px;}
.ws8c{word-spacing:-3.843000px;}
.ws211{word-spacing:-3.744000px;}
.ws15{word-spacing:-3.697297px;}
.ws30{word-spacing:-3.696000px;}
.ws16{word-spacing:-3.551988px;}
.ws20{word-spacing:-3.501225px;}
.ws102{word-spacing:-3.402000px;}
.ws68{word-spacing:-3.276000px;}
.ws172{word-spacing:-3.024000px;}
.ws7a{word-spacing:-2.928000px;}
.ws1ca{word-spacing:-2.835000px;}
.ws13a{word-spacing:-2.688000px;}
.ws14b{word-spacing:-2.646000px;}
.ws1b5{word-spacing:-2.592000px;}
.ws147{word-spacing:-2.520000px;}
.ws117{word-spacing:-2.496000px;}
.ws148{word-spacing:-2.457000px;}
.ws158{word-spacing:-2.448000px;}
.ws164{word-spacing:-2.400000px;}
.wse8{word-spacing:-2.268000px;}
.ws1b7{word-spacing:-2.256000px;}
.ws144{word-spacing:-2.205000px;}
.ws5{word-spacing:-2.190000px;}
.ws106{word-spacing:-2.079000px;}
.ws7e{word-spacing:-2.016000px;}
.wsef{word-spacing:-1.953000px;}
.wsda{word-spacing:-1.920000px;}
.ws171{word-spacing:-1.872000px;}
.ws9d{word-spacing:-1.827000px;}
.ws57{word-spacing:-1.800000px;}
.ws1ba{word-spacing:-1.764000px;}
.ws40{word-spacing:-1.716000px;}
.ws14d{word-spacing:-1.701000px;}
.wse5{word-spacing:-1.638000px;}
.ws1b3{word-spacing:-1.632000px;}
.ws1ef{word-spacing:-1.584000px;}
.ws1b9{word-spacing:-1.575000px;}
.ws12a{word-spacing:-1.512000px;}
.ws141{word-spacing:-1.488000px;}
.ws1cc{word-spacing:-1.485000px;}
.ws31{word-spacing:-1.452000px;}
.wsbf{word-spacing:-1.449000px;}
.ws2c{word-spacing:-1.425000px;}
.ws1f8{word-spacing:-1.344000px;}
.ws1bf{word-spacing:-1.323000px;}
.ws10f{word-spacing:-1.248000px;}
.ws150{word-spacing:-1.200000px;}
.wsc5{word-spacing:-1.134000px;}
.ws1f9{word-spacing:-1.104000px;}
.ws12d{word-spacing:-1.071000px;}
.ws112{word-spacing:-1.056000px;}
.ws110{word-spacing:-1.008000px;}
.ws101{word-spacing:-0.945000px;}
.ws1b6{word-spacing:-0.912000px;}
.ws18{word-spacing:-0.839561px;}
.ws77{word-spacing:-0.819000px;}
.ws23{word-spacing:-0.796500px;}
.ws9f{word-spacing:-0.780000px;}
.ws8f{word-spacing:-0.693000px;}
.ws18e{word-spacing:-0.630000px;}
.ws76{word-spacing:-0.567000px;}
.ws58{word-spacing:-0.540000px;}
.ws6b{word-spacing:-0.504000px;}
.ws115{word-spacing:-0.480000px;}
.wsaa{word-spacing:-0.441000px;}
.ws14f{word-spacing:-0.420000px;}
.ws1e8{word-spacing:-0.384000px;}
.ws5e{word-spacing:-0.378000px;}
.ws81{word-spacing:-0.360000px;}
.ws118{word-spacing:-0.336000px;}
.wscf{word-spacing:-0.315000px;}
.ws205{word-spacing:-0.288000px;}
.ws96{word-spacing:-0.252000px;}
.ws113{word-spacing:-0.240000px;}
.ws86{word-spacing:-0.210000px;}
.ws70{word-spacing:-0.189000px;}
.ws25{word-spacing:-0.161454px;}
.ws202{word-spacing:-0.144000px;}
.wsf2{word-spacing:-0.126000px;}
.wsae{word-spacing:-0.063000px;}
.ws85{word-spacing:-0.048000px;}
.ws1c{word-spacing:-0.036000px;}
.ws3{word-spacing:0.000000px;}
.ws84{word-spacing:0.048000px;}
.ws9b{word-spacing:0.063000px;}
.wscb{word-spacing:0.126000px;}
.ws1f4{word-spacing:0.144000px;}
.wsee{word-spacing:0.189000px;}
.ws111{word-spacing:0.240000px;}
.ws1a{word-spacing:0.252000px;}
.ws2d{word-spacing:0.264000px;}
.ws26{word-spacing:0.296004px;}
.ws48{word-spacing:0.315000px;}
.ws1f0{word-spacing:0.336000px;}
.ws3a{word-spacing:0.378000px;}
.ws1f6{word-spacing:0.432000px;}
.ws6{word-spacing:0.438000px;}
.ws45{word-spacing:0.441000px;}
.wsec{word-spacing:0.504000px;}
.ws43{word-spacing:0.528000px;}
.ws1d{word-spacing:0.540000px;}
.ws46{word-spacing:0.567000px;}
.ws155{word-spacing:0.576000px;}
.ws194{word-spacing:0.624000px;}
.ws33{word-spacing:0.630000px;}
.ws3e{word-spacing:0.693000px;}
.ws114{word-spacing:0.864000px;}
.ws203{word-spacing:0.912000px;}
.ws177{word-spacing:0.945000px;}
.ws193{word-spacing:1.008000px;}
.ws1d9{word-spacing:1.056000px;}
.ws1c5{word-spacing:1.071000px;}
.ws1d4{word-spacing:1.104000px;}
.ws24{word-spacing:1.197000px;}
.wsb6{word-spacing:1.323000px;}
.ws2a{word-spacing:1.425000px;}
.ws63{word-spacing:1.449000px;}
.ws32{word-spacing:1.452000px;}
.ws130{word-spacing:1.512000px;}
.ws3b{word-spacing:1.518000px;}
.ws151{word-spacing:1.584000px;}
.ws94{word-spacing:1.638000px;}
.ws2e{word-spacing:1.650000px;}
.ws12c{word-spacing:1.701000px;}
.ws8e{word-spacing:1.764000px;}
.ws17f{word-spacing:1.953000px;}
.ws1d2{word-spacing:1.968000px;}
.wsf1{word-spacing:2.016000px;}
.ws152{word-spacing:2.064000px;}
.ws105{word-spacing:2.079000px;}
.ws1d6{word-spacing:2.112000px;}
.ws126{word-spacing:2.142000px;}
.ws6c{word-spacing:2.205000px;}
.ws98{word-spacing:2.331000px;}
.ws132{word-spacing:2.394000px;}
.ws1e9{word-spacing:2.400000px;}
.wsd9{word-spacing:2.448000px;}
.wsa4{word-spacing:2.457000px;}
.ws18c{word-spacing:2.520000px;}
.ws5a{word-spacing:2.583000px;}
.ws1fd{word-spacing:2.640000px;}
.ws15b{word-spacing:2.646000px;}
.ws89{word-spacing:2.709000px;}
.wsa8{word-spacing:2.772000px;}
.wsac{word-spacing:2.835000px;}
.ws1fe{word-spacing:2.880000px;}
.ws146{word-spacing:2.898000px;}
.ws1f5{word-spacing:2.928000px;}
.ws186{word-spacing:2.961000px;}
.ws1d3{word-spacing:2.976000px;}
.ws9e{word-spacing:3.024000px;}
.ws1e6{word-spacing:3.072000px;}
.wsaf{word-spacing:3.087000px;}
.ws6a{word-spacing:3.150000px;}
.ws1d7{word-spacing:3.168000px;}
.ws7f{word-spacing:3.213000px;}
.wsd3{word-spacing:3.216000px;}
.wsf9{word-spacing:3.276000px;}
.ws187{word-spacing:3.339000px;}
.ws87{word-spacing:3.402000px;}
.ws154{word-spacing:3.456000px;}
.ws92{word-spacing:3.465000px;}
.ws1db{word-spacing:3.523200px;}
.ws8a{word-spacing:3.528000px;}
.ws178{word-spacing:3.591000px;}
.wsc{word-spacing:3.600000px;}
.ws21{word-spacing:3.654000px;}
.ws180{word-spacing:3.717000px;}
.ws140{word-spacing:3.792000px;}
.ws1c1{word-spacing:3.843000px;}
.ws64{word-spacing:3.906000px;}
.ws1d5{word-spacing:4.080000px;}
.wsd8{word-spacing:4.128000px;}
.wsb9{word-spacing:4.158000px;}
.ws1e7{word-spacing:4.176000px;}
.ws181{word-spacing:4.221000px;}
.ws1f2{word-spacing:4.224000px;}
.ws137{word-spacing:4.272000px;}
.ws6e{word-spacing:4.284000px;}
.wsc7{word-spacing:4.347000px;}
.wsd2{word-spacing:4.368000px;}
.ws174{word-spacing:4.410000px;}
.ws1d8{word-spacing:4.416000px;}
.wsc9{word-spacing:4.473000px;}
.wsb5{word-spacing:4.536000px;}
.ws1f1{word-spacing:4.560000px;}
.ws161{word-spacing:4.662000px;}
.ws1cf{word-spacing:4.752000px;}
.ws122{word-spacing:4.788000px;}
.ws103{word-spacing:4.851000px;}
.wscd{word-spacing:4.914000px;}
.ws61{word-spacing:4.977000px;}
.wsb1{word-spacing:5.040000px;}
.ws156{word-spacing:5.088000px;}
.ws12e{word-spacing:5.103000px;}
.wsdc{word-spacing:5.136000px;}
.wsa5{word-spacing:5.166000px;}
.wsc0{word-spacing:5.229000px;}
.ws7c{word-spacing:5.292000px;}
.wsd4{word-spacing:5.376000px;}
.wse7{word-spacing:5.481000px;}
.wsd0{word-spacing:5.544000px;}
.ws1c7{word-spacing:5.607000px;}
.wsf3{word-spacing:5.670000px;}
.ws11f{word-spacing:5.733000px;}
.ws7d{word-spacing:5.796000px;}
.wsce{word-spacing:5.859000px;}
.ws15a{word-spacing:5.922000px;}
.ws162{word-spacing:5.985000px;}
.ws119{word-spacing:6.111000px;}
.wsad{word-spacing:6.174000px;}
.ws153{word-spacing:6.192000px;}
.ws88{word-spacing:6.237000px;}
.ws192{word-spacing:6.426000px;}
.ws13d{word-spacing:6.480000px;}
.wsc3{word-spacing:6.489000px;}
.ws13f{word-spacing:6.528000px;}
.ws136{word-spacing:6.552000px;}
.ws14c{word-spacing:6.615000px;}
.ws1ff{word-spacing:6.624000px;}
.wsb8{word-spacing:6.678000px;}
.ws71{word-spacing:6.741000px;}
.ws74{word-spacing:6.804000px;}
.ws13b{word-spacing:6.864000px;}
.wsdb{word-spacing:6.912000px;}
.ws97{word-spacing:6.930000px;}
.ws67{word-spacing:6.993000px;}
.wsd6{word-spacing:7.056000px;}
.wsab{word-spacing:7.119000px;}
.ws17e{word-spacing:7.182000px;}
.ws11d{word-spacing:7.245000px;}
.ws62{word-spacing:7.308000px;}
.wsf0{word-spacing:7.371000px;}
.wsa2{word-spacing:7.434000px;}
.ws1f7{word-spacing:7.488000px;}
.wsd5{word-spacing:7.536000px;}
.wsb7{word-spacing:7.560000px;}
.ws65{word-spacing:7.623000px;}
.ws1ec{word-spacing:7.632000px;}
.ws95{word-spacing:7.686000px;}
.ws12b{word-spacing:7.749000px;}
.ws1d0{word-spacing:7.872000px;}
.ws143{word-spacing:7.875000px;}
.ws18d{word-spacing:7.938000px;}
.ws1d1{word-spacing:7.968000px;}
.wsa3{word-spacing:8.001000px;}
.ws1fc{word-spacing:8.064000px;}
.ws8b{word-spacing:8.127000px;}
.ws1e{word-spacing:8.172000px;}
.ws17c{word-spacing:8.190000px;}
.ws5b{word-spacing:8.253000px;}
.ws107{word-spacing:8.316000px;}
.ws123{word-spacing:8.379000px;}
.ws11e{word-spacing:8.442000px;}
.wsea{word-spacing:8.505000px;}
.ws1be{word-spacing:8.568000px;}
.ws108{word-spacing:8.694000px;}
.ws1ed{word-spacing:8.784000px;}
.ws184{word-spacing:8.820000px;}
.ws149{word-spacing:9.072000px;}
.ws93{word-spacing:9.135000px;}
.ws138{word-spacing:9.168000px;}
.ws17b{word-spacing:9.198000px;}
.wsba{word-spacing:9.261000px;}
.ws5f{word-spacing:9.324000px;}
.ws72{word-spacing:9.387000px;}
.wsfb{word-spacing:9.450000px;}
.ws125{word-spacing:9.513000px;}
.wsc4{word-spacing:9.576000px;}
.ws99{word-spacing:9.702000px;}
.wse9{word-spacing:9.765000px;}
.wsf4{word-spacing:9.828000px;}
.ws13c{word-spacing:9.840000px;}
.wsd7{word-spacing:9.936000px;}
.ws1eb{word-spacing:9.984000px;}
.ws69{word-spacing:10.017000px;}
.ws1ea{word-spacing:10.032000px;}
.wsa9{word-spacing:10.206000px;}
.ws6f{word-spacing:10.269000px;}
.wsb0{word-spacing:10.458000px;}
.ws109{word-spacing:10.521000px;}
.wsd1{word-spacing:10.584000px;}
.wsb2{word-spacing:10.647000px;}
.ws90{word-spacing:10.710000px;}
.ws79{word-spacing:10.773000px;}
.ws1bd{word-spacing:10.836000px;}
.ws18b{word-spacing:10.899000px;}
.ws17d{word-spacing:10.962000px;}
.ws121{word-spacing:11.025000px;}
.ws1b{word-spacing:11.052000px;}
.ws1bc{word-spacing:11.088000px;}
.wsf5{word-spacing:11.151000px;}
.ws15e{word-spacing:11.214000px;}
.ws134{word-spacing:11.277000px;}
.ws15c{word-spacing:11.340000px;}
.ws185{word-spacing:11.592000px;}
.ws1c8{word-spacing:11.655000px;}
.ws188{word-spacing:11.781000px;}
.ws11a{word-spacing:11.970000px;}
.ws128{word-spacing:12.159000px;}
.wsa6{word-spacing:12.222000px;}
.ws60{word-spacing:12.285000px;}
.ws18a{word-spacing:12.348000px;}
.wsc2{word-spacing:12.411000px;}
.wsa7{word-spacing:12.474000px;}
.ws75{word-spacing:12.663000px;}
.ws9c{word-spacing:12.726000px;}
.wsc1{word-spacing:12.789000px;}
.ws176{word-spacing:12.915000px;}
.ws11c{word-spacing:12.978000px;}
.wsf6{word-spacing:13.041000px;}
.ws5d{word-spacing:13.104000px;}
.ws80{word-spacing:13.230000px;}
.ws179{word-spacing:13.293000px;}
.wsf7{word-spacing:13.356000px;}
.ws10b{word-spacing:13.482000px;}
.ws8d{word-spacing:13.608000px;}
.ws9a{word-spacing:13.671000px;}
.ws163{word-spacing:13.797000px;}
.wsfa{word-spacing:13.923000px;}
.ws1aa{word-spacing:13.986000px;}
.ws13e{word-spacing:14.016000px;}
.ws191{word-spacing:14.112000px;}
.wsb4{word-spacing:14.175000px;}
.wsbe{word-spacing:14.238000px;}
.ws1ac{word-spacing:14.301000px;}
.ws1ee{word-spacing:14.448000px;}
.ws11b{word-spacing:14.490000px;}
.ws1cb{word-spacing:14.553000px;}
.ws104{word-spacing:14.616000px;}
.ws12f{word-spacing:14.805000px;}
.ws4{word-spacing:14.892000px;}
.wsfe{word-spacing:14.931000px;}
.ws160{word-spacing:15.246000px;}
.ws15f{word-spacing:15.372000px;}
.ws1f{word-spacing:15.444000px;}
.ws142{word-spacing:15.498000px;}
.ws131{word-spacing:15.624000px;}
.ws1c3{word-spacing:15.687000px;}
.ws1cd{word-spacing:15.744000px;}
.ws182{word-spacing:15.876000px;}
.ws1ce{word-spacing:16.032000px;}
.wsff{word-spacing:16.191000px;}
.ws100{word-spacing:16.254000px;}
.ws91{word-spacing:16.380000px;}
.ws145{word-spacing:16.443000px;}
.ws1c2{word-spacing:16.569000px;}
.ws73{word-spacing:16.632000px;}
.wsf8{word-spacing:16.821000px;}
.wscc{word-spacing:16.947000px;}
.ws15d{word-spacing:17.073000px;}
.ws183{word-spacing:17.325000px;}
.wse6{word-spacing:17.451000px;}
.wsb3{word-spacing:18.018000px;}
.wsbd{word-spacing:18.207000px;}
.ws66{word-spacing:18.396000px;}
.ws5c{word-spacing:18.522000px;}
.ws190{word-spacing:18.774000px;}
.wsc6{word-spacing:19.467000px;}
.ws1ab{word-spacing:19.593000px;}
.wsa1{word-spacing:19.656000px;}
.ws189{word-spacing:19.782000px;}
.ws14e{word-spacing:19.845000px;}
.ws173{word-spacing:19.908000px;}
.wsbb{word-spacing:20.853000px;}
.ws1fb{word-spacing:21.024000px;}
.ws1fa{word-spacing:21.120000px;}
.ws18f{word-spacing:21.168000px;}
.ws1bb{word-spacing:21.546000px;}
.wsca{word-spacing:21.735000px;}
.ws1c6{word-spacing:22.176000px;}
.wsa0{word-spacing:22.365000px;}
.ws1f3{word-spacing:22.368000px;}
.wsed{word-spacing:22.491000px;}
.wsbc{word-spacing:22.932000px;}
.ws129{word-spacing:23.121000px;}
.ws17a{word-spacing:23.436000px;}
.ws1c0{word-spacing:23.688000px;}
.ws175{word-spacing:24.129000px;}
.ws120{word-spacing:24.255000px;}
.ws1a9{word-spacing:24.318000px;}
.ws1c4{word-spacing:24.696000px;}
.ws133{word-spacing:26.523000px;}
.wsc8{word-spacing:27.342000px;}
.ws1c9{word-spacing:27.594000px;}
.wsfd{word-spacing:29.673000px;}
.ws6d{word-spacing:30.240000px;}
.ws19b{word-spacing:31.606609px;}
.ws195{word-spacing:32.009942px;}
.ws124{word-spacing:32.571000px;}
.ws1b8{word-spacing:32.634000px;}
.ws10a{word-spacing:35.154000px;}
.ws56{word-spacing:36.036000px;}
.ws14a{word-spacing:37.674000px;}
.ws201{word-spacing:38.136000px;}
.ws78{word-spacing:42.714000px;}
.ws1a0{word-spacing:42.789922px;}
.ws135{word-spacing:43.659000px;}
.wsfc{word-spacing:45.234000px;}
.ws19f{word-spacing:60.023224px;}
.ws1a1{word-spacing:73.369867px;}
.ws19a{word-spacing:78.099858px;}
.ws1b2{word-spacing:79.872000px;}
.ws1b1{word-spacing:96.720000px;}
.ws21a{word-spacing:104.784000px;}
.ws19d{word-spacing:105.086476px;}
.ws198{word-spacing:107.359805px;}
.ws22f{word-spacing:109.392000px;}
.ws1a3{word-spacing:116.534783px;}
.ws21b{word-spacing:125.040000px;}
.ws222{word-spacing:127.008000px;}
.ws215{word-spacing:141.456000px;}
.ws22c{word-spacing:144.912000px;}
.ws221{word-spacing:145.536000px;}
.ws20c{word-spacing:149.232000px;}
.ws240{word-spacing:151.104000px;}
.ws196{word-spacing:152.203057px;}
.ws214{word-spacing:154.032000px;}
.ws19e{word-spacing:155.886983px;}
.ws207{word-spacing:155.952000px;}
.ws241{word-spacing:159.120000px;}
.ws204{word-spacing:162.288000px;}
.ws217{word-spacing:162.528000px;}
.ws23a{word-spacing:162.624000px;}
.ws1a8{word-spacing:162.864000px;}
.ws19c{word-spacing:163.313036px;}
.ws216{word-spacing:165.600000px;}
.ws22b{word-spacing:165.744000px;}
.ws220{word-spacing:166.320000px;}
.ws236{word-spacing:167.952000px;}
.ws235{word-spacing:168.768000px;}
.ws230{word-spacing:170.208000px;}
.ws23f{word-spacing:171.552000px;}
.ws206{word-spacing:171.744000px;}
.ws20d{word-spacing:172.368000px;}
.ws199{word-spacing:174.520549px;}
.ws4b{word-spacing:175.105800px;}
.ws212{word-spacing:176.496000px;}
.ws20b{word-spacing:178.272000px;}
.ws210{word-spacing:178.416000px;}
.ws225{word-spacing:178.992000px;}
.ws233{word-spacing:179.952000px;}
.ws23b{word-spacing:182.160000px;}
.ws1a4{word-spacing:183.443000px;}
.ws20a{word-spacing:183.600000px;}
.ws229{word-spacing:191.712000px;}
.ws23d{word-spacing:193.008000px;}
.ws209{word-spacing:193.584000px;}
.ws21c{word-spacing:194.256000px;}
.ws234{word-spacing:195.216000px;}
.ws218{word-spacing:197.664000px;}
.ws21d{word-spacing:198.864000px;}
.ws228{word-spacing:198.912000px;}
.ws20e{word-spacing:205.152000px;}
.ws22a{word-spacing:206.112000px;}
.ws213{word-spacing:206.208000px;}
.ws224{word-spacing:207.792000px;}
.ws23c{word-spacing:207.888000px;}
.ws219{word-spacing:208.752000px;}
.ws21e{word-spacing:210.912000px;}
.ws20f{word-spacing:212.736000px;}
.ws21f{word-spacing:213.552000px;}
.ws223{word-spacing:218.688000px;}
.ws208{word-spacing:220.464000px;}
.ws227{word-spacing:221.568000px;}
.ws242{word-spacing:222.000000px;}
.ws23e{word-spacing:222.720000px;}
.ws22d{word-spacing:223.920000px;}
.ws239{word-spacing:224.016000px;}
.ws231{word-spacing:224.784000px;}
.ws232{word-spacing:224.832000px;}
.ws238{word-spacing:229.536000px;}
.ws226{word-spacing:235.152000px;}
.ws237{word-spacing:235.344000px;}
.ws197{word-spacing:306.569443px;}
.wsdf{word-spacing:323.532000px;}
.ws1af{word-spacing:327.024000px;}
.ws1b0{word-spacing:376.560000px;}
.ws157{word-spacing:392.832000px;}
.ws1a5{word-spacing:699.012000px;}
.ws159{word-spacing:800.448000px;}
._3a{margin-left:-1946.232000px;}
._34{margin-left:-1195.488000px;}
._30{margin-left:-975.888000px;}
._24{margin-left:-836.832000px;}
._32{margin-left:-648.480000px;}
._35{margin-left:-609.840000px;}
._3b{margin-left:-445.175400px;}
._31{margin-left:-443.136000px;}
._27{margin-left:-437.019000px;}
._33{margin-left:-427.920000px;}
._1d{margin-left:-330.828600px;}
._36{margin-left:-270.985200px;}
._23{margin-left:-37.905000px;}
._3c{margin-left:-34.507200px;}
._20{margin-left:-30.681900px;}
._3e{margin-left:-29.275800px;}
._28{margin-left:-27.955200px;}
._37{margin-left:-26.271000px;}
._21{margin-left:-24.921000px;}
._2b{margin-left:-23.566200px;}
._1f{margin-left:-21.357000px;}
._2a{margin-left:-19.656000px;}
._2d{margin-left:-17.602200px;}
._22{margin-left:-16.549500px;}
._1a{margin-left:-15.230400px;}
._19{margin-left:-14.013000px;}
._29{margin-left:-12.583200px;}
._1c{margin-left:-10.378800px;}
._1b{margin-left:-8.343600px;}
._14{margin-left:-6.695100px;}
._d{margin-left:-5.670000px;}
._15{margin-left:-4.498500px;}
._f{margin-left:-2.697600px;}
._b{margin-left:-1.394400px;}
._e{width:1.035600px;}
._7{width:2.058600px;}
._6{width:3.547800px;}
._10{width:4.878000px;}
._11{width:6.749400px;}
._c{width:8.010000px;}
._18{width:9.733200px;}
._13{width:11.538600px;}
._9{width:12.921000px;}
._2c{width:14.128800px;}
._a{width:15.330000px;}
._5{width:17.082000px;}
._2{width:18.439800px;}
._16{width:20.196000px;}
._4{width:24.440400px;}
._1{width:25.710600px;}
._17{width:28.241100px;}
._1e{width:32.658000px;}
._0{width:34.076400px;}
._3{width:35.784600px;}
._8{width:41.128200px;}
._4b{width:64.377600px;}
._45{width:71.817600px;}
._43{width:78.684000px;}
._4d{width:80.354400px;}
._59{width:83.760000px;}
._4c{width:94.706400px;}
._12{width:97.216200px;}
._4e{width:112.080000px;}
._5e{width:116.889600px;}
._4f{width:120.240000px;}
._44{width:124.233600px;}
._57{width:127.460400px;}
._58{width:135.312000px;}
._52{width:137.616000px;}
._3d{width:143.232000px;}
._63{width:144.691200px;}
._55{width:146.405400px;}
._5c{width:147.696000px;}
._53{width:150.192000px;}
._56{width:151.270800px;}
._4a{width:154.464000px;}
._5d{width:156.768000px;}
._25{width:162.050400px;}
._47{width:164.352000px;}
._26{width:166.072200px;}
._3f{width:169.104000px;}
._46{width:173.817600px;}
._42{width:175.056000px;}
._54{width:177.504000px;}
._40{width:178.992000px;}
._48{width:181.776000px;}
._5b{width:182.832000px;}
._5a{width:184.320000px;}
._5f{width:186.288000px;}
._62{width:189.936000px;}
._49{width:191.184000px;}
._61{width:192.240000px;}
._60{width:194.793600px;}
._51{width:200.736000px;}
._50{width:202.752000px;}
._41{width:206.976000px;}
._2f{width:430.416000px;}
._2e{width:616.224000px;}
._38{width:698.112000px;}
._39{width:700.740000px;}
.fc6{color:rgb(123,121,121);}
.fc5{color:rgb(79,76,77);}
.fc3{color:rgb(39,68,160);}
.fc4{color:rgb(127,96,31);}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs11{font-size:5.374200px;}
.fsb{font-size:14.800200px;}
.fs9{font-size:16.145400px;}
.fsa{font-size:21.527400px;}
.fse{font-size:27.000000px;}
.fsc{font-size:30.420000px;}
.fsf{font-size:33.120000px;}
.fs27{font-size:35.999652px;}
.fs26{font-size:35.999706px;}
.fs1c{font-size:35.999765px;}
.fs1b{font-size:35.999784px;}
.fs2b{font-size:35.999802px;}
.fs29{font-size:35.999828px;}
.fs28{font-size:35.999893px;}
.fs1f{font-size:35.999966px;}
.fs10{font-size:36.000000px;}
.fs2a{font-size:36.000161px;}
.fs1d{font-size:36.000174px;}
.fs1a{font-size:36.000256px;}
.fs1e{font-size:36.000503px;}
.fs2d{font-size:36.666600px;}
.fs2c{font-size:36.758400px;}
.fs15{font-size:40.500000px;}
.fs21{font-size:41.999688px;}
.fs22{font-size:41.999839px;}
.fs4{font-size:42.000000px;}
.fs23{font-size:42.000051px;}
.fs24{font-size:42.000176px;}
.fsd{font-size:42.120000px;}
.fs19{font-size:45.000000px;}
.fs2e{font-size:46.500000px;}
.fs6{font-size:46.683000px;}
.fs18{font-size:48.000000px;}
.fs17{font-size:49.500000px;}
.fs8{font-size:53.100000px;}
.fs13{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs20{font-size:65.520000px;}
.fs12{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs14{font-size:78.000000px;}
.fs25{font-size:81.120000px;}
.fs16{font-size:108.000000px;}
.fs2{font-size:426.000000px;}
.fs5{font-size:432.000000px;}
.fs1{font-size:438.000000px;}
.y36{bottom:-16.460636px;}
.y35{bottom:-11.413768px;}
.y34{bottom:-6.366900px;}
.y11c{bottom:-5.726850px;}
.y120{bottom:-5.724600px;}
.y125{bottom:-5.374500px;}
.y152{bottom:-5.200200px;}
.y51{bottom:-0.004800px;}
.y0{bottom:0.000000px;}
.yca{bottom:1.452900px;}
.y137{bottom:2.062500px;}
.y3b{bottom:2.859930px;}
.y1f4{bottom:2.914350px;}
.y19{bottom:3.735600px;}
.y2d{bottom:21.236250px;}
.y4c{bottom:21.659550px;}
.y2b{bottom:39.986250px;}
.y3a{bottom:42.588450px;}
.y14f{bottom:46.034280px;}
.y85{bottom:52.618200px;}
.y9a{bottom:52.724400px;}
.y29{bottom:58.736250px;}
.y84{bottom:67.018200px;}
.y7d{bottom:72.608250px;}
.y27{bottom:77.486250px;}
.y8{bottom:79.110600px;}
.y2b9{bottom:79.853550px;}
.y83{bottom:81.418200px;}
.y13{bottom:91.600800px;}
.ya4{bottom:95.818200px;}
.y25{bottom:96.236250px;}
.y7{bottom:99.360600px;}
.y2b8{bottom:100.103550px;}
.y157{bottom:104.348100px;}
.y52{bottom:110.108250px;}
.ya3{bottom:110.218200px;}
.y12{bottom:110.350800px;}
.y14e{bottom:117.616650px;}
.y29f{bottom:118.680750px;}
.y267{bottom:118.798800px;}
.ya2{bottom:124.618200px;}
.y7c{bottom:128.858250px;}
.y29e{bottom:133.080750px;}
.y266{bottom:133.198800px;}
.ya1{bottom:139.018200px;}
.y29d{bottom:147.480900px;}
.y265{bottom:147.598800px;}
.y66{bottom:147.608250px;}
.y23{bottom:147.631950px;}
.ya0{bottom:153.418200px;}
.y33{bottom:156.925500px;}
.y37{bottom:160.948050px;}
.y30{bottom:160.956300px;}
.y29c{bottom:161.880750px;}
.y264{bottom:161.998800px;}
.ya5{bottom:162.608250px;}
.y2f{bottom:164.992650px;}
.y65{bottom:166.358250px;}
.y9f{bottom:167.818200px;}
.y32{bottom:176.031030px;}
.y29b{bottom:176.280750px;}
.y263{bottom:176.398800px;}
.y9e{bottom:182.218200px;}
.y31{bottom:182.489250px;}
.y77{bottom:185.108250px;}
.y22{bottom:185.131950px;}
.y29a{bottom:190.680750px;}
.y262{bottom:190.798800px;}
.y9d{bottom:196.618200px;}
.y64{bottom:203.858250px;}
.y21{bottom:203.881950px;}
.y299{bottom:205.080750px;}
.y261{bottom:205.198800px;}
.y1f2{bottom:205.711650px;}
.y9c{bottom:211.018200px;}
.ybe{bottom:211.358250px;}
.y298{bottom:219.480750px;}
.y260{bottom:219.598800px;}
.y63{bottom:222.608250px;}
.y20{bottom:222.631950px;}
.y1fa{bottom:225.418200px;}
.ybd{bottom:233.858250px;}
.y297{bottom:233.880750px;}
.y25f{bottom:233.998800px;}
.y1f9{bottom:239.818200px;}
.y62{bottom:241.358250px;}
.y99{bottom:245.085900px;}
.y296{bottom:248.280750px;}
.y25e{bottom:248.398800px;}
.ybc{bottom:256.358250px;}
.y98{bottom:260.085900px;}
.y76{bottom:260.108250px;}
.y1f{bottom:260.131950px;}
.y295{bottom:262.680750px;}
.y25d{bottom:262.798800px;}
.y294{bottom:277.080750px;}
.y25c{bottom:277.198800px;}
.y61{bottom:278.858250px;}
.y1e{bottom:278.881950px;}
.yb5{bottom:283.792500px;}
.yb4{bottom:283.793250px;}
.yd0{bottom:286.335900px;}
.y293{bottom:291.480750px;}
.y25b{bottom:291.598800px;}
.y60{bottom:297.608250px;}
.y1d{bottom:297.631950px;}
.y97{bottom:297.991950px;}
.ycf{bottom:301.335900px;}
.y292{bottom:305.880750px;}
.y25a{bottom:305.998800px;}
.y146{bottom:307.027650px;}
.yd2{bottom:308.858250px;}
.yce{bottom:316.335900px;}
.y5f{bottom:316.358250px;}
.y291{bottom:320.280750px;}
.y259{bottom:320.398800px;}
.yd1{bottom:331.358250px;}
.y290{bottom:334.680750px;}
.y258{bottom:334.798800px;}
.y75{bottom:335.108250px;}
.y90{bottom:337.135800px;}
.yb6{bottom:344.989350px;}
.y8f{bottom:347.935800px;}
.y28f{bottom:349.080750px;}
.y257{bottom:349.198800px;}
.yc9{bottom:350.917500px;}
.y1e5{bottom:353.835900px;}
.y5e{bottom:353.858250px;}
.y28e{bottom:363.480750px;}
.y256{bottom:363.598800px;}
.y5d{bottom:372.608250px;}
.y1c{bottom:372.631950px;}
.y28d{bottom:377.880750px;}
.y255{bottom:377.998800px;}
.y11b{bottom:384.802500px;}
.y126{bottom:388.200450px;}
.y131{bottom:389.156700px;}
.y74{bottom:391.358250px;}
.y28c{bottom:392.280750px;}
.y1e2{bottom:392.292450px;}
.y1dd{bottom:392.296650px;}
.y1df{bottom:392.297400px;}
.y254{bottom:392.398800px;}
.y134{bottom:392.830650px;}
.y11f{bottom:392.835088px;}
.y151{bottom:392.928905px;}
.y10f{bottom:393.225428px;}
.y138{bottom:394.293300px;}
.y11d{bottom:395.676750px;}
.y110{bottom:395.682090px;}
.y136{bottom:396.040800px;}
.yb3{bottom:397.003050px;}
.y130{bottom:397.452900px;}
.y133{bottom:401.128200px;}
.y91{bottom:401.557800px;}
.y11a{bottom:403.042910px;}
.y135{bottom:404.233650px;}
.y12f{bottom:405.649500px;}
.y28b{bottom:406.680750px;}
.y253{bottom:406.798800px;}
.y5c{bottom:410.108250px;}
.y1b{bottom:410.131950px;}
.yae{bottom:410.406300px;}
.y119{bottom:410.587063px;}
.y11e{bottom:413.285885px;}
.y1e0{bottom:413.556600px;}
.y1de{bottom:413.557350px;}
.y12e{bottom:413.914050px;}
.y132{bottom:415.025850px;}
.y124{bottom:419.020607px;}
.y28a{bottom:421.080750px;}
.y252{bottom:421.198800px;}
.y10e{bottom:421.614543px;}
.y153{bottom:421.717350px;}
.y118{bottom:423.915372px;}
.y92{bottom:428.175600px;}
.y5b{bottom:428.858250px;}
.y1a{bottom:428.881950px;}
.y10d{bottom:430.836192px;}
.y123{bottom:431.468917px;}
.y115{bottom:431.487025px;}
.y112{bottom:432.669522px;}
.y117{bottom:432.678689px;}
.y1e3{bottom:434.808450px;}
.y1dc{bottom:434.816700px;}
.y1e1{bottom:434.817450px;}
.y289{bottom:435.480750px;}
.y251{bottom:435.598800px;}
.y96{bottom:437.621100px;}
.y12d{bottom:438.336000px;}
.y15a{bottom:438.394500px;}
.y158{bottom:439.787700px;}
.y150{bottom:441.484650px;}
.y114{bottom:443.761169px;}
.y113{bottom:444.100335px;}
.y24{bottom:445.122000px;}
.y111{bottom:446.731164px;}
.y12b{bottom:447.238500px;}
.y15b{bottom:447.240317px;}
.y5a{bottom:447.608250px;}
.y288{bottom:449.880750px;}
.y250{bottom:449.998800px;}
.y121{bottom:450.260550px;}
.ycc{bottom:452.105400px;}
.y12c{bottom:452.304750px;}
.y116{bottom:454.696982px;}
.y122{bottom:455.522207px;}
.y154{bottom:455.624788px;}
.y159{bottom:457.772667px;}
.y10a{bottom:459.234474px;}
.y12a{bottom:461.656350px;}
.y107{bottom:461.883636px;}
.y10c{bottom:462.451968px;}
.yba{bottom:462.608250px;}
.y287{bottom:464.280750px;}
.y24f{bottom:464.398800px;}
.y108{bottom:464.514465px;}
.y2e{bottom:466.358250px;}
.ycb{bottom:473.117400px;}
.y155{bottom:475.846418px;}
.y109{bottom:478.108606px;}
.y286{bottom:478.680750px;}
.y24e{bottom:478.798800px;}
.y106{bottom:479.877770px;}
.y10b{bottom:480.427769px;}
.y13a{bottom:483.313691px;}
.y2c{bottom:485.108250px;}
.y102{bottom:486.596924px;}
.y103{bottom:490.731084px;}
.y1e4{bottom:490.868250px;}
.y285{bottom:493.080750px;}
.y129{bottom:494.806350px;}
.y101{bottom:496.341073px;}
.y156{bottom:498.387211px;}
.y2a{bottom:503.858250px;}
.y1d6{bottom:504.466800px;}
.yac{bottom:504.897300px;}
.y284{bottom:507.480750px;}
.y128{bottom:511.519392px;}
.y139{bottom:515.167800px;}
.y100{bottom:518.350200px;}
.y283{bottom:521.880750px;}
.y28{bottom:522.608250px;}
.y105{bottom:525.518520px;}
.y282{bottom:536.280750px;}
.y24d{bottom:536.398800px;}
.y15c{bottom:540.034200px;}
.y26{bottom:541.358250px;}
.y104{bottom:543.842654px;}
.y15f{bottom:548.018352px;}
.y93{bottom:548.176350px;}
.y127{bottom:549.533490px;}
.y94{bottom:550.008900px;}
.y281{bottom:550.680750px;}
.y24c{bottom:550.798800px;}
.y14a{bottom:551.161316px;}
.y15d{bottom:553.490842px;}
.y13b{bottom:555.042727px;}
.y9b{bottom:556.358250px;}
.y59{bottom:560.108250px;}
.ycd{bottom:561.569400px;}
.y280{bottom:565.080750px;}
.y24b{bottom:565.198800px;}
.y13f{bottom:565.941874px;}
.y14b{bottom:569.916282px;}
.yf9{bottom:575.161134px;}
.y140{bottom:576.685188px;}
.y15e{bottom:576.874966px;}
.y164{bottom:577.727465px;}
.y58{bottom:578.858250px;}
.y27f{bottom:579.480750px;}
.y24a{bottom:579.598800px;}
.y13c{bottom:584.302674px;}
.y13e{bottom:586.741003px;}
.yfa{bottom:587.704938px;}
.y163{bottom:589.002444px;}
.y149{bottom:592.512074px;}
.y27e{bottom:593.880750px;}
.y249{bottom:593.998800px;}
.y8e{bottom:596.380800px;}
.y47{bottom:597.608250px;}
.y13d{bottom:597.713483px;}
.yff{bottom:598.594614px;}
.y1da{bottom:598.957800px;}
.yab{bottom:599.388300px;}
.y167{bottom:600.955756px;}
.yeb{bottom:601.265550px;}
.yfb{bottom:603.520240px;}
.y14d{bottom:605.767050px;}
.y148{bottom:606.042050px;}
.y8d{bottom:607.180800px;}
.y27d{bottom:608.280750px;}
.y248{bottom:608.398800px;}
.y142{bottom:611.270959px;}
.y95{bottom:612.445350px;}
.yea{bottom:616.265550px;}
.y46{bottom:616.358250px;}
.yfe{bottom:616.835970px;}
.y168{bottom:620.902386px;}
.y162{bottom:621.278219px;}
.y27c{bottom:622.680750px;}
.y247{bottom:622.798800px;}
.y147{bottom:624.182850px;}
.y141{bottom:629.549259px;}
.yb1{bottom:631.319850px;}
.yfc{bottom:631.465813px;}
.y161{bottom:632.296532px;}
.y17b{bottom:633.479030px;}
.y45{bottom:635.108250px;}
.y197{bottom:635.222700px;}
.y27b{bottom:637.080750px;}
.y246{bottom:637.198800px;}
.y21d{bottom:637.358250px;}
.y17a{bottom:638.264021px;}
.y160{bottom:644.570677px;}
.yfd{bottom:649.826634px;}
.y27a{bottom:651.480750px;}
.y245{bottom:651.598800px;}
.y21c{bottom:651.758250px;}
.y44{bottom:653.858250px;}
.yf7{bottom:653.888437px;}
.ye2{bottom:654.457500px;}
.y184{bottom:657.779819px;}
.y198{bottom:658.233900px;}
.y17c{bottom:658.458151px;}
.y1cb{bottom:659.770500px;}
.yc8{bottom:660.334650px;}
.ye8{bottom:660.411900px;}
.y14c{bottom:662.930280px;}
.yb{bottom:664.863450px;}
.ye1{bottom:664.957500px;}
.y19a{bottom:665.186100px;}
.y279{bottom:665.880750px;}
.y244{bottom:665.998800px;}
.y21b{bottom:666.158250px;}
.y195{bottom:667.022250px;}
.yf6{bottom:669.823204px;}
.y43{bottom:672.608250px;}
.y199{bottom:674.115750px;}
.y169{bottom:674.252289px;}
.y196{bottom:675.292800px;}
.ye6{bottom:676.993350px;}
.y1d2{bottom:679.359631px;}
.y278{bottom:680.280750px;}
.y243{bottom:680.398800px;}
.y21a{bottom:680.558250px;}
.ye4{bottom:681.666900px;}
.y145{bottom:682.954162px;}
.ya{bottom:683.613450px;}
.y171{bottom:683.785605px;}
.y16a{bottom:685.004770px;}
.ye5{bottom:687.493350px;}
.y170{bottom:690.110594px;}
.y183{bottom:690.908092px;}
.y19b{bottom:690.917550px;}
.y42{bottom:691.358250px;}
.y1d5{bottom:693.439800px;}
.y1cc{bottom:693.677938px;}
.yaa{bottom:693.879300px;}
.y277{bottom:694.680750px;}
.y242{bottom:694.798800px;}
.y219{bottom:694.958250px;}
.y194{bottom:695.344200px;}
.yf5{bottom:698.788823px;}
.y179{bottom:700.047242px;}
.y182{bottom:700.056409px;}
.y16b{bottom:701.862239px;}
.y9{bottom:702.363450px;}
.ye3{bottom:703.356000px;}
.ye7{bottom:703.419900px;}
.y18a{bottom:704.254735px;}
.yf8{bottom:706.122124px;}
.y19c{bottom:708.450150px;}
.y276{bottom:709.080750px;}
.y241{bottom:709.198800px;}
.y218{bottom:709.358250px;}
.y41{bottom:710.108250px;}
.y190{bottom:713.476385px;}
.yc3{bottom:717.492150px;}
.y16c{bottom:717.757210px;}
.y172{bottom:719.498874px;}
.y16e{bottom:719.508040px;}
.y275{bottom:723.480750px;}
.y240{bottom:723.598800px;}
.y217{bottom:723.758250px;}
.y82{bottom:726.096300px;}
.y1cd{bottom:726.247046px;}
.y173{bottom:727.712192px;}
.y40{bottom:728.858250px;}
.y16d{bottom:731.012186px;}
.yc2{bottom:732.492150px;}
.y274{bottom:737.880750px;}
.y23f{bottom:737.998800px;}
.y216{bottom:738.158250px;}
.y16f{bottom:739.253004px;}
.y1ce{bottom:740.547020px;}
.yda{bottom:741.588600px;}
.y189{bottom:741.673000px;}
.ye9{bottom:744.094200px;}
.y174{bottom:745.110494px;}
.yc1{bottom:747.492150px;}
.y230{bottom:747.607950px;}
.y3f{bottom:747.608250px;}
.y81{bottom:747.708600px;}
.yc7{bottom:747.862650px;}
.y273{bottom:752.280750px;}
.yd9{bottom:752.388600px;}
.y23e{bottom:752.398800px;}
.y215{bottom:752.558250px;}
.yf3{bottom:754.275628px;}
.y178{bottom:755.331309px;}
.y176{bottom:756.027974px;}
.y19d{bottom:757.455900px;}
.y193{bottom:758.735400px;}
.y6{bottom:760.673100px;}
.y175{bottom:762.756295px;}
.y177{bottom:764.928791px;}
.y22f{bottom:766.357950px;}
.y3e{bottom:766.358250px;}
.y192{bottom:766.539300px;}
.y272{bottom:766.680750px;}
.y23d{bottom:766.798800px;}
.y214{bottom:766.958250px;}
.yf2{bottom:768.014080px;}
.y191{bottom:769.970449px;}
.yf4{bottom:773.353237px;}
.y17d{bottom:775.002939px;}
.y80{bottom:777.708600px;}
.y271{bottom:781.080750px;}
.y23c{bottom:781.198800px;}
.y213{bottom:781.358250px;}
.ybf{bottom:781.935000px;}
.yc0{bottom:781.935750px;}
.y181{bottom:782.675425px;}
.y17e{bottom:784.160423px;}
.y3d{bottom:785.108250px;}
.ydb{bottom:785.994900px;}
.y11{bottom:787.885650px;}
.y1d9{bottom:787.930800px;}
.ya9{bottom:788.370300px;}
.y187{bottom:789.330413px;}
.y186{bottom:791.255410px;}
.ybb{bottom:792.585900px;}
.yf1{bottom:794.351473px;}
.y270{bottom:795.480900px;}
.y23b{bottom:795.598800px;}
.y212{bottom:795.758250px;}
.y180{bottom:797.250399px;}
.y5{bottom:798.173100px;}
.y17f{bottom:798.891229px;}
.y188{bottom:801.512891px;}
.yf0{bottom:802.888612px;}
.y57{bottom:803.858250px;}
.yef{bottom:806.472556px;}
.yb8{bottom:807.585900px;}
.y7f{bottom:807.708600px;}
.y26f{bottom:809.880750px;}
.y23a{bottom:809.998800px;}
.y2b7{bottom:810.079200px;}
.y211{bottom:810.158250px;}
.y1d0{bottom:813.440221px;}
.ye0{bottom:814.674150px;}
.yee{bottom:816.709770px;}
.y18b{bottom:818.397861px;}
.yb7{bottom:822.585900px;}
.y7b{bottom:822.608250px;}
.ydc{bottom:823.646400px;}
.y185{bottom:823.824517px;}
.y26e{bottom:824.280750px;}
.y239{bottom:824.398800px;}
.y2b6{bottom:824.479200px;}
.y210{bottom:824.558250px;}
.y10{bottom:825.385650px;}
.y1b1{bottom:825.776364px;}
.y18d{bottom:825.777014px;}
.y1cf{bottom:825.778532px;}
.yc6{bottom:831.838650px;}
.y166{bottom:837.702825px;}
.y26d{bottom:838.680750px;}
.y238{bottom:838.798800px;}
.y2b5{bottom:838.879200px;}
.y20f{bottom:838.958250px;}
.y144{bottom:840.409709px;}
.y22e{bottom:841.357950px;}
.y56{bottom:841.358250px;}
.y1a7{bottom:842.863000px;}
.y4f{bottom:843.076050px;}
.yb2{bottom:843.307650px;}
.y1a3{bottom:847.519658px;}
.y18c{bottom:851.214468px;}
.y165{bottom:853.075298px;}
.y26c{bottom:853.080750px;}
.y237{bottom:853.198800px;}
.y2b4{bottom:853.279200px;}
.y20e{bottom:853.358250px;}
.y4e{bottom:853.876050px;}
.y1a6{bottom:857.318807px;}
.y1a2{bottom:858.079639px;}
.y22d{bottom:860.107950px;}
.y73{bottom:860.108250px;}
.y1a8{bottom:863.506295px;}
.y4d{bottom:864.676050px;}
.y1d1{bottom:865.369293px;}
.y236{bottom:867.598800px;}
.y2b3{bottom:867.679200px;}
.y20d{bottom:867.758250px;}
.y18e{bottom:868.383603px;}
.y143{bottom:868.404658px;}
.y1f8{bottom:871.242150px;}
.y1c8{bottom:871.408950px;}
.y22c{bottom:878.857950px;}
.y72{bottom:878.858250px;}
.y55{bottom:878.858400px;}
.y1a5{bottom:879.722099px;}
.y235{bottom:881.998800px;}
.y2b2{bottom:882.079200px;}
.y20c{bottom:882.158250px;}
.y1d4{bottom:882.358800px;}
.ya8{bottom:882.861300px;}
.y1c7{bottom:883.471950px;}
.y1c4{bottom:883.473450px;}
.y4{bottom:884.423100px;}
.y1ad{bottom:885.011256px;}
.y1f7{bottom:886.242150px;}
.y1a9{bottom:887.092086px;}
.y1a4{bottom:892.500409px;}
.yc5{bottom:895.174650px;}
.y1c3{bottom:895.658700px;}
.y234{bottom:896.398800px;}
.y2b1{bottom:896.479200px;}
.y20b{bottom:896.558250px;}
.y22b{bottom:897.607950px;}
.y71{bottom:897.608250px;}
.y19e{bottom:897.642900px;}
.yde{bottom:897.806700px;}
.y1f6{bottom:901.242150px;}
.ydd{bottom:901.838700px;}
.y1c9{bottom:903.833250px;}
.y1a1{bottom:904.637054px;}
.y1c5{bottom:906.374850px;}
.y1a0{bottom:909.348712px;}
.y26b{bottom:910.680750px;}
.y2b0{bottom:910.879200px;}
.y20a{bottom:910.958250px;}
.yf{bottom:911.635650px;}
.y1aa{bottom:915.151201px;}
.y1b8{bottom:915.930367px;}
.y1f5{bottom:916.242150px;}
.y22a{bottom:916.357950px;}
.y7a{bottom:916.358250px;}
.y54{bottom:916.358400px;}
.y19f{bottom:918.717028px;}
.y1ca{bottom:919.802250px;}
.y1c1{bottom:924.660450px;}
.y26a{bottom:925.080750px;}
.y2af{bottom:925.279200px;}
.y209{bottom:925.358250px;}
.y1bf{bottom:927.062100px;}
.y16{bottom:930.088050px;}
.yec{bottom:933.187950px;}
.yd8{bottom:934.161600px;}
.y229{bottom:935.107950px;}
.y70{bottom:935.108250px;}
.y53{bottom:935.108400px;}
.y1f1{bottom:935.434500px;}
.y1be{bottom:936.220200px;}
.y1c2{bottom:937.195050px;}
.y269{bottom:939.480900px;}
.y233{bottom:939.598800px;}
.y2ae{bottom:939.679200px;}
.y208{bottom:939.758250px;}
.y18f{bottom:943.586800px;}
.yd7{bottom:944.961600px;}
.y1ab{bottom:946.446145px;}
.y15{bottom:948.838050px;}
.y1f3{bottom:950.892300px;}
.y1ac{bottom:952.248634px;}
.y228{bottom:953.857950px;}
.y6f{bottom:953.858250px;}
.y268{bottom:953.880750px;}
.y232{bottom:953.998800px;}
.y2ad{bottom:954.079200px;}
.y207{bottom:954.158250px;}
.y1c0{bottom:954.227550px;}
.y1e8{bottom:954.494250px;}
.y1bc{bottom:955.942794px;}
.y4b{bottom:955.990500px;}
.y1b2{bottom:959.325288px;}
.y1c6{bottom:963.123600px;}
.y1bd{bottom:965.125050px;}
.y14{bottom:967.588050px;}
.y2ac{bottom:968.479200px;}
.y206{bottom:968.558250px;}
.y1bb{bottom:970.407768px;}
.y3{bottom:970.673100px;}
.y1b3{bottom:970.856934px;}
.y4a{bottom:971.425200px;}
.y227{bottom:972.607950px;}
.y6e{bottom:972.608250px;}
.y1e6{bottom:975.746250px;}
.y50{bottom:976.222500px;}
.y1d8{bottom:976.903800px;}
.ya7{bottom:977.352300px;}
.y49{bottom:979.180050px;}
.y2ab{bottom:982.879200px;}
.y205{bottom:982.958250px;}
.y1ae{bottom:985.221074px;}
.y1f0{bottom:987.050250px;}
.y1b4{bottom:987.320237px;}
.y226{bottom:991.357950px;}
.y79{bottom:991.358250px;}
.y1e7{bottom:997.010250px;}
.y2aa{bottom:997.279200px;}
.y204{bottom:997.358250px;}
.ye{bottom:997.885650px;}
.y1b0{bottom:999.906047px;}
.yed{bottom:1002.165088px;}
.yb0{bottom:1005.011250px;}
.y225{bottom:1010.107950px;}
.y6d{bottom:1010.108250px;}
.yd4{bottom:1010.112000px;}
.y1af{bottom:1011.611859px;}
.y2a9{bottom:1011.679200px;}
.y203{bottom:1011.758250px;}
.y48{bottom:1016.170050px;}
.yc4{bottom:1017.586650px;}
.y1e9{bottom:1018.274250px;}
.y1b9{bottom:1024.298503px;}
.y2a8{bottom:1026.079200px;}
.y202{bottom:1026.158250px;}
.y224{bottom:1028.857950px;}
.y6c{bottom:1028.858250px;}
.y8c{bottom:1028.858400px;}
.y1b5{bottom:1029.990993px;}
.y1ef{bottom:1035.938250px;}
.ydf{bottom:1038.465150px;}
.y1ea{bottom:1039.538250px;}
.y2a7{bottom:1040.479200px;}
.y201{bottom:1040.558250px;}
.yd6{bottom:1046.067600px;}
.y223{bottom:1047.607950px;}
.y6b{bottom:1047.608250px;}
.y8b{bottom:1047.608400px;}
.y2a6{bottom:1054.879200px;}
.y200{bottom:1054.958250px;}
.yd5{bottom:1056.867600px;}
.y2{bottom:1056.923100px;}
.y1eb{bottom:1060.802250px;}
.y222{bottom:1066.357950px;}
.y78{bottom:1066.358250px;}
.y8a{bottom:1066.358400px;}
.y1ba{bottom:1068.362590px;}
.y2a5{bottom:1069.279200px;}
.y1ff{bottom:1069.358250px;}
.y1b7{bottom:1071.103418px;}
.y1d3{bottom:1071.385800px;}
.yad{bottom:1071.825300px;}
.y1ec{bottom:1082.066250px;}
.y1b6{bottom:1082.103398px;}
.y2a4{bottom:1083.679200px;}
.y1fe{bottom:1083.758250px;}
.yd{bottom:1084.135650px;}
.y221{bottom:1085.107950px;}
.y6a{bottom:1085.108250px;}
.y89{bottom:1085.108400px;}
.y2a3{bottom:1098.079200px;}
.y1fd{bottom:1098.158250px;}
.y39{bottom:1102.843500px;}
.y1ed{bottom:1103.330250px;}
.y220{bottom:1103.857950px;}
.y69{bottom:1103.858250px;}
.y88{bottom:1103.858400px;}
.y2a2{bottom:1112.479200px;}
.y1fc{bottom:1112.558250px;}
.yb9{bottom:1118.858250px;}
.y18{bottom:1119.234000px;}
.y21f{bottom:1122.607950px;}
.y68{bottom:1122.608250px;}
.y87{bottom:1122.608400px;}
.y1ee{bottom:1124.594250px;}
.y2a1{bottom:1126.879200px;}
.y1fb{bottom:1126.958250px;}
.y3c{bottom:1127.241600px;}
.y1db{bottom:1131.007800px;}
.yd3{bottom:1131.997350px;}
.y17{bottom:1136.879400px;}
.y231{bottom:1137.020700px;}
.y1d7{bottom:1138.489800px;}
.yaf{bottom:1139.046300px;}
.ya6{bottom:1139.064300px;}
.y2a0{bottom:1141.279200px;}
.y21e{bottom:1141.357950px;}
.y67{bottom:1141.358250px;}
.y86{bottom:1141.358400px;}
.y38{bottom:1145.431950px;}
.y7e{bottom:1187.797050px;}
.yc{bottom:1187.827350px;}
.y1{bottom:1344.174000px;}
.h20{height:3.581925px;}
.h13{height:10.656144px;}
.h14{height:10.804146px;}
.h15{height:11.447089px;}
.hf{height:11.786142px;}
.h10{height:15.069180px;}
.h11{height:17.329557px;}
.h1a{height:19.406250px;}
.h1b{height:19.656738px;}
.h16{height:22.145760px;}
.h18{height:22.176180px;}
.h1d{height:23.805000px;}
.h48{height:25.200000px;}
.h4a{height:25.956000px;}
.h41{height:26.436619px;}
.h40{height:26.502806px;}
.h1e{height:27.432000px;}
.h1c{height:29.311500px;}
.h3b{height:29.447716px;}
.h3a{height:29.447760px;}
.h2b{height:29.447808px;}
.h2a{height:29.447823px;}
.h3f{height:29.447838px;}
.h3d{height:29.447860px;}
.h3c{height:29.447912px;}
.h2e{height:29.447972px;}
.h28{height:29.448000px;}
.h3e{height:29.448132px;}
.h2c{height:29.448142px;}
.h29{height:29.448209px;}
.h2d{height:29.448412px;}
.h49{height:30.281775px;}
.h19{height:30.705480px;}
.h38{height:31.500000px;}
.hc{height:32.766000px;}
.h1f{height:32.848500px;}
.h12{height:33.420000px;}
.hb{height:33.751809px;}
.h32{height:34.355745px;}
.h33{height:34.355868px;}
.ha{height:34.356000px;}
.h34{height:34.356041px;}
.h35{height:34.356144px;}
.h47{height:34.440619px;}
.h4e{height:38.037000px;}
.h26{height:38.544000px;}
.h4c{height:39.120000px;}
.h36{height:39.264000px;}
.h30{height:40.491000px;}
.h46{height:41.286592px;}
.h2f{height:41.679000px;}
.h45{height:42.349923px;}
.he{height:43.435800px;}
.h44{height:43.926587px;}
.h24{height:44.100000px;}
.h22{height:48.258000px;}
.h6{height:50.589000px;}
.h27{height:51.534000px;}
.h21{height:52.536000px;}
.h31{height:52.612560px;}
.h4d{height:53.676000px;}
.h43{height:54.963233px;}
.h7{height:55.368000px;}
.h2{height:57.312000px;}
.h4{height:58.896000px;}
.h17{height:61.296000px;}
.h23{height:65.676000px;}
.h37{height:68.303040px;}
.h25{height:85.968000px;}
.hd{height:120.030000px;}
.h4b{height:214.723500px;}
.h3{height:303.534000px;}
.h5{height:339.096000px;}
.h42{height:765.354000px;}
.h39{height:775.984500px;}
.h8{height:1262.835000px;}
.h9{height:1263.000000px;}
.h1{height:1292.250000px;}
.h0{height:1292.598450px;}
.w9{width:-83.868000px;}
.w8{width:-13.651500px;}
.wa{width:29.949000px;}
.w6{width:95.325000px;}
.w4{width:155.143500px;}
.w7{width:189.876000px;}
.wc{width:318.898500px;}
.w5{width:623.835000px;}
.wb{width:659.053500px;}
.w2{width:892.914000px;}
.w3{width:893.250000px;}
.w0{width:914.173500px;}
.wd{width:914.173950px;}
.w1{width:914.250000px;}
.x9a{left:-17.732295px;}
.x99{left:-14.817300px;}
.x1{left:-1.381800px;}
.x0{left:0.000000px;}
.xa0{left:1.150950px;}
.xdc{left:2.544300px;}
.x13{left:5.372550px;}
.x1d{left:29.344350px;}
.xa{left:31.846350px;}
.x2e{left:42.519600px;}
.x41{left:54.176400px;}
.x1e{left:55.275600px;}
.x3{left:60.797250px;}
.x2{left:62.406600px;}
.xdd{left:82.756200px;}
.x9c{left:103.553700px;}
.x2f{left:109.196550px;}
.xb{left:110.444850px;}
.x20{left:122.291550px;}
.x5{left:123.307050px;}
.x6{left:124.703850px;}
.x34{left:126.132300px;}
.x9b{left:132.276456px;}
.x3d{left:136.000050px;}
.x43{left:144.551550px;}
.x9e{left:145.559388px;}
.x10{left:148.817100px;}
.x81{left:157.610700px;}
.x37{left:165.120300px;}
.x3b{left:167.955450px;}
.xa3{left:170.648074px;}
.xa1{left:173.067884px;}
.x9d{left:175.791000px;}
.x9f{left:178.064329px;}
.x72{left:180.126745px;}
.xcb{left:182.530357px;}
.xd4{left:184.812900px;}
.xc{left:187.342650px;}
.x33{left:189.213300px;}
.x77{left:190.552350px;}
.x76{left:193.400055px;}
.xd{left:195.955200px;}
.x7b{left:197.052000px;}
.x38{left:199.921650px;}
.xd7{left:201.745050px;}
.xd3{left:202.791000px;}
.xd6{left:209.247900px;}
.xf{left:210.873450px;}
.x73{left:212.998352px;}
.x69{left:215.565014px;}
.xd0{left:216.859461px;}
.x80{left:224.212800px;}
.x42{left:229.156500px;}
.x7e{left:234.034650px;}
.x71{left:236.034144px;}
.x68{left:241.259134px;}
.x67{left:243.129131px;}
.xd2{left:245.391450px;}
.x9{left:246.640500px;}
.x74{left:248.574121px;}
.x7f{left:252.749400px;}
.xcc{left:254.516060px;}
.x65{left:255.733275px;}
.x1f{left:258.867000px;}
.x23{left:260.069250px;}
.xc9{left:261.372714px;}
.xd8{left:263.778300px;}
.xa2{left:266.375400px;}
.x4{left:270.298650px;}
.xd5{left:271.647450px;}
.x82{left:272.984850px;}
.xe0{left:276.305250px;}
.x8{left:278.486850px;}
.x64{left:281.051562px;}
.x7a{left:285.480382px;}
.xca{left:286.755168px;}
.x75{left:288.045716px;}
.xce{left:291.219326px;}
.xd1{left:292.603490px;}
.x63{left:296.735700px;}
.x6b{left:298.110698px;}
.x30{left:299.233050px;}
.x66{left:303.024022px;}
.xc7{left:305.904299px;}
.x6a{left:308.111513px;}
.x85{left:309.739200px;}
.xd9{left:311.287285px;}
.xcd{left:313.787618px;}
.x79{left:315.739494px;}
.xe2{left:322.082250px;}
.x5b{left:323.262542px;}
.x5a{left:326.874055px;}
.xc8{left:330.305922px;}
.xcf{left:332.670917px;}
.x7c{left:335.789248px;}
.x47{left:336.920100px;}
.x7d{left:338.291850px;}
.x78{left:340.346840px;}
.x6c{left:343.137282px;}
.x59{left:346.236542px;}
.xc6{left:350.674218px;}
.x83{left:352.502400px;}
.x46{left:357.236100px;}
.x49{left:361.917600px;}
.x18{left:363.296100px;}
.x84{left:364.946250px;}
.x5c{left:369.541368px;}
.xc5{left:374.278342px;}
.x70{left:376.953054px;}
.x6f{left:379.968882px;}
.x5d{left:381.276487px;}
.xc4{left:384.471657px;}
.xb6{left:387.204889px;}
.xba{left:390.844049px;}
.x7{left:394.459950px;}
.x6e{left:396.505519px;}
.x5e{left:399.903806px;}
.x5f{left:401.631451px;}
.xaf{left:404.933190px;}
.xb9{left:406.592354px;}
.xae{left:408.068185px;}
.x6d{left:411.731324px;}
.xb5{left:413.797341px;}
.x60{left:415.783435px;}
.x61{left:418.705728px;}
.xbb{left:422.358992px;}
.x58{left:426.241200px;}
.xc3{left:428.161500px;}
.xe{left:436.797300px;}
.xab{left:442.067290px;}
.x12{left:444.825000px;}
.x62{left:448.204344px;}
.x31{left:449.354100px;}
.x17{left:450.708600px;}
.xc2{left:453.711300px;}
.xb0{left:454.827266px;}
.xb7{left:456.284764px;}
.x4f{left:459.136350px;}
.xb1{left:460.886422px;}
.x40{left:462.110100px;}
.x21{left:463.221600px;}
.x22{left:464.231100px;}
.xb8{left:471.428070px;}
.x2b{left:474.656850px;}
.x11{left:477.045300px;}
.x24{left:478.748100px;}
.xaa{left:480.393053px;}
.xa4{left:482.180550px;}
.x52{left:484.300650px;}
.x55{left:486.559200px;}
.x14{left:489.224850px;}
.x19{left:490.935000px;}
.xbc{left:493.345530px;}
.x54{left:495.944250px;}
.x3e{left:498.934200px;}
.xbd{left:504.043010px;}
.x3f{left:506.415300px;}
.xa5{left:511.761330px;}
.x28{left:513.953550px;}
.xa9{left:517.022987px;}
.x32{left:518.475000px;}
.xac{left:519.992981px;}
.xa8{left:527.830467px;}
.xb4{left:529.022132px;}
.xe1{left:531.710850px;}
.x57{left:533.224650px;}
.x4a{left:535.737600px;}
.xa6{left:537.052117px;}
.x4e{left:540.487350px;}
.x44{left:542.672100px;}
.x36{left:544.659450px;}
.x1c{left:545.878500px;}
.x1b{left:547.520250px;}
.xb3{left:550.380426px;}
.xa7{left:554.202919px;}
.x45{left:556.568100px;}
.x1a{left:561.151500px;}
.x2c{left:562.741500px;}
.x98{left:563.904740px;}
.xc1{left:565.615398px;}
.x96{left:571.723893px;}
.x26{left:572.866950px;}
.xb2{left:575.038714px;}
.x2a{left:581.542950px;}
.xad{left:583.022867px;}
.x53{left:589.229550px;}
.x4c{left:591.832800px;}
.x48{left:593.671350px;}
.x8f{left:597.455671px;}
.xda{left:600.516300px;}
.x8c{left:607.263986px;}
.x51{left:617.166000px;}
.xde{left:621.486750px;}
.x8e{left:629.768112px;}
.x8a{left:631.060610px;}
.x8b{left:634.498103px;}
.x97{left:640.492101px;}
.xc0{left:642.221092px;}
.x2d{left:644.483850px;}
.x16{left:647.599500px;}
.x29{left:649.175250px;}
.x56{left:651.516556px;}
.x92{left:656.898450px;}
.x93{left:659.375400px;}
.x8d{left:661.677221px;}
.x50{left:664.768350px;}
.x95{left:666.323721px;}
.x88{left:671.586369px;}
.xbf{left:676.577697px;}
.x15{left:678.391500px;}
.x90{left:681.358018px;}
.x94{left:684.464521px;}
.x3a{left:689.387100px;}
.x27{left:691.994850px;}
.xbe{left:695.094330px;}
.x87{left:697.903821px;}
.x86{left:700.534650px;}
.x4d{left:712.921950px;}
.x89{left:716.319621px;}
.x39{left:726.606150px;}
.xdf{left:728.555700px;}
.xdb{left:731.811150px;}
.x25{left:738.164100px;}
.x91{left:741.280409px;}
.x4b{left:746.901600px;}
.x3c{left:749.231850px;}
.x35{left:756.150300px;}
@media print{
.ve{vertical-align:-41.557333pt;}
.v1{vertical-align:-38.272000pt;}
.vd{vertical-align:-28.982400pt;}
.v7{vertical-align:-27.801431pt;}
.vf{vertical-align:-24.533333pt;}
.v6{vertical-align:-18.013333pt;}
.v2{vertical-align:-10.755536pt;}
.vb{vertical-align:-7.105172pt;}
.vc{vertical-align:-5.736286pt;}
.v3{vertical-align:-2.672588pt;}
.v0{vertical-align:0.000000pt;}
.v10{vertical-align:4.250667pt;}
.va{vertical-align:7.114667pt;}
.v9{vertical-align:13.199976pt;}
.v8{vertical-align:14.145159pt;}
.v4{vertical-align:15.644416pt;}
.v5{vertical-align:25.356991pt;}
.ls3{letter-spacing:-13.237333pt;}
.ls28{letter-spacing:-6.880000pt;}
.lscc{letter-spacing:-4.010667pt;}
.ls7c{letter-spacing:-3.925333pt;}
.lsab{letter-spacing:-3.416000pt;}
.ls1b{letter-spacing:-2.968000pt;}
.lscd{letter-spacing:-2.517333pt;}
.lsbf{letter-spacing:-2.218667pt;}
.lsc4{letter-spacing:-1.960000pt;}
.ls3d{letter-spacing:-1.773333pt;}
.lsca{letter-spacing:-1.749333pt;}
.ls1e{letter-spacing:-1.064000pt;}
.ls80{letter-spacing:-0.810667pt;}
.lsbc{letter-spacing:-0.640000pt;}
.lsbe{letter-spacing:-0.554667pt;}
.ls26{letter-spacing:-0.512000pt;}
.lsc9{letter-spacing:-0.469333pt;}
.ls5{letter-spacing:-0.389333pt;}
.ls38{letter-spacing:-0.336000pt;}
.ls17{letter-spacing:-0.280000pt;}
.ls20{letter-spacing:-0.263115pt;}
.ls25{letter-spacing:-0.256000pt;}
.ls3c{letter-spacing:-0.224000pt;}
.lscb{letter-spacing:-0.170667pt;}
.ls1f{letter-spacing:-0.133948pt;}
.ls9d{letter-spacing:-0.128000pt;}
.ls3b{letter-spacing:-0.112000pt;}
.ls6a{letter-spacing:-0.085333pt;}
.ls36{letter-spacing:-0.056000pt;}
.lsbb{letter-spacing:-0.042667pt;}
.ls1{letter-spacing:0.000000pt;}
.lsbd{letter-spacing:0.042667pt;}
.ls18{letter-spacing:0.056000pt;}
.ls9f{letter-spacing:0.084800pt;}
.ls69{letter-spacing:0.085333pt;}
.ls22{letter-spacing:0.108160pt;}
.lsaa{letter-spacing:0.112000pt;}
.ls37{letter-spacing:0.117333pt;}
.lsc1{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.129163pt;}
.ls14{letter-spacing:0.143515pt;}
.ls15{letter-spacing:0.153084pt;}
.ls85{letter-spacing:0.154133pt;}
.ls57{letter-spacing:0.168000pt;}
.ls7f{letter-spacing:0.170667pt;}
.ls32{letter-spacing:0.176000pt;}
.lsae{letter-spacing:0.213333pt;}
.ls23{letter-spacing:0.243360pt;}
.ls84{letter-spacing:0.256000pt;}
.ls35{letter-spacing:0.278933pt;}
.ls5b{letter-spacing:0.279467pt;}
.ls0{letter-spacing:0.280000pt;}
.ls5d{letter-spacing:0.290667pt;}
.ls5c{letter-spacing:0.292800pt;}
.ls82{letter-spacing:0.298667pt;}
.ls5a{letter-spacing:0.299733pt;}
.ls9e{letter-spacing:0.308000pt;}
.ls50{letter-spacing:0.319998pt;}
.lsc{letter-spacing:0.320000pt;}
.ls4f{letter-spacing:0.320002pt;}
.ls44{letter-spacing:0.324267pt;}
.ls42{letter-spacing:0.336000pt;}
.lsc8{letter-spacing:0.340800pt;}
.lsad{letter-spacing:0.341333pt;}
.lsa1{letter-spacing:0.373331pt;}
.ls8b{letter-spacing:0.373333pt;}
.ls81{letter-spacing:0.384000pt;}
.ls55{letter-spacing:0.392000pt;}
.lsa6{letter-spacing:0.405867pt;}
.ls49{letter-spacing:0.416000pt;}
.ls4b{letter-spacing:0.426133pt;}
.ls4a{letter-spacing:0.426667pt;}
.ls5f{letter-spacing:0.437867pt;}
.ls67{letter-spacing:0.440000pt;}
.ls66{letter-spacing:0.440533pt;}
.lsb6{letter-spacing:0.446933pt;}
.ls61{letter-spacing:0.453333pt;}
.ls60{letter-spacing:0.469333pt;}
.ls4d{letter-spacing:0.560000pt;}
.lsc0{letter-spacing:0.597333pt;}
.ls4e{letter-spacing:0.616000pt;}
.lsb8{letter-spacing:0.659467pt;}
.lsb9{letter-spacing:0.659733pt;}
.lsc3{letter-spacing:0.660000pt;}
.lsa2{letter-spacing:0.684267pt;}
.ls71{letter-spacing:0.693333pt;}
.ls99{letter-spacing:0.728000pt;}
.ls21{letter-spacing:0.731925pt;}
.lsb0{letter-spacing:0.768000pt;}
.ls51{letter-spacing:0.800011pt;}
.lsc5{letter-spacing:0.800533pt;}
.ls7d{letter-spacing:0.853333pt;}
.ls53{letter-spacing:0.879200pt;}
.ls98{letter-spacing:0.879467pt;}
.ls70{letter-spacing:0.880000pt;}
.ls86{letter-spacing:0.881600pt;}
.ls7e{letter-spacing:0.896000pt;}
.ls9a{letter-spacing:0.906667pt;}
.ls68{letter-spacing:0.933333pt;}
.ls88{letter-spacing:0.938133pt;}
.ls64{letter-spacing:0.938667pt;}
.lsa8{letter-spacing:0.946667pt;}
.ls62{letter-spacing:0.949333pt;}
.ls89{letter-spacing:0.952000pt;}
.ls7b{letter-spacing:1.066667pt;}
.ls1a{letter-spacing:1.120000pt;}
.ls79{letter-spacing:1.142400pt;}
.lsc7{letter-spacing:1.195200pt;}
.ls72{letter-spacing:1.216000pt;}
.ls74{letter-spacing:1.244800pt;}
.ls78{letter-spacing:1.245867pt;}
.ls33{letter-spacing:1.265600pt;}
.ls34{letter-spacing:1.266133pt;}
.ls2e{letter-spacing:1.266667pt;}
.ls76{letter-spacing:1.270933pt;}
.ls8c{letter-spacing:1.280000pt;}
.ls3a{letter-spacing:1.290667pt;}
.ls54{letter-spacing:1.320000pt;}
.lsb2{letter-spacing:1.322667pt;}
.lsb3{letter-spacing:1.323200pt;}
.ls19{letter-spacing:1.333333pt;}
.ls58{letter-spacing:1.386667pt;}
.lsac{letter-spacing:1.408000pt;}
.ls29{letter-spacing:1.465600pt;}
.ls2b{letter-spacing:1.466133pt;}
.ls2f{letter-spacing:1.525333pt;}
.ls2{letter-spacing:1.557333pt;}
.ls91{letter-spacing:1.599985pt;}
.ls90{letter-spacing:1.599987pt;}
.ls95{letter-spacing:1.599991pt;}
.ls94{letter-spacing:1.599992pt;}
.ls93{letter-spacing:1.599995pt;}
.ls96{letter-spacing:1.599998pt;}
.ls3f{letter-spacing:1.600000pt;}
.ls92{letter-spacing:1.600008pt;}
.ls9b{letter-spacing:1.621333pt;}
.lsb7{letter-spacing:1.621867pt;}
.ls24{letter-spacing:1.760000pt;}
.ls27{letter-spacing:1.792000pt;}
.ls6b{letter-spacing:1.866653pt;}
.ls6c{letter-spacing:1.866660pt;}
.ls9{letter-spacing:1.866667pt;}
.ls6d{letter-spacing:1.866669pt;}
.ls6e{letter-spacing:1.866675pt;}
.ls12{letter-spacing:1.904000pt;}
.ls4{letter-spacing:1.946667pt;}
.ls7a{letter-spacing:1.949600pt;}
.lsb1{letter-spacing:1.962667pt;}
.ls73{letter-spacing:1.998667pt;}
.ls77{letter-spacing:2.084267pt;}
.ls65{letter-spacing:2.132800pt;}
.ls63{letter-spacing:2.133333pt;}
.lsa9{letter-spacing:2.145067pt;}
.ls8a{letter-spacing:2.146667pt;}
.lsa7{letter-spacing:2.152000pt;}
.lsb5{letter-spacing:2.153067pt;}
.ls8d{letter-spacing:2.155200pt;}
.ls83{letter-spacing:2.176000pt;}
.lsaf{letter-spacing:2.261333pt;}
.ls43{letter-spacing:2.350667pt;}
.lsa0{letter-spacing:2.356800pt;}
.ls56{letter-spacing:2.506667pt;}
.lsb4{letter-spacing:2.576533pt;}
.ls9c{letter-spacing:2.645333pt;}
.ls46{letter-spacing:2.666133pt;}
.ls48{letter-spacing:2.693867pt;}
.ls40{letter-spacing:2.700000pt;}
.lsf{letter-spacing:2.780232pt;}
.ls45{letter-spacing:2.799467pt;}
.ls16{letter-spacing:2.800000pt;}
.ls75{letter-spacing:2.812267pt;}
.lsa3{letter-spacing:2.819733pt;}
.lsa4{letter-spacing:2.826133pt;}
.lsa5{letter-spacing:2.827200pt;}
.ls30{letter-spacing:3.050667pt;}
.lsd{letter-spacing:3.072000pt;}
.lse{letter-spacing:3.112200pt;}
.ls5e{letter-spacing:3.133333pt;}
.ls59{letter-spacing:3.173333pt;}
.ls31{letter-spacing:3.285333pt;}
.lsc6{letter-spacing:3.306667pt;}
.ls41{letter-spacing:3.360000pt;}
.ls8{letter-spacing:3.520000pt;}
.lsb{letter-spacing:3.840000pt;}
.ls8f{letter-spacing:3.934933pt;}
.lsa{letter-spacing:4.356800pt;}
.ls3e{letter-spacing:4.906667pt;}
.ls11{letter-spacing:4.956000pt;}
.ls1d{letter-spacing:5.003200pt;}
.ls1c{letter-spacing:5.050400pt;}
.lsba{letter-spacing:5.096000pt;}
.lsc2{letter-spacing:5.208000pt;}
.ls6{letter-spacing:5.440000pt;}
.ls7{letter-spacing:5.680000pt;}
.ls4c{letter-spacing:6.073067pt;}
.ls2d{letter-spacing:6.586667pt;}
.ls10{letter-spacing:8.495467pt;}
.ls47{letter-spacing:9.324800pt;}
.ls39{letter-spacing:10.458667pt;}
.ls2c{letter-spacing:13.235200pt;}
.ls2a{letter-spacing:13.274667pt;}
.ls97{letter-spacing:71.520000pt;}
.ls52{letter-spacing:100.544000pt;}
.ls87{letter-spacing:128.128000pt;}
.ls6f{letter-spacing:148.704000pt;}
.ls8e{letter-spacing:412.586667pt;}
.wsa{word-spacing:-103.680000pt;}
.ws1{word-spacing:-77.626667pt;}
.wsb{word-spacing:-73.840000pt;}
.ws0{word-spacing:-63.072000pt;}
.ws8{word-spacing:-61.125333pt;}
.ws2f{word-spacing:-27.104000pt;}
.ws49{word-spacing:-23.306667pt;}
.ws4a{word-spacing:-22.344000pt;}
.ws3d{word-spacing:-20.469333pt;}
.ws3f{word-spacing:-19.101333pt;}
.ws29{word-spacing:-18.898667pt;}
.ws28{word-spacing:-17.610667pt;}
.ws36{word-spacing:-16.061333pt;}
.ws35{word-spacing:-15.048000pt;}
.ws47{word-spacing:-14.896000pt;}
.ws39{word-spacing:-14.237333pt;}
.ws1e3{word-spacing:-14.168000pt;}
.ws37{word-spacing:-14.085333pt;}
.ws1e5{word-spacing:-14.056000pt;}
.ws9{word-spacing:-13.888000pt;}
.ws44{word-spacing:-13.781333pt;}
.ws34{word-spacing:-13.629333pt;}
.ws42{word-spacing:-13.386667pt;}
.ws38{word-spacing:-13.122667pt;}
.ws4d{word-spacing:-13.120000pt;}
.ws3c{word-spacing:-12.768000pt;}
.ws12{word-spacing:-12.460800pt;}
.ws13{word-spacing:-12.413600pt;}
.ws19{word-spacing:-12.373333pt;}
.ws14{word-spacing:-12.366400pt;}
.ws2b{word-spacing:-12.008000pt;}
.ws4f{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.946667pt;}
.ws165{word-spacing:-11.872000pt;}
.ws11{word-spacing:-11.733333pt;}
.ws1ae{word-spacing:-11.592000pt;}
.ws10c{word-spacing:-11.536000pt;}
.ws167{word-spacing:-11.520000pt;}
.ws82{word-spacing:-11.480000pt;}
.ws2{word-spacing:-11.424000pt;}
.ws1ad{word-spacing:-11.368000pt;}
.wsde{word-spacing:-11.306667pt;}
.ws10d{word-spacing:-11.256000pt;}
.ws1e4{word-spacing:-11.200000pt;}
.ws4c{word-spacing:-11.144000pt;}
.ws10e{word-spacing:-11.088000pt;}
.ws127{word-spacing:-11.032000pt;}
.wseb{word-spacing:-10.920000pt;}
.wsf{word-spacing:-10.864000pt;}
.ws166{word-spacing:-10.808000pt;}
.ws27{word-spacing:-10.741333pt;}
.ws4e{word-spacing:-10.613333pt;}
.ws1e0{word-spacing:-9.685333pt;}
.ws1dc{word-spacing:-9.642667pt;}
.ws1dd{word-spacing:-9.600000pt;}
.ws50{word-spacing:-9.560000pt;}
.ws1df{word-spacing:-9.557333pt;}
.wse{word-spacing:-9.419592pt;}
.ws1da{word-spacing:-9.258667pt;}
.ws1e2{word-spacing:-9.216000pt;}
.ws200{word-spacing:-9.184000pt;}
.ws116{word-spacing:-9.002667pt;}
.ws41{word-spacing:-8.968000pt;}
.ws139{word-spacing:-8.917333pt;}
.wse3{word-spacing:-8.832000pt;}
.ws1b4{word-spacing:-8.789333pt;}
.ws1de{word-spacing:-8.704000pt;}
.ws83{word-spacing:-8.576000pt;}
.wsdd{word-spacing:-8.490667pt;}
.ws1a6{word-spacing:-8.287938pt;}
.wse4{word-spacing:-8.228000pt;}
.wse2{word-spacing:-7.728032pt;}
.wse1{word-spacing:-7.728009pt;}
.ws170{word-spacing:-7.728000pt;}
.wse0{word-spacing:-7.727943pt;}
.wsd{word-spacing:-7.232000pt;}
.ws1e1{word-spacing:-7.040000pt;}
.ws168{word-spacing:-6.996000pt;}
.ws1a2{word-spacing:-6.909617pt;}
.ws1a7{word-spacing:-6.784000pt;}
.ws16c{word-spacing:-6.624032pt;}
.ws16b{word-spacing:-6.624000pt;}
.ws16f{word-spacing:-6.623994pt;}
.ws16d{word-spacing:-6.623980pt;}
.ws16e{word-spacing:-6.623968pt;}
.ws169{word-spacing:-6.623946pt;}
.ws16a{word-spacing:-6.623936pt;}
.ws59{word-spacing:-6.586667pt;}
.ws52{word-spacing:-5.344038pt;}
.ws51{word-spacing:-5.344000pt;}
.ws55{word-spacing:-5.343995pt;}
.ws53{word-spacing:-5.343968pt;}
.ws54{word-spacing:-5.343965pt;}
.ws22{word-spacing:-5.050400pt;}
.ws22e{word-spacing:-5.034667pt;}
.ws7{word-spacing:-4.480000pt;}
.ws17{word-spacing:-4.286345pt;}
.ws7b{word-spacing:-4.266667pt;}
.ws8c{word-spacing:-3.416000pt;}
.ws211{word-spacing:-3.328000pt;}
.ws15{word-spacing:-3.286486pt;}
.ws30{word-spacing:-3.285333pt;}
.ws16{word-spacing:-3.157323pt;}
.ws20{word-spacing:-3.112200pt;}
.ws102{word-spacing:-3.024000pt;}
.ws68{word-spacing:-2.912000pt;}
.ws172{word-spacing:-2.688000pt;}
.ws7a{word-spacing:-2.602667pt;}
.ws1ca{word-spacing:-2.520000pt;}
.ws13a{word-spacing:-2.389333pt;}
.ws14b{word-spacing:-2.352000pt;}
.ws1b5{word-spacing:-2.304000pt;}
.ws147{word-spacing:-2.240000pt;}
.ws117{word-spacing:-2.218667pt;}
.ws148{word-spacing:-2.184000pt;}
.ws158{word-spacing:-2.176000pt;}
.ws164{word-spacing:-2.133333pt;}
.wse8{word-spacing:-2.016000pt;}
.ws1b7{word-spacing:-2.005333pt;}
.ws144{word-spacing:-1.960000pt;}
.ws5{word-spacing:-1.946667pt;}
.ws106{word-spacing:-1.848000pt;}
.ws7e{word-spacing:-1.792000pt;}
.wsef{word-spacing:-1.736000pt;}
.wsda{word-spacing:-1.706667pt;}
.ws171{word-spacing:-1.664000pt;}
.ws9d{word-spacing:-1.624000pt;}
.ws57{word-spacing:-1.600000pt;}
.ws1ba{word-spacing:-1.568000pt;}
.ws40{word-spacing:-1.525333pt;}
.ws14d{word-spacing:-1.512000pt;}
.wse5{word-spacing:-1.456000pt;}
.ws1b3{word-spacing:-1.450667pt;}
.ws1ef{word-spacing:-1.408000pt;}
.ws1b9{word-spacing:-1.400000pt;}
.ws12a{word-spacing:-1.344000pt;}
.ws141{word-spacing:-1.322667pt;}
.ws1cc{word-spacing:-1.320000pt;}
.ws31{word-spacing:-1.290667pt;}
.wsbf{word-spacing:-1.288000pt;}
.ws2c{word-spacing:-1.266667pt;}
.ws1f8{word-spacing:-1.194667pt;}
.ws1bf{word-spacing:-1.176000pt;}
.ws10f{word-spacing:-1.109333pt;}
.ws150{word-spacing:-1.066667pt;}
.wsc5{word-spacing:-1.008000pt;}
.ws1f9{word-spacing:-0.981333pt;}
.ws12d{word-spacing:-0.952000pt;}
.ws112{word-spacing:-0.938667pt;}
.ws110{word-spacing:-0.896000pt;}
.ws101{word-spacing:-0.840000pt;}
.ws1b6{word-spacing:-0.810667pt;}
.ws18{word-spacing:-0.746276pt;}
.ws77{word-spacing:-0.728000pt;}
.ws23{word-spacing:-0.708000pt;}
.ws9f{word-spacing:-0.693333pt;}
.ws8f{word-spacing:-0.616000pt;}
.ws18e{word-spacing:-0.560000pt;}
.ws76{word-spacing:-0.504000pt;}
.ws58{word-spacing:-0.480000pt;}
.ws6b{word-spacing:-0.448000pt;}
.ws115{word-spacing:-0.426667pt;}
.wsaa{word-spacing:-0.392000pt;}
.ws14f{word-spacing:-0.373333pt;}
.ws1e8{word-spacing:-0.341333pt;}
.ws5e{word-spacing:-0.336000pt;}
.ws81{word-spacing:-0.320000pt;}
.ws118{word-spacing:-0.298667pt;}
.wscf{word-spacing:-0.280000pt;}
.ws205{word-spacing:-0.256000pt;}
.ws96{word-spacing:-0.224000pt;}
.ws113{word-spacing:-0.213333pt;}
.ws86{word-spacing:-0.186667pt;}
.ws70{word-spacing:-0.168000pt;}
.ws25{word-spacing:-0.143515pt;}
.ws202{word-spacing:-0.128000pt;}
.wsf2{word-spacing:-0.112000pt;}
.wsae{word-spacing:-0.056000pt;}
.ws85{word-spacing:-0.042667pt;}
.ws1c{word-spacing:-0.032000pt;}
.ws3{word-spacing:0.000000pt;}
.ws84{word-spacing:0.042667pt;}
.ws9b{word-spacing:0.056000pt;}
.wscb{word-spacing:0.112000pt;}
.ws1f4{word-spacing:0.128000pt;}
.wsee{word-spacing:0.168000pt;}
.ws111{word-spacing:0.213333pt;}
.ws1a{word-spacing:0.224000pt;}
.ws2d{word-spacing:0.234667pt;}
.ws26{word-spacing:0.263115pt;}
.ws48{word-spacing:0.280000pt;}
.ws1f0{word-spacing:0.298667pt;}
.ws3a{word-spacing:0.336000pt;}
.ws1f6{word-spacing:0.384000pt;}
.ws6{word-spacing:0.389333pt;}
.ws45{word-spacing:0.392000pt;}
.wsec{word-spacing:0.448000pt;}
.ws43{word-spacing:0.469333pt;}
.ws1d{word-spacing:0.480000pt;}
.ws46{word-spacing:0.504000pt;}
.ws155{word-spacing:0.512000pt;}
.ws194{word-spacing:0.554667pt;}
.ws33{word-spacing:0.560000pt;}
.ws3e{word-spacing:0.616000pt;}
.ws114{word-spacing:0.768000pt;}
.ws203{word-spacing:0.810667pt;}
.ws177{word-spacing:0.840000pt;}
.ws193{word-spacing:0.896000pt;}
.ws1d9{word-spacing:0.938667pt;}
.ws1c5{word-spacing:0.952000pt;}
.ws1d4{word-spacing:0.981333pt;}
.ws24{word-spacing:1.064000pt;}
.wsb6{word-spacing:1.176000pt;}
.ws2a{word-spacing:1.266667pt;}
.ws63{word-spacing:1.288000pt;}
.ws32{word-spacing:1.290667pt;}
.ws130{word-spacing:1.344000pt;}
.ws3b{word-spacing:1.349333pt;}
.ws151{word-spacing:1.408000pt;}
.ws94{word-spacing:1.456000pt;}
.ws2e{word-spacing:1.466667pt;}
.ws12c{word-spacing:1.512000pt;}
.ws8e{word-spacing:1.568000pt;}
.ws17f{word-spacing:1.736000pt;}
.ws1d2{word-spacing:1.749333pt;}
.wsf1{word-spacing:1.792000pt;}
.ws152{word-spacing:1.834667pt;}
.ws105{word-spacing:1.848000pt;}
.ws1d6{word-spacing:1.877333pt;}
.ws126{word-spacing:1.904000pt;}
.ws6c{word-spacing:1.960000pt;}
.ws98{word-spacing:2.072000pt;}
.ws132{word-spacing:2.128000pt;}
.ws1e9{word-spacing:2.133333pt;}
.wsd9{word-spacing:2.176000pt;}
.wsa4{word-spacing:2.184000pt;}
.ws18c{word-spacing:2.240000pt;}
.ws5a{word-spacing:2.296000pt;}
.ws1fd{word-spacing:2.346667pt;}
.ws15b{word-spacing:2.352000pt;}
.ws89{word-spacing:2.408000pt;}
.wsa8{word-spacing:2.464000pt;}
.wsac{word-spacing:2.520000pt;}
.ws1fe{word-spacing:2.560000pt;}
.ws146{word-spacing:2.576000pt;}
.ws1f5{word-spacing:2.602667pt;}
.ws186{word-spacing:2.632000pt;}
.ws1d3{word-spacing:2.645333pt;}
.ws9e{word-spacing:2.688000pt;}
.ws1e6{word-spacing:2.730667pt;}
.wsaf{word-spacing:2.744000pt;}
.ws6a{word-spacing:2.800000pt;}
.ws1d7{word-spacing:2.816000pt;}
.ws7f{word-spacing:2.856000pt;}
.wsd3{word-spacing:2.858667pt;}
.wsf9{word-spacing:2.912000pt;}
.ws187{word-spacing:2.968000pt;}
.ws87{word-spacing:3.024000pt;}
.ws154{word-spacing:3.072000pt;}
.ws92{word-spacing:3.080000pt;}
.ws1db{word-spacing:3.131733pt;}
.ws8a{word-spacing:3.136000pt;}
.ws178{word-spacing:3.192000pt;}
.wsc{word-spacing:3.200000pt;}
.ws21{word-spacing:3.248000pt;}
.ws180{word-spacing:3.304000pt;}
.ws140{word-spacing:3.370667pt;}
.ws1c1{word-spacing:3.416000pt;}
.ws64{word-spacing:3.472000pt;}
.ws1d5{word-spacing:3.626667pt;}
.wsd8{word-spacing:3.669333pt;}
.wsb9{word-spacing:3.696000pt;}
.ws1e7{word-spacing:3.712000pt;}
.ws181{word-spacing:3.752000pt;}
.ws1f2{word-spacing:3.754667pt;}
.ws137{word-spacing:3.797333pt;}
.ws6e{word-spacing:3.808000pt;}
.wsc7{word-spacing:3.864000pt;}
.wsd2{word-spacing:3.882667pt;}
.ws174{word-spacing:3.920000pt;}
.ws1d8{word-spacing:3.925333pt;}
.wsc9{word-spacing:3.976000pt;}
.wsb5{word-spacing:4.032000pt;}
.ws1f1{word-spacing:4.053333pt;}
.ws161{word-spacing:4.144000pt;}
.ws1cf{word-spacing:4.224000pt;}
.ws122{word-spacing:4.256000pt;}
.ws103{word-spacing:4.312000pt;}
.wscd{word-spacing:4.368000pt;}
.ws61{word-spacing:4.424000pt;}
.wsb1{word-spacing:4.480000pt;}
.ws156{word-spacing:4.522667pt;}
.ws12e{word-spacing:4.536000pt;}
.wsdc{word-spacing:4.565333pt;}
.wsa5{word-spacing:4.592000pt;}
.wsc0{word-spacing:4.648000pt;}
.ws7c{word-spacing:4.704000pt;}
.wsd4{word-spacing:4.778667pt;}
.wse7{word-spacing:4.872000pt;}
.wsd0{word-spacing:4.928000pt;}
.ws1c7{word-spacing:4.984000pt;}
.wsf3{word-spacing:5.040000pt;}
.ws11f{word-spacing:5.096000pt;}
.ws7d{word-spacing:5.152000pt;}
.wsce{word-spacing:5.208000pt;}
.ws15a{word-spacing:5.264000pt;}
.ws162{word-spacing:5.320000pt;}
.ws119{word-spacing:5.432000pt;}
.wsad{word-spacing:5.488000pt;}
.ws153{word-spacing:5.504000pt;}
.ws88{word-spacing:5.544000pt;}
.ws192{word-spacing:5.712000pt;}
.ws13d{word-spacing:5.760000pt;}
.wsc3{word-spacing:5.768000pt;}
.ws13f{word-spacing:5.802667pt;}
.ws136{word-spacing:5.824000pt;}
.ws14c{word-spacing:5.880000pt;}
.ws1ff{word-spacing:5.888000pt;}
.wsb8{word-spacing:5.936000pt;}
.ws71{word-spacing:5.992000pt;}
.ws74{word-spacing:6.048000pt;}
.ws13b{word-spacing:6.101333pt;}
.wsdb{word-spacing:6.144000pt;}
.ws97{word-spacing:6.160000pt;}
.ws67{word-spacing:6.216000pt;}
.wsd6{word-spacing:6.272000pt;}
.wsab{word-spacing:6.328000pt;}
.ws17e{word-spacing:6.384000pt;}
.ws11d{word-spacing:6.440000pt;}
.ws62{word-spacing:6.496000pt;}
.wsf0{word-spacing:6.552000pt;}
.wsa2{word-spacing:6.608000pt;}
.ws1f7{word-spacing:6.656000pt;}
.wsd5{word-spacing:6.698667pt;}
.wsb7{word-spacing:6.720000pt;}
.ws65{word-spacing:6.776000pt;}
.ws1ec{word-spacing:6.784000pt;}
.ws95{word-spacing:6.832000pt;}
.ws12b{word-spacing:6.888000pt;}
.ws1d0{word-spacing:6.997333pt;}
.ws143{word-spacing:7.000000pt;}
.ws18d{word-spacing:7.056000pt;}
.ws1d1{word-spacing:7.082667pt;}
.wsa3{word-spacing:7.112000pt;}
.ws1fc{word-spacing:7.168000pt;}
.ws8b{word-spacing:7.224000pt;}
.ws1e{word-spacing:7.264000pt;}
.ws17c{word-spacing:7.280000pt;}
.ws5b{word-spacing:7.336000pt;}
.ws107{word-spacing:7.392000pt;}
.ws123{word-spacing:7.448000pt;}
.ws11e{word-spacing:7.504000pt;}
.wsea{word-spacing:7.560000pt;}
.ws1be{word-spacing:7.616000pt;}
.ws108{word-spacing:7.728000pt;}
.ws1ed{word-spacing:7.808000pt;}
.ws184{word-spacing:7.840000pt;}
.ws149{word-spacing:8.064000pt;}
.ws93{word-spacing:8.120000pt;}
.ws138{word-spacing:8.149333pt;}
.ws17b{word-spacing:8.176000pt;}
.wsba{word-spacing:8.232000pt;}
.ws5f{word-spacing:8.288000pt;}
.ws72{word-spacing:8.344000pt;}
.wsfb{word-spacing:8.400000pt;}
.ws125{word-spacing:8.456000pt;}
.wsc4{word-spacing:8.512000pt;}
.ws99{word-spacing:8.624000pt;}
.wse9{word-spacing:8.680000pt;}
.wsf4{word-spacing:8.736000pt;}
.ws13c{word-spacing:8.746667pt;}
.wsd7{word-spacing:8.832000pt;}
.ws1eb{word-spacing:8.874667pt;}
.ws69{word-spacing:8.904000pt;}
.ws1ea{word-spacing:8.917333pt;}
.wsa9{word-spacing:9.072000pt;}
.ws6f{word-spacing:9.128000pt;}
.wsb0{word-spacing:9.296000pt;}
.ws109{word-spacing:9.352000pt;}
.wsd1{word-spacing:9.408000pt;}
.wsb2{word-spacing:9.464000pt;}
.ws90{word-spacing:9.520000pt;}
.ws79{word-spacing:9.576000pt;}
.ws1bd{word-spacing:9.632000pt;}
.ws18b{word-spacing:9.688000pt;}
.ws17d{word-spacing:9.744000pt;}
.ws121{word-spacing:9.800000pt;}
.ws1b{word-spacing:9.824000pt;}
.ws1bc{word-spacing:9.856000pt;}
.wsf5{word-spacing:9.912000pt;}
.ws15e{word-spacing:9.968000pt;}
.ws134{word-spacing:10.024000pt;}
.ws15c{word-spacing:10.080000pt;}
.ws185{word-spacing:10.304000pt;}
.ws1c8{word-spacing:10.360000pt;}
.ws188{word-spacing:10.472000pt;}
.ws11a{word-spacing:10.640000pt;}
.ws128{word-spacing:10.808000pt;}
.wsa6{word-spacing:10.864000pt;}
.ws60{word-spacing:10.920000pt;}
.ws18a{word-spacing:10.976000pt;}
.wsc2{word-spacing:11.032000pt;}
.wsa7{word-spacing:11.088000pt;}
.ws75{word-spacing:11.256000pt;}
.ws9c{word-spacing:11.312000pt;}
.wsc1{word-spacing:11.368000pt;}
.ws176{word-spacing:11.480000pt;}
.ws11c{word-spacing:11.536000pt;}
.wsf6{word-spacing:11.592000pt;}
.ws5d{word-spacing:11.648000pt;}
.ws80{word-spacing:11.760000pt;}
.ws179{word-spacing:11.816000pt;}
.wsf7{word-spacing:11.872000pt;}
.ws10b{word-spacing:11.984000pt;}
.ws8d{word-spacing:12.096000pt;}
.ws9a{word-spacing:12.152000pt;}
.ws163{word-spacing:12.264000pt;}
.wsfa{word-spacing:12.376000pt;}
.ws1aa{word-spacing:12.432000pt;}
.ws13e{word-spacing:12.458667pt;}
.ws191{word-spacing:12.544000pt;}
.wsb4{word-spacing:12.600000pt;}
.wsbe{word-spacing:12.656000pt;}
.ws1ac{word-spacing:12.712000pt;}
.ws1ee{word-spacing:12.842667pt;}
.ws11b{word-spacing:12.880000pt;}
.ws1cb{word-spacing:12.936000pt;}
.ws104{word-spacing:12.992000pt;}
.ws12f{word-spacing:13.160000pt;}
.ws4{word-spacing:13.237333pt;}
.wsfe{word-spacing:13.272000pt;}
.ws160{word-spacing:13.552000pt;}
.ws15f{word-spacing:13.664000pt;}
.ws1f{word-spacing:13.728000pt;}
.ws142{word-spacing:13.776000pt;}
.ws131{word-spacing:13.888000pt;}
.ws1c3{word-spacing:13.944000pt;}
.ws1cd{word-spacing:13.994667pt;}
.ws182{word-spacing:14.112000pt;}
.ws1ce{word-spacing:14.250667pt;}
.wsff{word-spacing:14.392000pt;}
.ws100{word-spacing:14.448000pt;}
.ws91{word-spacing:14.560000pt;}
.ws145{word-spacing:14.616000pt;}
.ws1c2{word-spacing:14.728000pt;}
.ws73{word-spacing:14.784000pt;}
.wsf8{word-spacing:14.952000pt;}
.wscc{word-spacing:15.064000pt;}
.ws15d{word-spacing:15.176000pt;}
.ws183{word-spacing:15.400000pt;}
.wse6{word-spacing:15.512000pt;}
.wsb3{word-spacing:16.016000pt;}
.wsbd{word-spacing:16.184000pt;}
.ws66{word-spacing:16.352000pt;}
.ws5c{word-spacing:16.464000pt;}
.ws190{word-spacing:16.688000pt;}
.wsc6{word-spacing:17.304000pt;}
.ws1ab{word-spacing:17.416000pt;}
.wsa1{word-spacing:17.472000pt;}
.ws189{word-spacing:17.584000pt;}
.ws14e{word-spacing:17.640000pt;}
.ws173{word-spacing:17.696000pt;}
.wsbb{word-spacing:18.536000pt;}
.ws1fb{word-spacing:18.688000pt;}
.ws1fa{word-spacing:18.773333pt;}
.ws18f{word-spacing:18.816000pt;}
.ws1bb{word-spacing:19.152000pt;}
.wsca{word-spacing:19.320000pt;}
.ws1c6{word-spacing:19.712000pt;}
.wsa0{word-spacing:19.880000pt;}
.ws1f3{word-spacing:19.882667pt;}
.wsed{word-spacing:19.992000pt;}
.wsbc{word-spacing:20.384000pt;}
.ws129{word-spacing:20.552000pt;}
.ws17a{word-spacing:20.832000pt;}
.ws1c0{word-spacing:21.056000pt;}
.ws175{word-spacing:21.448000pt;}
.ws120{word-spacing:21.560000pt;}
.ws1a9{word-spacing:21.616000pt;}
.ws1c4{word-spacing:21.952000pt;}
.ws133{word-spacing:23.576000pt;}
.wsc8{word-spacing:24.304000pt;}
.ws1c9{word-spacing:24.528000pt;}
.wsfd{word-spacing:26.376000pt;}
.ws6d{word-spacing:26.880000pt;}
.ws19b{word-spacing:28.094764pt;}
.ws195{word-spacing:28.453282pt;}
.ws124{word-spacing:28.952000pt;}
.ws1b8{word-spacing:29.008000pt;}
.ws10a{word-spacing:31.248000pt;}
.ws56{word-spacing:32.032000pt;}
.ws14a{word-spacing:33.488000pt;}
.ws201{word-spacing:33.898667pt;}
.ws78{word-spacing:37.968000pt;}
.ws1a0{word-spacing:38.035486pt;}
.ws135{word-spacing:38.808000pt;}
.wsfc{word-spacing:40.208000pt;}
.ws19f{word-spacing:53.353977pt;}
.ws1a1{word-spacing:65.217659pt;}
.ws19a{word-spacing:69.422096pt;}
.ws1b2{word-spacing:70.997333pt;}
.ws1b1{word-spacing:85.973333pt;}
.ws21a{word-spacing:93.141333pt;}
.ws19d{word-spacing:93.410201pt;}
.ws198{word-spacing:95.430938pt;}
.ws22f{word-spacing:97.237333pt;}
.ws1a3{word-spacing:103.586474pt;}
.ws21b{word-spacing:111.146667pt;}
.ws222{word-spacing:112.896000pt;}
.ws215{word-spacing:125.738667pt;}
.ws22c{word-spacing:128.810667pt;}
.ws221{word-spacing:129.365333pt;}
.ws20c{word-spacing:132.650667pt;}
.ws240{word-spacing:134.314667pt;}
.ws196{word-spacing:135.291606pt;}
.ws214{word-spacing:136.917333pt;}
.ws19e{word-spacing:138.566207pt;}
.ws207{word-spacing:138.624000pt;}
.ws241{word-spacing:141.440000pt;}
.ws204{word-spacing:144.256000pt;}
.ws217{word-spacing:144.469333pt;}
.ws23a{word-spacing:144.554667pt;}
.ws1a8{word-spacing:144.768000pt;}
.ws19c{word-spacing:145.167143pt;}
.ws216{word-spacing:147.200000pt;}
.ws22b{word-spacing:147.328000pt;}
.ws220{word-spacing:147.840000pt;}
.ws236{word-spacing:149.290667pt;}
.ws235{word-spacing:150.016000pt;}
.ws230{word-spacing:151.296000pt;}
.ws23f{word-spacing:152.490667pt;}
.ws206{word-spacing:152.661333pt;}
.ws20d{word-spacing:153.216000pt;}
.ws199{word-spacing:155.129377pt;}
.ws4b{word-spacing:155.649600pt;}
.ws212{word-spacing:156.885333pt;}
.ws20b{word-spacing:158.464000pt;}
.ws210{word-spacing:158.592000pt;}
.ws225{word-spacing:159.104000pt;}
.ws233{word-spacing:159.957333pt;}
.ws23b{word-spacing:161.920000pt;}
.ws1a4{word-spacing:163.060444pt;}
.ws20a{word-spacing:163.200000pt;}
.ws229{word-spacing:170.410667pt;}
.ws23d{word-spacing:171.562667pt;}
.ws209{word-spacing:172.074667pt;}
.ws21c{word-spacing:172.672000pt;}
.ws234{word-spacing:173.525333pt;}
.ws218{word-spacing:175.701333pt;}
.ws21d{word-spacing:176.768000pt;}
.ws228{word-spacing:176.810667pt;}
.ws20e{word-spacing:182.357333pt;}
.ws22a{word-spacing:183.210667pt;}
.ws213{word-spacing:183.296000pt;}
.ws224{word-spacing:184.704000pt;}
.ws23c{word-spacing:184.789333pt;}
.ws219{word-spacing:185.557333pt;}
.ws21e{word-spacing:187.477333pt;}
.ws20f{word-spacing:189.098667pt;}
.ws21f{word-spacing:189.824000pt;}
.ws223{word-spacing:194.389333pt;}
.ws208{word-spacing:195.968000pt;}
.ws227{word-spacing:196.949333pt;}
.ws242{word-spacing:197.333333pt;}
.ws23e{word-spacing:197.973333pt;}
.ws22d{word-spacing:199.040000pt;}
.ws239{word-spacing:199.125333pt;}
.ws231{word-spacing:199.808000pt;}
.ws232{word-spacing:199.850667pt;}
.ws238{word-spacing:204.032000pt;}
.ws226{word-spacing:209.024000pt;}
.ws237{word-spacing:209.194667pt;}
.ws197{word-spacing:272.506171pt;}
.wsdf{word-spacing:287.584000pt;}
.ws1af{word-spacing:290.688000pt;}
.ws1b0{word-spacing:334.720000pt;}
.ws157{word-spacing:349.184000pt;}
.ws1a5{word-spacing:621.344000pt;}
.ws159{word-spacing:711.509333pt;}
._3a{margin-left:-1729.984000pt;}
._34{margin-left:-1062.656000pt;}
._30{margin-left:-867.456000pt;}
._24{margin-left:-743.850667pt;}
._32{margin-left:-576.426667pt;}
._35{margin-left:-542.080000pt;}
._3b{margin-left:-395.711467pt;}
._31{margin-left:-393.898667pt;}
._27{margin-left:-388.461333pt;}
._33{margin-left:-380.373333pt;}
._1d{margin-left:-294.069867pt;}
._36{margin-left:-240.875733pt;}
._23{margin-left:-33.693333pt;}
._3c{margin-left:-30.673067pt;}
._20{margin-left:-27.272800pt;}
._3e{margin-left:-26.022933pt;}
._28{margin-left:-24.849067pt;}
._37{margin-left:-23.352000pt;}
._21{margin-left:-22.152000pt;}
._2b{margin-left:-20.947733pt;}
._1f{margin-left:-18.984000pt;}
._2a{margin-left:-17.472000pt;}
._2d{margin-left:-15.646400pt;}
._22{margin-left:-14.710667pt;}
._1a{margin-left:-13.538133pt;}
._19{margin-left:-12.456000pt;}
._29{margin-left:-11.185067pt;}
._1c{margin-left:-9.225600pt;}
._1b{margin-left:-7.416533pt;}
._14{margin-left:-5.951200pt;}
._d{margin-left:-5.040000pt;}
._15{margin-left:-3.998667pt;}
._f{margin-left:-2.397867pt;}
._b{margin-left:-1.239467pt;}
._e{width:0.920533pt;}
._7{width:1.829867pt;}
._6{width:3.153600pt;}
._10{width:4.336000pt;}
._11{width:5.999467pt;}
._c{width:7.120000pt;}
._18{width:8.651733pt;}
._13{width:10.256533pt;}
._9{width:11.485333pt;}
._2c{width:12.558933pt;}
._a{width:13.626667pt;}
._5{width:15.184000pt;}
._2{width:16.390933pt;}
._16{width:17.952000pt;}
._4{width:21.724800pt;}
._1{width:22.853867pt;}
._17{width:25.103200pt;}
._1e{width:29.029333pt;}
._0{width:30.290133pt;}
._3{width:31.808533pt;}
._8{width:36.558400pt;}
._4b{width:57.224533pt;}
._45{width:63.837867pt;}
._43{width:69.941333pt;}
._4d{width:71.426133pt;}
._59{width:74.453333pt;}
._4c{width:84.183467pt;}
._12{width:86.414400pt;}
._4e{width:99.626667pt;}
._5e{width:103.901867pt;}
._4f{width:106.880000pt;}
._44{width:110.429867pt;}
._57{width:113.298133pt;}
._58{width:120.277333pt;}
._52{width:122.325333pt;}
._3d{width:127.317333pt;}
._63{width:128.614400pt;}
._55{width:130.138133pt;}
._5c{width:131.285333pt;}
._53{width:133.504000pt;}
._56{width:134.462933pt;}
._4a{width:137.301333pt;}
._5d{width:139.349333pt;}
._25{width:144.044800pt;}
._47{width:146.090667pt;}
._26{width:147.619733pt;}
._3f{width:150.314667pt;}
._46{width:154.504533pt;}
._42{width:155.605333pt;}
._54{width:157.781333pt;}
._40{width:159.104000pt;}
._48{width:161.578667pt;}
._5b{width:162.517333pt;}
._5a{width:163.840000pt;}
._5f{width:165.589333pt;}
._62{width:168.832000pt;}
._49{width:169.941333pt;}
._61{width:170.880000pt;}
._60{width:173.149867pt;}
._51{width:178.432000pt;}
._50{width:180.224000pt;}
._41{width:183.978667pt;}
._2f{width:382.592000pt;}
._2e{width:547.754667pt;}
._38{width:620.544000pt;}
._39{width:622.880000pt;}
.fs11{font-size:4.777067pt;}
.fsb{font-size:13.155733pt;}
.fs9{font-size:14.351467pt;}
.fsa{font-size:19.135467pt;}
.fse{font-size:24.000000pt;}
.fsc{font-size:27.040000pt;}
.fsf{font-size:29.440000pt;}
.fs27{font-size:31.999691pt;}
.fs26{font-size:31.999739pt;}
.fs1c{font-size:31.999791pt;}
.fs1b{font-size:31.999808pt;}
.fs2b{font-size:31.999824pt;}
.fs29{font-size:31.999847pt;}
.fs28{font-size:31.999905pt;}
.fs1f{font-size:31.999970pt;}
.fs10{font-size:32.000000pt;}
.fs2a{font-size:32.000143pt;}
.fs1d{font-size:32.000154pt;}
.fs1a{font-size:32.000227pt;}
.fs1e{font-size:32.000447pt;}
.fs2d{font-size:32.592533pt;}
.fs2c{font-size:32.674133pt;}
.fs15{font-size:36.000000pt;}
.fs21{font-size:37.333056pt;}
.fs22{font-size:37.333190pt;}
.fs4{font-size:37.333333pt;}
.fs23{font-size:37.333378pt;}
.fs24{font-size:37.333490pt;}
.fsd{font-size:37.440000pt;}
.fs19{font-size:40.000000pt;}
.fs2e{font-size:41.333333pt;}
.fs6{font-size:41.496000pt;}
.fs18{font-size:42.666667pt;}
.fs17{font-size:44.000000pt;}
.fs8{font-size:47.200000pt;}
.fs13{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs20{font-size:58.240000pt;}
.fs12{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs14{font-size:69.333333pt;}
.fs25{font-size:72.106667pt;}
.fs16{font-size:96.000000pt;}
.fs2{font-size:378.666667pt;}
.fs5{font-size:384.000000pt;}
.fs1{font-size:389.333333pt;}
.y36{bottom:-14.631677pt;}
.y35{bottom:-10.145572pt;}
.y34{bottom:-5.659467pt;}
.y11c{bottom:-5.090533pt;}
.y120{bottom:-5.088533pt;}
.y125{bottom:-4.777333pt;}
.y152{bottom:-4.622400pt;}
.y51{bottom:-0.004267pt;}
.y0{bottom:0.000000pt;}
.yca{bottom:1.291467pt;}
.y137{bottom:1.833333pt;}
.y3b{bottom:2.542160pt;}
.y1f4{bottom:2.590533pt;}
.y19{bottom:3.320533pt;}
.y2d{bottom:18.876667pt;}
.y4c{bottom:19.252933pt;}
.y2b{bottom:35.543333pt;}
.y3a{bottom:37.856400pt;}
.y14f{bottom:40.919360pt;}
.y85{bottom:46.771733pt;}
.y9a{bottom:46.866133pt;}
.y29{bottom:52.210000pt;}
.y84{bottom:59.571733pt;}
.y7d{bottom:64.540667pt;}
.y27{bottom:68.876667pt;}
.y8{bottom:70.320533pt;}
.y2b9{bottom:70.980933pt;}
.y83{bottom:72.371733pt;}
.y13{bottom:81.422933pt;}
.ya4{bottom:85.171733pt;}
.y25{bottom:85.543333pt;}
.y7{bottom:88.320533pt;}
.y2b8{bottom:88.980933pt;}
.y157{bottom:92.753867pt;}
.y52{bottom:97.874000pt;}
.ya3{bottom:97.971733pt;}
.y12{bottom:98.089600pt;}
.y14e{bottom:104.548133pt;}
.y29f{bottom:105.494000pt;}
.y267{bottom:105.598933pt;}
.ya2{bottom:110.771733pt;}
.y7c{bottom:114.540667pt;}
.y29e{bottom:118.294000pt;}
.y266{bottom:118.398933pt;}
.ya1{bottom:123.571733pt;}
.y29d{bottom:131.094133pt;}
.y265{bottom:131.198933pt;}
.y66{bottom:131.207333pt;}
.y23{bottom:131.228400pt;}
.ya0{bottom:136.371733pt;}
.y33{bottom:139.489333pt;}
.y37{bottom:143.064933pt;}
.y30{bottom:143.072267pt;}
.y29c{bottom:143.894000pt;}
.y264{bottom:143.998933pt;}
.ya5{bottom:144.540667pt;}
.y2f{bottom:146.660133pt;}
.y65{bottom:147.874000pt;}
.y9f{bottom:149.171733pt;}
.y32{bottom:156.472027pt;}
.y29b{bottom:156.694000pt;}
.y263{bottom:156.798933pt;}
.y9e{bottom:161.971733pt;}
.y31{bottom:162.212667pt;}
.y77{bottom:164.540667pt;}
.y22{bottom:164.561733pt;}
.y29a{bottom:169.494000pt;}
.y262{bottom:169.598933pt;}
.y9d{bottom:174.771733pt;}
.y64{bottom:181.207333pt;}
.y21{bottom:181.228400pt;}
.y299{bottom:182.294000pt;}
.y261{bottom:182.398933pt;}
.y1f2{bottom:182.854800pt;}
.y9c{bottom:187.571733pt;}
.ybe{bottom:187.874000pt;}
.y298{bottom:195.094000pt;}
.y260{bottom:195.198933pt;}
.y63{bottom:197.874000pt;}
.y20{bottom:197.895067pt;}
.y1fa{bottom:200.371733pt;}
.ybd{bottom:207.874000pt;}
.y297{bottom:207.894000pt;}
.y25f{bottom:207.998933pt;}
.y1f9{bottom:213.171733pt;}
.y62{bottom:214.540667pt;}
.y99{bottom:217.854133pt;}
.y296{bottom:220.694000pt;}
.y25e{bottom:220.798933pt;}
.ybc{bottom:227.874000pt;}
.y98{bottom:231.187467pt;}
.y76{bottom:231.207333pt;}
.y1f{bottom:231.228400pt;}
.y295{bottom:233.494000pt;}
.y25d{bottom:233.598933pt;}
.y294{bottom:246.294000pt;}
.y25c{bottom:246.398933pt;}
.y61{bottom:247.874000pt;}
.y1e{bottom:247.895067pt;}
.yb5{bottom:252.260000pt;}
.yb4{bottom:252.260667pt;}
.yd0{bottom:254.520800pt;}
.y293{bottom:259.094000pt;}
.y25b{bottom:259.198933pt;}
.y60{bottom:264.540667pt;}
.y1d{bottom:264.561733pt;}
.y97{bottom:264.881733pt;}
.ycf{bottom:267.854133pt;}
.y292{bottom:271.894000pt;}
.y25a{bottom:271.998933pt;}
.y146{bottom:272.913467pt;}
.yd2{bottom:274.540667pt;}
.yce{bottom:281.187467pt;}
.y5f{bottom:281.207333pt;}
.y291{bottom:284.694000pt;}
.y259{bottom:284.798933pt;}
.yd1{bottom:294.540667pt;}
.y290{bottom:297.494000pt;}
.y258{bottom:297.598933pt;}
.y75{bottom:297.874000pt;}
.y90{bottom:299.676267pt;}
.yb6{bottom:306.657200pt;}
.y8f{bottom:309.276267pt;}
.y28f{bottom:310.294000pt;}
.y257{bottom:310.398933pt;}
.yc9{bottom:311.926667pt;}
.y1e5{bottom:314.520800pt;}
.y5e{bottom:314.540667pt;}
.y28e{bottom:323.094000pt;}
.y256{bottom:323.198933pt;}
.y5d{bottom:331.207333pt;}
.y1c{bottom:331.228400pt;}
.y28d{bottom:335.894000pt;}
.y255{bottom:335.998933pt;}
.y11b{bottom:342.046667pt;}
.y126{bottom:345.067067pt;}
.y131{bottom:345.917067pt;}
.y74{bottom:347.874000pt;}
.y28c{bottom:348.694000pt;}
.y1e2{bottom:348.704400pt;}
.y1dd{bottom:348.708133pt;}
.y1df{bottom:348.708800pt;}
.y254{bottom:348.798933pt;}
.y134{bottom:349.182800pt;}
.y11f{bottom:349.186745pt;}
.y151{bottom:349.270138pt;}
.y10f{bottom:349.533713pt;}
.y138{bottom:350.482933pt;}
.y11d{bottom:351.712667pt;}
.y110{bottom:351.717413pt;}
.y136{bottom:352.036267pt;}
.yb3{bottom:352.891600pt;}
.y130{bottom:353.291467pt;}
.y133{bottom:356.558400pt;}
.y91{bottom:356.940267pt;}
.y11a{bottom:358.260364pt;}
.y135{bottom:359.318800pt;}
.y12f{bottom:360.577333pt;}
.y28b{bottom:361.494000pt;}
.y253{bottom:361.598933pt;}
.y5c{bottom:364.540667pt;}
.y1b{bottom:364.561733pt;}
.yae{bottom:364.805600pt;}
.y119{bottom:364.966278pt;}
.y11e{bottom:367.365231pt;}
.y1e0{bottom:367.605867pt;}
.y1de{bottom:367.606533pt;}
.y12e{bottom:367.923600pt;}
.y132{bottom:368.911867pt;}
.y124{bottom:372.462762pt;}
.y28a{bottom:374.294000pt;}
.y252{bottom:374.398933pt;}
.y10e{bottom:374.768482pt;}
.y153{bottom:374.859867pt;}
.y118{bottom:376.813664pt;}
.y92{bottom:380.600533pt;}
.y5b{bottom:381.207333pt;}
.y1a{bottom:381.228400pt;}
.y10d{bottom:382.965504pt;}
.y123{bottom:383.527927pt;}
.y115{bottom:383.544022pt;}
.y112{bottom:384.595131pt;}
.y117{bottom:384.603279pt;}
.y1e3{bottom:386.496400pt;}
.y1dc{bottom:386.503733pt;}
.y1e1{bottom:386.504400pt;}
.y289{bottom:387.094000pt;}
.y251{bottom:387.198933pt;}
.y96{bottom:388.996533pt;}
.y12d{bottom:389.632000pt;}
.y15a{bottom:389.684000pt;}
.y158{bottom:390.922400pt;}
.y150{bottom:392.430800pt;}
.y114{bottom:394.454372pt;}
.y113{bottom:394.755853pt;}
.y24{bottom:395.664000pt;}
.y111{bottom:397.094368pt;}
.y12b{bottom:397.545333pt;}
.y15b{bottom:397.546949pt;}
.y5a{bottom:397.874000pt;}
.y288{bottom:399.894000pt;}
.y250{bottom:399.998933pt;}
.y121{bottom:400.231600pt;}
.ycc{bottom:401.871467pt;}
.y12c{bottom:402.048667pt;}
.y116{bottom:404.175095pt;}
.y122{bottom:404.908629pt;}
.y154{bottom:404.999812pt;}
.y159{bottom:406.909038pt;}
.y10a{bottom:408.208421pt;}
.y12a{bottom:410.361200pt;}
.y107{bottom:410.563232pt;}
.y10c{bottom:411.068416pt;}
.yba{bottom:411.207333pt;}
.y287{bottom:412.694000pt;}
.y24f{bottom:412.798933pt;}
.y108{bottom:412.901746pt;}
.y2e{bottom:414.540667pt;}
.ycb{bottom:420.548800pt;}
.y155{bottom:422.974594pt;}
.y109{bottom:424.985428pt;}
.y286{bottom:425.494000pt;}
.y24e{bottom:425.598933pt;}
.y106{bottom:426.558018pt;}
.y10b{bottom:427.046906pt;}
.y13a{bottom:429.612170pt;}
.y2c{bottom:431.207333pt;}
.y102{bottom:432.530599pt;}
.y103{bottom:436.205408pt;}
.y1e4{bottom:436.327333pt;}
.y285{bottom:438.294000pt;}
.y129{bottom:439.827867pt;}
.y101{bottom:441.192065pt;}
.y156{bottom:443.010854pt;}
.y2a{bottom:447.874000pt;}
.y1d6{bottom:448.414933pt;}
.yac{bottom:448.797600pt;}
.y284{bottom:451.094000pt;}
.y128{bottom:454.683904pt;}
.y139{bottom:457.926933pt;}
.y100{bottom:460.755733pt;}
.y283{bottom:463.894000pt;}
.y28{bottom:464.540667pt;}
.y105{bottom:467.127574pt;}
.y282{bottom:476.694000pt;}
.y24d{bottom:476.798933pt;}
.y15c{bottom:480.030400pt;}
.y26{bottom:481.207333pt;}
.y104{bottom:483.415692pt;}
.y15f{bottom:487.127424pt;}
.y93{bottom:487.267867pt;}
.y127{bottom:488.474213pt;}
.y94{bottom:488.896800pt;}
.y281{bottom:489.494000pt;}
.y24c{bottom:489.598933pt;}
.y14a{bottom:489.921170pt;}
.y15d{bottom:491.991860pt;}
.y13b{bottom:493.371313pt;}
.y9b{bottom:494.540667pt;}
.y59{bottom:497.874000pt;}
.ycd{bottom:499.172800pt;}
.y280{bottom:502.294000pt;}
.y24b{bottom:502.398933pt;}
.y13f{bottom:503.059444pt;}
.y14b{bottom:506.592251pt;}
.yf9{bottom:511.254341pt;}
.y140{bottom:512.609056pt;}
.y15e{bottom:512.777748pt;}
.y164{bottom:513.535524pt;}
.y58{bottom:514.540667pt;}
.y27f{bottom:515.094000pt;}
.y24a{bottom:515.198933pt;}
.y13c{bottom:519.380155pt;}
.y13e{bottom:521.547558pt;}
.yfa{bottom:522.404389pt;}
.y163{bottom:523.557728pt;}
.y149{bottom:526.677399pt;}
.y27e{bottom:527.894000pt;}
.y249{bottom:527.998933pt;}
.y8e{bottom:530.116267pt;}
.y47{bottom:531.207333pt;}
.y13d{bottom:531.300874pt;}
.yff{bottom:532.084101pt;}
.y1da{bottom:532.406933pt;}
.yab{bottom:532.789600pt;}
.y167{bottom:534.182894pt;}
.yeb{bottom:534.458267pt;}
.yfb{bottom:536.462435pt;}
.y14d{bottom:538.459600pt;}
.y148{bottom:538.704044pt;}
.y8d{bottom:539.716267pt;}
.y27d{bottom:540.694000pt;}
.y248{bottom:540.798933pt;}
.y142{bottom:543.351963pt;}
.y95{bottom:544.395867pt;}
.yea{bottom:547.791600pt;}
.y46{bottom:547.874000pt;}
.yfe{bottom:548.298640pt;}
.y168{bottom:551.913232pt;}
.y162{bottom:552.247306pt;}
.y27c{bottom:553.494000pt;}
.y247{bottom:553.598933pt;}
.y147{bottom:554.829200pt;}
.y141{bottom:559.599341pt;}
.yb1{bottom:561.173200pt;}
.yfc{bottom:561.302945pt;}
.y161{bottom:562.041362pt;}
.y17b{bottom:563.092471pt;}
.y45{bottom:564.540667pt;}
.y197{bottom:564.642400pt;}
.y27b{bottom:566.294000pt;}
.y246{bottom:566.398933pt;}
.y21d{bottom:566.540667pt;}
.y17a{bottom:567.345797pt;}
.y160{bottom:572.951713pt;}
.yfd{bottom:577.623675pt;}
.y27a{bottom:579.094000pt;}
.y245{bottom:579.198933pt;}
.y21c{bottom:579.340667pt;}
.y44{bottom:581.207333pt;}
.yf7{bottom:581.234166pt;}
.ye2{bottom:581.740000pt;}
.y184{bottom:584.693173pt;}
.y198{bottom:585.096800pt;}
.y17c{bottom:585.296135pt;}
.y1cb{bottom:586.462667pt;}
.yc8{bottom:586.964133pt;}
.ye8{bottom:587.032800pt;}
.y14c{bottom:589.271360pt;}
.yb{bottom:590.989733pt;}
.ye1{bottom:591.073333pt;}
.y19a{bottom:591.276533pt;}
.y279{bottom:591.894000pt;}
.y244{bottom:591.998933pt;}
.y21b{bottom:592.140667pt;}
.y195{bottom:592.908667pt;}
.yf6{bottom:595.398403pt;}
.y43{bottom:597.874000pt;}
.y199{bottom:599.214000pt;}
.y169{bottom:599.335368pt;}
.y196{bottom:600.260267pt;}
.ye6{bottom:601.771867pt;}
.y1d2{bottom:603.875228pt;}
.y278{bottom:604.694000pt;}
.y243{bottom:604.798933pt;}
.y21a{bottom:604.940667pt;}
.ye4{bottom:605.926133pt;}
.y145{bottom:607.070366pt;}
.ya{bottom:607.656400pt;}
.y171{bottom:607.809427pt;}
.y16a{bottom:608.893129pt;}
.ye5{bottom:611.105200pt;}
.y170{bottom:613.431639pt;}
.y183{bottom:614.140527pt;}
.y19b{bottom:614.148933pt;}
.y42{bottom:614.540667pt;}
.y1d5{bottom:616.390933pt;}
.y1cc{bottom:616.602612pt;}
.yaa{bottom:616.781600pt;}
.y277{bottom:617.494000pt;}
.y242{bottom:617.598933pt;}
.y219{bottom:617.740667pt;}
.y194{bottom:618.083733pt;}
.yf5{bottom:621.145620pt;}
.y179{bottom:622.264215pt;}
.y182{bottom:622.272364pt;}
.y16b{bottom:623.877546pt;}
.y9{bottom:624.323067pt;}
.ye3{bottom:625.205333pt;}
.ye7{bottom:625.262133pt;}
.y18a{bottom:626.004209pt;}
.yf8{bottom:627.664110pt;}
.y19c{bottom:629.733467pt;}
.y276{bottom:630.294000pt;}
.y241{bottom:630.398933pt;}
.y218{bottom:630.540667pt;}
.y41{bottom:631.207333pt;}
.y190{bottom:634.201231pt;}
.yc3{bottom:637.770800pt;}
.y16c{bottom:638.006409pt;}
.y172{bottom:639.554554pt;}
.y16e{bottom:639.562703pt;}
.y275{bottom:643.094000pt;}
.y240{bottom:643.198933pt;}
.y217{bottom:643.340667pt;}
.y82{bottom:645.418933pt;}
.y1cd{bottom:645.552930pt;}
.y173{bottom:646.855282pt;}
.y40{bottom:647.874000pt;}
.y16d{bottom:649.788610pt;}
.yc2{bottom:651.104133pt;}
.y274{bottom:655.894000pt;}
.y23f{bottom:655.998933pt;}
.y216{bottom:656.140667pt;}
.y16f{bottom:657.113782pt;}
.y1ce{bottom:658.264018pt;}
.yda{bottom:659.189867pt;}
.y189{bottom:659.264889pt;}
.ye9{bottom:661.417067pt;}
.y174{bottom:662.320439pt;}
.yc1{bottom:664.437467pt;}
.y230{bottom:664.540400pt;}
.y3f{bottom:664.540667pt;}
.y81{bottom:664.629867pt;}
.yc7{bottom:664.766800pt;}
.y273{bottom:668.694000pt;}
.yd9{bottom:668.789867pt;}
.y23e{bottom:668.798933pt;}
.y215{bottom:668.940667pt;}
.yf3{bottom:670.467225pt;}
.y178{bottom:671.405608pt;}
.y176{bottom:672.024866pt;}
.y19d{bottom:673.294133pt;}
.y193{bottom:674.431467pt;}
.y6{bottom:676.153867pt;}
.y175{bottom:678.005596pt;}
.y177{bottom:679.936703pt;}
.y22f{bottom:681.207067pt;}
.y3e{bottom:681.207333pt;}
.y192{bottom:681.368267pt;}
.y272{bottom:681.494000pt;}
.y23d{bottom:681.598933pt;}
.y214{bottom:681.740667pt;}
.yf2{bottom:682.679182pt;}
.y191{bottom:684.418177pt;}
.yf4{bottom:687.425100pt;}
.y17d{bottom:688.891502pt;}
.y80{bottom:691.296533pt;}
.y271{bottom:694.294000pt;}
.y23c{bottom:694.398933pt;}
.y213{bottom:694.540667pt;}
.ybf{bottom:695.053333pt;}
.yc0{bottom:695.054000pt;}
.y181{bottom:695.711489pt;}
.y17e{bottom:697.031487pt;}
.y3d{bottom:697.874000pt;}
.ydb{bottom:698.662133pt;}
.y11{bottom:700.342800pt;}
.y1d9{bottom:700.382933pt;}
.ya9{bottom:700.773600pt;}
.y187{bottom:701.627034pt;}
.y186{bottom:703.338142pt;}
.ybb{bottom:704.520800pt;}
.yf1{bottom:706.090198pt;}
.y270{bottom:707.094133pt;}
.y23b{bottom:707.198933pt;}
.y212{bottom:707.340667pt;}
.y180{bottom:708.667021pt;}
.y5{bottom:709.487200pt;}
.y17f{bottom:710.125537pt;}
.y188{bottom:712.455903pt;}
.yf0{bottom:713.678766pt;}
.y57{bottom:714.540667pt;}
.yef{bottom:716.864494pt;}
.yb8{bottom:717.854133pt;}
.y7f{bottom:717.963200pt;}
.y26f{bottom:719.894000pt;}
.y23a{bottom:719.998933pt;}
.y2b7{bottom:720.070400pt;}
.y211{bottom:720.140667pt;}
.y1d0{bottom:723.057974pt;}
.ye0{bottom:724.154800pt;}
.yee{bottom:725.964240pt;}
.y18b{bottom:727.464765pt;}
.yb7{bottom:731.187467pt;}
.y7b{bottom:731.207333pt;}
.ydc{bottom:732.130133pt;}
.y185{bottom:732.288460pt;}
.y26e{bottom:732.694000pt;}
.y239{bottom:732.798933pt;}
.y2b6{bottom:732.870400pt;}
.y210{bottom:732.940667pt;}
.y10{bottom:733.676133pt;}
.y1b1{bottom:734.023435pt;}
.y18d{bottom:734.024012pt;}
.y1cf{bottom:734.025361pt;}
.yc6{bottom:739.412133pt;}
.y166{bottom:744.624734pt;}
.y26d{bottom:745.494000pt;}
.y238{bottom:745.598933pt;}
.y2b5{bottom:745.670400pt;}
.y20f{bottom:745.740667pt;}
.y144{bottom:747.030852pt;}
.y22e{bottom:747.873733pt;}
.y56{bottom:747.874000pt;}
.y1a7{bottom:749.211555pt;}
.y4f{bottom:749.400933pt;}
.yb2{bottom:749.606800pt;}
.y1a3{bottom:753.350807pt;}
.y18c{bottom:756.635082pt;}
.y165{bottom:758.289153pt;}
.y26c{bottom:758.294000pt;}
.y237{bottom:758.398933pt;}
.y2b4{bottom:758.470400pt;}
.y20e{bottom:758.540667pt;}
.y4e{bottom:759.000933pt;}
.y1a6{bottom:762.061161pt;}
.y1a2{bottom:762.737457pt;}
.y22d{bottom:764.540400pt;}
.y73{bottom:764.540667pt;}
.y1a8{bottom:767.561151pt;}
.y4d{bottom:768.600933pt;}
.y1d1{bottom:769.217149pt;}
.y236{bottom:771.198933pt;}
.y2b3{bottom:771.270400pt;}
.y20d{bottom:771.340667pt;}
.y18e{bottom:771.896536pt;}
.y143{bottom:771.915251pt;}
.y1f8{bottom:774.437467pt;}
.y1c8{bottom:774.585733pt;}
.y22c{bottom:781.207067pt;}
.y72{bottom:781.207333pt;}
.y55{bottom:781.207467pt;}
.y1a5{bottom:781.975199pt;}
.y235{bottom:783.998933pt;}
.y2b2{bottom:784.070400pt;}
.y20c{bottom:784.140667pt;}
.y1d4{bottom:784.318933pt;}
.ya8{bottom:784.765600pt;}
.y1c7{bottom:785.308400pt;}
.y1c4{bottom:785.309733pt;}
.y4{bottom:786.153867pt;}
.y1ad{bottom:786.676672pt;}
.y1f7{bottom:787.770800pt;}
.y1a9{bottom:788.526299pt;}
.y1a4{bottom:793.333697pt;}
.yc5{bottom:795.710800pt;}
.y1c3{bottom:796.141067pt;}
.y234{bottom:796.798933pt;}
.y2b1{bottom:796.870400pt;}
.y20b{bottom:796.940667pt;}
.y22b{bottom:797.873733pt;}
.y71{bottom:797.874000pt;}
.y19e{bottom:797.904800pt;}
.yde{bottom:798.050400pt;}
.y1f6{bottom:801.104133pt;}
.ydd{bottom:801.634400pt;}
.y1c9{bottom:803.407333pt;}
.y1a1{bottom:804.121826pt;}
.y1c5{bottom:805.666533pt;}
.y1a0{bottom:808.309966pt;}
.y26b{bottom:809.494000pt;}
.y2b0{bottom:809.670400pt;}
.y20a{bottom:809.740667pt;}
.yf{bottom:810.342800pt;}
.y1aa{bottom:813.467735pt;}
.y1b8{bottom:814.160326pt;}
.y1f5{bottom:814.437467pt;}
.y22a{bottom:814.540400pt;}
.y7a{bottom:814.540667pt;}
.y54{bottom:814.540800pt;}
.y19f{bottom:816.637359pt;}
.y1ca{bottom:817.602000pt;}
.y1c1{bottom:821.920400pt;}
.y26a{bottom:822.294000pt;}
.y2af{bottom:822.470400pt;}
.y209{bottom:822.540667pt;}
.y1bf{bottom:824.055200pt;}
.y16{bottom:826.744933pt;}
.yec{bottom:829.500400pt;}
.yd8{bottom:830.365867pt;}
.y229{bottom:831.207067pt;}
.y70{bottom:831.207333pt;}
.y53{bottom:831.207467pt;}
.y1f1{bottom:831.497333pt;}
.y1be{bottom:832.195733pt;}
.y1c2{bottom:833.062267pt;}
.y269{bottom:835.094133pt;}
.y233{bottom:835.198933pt;}
.y2ae{bottom:835.270400pt;}
.y208{bottom:835.340667pt;}
.y18f{bottom:838.743822pt;}
.yd7{bottom:839.965867pt;}
.y1ab{bottom:841.285462pt;}
.y15{bottom:843.411600pt;}
.y1f3{bottom:845.237600pt;}
.y1ac{bottom:846.443230pt;}
.y228{bottom:847.873733pt;}
.y6f{bottom:847.874000pt;}
.y268{bottom:847.894000pt;}
.y232{bottom:847.998933pt;}
.y2ad{bottom:848.070400pt;}
.y207{bottom:848.140667pt;}
.y1c0{bottom:848.202267pt;}
.y1e8{bottom:848.439333pt;}
.y1bc{bottom:849.726928pt;}
.y4b{bottom:849.769333pt;}
.y1b2{bottom:852.733589pt;}
.y1c6{bottom:856.109867pt;}
.y1bd{bottom:857.888933pt;}
.y14{bottom:860.078267pt;}
.y2ac{bottom:860.870400pt;}
.y206{bottom:860.940667pt;}
.y1bb{bottom:862.584682pt;}
.y3{bottom:862.820533pt;}
.y1b3{bottom:862.983941pt;}
.y4a{bottom:863.489067pt;}
.y227{bottom:864.540400pt;}
.y6e{bottom:864.540667pt;}
.y1e6{bottom:867.330000pt;}
.y50{bottom:867.753333pt;}
.y1d8{bottom:868.358933pt;}
.ya7{bottom:868.757600pt;}
.y49{bottom:870.382267pt;}
.y2ab{bottom:873.670400pt;}
.y205{bottom:873.740667pt;}
.y1ae{bottom:875.752066pt;}
.y1f0{bottom:877.378000pt;}
.y1b4{bottom:877.617988pt;}
.y226{bottom:881.207067pt;}
.y79{bottom:881.207333pt;}
.y1e7{bottom:886.231333pt;}
.y2aa{bottom:886.470400pt;}
.y204{bottom:886.540667pt;}
.ye{bottom:887.009467pt;}
.y1b0{bottom:888.805375pt;}
.yed{bottom:890.813411pt;}
.yb0{bottom:893.343333pt;}
.y225{bottom:897.873733pt;}
.y6d{bottom:897.874000pt;}
.yd4{bottom:897.877333pt;}
.y1af{bottom:899.210542pt;}
.y2a9{bottom:899.270400pt;}
.y203{bottom:899.340667pt;}
.y48{bottom:903.262267pt;}
.yc4{bottom:904.521467pt;}
.y1e9{bottom:905.132667pt;}
.y1b9{bottom:910.487558pt;}
.y2a8{bottom:912.070400pt;}
.y202{bottom:912.140667pt;}
.y224{bottom:914.540400pt;}
.y6c{bottom:914.540667pt;}
.y8c{bottom:914.540800pt;}
.y1b5{bottom:915.547549pt;}
.y1ef{bottom:920.834000pt;}
.ydf{bottom:923.080133pt;}
.y1ea{bottom:924.034000pt;}
.y2a7{bottom:924.870400pt;}
.y201{bottom:924.940667pt;}
.yd6{bottom:929.837867pt;}
.y223{bottom:931.207067pt;}
.y6b{bottom:931.207333pt;}
.y8b{bottom:931.207467pt;}
.y2a6{bottom:937.670400pt;}
.y200{bottom:937.740667pt;}
.yd5{bottom:939.437867pt;}
.y2{bottom:939.487200pt;}
.y1eb{bottom:942.935333pt;}
.y222{bottom:947.873733pt;}
.y78{bottom:947.874000pt;}
.y8a{bottom:947.874133pt;}
.y1ba{bottom:949.655635pt;}
.y2a5{bottom:950.470400pt;}
.y1ff{bottom:950.540667pt;}
.y1b7{bottom:952.091927pt;}
.y1d3{bottom:952.342933pt;}
.yad{bottom:952.733600pt;}
.y1ec{bottom:961.836667pt;}
.y1b6{bottom:961.869687pt;}
.y2a4{bottom:963.270400pt;}
.y1fe{bottom:963.340667pt;}
.yd{bottom:963.676133pt;}
.y221{bottom:964.540400pt;}
.y6a{bottom:964.540667pt;}
.y89{bottom:964.540800pt;}
.y2a3{bottom:976.070400pt;}
.y1fd{bottom:976.140667pt;}
.y39{bottom:980.305333pt;}
.y1ed{bottom:980.738000pt;}
.y220{bottom:981.207067pt;}
.y69{bottom:981.207333pt;}
.y88{bottom:981.207467pt;}
.y2a2{bottom:988.870400pt;}
.y1fc{bottom:988.940667pt;}
.yb9{bottom:994.540667pt;}
.y18{bottom:994.874667pt;}
.y21f{bottom:997.873733pt;}
.y68{bottom:997.874000pt;}
.y87{bottom:997.874133pt;}
.y1ee{bottom:999.639333pt;}
.y2a1{bottom:1001.670400pt;}
.y1fb{bottom:1001.740667pt;}
.y3c{bottom:1001.992533pt;}
.y1db{bottom:1005.340267pt;}
.yd3{bottom:1006.219867pt;}
.y17{bottom:1010.559467pt;}
.y231{bottom:1010.685067pt;}
.y1d7{bottom:1011.990933pt;}
.yaf{bottom:1012.485600pt;}
.ya6{bottom:1012.501600pt;}
.y2a0{bottom:1014.470400pt;}
.y21e{bottom:1014.540400pt;}
.y67{bottom:1014.540667pt;}
.y86{bottom:1014.540800pt;}
.y38{bottom:1018.161733pt;}
.y7e{bottom:1055.819600pt;}
.yc{bottom:1055.846533pt;}
.y1{bottom:1194.821333pt;}
.h20{height:3.183934pt;}
.h13{height:9.472128pt;}
.h14{height:9.603685pt;}
.h15{height:10.175190pt;}
.hf{height:10.476571pt;}
.h10{height:13.394827pt;}
.h11{height:15.404051pt;}
.h1a{height:17.250000pt;}
.h1b{height:17.472656pt;}
.h16{height:19.685120pt;}
.h18{height:19.712160pt;}
.h1d{height:21.160000pt;}
.h48{height:22.400000pt;}
.h4a{height:23.072000pt;}
.h41{height:23.499217pt;}
.h40{height:23.558050pt;}
.h1e{height:24.384000pt;}
.h1c{height:26.054667pt;}
.h3b{height:26.175747pt;}
.h3a{height:26.175786pt;}
.h2b{height:26.175829pt;}
.h2a{height:26.175843pt;}
.h3f{height:26.175856pt;}
.h3d{height:26.175875pt;}
.h3c{height:26.175922pt;}
.h2e{height:26.175975pt;}
.h28{height:26.176000pt;}
.h3e{height:26.176117pt;}
.h2c{height:26.176126pt;}
.h29{height:26.176186pt;}
.h2d{height:26.176366pt;}
.h49{height:26.917133pt;}
.h19{height:27.293760pt;}
.h38{height:28.000000pt;}
.hc{height:29.125333pt;}
.h1f{height:29.198667pt;}
.h12{height:29.706667pt;}
.hb{height:30.001608pt;}
.h32{height:30.538440pt;}
.h33{height:30.538550pt;}
.ha{height:30.538667pt;}
.h34{height:30.538703pt;}
.h35{height:30.538795pt;}
.h47{height:30.613883pt;}
.h4e{height:33.810667pt;}
.h26{height:34.261333pt;}
.h4c{height:34.773333pt;}
.h36{height:34.901333pt;}
.h30{height:35.992000pt;}
.h46{height:36.699193pt;}
.h2f{height:37.048000pt;}
.h45{height:37.644376pt;}
.he{height:38.609600pt;}
.h44{height:39.045855pt;}
.h24{height:39.200000pt;}
.h22{height:42.896000pt;}
.h6{height:44.968000pt;}
.h27{height:45.808000pt;}
.h21{height:46.698667pt;}
.h31{height:46.766720pt;}
.h4d{height:47.712000pt;}
.h43{height:48.856207pt;}
.h7{height:49.216000pt;}
.h2{height:50.944000pt;}
.h4{height:52.352000pt;}
.h17{height:54.485333pt;}
.h23{height:58.378667pt;}
.h37{height:60.713813pt;}
.h25{height:76.416000pt;}
.hd{height:106.693333pt;}
.h4b{height:190.865333pt;}
.h3{height:269.808000pt;}
.h5{height:301.418667pt;}
.h42{height:680.314667pt;}
.h39{height:689.764000pt;}
.h8{height:1122.520000pt;}
.h9{height:1122.666667pt;}
.h1{height:1148.666667pt;}
.h0{height:1148.976400pt;}
.w9{width:-74.549333pt;}
.w8{width:-12.134667pt;}
.wa{width:26.621333pt;}
.w6{width:84.733333pt;}
.w4{width:137.905333pt;}
.w7{width:168.778667pt;}
.wc{width:283.465333pt;}
.w5{width:554.520000pt;}
.wb{width:585.825333pt;}
.w2{width:793.701333pt;}
.w3{width:794.000000pt;}
.w0{width:812.598667pt;}
.wd{width:812.599067pt;}
.w1{width:812.666667pt;}
.x9a{left:-15.762040pt;}
.x99{left:-13.170933pt;}
.x1{left:-1.228267pt;}
.x0{left:0.000000pt;}
.xa0{left:1.023067pt;}
.xdc{left:2.261600pt;}
.x13{left:4.775600pt;}
.x1d{left:26.083867pt;}
.xa{left:28.307867pt;}
.x2e{left:37.795200pt;}
.x41{left:48.156800pt;}
.x1e{left:49.133867pt;}
.x3{left:54.042000pt;}
.x2{left:55.472533pt;}
.xdd{left:73.561067pt;}
.x9c{left:92.047733pt;}
.x2f{left:97.063600pt;}
.xb{left:98.173200pt;}
.x20{left:108.703600pt;}
.x5{left:109.606267pt;}
.x6{left:110.847867pt;}
.x34{left:112.117600pt;}
.x9b{left:117.579072pt;}
.x3d{left:120.888933pt;}
.x43{left:128.490267pt;}
.x9e{left:129.386123pt;}
.x10{left:132.281867pt;}
.x81{left:140.098400pt;}
.x37{left:146.773600pt;}
.x3b{left:149.293733pt;}
.xa3{left:151.687177pt;}
.xa1{left:153.838119pt;}
.x9d{left:156.258667pt;}
.x9f{left:158.279404pt;}
.x72{left:160.112663pt;}
.xcb{left:162.249206pt;}
.xd4{left:164.278133pt;}
.xc{left:166.526800pt;}
.x33{left:168.189600pt;}
.x77{left:169.379867pt;}
.x76{left:171.911160pt;}
.xd{left:174.182400pt;}
.x7b{left:175.157333pt;}
.x38{left:177.708133pt;}
.xd7{left:179.328933pt;}
.xd3{left:180.258667pt;}
.xd6{left:185.998133pt;}
.xf{left:187.443067pt;}
.x73{left:189.331869pt;}
.x69{left:191.613346pt;}
.xd0{left:192.763966pt;}
.x80{left:199.300267pt;}
.x42{left:203.694667pt;}
.x7e{left:208.030800pt;}
.x71{left:209.808128pt;}
.x68{left:214.452564pt;}
.x67{left:216.114783pt;}
.xd2{left:218.125733pt;}
.x9{left:219.236000pt;}
.x74{left:220.954774pt;}
.x7f{left:224.666133pt;}
.xcc{left:226.236497pt;}
.x65{left:227.318466pt;}
.x1f{left:230.104000pt;}
.x23{left:231.172667pt;}
.xc9{left:232.331301pt;}
.xd8{left:234.469600pt;}
.xa2{left:236.778133pt;}
.x4{left:240.265467pt;}
.xd5{left:241.464400pt;}
.x82{left:242.653200pt;}
.xe0{left:245.604667pt;}
.x8{left:247.543867pt;}
.x64{left:249.823611pt;}
.x7a{left:253.760340pt;}
.xca{left:254.893482pt;}
.x75{left:256.040636pt;}
.xce{left:258.861623pt;}
.xd1{left:260.091991pt;}
.x63{left:263.765067pt;}
.x6b{left:264.987287pt;}
.x30{left:265.984933pt;}
.x66{left:269.354686pt;}
.xc7{left:271.914933pt;}
.x6a{left:273.876900pt;}
.x85{left:275.323733pt;}
.xd9{left:276.699809pt;}
.xcd{left:278.922327pt;}
.x79{left:280.657328pt;}
.xe2{left:286.295333pt;}
.x5b{left:287.344482pt;}
.x5a{left:290.554716pt;}
.xc8{left:293.605264pt;}
.xcf{left:295.707482pt;}
.x7c{left:298.479331pt;}
.x47{left:299.484533pt;}
.x7d{left:300.703867pt;}
.x78{left:302.530525pt;}
.x6c{left:305.010918pt;}
.x59{left:307.765815pt;}
.xc6{left:311.710416pt;}
.x83{left:313.335467pt;}
.x46{left:317.543200pt;}
.x49{left:321.704533pt;}
.x18{left:322.929867pt;}
.x84{left:324.396667pt;}
.x5c{left:328.481216pt;}
.xc5{left:332.691859pt;}
.x70{left:335.069381pt;}
.x6f{left:337.750117pt;}
.x5d{left:338.912433pt;}
.xc4{left:341.752584pt;}
.xb6{left:344.182124pt;}
.xba{left:347.416933pt;}
.x7{left:350.631067pt;}
.x6e{left:352.449350pt;}
.x5e{left:355.470050pt;}
.x5f{left:357.005734pt;}
.xaf{left:359.940614pt;}
.xb9{left:361.415426pt;}
.xae{left:362.727275pt;}
.x6d{left:365.983399pt;}
.xb5{left:367.819859pt;}
.x60{left:369.585276pt;}
.x61{left:372.182869pt;}
.xbb{left:375.430215pt;}
.x58{left:378.881067pt;}
.xc3{left:380.588000pt;}
.xe{left:388.264267pt;}
.xab{left:392.948702pt;}
.x12{left:395.400000pt;}
.x62{left:398.403861pt;}
.x31{left:399.425867pt;}
.x17{left:400.629867pt;}
.xc2{left:403.298933pt;}
.xb0{left:404.290903pt;}
.xb7{left:405.586457pt;}
.x4f{left:408.121200pt;}
.xb1{left:409.676820pt;}
.x40{left:410.764533pt;}
.x21{left:411.752533pt;}
.x22{left:412.649867pt;}
.xb8{left:419.047173pt;}
.x2b{left:421.917200pt;}
.x11{left:424.040267pt;}
.x24{left:425.553867pt;}
.xaa{left:427.016047pt;}
.xa4{left:428.604933pt;}
.x52{left:430.489467pt;}
.x55{left:432.497067pt;}
.x14{left:434.866533pt;}
.x19{left:436.386667pt;}
.xbc{left:438.529360pt;}
.x54{left:440.839333pt;}
.x3e{left:443.497067pt;}
.xbd{left:448.038231pt;}
.x3f{left:450.146933pt;}
.xa5{left:454.898960pt;}
.x28{left:456.847600pt;}
.xa9{left:459.575988pt;}
.x32{left:460.866667pt;}
.xac{left:462.215983pt;}
.xa8{left:469.182637pt;}
.xb4{left:470.241895pt;}
.xe1{left:472.631867pt;}
.x57{left:473.977467pt;}
.x4a{left:476.211200pt;}
.xa6{left:477.379659pt;}
.x4e{left:480.433200pt;}
.x44{left:482.375200pt;}
.x36{left:484.141733pt;}
.x1c{left:485.225333pt;}
.x1b{left:486.684667pt;}
.xb3{left:489.227045pt;}
.xa7{left:492.624817pt;}
.x45{left:494.727200pt;}
.x1a{left:498.801333pt;}
.x2c{left:500.214667pt;}
.x98{left:501.248658pt;}
.xc1{left:502.769243pt;}
.x96{left:508.199016pt;}
.x26{left:509.215067pt;}
.xb2{left:511.145524pt;}
.x2a{left:516.927067pt;}
.xad{left:518.242548pt;}
.x53{left:523.759600pt;}
.x4c{left:526.073600pt;}
.x48{left:527.707867pt;}
.x8f{left:531.071707pt;}
.xda{left:533.792267pt;}
.x8c{left:539.790210pt;}
.x51{left:548.592000pt;}
.xde{left:552.432667pt;}
.x8e{left:559.793877pt;}
.x8a{left:560.942764pt;}
.x8b{left:563.998314pt;}
.x97{left:569.326312pt;}
.xc0{left:570.863193pt;}
.x2d{left:572.874533pt;}
.x16{left:575.644000pt;}
.x29{left:577.044667pt;}
.x56{left:579.125828pt;}
.x92{left:583.909733pt;}
.x93{left:586.111467pt;}
.x8d{left:588.157529pt;}
.x50{left:590.905200pt;}
.x95{left:592.287752pt;}
.x88{left:596.965662pt;}
.xbf{left:601.402397pt;}
.x15{left:603.014667pt;}
.x90{left:605.651572pt;}
.x94{left:608.412908pt;}
.x3a{left:612.788533pt;}
.x27{left:615.106533pt;}
.xbe{left:617.861626pt;}
.x87{left:620.358952pt;}
.x86{left:622.697467pt;}
.x4d{left:633.708400pt;}
.x89{left:636.728552pt;}
.x39{left:645.872133pt;}
.xdf{left:647.605067pt;}
.xdb{left:650.498800pt;}
.x25{left:656.145867pt;}
.x91{left:658.915919pt;}
.x4b{left:663.912533pt;}
.x3c{left:665.983867pt;}
.x35{left:672.133600pt;}
}




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