
    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_f96c93937cc1390ba5ff506d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.191000;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_40b1251b25a3ab4c8a665405.woff')format("woff");}.ff2{font-family:ff2;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_82d702c8a64243d1cc9f8d8d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_57344459a39f9b3f35e43bc7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.997000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2eb565fc2ccfd3ee3bee67f0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739000;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_5a89d2b25223fd693ec35d48.woff')format("woff");}.ff6{font-family:ff6;line-height:0.734000;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_300f8da8062c84c229081cf7.woff')format("woff");}.ff7{font-family:ff7;line-height:0.803000;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_8246fe2724ee7e33dd129ecd.woff')format("woff");}.ff8{font-family:ff8;line-height:0.665000;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_ae883a9e192aa3ad3347eae6.woff')format("woff");}.ff9{font-family:ff9;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_79bd228d1cd4d2089c9edd3b.woff')format("woff");}.ffa{font-family:ffa;line-height:1.006348;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_f0da3a997e41041b3ec5ed5f.woff')format("woff");}.ffb{font-family:ffb;line-height:1.206055;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_bf1cede870e991662c53b1ef.woff')format("woff");}.ffc{font-family:ffc;line-height:0.703613;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_7520fcc4152ada672504173c.woff')format("woff");}.ffd{font-family:ffd;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d2873bf2a6aee7683beae1c5.woff')format("woff");}.ffe{font-family:ffe;line-height:1.006348;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_e568353f41a87398a8fa4e5d.woff')format("woff");}.fff{font-family:fff;line-height:1.206055;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_bd1dd45510d81bc8bfbd4214.woff')format("woff");}.ff10{font-family:ff10;line-height:0.703613;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_53b953aee0c307b67792d1a7.woff')format("woff");}.ff11{font-family:ff11;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_c66c9eda60ade1e503539d54.woff')format("woff");}.ff12{font-family:ff12;line-height:1.006348;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_a9905257ccd1a32570c3a77b.woff')format("woff");}.ff13{font-family:ff13;line-height:1.206055;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_bd1dd45510d81bc8bfbd4214.woff')format("woff");}.ff14{font-family:ff14;line-height:0.703613;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_f0be5df3a2e2fc7f219a8a50.woff')format("woff");}.ff15{font-family:ff15;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_639683ddc51488bed1941f3c.woff')format("woff");}.ff16{font-family:ff16;line-height:1.006348;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_927f8886c07a4ed2c0e4b22e.woff')format("woff");}.ff17{font-family:ff17;line-height:1.206055;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_bd1dd45510d81bc8bfbd4214.woff')format("woff");}.ff18{font-family:ff18;line-height:0.703613;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_2a98f7fbcfc8fb9598a99c96.woff')format("woff");}.ff19{font-family:ff19;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_ba6bdeb58c686bf6a975fa11.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.006348;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_090740e0b0bfd56b20f4fc84.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.206055;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_ad03eb2f3371889f01ce6413.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.703613;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_8584b15e2213d44e2da287d4.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_f2568c89523c2599913b5f8d.woff')format("woff");}.ff1e{font-family:ff1e;line-height:1.006348;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_dc53f8462575fe9fcfcf1fcd.woff')format("woff");}.ff1f{font-family:ff1f;line-height:1.206055;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_775bf8ef595ff9f22661aee8.woff')format("woff");}.ff20{font-family:ff20;line-height:0.708000;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;}
.ma{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.952000px;}
.v4{vertical-align:-10.920000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls56{letter-spacing:-3.061912px;}
.ls2a{letter-spacing:-2.665120px;}
.lsb3{letter-spacing:-1.877580px;}
.ls53{letter-spacing:-0.986040px;}
.ls2d{letter-spacing:-0.529056px;}
.ls58{letter-spacing:-0.462924px;}
.ls51{letter-spacing:-0.397980px;}
.ls4e{letter-spacing:-0.368280px;}
.lsa1{letter-spacing:-0.333450px;}
.lsb6{letter-spacing:-0.331261px;}
.ls98{letter-spacing:-0.256500px;}
.ls52{letter-spacing:-0.255420px;}
.ls9b{letter-spacing:-0.230850px;}
.ls9a{letter-spacing:-0.220590px;}
.ls7a{letter-spacing:-0.198396px;}
.ls78{letter-spacing:-0.178200px;}
.ls2b{letter-spacing:-0.171943px;}
.ls55{letter-spacing:-0.152104px;}
.lsb7{letter-spacing:-0.142785px;}
.ls25{letter-spacing:-0.138877px;}
.ls7f{letter-spacing:-0.138276px;}
.ls59{letter-spacing:-0.112424px;}
.ls9c{letter-spacing:-0.102600px;}
.ls2c{letter-spacing:-0.099198px;}
.ls28{letter-spacing:-0.092585px;}
.ls4d{letter-spacing:-0.083160px;}
.ls99{letter-spacing:-0.071820px;}
.lsb5{letter-spacing:-0.061560px;}
.ls80{letter-spacing:-0.060120px;}
.ls1f{letter-spacing:-0.059519px;}
.ls26{letter-spacing:-0.052906px;}
.ls7b{letter-spacing:-0.042084px;}
.ls4f{letter-spacing:-0.035640px;}
.ls54{letter-spacing:-0.029700px;}
.ls79{letter-spacing:-0.027000px;}
.ls27{letter-spacing:-0.026453px;}
.lsbd{letter-spacing:-0.025650px;}
.ls9e{letter-spacing:-0.020520px;}
.ls22{letter-spacing:-0.019840px;}
.lsa2{letter-spacing:-0.015390px;}
.ls20{letter-spacing:-0.013226px;}
.ls1e{letter-spacing:-0.010534px;}
.ls9d{letter-spacing:-0.010260px;}
.ls77{letter-spacing:-0.009576px;}
.ls97{letter-spacing:-0.009097px;}
.ls21{letter-spacing:-0.006613px;}
.ls50{letter-spacing:-0.005940px;}
.ls1d{letter-spacing:-0.005267px;}
.lsb4{letter-spacing:-0.005130px;}
.ls76{letter-spacing:-0.004788px;}
.ls96{letter-spacing:-0.004549px;}
.ls9{letter-spacing:0.000000px;}
.lsca{letter-spacing:0.000017px;}
.ls41{letter-spacing:0.000088px;}
.lsd4{letter-spacing:0.000422px;}
.ls73{letter-spacing:0.000541px;}
.ls49{letter-spacing:0.000612px;}
.lsc1{letter-spacing:0.000638px;}
.ls91{letter-spacing:0.000800px;}
.ls48{letter-spacing:0.000840px;}
.ls74{letter-spacing:0.001102px;}
.lscf{letter-spacing:0.001155px;}
.lsc9{letter-spacing:0.001283px;}
.ls44{letter-spacing:0.001328px;}
.lsb2{letter-spacing:0.001502px;}
.lsc3{letter-spacing:0.001596px;}
.ls92{letter-spacing:0.001746px;}
.ls93{letter-spacing:0.001834px;}
.ls5{letter-spacing:0.001952px;}
.lsbc{letter-spacing:0.002086px;}
.lse0{letter-spacing:0.002096px;}
.lsc8{letter-spacing:0.002259px;}
.lsc6{letter-spacing:0.002332px;}
.lsc{letter-spacing:0.002517px;}
.ls46{letter-spacing:0.002729px;}
.ls90{letter-spacing:0.002780px;}
.ls42{letter-spacing:0.002841px;}
.ls94{letter-spacing:0.003341px;}
.lsc2{letter-spacing:0.003529px;}
.lsc0{letter-spacing:0.003531px;}
.lsc4{letter-spacing:0.003699px;}
.ls6{letter-spacing:0.004247px;}
.lsc7{letter-spacing:0.004667px;}
.ls75{letter-spacing:0.004749px;}
.lsd3{letter-spacing:0.004800px;}
.ls43{letter-spacing:0.004839px;}
.ls8d{letter-spacing:0.005130px;}
.ls5f{letter-spacing:0.005400px;}
.ls33{letter-spacing:0.005940px;}
.ls12{letter-spacing:0.006613px;}
.lsab{letter-spacing:0.006840px;}
.ls6e{letter-spacing:0.007200px;}
.ls1c{letter-spacing:0.007920px;}
.ls87{letter-spacing:0.010260px;}
.ls5e{letter-spacing:0.010800px;}
.ls30{letter-spacing:0.011880px;}
.ls3b{letter-spacing:0.013226px;}
.ls85{letter-spacing:0.015390px;}
.ls5c{letter-spacing:0.016200px;}
.ls2e{letter-spacing:0.017820px;}
.ls6d{letter-spacing:0.018036px;}
.ls40{letter-spacing:0.019840px;}
.lsba{letter-spacing:0.020520px;}
.lsad{letter-spacing:0.022846px;}
.ls31{letter-spacing:0.023760px;}
.ls6a{letter-spacing:0.024048px;}
.ls86{letter-spacing:0.025650px;}
.ls5d{letter-spacing:0.027000px;}
.ls2f{letter-spacing:0.029700px;}
.ls8f{letter-spacing:0.030780px;}
.ls62{letter-spacing:0.032400px;}
.ls3c{letter-spacing:0.033066px;}
.lsb0{letter-spacing:0.034268px;}
.ls36{letter-spacing:0.035640px;}
.lsa5{letter-spacing:0.035910px;}
.ls67{letter-spacing:0.037800px;}
.lsbb{letter-spacing:0.041040px;}
.ls3a{letter-spacing:0.041580px;}
.ls66{letter-spacing:0.043200px;}
.lsaf{letter-spacing:0.045691px;}
.ls8e{letter-spacing:0.046170px;}
.ls18{letter-spacing:0.046292px;}
.ls39{letter-spacing:0.047520px;}
.ls72{letter-spacing:0.048096px;}
.ls68{letter-spacing:0.048600px;}
.lsa7{letter-spacing:0.051300px;}
.lsac{letter-spacing:0.051403px;}
.ls1a{letter-spacing:0.052906px;}
.ls35{letter-spacing:0.053460px;}
.lsa6{letter-spacing:0.056430px;}
.lsb1{letter-spacing:0.057114px;}
.ls64{letter-spacing:0.059400px;}
.ls11{letter-spacing:0.059519px;}
.ls69{letter-spacing:0.060120px;}
.ls8b{letter-spacing:0.061560px;}
.lsaa{letter-spacing:0.062825px;}
.ls14{letter-spacing:0.066132px;}
.lsa9{letter-spacing:0.068537px;}
.ls10{letter-spacing:0.071280px;}
.ls6b{letter-spacing:0.072144px;}
.ls3d{letter-spacing:0.072745px;}
.ls70{letter-spacing:0.078156px;}
.ls17{letter-spacing:0.079358px;}
.ls8c{letter-spacing:0.082080px;}
.ls38{letter-spacing:0.083160px;}
.ls71{letter-spacing:0.084168px;}
.ls16{letter-spacing:0.085972px;}
.ls65{letter-spacing:0.086400px;}
.ls6c{letter-spacing:0.090180px;}
.ls1b{letter-spacing:0.092585px;}
.ls6f{letter-spacing:0.096192px;}
.lsae{letter-spacing:0.097094px;}
.ls3f{letter-spacing:0.099198px;}
.ls24{letter-spacing:0.105811px;}
.lsf{letter-spacing:0.112424px;}
.ls7d{letter-spacing:0.114228px;}
.lsa8{letter-spacing:0.117990px;}
.ls13{letter-spacing:0.119038px;}
.ls9f{letter-spacing:0.123120px;}
.ls63{letter-spacing:0.129600px;}
.ls88{letter-spacing:0.133380px;}
.ls60{letter-spacing:0.140400px;}
.ls37{letter-spacing:0.148500px;}
.ls89{letter-spacing:0.148770px;}
.ls61{letter-spacing:0.151200px;}
.ls3e{letter-spacing:0.152104px;}
.ls32{letter-spacing:0.154440px;}
.ls57{letter-spacing:0.165330px;}
.ls34{letter-spacing:0.166320px;}
.ls84{letter-spacing:0.168298px;}
.lsb9{letter-spacing:0.172847px;}
.ls8a{letter-spacing:0.174420px;}
.ls5b{letter-spacing:0.177156px;}
.ls83{letter-spacing:0.181944px;}
.ls15{letter-spacing:0.185170px;}
.ls5a{letter-spacing:0.191520px;}
.ls7c{letter-spacing:0.192384px;}
.lse{letter-spacing:0.194872px;}
.lsd{letter-spacing:0.210672px;}
.ls23{letter-spacing:0.211622px;}
.ls19{letter-spacing:0.231462px;}
.lsa{letter-spacing:0.542815px;}
.lsb{letter-spacing:0.548815px;}
.ls4b{letter-spacing:0.569146px;}
.ls95{letter-spacing:0.806976px;}
.lsa0{letter-spacing:0.861840px;}
.ls29{letter-spacing:0.899395px;}
.ls4c{letter-spacing:2.983200px;}
.ls1{letter-spacing:2.989200px;}
.ls81{letter-spacing:2.991662px;}
.ls3{letter-spacing:2.998354px;}
.lscd{letter-spacing:3.559200px;}
.ls7e{letter-spacing:5.140260px;}
.ls0{letter-spacing:10.461300px;}
.ls8{letter-spacing:11.954850px;}
.lse3{letter-spacing:13.134073px;}
.lse2{letter-spacing:13.169119px;}
.lsda{letter-spacing:13.298174px;}
.ls45{letter-spacing:13.298215px;}
.lsd2{letter-spacing:13.448400px;}
.ls47{letter-spacing:13.450090px;}
.lse1{letter-spacing:13.450800px;}
.lsd1{letter-spacing:13.454400px;}
.lsdb{letter-spacing:13.477965px;}
.lsd6{letter-spacing:13.565567px;}
.lsdf{letter-spacing:13.568545px;}
.lsde{letter-spacing:13.703461px;}
.lsd7{letter-spacing:13.739809px;}
.lsce{letter-spacing:13.889035px;}
.lsa4{letter-spacing:14.094088px;}
.lsbe{letter-spacing:14.100088px;}
.lsa3{letter-spacing:14.122800px;}
.lscc{letter-spacing:14.657476px;}
.lsc5{letter-spacing:15.565141px;}
.lsd0{letter-spacing:16.676400px;}
.lscb{letter-spacing:17.041612px;}
.lsd5{letter-spacing:17.273929px;}
.lsdd{letter-spacing:17.585694px;}
.ls4a{letter-spacing:17.929200px;}
.ls82{letter-spacing:17.931662px;}
.lsb8{letter-spacing:17.935200px;}
.lsbf{letter-spacing:18.013200px;}
.lsd9{letter-spacing:18.591576px;}
.lsdc{letter-spacing:18.762165px;}
.lsd8{letter-spacing:29.332753px;}
.ls2{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls7{letter-spacing:64.321654px;}
.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;}
}
.ws19c{word-spacing:-47.337600px;}
.ws53{word-spacing:-39.600000px;}
.wsd9{word-spacing:-36.000000px;}
.ws8{word-spacing:-26.899200px;}
.ws50{word-spacing:-16.744622px;}
.ws51{word-spacing:-16.533000px;}
.ws52{word-spacing:-16.394123px;}
.ws54{word-spacing:-16.003944px;}
.ws7d{word-spacing:-15.016320px;}
.wsa{word-spacing:-14.943900px;}
.ws7a{word-spacing:-14.861880px;}
.ws7b{word-spacing:-14.850000px;}
.ws7c{word-spacing:-14.452020px;}
.wsc{word-spacing:-14.355754px;}
.wsd7{word-spacing:-13.629600px;}
.wsd8{word-spacing:-13.500000px;}
.ws7f{word-spacing:-13.449600px;}
.ws4e{word-spacing:-13.377672px;}
.ws4f{word-spacing:-13.167000px;}
.ws14f{word-spacing:-12.948120px;}
.ws10c{word-spacing:-12.825000px;}
.wsd5{word-spacing:-12.161520px;}
.wsd6{word-spacing:-11.970000px;}
.ws11{word-spacing:-11.955150px;}
.ws10a{word-spacing:-11.553444px;}
.ws10b{word-spacing:-11.371500px;}
.wsf{word-spacing:-11.357400px;}
.ws6{word-spacing:-10.460700px;}
.ws61{word-spacing:-3.974533px;}
.ws73{word-spacing:-3.908401px;}
.ws60{word-spacing:-3.862109px;}
.ws74{word-spacing:-3.829043px;}
.ws5f{word-spacing:-3.518222px;}
.wsbd{word-spacing:-3.511609px;}
.wsca{word-spacing:-3.491770px;}
.wsbc{word-spacing:-3.366119px;}
.ws27{word-spacing:-3.347434px;}
.ws197{word-spacing:-3.227882px;}
.wsba{word-spacing:-3.214015px;}
.ws1a9{word-spacing:-3.168107px;}
.wsb6{word-spacing:-3.167723px;}
.ws70{word-spacing:-3.154496px;}
.ws65{word-spacing:-3.147883px;}
.ws1ae{word-spacing:-3.108331px;}
.ws141{word-spacing:-3.084156px;}
.wsbb{word-spacing:-3.061912px;}
.wsb7{word-spacing:-3.048685px;}
.ws2d{word-spacing:-3.048556px;}
.wsbe{word-spacing:-3.035459px;}
.ws142{word-spacing:-3.032753px;}
.ws64{word-spacing:-2.731252px;}
.ws72{word-spacing:-2.718025px;}
.ws71{word-spacing:-2.572535px;}
.ws1ac{word-spacing:-2.391024px;}
.ws1fa{word-spacing:-2.367130px;}
.ws119{word-spacing:-2.303370px;}
.ws1a1{word-spacing:-2.271473px;}
.ws19d{word-spacing:-2.211697px;}
.ws194{word-spacing:-2.151922px;}
.ws103{word-spacing:-2.146284px;}
.ws193{word-spacing:-2.092146px;}
.ws4b{word-spacing:-2.032370px;}
.wse9{word-spacing:-2.008800px;}
.wse8{word-spacing:-2.003400px;}
.wse6{word-spacing:-1.992600px;}
.ws117{word-spacing:-1.990440px;}
.wse7{word-spacing:-1.981800px;}
.ws1f{word-spacing:-1.972595px;}
.ws114{word-spacing:-1.959660px;}
.ws113{word-spacing:-1.892970px;}
.ws1b6{word-spacing:-1.882944px;}
.ws11a{word-spacing:-1.857060px;}
.ws16b{word-spacing:-1.853044px;}
.ws115{word-spacing:-1.805760px;}
.wsea{word-spacing:-1.798200px;}
.ws190{word-spacing:-1.793268px;}
.ws102{word-spacing:-1.785564px;}
.ws118{word-spacing:-1.774980px;}
.ws163{word-spacing:-1.721549px;}
.ws13a{word-spacing:-1.690574px;}
.ws116{word-spacing:-1.656990px;}
.ws132{word-spacing:-1.651860px;}
.ws80{word-spacing:-1.613952px;}
.ws20{word-spacing:-1.613941px;}
.ws130{word-spacing:-1.590300px;}
.ws131{word-spacing:-1.585170px;}
.wsb9{word-spacing:-1.567328px;}
.ws136{word-spacing:-1.559520px;}
.wsb8{word-spacing:-1.554102px;}
.ws137{word-spacing:-1.544130px;}
.wsd1{word-spacing:-1.514423px;}
.ws1a2{word-spacing:-1.494390px;}
.wsd2{word-spacing:-1.481357px;}
.ws45{word-spacing:-1.434614px;}
.wsfc{word-spacing:-1.412820px;}
.ws129{word-spacing:-1.374839px;}
.wsfd{word-spacing:-1.364724px;}
.ws11c{word-spacing:-1.313280px;}
.ws11b{word-spacing:-1.251720px;}
.ws81{word-spacing:-1.237363px;}
.ws16d{word-spacing:-1.203835px;}
.ws16f{word-spacing:-1.195512px;}
.ws31{word-spacing:-1.135736px;}
.ws78{word-spacing:-1.071338px;}
.wsf7{word-spacing:-1.046088px;}
.wsab{word-spacing:-1.027620px;}
.ws187{word-spacing:-1.016185px;}
.wsaa{word-spacing:-1.015740px;}
.wsf6{word-spacing:-1.010016px;}
.wsa6{word-spacing:-0.997920px;}
.ws1a6{word-spacing:-0.956410px;}
.wsf3{word-spacing:-0.934200px;}
.wsf2{word-spacing:-0.923400px;}
.wsee{word-spacing:-0.907200px;}
.ws94{word-spacing:-0.896634px;}
.ws15e{word-spacing:-0.861840px;}
.ws2f{word-spacing:-0.836858px;}
.ws87{word-spacing:-0.806976px;}
.ws77{word-spacing:-0.800197px;}
.ws6c{word-spacing:-0.780358px;}
.ws18b{word-spacing:-0.777083px;}
.ws3a{word-spacing:-0.717307px;}
.ws92{word-spacing:-0.657532px;}
.ws18a{word-spacing:-0.597756px;}
.wsde{word-spacing:-0.591782px;}
.ws76{word-spacing:-0.588575px;}
.wse2{word-spacing:-0.537980px;}
.ws75{word-spacing:-0.515830px;}
.wsc1{word-spacing:-0.502603px;}
.ws176{word-spacing:-0.478205px;}
.ws10e{word-spacing:-0.430387px;}
.ws33{word-spacing:-0.418429px;}
.ws1e8{word-spacing:-0.376589px;}
.ws17{word-spacing:-0.358654px;}
.ws208{word-spacing:-0.322790px;}
.ws56{word-spacing:-0.305474px;}
.ws30{word-spacing:-0.298878px;}
.ws5c{word-spacing:-0.284368px;}
.wsb0{word-spacing:-0.277754px;}
.wse3{word-spacing:-0.277704px;}
.ws1b0{word-spacing:-0.268992px;}
.ws6b{word-spacing:-0.264528px;}
.ws110{word-spacing:-0.263819px;}
.ws1e1{word-spacing:-0.259698px;}
.ws2e{word-spacing:-0.239102px;}
.ws150{word-spacing:-0.215194px;}
.ws1a{word-spacing:-0.179327px;}
.ws133{word-spacing:-0.174420px;}
.ws82{word-spacing:-0.161395px;}
.ws134{word-spacing:-0.148770px;}
.ws17d{word-spacing:-0.128039px;}
.ws29{word-spacing:-0.119551px;}
.ws88{word-spacing:-0.107597px;}
.ws139{word-spacing:-0.102600px;}
.ws57{word-spacing:-0.084269px;}
.wse4{word-spacing:-0.076608px;}
.ws111{word-spacing:-0.072778px;}
.ws169{word-spacing:-0.064310px;}
.ws5d{word-spacing:-0.063360px;}
.wsb{word-spacing:-0.059776px;}
.ws55{word-spacing:-0.053798px;}
.ws12{word-spacing:-0.047821px;}
.ws3{word-spacing:-0.041843px;}
.ws203{word-spacing:-0.009206px;}
.ws205{word-spacing:-0.006490px;}
.ws91{word-spacing:-0.004820px;}
.ws1a3{word-spacing:-0.002422px;}
.ws1c4{word-spacing:-0.001603px;}
.ws0{word-spacing:0.000000px;}
.ws1a4{word-spacing:0.000153px;}
.ws1c6{word-spacing:0.001978px;}
.ws79{word-spacing:0.019840px;}
.wsf5{word-spacing:0.036072px;}
.ws2{word-spacing:0.041843px;}
.wsda{word-spacing:0.053798px;}
.wsb2{word-spacing:0.059519px;}
.ws2c{word-spacing:0.059776px;}
.ws11d{word-spacing:0.092340px;}
.wsb3{word-spacing:0.092585px;}
.wsc0{word-spacing:0.105811px;}
.ws10d{word-spacing:0.107597px;}
.ws1b{word-spacing:0.119551px;}
.ws5e{word-spacing:0.125651px;}
.wsb1{word-spacing:0.132264px;}
.wsf4{word-spacing:0.135000px;}
.ws13{word-spacing:0.143462px;}
.wsac{word-spacing:0.148500px;}
.ws121{word-spacing:0.159030px;}
.ws89{word-spacing:0.161395px;}
.ws138{word-spacing:0.174420px;}
.ws15{word-spacing:0.179327px;}
.ws122{word-spacing:0.189810px;}
.ws10{word-spacing:0.191282px;}
.wsc2{word-spacing:0.198396px;}
.ws7e{word-spacing:0.215194px;}
.wsd{word-spacing:0.239102px;}
.ws162{word-spacing:0.268992px;}
.wse{word-spacing:0.298878px;}
.ws1f2{word-spacing:0.322790px;}
.ws41{word-spacing:0.358654px;}
.wsb5{word-spacing:0.390179px;}
.wsd0{word-spacing:0.396792px;}
.ws18{word-spacing:0.418429px;}
.wsdd{word-spacing:0.430387px;}
.wsce{word-spacing:0.436471px;}
.wsb4{word-spacing:0.469537px;}
.ws4c{word-spacing:0.478205px;}
.ws1e{word-spacing:0.537980px;}
.ws1ab{word-spacing:0.562500px;}
.wsa1{word-spacing:0.564300px;}
.wsa2{word-spacing:0.588060px;}
.ws93{word-spacing:0.597756px;}
.wscf{word-spacing:0.615028px;}
.ws34{word-spacing:0.657532px;}
.ws198{word-spacing:0.717307px;}
.ws143{word-spacing:0.742482px;}
.ws1b8{word-spacing:0.753178px;}
.ws42{word-spacing:0.777083px;}
.ws5b{word-spacing:0.786971px;}
.ws6d{word-spacing:0.793584px;}
.ws19{word-spacing:0.836858px;}
.wsa3{word-spacing:0.855360px;}
.ws1f5{word-spacing:0.860774px;}
.ws135{word-spacing:0.866970px;}
.ws90{word-spacing:0.896634px;}
.ws5a{word-spacing:0.912622px;}
.ws8f{word-spacing:0.956410px;}
.ws16{word-spacing:1.016185px;}
.ws149{word-spacing:1.075961px;}
.ws14e{word-spacing:1.135736px;}
.ws17a{word-spacing:1.195512px;}
.ws6f{word-spacing:1.203602px;}
.ws1d{word-spacing:1.255288px;}
.ws1af{word-spacing:1.291162px;}
.ws14d{word-spacing:1.315063px;}
.ws59{word-spacing:1.355706px;}
.ws177{word-spacing:1.374839px;}
.ws6e{word-spacing:1.388772px;}
.ws28{word-spacing:1.434614px;}
.wsdf{word-spacing:1.494390px;}
.ws1ba{word-spacing:1.506355px;}
.ws11e{word-spacing:1.539000px;}
.ws2a{word-spacing:1.554166px;}
.ws123{word-spacing:1.560154px;}
.ws179{word-spacing:1.597186px;}
.ws154{word-spacing:1.605690px;}
.ws128{word-spacing:1.613941px;}
.ws126{word-spacing:1.667750px;}
.ws8e{word-spacing:1.673717px;}
.ws3c{word-spacing:1.733492px;}
.ws13d{word-spacing:1.747688px;}
.ws13e{word-spacing:1.776245px;}
.ws22{word-spacing:1.793268px;}
.wsdc{word-spacing:1.829146px;}
.wsad{word-spacing:1.845083px;}
.ws161{word-spacing:1.846800px;}
.ws3e{word-spacing:1.853044px;}
.ws153{word-spacing:1.872450px;}
.ws160{word-spacing:1.877580px;}
.ws157{word-spacing:1.882710px;}
.ws155{word-spacing:1.898100px;}
.ws156{word-spacing:1.903230px;}
.ws127{word-spacing:1.912819px;}
.ws15f{word-spacing:1.913490px;}
.ws1c0{word-spacing:1.936742px;}
.wsf1{word-spacing:1.944000px;}
.ws25{word-spacing:1.972595px;}
.wsf0{word-spacing:1.976400px;}
.wsef{word-spacing:2.014200px;}
.ws18c{word-spacing:2.032370px;}
.wsc6{word-spacing:2.036866px;}
.ws1a7{word-spacing:2.092146px;}
.wsa9{word-spacing:2.138400px;}
.ws18e{word-spacing:2.151922px;}
.wsa8{word-spacing:2.174040px;}
.ws105{word-spacing:2.194380px;}
.ws1e9{word-spacing:2.205734px;}
.ws104{word-spacing:2.206404px;}
.wsa7{word-spacing:2.215620px;}
.ws19f{word-spacing:2.271473px;}
.ws191{word-spacing:2.331248px;}
.ws67{word-spacing:2.400592px;}
.wsc7{word-spacing:2.420431px;}
.ws17b{word-spacing:2.450800px;}
.wsc5{word-spacing:2.466724px;}
.wsc4{word-spacing:2.479950px;}
.ws5{word-spacing:2.494948px;}
.ws7{word-spacing:2.510252px;}
.ws195{word-spacing:2.510575px;}
.ws11f{word-spacing:2.523960px;}
.ws146{word-spacing:2.528525px;}
.ws66{word-spacing:2.532856px;}
.ws120{word-spacing:2.539350px;}
.ws164{word-spacing:2.630126px;}
.ws16a{word-spacing:2.689902px;}
.ws96{word-spacing:2.749678px;}
.wsc3{word-spacing:2.790770px;}
.ws1b1{word-spacing:2.896469px;}
.ws167{word-spacing:2.988780px;}
.ws1b5{word-spacing:3.003085px;}
.ws12a{word-spacing:3.012710px;}
.wsfa{word-spacing:3.018024px;}
.ws39{word-spacing:3.108331px;}
.ws38{word-spacing:3.168107px;}
.ws1d2{word-spacing:3.218304px;}
.ws1db{word-spacing:3.218746px;}
.ws1c2{word-spacing:3.220589px;}
.ws1f9{word-spacing:3.220982px;}
.ws206{word-spacing:3.222490px;}
.ws207{word-spacing:3.222576px;}
.ws1fb{word-spacing:3.224563px;}
.wsa4{word-spacing:3.225420px;}
.ws1bd{word-spacing:3.227510px;}
.ws1d1{word-spacing:3.227904px;}
.wsfb{word-spacing:3.246480px;}
.ws15d{word-spacing:3.247290px;}
.wsf8{word-spacing:3.264516px;}
.ws124{word-spacing:3.281702px;}
.ws19b{word-spacing:3.287658px;}
.wsa5{word-spacing:3.290760px;}
.ws13f{word-spacing:3.312612px;}
.wsed{word-spacing:3.418200px;}
.ws86{word-spacing:3.443098px;}
.ws140{word-spacing:3.443974px;}
.ws13b{word-spacing:3.449686px;}
.ws1eb{word-spacing:3.496896px;}
.ws40{word-spacing:3.526760px;}
.wsf9{word-spacing:3.535056px;}
.ws186{word-spacing:3.586536px;}
.ws125{word-spacing:3.658291px;}
.ws2b{word-spacing:3.706087px;}
.ws32{word-spacing:3.765863px;}
.ws1ad{word-spacing:3.825638px;}
.ws14{word-spacing:3.869002px;}
.ws1bf{word-spacing:3.873485px;}
.ws14a{word-spacing:3.885414px;}
.ws36{word-spacing:3.945190px;}
.ws3d{word-spacing:4.004965px;}
.ws1d6{word-spacing:4.034880px;}
.ws1c{word-spacing:4.064741px;}
.ws3f{word-spacing:4.124516px;}
.ws1ed{word-spacing:4.142477px;}
.ws13c{word-spacing:4.186456px;}
.ws1e6{word-spacing:4.196275px;}
.ws15c{word-spacing:4.201470px;}
.ws15b{word-spacing:4.227120px;}
.wse1{word-spacing:4.244068px;}
.wse0{word-spacing:4.303843px;}
.ws24{word-spacing:4.303872px;}
.ws106{word-spacing:4.346676px;}
.ws107{word-spacing:4.352688px;}
.ws192{word-spacing:4.363619px;}
.wsec{word-spacing:4.422600px;}
.ws182{word-spacing:4.423394px;}
.wseb{word-spacing:4.449600px;}
.ws184{word-spacing:4.450127px;}
.ws18f{word-spacing:4.483170px;}
.ws158{word-spacing:4.540050px;}
.ws188{word-spacing:4.542946px;}
.ws15a{word-spacing:4.601610px;}
.ws1f7{word-spacing:4.626662px;}
.ws159{word-spacing:4.642650px;}
.ws19a{word-spacing:4.662497px;}
.ws85{word-spacing:4.680461px;}
.wsc9{word-spacing:4.761504px;}
.ws8c{word-spacing:4.782048px;}
.wsc8{word-spacing:4.801183px;}
.ws144{word-spacing:4.826133px;}
.ws145{word-spacing:4.831844px;}
.ws37{word-spacing:4.901599px;}
.wsfe{word-spacing:5.026032px;}
.wsff{word-spacing:5.074128px;}
.ws1d8{word-spacing:5.164646px;}
.ws14b{word-spacing:5.200477px;}
.ws62{word-spacing:5.250881px;}
.ws8b{word-spacing:5.320028px;}
.ws14c{word-spacing:5.379804px;}
.ws100{word-spacing:5.410800px;}
.ws18d{word-spacing:5.439580px;}
.ws1f8{word-spacing:5.487437px;}
.ws165{word-spacing:5.499355px;}
.ws49{word-spacing:5.618906px;}
.ws63{word-spacing:5.660899px;}
.ws43{word-spacing:5.678682px;}
.ws1b4{word-spacing:5.702630px;}
.ws46{word-spacing:5.738458px;}
.ws101{word-spacing:5.759496px;}
.ws12f{word-spacing:5.955930px;}
.ws12c{word-spacing:5.976450px;}
.ws185{word-spacing:5.977560px;}
.ws12d{word-spacing:5.981580px;}
.ws12e{word-spacing:5.986710px;}
.ws8d{word-spacing:6.037336px;}
.ws1aa{word-spacing:6.097111px;}
.ws1d9{word-spacing:6.186816px;}
.ws108{word-spacing:6.354684px;}
.wsbf{word-spacing:6.394964px;}
.ws1cf{word-spacing:6.509606px;}
.ws95{word-spacing:6.515540px;}
.ws180{word-spacing:6.635092px;}
.ws189{word-spacing:6.694867px;}
.ws109{word-spacing:6.775524px;}
.ws3b{word-spacing:6.814418px;}
.ws1b2{word-spacing:7.047590px;}
.ws199{word-spacing:7.173072px;}
.wscb{word-spacing:7.215001px;}
.ws8a{word-spacing:7.232848px;}
.ws98{word-spacing:7.312140px;}
.ws97{word-spacing:7.318080px;}
.ws9a{word-spacing:7.329960px;}
.ws1c7{word-spacing:7.370381px;}
.ws21{word-spacing:7.404181px;}
.ws99{word-spacing:7.419060px;}
.wsaf{word-spacing:7.552274px;}
.ws6a{word-spacing:7.578727px;}
.ws68{word-spacing:7.585340px;}
.ws196{word-spacing:7.651277px;}
.ws9c{word-spacing:7.680420px;}
.ws69{word-spacing:7.691152px;}
.ws9b{word-spacing:7.704180px;}
.wsa0{word-spacing:7.727940px;}
.ws9f{word-spacing:7.739820px;}
.ws9d{word-spacing:7.769520px;}
.ws44{word-spacing:7.770828px;}
.ws9e{word-spacing:7.817040px;}
.ws173{word-spacing:7.873656px;}
.ws171{word-spacing:7.890379px;}
.wscc{word-spacing:7.955680px;}
.wsae{word-spacing:7.962293px;}
.ws148{word-spacing:8.069706px;}
.ws201{word-spacing:8.069760px;}
.ws20c{word-spacing:8.123558px;}
.wsd3{word-spacing:8.167302px;}
.wsd4{word-spacing:8.200368px;}
.ws1a8{word-spacing:8.428360px;}
.wscd{word-spacing:8.491349px;}
.ws1dd{word-spacing:8.553946px;}
.ws1b3{word-spacing:8.876736px;}
.ws1ff{word-spacing:10.167898px;}
.ws4{word-spacing:10.377014px;}
.ws152{word-spacing:11.034904px;}
.ws112{word-spacing:11.039452px;}
.wse5{word-spacing:11.620476px;}
.ws23{word-spacing:11.904593px;}
.ws147{word-spacing:12.612652px;}
.ws58{word-spacing:12.782524px;}
.ws10f{word-spacing:12.911616px;}
.ws20a{word-spacing:12.926124px;}
.ws209{word-spacing:13.073011px;}
.ws1e0{word-spacing:13.126810px;}
.ws1fc{word-spacing:13.192493px;}
.ws84{word-spacing:13.234406px;}
.ws83{word-spacing:13.240599px;}
.ws1d3{word-spacing:13.342003px;}
.ws1ee{word-spacing:13.354114px;}
.ws1c5{word-spacing:13.383840px;}
.ws1f0{word-spacing:13.387546px;}
.ws1e4{word-spacing:13.387661px;}
.ws1b9{word-spacing:13.388400px;}
.ws1c8{word-spacing:13.388765px;}
.ws1be{word-spacing:13.389014px;}
.ws1df{word-spacing:13.389034px;}
.ws1bb{word-spacing:13.389840px;}
.ws1bc{word-spacing:13.390579px;}
.ws1e5{word-spacing:13.390589px;}
.ws1c1{word-spacing:13.391002px;}
.ws1f1{word-spacing:13.391520px;}
.ws204{word-spacing:13.392710px;}
.ws1d0{word-spacing:13.392787px;}
.ws12b{word-spacing:13.395802px;}
.ws1dc{word-spacing:13.396963px;}
.ws1c3{word-spacing:13.398106px;}
.ws1cb{word-spacing:13.449600px;}
.ws1cd{word-spacing:13.478082px;}
.ws1ce{word-spacing:13.500824px;}
.ws1ef{word-spacing:13.610995px;}
.ws151{word-spacing:13.664794px;}
.ws16e{word-spacing:13.666267px;}
.ws35{word-spacing:14.525471px;}
.ws4d{word-spacing:14.639737px;}
.ws17c{word-spacing:14.761830px;}
.ws175{word-spacing:14.781030px;}
.ws170{word-spacing:14.789512px;}
.ws168{word-spacing:14.819636px;}
.ws48{word-spacing:14.884124px;}
.ws1a5{word-spacing:14.886890px;}
.ws16c{word-spacing:14.967533px;}
.ws17f{word-spacing:15.206362px;}
.ws17e{word-spacing:15.208380px;}
.wsdb{word-spacing:15.214996px;}
.ws1a0{word-spacing:15.496043px;}
.ws1ea{word-spacing:15.601536px;}
.ws1e2{word-spacing:16.354714px;}
.ws178{word-spacing:16.476187px;}
.ws1fd{word-spacing:16.615402px;}
.ws1f6{word-spacing:16.617149px;}
.ws1da{word-spacing:16.618186px;}
.ws1e3{word-spacing:16.619386px;}
.ws1ca{word-spacing:16.619549px;}
.ws1fe{word-spacing:16.620557px;}
.ws1b7{word-spacing:16.621690px;}
.ws1c9{word-spacing:16.623706px;}
.ws1de{word-spacing:16.677504px;}
.ws1f4{word-spacing:16.785101px;}
.ws26{word-spacing:16.867462px;}
.ws1d4{word-spacing:17.054093px;}
.ws1f3{word-spacing:17.107891px;}
.ws1cc{word-spacing:17.215488px;}
.ws1d7{word-spacing:17.430682px;}
.ws1d5{word-spacing:17.463306px;}
.ws1e7{word-spacing:17.592077px;}
.ws183{word-spacing:19.329128px;}
.ws202{word-spacing:19.582618px;}
.ws166{word-spacing:20.383480px;}
.ws4a{word-spacing:20.562806px;}
.ws47{word-spacing:20.619246px;}
.ws200{word-spacing:21.465562px;}
.ws181{word-spacing:21.517768px;}
.ws20b{word-spacing:21.519360px;}
.ws172{word-spacing:22.752657px;}
.ws174{word-spacing:22.758165px;}
.ws9{word-spacing:26.791603px;}
.ws1ec{word-spacing:26.844265px;}
.ws1{word-spacing:28.455541px;}
.ws19e{word-spacing:864.893156px;}
._5{margin-left:-9.902640px;}
._30{margin-left:-7.890379px;}
._6{margin-left:-6.694867px;}
._2{margin-left:-5.397721px;}
._a{margin-left:-4.267919px;}
._1{margin-left:-3.054524px;}
._4{margin-left:-1.506341px;}
._16{width:1.206097px;}
._7{width:2.992696px;}
._25{width:4.165709px;}
._0{width:12.971268px;}
._14{width:14.118992px;}
._9{width:15.906240px;}
._18{width:16.941777px;}
._b{width:18.169606px;}
._c{width:19.737899px;}
._2f{width:20.801909px;}
._e{width:22.011548px;}
._11{width:23.312484px;}
._13{width:24.400396px;}
._3{width:25.946136px;}
._20{width:27.078347px;}
._12{width:28.512961px;}
._21{width:29.588922px;}
._d{width:31.262639px;}
._1b{width:32.410326px;}
._24{width:33.426511px;}
._22{width:35.446931px;}
._15{width:36.534842px;}
._19{width:38.734589px;}
._23{width:42.082022px;}
._1d{width:43.217759px;}
._31{width:44.353495px;}
._33{width:61.868160px;}
._8{width:69.356384px;}
._32{width:88.767360px;}
._2e{width:716.111688px;}
._2c{width:788.081510px;}
._2d{width:794.776378px;}
._2b{width:825.501036px;}
._2a{width:866.805976px;}
._26{width:870.751165px;}
._28{width:897.530634px;}
._29{width:904.225501px;}
._27{width:976.195324px;}
._f{width:1854.320700px;}
._1f{width:2040.105514px;}
._1c{width:2062.684764px;}
._1a{width:2171.310599px;}
._17{width:2388.562268px;}
._1e{width:2559.908700px;}
._10{width:2583.818700px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs18{font-size:31.464000px;}
.fs1a{font-size:34.200000px;}
.fs4{font-size:35.865600px;}
.fs14{font-size:36.000000px;}
.fse{font-size:36.432000px;}
.fsb{font-size:39.600000px;}
.fs0{font-size:41.842800px;}
.fs19{font-size:43.600200px;}
.fs3{font-size:45.429600px;}
.fs15{font-size:45.486000px;}
.fsf{font-size:46.332000px;}
.fs7{font-size:47.337600px;}
.fs5{font-size:47.820600px;}
.fs11{font-size:47.880000px;}
.fs17{font-size:51.300000px;}
.fs8{font-size:52.668000px;}
.fsc{font-size:53.798400px;}
.fs13{font-size:54.000000px;}
.fs10{font-size:56.058000px;}
.fs16{font-size:57.114000px;}
.fsd{font-size:59.400000px;}
.fs1{font-size:59.775600px;}
.fs12{font-size:60.120000px;}
.fs1b{font-size:62.286600px;}
.fs9{font-size:66.132000px;}
.fs6{font-size:71.731200px;}
.fsa{font-size:79.200000px;}
.fs2{font-size:107.596800px;}
.yec{bottom:-958.502655px;}
.y11b{bottom:-763.868497px;}
.y11a{bottom:-740.801655px;}
.y118{bottom:-740.801497px;}
.y119{bottom:-736.643655px;}
.y115{bottom:-717.734695px;}
.y117{bottom:-717.734655px;}
.y116{bottom:-713.576655px;}
.y114{bottom:-694.568655px;}
.y112{bottom:-694.568497px;}
.y113{bottom:-690.410655px;}
.y111{bottom:-671.501655px;}
.y10f{bottom:-671.500922px;}
.y110{bottom:-667.343490px;}
.y10e{bottom:-648.434081px;}
.y146{bottom:-647.740050px;}
.y10d{bottom:-625.268041px;}
.y10c{bottom:-602.201200px;}
.y10b{bottom:-579.134358px;}
.y10a{bottom:-555.968318px;}
.y109{bottom:-532.901477px;}
.y108{bottom:-504.884655px;}
.y106{bottom:-461.918490px;}
.y105{bottom:-461.918338px;}
.y107{bottom:-457.760655px;}
.y104{bottom:-438.851497px;}
.y169{bottom:-424.989906px;}
.y102{bottom:-415.784655px;}
.y101{bottom:-415.784417px;}
.y103{bottom:-411.626655px;}
.y166{bottom:-404.020086px;}
.y168{bottom:-404.020050px;}
.y167{bottom:-400.240050px;}
.y100{bottom:-392.618378px;}
.y165{bottom:-382.960050px;}
.y163{bottom:-382.959906px;}
.y164{bottom:-379.180050px;}
.yff{bottom:-369.551536px;}
.y162{bottom:-361.990050px;}
.y160{bottom:-361.989906px;}
.y1bc{bottom:-359.034022px;}
.y161{bottom:-358.210050px;}
.yfe{bottom:-346.484695px;}
.y15d{bottom:-341.020086px;}
.y15f{bottom:-341.020050px;}
.y15e{bottom:-337.240050px;}
.yfc{bottom:-323.318655px;}
.yfb{bottom:-323.318378px;}
.y15c{bottom:-319.960050px;}
.y15a{bottom:-319.959756px;}
.yfd{bottom:-319.160655px;}
.y1d5{bottom:-318.421523px;}
.y1d3{bottom:-318.421420px;}
.y15b{bottom:-316.179900px;}
.y1d4{bottom:-314.830523px;}
.yfa{bottom:-300.251536px;}
.y157{bottom:-298.989942px;}
.y159{bottom:-298.989900px;}
.y1d2{bottom:-298.500057px;}
.y158{bottom:-295.210050px;}
.y1d1{bottom:-278.493023px;}
.y1cf{bottom:-278.492646px;}
.y156{bottom:-278.020086px;}
.yf9{bottom:-277.184695px;}
.y1d0{bottom:-274.902023px;}
.y1ce{bottom:-258.571283px;}
.y155{bottom:-256.960050px;}
.y153{bottom:-256.959780px;}
.yf8{bottom:-254.018655px;}
.y154{bottom:-253.180050px;}
.y1cd{bottom:-238.649920px;}
.y152{bottom:-235.989924px;}
.y1cc{bottom:-218.642886px;}
.y151{bottom:-215.020068px;}
.yf7{bottom:-211.646655px;}
.yf6{bottom:-211.644180px;}
.y1cb{bottom:-198.721522px;}
.y1c9{bottom:-198.721386px;}
.y1ca{bottom:-195.130523px;}
.y150{bottom:-189.460050px;}
.yf5{bottom:-188.577675px;}
.y199{bottom:-185.545973px;}
.y1c8{bottom:-178.800023px;}
.y20d{bottom:-174.352598px;}
.yf4{bottom:-165.411675px;}
.y14f{bottom:-150.938250px;}
.yf3{bottom:-142.345170px;}
.y1c7{bottom:-142.118813px;}
.y1a5{bottom:-141.084263px;}
.y14e{bottom:-129.968700px;}
.y217{bottom:-126.300315px;}
.y1c6{bottom:-122.197740px;}
.y1a4{bottom:-121.163190px;}
.yf2{bottom:-119.278665px;}
.y14d{bottom:-108.908700px;}
.y216{bottom:-106.293315px;}
.y1c5{bottom:-102.276668px;}
.y1a3{bottom:-101.156190px;}
.yf1{bottom:-96.112665px;}
.y14c{bottom:-87.939150px;}
.y215{bottom:-86.372242px;}
.y1c4{bottom:-82.269668px;}
.y1a2{bottom:-81.235118px;}
.ycb{bottom:-74.441895px;}
.yf0{bottom:-73.046160px;}
.y14b{bottom:-66.969600px;}
.y214{bottom:-66.451170px;}
.y1c3{bottom:-62.348595px;}
.y1a1{bottom:-61.314045px;}
.yef{bottom:-49.979655px;}
.y213{bottom:-46.444170px;}
.y14a{bottom:-45.909600px;}
.y1c2{bottom:-42.427523px;}
.y1a0{bottom:-41.307045px;}
.yee{bottom:-26.813655px;}
.y212{bottom:-26.523097px;}
.y149{bottom:-24.940050px;}
.y1c1{bottom:-22.420523px;}
.y19e{bottom:-21.385973px;}
.y19f{bottom:-17.794973px;}
.y0{bottom:0.000000px;}
.yed{bottom:1.697612px;}
.ye7{bottom:1.985778px;}
.y211{bottom:2.460924px;}
.y148{bottom:3.230292px;}
.y19d{bottom:5.117694px;}
.y4d{bottom:45.921000px;}
.y282{bottom:99.720000px;}
.ye8{bottom:100.066500px;}
.y19{bottom:100.260000px;}
.y2b8{bottom:100.386000px;}
.y1c0{bottom:102.665977px;}
.y82{bottom:103.218000px;}
.y33f{bottom:105.961500px;}
.y4c{bottom:111.331500px;}
.y193{bottom:113.472000px;}
.y1a8{bottom:113.806500px;}
.y249{bottom:114.031500px;}
.y1d7{bottom:115.035000px;}
.y252{bottom:116.407500px;}
.y209{bottom:117.514500px;}
.y18{bottom:118.147500px;}
.y281{bottom:120.610500px;}
.y2b7{bottom:121.278000px;}
.y253{bottom:121.831500px;}
.y81{bottom:124.108500px;}
.y33e{bottom:125.112000px;}
.yc8{bottom:125.484990px;}
.y4b{bottom:132.223500px;}
.y1a6{bottom:133.038000px;}
.y1d6{bottom:134.268000px;}
.y191{bottom:134.364000px;}
.y248{bottom:134.923500px;}
.y17{bottom:136.035000px;}
.y30c{bottom:136.686000px;}
.y251{bottom:137.298000px;}
.y1a7{bottom:137.920500px;}
.y208{bottom:138.405000px;}
.y192{bottom:139.789500px;}
.y280{bottom:141.502500px;}
.y219{bottom:141.880500px;}
.y2b5{bottom:142.170000px;}
.y33d{bottom:144.262500px;}
.y80{bottom:145.000500px;}
.y2dc{bottom:145.128000px;}
.y2b6{bottom:147.594000px;}
.y16{bottom:153.924000px;}
.y18f{bottom:155.256000px;}
.y196{bottom:155.467500px;}
.y247{bottom:155.815500px;}
.y30b{bottom:155.836500px;}
.y1b9{bottom:156.697500px;}
.yb2{bottom:158.190000px;}
.y207{bottom:159.297000px;}
.y190{bottom:160.680000px;}
.y218{bottom:161.113500px;}
.y27f{bottom:162.394500px;}
.y2b4{bottom:163.062000px;}
.y33c{bottom:163.413000px;}
.y7f{bottom:165.892500px;}
.y2db{bottom:166.020000px;}
.y4a{bottom:171.048000px;}
.y15{bottom:171.811500px;}
.y30a{bottom:174.987000px;}
.y18d{bottom:176.146500px;}
.y246{bottom:176.706000px;}
.yb1{bottom:179.082000px;}
.y206{bottom:180.189000px;}
.y18e{bottom:181.572000px;}
.y33b{bottom:182.563500px;}
.y27e{bottom:183.285000px;}
.y20a{bottom:183.543000px;}
.y2b3{bottom:183.952500px;}
.y250{bottom:184.506000px;}
.y7e{bottom:186.783000px;}
.y2da{bottom:186.912000px;}
.y14{bottom:189.699000px;}
.y49{bottom:191.940000px;}
.y309{bottom:194.137500px;}
.y18b{bottom:197.038500px;}
.y245{bottom:197.598000px;}
.yb0{bottom:199.972500px;}
.y205{bottom:201.079500px;}
.y33a{bottom:201.714000px;}
.y18c{bottom:202.464000px;}
.y27d{bottom:204.177000px;}
.y2b2{bottom:204.844500px;}
.y13{bottom:207.586500px;}
.y7d{bottom:207.675000px;}
.y2d9{bottom:207.802500px;}
.y48{bottom:212.830500px;}
.y308{bottom:213.288000px;}
.y19c{bottom:214.934540px;}
.y1bf{bottom:217.064977px;}
.y210{bottom:217.236693px;}
.y189{bottom:217.930500px;}
.y244{bottom:218.490000px;}
.yaf{bottom:220.864500px;}
.y204{bottom:221.971500px;}
.y18a{bottom:223.354500px;}
.y27c{bottom:225.069000px;}
.y12{bottom:225.475500px;}
.y147{bottom:226.610661px;}
.y7c{bottom:228.567000px;}
.y2b1{bottom:230.218500px;}
.y307{bottom:232.438500px;}
.y2d8{bottom:233.178000px;}
.y47{bottom:233.722500px;}
.y142{bottom:234.786000px;}
.y187{bottom:238.822500px;}
.y243{bottom:239.380500px;}
.y339{bottom:240.015000px;}
.yae{bottom:241.756500px;}
.y203{bottom:242.863500px;}
.y188{bottom:244.246500px;}
.ye6{bottom:245.822729px;}
.y27b{bottom:245.961000px;}
.y7b{bottom:249.457500px;}
.y306{bottom:251.589000px;}
.y11{bottom:252.330000px;}
.y46{bottom:254.614500px;}
.y140{bottom:255.678000px;}
.y242{bottom:257.542500px;}
.y338{bottom:259.165500px;}
.y185{bottom:259.713000px;}
.y241{bottom:260.272500px;}
.y141{bottom:261.102000px;}
.yad{bottom:262.647000px;}
.y202{bottom:263.754000px;}
.y186{bottom:265.138500px;}
.y2b0{bottom:265.561500px;}
.y24f{bottom:268.072500px;}
.y2d7{bottom:268.521000px;}
.y10{bottom:270.217500px;}
.y7a{bottom:270.349500px;}
.y305{bottom:270.739500px;}
.y45{bottom:275.505000px;}
.y13f{bottom:276.568500px;}
.y337{bottom:278.316000px;}
.y184{bottom:280.605000px;}
.y240{bottom:281.164500px;}
.yac{bottom:283.539000px;}
.y201{bottom:284.646000px;}
.y2af{bottom:286.453500px;}
.yf{bottom:288.105000px;}
.y24e{bottom:288.964500px;}
.y2d6{bottom:289.411500px;}
.y304{bottom:289.890000px;}
.y79{bottom:291.241500px;}
.yeb{bottom:291.372494px;}
.y27a{bottom:292.369500px;}
.y44{bottom:296.397000px;}
.y13d{bottom:297.460500px;}
.y336{bottom:297.466500px;}
.y183{bottom:301.497000px;}
.yea{bottom:301.965345px;}
.y23f{bottom:302.056500px;}
.y13e{bottom:302.884500px;}
.yab{bottom:304.431000px;}
.y200{bottom:305.538000px;}
.ye{bottom:305.994000px;}
.y2ae{bottom:307.344000px;}
.y303{bottom:309.040500px;}
.y279{bottom:310.302000px;}
.y2d5{bottom:310.303500px;}
.y78{bottom:312.132000px;}
.y334{bottom:316.617000px;}
.y43{bottom:317.289000px;}
.y13b{bottom:318.352500px;}
.y335{bottom:321.499500px;}
.y181{bottom:322.387500px;}
.y23e{bottom:322.947000px;}
.y13c{bottom:323.776500px;}
.yd{bottom:323.881500px;}
.yaa{bottom:325.323000px;}
.y2ac{bottom:325.506000px;}
.y1ff{bottom:326.430000px;}
.y182{bottom:327.813000px;}
.y302{bottom:328.191000px;}
.y278{bottom:328.234500px;}
.y2ab{bottom:328.236000px;}
.y24d{bottom:330.747000px;}
.y2d4{bottom:331.195500px;}
.y77{bottom:333.024000px;}
.y2ad{bottom:333.661500px;}
.y333{bottom:335.767500px;}
.y42{bottom:338.179500px;}
.y13a{bottom:339.243000px;}
.yc{bottom:341.769000px;}
.y17f{bottom:343.279500px;}
.y23d{bottom:343.839000px;}
.y277{bottom:346.167000px;}
.ya9{bottom:346.213500px;}
.y2a9{bottom:346.398000px;}
.y1fe{bottom:347.320500px;}
.y301{bottom:347.341500px;}
.y180{bottom:348.703500px;}
.y2a8{bottom:349.128000px;}
.y24c{bottom:351.639000px;}
.y2d3{bottom:352.086000px;}
.y76{bottom:353.916000px;}
.y2aa{bottom:354.552000px;}
.y332{bottom:354.918000px;}
.y41{bottom:359.071500px;}
.yb{bottom:359.658000px;}
.y139{bottom:360.135000px;}
.y276{bottom:364.101000px;}
.y17d{bottom:364.171500px;}
.y23c{bottom:364.731000px;}
.y300{bottom:366.492000px;}
.ya8{bottom:367.105500px;}
.y1fd{bottom:368.212500px;}
.y17e{bottom:369.595500px;}
.y2a7{bottom:370.018500px;}
.y2d2{bottom:372.978000px;}
.y331{bottom:374.070000px;}
.y75{bottom:374.808000px;}
.ya{bottom:377.545500px;}
.y40{bottom:379.963500px;}
.y138{bottom:381.027000px;}
.y275{bottom:382.033500px;}
.y17b{bottom:385.062000px;}
.y23b{bottom:385.621500px;}
.y2ff{bottom:385.642500px;}
.ya7{bottom:387.997500px;}
.y2a6{bottom:388.180500px;}
.y1fc{bottom:389.104500px;}
.y17c{bottom:390.487500px;}
.y2a4{bottom:390.910500px;}
.y330{bottom:393.220500px;}
.y2d1{bottom:393.870000px;}
.y9{bottom:395.433000px;}
.y73{bottom:395.698500px;}
.y2a5{bottom:396.336000px;}
.y274{bottom:399.966000px;}
.y3f{bottom:400.854000px;}
.y74{bottom:401.124000px;}
.y137{bottom:401.917500px;}
.y2fe{bottom:404.794500px;}
.y179{bottom:405.954000px;}
.y262{bottom:406.158000px;}
.y23a{bottom:406.513500px;}
.ya6{bottom:408.888000px;}
.y1fb{bottom:409.995000px;}
.y17a{bottom:411.379500px;}
.y2a3{bottom:411.802500px;}
.y32f{bottom:412.371000px;}
.y8{bottom:413.322000px;}
.y24b{bottom:414.313500px;}
.y71{bottom:416.590500px;}
.y273{bottom:417.898500px;}
.y2d0{bottom:419.244000px;}
.y3e{bottom:421.746000px;}
.y72{bottom:422.014500px;}
.y136{bottom:422.809500px;}
.y2fd{bottom:423.945000px;}
.y177{bottom:426.846000px;}
.y239{bottom:427.405500px;}
.y19b{bottom:428.685113px;}
.ya5{bottom:429.780000px;}
.y1fa{bottom:430.887000px;}
.y7{bottom:431.209500px;}
.y32e{bottom:431.521500px;}
.y1be{bottom:431.840670px;}
.y178{bottom:432.270000px;}
.y2a2{bottom:432.694500px;}
.y261{bottom:435.204000px;}
.y272{bottom:435.831000px;}
.y70{bottom:437.482500px;}
.y20f{bottom:438.169351px;}
.y3d{bottom:442.638000px;}
.y2fc{bottom:443.095500px;}
.y135{bottom:443.701500px;}
.y238{bottom:445.566000px;}
.y176{bottom:447.736500px;}
.y237{bottom:448.296000px;}
.ya4{bottom:450.672000px;}
.y1f9{bottom:451.779000px;}
.y2cf{bottom:454.587000px;}
.y6{bottom:455.074500px;}
.y2a1{bottom:458.068500px;}
.y6f{bottom:458.373000px;}
.y271{bottom:460.966500px;}
.y2fb{bottom:462.246000px;}
.y3c{bottom:463.530000px;}
.y174{bottom:468.628500px;}
.y134{bottom:469.075500px;}
.y236{bottom:469.188000px;}
.y32d{bottom:469.822500px;}
.ya3{bottom:471.562500px;}
.y1f8{bottom:472.669500px;}
.y5{bottom:472.963500px;}
.y175{bottom:474.054000px;}
.y2ce{bottom:475.477500px;}
.y6e{bottom:479.265000px;}
.y2a0{bottom:479.961000px;}
.y3b{bottom:484.420500px;}
.y2fa{bottom:485.878500px;}
.ye5{bottom:487.085491px;}
.y145{bottom:488.510085px;}
.y32c{bottom:488.973000px;}
.y173{bottom:489.520500px;}
.y235{bottom:490.080000px;}
.y4{bottom:490.851000px;}
.ya2{bottom:492.454500px;}
.y1f7{bottom:493.561500px;}
.y270{bottom:493.632000px;}
.y2cd{bottom:496.369500px;}
.y144{bottom:498.139950px;}
.y6d{bottom:500.157000px;}
.y133{bottom:504.418500px;}
.y32b{bottom:508.123500px;}
.y234{bottom:508.242000px;}
.y3{bottom:508.738500px;}
.y172{bottom:510.412500px;}
.y233{bottom:510.970500px;}
.ya1{bottom:513.346500px;}
.y1f6{bottom:514.453500px;}
.y29f{bottom:515.304000px;}
.y2cc{bottom:517.261500px;}
.y6c{bottom:521.047500px;}
.y3a{bottom:524.440500px;}
.y2f9{bottom:524.703000px;}
.y132{bottom:525.309000px;}
.y32a{bottom:527.274000px;}
.y26f{bottom:529.173000px;}
.y232{bottom:531.862500px;}
.y2{bottom:532.605000px;}
.ya0{bottom:534.237000px;}
.y1f5{bottom:535.344000px;}
.y171{bottom:535.786500px;}
.y29e{bottom:536.194500px;}
.y2cb{bottom:538.152000px;}
.y39{bottom:540.580500px;}
.y6b{bottom:541.939500px;}
.y130{bottom:543.471000px;}
.y12f{bottom:546.201000px;}
.y329{bottom:546.424500px;}
.y26e{bottom:550.065000px;}
.y1{bottom:550.492500px;}
.y131{bottom:551.626500px;}
.y231{bottom:552.754500px;}
.y2f8{bottom:553.168500px;}
.y9f{bottom:555.129000px;}
.y1f4{bottom:556.236000px;}
.y38{bottom:556.720500px;}
.y29d{bottom:557.086500px;}
.y2ca{bottom:559.044000px;}
.y37{bottom:561.060000px;}
.y6a{bottom:562.831500px;}
.y328{bottom:565.575000px;}
.y12e{bottom:567.093000px;}
.y170{bottom:567.933000px;}
.y26c{bottom:570.955500px;}
.y2f7{bottom:572.667000px;}
.y36{bottom:572.859000px;}
.y230{bottom:573.646500px;}
.y9e{bottom:576.021000px;}
.y26d{bottom:576.381000px;}
.y1f3{bottom:577.128000px;}
.y29c{bottom:577.978500px;}
.y2c9{bottom:579.936000px;}
.y69{bottom:583.722000px;}
.y327{bottom:584.725500px;}
.y16f{bottom:587.166000px;}
.y12d{bottom:587.985000px;}
.y35{bottom:588.999000px;}
.y26b{bottom:591.847500px;}
.y2f6{bottom:592.165500px;}
.y34{bottom:593.338500px;}
.y22f{bottom:594.537000px;}
.y9d{bottom:596.913000px;}
.y1f2{bottom:598.018500px;}
.y29b{bottom:598.870500px;}
.y2c8{bottom:600.828000px;}
.y326{bottom:603.876000px;}
.y68{bottom:604.614000px;}
.y33{bottom:605.139000px;}
.y16e{bottom:606.397500px;}
.y12c{bottom:608.875500px;}
.y26a{bottom:612.739500px;}
.y22e{bottom:615.429000px;}
.y9c{bottom:617.803500px;}
.y29a{bottom:619.761000px;}
.y2f5{bottom:620.631000px;}
.y2c7{bottom:621.718500px;}
.y325{bottom:623.026500px;}
.y1f1{bottom:623.394000px;}
.y66{bottom:625.506000px;}
.y32{bottom:625.617000px;}
.y16d{bottom:625.630500px;}
.y12a{bottom:627.037500px;}
.y129{bottom:629.767500px;}
.y67{bottom:630.930000px;}
.y268{bottom:633.631500px;}
.y12b{bottom:635.191500px;}
.y22d{bottom:636.321000px;}
.y31{bottom:637.417500px;}
.y9b{bottom:638.695500px;}
.y269{bottom:639.055500px;}
.y2f4{bottom:640.129500px;}
.y299{bottom:640.653000px;}
.y324{bottom:642.177000px;}
.y19a{bottom:642.435686px;}
.y2c6{bottom:642.610500px;}
.y16c{bottom:644.863500px;}
.y64{bottom:646.398000px;}
.y128{bottom:650.659500px;}
.y65{bottom:651.822000px;}
.y30{bottom:653.557500px;}
.y266{bottom:654.522000px;}
.y20e{bottom:654.827027px;}
.y22c{bottom:657.211500px;}
.y2f{bottom:657.897000px;}
.y1f0{bottom:658.737000px;}
.y9a{bottom:659.587500px;}
.y2f3{bottom:659.629500px;}
.y267{bottom:659.947500px;}
.y323{bottom:661.327500px;}
.y298{bottom:661.545000px;}
.y2c5{bottom:663.502500px;}
.y16b{bottom:664.096500px;}
.y260{bottom:665.011500px;}
.y1bd{bottom:667.051828px;}
.y63{bottom:667.288500px;}
.y2e{bottom:669.696000px;}
.y127{bottom:671.550000px;}
.y265{bottom:675.414000px;}
.y22b{bottom:678.103500px;}
.y1ee{bottom:679.627500px;}
.y99{bottom:680.478000px;}
.y297{bottom:682.435500px;}
.y16a{bottom:683.329500px;}
.y2c4{bottom:684.393000px;}
.y1ef{bottom:685.053000px;}
.y2d{bottom:685.836000px;}
.y25f{bottom:685.903500px;}
.y2f2{bottom:688.093500px;}
.y62{bottom:688.180500px;}
.y126{bottom:692.442000px;}
.y22a{bottom:698.995500px;}
.y322{bottom:699.628500px;}
.y1ed{bottom:700.519500px;}
.y264{bottom:700.788000px;}
.y98{bottom:701.370000px;}
.y295{bottom:703.327500px;}
.y2c3{bottom:705.285000px;}
.y143{bottom:705.759000px;}
.y2c{bottom:706.315500px;}
.y2f1{bottom:707.592000px;}
.y296{bottom:708.751500px;}
.y61{bottom:709.072500px;}
.y2b{bottom:718.114500px;}
.y321{bottom:718.779000px;}
.y229{bottom:719.886000px;}
.y1bb{bottom:720.403606px;}
.y1ec{bottom:721.411500px;}
.y97{bottom:722.262000px;}
.y294{bottom:724.219500px;}
.y263{bottom:725.220000px;}
.y2c2{bottom:726.177000px;}
.y2f0{bottom:727.092000px;}
.y25e{bottom:727.686000px;}
.y125{bottom:728.070000px;}
.y1ba{bottom:729.551978px;}
.y60{bottom:729.963000px;}
.y2a{bottom:734.254500px;}
.y320{bottom:737.929500px;}
.y228{bottom:740.778000px;}
.y1eb{bottom:742.302000px;}
.y96{bottom:743.152500px;}
.y293{bottom:745.110000px;}
.y2ef{bottom:746.590500px;}
.y2c1{bottom:747.067500px;}
.y124{bottom:747.303000px;}
.y25d{bottom:748.578000px;}
.y29{bottom:750.394500px;}
.y5f{bottom:750.855000px;}
.ye4{bottom:756.960263px;}
.y31f{bottom:757.081500px;}
.y227{bottom:761.670000px;}
.y1e9{bottom:763.194000px;}
.y95{bottom:764.044500px;}
.y292{bottom:766.002000px;}
.y2ee{bottom:766.089000px;}
.y28{bottom:766.534500px;}
.y123{bottom:766.536000px;}
.y2c0{bottom:767.959500px;}
.y1ea{bottom:768.618000px;}
.y25c{bottom:769.468500px;}
.y5e{bottom:771.747000px;}
.y31e{bottom:776.232000px;}
.ye2{bottom:780.027105px;}
.ye1{bottom:780.027263px;}
.y226{bottom:782.560500px;}
.y27{bottom:782.673000px;}
.y1e7{bottom:784.086000px;}
.ye3{bottom:784.185105px;}
.y94{bottom:784.936500px;}
.y2ed{bottom:785.587500px;}
.y122{bottom:785.769000px;}
.y291{bottom:786.894000px;}
.y2bf{bottom:788.851500px;}
.y1e8{bottom:789.510000px;}
.y5d{bottom:792.637500px;}
.y31d{bottom:795.382500px;}
.y26{bottom:798.813000px;}
.ydf{bottom:803.094065px;}
.ye0{bottom:803.094105px;}
.y225{bottom:803.452500px;}
.y1e6{bottom:804.976500px;}
.y121{bottom:805.000500px;}
.y93{bottom:805.827000px;}
.y290{bottom:807.784500px;}
.y2be{bottom:809.742000px;}
.y5c{bottom:813.529500px;}
.y2ec{bottom:814.053000px;}
.y31c{bottom:814.533000px;}
.y25{bottom:819.292500px;}
.y120{bottom:824.233500px;}
.y224{bottom:824.344500px;}
.y1b8{bottom:825.784500px;}
.y1e5{bottom:825.868500px;}
.ydd{bottom:826.260105px;}
.ydc{bottom:826.260263px;}
.y92{bottom:826.719000px;}
.y28f{bottom:828.676500px;}
.yde{bottom:830.418105px;}
.y2eb{bottom:833.551500px;}
.y31b{bottom:833.683500px;}
.y5b{bottom:834.421500px;}
.y2bd{bottom:835.117500px;}
.y11f{bottom:843.466500px;}
.y223{bottom:845.236500px;}
.y1b7{bottom:846.676500px;}
.y1e4{bottom:846.760500px;}
.y91{bottom:847.611000px;}
.yda{bottom:849.327105px;}
.yd9{bottom:849.327224px;}
.y28e{bottom:849.568500px;}
.y31a{bottom:852.834000px;}
.y25b{bottom:853.035000px;}
.y2ea{bottom:853.050000px;}
.ydb{bottom:853.485105px;}
.y5a{bottom:855.312000px;}
.y11e{bottom:860.077500px;}
.y11d{bottom:862.699500px;}
.y24{bottom:863.968500px;}
.y222{bottom:866.127000px;}
.y1b6{bottom:867.568500px;}
.y1e3{bottom:867.651000px;}
.y90{bottom:868.503000px;}
.y28d{bottom:870.460500px;}
.y319{bottom:871.984500px;}
.yd8{bottom:872.394065px;}
.y2e9{bottom:872.548500px;}
.y59{bottom:876.204000px;}
.yc7{bottom:881.370000px;}
.y11c{bottom:881.932500px;}
.y22{bottom:884.860500px;}
.y221{bottom:887.019000px;}
.y1b4{bottom:888.459000px;}
.y1e1{bottom:888.543000px;}
.y8f{bottom:889.393500px;}
.y23{bottom:890.284500px;}
.y318{bottom:891.135000px;}
.y28c{bottom:891.351000px;}
.y2e8{bottom:892.048500px;}
.y1b5{bottom:893.884500px;}
.y198{bottom:893.891656px;}
.y1e2{bottom:893.968500px;}
.yd7{bottom:895.560105px;}
.yd6{bottom:895.560263px;}
.y58{bottom:897.096000px;}
.yc5{bottom:899.532000px;}
.yc4{bottom:902.262000px;}
.y197{bottom:903.040027px;}
.y20c{bottom:905.085031px;}
.y21{bottom:905.752500px;}
.ye9{bottom:907.350000px;}
.yc6{bottom:907.686000px;}
.y220{bottom:907.911000px;}
.y1b3{bottom:909.351000px;}
.y1e0{bottom:909.435000px;}
.y8e{bottom:910.285500px;}
.y2e7{bottom:911.547000px;}
.y28b{bottom:912.243000px;}
.y20b{bottom:914.233403px;}
.y25a{bottom:915.709500px;}
.y2bc{bottom:917.667000px;}
.y57{bottom:917.988000px;}
.yd5{bottom:918.627105px;}
.yd4{bottom:918.627560px;}
.yc3{bottom:920.424000px;}
.yc2{bottom:923.154000px;}
.y21f{bottom:926.071500px;}
.y20{bottom:926.643000px;}
.y24a{bottom:928.447500px;}
.y21e{bottom:928.801500px;}
.y317{bottom:929.436000px;}
.y1b2{bottom:930.243000px;}
.y1de{bottom:930.327000px;}
.y2e6{bottom:931.045500px;}
.y8d{bottom:931.177500px;}
.y28a{bottom:933.135000px;}
.y1df{bottom:935.751000px;}
.y259{bottom:936.601500px;}
.y2bb{bottom:938.559000px;}
.y56{bottom:938.878500px;}
.yc0{bottom:941.314500px;}
.yd3{bottom:941.694402px;}
.ybf{bottom:944.044500px;}
.y1f{bottom:947.535000px;}
.y316{bottom:948.586500px;}
.yc1{bottom:949.470000px;}
.y21d{bottom:949.693500px;}
.y1b1{bottom:951.133500px;}
.y1dd{bottom:951.217500px;}
.y8c{bottom:952.068000px;}
.y289{bottom:954.025500px;}
.y258{bottom:957.493500px;}
.y55{bottom:959.770500px;}
.ybd{bottom:962.206500px;}
.yd2{bottom:964.860442px;}
.ybc{bottom:964.936500px;}
.y315{bottom:967.737000px;}
.y1e{bottom:968.427000px;}
.y2e5{bottom:968.476500px;}
.ybe{bottom:970.360500px;}
.y21c{bottom:970.585500px;}
.y1b0{bottom:972.025500px;}
.y1dc{bottom:972.109500px;}
.y340{bottom:972.619500px;}
.y8b{bottom:972.960000px;}
.y288{bottom:974.917500px;}
.y257{bottom:978.384000px;}
.y2ba{bottom:980.341500px;}
.y54{bottom:980.662500px;}
.y343{bottom:982.158000px;}
.ybb{bottom:985.828500px;}
.y314{bottom:986.887500px;}
.yd1{bottom:987.927283px;}
.y2e4{bottom:989.368500px;}
.y21b{bottom:991.476000px;}
.y1af{bottom:992.917500px;}
.y1db{bottom:993.001500px;}
.y8a{bottom:993.852000px;}
.y287{bottom:995.809500px;}
.y256{bottom:999.276000px;}
.y342{bottom:1001.308500px;}
.y53{bottom:1001.553000px;}
.yba{bottom:1003.989000px;}
.y313{bottom:1006.038000px;}
.yb9{bottom:1006.719000px;}
.y1d{bottom:1008.748500px;}
.y2e3{bottom:1010.260500px;}
.y1d9{bottom:1013.892000px;}
.y89{bottom:1014.742500px;}
.yd0{bottom:1015.944105px;}
.y286{bottom:1016.700000px;}
.y21a{bottom:1016.851500px;}
.y1ae{bottom:1018.291500px;}
.y1da{bottom:1019.317500px;}
.y255{bottom:1020.168000px;}
.y341{bottom:1020.459000px;}
.y52{bottom:1022.445000px;}
.yb8{bottom:1024.881000px;}
.y312{bottom:1025.188500px;}
.yb7{bottom:1027.611000px;}
.y2e2{bottom:1031.151000px;}
.y1d8{bottom:1034.784000px;}
.y88{bottom:1035.634500px;}
.y285{bottom:1037.592000px;}
.y1c{bottom:1040.086500px;}
.y51{bottom:1043.337000px;}
.y311{bottom:1044.339000px;}
.ycf{bottom:1044.951105px;}
.yb6{bottom:1048.503000px;}
.y2e1{bottom:1049.313000px;}
.y2e0{bottom:1052.043000px;}
.y87{bottom:1056.526500px;}
.y284{bottom:1058.484000px;}
.y254{bottom:1061.950500px;}
.y2b9{bottom:1062.967500px;}
.y310{bottom:1063.489500px;}
.y50{bottom:1064.227500px;}
.y1ad{bottom:1064.641500px;}
.yb5{bottom:1069.393500px;}
.y1b{bottom:1071.424500px;}
.y2df{bottom:1072.935000px;}
.y86{bottom:1077.417000px;}
.y30f{bottom:1082.640000px;}
.y283{bottom:1083.858000px;}
.y1ac{bottom:1083.874500px;}
.y4f{bottom:1089.603000px;}
.yb4{bottom:1090.285500px;}
.yce{bottom:1090.491105px;}
.ycd{bottom:1090.491471px;}
.y2de{bottom:1093.825500px;}
.y85{bottom:1098.309000px;}
.y30e{bottom:1101.790500px;}
.y1a{bottom:1102.761000px;}
.y1ab{bottom:1103.107500px;}
.ycc{bottom:1113.657511px;}
.y2dd{bottom:1114.717500px;}
.yb3{bottom:1115.661000px;}
.y84{bottom:1119.201000px;}
.y30d{bottom:1120.941000px;}
.y1aa{bottom:1122.340500px;}
.y195{bottom:1124.625000px;}
.y83{bottom:1140.091500px;}
.y1a9{bottom:1141.573500px;}
.y194{bottom:1145.517000px;}
.yca{bottom:1175.433254px;}
.yc9{bottom:1186.026105px;}
.y4e{bottom:1200.196500px;}
.h2a{height:22.138488px;}
.h24{height:25.330078px;}
.h10{height:27.855430px;}
.h2b{height:29.037733px;}
.h29{height:29.098055px;}
.hf{height:31.526842px;}
.h2e{height:31.628320px;}
.ha{height:32.565965px;}
.h9{height:32.845601px;}
.h23{height:33.292969px;}
.h1a{height:33.692484px;}
.h16{height:36.622266px;}
.h1c{height:37.334628px;}
.h2{height:37.993262px;}
.he{height:41.250077px;}
.h30{height:41.482876px;}
.h26{height:42.065666px;}
.h1b{height:42.848051px;}
.h8{height:43.217759px;}
.h22{height:43.269961px;}
.hb{height:43.421105px;}
.h3{height:43.815515px;}
.h1f{height:44.279648px;}
.h28{height:47.442480px;}
.h15{height:47.596957px;}
.h12{height:48.707613px;}
.h17{height:48.848947px;}
.h21{height:49.939453px;}
.hd{height:51.861658px;}
.h27{height:52.819295px;}
.hc{height:54.276245px;}
.h6{height:54.541601px;}
.h7{height:54.547601px;}
.h19{height:54.933398px;}
.h20{height:55.599258px;}
.h14{height:58.317188px;}
.h13{height:61.159184px;}
.h1d{height:62.946077px;}
.h2c{height:62.952077px;}
.h4{height:77.792486px;}
.h5{height:78.115277px;}
.h18{height:247.684800px;}
.h1e{height:449.278500px;}
.h2d{height:645.449475px;}
.h11{height:732.242610px;}
.h25{height:857.180250px;}
.h2f{height:870.238950px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w6{width:554.041425px;}
.w5{width:555.906750px;}
.w7{width:555.908175px;}
.w4{width:578.878500px;}
.w3{width:636.464400px;}
.w2{width:642.602400px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x6b{left:-212.930850px;}
.x53{left:-208.441200px;}
.xad{left:-190.275000px;}
.xd4{left:-180.950775px;}
.x0{left:0.000000px;}
.x6d{left:2.196150px;}
.xaf{left:5.295000px;}
.x54{left:6.684601px;}
.xb5{left:13.665000px;}
.xb6{left:22.665000px;}
.x57{left:31.336800px;}
.x87{left:35.064150px;}
.x58{left:36.286800px;}
.x56{left:41.731684px;}
.x88{left:44.865150px;}
.x70{left:46.350150px;}
.x1{left:53.574000px;}
.x71{left:70.110150px;}
.x72{left:75.060150px;}
.x139{left:85.848000px;}
.x73{left:93.771150px;}
.x75{left:101.493150px;}
.x74{left:103.671150px;}
.x76{left:106.443150px;}
.x6e{left:109.710150px;}
.x6f{left:114.264150px;}
.x52{left:124.941000px;}
.x6a{left:128.010000px;}
.x65{left:129.049800px;}
.x66{left:133.999800px;}
.xd5{left:154.551225px;}
.x7c{left:158.319150px;}
.x7d{left:163.269150px;}
.x67{left:166.372800px;}
.x77{left:171.882150px;}
.x68{left:176.272800px;}
.x89{left:183.663150px;}
.x85{left:186.138150px;}
.x8a{left:193.563150px;}
.x78{left:207.621150px;}
.x7e{left:214.749150px;}
.x79{left:217.521150px;}
.x7f{left:219.699150px;}
.xb0{left:221.655000px;}
.xe5{left:224.319225px;}
.x7a{left:227.916150px;}
.x13a{left:230.332500px;}
.xe6{left:232.869225px;}
.x7b{left:237.816150px;}
.xb1{left:241.905000px;}
.x2{left:244.348500px;}
.xc{left:248.526000px;}
.xa{left:249.591000px;}
.x80{left:251.379150px;}
.xb2{left:257.835000px;}
.x81{left:261.279150px;}
.x3{left:264.381000px;}
.xb{left:269.914500px;}
.x3e{left:271.485000px;}
.x118{left:272.643000px;}
.xd6{left:275.619225px;}
.xf7{left:276.891000px;}
.xcd{left:278.338500px;}
.xd{left:281.479500px;}
.xa2{left:283.899000px;}
.x91{left:286.960500px;}
.x116{left:288.915000px;}
.x111{left:290.095500px;}
.x82{left:291.870150px;}
.x55{left:293.389800px;}
.x92{left:296.191500px;}
.x4c{left:297.849000px;}
.xf8{left:299.239500px;}
.x59{left:300.517800px;}
.x5a{left:305.467800px;}
.x4d{left:307.080000px;}
.xc4{left:308.427000px;}
.x98{left:310.335000px;}
.x10{left:312.084000px;}
.x8c{left:313.341000px;}
.xe4{left:314.436225px;}
.x8b{left:315.615000px;}
.xeb{left:318.066000px;}
.x11{left:319.555500px;}
.xe7{left:321.291000px;}
.x3c{left:323.500500px;}
.x22{left:326.134500px;}
.x20{left:327.498000px;}
.xb4{left:328.575000px;}
.x107{left:330.627000px;}
.x130{left:331.777500px;}
.xa3{left:333.094500px;}
.x21{left:337.587000px;}
.xd3{left:339.828000px;}
.xba{left:342.663000px;}
.x129{left:344.130000px;}
.x128{left:346.267500px;}
.x93{left:349.017000px;}
.xbb{left:350.293500px;}
.x12c{left:351.639000px;}
.x60{left:356.056800px;}
.x4e{left:357.763500px;}
.x94{left:359.265000px;}
.x61{left:361.006800px;}
.x4f{left:367.791000px;}
.xb3{left:368.985000px;}
.xce{left:370.575000px;}
.x95{left:372.865500px;}
.xec{left:375.676500px;}
.x100{left:376.941000px;}
.xd7{left:377.962725px;}
.x99{left:379.129500px;}
.x138{left:380.412000px;}
.xbc{left:382.774500px;}
.x101{left:384.571500px;}
.xf5{left:385.987500px;}
.x11e{left:390.711000px;}
.x62{left:391.993800px;}
.x50{left:393.121500px;}
.x105{left:396.891000px;}
.xdf{left:397.992000px;}
.x96{left:399.060000px;}
.x11f{left:400.740000px;}
.x63{left:401.794800px;}
.x110{left:403.453500px;}
.xf6{left:404.553000px;}
.x102{left:406.536000px;}
.x106{left:408.252000px;}
.x109{left:409.977000px;}
.x18{left:411.388500px;}
.x51{left:412.491000px;}
.x10b{left:413.596500px;}
.x97{left:414.826500px;}
.x103{left:416.625000px;}
.x19{left:418.860000px;}
.xd9{left:420.159000px;}
.x64{left:422.188800px;}
.xe{left:424.699500px;}
.x3d{left:426.241500px;}
.x10c{left:430.023000px;}
.xf{left:432.171000px;}
.x135{left:433.941000px;}
.x8d{left:436.780500px;}
.x1a{left:438.648000px;}
.xcf{left:439.789500px;}
.x10d{left:441.196500px;}
.x9a{left:444.856500px;}
.x1b{left:446.119500px;}
.x10a{left:447.186000px;}
.x86{left:448.389150px;}
.x1c{left:449.781000px;}
.x9b{left:451.282500px;}
.x10e{left:452.568000px;}
.x4{left:453.861000px;}
.xfc{left:455.365500px;}
.x1d{left:457.254000px;}
.xf1{left:460.045500px;}
.xbd{left:463.018500px;}
.xd8{left:466.711725px;}
.x24{left:469.116000px;}
.xbe{left:470.649000px;}
.xc9{left:472.731000px;}
.x5{left:473.893500px;}
.x25{left:476.589000px;}
.xe2{left:478.681725px;}
.x26{left:480.301500px;}
.x3f{left:481.840500px;}
.xfb{left:483.861000px;}
.x5b{left:484.954800px;}
.xe3{left:487.231725px;}
.x120{left:488.311500px;}
.x5c{left:489.805800px;}
.x39{left:490.869000px;}
.x40{left:492.000000px;}
.x112{left:493.231500px;}
.x27{left:495.246000px;}
.x10f{left:496.575000px;}
.xf2{left:498.469500px;}
.x9c{left:500.895000px;}
.xb7{left:503.805000px;}
.x9d{left:507.499500px;}
.xbf{left:508.762500px;}
.x104{left:509.782500px;}
.x14{left:512.008500px;}
.x113{left:513.495000px;}
.xd2{left:515.397000px;}
.xf3{left:517.962000px;}
.x15{left:519.480000px;}
.x5d{left:521.782800px;}
.x9e{left:523.267500px;}
.x114{left:524.845500px;}
.xa4{left:526.735500px;}
.xc0{left:528.732000px;}
.x131{left:530.170500px;}
.x5e{left:531.682800px;}
.xa5{left:535.966500px;}
.xca{left:539.244000px;}
.x5f{left:543.067800px;}
.x47{left:546.402000px;}
.xaa{left:547.884000px;}
.xb8{left:550.695000px;}
.x48{left:552.828000px;}
.xea{left:554.748000px;}
.x83{left:556.397985px;}
.xb9{left:559.695000px;}
.x2c{left:561.580500px;}
.xf4{left:563.060250px;}
.x84{left:566.199150px;}
.x12a{left:569.118000px;}
.x28{left:575.130000px;}
.x2d{left:576.525000px;}
.xab{left:577.674000px;}
.x6{left:581.704500px;}
.x29{left:586.504500px;}
.xae{left:587.681242px;}
.x37{left:589.812000px;}
.xe0{left:591.159000px;}
.xc1{left:593.838000px;}
.x12d{left:594.937500px;}
.xac{left:597.192000px;}
.x8e{left:600.096000px;}
.x7{left:601.737000px;}
.xc2{left:603.069000px;}
.x38{left:604.756500px;}
.x49{left:608.169000px;}
.x134{left:610.059000px;}
.xe1{left:611.157000px;}
.xc3{left:613.156500px;}
.x8f{left:614.505000px;}
.x30{left:616.953000px;}
.x9f{left:621.082500px;}
.x31{left:624.424500px;}
.x32{left:628.086000px;}
.xa0{left:630.313500px;}
.x33{left:635.557500px;}
.x41{left:637.299000px;}
.x34{left:639.219000px;}
.xc8{left:641.955000px;}
.x42{left:643.725000px;}
.x12{left:646.236000px;}
.x6c{left:647.474850px;}
.x115{left:649.077000px;}
.x132{left:650.127000px;}
.x69{left:651.965392px;}
.x13{left:653.707500px;}
.xed{left:654.723000px;}
.xfd{left:656.386500px;}
.xe9{left:659.182500px;}
.x35{left:661.486500px;}
.xee{left:663.954000px;}
.x3a{left:666.585000px;}
.x11d{left:669.439500px;}
.xda{left:670.996500px;}
.xa1{left:672.199500px;}
.x43{left:673.243500px;}
.x36{left:676.429500px;}
.x3b{left:681.528000px;}
.xfe{left:684.319500px;}
.xd0{left:686.337000px;}
.x12e{left:689.503500px;}
.x44{left:692.949000px;}
.xff{left:696.561000px;}
.x136{left:697.741500px;}
.x45{left:699.553500px;}
.xef{left:703.093500px;}
.x2e{left:705.574500px;}
.x108{left:709.336500px;}
.x12f{left:711.723000px;}
.x137{left:713.773500px;}
.x46{left:715.321500px;}
.x119{left:716.695500px;}
.x2f{left:720.519000px;}
.xf0{left:723.166500px;}
.x11a{left:724.324500px;}
.xf9{left:727.006500px;}
.x12b{left:729.628500px;}
.xde{left:731.415000px;}
.x117{left:738.336000px;}
.x4a{left:739.723500px;}
.x90{left:740.733000px;}
.xfa{left:741.951000px;}
.x11b{left:744.628500px;}
.x4b{left:749.872500px;}
.x2a{left:754.189500px;}
.x11c{left:756.615000px;}
.xa6{left:757.986000px;}
.xdb{left:759.385500px;}
.xa7{left:767.215500px;}
.x2b{left:773.541000px;}
.x121{left:780.724500px;}
.xe8{left:783.013500px;}
.xdc{left:784.744500px;}
.xa8{left:787.678500px;}
.xc5{left:789.783000px;}
.xd1{left:794.026500px;}
.xdd{left:795.267000px;}
.x123{left:796.269000px;}
.x1e{left:797.473500px;}
.xc6{left:801.159000px;}
.xcb{left:802.606500px;}
.x1f{left:805.102500px;}
.xa9{left:807.181500px;}
.x126{left:811.599000px;}
.xcc{left:813.967500px;}
.x124{left:815.802000px;}
.x8{left:816.966000px;}
.x23{left:818.002500px;}
.x133{left:821.299500px;}
.xc7{left:823.714500px;}
.x16{left:825.519000px;}
.x127{left:827.367000px;}
.x125{left:828.967500px;}
.x122{left:831.921000px;}
.x17{left:832.990500px;}
.x13b{left:835.690500px;}
.x9{left:836.998500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.624000pt;}
.v4{vertical-align:-9.706667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls56{letter-spacing:-2.721699pt;}
.ls2a{letter-spacing:-2.368995pt;}
.lsb3{letter-spacing:-1.668960pt;}
.ls53{letter-spacing:-0.876480pt;}
.ls2d{letter-spacing:-0.470272pt;}
.ls58{letter-spacing:-0.411488pt;}
.ls51{letter-spacing:-0.353760pt;}
.ls4e{letter-spacing:-0.327360pt;}
.lsa1{letter-spacing:-0.296400pt;}
.lsb6{letter-spacing:-0.294454pt;}
.ls98{letter-spacing:-0.228000pt;}
.ls52{letter-spacing:-0.227040pt;}
.ls9b{letter-spacing:-0.205200pt;}
.ls9a{letter-spacing:-0.196080pt;}
.ls7a{letter-spacing:-0.176352pt;}
.ls78{letter-spacing:-0.158400pt;}
.ls2b{letter-spacing:-0.152838pt;}
.ls55{letter-spacing:-0.135203pt;}
.lsb7{letter-spacing:-0.126920pt;}
.ls25{letter-spacing:-0.123446pt;}
.ls7f{letter-spacing:-0.122912pt;}
.ls59{letter-spacing:-0.099933pt;}
.ls9c{letter-spacing:-0.091200pt;}
.ls2c{letter-spacing:-0.088176pt;}
.ls28{letter-spacing:-0.082298pt;}
.ls4d{letter-spacing:-0.073920pt;}
.ls99{letter-spacing:-0.063840pt;}
.lsb5{letter-spacing:-0.054720pt;}
.ls80{letter-spacing:-0.053440pt;}
.ls1f{letter-spacing:-0.052906pt;}
.ls26{letter-spacing:-0.047027pt;}
.ls7b{letter-spacing:-0.037408pt;}
.ls4f{letter-spacing:-0.031680pt;}
.ls54{letter-spacing:-0.026400pt;}
.ls79{letter-spacing:-0.024000pt;}
.ls27{letter-spacing:-0.023514pt;}
.lsbd{letter-spacing:-0.022800pt;}
.ls9e{letter-spacing:-0.018240pt;}
.ls22{letter-spacing:-0.017635pt;}
.lsa2{letter-spacing:-0.013680pt;}
.ls20{letter-spacing:-0.011757pt;}
.ls1e{letter-spacing:-0.009363pt;}
.ls9d{letter-spacing:-0.009120pt;}
.ls77{letter-spacing:-0.008512pt;}
.ls97{letter-spacing:-0.008086pt;}
.ls21{letter-spacing:-0.005878pt;}
.ls50{letter-spacing:-0.005280pt;}
.ls1d{letter-spacing:-0.004682pt;}
.lsb4{letter-spacing:-0.004560pt;}
.ls76{letter-spacing:-0.004256pt;}
.ls96{letter-spacing:-0.004043pt;}
.ls9{letter-spacing:0.000000pt;}
.lsca{letter-spacing:0.000015pt;}
.ls41{letter-spacing:0.000078pt;}
.lsd4{letter-spacing:0.000375pt;}
.ls73{letter-spacing:0.000481pt;}
.ls49{letter-spacing:0.000544pt;}
.lsc1{letter-spacing:0.000567pt;}
.ls91{letter-spacing:0.000711pt;}
.ls48{letter-spacing:0.000747pt;}
.ls74{letter-spacing:0.000980pt;}
.lscf{letter-spacing:0.001026pt;}
.lsc9{letter-spacing:0.001140pt;}
.ls44{letter-spacing:0.001181pt;}
.lsb2{letter-spacing:0.001335pt;}
.lsc3{letter-spacing:0.001419pt;}
.ls92{letter-spacing:0.001552pt;}
.ls93{letter-spacing:0.001630pt;}
.ls5{letter-spacing:0.001735pt;}
.lsbc{letter-spacing:0.001854pt;}
.lse0{letter-spacing:0.001863pt;}
.lsc8{letter-spacing:0.002008pt;}
.lsc6{letter-spacing:0.002073pt;}
.lsc{letter-spacing:0.002237pt;}
.ls46{letter-spacing:0.002425pt;}
.ls90{letter-spacing:0.002471pt;}
.ls42{letter-spacing:0.002525pt;}
.ls94{letter-spacing:0.002970pt;}
.lsc2{letter-spacing:0.003137pt;}
.lsc0{letter-spacing:0.003139pt;}
.lsc4{letter-spacing:0.003288pt;}
.ls6{letter-spacing:0.003775pt;}
.lsc7{letter-spacing:0.004149pt;}
.ls75{letter-spacing:0.004221pt;}
.lsd3{letter-spacing:0.004267pt;}
.ls43{letter-spacing:0.004301pt;}
.ls8d{letter-spacing:0.004560pt;}
.ls5f{letter-spacing:0.004800pt;}
.ls33{letter-spacing:0.005280pt;}
.ls12{letter-spacing:0.005878pt;}
.lsab{letter-spacing:0.006080pt;}
.ls6e{letter-spacing:0.006400pt;}
.ls1c{letter-spacing:0.007040pt;}
.ls87{letter-spacing:0.009120pt;}
.ls5e{letter-spacing:0.009600pt;}
.ls30{letter-spacing:0.010560pt;}
.ls3b{letter-spacing:0.011757pt;}
.ls85{letter-spacing:0.013680pt;}
.ls5c{letter-spacing:0.014400pt;}
.ls2e{letter-spacing:0.015840pt;}
.ls6d{letter-spacing:0.016032pt;}
.ls40{letter-spacing:0.017635pt;}
.lsba{letter-spacing:0.018240pt;}
.lsad{letter-spacing:0.020307pt;}
.ls31{letter-spacing:0.021120pt;}
.ls6a{letter-spacing:0.021376pt;}
.ls86{letter-spacing:0.022800pt;}
.ls5d{letter-spacing:0.024000pt;}
.ls2f{letter-spacing:0.026400pt;}
.ls8f{letter-spacing:0.027360pt;}
.ls62{letter-spacing:0.028800pt;}
.ls3c{letter-spacing:0.029392pt;}
.lsb0{letter-spacing:0.030461pt;}
.ls36{letter-spacing:0.031680pt;}
.lsa5{letter-spacing:0.031920pt;}
.ls67{letter-spacing:0.033600pt;}
.lsbb{letter-spacing:0.036480pt;}
.ls3a{letter-spacing:0.036960pt;}
.ls66{letter-spacing:0.038400pt;}
.lsaf{letter-spacing:0.040614pt;}
.ls8e{letter-spacing:0.041040pt;}
.ls18{letter-spacing:0.041149pt;}
.ls39{letter-spacing:0.042240pt;}
.ls72{letter-spacing:0.042752pt;}
.ls68{letter-spacing:0.043200pt;}
.lsa7{letter-spacing:0.045600pt;}
.lsac{letter-spacing:0.045691pt;}
.ls1a{letter-spacing:0.047027pt;}
.ls35{letter-spacing:0.047520pt;}
.lsa6{letter-spacing:0.050160pt;}
.lsb1{letter-spacing:0.050768pt;}
.ls64{letter-spacing:0.052800pt;}
.ls11{letter-spacing:0.052906pt;}
.ls69{letter-spacing:0.053440pt;}
.ls8b{letter-spacing:0.054720pt;}
.lsaa{letter-spacing:0.055845pt;}
.ls14{letter-spacing:0.058784pt;}
.lsa9{letter-spacing:0.060922pt;}
.ls10{letter-spacing:0.063360pt;}
.ls6b{letter-spacing:0.064128pt;}
.ls3d{letter-spacing:0.064662pt;}
.ls70{letter-spacing:0.069472pt;}
.ls17{letter-spacing:0.070541pt;}
.ls8c{letter-spacing:0.072960pt;}
.ls38{letter-spacing:0.073920pt;}
.ls71{letter-spacing:0.074816pt;}
.ls16{letter-spacing:0.076419pt;}
.ls65{letter-spacing:0.076800pt;}
.ls6c{letter-spacing:0.080160pt;}
.ls1b{letter-spacing:0.082298pt;}
.ls6f{letter-spacing:0.085504pt;}
.lsae{letter-spacing:0.086306pt;}
.ls3f{letter-spacing:0.088176pt;}
.ls24{letter-spacing:0.094054pt;}
.lsf{letter-spacing:0.099933pt;}
.ls7d{letter-spacing:0.101536pt;}
.lsa8{letter-spacing:0.104880pt;}
.ls13{letter-spacing:0.105811pt;}
.ls9f{letter-spacing:0.109440pt;}
.ls63{letter-spacing:0.115200pt;}
.ls88{letter-spacing:0.118560pt;}
.ls60{letter-spacing:0.124800pt;}
.ls37{letter-spacing:0.132000pt;}
.ls89{letter-spacing:0.132240pt;}
.ls61{letter-spacing:0.134400pt;}
.ls3e{letter-spacing:0.135203pt;}
.ls32{letter-spacing:0.137280pt;}
.ls57{letter-spacing:0.146960pt;}
.ls34{letter-spacing:0.147840pt;}
.ls84{letter-spacing:0.149598pt;}
.lsb9{letter-spacing:0.153642pt;}
.ls8a{letter-spacing:0.155040pt;}
.ls5b{letter-spacing:0.157472pt;}
.ls83{letter-spacing:0.161728pt;}
.ls15{letter-spacing:0.164595pt;}
.ls5a{letter-spacing:0.170240pt;}
.ls7c{letter-spacing:0.171008pt;}
.lse{letter-spacing:0.173219pt;}
.lsd{letter-spacing:0.187264pt;}
.ls23{letter-spacing:0.188109pt;}
.ls19{letter-spacing:0.205744pt;}
.lsa{letter-spacing:0.482502pt;}
.lsb{letter-spacing:0.487835pt;}
.ls4b{letter-spacing:0.505907pt;}
.ls95{letter-spacing:0.717312pt;}
.lsa0{letter-spacing:0.766080pt;}
.ls29{letter-spacing:0.799462pt;}
.ls4c{letter-spacing:2.651733pt;}
.ls1{letter-spacing:2.657067pt;}
.ls81{letter-spacing:2.659255pt;}
.ls3{letter-spacing:2.665203pt;}
.lscd{letter-spacing:3.163733pt;}
.ls7e{letter-spacing:4.569120pt;}
.ls0{letter-spacing:9.298933pt;}
.ls8{letter-spacing:10.626533pt;}
.lse3{letter-spacing:11.674732pt;}
.lse2{letter-spacing:11.705884pt;}
.lsda{letter-spacing:11.820600pt;}
.ls45{letter-spacing:11.820636pt;}
.lsd2{letter-spacing:11.954133pt;}
.ls47{letter-spacing:11.955635pt;}
.lse1{letter-spacing:11.956267pt;}
.lsd1{letter-spacing:11.959467pt;}
.lsdb{letter-spacing:11.980414pt;}
.lsd6{letter-spacing:12.058282pt;}
.lsdf{letter-spacing:12.060929pt;}
.lsde{letter-spacing:12.180854pt;}
.lsd7{letter-spacing:12.213164pt;}
.lsce{letter-spacing:12.345809pt;}
.lsa4{letter-spacing:12.528078pt;}
.lsbe{letter-spacing:12.533411pt;}
.lsa3{letter-spacing:12.553600pt;}
.lscc{letter-spacing:13.028867pt;}
.lsc5{letter-spacing:13.835681pt;}
.lsd0{letter-spacing:14.823467pt;}
.lscb{letter-spacing:15.148099pt;}
.lsd5{letter-spacing:15.354604pt;}
.lsdd{letter-spacing:15.631728pt;}
.ls4a{letter-spacing:15.937067pt;}
.ls82{letter-spacing:15.939255pt;}
.lsb8{letter-spacing:15.942400pt;}
.lsbf{letter-spacing:16.011733pt;}
.lsd9{letter-spacing:16.525846pt;}
.lsdc{letter-spacing:16.677480pt;}
.lsd8{letter-spacing:26.073558pt;}
.ls2{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls7{letter-spacing:57.174803pt;}
.ws19c{word-spacing:-42.077867pt;}
.ws53{word-spacing:-35.200000pt;}
.wsd9{word-spacing:-32.000000pt;}
.ws8{word-spacing:-23.910400pt;}
.ws50{word-spacing:-14.884109pt;}
.ws51{word-spacing:-14.696000pt;}
.ws52{word-spacing:-14.572554pt;}
.ws54{word-spacing:-14.225728pt;}
.ws7d{word-spacing:-13.347840pt;}
.wsa{word-spacing:-13.283467pt;}
.ws7a{word-spacing:-13.210560pt;}
.ws7b{word-spacing:-13.200000pt;}
.ws7c{word-spacing:-12.846240pt;}
.wsc{word-spacing:-12.760670pt;}
.wsd7{word-spacing:-12.115200pt;}
.wsd8{word-spacing:-12.000000pt;}
.ws7f{word-spacing:-11.955200pt;}
.ws4e{word-spacing:-11.891264pt;}
.ws4f{word-spacing:-11.704000pt;}
.ws14f{word-spacing:-11.509440pt;}
.ws10c{word-spacing:-11.400000pt;}
.wsd5{word-spacing:-10.810240pt;}
.wsd6{word-spacing:-10.640000pt;}
.ws11{word-spacing:-10.626800pt;}
.ws10a{word-spacing:-10.269728pt;}
.ws10b{word-spacing:-10.108000pt;}
.wsf{word-spacing:-10.095467pt;}
.ws6{word-spacing:-9.298400pt;}
.ws61{word-spacing:-3.532918pt;}
.ws73{word-spacing:-3.474134pt;}
.ws60{word-spacing:-3.432986pt;}
.ws74{word-spacing:-3.403594pt;}
.ws5f{word-spacing:-3.127309pt;}
.wsbd{word-spacing:-3.121430pt;}
.wsca{word-spacing:-3.103795pt;}
.wsbc{word-spacing:-2.992106pt;}
.ws27{word-spacing:-2.975497pt;}
.ws197{word-spacing:-2.869229pt;}
.wsba{word-spacing:-2.856902pt;}
.ws1a9{word-spacing:-2.816095pt;}
.wsb6{word-spacing:-2.815754pt;}
.ws70{word-spacing:-2.803997pt;}
.ws65{word-spacing:-2.798118pt;}
.ws1ae{word-spacing:-2.762961pt;}
.ws141{word-spacing:-2.741472pt;}
.wsbb{word-spacing:-2.721699pt;}
.wsb7{word-spacing:-2.709942pt;}
.ws2d{word-spacing:-2.709827pt;}
.wsbe{word-spacing:-2.698186pt;}
.ws142{word-spacing:-2.695781pt;}
.ws64{word-spacing:-2.427779pt;}
.ws72{word-spacing:-2.416022pt;}
.ws71{word-spacing:-2.286698pt;}
.ws1ac{word-spacing:-2.125355pt;}
.ws1fa{word-spacing:-2.104115pt;}
.ws119{word-spacing:-2.047440pt;}
.ws1a1{word-spacing:-2.019087pt;}
.ws19d{word-spacing:-1.965953pt;}
.ws194{word-spacing:-1.912819pt;}
.ws103{word-spacing:-1.907808pt;}
.ws193{word-spacing:-1.859685pt;}
.ws4b{word-spacing:-1.806551pt;}
.wse9{word-spacing:-1.785600pt;}
.wse8{word-spacing:-1.780800pt;}
.wse6{word-spacing:-1.771200pt;}
.ws117{word-spacing:-1.769280pt;}
.wse7{word-spacing:-1.761600pt;}
.ws1f{word-spacing:-1.753418pt;}
.ws114{word-spacing:-1.741920pt;}
.ws113{word-spacing:-1.682640pt;}
.ws1b6{word-spacing:-1.673728pt;}
.ws11a{word-spacing:-1.650720pt;}
.ws16b{word-spacing:-1.647150pt;}
.ws115{word-spacing:-1.605120pt;}
.wsea{word-spacing:-1.598400pt;}
.ws190{word-spacing:-1.594016pt;}
.ws102{word-spacing:-1.587168pt;}
.ws118{word-spacing:-1.577760pt;}
.ws163{word-spacing:-1.530266pt;}
.ws13a{word-spacing:-1.502733pt;}
.ws116{word-spacing:-1.472880pt;}
.ws132{word-spacing:-1.468320pt;}
.ws80{word-spacing:-1.434624pt;}
.ws20{word-spacing:-1.434614pt;}
.ws130{word-spacing:-1.413600pt;}
.ws131{word-spacing:-1.409040pt;}
.wsb9{word-spacing:-1.393181pt;}
.ws136{word-spacing:-1.386240pt;}
.wsb8{word-spacing:-1.381424pt;}
.ws137{word-spacing:-1.372560pt;}
.wsd1{word-spacing:-1.346154pt;}
.ws1a2{word-spacing:-1.328347pt;}
.wsd2{word-spacing:-1.316762pt;}
.ws45{word-spacing:-1.275213pt;}
.wsfc{word-spacing:-1.255840pt;}
.ws129{word-spacing:-1.222079pt;}
.wsfd{word-spacing:-1.213088pt;}
.ws11c{word-spacing:-1.167360pt;}
.ws11b{word-spacing:-1.112640pt;}
.ws81{word-spacing:-1.099878pt;}
.ws16d{word-spacing:-1.070075pt;}
.ws16f{word-spacing:-1.062677pt;}
.ws31{word-spacing:-1.009543pt;}
.ws78{word-spacing:-0.952301pt;}
.wsf7{word-spacing:-0.929856pt;}
.wsab{word-spacing:-0.913440pt;}
.ws187{word-spacing:-0.903276pt;}
.wsaa{word-spacing:-0.902880pt;}
.wsf6{word-spacing:-0.897792pt;}
.wsa6{word-spacing:-0.887040pt;}
.ws1a6{word-spacing:-0.850142pt;}
.wsf3{word-spacing:-0.830400pt;}
.wsf2{word-spacing:-0.820800pt;}
.wsee{word-spacing:-0.806400pt;}
.ws94{word-spacing:-0.797008pt;}
.ws15e{word-spacing:-0.766080pt;}
.ws2f{word-spacing:-0.743874pt;}
.ws87{word-spacing:-0.717312pt;}
.ws77{word-spacing:-0.711286pt;}
.ws6c{word-spacing:-0.693651pt;}
.ws18b{word-spacing:-0.690740pt;}
.ws3a{word-spacing:-0.637606pt;}
.ws92{word-spacing:-0.584473pt;}
.ws18a{word-spacing:-0.531339pt;}
.wsde{word-spacing:-0.526029pt;}
.ws76{word-spacing:-0.523178pt;}
.wse2{word-spacing:-0.478205pt;}
.ws75{word-spacing:-0.458515pt;}
.wsc1{word-spacing:-0.446758pt;}
.ws176{word-spacing:-0.425071pt;}
.ws10e{word-spacing:-0.382566pt;}
.ws33{word-spacing:-0.371937pt;}
.ws1e8{word-spacing:-0.334746pt;}
.ws17{word-spacing:-0.318803pt;}
.ws208{word-spacing:-0.286925pt;}
.ws56{word-spacing:-0.271533pt;}
.ws30{word-spacing:-0.265669pt;}
.ws5c{word-spacing:-0.252771pt;}
.wsb0{word-spacing:-0.246893pt;}
.wse3{word-spacing:-0.246848pt;}
.ws1b0{word-spacing:-0.239104pt;}
.ws6b{word-spacing:-0.235136pt;}
.ws110{word-spacing:-0.234506pt;}
.ws1e1{word-spacing:-0.230843pt;}
.ws2e{word-spacing:-0.212535pt;}
.ws150{word-spacing:-0.191283pt;}
.ws1a{word-spacing:-0.159402pt;}
.ws133{word-spacing:-0.155040pt;}
.ws82{word-spacing:-0.143462pt;}
.ws134{word-spacing:-0.132240pt;}
.ws17d{word-spacing:-0.113812pt;}
.ws29{word-spacing:-0.106268pt;}
.ws88{word-spacing:-0.095642pt;}
.ws139{word-spacing:-0.091200pt;}
.ws57{word-spacing:-0.074906pt;}
.wse4{word-spacing:-0.068096pt;}
.ws111{word-spacing:-0.064691pt;}
.ws169{word-spacing:-0.057164pt;}
.ws5d{word-spacing:-0.056320pt;}
.wsb{word-spacing:-0.053134pt;}
.ws55{word-spacing:-0.047821pt;}
.ws12{word-spacing:-0.042507pt;}
.ws3{word-spacing:-0.037194pt;}
.ws203{word-spacing:-0.008183pt;}
.ws205{word-spacing:-0.005769pt;}
.ws91{word-spacing:-0.004285pt;}
.ws1a3{word-spacing:-0.002153pt;}
.ws1c4{word-spacing:-0.001425pt;}
.ws0{word-spacing:0.000000pt;}
.ws1a4{word-spacing:0.000136pt;}
.ws1c6{word-spacing:0.001758pt;}
.ws79{word-spacing:0.017635pt;}
.wsf5{word-spacing:0.032064pt;}
.ws2{word-spacing:0.037194pt;}
.wsda{word-spacing:0.047821pt;}
.wsb2{word-spacing:0.052906pt;}
.ws2c{word-spacing:0.053134pt;}
.ws11d{word-spacing:0.082080pt;}
.wsb3{word-spacing:0.082298pt;}
.wsc0{word-spacing:0.094054pt;}
.ws10d{word-spacing:0.095642pt;}
.ws1b{word-spacing:0.106268pt;}
.ws5e{word-spacing:0.111690pt;}
.wsb1{word-spacing:0.117568pt;}
.wsf4{word-spacing:0.120000pt;}
.ws13{word-spacing:0.127522pt;}
.wsac{word-spacing:0.132000pt;}
.ws121{word-spacing:0.141360pt;}
.ws89{word-spacing:0.143462pt;}
.ws138{word-spacing:0.155040pt;}
.ws15{word-spacing:0.159402pt;}
.ws122{word-spacing:0.168720pt;}
.ws10{word-spacing:0.170029pt;}
.wsc2{word-spacing:0.176352pt;}
.ws7e{word-spacing:0.191283pt;}
.wsd{word-spacing:0.212535pt;}
.ws162{word-spacing:0.239104pt;}
.wse{word-spacing:0.265669pt;}
.ws1f2{word-spacing:0.286925pt;}
.ws41{word-spacing:0.318803pt;}
.wsb5{word-spacing:0.346826pt;}
.wsd0{word-spacing:0.352704pt;}
.ws18{word-spacing:0.371937pt;}
.wsdd{word-spacing:0.382566pt;}
.wsce{word-spacing:0.387974pt;}
.wsb4{word-spacing:0.417366pt;}
.ws4c{word-spacing:0.425071pt;}
.ws1e{word-spacing:0.478205pt;}
.ws1ab{word-spacing:0.500000pt;}
.wsa1{word-spacing:0.501600pt;}
.wsa2{word-spacing:0.522720pt;}
.ws93{word-spacing:0.531339pt;}
.wscf{word-spacing:0.546691pt;}
.ws34{word-spacing:0.584473pt;}
.ws198{word-spacing:0.637606pt;}
.ws143{word-spacing:0.659984pt;}
.ws1b8{word-spacing:0.669491pt;}
.ws42{word-spacing:0.690740pt;}
.ws5b{word-spacing:0.699530pt;}
.ws6d{word-spacing:0.705408pt;}
.ws19{word-spacing:0.743874pt;}
.wsa3{word-spacing:0.760320pt;}
.ws1f5{word-spacing:0.765133pt;}
.ws135{word-spacing:0.770640pt;}
.ws90{word-spacing:0.797008pt;}
.ws5a{word-spacing:0.811219pt;}
.ws8f{word-spacing:0.850142pt;}
.ws16{word-spacing:0.903276pt;}
.ws149{word-spacing:0.956410pt;}
.ws14e{word-spacing:1.009543pt;}
.ws17a{word-spacing:1.062677pt;}
.ws6f{word-spacing:1.069869pt;}
.ws1d{word-spacing:1.115811pt;}
.ws1af{word-spacing:1.147699pt;}
.ws14d{word-spacing:1.168945pt;}
.ws59{word-spacing:1.205072pt;}
.ws177{word-spacing:1.222079pt;}
.ws6e{word-spacing:1.234464pt;}
.ws28{word-spacing:1.275213pt;}
.wsdf{word-spacing:1.328347pt;}
.ws1ba{word-spacing:1.338982pt;}
.ws11e{word-spacing:1.368000pt;}
.ws2a{word-spacing:1.381481pt;}
.ws123{word-spacing:1.386803pt;}
.ws179{word-spacing:1.419721pt;}
.ws154{word-spacing:1.427280pt;}
.ws128{word-spacing:1.434614pt;}
.ws126{word-spacing:1.482445pt;}
.ws8e{word-spacing:1.487748pt;}
.ws3c{word-spacing:1.540882pt;}
.ws13d{word-spacing:1.553501pt;}
.ws13e{word-spacing:1.578885pt;}
.ws22{word-spacing:1.594016pt;}
.wsdc{word-spacing:1.625907pt;}
.wsad{word-spacing:1.640074pt;}
.ws161{word-spacing:1.641600pt;}
.ws3e{word-spacing:1.647150pt;}
.ws153{word-spacing:1.664400pt;}
.ws160{word-spacing:1.668960pt;}
.ws157{word-spacing:1.673520pt;}
.ws155{word-spacing:1.687200pt;}
.ws156{word-spacing:1.691760pt;}
.ws127{word-spacing:1.700284pt;}
.ws15f{word-spacing:1.700880pt;}
.ws1c0{word-spacing:1.721549pt;}
.wsf1{word-spacing:1.728000pt;}
.ws25{word-spacing:1.753418pt;}
.wsf0{word-spacing:1.756800pt;}
.wsef{word-spacing:1.790400pt;}
.ws18c{word-spacing:1.806551pt;}
.wsc6{word-spacing:1.810547pt;}
.ws1a7{word-spacing:1.859685pt;}
.wsa9{word-spacing:1.900800pt;}
.ws18e{word-spacing:1.912819pt;}
.wsa8{word-spacing:1.932480pt;}
.ws105{word-spacing:1.950560pt;}
.ws1e9{word-spacing:1.960653pt;}
.ws104{word-spacing:1.961248pt;}
.wsa7{word-spacing:1.969440pt;}
.ws19f{word-spacing:2.019087pt;}
.ws191{word-spacing:2.072221pt;}
.ws67{word-spacing:2.133859pt;}
.wsc7{word-spacing:2.151494pt;}
.ws17b{word-spacing:2.178489pt;}
.wsc5{word-spacing:2.192643pt;}
.wsc4{word-spacing:2.204400pt;}
.ws5{word-spacing:2.217731pt;}
.ws7{word-spacing:2.231335pt;}
.ws195{word-spacing:2.231622pt;}
.ws11f{word-spacing:2.243520pt;}
.ws146{word-spacing:2.247578pt;}
.ws66{word-spacing:2.251427pt;}
.ws120{word-spacing:2.257200pt;}
.ws164{word-spacing:2.337890pt;}
.ws16a{word-spacing:2.391024pt;}
.ws96{word-spacing:2.444158pt;}
.wsc3{word-spacing:2.480685pt;}
.ws1b1{word-spacing:2.574640pt;}
.ws167{word-spacing:2.656693pt;}
.ws1b5{word-spacing:2.669409pt;}
.ws12a{word-spacing:2.677965pt;}
.wsfa{word-spacing:2.682688pt;}
.ws39{word-spacing:2.762961pt;}
.ws38{word-spacing:2.816095pt;}
.ws1d2{word-spacing:2.860715pt;}
.ws1db{word-spacing:2.861107pt;}
.ws1c2{word-spacing:2.862746pt;}
.ws1f9{word-spacing:2.863095pt;}
.ws206{word-spacing:2.864435pt;}
.ws207{word-spacing:2.864512pt;}
.ws1fb{word-spacing:2.866278pt;}
.wsa4{word-spacing:2.867040pt;}
.ws1bd{word-spacing:2.868898pt;}
.ws1d1{word-spacing:2.869248pt;}
.wsfb{word-spacing:2.885760pt;}
.ws15d{word-spacing:2.886480pt;}
.wsf8{word-spacing:2.901792pt;}
.ws124{word-spacing:2.917069pt;}
.ws19b{word-spacing:2.922363pt;}
.wsa5{word-spacing:2.925120pt;}
.ws13f{word-spacing:2.944544pt;}
.wsed{word-spacing:3.038400pt;}
.ws86{word-spacing:3.060531pt;}
.ws140{word-spacing:3.061310pt;}
.ws13b{word-spacing:3.066387pt;}
.ws1eb{word-spacing:3.108352pt;}
.ws40{word-spacing:3.134898pt;}
.wsf9{word-spacing:3.142272pt;}
.ws186{word-spacing:3.188032pt;}
.ws125{word-spacing:3.251814pt;}
.ws2b{word-spacing:3.294300pt;}
.ws32{word-spacing:3.347434pt;}
.ws1ad{word-spacing:3.400567pt;}
.ws14{word-spacing:3.439113pt;}
.ws1bf{word-spacing:3.443098pt;}
.ws14a{word-spacing:3.453701pt;}
.ws36{word-spacing:3.506835pt;}
.ws3d{word-spacing:3.559969pt;}
.ws1d6{word-spacing:3.586560pt;}
.ws1c{word-spacing:3.613103pt;}
.ws3f{word-spacing:3.666237pt;}
.ws1ed{word-spacing:3.682202pt;}
.ws13c{word-spacing:3.721294pt;}
.ws1e6{word-spacing:3.730022pt;}
.ws15c{word-spacing:3.734640pt;}
.ws15b{word-spacing:3.757440pt;}
.wse1{word-spacing:3.772505pt;}
.wse0{word-spacing:3.825638pt;}
.ws24{word-spacing:3.825664pt;}
.ws106{word-spacing:3.863712pt;}
.ws107{word-spacing:3.869056pt;}
.ws192{word-spacing:3.878772pt;}
.wsec{word-spacing:3.931200pt;}
.ws182{word-spacing:3.931906pt;}
.wseb{word-spacing:3.955200pt;}
.ws184{word-spacing:3.955668pt;}
.ws18f{word-spacing:3.985040pt;}
.ws158{word-spacing:4.035600pt;}
.ws188{word-spacing:4.038174pt;}
.ws15a{word-spacing:4.090320pt;}
.ws1f7{word-spacing:4.112589pt;}
.ws159{word-spacing:4.126800pt;}
.ws19a{word-spacing:4.144442pt;}
.ws85{word-spacing:4.160410pt;}
.wsc9{word-spacing:4.232448pt;}
.ws8c{word-spacing:4.250709pt;}
.wsc8{word-spacing:4.267718pt;}
.ws144{word-spacing:4.289896pt;}
.ws145{word-spacing:4.294973pt;}
.ws37{word-spacing:4.356977pt;}
.wsfe{word-spacing:4.467584pt;}
.wsff{word-spacing:4.510336pt;}
.ws1d8{word-spacing:4.590797pt;}
.ws14b{word-spacing:4.622646pt;}
.ws62{word-spacing:4.667450pt;}
.ws8b{word-spacing:4.728914pt;}
.ws14c{word-spacing:4.782048pt;}
.ws100{word-spacing:4.809600pt;}
.ws18d{word-spacing:4.835182pt;}
.ws1f8{word-spacing:4.877722pt;}
.ws165{word-spacing:4.888316pt;}
.ws49{word-spacing:4.994583pt;}
.ws63{word-spacing:5.031910pt;}
.ws43{word-spacing:5.047717pt;}
.ws1b4{word-spacing:5.069005pt;}
.ws46{word-spacing:5.100851pt;}
.ws101{word-spacing:5.119552pt;}
.ws12f{word-spacing:5.294160pt;}
.ws12c{word-spacing:5.312400pt;}
.ws185{word-spacing:5.313387pt;}
.ws12d{word-spacing:5.316960pt;}
.ws12e{word-spacing:5.321520pt;}
.ws8d{word-spacing:5.366521pt;}
.ws1aa{word-spacing:5.419654pt;}
.ws1d9{word-spacing:5.499392pt;}
.ws108{word-spacing:5.648608pt;}
.wsbf{word-spacing:5.684413pt;}
.ws1cf{word-spacing:5.786317pt;}
.ws95{word-spacing:5.791591pt;}
.ws180{word-spacing:5.897859pt;}
.ws189{word-spacing:5.950993pt;}
.ws109{word-spacing:6.022688pt;}
.ws3b{word-spacing:6.057261pt;}
.ws1b2{word-spacing:6.264525pt;}
.ws199{word-spacing:6.376064pt;}
.wscb{word-spacing:6.413334pt;}
.ws8a{word-spacing:6.429198pt;}
.ws98{word-spacing:6.499680pt;}
.ws97{word-spacing:6.504960pt;}
.ws9a{word-spacing:6.515520pt;}
.ws1c7{word-spacing:6.551450pt;}
.ws21{word-spacing:6.581494pt;}
.ws99{word-spacing:6.594720pt;}
.wsaf{word-spacing:6.713133pt;}
.ws6a{word-spacing:6.736646pt;}
.ws68{word-spacing:6.742525pt;}
.ws196{word-spacing:6.801135pt;}
.ws9c{word-spacing:6.827040pt;}
.ws69{word-spacing:6.836579pt;}
.ws9b{word-spacing:6.848160pt;}
.wsa0{word-spacing:6.869280pt;}
.ws9f{word-spacing:6.879840pt;}
.ws9d{word-spacing:6.906240pt;}
.ws44{word-spacing:6.907403pt;}
.ws9e{word-spacing:6.948480pt;}
.ws173{word-spacing:6.998806pt;}
.ws171{word-spacing:7.013670pt;}
.wscc{word-spacing:7.071715pt;}
.wsae{word-spacing:7.077594pt;}
.ws148{word-spacing:7.173072pt;}
.ws201{word-spacing:7.173120pt;}
.ws20c{word-spacing:7.220941pt;}
.wsd3{word-spacing:7.259824pt;}
.wsd4{word-spacing:7.289216pt;}
.ws1a8{word-spacing:7.491875pt;}
.wscd{word-spacing:7.547866pt;}
.ws1dd{word-spacing:7.603507pt;}
.ws1b3{word-spacing:7.890432pt;}
.ws1ff{word-spacing:9.038131pt;}
.ws4{word-spacing:9.224013pt;}
.ws152{word-spacing:9.808803pt;}
.ws112{word-spacing:9.812846pt;}
.wse5{word-spacing:10.329312pt;}
.ws23{word-spacing:10.581860pt;}
.ws147{word-spacing:11.211246pt;}
.ws58{word-spacing:11.362243pt;}
.ws10f{word-spacing:11.476992pt;}
.ws20a{word-spacing:11.489888pt;}
.ws209{word-spacing:11.620454pt;}
.ws1e0{word-spacing:11.668275pt;}
.ws1fc{word-spacing:11.726661pt;}
.ws84{word-spacing:11.763917pt;}
.ws83{word-spacing:11.769422pt;}
.ws1d3{word-spacing:11.859558pt;}
.ws1ee{word-spacing:11.870323pt;}
.ws1c5{word-spacing:11.896747pt;}
.ws1f0{word-spacing:11.900041pt;}
.ws1e4{word-spacing:11.900143pt;}
.ws1b9{word-spacing:11.900800pt;}
.ws1c8{word-spacing:11.901124pt;}
.ws1be{word-spacing:11.901346pt;}
.ws1df{word-spacing:11.901363pt;}
.ws1bb{word-spacing:11.902080pt;}
.ws1bc{word-spacing:11.902737pt;}
.ws1e5{word-spacing:11.902746pt;}
.ws1c1{word-spacing:11.903113pt;}
.ws1f1{word-spacing:11.903573pt;}
.ws204{word-spacing:11.904631pt;}
.ws1d0{word-spacing:11.904700pt;}
.ws12b{word-spacing:11.907379pt;}
.ws1dc{word-spacing:11.908412pt;}
.ws1c3{word-spacing:11.909427pt;}
.ws1cb{word-spacing:11.955200pt;}
.ws1cd{word-spacing:11.980517pt;}
.ws1ce{word-spacing:12.000732pt;}
.ws1ef{word-spacing:12.098662pt;}
.ws151{word-spacing:12.146483pt;}
.ws16e{word-spacing:12.147793pt;}
.ws35{word-spacing:12.911530pt;}
.ws4d{word-spacing:13.013099pt;}
.ws17c{word-spacing:13.121626pt;}
.ws175{word-spacing:13.138693pt;}
.ws170{word-spacing:13.146233pt;}
.ws168{word-spacing:13.173010pt;}
.ws48{word-spacing:13.230333pt;}
.ws1a5{word-spacing:13.232791pt;}
.ws16c{word-spacing:13.304474pt;}
.ws17f{word-spacing:13.516766pt;}
.ws17e{word-spacing:13.518560pt;}
.wsdb{word-spacing:13.524441pt;}
.ws1a0{word-spacing:13.774260pt;}
.ws1ea{word-spacing:13.868032pt;}
.ws1e2{word-spacing:14.537523pt;}
.ws178{word-spacing:14.645499pt;}
.ws1fd{word-spacing:14.769246pt;}
.ws1f6{word-spacing:14.770799pt;}
.ws1da{word-spacing:14.771721pt;}
.ws1e3{word-spacing:14.772787pt;}
.ws1ca{word-spacing:14.772932pt;}
.ws1fe{word-spacing:14.773828pt;}
.ws1b7{word-spacing:14.774835pt;}
.ws1c9{word-spacing:14.776627pt;}
.ws1de{word-spacing:14.824448pt;}
.ws1f4{word-spacing:14.920090pt;}
.ws26{word-spacing:14.993299pt;}
.ws1d4{word-spacing:15.159194pt;}
.ws1f3{word-spacing:15.207014pt;}
.ws1cc{word-spacing:15.302656pt;}
.ws1d7{word-spacing:15.493939pt;}
.ws1d5{word-spacing:15.522939pt;}
.ws1e7{word-spacing:15.637402pt;}
.ws183{word-spacing:17.181447pt;}
.ws202{word-spacing:17.406771pt;}
.ws166{word-spacing:18.118649pt;}
.ws4a{word-spacing:18.278050pt;}
.ws47{word-spacing:18.328219pt;}
.ws200{word-spacing:19.080499pt;}
.ws181{word-spacing:19.126905pt;}
.ws20b{word-spacing:19.128320pt;}
.ws172{word-spacing:20.224584pt;}
.ws174{word-spacing:20.229480pt;}
.ws9{word-spacing:23.814758pt;}
.ws1ec{word-spacing:23.861569pt;}
.ws1{word-spacing:25.293814pt;}
.ws19e{word-spacing:768.793917pt;}
._5{margin-left:-8.802347pt;}
._30{margin-left:-7.013670pt;}
._6{margin-left:-5.950993pt;}
._2{margin-left:-4.797974pt;}
._a{margin-left:-3.793706pt;}
._1{margin-left:-2.715133pt;}
._4{margin-left:-1.338970pt;}
._16{width:1.072086pt;}
._7{width:2.660174pt;}
._25{width:3.702852pt;}
._0{width:11.530016pt;}
._14{width:12.550215pt;}
._9{width:14.138880pt;}
._18{width:15.059357pt;}
._b{width:16.150761pt;}
._c{width:17.544799pt;}
._2f{width:18.490586pt;}
._e{width:19.565820pt;}
._11{width:20.722208pt;}
._13{width:21.689241pt;}
._3{width:23.063232pt;}
._20{width:24.069642pt;}
._12{width:25.344854pt;}
._21{width:26.301264pt;}
._d{width:27.789012pt;}
._1b{width:28.809179pt;}
._24{width:29.712454pt;}
._22{width:31.508383pt;}
._15{width:32.475415pt;}
._19{width:34.430746pt;}
._23{width:37.406242pt;}
._1d{width:38.415786pt;}
._31{width:39.425329pt;}
._33{width:54.993920pt;}
._8{width:61.650119pt;}
._32{width:78.904320pt;}
._2e{width:636.543723pt;}
._2c{width:700.516898pt;}
._2d{width:706.467891pt;}
._2b{width:733.778699pt;}
._2a{width:770.494201pt;}
._26{width:774.001036pt;}
._28{width:797.805008pt;}
._29{width:803.756001pt;}
._27{width:867.729177pt;}
._f{width:1648.285067pt;}
._1f{width:1813.427123pt;}
._1c{width:1833.497568pt;}
._1a{width:1930.053866pt;}
._17{width:2123.166461pt;}
._1e{width:2275.474400pt;}
._10{width:2296.727733pt;}
.fs18{font-size:27.968000pt;}
.fs1a{font-size:30.400000pt;}
.fs4{font-size:31.880533pt;}
.fs14{font-size:32.000000pt;}
.fse{font-size:32.384000pt;}
.fsb{font-size:35.200000pt;}
.fs0{font-size:37.193600pt;}
.fs19{font-size:38.755733pt;}
.fs3{font-size:40.381867pt;}
.fs15{font-size:40.432000pt;}
.fsf{font-size:41.184000pt;}
.fs7{font-size:42.077867pt;}
.fs5{font-size:42.507200pt;}
.fs11{font-size:42.560000pt;}
.fs17{font-size:45.600000pt;}
.fs8{font-size:46.816000pt;}
.fsc{font-size:47.820800pt;}
.fs13{font-size:48.000000pt;}
.fs10{font-size:49.829333pt;}
.fs16{font-size:50.768000pt;}
.fsd{font-size:52.800000pt;}
.fs1{font-size:53.133867pt;}
.fs12{font-size:53.440000pt;}
.fs1b{font-size:55.365867pt;}
.fs9{font-size:58.784000pt;}
.fs6{font-size:63.761067pt;}
.fsa{font-size:70.400000pt;}
.fs2{font-size:95.641600pt;}
.yec{bottom:-852.002360pt;}
.y11b{bottom:-678.994219pt;}
.y11a{bottom:-658.490360pt;}
.y118{bottom:-658.490219pt;}
.y119{bottom:-654.794360pt;}
.y115{bottom:-637.986395pt;}
.y117{bottom:-637.986360pt;}
.y116{bottom:-634.290360pt;}
.y114{bottom:-617.394360pt;}
.y112{bottom:-617.394219pt;}
.y113{bottom:-613.698360pt;}
.y111{bottom:-596.890360pt;}
.y10f{bottom:-596.889709pt;}
.y110{bottom:-593.194213pt;}
.y10e{bottom:-576.385850pt;}
.y146{bottom:-575.768933pt;}
.y10d{bottom:-555.793814pt;}
.y10c{bottom:-535.289955pt;}
.y10b{bottom:-514.786096pt;}
.y10a{bottom:-494.194061pt;}
.y109{bottom:-473.690202pt;}
.y108{bottom:-448.786360pt;}
.y106{bottom:-410.594213pt;}
.y105{bottom:-410.594078pt;}
.y107{bottom:-406.898360pt;}
.y104{bottom:-390.090219pt;}
.y169{bottom:-377.768805pt;}
.y102{bottom:-369.586360pt;}
.y101{bottom:-369.586149pt;}
.y103{bottom:-365.890360pt;}
.y166{bottom:-359.128965pt;}
.y168{bottom:-359.128933pt;}
.y167{bottom:-355.768933pt;}
.y100{bottom:-348.994114pt;}
.y165{bottom:-340.408933pt;}
.y163{bottom:-340.408805pt;}
.y164{bottom:-337.048933pt;}
.yff{bottom:-328.490254pt;}
.y162{bottom:-321.768933pt;}
.y160{bottom:-321.768805pt;}
.y1bc{bottom:-319.141353pt;}
.y161{bottom:-318.408933pt;}
.yfe{bottom:-307.986395pt;}
.y15d{bottom:-303.128965pt;}
.y15f{bottom:-303.128933pt;}
.y15e{bottom:-299.768933pt;}
.yfc{bottom:-287.394360pt;}
.yfb{bottom:-287.394114pt;}
.y15c{bottom:-284.408933pt;}
.y15a{bottom:-284.408672pt;}
.yfd{bottom:-283.698360pt;}
.y1d5{bottom:-283.041353pt;}
.y1d3{bottom:-283.041262pt;}
.y15b{bottom:-281.048800pt;}
.y1d4{bottom:-279.849353pt;}
.yfa{bottom:-266.890254pt;}
.y157{bottom:-265.768837pt;}
.y159{bottom:-265.768800pt;}
.y1d2{bottom:-265.333384pt;}
.y158{bottom:-262.408933pt;}
.y1d1{bottom:-247.549353pt;}
.y1cf{bottom:-247.549019pt;}
.y156{bottom:-247.128965pt;}
.yf9{bottom:-246.386395pt;}
.y1d0{bottom:-244.357353pt;}
.y1ce{bottom:-229.841141pt;}
.y155{bottom:-228.408933pt;}
.y153{bottom:-228.408693pt;}
.yf8{bottom:-225.794360pt;}
.y154{bottom:-225.048933pt;}
.y1cd{bottom:-212.133262pt;}
.y152{bottom:-209.768821pt;}
.y1cc{bottom:-194.349232pt;}
.y151{bottom:-191.128949pt;}
.yf7{bottom:-188.130360pt;}
.yf6{bottom:-188.128160pt;}
.y1cb{bottom:-176.641353pt;}
.y1c9{bottom:-176.641232pt;}
.y1ca{bottom:-173.449353pt;}
.y150{bottom:-168.408933pt;}
.yf5{bottom:-167.624600pt;}
.y199{bottom:-164.929753pt;}
.y1c8{bottom:-158.933353pt;}
.y20d{bottom:-154.980087pt;}
.yf4{bottom:-147.032600pt;}
.y14f{bottom:-134.167333pt;}
.yf3{bottom:-126.529040pt;}
.y1c7{bottom:-126.327833pt;}
.y1a5{bottom:-125.408233pt;}
.y14e{bottom:-115.527733pt;}
.y217{bottom:-112.266947pt;}
.y1c6{bottom:-108.620213pt;}
.y1a4{bottom:-107.700613pt;}
.yf2{bottom:-106.025480pt;}
.y14d{bottom:-96.807733pt;}
.y216{bottom:-94.482947pt;}
.y1c5{bottom:-90.912593pt;}
.y1a3{bottom:-89.916613pt;}
.yf1{bottom:-85.433480pt;}
.y14c{bottom:-78.168133pt;}
.y215{bottom:-76.775327pt;}
.y1c4{bottom:-73.128593pt;}
.y1a2{bottom:-72.208993pt;}
.ycb{bottom:-66.170573pt;}
.yf0{bottom:-64.929920pt;}
.y14b{bottom:-59.528533pt;}
.y214{bottom:-59.067707pt;}
.y1c3{bottom:-55.420973pt;}
.y1a1{bottom:-54.501373pt;}
.yef{bottom:-44.426360pt;}
.y213{bottom:-41.283707pt;}
.y14a{bottom:-40.808533pt;}
.y1c2{bottom:-37.713353pt;}
.y1a0{bottom:-36.717373pt;}
.yee{bottom:-23.834360pt;}
.y212{bottom:-23.576087pt;}
.y149{bottom:-22.168933pt;}
.y1c1{bottom:-19.929353pt;}
.y19e{bottom:-19.009753pt;}
.y19f{bottom:-15.817753pt;}
.y0{bottom:0.000000pt;}
.yed{bottom:1.508989pt;}
.ye7{bottom:1.765136pt;}
.y211{bottom:2.187488pt;}
.y148{bottom:2.871371pt;}
.y19d{bottom:4.549061pt;}
.y4d{bottom:40.818667pt;}
.y282{bottom:88.640000pt;}
.ye8{bottom:88.948000pt;}
.y19{bottom:89.120000pt;}
.y2b8{bottom:89.232000pt;}
.y1c0{bottom:91.258647pt;}
.y82{bottom:91.749333pt;}
.y33f{bottom:94.188000pt;}
.y4c{bottom:98.961333pt;}
.y193{bottom:100.864000pt;}
.y1a8{bottom:101.161333pt;}
.y249{bottom:101.361333pt;}
.y1d7{bottom:102.253333pt;}
.y252{bottom:103.473333pt;}
.y209{bottom:104.457333pt;}
.y18{bottom:105.020000pt;}
.y281{bottom:107.209333pt;}
.y2b7{bottom:107.802667pt;}
.y253{bottom:108.294667pt;}
.y81{bottom:110.318667pt;}
.y33e{bottom:111.210667pt;}
.yc8{bottom:111.542213pt;}
.y4b{bottom:117.532000pt;}
.y1a6{bottom:118.256000pt;}
.y1d6{bottom:119.349333pt;}
.y191{bottom:119.434667pt;}
.y248{bottom:119.932000pt;}
.y17{bottom:120.920000pt;}
.y30c{bottom:121.498667pt;}
.y251{bottom:122.042667pt;}
.y1a7{bottom:122.596000pt;}
.y208{bottom:123.026667pt;}
.y192{bottom:124.257333pt;}
.y280{bottom:125.780000pt;}
.y219{bottom:126.116000pt;}
.y2b5{bottom:126.373333pt;}
.y33d{bottom:128.233333pt;}
.y80{bottom:128.889333pt;}
.y2dc{bottom:129.002667pt;}
.y2b6{bottom:131.194667pt;}
.y16{bottom:136.821333pt;}
.y18f{bottom:138.005333pt;}
.y196{bottom:138.193333pt;}
.y247{bottom:138.502667pt;}
.y30b{bottom:138.521333pt;}
.y1b9{bottom:139.286667pt;}
.yb2{bottom:140.613333pt;}
.y207{bottom:141.597333pt;}
.y190{bottom:142.826667pt;}
.y218{bottom:143.212000pt;}
.y27f{bottom:144.350667pt;}
.y2b4{bottom:144.944000pt;}
.y33c{bottom:145.256000pt;}
.y7f{bottom:147.460000pt;}
.y2db{bottom:147.573333pt;}
.y4a{bottom:152.042667pt;}
.y15{bottom:152.721333pt;}
.y30a{bottom:155.544000pt;}
.y18d{bottom:156.574667pt;}
.y246{bottom:157.072000pt;}
.yb1{bottom:159.184000pt;}
.y206{bottom:160.168000pt;}
.y18e{bottom:161.397333pt;}
.y33b{bottom:162.278667pt;}
.y27e{bottom:162.920000pt;}
.y20a{bottom:163.149333pt;}
.y2b3{bottom:163.513333pt;}
.y250{bottom:164.005333pt;}
.y7e{bottom:166.029333pt;}
.y2da{bottom:166.144000pt;}
.y14{bottom:168.621333pt;}
.y49{bottom:170.613333pt;}
.y309{bottom:172.566667pt;}
.y18b{bottom:175.145333pt;}
.y245{bottom:175.642667pt;}
.yb0{bottom:177.753333pt;}
.y205{bottom:178.737333pt;}
.y33a{bottom:179.301333pt;}
.y18c{bottom:179.968000pt;}
.y27d{bottom:181.490667pt;}
.y2b2{bottom:182.084000pt;}
.y13{bottom:184.521333pt;}
.y7d{bottom:184.600000pt;}
.y2d9{bottom:184.713333pt;}
.y48{bottom:189.182667pt;}
.y308{bottom:189.589333pt;}
.y19c{bottom:191.052924pt;}
.y1bf{bottom:192.946647pt;}
.y210{bottom:193.099283pt;}
.y189{bottom:193.716000pt;}
.y244{bottom:194.213333pt;}
.yaf{bottom:196.324000pt;}
.y204{bottom:197.308000pt;}
.y18a{bottom:198.537333pt;}
.y27c{bottom:200.061333pt;}
.y12{bottom:200.422667pt;}
.y147{bottom:201.431699pt;}
.y7c{bottom:203.170667pt;}
.y2b1{bottom:204.638667pt;}
.y307{bottom:206.612000pt;}
.y2d8{bottom:207.269333pt;}
.y47{bottom:207.753333pt;}
.y142{bottom:208.698667pt;}
.y187{bottom:212.286667pt;}
.y243{bottom:212.782667pt;}
.y339{bottom:213.346667pt;}
.yae{bottom:214.894667pt;}
.y203{bottom:215.878667pt;}
.y188{bottom:217.108000pt;}
.ye6{bottom:218.509092pt;}
.y27b{bottom:218.632000pt;}
.y7b{bottom:221.740000pt;}
.y306{bottom:223.634667pt;}
.y11{bottom:224.293333pt;}
.y46{bottom:226.324000pt;}
.y140{bottom:227.269333pt;}
.y242{bottom:228.926667pt;}
.y338{bottom:230.369333pt;}
.y185{bottom:230.856000pt;}
.y241{bottom:231.353333pt;}
.y141{bottom:232.090667pt;}
.yad{bottom:233.464000pt;}
.y202{bottom:234.448000pt;}
.y186{bottom:235.678667pt;}
.y2b0{bottom:236.054667pt;}
.y24f{bottom:238.286667pt;}
.y2d7{bottom:238.685333pt;}
.y10{bottom:240.193333pt;}
.y7a{bottom:240.310667pt;}
.y305{bottom:240.657333pt;}
.y45{bottom:244.893333pt;}
.y13f{bottom:245.838667pt;}
.y337{bottom:247.392000pt;}
.y184{bottom:249.426667pt;}
.y240{bottom:249.924000pt;}
.yac{bottom:252.034667pt;}
.y201{bottom:253.018667pt;}
.y2af{bottom:254.625333pt;}
.yf{bottom:256.093333pt;}
.y24e{bottom:256.857333pt;}
.y2d6{bottom:257.254667pt;}
.y304{bottom:257.680000pt;}
.y79{bottom:258.881333pt;}
.yeb{bottom:258.997772pt;}
.y27a{bottom:259.884000pt;}
.y44{bottom:263.464000pt;}
.y13d{bottom:264.409333pt;}
.y336{bottom:264.414667pt;}
.y183{bottom:267.997333pt;}
.yea{bottom:268.413640pt;}
.y23f{bottom:268.494667pt;}
.y13e{bottom:269.230667pt;}
.yab{bottom:270.605333pt;}
.y200{bottom:271.589333pt;}
.ye{bottom:271.994667pt;}
.y2ae{bottom:273.194667pt;}
.y303{bottom:274.702667pt;}
.y279{bottom:275.824000pt;}
.y2d5{bottom:275.825333pt;}
.y78{bottom:277.450667pt;}
.y334{bottom:281.437333pt;}
.y43{bottom:282.034667pt;}
.y13b{bottom:282.980000pt;}
.y335{bottom:285.777333pt;}
.y181{bottom:286.566667pt;}
.y23e{bottom:287.064000pt;}
.y13c{bottom:287.801333pt;}
.yd{bottom:287.894667pt;}
.yaa{bottom:289.176000pt;}
.y2ac{bottom:289.338667pt;}
.y1ff{bottom:290.160000pt;}
.y182{bottom:291.389333pt;}
.y302{bottom:291.725333pt;}
.y278{bottom:291.764000pt;}
.y2ab{bottom:291.765333pt;}
.y24d{bottom:293.997333pt;}
.y2d4{bottom:294.396000pt;}
.y77{bottom:296.021333pt;}
.y2ad{bottom:296.588000pt;}
.y333{bottom:298.460000pt;}
.y42{bottom:300.604000pt;}
.y13a{bottom:301.549333pt;}
.yc{bottom:303.794667pt;}
.y17f{bottom:305.137333pt;}
.y23d{bottom:305.634667pt;}
.y277{bottom:307.704000pt;}
.ya9{bottom:307.745333pt;}
.y2a9{bottom:307.909333pt;}
.y1fe{bottom:308.729333pt;}
.y301{bottom:308.748000pt;}
.y180{bottom:309.958667pt;}
.y2a8{bottom:310.336000pt;}
.y24c{bottom:312.568000pt;}
.y2d3{bottom:312.965333pt;}
.y76{bottom:314.592000pt;}
.y2aa{bottom:315.157333pt;}
.y332{bottom:315.482667pt;}
.y41{bottom:319.174667pt;}
.yb{bottom:319.696000pt;}
.y139{bottom:320.120000pt;}
.y276{bottom:323.645333pt;}
.y17d{bottom:323.708000pt;}
.y23c{bottom:324.205333pt;}
.y300{bottom:325.770667pt;}
.ya8{bottom:326.316000pt;}
.y1fd{bottom:327.300000pt;}
.y17e{bottom:328.529333pt;}
.y2a7{bottom:328.905333pt;}
.y2d2{bottom:331.536000pt;}
.y331{bottom:332.506667pt;}
.y75{bottom:333.162667pt;}
.ya{bottom:335.596000pt;}
.y40{bottom:337.745333pt;}
.y138{bottom:338.690667pt;}
.y275{bottom:339.585333pt;}
.y17b{bottom:342.277333pt;}
.y23b{bottom:342.774667pt;}
.y2ff{bottom:342.793333pt;}
.ya7{bottom:344.886667pt;}
.y2a6{bottom:345.049333pt;}
.y1fc{bottom:345.870667pt;}
.y17c{bottom:347.100000pt;}
.y2a4{bottom:347.476000pt;}
.y330{bottom:349.529333pt;}
.y2d1{bottom:350.106667pt;}
.y9{bottom:351.496000pt;}
.y73{bottom:351.732000pt;}
.y2a5{bottom:352.298667pt;}
.y274{bottom:355.525333pt;}
.y3f{bottom:356.314667pt;}
.y74{bottom:356.554667pt;}
.y137{bottom:357.260000pt;}
.y2fe{bottom:359.817333pt;}
.y179{bottom:360.848000pt;}
.y262{bottom:361.029333pt;}
.y23a{bottom:361.345333pt;}
.ya6{bottom:363.456000pt;}
.y1fb{bottom:364.440000pt;}
.y17a{bottom:365.670667pt;}
.y2a3{bottom:366.046667pt;}
.y32f{bottom:366.552000pt;}
.y8{bottom:367.397333pt;}
.y24b{bottom:368.278667pt;}
.y71{bottom:370.302667pt;}
.y273{bottom:371.465333pt;}
.y2d0{bottom:372.661333pt;}
.y3e{bottom:374.885333pt;}
.y72{bottom:375.124000pt;}
.y136{bottom:375.830667pt;}
.y2fd{bottom:376.840000pt;}
.y177{bottom:379.418667pt;}
.y239{bottom:379.916000pt;}
.y19b{bottom:381.053433pt;}
.ya5{bottom:382.026667pt;}
.y1fa{bottom:383.010667pt;}
.y7{bottom:383.297333pt;}
.y32e{bottom:383.574667pt;}
.y1be{bottom:383.858373pt;}
.y178{bottom:384.240000pt;}
.y2a2{bottom:384.617333pt;}
.y261{bottom:386.848000pt;}
.y272{bottom:387.405333pt;}
.y70{bottom:388.873333pt;}
.y20f{bottom:389.483868pt;}
.y3d{bottom:393.456000pt;}
.y2fc{bottom:393.862667pt;}
.y135{bottom:394.401333pt;}
.y238{bottom:396.058667pt;}
.y176{bottom:397.988000pt;}
.y237{bottom:398.485333pt;}
.ya4{bottom:400.597333pt;}
.y1f9{bottom:401.581333pt;}
.y2cf{bottom:404.077333pt;}
.y6{bottom:404.510667pt;}
.y2a1{bottom:407.172000pt;}
.y6f{bottom:407.442667pt;}
.y271{bottom:409.748000pt;}
.y2fb{bottom:410.885333pt;}
.y3c{bottom:412.026667pt;}
.y174{bottom:416.558667pt;}
.y134{bottom:416.956000pt;}
.y236{bottom:417.056000pt;}
.y32d{bottom:417.620000pt;}
.ya3{bottom:419.166667pt;}
.y1f8{bottom:420.150667pt;}
.y5{bottom:420.412000pt;}
.y175{bottom:421.381333pt;}
.y2ce{bottom:422.646667pt;}
.y6e{bottom:426.013333pt;}
.y2a0{bottom:426.632000pt;}
.y3b{bottom:430.596000pt;}
.y2fa{bottom:431.892000pt;}
.ye5{bottom:432.964881pt;}
.y145{bottom:434.231187pt;}
.y32c{bottom:434.642667pt;}
.y173{bottom:435.129333pt;}
.y235{bottom:435.626667pt;}
.y4{bottom:436.312000pt;}
.ya2{bottom:437.737333pt;}
.y1f7{bottom:438.721333pt;}
.y270{bottom:438.784000pt;}
.y2cd{bottom:441.217333pt;}
.y144{bottom:442.791067pt;}
.y6d{bottom:444.584000pt;}
.y133{bottom:448.372000pt;}
.y32b{bottom:451.665333pt;}
.y234{bottom:451.770667pt;}
.y3{bottom:452.212000pt;}
.y172{bottom:453.700000pt;}
.y233{bottom:454.196000pt;}
.ya1{bottom:456.308000pt;}
.y1f6{bottom:457.292000pt;}
.y29f{bottom:458.048000pt;}
.y2cc{bottom:459.788000pt;}
.y6c{bottom:463.153333pt;}
.y3a{bottom:466.169333pt;}
.y2f9{bottom:466.402667pt;}
.y132{bottom:466.941333pt;}
.y32a{bottom:468.688000pt;}
.y26f{bottom:470.376000pt;}
.y232{bottom:472.766667pt;}
.y2{bottom:473.426667pt;}
.ya0{bottom:474.877333pt;}
.y1f5{bottom:475.861333pt;}
.y171{bottom:476.254667pt;}
.y29e{bottom:476.617333pt;}
.y2cb{bottom:478.357333pt;}
.y39{bottom:480.516000pt;}
.y6b{bottom:481.724000pt;}
.y130{bottom:483.085333pt;}
.y12f{bottom:485.512000pt;}
.y329{bottom:485.710667pt;}
.y26e{bottom:488.946667pt;}
.y1{bottom:489.326667pt;}
.y131{bottom:490.334667pt;}
.y231{bottom:491.337333pt;}
.y2f8{bottom:491.705333pt;}
.y9f{bottom:493.448000pt;}
.y1f4{bottom:494.432000pt;}
.y38{bottom:494.862667pt;}
.y29d{bottom:495.188000pt;}
.y2ca{bottom:496.928000pt;}
.y37{bottom:498.720000pt;}
.y6a{bottom:500.294667pt;}
.y328{bottom:502.733333pt;}
.y12e{bottom:504.082667pt;}
.y170{bottom:504.829333pt;}
.y26c{bottom:507.516000pt;}
.y2f7{bottom:509.037333pt;}
.y36{bottom:509.208000pt;}
.y230{bottom:509.908000pt;}
.y9e{bottom:512.018667pt;}
.y26d{bottom:512.338667pt;}
.y1f3{bottom:513.002667pt;}
.y29c{bottom:513.758667pt;}
.y2c9{bottom:515.498667pt;}
.y69{bottom:518.864000pt;}
.y327{bottom:519.756000pt;}
.y16f{bottom:521.925333pt;}
.y12d{bottom:522.653333pt;}
.y35{bottom:523.554667pt;}
.y26b{bottom:526.086667pt;}
.y2f6{bottom:526.369333pt;}
.y34{bottom:527.412000pt;}
.y22f{bottom:528.477333pt;}
.y9d{bottom:530.589333pt;}
.y1f2{bottom:531.572000pt;}
.y29b{bottom:532.329333pt;}
.y2c8{bottom:534.069333pt;}
.y326{bottom:536.778667pt;}
.y68{bottom:537.434667pt;}
.y33{bottom:537.901333pt;}
.y16e{bottom:539.020000pt;}
.y12c{bottom:541.222667pt;}
.y26a{bottom:544.657333pt;}
.y22e{bottom:547.048000pt;}
.y9c{bottom:549.158667pt;}
.y29a{bottom:550.898667pt;}
.y2f5{bottom:551.672000pt;}
.y2c7{bottom:552.638667pt;}
.y325{bottom:553.801333pt;}
.y1f1{bottom:554.128000pt;}
.y66{bottom:556.005333pt;}
.y32{bottom:556.104000pt;}
.y16d{bottom:556.116000pt;}
.y12a{bottom:557.366667pt;}
.y129{bottom:559.793333pt;}
.y67{bottom:560.826667pt;}
.y268{bottom:563.228000pt;}
.y12b{bottom:564.614667pt;}
.y22d{bottom:565.618667pt;}
.y31{bottom:566.593333pt;}
.y9b{bottom:567.729333pt;}
.y269{bottom:568.049333pt;}
.y2f4{bottom:569.004000pt;}
.y299{bottom:569.469333pt;}
.y324{bottom:570.824000pt;}
.y19a{bottom:571.053943pt;}
.y2c6{bottom:571.209333pt;}
.y16c{bottom:573.212000pt;}
.y64{bottom:574.576000pt;}
.y128{bottom:578.364000pt;}
.y65{bottom:579.397333pt;}
.y30{bottom:580.940000pt;}
.y266{bottom:581.797333pt;}
.y20e{bottom:582.068468pt;}
.y22c{bottom:584.188000pt;}
.y2f{bottom:584.797333pt;}
.y1f0{bottom:585.544000pt;}
.y9a{bottom:586.300000pt;}
.y2f3{bottom:586.337333pt;}
.y267{bottom:586.620000pt;}
.y323{bottom:587.846667pt;}
.y298{bottom:588.040000pt;}
.y2c5{bottom:589.780000pt;}
.y16b{bottom:590.308000pt;}
.y260{bottom:591.121333pt;}
.y1bd{bottom:592.934958pt;}
.y63{bottom:593.145333pt;}
.y2e{bottom:595.285333pt;}
.y127{bottom:596.933333pt;}
.y265{bottom:600.368000pt;}
.y22b{bottom:602.758667pt;}
.y1ee{bottom:604.113333pt;}
.y99{bottom:604.869333pt;}
.y297{bottom:606.609333pt;}
.y16a{bottom:607.404000pt;}
.y2c4{bottom:608.349333pt;}
.y1ef{bottom:608.936000pt;}
.y2d{bottom:609.632000pt;}
.y25f{bottom:609.692000pt;}
.y2f2{bottom:611.638667pt;}
.y62{bottom:611.716000pt;}
.y126{bottom:615.504000pt;}
.y22a{bottom:621.329333pt;}
.y322{bottom:621.892000pt;}
.y1ed{bottom:622.684000pt;}
.y264{bottom:622.922667pt;}
.y98{bottom:623.440000pt;}
.y295{bottom:625.180000pt;}
.y2c3{bottom:626.920000pt;}
.y143{bottom:627.341333pt;}
.y2c{bottom:627.836000pt;}
.y2f1{bottom:628.970667pt;}
.y296{bottom:630.001333pt;}
.y61{bottom:630.286667pt;}
.y2b{bottom:638.324000pt;}
.y321{bottom:638.914667pt;}
.y229{bottom:639.898667pt;}
.y1bb{bottom:640.358761pt;}
.y1ec{bottom:641.254667pt;}
.y97{bottom:642.010667pt;}
.y294{bottom:643.750667pt;}
.y263{bottom:644.640000pt;}
.y2c2{bottom:645.490667pt;}
.y2f0{bottom:646.304000pt;}
.y25e{bottom:646.832000pt;}
.y125{bottom:647.173333pt;}
.y1ba{bottom:648.490647pt;}
.y60{bottom:648.856000pt;}
.y2a{bottom:652.670667pt;}
.y320{bottom:655.937333pt;}
.y228{bottom:658.469333pt;}
.y1eb{bottom:659.824000pt;}
.y96{bottom:660.580000pt;}
.y293{bottom:662.320000pt;}
.y2ef{bottom:663.636000pt;}
.y2c1{bottom:664.060000pt;}
.y124{bottom:664.269333pt;}
.y25d{bottom:665.402667pt;}
.y29{bottom:667.017333pt;}
.y5f{bottom:667.426667pt;}
.ye4{bottom:672.853567pt;}
.y31f{bottom:672.961333pt;}
.y227{bottom:677.040000pt;}
.y1e9{bottom:678.394667pt;}
.y95{bottom:679.150667pt;}
.y292{bottom:680.890667pt;}
.y2ee{bottom:680.968000pt;}
.y28{bottom:681.364000pt;}
.y123{bottom:681.365333pt;}
.y2c0{bottom:682.630667pt;}
.y1ea{bottom:683.216000pt;}
.y25c{bottom:683.972000pt;}
.y5e{bottom:685.997333pt;}
.y31e{bottom:689.984000pt;}
.ye2{bottom:693.357427pt;}
.ye1{bottom:693.357567pt;}
.y226{bottom:695.609333pt;}
.y27{bottom:695.709333pt;}
.y1e7{bottom:696.965333pt;}
.ye3{bottom:697.053427pt;}
.y94{bottom:697.721333pt;}
.y2ed{bottom:698.300000pt;}
.y122{bottom:698.461333pt;}
.y291{bottom:699.461333pt;}
.y2bf{bottom:701.201333pt;}
.y1e8{bottom:701.786667pt;}
.y5d{bottom:704.566667pt;}
.y31d{bottom:707.006667pt;}
.y26{bottom:710.056000pt;}
.ydf{bottom:713.861391pt;}
.ye0{bottom:713.861427pt;}
.y225{bottom:714.180000pt;}
.y1e6{bottom:715.534667pt;}
.y121{bottom:715.556000pt;}
.y93{bottom:716.290667pt;}
.y290{bottom:718.030667pt;}
.y2be{bottom:719.770667pt;}
.y5c{bottom:723.137333pt;}
.y2ec{bottom:723.602667pt;}
.y31c{bottom:724.029333pt;}
.y25{bottom:728.260000pt;}
.y120{bottom:732.652000pt;}
.y224{bottom:732.750667pt;}
.y1b8{bottom:734.030667pt;}
.y1e5{bottom:734.105333pt;}
.ydd{bottom:734.453427pt;}
.ydc{bottom:734.453567pt;}
.y92{bottom:734.861333pt;}
.y28f{bottom:736.601333pt;}
.yde{bottom:738.149427pt;}
.y2eb{bottom:740.934667pt;}
.y31b{bottom:741.052000pt;}
.y5b{bottom:741.708000pt;}
.y2bd{bottom:742.326667pt;}
.y11f{bottom:749.748000pt;}
.y223{bottom:751.321333pt;}
.y1b7{bottom:752.601333pt;}
.y1e4{bottom:752.676000pt;}
.y91{bottom:753.432000pt;}
.yda{bottom:754.957427pt;}
.yd9{bottom:754.957532pt;}
.y28e{bottom:755.172000pt;}
.y31a{bottom:758.074667pt;}
.y25b{bottom:758.253333pt;}
.y2ea{bottom:758.266667pt;}
.ydb{bottom:758.653427pt;}
.y5a{bottom:760.277333pt;}
.y11e{bottom:764.513333pt;}
.y11d{bottom:766.844000pt;}
.y24{bottom:767.972000pt;}
.y222{bottom:769.890667pt;}
.y1b6{bottom:771.172000pt;}
.y1e3{bottom:771.245333pt;}
.y90{bottom:772.002667pt;}
.y28d{bottom:773.742667pt;}
.y319{bottom:775.097333pt;}
.yd8{bottom:775.461391pt;}
.y2e9{bottom:775.598667pt;}
.y59{bottom:778.848000pt;}
.yc7{bottom:783.440000pt;}
.y11c{bottom:783.940000pt;}
.y22{bottom:786.542667pt;}
.y221{bottom:788.461333pt;}
.y1b4{bottom:789.741333pt;}
.y1e1{bottom:789.816000pt;}
.y8f{bottom:790.572000pt;}
.y23{bottom:791.364000pt;}
.y318{bottom:792.120000pt;}
.y28c{bottom:792.312000pt;}
.y2e8{bottom:792.932000pt;}
.y1b5{bottom:794.564000pt;}
.y198{bottom:794.570361pt;}
.y1e2{bottom:794.638667pt;}
.yd7{bottom:796.053427pt;}
.yd6{bottom:796.053567pt;}
.y58{bottom:797.418667pt;}
.yc5{bottom:799.584000pt;}
.yc4{bottom:802.010667pt;}
.y197{bottom:802.702247pt;}
.y20c{bottom:804.520027pt;}
.y21{bottom:805.113333pt;}
.ye9{bottom:806.533333pt;}
.yc6{bottom:806.832000pt;}
.y220{bottom:807.032000pt;}
.y1b3{bottom:808.312000pt;}
.y1e0{bottom:808.386667pt;}
.y8e{bottom:809.142667pt;}
.y2e7{bottom:810.264000pt;}
.y28b{bottom:810.882667pt;}
.y20b{bottom:812.651913pt;}
.y25a{bottom:813.964000pt;}
.y2bc{bottom:815.704000pt;}
.y57{bottom:815.989333pt;}
.yd5{bottom:816.557427pt;}
.yd4{bottom:816.557831pt;}
.yc3{bottom:818.154667pt;}
.yc2{bottom:820.581333pt;}
.y21f{bottom:823.174667pt;}
.y20{bottom:823.682667pt;}
.y24a{bottom:825.286667pt;}
.y21e{bottom:825.601333pt;}
.y317{bottom:826.165333pt;}
.y1b2{bottom:826.882667pt;}
.y1de{bottom:826.957333pt;}
.y2e6{bottom:827.596000pt;}
.y8d{bottom:827.713333pt;}
.y28a{bottom:829.453333pt;}
.y1df{bottom:831.778667pt;}
.y259{bottom:832.534667pt;}
.y2bb{bottom:834.274667pt;}
.y56{bottom:834.558667pt;}
.yc0{bottom:836.724000pt;}
.yd3{bottom:837.061691pt;}
.ybf{bottom:839.150667pt;}
.y1f{bottom:842.253333pt;}
.y316{bottom:843.188000pt;}
.yc1{bottom:843.973333pt;}
.y21d{bottom:844.172000pt;}
.y1b1{bottom:845.452000pt;}
.y1dd{bottom:845.526667pt;}
.y8c{bottom:846.282667pt;}
.y289{bottom:848.022667pt;}
.y258{bottom:851.105333pt;}
.y55{bottom:853.129333pt;}
.ybd{bottom:855.294667pt;}
.yd2{bottom:857.653726pt;}
.ybc{bottom:857.721333pt;}
.y315{bottom:860.210667pt;}
.y1e{bottom:860.824000pt;}
.y2e5{bottom:860.868000pt;}
.ybe{bottom:862.542667pt;}
.y21c{bottom:862.742667pt;}
.y1b0{bottom:864.022667pt;}
.y1dc{bottom:864.097333pt;}
.y340{bottom:864.550667pt;}
.y8b{bottom:864.853333pt;}
.y288{bottom:866.593333pt;}
.y257{bottom:869.674667pt;}
.y2ba{bottom:871.414667pt;}
.y54{bottom:871.700000pt;}
.y343{bottom:873.029333pt;}
.ybb{bottom:876.292000pt;}
.y314{bottom:877.233333pt;}
.yd1{bottom:878.157585pt;}
.y2e4{bottom:879.438667pt;}
.y21b{bottom:881.312000pt;}
.y1af{bottom:882.593333pt;}
.y1db{bottom:882.668000pt;}
.y8a{bottom:883.424000pt;}
.y287{bottom:885.164000pt;}
.y256{bottom:888.245333pt;}
.y342{bottom:890.052000pt;}
.y53{bottom:890.269333pt;}
.yba{bottom:892.434667pt;}
.y313{bottom:894.256000pt;}
.yb9{bottom:894.861333pt;}
.y1d{bottom:896.665333pt;}
.y2e3{bottom:898.009333pt;}
.y1d9{bottom:901.237333pt;}
.y89{bottom:901.993333pt;}
.yd0{bottom:903.061427pt;}
.y286{bottom:903.733333pt;}
.y21a{bottom:903.868000pt;}
.y1ae{bottom:905.148000pt;}
.y1da{bottom:906.060000pt;}
.y255{bottom:906.816000pt;}
.y341{bottom:907.074667pt;}
.y52{bottom:908.840000pt;}
.yb8{bottom:911.005333pt;}
.y312{bottom:911.278667pt;}
.yb7{bottom:913.432000pt;}
.y2e2{bottom:916.578667pt;}
.y1d8{bottom:919.808000pt;}
.y88{bottom:920.564000pt;}
.y285{bottom:922.304000pt;}
.y1c{bottom:924.521333pt;}
.y51{bottom:927.410667pt;}
.y311{bottom:928.301333pt;}
.ycf{bottom:928.845427pt;}
.yb6{bottom:932.002667pt;}
.y2e1{bottom:932.722667pt;}
.y2e0{bottom:935.149333pt;}
.y87{bottom:939.134667pt;}
.y284{bottom:940.874667pt;}
.y254{bottom:943.956000pt;}
.y2b9{bottom:944.860000pt;}
.y310{bottom:945.324000pt;}
.y50{bottom:945.980000pt;}
.y1ad{bottom:946.348000pt;}
.yb5{bottom:950.572000pt;}
.y1b{bottom:952.377333pt;}
.y2df{bottom:953.720000pt;}
.y86{bottom:957.704000pt;}
.y30f{bottom:962.346667pt;}
.y283{bottom:963.429333pt;}
.y1ac{bottom:963.444000pt;}
.y4f{bottom:968.536000pt;}
.yb4{bottom:969.142667pt;}
.yce{bottom:969.325427pt;}
.ycd{bottom:969.325752pt;}
.y2de{bottom:972.289333pt;}
.y85{bottom:976.274667pt;}
.y30e{bottom:979.369333pt;}
.y1a{bottom:980.232000pt;}
.y1ab{bottom:980.540000pt;}
.ycc{bottom:989.917787pt;}
.y2dd{bottom:990.860000pt;}
.yb3{bottom:991.698667pt;}
.y84{bottom:994.845333pt;}
.y30d{bottom:996.392000pt;}
.y1aa{bottom:997.636000pt;}
.y195{bottom:999.666667pt;}
.y83{bottom:1013.414667pt;}
.y1a9{bottom:1014.732000pt;}
.y194{bottom:1018.237333pt;}
.yca{bottom:1044.829559pt;}
.yc9{bottom:1054.245427pt;}
.y4e{bottom:1066.841333pt;}
.h2a{height:19.678656pt;}
.h24{height:22.515625pt;}
.h10{height:24.760382pt;}
.h2b{height:25.811318pt;}
.h29{height:25.864937pt;}
.hf{height:28.023859pt;}
.h2e{height:28.114062pt;}
.ha{height:28.947524pt;}
.h9{height:29.196090pt;}
.h23{height:29.593750pt;}
.h1a{height:29.948875pt;}
.h16{height:32.553125pt;}
.h1c{height:33.186336pt;}
.h2{height:33.771789pt;}
.he{height:36.666735pt;}
.h30{height:36.873667pt;}
.h26{height:37.391703pt;}
.h1b{height:38.087156pt;}
.h8{height:38.415786pt;}
.h22{height:38.462187pt;}
.hb{height:38.596538pt;}
.h3{height:38.947124pt;}
.h1f{height:39.359687pt;}
.h28{height:42.171094pt;}
.h15{height:42.308406pt;}
.h12{height:43.295656pt;}
.h17{height:43.421286pt;}
.h21{height:44.390625pt;}
.hd{height:46.099251pt;}
.h27{height:46.950484pt;}
.hc{height:48.245551pt;}
.h6{height:48.481423pt;}
.h7{height:48.486756pt;}
.h19{height:48.829687pt;}
.h20{height:49.421563pt;}
.h14{height:51.837500pt;}
.h13{height:54.363719pt;}
.h1d{height:55.952068pt;}
.h2c{height:55.957402pt;}
.h4{height:69.148877pt;}
.h5{height:69.435802pt;}
.h18{height:220.164267pt;}
.h1e{height:399.358667pt;}
.h2d{height:573.732867pt;}
.h11{height:650.882320pt;}
.h25{height:761.938000pt;}
.h2f{height:773.545733pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w6{width:492.481267pt;}
.w5{width:494.139333pt;}
.w7{width:494.140600pt;}
.w4{width:514.558667pt;}
.w3{width:565.746133pt;}
.w2{width:571.202133pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x6b{left:-189.271867pt;}
.x53{left:-185.281067pt;}
.xad{left:-169.133333pt;}
.xd4{left:-160.845133pt;}
.x0{left:0.000000pt;}
.x6d{left:1.952133pt;}
.xaf{left:4.706667pt;}
.x54{left:5.941868pt;}
.xb5{left:12.146667pt;}
.xb6{left:20.146667pt;}
.x57{left:27.854933pt;}
.x87{left:31.168133pt;}
.x58{left:32.254933pt;}
.x56{left:37.094830pt;}
.x88{left:39.880133pt;}
.x70{left:41.200133pt;}
.x1{left:47.621333pt;}
.x71{left:62.320133pt;}
.x72{left:66.720133pt;}
.x139{left:76.309333pt;}
.x73{left:83.352133pt;}
.x75{left:90.216133pt;}
.x74{left:92.152133pt;}
.x76{left:94.616133pt;}
.x6e{left:97.520133pt;}
.x6f{left:101.568133pt;}
.x52{left:111.058667pt;}
.x6a{left:113.786667pt;}
.x65{left:114.710933pt;}
.x66{left:119.110933pt;}
.xd5{left:137.378867pt;}
.x7c{left:140.728133pt;}
.x7d{left:145.128133pt;}
.x67{left:147.886933pt;}
.x77{left:152.784133pt;}
.x68{left:156.686933pt;}
.x89{left:163.256133pt;}
.x85{left:165.456133pt;}
.x8a{left:172.056133pt;}
.x78{left:184.552133pt;}
.x7e{left:190.888133pt;}
.x79{left:193.352133pt;}
.x7f{left:195.288133pt;}
.xb0{left:197.026667pt;}
.xe5{left:199.394867pt;}
.x7a{left:202.592133pt;}
.x13a{left:204.740000pt;}
.xe6{left:206.994867pt;}
.x7b{left:211.392133pt;}
.xb1{left:215.026667pt;}
.x2{left:217.198667pt;}
.xc{left:220.912000pt;}
.xa{left:221.858667pt;}
.x80{left:223.448133pt;}
.xb2{left:229.186667pt;}
.x81{left:232.248133pt;}
.x3{left:235.005333pt;}
.xb{left:239.924000pt;}
.x3e{left:241.320000pt;}
.x118{left:242.349333pt;}
.xd6{left:244.994867pt;}
.xf7{left:246.125333pt;}
.xcd{left:247.412000pt;}
.xd{left:250.204000pt;}
.xa2{left:252.354667pt;}
.x91{left:255.076000pt;}
.x116{left:256.813333pt;}
.x111{left:257.862667pt;}
.x82{left:259.440133pt;}
.x55{left:260.790933pt;}
.x92{left:263.281333pt;}
.x4c{left:264.754667pt;}
.xf8{left:265.990667pt;}
.x59{left:267.126933pt;}
.x5a{left:271.526933pt;}
.x4d{left:272.960000pt;}
.xc4{left:274.157333pt;}
.x98{left:275.853333pt;}
.x10{left:277.408000pt;}
.x8c{left:278.525333pt;}
.xe4{left:279.498867pt;}
.x8b{left:280.546667pt;}
.xeb{left:282.725333pt;}
.x11{left:284.049333pt;}
.xe7{left:285.592000pt;}
.x3c{left:287.556000pt;}
.x22{left:289.897333pt;}
.x20{left:291.109333pt;}
.xb4{left:292.066667pt;}
.x107{left:293.890667pt;}
.x130{left:294.913333pt;}
.xa3{left:296.084000pt;}
.x21{left:300.077333pt;}
.xd3{left:302.069333pt;}
.xba{left:304.589333pt;}
.x129{left:305.893333pt;}
.x128{left:307.793333pt;}
.x93{left:310.237333pt;}
.xbb{left:311.372000pt;}
.x12c{left:312.568000pt;}
.x60{left:316.494933pt;}
.x4e{left:318.012000pt;}
.x94{left:319.346667pt;}
.x61{left:320.894933pt;}
.x4f{left:326.925333pt;}
.xb3{left:327.986667pt;}
.xce{left:329.400000pt;}
.x95{left:331.436000pt;}
.xec{left:333.934667pt;}
.x100{left:335.058667pt;}
.xd7{left:335.966867pt;}
.x99{left:337.004000pt;}
.x138{left:338.144000pt;}
.xbc{left:340.244000pt;}
.x101{left:341.841333pt;}
.xf5{left:343.100000pt;}
.x11e{left:347.298667pt;}
.x62{left:348.438933pt;}
.x50{left:349.441333pt;}
.x105{left:352.792000pt;}
.xdf{left:353.770667pt;}
.x96{left:354.720000pt;}
.x11f{left:356.213333pt;}
.x63{left:357.150933pt;}
.x110{left:358.625333pt;}
.xf6{left:359.602667pt;}
.x102{left:361.365333pt;}
.x106{left:362.890667pt;}
.x109{left:364.424000pt;}
.x18{left:365.678667pt;}
.x51{left:366.658667pt;}
.x10b{left:367.641333pt;}
.x97{left:368.734667pt;}
.x103{left:370.333333pt;}
.x19{left:372.320000pt;}
.xd9{left:373.474667pt;}
.x64{left:375.278933pt;}
.xe{left:377.510667pt;}
.x3d{left:378.881333pt;}
.x10c{left:382.242667pt;}
.xf{left:384.152000pt;}
.x135{left:385.725333pt;}
.x8d{left:388.249333pt;}
.x1a{left:389.909333pt;}
.xcf{left:390.924000pt;}
.x10d{left:392.174667pt;}
.x9a{left:395.428000pt;}
.x1b{left:396.550667pt;}
.x10a{left:397.498667pt;}
.x86{left:398.568133pt;}
.x1c{left:399.805333pt;}
.x9b{left:401.140000pt;}
.x10e{left:402.282667pt;}
.x4{left:403.432000pt;}
.xfc{left:404.769333pt;}
.x1d{left:406.448000pt;}
.xf1{left:408.929333pt;}
.xbd{left:411.572000pt;}
.xd8{left:414.854867pt;}
.x24{left:416.992000pt;}
.xbe{left:418.354667pt;}
.xc9{left:420.205333pt;}
.x5{left:421.238667pt;}
.x25{left:423.634667pt;}
.xe2{left:425.494867pt;}
.x26{left:426.934667pt;}
.x3f{left:428.302667pt;}
.xfb{left:430.098667pt;}
.x5b{left:431.070933pt;}
.xe3{left:433.094867pt;}
.x120{left:434.054667pt;}
.x5c{left:435.382933pt;}
.x39{left:436.328000pt;}
.x40{left:437.333333pt;}
.x112{left:438.428000pt;}
.x27{left:440.218667pt;}
.x10f{left:441.400000pt;}
.xf2{left:443.084000pt;}
.x9c{left:445.240000pt;}
.xb7{left:447.826667pt;}
.x9d{left:451.110667pt;}
.xbf{left:452.233333pt;}
.x104{left:453.140000pt;}
.x14{left:455.118667pt;}
.x113{left:456.440000pt;}
.xd2{left:458.130667pt;}
.xf3{left:460.410667pt;}
.x15{left:461.760000pt;}
.x5d{left:463.806933pt;}
.x9e{left:465.126667pt;}
.x114{left:466.529333pt;}
.xa4{left:468.209333pt;}
.xc0{left:469.984000pt;}
.x131{left:471.262667pt;}
.x5e{left:472.606933pt;}
.xa5{left:476.414667pt;}
.xca{left:479.328000pt;}
.x5f{left:482.726933pt;}
.x47{left:485.690667pt;}
.xaa{left:487.008000pt;}
.xb8{left:489.506667pt;}
.x48{left:491.402667pt;}
.xea{left:493.109333pt;}
.x83{left:494.575987pt;}
.xb9{left:497.506667pt;}
.x2c{left:499.182667pt;}
.xf4{left:500.498000pt;}
.x84{left:503.288133pt;}
.x12a{left:505.882667pt;}
.x28{left:511.226667pt;}
.x2d{left:512.466667pt;}
.xab{left:513.488000pt;}
.x6{left:517.070667pt;}
.x29{left:521.337333pt;}
.xae{left:522.383326pt;}
.x37{left:524.277333pt;}
.xe0{left:525.474667pt;}
.xc1{left:527.856000pt;}
.x12d{left:528.833333pt;}
.xac{left:530.837333pt;}
.x8e{left:533.418667pt;}
.x7{left:534.877333pt;}
.xc2{left:536.061333pt;}
.x38{left:537.561333pt;}
.x49{left:540.594667pt;}
.x134{left:542.274667pt;}
.xe1{left:543.250667pt;}
.xc3{left:545.028000pt;}
.x8f{left:546.226667pt;}
.x30{left:548.402667pt;}
.x9f{left:552.073333pt;}
.x31{left:555.044000pt;}
.x32{left:558.298667pt;}
.xa0{left:560.278667pt;}
.x33{left:564.940000pt;}
.x41{left:566.488000pt;}
.x34{left:568.194667pt;}
.xc8{left:570.626667pt;}
.x42{left:572.200000pt;}
.x12{left:574.432000pt;}
.x6c{left:575.533200pt;}
.x115{left:576.957333pt;}
.x132{left:577.890667pt;}
.x69{left:579.524793pt;}
.x13{left:581.073333pt;}
.xed{left:581.976000pt;}
.xfd{left:583.454667pt;}
.xe9{left:585.940000pt;}
.x35{left:587.988000pt;}
.xee{left:590.181333pt;}
.x3a{left:592.520000pt;}
.x11d{left:595.057333pt;}
.xda{left:596.441333pt;}
.xa1{left:597.510667pt;}
.x43{left:598.438667pt;}
.x36{left:601.270667pt;}
.x3b{left:605.802667pt;}
.xfe{left:608.284000pt;}
.xd0{left:610.077333pt;}
.x12e{left:612.892000pt;}
.x44{left:615.954667pt;}
.xff{left:619.165333pt;}
.x136{left:620.214667pt;}
.x45{left:621.825333pt;}
.xef{left:624.972000pt;}
.x2e{left:627.177333pt;}
.x108{left:630.521333pt;}
.x12f{left:632.642667pt;}
.x137{left:634.465333pt;}
.x46{left:635.841333pt;}
.x119{left:637.062667pt;}
.x2f{left:640.461333pt;}
.xf0{left:642.814667pt;}
.x11a{left:643.844000pt;}
.xf9{left:646.228000pt;}
.x12b{left:648.558667pt;}
.xde{left:650.146667pt;}
.x117{left:656.298667pt;}
.x4a{left:657.532000pt;}
.x90{left:658.429333pt;}
.xfa{left:659.512000pt;}
.x11b{left:661.892000pt;}
.x4b{left:666.553333pt;}
.x2a{left:670.390667pt;}
.x11c{left:672.546667pt;}
.xa6{left:673.765333pt;}
.xdb{left:675.009333pt;}
.xa7{left:681.969333pt;}
.x2b{left:687.592000pt;}
.x121{left:693.977333pt;}
.xe8{left:696.012000pt;}
.xdc{left:697.550667pt;}
.xa8{left:700.158667pt;}
.xc5{left:702.029333pt;}
.xd1{left:705.801333pt;}
.xdd{left:706.904000pt;}
.x123{left:707.794667pt;}
.x1e{left:708.865333pt;}
.xc6{left:712.141333pt;}
.xcb{left:713.428000pt;}
.x1f{left:715.646667pt;}
.xa9{left:717.494667pt;}
.x126{left:721.421333pt;}
.xcc{left:723.526667pt;}
.x124{left:725.157333pt;}
.x8{left:726.192000pt;}
.x23{left:727.113333pt;}
.x133{left:730.044000pt;}
.xc7{left:732.190667pt;}
.x16{left:733.794667pt;}
.x127{left:735.437333pt;}
.x125{left:736.860000pt;}
.x122{left:739.485333pt;}
.x17{left:740.436000pt;}
.x13b{left:742.836000pt;}
.x9{left:743.998667pt;}
}




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