
    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_728635e3e3eadf6c4e287239.woff')format("woff");}.ff1{font-family:ff1;line-height:0.942000;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_c32a79ec8e52f00f8fc42526.woff')format("woff");}.ff2{font-family:ff2;line-height:0.977500;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_e9834d9771007ac14eda47f2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.719500;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_bfddb73b341f614c9137ca9b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.973000;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_bcbf3ede903aa39a88b4416e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_54be8db91b842879da6de082.woff')format("woff");}.ff6{font-family:ff6;line-height:0.681641;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_9a237736bd34d82038bd8fa7.woff')format("woff");}.ff7{font-family:ff7;line-height:0.958000;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_e717838713b389d621a0b932.woff')format("woff");}.ff8{font-family:ff8;line-height:0.964844;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_a470b4ecc7326f0ba22accc8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.977500;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_ab651d4aa3bb764b7fb0d549.woff')format("woff");}.ffa{font-family:ffa;line-height:0.969000;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_ab651d4aa3bb764b7fb0d549.woff')format("woff");}.ffb{font-family:ffb;line-height:0.969000;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_ab651d4aa3bb764b7fb0d549.woff')format("woff");}.ffc{font-family:ffc;line-height:0.969000;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_ab651d4aa3bb764b7fb0d549.woff')format("woff");}.ffd{font-family:ffd;line-height:0.969000;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_ab651d4aa3bb764b7fb0d549.woff')format("woff");}.ffe{font-family:ffe;line-height:0.969000;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_ab651d4aa3bb764b7fb0d549.woff')format("woff");}.fff{font-family:fff;line-height:0.969000;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_ab651d4aa3bb764b7fb0d549.woff')format("woff");}.ff10{font-family:ff10;line-height:0.969000;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_ab651d4aa3bb764b7fb0d549.woff')format("woff");}.ff11{font-family:ff11;line-height:0.969000;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_ab651d4aa3bb764b7fb0d549.woff')format("woff");}.ff12{font-family:ff12;line-height:0.969000;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_ede3696836e6b4c9401e42e0.woff')format("woff");}.ff13{font-family:ff13;line-height:0.969000;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_e8b11be8fe0f8a4bdaea6fb5.woff')format("woff");}.ff14{font-family:ff14;line-height:0.908000;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_178f3e3a61e9885172eaf92b.woff')format("woff");}.ff15{font-family:ff15;line-height:1.215000;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_e8b11be8fe0f8a4bdaea6fb5.woff')format("woff");}.ff16{font-family:ff16;line-height:0.908000;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_ede3696836e6b4c9401e42e0.woff')format("woff");}.ff17{font-family:ff17;line-height:0.969000;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_e8b11be8fe0f8a4bdaea6fb5.woff')format("woff");}.ff18{font-family:ff18;line-height:0.908000;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_f1c163009a0e9a418ace6b6b.woff')format("woff");}.ff19{font-family:ff19;line-height:0.881836;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_d9f24b74615ef48cffabe869.woff')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_ede3696836e6b4c9401e42e0.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.969000;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_e8b11be8fe0f8a4bdaea6fb5.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.908000;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_178f3e3a61e9885172eaf92b.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.215000;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_ede3696836e6b4c9401e42e0.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.969000;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_ede3696836e6b4c9401e42e0.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.969000;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_e8b11be8fe0f8a4bdaea6fb5.woff')format("woff");}.ff20{font-family:ff20;line-height:0.908000;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_178f3e3a61e9885172eaf92b.woff')format("woff");}.ff21{font-family:ff21;line-height:1.215000;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_47ad5609d35687b8f4c9ac42.woff')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_ede3696836e6b4c9401e42e0.woff')format("woff");}.ff23{font-family:ff23;line-height:0.969000;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_68247a6dbdb94a308d4479a4.woff')format("woff");}.ff24{font-family:ff24;line-height:0.687500;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_ede3696836e6b4c9401e42e0.woff')format("woff");}.ff25{font-family:ff25;line-height:0.969000;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_a1eaa1d5bb924ea705cc7ac4.woff')format("woff");}.ff26{font-family:ff26;line-height:1.215000;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_e8b11be8fe0f8a4bdaea6fb5.woff')format("woff");}.ff27{font-family:ff27;line-height:0.908000;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_e8b11be8fe0f8a4bdaea6fb5.woff')format("woff");}.ff28{font-family:ff28;line-height:0.908000;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_178f3e3a61e9885172eaf92b.woff')format("woff");}.ff29{font-family:ff29;line-height:1.215000;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_ede3696836e6b4c9401e42e0.woff')format("woff");}.ff2a{font-family:ff2a;line-height:0.969000;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_e8b11be8fe0f8a4bdaea6fb5.woff')format("woff");}.ff2b{font-family:ff2b;line-height:0.908000;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_178f3e3a61e9885172eaf92b.woff')format("woff");}.ff2c{font-family:ff2c;line-height:1.215000;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_ede3696836e6b4c9401e42e0.woff')format("woff");}.ff2d{font-family:ff2d;line-height:0.969000;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_ede3696836e6b4c9401e42e0.woff')format("woff");}.ff2e{font-family:ff2e;line-height:0.969000;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_ab651d4aa3bb764b7fb0d549.woff')format("woff");}.ff2f{font-family:ff2f;line-height:0.969000;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_ede3696836e6b4c9401e42e0.woff')format("woff");}.ff30{font-family:ff30;line-height:0.969000;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_4001cb2c4c8689832142b693.woff')format("woff");}.ff31{font-family:ff31;line-height:0.722656;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;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.154607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154607,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m3{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);}
.v8{vertical-align:-69.696000px;}
.v7{vertical-align:-40.800000px;}
.v19{vertical-align:-39.000000px;}
.v15{vertical-align:-37.674000px;}
.v10{vertical-align:-32.250000px;}
.vc{vertical-align:-20.830800px;}
.v1a{vertical-align:-16.578600px;}
.v6{vertical-align:-8.496000px;}
.v2{vertical-align:-5.334000px;}
.v4{vertical-align:-4.272000px;}
.v1c{vertical-align:-1.984200px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:1.417800px;}
.v18{vertical-align:4.860000px;}
.v9{vertical-align:9.360000px;}
.v5{vertical-align:11.904000px;}
.v17{vertical-align:14.418000px;}
.v1b{vertical-align:18.570000px;}
.v11{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.v12{vertical-align:26.757600px;}
.v1d{vertical-align:29.121600px;}
.ve{vertical-align:30.576000px;}
.v13{vertical-align:34.104000px;}
.v3{vertical-align:36.000000px;}
.vb{vertical-align:46.140000px;}
.v14{vertical-align:47.625000px;}
.va{vertical-align:50.160000px;}
.v1e{vertical-align:51.591000px;}
.vf{vertical-align:55.500000px;}
.v16{vertical-align:59.616000px;}
.ls82{letter-spacing:-15.000000px;}
.ls9{letter-spacing:-5.940000px;}
.ls8a{letter-spacing:-5.508000px;}
.ls8d{letter-spacing:-5.292000px;}
.ls41{letter-spacing:-4.968000px;}
.ls23{letter-spacing:-4.704000px;}
.ls8e{letter-spacing:-4.656000px;}
.ls45{letter-spacing:-4.560000px;}
.ls39{letter-spacing:-4.416000px;}
.ls38{letter-spacing:-3.792000px;}
.ls3b{letter-spacing:-3.504000px;}
.ls42{letter-spacing:-2.592000px;}
.ls3a{letter-spacing:-2.304000px;}
.lse{letter-spacing:-2.214000px;}
.ls17{letter-spacing:-2.106000px;}
.ls2e{letter-spacing:-1.968000px;}
.ls18{letter-spacing:-1.728000px;}
.ls8b{letter-spacing:-1.566000px;}
.ls1b{letter-spacing:-1.404000px;}
.ls15{letter-spacing:-1.350000px;}
.ls37{letter-spacing:-1.296000px;}
.ls35{letter-spacing:-1.248000px;}
.ls13{letter-spacing:-1.242000px;}
.ls1c{letter-spacing:-1.080000px;}
.ls3{letter-spacing:-1.056000px;}
.ls21{letter-spacing:-1.026000px;}
.ls2c{letter-spacing:-1.008000px;}
.ls8f{letter-spacing:-0.990000px;}
.ls36{letter-spacing:-0.960000px;}
.ls2d{letter-spacing:-0.912000px;}
.ls43{letter-spacing:-0.864000px;}
.lsf{letter-spacing:-0.840000px;}
.ls90{letter-spacing:-0.780000px;}
.ls32{letter-spacing:-0.768000px;}
.ls8c{letter-spacing:-0.765000px;}
.ls16{letter-spacing:-0.756000px;}
.ls85{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.660000px;}
.lsd{letter-spacing:-0.648000px;}
.ls4d{letter-spacing:-0.630000px;}
.ls2f{letter-spacing:-0.624000px;}
.ls2{letter-spacing:-0.576000px;}
.ls1a{letter-spacing:-0.540000px;}
.ls27{letter-spacing:-0.528000px;}
.ls5{letter-spacing:-0.504000px;}
.ls7{letter-spacing:-0.495000px;}
.lsb{letter-spacing:-0.486000px;}
.ls47{letter-spacing:-0.480000px;}
.ls8{letter-spacing:-0.432000px;}
.ls30{letter-spacing:-0.384000px;}
.ls19{letter-spacing:-0.360000px;}
.ls44{letter-spacing:-0.315000px;}
.ls89{letter-spacing:-0.300000px;}
.ls33{letter-spacing:-0.288000px;}
.ls22{letter-spacing:-0.270000px;}
.ls2b{letter-spacing:-0.240000px;}
.lsc{letter-spacing:-0.216000px;}
.ls28{letter-spacing:-0.192000px;}
.ls31{letter-spacing:-0.144000px;}
.ls25{letter-spacing:-0.096000px;}
.ls26{letter-spacing:-0.048000px;}
.ls1{letter-spacing:0.000000px;}
.ls34{letter-spacing:0.048000px;}
.ls1e{letter-spacing:0.096000px;}
.ls93{letter-spacing:0.108000px;}
.ls1d{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.162000px;}
.ls86{letter-spacing:0.192000px;}
.ls0{letter-spacing:0.198000px;}
.ls20{letter-spacing:0.240000px;}
.ls14{letter-spacing:0.270000px;}
.ls1f{letter-spacing:0.288000px;}
.ls46{letter-spacing:0.300000px;}
.ls3c{letter-spacing:0.384000px;}
.ls29{letter-spacing:0.432000px;}
.ls24{letter-spacing:0.480000px;}
.lsa{letter-spacing:0.540000px;}
.ls11{letter-spacing:0.600000px;}
.ls87{letter-spacing:0.672000px;}
.ls88{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.900000px;}
.ls91{letter-spacing:0.945000px;}
.ls2a{letter-spacing:0.960000px;}
.ls10{letter-spacing:1.200000px;}
.ls6f{letter-spacing:1.560000px;}
.ls4f{letter-spacing:3.024000px;}
.ls6e{letter-spacing:5.760000px;}
.ls77{letter-spacing:6.637200px;}
.ls76{letter-spacing:7.687800px;}
.ls70{letter-spacing:8.625000px;}
.ls72{letter-spacing:11.542800px;}
.ls6d{letter-spacing:11.700000px;}
.ls5f{letter-spacing:11.991000px;}
.ls73{letter-spacing:12.780000px;}
.ls69{letter-spacing:16.200000px;}
.ls53{letter-spacing:22.440000px;}
.ls56{letter-spacing:23.160000px;}
.ls51{letter-spacing:24.060000px;}
.ls55{letter-spacing:26.940000px;}
.ls74{letter-spacing:30.855000px;}
.ls79{letter-spacing:34.020000px;}
.ls92{letter-spacing:40.219200px;}
.ls80{letter-spacing:53.220000px;}
.ls84{letter-spacing:56.940000px;}
.ls4b{letter-spacing:60.300000px;}
.ls7b{letter-spacing:63.540000px;}
.ls4a{letter-spacing:67.129200px;}
.ls75{letter-spacing:67.303200px;}
.ls78{letter-spacing:69.375000px;}
.ls61{letter-spacing:70.500000px;}
.ls59{letter-spacing:70.740000px;}
.ls49{letter-spacing:74.872200px;}
.ls52{letter-spacing:79.020000px;}
.ls4e{letter-spacing:83.220000px;}
.ls7c{letter-spacing:84.840000px;}
.ls7d{letter-spacing:90.900000px;}
.ls7e{letter-spacing:94.260000px;}
.ls83{letter-spacing:97.980000px;}
.ls50{letter-spacing:109.980000px;}
.ls62{letter-spacing:116.716800px;}
.ls58{letter-spacing:117.180000px;}
.ls71{letter-spacing:126.745200px;}
.ls6c{letter-spacing:129.029400px;}
.ls40{letter-spacing:151.200000px;}
.ls3f{letter-spacing:153.024000px;}
.ls3e{letter-spacing:153.648000px;}
.ls60{letter-spacing:158.332200px;}
.ls3d{letter-spacing:165.408000px;}
.ls5a{letter-spacing:177.420000px;}
.ls5e{letter-spacing:190.080000px;}
.ls7f{letter-spacing:205.860000px;}
.ls5d{letter-spacing:211.764000px;}
.ls48{letter-spacing:224.448000px;}
.ls57{letter-spacing:250.980000px;}
.ls67{letter-spacing:285.780000px;}
.ls66{letter-spacing:294.840000px;}
.ls63{letter-spacing:296.436000px;}
.ls54{letter-spacing:304.860000px;}
.ls65{letter-spacing:304.878000px;}
.ls7a{letter-spacing:315.240000px;}
.ls64{letter-spacing:359.226000px;}
.ls5c{letter-spacing:417.480000px;}
.ls81{letter-spacing:423.948000px;}
.ls6a{letter-spacing:443.160000px;}
.ls4c{letter-spacing:523.698000px;}
.ls6b{letter-spacing:611.280000px;}
.ls68{letter-spacing:630.990000px;}
.ls5b{letter-spacing:797.387976px;}
.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;}
}
.ws145{word-spacing:-797.387976px;}
.ws159{word-spacing:-423.948000px;}
.ws146{word-spacing:-417.480000px;}
.ws12c{word-spacing:-318.600000px;}
.ws156{word-spacing:-315.240000px;}
.ws130{word-spacing:-251.040000px;}
.ws147{word-spacing:-211.764000px;}
.ws157{word-spacing:-205.860000px;}
.ws144{word-spacing:-177.420000px;}
.wsef{word-spacing:-176.304000px;}
.wsf0{word-spacing:-164.544000px;}
.wsf1{word-spacing:-163.920000px;}
.wsf2{word-spacing:-162.096000px;}
.ws152{word-spacing:-111.720000px;}
.ws141{word-spacing:-109.980000px;}
.ws14e{word-spacing:-108.000000px;}
.ws13d{word-spacing:-83.220000px;}
.ws149{word-spacing:-77.280000px;}
.ws14a{word-spacing:-71.280000px;}
.ws143{word-spacing:-70.740000px;}
.ws153{word-spacing:-70.680000px;}
.ws125{word-spacing:-62.100000px;}
.ws140{word-spacing:-60.300000px;}
.ws158{word-spacing:-53.220000px;}
.ws1{word-spacing:-48.000000px;}
.ws14d{word-spacing:-36.600000px;}
.ws12b{word-spacing:-36.180000px;}
.ws155{word-spacing:-34.020000px;}
.ws13e{word-spacing:-24.060000px;}
.ws131{word-spacing:-21.120000px;}
.ws127{word-spacing:-19.500000px;}
.ws6{word-spacing:-16.302000px;}
.ws1d5{word-spacing:-14.820000px;}
.ws19a{word-spacing:-14.580000px;}
.ws12e{word-spacing:-14.340000px;}
.ws122{word-spacing:-13.920000px;}
.ws12a{word-spacing:-13.740000px;}
.ws111{word-spacing:-13.620000px;}
.ws5{word-spacing:-13.338000px;}
.ws8e{word-spacing:-13.260000px;}
.ws1db{word-spacing:-13.203000px;}
.ws7{word-spacing:-12.960000px;}
.ws154{word-spacing:-12.900000px;}
.ws2a{word-spacing:-12.780000px;}
.ws126{word-spacing:-12.642000px;}
.ws1f0{word-spacing:-12.366000px;}
.ws21{word-spacing:-12.258000px;}
.wsa8{word-spacing:-12.015000px;}
.ws109{word-spacing:-11.988000px;}
.ws3{word-spacing:-11.856000px;}
.ws29{word-spacing:-11.826000px;}
.ws1cc{word-spacing:-11.745000px;}
.ws20{word-spacing:-11.718000px;}
.ws110{word-spacing:-11.700000px;}
.wse7{word-spacing:-11.655000px;}
.ws170{word-spacing:-11.616000px;}
.ws16e{word-spacing:-11.568000px;}
.ws1d{word-spacing:-11.520000px;}
.wsfa{word-spacing:-11.448000px;}
.ws121{word-spacing:-11.385000px;}
.wsac{word-spacing:-11.376000px;}
.wsa9{word-spacing:-11.340000px;}
.wsb0{word-spacing:-11.328000px;}
.ws22{word-spacing:-11.286000px;}
.wsee{word-spacing:-11.280000px;}
.ws199{word-spacing:-11.250000px;}
.ws0{word-spacing:-11.214000px;}
.wsaf{word-spacing:-11.184000px;}
.ws8f{word-spacing:-11.178000px;}
.wsb4{word-spacing:-11.136000px;}
.ws16d{word-spacing:-11.088000px;}
.wse8{word-spacing:-11.070000px;}
.wsad{word-spacing:-11.040000px;}
.ws1d4{word-spacing:-11.025000px;}
.wsea{word-spacing:-10.992000px;}
.ws4{word-spacing:-10.896000px;}
.ws103{word-spacing:-10.854000px;}
.wsce{word-spacing:-10.848000px;}
.ws2{word-spacing:-10.800000px;}
.wsdb{word-spacing:-10.752000px;}
.ws11b{word-spacing:-10.704000px;}
.wscf{word-spacing:-10.512000px;}
.ws119{word-spacing:-10.416000px;}
.wsae{word-spacing:-10.368000px;}
.wsab{word-spacing:-10.320000px;}
.wscd{word-spacing:-10.272000px;}
.wsd1{word-spacing:-10.128000px;}
.wsb3{word-spacing:-9.984000px;}
.wsdd{word-spacing:-9.936000px;}
.wsb2{word-spacing:-9.888000px;}
.ws16f{word-spacing:-9.840000px;}
.wsda{word-spacing:-9.648000px;}
.wscc{word-spacing:-8.928000px;}
.wsec{word-spacing:-8.592000px;}
.ws134{word-spacing:-8.010420px;}
.ws133{word-spacing:-7.940460px;}
.wsed{word-spacing:-7.392000px;}
.wse9{word-spacing:-7.104000px;}
.wseb{word-spacing:-6.480000px;}
.ws113{word-spacing:-6.336000px;}
.ws17c{word-spacing:-6.210000px;}
.wsaa{word-spacing:-6.192000px;}
.ws1f{word-spacing:-5.778000px;}
.ws178{word-spacing:-5.340000px;}
.ws4e{word-spacing:-3.240000px;}
.ws1e8{word-spacing:-3.186000px;}
.ws1ad{word-spacing:-2.970000px;}
.ws1d0{word-spacing:-2.940000px;}
.ws1a8{word-spacing:-2.880000px;}
.ws3c{word-spacing:-2.760000px;}
.wse6{word-spacing:-2.700000px;}
.ws172{word-spacing:-2.640000px;}
.ws1df{word-spacing:-2.592000px;}
.ws3f{word-spacing:-2.460000px;}
.ws72{word-spacing:-2.340000px;}
.ws168{word-spacing:-2.280000px;}
.ws1e5{word-spacing:-2.268000px;}
.wsca{word-spacing:-2.220000px;}
.ws30{word-spacing:-2.160000px;}
.ws58{word-spacing:-2.100000px;}
.ws50{word-spacing:-2.040000px;}
.ws190{word-spacing:-1.998000px;}
.ws44{word-spacing:-1.980000px;}
.ws1e7{word-spacing:-1.890000px;}
.wsc9{word-spacing:-1.860000px;}
.ws1c9{word-spacing:-1.836000px;}
.ws2b{word-spacing:-1.800000px;}
.ws2c{word-spacing:-1.740000px;}
.ws1ce{word-spacing:-1.680000px;}
.ws1ca{word-spacing:-1.674000px;}
.ws118{word-spacing:-1.620000px;}
.wsf6{word-spacing:-1.566000px;}
.ws8d{word-spacing:-1.560000px;}
.wsde{word-spacing:-1.500000px;}
.ws198{word-spacing:-1.458000px;}
.ws139{word-spacing:-1.440000px;}
.ws48{word-spacing:-1.380000px;}
.ws55{word-spacing:-1.320000px;}
.wsf7{word-spacing:-1.296000px;}
.ws2d{word-spacing:-1.260000px;}
.ws10a{word-spacing:-1.200000px;}
.ws9c{word-spacing:-1.140000px;}
.ws37{word-spacing:-1.080000px;}
.ws65{word-spacing:-1.020000px;}
.ws1ba{word-spacing:-1.008000px;}
.wsc0{word-spacing:-0.960000px;}
.wsa{word-spacing:-0.945000px;}
.wsbd{word-spacing:-0.900000px;}
.ws191{word-spacing:-0.864000px;}
.ws71{word-spacing:-0.840000px;}
.ws8c{word-spacing:-0.810000px;}
.ws5d{word-spacing:-0.780000px;}
.ws1e6{word-spacing:-0.756000px;}
.wse1{word-spacing:-0.720000px;}
.ws1f5{word-spacing:-0.702000px;}
.ws95{word-spacing:-0.660000px;}
.ws8{word-spacing:-0.633600px;}
.ws3b{word-spacing:-0.600000px;}
.ws5b{word-spacing:-0.540000px;}
.ws1bb{word-spacing:-0.528000px;}
.wsb{word-spacing:-0.491400px;}
.ws6f{word-spacing:-0.480000px;}
.ws1c1{word-spacing:-0.432000px;}
.ws13b{word-spacing:-0.420000px;}
.ws16a{word-spacing:-0.360000px;}
.ws96{word-spacing:-0.300000px;}
.wsc6{word-spacing:-0.288000px;}
.ws41{word-spacing:-0.240000px;}
.ws1b9{word-spacing:-0.192000px;}
.ws5c{word-spacing:-0.180000px;}
.ws192{word-spacing:-0.162000px;}
.wsc4{word-spacing:-0.144000px;}
.ws42{word-spacing:-0.120000px;}
.wsf9{word-spacing:-0.096000px;}
.ws123{word-spacing:-0.060000px;}
.ws1bc{word-spacing:-0.048000px;}
.ws9{word-spacing:0.000000px;}
.wsc7{word-spacing:0.048000px;}
.ws136{word-spacing:0.060000px;}
.ws1f3{word-spacing:0.108000px;}
.wsd8{word-spacing:0.120000px;}
.wsf8{word-spacing:0.144000px;}
.ws39{word-spacing:0.180000px;}
.wsc5{word-spacing:0.192000px;}
.ws1c8{word-spacing:0.216000px;}
.ws13c{word-spacing:0.240000px;}
.wsc3{word-spacing:0.270000px;}
.ws10b{word-spacing:0.300000px;}
.ws1be{word-spacing:0.336000px;}
.ws9e{word-spacing:0.360000px;}
.ws12{word-spacing:0.378000px;}
.wsd7{word-spacing:0.384000px;}
.wsa2{word-spacing:0.420000px;}
.ws2e{word-spacing:0.432000px;}
.ws60{word-spacing:0.480000px;}
.ws1c{word-spacing:0.504000px;}
.ws1c2{word-spacing:0.528000px;}
.ws4d{word-spacing:0.540000px;}
.wsc{word-spacing:0.576000px;}
.ws4a{word-spacing:0.600000px;}
.ws70{word-spacing:0.660000px;}
.ws67{word-spacing:0.720000px;}
.ws10c{word-spacing:0.756000px;}
.ws64{word-spacing:0.780000px;}
.ws197{word-spacing:0.810000px;}
.ws1b{word-spacing:0.840000px;}
.ws137{word-spacing:0.900000px;}
.ws1d3{word-spacing:1.020000px;}
.ws59{word-spacing:1.080000px;}
.ws47{word-spacing:1.140000px;}
.ws6e{word-spacing:1.200000px;}
.ws38{word-spacing:1.260000px;}
.wsbc{word-spacing:1.320000px;}
.ws1cb{word-spacing:1.350000px;}
.ws77{word-spacing:1.380000px;}
.ws1d1{word-spacing:1.500000px;}
.ws1ef{word-spacing:1.512000px;}
.wscb{word-spacing:1.560000px;}
.ws177{word-spacing:1.620000px;}
.ws3a{word-spacing:1.680000px;}
.ws1f2{word-spacing:1.728000px;}
.ws4f{word-spacing:1.740000px;}
.ws138{word-spacing:1.800000px;}
.ws75{word-spacing:1.860000px;}
.ws9d{word-spacing:1.920000px;}
.ws195{word-spacing:1.944000px;}
.ws56{word-spacing:1.980000px;}
.ws193{word-spacing:1.998000px;}
.wsd6{word-spacing:2.040000px;}
.ws97{word-spacing:2.100000px;}
.ws194{word-spacing:2.106000px;}
.ws4b{word-spacing:2.160000px;}
.ws17a{word-spacing:2.220000px;}
.ws1c0{word-spacing:2.256000px;}
.ws1c5{word-spacing:2.268000px;}
.ws169{word-spacing:2.280000px;}
.ws175{word-spacing:2.322000px;}
.ws5e{word-spacing:2.340000px;}
.wsa1{word-spacing:2.400000px;}
.wse{word-spacing:2.430000px;}
.ws6d{word-spacing:2.460000px;}
.ws18{word-spacing:2.484000px;}
.ws15e{word-spacing:2.520000px;}
.ws18f{word-spacing:2.538000px;}
.ws6c{word-spacing:2.580000px;}
.wsa6{word-spacing:2.640000px;}
.wsa5{word-spacing:2.700000px;}
.ws33{word-spacing:2.760000px;}
.ws63{word-spacing:2.880000px;}
.ws11f{word-spacing:2.940000px;}
.ws17{word-spacing:2.970000px;}
.ws10f{word-spacing:3.000000px;}
.ws1ac{word-spacing:3.024000px;}
.ws66{word-spacing:3.060000px;}
.ws54{word-spacing:3.120000px;}
.ws57{word-spacing:3.180000px;}
.ws1ab{word-spacing:3.294000px;}
.ws15d{word-spacing:3.300000px;}
.wsc1{word-spacing:3.360000px;}
.wsa7{word-spacing:3.420000px;}
.ws73{word-spacing:3.480000px;}
.wsd5{word-spacing:3.540000px;}
.ws9f{word-spacing:3.600000px;}
.wsbf{word-spacing:3.660000px;}
.wsf5{word-spacing:3.672000px;}
.ws176{word-spacing:3.720000px;}
.ws1bd{word-spacing:3.744000px;}
.ws98{word-spacing:3.780000px;}
.ws2f{word-spacing:3.834000px;}
.ws51{word-spacing:3.840000px;}
.ws31{word-spacing:3.900000px;}
.ws43{word-spacing:3.960000px;}
.wsf4{word-spacing:3.996000px;}
.wsdf{word-spacing:4.020000px;}
.ws3d{word-spacing:4.080000px;}
.wsba{word-spacing:4.140000px;}
.ws1ae{word-spacing:4.158000px;}
.ws10d{word-spacing:4.200000px;}
.wsd{word-spacing:4.224000px;}
.ws53{word-spacing:4.260000px;}
.ws11{word-spacing:4.320000px;}
.ws1bf{word-spacing:4.368000px;}
.wsa0{word-spacing:4.380000px;}
.ws142{word-spacing:4.440000px;}
.ws10{word-spacing:4.482000px;}
.ws61{word-spacing:4.500000px;}
.ws1cf{word-spacing:4.560000px;}
.ws1c4{word-spacing:4.608000px;}
.ws99{word-spacing:4.680000px;}
.ws174{word-spacing:4.740000px;}
.ws1ee{word-spacing:4.752000px;}
.ws76{word-spacing:4.800000px;}
.ws16{word-spacing:4.806000px;}
.ws35{word-spacing:4.860000px;}
.ws196{word-spacing:4.914000px;}
.ws3e{word-spacing:4.920000px;}
.ws13f{word-spacing:4.980000px;}
.ws1ed{word-spacing:5.076000px;}
.ws45{word-spacing:5.100000px;}
.ws69{word-spacing:5.160000px;}
.ws116{word-spacing:5.280000px;}
.ws1c6{word-spacing:5.292000px;}
.wse4{word-spacing:5.340000px;}
.ws120{word-spacing:5.400000px;}
.ws13{word-spacing:5.454000px;}
.ws40{word-spacing:5.580000px;}
.wsbb{word-spacing:5.640000px;}
.ws1d8{word-spacing:5.700000px;}
.ws1ea{word-spacing:5.724000px;}
.ws1d2{word-spacing:5.760000px;}
.ws15c{word-spacing:5.820000px;}
.wsf{word-spacing:5.886000px;}
.wsc2{word-spacing:5.940000px;}
.ws15b{word-spacing:6.000000px;}
.ws68{word-spacing:6.120000px;}
.ws34{word-spacing:6.180000px;}
.ws5a{word-spacing:6.240000px;}
.ws14{word-spacing:6.318000px;}
.ws6b{word-spacing:6.360000px;}
.ws13a{word-spacing:6.420000px;}
.ws9b{word-spacing:6.480000px;}
.ws15{word-spacing:6.534000px;}
.ws6a{word-spacing:6.600000px;}
.ws117{word-spacing:6.660000px;}
.ws115{word-spacing:6.720000px;}
.ws52{word-spacing:6.780000px;}
.ws11d{word-spacing:6.840000px;}
.ws15a{word-spacing:6.900000px;}
.ws62{word-spacing:6.960000px;}
.ws1fa{word-spacing:7.020000px;}
.ws1e3{word-spacing:7.074000px;}
.ws1f9{word-spacing:7.128000px;}
.ws16b{word-spacing:7.200000px;}
.ws1c7{word-spacing:7.236000px;}
.ws1a7{word-spacing:7.320000px;}
.wsd9{word-spacing:7.380000px;}
.ws9a{word-spacing:7.440000px;}
.ws19{word-spacing:7.500000px;}
.ws1a{word-spacing:7.560000px;}
.ws1e9{word-spacing:7.614000px;}
.wse5{word-spacing:7.680000px;}
.ws74{word-spacing:7.740000px;}
.ws1eb{word-spacing:7.776000px;}
.ws1d9{word-spacing:7.884000px;}
.ws16c{word-spacing:7.920000px;}
.ws32{word-spacing:7.980000px;}
.ws173{word-spacing:8.040000px;}
.ws1de{word-spacing:8.100000px;}
.ws1a9{word-spacing:8.220000px;}
.ws1e0{word-spacing:8.262000px;}
.ws1fb{word-spacing:8.280000px;}
.ws1dc{word-spacing:8.370000px;}
.ws36{word-spacing:8.400000px;}
.ws179{word-spacing:8.460000px;}
.ws1cd{word-spacing:8.520000px;}
.ws1aa{word-spacing:8.640000px;}
.ws5f{word-spacing:8.700000px;}
.wsa4{word-spacing:8.748000px;}
.ws49{word-spacing:9.000000px;}
.wse0{word-spacing:9.060000px;}
.ws1d7{word-spacing:9.120000px;}
.ws135{word-spacing:9.420000px;}
.ws1e1{word-spacing:9.450000px;}
.wsa3{word-spacing:9.504000px;}
.ws1e4{word-spacing:9.558000px;}
.ws10e{word-spacing:9.780000px;}
.ws1f4{word-spacing:10.368000px;}
.wse2{word-spacing:10.740000px;}
.ws4c{word-spacing:10.920000px;}
.wsbe{word-spacing:10.980000px;}
.ws11e{word-spacing:11.100000px;}
.ws1d6{word-spacing:11.700000px;}
.ws1da{word-spacing:11.934000px;}
.ws46{word-spacing:12.000000px;}
.ws1af{word-spacing:12.360000px;}
.ws1ec{word-spacing:12.582000px;}
.wsc8{word-spacing:13.620000px;}
.ws1f6{word-spacing:13.716000px;}
.wse3{word-spacing:13.740000px;}
.ws1f7{word-spacing:16.956000px;}
.ws1f8{word-spacing:18.306000px;}
.ws1e2{word-spacing:21.816000px;}
.ws1dd{word-spacing:22.194000px;}
.ws150{word-spacing:39.300000px;}
.ws14b{word-spacing:41.040000px;}
.ws148{word-spacing:47.700000px;}
.ws1c3{word-spacing:56.304000px;}
.wsd4{word-spacing:57.360000px;}
.wsd2{word-spacing:60.240000px;}
.wsd0{word-spacing:61.920000px;}
.wsb1{word-spacing:62.784000px;}
.ws129{word-spacing:65.797800px;}
.wsd3{word-spacing:68.400000px;}
.wsdc{word-spacing:70.416000px;}
.ws12f{word-spacing:70.800000px;}
.wsb8{word-spacing:75.072000px;}
.wsb6{word-spacing:81.024000px;}
.ws124{word-spacing:81.240000px;}
.wsb5{word-spacing:81.840000px;}
.wsb7{word-spacing:81.888000px;}
.ws1f1{word-spacing:84.294000px;}
.wsb9{word-spacing:90.384000px;}
.ws26{word-spacing:96.213600px;}
.ws151{word-spacing:115.620000px;}
.ws186{word-spacing:116.447400px;}
.ws17b{word-spacing:116.933400px;}
.wsf3{word-spacing:119.808000px;}
.ws1b8{word-spacing:121.122600px;}
.ws18e{word-spacing:122.737800px;}
.ws185{word-spacing:123.223800px;}
.ws1a6{word-spacing:123.831000px;}
.ws91{word-spacing:125.762400px;}
.ws14c{word-spacing:138.054000px;}
.ws128{word-spacing:139.980000px;}
.ws93{word-spacing:140.558400px;}
.ws132{word-spacing:143.220000px;}
.ws1b3{word-spacing:147.042600px;}
.ws18c{word-spacing:148.657200px;}
.ws187{word-spacing:148.657800px;}
.ws17e{word-spacing:149.143200px;}
.ws181{word-spacing:149.143800px;}
.ws1a1{word-spacing:149.751000px;}
.ws11a{word-spacing:153.744000px;}
.ws11c{word-spacing:156.336000px;}
.ws1b4{word-spacing:160.002600px;}
.ws17d{word-spacing:162.103800px;}
.ws112{word-spacing:162.288000px;}
.ws19e{word-spacing:162.711000px;}
.ws114{word-spacing:163.104000px;}
.ws106{word-spacing:171.929400px;}
.ws1b1{word-spacing:172.962600px;}
.ws18a{word-spacing:174.577800px;}
.ws180{word-spacing:175.063800px;}
.ws19c{word-spacing:175.671000px;}
.wsfd{word-spacing:181.255800px;}
.ws101{word-spacing:182.999400px;}
.ws12d{word-spacing:183.600000px;}
.wsff{word-spacing:187.044000px;}
.ws100{word-spacing:188.291400px;}
.ws105{word-spacing:194.215800px;}
.ws23{word-spacing:196.108200px;}
.ws27{word-spacing:200.163600px;}
.ws28{word-spacing:206.044200px;}
.ws1a0{word-spacing:206.551800px;}
.wsfc{word-spacing:209.729400px;}
.ws14f{word-spacing:211.980000px;}
.ws102{word-spacing:230.411400px;}
.ws1a2{word-spacing:230.581800px;}
.ws104{word-spacing:233.052000px;}
.wsfe{word-spacing:233.376000px;}
.ws1a4{word-spacing:234.626400px;}
.ws19b{word-spacing:235.873800px;}
.ws183{word-spacing:238.575000px;}
.ws18b{word-spacing:241.733400px;}
.ws108{word-spacing:249.581400px;}
.ws1b6{word-spacing:252.231600px;}
.ws1b0{word-spacing:253.479000px;}
.ws171{word-spacing:261.168000px;}
.ws107{word-spacing:262.212000px;}
.ws1a3{word-spacing:270.271800px;}
.ws1e{word-spacing:270.358800px;}
.ws182{word-spacing:274.220400px;}
.ws189{word-spacing:277.378800px;}
.ws19d{word-spacing:277.993800px;}
.ws1b5{word-spacing:287.877000px;}
.ws1a5{word-spacing:297.163800px;}
.ws184{word-spacing:301.112400px;}
.ws25{word-spacing:302.659200px;}
.ws18d{word-spacing:304.270800px;}
.ws19f{word-spacing:309.794400px;}
.ws17f{word-spacing:313.743000px;}
.ws1b7{word-spacing:314.769000px;}
.ws188{word-spacing:316.901400px;}
.ws1b2{word-spacing:327.399600px;}
.wsfb{word-spacing:433.144200px;}
.ws162{word-spacing:456.377400px;}
.ws15f{word-spacing:475.467000px;}
.ws164{word-spacing:488.427000px;}
.ws90{word-spacing:536.681400px;}
.ws24{word-spacing:572.320200px;}
.ws7d{word-spacing:590.911800px;}
.ws7f{word-spacing:603.601800px;}
.ws7c{word-spacing:615.103800px;}
.ws7a{word-spacing:622.389600px;}
.ws83{word-spacing:635.350200px;}
.ws78{word-spacing:661.270200px;}
.ws7e{word-spacing:667.375800px;}
.ws87{word-spacing:672.499800px;}
.ws81{word-spacing:706.250400px;}
.ws7b{word-spacing:707.551800px;}
.ws82{word-spacing:711.493200px;}
.ws80{word-spacing:713.432400px;}
.ws86{word-spacing:723.481200px;}
.ws85{word-spacing:725.203800px;}
.ws84{word-spacing:726.499800px;}
.ws89{word-spacing:730.279800px;}
.ws8b{word-spacing:733.303800px;}
.ws79{word-spacing:734.600400px;}
.ws88{word-spacing:761.437800px;}
.ws8a{word-spacing:789.625800px;}
.ws167{word-spacing:907.169400px;}
.ws166{word-spacing:942.814800px;}
.ws165{word-spacing:947.777400px;}
.ws161{word-spacing:969.706800px;}
.ws160{word-spacing:982.337400px;}
.ws163{word-spacing:1022.837400px;}
.ws92{word-spacing:1302.166200px;}
.ws94{word-spacing:1325.008200px;}
._48{margin-left:-1182.360000px;}
._45{margin-left:-562.500000px;}
._46{margin-left:-258.860400px;}
._47{margin-left:-227.880000px;}
._44{margin-left:-203.580000px;}
._4d{margin-left:-175.080000px;}
._2f{margin-left:-165.408000px;}
._30{margin-left:-153.648000px;}
._31{margin-left:-150.576000px;}
._4f{margin-left:-94.800000px;}
._4a{margin-left:-76.320000px;}
._4c{margin-left:-71.160000px;}
._82{margin-left:-58.414800px;}
._49{margin-left:-36.600000px;}
._4e{margin-left:-30.449400px;}
._19{margin-left:-10.165800px;}
._1a{margin-left:-9.042600px;}
._18{margin-left:-6.616200px;}
._1{margin-left:-5.281500px;}
._c{margin-left:-3.681000px;}
._3{margin-left:-2.482200px;}
._0{margin-left:-1.115100px;}
._4{width:1.170900px;}
._8{width:2.629800px;}
._7{width:4.460400px;}
._5{width:5.601600px;}
._6{width:6.767100px;}
._9{width:7.999500px;}
._17{width:9.297600px;}
._16{width:11.256000px;}
._79{width:12.423300px;}
._28{width:13.707900px;}
._4b{width:16.433400px;}
._2{width:22.320000px;}
._51{width:29.511300px;}
._81{width:35.918700px;}
._50{width:42.731400px;}
._2a{width:69.408000px;}
._29{width:72.816000px;}
._27{width:75.360000px;}
._2c{width:77.904000px;}
._2b{width:79.632000px;}
._2d{width:84.720000px;}
._3f{width:105.701100px;}
._72{width:122.040900px;}
._68{width:123.364800px;}
._33{width:128.208000px;}
._32{width:142.224000px;}
._7c{width:146.340600px;}
._63{width:147.464700px;}
._66{width:149.081400px;}
._11{width:157.479300px;}
._7e{width:159.066300px;}
._60{width:161.401200px;}
._75{width:162.616200px;}
._15{width:165.544200px;}
._43{width:167.184000px;}
._42{width:169.776000px;}
._41{width:171.456000px;}
._6a{width:172.902600px;}
._62{width:174.361800px;}
._40{width:176.544000px;}
._76{width:178.347900px;}
._14{width:179.801400px;}
._6c{width:180.960900px;}
._67{width:182.296500px;}
._6f{width:185.454900px;}
._5f{width:187.321800px;}
._73{width:188.638800px;}
._e{width:190.293300px;}
._78{width:191.839500px;}
._53{width:193.997400px;}
._38{width:195.921600px;}
._34{width:197.370600px;}
._71{width:198.946500px;}
._36{width:203.314200px;}
._39{width:209.281200px;}
._37{width:213.477600px;}
._3a{width:216.699000px;}
._3b{width:222.972900px;}
._b{width:226.111500px;}
._3e{width:229.234200px;}
._7b{width:235.653600px;}
._64{width:246.792000px;}
._6d{width:249.950400px;}
._5e{width:252.002100px;}
._69{width:255.160500px;}
._35{width:258.589200px;}
._7d{width:260.448600px;}
._3c{width:271.549200px;}
._5d{width:275.472000px;}
._3d{width:283.731600px;}
._74{width:292.115700px;}
._61{width:294.303000px;}
._65{width:296.064300px;}
._6b{width:297.461400px;}
._6e{width:299.222700px;}
._77{width:305.366400px;}
._7a{width:307.959600px;}
._10{width:309.755100px;}
._70{width:312.473400px;}
._f{width:315.907500px;}
._7f{width:322.971600px;}
._d{width:324.125400px;}
._13{width:328.449600px;}
._80{width:365.480400px;}
._52{width:408.563700px;}
._12{width:464.841300px;}
._55{width:468.635400px;}
._23{width:556.596900px;}
._1d{width:633.651300px;}
._24{width:647.608200px;}
._21{width:685.891800px;}
._1e{width:697.681500px;}
._26{width:700.757100px;}
._22{width:709.542000px;}
._20{width:714.439500px;}
._25{width:724.825800px;}
._1f{width:733.339500px;}
._54{width:756.622500px;}
._1c{width:768.133800px;}
._5b{width:850.890900px;}
._58{width:884.463000px;}
._59{width:915.386400px;}
._56{width:920.596500px;}
._5c{width:958.821000px;}
._57{width:962.897400px;}
._5a{width:964.658700px;}
._a{width:1355.077200px;}
._2e{width:1356.248400px;}
._1b{width:1361.535000px;}
.fc2{color:rgb(107,19,25);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fsc{font-size:34.980000px;}
.fs1{font-size:37.800000px;}
.fs4{font-size:38.478000px;}
.fsa{font-size:39.000000px;}
.fs0{font-size:39.600000px;}
.fs5{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs6{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fsd{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fsb{font-size:116.424000px;}
.y0{bottom:0.000000px;}
.y24e{bottom:3.001350px;}
.y193{bottom:4.031550px;}
.y29c{bottom:4.359150px;}
.y286{bottom:4.359300px;}
.y290{bottom:4.359450px;}
.y236{bottom:4.359750px;}
.y233{bottom:4.360050px;}
.y239{bottom:9.000300px;}
.y232{bottom:9.000750px;}
.y24c{bottom:14.344950px;}
.y248{bottom:16.501350px;}
.y28c{bottom:17.063250px;}
.y255{bottom:22.500150px;}
.y263{bottom:44.436450px;}
.y4{bottom:55.872300px;}
.y3{bottom:68.472300px;}
.y328{bottom:77.034300px;}
.y252{bottom:78.480900px;}
.y2df{bottom:78.484650px;}
.y217{bottom:79.038450px;}
.y2b6{bottom:79.866150px;}
.y7f{bottom:80.834250px;}
.y2{bottom:81.072300px;}
.y361{bottom:81.079350px;}
.y1fe{bottom:81.646350px;}
.ycf{bottom:81.784050px;}
.yf3{bottom:82.304850px;}
.y1e1{bottom:82.350900px;}
.y15d{bottom:82.780200px;}
.y197{bottom:82.878450px;}
.y38c{bottom:83.020200px;}
.y4f{bottom:83.438700px;}
.y3b9{bottom:83.995050px;}
.y125{bottom:85.402200px;}
.y310{bottom:87.070650px;}
.y3e5{bottom:90.291150px;}
.ya6{bottom:91.184850px;}
.y327{bottom:95.034300px;}
.y251{bottom:96.480900px;}
.y2de{bottom:96.484650px;}
.y216{bottom:97.038450px;}
.y2b5{bottom:97.866150px;}
.y7e{bottom:98.834250px;}
.y360{bottom:99.079350px;}
.y1fd{bottom:99.646350px;}
.yce{bottom:99.784050px;}
.yf2{bottom:100.304850px;}
.y1e0{bottom:100.350900px;}
.y15c{bottom:100.780200px;}
.y38b{bottom:101.020200px;}
.y4e{bottom:101.438700px;}
.y3b8{bottom:101.995050px;}
.y124{bottom:103.402200px;}
.y30f{bottom:105.070650px;}
.y3e4{bottom:108.291150px;}
.ya5{bottom:109.184850px;}
.y21{bottom:112.306500px;}
.y326{bottom:113.034300px;}
.y250{bottom:114.480900px;}
.y215{bottom:115.038450px;}
.y2b4{bottom:115.866150px;}
.y7d{bottom:116.834250px;}
.y35f{bottom:117.079350px;}
.y1fc{bottom:117.646350px;}
.ycd{bottom:117.784050px;}
.yf1{bottom:118.304850px;}
.y1df{bottom:118.350900px;}
.y1a9{bottom:118.604100px;}
.y15b{bottom:118.780200px;}
.y38a{bottom:119.020200px;}
.y4d{bottom:119.438700px;}
.y3b7{bottom:119.995050px;}
.y123{bottom:121.402200px;}
.y30e{bottom:123.070650px;}
.y3b1{bottom:124.587150px;}
.y3e3{bottom:126.291150px;}
.ya4{bottom:127.184850px;}
.y20{bottom:130.306500px;}
.y214{bottom:133.038450px;}
.y247{bottom:133.117500px;}
.y2b3{bottom:133.866150px;}
.y325{bottom:133.913250px;}
.y7c{bottom:134.834250px;}
.y35e{bottom:135.079350px;}
.y2e6{bottom:135.425700px;}
.y1fb{bottom:135.646350px;}
.ycc{bottom:135.784050px;}
.yf0{bottom:136.304850px;}
.y1de{bottom:136.350900px;}
.y17e{bottom:136.780200px;}
.y1a8{bottom:137.312100px;}
.y245{bottom:137.334150px;}
.y24a{bottom:137.337450px;}
.y4c{bottom:137.438700px;}
.y3b6{bottom:137.995050px;}
.y122{bottom:139.402200px;}
.y30d{bottom:141.070650px;}
.y3b0{bottom:142.587150px;}
.y3e2{bottom:144.291150px;}
.y244{bottom:144.978150px;}
.ya3{bottom:145.184850px;}
.y1f{bottom:148.306500px;}
.y249{bottom:149.483850px;}
.y243{bottom:149.618850px;}
.y2e5{bottom:150.305700px;}
.y213{bottom:151.038450px;}
.y139{bottom:151.597950px;}
.y2b2{bottom:151.866150px;}
.y324{bottom:151.913250px;}
.y7b{bottom:152.834250px;}
.y35d{bottom:153.079350px;}
.y1fa{bottom:153.646350px;}
.yef{bottom:154.304850px;}
.y1dd{bottom:154.350900px;}
.y199{bottom:154.766850px;}
.y17d{bottom:154.780200px;}
.y4b{bottom:155.438700px;}
.y3b5{bottom:155.995050px;}
.y121{bottom:157.402200px;}
.y246{bottom:157.683150px;}
.y30c{bottom:159.070650px;}
.y386{bottom:160.442700px;}
.y3af{bottom:160.587150px;}
.y24d{bottom:160.958850px;}
.y3e1{bottom:162.291150px;}
.y385{bottom:162.566700px;}
.ya2{bottom:163.184850px;}
.y24f{bottom:164.382150px;}
.y24b{bottom:164.385450px;}
.y2e3{bottom:165.185700px;}
.y2b1{bottom:169.866150px;}
.y323{bottom:170.231550px;}
.y7a{bottom:170.834250px;}
.y35c{bottom:171.079350px;}
.y37e{bottom:171.914700px;}
.yee{bottom:172.304850px;}
.y1dc{bottom:172.350900px;}
.y19a{bottom:172.622850px;}
.y17c{bottom:172.780200px;}
.y4a{bottom:173.438700px;}
.y120{bottom:175.402200px;}
.y30b{bottom:177.070650px;}
.y3ae{bottom:178.587150px;}
.ya1{bottom:181.184850px;}
.y1e{bottom:183.314400px;}
.y1ee{bottom:184.763250px;}
.y2e1{bottom:185.165700px;}
.y37f{bottom:185.942700px;}
.y212{bottom:186.046350px;}
.y2b0{bottom:187.866150px;}
.y322{bottom:188.549850px;}
.y242{bottom:188.748750px;}
.y79{bottom:188.834250px;}
.y35b{bottom:189.079350px;}
.y1db{bottom:190.350900px;}
.y17b{bottom:190.780200px;}
.y3b4{bottom:191.002950px;}
.y49{bottom:191.438700px;}
.y13c{bottom:191.972550px;}
.y1a7{bottom:193.220100px;}
.y11f{bottom:193.402200px;}
.y30a{bottom:195.070650px;}
.ycb{bottom:196.097850px;}
.y3ad{bottom:196.587150px;}
.y3e0{bottom:197.299050px;}
.y37d{bottom:197.426700px;}
.ya0{bottom:199.184850px;}
.y2e2{bottom:203.453700px;}
.y211{bottom:205.846350px;}
.y2af{bottom:205.866150px;}
.y241{bottom:206.748750px;}
.y78{bottom:206.834250px;}
.y321{bottom:206.868150px;}
.y35a{bottom:207.079350px;}
.y1da{bottom:208.350900px;}
.y17a{bottom:208.780200px;}
.y48{bottom:209.438700px;}
.y1a6{bottom:211.292100px;}
.y11e{bottom:211.402200px;}
.y309{bottom:213.070650px;}
.yca{bottom:214.097850px;}
.y3ac{bottom:214.587150px;}
.y9f{bottom:217.184850px;}
.yed{bottom:218.228550px;}
.y2ed{bottom:218.765700px;}
.y387{bottom:219.974700px;}
.y1f7{bottom:221.513400px;}
.y13d{bottom:222.584550px;}
.y37c{bottom:222.722700px;}
.y2ae{bottom:223.866150px;}
.y77{bottom:224.834250px;}
.y359{bottom:225.079350px;}
.y320{bottom:225.186450px;}
.y1d9{bottom:226.350900px;}
.y179{bottom:226.780200px;}
.y47{bottom:227.438700px;}
.y23e{bottom:227.571900px;}
.y11d{bottom:229.402200px;}
.y308{bottom:231.070650px;}
.y23c{bottom:232.209600px;}
.y3ab{bottom:232.587150px;}
.y9e{bottom:235.184850px;}
.y1d{bottom:237.130050px;}
.y1a5{bottom:237.656100px;}
.y240{bottom:240.276900px;}
.yc9{bottom:240.929550px;}
.y2ad{bottom:241.866150px;}
.y76{bottom:242.834250px;}
.y1f8{bottom:242.981400px;}
.y1ef{bottom:242.993400px;}
.y31f{bottom:243.504750px;}
.y178{bottom:244.780200px;}
.yec{bottom:245.060400px;}
.y46{bottom:245.438700px;}
.y23a{bottom:245.748750px;}
.y3df{bottom:246.862800px;}
.y11c{bottom:247.402200px;}
.y389{bottom:248.030700px;}
.y307{bottom:249.070650px;}
.y2ec{bottom:250.445700px;}
.y3aa{bottom:250.587150px;}
.y13b{bottom:251.072550px;}
.y23d{bottom:252.603900px;}
.y9d{bottom:253.184850px;}
.y210{bottom:255.410100px;}
.y23b{bottom:257.244600px;}
.y2ac{bottom:259.866150px;}
.y2e0{bottom:260.113200px;}
.y75{bottom:260.834250px;}
.y31e{bottom:261.823050px;}
.yc8{bottom:262.649400px;}
.y177{bottom:262.780200px;}
.y358{bottom:263.362050px;}
.y45{bottom:263.438700px;}
.y1a4{bottom:264.656100px;}
.y3de{bottom:264.862800px;}
.y144{bottom:265.112550px;}
.y23f{bottom:265.308900px;}
.yeb{bottom:266.780250px;}
.y306{bottom:267.070650px;}
.y3a9{bottom:268.587150px;}
.y1f6{bottom:269.345400px;}
.y9c{bottom:271.184850px;}
.y1c{bottom:272.137950px;}
.y20f{bottom:273.410100px;}
.y37b{bottom:273.530700px;}
.y231{bottom:275.181000px;}
.y235{bottom:275.394000px;}
.y2ab{bottom:277.866150px;}
.y74{bottom:278.834250px;}
.y31d{bottom:280.141350px;}
.y176{bottom:280.780200px;}
.y357{bottom:281.362050px;}
.y44{bottom:281.438700px;}
.yfb{bottom:281.728800px;}
.y1d8{bottom:282.368850px;}
.y3dd{bottom:282.862800px;}
.y2eb{bottom:282.977700px;}
.y1f5{bottom:284.225400px;}
.yc7{bottom:284.369400px;}
.y237{bottom:284.394300px;}
.y230{bottom:284.748750px;}
.y305{bottom:285.070650px;}
.y3a8{bottom:286.587150px;}
.yea{bottom:288.500100px;}
.y9b{bottom:289.184850px;}
.y1b{bottom:290.137950px;}
.y1a3{bottom:290.384100px;}
.y20e{bottom:291.410100px;}
.y234{bottom:292.244250px;}
.y384{bottom:292.250700px;}
.y238{bottom:292.456950px;}
.y143{bottom:294.452550px;}
.y2aa{bottom:295.866150px;}
.y73{bottom:296.834250px;}
.y31c{bottom:298.459650px;}
.y37a{bottom:298.622700px;}
.y175{bottom:298.780200px;}
.y356{bottom:299.362050px;}
.y43{bottom:299.438700px;}
.yfa{bottom:299.728800px;}
.y3dc{bottom:300.862800px;}
.y304{bottom:303.070650px;}
.yc6{bottom:306.089250px;}
.y9a{bottom:307.184850px;}
.y380{bottom:308.402700px;}
.y20d{bottom:309.410100px;}
.y1d7{bottom:310.505700px;}
.y1a{bottom:312.390000px;}
.y22a{bottom:313.057800px;}
.y2a9{bottom:313.866150px;}
.y72{bottom:314.834250px;}
.y2ea{bottom:315.293700px;}
.y31b{bottom:316.777950px;}
.y174{bottom:316.780200px;}
.y1a2{bottom:316.964100px;}
.y42{bottom:317.438700px;}
.y22c{bottom:317.701500px;}
.y3db{bottom:318.862800px;}
.ye9{bottom:319.146150px;}
.y1f4{bottom:320.789400px;}
.y303{bottom:321.070650px;}
.y142{bottom:321.872550px;}
.y379{bottom:323.714700px;}
.y1f9{bottom:324.608400px;}
.y99{bottom:325.184850px;}
.y22f{bottom:325.762800px;}
.y355{bottom:326.193750px;}
.y228{bottom:326.560800px;}
.y15a{bottom:327.368550px;}
.yc5{bottom:327.809100px;}
.y19b{bottom:328.723800px;}
.y22b{bottom:331.201500px;}
.y1d6{bottom:332.225550px;}
.y71{bottom:332.834250px;}
.y173{bottom:334.780200px;}
.y31a{bottom:335.096250px;}
.y41{bottom:335.438700px;}
.y3da{bottom:336.862800px;}
.ye8{bottom:337.146150px;}
.y229{bottom:338.089800px;}
.y10a{bottom:338.252550px;}
.y3a7{bottom:338.602950px;}
.y159{bottom:339.056550px;}
.y302{bottom:339.070650px;}
.y22d{bottom:339.265800px;}
.y1a1{bottom:342.692100px;}
.y19{bottom:342.897750px;}
.y98{bottom:343.184850px;}
.y152{bottom:343.316550px;}
.y354{bottom:344.193750px;}
.y1ff{bottom:346.125450px;}
.y2e9{bottom:347.609700px;}
.y3ec{bottom:347.719500px;}
.y378{bottom:349.226700px;}
.yc4{bottom:349.528950px;}
.y141{bottom:350.144550px;}
.y158{bottom:350.744550px;}
.y22e{bottom:350.794800px;}
.y70{bottom:350.834250px;}
.y172{bottom:352.780200px;}
.y319{bottom:353.414550px;}
.y40{bottom:353.438700px;}
.y3d9{bottom:354.862800px;}
.y1d5{bottom:355.625550px;}
.y3a6{bottom:356.602950px;}
.y301{bottom:357.070650px;}
.y1f3{bottom:357.785400px;}
.y150{bottom:360.536550px;}
.y18{bottom:360.897750px;}
.y97{bottom:361.184850px;}
.yfc{bottom:361.196550px;}
.y157{bottom:362.228550px;}
.y145{bottom:362.480550px;}
.y153{bottom:363.512550px;}
.y3eb{bottom:365.719500px;}
.y2a8{bottom:365.881950px;}
.y353{bottom:365.913600px;}
.y6f{bottom:368.834250px;}
.y1a0{bottom:369.908100px;}
.y171{bottom:370.780200px;}
.yc3{bottom:371.248800px;}
.y3f{bottom:371.438700px;}
.y318{bottom:371.732850px;}
.y227{bottom:371.772300px;}
.y156{bottom:372.224550px;}
.y151{bottom:372.440550px;}
.y3d8{bottom:372.862800px;}
.y377{bottom:374.318700px;}
.y3a5{bottom:374.602950px;}
.y300{bottom:375.070650px;}
.y155{bottom:375.200550px;}
.ye7{bottom:375.400650px;}
.y146{bottom:377.360550px;}
.y1d4{bottom:379.025550px;}
.y140{bottom:379.052550px;}
.y96{bottom:379.184850px;}
.y2e8{bottom:379.925700px;}
.y315{bottom:380.892000px;}
.y20c{bottom:382.873200px;}
.y17{bottom:383.149800px;}
.y154{bottom:383.708550px;}
.y3ea{bottom:383.719500px;}
.y2a7{bottom:383.881950px;}
.y14b{bottom:384.356550px;}
.y6e{bottom:386.834250px;}
.y352{bottom:387.633450px;}
.y109{bottom:388.004550px;}
.y170{bottom:388.780200px;}
.y3e{bottom:389.438700px;}
.y317{bottom:389.732850px;}
.y226{bottom:389.772300px;}
.y3d7{bottom:390.862800px;}
.y147{bottom:390.968550px;}
.y3a4{bottom:392.602950px;}
.yc2{bottom:392.968800px;}
.y2ff{bottom:393.070650px;}
.ye6{bottom:393.400650px;}
.y14f{bottom:393.920550px;}
.y1f2{bottom:395.201400px;}
.y19f{bottom:396.488100px;}
.y95{bottom:397.184850px;}
.y314{bottom:398.892000px;}
.y14a{bottom:399.668550px;}
.y376{bottom:400.046700px;}
.y16{bottom:401.149800px;}
.y2a6{bottom:401.881950px;}
.y1d3{bottom:402.425700px;}
.y148{bottom:402.656550px;}
.y14d{bottom:403.496550px;}
.y108{bottom:404.156550px;}
.y6d{bottom:404.834250px;}
.y200{bottom:406.693200px;}
.y3d{bottom:407.438700px;}
.y13f{bottom:407.540550px;}
.y225{bottom:407.772300px;}
.y316{bottom:408.051150px;}
.y3d6{bottom:408.862800px;}
.y351{bottom:409.353300px;}
.y3a3{bottom:410.602950px;}
.y2fe{bottom:411.070650px;}
.ye5{bottom:411.400650px;}
.y2e7{bottom:411.809700px;}
.y149{bottom:414.344550px;}
.yc1{bottom:414.688500px;}
.y94{bottom:415.184850px;}
.y383{bottom:415.766700px;}
.y14c{bottom:417.524550px;}
.y110{bottom:418.628550px;}
.y3e9{bottom:418.727400px;}
.y15{bottom:419.149800px;}
.y2a5{bottom:419.881950px;}
.y381{bottom:421.082700px;}
.y19e{bottom:422.420100px;}
.y6c{bottom:422.834250px;}
.y375{bottom:425.138700px;}
.y3c{bottom:425.438700px;}
.y107{bottom:425.624550px;}
.y224{bottom:425.772300px;}
.y1d2{bottom:425.825550px;}
.y3d5{bottom:426.862800px;}
.y3a2{bottom:428.602950px;}
.y2fd{bottom:429.070650px;}
.ye4{bottom:429.400650px;}
.y20b{bottom:430.501200px;}
.y350{bottom:431.073150px;}
.y15e{bottom:431.539800px;}
.y1f1{bottom:432.197400px;}
.y313{bottom:432.744450px;}
.y93{bottom:433.184850px;}
.y13e{bottom:435.608550px;}
.yc0{bottom:436.408500px;}
.y382{bottom:436.814700px;}
.y14{bottom:437.149800px;}
.y2a4{bottom:437.881950px;}
.y111{bottom:438.608550px;}
.y6b{bottom:440.834250px;}
.y3b{bottom:443.438700px;}
.y223{bottom:443.772300px;}
.y2e4{bottom:444.113700px;}
.y14e{bottom:444.524550px;}
.y3d4{bottom:444.862800px;}
.y3a1{bottom:446.602950px;}
.y2fc{bottom:447.070650px;}
.y112{bottom:447.116550px;}
.ye3{bottom:447.400650px;}
.y106{bottom:447.524550px;}
.y388{bottom:447.662700px;}
.y1d1{bottom:449.225550px;}
.y19d{bottom:449.420100px;}
.y312{bottom:450.744450px;}
.y92{bottom:451.184850px;}
.y34f{bottom:452.793150px;}
.y203{bottom:454.321200px;}
.y13{bottom:455.149800px;}
.y10f{bottom:455.624550px;}
.y2a3{bottom:455.881950px;}
.ybf{bottom:458.128350px;}
.y6a{bottom:458.834250px;}
.y113{bottom:459.452550px;}
.y3a{bottom:461.438700px;}
.y222{bottom:461.772300px;}
.y3d3{bottom:462.862800px;}
.y3a0{bottom:464.602950px;}
.y13a{bottom:464.732550px;}
.y2fb{bottom:465.070650px;}
.ye2{bottom:465.400650px;}
.y3e8{bottom:468.291150px;}
.y105{bottom:468.572550px;}
.y311{bottom:468.744450px;}
.y91{bottom:469.184850px;}
.y1f0{bottom:469.193400px;}
.y16b{bottom:470.047050px;}
.y1d0{bottom:472.625550px;}
.y12{bottom:473.149800px;}
.y2a2{bottom:473.881950px;}
.y34e{bottom:474.513000px;}
.y19c{bottom:476.000100px;}
.y69{bottom:476.834250px;}
.y201{bottom:478.129200px;}
.y2dd{bottom:479.626500px;}
.y221{bottom:479.772300px;}
.ybe{bottom:479.848200px;}
.y3d2{bottom:480.862800px;}
.y39f{bottom:482.602950px;}
.y2fa{bottom:483.070650px;}
.ye1{bottom:483.400650px;}
.y114{bottom:484.112550px;}
.y168{bottom:484.294050px;}
.y3e7{bottom:486.291150px;}
.y90{bottom:487.184850px;}
.y104{bottom:490.256550px;}
.y2a1{bottom:491.881950px;}
.y10e{bottom:493.460550px;}
.y68{bottom:494.834250px;}
.y11{bottom:495.401700px;}
.y1cf{bottom:496.025550px;}
.y34d{bottom:496.413000px;}
.y2dc{bottom:497.626500px;}
.y220{bottom:497.772300px;}
.y169{bottom:498.118050px;}
.y3d1{bottom:498.862800px;}
.y39{bottom:498.933000px;}
.y374{bottom:499.771050px;}
.y39e{bottom:500.602950px;}
.y12b{bottom:500.748750px;}
.y2f9{bottom:501.070650px;}
.ye0{bottom:501.400650px;}
.y204{bottom:501.517200px;}
.ybd{bottom:501.568050px;}
.y340{bottom:502.302150px;}
.y198{bottom:502.574850px;}
.y115{bottom:504.524550px;}
.y8f{bottom:505.184850px;}
.y1ed{bottom:506.587050px;}
.y2a0{bottom:509.881950px;}
.y2c6{bottom:510.736350px;}
.y103{bottom:511.520550px;}
.y15f{bottom:511.930050px;}
.y67{bottom:512.834250px;}
.y10{bottom:513.401700px;}
.y2db{bottom:515.626500px;}
.y21f{bottom:515.772300px;}
.y3d0{bottom:516.862800px;}
.y38{bottom:516.933000px;}
.y373{bottom:517.771050px;}
.y34c{bottom:518.313000px;}
.y39d{bottom:518.602950px;}
.y12a{bottom:518.748750px;}
.y2f8{bottom:519.070650px;}
.y10d{bottom:519.392550px;}
.ydf{bottom:519.400650px;}
.y1ce{bottom:519.425700px;}
.y33f{bottom:520.302150px;}
.y3e6{bottom:521.299050px;}
.y8e{bottom:523.184850px;}
.ybc{bottom:523.287900px;}
.y29f{bottom:527.881950px;}
.y160{bottom:530.422050px;}
.y66{bottom:530.834250px;}
.yf{bottom:531.401700px;}
.y11b{bottom:531.740550px;}
.y102{bottom:532.988550px;}
.y2da{bottom:533.626500px;}
.y21e{bottom:533.772300px;}
.y3cf{bottom:534.862800px;}
.y37{bottom:534.933000px;}
.y372{bottom:535.771050px;}
.y39c{bottom:536.602950px;}
.y129{bottom:536.748750px;}
.y2f7{bottom:537.070650px;}
.yde{bottom:537.400650px;}
.y2c5{bottom:537.568050px;}
.y33e{bottom:538.302150px;}
.y34b{bottom:540.213000px;}
.y10c{bottom:540.656550px;}
.y8d{bottom:541.184850px;}
.y116{bottom:542.576550px;}
.y167{bottom:542.758050px;}
.y1cd{bottom:542.825550px;}
.y202{bottom:544.033200px;}
.y1ea{bottom:544.871850px;}
.ybb{bottom:545.007900px;}
.y119{bottom:545.768550px;}
.y29e{bottom:545.881950px;}
.y181{bottom:547.547700px;}
.y11a{bottom:547.892550px;}
.y118{bottom:548.528550px;}
.y65{bottom:548.834250px;}
.ye{bottom:549.401700px;}
.y2d9{bottom:551.626500px;}
.y21d{bottom:551.772300px;}
.y29b{bottom:552.484500px;}
.y3ce{bottom:552.862800px;}
.y36{bottom:552.933000px;}
.y117{bottom:553.208550px;}
.y101{bottom:554.252550px;}
.y39b{bottom:554.602950px;}
.y128{bottom:554.748750px;}
.y2f6{bottom:555.070650px;}
.ydd{bottom:555.400650px;}
.y33d{bottom:556.302300px;}
.y16f{bottom:557.431050px;}
.y20a{bottom:559.129200px;}
.y8c{bottom:559.184850px;}
.y2c4{bottom:559.287900px;}
.y1eb{bottom:560.603850px;}
.y1e2{bottom:560.615850px;}
.y298{bottom:561.480450px;}
.y29d{bottom:561.484200px;}
.y34a{bottom:562.113000px;}
.y371{bottom:562.602750px;}
.y1c6{bottom:564.545400px;}
.y180{bottom:565.547700px;}
.yba{bottom:566.727750px;}
.y64{bottom:566.834250px;}
.yd{bottom:567.401700px;}
.yfe{bottom:568.700550px;}
.y2d8{bottom:569.626500px;}
.y21c{bottom:569.772300px;}
.y3cd{bottom:570.862800px;}
.y39a{bottom:572.602950px;}
.y127{bottom:572.748750px;}
.y2f5{bottom:573.070650px;}
.y1cc{bottom:573.545400px;}
.y297{bottom:574.381950px;}
.y100{bottom:575.720550px;}
.y1e9{bottom:576.971850px;}
.y33c{bottom:577.181100px;}
.y8b{bottom:577.184850px;}
.y1b6{bottom:577.265400px;}
.y16e{bottom:578.047050px;}
.y35{bottom:579.764700px;}
.y2c3{bottom:581.007900px;}
.y29a{bottom:581.872950px;}
.y1c5{bottom:582.545400px;}
.y17f{bottom:583.547700px;}
.y349{bottom:584.013000px;}
.y370{bottom:584.322600px;}
.y1be{bottom:584.405400px;}
.y63{bottom:584.834250px;}
.y21b{bottom:587.772300px;}
.yb9{bottom:588.447600px;}
.y3cc{bottom:588.862800px;}
.yc{bottom:589.653750px;}
.ydc{bottom:590.408550px;}
.y399{bottom:590.602950px;}
.y10b{bottom:590.612550px;}
.y126{bottom:590.748750px;}
.y1e8{bottom:590.999850px;}
.y2f4{bottom:591.070650px;}
.y1cb{bottom:591.545400px;}
.y299{bottom:594.577950px;}
.y33b{bottom:595.181100px;}
.y8a{bottom:595.184850px;}
.y1b5{bottom:595.265400px;}
.yff{bottom:597.188550px;}
.y16a{bottom:597.902550px;}
.y16d{bottom:599.095050px;}
.y1c4{bottom:600.545400px;}
.y34{bottom:601.484550px;}
.y1bd{bottom:602.405400px;}
.y2c2{bottom:602.727750px;}
.y62{bottom:602.834250px;}
.y348{bottom:605.732850px;}
.y21a{bottom:605.772300px;}
.y36f{bottom:606.042450px;}
.y3cb{bottom:606.862800px;}
.y2f3{bottom:609.070650px;}
.y1ca{bottom:609.545400px;}
.y192{bottom:610.158000px;}
.yb8{bottom:610.167450px;}
.ydb{bottom:610.208550px;}
.y296{bottom:611.881950px;}
.y209{bottom:612.913200px;}
.y89{bottom:613.184850px;}
.y1b4{bottom:613.265400px;}
.y33a{bottom:613.499400px;}
.y344{bottom:616.592850px;}
.y1c3{bottom:618.545400px;}
.yfd{bottom:618.656550px;}
.y16c{bottom:619.711050px;}
.y1bc{bottom:620.405400px;}
.y61{bottom:620.834250px;}
.y2d7{bottom:621.642300px;}
.y1b8{bottom:622.265400px;}
.y33{bottom:623.204400px;}
.y347{bottom:623.732850px;}
.y219{bottom:623.772300px;}
.y2c1{bottom:624.447600px;}
.y3ca{bottom:624.862800px;}
.y346{bottom:625.592850px;}
.y12c{bottom:626.067300px;}
.y2f2{bottom:627.070650px;}
.y28f{bottom:627.271500px;}
.y1c9{bottom:627.545400px;}
.y36e{bottom:627.762300px;}
.y1e7{bottom:630.335850px;}
.y88{bottom:631.184850px;}
.y1b3{bottom:631.265400px;}
.y339{bottom:631.817850px;}
.yb7{bottom:631.887300px;}
.y343{bottom:634.592850px;}
.y292{bottom:636.267900px;}
.y1c2{bottom:636.545400px;}
.y1ec{bottom:636.703350px;}
.yb{bottom:637.417650px;}
.y1bb{bottom:638.405400px;}
.y60{bottom:638.834250px;}
.y2d6{bottom:639.642300px;}
.y1ac{bottom:640.265400px;}
.y166{bottom:640.342050px;}
.y218{bottom:641.772300px;}
.y398{bottom:642.618600px;}
.y18b{bottom:642.671250px;}
.y3c9{bottom:642.862800px;}
.y191{bottom:643.535250px;}
.y295{bottom:644.334150px;}
.y32{bottom:644.924400px;}
.y2f1{bottom:645.070650px;}
.y345{bottom:645.452700px;}
.y1c8{bottom:645.545400px;}
.y2c0{bottom:646.167450px;}
.y87{bottom:649.184850px;}
.y1b2{bottom:649.265400px;}
.y28e{bottom:649.381950px;}
.y36d{bottom:649.482150px;}
.y338{bottom:650.136000px;}
.ya{bottom:652.417650px;}
.yb6{bottom:653.607150px;}
.y1c1{bottom:654.545400px;}
.y1ba{bottom:656.405400px;}
.y293{bottom:656.662350px;}
.y5f{bottom:656.834250px;}
.y2d5{bottom:657.642300px;}
.y1ab{bottom:658.265400px;}
.yda{bottom:659.772300px;}
.y397{bottom:660.618600px;}
.y3c8{bottom:660.862800px;}
.y165{bottom:660.970050px;}
.y291{bottom:661.302900px;}
.yf9{bottom:661.756500px;}
.y2f0{bottom:663.070650px;}
.y1c7{bottom:663.545400px;}
.y136{bottom:664.775250px;}
.y31{bottom:666.644100px;}
.y208{bottom:666.913200px;}
.y86{bottom:667.184850px;}
.y1b1{bottom:667.265400px;}
.y2bf{bottom:667.887300px;}
.y337{bottom:668.454300px;}
.y294{bottom:669.367350px;}
.y1e6{bottom:669.671850px;}
.y18a{bottom:670.307250px;}
.y36c{bottom:671.202000px;}
.y1c0{bottom:672.545400px;}
.y1b9{bottom:674.405400px;}
.y5e{bottom:674.834250px;}
.yb5{bottom:675.327000px;}
.y2d4{bottom:675.642300px;}
.y342{bottom:676.098750px;}
.y1b7{bottom:676.265400px;}
.yd9{bottom:677.772300px;}
.y396{bottom:678.618600px;}
.y3c7{bottom:678.862800px;}
.y28b{bottom:679.452000px;}
.yf8{bottom:679.756500px;}
.y285{bottom:679.878000px;}
.y9{bottom:680.173500px;}
.y2ef{bottom:681.070650px;}
.y164{bottom:682.234050px;}
.y28a{bottom:683.812200px;}
.y288{bottom:684.235500px;}
.y85{bottom:685.184850px;}
.y1b0{bottom:685.265400px;}
.y336{bottom:686.772600px;}
.y137{bottom:687.311250px;}
.y30{bottom:688.364100px;}
.y284{bottom:688.381950px;}
.y28d{bottom:688.452750px;}
.y289{bottom:688.878000px;}
.y2be{bottom:689.607150px;}
.y5d{bottom:692.834250px;}
.y36b{bottom:692.922000px;}
.y2d3{bottom:693.642300px;}
.y341{bottom:694.098750px;}
.y1bf{bottom:694.265400px;}
.yd8{bottom:695.772300px;}
.y395{bottom:696.618600px;}
.y3c6{bottom:696.862800px;}
.y287{bottom:696.940500px;}
.yb4{bottom:697.047000px;}
.yf7{bottom:697.756500px;}
.y189{bottom:698.375250px;}
.y194{bottom:699.016050px;}
.y3b3{bottom:699.070650px;}
.y190{bottom:701.783250px;}
.y163{bottom:702.850050px;}
.y84{bottom:703.184850px;}
.y1af{bottom:703.265400px;}
.y335{bottom:705.090900px;}
.y1e5{bottom:709.427850px;}
.y2f{bottom:710.083950px;}
.y5c{bottom:710.834250px;}
.y2bd{bottom:711.327000px;}
.y12d{bottom:711.347250px;}
.y2d2{bottom:711.642300px;}
.yd7{bottom:713.772300px;}
.y394{bottom:714.618600px;}
.y36a{bottom:714.641850px;}
.y3c5{bottom:714.862800px;}
.yf6{bottom:715.756500px;}
.y1ae{bottom:715.985250px;}
.y2ee{bottom:716.078550px;}
.yb3{bottom:718.766850px;}
.y27b{bottom:719.608950px;}
.y277{bottom:719.622450px;}
.y26d{bottom:721.018650px;}
.y27f{bottom:721.034400px;}
.y207{bottom:721.549200px;}
.y334{bottom:723.409200px;}
.y162{bottom:723.466050px;}
.y274{bottom:723.699450px;}
.y269{bottom:724.412400px;}
.y8{bottom:724.937250px;}
.y188{bottom:725.159250px;}
.y27d{bottom:725.508450px;}
.y279{bottom:725.521950px;}
.y267{bottom:726.092400px;}
.y283{bottom:727.311150px;}
.y5b{bottom:728.834250px;}
.y2d1{bottom:729.642300px;}
.y26e{bottom:730.437150px;}
.yd6{bottom:731.772300px;}
.y2e{bottom:731.803800px;}
.y393{bottom:732.618600px;}
.y275{bottom:732.703950px;}
.y3c4{bottom:732.862800px;}
.y271{bottom:732.915150px;}
.y266{bottom:732.936150px;}
.y2bc{bottom:733.047000px;}
.yf5{bottom:733.756650px;}
.y1ad{bottom:733.985250px;}
.y3b2{bottom:734.078550px;}
.y268{bottom:736.307400px;}
.y272{bottom:736.311150px;}
.y369{bottom:736.361700px;}
.y27c{bottom:738.211950px;}
.y278{bottom:738.225450px;}
.yb2{bottom:740.486700px;}
.y27e{bottom:741.467400px;}
.y333{bottom:741.727500px;}
.y26b{bottom:742.354650px;}
.y26f{bottom:742.669650px;}
.y280{bottom:742.695900px;}
.y161{bottom:744.298050px;}
.y281{bottom:744.842400px;}
.y282{bottom:746.061150px;}
.y26a{bottom:746.072400px;}
.y5a{bottom:746.834250px;}
.y12e{bottom:747.275250px;}
.y273{bottom:747.607950px;}
.y2d0{bottom:747.642300px;}
.y1e4{bottom:748.547850px;}
.yd5{bottom:749.772300px;}
.y3c3{bottom:750.862800px;}
.y26c{bottom:750.880650px;}
.y27a{bottom:751.158450px;}
.y276{bottom:751.171950px;}
.y7{bottom:751.441200px;}
.yf4{bottom:751.756650px;}
.y270{bottom:752.088150px;}
.y2d{bottom:753.523650px;}
.y187{bottom:753.647250px;}
.y2bb{bottom:754.766850px;}
.y83{bottom:755.200650px;}
.y368{bottom:758.081550px;}
.y332{bottom:760.045800px;}
.yb1{bottom:762.206550px;}
.y2b{bottom:762.523650px;}
.y18f{bottom:764.075250px;}
.y1aa{bottom:764.631300px;}
.y59{bottom:764.834250px;}
.y2cf{bottom:765.642300px;}
.y135{bottom:767.459250px;}
.yd4{bottom:767.772300px;}
.y3c2{bottom:768.862800px;}
.y2a{bottom:771.523650px;}
.y82{bottom:773.200650px;}
.y206{bottom:775.549200px;}
.y2ba{bottom:776.486700px;}
.y331{bottom:778.364100px;}
.y265{bottom:779.657550px;}
.y367{bottom:779.801400px;}
.y186{bottom:782.135250px;}
.y58{bottom:782.834250px;}
.y134{bottom:783.407250px;}
.y2ce{bottom:783.642300px;}
.yb0{bottom:783.926400px;}
.y392{bottom:784.634400px;}
.y138{bottom:785.415600px;}
.yd3{bottom:785.772300px;}
.y3c1{bottom:786.862800px;}
.y1e3{bottom:788.303850px;}
.y6{bottom:789.239850px;}
.y2c{bottom:789.523650px;}
.y81{bottom:791.200650px;}
.y330{bottom:796.682400px;}
.y264{bottom:797.657550px;}
.y2b9{bottom:798.206550px;}
.y57{bottom:800.834250px;}
.y2cd{bottom:801.642300px;}
.y18e{bottom:801.707250px;}
.y366{bottom:801.926400px;}
.y391{bottom:802.634400px;}
.yd2{bottom:803.772300px;}
.y3c0{bottom:804.862800px;}
.yaf{bottom:805.646250px;}
.y133{bottom:808.499250px;}
.y185{bottom:810.203250px;}
.y262{bottom:810.910500px;}
.y5{bottom:814.439700px;}
.y32f{bottom:815.000700px;}
.y261{bottom:815.270400px;}
.y56{bottom:818.834250px;}
.y2cc{bottom:819.642300px;}
.y25e{bottom:819.909450px;}
.y2b8{bottom:819.926400px;}
.y29{bottom:820.169700px;}
.y390{bottom:820.634400px;}
.yd1{bottom:821.772300px;}
.y3bf{bottom:822.862800px;}
.y365{bottom:823.646250px;}
.y32c{bottom:824.159850px;}
.y80{bottom:826.208550px;}
.yae{bottom:827.366250px;}
.y205{bottom:829.765200px;}
.y32e{bottom:833.000700px;}
.y132{bottom:833.591250px;}
.y25d{bottom:833.657550px;}
.y363{bottom:834.506250px;}
.yaa{bottom:836.366250px;}
.y55{bottom:836.834250px;}
.y184{bottom:837.419250px;}
.y2cb{bottom:837.642300px;}
.y38f{bottom:838.634400px;}
.yd0{bottom:839.772300px;}
.y3be{bottom:840.862800px;}
.y2b7{bottom:841.646250px;}
.y195{bottom:842.092050px;}
.y32b{bottom:842.159850px;}
.y260{bottom:842.643900px;}
.y364{bottom:843.506250px;}
.yad{bottom:845.366250px;}
.y25f{bottom:847.284450px;}
.y32d{bottom:851.319000px;}
.y362{bottom:852.506250px;}
.y18d{bottom:854.003250px;}
.ya8{bottom:854.366250px;}
.y54{bottom:854.834250px;}
.y2ca{bottom:855.642300px;}
.y38e{bottom:856.634400px;}
.y28{bottom:857.772300px;}
.y131{bottom:858.683250px;}
.y3bd{bottom:858.862800px;}
.yac{bottom:863.366250px;}
.y183{bottom:866.327250px;}
.y254{bottom:867.177000px;}
.y25c{bottom:871.531650px;}
.ya9{bottom:872.366250px;}
.y2c9{bottom:873.642300px;}
.y38d{bottom:874.634400px;}
.y27{bottom:875.772300px;}
.y32a{bottom:876.012300px;}
.y256{bottom:876.177150px;}
.y3bc{bottom:876.862800px;}
.yab{bottom:881.366250px;}
.y130{bottom:883.979250px;}
.y253{bottom:885.036600px;}
.y258{bottom:889.677150px;}
.y53{bottom:889.842150px;}
.y2c8{bottom:891.642300px;}
.y182{bottom:893.543250px;}
.y26{bottom:893.772300px;}
.y329{bottom:894.012300px;}
.y3bb{bottom:894.862800px;}
.y257{bottom:896.614800px;}
.y259{bottom:897.739650px;}
.y25b{bottom:898.905150px;}
.y18c{bottom:905.447250px;}
.y12f{bottom:909.275250px;}
.y52{bottom:909.642150px;}
.y2c7{bottom:909.642300px;}
.y196{bottom:910.552050px;}
.y25a{bottom:911.610150px;}
.y25{bottom:911.772300px;}
.ya7{bottom:912.012300px;}
.y3ba{bottom:912.862800px;}
.y1{bottom:915.399750px;}
.y23{bottom:943.435350px;}
.y22{bottom:960.287250px;}
.y51{bottom:964.299450px;}
.y24{bottom:965.632950px;}
.y50{bottom:965.770050px;}
.h28{height:27.993164px;}
.h2a{height:28.382812px;}
.h1c{height:28.500000px;}
.h2{height:29.007000px;}
.h3{height:29.106000px;}
.h1b{height:29.190000px;}
.h17{height:29.904000px;}
.hf{height:30.030000px;}
.he{height:32.340000px;}
.hd{height:33.947754px;}
.h6{height:34.176000px;}
.h8{height:34.368000px;}
.h12{height:34.650000px;}
.h7{height:35.160000px;}
.h26{height:38.448000px;}
.h11{height:38.556000px;}
.h23{height:38.640000px;}
.ha{height:38.664000px;}
.h9{height:39.555000px;}
.h1f{height:39.990234px;}
.h1d{height:41.700000px;}
.h19{height:42.720000px;}
.hc{height:42.960000px;}
.h3f{height:43.359375px;}
.h1e{height:44.377800px;}
.h22{height:45.001500px;}
.hb{height:48.345000px;}
.h31{height:49.680000px;}
.h5{height:51.606060px;}
.h38{height:53.499000px;}
.h3a{height:54.000000px;}
.h1a{height:55.200000px;}
.h2b{height:55.500000px;}
.h25{height:55.501500px;}
.h36{height:57.184200px;}
.h39{height:57.504413px;}
.h16{height:59.676600px;}
.h35{height:60.060000px;}
.h21{height:60.480000px;}
.h4{height:61.530000px;}
.h3b{height:63.151200px;}
.h33{height:64.098000px;}
.h20{height:64.847400px;}
.h29{height:65.205600px;}
.h13{height:69.888000px;}
.h2f{height:72.744000px;}
.h37{height:73.770000px;}
.h10{height:74.556000px;}
.h3e{height:74.664000px;}
.h2e{height:76.860000px;}
.h34{height:80.700000px;}
.h14{height:84.336000px;}
.h18{height:88.860000px;}
.h30{height:89.340000px;}
.h2d{height:90.345000px;}
.h3c{height:91.254000px;}
.h3d{height:94.551000px;}
.h2c{height:97.952400px;}
.h27{height:98.220000px;}
.h24{height:107.110080px;}
.h32{height:109.296000px;}
.h15{height:312.519000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w7{width:34.500000px;}
.wa{width:42.000000px;}
.w3{width:52.500000px;}
.w4{width:69.001500px;}
.w9{width:92.998500px;}
.w8{width:103.500000px;}
.w6{width:198.000000px;}
.w5{width:336.000000px;}
.w2{width:544.251000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x87{left:2.532000px;}
.xb6{left:5.719500px;}
.x82{left:9.703350px;}
.x83{left:16.734600px;}
.xa3{left:20.859900px;}
.xbe{left:22.828200px;}
.x88{left:28.266450px;}
.x84{left:33.890850px;}
.xb3{left:45.703500px;}
.x9a{left:53.203500px;}
.x2{left:78.661350px;}
.x76{left:83.201550px;}
.x14{left:84.614250px;}
.x1f{left:87.516600px;}
.x77{left:88.937550px;}
.x36{left:90.199650px;}
.x35{left:92.700150px;}
.x15{left:95.669250px;}
.xc5{left:96.816300px;}
.xd2{left:99.921150px;}
.xc{left:101.177400px;}
.xce{left:102.301350px;}
.xc8{left:103.952700px;}
.x5a{left:105.835800px;}
.x56{left:106.843350px;}
.x4c{left:108.609750px;}
.x71{left:109.621500px;}
.x6e{left:111.541350px;}
.xd1{left:112.677150px;}
.x4d{left:114.357750px;}
.x72{left:115.381500px;}
.x6f{left:117.301350px;}
.x32{left:119.396850px;}
.x59{left:123.211800px;}
.x9{left:124.846650px;}
.x73{left:126.901500px;}
.x17{left:129.240300px;}
.x16{left:130.485900px;}
.x21{left:131.772600px;}
.x20{left:133.416600px;}
.x33{left:136.676850px;}
.x37{left:138.571650px;}
.x38{left:140.395650px;}
.x34{left:142.400850px;}
.x3{left:145.332900px;}
.xc0{left:149.633700px;}
.xb1{left:154.180950px;}
.xb2{left:159.714450px;}
.x5b{left:161.551800px;}
.x55{left:165.947850px;}
.x85{left:172.126800px;}
.x30{left:173.472600px;}
.x22{left:175.308600px;}
.x1e{left:180.708600px;}
.x39{left:182.059650px;}
.x64{left:183.411000px;}
.x49{left:185.671650px;}
.xac{left:187.283550px;}
.x65{left:188.500500px;}
.x4{left:192.776850px;}
.x57{left:193.915350px;}
.x93{left:195.162450px;}
.x1d{left:198.360750px;}
.xa4{left:200.693550px;}
.xcb{left:201.874500px;}
.x86{left:203.673000px;}
.xa5{left:207.306750px;}
.xb4{left:208.602750px;}
.x4a{left:212.385750px;}
.xc9{left:214.052400px;}
.x2f{left:215.136600px;}
.xa8{left:216.863250px;}
.x75{left:219.401550px;}
.x58{left:221.528250px;}
.x3a{left:222.883650px;}
.xd0{left:224.533350px;}
.x48{left:225.847650px;}
.x97{left:231.724950px;}
.xad{left:233.412300px;}
.x19{left:243.404700px;}
.x89{left:245.720700px;}
.x67{left:247.916550px;}
.x68{left:251.973450px;}
.x99{left:254.318550px;}
.x2e{left:256.380600px;}
.x69{left:257.440500px;}
.x79{left:260.318700px;}
.x90{left:261.541950px;}
.x3b{left:263.491650px;}
.x47{left:265.603650px;}
.x95{left:267.584250px;}
.x96{left:268.707750px;}
.x18{left:269.763300px;}
.x9d{left:271.240500px;}
.xaf{left:273.537450px;}
.x5d{left:274.785000px;}
.x7c{left:277.524000px;}
.x94{left:284.062800px;}
.x80{left:286.053000px;}
.x5{left:287.406450px;}
.x8b{left:289.558350px;}
.x8d{left:290.734650px;}
.x8a{left:294.298350px;}
.x8c{left:295.470150px;}
.x2d{left:298.044600px;}
.x8e{left:302.735850px;}
.x1{left:303.902400px;}
.x46{left:306.211650px;}
.x8f{left:309.483600px;}
.x7b{left:311.271750px;}
.x66{left:312.757950px;}
.x4f{left:323.273850px;}
.xc6{left:324.743850px;}
.xc3{left:326.505600px;}
.xcc{left:328.869300px;}
.x6a{left:330.275850px;}
.x5c{left:332.035800px;}
.x6b{left:334.299000px;}
.x6{left:335.342100px;}
.x2c{left:339.720600px;}
.xc2{left:341.036850px;}
.x81{left:342.303000px;}
.x45{left:345.331650px;}
.x54{left:346.553850px;}
.xb5{left:351.721500px;}
.x7d{left:356.505000px;}
.x4b{left:358.341750px;}
.x7e{left:359.413500px;}
.xd{left:363.263100px;}
.xb7{left:364.607250px;}
.x74{left:365.677500px;}
.xcf{left:367.177350px;}
.x31{left:369.812850px;}
.xba{left:371.362950px;}
.xae{left:373.007700px;}
.x2b{left:374.376600px;}
.xb9{left:376.095000px;}
.xb8{left:377.691000px;}
.xa6{left:379.806750px;}
.x44{left:383.179650px;}
.x50{left:384.401850px;}
.xab{left:386.742750px;}
.xaa{left:387.771750px;}
.x23{left:389.832600px;}
.xa9{left:391.478250px;}
.x53{left:392.993850px;}
.x70{left:399.697350px;}
.xa{left:401.057100px;}
.x51{left:403.961850px;}
.x7a{left:405.439200px;}
.x52{left:408.209850px;}
.x9b{left:413.037300px;}
.x2a{left:414.768600px;}
.x7f{left:416.323500px;}
.x6d{left:417.864750px;}
.x43{left:419.539650px;}
.x9e{left:422.118000px;}
.xf{left:424.729950px;}
.x1b{left:426.409200px;}
.x9c{left:427.953000px;}
.x7{left:429.923850px;}
.x6c{left:431.344200px;}
.xe{left:436.717800px;}
.x1a{left:439.286250px;}
.xa7{left:444.681750px;}
.xc4{left:449.933850px;}
.xcd{left:451.247100px;}
.x1c{left:452.968350px;}
.x91{left:455.424450px;}
.x10{left:456.933750px;}
.x92{left:458.332950px;}
.x29{left:459.420600px;}
.x3c{left:463.759650px;}
.x42{left:465.247650px;}
.xb{left:466.507800px;}
.x24{left:473.172600px;}
.x5e{left:475.808100px;}
.xb0{left:480.199800px;}
.x8{left:481.687200px;}
.xbf{left:483.313950px;}
.x5f{left:486.398850px;}
.x60{left:487.735350px;}
.x61{left:490.104300px;}
.x98{left:492.068700px;}
.xbb{left:498.505200px;}
.xbc{left:500.095200px;}
.xbd{left:501.218700px;}
.x28{left:502.788600px;}
.xc1{left:505.921050px;}
.x3d{left:507.979650px;}
.xa2{left:510.774000px;}
.x41{left:511.807650px;}
.xc7{left:512.984550px;}
.x4e{left:514.913850px;}
.x78{left:524.585550px;}
.x9f{left:529.715850px;}
.xa0{left:532.618350px;}
.xa1{left:533.699850px;}
.x3e{left:540.715650px;}
.x27{left:545.736600px;}
.x11{left:547.529700px;}
.x13{left:549.703200px;}
.x12{left:554.880450px;}
.x40{left:560.071650px;}
.x63{left:568.469100px;}
.x62{left:572.012700px;}
.xca{left:576.931500px;}
.x26{left:589.104600px;}
.x3f{left:591.739650px;}
.x25{left:596.064600px;}
@media print{
.v8{vertical-align:-61.952000pt;}
.v7{vertical-align:-36.266667pt;}
.v19{vertical-align:-34.666667pt;}
.v15{vertical-align:-33.488000pt;}
.v10{vertical-align:-28.666667pt;}
.vc{vertical-align:-18.516267pt;}
.v1a{vertical-align:-14.736533pt;}
.v6{vertical-align:-7.552000pt;}
.v2{vertical-align:-4.741333pt;}
.v4{vertical-align:-3.797333pt;}
.v1c{vertical-align:-1.763733pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:1.260267pt;}
.v18{vertical-align:4.320000pt;}
.v9{vertical-align:8.320000pt;}
.v5{vertical-align:10.581333pt;}
.v17{vertical-align:12.816000pt;}
.v1b{vertical-align:16.506667pt;}
.v11{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.v12{vertical-align:23.784533pt;}
.v1d{vertical-align:25.885867pt;}
.ve{vertical-align:27.178667pt;}
.v13{vertical-align:30.314667pt;}
.v3{vertical-align:32.000000pt;}
.vb{vertical-align:41.013333pt;}
.v14{vertical-align:42.333333pt;}
.va{vertical-align:44.586667pt;}
.v1e{vertical-align:45.858667pt;}
.vf{vertical-align:49.333333pt;}
.v16{vertical-align:52.992000pt;}
.ls82{letter-spacing:-13.333333pt;}
.ls9{letter-spacing:-5.280000pt;}
.ls8a{letter-spacing:-4.896000pt;}
.ls8d{letter-spacing:-4.704000pt;}
.ls41{letter-spacing:-4.416000pt;}
.ls23{letter-spacing:-4.181333pt;}
.ls8e{letter-spacing:-4.138667pt;}
.ls45{letter-spacing:-4.053333pt;}
.ls39{letter-spacing:-3.925333pt;}
.ls38{letter-spacing:-3.370667pt;}
.ls3b{letter-spacing:-3.114667pt;}
.ls42{letter-spacing:-2.304000pt;}
.ls3a{letter-spacing:-2.048000pt;}
.lse{letter-spacing:-1.968000pt;}
.ls17{letter-spacing:-1.872000pt;}
.ls2e{letter-spacing:-1.749333pt;}
.ls18{letter-spacing:-1.536000pt;}
.ls8b{letter-spacing:-1.392000pt;}
.ls1b{letter-spacing:-1.248000pt;}
.ls15{letter-spacing:-1.200000pt;}
.ls37{letter-spacing:-1.152000pt;}
.ls35{letter-spacing:-1.109333pt;}
.ls13{letter-spacing:-1.104000pt;}
.ls1c{letter-spacing:-0.960000pt;}
.ls3{letter-spacing:-0.938667pt;}
.ls21{letter-spacing:-0.912000pt;}
.ls2c{letter-spacing:-0.896000pt;}
.ls8f{letter-spacing:-0.880000pt;}
.ls36{letter-spacing:-0.853333pt;}
.ls2d{letter-spacing:-0.810667pt;}
.ls43{letter-spacing:-0.768000pt;}
.lsf{letter-spacing:-0.746667pt;}
.ls90{letter-spacing:-0.693333pt;}
.ls32{letter-spacing:-0.682667pt;}
.ls8c{letter-spacing:-0.680000pt;}
.ls16{letter-spacing:-0.672000pt;}
.ls85{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.586667pt;}
.lsd{letter-spacing:-0.576000pt;}
.ls4d{letter-spacing:-0.560000pt;}
.ls2f{letter-spacing:-0.554667pt;}
.ls2{letter-spacing:-0.512000pt;}
.ls1a{letter-spacing:-0.480000pt;}
.ls27{letter-spacing:-0.469333pt;}
.ls5{letter-spacing:-0.448000pt;}
.ls7{letter-spacing:-0.440000pt;}
.lsb{letter-spacing:-0.432000pt;}
.ls47{letter-spacing:-0.426667pt;}
.ls8{letter-spacing:-0.384000pt;}
.ls30{letter-spacing:-0.341333pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls44{letter-spacing:-0.280000pt;}
.ls89{letter-spacing:-0.266667pt;}
.ls33{letter-spacing:-0.256000pt;}
.ls22{letter-spacing:-0.240000pt;}
.ls2b{letter-spacing:-0.213333pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls28{letter-spacing:-0.170667pt;}
.ls31{letter-spacing:-0.128000pt;}
.ls25{letter-spacing:-0.085333pt;}
.ls26{letter-spacing:-0.042667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls34{letter-spacing:0.042667pt;}
.ls1e{letter-spacing:0.085333pt;}
.ls93{letter-spacing:0.096000pt;}
.ls1d{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.144000pt;}
.ls86{letter-spacing:0.170667pt;}
.ls0{letter-spacing:0.176000pt;}
.ls20{letter-spacing:0.213333pt;}
.ls14{letter-spacing:0.240000pt;}
.ls1f{letter-spacing:0.256000pt;}
.ls46{letter-spacing:0.266667pt;}
.ls3c{letter-spacing:0.341333pt;}
.ls29{letter-spacing:0.384000pt;}
.ls24{letter-spacing:0.426667pt;}
.lsa{letter-spacing:0.480000pt;}
.ls11{letter-spacing:0.533333pt;}
.ls87{letter-spacing:0.597333pt;}
.ls88{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.800000pt;}
.ls91{letter-spacing:0.840000pt;}
.ls2a{letter-spacing:0.853333pt;}
.ls10{letter-spacing:1.066667pt;}
.ls6f{letter-spacing:1.386667pt;}
.ls4f{letter-spacing:2.688000pt;}
.ls6e{letter-spacing:5.120000pt;}
.ls77{letter-spacing:5.899733pt;}
.ls76{letter-spacing:6.833600pt;}
.ls70{letter-spacing:7.666667pt;}
.ls72{letter-spacing:10.260267pt;}
.ls6d{letter-spacing:10.400000pt;}
.ls5f{letter-spacing:10.658667pt;}
.ls73{letter-spacing:11.360000pt;}
.ls69{letter-spacing:14.400000pt;}
.ls53{letter-spacing:19.946667pt;}
.ls56{letter-spacing:20.586667pt;}
.ls51{letter-spacing:21.386667pt;}
.ls55{letter-spacing:23.946667pt;}
.ls74{letter-spacing:27.426667pt;}
.ls79{letter-spacing:30.240000pt;}
.ls92{letter-spacing:35.750400pt;}
.ls80{letter-spacing:47.306667pt;}
.ls84{letter-spacing:50.613333pt;}
.ls4b{letter-spacing:53.600000pt;}
.ls7b{letter-spacing:56.480000pt;}
.ls4a{letter-spacing:59.670400pt;}
.ls75{letter-spacing:59.825067pt;}
.ls78{letter-spacing:61.666667pt;}
.ls61{letter-spacing:62.666667pt;}
.ls59{letter-spacing:62.880000pt;}
.ls49{letter-spacing:66.553067pt;}
.ls52{letter-spacing:70.240000pt;}
.ls4e{letter-spacing:73.973333pt;}
.ls7c{letter-spacing:75.413333pt;}
.ls7d{letter-spacing:80.800000pt;}
.ls7e{letter-spacing:83.786667pt;}
.ls83{letter-spacing:87.093333pt;}
.ls50{letter-spacing:97.760000pt;}
.ls62{letter-spacing:103.748267pt;}
.ls58{letter-spacing:104.160000pt;}
.ls71{letter-spacing:112.662400pt;}
.ls6c{letter-spacing:114.692800pt;}
.ls40{letter-spacing:134.400000pt;}
.ls3f{letter-spacing:136.021333pt;}
.ls3e{letter-spacing:136.576000pt;}
.ls60{letter-spacing:140.739733pt;}
.ls3d{letter-spacing:147.029333pt;}
.ls5a{letter-spacing:157.706667pt;}
.ls5e{letter-spacing:168.960000pt;}
.ls7f{letter-spacing:182.986667pt;}
.ls5d{letter-spacing:188.234667pt;}
.ls48{letter-spacing:199.509333pt;}
.ls57{letter-spacing:223.093333pt;}
.ls67{letter-spacing:254.026667pt;}
.ls66{letter-spacing:262.080000pt;}
.ls63{letter-spacing:263.498667pt;}
.ls54{letter-spacing:270.986667pt;}
.ls65{letter-spacing:271.002667pt;}
.ls7a{letter-spacing:280.213333pt;}
.ls64{letter-spacing:319.312000pt;}
.ls5c{letter-spacing:371.093333pt;}
.ls81{letter-spacing:376.842667pt;}
.ls6a{letter-spacing:393.920000pt;}
.ls4c{letter-spacing:465.509333pt;}
.ls6b{letter-spacing:543.360000pt;}
.ls68{letter-spacing:560.880000pt;}
.ls5b{letter-spacing:708.789312pt;}
.ws145{word-spacing:-708.789312pt;}
.ws159{word-spacing:-376.842667pt;}
.ws146{word-spacing:-371.093333pt;}
.ws12c{word-spacing:-283.200000pt;}
.ws156{word-spacing:-280.213333pt;}
.ws130{word-spacing:-223.146667pt;}
.ws147{word-spacing:-188.234667pt;}
.ws157{word-spacing:-182.986667pt;}
.ws144{word-spacing:-157.706667pt;}
.wsef{word-spacing:-156.714667pt;}
.wsf0{word-spacing:-146.261333pt;}
.wsf1{word-spacing:-145.706667pt;}
.wsf2{word-spacing:-144.085333pt;}
.ws152{word-spacing:-99.306667pt;}
.ws141{word-spacing:-97.760000pt;}
.ws14e{word-spacing:-96.000000pt;}
.ws13d{word-spacing:-73.973333pt;}
.ws149{word-spacing:-68.693333pt;}
.ws14a{word-spacing:-63.360000pt;}
.ws143{word-spacing:-62.880000pt;}
.ws153{word-spacing:-62.826667pt;}
.ws125{word-spacing:-55.200000pt;}
.ws140{word-spacing:-53.600000pt;}
.ws158{word-spacing:-47.306667pt;}
.ws1{word-spacing:-42.666667pt;}
.ws14d{word-spacing:-32.533333pt;}
.ws12b{word-spacing:-32.160000pt;}
.ws155{word-spacing:-30.240000pt;}
.ws13e{word-spacing:-21.386667pt;}
.ws131{word-spacing:-18.773333pt;}
.ws127{word-spacing:-17.333333pt;}
.ws6{word-spacing:-14.490667pt;}
.ws1d5{word-spacing:-13.173333pt;}
.ws19a{word-spacing:-12.960000pt;}
.ws12e{word-spacing:-12.746667pt;}
.ws122{word-spacing:-12.373333pt;}
.ws12a{word-spacing:-12.213333pt;}
.ws111{word-spacing:-12.106667pt;}
.ws5{word-spacing:-11.856000pt;}
.ws8e{word-spacing:-11.786667pt;}
.ws1db{word-spacing:-11.736000pt;}
.ws7{word-spacing:-11.520000pt;}
.ws154{word-spacing:-11.466667pt;}
.ws2a{word-spacing:-11.360000pt;}
.ws126{word-spacing:-11.237333pt;}
.ws1f0{word-spacing:-10.992000pt;}
.ws21{word-spacing:-10.896000pt;}
.wsa8{word-spacing:-10.680000pt;}
.ws109{word-spacing:-10.656000pt;}
.ws3{word-spacing:-10.538667pt;}
.ws29{word-spacing:-10.512000pt;}
.ws1cc{word-spacing:-10.440000pt;}
.ws20{word-spacing:-10.416000pt;}
.ws110{word-spacing:-10.400000pt;}
.wse7{word-spacing:-10.360000pt;}
.ws170{word-spacing:-10.325333pt;}
.ws16e{word-spacing:-10.282667pt;}
.ws1d{word-spacing:-10.240000pt;}
.wsfa{word-spacing:-10.176000pt;}
.ws121{word-spacing:-10.120000pt;}
.wsac{word-spacing:-10.112000pt;}
.wsa9{word-spacing:-10.080000pt;}
.wsb0{word-spacing:-10.069333pt;}
.ws22{word-spacing:-10.032000pt;}
.wsee{word-spacing:-10.026667pt;}
.ws199{word-spacing:-10.000000pt;}
.ws0{word-spacing:-9.968000pt;}
.wsaf{word-spacing:-9.941333pt;}
.ws8f{word-spacing:-9.936000pt;}
.wsb4{word-spacing:-9.898667pt;}
.ws16d{word-spacing:-9.856000pt;}
.wse8{word-spacing:-9.840000pt;}
.wsad{word-spacing:-9.813333pt;}
.ws1d4{word-spacing:-9.800000pt;}
.wsea{word-spacing:-9.770667pt;}
.ws4{word-spacing:-9.685333pt;}
.ws103{word-spacing:-9.648000pt;}
.wsce{word-spacing:-9.642667pt;}
.ws2{word-spacing:-9.600000pt;}
.wsdb{word-spacing:-9.557333pt;}
.ws11b{word-spacing:-9.514667pt;}
.wscf{word-spacing:-9.344000pt;}
.ws119{word-spacing:-9.258667pt;}
.wsae{word-spacing:-9.216000pt;}
.wsab{word-spacing:-9.173333pt;}
.wscd{word-spacing:-9.130667pt;}
.wsd1{word-spacing:-9.002667pt;}
.wsb3{word-spacing:-8.874667pt;}
.wsdd{word-spacing:-8.832000pt;}
.wsb2{word-spacing:-8.789333pt;}
.ws16f{word-spacing:-8.746667pt;}
.wsda{word-spacing:-8.576000pt;}
.wscc{word-spacing:-7.936000pt;}
.wsec{word-spacing:-7.637333pt;}
.ws134{word-spacing:-7.120373pt;}
.ws133{word-spacing:-7.058187pt;}
.wsed{word-spacing:-6.570667pt;}
.wse9{word-spacing:-6.314667pt;}
.wseb{word-spacing:-5.760000pt;}
.ws113{word-spacing:-5.632000pt;}
.ws17c{word-spacing:-5.520000pt;}
.wsaa{word-spacing:-5.504000pt;}
.ws1f{word-spacing:-5.136000pt;}
.ws178{word-spacing:-4.746667pt;}
.ws4e{word-spacing:-2.880000pt;}
.ws1e8{word-spacing:-2.832000pt;}
.ws1ad{word-spacing:-2.640000pt;}
.ws1d0{word-spacing:-2.613333pt;}
.ws1a8{word-spacing:-2.560000pt;}
.ws3c{word-spacing:-2.453333pt;}
.wse6{word-spacing:-2.400000pt;}
.ws172{word-spacing:-2.346667pt;}
.ws1df{word-spacing:-2.304000pt;}
.ws3f{word-spacing:-2.186667pt;}
.ws72{word-spacing:-2.080000pt;}
.ws168{word-spacing:-2.026667pt;}
.ws1e5{word-spacing:-2.016000pt;}
.wsca{word-spacing:-1.973333pt;}
.ws30{word-spacing:-1.920000pt;}
.ws58{word-spacing:-1.866667pt;}
.ws50{word-spacing:-1.813333pt;}
.ws190{word-spacing:-1.776000pt;}
.ws44{word-spacing:-1.760000pt;}
.ws1e7{word-spacing:-1.680000pt;}
.wsc9{word-spacing:-1.653333pt;}
.ws1c9{word-spacing:-1.632000pt;}
.ws2b{word-spacing:-1.600000pt;}
.ws2c{word-spacing:-1.546667pt;}
.ws1ce{word-spacing:-1.493333pt;}
.ws1ca{word-spacing:-1.488000pt;}
.ws118{word-spacing:-1.440000pt;}
.wsf6{word-spacing:-1.392000pt;}
.ws8d{word-spacing:-1.386667pt;}
.wsde{word-spacing:-1.333333pt;}
.ws198{word-spacing:-1.296000pt;}
.ws139{word-spacing:-1.280000pt;}
.ws48{word-spacing:-1.226667pt;}
.ws55{word-spacing:-1.173333pt;}
.wsf7{word-spacing:-1.152000pt;}
.ws2d{word-spacing:-1.120000pt;}
.ws10a{word-spacing:-1.066667pt;}
.ws9c{word-spacing:-1.013333pt;}
.ws37{word-spacing:-0.960000pt;}
.ws65{word-spacing:-0.906667pt;}
.ws1ba{word-spacing:-0.896000pt;}
.wsc0{word-spacing:-0.853333pt;}
.wsa{word-spacing:-0.840000pt;}
.wsbd{word-spacing:-0.800000pt;}
.ws191{word-spacing:-0.768000pt;}
.ws71{word-spacing:-0.746667pt;}
.ws8c{word-spacing:-0.720000pt;}
.ws5d{word-spacing:-0.693333pt;}
.ws1e6{word-spacing:-0.672000pt;}
.wse1{word-spacing:-0.640000pt;}
.ws1f5{word-spacing:-0.624000pt;}
.ws95{word-spacing:-0.586667pt;}
.ws8{word-spacing:-0.563200pt;}
.ws3b{word-spacing:-0.533333pt;}
.ws5b{word-spacing:-0.480000pt;}
.ws1bb{word-spacing:-0.469333pt;}
.wsb{word-spacing:-0.436800pt;}
.ws6f{word-spacing:-0.426667pt;}
.ws1c1{word-spacing:-0.384000pt;}
.ws13b{word-spacing:-0.373333pt;}
.ws16a{word-spacing:-0.320000pt;}
.ws96{word-spacing:-0.266667pt;}
.wsc6{word-spacing:-0.256000pt;}
.ws41{word-spacing:-0.213333pt;}
.ws1b9{word-spacing:-0.170667pt;}
.ws5c{word-spacing:-0.160000pt;}
.ws192{word-spacing:-0.144000pt;}
.wsc4{word-spacing:-0.128000pt;}
.ws42{word-spacing:-0.106667pt;}
.wsf9{word-spacing:-0.085333pt;}
.ws123{word-spacing:-0.053333pt;}
.ws1bc{word-spacing:-0.042667pt;}
.ws9{word-spacing:0.000000pt;}
.wsc7{word-spacing:0.042667pt;}
.ws136{word-spacing:0.053333pt;}
.ws1f3{word-spacing:0.096000pt;}
.wsd8{word-spacing:0.106667pt;}
.wsf8{word-spacing:0.128000pt;}
.ws39{word-spacing:0.160000pt;}
.wsc5{word-spacing:0.170667pt;}
.ws1c8{word-spacing:0.192000pt;}
.ws13c{word-spacing:0.213333pt;}
.wsc3{word-spacing:0.240000pt;}
.ws10b{word-spacing:0.266667pt;}
.ws1be{word-spacing:0.298667pt;}
.ws9e{word-spacing:0.320000pt;}
.ws12{word-spacing:0.336000pt;}
.wsd7{word-spacing:0.341333pt;}
.wsa2{word-spacing:0.373333pt;}
.ws2e{word-spacing:0.384000pt;}
.ws60{word-spacing:0.426667pt;}
.ws1c{word-spacing:0.448000pt;}
.ws1c2{word-spacing:0.469333pt;}
.ws4d{word-spacing:0.480000pt;}
.wsc{word-spacing:0.512000pt;}
.ws4a{word-spacing:0.533333pt;}
.ws70{word-spacing:0.586667pt;}
.ws67{word-spacing:0.640000pt;}
.ws10c{word-spacing:0.672000pt;}
.ws64{word-spacing:0.693333pt;}
.ws197{word-spacing:0.720000pt;}
.ws1b{word-spacing:0.746667pt;}
.ws137{word-spacing:0.800000pt;}
.ws1d3{word-spacing:0.906667pt;}
.ws59{word-spacing:0.960000pt;}
.ws47{word-spacing:1.013333pt;}
.ws6e{word-spacing:1.066667pt;}
.ws38{word-spacing:1.120000pt;}
.wsbc{word-spacing:1.173333pt;}
.ws1cb{word-spacing:1.200000pt;}
.ws77{word-spacing:1.226667pt;}
.ws1d1{word-spacing:1.333333pt;}
.ws1ef{word-spacing:1.344000pt;}
.wscb{word-spacing:1.386667pt;}
.ws177{word-spacing:1.440000pt;}
.ws3a{word-spacing:1.493333pt;}
.ws1f2{word-spacing:1.536000pt;}
.ws4f{word-spacing:1.546667pt;}
.ws138{word-spacing:1.600000pt;}
.ws75{word-spacing:1.653333pt;}
.ws9d{word-spacing:1.706667pt;}
.ws195{word-spacing:1.728000pt;}
.ws56{word-spacing:1.760000pt;}
.ws193{word-spacing:1.776000pt;}
.wsd6{word-spacing:1.813333pt;}
.ws97{word-spacing:1.866667pt;}
.ws194{word-spacing:1.872000pt;}
.ws4b{word-spacing:1.920000pt;}
.ws17a{word-spacing:1.973333pt;}
.ws1c0{word-spacing:2.005333pt;}
.ws1c5{word-spacing:2.016000pt;}
.ws169{word-spacing:2.026667pt;}
.ws175{word-spacing:2.064000pt;}
.ws5e{word-spacing:2.080000pt;}
.wsa1{word-spacing:2.133333pt;}
.wse{word-spacing:2.160000pt;}
.ws6d{word-spacing:2.186667pt;}
.ws18{word-spacing:2.208000pt;}
.ws15e{word-spacing:2.240000pt;}
.ws18f{word-spacing:2.256000pt;}
.ws6c{word-spacing:2.293333pt;}
.wsa6{word-spacing:2.346667pt;}
.wsa5{word-spacing:2.400000pt;}
.ws33{word-spacing:2.453333pt;}
.ws63{word-spacing:2.560000pt;}
.ws11f{word-spacing:2.613333pt;}
.ws17{word-spacing:2.640000pt;}
.ws10f{word-spacing:2.666667pt;}
.ws1ac{word-spacing:2.688000pt;}
.ws66{word-spacing:2.720000pt;}
.ws54{word-spacing:2.773333pt;}
.ws57{word-spacing:2.826667pt;}
.ws1ab{word-spacing:2.928000pt;}
.ws15d{word-spacing:2.933333pt;}
.wsc1{word-spacing:2.986667pt;}
.wsa7{word-spacing:3.040000pt;}
.ws73{word-spacing:3.093333pt;}
.wsd5{word-spacing:3.146667pt;}
.ws9f{word-spacing:3.200000pt;}
.wsbf{word-spacing:3.253333pt;}
.wsf5{word-spacing:3.264000pt;}
.ws176{word-spacing:3.306667pt;}
.ws1bd{word-spacing:3.328000pt;}
.ws98{word-spacing:3.360000pt;}
.ws2f{word-spacing:3.408000pt;}
.ws51{word-spacing:3.413333pt;}
.ws31{word-spacing:3.466667pt;}
.ws43{word-spacing:3.520000pt;}
.wsf4{word-spacing:3.552000pt;}
.wsdf{word-spacing:3.573333pt;}
.ws3d{word-spacing:3.626667pt;}
.wsba{word-spacing:3.680000pt;}
.ws1ae{word-spacing:3.696000pt;}
.ws10d{word-spacing:3.733333pt;}
.wsd{word-spacing:3.754667pt;}
.ws53{word-spacing:3.786667pt;}
.ws11{word-spacing:3.840000pt;}
.ws1bf{word-spacing:3.882667pt;}
.wsa0{word-spacing:3.893333pt;}
.ws142{word-spacing:3.946667pt;}
.ws10{word-spacing:3.984000pt;}
.ws61{word-spacing:4.000000pt;}
.ws1cf{word-spacing:4.053333pt;}
.ws1c4{word-spacing:4.096000pt;}
.ws99{word-spacing:4.160000pt;}
.ws174{word-spacing:4.213333pt;}
.ws1ee{word-spacing:4.224000pt;}
.ws76{word-spacing:4.266667pt;}
.ws16{word-spacing:4.272000pt;}
.ws35{word-spacing:4.320000pt;}
.ws196{word-spacing:4.368000pt;}
.ws3e{word-spacing:4.373333pt;}
.ws13f{word-spacing:4.426667pt;}
.ws1ed{word-spacing:4.512000pt;}
.ws45{word-spacing:4.533333pt;}
.ws69{word-spacing:4.586667pt;}
.ws116{word-spacing:4.693333pt;}
.ws1c6{word-spacing:4.704000pt;}
.wse4{word-spacing:4.746667pt;}
.ws120{word-spacing:4.800000pt;}
.ws13{word-spacing:4.848000pt;}
.ws40{word-spacing:4.960000pt;}
.wsbb{word-spacing:5.013333pt;}
.ws1d8{word-spacing:5.066667pt;}
.ws1ea{word-spacing:5.088000pt;}
.ws1d2{word-spacing:5.120000pt;}
.ws15c{word-spacing:5.173333pt;}
.wsf{word-spacing:5.232000pt;}
.wsc2{word-spacing:5.280000pt;}
.ws15b{word-spacing:5.333333pt;}
.ws68{word-spacing:5.440000pt;}
.ws34{word-spacing:5.493333pt;}
.ws5a{word-spacing:5.546667pt;}
.ws14{word-spacing:5.616000pt;}
.ws6b{word-spacing:5.653333pt;}
.ws13a{word-spacing:5.706667pt;}
.ws9b{word-spacing:5.760000pt;}
.ws15{word-spacing:5.808000pt;}
.ws6a{word-spacing:5.866667pt;}
.ws117{word-spacing:5.920000pt;}
.ws115{word-spacing:5.973333pt;}
.ws52{word-spacing:6.026667pt;}
.ws11d{word-spacing:6.080000pt;}
.ws15a{word-spacing:6.133333pt;}
.ws62{word-spacing:6.186667pt;}
.ws1fa{word-spacing:6.240000pt;}
.ws1e3{word-spacing:6.288000pt;}
.ws1f9{word-spacing:6.336000pt;}
.ws16b{word-spacing:6.400000pt;}
.ws1c7{word-spacing:6.432000pt;}
.ws1a7{word-spacing:6.506667pt;}
.wsd9{word-spacing:6.560000pt;}
.ws9a{word-spacing:6.613333pt;}
.ws19{word-spacing:6.666667pt;}
.ws1a{word-spacing:6.720000pt;}
.ws1e9{word-spacing:6.768000pt;}
.wse5{word-spacing:6.826667pt;}
.ws74{word-spacing:6.880000pt;}
.ws1eb{word-spacing:6.912000pt;}
.ws1d9{word-spacing:7.008000pt;}
.ws16c{word-spacing:7.040000pt;}
.ws32{word-spacing:7.093333pt;}
.ws173{word-spacing:7.146667pt;}
.ws1de{word-spacing:7.200000pt;}
.ws1a9{word-spacing:7.306667pt;}
.ws1e0{word-spacing:7.344000pt;}
.ws1fb{word-spacing:7.360000pt;}
.ws1dc{word-spacing:7.440000pt;}
.ws36{word-spacing:7.466667pt;}
.ws179{word-spacing:7.520000pt;}
.ws1cd{word-spacing:7.573333pt;}
.ws1aa{word-spacing:7.680000pt;}
.ws5f{word-spacing:7.733333pt;}
.wsa4{word-spacing:7.776000pt;}
.ws49{word-spacing:8.000000pt;}
.wse0{word-spacing:8.053333pt;}
.ws1d7{word-spacing:8.106667pt;}
.ws135{word-spacing:8.373333pt;}
.ws1e1{word-spacing:8.400000pt;}
.wsa3{word-spacing:8.448000pt;}
.ws1e4{word-spacing:8.496000pt;}
.ws10e{word-spacing:8.693333pt;}
.ws1f4{word-spacing:9.216000pt;}
.wse2{word-spacing:9.546667pt;}
.ws4c{word-spacing:9.706667pt;}
.wsbe{word-spacing:9.760000pt;}
.ws11e{word-spacing:9.866667pt;}
.ws1d6{word-spacing:10.400000pt;}
.ws1da{word-spacing:10.608000pt;}
.ws46{word-spacing:10.666667pt;}
.ws1af{word-spacing:10.986667pt;}
.ws1ec{word-spacing:11.184000pt;}
.wsc8{word-spacing:12.106667pt;}
.ws1f6{word-spacing:12.192000pt;}
.wse3{word-spacing:12.213333pt;}
.ws1f7{word-spacing:15.072000pt;}
.ws1f8{word-spacing:16.272000pt;}
.ws1e2{word-spacing:19.392000pt;}
.ws1dd{word-spacing:19.728000pt;}
.ws150{word-spacing:34.933333pt;}
.ws14b{word-spacing:36.480000pt;}
.ws148{word-spacing:42.400000pt;}
.ws1c3{word-spacing:50.048000pt;}
.wsd4{word-spacing:50.986667pt;}
.wsd2{word-spacing:53.546667pt;}
.wsd0{word-spacing:55.040000pt;}
.wsb1{word-spacing:55.808000pt;}
.ws129{word-spacing:58.486933pt;}
.wsd3{word-spacing:60.800000pt;}
.wsdc{word-spacing:62.592000pt;}
.ws12f{word-spacing:62.933333pt;}
.wsb8{word-spacing:66.730667pt;}
.wsb6{word-spacing:72.021333pt;}
.ws124{word-spacing:72.213333pt;}
.wsb5{word-spacing:72.746667pt;}
.wsb7{word-spacing:72.789333pt;}
.ws1f1{word-spacing:74.928000pt;}
.wsb9{word-spacing:80.341333pt;}
.ws26{word-spacing:85.523200pt;}
.ws151{word-spacing:102.773333pt;}
.ws186{word-spacing:103.508800pt;}
.ws17b{word-spacing:103.940800pt;}
.wsf3{word-spacing:106.496000pt;}
.ws1b8{word-spacing:107.664533pt;}
.ws18e{word-spacing:109.100267pt;}
.ws185{word-spacing:109.532267pt;}
.ws1a6{word-spacing:110.072000pt;}
.ws91{word-spacing:111.788800pt;}
.ws14c{word-spacing:122.714667pt;}
.ws128{word-spacing:124.426667pt;}
.ws93{word-spacing:124.940800pt;}
.ws132{word-spacing:127.306667pt;}
.ws1b3{word-spacing:130.704533pt;}
.ws18c{word-spacing:132.139733pt;}
.ws187{word-spacing:132.140267pt;}
.ws17e{word-spacing:132.571733pt;}
.ws181{word-spacing:132.572267pt;}
.ws1a1{word-spacing:133.112000pt;}
.ws11a{word-spacing:136.661333pt;}
.ws11c{word-spacing:138.965333pt;}
.ws1b4{word-spacing:142.224533pt;}
.ws17d{word-spacing:144.092267pt;}
.ws112{word-spacing:144.256000pt;}
.ws19e{word-spacing:144.632000pt;}
.ws114{word-spacing:144.981333pt;}
.ws106{word-spacing:152.826133pt;}
.ws1b1{word-spacing:153.744533pt;}
.ws18a{word-spacing:155.180267pt;}
.ws180{word-spacing:155.612267pt;}
.ws19c{word-spacing:156.152000pt;}
.wsfd{word-spacing:161.116267pt;}
.ws101{word-spacing:162.666133pt;}
.ws12d{word-spacing:163.200000pt;}
.wsff{word-spacing:166.261333pt;}
.ws100{word-spacing:167.370133pt;}
.ws105{word-spacing:172.636267pt;}
.ws23{word-spacing:174.318400pt;}
.ws27{word-spacing:177.923200pt;}
.ws28{word-spacing:183.150400pt;}
.ws1a0{word-spacing:183.601600pt;}
.wsfc{word-spacing:186.426133pt;}
.ws14f{word-spacing:188.426667pt;}
.ws102{word-spacing:204.810133pt;}
.ws1a2{word-spacing:204.961600pt;}
.ws104{word-spacing:207.157333pt;}
.wsfe{word-spacing:207.445333pt;}
.ws1a4{word-spacing:208.556800pt;}
.ws19b{word-spacing:209.665600pt;}
.ws183{word-spacing:212.066667pt;}
.ws18b{word-spacing:214.874133pt;}
.ws108{word-spacing:221.850133pt;}
.ws1b6{word-spacing:224.205867pt;}
.ws1b0{word-spacing:225.314667pt;}
.ws171{word-spacing:232.149333pt;}
.ws107{word-spacing:233.077333pt;}
.ws1a3{word-spacing:240.241600pt;}
.ws1e{word-spacing:240.318933pt;}
.ws182{word-spacing:243.751467pt;}
.ws189{word-spacing:246.558933pt;}
.ws19d{word-spacing:247.105600pt;}
.ws1b5{word-spacing:255.890667pt;}
.ws1a5{word-spacing:264.145600pt;}
.ws184{word-spacing:267.655467pt;}
.ws25{word-spacing:269.030400pt;}
.ws18d{word-spacing:270.462933pt;}
.ws19f{word-spacing:275.372800pt;}
.ws17f{word-spacing:278.882667pt;}
.ws1b7{word-spacing:279.794667pt;}
.ws188{word-spacing:281.690133pt;}
.ws1b2{word-spacing:291.021867pt;}
.wsfb{word-spacing:385.017067pt;}
.ws162{word-spacing:405.668800pt;}
.ws15f{word-spacing:422.637333pt;}
.ws164{word-spacing:434.157333pt;}
.ws90{word-spacing:477.050133pt;}
.ws24{word-spacing:508.729067pt;}
.ws7d{word-spacing:525.254933pt;}
.ws7f{word-spacing:536.534933pt;}
.ws7c{word-spacing:546.758933pt;}
.ws7a{word-spacing:553.235200pt;}
.ws83{word-spacing:564.755733pt;}
.ws78{word-spacing:587.795733pt;}
.ws7e{word-spacing:593.222933pt;}
.ws87{word-spacing:597.777600pt;}
.ws81{word-spacing:627.778133pt;}
.ws7b{word-spacing:628.934933pt;}
.ws82{word-spacing:632.438400pt;}
.ws80{word-spacing:634.162133pt;}
.ws86{word-spacing:643.094400pt;}
.ws85{word-spacing:644.625600pt;}
.ws84{word-spacing:645.777600pt;}
.ws89{word-spacing:649.137600pt;}
.ws8b{word-spacing:651.825600pt;}
.ws79{word-spacing:652.978133pt;}
.ws88{word-spacing:676.833600pt;}
.ws8a{word-spacing:701.889600pt;}
.ws167{word-spacing:806.372800pt;}
.ws166{word-spacing:838.057600pt;}
.ws165{word-spacing:842.468800pt;}
.ws161{word-spacing:861.961600pt;}
.ws160{word-spacing:873.188800pt;}
.ws163{word-spacing:909.188800pt;}
.ws92{word-spacing:1157.481067pt;}
.ws94{word-spacing:1177.785067pt;}
._48{margin-left:-1050.986667pt;}
._45{margin-left:-500.000000pt;}
._46{margin-left:-230.098133pt;}
._47{margin-left:-202.560000pt;}
._44{margin-left:-180.960000pt;}
._4d{margin-left:-155.626667pt;}
._2f{margin-left:-147.029333pt;}
._30{margin-left:-136.576000pt;}
._31{margin-left:-133.845333pt;}
._4f{margin-left:-84.266667pt;}
._4a{margin-left:-67.840000pt;}
._4c{margin-left:-63.253333pt;}
._82{margin-left:-51.924267pt;}
._49{margin-left:-32.533333pt;}
._4e{margin-left:-27.066133pt;}
._19{margin-left:-9.036267pt;}
._1a{margin-left:-8.037867pt;}
._18{margin-left:-5.881067pt;}
._1{margin-left:-4.694667pt;}
._c{margin-left:-3.272000pt;}
._3{margin-left:-2.206400pt;}
._0{margin-left:-0.991200pt;}
._4{width:1.040800pt;}
._8{width:2.337600pt;}
._7{width:3.964800pt;}
._5{width:4.979200pt;}
._6{width:6.015200pt;}
._9{width:7.110667pt;}
._17{width:8.264533pt;}
._16{width:10.005333pt;}
._79{width:11.042933pt;}
._28{width:12.184800pt;}
._4b{width:14.607467pt;}
._2{width:19.840000pt;}
._51{width:26.232267pt;}
._81{width:31.927733pt;}
._50{width:37.983467pt;}
._2a{width:61.696000pt;}
._29{width:64.725333pt;}
._27{width:66.986667pt;}
._2c{width:69.248000pt;}
._2b{width:70.784000pt;}
._2d{width:75.306667pt;}
._3f{width:93.956533pt;}
._72{width:108.480800pt;}
._68{width:109.657600pt;}
._33{width:113.962667pt;}
._32{width:126.421333pt;}
._7c{width:130.080533pt;}
._63{width:131.079733pt;}
._66{width:132.516800pt;}
._11{width:139.981600pt;}
._7e{width:141.392267pt;}
._60{width:143.467733pt;}
._75{width:144.547733pt;}
._15{width:147.150400pt;}
._43{width:148.608000pt;}
._42{width:150.912000pt;}
._41{width:152.405333pt;}
._6a{width:153.691200pt;}
._62{width:154.988267pt;}
._40{width:156.928000pt;}
._76{width:158.531467pt;}
._14{width:159.823467pt;}
._6c{width:160.854133pt;}
._67{width:162.041333pt;}
._6f{width:164.848800pt;}
._5f{width:166.508267pt;}
._73{width:167.678933pt;}
._e{width:169.149600pt;}
._78{width:170.524000pt;}
._53{width:172.442133pt;}
._38{width:174.152533pt;}
._34{width:175.440533pt;}
._71{width:176.841333pt;}
._36{width:180.723733pt;}
._39{width:186.027733pt;}
._37{width:189.757867pt;}
._3a{width:192.621333pt;}
._3b{width:198.198133pt;}
._b{width:200.988000pt;}
._3e{width:203.763733pt;}
._7b{width:209.469867pt;}
._64{width:219.370667pt;}
._6d{width:222.178133pt;}
._5e{width:224.001867pt;}
._69{width:226.809333pt;}
._35{width:229.857067pt;}
._7d{width:231.509867pt;}
._3c{width:241.377067pt;}
._5d{width:244.864000pt;}
._3d{width:252.205867pt;}
._74{width:259.658400pt;}
._61{width:261.602667pt;}
._65{width:263.168267pt;}
._6b{width:264.410133pt;}
._6e{width:265.975733pt;}
._77{width:271.436800pt;}
._7a{width:273.741867pt;}
._10{width:275.337867pt;}
._70{width:277.754133pt;}
._f{width:280.806667pt;}
._7f{width:287.085867pt;}
._d{width:288.111467pt;}
._13{width:291.955200pt;}
._80{width:324.871467pt;}
._52{width:363.167733pt;}
._12{width:413.192267pt;}
._55{width:416.564800pt;}
._23{width:494.752800pt;}
._1d{width:563.245600pt;}
._24{width:575.651733pt;}
._21{width:609.681600pt;}
._1e{width:620.161333pt;}
._26{width:622.895200pt;}
._22{width:630.704000pt;}
._20{width:635.057333pt;}
._25{width:644.289600pt;}
._1f{width:651.857333pt;}
._54{width:672.553333pt;}
._1c{width:682.785600pt;}
._5b{width:756.347467pt;}
._58{width:786.189333pt;}
._59{width:813.676800pt;}
._56{width:818.308000pt;}
._5c{width:852.285333pt;}
._57{width:855.908800pt;}
._5a{width:857.474400pt;}
._a{width:1204.513067pt;}
._2e{width:1205.554133pt;}
._1b{width:1210.253333pt;}
.fsc{font-size:31.093333pt;}
.fs1{font-size:33.600000pt;}
.fs4{font-size:34.202667pt;}
.fsa{font-size:34.666667pt;}
.fs0{font-size:35.200000pt;}
.fs5{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs6{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fsd{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fsb{font-size:103.488000pt;}
.y0{bottom:0.000000pt;}
.y24e{bottom:2.667867pt;}
.y193{bottom:3.583600pt;}
.y29c{bottom:3.874800pt;}
.y286{bottom:3.874933pt;}
.y290{bottom:3.875067pt;}
.y236{bottom:3.875333pt;}
.y233{bottom:3.875600pt;}
.y239{bottom:8.000267pt;}
.y232{bottom:8.000667pt;}
.y24c{bottom:12.751067pt;}
.y248{bottom:14.667867pt;}
.y28c{bottom:15.167333pt;}
.y255{bottom:20.000133pt;}
.y263{bottom:39.499067pt;}
.y4{bottom:49.664267pt;}
.y3{bottom:60.864267pt;}
.y328{bottom:68.474933pt;}
.y252{bottom:69.760800pt;}
.y2df{bottom:69.764133pt;}
.y217{bottom:70.256400pt;}
.y2b6{bottom:70.992133pt;}
.y7f{bottom:71.852667pt;}
.y2{bottom:72.064267pt;}
.y361{bottom:72.070533pt;}
.y1fe{bottom:72.574533pt;}
.ycf{bottom:72.696933pt;}
.yf3{bottom:73.159867pt;}
.y1e1{bottom:73.200800pt;}
.y15d{bottom:73.582400pt;}
.y197{bottom:73.669733pt;}
.y38c{bottom:73.795733pt;}
.y4f{bottom:74.167733pt;}
.y3b9{bottom:74.662267pt;}
.y125{bottom:75.913067pt;}
.y310{bottom:77.396133pt;}
.y3e5{bottom:80.258800pt;}
.ya6{bottom:81.053200pt;}
.y327{bottom:84.474933pt;}
.y251{bottom:85.760800pt;}
.y2de{bottom:85.764133pt;}
.y216{bottom:86.256400pt;}
.y2b5{bottom:86.992133pt;}
.y7e{bottom:87.852667pt;}
.y360{bottom:88.070533pt;}
.y1fd{bottom:88.574533pt;}
.yce{bottom:88.696933pt;}
.yf2{bottom:89.159867pt;}
.y1e0{bottom:89.200800pt;}
.y15c{bottom:89.582400pt;}
.y38b{bottom:89.795733pt;}
.y4e{bottom:90.167733pt;}
.y3b8{bottom:90.662267pt;}
.y124{bottom:91.913067pt;}
.y30f{bottom:93.396133pt;}
.y3e4{bottom:96.258800pt;}
.ya5{bottom:97.053200pt;}
.y21{bottom:99.828000pt;}
.y326{bottom:100.474933pt;}
.y250{bottom:101.760800pt;}
.y215{bottom:102.256400pt;}
.y2b4{bottom:102.992133pt;}
.y7d{bottom:103.852667pt;}
.y35f{bottom:104.070533pt;}
.y1fc{bottom:104.574533pt;}
.ycd{bottom:104.696933pt;}
.yf1{bottom:105.159867pt;}
.y1df{bottom:105.200800pt;}
.y1a9{bottom:105.425867pt;}
.y15b{bottom:105.582400pt;}
.y38a{bottom:105.795733pt;}
.y4d{bottom:106.167733pt;}
.y3b7{bottom:106.662267pt;}
.y123{bottom:107.913067pt;}
.y30e{bottom:109.396133pt;}
.y3b1{bottom:110.744133pt;}
.y3e3{bottom:112.258800pt;}
.ya4{bottom:113.053200pt;}
.y20{bottom:115.828000pt;}
.y214{bottom:118.256400pt;}
.y247{bottom:118.326667pt;}
.y2b3{bottom:118.992133pt;}
.y325{bottom:119.034000pt;}
.y7c{bottom:119.852667pt;}
.y35e{bottom:120.070533pt;}
.y2e6{bottom:120.378400pt;}
.y1fb{bottom:120.574533pt;}
.ycc{bottom:120.696933pt;}
.yf0{bottom:121.159867pt;}
.y1de{bottom:121.200800pt;}
.y17e{bottom:121.582400pt;}
.y1a8{bottom:122.055200pt;}
.y245{bottom:122.074800pt;}
.y24a{bottom:122.077733pt;}
.y4c{bottom:122.167733pt;}
.y3b6{bottom:122.662267pt;}
.y122{bottom:123.913067pt;}
.y30d{bottom:125.396133pt;}
.y3b0{bottom:126.744133pt;}
.y3e2{bottom:128.258800pt;}
.y244{bottom:128.869467pt;}
.ya3{bottom:129.053200pt;}
.y1f{bottom:131.828000pt;}
.y249{bottom:132.874533pt;}
.y243{bottom:132.994533pt;}
.y2e5{bottom:133.605067pt;}
.y213{bottom:134.256400pt;}
.y139{bottom:134.753733pt;}
.y2b2{bottom:134.992133pt;}
.y324{bottom:135.034000pt;}
.y7b{bottom:135.852667pt;}
.y35d{bottom:136.070533pt;}
.y1fa{bottom:136.574533pt;}
.yef{bottom:137.159867pt;}
.y1dd{bottom:137.200800pt;}
.y199{bottom:137.570533pt;}
.y17d{bottom:137.582400pt;}
.y4b{bottom:138.167733pt;}
.y3b5{bottom:138.662267pt;}
.y121{bottom:139.913067pt;}
.y246{bottom:140.162800pt;}
.y30c{bottom:141.396133pt;}
.y386{bottom:142.615733pt;}
.y3af{bottom:142.744133pt;}
.y24d{bottom:143.074533pt;}
.y3e1{bottom:144.258800pt;}
.y385{bottom:144.503733pt;}
.ya2{bottom:145.053200pt;}
.y24f{bottom:146.117467pt;}
.y24b{bottom:146.120400pt;}
.y2e3{bottom:146.831733pt;}
.y2b1{bottom:150.992133pt;}
.y323{bottom:151.316933pt;}
.y7a{bottom:151.852667pt;}
.y35c{bottom:152.070533pt;}
.y37e{bottom:152.813067pt;}
.yee{bottom:153.159867pt;}
.y1dc{bottom:153.200800pt;}
.y19a{bottom:153.442533pt;}
.y17c{bottom:153.582400pt;}
.y4a{bottom:154.167733pt;}
.y120{bottom:155.913067pt;}
.y30b{bottom:157.396133pt;}
.y3ae{bottom:158.744133pt;}
.ya1{bottom:161.053200pt;}
.y1e{bottom:162.946133pt;}
.y1ee{bottom:164.234000pt;}
.y2e1{bottom:164.591733pt;}
.y37f{bottom:165.282400pt;}
.y212{bottom:165.374533pt;}
.y2b0{bottom:166.992133pt;}
.y322{bottom:167.599867pt;}
.y242{bottom:167.776667pt;}
.y79{bottom:167.852667pt;}
.y35b{bottom:168.070533pt;}
.y1db{bottom:169.200800pt;}
.y17b{bottom:169.582400pt;}
.y3b4{bottom:169.780400pt;}
.y49{bottom:170.167733pt;}
.y13c{bottom:170.642267pt;}
.y1a7{bottom:171.751200pt;}
.y11f{bottom:171.913067pt;}
.y30a{bottom:173.396133pt;}
.ycb{bottom:174.309200pt;}
.y3ad{bottom:174.744133pt;}
.y3e0{bottom:175.376933pt;}
.y37d{bottom:175.490400pt;}
.ya0{bottom:177.053200pt;}
.y2e2{bottom:180.847733pt;}
.y211{bottom:182.974533pt;}
.y2af{bottom:182.992133pt;}
.y241{bottom:183.776667pt;}
.y78{bottom:183.852667pt;}
.y321{bottom:183.882800pt;}
.y35a{bottom:184.070533pt;}
.y1da{bottom:185.200800pt;}
.y17a{bottom:185.582400pt;}
.y48{bottom:186.167733pt;}
.y1a6{bottom:187.815200pt;}
.y11e{bottom:187.913067pt;}
.y309{bottom:189.396133pt;}
.yca{bottom:190.309200pt;}
.y3ac{bottom:190.744133pt;}
.y9f{bottom:193.053200pt;}
.yed{bottom:193.980933pt;}
.y2ed{bottom:194.458400pt;}
.y387{bottom:195.533067pt;}
.y1f7{bottom:196.900800pt;}
.y13d{bottom:197.852933pt;}
.y37c{bottom:197.975733pt;}
.y2ae{bottom:198.992133pt;}
.y77{bottom:199.852667pt;}
.y359{bottom:200.070533pt;}
.y320{bottom:200.165733pt;}
.y1d9{bottom:201.200800pt;}
.y179{bottom:201.582400pt;}
.y47{bottom:202.167733pt;}
.y23e{bottom:202.286133pt;}
.y11d{bottom:203.913067pt;}
.y308{bottom:205.396133pt;}
.y23c{bottom:206.408533pt;}
.y3ab{bottom:206.744133pt;}
.y9e{bottom:209.053200pt;}
.y1d{bottom:210.782267pt;}
.y1a5{bottom:211.249867pt;}
.y240{bottom:213.579467pt;}
.yc9{bottom:214.159600pt;}
.y2ad{bottom:214.992133pt;}
.y76{bottom:215.852667pt;}
.y1f8{bottom:215.983467pt;}
.y1ef{bottom:215.994133pt;}
.y31f{bottom:216.448667pt;}
.y178{bottom:217.582400pt;}
.yec{bottom:217.831467pt;}
.y46{bottom:218.167733pt;}
.y23a{bottom:218.443333pt;}
.y3df{bottom:219.433600pt;}
.y11c{bottom:219.913067pt;}
.y389{bottom:220.471733pt;}
.y307{bottom:221.396133pt;}
.y2ec{bottom:222.618400pt;}
.y3aa{bottom:222.744133pt;}
.y13b{bottom:223.175600pt;}
.y23d{bottom:224.536800pt;}
.y9d{bottom:225.053200pt;}
.y210{bottom:227.031200pt;}
.y23b{bottom:228.661867pt;}
.y2ac{bottom:230.992133pt;}
.y2e0{bottom:231.211733pt;}
.y75{bottom:231.852667pt;}
.y31e{bottom:232.731600pt;}
.yc8{bottom:233.466133pt;}
.y177{bottom:233.582400pt;}
.y358{bottom:234.099600pt;}
.y45{bottom:234.167733pt;}
.y1a4{bottom:235.249867pt;}
.y3de{bottom:235.433600pt;}
.y144{bottom:235.655600pt;}
.y23f{bottom:235.830133pt;}
.yeb{bottom:237.138000pt;}
.y306{bottom:237.396133pt;}
.y3a9{bottom:238.744133pt;}
.y1f6{bottom:239.418133pt;}
.y9c{bottom:241.053200pt;}
.y1c{bottom:241.900400pt;}
.y20f{bottom:243.031200pt;}
.y37b{bottom:243.138400pt;}
.y231{bottom:244.605333pt;}
.y235{bottom:244.794667pt;}
.y2ab{bottom:246.992133pt;}
.y74{bottom:247.852667pt;}
.y31d{bottom:249.014533pt;}
.y176{bottom:249.582400pt;}
.y357{bottom:250.099600pt;}
.y44{bottom:250.167733pt;}
.yfb{bottom:250.425600pt;}
.y1d8{bottom:250.994533pt;}
.y3dd{bottom:251.433600pt;}
.y2eb{bottom:251.535733pt;}
.y1f5{bottom:252.644800pt;}
.yc7{bottom:252.772800pt;}
.y237{bottom:252.794933pt;}
.y230{bottom:253.110000pt;}
.y305{bottom:253.396133pt;}
.y3a8{bottom:254.744133pt;}
.yea{bottom:256.444533pt;}
.y9b{bottom:257.053200pt;}
.y1b{bottom:257.900400pt;}
.y1a3{bottom:258.119200pt;}
.y20e{bottom:259.031200pt;}
.y234{bottom:259.772667pt;}
.y384{bottom:259.778400pt;}
.y238{bottom:259.961733pt;}
.y143{bottom:261.735600pt;}
.y2aa{bottom:262.992133pt;}
.y73{bottom:263.852667pt;}
.y31c{bottom:265.297467pt;}
.y37a{bottom:265.442400pt;}
.y175{bottom:265.582400pt;}
.y356{bottom:266.099600pt;}
.y43{bottom:266.167733pt;}
.yfa{bottom:266.425600pt;}
.y3dc{bottom:267.433600pt;}
.y304{bottom:269.396133pt;}
.yc6{bottom:272.079333pt;}
.y9a{bottom:273.053200pt;}
.y380{bottom:274.135733pt;}
.y20d{bottom:275.031200pt;}
.y1d7{bottom:276.005067pt;}
.y1a{bottom:277.680000pt;}
.y22a{bottom:278.273600pt;}
.y2a9{bottom:278.992133pt;}
.y72{bottom:279.852667pt;}
.y2ea{bottom:280.261067pt;}
.y31b{bottom:281.580400pt;}
.y174{bottom:281.582400pt;}
.y1a2{bottom:281.745867pt;}
.y42{bottom:282.167733pt;}
.y22c{bottom:282.401333pt;}
.y3db{bottom:283.433600pt;}
.ye9{bottom:283.685467pt;}
.y1f4{bottom:285.146133pt;}
.y303{bottom:285.396133pt;}
.y142{bottom:286.108933pt;}
.y379{bottom:287.746400pt;}
.y1f9{bottom:288.540800pt;}
.y99{bottom:289.053200pt;}
.y22f{bottom:289.566933pt;}
.y355{bottom:289.950000pt;}
.y228{bottom:290.276267pt;}
.y15a{bottom:290.994267pt;}
.yc5{bottom:291.385867pt;}
.y19b{bottom:292.198933pt;}
.y22b{bottom:294.401333pt;}
.y1d6{bottom:295.311600pt;}
.y71{bottom:295.852667pt;}
.y173{bottom:297.582400pt;}
.y31a{bottom:297.863333pt;}
.y41{bottom:298.167733pt;}
.y3da{bottom:299.433600pt;}
.ye8{bottom:299.685467pt;}
.y229{bottom:300.524267pt;}
.y10a{bottom:300.668933pt;}
.y3a7{bottom:300.980400pt;}
.y159{bottom:301.383600pt;}
.y302{bottom:301.396133pt;}
.y22d{bottom:301.569600pt;}
.y1a1{bottom:304.615200pt;}
.y19{bottom:304.798000pt;}
.y98{bottom:305.053200pt;}
.y152{bottom:305.170267pt;}
.y354{bottom:305.950000pt;}
.y1ff{bottom:307.667067pt;}
.y2e9{bottom:308.986400pt;}
.y3ec{bottom:309.084000pt;}
.y378{bottom:310.423733pt;}
.yc4{bottom:310.692400pt;}
.y141{bottom:311.239600pt;}
.y158{bottom:311.772933pt;}
.y22e{bottom:311.817600pt;}
.y70{bottom:311.852667pt;}
.y172{bottom:313.582400pt;}
.y319{bottom:314.146267pt;}
.y40{bottom:314.167733pt;}
.y3d9{bottom:315.433600pt;}
.y1d5{bottom:316.111600pt;}
.y3a6{bottom:316.980400pt;}
.y301{bottom:317.396133pt;}
.y1f3{bottom:318.031467pt;}
.y150{bottom:320.476933pt;}
.y18{bottom:320.798000pt;}
.y97{bottom:321.053200pt;}
.yfc{bottom:321.063600pt;}
.y157{bottom:321.980933pt;}
.y145{bottom:322.204933pt;}
.y153{bottom:323.122267pt;}
.y3eb{bottom:325.084000pt;}
.y2a8{bottom:325.228400pt;}
.y353{bottom:325.256533pt;}
.y6f{bottom:327.852667pt;}
.y1a0{bottom:328.807200pt;}
.y171{bottom:329.582400pt;}
.yc3{bottom:329.998933pt;}
.y3f{bottom:330.167733pt;}
.y318{bottom:330.429200pt;}
.y227{bottom:330.464267pt;}
.y156{bottom:330.866267pt;}
.y151{bottom:331.058267pt;}
.y3d8{bottom:331.433600pt;}
.y377{bottom:332.727733pt;}
.y3a5{bottom:332.980400pt;}
.y300{bottom:333.396133pt;}
.y155{bottom:333.511600pt;}
.ye7{bottom:333.689467pt;}
.y146{bottom:335.431600pt;}
.y1d4{bottom:336.911600pt;}
.y140{bottom:336.935600pt;}
.y96{bottom:337.053200pt;}
.y2e8{bottom:337.711733pt;}
.y315{bottom:338.570667pt;}
.y20c{bottom:340.331733pt;}
.y17{bottom:340.577600pt;}
.y154{bottom:341.074267pt;}
.y3ea{bottom:341.084000pt;}
.y2a7{bottom:341.228400pt;}
.y14b{bottom:341.650267pt;}
.y6e{bottom:343.852667pt;}
.y352{bottom:344.563067pt;}
.y109{bottom:344.892933pt;}
.y170{bottom:345.582400pt;}
.y3e{bottom:346.167733pt;}
.y317{bottom:346.429200pt;}
.y226{bottom:346.464267pt;}
.y3d7{bottom:347.433600pt;}
.y147{bottom:347.527600pt;}
.y3a4{bottom:348.980400pt;}
.yc2{bottom:349.305600pt;}
.y2ff{bottom:349.396133pt;}
.ye6{bottom:349.689467pt;}
.y14f{bottom:350.151600pt;}
.y1f2{bottom:351.290133pt;}
.y19f{bottom:352.433867pt;}
.y95{bottom:353.053200pt;}
.y314{bottom:354.570667pt;}
.y14a{bottom:355.260933pt;}
.y376{bottom:355.597067pt;}
.y16{bottom:356.577600pt;}
.y2a6{bottom:357.228400pt;}
.y1d3{bottom:357.711733pt;}
.y148{bottom:357.916933pt;}
.y14d{bottom:358.663600pt;}
.y108{bottom:359.250267pt;}
.y6d{bottom:359.852667pt;}
.y200{bottom:361.505067pt;}
.y3d{bottom:362.167733pt;}
.y13f{bottom:362.258267pt;}
.y225{bottom:362.464267pt;}
.y316{bottom:362.712133pt;}
.y3d6{bottom:363.433600pt;}
.y351{bottom:363.869600pt;}
.y3a3{bottom:364.980400pt;}
.y2fe{bottom:365.396133pt;}
.ye5{bottom:365.689467pt;}
.y2e7{bottom:366.053067pt;}
.y149{bottom:368.306267pt;}
.yc1{bottom:368.612000pt;}
.y94{bottom:369.053200pt;}
.y383{bottom:369.570400pt;}
.y14c{bottom:371.132933pt;}
.y110{bottom:372.114267pt;}
.y3e9{bottom:372.202133pt;}
.y15{bottom:372.577600pt;}
.y2a5{bottom:373.228400pt;}
.y381{bottom:374.295733pt;}
.y19e{bottom:375.484533pt;}
.y6c{bottom:375.852667pt;}
.y375{bottom:377.901067pt;}
.y3c{bottom:378.167733pt;}
.y107{bottom:378.332933pt;}
.y224{bottom:378.464267pt;}
.y1d2{bottom:378.511600pt;}
.y3d5{bottom:379.433600pt;}
.y3a2{bottom:380.980400pt;}
.y2fd{bottom:381.396133pt;}
.ye4{bottom:381.689467pt;}
.y20b{bottom:382.667733pt;}
.y350{bottom:383.176133pt;}
.y15e{bottom:383.590933pt;}
.y1f1{bottom:384.175467pt;}
.y313{bottom:384.661733pt;}
.y93{bottom:385.053200pt;}
.y13e{bottom:387.207600pt;}
.yc0{bottom:387.918667pt;}
.y382{bottom:388.279733pt;}
.y14{bottom:388.577600pt;}
.y2a4{bottom:389.228400pt;}
.y111{bottom:389.874267pt;}
.y6b{bottom:391.852667pt;}
.y3b{bottom:394.167733pt;}
.y223{bottom:394.464267pt;}
.y2e4{bottom:394.767733pt;}
.y14e{bottom:395.132933pt;}
.y3d4{bottom:395.433600pt;}
.y3a1{bottom:396.980400pt;}
.y2fc{bottom:397.396133pt;}
.y112{bottom:397.436933pt;}
.ye3{bottom:397.689467pt;}
.y106{bottom:397.799600pt;}
.y388{bottom:397.922400pt;}
.y1d1{bottom:399.311600pt;}
.y19d{bottom:399.484533pt;}
.y312{bottom:400.661733pt;}
.y92{bottom:401.053200pt;}
.y34f{bottom:402.482800pt;}
.y203{bottom:403.841067pt;}
.y13{bottom:404.577600pt;}
.y10f{bottom:404.999600pt;}
.y2a3{bottom:405.228400pt;}
.ybf{bottom:407.225200pt;}
.y6a{bottom:407.852667pt;}
.y113{bottom:408.402267pt;}
.y3a{bottom:410.167733pt;}
.y222{bottom:410.464267pt;}
.y3d3{bottom:411.433600pt;}
.y3a0{bottom:412.980400pt;}
.y13a{bottom:413.095600pt;}
.y2fb{bottom:413.396133pt;}
.ye2{bottom:413.689467pt;}
.y3e8{bottom:416.258800pt;}
.y105{bottom:416.508933pt;}
.y311{bottom:416.661733pt;}
.y91{bottom:417.053200pt;}
.y1f0{bottom:417.060800pt;}
.y16b{bottom:417.819600pt;}
.y1d0{bottom:420.111600pt;}
.y12{bottom:420.577600pt;}
.y2a2{bottom:421.228400pt;}
.y34e{bottom:421.789333pt;}
.y19c{bottom:423.111200pt;}
.y69{bottom:423.852667pt;}
.y201{bottom:425.003733pt;}
.y2dd{bottom:426.334667pt;}
.y221{bottom:426.464267pt;}
.ybe{bottom:426.531733pt;}
.y3d2{bottom:427.433600pt;}
.y39f{bottom:428.980400pt;}
.y2fa{bottom:429.396133pt;}
.ye1{bottom:429.689467pt;}
.y114{bottom:430.322267pt;}
.y168{bottom:430.483600pt;}
.y3e7{bottom:432.258800pt;}
.y90{bottom:433.053200pt;}
.y104{bottom:435.783600pt;}
.y2a1{bottom:437.228400pt;}
.y10e{bottom:438.631600pt;}
.y68{bottom:439.852667pt;}
.y11{bottom:440.357067pt;}
.y1cf{bottom:440.911600pt;}
.y34d{bottom:441.256000pt;}
.y2dc{bottom:442.334667pt;}
.y220{bottom:442.464267pt;}
.y169{bottom:442.771600pt;}
.y3d1{bottom:443.433600pt;}
.y39{bottom:443.496000pt;}
.y374{bottom:444.240933pt;}
.y39e{bottom:444.980400pt;}
.y12b{bottom:445.110000pt;}
.y2f9{bottom:445.396133pt;}
.ye0{bottom:445.689467pt;}
.y204{bottom:445.793067pt;}
.ybd{bottom:445.838267pt;}
.y340{bottom:446.490800pt;}
.y198{bottom:446.733200pt;}
.y115{bottom:448.466267pt;}
.y8f{bottom:449.053200pt;}
.y1ed{bottom:450.299600pt;}
.y2a0{bottom:453.228400pt;}
.y2c6{bottom:453.987867pt;}
.y103{bottom:454.684933pt;}
.y15f{bottom:455.048933pt;}
.y67{bottom:455.852667pt;}
.y10{bottom:456.357067pt;}
.y2db{bottom:458.334667pt;}
.y21f{bottom:458.464267pt;}
.y3d0{bottom:459.433600pt;}
.y38{bottom:459.496000pt;}
.y373{bottom:460.240933pt;}
.y34c{bottom:460.722667pt;}
.y39d{bottom:460.980400pt;}
.y12a{bottom:461.110000pt;}
.y2f8{bottom:461.396133pt;}
.y10d{bottom:461.682267pt;}
.ydf{bottom:461.689467pt;}
.y1ce{bottom:461.711733pt;}
.y33f{bottom:462.490800pt;}
.y3e6{bottom:463.376933pt;}
.y8e{bottom:465.053200pt;}
.ybc{bottom:465.144800pt;}
.y29f{bottom:469.228400pt;}
.y160{bottom:471.486267pt;}
.y66{bottom:471.852667pt;}
.yf{bottom:472.357067pt;}
.y11b{bottom:472.658267pt;}
.y102{bottom:473.767600pt;}
.y2da{bottom:474.334667pt;}
.y21e{bottom:474.464267pt;}
.y3cf{bottom:475.433600pt;}
.y37{bottom:475.496000pt;}
.y372{bottom:476.240933pt;}
.y39c{bottom:476.980400pt;}
.y129{bottom:477.110000pt;}
.y2f7{bottom:477.396133pt;}
.yde{bottom:477.689467pt;}
.y2c5{bottom:477.838267pt;}
.y33e{bottom:478.490800pt;}
.y34b{bottom:480.189333pt;}
.y10c{bottom:480.583600pt;}
.y8d{bottom:481.053200pt;}
.y116{bottom:482.290267pt;}
.y167{bottom:482.451600pt;}
.y1cd{bottom:482.511600pt;}
.y202{bottom:483.585067pt;}
.y1ea{bottom:484.330533pt;}
.ybb{bottom:484.451467pt;}
.y119{bottom:485.127600pt;}
.y29e{bottom:485.228400pt;}
.y181{bottom:486.709067pt;}
.y11a{bottom:487.015600pt;}
.y118{bottom:487.580933pt;}
.y65{bottom:487.852667pt;}
.ye{bottom:488.357067pt;}
.y2d9{bottom:490.334667pt;}
.y21d{bottom:490.464267pt;}
.y29b{bottom:491.097333pt;}
.y3ce{bottom:491.433600pt;}
.y36{bottom:491.496000pt;}
.y117{bottom:491.740933pt;}
.y101{bottom:492.668933pt;}
.y39b{bottom:492.980400pt;}
.y128{bottom:493.110000pt;}
.y2f6{bottom:493.396133pt;}
.ydd{bottom:493.689467pt;}
.y33d{bottom:494.490933pt;}
.y16f{bottom:495.494267pt;}
.y20a{bottom:497.003733pt;}
.y8c{bottom:497.053200pt;}
.y2c4{bottom:497.144800pt;}
.y1eb{bottom:498.314533pt;}
.y1e2{bottom:498.325200pt;}
.y298{bottom:499.093733pt;}
.y29d{bottom:499.097067pt;}
.y34a{bottom:499.656000pt;}
.y371{bottom:500.091333pt;}
.y1c6{bottom:501.818133pt;}
.y180{bottom:502.709067pt;}
.yba{bottom:503.758000pt;}
.y64{bottom:503.852667pt;}
.yd{bottom:504.357067pt;}
.yfe{bottom:505.511600pt;}
.y2d8{bottom:506.334667pt;}
.y21c{bottom:506.464267pt;}
.y3cd{bottom:507.433600pt;}
.y39a{bottom:508.980400pt;}
.y127{bottom:509.110000pt;}
.y2f5{bottom:509.396133pt;}
.y1cc{bottom:509.818133pt;}
.y297{bottom:510.561733pt;}
.y100{bottom:511.751600pt;}
.y1e9{bottom:512.863867pt;}
.y33c{bottom:513.049867pt;}
.y8b{bottom:513.053200pt;}
.y1b6{bottom:513.124800pt;}
.y16e{bottom:513.819600pt;}
.y35{bottom:515.346400pt;}
.y2c3{bottom:516.451467pt;}
.y29a{bottom:517.220400pt;}
.y1c5{bottom:517.818133pt;}
.y17f{bottom:518.709067pt;}
.y349{bottom:519.122667pt;}
.y370{bottom:519.397867pt;}
.y1be{bottom:519.471467pt;}
.y63{bottom:519.852667pt;}
.y21b{bottom:522.464267pt;}
.yb9{bottom:523.064533pt;}
.y3cc{bottom:523.433600pt;}
.yc{bottom:524.136667pt;}
.ydc{bottom:524.807600pt;}
.y399{bottom:524.980400pt;}
.y10b{bottom:524.988933pt;}
.y126{bottom:525.110000pt;}
.y1e8{bottom:525.333200pt;}
.y2f4{bottom:525.396133pt;}
.y1cb{bottom:525.818133pt;}
.y299{bottom:528.513733pt;}
.y33b{bottom:529.049867pt;}
.y8a{bottom:529.053200pt;}
.y1b5{bottom:529.124800pt;}
.yff{bottom:530.834267pt;}
.y16a{bottom:531.468933pt;}
.y16d{bottom:532.528933pt;}
.y1c4{bottom:533.818133pt;}
.y34{bottom:534.652933pt;}
.y1bd{bottom:535.471467pt;}
.y2c2{bottom:535.758000pt;}
.y62{bottom:535.852667pt;}
.y348{bottom:538.429200pt;}
.y21a{bottom:538.464267pt;}
.y36f{bottom:538.704400pt;}
.y3cb{bottom:539.433600pt;}
.y2f3{bottom:541.396133pt;}
.y1ca{bottom:541.818133pt;}
.y192{bottom:542.362667pt;}
.yb8{bottom:542.371067pt;}
.ydb{bottom:542.407600pt;}
.y296{bottom:543.895067pt;}
.y209{bottom:544.811733pt;}
.y89{bottom:545.053200pt;}
.y1b4{bottom:545.124800pt;}
.y33a{bottom:545.332800pt;}
.y344{bottom:548.082533pt;}
.y1c3{bottom:549.818133pt;}
.yfd{bottom:549.916933pt;}
.y16c{bottom:550.854267pt;}
.y1bc{bottom:551.471467pt;}
.y61{bottom:551.852667pt;}
.y2d7{bottom:552.570933pt;}
.y1b8{bottom:553.124800pt;}
.y33{bottom:553.959467pt;}
.y347{bottom:554.429200pt;}
.y219{bottom:554.464267pt;}
.y2c1{bottom:555.064533pt;}
.y3ca{bottom:555.433600pt;}
.y346{bottom:556.082533pt;}
.y12c{bottom:556.504267pt;}
.y2f2{bottom:557.396133pt;}
.y28f{bottom:557.574667pt;}
.y1c9{bottom:557.818133pt;}
.y36e{bottom:558.010933pt;}
.y1e7{bottom:560.298533pt;}
.y88{bottom:561.053200pt;}
.y1b3{bottom:561.124800pt;}
.y339{bottom:561.615867pt;}
.yb7{bottom:561.677600pt;}
.y343{bottom:564.082533pt;}
.y292{bottom:565.571467pt;}
.y1c2{bottom:565.818133pt;}
.y1ec{bottom:565.958533pt;}
.yb{bottom:566.593467pt;}
.y1bb{bottom:567.471467pt;}
.y60{bottom:567.852667pt;}
.y2d6{bottom:568.570933pt;}
.y1ac{bottom:569.124800pt;}
.y166{bottom:569.192933pt;}
.y218{bottom:570.464267pt;}
.y398{bottom:571.216533pt;}
.y18b{bottom:571.263333pt;}
.y3c9{bottom:571.433600pt;}
.y191{bottom:572.031333pt;}
.y295{bottom:572.741467pt;}
.y32{bottom:573.266133pt;}
.y2f1{bottom:573.396133pt;}
.y345{bottom:573.735733pt;}
.y1c8{bottom:573.818133pt;}
.y2c0{bottom:574.371067pt;}
.y87{bottom:577.053200pt;}
.y1b2{bottom:577.124800pt;}
.y28e{bottom:577.228400pt;}
.y36d{bottom:577.317467pt;}
.y338{bottom:577.898667pt;}
.ya{bottom:579.926800pt;}
.yb6{bottom:580.984133pt;}
.y1c1{bottom:581.818133pt;}
.y1ba{bottom:583.471467pt;}
.y293{bottom:583.699867pt;}
.y5f{bottom:583.852667pt;}
.y2d5{bottom:584.570933pt;}
.y1ab{bottom:585.124800pt;}
.yda{bottom:586.464267pt;}
.y397{bottom:587.216533pt;}
.y3c8{bottom:587.433600pt;}
.y165{bottom:587.528933pt;}
.y291{bottom:587.824800pt;}
.yf9{bottom:588.228000pt;}
.y2f0{bottom:589.396133pt;}
.y1c7{bottom:589.818133pt;}
.y136{bottom:590.911333pt;}
.y31{bottom:592.572533pt;}
.y208{bottom:592.811733pt;}
.y86{bottom:593.053200pt;}
.y1b1{bottom:593.124800pt;}
.y2bf{bottom:593.677600pt;}
.y337{bottom:594.181600pt;}
.y294{bottom:594.993200pt;}
.y1e6{bottom:595.263867pt;}
.y18a{bottom:595.828667pt;}
.y36c{bottom:596.624000pt;}
.y1c0{bottom:597.818133pt;}
.y1b9{bottom:599.471467pt;}
.y5e{bottom:599.852667pt;}
.yb5{bottom:600.290667pt;}
.y2d4{bottom:600.570933pt;}
.y342{bottom:600.976667pt;}
.y1b7{bottom:601.124800pt;}
.yd9{bottom:602.464267pt;}
.y396{bottom:603.216533pt;}
.y3c7{bottom:603.433600pt;}
.y28b{bottom:603.957333pt;}
.yf8{bottom:604.228000pt;}
.y285{bottom:604.336000pt;}
.y9{bottom:604.598667pt;}
.y2ef{bottom:605.396133pt;}
.y164{bottom:606.430267pt;}
.y28a{bottom:607.833067pt;}
.y288{bottom:608.209333pt;}
.y85{bottom:609.053200pt;}
.y1b0{bottom:609.124800pt;}
.y336{bottom:610.464533pt;}
.y137{bottom:610.943333pt;}
.y30{bottom:611.879200pt;}
.y284{bottom:611.895067pt;}
.y28d{bottom:611.958000pt;}
.y289{bottom:612.336000pt;}
.y2be{bottom:612.984133pt;}
.y5d{bottom:615.852667pt;}
.y36b{bottom:615.930667pt;}
.y2d3{bottom:616.570933pt;}
.y341{bottom:616.976667pt;}
.y1bf{bottom:617.124800pt;}
.yd8{bottom:618.464267pt;}
.y395{bottom:619.216533pt;}
.y3c6{bottom:619.433600pt;}
.y287{bottom:619.502667pt;}
.yb4{bottom:619.597333pt;}
.yf7{bottom:620.228000pt;}
.y189{bottom:620.778000pt;}
.y194{bottom:621.347600pt;}
.y3b3{bottom:621.396133pt;}
.y190{bottom:623.807333pt;}
.y163{bottom:624.755600pt;}
.y84{bottom:625.053200pt;}
.y1af{bottom:625.124800pt;}
.y335{bottom:626.747467pt;}
.y1e5{bottom:630.602533pt;}
.y2f{bottom:631.185733pt;}
.y5c{bottom:631.852667pt;}
.y2bd{bottom:632.290667pt;}
.y12d{bottom:632.308667pt;}
.y2d2{bottom:632.570933pt;}
.yd7{bottom:634.464267pt;}
.y394{bottom:635.216533pt;}
.y36a{bottom:635.237200pt;}
.y3c5{bottom:635.433600pt;}
.yf6{bottom:636.228000pt;}
.y1ae{bottom:636.431333pt;}
.y2ee{bottom:636.514267pt;}
.yb3{bottom:638.903867pt;}
.y27b{bottom:639.652400pt;}
.y277{bottom:639.664400pt;}
.y26d{bottom:640.905467pt;}
.y27f{bottom:640.919467pt;}
.y207{bottom:641.377067pt;}
.y334{bottom:643.030400pt;}
.y162{bottom:643.080933pt;}
.y274{bottom:643.288400pt;}
.y269{bottom:643.922133pt;}
.y8{bottom:644.388667pt;}
.y188{bottom:644.586000pt;}
.y27d{bottom:644.896400pt;}
.y279{bottom:644.908400pt;}
.y267{bottom:645.415467pt;}
.y283{bottom:646.498800pt;}
.y5b{bottom:647.852667pt;}
.y2d1{bottom:648.570933pt;}
.y26e{bottom:649.277467pt;}
.yd6{bottom:650.464267pt;}
.y2e{bottom:650.492267pt;}
.y393{bottom:651.216533pt;}
.y275{bottom:651.292400pt;}
.y3c4{bottom:651.433600pt;}
.y271{bottom:651.480133pt;}
.y266{bottom:651.498800pt;}
.y2bc{bottom:651.597333pt;}
.yf5{bottom:652.228133pt;}
.y1ad{bottom:652.431333pt;}
.y3b2{bottom:652.514267pt;}
.y268{bottom:654.495467pt;}
.y272{bottom:654.498800pt;}
.y369{bottom:654.543733pt;}
.y27c{bottom:656.188400pt;}
.y278{bottom:656.200400pt;}
.yb2{bottom:658.210400pt;}
.y27e{bottom:659.082133pt;}
.y333{bottom:659.313333pt;}
.y26b{bottom:659.870800pt;}
.y26f{bottom:660.150800pt;}
.y280{bottom:660.174133pt;}
.y161{bottom:661.598267pt;}
.y281{bottom:662.082133pt;}
.y282{bottom:663.165467pt;}
.y26a{bottom:663.175467pt;}
.y5a{bottom:663.852667pt;}
.y12e{bottom:664.244667pt;}
.y273{bottom:664.540400pt;}
.y2d0{bottom:664.570933pt;}
.y1e4{bottom:665.375867pt;}
.yd5{bottom:666.464267pt;}
.y3c3{bottom:667.433600pt;}
.y26c{bottom:667.449467pt;}
.y27a{bottom:667.696400pt;}
.y276{bottom:667.708400pt;}
.y7{bottom:667.947733pt;}
.yf4{bottom:668.228133pt;}
.y270{bottom:668.522800pt;}
.y2d{bottom:669.798800pt;}
.y187{bottom:669.908667pt;}
.y2bb{bottom:670.903867pt;}
.y83{bottom:671.289467pt;}
.y368{bottom:673.850267pt;}
.y332{bottom:675.596267pt;}
.yb1{bottom:677.516933pt;}
.y2b{bottom:677.798800pt;}
.y18f{bottom:679.178000pt;}
.y1aa{bottom:679.672267pt;}
.y59{bottom:679.852667pt;}
.y2cf{bottom:680.570933pt;}
.y135{bottom:682.186000pt;}
.yd4{bottom:682.464267pt;}
.y3c2{bottom:683.433600pt;}
.y2a{bottom:685.798800pt;}
.y82{bottom:687.289467pt;}
.y206{bottom:689.377067pt;}
.y2ba{bottom:690.210400pt;}
.y331{bottom:691.879200pt;}
.y265{bottom:693.028933pt;}
.y367{bottom:693.156800pt;}
.y186{bottom:695.231333pt;}
.y58{bottom:695.852667pt;}
.y134{bottom:696.362000pt;}
.y2ce{bottom:696.570933pt;}
.yb0{bottom:696.823467pt;}
.y392{bottom:697.452800pt;}
.y138{bottom:698.147200pt;}
.yd3{bottom:698.464267pt;}
.y3c1{bottom:699.433600pt;}
.y1e3{bottom:700.714533pt;}
.y6{bottom:701.546533pt;}
.y2c{bottom:701.798800pt;}
.y81{bottom:703.289467pt;}
.y330{bottom:708.162133pt;}
.y264{bottom:709.028933pt;}
.y2b9{bottom:709.516933pt;}
.y57{bottom:711.852667pt;}
.y2cd{bottom:712.570933pt;}
.y18e{bottom:712.628667pt;}
.y366{bottom:712.823467pt;}
.y391{bottom:713.452800pt;}
.yd2{bottom:714.464267pt;}
.y3c0{bottom:715.433600pt;}
.yaf{bottom:716.130000pt;}
.y133{bottom:718.666000pt;}
.y185{bottom:720.180667pt;}
.y262{bottom:720.809333pt;}
.y5{bottom:723.946400pt;}
.y32f{bottom:724.445067pt;}
.y261{bottom:724.684800pt;}
.y56{bottom:727.852667pt;}
.y2cc{bottom:728.570933pt;}
.y25e{bottom:728.808400pt;}
.y2b8{bottom:728.823467pt;}
.y29{bottom:729.039733pt;}
.y390{bottom:729.452800pt;}
.yd1{bottom:730.464267pt;}
.y3bf{bottom:731.433600pt;}
.y365{bottom:732.130000pt;}
.y32c{bottom:732.586533pt;}
.y80{bottom:734.407600pt;}
.yae{bottom:735.436667pt;}
.y205{bottom:737.569067pt;}
.y32e{bottom:740.445067pt;}
.y132{bottom:740.970000pt;}
.y25d{bottom:741.028933pt;}
.y363{bottom:741.783333pt;}
.yaa{bottom:743.436667pt;}
.y55{bottom:743.852667pt;}
.y184{bottom:744.372667pt;}
.y2cb{bottom:744.570933pt;}
.y38f{bottom:745.452800pt;}
.yd0{bottom:746.464267pt;}
.y3be{bottom:747.433600pt;}
.y2b7{bottom:748.130000pt;}
.y195{bottom:748.526267pt;}
.y32b{bottom:748.586533pt;}
.y260{bottom:749.016800pt;}
.y364{bottom:749.783333pt;}
.yad{bottom:751.436667pt;}
.y25f{bottom:753.141733pt;}
.y32d{bottom:756.728000pt;}
.y362{bottom:757.783333pt;}
.y18d{bottom:759.114000pt;}
.ya8{bottom:759.436667pt;}
.y54{bottom:759.852667pt;}
.y2ca{bottom:760.570933pt;}
.y38e{bottom:761.452800pt;}
.y28{bottom:762.464267pt;}
.y131{bottom:763.274000pt;}
.y3bd{bottom:763.433600pt;}
.yac{bottom:767.436667pt;}
.y183{bottom:770.068667pt;}
.y254{bottom:770.824000pt;}
.y25c{bottom:774.694800pt;}
.ya9{bottom:775.436667pt;}
.y2c9{bottom:776.570933pt;}
.y38d{bottom:777.452800pt;}
.y27{bottom:778.464267pt;}
.y32a{bottom:778.677600pt;}
.y256{bottom:778.824133pt;}
.y3bc{bottom:779.433600pt;}
.yab{bottom:783.436667pt;}
.y130{bottom:785.759333pt;}
.y253{bottom:786.699200pt;}
.y258{bottom:790.824133pt;}
.y53{bottom:790.970800pt;}
.y2c8{bottom:792.570933pt;}
.y182{bottom:794.260667pt;}
.y26{bottom:794.464267pt;}
.y329{bottom:794.677600pt;}
.y3bb{bottom:795.433600pt;}
.y257{bottom:796.990933pt;}
.y259{bottom:797.990800pt;}
.y25b{bottom:799.026800pt;}
.y18c{bottom:804.842000pt;}
.y12f{bottom:808.244667pt;}
.y52{bottom:808.570800pt;}
.y2c7{bottom:808.570933pt;}
.y196{bottom:809.379600pt;}
.y25a{bottom:810.320133pt;}
.y25{bottom:810.464267pt;}
.ya7{bottom:810.677600pt;}
.y3ba{bottom:811.433600pt;}
.y1{bottom:813.688667pt;}
.y23{bottom:838.609200pt;}
.y22{bottom:853.588667pt;}
.y51{bottom:857.155067pt;}
.y24{bottom:858.340400pt;}
.y50{bottom:858.462267pt;}
.h28{height:24.882812pt;}
.h2a{height:25.229167pt;}
.h1c{height:25.333333pt;}
.h2{height:25.784000pt;}
.h3{height:25.872000pt;}
.h1b{height:25.946667pt;}
.h17{height:26.581333pt;}
.hf{height:26.693333pt;}
.he{height:28.746667pt;}
.hd{height:30.175781pt;}
.h6{height:30.378667pt;}
.h8{height:30.549333pt;}
.h12{height:30.800000pt;}
.h7{height:31.253333pt;}
.h26{height:34.176000pt;}
.h11{height:34.272000pt;}
.h23{height:34.346667pt;}
.ha{height:34.368000pt;}
.h9{height:35.160000pt;}
.h1f{height:35.546875pt;}
.h1d{height:37.066667pt;}
.h19{height:37.973333pt;}
.hc{height:38.186667pt;}
.h3f{height:38.541667pt;}
.h1e{height:39.446933pt;}
.h22{height:40.001333pt;}
.hb{height:42.973333pt;}
.h31{height:44.160000pt;}
.h5{height:45.872053pt;}
.h38{height:47.554667pt;}
.h3a{height:48.000000pt;}
.h1a{height:49.066667pt;}
.h2b{height:49.333333pt;}
.h25{height:49.334667pt;}
.h36{height:50.830400pt;}
.h39{height:51.115033pt;}
.h16{height:53.045867pt;}
.h35{height:53.386667pt;}
.h21{height:53.760000pt;}
.h4{height:54.693333pt;}
.h3b{height:56.134400pt;}
.h33{height:56.976000pt;}
.h20{height:57.642133pt;}
.h29{height:57.960533pt;}
.h13{height:62.122667pt;}
.h2f{height:64.661333pt;}
.h37{height:65.573333pt;}
.h10{height:66.272000pt;}
.h3e{height:66.368000pt;}
.h2e{height:68.320000pt;}
.h34{height:71.733333pt;}
.h14{height:74.965333pt;}
.h18{height:78.986667pt;}
.h30{height:79.413333pt;}
.h2d{height:80.306667pt;}
.h3c{height:81.114667pt;}
.h3d{height:84.045333pt;}
.h2c{height:87.068800pt;}
.h27{height:87.306667pt;}
.h24{height:95.208960pt;}
.h32{height:97.152000pt;}
.h15{height:277.794667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w7{width:30.666667pt;}
.wa{width:37.333333pt;}
.w3{width:46.666667pt;}
.w4{width:61.334667pt;}
.w9{width:82.665333pt;}
.w8{width:92.000000pt;}
.w6{width:176.000000pt;}
.w5{width:298.666667pt;}
.w2{width:483.778667pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x87{left:2.250667pt;}
.xb6{left:5.084000pt;}
.x82{left:8.625200pt;}
.x83{left:14.875200pt;}
.xa3{left:18.542133pt;}
.xbe{left:20.291733pt;}
.x88{left:25.125733pt;}
.x84{left:30.125200pt;}
.xb3{left:40.625333pt;}
.x9a{left:47.292000pt;}
.x2{left:69.921200pt;}
.x76{left:73.956933pt;}
.x14{left:75.212667pt;}
.x1f{left:77.792533pt;}
.x77{left:79.055600pt;}
.x36{left:80.177467pt;}
.x35{left:82.400133pt;}
.x15{left:85.039333pt;}
.xc5{left:86.058933pt;}
.xd2{left:88.818800pt;}
.xc{left:89.935467pt;}
.xce{left:90.934533pt;}
.xc8{left:92.402400pt;}
.x5a{left:94.076267pt;}
.x56{left:94.971867pt;}
.x4c{left:96.542000pt;}
.x71{left:97.441333pt;}
.x6e{left:99.147867pt;}
.xd1{left:100.157467pt;}
.x4d{left:101.651333pt;}
.x72{left:102.561333pt;}
.x6f{left:104.267867pt;}
.x32{left:106.130533pt;}
.x59{left:109.521600pt;}
.x9{left:110.974800pt;}
.x73{left:112.801333pt;}
.x17{left:114.880267pt;}
.x16{left:115.987467pt;}
.x21{left:117.131200pt;}
.x20{left:118.592533pt;}
.x33{left:121.490533pt;}
.x37{left:123.174800pt;}
.x38{left:124.796133pt;}
.x34{left:126.578533pt;}
.x3{left:129.184800pt;}
.xc0{left:133.007733pt;}
.xb1{left:137.049733pt;}
.xb2{left:141.968400pt;}
.x5b{left:143.601600pt;}
.x55{left:147.509200pt;}
.x85{left:153.001600pt;}
.x30{left:154.197867pt;}
.x22{left:155.829867pt;}
.x1e{left:160.629867pt;}
.x39{left:161.830800pt;}
.x64{left:163.032000pt;}
.x49{left:165.041467pt;}
.xac{left:166.474267pt;}
.x65{left:167.556000pt;}
.x4{left:171.357200pt;}
.x57{left:172.369200pt;}
.x93{left:173.477733pt;}
.x1d{left:176.320667pt;}
.xa4{left:178.394267pt;}
.xcb{left:179.444000pt;}
.x86{left:181.042667pt;}
.xa5{left:184.272667pt;}
.xb4{left:185.424667pt;}
.x4a{left:188.787333pt;}
.xc9{left:190.268800pt;}
.x2f{left:191.232533pt;}
.xa8{left:192.767333pt;}
.x75{left:195.023600pt;}
.x58{left:196.914000pt;}
.x3a{left:198.118800pt;}
.xd0{left:199.585200pt;}
.x48{left:200.753467pt;}
.x97{left:205.977733pt;}
.xad{left:207.477600pt;}
.x19{left:216.359733pt;}
.x89{left:218.418400pt;}
.x67{left:220.370267pt;}
.x68{left:223.976400pt;}
.x99{left:226.060933pt;}
.x2e{left:227.893867pt;}
.x69{left:228.836000pt;}
.x79{left:231.394400pt;}
.x90{left:232.481733pt;}
.x3b{left:234.214800pt;}
.x47{left:236.092133pt;}
.x95{left:237.852667pt;}
.x96{left:238.851333pt;}
.x18{left:239.789600pt;}
.x9d{left:241.102667pt;}
.xaf{left:243.144400pt;}
.x5d{left:244.253333pt;}
.x7c{left:246.688000pt;}
.x94{left:252.500267pt;}
.x80{left:254.269333pt;}
.x5{left:255.472400pt;}
.x8b{left:257.385200pt;}
.x8d{left:258.430800pt;}
.x8a{left:261.598533pt;}
.x8c{left:262.640133pt;}
.x2d{left:264.928533pt;}
.x8e{left:269.098533pt;}
.x1{left:270.135467pt;}
.x46{left:272.188133pt;}
.x8f{left:275.096533pt;}
.x7b{left:276.686000pt;}
.x66{left:278.007067pt;}
.x4f{left:287.354533pt;}
.xc6{left:288.661200pt;}
.xc3{left:290.227200pt;}
.xcc{left:292.328267pt;}
.x6a{left:293.578533pt;}
.x5c{left:295.142933pt;}
.x6b{left:297.154667pt;}
.x6{left:298.081867pt;}
.x2c{left:301.973867pt;}
.xc2{left:303.143867pt;}
.x81{left:304.269333pt;}
.x45{left:306.961467pt;}
.x54{left:308.047867pt;}
.xb5{left:312.641333pt;}
.x7d{left:316.893333pt;}
.x4b{left:318.526000pt;}
.x7e{left:319.478667pt;}
.xd{left:322.900533pt;}
.xb7{left:324.095333pt;}
.x74{left:325.046667pt;}
.xcf{left:326.379867pt;}
.x31{left:328.722533pt;}
.xba{left:330.100400pt;}
.xae{left:331.562400pt;}
.x2b{left:332.779200pt;}
.xb9{left:334.306667pt;}
.xb8{left:335.725333pt;}
.xa6{left:337.606000pt;}
.x44{left:340.604133pt;}
.x50{left:341.690533pt;}
.xab{left:343.771333pt;}
.xaa{left:344.686000pt;}
.x23{left:346.517867pt;}
.xa9{left:347.980667pt;}
.x53{left:349.327867pt;}
.x70{left:355.286533pt;}
.xa{left:356.495200pt;}
.x51{left:359.077200pt;}
.x7a{left:360.390400pt;}
.x52{left:362.853200pt;}
.x9b{left:367.144267pt;}
.x2a{left:368.683200pt;}
.x7f{left:370.065333pt;}
.x6d{left:371.435333pt;}
.x43{left:372.924133pt;}
.x9e{left:375.216000pt;}
.xf{left:377.537733pt;}
.x1b{left:379.030400pt;}
.x9c{left:380.402667pt;}
.x7{left:382.154533pt;}
.x6c{left:383.417067pt;}
.xe{left:388.193600pt;}
.x1a{left:390.476667pt;}
.xa7{left:395.272667pt;}
.xc4{left:399.941200pt;}
.xcd{left:401.108533pt;}
.x1c{left:402.638533pt;}
.x91{left:404.821733pt;}
.x10{left:406.163333pt;}
.x92{left:407.407067pt;}
.x29{left:408.373867pt;}
.x3c{left:412.230800pt;}
.x42{left:413.553467pt;}
.xb{left:414.673600pt;}
.x24{left:420.597867pt;}
.x5e{left:422.940533pt;}
.xb0{left:426.844267pt;}
.x8{left:428.166400pt;}
.xbf{left:429.612400pt;}
.x5f{left:432.354533pt;}
.x60{left:433.542533pt;}
.x61{left:435.648267pt;}
.x98{left:437.394400pt;}
.xbb{left:443.115733pt;}
.xbc{left:444.529067pt;}
.xbd{left:445.527733pt;}
.x28{left:446.923200pt;}
.xc1{left:449.707600pt;}
.x3d{left:451.537467pt;}
.xa2{left:454.021333pt;}
.x41{left:454.940133pt;}
.xc7{left:455.986267pt;}
.x4e{left:457.701200pt;}
.x78{left:466.298267pt;}
.x9f{left:470.858533pt;}
.xa0{left:473.438533pt;}
.xa1{left:474.399867pt;}
.x3e{left:480.636133pt;}
.x27{left:485.099200pt;}
.x11{left:486.693067pt;}
.x13{left:488.625067pt;}
.x12{left:493.227067pt;}
.x40{left:497.841467pt;}
.x63{left:505.305867pt;}
.x62{left:508.455733pt;}
.xca{left:512.828000pt;}
.x26{left:523.648533pt;}
.x3f{left:525.990800pt;}
.x25{left:529.835200pt;}
}




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