
    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_ad436c8dd60a32eb5542ffff.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986000;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_d5d5db1439b5595c85ea1051.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_75b5e4cfcccbb800620f8dd2.woff2')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_5a9c57241ffc4b7b767ca9fa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_38fb10a6e8e81d901c34bc42.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.773000;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_0c006a03bb625159e28a5747.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.488000;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_a5b3a2a0210007026a49fbf2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.894000;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_b4389b5dc18b4451e9cdd733.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a15664b12a5602cbe10c364c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006836;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_8fb7c1c48b384a6a27262705.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.211426;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_b4389b5dc18b4451e9cdd733.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_a15664b12a5602cbe10c364c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006836;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_8fb7c1c48b384a6a27262705.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.211426;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_1318f4cc748a2c48bf5b8878.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_bfdbb7a449160d76e35b27ca.woff2')format("woff");}.fff{font-family:fff;line-height:1.006836;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_e636b84f64978494bf1a4f38.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.211426;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_48766888684792bd7a4d2ece.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.719727;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_c1738154d43727677c9476b5.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.926270;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_76a3645b07418de7b647639b.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_fffb78d42f803e4324222019.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_862017ccabac5ac822a62a7e.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.006836;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_6f5ca41917d9d897cc36d804.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.211426;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_fffb78d42f803e4324222019.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_e0b29f7715c9d55f6c116481.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.006836;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_fce3498a54aebc7d670030ee.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.211426;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_1aa234652325671a21278b04.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_9d89275a22a2cdc0d8a0295d.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.006836;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_d657f15b99169ae3361bea42.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.211426;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_0921a009fa48b47baae78752.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.719727;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_fffb78d42f803e4324222019.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_2f76d671817cf313f12bab61.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.006836;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_21a934032214a393bf600063.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.211426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_4f26fc0b07ff627cb0bdd666.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.719727;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_83fc57352343761457e3f7ac.woff2')format("woff");}.ff22{font-family:ff22;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;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.m12{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);}
.m19{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);}
.m28{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);}
.me{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);}
.m6{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);}
.m18{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);}
.m25{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);}
.m4{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);}
.m1e{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);}
.m27{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);}
.m1c{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);}
.m13{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);}
.m9{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);}
.m3{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);}
.ma{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);}
.m8{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);}
.m1b{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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m22{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);}
.m1a{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);}
.m14{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);}
.m7{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);}
.m11{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);}
.m23{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);}
.m16{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);}
.mc{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);}
.m17{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);}
.m15{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);}
.m24{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);}
.m20{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);}
.mf{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);}
.m5{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);}
.m1f{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);}
.m1{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);}
.v5{vertical-align:-20.734186px;}
.v2{vertical-align:-16.614000px;}
.va{vertical-align:-12.306000px;}
.v4{vertical-align:-10.494000px;}
.v1{vertical-align:-6.318000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:15.120000px;}
.v3{vertical-align:21.702000px;}
.v9{vertical-align:30.240000px;}
.v7{vertical-align:35.280000px;}
.v8{vertical-align:50.760000px;}
.ls3e{letter-spacing:-0.453600px;}
.ls3a{letter-spacing:-0.408240px;}
.ls52{letter-spacing:-0.378000px;}
.lsae{letter-spacing:-0.360000px;}
.ls4e{letter-spacing:-0.340200px;}
.ls84{letter-spacing:-0.324648px;}
.lsa7{letter-spacing:-0.280800px;}
.ls8a{letter-spacing:-0.258516px;}
.ls7d{letter-spacing:-0.234468px;}
.ls7c{letter-spacing:-0.222444px;}
.ls80{letter-spacing:-0.221400px;}
.ls93{letter-spacing:-0.210600px;}
.lsad{letter-spacing:-0.204408px;}
.lsb7{letter-spacing:-0.198396px;}
.ls48{letter-spacing:-0.180360px;}
.ls96{letter-spacing:-0.178200px;}
.lsb6{letter-spacing:-0.174348px;}
.ls7b{letter-spacing:-0.168336px;}
.ls89{letter-spacing:-0.156312px;}
.ls5a{letter-spacing:-0.150300px;}
.ls42{letter-spacing:-0.144288px;}
.ls7f{letter-spacing:-0.135000px;}
.ls79{letter-spacing:-0.132264px;}
.ls43{letter-spacing:-0.129859px;}
.ls7a{letter-spacing:-0.126252px;}
.ls95{letter-spacing:-0.124200px;}
.ls55{letter-spacing:-0.120240px;}
.ls3d{letter-spacing:-0.116640px;}
.ls44{letter-spacing:-0.115430px;}
.ls78{letter-spacing:-0.114228px;}
.lsa3{letter-spacing:-0.113400px;}
.ls38{letter-spacing:-0.109166px;}
.ls47{letter-spacing:-0.108216px;}
.lsaf{letter-spacing:-0.108000px;}
.lsa2{letter-spacing:-0.102204px;}
.ls51{letter-spacing:-0.097200px;}
.ls56{letter-spacing:-0.096192px;}
.ls4c{letter-spacing:-0.090972px;}
.ls59{letter-spacing:-0.090180px;}
.ls9a{letter-spacing:-0.086400px;}
.lsa5{letter-spacing:-0.084168px;}
.ls49{letter-spacing:-0.079358px;}
.lsac{letter-spacing:-0.079200px;}
.ls92{letter-spacing:-0.078156px;}
.ls3c{letter-spacing:-0.077760px;}
.ls4a{letter-spacing:-0.072144px;}
.ls94{letter-spacing:-0.070200px;}
.ls5b{letter-spacing:-0.066132px;}
.ls3b{letter-spacing:-0.064800px;}
.ls5c{letter-spacing:-0.060120px;}
.ls81{letter-spacing:-0.059400px;}
.ls4b{letter-spacing:-0.057715px;}
.lsa6{letter-spacing:-0.057600px;}
.ls83{letter-spacing:-0.054108px;}
.ls50{letter-spacing:-0.054000px;}
.ls5d{letter-spacing:-0.048096px;}
.ls40{letter-spacing:-0.043286px;}
.ls77{letter-spacing:-0.042084px;}
.ls46{letter-spacing:-0.036072px;}
.ls58{letter-spacing:-0.030060px;}
.ls45{letter-spacing:-0.028858px;}
.ls9c{letter-spacing:-0.027000px;}
.ls39{letter-spacing:-0.025920px;}
.ls57{letter-spacing:-0.024048px;}
.ls4d{letter-spacing:-0.021600px;}
.ls97{letter-spacing:-0.018036px;}
.ls7e{letter-spacing:-0.016200px;}
.ls3f{letter-spacing:-0.014429px;}
.ls53{letter-spacing:-0.012024px;}
.ls74{letter-spacing:-0.010800px;}
.ls85{letter-spacing:-0.007200px;}
.ls76{letter-spacing:-0.006012px;}
.ls82{letter-spacing:-0.005400px;}
.lsd{letter-spacing:0.000000px;}
.ls66{letter-spacing:0.000600px;}
.lsbc{letter-spacing:0.000676px;}
.lsc4{letter-spacing:0.000699px;}
.lsc0{letter-spacing:0.000800px;}
.lsbe{letter-spacing:0.001155px;}
.lsc5{letter-spacing:0.001200px;}
.lsbf{letter-spacing:0.002544px;}
.ls90{letter-spacing:0.003100px;}
.lsa1{letter-spacing:0.003178px;}
.ls1{letter-spacing:0.003455px;}
.lsc2{letter-spacing:0.004800px;}
.ls2b{letter-spacing:0.005400px;}
.ls6c{letter-spacing:0.006012px;}
.ls18{letter-spacing:0.006480px;}
.ls2d{letter-spacing:0.010800px;}
.ls8b{letter-spacing:0.012024px;}
.ls1b{letter-spacing:0.012960px;}
.ls60{letter-spacing:0.016200px;}
.ls65{letter-spacing:0.018000px;}
.ls34{letter-spacing:0.018036px;}
.lsb3{letter-spacing:0.019764px;}
.lsb2{letter-spacing:0.020160px;}
.lsb0{letter-spacing:0.021600px;}
.ls22{letter-spacing:0.021643px;}
.ls37{letter-spacing:0.024048px;}
.ls2f{letter-spacing:0.027000px;}
.ls25{letter-spacing:0.028858px;}
.ls63{letter-spacing:0.030060px;}
.ls1d{letter-spacing:0.032400px;}
.ls28{letter-spacing:0.033516px;}
.lsab{letter-spacing:0.036000px;}
.ls36{letter-spacing:0.036072px;}
.ls1a{letter-spacing:0.038880px;}
.ls15{letter-spacing:0.040219px;}
.ls33{letter-spacing:0.042084px;}
.ls26{letter-spacing:0.043092px;}
.ls5e{letter-spacing:0.043200px;}
.ls24{letter-spacing:0.043286px;}
.ls69{letter-spacing:0.046332px;}
.ls54{letter-spacing:0.048096px;}
.ls5f{letter-spacing:0.048600px;}
.ls21{letter-spacing:0.050501px;}
.ls13{letter-spacing:0.051710px;}
.ls4f{letter-spacing:0.054000px;}
.ls8e{letter-spacing:0.054108px;}
.ls41{letter-spacing:0.057715px;}
.ls98{letter-spacing:0.059400px;}
.ls6a{letter-spacing:0.060120px;}
.ls2e{letter-spacing:0.064800px;}
.ls35{letter-spacing:0.066132px;}
.ls67{letter-spacing:0.070200px;}
.ls62{letter-spacing:0.072144px;}
.ls1c{letter-spacing:0.077760px;}
.ls87{letter-spacing:0.078156px;}
.ls23{letter-spacing:0.079358px;}
.ls75{letter-spacing:0.086400px;}
.ls6b{letter-spacing:0.090180px;}
.lsb1{letter-spacing:0.091800px;}
.ls30{letter-spacing:0.096192px;}
.ls8c{letter-spacing:0.102600px;}
.lsa0{letter-spacing:0.108216px;}
.ls86{letter-spacing:0.109512px;}
.ls1e{letter-spacing:0.115430px;}
.ls9d{letter-spacing:0.118800px;}
.lsaa{letter-spacing:0.120240px;}
.ls2c{letter-spacing:0.124200px;}
.lsa4{letter-spacing:0.136800px;}
.ls9e{letter-spacing:0.138276px;}
.lsa8{letter-spacing:0.140400px;}
.ls61{letter-spacing:0.145800px;}
.ls19{letter-spacing:0.149040px;}
.ls64{letter-spacing:0.153360px;}
.ls29{letter-spacing:0.172368px;}
.ls8d{letter-spacing:0.178200px;}
.ls9f{letter-spacing:0.180360px;}
.ls27{letter-spacing:0.181944px;}
.ls16{letter-spacing:0.206842px;}
.ls14{letter-spacing:0.218333px;}
.ls9b{letter-spacing:0.378000px;}
.ls32{letter-spacing:0.450900px;}
.ls6f{letter-spacing:0.514407px;}
.ls20{letter-spacing:0.541080px;}
.ls11{letter-spacing:0.542815px;}
.ls12{letter-spacing:0.548815px;}
.ls70{letter-spacing:0.565200px;}
.ls31{letter-spacing:0.811620px;}
.ls1f{letter-spacing:0.973944px;}
.ls72{letter-spacing:1.132457px;}
.ls73{letter-spacing:1.477200px;}
.ls71{letter-spacing:2.024815px;}
.ls8f{letter-spacing:2.983200px;}
.lsa{letter-spacing:2.988600px;}
.ls7{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.990100px;}
.ls4{letter-spacing:2.991600px;}
.ls10{letter-spacing:3.553200px;}
.ls88{letter-spacing:4.767516px;}
.lsa9{letter-spacing:7.292556px;}
.ls3{letter-spacing:10.461300px;}
.lsc{letter-spacing:11.954850px;}
.lsbb{letter-spacing:12.619788px;}
.lsc1{letter-spacing:13.195298px;}
.ls2{letter-spacing:13.448100px;}
.lsba{letter-spacing:13.448400px;}
.lsb9{letter-spacing:13.454400px;}
.lsc6{letter-spacing:13.592910px;}
.lsb4{letter-spacing:16.434600px;}
.lsb{letter-spacing:16.440600px;}
.ls68{letter-spacing:16.650936px;}
.lsc3{letter-spacing:16.676400px;}
.ls6d{letter-spacing:17.655767px;}
.lsbd{letter-spacing:17.750400px;}
.ls91{letter-spacing:17.905200px;}
.lse{letter-spacing:17.929200px;}
.lsf{letter-spacing:17.935200px;}
.lsb5{letter-spacing:17.989200px;}
.ls6e{letter-spacing:28.701483px;}
.ls5{letter-spacing:29.889600px;}
.ls6{letter-spacing:57.415200px;}
.ls8{letter-spacing:62.761200px;}
.ls9{letter-spacing:64.321654px;}
.ls99{letter-spacing:848.970000px;}
.lsb8{letter-spacing:848.972556px;}
.ls2a{letter-spacing:1198.528272px;}
.ls17{letter-spacing:1438.233926px;}
.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;}
}
.ws164{word-spacing:-60.120000px;}
.wscf{word-spacing:-54.000000px;}
.wsd2{word-spacing:-42.166332px;}
.ws10{word-spacing:-26.899200px;}
.ws70{word-spacing:-18.036000px;}
.ws72{word-spacing:-17.891712px;}
.ws71{word-spacing:-17.855640px;}
.ws6a{word-spacing:-16.349040px;}
.ws6d{word-spacing:-16.277760px;}
.ws6b{word-spacing:-16.264800px;}
.ws68{word-spacing:-16.200000px;}
.ws6c{word-spacing:-16.122240px;}
.ws6e{word-spacing:-15.746400px;}
.ws80{word-spacing:-15.030000px;}
.ws30{word-spacing:-14.943900px;}
.wscd{word-spacing:-14.921784px;}
.ws82{word-spacing:-14.909760px;}
.ws81{word-spacing:-14.879700px;}
.wsce{word-spacing:-14.849640px;}
.ws67{word-spacing:-14.582333px;}
.ws7a{word-spacing:-13.624200px;}
.ws7d{word-spacing:-13.564800px;}
.ws7b{word-spacing:-13.554000px;}
.ws78{word-spacing:-13.500000px;}
.ws19{word-spacing:-13.449600px;}
.ws7c{word-spacing:-13.435200px;}
.ws11d{word-spacing:-13.375800px;}
.wsd0{word-spacing:-13.365000px;}
.ws7e{word-spacing:-13.122000px;}
.ws77{word-spacing:-12.151944px;}
.ws13{word-spacing:-11.955150px;}
.ws12{word-spacing:-11.357400px;}
.ws6f{word-spacing:-10.800000px;}
.ws4{word-spacing:-10.460700px;}
.ws69{word-spacing:-9.936000px;}
.ws166{word-spacing:-9.140400px;}
.ws163{word-spacing:-9.136800px;}
.ws167{word-spacing:-9.036000px;}
.ws7f{word-spacing:-9.000000px;}
.wsd1{word-spacing:-8.992800px;}
.ws165{word-spacing:-8.942400px;}
.ws168{word-spacing:-8.920800px;}
.ws169{word-spacing:-8.640000px;}
.ws79{word-spacing:-8.280000px;}
.ws142{word-spacing:-3.565116px;}
.ws143{word-spacing:-3.468924px;}
.ws52{word-spacing:-3.347434px;}
.ws9a{word-spacing:-3.318624px;}
.ws99{word-spacing:-3.217622px;}
.ws1cb{word-spacing:-3.180348px;}
.ws1e5{word-spacing:-3.162312px;}
.ws1e6{word-spacing:-3.126240px;}
.ws9b{word-spacing:-2.965118px;}
.ws9c{word-spacing:-2.878546px;}
.ws148{word-spacing:-2.869229px;}
.ws191{word-spacing:-2.819628px;}
.ws5e{word-spacing:-2.809453px;}
.ws190{word-spacing:-2.795580px;}
.wsbb{word-spacing:-2.765520px;}
.ws1ca{word-spacing:-2.699388px;}
.wsba{word-spacing:-2.681352px;}
.ws49{word-spacing:-2.570351px;}
.ws14f{word-spacing:-2.510575px;}
.ws10b{word-spacing:-2.494980px;}
.wsbc{word-spacing:-2.470932px;}
.wsf5{word-spacing:-2.452896px;}
.ws14d{word-spacing:-2.450800px;}
.ws1ab{word-spacing:-2.428848px;}
.wsf6{word-spacing:-2.404800px;}
.wsbd{word-spacing:-2.398788px;}
.ws1db{word-spacing:-2.392776px;}
.ws1aa{word-spacing:-2.380752px;}
.wsf4{word-spacing:-2.314620px;}
.wsfa{word-spacing:-2.260512px;}
.ws14e{word-spacing:-2.211697px;}
.wsfb{word-spacing:-2.206404px;}
.ws1f6{word-spacing:-2.140272px;}
.ws1ee{word-spacing:-2.098188px;}
.ws3c{word-spacing:-2.092146px;}
.ws1cd{word-spacing:-2.062116px;}
.ws1cc{word-spacing:-2.056104px;}
.ws145{word-spacing:-2.050092px;}
.ws10e{word-spacing:-2.038068px;}
.ws200{word-spacing:-2.032370px;}
.ws1b2{word-spacing:-2.032056px;}
.ws1b0{word-spacing:-1.995984px;}
.ws10d{word-spacing:-1.953900px;}
.ws1b1{word-spacing:-1.947888px;}
.ws144{word-spacing:-1.941876px;}
.ws201{word-spacing:-1.912819px;}
.ws1ae{word-spacing:-1.887768px;}
.ws1f5{word-spacing:-1.869732px;}
.ws14b{word-spacing:-1.853044px;}
.ws16{word-spacing:-1.829146px;}
.ws1f3{word-spacing:-1.737468px;}
.ws18e{word-spacing:-1.713420px;}
.ws1ad{word-spacing:-1.707408px;}
.ws1f2{word-spacing:-1.677348px;}
.ws18d{word-spacing:-1.659312px;}
.ws1ac{word-spacing:-1.623240px;}
.ws98{word-spacing:-1.608811px;}
.ws1bf{word-spacing:-1.533060px;}
.ws20f{word-spacing:-1.506355px;}
.ws1af{word-spacing:-1.503000px;}
.ws1be{word-spacing:-1.490976px;}
.ws1c1{word-spacing:-1.418832px;}
.ws1c2{word-spacing:-1.370736px;}
.wsb9{word-spacing:-1.340676px;}
.ws1e4{word-spacing:-1.298592px;}
.ws1f7{word-spacing:-1.280556px;}
.ws132{word-spacing:-1.274544px;}
.ws44{word-spacing:-1.255288px;}
.ws131{word-spacing:-1.232460px;}
.ws125{word-spacing:-1.195512px;}
.ws6{word-spacing:-1.171598px;}
.ws4b{word-spacing:-1.135736px;}
.ws215{word-spacing:-1.129766px;}
.ws1bd{word-spacing:-1.082160px;}
.ws5d{word-spacing:-1.075961px;}
.ws97{word-spacing:-1.074946px;}
.ws96{word-spacing:-1.060517px;}
.ws1c0{word-spacing:-1.052100px;}
.ws8{word-spacing:-1.046070px;}
.ws172{word-spacing:-1.040076px;}
.ws46{word-spacing:-1.016185px;}
.ws1bc{word-spacing:-1.016028px;}
.ws1fa{word-spacing:-1.010016px;}
.ws12e{word-spacing:-0.997992px;}
.ws1c8{word-spacing:-0.967932px;}
.ws1fb{word-spacing:-0.961920px;}
.ws60{word-spacing:-0.956410px;}
.ws1c9{word-spacing:-0.955908px;}
.ws10c{word-spacing:-0.943884px;}
.ws174{word-spacing:-0.937872px;}
.wsea{word-spacing:-0.925848px;}
.ws12d{word-spacing:-0.919836px;}
.ws146{word-spacing:-0.913824px;}
.ws1c7{word-spacing:-0.896634px;}
.wsb8{word-spacing:-0.895788px;}
.ws1da{word-spacing:-0.889776px;}
.wsb7{word-spacing:-0.883764px;}
.wse8{word-spacing:-0.877752px;}
.ws147{word-spacing:-0.871740px;}
.ws186{word-spacing:-0.865728px;}
.wsf7{word-spacing:-0.847692px;}
.ws59{word-spacing:-0.836858px;}
.wse9{word-spacing:-0.811620px;}
.ws217{word-spacing:-0.806976px;}
.ws236{word-spacing:-0.753178px;}
.ws51{word-spacing:-0.717307px;}
.ws17d{word-spacing:-0.673344px;}
.ws45{word-spacing:-0.657532px;}
.ws175{word-spacing:-0.655308px;}
.ws173{word-spacing:-0.643284px;}
.ws1de{word-spacing:-0.619236px;}
.ws1d9{word-spacing:-0.613224px;}
.ws47{word-spacing:-0.597756px;}
.ws183{word-spacing:-0.589176px;}
.ws184{word-spacing:-0.583164px;}
.ws1d8{word-spacing:-0.577152px;}
.ws159{word-spacing:-0.567000px;}
.ws15a{word-spacing:-0.556200px;}
.ws15b{word-spacing:-0.540000px;}
.ws50{word-spacing:-0.537980px;}
.ws176{word-spacing:-0.529056px;}
.ws61{word-spacing:-0.478205px;}
.ws15c{word-spacing:-0.453600px;}
.ws92{word-spacing:-0.440078px;}
.ws4a{word-spacing:-0.418429px;}
.ws22a{word-spacing:-0.376589px;}
.wsb3{word-spacing:-0.366732px;}
.ws156{word-spacing:-0.358654px;}
.wse3{word-spacing:-0.342684px;}
.ws185{word-spacing:-0.330660px;}
.ws233{word-spacing:-0.322790px;}
.ws88{word-spacing:-0.316008px;}
.ws2c{word-spacing:-0.298878px;}
.ws1c{word-spacing:-0.268992px;}
.wsa9{word-spacing:-0.263340px;}
.ws103{word-spacing:-0.248400px;}
.ws25{word-spacing:-0.239102px;}
.ws202{word-spacing:-0.215194px;}
.ws23{word-spacing:-0.179327px;}
.ws1e1{word-spacing:-0.167400px;}
.ws212{word-spacing:-0.161395px;}
.ws87{word-spacing:-0.149386px;}
.wsa8{word-spacing:-0.124488px;}
.ws31{word-spacing:-0.119551px;}
.ws204{word-spacing:-0.107597px;}
.ws32{word-spacing:-0.059776px;}
.ws20a{word-spacing:-0.053798px;}
.ws28{word-spacing:-0.047821px;}
.ws5{word-spacing:-0.041843px;}
.ws218{word-spacing:-0.003984px;}
.ws11{word-spacing:-0.001508px;}
.ws1{word-spacing:0.000000px;}
.ws107{word-spacing:0.012024px;}
.ws16f{word-spacing:0.024048px;}
.ws170{word-spacing:0.030060px;}
.wsd4{word-spacing:0.053798px;}
.ws111{word-spacing:0.054108px;}
.ws18c{word-spacing:0.059400px;}
.ws24{word-spacing:0.059776px;}
.wsbe{word-spacing:0.072144px;}
.ws1df{word-spacing:0.078156px;}
.ws1b6{word-spacing:0.084168px;}
.ws1e3{word-spacing:0.086400px;}
.ws9d{word-spacing:0.086573px;}
.ws1b{word-spacing:0.107597px;}
.ws13a{word-spacing:0.108000px;}
.ws1b7{word-spacing:0.108216px;}
.ws21{word-spacing:0.119551px;}
.ws112{word-spacing:0.126252px;}
.wse1{word-spacing:0.129600px;}
.wsde{word-spacing:0.135000px;}
.wsc8{word-spacing:0.138276px;}
.ws1a9{word-spacing:0.144288px;}
.ws13b{word-spacing:0.145800px;}
.wsb1{word-spacing:0.151200px;}
.ws1e2{word-spacing:0.156600px;}
.ws235{word-spacing:0.161395px;}
.wse0{word-spacing:0.162000px;}
.ws1d6{word-spacing:0.162324px;}
.wsa7{word-spacing:0.165931px;}
.ws160{word-spacing:0.167400px;}
.wsdf{word-spacing:0.172800px;}
.ws1e0{word-spacing:0.178200px;}
.ws29{word-spacing:0.179327px;}
.wsbf{word-spacing:0.180360px;}
.ws90{word-spacing:0.181440px;}
.ws102{word-spacing:0.183600px;}
.ws133{word-spacing:0.186372px;}
.wse2{word-spacing:0.189000px;}
.wsb2{word-spacing:0.199800px;}
.ws161{word-spacing:0.205200px;}
.ws187{word-spacing:0.210420px;}
.ws208{word-spacing:0.215194px;}
.ws9e{word-spacing:0.216432px;}
.ws101{word-spacing:0.237600px;}
.ws36{word-spacing:0.239102px;}
.ws91{word-spacing:0.239760px;}
.ws139{word-spacing:0.248400px;}
.ws16a{word-spacing:0.268992px;}
.wsb0{word-spacing:0.275400px;}
.ws37{word-spacing:0.298878px;}
.ws1d7{word-spacing:0.312624px;}
.ws1a{word-spacing:0.322790px;}
.ws8f{word-spacing:0.330480px;}
.ws64{word-spacing:0.358654px;}
.ws22e{word-spacing:0.376589px;}
.wsc0{word-spacing:0.384768px;}
.ws138{word-spacing:0.388800px;}
.wsb6{word-spacing:0.402804px;}
.ws9f{word-spacing:0.461722px;}
.wsca{word-spacing:0.478205px;}
.ws95{word-spacing:0.483365px;}
.ws1a7{word-spacing:0.486972px;}
.ws1a8{word-spacing:0.492984px;}
.ws58{word-spacing:0.537980px;}
.ws210{word-spacing:0.537984px;}
.ws129{word-spacing:0.547092px;}
.ws12a{word-spacing:0.559116px;}
.ws207{word-spacing:0.591782px;}
.ws56{word-spacing:0.657532px;}
.ws226{word-spacing:0.699379px;}
.ws1c6{word-spacing:0.717307px;}
.ws13d{word-spacing:0.745488px;}
.ws1cf{word-spacing:0.781560px;}
.ws113{word-spacing:0.805608px;}
.ws114{word-spacing:0.811620px;}
.wsb4{word-spacing:0.823644px;}
.ws65{word-spacing:0.836858px;}
.wsb5{word-spacing:0.847692px;}
.ws206{word-spacing:0.914573px;}
.ws1fd{word-spacing:0.925848px;}
.ws1fc{word-spacing:0.955908px;}
.ws151{word-spacing:0.956410px;}
.ws93{word-spacing:0.988373px;}
.ws7{word-spacing:1.004227px;}
.ws94{word-spacing:1.017230px;}
.ws193{word-spacing:1.034064px;}
.ws2b{word-spacing:1.075961px;}
.ws194{word-spacing:1.118232px;}
.ws1f1{word-spacing:1.124244px;}
.ws66{word-spacing:1.135736px;}
.ws1f0{word-spacing:1.136268px;}
.ws192{word-spacing:1.148292px;}
.ws1f4{word-spacing:1.166328px;}
.ws17{word-spacing:1.183565px;}
.ws1d4{word-spacing:1.196388px;}
.ws1ef{word-spacing:1.226448px;}
.ws18{word-spacing:1.237363px;}
.ws1d5{word-spacing:1.238472px;}
.ws35{word-spacing:1.255288px;}
.ws19a{word-spacing:1.352700px;}
.ws40{word-spacing:1.374839px;}
.ws23a{word-spacing:1.398758px;}
.ws3a{word-spacing:1.434614px;}
.ws1fe{word-spacing:1.478952px;}
.ws3b{word-spacing:1.494390px;}
.wsef{word-spacing:1.496988px;}
.ws1d0{word-spacing:1.557108px;}
.ws1e{word-spacing:1.560154px;}
.wsec{word-spacing:1.593180px;}
.ws198{word-spacing:1.605204px;}
.wsd5{word-spacing:1.613941px;}
.wsee{word-spacing:1.617228px;}
.wseb{word-spacing:1.659312px;}
.ws20c{word-spacing:1.667750px;}
.ws3d{word-spacing:1.673717px;}
.ws16c{word-spacing:1.733492px;}
.ws43{word-spacing:1.793268px;}
.ws203{word-spacing:1.829146px;}
.ws13c{word-spacing:1.845684px;}
.ws5f{word-spacing:1.853044px;}
.ws1b9{word-spacing:1.869732px;}
.ws55{word-spacing:1.912819px;}
.ws1b8{word-spacing:1.917828px;}
.ws106{word-spacing:1.923840px;}
.ws1ba{word-spacing:1.929852px;}
.ws104{word-spacing:1.941876px;}
.wsf3{word-spacing:1.953900px;}
.ws1bb{word-spacing:1.959912px;}
.ws199{word-spacing:1.971936px;}
.ws3e{word-spacing:1.972595px;}
.ws189{word-spacing:1.981800px;}
.ws19b{word-spacing:1.989972px;}
.ws188{word-spacing:2.003400px;}
.wsf2{word-spacing:2.008008px;}
.ws5b{word-spacing:2.032370px;}
.ws18b{word-spacing:2.035800px;}
.ws162{word-spacing:2.092146px;}
.ws18a{word-spacing:2.095200px;}
.ws220{word-spacing:2.098138px;}
.ws33{word-spacing:2.151922px;}
.ws20b{word-spacing:2.151936px;}
.ws108{word-spacing:2.206404px;}
.ws14a{word-spacing:2.211697px;}
.ws105{word-spacing:2.212416px;}
.ws128{word-spacing:2.278548px;}
.ws116{word-spacing:2.284560px;}
.wsfe{word-spacing:2.311200px;}
.wsc9{word-spacing:2.331248px;}
.wsed{word-spacing:2.344680px;}
.wsfd{word-spacing:2.354400px;}
.wsfc{word-spacing:2.359800px;}
.ws16e{word-spacing:2.391024px;}
.wsff{word-spacing:2.392200px;}
.ws117{word-spacing:2.404800px;}
.ws214{word-spacing:2.420928px;}
.ws153{word-spacing:2.450800px;}
.ws22d{word-spacing:2.474726px;}
.ws2{word-spacing:2.510149px;}
.ws124{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws100{word-spacing:2.559600px;}
.ws2a{word-spacing:2.570351px;}
.ws121{word-spacing:2.582323px;}
.ws1d3{word-spacing:2.609208px;}
.ws17b{word-spacing:2.621232px;}
.ws17c{word-spacing:2.627244px;}
.wsdc{word-spacing:2.630126px;}
.ws1a3{word-spacing:2.687364px;}
.wsf0{word-spacing:2.735460px;}
.wsf1{word-spacing:2.741472px;}
.ws39{word-spacing:2.749678px;}
.ws1a2{word-spacing:2.765520px;}
.ws158{word-spacing:2.797517px;}
.ws34{word-spacing:2.809453px;}
.ws10f{word-spacing:2.879748px;}
.ws109{word-spacing:2.909808px;}
.ws110{word-spacing:2.975940px;}
.ws86{word-spacing:2.988780px;}
.ws13f{word-spacing:2.993976px;}
.ws10a{word-spacing:3.012012px;}
.ws85{word-spacing:3.048556px;}
.wsd3{word-spacing:3.051144px;}
.ws13e{word-spacing:3.078144px;}
.ws2f{word-spacing:3.108331px;}
.ws14{word-spacing:3.120307px;}
.ws1c5{word-spacing:3.168107px;}
.ws1f{word-spacing:3.219667px;}
.ws229{word-spacing:3.221078px;}
.ws22c{word-spacing:3.221366px;}
.ws238{word-spacing:3.223786px;}
.ws21d{word-spacing:3.224083px;}
.ws205{word-spacing:3.224822px;}
.ws41{word-spacing:3.227882px;}
.ws21b{word-spacing:3.227904px;}
.ws122{word-spacing:3.281702px;}
.ws2d{word-spacing:3.287658px;}
.wsc7{word-spacing:3.306600px;}
.ws12f{word-spacing:3.318624px;}
.ws149{word-spacing:3.347434px;}
.ws130{word-spacing:3.366720px;}
.ws219{word-spacing:3.389299px;}
.wsc2{word-spacing:3.396780px;}
.ws22{word-spacing:3.407209px;}
.wsc1{word-spacing:3.420828px;}
.ws15{word-spacing:3.443098px;}
.ws26{word-spacing:3.466985px;}
.ws4e{word-spacing:3.526760px;}
.ws20{word-spacing:3.586536px;}
.wsc3{word-spacing:3.625236px;}
.ws38{word-spacing:3.646312px;}
.ws53{word-spacing:3.706087px;}
.wsc5{word-spacing:3.715416px;}
.ws1a5{word-spacing:3.727440px;}
.ws1a4{word-spacing:3.745476px;}
.wsc4{word-spacing:3.751488px;}
.ws14c{word-spacing:3.765863px;}
.ws1a6{word-spacing:3.799584px;}
.wsdd{word-spacing:3.825638px;}
.wsd6{word-spacing:3.885414px;}
.wsa6{word-spacing:3.967920px;}
.ws4d{word-spacing:4.004965px;}
.ws123{word-spacing:4.034880px;}
.wsa1{word-spacing:4.076136px;}
.wsa0{word-spacing:4.104994px;}
.ws1ff{word-spacing:4.148280px;}
.ws2e{word-spacing:4.184292px;}
.ws155{word-spacing:4.244068px;}
.ws213{word-spacing:4.250074px;}
.ws154{word-spacing:4.303843px;}
.wsa2{word-spacing:4.350283px;}
.ws1e8{word-spacing:4.448880px;}
.wsa4{word-spacing:4.458499px;}
.ws1f8{word-spacing:4.460904px;}
.ws1f9{word-spacing:4.478940px;}
.ws1e7{word-spacing:4.484952px;}
.wsa3{word-spacing:4.501786px;}
.ws1e9{word-spacing:4.502988px;}
.ws230{word-spacing:4.572864px;}
.ws54{word-spacing:4.602721px;}
.ws1d{word-spacing:4.626662px;}
.ws42{word-spacing:4.662497px;}
.ws62{word-spacing:4.722272px;}
.wse{word-spacing:4.770079px;}
.ws115{word-spacing:4.779540px;}
.ws63{word-spacing:4.782048px;}
.ws171{word-spacing:4.785552px;}
.ws141{word-spacing:4.803588px;}
.ws5c{word-spacing:4.841824px;}
.wsf{word-spacing:4.853765px;}
.ws140{word-spacing:4.857696px;}
.ws152{word-spacing:4.901599px;}
.ws23c{word-spacing:4.949453px;}
.ws5a{word-spacing:5.140702px;}
.ws1d1{word-spacing:5.182344px;}
.ws1ce{word-spacing:5.218416px;}
.ws182{word-spacing:5.242464px;}
.ws181{word-spacing:5.254488px;}
.ws1d2{word-spacing:5.302584px;}
.ws19d{word-spacing:5.350680px;}
.ws16d{word-spacing:5.439580px;}
.ws19f{word-spacing:5.482944px;}
.ws19e{word-spacing:5.500980px;}
.ws19c{word-spacing:5.506992px;}
.wsf8{word-spacing:5.531040px;}
.wsf9{word-spacing:5.549076px;}
.wscb{word-spacing:5.618906px;}
.ws178{word-spacing:5.789556px;}
.ws22f{word-spacing:5.810227px;}
.ws1dd{word-spacing:5.843664px;}
.ws1dc{word-spacing:5.873724px;}
.ws177{word-spacing:5.945868px;}
.ws76{word-spacing:5.977800px;}
.ws16b{word-spacing:5.979763px;}
.ws3f{word-spacing:6.037336px;}
.ws18f{word-spacing:6.186348px;}
.ws239{word-spacing:6.186816px;}
.ws126{word-spacing:6.198372px;}
.ws136{word-spacing:6.199200px;}
.ws150{word-spacing:6.216662px;}
.ws23b{word-spacing:6.240614px;}
.ws137{word-spacing:6.258600px;}
.ws134{word-spacing:6.274800px;}
.ws135{word-spacing:6.291000px;}
.ws127{word-spacing:6.300576px;}
.ws1ed{word-spacing:6.565104px;}
.ws157{word-spacing:6.570662px;}
.wsd7{word-spacing:6.579600px;}
.wscc{word-spacing:6.633600px;}
.ws1ec{word-spacing:6.637248px;}
.ws196{word-spacing:6.697368px;}
.ws1a0{word-spacing:6.811596px;}
.ws57{word-spacing:6.814418px;}
.ws195{word-spacing:6.907788px;}
.wse5{word-spacing:6.937848px;}
.ws197{word-spacing:6.961896px;}
.wse4{word-spacing:7.040052px;}
.wsd8{word-spacing:7.053521px;}
.wsd9{word-spacing:7.113296px;}
.ws17a{word-spacing:7.238448px;}
.wsc6{word-spacing:7.256484px;}
.ws119{word-spacing:7.304580px;}
.ws84{word-spacing:7.316582px;}
.ws1a1{word-spacing:7.316604px;}
.ws118{word-spacing:7.334640px;}
.ws11a{word-spacing:7.551072px;}
.ws179{word-spacing:7.557084px;}
.wse6{word-spacing:7.623216px;}
.ws12b{word-spacing:7.653276px;}
.wse7{word-spacing:7.689348px;}
.ws12c{word-spacing:7.719408px;}
.ws83{word-spacing:7.746970px;}
.wsc{word-spacing:7.782761px;}
.ws4f{word-spacing:7.890379px;}
.wsdb{word-spacing:8.009930px;}
.ws21c{word-spacing:8.015962px;}
.wsda{word-spacing:8.069706px;}
.ws231{word-spacing:8.123558px;}
.wsa5{word-spacing:8.707781px;}
.ws74{word-spacing:8.715341px;}
.ws73{word-spacing:9.145728px;}
.ws11f{word-spacing:9.253325px;}
.ws11e{word-spacing:9.683712px;}
.ws17e{word-spacing:10.148256px;}
.ws17f{word-spacing:10.238436px;}
.ws180{word-spacing:10.250460px;}
.ws3{word-spacing:10.415351px;}
.wsad{word-spacing:10.589400px;}
.wsae{word-spacing:10.611000px;}
.wsab{word-spacing:10.616400px;}
.wsaa{word-spacing:10.643400px;}
.wsaf{word-spacing:10.675800px;}
.wsac{word-spacing:10.962000px;}
.ws27{word-spacing:11.905687px;}
.wsa{word-spacing:12.176255px;}
.ws1ea{word-spacing:12.324600px;}
.ws1eb{word-spacing:12.438828px;}
.ws8c{word-spacing:12.707280px;}
.ws8d{word-spacing:12.733200px;}
.ws8a{word-spacing:12.739680px;}
.ws89{word-spacing:12.772080px;}
.ws8e{word-spacing:12.810960px;}
.ws8b{word-spacing:13.154400px;}
.ws75{word-spacing:13.180608px;}
.ws21e{word-spacing:13.234406px;}
.ws211{word-spacing:13.342003px;}
.ws20e{word-spacing:13.380451px;}
.ws225{word-spacing:13.387363px;}
.ws224{word-spacing:13.390454px;}
.ws223{word-spacing:13.390608px;}
.ws222{word-spacing:13.392730px;}
.ws234{word-spacing:13.392826px;}
.ws20d{word-spacing:13.395802px;}
.ws120{word-spacing:13.987584px;}
.ws4c{word-spacing:14.884124px;}
.ws1b4{word-spacing:15.949836px;}
.ws1b3{word-spacing:16.015968px;}
.ws1b5{word-spacing:16.021980px;}
.wsb{word-spacing:16.109478px;}
.ws221{word-spacing:16.300915px;}
.ws228{word-spacing:16.408512px;}
.ws216{word-spacing:16.462310px;}
.ws227{word-spacing:16.613971px;}
.ws237{word-spacing:16.619520px;}
.ws21f{word-spacing:16.623379px;}
.ws209{word-spacing:16.623706px;}
.ws22b{word-spacing:16.731302px;}
.ws232{word-spacing:16.785101px;}
.ws15f{word-spacing:17.398800px;}
.ws15e{word-spacing:17.452800px;}
.ws15d{word-spacing:17.469000px;}
.ws48{word-spacing:18.470660px;}
.ws11c{word-spacing:21.703320px;}
.ws11b{word-spacing:21.817548px;}
.wsd{word-spacing:26.109907px;}
.ws9{word-spacing:26.840252px;}
.ws21a{word-spacing:27.221990px;}
.ws1c4{word-spacing:29.500884px;}
.ws1c3{word-spacing:29.567016px;}
._6{margin-left:-11.949110px;}
._14{margin-left:-7.471950px;}
._5{margin-left:-5.917824px;}
._0{margin-left:-4.644551px;}
._15{margin-left:-3.574723px;}
._1{margin-left:-2.301354px;}
._9{margin-left:-1.069961px;}
._1a{width:1.143401px;}
._3{width:2.301354px;}
._7{width:3.679014px;}
._20{width:5.974961px;}
._22{width:10.573278px;}
._1d{width:11.674055px;}
._2{width:12.971268px;}
._e{width:13.975531px;}
._8{width:15.069442px;}
._d{width:16.408512px;}
._b{width:17.914867px;}
._17{width:19.558631px;}
._c{width:20.766182px;}
._13{width:22.834279px;}
._12{width:24.806874px;}
._a{width:26.576410px;}
._11{width:28.393410px;}
._4{width:30.587087px;}
._16{width:33.055907px;}
._21{width:35.387155px;}
._18{width:40.288794px;}
._1c{width:43.211759px;}
._23{width:61.868160px;}
._f{width:904.184189px;}
._1f{width:2109.204972px;}
._1b{width:2133.326916px;}
._1e{width:2494.970700px;}
._10{width:2518.880700px;}
._19{width:2559.992299px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(137,92,52);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:29.887800px;}
.fs14{font-size:33.120000px;}
.fs7{font-size:35.865600px;}
.fs15{font-size:36.000000px;}
.fsf{font-size:39.744000px;}
.fs0{font-size:41.842800px;}
.fs16{font-size:42.120000px;}
.fs10{font-size:43.200000px;}
.fs6{font-size:45.429600px;}
.fsa{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fs11{font-size:47.880000px;}
.fs9{font-size:53.798400px;}
.fs13{font-size:54.000000px;}
.fs17{font-size:56.058000px;}
.fsc{font-size:57.456000px;}
.fs3{font-size:59.775600px;}
.fs12{font-size:60.120000px;}
.fsb{font-size:62.286600px;}
.fse{font-size:64.800000px;}
.fsd{font-size:72.144000px;}
.fs5{font-size:81.772800px;}
.fs4{font-size:107.596800px;}
.fs2{font-size:147.405960px;}
.y12b{bottom:-996.664860px;}
.y13b{bottom:-927.544180px;}
.y283{bottom:-510.703050px;}
.y22b{bottom:-501.545550px;}
.y250{bottom:-437.464992px;}
.y167{bottom:-428.941050px;}
.y24f{bottom:-418.204812px;}
.y2a8{bottom:-413.140593px;}
.y24e{bottom:-399.034842px;}
.y2a7{bottom:-390.999900px;}
.y24d{bottom:-379.774662px;}
.y2a6{bottom:-371.740458px;}
.y24c{bottom:-360.604992px;}
.y189{bottom:-360.450492px;}
.y2a5{bottom:-352.571196px;}
.y13a{bottom:-347.583974px;}
.y24b{bottom:-341.344992px;}
.y188{bottom:-341.189313px;}
.y2a4{bottom:-333.311754px;}
.y139{bottom:-324.579521px;}
.y24a{bottom:-322.084812px;}
.y187{bottom:-321.929871px;}
.y2a3{bottom:-314.052312px;}
.y249{bottom:-302.914992px;}
.y186{bottom:-302.760609px;}
.y138{bottom:-301.468190px;}
.y1b0{bottom:-298.123050px;}
.y2a2{bottom:-294.882492px;}
.y248{bottom:-283.654992px;}
.y185{bottom:-283.501167px;}
.y137{bottom:-278.355974px;}
.y2a1{bottom:-275.622312px;}
.y247{bottom:-264.394812px;}
.y184{bottom:-259.830420px;}
.y2a0{bottom:-256.451934px;}
.y136{bottom:-255.352190px;}
.y246{bottom:-245.224992px;}
.y29f{bottom:-237.192492px;}
.y1c4{bottom:-232.332492px;}
.y135{bottom:-232.239974px;}
.y245{bottom:-225.964812px;}
.y183{bottom:-222.570492px;}
.y29e{bottom:-217.932312px;}
.y1c3{bottom:-213.072312px;}
.y134{bottom:-209.236190px;}
.y244{bottom:-206.794992px;}
.y182{bottom:-203.309961px;}
.y29d{bottom:-198.762492px;}
.y1c2{bottom:-193.902492px;}
.y243{bottom:-187.534992px;}
.y133{bottom:-186.125108px;}
.y181{bottom:-184.140699px;}
.y29c{bottom:-179.502312px;}
.y1c1{bottom:-174.642312px;}
.y242{bottom:-168.274812px;}
.y217{bottom:-166.651050px;}
.y180{bottom:-164.881257px;}
.y132{bottom:-163.013778px;}
.y29b{bottom:-160.332492px;}
.y1c0{bottom:-155.470638px;}
.y241{bottom:-149.104992px;}
.y17f{bottom:-145.621815px;}
.y29a{bottom:-141.072492px;}
.y131{bottom:-140.009087px;}
.y1bf{bottom:-136.211196px;}
.y240{bottom:-129.844254px;}
.y17e{bottom:-126.451185px;}
.y299{bottom:-121.811016px;}
.y1be{bottom:-116.951754px;}
.y130{bottom:-116.897756px;}
.y23f{bottom:-110.674992px;}
.y17d{bottom:-107.191743px;}
.y298{bottom:-102.641754px;}
.y1bd{bottom:-97.782492px;}
.y21c{bottom:-97.261050px;}
.y17c{bottom:-92.611050px;}
.y23e{bottom:-91.414992px;}
.y12f{bottom:-88.492860px;}
.y17b{bottom:-85.051050px;}
.y297{bottom:-83.382312px;}
.y1bc{bottom:-78.523050px;}
.y23d{bottom:-72.155550px;}
.y296{bottom:-64.213050px;}
.y21b{bottom:-58.200600px;}
.y142{bottom:-58.072050px;}
.y12e{bottom:-44.320320px;}
.y17a{bottom:-43.201350px;}
.y1bb{bottom:-41.713350px;}
.y21a{bottom:-40.740900px;}
.y23c{bottom:-35.434950px;}
.y295{bottom:-27.403050px;}
.y1ba{bottom:-24.342900px;}
.y179{bottom:-23.940900px;}
.y219{bottom:-23.460900px;}
.y12d{bottom:-23.368860px;}
.y23b{bottom:-17.975400px;}
.y294{bottom:-4.903482px;}
.y1b9{bottom:-1.931367px;}
.y218{bottom:-1.050510px;}
.y152{bottom:-0.471483px;}
.y0{bottom:0.000000px;}
.y178{bottom:0.089121px;}
.y23a{bottom:4.345683px;}
.y12c{bottom:8.706870px;}
.y1c{bottom:15.837920px;}
.y55{bottom:31.890000px;}
.y160{bottom:88.935000px;}
.y15f{bottom:91.665000px;}
.y2f1{bottom:92.263500px;}
.y27d{bottom:92.421000px;}
.y27c{bottom:95.151000px;}
.y1e0{bottom:98.478000px;}
.ye2{bottom:100.468500px;}
.y1a{bottom:104.646000px;}
.y9f{bottom:104.911500px;}
.y127{bottom:104.952000px;}
.y2f0{bottom:106.902000px;}
.y9e{bottom:107.641500px;}
.y2c5{bottom:107.764500px;}
.y2ef{bottom:109.524000px;}
.y15e{bottom:110.494500px;}
.y27b{bottom:110.904000px;}
.y27a{bottom:111.250500px;}
.y54{bottom:112.606500px;}
.y279{bottom:113.980500px;}
.y1df{bottom:114.577500px;}
.y53{bottom:115.335000px;}
.y1de{bottom:117.307500px;}
.ye1{bottom:119.298000px;}
.y126{bottom:121.051500px;}
.y331{bottom:121.762500px;}
.y19{bottom:122.535000px;}
.y125{bottom:123.781500px;}
.y9d{bottom:126.471000px;}
.y15d{bottom:126.594000px;}
.y2ee{bottom:126.784500px;}
.y222{bottom:127.194000px;}
.y15c{bottom:129.324000px;}
.y277{bottom:129.733500px;}
.y221{bottom:129.817500px;}
.y278{bottom:130.080000px;}
.y276{bottom:132.810000px;}
.y2c4{bottom:133.807500px;}
.y52{bottom:134.164500px;}
.y1ac{bottom:134.209500px;}
.y1dd{bottom:136.137000px;}
.ydf{bottom:138.127500px;}
.y330{bottom:139.023000px;}
.y18{bottom:140.422500px;}
.y9c{bottom:142.570500px;}
.y124{bottom:142.611000px;}
.ye0{bottom:143.551500px;}
.y2ed{bottom:144.045000px;}
.y9b{bottom:145.300500px;}
.y220{bottom:146.427000px;}
.y15b{bottom:148.153500px;}
.y274{bottom:148.563000px;}
.y275{bottom:148.909500px;}
.y21f{bottom:149.050500px;}
.y273{bottom:151.639500px;}
.y1dc{bottom:152.236500px;}
.y50{bottom:152.994000px;}
.y1ab{bottom:153.039000px;}
.y1db{bottom:154.966500px;}
.y32f{bottom:156.283500px;}
.yde{bottom:156.957000px;}
.y17{bottom:158.310000px;}
.y51{bottom:158.419500px;}
.y123{bottom:158.710500px;}
.y2ec{bottom:161.305500px;}
.y9a{bottom:161.400000px;}
.y122{bottom:161.440500px;}
.y99{bottom:164.130000px;}
.y15a{bottom:164.253000px;}
.y21e{bottom:165.660000px;}
.y159{bottom:166.983000px;}
.y2c3{bottom:167.431500px;}
.y272{bottom:167.739000px;}
.y21d{bottom:168.283500px;}
.y271{bottom:170.469000px;}
.y32e{bottom:170.922000px;}
.y4f{bottom:171.823500px;}
.y1aa{bottom:171.868500px;}
.y32d{bottom:173.544000px;}
.y1da{bottom:173.796000px;}
.ydd{bottom:175.786500px;}
.y16{bottom:176.199000px;}
.y121{bottom:177.540000px;}
.y2eb{bottom:178.566000px;}
.y120{bottom:180.268500px;}
.y98{bottom:182.959500px;}
.y158{bottom:183.082500px;}
.y157{bottom:185.812500px;}
.y2c2{bottom:186.261000px;}
.y4e{bottom:187.923000px;}
.y1a9{bottom:187.968000px;}
.y270{bottom:189.297000px;}
.y4d{bottom:190.653000px;}
.y1a8{bottom:190.698000px;}
.y32c{bottom:190.804500px;}
.y1d9{bottom:192.625500px;}
.y214{bottom:193.701000px;}
.y15{bottom:194.086500px;}
.ydc{bottom:194.616000px;}
.y2ea{bottom:195.826500px;}
.y11f{bottom:196.369500px;}
.y97{bottom:199.059000px;}
.y11e{bottom:199.098000px;}
.y96{bottom:201.789000px;}
.y2c1{bottom:205.090500px;}
.y26f{bottom:205.398000px;}
.y32b{bottom:205.441500px;}
.y4c{bottom:206.752500px;}
.y32a{bottom:208.065000px;}
.y26e{bottom:208.126500px;}
.y156{bottom:209.125500px;}
.y4b{bottom:209.482500px;}
.y1a7{bottom:209.527500px;}
.y1d8{bottom:211.453500px;}
.y14{bottom:211.974000px;}
.y2e9{bottom:213.087000px;}
.ydb{bottom:213.445500px;}
.y11d{bottom:215.197500px;}
.y11c{bottom:217.927500px;}
.y95{bottom:220.618500px;}
.y2c0{bottom:223.920000px;}
.y26d{bottom:224.226000px;}
.y329{bottom:225.325500px;}
.y26c{bottom:226.956000px;}
.y1d7{bottom:227.554500px;}
.y4a{bottom:228.312000px;}
.y1a6{bottom:228.357000px;}
.yda{bottom:229.545000px;}
.y13{bottom:229.863000px;}
.y1d6{bottom:230.283000px;}
.y2e8{bottom:230.347500px;}
.yd9{bottom:232.275000px;}
.y11b{bottom:234.027000px;}
.y94{bottom:236.718000px;}
.y11a{bottom:236.757000px;}
.y155{bottom:238.839000px;}
.y93{bottom:239.446500px;}
.y328{bottom:242.586000px;}
.y2bf{bottom:242.749500px;}
.y26b{bottom:243.055500px;}
.y1a5{bottom:244.456500px;}
.y26a{bottom:245.785500px;}
.y49{bottom:247.141500px;}
.y1a4{bottom:247.186500px;}
.y2e7{bottom:247.606500px;}
.y1d5{bottom:249.112500px;}
.yd8{bottom:251.104500px;}
.y154{bottom:255.450000px;}
.y119{bottom:255.586500px;}
.y153{bottom:258.072000px;}
.y92{bottom:258.276000px;}
.y327{bottom:259.846500px;}
.y2be{bottom:261.579000px;}
.y269{bottom:261.885000px;}
.y2e6{bottom:262.245000px;}
.y1a3{bottom:263.286000px;}
.y268{bottom:264.615000px;}
.y2e5{bottom:264.867000px;}
.y1d4{bottom:265.212000px;}
.y1a2{bottom:266.016000px;}
.y1d3{bottom:267.942000px;}
.yd7{bottom:269.932500px;}
.y48{bottom:270.454500px;}
.y118{bottom:271.686000px;}
.y91{bottom:274.377000px;}
.y117{bottom:274.416000px;}
.y90{bottom:277.105500px;}
.y293{bottom:280.307301px;}
.y2bd{bottom:280.408500px;}
.y13f{bottom:280.501500px;}
.y267{bottom:280.714500px;}
.y1a1{bottom:282.115500px;}
.y2e4{bottom:282.127500px;}
.y266{bottom:283.444500px;}
.y1d2{bottom:284.041500px;}
.y1a0{bottom:284.845500px;}
.y1d1{bottom:286.771500px;}
.yd6{bottom:288.762000px;}
.y326{bottom:291.744000px;}
.y116{bottom:293.245500px;}
.y325{bottom:294.366000px;}
.y8f{bottom:295.935000px;}
.y2bc{bottom:296.508000px;}
.y2bb{bottom:299.238000px;}
.y2e3{bottom:299.388000px;}
.y265{bottom:299.544000px;}
.y292{bottom:299.566743px;}
.y12{bottom:300.154500px;}
.y19f{bottom:300.945000px;}
.y264{bottom:302.274000px;}
.y19e{bottom:303.675000px;}
.y1d0{bottom:305.601000px;}
.yd5{bottom:307.591500px;}
.y324{bottom:311.626500px;}
.y8e{bottom:312.034500px;}
.y8d{bottom:314.764500px;}
.y115{bottom:316.558500px;}
.y2e2{bottom:316.648500px;}
.y11{bottom:318.043500px;}
.y2ba{bottom:318.067500px;}
.y263{bottom:318.373500px;}
.y291{bottom:318.737508px;}
.y262{bottom:321.103500px;}
.y1cf{bottom:321.700500px;}
.y19d{bottom:322.504500px;}
.y239{bottom:323.395008px;}
.y1ce{bottom:324.430500px;}
.yd3{bottom:326.421000px;}
.y323{bottom:328.887000px;}
.y8c{bottom:330.864000px;}
.yd4{bottom:331.846500px;}
.y8b{bottom:333.594000px;}
.y2e1{bottom:333.909000px;}
.y2b9{bottom:334.167000px;}
.y10{bottom:335.931000px;}
.y260{bottom:336.856500px;}
.y2b8{bottom:336.897000px;}
.y261{bottom:337.203000px;}
.y290{bottom:337.997688px;}
.y25f{bottom:339.933000px;}
.y19c{bottom:341.332500px;}
.y238{bottom:342.655188px;}
.yd2{bottom:343.009500px;}
.y1cd{bottom:343.260000px;}
.y177{bottom:343.439688px;}
.yd1{bottom:345.250500px;}
.y47{bottom:345.604500px;}
.y322{bottom:346.147500px;}
.y8a{bottom:349.693500px;}
.y114{bottom:350.182500px;}
.y2e0{bottom:351.169500px;}
.y89{bottom:352.423500px;}
.y2b6{bottom:352.996500px;}
.yf{bottom:353.818500px;}
.y25e{bottom:355.686000px;}
.y2b5{bottom:355.726500px;}
.y25d{bottom:356.032500px;}
.y28f{bottom:357.168066px;}
.y25c{bottom:358.762500px;}
.y19b{bottom:360.162000px;}
.y321{bottom:360.784500px;}
.y2b7{bottom:361.150500px;}
.y237{bottom:361.825008px;}
.y1cc{bottom:362.089500px;}
.y176{bottom:362.610216px;}
.y320{bottom:363.408000px;}
.yd0{bottom:364.080000px;}
.y12a{bottom:364.243302px;}
.y2df{bottom:368.430000px;}
.y113{bottom:369.012000px;}
.y88{bottom:371.253000px;}
.y2b4{bottom:371.826000px;}
.y2b3{bottom:374.556000px;}
.y25b{bottom:374.862000px;}
.y129{bottom:375.799140px;}
.y28e{bottom:376.427508px;}
.y25a{bottom:377.592000px;}
.y31f{bottom:380.668500px;}
.ye{bottom:380.673000px;}
.y1cb{bottom:380.919000px;}
.y236{bottom:381.085008px;}
.y175{bottom:381.869658px;}
.y46{bottom:382.995000px;}
.y19a{bottom:383.475000px;}
.y112{bottom:385.111500px;}
.y2de{bottom:385.689000px;}
.y87{bottom:387.352500px;}
.ycf{bottom:387.393000px;}
.y111{bottom:387.841500px;}
.y86{bottom:390.082500px;}
.y2b2{bottom:390.655500px;}
.y2b1{bottom:393.385500px;}
.y259{bottom:393.691500px;}
.y28d{bottom:395.691396px;}
.y258{bottom:396.421500px;}
.y31e{bottom:397.929000px;}
.yd{bottom:398.562000px;}
.y1ca{bottom:399.748500px;}
.y235{bottom:400.345188px;}
.y174{bottom:401.129688px;}
.y45{bottom:402.451500px;}
.y2dd{bottom:402.949500px;}
.y110{bottom:403.941000px;}
.y85{bottom:406.182000px;}
.y10f{bottom:406.671000px;}
.y84{bottom:408.912000px;}
.y2b0{bottom:409.485000px;}
.y2af{bottom:412.215000px;}
.y28c{bottom:414.860658px;}
.y31d{bottom:415.188000px;}
.y257{bottom:415.251000px;}
.yc{bottom:416.449500px;}
.y199{bottom:417.099000px;}
.y44{bottom:419.286000px;}
.y234{bottom:419.515008px;}
.y2dc{bottom:420.210000px;}
.y173{bottom:420.299508px;}
.yce{bottom:421.017000px;}
.y43{bottom:421.908000px;}
.y10e{bottom:422.770500px;}
.y10d{bottom:425.500500px;}
.y83{bottom:427.741500px;}
.y2ae{bottom:428.314500px;}
.y2ad{bottom:431.044500px;}
.y256{bottom:431.350500px;}
.y31c{bottom:432.448500px;}
.y198{bottom:433.198500px;}
.y1c9{bottom:433.314000px;}
.y255{bottom:434.080500px;}
.y28b{bottom:434.120100px;}
.y2db{bottom:434.848500px;}
.y197{bottom:435.928500px;}
.ycd{bottom:437.116500px;}
.y2da{bottom:437.470500px;}
.y233{bottom:438.775008px;}
.y172{bottom:439.558743px;}
.ycc{bottom:439.846500px;}
.y42{bottom:441.366000px;}
.y10c{bottom:441.600000px;}
.y10b{bottom:444.330000px;}
.yb{bottom:444.753000px;}
.y82{bottom:446.571000px;}
.y31b{bottom:449.709000px;}
.y2ac{bottom:449.874000px;}
.y1c8{bottom:449.925000px;}
.y1c7{bottom:452.547000px;}
.y254{bottom:452.910000px;}
.y28a{bottom:453.379542px;}
.y2d9{bottom:454.731000px;}
.y196{bottom:454.758000px;}
.y232{bottom:458.035188px;}
.ycb{bottom:458.676000px;}
.y171{bottom:458.729508px;}
.y10a{bottom:460.429500px;}
.y41{bottom:460.822500px;}
.y81{bottom:462.670500px;}
.y109{bottom:463.159500px;}
.y80{bottom:465.400500px;}
.y31a{bottom:466.969500px;}
.y2ab{bottom:468.702000px;}
.y1c6{bottom:469.158000px;}
.y2d8{bottom:469.369500px;}
.ya{bottom:471.562500px;}
.y1c5{bottom:471.780000px;}
.y2d7{bottom:471.991500px;}
.y289{bottom:472.548804px;}
.y195{bottom:473.587500px;}
.yca{bottom:474.775500px;}
.y231{bottom:477.205008px;}
.yc9{bottom:477.505500px;}
.y40{bottom:477.657000px;}
.y170{bottom:477.988893px;}
.y3f{bottom:480.279000px;}
.y108{bottom:481.989000px;}
.y151{bottom:482.828688px;}
.y7f{bottom:484.230000px;}
.y253{bottom:486.475500px;}
.y2aa{bottom:487.531500px;}
.y2d6{bottom:489.252000px;}
.y9{bottom:489.451500px;}
.y288{bottom:491.808246px;}
.y194{bottom:492.417000px;}
.yc7{bottom:496.335000px;}
.y230{bottom:496.465188px;}
.y3e{bottom:497.113500px;}
.y1ad{bottom:497.197500px;}
.y16f{bottom:497.248335px;}
.y107{bottom:498.088500px;}
.y213{bottom:498.576000px;}
.y3d{bottom:499.737000px;}
.y106{bottom:500.818500px;}
.y319{bottom:501.490500px;}
.yc8{bottom:501.759000px;}
.y150{bottom:501.999066px;}
.y252{bottom:502.767000px;}
.y7e{bottom:503.059500px;}
.y251{bottom:505.708500px;}
.y2d5{bottom:506.512500px;}
.y8{bottom:507.339000px;}
.y193{bottom:508.516500px;}
.y287{bottom:510.977508px;}
.y192{bottom:511.246500px;}
.y212{bottom:514.675500px;}
.yc6{bottom:515.164500px;}
.y22f{bottom:515.634819px;}
.y16e{bottom:516.420246px;}
.y211{bottom:517.405500px;}
.y318{bottom:518.751000px;}
.y3c{bottom:519.193500px;}
.y105{bottom:519.648000px;}
.y2a9{bottom:519.724500px;}
.y14f{bottom:521.258508px;}
.y7d{bottom:521.889000px;}
.y7{bottom:525.226500px;}
.y2d4{bottom:528.255000px;}
.y191{bottom:530.076000px;}
.y286{bottom:530.237508px;}
.y228{bottom:531.126000px;}
.y210{bottom:533.158500px;}
.yc5{bottom:533.994000px;}
.y22e{bottom:534.894261px;}
.y16d{bottom:535.679688px;}
.y317{bottom:536.011500px;}
.y3b{bottom:536.028000px;}
.y20f{bottom:536.235000px;}
.y7c{bottom:537.988500px;}
.y103{bottom:538.477500px;}
.y3a{bottom:538.651500px;}
.y14e{bottom:540.518688px;}
.y7b{bottom:540.718500px;}
.y6{bottom:543.115500px;}
.y190{bottom:543.750000px;}
.y104{bottom:543.901500px;}
.y280{bottom:545.142000px;}
.y18e{bottom:548.905500px;}
.y285{bottom:549.496617px;}
.yc4{bottom:552.823500px;}
.y316{bottom:553.272000px;}
.y22d{bottom:554.153703px;}
.y18f{bottom:554.329500px;}
.y102{bottom:554.577000px;}
.y16c{bottom:554.849508px;}
.y20e{bottom:555.064500px;}
.y39{bottom:555.486000px;}
.y7a{bottom:556.818000px;}
.y101{bottom:557.307000px;}
.y38{bottom:558.108000px;}
.y79{bottom:559.548000px;}
.y14d{bottom:559.688508px;}
.y5{bottom:561.003000px;}
.y2d3{bottom:561.879000px;}
.y284{bottom:568.667382px;}
.y315{bottom:570.531000px;}
.y20c{bottom:570.817500px;}
.y20d{bottom:571.164000px;}
.yc3{bottom:571.653000px;}
.yff{bottom:573.406500px;}
.y20b{bottom:573.894000px;}
.y16b{bottom:574.108203px;}
.y37{bottom:574.942500px;}
.yfe{bottom:576.136500px;}
.y36{bottom:577.564500px;}
.y22c{bottom:577.824882px;}
.y78{bottom:578.377500px;}
.y4{bottom:578.890500px;}
.y14c{bottom:578.948688px;}
.y100{bottom:581.560500px;}
.y18d{bottom:584.277000px;}
.y314{bottom:585.169500px;}
.yc2{bottom:587.752500px;}
.y313{bottom:587.791500px;}
.y2d2{bottom:588.420000px;}
.yc1{bottom:590.482500px;}
.y20a{bottom:592.723500px;}
.y35{bottom:594.399000px;}
.yfc{bottom:594.964500px;}
.y3{bottom:596.779500px;}
.y34{bottom:597.022500px;}
.y77{bottom:597.207000px;}
.y16a{bottom:597.778950px;}
.y14b{bottom:598.118508px;}
.yfd{bottom:600.390000px;}
.y18b{bottom:600.888000px;}
.y18a{bottom:603.510000px;}
.y312{bottom:605.052000px;}
.y2d1{bottom:605.994000px;}
.y18c{bottom:608.392500px;}
.y209{bottom:608.823000px;}
.yc0{bottom:609.312000px;}
.y208{bottom:611.553000px;}
.yfb{bottom:613.794000px;}
.y2{bottom:614.667000px;}
.y76{bottom:616.036500px;}
.y33{bottom:616.479000px;}
.y14a{bottom:617.377743px;}
.y311{bottom:622.312500px;}
.y282{bottom:623.387085px;}
.y2d0{bottom:623.568000px;}
.y207{bottom:627.306000px;}
.ybf{bottom:628.141500px;}
.y164{bottom:628.929000px;}
.yf9{bottom:629.895000px;}
.y206{bottom:630.382500px;}
.y22a{bottom:632.544585px;}
.y1{bottom:632.554500px;}
.yf8{bottom:632.623500px;}
.y281{bottom:633.016950px;}
.y169{bottom:634.678500px;}
.y75{bottom:634.866000px;}
.y32{bottom:635.935500px;}
.y149{bottom:636.637185px;}
.yfa{bottom:638.049000px;}
.y310{bottom:639.573000px;}
.y229{bottom:642.174450px;}
.ybe{bottom:644.241000px;}
.y1b8{bottom:646.698804px;}
.ybd{bottom:646.971000px;}
.y205{bottom:649.212000px;}
.y2cf{bottom:650.109000px;}
.y168{bottom:652.048950px;}
.y74{bottom:653.695500px;}
.y30f{bottom:654.210000px;}
.y148{bottom:655.807761px;}
.yf7{bottom:655.936500px;}
.y30e{bottom:656.833500px;}
.y1b7{bottom:665.958246px;}
.y2ce{bottom:667.683000px;}
.y204{bottom:668.041500px;}
.ybc{bottom:670.282500px;}
.y73{bottom:672.525000px;}
.y30d{bottom:674.094000px;}
.y31{bottom:674.521500px;}
.y147{bottom:675.067203px;}
.yf6{bottom:676.111500px;}
.y203{bottom:684.141000px;}
.y1b6{bottom:685.127508px;}
.y202{bottom:686.871000px;}
.y72{bottom:688.624500px;}
.y30c{bottom:688.731000px;}
.y30{bottom:690.661500px;}
.y71{bottom:691.354500px;}
.y2cd{bottom:694.224000px;}
.y146{bottom:698.737950px;}
.y201{bottom:702.970500px;}
.ybb{bottom:703.906500px;}
.y1b5{bottom:704.388804px;}
.y166{bottom:705.149085px;}
.y200{bottom:705.700500px;}
.y30b{bottom:708.613500px;}
.yf5{bottom:709.735500px;}
.y70{bottom:710.184000px;}
.y2f{bottom:711.141000px;}
.y165{bottom:714.778950px;}
.y2cc{bottom:720.763500px;}
.y1ff{bottom:721.800000px;}
.yba{bottom:722.736000px;}
.y2e{bottom:722.940000px;}
.y30a{bottom:723.252000px;}
.y1b4{bottom:723.558066px;}
.y1fe{bottom:724.530000px;}
.yf4{bottom:725.835000px;}
.y309{bottom:725.874000px;}
.y6f{bottom:726.283500px;}
.yf3{bottom:728.565000px;}
.y6e{bottom:729.013500px;}
.y145{bottom:735.548400px;}
.y2d{bottom:739.080000px;}
.yb9{bottom:741.565500px;}
.y1b3{bottom:742.817508px;}
.y308{bottom:743.134500px;}
.y1fd{bottom:743.359500px;}
.y2cb{bottom:747.304500px;}
.yf2{bottom:747.394500px;}
.y6d{bottom:747.843000px;}
.y144{bottom:753.007950px;}
.y13e{bottom:756.439500px;}
.yb8{bottom:757.665000px;}
.y1fc{bottom:759.459000px;}
.y2c{bottom:759.559500px;}
.yb7{bottom:760.395000px;}
.y1b2{bottom:762.076185px;}
.y1fb{bottom:762.189000px;}
.yf1{bottom:766.224000px;}
.y6c{bottom:766.671000px;}
.y2b{bottom:771.358500px;}
.y13d{bottom:773.050500px;}
.y2ca{bottom:773.845500px;}
.y13c{bottom:775.672500px;}
.y307{bottom:777.655500px;}
.yb6{bottom:779.224500px;}
.y143{bottom:779.737725px;}
.y1fa{bottom:781.018500px;}
.y1b1{bottom:781.247382px;}
.yf0{bottom:785.053500px;}
.y6b{bottom:785.500500px;}
.y2c9{bottom:791.419500px;}
.y2a{bottom:791.838000px;}
.y333{bottom:792.294000px;}
.y306{bottom:794.916000px;}
.yb5{bottom:798.054000px;}
.y1f9{bottom:799.848000px;}
.y128{bottom:801.090000px;}
.y29{bottom:803.638500px;}
.yef{bottom:803.883000px;}
.y6a{bottom:804.330000px;}
.y2c8{bottom:808.993500px;}
.y305{bottom:812.176500px;}
.yb4{bottom:814.153500px;}
.y1f8{bottom:815.947500px;}
.yb3{bottom:816.883500px;}
.y1f7{bottom:818.677500px;}
.yee{bottom:819.982500px;}
.yed{bottom:822.712500px;}
.y69{bottom:823.159500px;}
.y28{bottom:824.116500px;}
.y2c7{bottom:826.567500px;}
.y304{bottom:829.437000px;}
.yb2{bottom:832.983000px;}
.y1f6{bottom:834.777000px;}
.yb0{bottom:835.713000px;}
.y1af{bottom:835.967085px;}
.y1f5{bottom:837.507000px;}
.y27{bottom:840.256500px;}
.yb1{bottom:841.137000px;}
.yec{bottom:841.540500px;}
.y68{bottom:841.989000px;}
.y2c6{bottom:844.141500px;}
.y1ae{bottom:845.596950px;}
.y303{bottom:846.697500px;}
.y26{bottom:852.057000px;}
.yaf{bottom:854.542500px;}
.y1f4{bottom:856.335000px;}
.yeb{bottom:860.370000px;}
.y67{bottom:860.818500px;}
.y302{bottom:863.956500px;}
.y1f3{bottom:872.436000px;}
.y25{bottom:872.536500px;}
.yae{bottom:873.372000px;}
.y1f2{bottom:875.164500px;}
.y27f{bottom:876.918000px;}
.ye9{bottom:879.199500px;}
.y66{bottom:879.648000px;}
.y301{bottom:881.217000px;}
.y24{bottom:884.335500px;}
.yea{bottom:884.625000px;}
.y227{bottom:891.265500px;}
.yad{bottom:892.201500px;}
.y1f1{bottom:893.994000px;}
.y27e{bottom:895.747500px;}
.ye7{bottom:898.029000px;}
.y65{bottom:898.477500px;}
.ye8{bottom:903.454500px;}
.y23{bottom:904.815000px;}
.y1f0{bottom:910.093500px;}
.yab{bottom:911.031000px;}
.y1ef{bottom:912.823500px;}
.y300{bottom:915.738000px;}
.yac{bottom:916.455000px;}
.ye6{bottom:916.858500px;}
.y64{bottom:917.307000px;}
.yaa{bottom:927.130500px;}
.y1ee{bottom:928.923000px;}
.ya9{bottom:929.860500px;}
.y332{bottom:930.376500px;}
.y1ed{bottom:931.653000px;}
.y2ff{bottom:932.998500px;}
.ye5{bottom:935.688000px;}
.y63{bottom:936.136500px;}
.ya8{bottom:945.960000px;}
.y2fe{bottom:947.635500px;}
.y226{bottom:947.752500px;}
.ya7{bottom:948.690000px;}
.y22{bottom:949.491000px;}
.y2fd{bottom:950.259000px;}
.y1ec{bottom:950.482500px;}
.y62{bottom:952.236000px;}
.y61{bottom:954.966000px;}
.ye4{bottom:959.001000px;}
.y225{bottom:966.582000px;}
.y216{bottom:967.439085px;}
.y2fc{bottom:967.519500px;}
.y21{bottom:968.320500px;}
.y1eb{bottom:969.312000px;}
.y60{bottom:971.065500px;}
.ya6{bottom:972.003000px;}
.y5f{bottom:973.795500px;}
.y215{bottom:977.068950px;}
.y2fb{bottom:982.156500px;}
.y2fa{bottom:984.780000px;}
.y1ea{bottom:985.411500px;}
.y1e9{bottom:988.141500px;}
.y163{bottom:989.895000px;}
.y5e{bottom:992.625000px;}
.y224{bottom:993.567000px;}
.y2f9{bottom:1002.040500px;}
.y223{bottom:1004.241000px;}
.ya5{bottom:1005.627000px;}
.y1e8{bottom:1006.971000px;}
.y20{bottom:1008.240000px;}
.y5d{bottom:1008.724500px;}
.y5c{bottom:1011.454500px;}
.y2f8{bottom:1019.299500px;}
.y1e7{bottom:1023.070500px;}
.ya4{bottom:1024.456500px;}
.y1e6{bottom:1025.800500px;}
.ye3{bottom:1027.554000px;}
.y5b{bottom:1030.284000px;}
.y1f{bottom:1036.485000px;}
.y2f7{bottom:1036.560000px;}
.y1e5{bottom:1041.900000px;}
.ya3{bottom:1043.284500px;}
.y1e4{bottom:1044.630000px;}
.y5a{bottom:1049.113500px;}
.y2f6{bottom:1051.198500px;}
.y2f5{bottom:1053.820500px;}
.ya2{bottom:1059.385500px;}
.ya1{bottom:1062.114000px;}
.y1e3{bottom:1063.459500px;}
.y1e{bottom:1064.728500px;}
.y162{bottom:1065.213000px;}
.y59{bottom:1067.943000px;}
.y2f4{bottom:1071.081000px;}
.y141{bottom:1076.018085px;}
.y1e2{bottom:1079.559000px;}
.y1e1{bottom:1082.289000px;}
.y161{bottom:1084.042500px;}
.ya0{bottom:1085.427000px;}
.y140{bottom:1085.647950px;}
.y58{bottom:1086.772500px;}
.y2f3{bottom:1088.341500px;}
.y1d{bottom:1092.972000px;}
.y2f2{bottom:1102.978500px;}
.y57{bottom:1105.602000px;}
.y1b{bottom:1136.460000px;}
.y56{bottom:1168.366500px;}
.h10{height:21.261053px;}
.hf{height:30.106714px;}
.h8{height:32.565965px;}
.h32{height:35.652888px;}
.h29{height:37.389888px;}
.h2{height:37.993262px;}
.ha{height:38.734848px;}
.h12{height:39.614278px;}
.he{height:41.250077px;}
.h11{height:41.544042px;}
.hc{height:43.038432px;}
.h1e{height:43.269961px;}
.h9{height:43.421105px;}
.h5{height:43.815515px;}
.h1b{height:44.536816px;}
.hb{height:48.848947px;}
.h1d{height:50.229492px;}
.h2d{height:50.230692px;}
.h22{height:50.231292px;}
.h3{height:50.930649px;}
.h17{height:51.923953px;}
.h14{height:53.444180px;}
.hd{height:54.276245px;}
.h7{height:54.411312px;}
.h1c{height:55.922168px;}
.h24{height:55.922396px;}
.h28{height:55.922708px;}
.h1f{height:55.922924px;}
.h20{height:55.922996px;}
.h25{height:55.923368px;}
.h31{height:55.923500px;}
.h23{height:55.925156px;}
.h2c{height:55.925228px;}
.h16{height:60.275391px;}
.h15{height:67.106602px;}
.h18{height:67.107509px;}
.h19{height:67.107595px;}
.h26{height:76.160391px;}
.h6{height:77.469696px;}
.h2a{height:84.633965px;}
.h27{height:86.162168px;}
.h4{height:99.941241px;}
.h30{height:255.750000px;}
.h2f{height:305.461500px;}
.h13{height:319.456800px;}
.h21{height:322.467000px;}
.h1a{height:461.134500px;}
.h2b{height:623.349000px;}
.h2e{height:926.847000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:198.822293px;}
.w4{width:477.487500px;}
.w9{width:701.839950px;}
.w5{width:705.764100px;}
.w8{width:706.417950px;}
.w6{width:719.500500px;}
.w3{width:719.761320px;}
.w7{width:782.292450px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xe1{left:-197.170500px;}
.xd4{left:-111.019680px;}
.x153{left:-40.189050px;}
.xf4{left:-38.880900px;}
.x10e{left:-32.340000px;}
.xe3{left:-1.600500px;}
.x0{left:0.000000px;}
.x12d{left:2.980950px;}
.xe4{left:30.260094px;}
.x1{left:53.574000px;}
.x12c{left:55.099050px;}
.x2{left:57.551633px;}
.x15d{left:85.174500px;}
.xd3{left:86.364780px;}
.xf3{left:93.362400px;}
.x152{left:95.324550px;}
.xd5{left:123.664320px;}
.x154{left:155.381310px;}
.xf5{left:156.689100px;}
.xd6{left:161.897033px;}
.x10f{left:163.230360px;}
.x155{left:187.241499px;}
.xe2{left:188.299401px;}
.x110{left:195.090000px;}
.x12e{left:198.550950px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x130{left:253.714500px;}
.xaf{left:256.912500px;}
.x146{left:258.621000px;}
.xe{left:260.530500px;}
.x62{left:261.949500px;}
.x131{left:263.869500px;}
.xf{left:266.508000px;}
.x63{left:268.375500px;}
.x4{left:269.914500px;}
.x132{left:272.086500px;}
.x10{left:275.997000px;}
.x3d{left:278.416500px;}
.xbf{left:279.769500px;}
.x25{left:281.479500px;}
.x11{left:285.327000px;}
.xc7{left:287.368500px;}
.x64{left:289.233000px;}
.x127{left:291.018000px;}
.x137{left:292.735500px;}
.xb6{left:294.009000px;}
.x80{left:295.612500px;}
.xc0{left:297.003000px;}
.x3e{left:298.498500px;}
.x147{left:299.955000px;}
.x128{left:301.174500px;}
.xb7{left:303.846000px;}
.x3f{left:305.970000px;}
.xb0{left:307.117500px;}
.x6{left:309.871500px;}
.xf7{left:311.454000px;}
.x112{left:312.945000px;}
.xe6{left:314.560500px;}
.xd7{left:315.964500px;}
.xb1{left:317.563500px;}
.x124{left:318.813000px;}
.xa0{left:321.706500px;}
.xc2{left:324.607500px;}
.x113{left:326.767500px;}
.xa1{left:328.132500px;}
.xc3{left:331.033500px;}
.x86{left:332.574000px;}
.x68{left:334.045500px;}
.x101{left:336.714000px;}
.x44{left:339.582000px;}
.xc4{left:341.416500px;}
.x102{left:343.140000px;}
.x117{left:345.349500px;}
.x45{left:347.055000px;}
.x87{left:349.383000px;}
.x69{left:350.854500px;}
.x12b{left:352.612500px;}
.x103{left:353.947500px;}
.x9d{left:356.656500px;}
.x2b{left:358.711500px;}
.x6a{left:360.634500px;}
.x82{left:362.755500px;}
.xb8{left:363.967500px;}
.x6b{left:365.512500px;}
.x14b{left:367.602000px;}
.x2c{left:368.866500px;}
.x31{left:371.229000px;}
.x15a{left:372.397500px;}
.x10d{left:373.761000px;}
.xa3{left:375.445500px;}
.x13d{left:376.521000px;}
.x70{left:378.282000px;}
.x118{left:379.338000px;}
.x32{left:381.391500px;}
.x125{left:383.493000px;}
.x5a{left:385.183500px;}
.x33{left:386.422500px;}
.x7c{left:388.047000px;}
.x71{left:389.089500px;}
.xa4{left:391.213500px;}
.x34{left:393.894000px;}
.x11c{left:396.595500px;}
.x91{left:399.061500px;}
.x5b{left:400.126500px;}
.x26{left:401.505000px;}
.x156{left:403.405500px;}
.x7d{left:405.078000px;}
.x139{left:407.226000px;}
.x48{left:408.723000px;}
.x135{left:410.481000px;}
.x27{left:411.550500px;}
.x92{left:414.006000px;}
.x72{left:417.663000px;}
.x10b{left:420.025500px;}
.x4f{left:421.141500px;}
.xfe{left:422.184000px;}
.x49{left:424.197000px;}
.x119{left:425.956500px;}
.xd8{left:428.667000px;}
.x11b{left:430.113000px;}
.xb2{left:431.581500px;}
.x73{left:434.526000px;}
.x50{left:436.084500px;}
.x126{left:438.006000px;}
.x4a{left:439.141500px;}
.x40{left:442.738500px;}
.x55{left:445.237500px;}
.x9e{left:446.782500px;}
.x35{left:448.935000px;}
.xd9{left:450.546000px;}
.x4d{left:452.793000px;}
.x56{left:455.385000px;}
.xda{left:456.523500px;}
.x15e{left:458.089500px;}
.x36{left:459.097500px;}
.xb9{left:461.079000px;}
.x41{left:462.820500px;}
.xb3{left:465.291000px;}
.x93{left:467.587500px;}
.x1d{left:468.927000px;}
.x42{left:470.293500px;}
.xbb{left:471.756000px;}
.x65{left:473.619000px;}
.x1e{left:474.904500px;}
.x3b{left:477.135000px;}
.x114{left:479.296500px;}
.xe5{left:480.349689px;}
.x5f{left:481.554000px;}
.x1f{left:484.411500px;}
.xf2{left:486.186000px;}
.x3c{left:488.169000px;}
.xed{left:490.576500px;}
.xdb{left:492.541500px;}
.x20{left:493.770000px;}
.x115{left:496.339500px;}
.xf8{left:497.479500px;}
.x60{left:498.786000px;}
.x78{left:501.337500px;}
.x11a{left:502.825500px;}
.x111{left:503.977500px;}
.x61{left:505.212000px;}
.x116{left:506.506500px;}
.x79{left:507.763500px;}
.xee{left:509.173500px;}
.xb{left:511.045500px;}
.x14c{left:512.320500px;}
.x94{left:515.532000px;}
.xc{left:517.023000px;}
.x7a{left:518.179500px;}
.x4e{left:520.303500px;}
.x46{left:522.538500px;}
.xb4{left:523.816500px;}
.x129{left:525.001500px;}
.x7{left:527.128500px;}
.x7b{left:528.325500px;}
.x47{left:530.010000px;}
.x8{left:533.107500px;}
.xb5{left:534.376500px;}
.xd{left:536.466000px;}
.x136{left:537.516000px;}
.x6c{left:539.035500px;}
.x13e{left:540.400500px;}
.x9{left:542.452500px;}
.xbc{left:544.800000px;}
.x9f{left:545.832000px;}
.xa{left:548.430000px;}
.x51{left:550.302000px;}
.xcd{left:551.704500px;}
.x95{left:554.169000px;}
.x8e{left:555.594000px;}
.x9b{left:556.746000px;}
.x6d{left:559.198500px;}
.x52{left:560.913000px;}
.x13f{left:562.911000px;}
.x148{left:563.983500px;}
.x8f{left:566.401500px;}
.xa6{left:568.092000px;}
.x96{left:569.113500px;}
.x9c{left:570.352500px;}
.xa2{left:571.882500px;}
.xdc{left:573.970500px;}
.x145{left:576.600000px;}
.x90{left:577.824000px;}
.x123{left:579.285000px;}
.xf9{left:580.515000px;}
.x2d{left:581.959500px;}
.xdd{left:583.696500px;}
.x140{left:585.424500px;}
.xfa{left:586.492500px;}
.x12a{left:590.742000px;}
.x2e{left:592.048500px;}
.x104{left:593.929500px;}
.xa7{left:595.194000px;}
.x57{left:597.399000px;}
.xce{left:599.251500px;}
.x97{left:602.115000px;}
.x58{left:603.823500px;}
.x8c{left:605.652000px;}
.x43{left:607.189500px;}
.xf1{left:608.605500px;}
.x2f{left:610.156500px;}
.x8d{left:612.457500px;}
.x39{left:614.032500px;}
.x14d{left:616.701000px;}
.xcf{left:617.913000px;}
.x158{left:619.038000px;}
.x59{left:621.057000px;}
.x30{left:622.477500px;}
.x3a{left:624.198000px;}
.x159{left:626.125500px;}
.xe7{left:627.561000px;}
.x88{left:629.635500px;}
.x7f{left:632.592000px;}
.x10c{left:634.314000px;}
.x89{left:636.061500px;}
.x6e{left:637.069500px;}
.x5c{left:638.223000px;}
.xc8{left:639.330000px;}
.x144{left:640.521000px;}
.xc6{left:641.563500px;}
.xe8{left:643.266000px;}
.x5d{left:644.649000px;}
.xc9{left:645.756000px;}
.x8a{left:646.869000px;}
.xa8{left:648.934500px;}
.x13a{left:649.990500px;}
.x6f{left:652.012500px;}
.xde{left:653.179500px;}
.x12{left:654.633000px;}
.x8b{left:657.157500px;}
.x11d{left:658.192500px;}
.x13{left:660.610500px;}
.x28{left:662.437500px;}
.x5e{left:665.146500px;}
.xa9{left:666.166500px;}
.xc1{left:667.192500px;}
.x11e{left:668.352000px;}
.x14{left:669.955500px;}
.xeb{left:671.001000px;}
.xba{left:672.228000px;}
.x29{left:673.570500px;}
.xc5{left:675.465000px;}
.xaa{left:676.867500px;}
.x21{left:678.169500px;}
.x15{left:679.308000px;}
.x2a{left:681.042000px;}
.xf6{left:682.199100px;}
.x22{left:684.147000px;}
.x14e{left:685.551000px;}
.x53{left:689.053500px;}
.xe9{left:690.178500px;}
.x141{left:691.239000px;}
.xfb{left:692.301000px;}
.x23{left:693.654000px;}
.xec{left:694.660500px;}
.x108{left:696.756000px;}
.x24{left:699.631500px;}
.x98{left:702.091500px;}
.x54{left:703.996500px;}
.x149{left:706.222500px;}
.x109{left:707.562000px;}
.x142{left:711.901500px;}
.x12f{left:713.127000px;}
.x4b{left:714.699000px;}
.x133{left:715.987500px;}
.x157{left:717.438000px;}
.x10a{left:718.471500px;}
.x7e{left:719.655000px;}
.x14a{left:721.167000px;}
.xea{left:722.350500px;}
.x13b{left:723.897000px;}
.x138{left:725.797500px;}
.xab{left:727.488000px;}
.x4c{left:729.642000px;}
.xa5{left:733.153500px;}
.x99{left:735.093000px;}
.x83{left:736.587000px;}
.x15b{left:737.998500px;}
.xac{left:740.046000px;}
.x13c{left:741.444000px;}
.x84{left:743.013000px;}
.x106{left:744.474000px;}
.x120{left:745.776000px;}
.x9a{left:750.037500px;}
.x16{left:751.729500px;}
.x85{left:753.682500px;}
.x121{left:755.260500px;}
.x151{left:756.520500px;}
.x17{left:757.707000px;}
.x74{left:758.754000px;}
.x81{left:760.315500px;}
.x107{left:761.707500px;}
.x11f{left:763.656000px;}
.x75{left:765.180000px;}
.x18{left:767.415000px;}
.xef{left:768.888000px;}
.x122{left:770.883000px;}
.xd0{left:772.117500px;}
.x105{left:774.081000px;}
.x76{left:775.615500px;}
.x19{left:776.754000px;}
.xfc{left:778.777500px;}
.xdf{left:779.817000px;}
.xd1{left:782.925000px;}
.xf0{left:784.327500px;}
.x77{left:785.797500px;}
.xfd{left:787.633500px;}
.xd2{left:789.351000px;}
.x134{left:791.166000px;}
.x37{left:792.510000px;}
.xe0{left:793.639500px;}
.xca{left:794.736000px;}
.xff{left:795.999000px;}
.x66{left:797.890500px;}
.x38{left:799.983000px;}
.xcb{left:801.162000px;}
.x14f{left:802.311000px;}
.x67{left:808.956000px;}
.x15c{left:810.300000px;}
.xcc{left:811.546500px;}
.x150{left:812.622000px;}
.xbd{left:815.254500px;}
.x1a{left:817.555500px;}
.xbe{left:821.680500px;}
.x1b{left:823.533000px;}
.x100{left:828.015000px;}
.xad{left:830.911500px;}
.x1c{left:832.935000px;}
.x143{left:836.232000px;}
.xae{left:837.717000px;}
@media print{
.v5{vertical-align:-18.430387pt;}
.v2{vertical-align:-14.768000pt;}
.va{vertical-align:-10.938667pt;}
.v4{vertical-align:-9.328000pt;}
.v1{vertical-align:-5.616000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:13.440000pt;}
.v3{vertical-align:19.290667pt;}
.v9{vertical-align:26.880000pt;}
.v7{vertical-align:31.360000pt;}
.v8{vertical-align:45.120000pt;}
.ls3e{letter-spacing:-0.403200pt;}
.ls3a{letter-spacing:-0.362880pt;}
.ls52{letter-spacing:-0.336000pt;}
.lsae{letter-spacing:-0.320000pt;}
.ls4e{letter-spacing:-0.302400pt;}
.ls84{letter-spacing:-0.288576pt;}
.lsa7{letter-spacing:-0.249600pt;}
.ls8a{letter-spacing:-0.229792pt;}
.ls7d{letter-spacing:-0.208416pt;}
.ls7c{letter-spacing:-0.197728pt;}
.ls80{letter-spacing:-0.196800pt;}
.ls93{letter-spacing:-0.187200pt;}
.lsad{letter-spacing:-0.181696pt;}
.lsb7{letter-spacing:-0.176352pt;}
.ls48{letter-spacing:-0.160320pt;}
.ls96{letter-spacing:-0.158400pt;}
.lsb6{letter-spacing:-0.154976pt;}
.ls7b{letter-spacing:-0.149632pt;}
.ls89{letter-spacing:-0.138944pt;}
.ls5a{letter-spacing:-0.133600pt;}
.ls42{letter-spacing:-0.128256pt;}
.ls7f{letter-spacing:-0.120000pt;}
.ls79{letter-spacing:-0.117568pt;}
.ls43{letter-spacing:-0.115430pt;}
.ls7a{letter-spacing:-0.112224pt;}
.ls95{letter-spacing:-0.110400pt;}
.ls55{letter-spacing:-0.106880pt;}
.ls3d{letter-spacing:-0.103680pt;}
.ls44{letter-spacing:-0.102605pt;}
.ls78{letter-spacing:-0.101536pt;}
.lsa3{letter-spacing:-0.100800pt;}
.ls38{letter-spacing:-0.097037pt;}
.ls47{letter-spacing:-0.096192pt;}
.lsaf{letter-spacing:-0.096000pt;}
.lsa2{letter-spacing:-0.090848pt;}
.ls51{letter-spacing:-0.086400pt;}
.ls56{letter-spacing:-0.085504pt;}
.ls4c{letter-spacing:-0.080864pt;}
.ls59{letter-spacing:-0.080160pt;}
.ls9a{letter-spacing:-0.076800pt;}
.lsa5{letter-spacing:-0.074816pt;}
.ls49{letter-spacing:-0.070541pt;}
.lsac{letter-spacing:-0.070400pt;}
.ls92{letter-spacing:-0.069472pt;}
.ls3c{letter-spacing:-0.069120pt;}
.ls4a{letter-spacing:-0.064128pt;}
.ls94{letter-spacing:-0.062400pt;}
.ls5b{letter-spacing:-0.058784pt;}
.ls3b{letter-spacing:-0.057600pt;}
.ls5c{letter-spacing:-0.053440pt;}
.ls81{letter-spacing:-0.052800pt;}
.ls4b{letter-spacing:-0.051302pt;}
.lsa6{letter-spacing:-0.051200pt;}
.ls83{letter-spacing:-0.048096pt;}
.ls50{letter-spacing:-0.048000pt;}
.ls5d{letter-spacing:-0.042752pt;}
.ls40{letter-spacing:-0.038477pt;}
.ls77{letter-spacing:-0.037408pt;}
.ls46{letter-spacing:-0.032064pt;}
.ls58{letter-spacing:-0.026720pt;}
.ls45{letter-spacing:-0.025651pt;}
.ls9c{letter-spacing:-0.024000pt;}
.ls39{letter-spacing:-0.023040pt;}
.ls57{letter-spacing:-0.021376pt;}
.ls4d{letter-spacing:-0.019200pt;}
.ls97{letter-spacing:-0.016032pt;}
.ls7e{letter-spacing:-0.014400pt;}
.ls3f{letter-spacing:-0.012826pt;}
.ls53{letter-spacing:-0.010688pt;}
.ls74{letter-spacing:-0.009600pt;}
.ls85{letter-spacing:-0.006400pt;}
.ls76{letter-spacing:-0.005344pt;}
.ls82{letter-spacing:-0.004800pt;}
.lsd{letter-spacing:0.000000pt;}
.ls66{letter-spacing:0.000533pt;}
.lsbc{letter-spacing:0.000600pt;}
.lsc4{letter-spacing:0.000621pt;}
.lsc0{letter-spacing:0.000711pt;}
.lsbe{letter-spacing:0.001026pt;}
.lsc5{letter-spacing:0.001067pt;}
.lsbf{letter-spacing:0.002262pt;}
.ls90{letter-spacing:0.002755pt;}
.lsa1{letter-spacing:0.002825pt;}
.ls1{letter-spacing:0.003071pt;}
.lsc2{letter-spacing:0.004267pt;}
.ls2b{letter-spacing:0.004800pt;}
.ls6c{letter-spacing:0.005344pt;}
.ls18{letter-spacing:0.005760pt;}
.ls2d{letter-spacing:0.009600pt;}
.ls8b{letter-spacing:0.010688pt;}
.ls1b{letter-spacing:0.011520pt;}
.ls60{letter-spacing:0.014400pt;}
.ls65{letter-spacing:0.016000pt;}
.ls34{letter-spacing:0.016032pt;}
.lsb3{letter-spacing:0.017568pt;}
.lsb2{letter-spacing:0.017920pt;}
.lsb0{letter-spacing:0.019200pt;}
.ls22{letter-spacing:0.019238pt;}
.ls37{letter-spacing:0.021376pt;}
.ls2f{letter-spacing:0.024000pt;}
.ls25{letter-spacing:0.025651pt;}
.ls63{letter-spacing:0.026720pt;}
.ls1d{letter-spacing:0.028800pt;}
.ls28{letter-spacing:0.029792pt;}
.lsab{letter-spacing:0.032000pt;}
.ls36{letter-spacing:0.032064pt;}
.ls1a{letter-spacing:0.034560pt;}
.ls15{letter-spacing:0.035750pt;}
.ls33{letter-spacing:0.037408pt;}
.ls26{letter-spacing:0.038304pt;}
.ls5e{letter-spacing:0.038400pt;}
.ls24{letter-spacing:0.038477pt;}
.ls69{letter-spacing:0.041184pt;}
.ls54{letter-spacing:0.042752pt;}
.ls5f{letter-spacing:0.043200pt;}
.ls21{letter-spacing:0.044890pt;}
.ls13{letter-spacing:0.045965pt;}
.ls4f{letter-spacing:0.048000pt;}
.ls8e{letter-spacing:0.048096pt;}
.ls41{letter-spacing:0.051302pt;}
.ls98{letter-spacing:0.052800pt;}
.ls6a{letter-spacing:0.053440pt;}
.ls2e{letter-spacing:0.057600pt;}
.ls35{letter-spacing:0.058784pt;}
.ls67{letter-spacing:0.062400pt;}
.ls62{letter-spacing:0.064128pt;}
.ls1c{letter-spacing:0.069120pt;}
.ls87{letter-spacing:0.069472pt;}
.ls23{letter-spacing:0.070541pt;}
.ls75{letter-spacing:0.076800pt;}
.ls6b{letter-spacing:0.080160pt;}
.lsb1{letter-spacing:0.081600pt;}
.ls30{letter-spacing:0.085504pt;}
.ls8c{letter-spacing:0.091200pt;}
.lsa0{letter-spacing:0.096192pt;}
.ls86{letter-spacing:0.097344pt;}
.ls1e{letter-spacing:0.102605pt;}
.ls9d{letter-spacing:0.105600pt;}
.lsaa{letter-spacing:0.106880pt;}
.ls2c{letter-spacing:0.110400pt;}
.lsa4{letter-spacing:0.121600pt;}
.ls9e{letter-spacing:0.122912pt;}
.lsa8{letter-spacing:0.124800pt;}
.ls61{letter-spacing:0.129600pt;}
.ls19{letter-spacing:0.132480pt;}
.ls64{letter-spacing:0.136320pt;}
.ls29{letter-spacing:0.153216pt;}
.ls8d{letter-spacing:0.158400pt;}
.ls9f{letter-spacing:0.160320pt;}
.ls27{letter-spacing:0.161728pt;}
.ls16{letter-spacing:0.183859pt;}
.ls14{letter-spacing:0.194074pt;}
.ls9b{letter-spacing:0.336000pt;}
.ls32{letter-spacing:0.400800pt;}
.ls6f{letter-spacing:0.457251pt;}
.ls20{letter-spacing:0.480960pt;}
.ls11{letter-spacing:0.482502pt;}
.ls12{letter-spacing:0.487835pt;}
.ls70{letter-spacing:0.502400pt;}
.ls31{letter-spacing:0.721440pt;}
.ls1f{letter-spacing:0.865728pt;}
.ls72{letter-spacing:1.006628pt;}
.ls73{letter-spacing:1.313067pt;}
.ls71{letter-spacing:1.799835pt;}
.ls8f{letter-spacing:2.651733pt;}
.lsa{letter-spacing:2.656533pt;}
.ls7{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.657867pt;}
.ls4{letter-spacing:2.659200pt;}
.ls10{letter-spacing:3.158400pt;}
.ls88{letter-spacing:4.237792pt;}
.lsa9{letter-spacing:6.482272pt;}
.ls3{letter-spacing:9.298933pt;}
.lsc{letter-spacing:10.626533pt;}
.lsbb{letter-spacing:11.217589pt;}
.lsc1{letter-spacing:11.729154pt;}
.ls2{letter-spacing:11.953867pt;}
.lsba{letter-spacing:11.954133pt;}
.lsb9{letter-spacing:11.959467pt;}
.lsc6{letter-spacing:12.082587pt;}
.lsb4{letter-spacing:14.608533pt;}
.lsb{letter-spacing:14.613867pt;}
.ls68{letter-spacing:14.800832pt;}
.lsc3{letter-spacing:14.823467pt;}
.ls6d{letter-spacing:15.694015pt;}
.lsbd{letter-spacing:15.778133pt;}
.ls91{letter-spacing:15.915733pt;}
.lse{letter-spacing:15.937067pt;}
.lsf{letter-spacing:15.942400pt;}
.lsb5{letter-spacing:15.990400pt;}
.ls6e{letter-spacing:25.512429pt;}
.ls5{letter-spacing:26.568533pt;}
.ls6{letter-spacing:51.035733pt;}
.ls8{letter-spacing:55.787733pt;}
.ls9{letter-spacing:57.174803pt;}
.ls99{letter-spacing:754.640000pt;}
.lsb8{letter-spacing:754.642272pt;}
.ls2a{letter-spacing:1065.358464pt;}
.ls17{letter-spacing:1278.430157pt;}
.ws164{word-spacing:-53.440000pt;}
.wscf{word-spacing:-48.000000pt;}
.wsd2{word-spacing:-37.481184pt;}
.ws10{word-spacing:-23.910400pt;}
.ws70{word-spacing:-16.032000pt;}
.ws72{word-spacing:-15.903744pt;}
.ws71{word-spacing:-15.871680pt;}
.ws6a{word-spacing:-14.532480pt;}
.ws6d{word-spacing:-14.469120pt;}
.ws6b{word-spacing:-14.457600pt;}
.ws68{word-spacing:-14.400000pt;}
.ws6c{word-spacing:-14.330880pt;}
.ws6e{word-spacing:-13.996800pt;}
.ws80{word-spacing:-13.360000pt;}
.ws30{word-spacing:-13.283467pt;}
.wscd{word-spacing:-13.263808pt;}
.ws82{word-spacing:-13.253120pt;}
.ws81{word-spacing:-13.226400pt;}
.wsce{word-spacing:-13.199680pt;}
.ws67{word-spacing:-12.962074pt;}
.ws7a{word-spacing:-12.110400pt;}
.ws7d{word-spacing:-12.057600pt;}
.ws7b{word-spacing:-12.048000pt;}
.ws78{word-spacing:-12.000000pt;}
.ws19{word-spacing:-11.955200pt;}
.ws7c{word-spacing:-11.942400pt;}
.ws11d{word-spacing:-11.889600pt;}
.wsd0{word-spacing:-11.880000pt;}
.ws7e{word-spacing:-11.664000pt;}
.ws77{word-spacing:-10.801728pt;}
.ws13{word-spacing:-10.626800pt;}
.ws12{word-spacing:-10.095467pt;}
.ws6f{word-spacing:-9.600000pt;}
.ws4{word-spacing:-9.298400pt;}
.ws69{word-spacing:-8.832000pt;}
.ws166{word-spacing:-8.124800pt;}
.ws163{word-spacing:-8.121600pt;}
.ws167{word-spacing:-8.032000pt;}
.ws7f{word-spacing:-8.000000pt;}
.wsd1{word-spacing:-7.993600pt;}
.ws165{word-spacing:-7.948800pt;}
.ws168{word-spacing:-7.929600pt;}
.ws169{word-spacing:-7.680000pt;}
.ws79{word-spacing:-7.360000pt;}
.ws142{word-spacing:-3.168992pt;}
.ws143{word-spacing:-3.083488pt;}
.ws52{word-spacing:-2.975497pt;}
.ws9a{word-spacing:-2.949888pt;}
.ws99{word-spacing:-2.860109pt;}
.ws1cb{word-spacing:-2.826976pt;}
.ws1e5{word-spacing:-2.810944pt;}
.ws1e6{word-spacing:-2.778880pt;}
.ws9b{word-spacing:-2.635661pt;}
.ws9c{word-spacing:-2.558707pt;}
.ws148{word-spacing:-2.550426pt;}
.ws191{word-spacing:-2.506336pt;}
.ws5e{word-spacing:-2.497292pt;}
.ws190{word-spacing:-2.484960pt;}
.wsbb{word-spacing:-2.458240pt;}
.ws1ca{word-spacing:-2.399456pt;}
.wsba{word-spacing:-2.383424pt;}
.ws49{word-spacing:-2.284756pt;}
.ws14f{word-spacing:-2.231622pt;}
.ws10b{word-spacing:-2.217760pt;}
.wsbc{word-spacing:-2.196384pt;}
.wsf5{word-spacing:-2.180352pt;}
.ws14d{word-spacing:-2.178489pt;}
.ws1ab{word-spacing:-2.158976pt;}
.wsf6{word-spacing:-2.137600pt;}
.wsbd{word-spacing:-2.132256pt;}
.ws1db{word-spacing:-2.126912pt;}
.ws1aa{word-spacing:-2.116224pt;}
.wsf4{word-spacing:-2.057440pt;}
.wsfa{word-spacing:-2.009344pt;}
.ws14e{word-spacing:-1.965953pt;}
.wsfb{word-spacing:-1.961248pt;}
.ws1f6{word-spacing:-1.902464pt;}
.ws1ee{word-spacing:-1.865056pt;}
.ws3c{word-spacing:-1.859685pt;}
.ws1cd{word-spacing:-1.832992pt;}
.ws1cc{word-spacing:-1.827648pt;}
.ws145{word-spacing:-1.822304pt;}
.ws10e{word-spacing:-1.811616pt;}
.ws200{word-spacing:-1.806551pt;}
.ws1b2{word-spacing:-1.806272pt;}
.ws1b0{word-spacing:-1.774208pt;}
.ws10d{word-spacing:-1.736800pt;}
.ws1b1{word-spacing:-1.731456pt;}
.ws144{word-spacing:-1.726112pt;}
.ws201{word-spacing:-1.700284pt;}
.ws1ae{word-spacing:-1.678016pt;}
.ws1f5{word-spacing:-1.661984pt;}
.ws14b{word-spacing:-1.647150pt;}
.ws16{word-spacing:-1.625907pt;}
.ws1f3{word-spacing:-1.544416pt;}
.ws18e{word-spacing:-1.523040pt;}
.ws1ad{word-spacing:-1.517696pt;}
.ws1f2{word-spacing:-1.490976pt;}
.ws18d{word-spacing:-1.474944pt;}
.ws1ac{word-spacing:-1.442880pt;}
.ws98{word-spacing:-1.430054pt;}
.ws1bf{word-spacing:-1.362720pt;}
.ws20f{word-spacing:-1.338982pt;}
.ws1af{word-spacing:-1.336000pt;}
.ws1be{word-spacing:-1.325312pt;}
.ws1c1{word-spacing:-1.261184pt;}
.ws1c2{word-spacing:-1.218432pt;}
.wsb9{word-spacing:-1.191712pt;}
.ws1e4{word-spacing:-1.154304pt;}
.ws1f7{word-spacing:-1.138272pt;}
.ws132{word-spacing:-1.132928pt;}
.ws44{word-spacing:-1.115811pt;}
.ws131{word-spacing:-1.095520pt;}
.ws125{word-spacing:-1.062677pt;}
.ws6{word-spacing:-1.041421pt;}
.ws4b{word-spacing:-1.009543pt;}
.ws215{word-spacing:-1.004237pt;}
.ws1bd{word-spacing:-0.961920pt;}
.ws5d{word-spacing:-0.956410pt;}
.ws97{word-spacing:-0.955507pt;}
.ws96{word-spacing:-0.942682pt;}
.ws1c0{word-spacing:-0.935200pt;}
.ws8{word-spacing:-0.929840pt;}
.ws172{word-spacing:-0.924512pt;}
.ws46{word-spacing:-0.903276pt;}
.ws1bc{word-spacing:-0.903136pt;}
.ws1fa{word-spacing:-0.897792pt;}
.ws12e{word-spacing:-0.887104pt;}
.ws1c8{word-spacing:-0.860384pt;}
.ws1fb{word-spacing:-0.855040pt;}
.ws60{word-spacing:-0.850142pt;}
.ws1c9{word-spacing:-0.849696pt;}
.ws10c{word-spacing:-0.839008pt;}
.ws174{word-spacing:-0.833664pt;}
.wsea{word-spacing:-0.822976pt;}
.ws12d{word-spacing:-0.817632pt;}
.ws146{word-spacing:-0.812288pt;}
.ws1c7{word-spacing:-0.797008pt;}
.wsb8{word-spacing:-0.796256pt;}
.ws1da{word-spacing:-0.790912pt;}
.wsb7{word-spacing:-0.785568pt;}
.wse8{word-spacing:-0.780224pt;}
.ws147{word-spacing:-0.774880pt;}
.ws186{word-spacing:-0.769536pt;}
.wsf7{word-spacing:-0.753504pt;}
.ws59{word-spacing:-0.743874pt;}
.wse9{word-spacing:-0.721440pt;}
.ws217{word-spacing:-0.717312pt;}
.ws236{word-spacing:-0.669491pt;}
.ws51{word-spacing:-0.637606pt;}
.ws17d{word-spacing:-0.598528pt;}
.ws45{word-spacing:-0.584473pt;}
.ws175{word-spacing:-0.582496pt;}
.ws173{word-spacing:-0.571808pt;}
.ws1de{word-spacing:-0.550432pt;}
.ws1d9{word-spacing:-0.545088pt;}
.ws47{word-spacing:-0.531339pt;}
.ws183{word-spacing:-0.523712pt;}
.ws184{word-spacing:-0.518368pt;}
.ws1d8{word-spacing:-0.513024pt;}
.ws159{word-spacing:-0.504000pt;}
.ws15a{word-spacing:-0.494400pt;}
.ws15b{word-spacing:-0.480000pt;}
.ws50{word-spacing:-0.478205pt;}
.ws176{word-spacing:-0.470272pt;}
.ws61{word-spacing:-0.425071pt;}
.ws15c{word-spacing:-0.403200pt;}
.ws92{word-spacing:-0.391181pt;}
.ws4a{word-spacing:-0.371937pt;}
.ws22a{word-spacing:-0.334746pt;}
.wsb3{word-spacing:-0.325984pt;}
.ws156{word-spacing:-0.318803pt;}
.wse3{word-spacing:-0.304608pt;}
.ws185{word-spacing:-0.293920pt;}
.ws233{word-spacing:-0.286925pt;}
.ws88{word-spacing:-0.280896pt;}
.ws2c{word-spacing:-0.265669pt;}
.ws1c{word-spacing:-0.239104pt;}
.wsa9{word-spacing:-0.234080pt;}
.ws103{word-spacing:-0.220800pt;}
.ws25{word-spacing:-0.212535pt;}
.ws202{word-spacing:-0.191283pt;}
.ws23{word-spacing:-0.159402pt;}
.ws1e1{word-spacing:-0.148800pt;}
.ws212{word-spacing:-0.143462pt;}
.ws87{word-spacing:-0.132787pt;}
.wsa8{word-spacing:-0.110656pt;}
.ws31{word-spacing:-0.106268pt;}
.ws204{word-spacing:-0.095642pt;}
.ws32{word-spacing:-0.053134pt;}
.ws20a{word-spacing:-0.047821pt;}
.ws28{word-spacing:-0.042507pt;}
.ws5{word-spacing:-0.037194pt;}
.ws218{word-spacing:-0.003541pt;}
.ws11{word-spacing:-0.001341pt;}
.ws1{word-spacing:0.000000pt;}
.ws107{word-spacing:0.010688pt;}
.ws16f{word-spacing:0.021376pt;}
.ws170{word-spacing:0.026720pt;}
.wsd4{word-spacing:0.047821pt;}
.ws111{word-spacing:0.048096pt;}
.ws18c{word-spacing:0.052800pt;}
.ws24{word-spacing:0.053134pt;}
.wsbe{word-spacing:0.064128pt;}
.ws1df{word-spacing:0.069472pt;}
.ws1b6{word-spacing:0.074816pt;}
.ws1e3{word-spacing:0.076800pt;}
.ws9d{word-spacing:0.076954pt;}
.ws1b{word-spacing:0.095642pt;}
.ws13a{word-spacing:0.096000pt;}
.ws1b7{word-spacing:0.096192pt;}
.ws21{word-spacing:0.106268pt;}
.ws112{word-spacing:0.112224pt;}
.wse1{word-spacing:0.115200pt;}
.wsde{word-spacing:0.120000pt;}
.wsc8{word-spacing:0.122912pt;}
.ws1a9{word-spacing:0.128256pt;}
.ws13b{word-spacing:0.129600pt;}
.wsb1{word-spacing:0.134400pt;}
.ws1e2{word-spacing:0.139200pt;}
.ws235{word-spacing:0.143462pt;}
.wse0{word-spacing:0.144000pt;}
.ws1d6{word-spacing:0.144288pt;}
.wsa7{word-spacing:0.147494pt;}
.ws160{word-spacing:0.148800pt;}
.wsdf{word-spacing:0.153600pt;}
.ws1e0{word-spacing:0.158400pt;}
.ws29{word-spacing:0.159402pt;}
.wsbf{word-spacing:0.160320pt;}
.ws90{word-spacing:0.161280pt;}
.ws102{word-spacing:0.163200pt;}
.ws133{word-spacing:0.165664pt;}
.wse2{word-spacing:0.168000pt;}
.wsb2{word-spacing:0.177600pt;}
.ws161{word-spacing:0.182400pt;}
.ws187{word-spacing:0.187040pt;}
.ws208{word-spacing:0.191283pt;}
.ws9e{word-spacing:0.192384pt;}
.ws101{word-spacing:0.211200pt;}
.ws36{word-spacing:0.212535pt;}
.ws91{word-spacing:0.213120pt;}
.ws139{word-spacing:0.220800pt;}
.ws16a{word-spacing:0.239104pt;}
.wsb0{word-spacing:0.244800pt;}
.ws37{word-spacing:0.265669pt;}
.ws1d7{word-spacing:0.277888pt;}
.ws1a{word-spacing:0.286925pt;}
.ws8f{word-spacing:0.293760pt;}
.ws64{word-spacing:0.318803pt;}
.ws22e{word-spacing:0.334746pt;}
.wsc0{word-spacing:0.342016pt;}
.ws138{word-spacing:0.345600pt;}
.wsb6{word-spacing:0.358048pt;}
.ws9f{word-spacing:0.410419pt;}
.wsca{word-spacing:0.425071pt;}
.ws95{word-spacing:0.429658pt;}
.ws1a7{word-spacing:0.432864pt;}
.ws1a8{word-spacing:0.438208pt;}
.ws58{word-spacing:0.478205pt;}
.ws210{word-spacing:0.478208pt;}
.ws129{word-spacing:0.486304pt;}
.ws12a{word-spacing:0.496992pt;}
.ws207{word-spacing:0.526029pt;}
.ws56{word-spacing:0.584473pt;}
.ws226{word-spacing:0.621670pt;}
.ws1c6{word-spacing:0.637606pt;}
.ws13d{word-spacing:0.662656pt;}
.ws1cf{word-spacing:0.694720pt;}
.ws113{word-spacing:0.716096pt;}
.ws114{word-spacing:0.721440pt;}
.wsb4{word-spacing:0.732128pt;}
.ws65{word-spacing:0.743874pt;}
.wsb5{word-spacing:0.753504pt;}
.ws206{word-spacing:0.812954pt;}
.ws1fd{word-spacing:0.822976pt;}
.ws1fc{word-spacing:0.849696pt;}
.ws151{word-spacing:0.850142pt;}
.ws93{word-spacing:0.878554pt;}
.ws7{word-spacing:0.892646pt;}
.ws94{word-spacing:0.904205pt;}
.ws193{word-spacing:0.919168pt;}
.ws2b{word-spacing:0.956410pt;}
.ws194{word-spacing:0.993984pt;}
.ws1f1{word-spacing:0.999328pt;}
.ws66{word-spacing:1.009543pt;}
.ws1f0{word-spacing:1.010016pt;}
.ws192{word-spacing:1.020704pt;}
.ws1f4{word-spacing:1.036736pt;}
.ws17{word-spacing:1.052058pt;}
.ws1d4{word-spacing:1.063456pt;}
.ws1ef{word-spacing:1.090176pt;}
.ws18{word-spacing:1.099878pt;}
.ws1d5{word-spacing:1.100864pt;}
.ws35{word-spacing:1.115811pt;}
.ws19a{word-spacing:1.202400pt;}
.ws40{word-spacing:1.222079pt;}
.ws23a{word-spacing:1.243341pt;}
.ws3a{word-spacing:1.275213pt;}
.ws1fe{word-spacing:1.314624pt;}
.ws3b{word-spacing:1.328347pt;}
.wsef{word-spacing:1.330656pt;}
.ws1d0{word-spacing:1.384096pt;}
.ws1e{word-spacing:1.386803pt;}
.wsec{word-spacing:1.416160pt;}
.ws198{word-spacing:1.426848pt;}
.wsd5{word-spacing:1.434614pt;}
.wsee{word-spacing:1.437536pt;}
.wseb{word-spacing:1.474944pt;}
.ws20c{word-spacing:1.482445pt;}
.ws3d{word-spacing:1.487748pt;}
.ws16c{word-spacing:1.540882pt;}
.ws43{word-spacing:1.594016pt;}
.ws203{word-spacing:1.625907pt;}
.ws13c{word-spacing:1.640608pt;}
.ws5f{word-spacing:1.647150pt;}
.ws1b9{word-spacing:1.661984pt;}
.ws55{word-spacing:1.700284pt;}
.ws1b8{word-spacing:1.704736pt;}
.ws106{word-spacing:1.710080pt;}
.ws1ba{word-spacing:1.715424pt;}
.ws104{word-spacing:1.726112pt;}
.wsf3{word-spacing:1.736800pt;}
.ws1bb{word-spacing:1.742144pt;}
.ws199{word-spacing:1.752832pt;}
.ws3e{word-spacing:1.753418pt;}
.ws189{word-spacing:1.761600pt;}
.ws19b{word-spacing:1.768864pt;}
.ws188{word-spacing:1.780800pt;}
.wsf2{word-spacing:1.784896pt;}
.ws5b{word-spacing:1.806551pt;}
.ws18b{word-spacing:1.809600pt;}
.ws162{word-spacing:1.859685pt;}
.ws18a{word-spacing:1.862400pt;}
.ws220{word-spacing:1.865011pt;}
.ws33{word-spacing:1.912819pt;}
.ws20b{word-spacing:1.912832pt;}
.ws108{word-spacing:1.961248pt;}
.ws14a{word-spacing:1.965953pt;}
.ws105{word-spacing:1.966592pt;}
.ws128{word-spacing:2.025376pt;}
.ws116{word-spacing:2.030720pt;}
.wsfe{word-spacing:2.054400pt;}
.wsc9{word-spacing:2.072221pt;}
.wsed{word-spacing:2.084160pt;}
.wsfd{word-spacing:2.092800pt;}
.wsfc{word-spacing:2.097600pt;}
.ws16e{word-spacing:2.125355pt;}
.wsff{word-spacing:2.126400pt;}
.ws117{word-spacing:2.137600pt;}
.ws214{word-spacing:2.151936pt;}
.ws153{word-spacing:2.178489pt;}
.ws22d{word-spacing:2.199757pt;}
.ws2{word-spacing:2.231244pt;}
.ws124{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws100{word-spacing:2.275200pt;}
.ws2a{word-spacing:2.284756pt;}
.ws121{word-spacing:2.295398pt;}
.ws1d3{word-spacing:2.319296pt;}
.ws17b{word-spacing:2.329984pt;}
.ws17c{word-spacing:2.335328pt;}
.wsdc{word-spacing:2.337890pt;}
.ws1a3{word-spacing:2.388768pt;}
.wsf0{word-spacing:2.431520pt;}
.wsf1{word-spacing:2.436864pt;}
.ws39{word-spacing:2.444158pt;}
.ws1a2{word-spacing:2.458240pt;}
.ws158{word-spacing:2.486682pt;}
.ws34{word-spacing:2.497292pt;}
.ws10f{word-spacing:2.559776pt;}
.ws109{word-spacing:2.586496pt;}
.ws110{word-spacing:2.645280pt;}
.ws86{word-spacing:2.656693pt;}
.ws13f{word-spacing:2.661312pt;}
.ws10a{word-spacing:2.677344pt;}
.ws85{word-spacing:2.709827pt;}
.wsd3{word-spacing:2.712128pt;}
.ws13e{word-spacing:2.736128pt;}
.ws2f{word-spacing:2.762961pt;}
.ws14{word-spacing:2.773606pt;}
.ws1c5{word-spacing:2.816095pt;}
.ws1f{word-spacing:2.861926pt;}
.ws229{word-spacing:2.863181pt;}
.ws22c{word-spacing:2.863437pt;}
.ws238{word-spacing:2.865587pt;}
.ws21d{word-spacing:2.865852pt;}
.ws205{word-spacing:2.866509pt;}
.ws41{word-spacing:2.869229pt;}
.ws21b{word-spacing:2.869248pt;}
.ws122{word-spacing:2.917069pt;}
.ws2d{word-spacing:2.922363pt;}
.wsc7{word-spacing:2.939200pt;}
.ws12f{word-spacing:2.949888pt;}
.ws149{word-spacing:2.975497pt;}
.ws130{word-spacing:2.992640pt;}
.ws219{word-spacing:3.012710pt;}
.wsc2{word-spacing:3.019360pt;}
.ws22{word-spacing:3.028630pt;}
.wsc1{word-spacing:3.040736pt;}
.ws15{word-spacing:3.060531pt;}
.ws26{word-spacing:3.081764pt;}
.ws4e{word-spacing:3.134898pt;}
.ws20{word-spacing:3.188032pt;}
.wsc3{word-spacing:3.222432pt;}
.ws38{word-spacing:3.241166pt;}
.ws53{word-spacing:3.294300pt;}
.wsc5{word-spacing:3.302592pt;}
.ws1a5{word-spacing:3.313280pt;}
.ws1a4{word-spacing:3.329312pt;}
.wsc4{word-spacing:3.334656pt;}
.ws14c{word-spacing:3.347434pt;}
.ws1a6{word-spacing:3.377408pt;}
.wsdd{word-spacing:3.400567pt;}
.wsd6{word-spacing:3.453701pt;}
.wsa6{word-spacing:3.527040pt;}
.ws4d{word-spacing:3.559969pt;}
.ws123{word-spacing:3.586560pt;}
.wsa1{word-spacing:3.623232pt;}
.wsa0{word-spacing:3.648883pt;}
.ws1ff{word-spacing:3.687360pt;}
.ws2e{word-spacing:3.719371pt;}
.ws155{word-spacing:3.772505pt;}
.ws213{word-spacing:3.777843pt;}
.ws154{word-spacing:3.825638pt;}
.wsa2{word-spacing:3.866918pt;}
.ws1e8{word-spacing:3.954560pt;}
.wsa4{word-spacing:3.963110pt;}
.ws1f8{word-spacing:3.965248pt;}
.ws1f9{word-spacing:3.981280pt;}
.ws1e7{word-spacing:3.986624pt;}
.wsa3{word-spacing:4.001587pt;}
.ws1e9{word-spacing:4.002656pt;}
.ws230{word-spacing:4.064768pt;}
.ws54{word-spacing:4.091308pt;}
.ws1d{word-spacing:4.112589pt;}
.ws42{word-spacing:4.144442pt;}
.ws62{word-spacing:4.197575pt;}
.wse{word-spacing:4.240070pt;}
.ws115{word-spacing:4.248480pt;}
.ws63{word-spacing:4.250709pt;}
.ws171{word-spacing:4.253824pt;}
.ws141{word-spacing:4.269856pt;}
.ws5c{word-spacing:4.303843pt;}
.wsf{word-spacing:4.314458pt;}
.ws140{word-spacing:4.317952pt;}
.ws152{word-spacing:4.356977pt;}
.ws23c{word-spacing:4.399514pt;}
.ws5a{word-spacing:4.569513pt;}
.ws1d1{word-spacing:4.606528pt;}
.ws1ce{word-spacing:4.638592pt;}
.ws182{word-spacing:4.659968pt;}
.ws181{word-spacing:4.670656pt;}
.ws1d2{word-spacing:4.713408pt;}
.ws19d{word-spacing:4.756160pt;}
.ws16d{word-spacing:4.835182pt;}
.ws19f{word-spacing:4.873728pt;}
.ws19e{word-spacing:4.889760pt;}
.ws19c{word-spacing:4.895104pt;}
.wsf8{word-spacing:4.916480pt;}
.wsf9{word-spacing:4.932512pt;}
.wscb{word-spacing:4.994583pt;}
.ws178{word-spacing:5.146272pt;}
.ws22f{word-spacing:5.164646pt;}
.ws1dd{word-spacing:5.194368pt;}
.ws1dc{word-spacing:5.221088pt;}
.ws177{word-spacing:5.285216pt;}
.ws76{word-spacing:5.313600pt;}
.ws16b{word-spacing:5.315345pt;}
.ws3f{word-spacing:5.366521pt;}
.ws18f{word-spacing:5.498976pt;}
.ws239{word-spacing:5.499392pt;}
.ws126{word-spacing:5.509664pt;}
.ws136{word-spacing:5.510400pt;}
.ws150{word-spacing:5.525922pt;}
.ws23b{word-spacing:5.547213pt;}
.ws137{word-spacing:5.563200pt;}
.ws134{word-spacing:5.577600pt;}
.ws135{word-spacing:5.592000pt;}
.ws127{word-spacing:5.600512pt;}
.ws1ed{word-spacing:5.835648pt;}
.ws157{word-spacing:5.840589pt;}
.wsd7{word-spacing:5.848533pt;}
.wscc{word-spacing:5.896533pt;}
.ws1ec{word-spacing:5.899776pt;}
.ws196{word-spacing:5.953216pt;}
.ws1a0{word-spacing:6.054752pt;}
.ws57{word-spacing:6.057261pt;}
.ws195{word-spacing:6.140256pt;}
.wse5{word-spacing:6.166976pt;}
.ws197{word-spacing:6.188352pt;}
.wse4{word-spacing:6.257824pt;}
.wsd8{word-spacing:6.269796pt;}
.wsd9{word-spacing:6.322930pt;}
.ws17a{word-spacing:6.434176pt;}
.wsc6{word-spacing:6.450208pt;}
.ws119{word-spacing:6.492960pt;}
.ws84{word-spacing:6.503629pt;}
.ws1a1{word-spacing:6.503648pt;}
.ws118{word-spacing:6.519680pt;}
.ws11a{word-spacing:6.712064pt;}
.ws179{word-spacing:6.717408pt;}
.wse6{word-spacing:6.776192pt;}
.ws12b{word-spacing:6.802912pt;}
.wse7{word-spacing:6.834976pt;}
.ws12c{word-spacing:6.861696pt;}
.ws83{word-spacing:6.886195pt;}
.wsc{word-spacing:6.918010pt;}
.ws4f{word-spacing:7.013670pt;}
.wsdb{word-spacing:7.119938pt;}
.ws21c{word-spacing:7.125299pt;}
.wsda{word-spacing:7.173072pt;}
.ws231{word-spacing:7.220941pt;}
.wsa5{word-spacing:7.740250pt;}
.ws74{word-spacing:7.746970pt;}
.ws73{word-spacing:8.129536pt;}
.ws11f{word-spacing:8.225178pt;}
.ws11e{word-spacing:8.607744pt;}
.ws17e{word-spacing:9.020672pt;}
.ws17f{word-spacing:9.100832pt;}
.ws180{word-spacing:9.111520pt;}
.ws3{word-spacing:9.258090pt;}
.wsad{word-spacing:9.412800pt;}
.wsae{word-spacing:9.432000pt;}
.wsab{word-spacing:9.436800pt;}
.wsaa{word-spacing:9.460800pt;}
.wsaf{word-spacing:9.489600pt;}
.wsac{word-spacing:9.744000pt;}
.ws27{word-spacing:10.582833pt;}
.wsa{word-spacing:10.823338pt;}
.ws1ea{word-spacing:10.955200pt;}
.ws1eb{word-spacing:11.056736pt;}
.ws8c{word-spacing:11.295360pt;}
.ws8d{word-spacing:11.318400pt;}
.ws8a{word-spacing:11.324160pt;}
.ws89{word-spacing:11.352960pt;}
.ws8e{word-spacing:11.387520pt;}
.ws8b{word-spacing:11.692800pt;}
.ws75{word-spacing:11.716096pt;}
.ws21e{word-spacing:11.763917pt;}
.ws211{word-spacing:11.859558pt;}
.ws20e{word-spacing:11.893734pt;}
.ws225{word-spacing:11.899878pt;}
.ws224{word-spacing:11.902626pt;}
.ws223{word-spacing:11.902763pt;}
.ws222{word-spacing:11.904649pt;}
.ws234{word-spacing:11.904734pt;}
.ws20d{word-spacing:11.907379pt;}
.ws120{word-spacing:12.433408pt;}
.ws4c{word-spacing:13.230333pt;}
.ws1b4{word-spacing:14.177632pt;}
.ws1b3{word-spacing:14.236416pt;}
.ws1b5{word-spacing:14.241760pt;}
.wsb{word-spacing:14.319536pt;}
.ws221{word-spacing:14.489702pt;}
.ws228{word-spacing:14.585344pt;}
.ws216{word-spacing:14.633165pt;}
.ws227{word-spacing:14.767974pt;}
.ws237{word-spacing:14.772907pt;}
.ws21f{word-spacing:14.776337pt;}
.ws209{word-spacing:14.776627pt;}
.ws22b{word-spacing:14.872269pt;}
.ws232{word-spacing:14.920090pt;}
.ws15f{word-spacing:15.465600pt;}
.ws15e{word-spacing:15.513600pt;}
.ws15d{word-spacing:15.528000pt;}
.ws48{word-spacing:16.418365pt;}
.ws11c{word-spacing:19.291840pt;}
.ws11b{word-spacing:19.393376pt;}
.wsd{word-spacing:23.208806pt;}
.ws9{word-spacing:23.858002pt;}
.ws21a{word-spacing:24.197325pt;}
.ws1c4{word-spacing:26.223008pt;}
.ws1c3{word-spacing:26.281792pt;}
._6{margin-left:-10.621431pt;}
._14{margin-left:-6.641733pt;}
._5{margin-left:-5.260288pt;}
._0{margin-left:-4.128490pt;}
._15{margin-left:-3.177531pt;}
._1{margin-left:-2.045648pt;}
._9{margin-left:-0.951077pt;}
._1a{width:1.016357pt;}
._3{width:2.045648pt;}
._7{width:3.270235pt;}
._20{width:5.311077pt;}
._22{width:9.398469pt;}
._1d{width:10.376938pt;}
._2{width:11.530016pt;}
._e{width:12.422694pt;}
._8{width:13.395059pt;}
._d{width:14.585344pt;}
._b{width:15.924326pt;}
._17{width:17.385450pt;}
._c{width:18.458829pt;}
._13{width:20.297137pt;}
._12{width:22.050555pt;}
._a{width:23.623475pt;}
._11{width:25.238587pt;}
._4{width:27.188522pt;}
._16{width:29.383028pt;}
._21{width:31.455249pt;}
._18{width:35.812261pt;}
._1c{width:38.410453pt;}
._23{width:54.993920pt;}
._f{width:803.719279pt;}
._1f{width:1874.848864pt;}
._1b{width:1896.290592pt;}
._1e{width:2217.751733pt;}
._10{width:2239.005067pt;}
._19{width:2275.548710pt;}
.fs1{font-size:26.566933pt;}
.fs14{font-size:29.440000pt;}
.fs7{font-size:31.880533pt;}
.fs15{font-size:32.000000pt;}
.fsf{font-size:35.328000pt;}
.fs0{font-size:37.193600pt;}
.fs16{font-size:37.440000pt;}
.fs10{font-size:38.400000pt;}
.fs6{font-size:40.381867pt;}
.fsa{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fs11{font-size:42.560000pt;}
.fs9{font-size:47.820800pt;}
.fs13{font-size:48.000000pt;}
.fs17{font-size:49.829333pt;}
.fsc{font-size:51.072000pt;}
.fs3{font-size:53.133867pt;}
.fs12{font-size:53.440000pt;}
.fsb{font-size:55.365867pt;}
.fse{font-size:57.600000pt;}
.fsd{font-size:64.128000pt;}
.fs5{font-size:72.686933pt;}
.fs4{font-size:95.641600pt;}
.fs2{font-size:131.027520pt;}
.y12b{bottom:-885.924320pt;}
.y13b{bottom:-824.483715pt;}
.y283{bottom:-453.958267pt;}
.y22b{bottom:-445.818267pt;}
.y250{bottom:-388.857771pt;}
.y167{bottom:-381.280933pt;}
.y24f{bottom:-371.737611pt;}
.y2a8{bottom:-367.236083pt;}
.y24e{bottom:-354.697637pt;}
.y2a7{bottom:-347.555467pt;}
.y24d{bottom:-337.577477pt;}
.y2a6{bottom:-330.435963pt;}
.y24c{bottom:-320.537771pt;}
.y189{bottom:-320.400437pt;}
.y2a5{bottom:-313.396619pt;}
.y13a{bottom:-308.963533pt;}
.y24b{bottom:-303.417771pt;}
.y188{bottom:-303.279389pt;}
.y2a4{bottom:-296.277115pt;}
.y139{bottom:-288.515130pt;}
.y24a{bottom:-286.297611pt;}
.y187{bottom:-286.159885pt;}
.y2a3{bottom:-279.157611pt;}
.y249{bottom:-269.257771pt;}
.y186{bottom:-269.120541pt;}
.y138{bottom:-267.971725pt;}
.y1b0{bottom:-264.998267pt;}
.y2a2{bottom:-262.117771pt;}
.y248{bottom:-252.137771pt;}
.y185{bottom:-252.001037pt;}
.y137{bottom:-247.427533pt;}
.y2a1{bottom:-244.997611pt;}
.y247{bottom:-235.017611pt;}
.y184{bottom:-230.960373pt;}
.y2a0{bottom:-227.957275pt;}
.y136{bottom:-226.979725pt;}
.y246{bottom:-217.977771pt;}
.y29f{bottom:-210.837771pt;}
.y1c4{bottom:-206.517771pt;}
.y135{bottom:-206.435533pt;}
.y245{bottom:-200.857611pt;}
.y183{bottom:-197.840437pt;}
.y29e{bottom:-193.717611pt;}
.y1c3{bottom:-189.397611pt;}
.y134{bottom:-185.987725pt;}
.y244{bottom:-183.817771pt;}
.y182{bottom:-180.719965pt;}
.y29d{bottom:-176.677771pt;}
.y1c2{bottom:-172.357771pt;}
.y243{bottom:-166.697771pt;}
.y133{bottom:-165.444541pt;}
.y181{bottom:-163.680621pt;}
.y29c{bottom:-159.557611pt;}
.y1c1{bottom:-155.237611pt;}
.y242{bottom:-149.577611pt;}
.y217{bottom:-148.134267pt;}
.y180{bottom:-146.561117pt;}
.y132{bottom:-144.901136pt;}
.y29b{bottom:-142.517771pt;}
.y1c0{bottom:-138.196123pt;}
.y241{bottom:-132.537771pt;}
.y17f{bottom:-129.441613pt;}
.y29a{bottom:-125.397771pt;}
.y131{bottom:-124.452522pt;}
.y1bf{bottom:-121.076619pt;}
.y240{bottom:-115.417115pt;}
.y17e{bottom:-112.401053pt;}
.y299{bottom:-108.276459pt;}
.y1be{bottom:-103.957115pt;}
.y130{bottom:-103.909117pt;}
.y23f{bottom:-98.377771pt;}
.y17d{bottom:-95.281549pt;}
.y298{bottom:-91.237115pt;}
.y1bd{bottom:-86.917771pt;}
.y21c{bottom:-86.454267pt;}
.y17c{bottom:-82.320933pt;}
.y23e{bottom:-81.257771pt;}
.y12f{bottom:-78.660320pt;}
.y17b{bottom:-75.600933pt;}
.y297{bottom:-74.117611pt;}
.y1bc{bottom:-69.798267pt;}
.y23d{bottom:-64.138267pt;}
.y296{bottom:-57.078267pt;}
.y21b{bottom:-51.733867pt;}
.y142{bottom:-51.619600pt;}
.y12e{bottom:-39.395840pt;}
.y17a{bottom:-38.401200pt;}
.y1bb{bottom:-37.078533pt;}
.y21a{bottom:-36.214133pt;}
.y23c{bottom:-31.497733pt;}
.y295{bottom:-24.358267pt;}
.y1ba{bottom:-21.638133pt;}
.y179{bottom:-21.280800pt;}
.y219{bottom:-20.854133pt;}
.y12d{bottom:-20.772320pt;}
.y23b{bottom:-15.978133pt;}
.y294{bottom:-4.358651pt;}
.y1b9{bottom:-1.716771pt;}
.y218{bottom:-0.933787pt;}
.y152{bottom:-0.419096pt;}
.y0{bottom:0.000000pt;}
.y178{bottom:0.079219pt;}
.y23a{bottom:3.862829pt;}
.y12c{bottom:7.739440pt;}
.y1c{bottom:14.078151pt;}
.y55{bottom:28.346667pt;}
.y160{bottom:79.053333pt;}
.y15f{bottom:81.480000pt;}
.y2f1{bottom:82.012000pt;}
.y27d{bottom:82.152000pt;}
.y27c{bottom:84.578667pt;}
.y1e0{bottom:87.536000pt;}
.ye2{bottom:89.305333pt;}
.y1a{bottom:93.018667pt;}
.y9f{bottom:93.254667pt;}
.y127{bottom:93.290667pt;}
.y2f0{bottom:95.024000pt;}
.y9e{bottom:95.681333pt;}
.y2c5{bottom:95.790667pt;}
.y2ef{bottom:97.354667pt;}
.y15e{bottom:98.217333pt;}
.y27b{bottom:98.581333pt;}
.y27a{bottom:98.889333pt;}
.y54{bottom:100.094667pt;}
.y279{bottom:101.316000pt;}
.y1df{bottom:101.846667pt;}
.y53{bottom:102.520000pt;}
.y1de{bottom:104.273333pt;}
.ye1{bottom:106.042667pt;}
.y126{bottom:107.601333pt;}
.y331{bottom:108.233333pt;}
.y19{bottom:108.920000pt;}
.y125{bottom:110.028000pt;}
.y9d{bottom:112.418667pt;}
.y15d{bottom:112.528000pt;}
.y2ee{bottom:112.697333pt;}
.y222{bottom:113.061333pt;}
.y15c{bottom:114.954667pt;}
.y277{bottom:115.318667pt;}
.y221{bottom:115.393333pt;}
.y278{bottom:115.626667pt;}
.y276{bottom:118.053333pt;}
.y2c4{bottom:118.940000pt;}
.y52{bottom:119.257333pt;}
.y1ac{bottom:119.297333pt;}
.y1dd{bottom:121.010667pt;}
.ydf{bottom:122.780000pt;}
.y330{bottom:123.576000pt;}
.y18{bottom:124.820000pt;}
.y9c{bottom:126.729333pt;}
.y124{bottom:126.765333pt;}
.ye0{bottom:127.601333pt;}
.y2ed{bottom:128.040000pt;}
.y9b{bottom:129.156000pt;}
.y220{bottom:130.157333pt;}
.y15b{bottom:131.692000pt;}
.y274{bottom:132.056000pt;}
.y275{bottom:132.364000pt;}
.y21f{bottom:132.489333pt;}
.y273{bottom:134.790667pt;}
.y1dc{bottom:135.321333pt;}
.y50{bottom:135.994667pt;}
.y1ab{bottom:136.034667pt;}
.y1db{bottom:137.748000pt;}
.y32f{bottom:138.918667pt;}
.yde{bottom:139.517333pt;}
.y17{bottom:140.720000pt;}
.y51{bottom:140.817333pt;}
.y123{bottom:141.076000pt;}
.y2ec{bottom:143.382667pt;}
.y9a{bottom:143.466667pt;}
.y122{bottom:143.502667pt;}
.y99{bottom:145.893333pt;}
.y15a{bottom:146.002667pt;}
.y21e{bottom:147.253333pt;}
.y159{bottom:148.429333pt;}
.y2c3{bottom:148.828000pt;}
.y272{bottom:149.101333pt;}
.y21d{bottom:149.585333pt;}
.y271{bottom:151.528000pt;}
.y32e{bottom:151.930667pt;}
.y4f{bottom:152.732000pt;}
.y1aa{bottom:152.772000pt;}
.y32d{bottom:154.261333pt;}
.y1da{bottom:154.485333pt;}
.ydd{bottom:156.254667pt;}
.y16{bottom:156.621333pt;}
.y121{bottom:157.813333pt;}
.y2eb{bottom:158.725333pt;}
.y120{bottom:160.238667pt;}
.y98{bottom:162.630667pt;}
.y158{bottom:162.740000pt;}
.y157{bottom:165.166667pt;}
.y2c2{bottom:165.565333pt;}
.y4e{bottom:167.042667pt;}
.y1a9{bottom:167.082667pt;}
.y270{bottom:168.264000pt;}
.y4d{bottom:169.469333pt;}
.y1a8{bottom:169.509333pt;}
.y32c{bottom:169.604000pt;}
.y1d9{bottom:171.222667pt;}
.y214{bottom:172.178667pt;}
.y15{bottom:172.521333pt;}
.ydc{bottom:172.992000pt;}
.y2ea{bottom:174.068000pt;}
.y11f{bottom:174.550667pt;}
.y97{bottom:176.941333pt;}
.y11e{bottom:176.976000pt;}
.y96{bottom:179.368000pt;}
.y2c1{bottom:182.302667pt;}
.y26f{bottom:182.576000pt;}
.y32b{bottom:182.614667pt;}
.y4c{bottom:183.780000pt;}
.y32a{bottom:184.946667pt;}
.y26e{bottom:185.001333pt;}
.y156{bottom:185.889333pt;}
.y4b{bottom:186.206667pt;}
.y1a7{bottom:186.246667pt;}
.y1d8{bottom:187.958667pt;}
.y14{bottom:188.421333pt;}
.y2e9{bottom:189.410667pt;}
.ydb{bottom:189.729333pt;}
.y11d{bottom:191.286667pt;}
.y11c{bottom:193.713333pt;}
.y95{bottom:196.105333pt;}
.y2c0{bottom:199.040000pt;}
.y26d{bottom:199.312000pt;}
.y329{bottom:200.289333pt;}
.y26c{bottom:201.738667pt;}
.y1d7{bottom:202.270667pt;}
.y4a{bottom:202.944000pt;}
.y1a6{bottom:202.984000pt;}
.yda{bottom:204.040000pt;}
.y13{bottom:204.322667pt;}
.y1d6{bottom:204.696000pt;}
.y2e8{bottom:204.753333pt;}
.yd9{bottom:206.466667pt;}
.y11b{bottom:208.024000pt;}
.y94{bottom:210.416000pt;}
.y11a{bottom:210.450667pt;}
.y155{bottom:212.301333pt;}
.y93{bottom:212.841333pt;}
.y328{bottom:215.632000pt;}
.y2bf{bottom:215.777333pt;}
.y26b{bottom:216.049333pt;}
.y1a5{bottom:217.294667pt;}
.y26a{bottom:218.476000pt;}
.y49{bottom:219.681333pt;}
.y1a4{bottom:219.721333pt;}
.y2e7{bottom:220.094667pt;}
.y1d5{bottom:221.433333pt;}
.yd8{bottom:223.204000pt;}
.y154{bottom:227.066667pt;}
.y119{bottom:227.188000pt;}
.y153{bottom:229.397333pt;}
.y92{bottom:229.578667pt;}
.y327{bottom:230.974667pt;}
.y2be{bottom:232.514667pt;}
.y269{bottom:232.786667pt;}
.y2e6{bottom:233.106667pt;}
.y1a3{bottom:234.032000pt;}
.y268{bottom:235.213333pt;}
.y2e5{bottom:235.437333pt;}
.y1d4{bottom:235.744000pt;}
.y1a2{bottom:236.458667pt;}
.y1d3{bottom:238.170667pt;}
.yd7{bottom:239.940000pt;}
.y48{bottom:240.404000pt;}
.y118{bottom:241.498667pt;}
.y91{bottom:243.890667pt;}
.y117{bottom:243.925333pt;}
.y90{bottom:246.316000pt;}
.y293{bottom:249.162045pt;}
.y2bd{bottom:249.252000pt;}
.y13f{bottom:249.334667pt;}
.y267{bottom:249.524000pt;}
.y1a1{bottom:250.769333pt;}
.y2e4{bottom:250.780000pt;}
.y266{bottom:251.950667pt;}
.y1d2{bottom:252.481333pt;}
.y1a0{bottom:253.196000pt;}
.y1d1{bottom:254.908000pt;}
.yd6{bottom:256.677333pt;}
.y326{bottom:259.328000pt;}
.y116{bottom:260.662667pt;}
.y325{bottom:261.658667pt;}
.y8f{bottom:263.053333pt;}
.y2bc{bottom:263.562667pt;}
.y2bb{bottom:265.989333pt;}
.y2e3{bottom:266.122667pt;}
.y265{bottom:266.261333pt;}
.y292{bottom:266.281549pt;}
.y12{bottom:266.804000pt;}
.y19f{bottom:267.506667pt;}
.y264{bottom:268.688000pt;}
.y19e{bottom:269.933333pt;}
.y1d0{bottom:271.645333pt;}
.yd5{bottom:273.414667pt;}
.y324{bottom:277.001333pt;}
.y8e{bottom:277.364000pt;}
.y8d{bottom:279.790667pt;}
.y115{bottom:281.385333pt;}
.y2e2{bottom:281.465333pt;}
.y11{bottom:282.705333pt;}
.y2ba{bottom:282.726667pt;}
.y263{bottom:282.998667pt;}
.y291{bottom:283.322229pt;}
.y262{bottom:285.425333pt;}
.y1cf{bottom:285.956000pt;}
.y19d{bottom:286.670667pt;}
.y239{bottom:287.462229pt;}
.y1ce{bottom:288.382667pt;}
.yd3{bottom:290.152000pt;}
.y323{bottom:292.344000pt;}
.y8c{bottom:294.101333pt;}
.yd4{bottom:294.974667pt;}
.y8b{bottom:296.528000pt;}
.y2e1{bottom:296.808000pt;}
.y2b9{bottom:297.037333pt;}
.y10{bottom:298.605333pt;}
.y260{bottom:299.428000pt;}
.y2b8{bottom:299.464000pt;}
.y261{bottom:299.736000pt;}
.y290{bottom:300.442389pt;}
.y25f{bottom:302.162667pt;}
.y19c{bottom:303.406667pt;}
.y238{bottom:304.582389pt;}
.yd2{bottom:304.897333pt;}
.y1cd{bottom:305.120000pt;}
.y177{bottom:305.279723pt;}
.yd1{bottom:306.889333pt;}
.y47{bottom:307.204000pt;}
.y322{bottom:307.686667pt;}
.y8a{bottom:310.838667pt;}
.y114{bottom:311.273333pt;}
.y2e0{bottom:312.150667pt;}
.y89{bottom:313.265333pt;}
.y2b6{bottom:313.774667pt;}
.yf{bottom:314.505333pt;}
.y25e{bottom:316.165333pt;}
.y2b5{bottom:316.201333pt;}
.y25d{bottom:316.473333pt;}
.y28f{bottom:317.482725pt;}
.y25c{bottom:318.900000pt;}
.y19b{bottom:320.144000pt;}
.y321{bottom:320.697333pt;}
.y2b7{bottom:321.022667pt;}
.y237{bottom:321.622229pt;}
.y1cc{bottom:321.857333pt;}
.y176{bottom:322.320192pt;}
.y320{bottom:323.029333pt;}
.yd0{bottom:323.626667pt;}
.y12a{bottom:323.771824pt;}
.y2df{bottom:327.493333pt;}
.y113{bottom:328.010667pt;}
.y88{bottom:330.002667pt;}
.y2b4{bottom:330.512000pt;}
.y2b3{bottom:332.938667pt;}
.y25b{bottom:333.210667pt;}
.y129{bottom:334.043680pt;}
.y28e{bottom:334.602229pt;}
.y25a{bottom:335.637333pt;}
.y31f{bottom:338.372000pt;}
.ye{bottom:338.376000pt;}
.y1cb{bottom:338.594667pt;}
.y236{bottom:338.742229pt;}
.y175{bottom:339.439696pt;}
.y46{bottom:340.440000pt;}
.y19a{bottom:340.866667pt;}
.y112{bottom:342.321333pt;}
.y2de{bottom:342.834667pt;}
.y87{bottom:344.313333pt;}
.ycf{bottom:344.349333pt;}
.y111{bottom:344.748000pt;}
.y86{bottom:346.740000pt;}
.y2b2{bottom:347.249333pt;}
.y2b1{bottom:349.676000pt;}
.y259{bottom:349.948000pt;}
.y28d{bottom:351.725685pt;}
.y258{bottom:352.374667pt;}
.y31e{bottom:353.714667pt;}
.yd{bottom:354.277333pt;}
.y1ca{bottom:355.332000pt;}
.y235{bottom:355.862389pt;}
.y174{bottom:356.559723pt;}
.y45{bottom:357.734667pt;}
.y2dd{bottom:358.177333pt;}
.y110{bottom:359.058667pt;}
.y85{bottom:361.050667pt;}
.y10f{bottom:361.485333pt;}
.y84{bottom:363.477333pt;}
.y2b0{bottom:363.986667pt;}
.y2af{bottom:366.413333pt;}
.y28c{bottom:368.765029pt;}
.y31d{bottom:369.056000pt;}
.y257{bottom:369.112000pt;}
.yc{bottom:370.177333pt;}
.y199{bottom:370.754667pt;}
.y44{bottom:372.698667pt;}
.y234{bottom:372.902229pt;}
.y2dc{bottom:373.520000pt;}
.y173{bottom:373.599563pt;}
.yce{bottom:374.237333pt;}
.y43{bottom:375.029333pt;}
.y10e{bottom:375.796000pt;}
.y10d{bottom:378.222667pt;}
.y83{bottom:380.214667pt;}
.y2ae{bottom:380.724000pt;}
.y2ad{bottom:383.150667pt;}
.y256{bottom:383.422667pt;}
.y31c{bottom:384.398667pt;}
.y198{bottom:385.065333pt;}
.y1c9{bottom:385.168000pt;}
.y255{bottom:385.849333pt;}
.y28b{bottom:385.884533pt;}
.y2db{bottom:386.532000pt;}
.y197{bottom:387.492000pt;}
.ycd{bottom:388.548000pt;}
.y2da{bottom:388.862667pt;}
.y233{bottom:390.022229pt;}
.y172{bottom:390.718883pt;}
.ycc{bottom:390.974667pt;}
.y42{bottom:392.325333pt;}
.y10c{bottom:392.533333pt;}
.y10b{bottom:394.960000pt;}
.yb{bottom:395.336000pt;}
.y82{bottom:396.952000pt;}
.y31b{bottom:399.741333pt;}
.y2ac{bottom:399.888000pt;}
.y1c8{bottom:399.933333pt;}
.y1c7{bottom:402.264000pt;}
.y254{bottom:402.586667pt;}
.y28a{bottom:403.004037pt;}
.y2d9{bottom:404.205333pt;}
.y196{bottom:404.229333pt;}
.y232{bottom:407.142389pt;}
.ycb{bottom:407.712000pt;}
.y171{bottom:407.759563pt;}
.y10a{bottom:409.270667pt;}
.y41{bottom:409.620000pt;}
.y81{bottom:411.262667pt;}
.y109{bottom:411.697333pt;}
.y80{bottom:413.689333pt;}
.y31a{bottom:415.084000pt;}
.y2ab{bottom:416.624000pt;}
.y1c6{bottom:417.029333pt;}
.y2d8{bottom:417.217333pt;}
.ya{bottom:419.166667pt;}
.y1c5{bottom:419.360000pt;}
.y2d7{bottom:419.548000pt;}
.y289{bottom:420.043381pt;}
.y195{bottom:420.966667pt;}
.yca{bottom:422.022667pt;}
.y231{bottom:424.182229pt;}
.yc9{bottom:424.449333pt;}
.y40{bottom:424.584000pt;}
.y170{bottom:424.879016pt;}
.y3f{bottom:426.914667pt;}
.y108{bottom:428.434667pt;}
.y151{bottom:429.181056pt;}
.y7f{bottom:430.426667pt;}
.y253{bottom:432.422667pt;}
.y2aa{bottom:433.361333pt;}
.y2d6{bottom:434.890667pt;}
.y9{bottom:435.068000pt;}
.y288{bottom:437.162885pt;}
.y194{bottom:437.704000pt;}
.yc7{bottom:441.186667pt;}
.y230{bottom:441.302389pt;}
.y3e{bottom:441.878667pt;}
.y1ad{bottom:441.953333pt;}
.y16f{bottom:441.998520pt;}
.y107{bottom:442.745333pt;}
.y213{bottom:443.178667pt;}
.y3d{bottom:444.210667pt;}
.y106{bottom:445.172000pt;}
.y319{bottom:445.769333pt;}
.yc8{bottom:446.008000pt;}
.y150{bottom:446.221392pt;}
.y252{bottom:446.904000pt;}
.y7e{bottom:447.164000pt;}
.y251{bottom:449.518667pt;}
.y2d5{bottom:450.233333pt;}
.y8{bottom:450.968000pt;}
.y193{bottom:452.014667pt;}
.y287{bottom:454.202229pt;}
.y192{bottom:454.441333pt;}
.y212{bottom:457.489333pt;}
.yc6{bottom:457.924000pt;}
.y22f{bottom:458.342061pt;}
.y16e{bottom:459.040219pt;}
.y211{bottom:459.916000pt;}
.y318{bottom:461.112000pt;}
.y3c{bottom:461.505333pt;}
.y105{bottom:461.909333pt;}
.y2a9{bottom:461.977333pt;}
.y14f{bottom:463.340896pt;}
.y7d{bottom:463.901333pt;}
.y7{bottom:466.868000pt;}
.y2d4{bottom:469.560000pt;}
.y191{bottom:471.178667pt;}
.y286{bottom:471.322229pt;}
.y228{bottom:472.112000pt;}
.y210{bottom:473.918667pt;}
.yc5{bottom:474.661333pt;}
.y22e{bottom:475.461565pt;}
.y16d{bottom:476.159723pt;}
.y317{bottom:476.454667pt;}
.y3b{bottom:476.469333pt;}
.y20f{bottom:476.653333pt;}
.y7c{bottom:478.212000pt;}
.y103{bottom:478.646667pt;}
.y3a{bottom:478.801333pt;}
.y14e{bottom:480.461056pt;}
.y7b{bottom:480.638667pt;}
.y6{bottom:482.769333pt;}
.y190{bottom:483.333333pt;}
.y104{bottom:483.468000pt;}
.y280{bottom:484.570667pt;}
.y18e{bottom:487.916000pt;}
.y285{bottom:488.441437pt;}
.yc4{bottom:491.398667pt;}
.y316{bottom:491.797333pt;}
.y22d{bottom:492.581069pt;}
.y18f{bottom:492.737333pt;}
.y102{bottom:492.957333pt;}
.y16c{bottom:493.199563pt;}
.y20e{bottom:493.390667pt;}
.y39{bottom:493.765333pt;}
.y7a{bottom:494.949333pt;}
.y101{bottom:495.384000pt;}
.y38{bottom:496.096000pt;}
.y79{bottom:497.376000pt;}
.y14d{bottom:497.500896pt;}
.y5{bottom:498.669333pt;}
.y2d3{bottom:499.448000pt;}
.y284{bottom:505.482117pt;}
.y315{bottom:507.138667pt;}
.y20c{bottom:507.393333pt;}
.y20d{bottom:507.701333pt;}
.yc3{bottom:508.136000pt;}
.yff{bottom:509.694667pt;}
.y20b{bottom:510.128000pt;}
.y16b{bottom:510.318403pt;}
.y37{bottom:511.060000pt;}
.yfe{bottom:512.121333pt;}
.y36{bottom:513.390667pt;}
.y22c{bottom:513.622117pt;}
.y78{bottom:514.113333pt;}
.y4{bottom:514.569333pt;}
.y14c{bottom:514.621056pt;}
.y100{bottom:516.942667pt;}
.y18d{bottom:519.357333pt;}
.y314{bottom:520.150667pt;}
.yc2{bottom:522.446667pt;}
.y313{bottom:522.481333pt;}
.y2d2{bottom:523.040000pt;}
.yc1{bottom:524.873333pt;}
.y20a{bottom:526.865333pt;}
.y35{bottom:528.354667pt;}
.yfc{bottom:528.857333pt;}
.y3{bottom:530.470667pt;}
.y34{bottom:530.686667pt;}
.y77{bottom:530.850667pt;}
.y16a{bottom:531.359067pt;}
.y14b{bottom:531.660896pt;}
.yfd{bottom:533.680000pt;}
.y18b{bottom:534.122667pt;}
.y18a{bottom:536.453333pt;}
.y312{bottom:537.824000pt;}
.y2d1{bottom:538.661333pt;}
.y18c{bottom:540.793333pt;}
.y209{bottom:541.176000pt;}
.yc0{bottom:541.610667pt;}
.y208{bottom:543.602667pt;}
.yfb{bottom:545.594667pt;}
.y2{bottom:546.370667pt;}
.y76{bottom:547.588000pt;}
.y33{bottom:547.981333pt;}
.y14a{bottom:548.780216pt;}
.y311{bottom:553.166667pt;}
.y282{bottom:554.121853pt;}
.y2d0{bottom:554.282667pt;}
.y207{bottom:557.605333pt;}
.ybf{bottom:558.348000pt;}
.y164{bottom:559.048000pt;}
.yf9{bottom:559.906667pt;}
.y206{bottom:560.340000pt;}
.y22a{bottom:562.261853pt;}
.y1{bottom:562.270667pt;}
.yf8{bottom:562.332000pt;}
.y281{bottom:562.681733pt;}
.y169{bottom:564.158667pt;}
.y75{bottom:564.325333pt;}
.y32{bottom:565.276000pt;}
.y149{bottom:565.899720pt;}
.yfa{bottom:567.154667pt;}
.y310{bottom:568.509333pt;}
.y229{bottom:570.821733pt;}
.ybe{bottom:572.658667pt;}
.y1b8{bottom:574.843381pt;}
.ybd{bottom:575.085333pt;}
.y205{bottom:577.077333pt;}
.y2cf{bottom:577.874667pt;}
.y168{bottom:579.599067pt;}
.y74{bottom:581.062667pt;}
.y30f{bottom:581.520000pt;}
.y148{bottom:582.940232pt;}
.yf7{bottom:583.054667pt;}
.y30e{bottom:583.852000pt;}
.y1b7{bottom:591.962885pt;}
.y2ce{bottom:593.496000pt;}
.y204{bottom:593.814667pt;}
.ybc{bottom:595.806667pt;}
.y73{bottom:597.800000pt;}
.y30d{bottom:599.194667pt;}
.y31{bottom:599.574667pt;}
.y147{bottom:600.059736pt;}
.yf6{bottom:600.988000pt;}
.y203{bottom:608.125333pt;}
.y1b6{bottom:609.002229pt;}
.y202{bottom:610.552000pt;}
.y72{bottom:612.110667pt;}
.y30c{bottom:612.205333pt;}
.y30{bottom:613.921333pt;}
.y71{bottom:614.537333pt;}
.y2cd{bottom:617.088000pt;}
.y146{bottom:621.100400pt;}
.y201{bottom:624.862667pt;}
.ybb{bottom:625.694667pt;}
.y1b5{bottom:626.123381pt;}
.y166{bottom:626.799187pt;}
.y200{bottom:627.289333pt;}
.y30b{bottom:629.878667pt;}
.yf5{bottom:630.876000pt;}
.y70{bottom:631.274667pt;}
.y2f{bottom:632.125333pt;}
.y165{bottom:635.359067pt;}
.y2cc{bottom:640.678667pt;}
.y1ff{bottom:641.600000pt;}
.yba{bottom:642.432000pt;}
.y2e{bottom:642.613333pt;}
.y30a{bottom:642.890667pt;}
.y1b4{bottom:643.162725pt;}
.y1fe{bottom:644.026667pt;}
.yf4{bottom:645.186667pt;}
.y309{bottom:645.221333pt;}
.y6f{bottom:645.585333pt;}
.yf3{bottom:647.613333pt;}
.y6e{bottom:648.012000pt;}
.y145{bottom:653.820800pt;}
.y2d{bottom:656.960000pt;}
.yb9{bottom:659.169333pt;}
.y1b3{bottom:660.282229pt;}
.y308{bottom:660.564000pt;}
.y1fd{bottom:660.764000pt;}
.y2cb{bottom:664.270667pt;}
.yf2{bottom:664.350667pt;}
.y6d{bottom:664.749333pt;}
.y144{bottom:669.340400pt;}
.y13e{bottom:672.390667pt;}
.yb8{bottom:673.480000pt;}
.y1fc{bottom:675.074667pt;}
.y2c{bottom:675.164000pt;}
.yb7{bottom:675.906667pt;}
.y1b2{bottom:677.401053pt;}
.y1fb{bottom:677.501333pt;}
.yf1{bottom:681.088000pt;}
.y6c{bottom:681.485333pt;}
.y2b{bottom:685.652000pt;}
.y13d{bottom:687.156000pt;}
.y2ca{bottom:687.862667pt;}
.y13c{bottom:689.486667pt;}
.y307{bottom:691.249333pt;}
.yb6{bottom:692.644000pt;}
.y143{bottom:693.100200pt;}
.y1fa{bottom:694.238667pt;}
.y1b1{bottom:694.442117pt;}
.yf0{bottom:697.825333pt;}
.y6b{bottom:698.222667pt;}
.y2c9{bottom:703.484000pt;}
.y2a{bottom:703.856000pt;}
.y333{bottom:704.261333pt;}
.y306{bottom:706.592000pt;}
.yb5{bottom:709.381333pt;}
.y1f9{bottom:710.976000pt;}
.y128{bottom:712.080000pt;}
.y29{bottom:714.345333pt;}
.yef{bottom:714.562667pt;}
.y6a{bottom:714.960000pt;}
.y2c8{bottom:719.105333pt;}
.y305{bottom:721.934667pt;}
.yb4{bottom:723.692000pt;}
.y1f8{bottom:725.286667pt;}
.yb3{bottom:726.118667pt;}
.y1f7{bottom:727.713333pt;}
.yee{bottom:728.873333pt;}
.yed{bottom:731.300000pt;}
.y69{bottom:731.697333pt;}
.y28{bottom:732.548000pt;}
.y2c7{bottom:734.726667pt;}
.y304{bottom:737.277333pt;}
.yb2{bottom:740.429333pt;}
.y1f6{bottom:742.024000pt;}
.yb0{bottom:742.856000pt;}
.y1af{bottom:743.081853pt;}
.y1f5{bottom:744.450667pt;}
.y27{bottom:746.894667pt;}
.yb1{bottom:747.677333pt;}
.yec{bottom:748.036000pt;}
.y68{bottom:748.434667pt;}
.y2c6{bottom:750.348000pt;}
.y1ae{bottom:751.641733pt;}
.y303{bottom:752.620000pt;}
.y26{bottom:757.384000pt;}
.yaf{bottom:759.593333pt;}
.y1f4{bottom:761.186667pt;}
.yeb{bottom:764.773333pt;}
.y67{bottom:765.172000pt;}
.y302{bottom:767.961333pt;}
.y1f3{bottom:775.498667pt;}
.y25{bottom:775.588000pt;}
.yae{bottom:776.330667pt;}
.y1f2{bottom:777.924000pt;}
.y27f{bottom:779.482667pt;}
.ye9{bottom:781.510667pt;}
.y66{bottom:781.909333pt;}
.y301{bottom:783.304000pt;}
.y24{bottom:786.076000pt;}
.yea{bottom:786.333333pt;}
.y227{bottom:792.236000pt;}
.yad{bottom:793.068000pt;}
.y1f1{bottom:794.661333pt;}
.y27e{bottom:796.220000pt;}
.ye7{bottom:798.248000pt;}
.y65{bottom:798.646667pt;}
.ye8{bottom:803.070667pt;}
.y23{bottom:804.280000pt;}
.y1f0{bottom:808.972000pt;}
.yab{bottom:809.805333pt;}
.y1ef{bottom:811.398667pt;}
.y300{bottom:813.989333pt;}
.yac{bottom:814.626667pt;}
.ye6{bottom:814.985333pt;}
.y64{bottom:815.384000pt;}
.yaa{bottom:824.116000pt;}
.y1ee{bottom:825.709333pt;}
.ya9{bottom:826.542667pt;}
.y332{bottom:827.001333pt;}
.y1ed{bottom:828.136000pt;}
.y2ff{bottom:829.332000pt;}
.ye5{bottom:831.722667pt;}
.y63{bottom:832.121333pt;}
.ya8{bottom:840.853333pt;}
.y2fe{bottom:842.342667pt;}
.y226{bottom:842.446667pt;}
.ya7{bottom:843.280000pt;}
.y22{bottom:843.992000pt;}
.y2fd{bottom:844.674667pt;}
.y1ec{bottom:844.873333pt;}
.y62{bottom:846.432000pt;}
.y61{bottom:848.858667pt;}
.ye4{bottom:852.445333pt;}
.y225{bottom:859.184000pt;}
.y216{bottom:859.945853pt;}
.y2fc{bottom:860.017333pt;}
.y21{bottom:860.729333pt;}
.y1eb{bottom:861.610667pt;}
.y60{bottom:863.169333pt;}
.ya6{bottom:864.002667pt;}
.y5f{bottom:865.596000pt;}
.y215{bottom:868.505733pt;}
.y2fb{bottom:873.028000pt;}
.y2fa{bottom:875.360000pt;}
.y1ea{bottom:875.921333pt;}
.y1e9{bottom:878.348000pt;}
.y163{bottom:879.906667pt;}
.y5e{bottom:882.333333pt;}
.y224{bottom:883.170667pt;}
.y2f9{bottom:890.702667pt;}
.y223{bottom:892.658667pt;}
.ya5{bottom:893.890667pt;}
.y1e8{bottom:895.085333pt;}
.y20{bottom:896.213333pt;}
.y5d{bottom:896.644000pt;}
.y5c{bottom:899.070667pt;}
.y2f8{bottom:906.044000pt;}
.y1e7{bottom:909.396000pt;}
.ya4{bottom:910.628000pt;}
.y1e6{bottom:911.822667pt;}
.ye3{bottom:913.381333pt;}
.y5b{bottom:915.808000pt;}
.y1f{bottom:921.320000pt;}
.y2f7{bottom:921.386667pt;}
.y1e5{bottom:926.133333pt;}
.ya3{bottom:927.364000pt;}
.y1e4{bottom:928.560000pt;}
.y5a{bottom:932.545333pt;}
.y2f6{bottom:934.398667pt;}
.y2f5{bottom:936.729333pt;}
.ya2{bottom:941.676000pt;}
.ya1{bottom:944.101333pt;}
.y1e3{bottom:945.297333pt;}
.y1e{bottom:946.425333pt;}
.y162{bottom:946.856000pt;}
.y59{bottom:949.282667pt;}
.y2f4{bottom:952.072000pt;}
.y141{bottom:956.460520pt;}
.y1e2{bottom:959.608000pt;}
.y1e1{bottom:962.034667pt;}
.y161{bottom:963.593333pt;}
.ya0{bottom:964.824000pt;}
.y140{bottom:965.020400pt;}
.y58{bottom:966.020000pt;}
.y2f3{bottom:967.414667pt;}
.y1d{bottom:971.530667pt;}
.y2f2{bottom:980.425333pt;}
.y57{bottom:982.757333pt;}
.y1b{bottom:1010.186667pt;}
.y56{bottom:1038.548000pt;}
.h10{height:18.898714pt;}
.hf{height:26.761523pt;}
.h8{height:28.947524pt;}
.h32{height:31.691456pt;}
.h29{height:33.235456pt;}
.h2{height:33.771789pt;}
.ha{height:34.430976pt;}
.h12{height:35.212691pt;}
.he{height:36.666735pt;}
.h11{height:36.928037pt;}
.hc{height:38.256384pt;}
.h1e{height:38.462187pt;}
.h9{height:38.596538pt;}
.h5{height:38.947124pt;}
.h1b{height:39.588281pt;}
.hb{height:43.421286pt;}
.h1d{height:44.648438pt;}
.h2d{height:44.649504pt;}
.h22{height:44.650038pt;}
.h3{height:45.271688pt;}
.h17{height:46.154625pt;}
.h14{height:47.505937pt;}
.hd{height:48.245551pt;}
.h7{height:48.365611pt;}
.h1c{height:49.708594pt;}
.h24{height:49.708796pt;}
.h28{height:49.709074pt;}
.h1f{height:49.709266pt;}
.h20{height:49.709330pt;}
.h25{height:49.709660pt;}
.h31{height:49.709778pt;}
.h23{height:49.711250pt;}
.h2c{height:49.711314pt;}
.h16{height:53.578125pt;}
.h15{height:59.650312pt;}
.h18{height:59.651119pt;}
.h19{height:59.651196pt;}
.h26{height:67.698125pt;}
.h6{height:68.861952pt;}
.h2a{height:75.230191pt;}
.h27{height:76.588594pt;}
.h4{height:88.836659pt;}
.h30{height:227.333333pt;}
.h2f{height:271.521333pt;}
.h13{height:283.961600pt;}
.h21{height:286.637333pt;}
.h1a{height:409.897333pt;}
.h2b{height:554.088000pt;}
.h2e{height:823.864000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:176.730927pt;}
.w4{width:424.433333pt;}
.w9{width:623.857733pt;}
.w5{width:627.345867pt;}
.w8{width:627.927067pt;}
.w6{width:639.556000pt;}
.w3{width:639.787840pt;}
.w7{width:695.371067pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xe1{left:-175.262667pt;}
.xd4{left:-98.684160pt;}
.x153{left:-35.723600pt;}
.xf4{left:-34.560800pt;}
.x10e{left:-28.746667pt;}
.xe3{left:-1.422667pt;}
.x0{left:0.000000pt;}
.x12d{left:2.649733pt;}
.xe4{left:26.897861pt;}
.x1{left:47.621333pt;}
.x12c{left:48.976933pt;}
.x2{left:51.157007pt;}
.x15d{left:75.710667pt;}
.xd3{left:76.768693pt;}
.xf3{left:82.988800pt;}
.x152{left:84.732933pt;}
.xd5{left:109.923840pt;}
.x154{left:138.116720pt;}
.xf5{left:139.279200pt;}
.xd6{left:143.908474pt;}
.x10f{left:145.093653pt;}
.x155{left:166.436888pt;}
.xe2{left:167.377245pt;}
.x110{left:173.413333pt;}
.x12e{left:176.489733pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x130{left:225.524000pt;}
.xaf{left:228.366667pt;}
.x146{left:229.885333pt;}
.xe{left:231.582667pt;}
.x62{left:232.844000pt;}
.x131{left:234.550667pt;}
.xf{left:236.896000pt;}
.x63{left:238.556000pt;}
.x4{left:239.924000pt;}
.x132{left:241.854667pt;}
.x10{left:245.330667pt;}
.x3d{left:247.481333pt;}
.xbf{left:248.684000pt;}
.x25{left:250.204000pt;}
.x11{left:253.624000pt;}
.xc7{left:255.438667pt;}
.x64{left:257.096000pt;}
.x127{left:258.682667pt;}
.x137{left:260.209333pt;}
.xb6{left:261.341333pt;}
.x80{left:262.766667pt;}
.xc0{left:264.002667pt;}
.x3e{left:265.332000pt;}
.x147{left:266.626667pt;}
.x128{left:267.710667pt;}
.xb7{left:270.085333pt;}
.x3f{left:271.973333pt;}
.xb0{left:272.993333pt;}
.x6{left:275.441333pt;}
.xf7{left:276.848000pt;}
.x112{left:278.173333pt;}
.xe6{left:279.609333pt;}
.xd7{left:280.857333pt;}
.xb1{left:282.278667pt;}
.x124{left:283.389333pt;}
.xa0{left:285.961333pt;}
.xc2{left:288.540000pt;}
.x113{left:290.460000pt;}
.xa1{left:291.673333pt;}
.xc3{left:294.252000pt;}
.x86{left:295.621333pt;}
.x68{left:296.929333pt;}
.x101{left:299.301333pt;}
.x44{left:301.850667pt;}
.xc4{left:303.481333pt;}
.x102{left:305.013333pt;}
.x117{left:306.977333pt;}
.x45{left:308.493333pt;}
.x87{left:310.562667pt;}
.x69{left:311.870667pt;}
.x12b{left:313.433333pt;}
.x103{left:314.620000pt;}
.x9d{left:317.028000pt;}
.x2b{left:318.854667pt;}
.x6a{left:320.564000pt;}
.x82{left:322.449333pt;}
.xb8{left:323.526667pt;}
.x6b{left:324.900000pt;}
.x14b{left:326.757333pt;}
.x2c{left:327.881333pt;}
.x31{left:329.981333pt;}
.x15a{left:331.020000pt;}
.x10d{left:332.232000pt;}
.xa3{left:333.729333pt;}
.x13d{left:334.685333pt;}
.x70{left:336.250667pt;}
.x118{left:337.189333pt;}
.x32{left:339.014667pt;}
.x125{left:340.882667pt;}
.x5a{left:342.385333pt;}
.x33{left:343.486667pt;}
.x7c{left:344.930667pt;}
.x71{left:345.857333pt;}
.xa4{left:347.745333pt;}
.x34{left:350.128000pt;}
.x11c{left:352.529333pt;}
.x91{left:354.721333pt;}
.x5b{left:355.668000pt;}
.x26{left:356.893333pt;}
.x156{left:358.582667pt;}
.x7d{left:360.069333pt;}
.x139{left:361.978667pt;}
.x48{left:363.309333pt;}
.x135{left:364.872000pt;}
.x27{left:365.822667pt;}
.x92{left:368.005333pt;}
.x72{left:371.256000pt;}
.x10b{left:373.356000pt;}
.x4f{left:374.348000pt;}
.xfe{left:375.274667pt;}
.x49{left:377.064000pt;}
.x119{left:378.628000pt;}
.xd8{left:381.037333pt;}
.x11b{left:382.322667pt;}
.xb2{left:383.628000pt;}
.x73{left:386.245333pt;}
.x50{left:387.630667pt;}
.x126{left:389.338667pt;}
.x4a{left:390.348000pt;}
.x40{left:393.545333pt;}
.x55{left:395.766667pt;}
.x9e{left:397.140000pt;}
.x35{left:399.053333pt;}
.xd9{left:400.485333pt;}
.x4d{left:402.482667pt;}
.x56{left:404.786667pt;}
.xda{left:405.798667pt;}
.x15e{left:407.190667pt;}
.x36{left:408.086667pt;}
.xb9{left:409.848000pt;}
.x41{left:411.396000pt;}
.xb3{left:413.592000pt;}
.x93{left:415.633333pt;}
.x1d{left:416.824000pt;}
.x42{left:418.038667pt;}
.xbb{left:419.338667pt;}
.x65{left:420.994667pt;}
.x1e{left:422.137333pt;}
.x3b{left:424.120000pt;}
.x114{left:426.041333pt;}
.xe5{left:426.977501pt;}
.x5f{left:428.048000pt;}
.x1f{left:430.588000pt;}
.xf2{left:432.165333pt;}
.x3c{left:433.928000pt;}
.xed{left:436.068000pt;}
.xdb{left:437.814667pt;}
.x20{left:438.906667pt;}
.x115{left:441.190667pt;}
.xf8{left:442.204000pt;}
.x60{left:443.365333pt;}
.x78{left:445.633333pt;}
.x11a{left:446.956000pt;}
.x111{left:447.980000pt;}
.x61{left:449.077333pt;}
.x116{left:450.228000pt;}
.x79{left:451.345333pt;}
.xee{left:452.598667pt;}
.xb{left:454.262667pt;}
.x14c{left:455.396000pt;}
.x94{left:458.250667pt;}
.xc{left:459.576000pt;}
.x7a{left:460.604000pt;}
.x4e{left:462.492000pt;}
.x46{left:464.478667pt;}
.xb4{left:465.614667pt;}
.x129{left:466.668000pt;}
.x7{left:468.558667pt;}
.x7b{left:469.622667pt;}
.x47{left:471.120000pt;}
.x8{left:473.873333pt;}
.xb5{left:475.001333pt;}
.xd{left:476.858667pt;}
.x136{left:477.792000pt;}
.x6c{left:479.142667pt;}
.x13e{left:480.356000pt;}
.x9{left:482.180000pt;}
.xbc{left:484.266667pt;}
.x9f{left:485.184000pt;}
.xa{left:487.493333pt;}
.x51{left:489.157333pt;}
.xcd{left:490.404000pt;}
.x95{left:492.594667pt;}
.x8e{left:493.861333pt;}
.x9b{left:494.885333pt;}
.x6d{left:497.065333pt;}
.x52{left:498.589333pt;}
.x13f{left:500.365333pt;}
.x148{left:501.318667pt;}
.x8f{left:503.468000pt;}
.xa6{left:504.970667pt;}
.x96{left:505.878667pt;}
.x9c{left:506.980000pt;}
.xa2{left:508.340000pt;}
.xdc{left:510.196000pt;}
.x145{left:512.533333pt;}
.x90{left:513.621333pt;}
.x123{left:514.920000pt;}
.xf9{left:516.013333pt;}
.x2d{left:517.297333pt;}
.xdd{left:518.841333pt;}
.x140{left:520.377333pt;}
.xfa{left:521.326667pt;}
.x12a{left:525.104000pt;}
.x2e{left:526.265333pt;}
.x104{left:527.937333pt;}
.xa7{left:529.061333pt;}
.x57{left:531.021333pt;}
.xce{left:532.668000pt;}
.x97{left:535.213333pt;}
.x58{left:536.732000pt;}
.x8c{left:538.357333pt;}
.x43{left:539.724000pt;}
.xf1{left:540.982667pt;}
.x2f{left:542.361333pt;}
.x8d{left:544.406667pt;}
.x39{left:545.806667pt;}
.x14d{left:548.178667pt;}
.xcf{left:549.256000pt;}
.x158{left:550.256000pt;}
.x59{left:552.050667pt;}
.x30{left:553.313333pt;}
.x3a{left:554.842667pt;}
.x159{left:556.556000pt;}
.xe7{left:557.832000pt;}
.x88{left:559.676000pt;}
.x7f{left:562.304000pt;}
.x10c{left:563.834667pt;}
.x89{left:565.388000pt;}
.x6e{left:566.284000pt;}
.x5c{left:567.309333pt;}
.xc8{left:568.293333pt;}
.x144{left:569.352000pt;}
.xc6{left:570.278667pt;}
.xe8{left:571.792000pt;}
.x5d{left:573.021333pt;}
.xc9{left:574.005333pt;}
.x8a{left:574.994667pt;}
.xa8{left:576.830667pt;}
.x13a{left:577.769333pt;}
.x6f{left:579.566667pt;}
.xde{left:580.604000pt;}
.x12{left:581.896000pt;}
.x8b{left:584.140000pt;}
.x11d{left:585.060000pt;}
.x13{left:587.209333pt;}
.x28{left:588.833333pt;}
.x5e{left:591.241333pt;}
.xa9{left:592.148000pt;}
.xc1{left:593.060000pt;}
.x11e{left:594.090667pt;}
.x14{left:595.516000pt;}
.xeb{left:596.445333pt;}
.xba{left:597.536000pt;}
.x29{left:598.729333pt;}
.xc5{left:600.413333pt;}
.xaa{left:601.660000pt;}
.x21{left:602.817333pt;}
.x15{left:603.829333pt;}
.x2a{left:605.370667pt;}
.xf6{left:606.399200pt;}
.x22{left:608.130667pt;}
.x14e{left:609.378667pt;}
.x53{left:612.492000pt;}
.xe9{left:613.492000pt;}
.x141{left:614.434667pt;}
.xfb{left:615.378667pt;}
.x23{left:616.581333pt;}
.xec{left:617.476000pt;}
.x108{left:619.338667pt;}
.x24{left:621.894667pt;}
.x98{left:624.081333pt;}
.x54{left:625.774667pt;}
.x149{left:627.753333pt;}
.x109{left:628.944000pt;}
.x142{left:632.801333pt;}
.x12f{left:633.890667pt;}
.x4b{left:635.288000pt;}
.x133{left:636.433333pt;}
.x157{left:637.722667pt;}
.x10a{left:638.641333pt;}
.x7e{left:639.693333pt;}
.x14a{left:641.037333pt;}
.xea{left:642.089333pt;}
.x13b{left:643.464000pt;}
.x138{left:645.153333pt;}
.xab{left:646.656000pt;}
.x4c{left:648.570667pt;}
.xa5{left:651.692000pt;}
.x99{left:653.416000pt;}
.x83{left:654.744000pt;}
.x15b{left:655.998667pt;}
.xac{left:657.818667pt;}
.x13c{left:659.061333pt;}
.x84{left:660.456000pt;}
.x106{left:661.754667pt;}
.x120{left:662.912000pt;}
.x9a{left:666.700000pt;}
.x16{left:668.204000pt;}
.x85{left:669.940000pt;}
.x121{left:671.342667pt;}
.x151{left:672.462667pt;}
.x17{left:673.517333pt;}
.x74{left:674.448000pt;}
.x81{left:675.836000pt;}
.x107{left:677.073333pt;}
.x11f{left:678.805333pt;}
.x75{left:680.160000pt;}
.x18{left:682.146667pt;}
.xef{left:683.456000pt;}
.x122{left:685.229333pt;}
.xd0{left:686.326667pt;}
.x105{left:688.072000pt;}
.x76{left:689.436000pt;}
.x19{left:690.448000pt;}
.xfc{left:692.246667pt;}
.xdf{left:693.170667pt;}
.xd1{left:695.933333pt;}
.xf0{left:697.180000pt;}
.x77{left:698.486667pt;}
.xfd{left:700.118667pt;}
.xd2{left:701.645333pt;}
.x134{left:703.258667pt;}
.x37{left:704.453333pt;}
.xe0{left:705.457333pt;}
.xca{left:706.432000pt;}
.xff{left:707.554667pt;}
.x66{left:709.236000pt;}
.x38{left:711.096000pt;}
.xcb{left:712.144000pt;}
.x14f{left:713.165333pt;}
.x67{left:719.072000pt;}
.x15c{left:720.266667pt;}
.xcc{left:721.374667pt;}
.x150{left:722.330667pt;}
.xbd{left:724.670667pt;}
.x1a{left:726.716000pt;}
.xbe{left:730.382667pt;}
.x1b{left:732.029333pt;}
.x100{left:736.013333pt;}
.xad{left:738.588000pt;}
.x1c{left:740.386667pt;}
.x143{left:743.317333pt;}
.xae{left:744.637333pt;}
}




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