
    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_49caaf98234fbd9afcb79bc2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0c8c5ce4a4c718822a6e1dfd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.226000;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_c89cbaa4599fafd635491617.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.933000;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_7519dc36b35b66cc1ed0e7d8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.010000;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_54bbf0f46d6f6753e3c41ca9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.693000;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_5e8380bfdf18b965fe2e01f7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e8de4b862444912edc15719c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.743000;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_8f3352ae11c7acb792db28b1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.943000;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_31a52d192562069e032db757.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893000;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_bacba71538d506d27f234b3b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.703000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a9d4879a27521ac75732f41e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.887000;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_b4ca7dbacdafef923382df03.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.689000;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_e19d17f24af8ea268405216a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_592a7cf8a15cfb9520f74d7f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.200195;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_98744048ca3f0cf32b55c402.woff2')format("woff");}.fff{font-family:fff;line-height:1.215332;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_1c543c22a8dee2978bfc9fbe.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.727539;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_e0c62f9971de7739f85ac841.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.736816;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_01aa89fd41e8fd567c0af565.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.867676;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_fb258ffc6509ce0627b48390.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.682129;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_48c9d19382b61f89418dc2b3.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.750000;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_a2b10d7dccce0ee538ccbd9f.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.535000;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_d2ede547f210715e2baee97a.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_ce88cb1b4f0b57ac5c82bce3.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.200195;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_66b8afbd9bc4b4c4cdd47304.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.215332;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_a7d6acf6498e0602c3313c9f.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.736816;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_1c543c22a8dee2978bfc9fbe.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.727539;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_ce14e0d952f8cc70cd8ddcd7.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_5acb991212e411c93895bc4f.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.200195;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_a898b87c2119e6c23458a6b5.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.215332;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_ef2e90503261ad30763b9c85.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.736816;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_1c543c22a8dee2978bfc9fbe.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.727539;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;}
.m24{transform:matrix(0.000000,-0.249599,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249599,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249599,0.250000,0.000000,0,0);}
.m6{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);}
.m10{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);}
.m4{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);}
.m7{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);}
.m23{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);}
.m34{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);}
.me{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);}
.m17{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);}
.m5{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);}
.m1f{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);}
.mc{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);}
.m37{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);}
.m1b{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);}
.m22{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);}
.mf{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);}
.m1{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m20{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);}
.m32{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m2a{transform:matrix(0.250389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250389,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.250401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250401,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250489,0.000000,0.000000,0.250000,0,0);}
.m2e{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);}
.m27{transform:matrix(0.250539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250539,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m15{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);}
.m14{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);}
.m16{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);}
.mb{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);}
.m2f{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);}
.m35{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);}
.m36{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);}
.m19{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);}
.m8{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m1c{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);}
.m18{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);}
.m1d{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);}
.m13{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);}
.m1a{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);}
.m21{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);}
.m2{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);}
.m12{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);}
.vb{vertical-align:-41.892000px;}
.vd{vertical-align:-33.732000px;}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.v9{vertical-align:-9.546000px;}
.v7{vertical-align:-7.200000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:11.946000px;}
.v5{vertical-align:15.192000px;}
.v4{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v6{vertical-align:23.910000px;}
.vc{vertical-align:46.158000px;}
.v8{vertical-align:47.820000px;}
.ls88{letter-spacing:-1.861315px;}
.lsb9{letter-spacing:-1.344600px;}
.ls48{letter-spacing:-0.743445px;}
.ls96{letter-spacing:-0.343440px;}
.ls8b{letter-spacing:-0.303005px;}
.lsba{letter-spacing:-0.259200px;}
.ls4e{letter-spacing:-0.255070px;}
.ls4d{letter-spacing:-0.216419px;}
.ls8e{letter-spacing:-0.194789px;}
.ls38{letter-spacing:-0.180360px;}
.ls90{letter-spacing:-0.173146px;}
.ls3f{letter-spacing:-0.172800px;}
.ls46{letter-spacing:-0.166472px;}
.ls4a{letter-spacing:-0.162899px;}
.ls8d{letter-spacing:-0.158717px;}
.ls95{letter-spacing:-0.137074px;}
.ls3c{letter-spacing:-0.132264px;}
.ls84{letter-spacing:-0.129859px;}
.lsc0{letter-spacing:-0.126252px;}
.ls85{letter-spacing:-0.122645px;}
.ls43{letter-spacing:-0.118800px;}
.lsbd{letter-spacing:-0.114228px;}
.ls8a{letter-spacing:-0.108216px;}
.lsb7{letter-spacing:-0.102600px;}
.lsc5{letter-spacing:-0.102204px;}
.ls82{letter-spacing:-0.101002px;}
.lsc4{letter-spacing:-0.096192px;}
.ls47{letter-spacing:-0.094093px;}
.ls8c{letter-spacing:-0.093787px;}
.ls4b{letter-spacing:-0.090500px;}
.ls40{letter-spacing:-0.086400px;}
.lsc3{letter-spacing:-0.084168px;}
.ls87{letter-spacing:-0.079358px;}
.lsbc{letter-spacing:-0.078156px;}
.ls80{letter-spacing:-0.074693px;}
.ls37{letter-spacing:-0.071820px;}
.ls8f{letter-spacing:-0.064930px;}
.ls49{letter-spacing:-0.061540px;}
.ls89{letter-spacing:-0.057715px;}
.ls45{letter-spacing:-0.054284px;}
.ls3b{letter-spacing:-0.054108px;}
.ls44{letter-spacing:-0.054000px;}
.ls81{letter-spacing:-0.050501px;}
.lsc1{letter-spacing:-0.048096px;}
.ls92{letter-spacing:-0.043286px;}
.ls3a{letter-spacing:-0.042084px;}
.lsbe{letter-spacing:-0.036072px;}
.ls98{letter-spacing:-0.032400px;}
.ls86{letter-spacing:-0.028858px;}
.lsb6{letter-spacing:-0.027000px;}
.ls9b{letter-spacing:-0.025920px;}
.lsbb{letter-spacing:-0.024048px;}
.ls94{letter-spacing:-0.021643px;}
.ls3d{letter-spacing:-0.021600px;}
.ls97{letter-spacing:-0.019440px;}
.lsc2{letter-spacing:-0.018036px;}
.lsb5{letter-spacing:-0.016200px;}
.ls83{letter-spacing:-0.014429px;}
.ls39{letter-spacing:-0.012024px;}
.lsb4{letter-spacing:-0.010800px;}
.ls93{letter-spacing:-0.007214px;}
.ls3e{letter-spacing:-0.005400px;}
.ls16{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000049px;}
.lsb0{letter-spacing:0.000141px;}
.lsd{letter-spacing:0.000184px;}
.lse3{letter-spacing:0.000453px;}
.ls12{letter-spacing:0.000458px;}
.lsc6{letter-spacing:0.000638px;}
.lsca{letter-spacing:0.000676px;}
.lsd1{letter-spacing:0.000800px;}
.ls58{letter-spacing:0.000845px;}
.lscc{letter-spacing:0.001036px;}
.lsc8{letter-spacing:0.001152px;}
.lsd6{letter-spacing:0.001155px;}
.lsb1{letter-spacing:0.001420px;}
.lsc9{letter-spacing:0.001584px;}
.ls2{letter-spacing:0.001831px;}
.lsd2{letter-spacing:0.002161px;}
.lsb2{letter-spacing:0.002259px;}
.ls1b{letter-spacing:0.002302px;}
.ls60{letter-spacing:0.002362px;}
.lsb3{letter-spacing:0.002400px;}
.lse2{letter-spacing:0.002488px;}
.lseb{letter-spacing:0.003004px;}
.lsc{letter-spacing:0.003056px;}
.lsea{letter-spacing:0.003090px;}
.ls7f{letter-spacing:0.003147px;}
.ls3{letter-spacing:0.003165px;}
.lsa{letter-spacing:0.003292px;}
.ls0{letter-spacing:0.003299px;}
.lse{letter-spacing:0.003313px;}
.lscd{letter-spacing:0.003544px;}
.ls7{letter-spacing:0.004200px;}
.lsc7{letter-spacing:0.004544px;}
.ls6{letter-spacing:0.004766px;}
.ls28{letter-spacing:0.005400px;}
.ls6e{letter-spacing:0.007214px;}
.ls9a{letter-spacing:0.007949px;}
.ls91{letter-spacing:0.008640px;}
.ls2a{letter-spacing:0.010800px;}
.ls70{letter-spacing:0.014429px;}
.ls29{letter-spacing:0.016200px;}
.lsab{letter-spacing:0.018036px;}
.ls77{letter-spacing:0.019440px;}
.ls30{letter-spacing:0.021087px;}
.ls71{letter-spacing:0.021643px;}
.lsae{letter-spacing:0.024048px;}
.ls7a{letter-spacing:0.025920px;}
.lsa4{letter-spacing:0.027000px;}
.ls6f{letter-spacing:0.028858px;}
.ls24{letter-spacing:0.030060px;}
.lsa2{letter-spacing:0.032400px;}
.ls22{letter-spacing:0.033516px;}
.ls26{letter-spacing:0.036072px;}
.lsa6{letter-spacing:0.037800px;}
.ls4c{letter-spacing:0.037956px;}
.ls7b{letter-spacing:0.038880px;}
.lsac{letter-spacing:0.042084px;}
.ls75{letter-spacing:0.045360px;}
.ls25{letter-spacing:0.048096px;}
.lsa8{letter-spacing:0.048600px;}
.ls68{letter-spacing:0.051710px;}
.ls6a{letter-spacing:0.057715px;}
.lsa1{letter-spacing:0.059400px;}
.lsaa{letter-spacing:0.060120px;}
.lsa7{letter-spacing:0.064800px;}
.lsbf{letter-spacing:0.066132px;}
.ls33{letter-spacing:0.069565px;}
.ls2b{letter-spacing:0.070200px;}
.ls6b{letter-spacing:0.072144px;}
.ls2c{letter-spacing:0.075600px;}
.ls78{letter-spacing:0.077760px;}
.lsaf{letter-spacing:0.078156px;}
.ls34{letter-spacing:0.079502px;}
.ls32{letter-spacing:0.086120px;}
.ls31{letter-spacing:0.089432px;}
.lsa5{letter-spacing:0.091800px;}
.ls2f{letter-spacing:0.102629px;}
.ls2e{letter-spacing:0.102653px;}
.ls35{letter-spacing:0.102691px;}
.ls27{letter-spacing:0.108000px;}
.ls74{letter-spacing:0.108216px;}
.ls7c{letter-spacing:0.110160px;}
.ls73{letter-spacing:0.115430px;}
.ls76{letter-spacing:0.116640px;}
.ls99{letter-spacing:0.123120px;}
.lsa3{letter-spacing:0.124200px;}
.lsad{letter-spacing:0.132264px;}
.ls2d{letter-spacing:0.139396px;}
.lsb8{letter-spacing:0.140400px;}
.ls36{letter-spacing:0.143543px;}
.ls6d{letter-spacing:0.144288px;}
.ls79{letter-spacing:0.149040px;}
.ls23{letter-spacing:0.167580px;}
.lsa9{letter-spacing:0.178200px;}
.ls6c{letter-spacing:0.180360px;}
.ls21{letter-spacing:0.181944px;}
.ls72{letter-spacing:0.187574px;}
.ls7d{letter-spacing:0.194400px;}
.ls69{letter-spacing:0.212587px;}
.ls67{letter-spacing:0.229824px;}
.ls1a{letter-spacing:0.358975px;}
.ls5f{letter-spacing:0.497764px;}
.ls1d{letter-spacing:0.503764px;}
.ls19{letter-spacing:0.519953px;}
.ls52{letter-spacing:0.642088px;}
.ls53{letter-spacing:0.648088px;}
.ls4f{letter-spacing:0.669878px;}
.ls56{letter-spacing:0.670800px;}
.ls64{letter-spacing:1.210800px;}
.ls50{letter-spacing:2.988600px;}
.ls8{letter-spacing:2.989200px;}
.ls18{letter-spacing:3.364500px;}
.ls42{letter-spacing:3.418200px;}
.ls51{letter-spacing:3.507900px;}
.ls17{letter-spacing:3.513900px;}
.ls41{letter-spacing:4.141800px;}
.ls9d{letter-spacing:4.493674px;}
.ls5{letter-spacing:10.461300px;}
.ls1e{letter-spacing:10.961764px;}
.lsf{letter-spacing:11.951700px;}
.ls15{letter-spacing:11.954850px;}
.ls11{letter-spacing:11.957700px;}
.ls4{letter-spacing:12.969300px;}
.lse9{letter-spacing:13.181668px;}
.lscf{letter-spacing:13.203904px;}
.lsd0{letter-spacing:13.238635px;}
.lsd3{letter-spacing:13.278746px;}
.lsd9{letter-spacing:13.286826px;}
.lsd5{letter-spacing:13.307796px;}
.lsda{letter-spacing:13.321460px;}
.lsd8{letter-spacing:13.350400px;}
.ls7e{letter-spacing:13.376360px;}
.lsce{letter-spacing:13.448400px;}
.ls1c{letter-spacing:13.448554px;}
.lscb{letter-spacing:13.450800px;}
.lse7{letter-spacing:13.451499px;}
.lsd7{letter-spacing:13.454400px;}
.lse8{letter-spacing:13.535294px;}
.lsdb{letter-spacing:13.556412px;}
.lsde{letter-spacing:13.559500px;}
.lse0{letter-spacing:13.592996px;}
.lse6{letter-spacing:13.617202px;}
.lsd4{letter-spacing:13.702530px;}
.lsdc{letter-spacing:13.757717px;}
.ls5c{letter-spacing:14.094088px;}
.ls5a{letter-spacing:14.100088px;}
.ls66{letter-spacing:14.287215px;}
.ls9{letter-spacing:14.942100px;}
.ls20{letter-spacing:14.943900px;}
.ls62{letter-spacing:15.334800px;}
.ls59{letter-spacing:16.440049px;}
.lsdf{letter-spacing:16.626871px;}
.lse4{letter-spacing:16.959769px;}
.lse5{letter-spacing:17.085694px;}
.ls55{letter-spacing:17.945933px;}
.lsdd{letter-spacing:19.532753px;}
.lse1{letter-spacing:20.844518px;}
.ls61{letter-spacing:26.364049px;}
.lsb{letter-spacing:57.415200px;}
.ls10{letter-spacing:62.761200px;}
.ls14{letter-spacing:62.917200px;}
.ls13{letter-spacing:64.321654px;}
.ls5d{letter-spacing:98.970600px;}
.ls5e{letter-spacing:98.976600px;}
.ls5b{letter-spacing:109.434600px;}
.ls1f{letter-spacing:144.038100px;}
.ls9c{letter-spacing:185.086800px;}
.ls9f{letter-spacing:190.700467px;}
.ls54{letter-spacing:280.288800px;}
.ls65{letter-spacing:325.570800px;}
.ls63{letter-spacing:371.616000px;}
.ls57{letter-spacing:425.097300px;}
.ls9e{letter-spacing:630.031555px;}
.lsa0{letter-spacing:939.146467px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wscf{word-spacing:-72.144000px;}
.ws130{word-spacing:-60.120000px;}
.ws64{word-spacing:-54.000000px;}
.wsda{word-spacing:-45.088735px;}
.wsd2{word-spacing:-18.151430px;}
.wsd0{word-spacing:-18.036000px;}
.wsd3{word-spacing:-16.200000px;}
.ws191{word-spacing:-14.943900px;}
.wscd{word-spacing:-14.593824px;}
.wsce{word-spacing:-14.364000px;}
.ws12d{word-spacing:-13.640400px;}
.ws66{word-spacing:-13.500000px;}
.ws77{word-spacing:-13.449600px;}
.ws12f{word-spacing:-12.155400px;}
.ws61{word-spacing:-12.151944px;}
.ws62{word-spacing:-11.970000px;}
.ws16{word-spacing:-11.955150px;}
.wsf{word-spacing:-11.357400px;}
.ws1{word-spacing:-10.460700px;}
.ws65{word-spacing:-8.280000px;}
.ws6c{word-spacing:-8.119615px;}
.ws6e{word-spacing:-8.090655px;}
.ws69{word-spacing:-8.084757px;}
.ws6d{word-spacing:-8.018256px;}
.ws68{word-spacing:-8.012377px;}
.ws72{word-spacing:-7.589167px;}
.ws67{word-spacing:-7.586417px;}
.ws6a{word-spacing:-7.584630px;}
.ws6b{word-spacing:-7.575230px;}
.ws6f{word-spacing:-7.571918px;}
.ws71{word-spacing:-7.565978px;}
.ws70{word-spacing:-7.556041px;}
.ws75{word-spacing:-7.231406px;}
.ws73{word-spacing:-5.134437px;}
.ws74{word-spacing:-4.774474px;}
.wsf9{word-spacing:-3.794774px;}
.ws15b{word-spacing:-3.793572px;}
.wsf8{word-spacing:-3.773131px;}
.ws15a{word-spacing:-3.571128px;}
.ws85{word-spacing:-3.330648px;}
.ws5e{word-spacing:-3.108331px;}
.ws194{word-spacing:-2.988780px;}
.ws11c{word-spacing:-2.983500px;}
.ws88{word-spacing:-2.458908px;}
.ws89{word-spacing:-2.116224px;}
.wsf2{word-spacing:-2.106605px;}
.ws78{word-spacing:-2.044339px;}
.wsef{word-spacing:-2.020032px;}
.wsf0{word-spacing:-1.940674px;}
.ws18f{word-spacing:-1.912819px;}
.wsfd{word-spacing:-1.875744px;}
.ws134{word-spacing:-1.829146px;}
.wsf1{word-spacing:-1.745885px;}
.ws139{word-spacing:-1.673717px;}
.ws1c{word-spacing:-1.613952px;}
.ws100{word-spacing:-1.572739px;}
.ws1b{word-spacing:-1.560154px;}
.ws19a{word-spacing:-1.554166px;}
.ws184{word-spacing:-1.374839px;}
.ws193{word-spacing:-1.315063px;}
.ws8b{word-spacing:-1.304604px;}
.ws153{word-spacing:-1.263600px;}
.ws13a{word-spacing:-1.255288px;}
.ws8c{word-spacing:-1.172340px;}
.ws32{word-spacing:-1.135736px;}
.ws132{word-spacing:-1.129766px;}
.ws133{word-spacing:-1.075968px;}
.ws3d{word-spacing:-1.075961px;}
.ws5c{word-spacing:-0.956410px;}
.ws155{word-spacing:-0.896400px;}
.ws154{word-spacing:-0.874800px;}
.ws199{word-spacing:-0.836858px;}
.ws128{word-spacing:-0.806976px;}
.ws45{word-spacing:-0.777083px;}
.ws167{word-spacing:-0.697392px;}
.ws8a{word-spacing:-0.667332px;}
.wscc{word-spacing:-0.657532px;}
.ws168{word-spacing:-0.649296px;}
.ws7d{word-spacing:-0.645581px;}
.ws96{word-spacing:-0.610200px;}
.ws18a{word-spacing:-0.597756px;}
.ws1b8{word-spacing:-0.591782px;}
.ws94{word-spacing:-0.556200px;}
.ws95{word-spacing:-0.550800px;}
.ws137{word-spacing:-0.537980px;}
.ws7f{word-spacing:-0.478205px;}
.ws201{word-spacing:-0.430387px;}
.ws10b{word-spacing:-0.425650px;}
.ws38{word-spacing:-0.418429px;}
.ws1bd{word-spacing:-0.376589px;}
.ws3e{word-spacing:-0.358654px;}
.wsdc{word-spacing:-0.333245px;}
.ws7e{word-spacing:-0.322790px;}
.ws169{word-spacing:-0.306612px;}
.ws34{word-spacing:-0.298878px;}
.ws82{word-spacing:-0.272916px;}
.wsd5{word-spacing:-0.268992px;}
.ws2c{word-spacing:-0.239102px;}
.ws37{word-spacing:-0.226844px;}
.ws1ab{word-spacing:-0.223554px;}
.ws135{word-spacing:-0.215194px;}
.ws1c9{word-spacing:-0.180809px;}
.ws2b{word-spacing:-0.179327px;}
.ws19f{word-spacing:-0.167881px;}
.ws1e{word-spacing:-0.161395px;}
.wsdd{word-spacing:-0.155131px;}
.ws83{word-spacing:-0.124488px;}
.ws4c{word-spacing:-0.119551px;}
.ws1d2{word-spacing:-0.116571px;}
.ws1f{word-spacing:-0.107597px;}
.wsd4{word-spacing:-0.072418px;}
.wsd1{word-spacing:-0.072144px;}
.ws63{word-spacing:-0.060120px;}
.wsd{word-spacing:-0.059776px;}
.ws12e{word-spacing:-0.054000px;}
.ws1a{word-spacing:-0.053798px;}
.ws17{word-spacing:-0.047821px;}
.ws3{word-spacing:-0.041843px;}
.wsdb{word-spacing:-0.028728px;}
.ws81{word-spacing:-0.019152px;}
.ws1ce{word-spacing:-0.007843px;}
.ws1d6{word-spacing:-0.007430px;}
.ws1d4{word-spacing:-0.006806px;}
.ws1da{word-spacing:-0.006749px;}
.ws10{word-spacing:-0.004674px;}
.ws1f3{word-spacing:-0.003802px;}
.ws1f6{word-spacing:-0.003466px;}
.ws200{word-spacing:-0.002755px;}
.ws1fc{word-spacing:-0.002621px;}
.ws12{word-spacing:-0.002608px;}
.ws1c8{word-spacing:-0.002592px;}
.ws1cf{word-spacing:-0.002429px;}
.ws11{word-spacing:-0.002392px;}
.ws1bc{word-spacing:-0.002304px;}
.wse{word-spacing:-0.002184px;}
.wsd9{word-spacing:-0.001200px;}
.ws136{word-spacing:-0.001056px;}
.ws1d7{word-spacing:-0.000806px;}
.ws4{word-spacing:-0.000229px;}
.ws2{word-spacing:0.000000px;}
.ws19e{word-spacing:0.028458px;}
.ws19d{word-spacing:0.038334px;}
.ws22{word-spacing:0.053798px;}
.ws35{word-spacing:0.059776px;}
.wsec{word-spacing:0.086573px;}
.ws1de{word-spacing:0.095916px;}
.wsd6{word-spacing:0.107597px;}
.ws9b{word-spacing:0.108000px;}
.ws158{word-spacing:0.114228px;}
.ws2d{word-spacing:0.119551px;}
.ws3a{word-spacing:0.125865px;}
.wsed{word-spacing:0.129859px;}
.ws15{word-spacing:0.143462px;}
.ws8d{word-spacing:0.144288px;}
.ws1d{word-spacing:0.161395px;}
.ws156{word-spacing:0.162000px;}
.wsee{word-spacing:0.173146px;}
.ws29{word-spacing:0.179327px;}
.wsfc{word-spacing:0.180360px;}
.ws157{word-spacing:0.199800px;}
.ws79{word-spacing:0.215194px;}
.ws16a{word-spacing:0.216432px;}
.ws8e{word-spacing:0.222444px;}
.ws1ca{word-spacing:0.233059px;}
.ws14{word-spacing:0.239102px;}
.ws23{word-spacing:0.268992px;}
.ws1e0{word-spacing:0.290794px;}
.ws13{word-spacing:0.298878px;}
.ws1e1{word-spacing:0.322790px;}
.ws60{word-spacing:0.358654px;}
.ws1f0{word-spacing:0.376589px;}
.ws41{word-spacing:0.418429px;}
.ws17d{word-spacing:0.478205px;}
.ws9d{word-spacing:0.484186px;}
.ws53{word-spacing:0.507457px;}
.ws4f{word-spacing:0.529439px;}
.ws56{word-spacing:0.530489px;}
.ws58{word-spacing:0.532139px;}
.ws125{word-spacing:0.537980px;}
.ws1df{word-spacing:0.537984px;}
.ws148{word-spacing:0.540000px;}
.ws147{word-spacing:0.556200px;}
.wse6{word-spacing:0.562723px;}
.wse7{word-spacing:0.577152px;}
.ws9e{word-spacing:0.591782px;}
.ws17f{word-spacing:0.597756px;}
.wse8{word-spacing:0.627653px;}
.wsc6{word-spacing:0.645274px;}
.ws9c{word-spacing:0.645581px;}
.wsc8{word-spacing:0.646358px;}
.wsc5{word-spacing:0.646474px;}
.wsc7{word-spacing:0.647280px;}
.ws187{word-spacing:0.657532px;}
.wsbe{word-spacing:0.667200px;}
.wsbf{word-spacing:0.668429px;}
.wsbd{word-spacing:0.670666px;}
.wsc2{word-spacing:0.670675px;}
.wsc0{word-spacing:0.670810px;}
.wsbc{word-spacing:0.670934px;}
.wsba{word-spacing:0.673200px;}
.ws9f{word-spacing:0.673421px;}
.wsb9{word-spacing:0.693706px;}
.wsc1{word-spacing:0.695155px;}
.wsc3{word-spacing:0.696672px;}
.ws1d1{word-spacing:0.699379px;}
.ws39{word-spacing:0.717307px;}
.ws31{word-spacing:0.777083px;}
.ws30{word-spacing:0.836858px;}
.ws150{word-spacing:0.842400px;}
.ws173{word-spacing:0.859716px;}
.ws4b{word-spacing:0.896634px;}
.ws174{word-spacing:0.943884px;}
.ws43{word-spacing:0.956410px;}
.ws76{word-spacing:0.968371px;}
.ws49{word-spacing:1.016185px;}
.ws21{word-spacing:1.022170px;}
.ws138{word-spacing:1.075961px;}
.ws18c{word-spacing:1.107873px;}
.ws13b{word-spacing:1.135736px;}
.ws86{word-spacing:1.172340px;}
.ws1a7{word-spacing:1.195512px;}
.ws151{word-spacing:1.209600px;}
.ws152{word-spacing:1.225800px;}
.wsb7{word-spacing:1.237363px;}
.ws27{word-spacing:1.255288px;}
.ws1a8{word-spacing:1.315063px;}
.ws1d3{word-spacing:1.344960px;}
.ws126{word-spacing:1.374839px;}
.wsb{word-spacing:1.380812px;}
.ws1a9{word-spacing:1.434614px;}
.ws87{word-spacing:1.533060px;}
.ws1c1{word-spacing:1.560154px;}
.ws1c7{word-spacing:1.613952px;}
.ws97{word-spacing:1.620000px;}
.ws1ee{word-spacing:1.721549px;}
.ws3c{word-spacing:1.733492px;}
.ws5f{word-spacing:1.793268px;}
.ws161{word-spacing:1.911816px;}
.ws19b{word-spacing:1.912819px;}
.ws206{word-spacing:1.936742px;}
.ws13e{word-spacing:1.972595px;}
.ws160{word-spacing:2.001996px;}
.ws198{word-spacing:2.211697px;}
.ws13c{word-spacing:2.271473px;}
.ws16d{word-spacing:2.290572px;}
.ws3f{word-spacing:2.331248px;}
.ws1c4{word-spacing:2.367130px;}
.ws1a5{word-spacing:2.391024px;}
.wse9{word-spacing:2.409610px;}
.ws1e6{word-spacing:2.420928px;}
.ws192{word-spacing:2.450800px;}
.ws1eb{word-spacing:2.474726px;}
.ws5{word-spacing:2.510568px;}
.ws0{word-spacing:2.511541px;}
.ws16c{word-spacing:2.573136px;}
.ws208{word-spacing:2.582323px;}
.ws16b{word-spacing:2.651292px;}
.ws141{word-spacing:2.667600px;}
.ws46{word-spacing:2.689902px;}
.ws188{word-spacing:2.809453px;}
.ws1f9{word-spacing:2.851315px;}
.ws13d{word-spacing:2.869229px;}
.ws2f{word-spacing:2.869236px;}
.ws1ff{word-spacing:2.905114px;}
.ws209{word-spacing:2.955290px;}
.ws1be{word-spacing:2.958912px;}
.ws1c2{word-spacing:3.012710px;}
.ws18e{word-spacing:3.048556px;}
.ws24{word-spacing:3.053079px;}
.ws1b4{word-spacing:3.065562px;}
.ws1db{word-spacing:3.066509px;}
.ws183{word-spacing:3.108331px;}
.ws42{word-spacing:3.168107px;}
.ws1ed{word-spacing:3.174106px;}
.ws204{word-spacing:3.219869px;}
.ws1d0{word-spacing:3.220032px;}
.ws1d8{word-spacing:3.220109px;}
.ws1dd{word-spacing:3.221030px;}
.ws1f7{word-spacing:3.221578px;}
.ws1c0{word-spacing:3.223613px;}
.ws1f8{word-spacing:3.223949px;}
.ws1ea{word-spacing:3.224208px;}
.ws1d9{word-spacing:3.225360px;}
.ws207{word-spacing:3.225763px;}
.ws1ef{word-spacing:3.225830px;}
.ws1c5{word-spacing:3.226320px;}
.ws1c3{word-spacing:3.227904px;}
.ws1e2{word-spacing:3.328963px;}
.ws203{word-spacing:3.334683px;}
.ws1dc{word-spacing:3.335501px;}
.ws17e{word-spacing:3.347434px;}
.ws176{word-spacing:3.348684px;}
.ws7a{word-spacing:3.389299px;}
.ws146{word-spacing:3.391200px;}
.ws1fd{word-spacing:3.413306px;}
.ws144{word-spacing:3.423600px;}
.ws145{word-spacing:3.429000px;}
.ws202{word-spacing:3.440421px;}
.ws7b{word-spacing:3.443098px;}
.ws5d{word-spacing:3.466985px;}
.ws1b2{word-spacing:3.468618px;}
.ws20b{word-spacing:3.496896px;}
.wse1{word-spacing:3.513413px;}
.ws1a4{word-spacing:3.526760px;}
.ws25{word-spacing:3.586536px;}
.ws1f5{word-spacing:3.604493px;}
.ws2e{word-spacing:3.646312px;}
.ws1fb{word-spacing:3.658291px;}
.ws16e{word-spacing:3.691368px;}
.ws16f{word-spacing:3.709404px;}
.ws177{word-spacing:3.775536px;}
.ws1d5{word-spacing:3.873485px;}
.ws4a{word-spacing:3.885414px;}
.ws1ba{word-spacing:3.927283px;}
.wse4{word-spacing:3.931848px;}
.ws181{word-spacing:3.945190px;}
.ws1bf{word-spacing:3.981082px;}
.ws18b{word-spacing:4.004965px;}
.ws1f4{word-spacing:4.034880px;}
.ws3b{word-spacing:4.064741px;}
.ws9a{word-spacing:4.066200px;}
.ws1ac{word-spacing:4.088678px;}
.ws33{word-spacing:4.124516px;}
.wse5{word-spacing:4.126637px;}
.ws93{word-spacing:4.136400px;}
.ws1ad{word-spacing:4.142477px;}
.ws90{word-spacing:4.147200px;}
.ws8f{word-spacing:4.163400px;}
.ws1bb{word-spacing:4.196275px;}
.ws92{word-spacing:4.228200px;}
.ws1b6{word-spacing:4.250074px;}
.wsd7{word-spacing:4.303843px;}
.ws131{word-spacing:4.303872px;}
.ws91{word-spacing:4.314600px;}
.ws26{word-spacing:4.363619px;}
.ws195{word-spacing:4.423394px;}
.ws1b7{word-spacing:4.465267px;}
.ws19c{word-spacing:4.483170px;}
.wsf4{word-spacing:4.487357px;}
.wsf5{word-spacing:4.595573px;}
.ws36{word-spacing:4.602721px;}
.wsf6{word-spacing:4.631645px;}
.ws1b3{word-spacing:4.680461px;}
.ws166{word-spacing:4.719420px;}
.ws47{word-spacing:4.722272px;}
.ws189{word-spacing:4.782048px;}
.ws205{word-spacing:4.788058px;}
.ws102{word-spacing:4.840862px;}
.ws1e3{word-spacing:4.841856px;}
.wsff{word-spacing:4.862506px;}
.ws101{word-spacing:4.876934px;}
.ws111{word-spacing:4.950720px;}
.ws1af{word-spacing:5.003251px;}
.ws80{word-spacing:5.021150px;}
.ws165{word-spacing:5.080140px;}
.ws1a2{word-spacing:5.080926px;}
.ws17b{word-spacing:5.164308px;}
.ws1c6{word-spacing:5.164646px;}
.ws17a{word-spacing:5.182344px;}
.ws180{word-spacing:5.200477px;}
.ws28{word-spacing:5.260253px;}
.ws7c{word-spacing:5.272243px;}
.ws110{word-spacing:5.333040px;}
.ws112{word-spacing:5.371920px;}
.ws182{word-spacing:5.379804px;}
.ws1b9{word-spacing:5.379840px;}
.ws9{word-spacing:5.481407px;}
.ws1fe{word-spacing:5.487437px;}
.ws1a3{word-spacing:5.499355px;}
.ws1b1{word-spacing:5.648832px;}
.ws2a{word-spacing:5.678682px;}
.ws116{word-spacing:5.715360px;}
.ws113{word-spacing:5.728320px;}
.ws20{word-spacing:5.756429px;}
.ws127{word-spacing:5.798233px;}
.ws1f1{word-spacing:5.864026px;}
.ws196{word-spacing:5.977560px;}
.ws119{word-spacing:5.980500px;}
.ws18d{word-spacing:6.037336px;}
.ws1e5{word-spacing:6.079219px;}
.ws186{word-spacing:6.156887px;}
.ws164{word-spacing:6.186348px;}
.ws14f{word-spacing:6.237000px;}
.ws163{word-spacing:6.246468px;}
.ws185{word-spacing:6.276438px;}
.ws114{word-spacing:6.292080px;}
.ws1b0{word-spacing:6.294413px;}
.ws117{word-spacing:6.298560px;}
.ws115{word-spacing:6.305040px;}
.ws1ae{word-spacing:6.348211px;}
.ws1cd{word-spacing:6.402010px;}
.ws109{word-spacing:6.601176px;}
.ws10a{word-spacing:6.608390px;}
.ws14d{word-spacing:6.620400px;}
.ws40{word-spacing:6.694867px;}
.ws99{word-spacing:6.712200px;}
.wsfe{word-spacing:6.731035px;}
.ws14e{word-spacing:6.760800px;}
.ws98{word-spacing:6.777000px;}
.ws19{word-spacing:6.832397px;}
.ws197{word-spacing:6.874194px;}
.ws118{word-spacing:6.886195px;}
.ws15f{word-spacing:6.895764px;}
.ws44{word-spacing:6.993745px;}
.ws190{word-spacing:7.113296px;}
.wsf3{word-spacing:7.120613px;}
.ws1b5{word-spacing:7.370381px;}
.ws172{word-spacing:7.388748px;}
.ws1e9{word-spacing:7.414355px;}
.ws1e8{word-spacing:7.424179px;}
.ws1a1{word-spacing:7.531726px;}
.wsd8{word-spacing:7.591501px;}
.ws1a0{word-spacing:7.651277px;}
.ws1a6{word-spacing:7.711052px;}
.ws1cb{word-spacing:8.015962px;}
.ws1cc{word-spacing:8.069760px;}
.ws140{word-spacing:8.402400px;}
.ws1aa{word-spacing:8.433204px;}
.ws13f{word-spacing:8.483400px;}
.ws179{word-spacing:9.011988px;}
.ws20a{word-spacing:9.091930px;}
.ws178{word-spacing:9.126216px;}
.wsfa{word-spacing:9.155074px;}
.wsfb{word-spacing:9.191146px;}
.ws48{word-spacing:9.205442px;}
.ws1e7{word-spacing:9.333552px;}
.ws15e{word-spacing:9.733428px;}
.ws7{word-spacing:9.833058px;}
.wsc9{word-spacing:9.922157px;}
.wsca{word-spacing:9.925344px;}
.ws175{word-spacing:10.478916px;}
.ws1ec{word-spacing:11.136269px;}
.ws15d{word-spacing:11.176308px;}
.ws15c{word-spacing:11.230416px;}
.ws143{word-spacing:11.323800px;}
.wsea{word-spacing:11.341037px;}
.wseb{word-spacing:11.405966px;}
.ws84{word-spacing:11.620476px;}
.ws142{word-spacing:11.701800px;}
.ws8{word-spacing:11.841512px;}
.ws159{word-spacing:11.933820px;}
.ws1fa{word-spacing:12.266035px;}
.ws10d{word-spacing:12.636000px;}
.ws104{word-spacing:12.668486px;}
.ws10c{word-spacing:12.707280px;}
.ws10f{word-spacing:12.733200px;}
.ws103{word-spacing:12.747845px;}
.ws105{word-spacing:12.776702px;}
.ws10e{word-spacing:13.102560px;}
.ws149{word-spacing:13.489200px;}
.ws17c{word-spacing:13.514976px;}
.ws14a{word-spacing:13.527000px;}
.wsf7{word-spacing:13.938221px;}
.wsde{word-spacing:13.944571px;}
.ws107{word-spacing:15.381101px;}
.ws106{word-spacing:15.438816px;}
.ws14c{word-spacing:15.660000px;}
.ws14b{word-spacing:15.665400px;}
.wsa{word-spacing:16.067635px;}
.ws18{word-spacing:17.104155px;}
.ws1e4{word-spacing:18.130061px;}
.ws1f2{word-spacing:21.280430px;}
.ws6{word-spacing:22.339429px;}
.wsdf{word-spacing:24.370243px;}
.wse0{word-spacing:24.420744px;}
.ws170{word-spacing:26.025948px;}
.ws171{word-spacing:26.092080px;}
.wsc{word-spacing:26.791603px;}
.wse2{word-spacing:27.357005px;}
.wse3{word-spacing:27.472435px;}
.ws162{word-spacing:28.845576px;}
.ws108{word-spacing:31.115707px;}
.ws4d{word-spacing:40.378302px;}
.ws59{word-spacing:76.957141px;}
.ws51{word-spacing:76.959841px;}
.wsbb{word-spacing:78.052500px;}
.ws57{word-spacing:87.415141px;}
.ws4e{word-spacing:87.420541px;}
.wsc4{word-spacing:88.510500px;}
.ws55{word-spacing:92.649841px;}
.ws5b{word-spacing:106.637652px;}
.ws12c{word-spacing:107.005018px;}
.ws5a{word-spacing:112.380092px;}
.ws54{word-spacing:118.634250px;}
.ws11b{word-spacing:133.473830px;}
.ws50{word-spacing:152.684377px;}
.ws12b{word-spacing:162.309773px;}
.ws52{word-spacing:163.145077px;}
.ws12a{word-spacing:166.936435px;}
.ws123{word-spacing:188.801846px;}
.ws11a{word-spacing:189.319555px;}
.ws122{word-spacing:192.546778px;}
.ws121{word-spacing:202.228186px;}
.ws124{word-spacing:202.281984px;}
.wsb6{word-spacing:206.316000px;}
.ws120{word-spacing:214.955645px;}
.ws11f{word-spacing:215.731584px;}
.ws11d{word-spacing:228.428006px;}
.ws11e{word-spacing:229.127386px;}
.wsa2{word-spacing:233.215200px;}
.wsa0{word-spacing:237.089549px;}
.wsae{word-spacing:246.667200px;}
.wsaf{word-spacing:246.668400px;}
.wscb{word-spacing:250.566000px;}
.wsa4{word-spacing:253.386000px;}
.wsa9{word-spacing:253.387200px;}
.wsaa{word-spacing:253.392000px;}
.wsb4{word-spacing:253.393200px;}
.wsb8{word-spacing:253.551859px;}
.wsa6{word-spacing:266.839200px;}
.wsb2{word-spacing:392.990880px;}
.wsb5{word-spacing:396.861850px;}
.wsb3{word-spacing:406.223693px;}
.wsb0{word-spacing:406.444080px;}
.wsb1{word-spacing:413.167680px;}
.wsab{word-spacing:423.815846px;}
.wsad{word-spacing:426.614880px;}
.wsa8{word-spacing:428.740954px;}
.wsa1{word-spacing:432.212947px;}
.wsac{word-spacing:439.984685px;}
.wsa7{word-spacing:454.998192px;}
.wsa3{word-spacing:464.897203px;}
.wsa5{word-spacing:467.212666px;}
.ws129{word-spacing:1199.489126px;}
._7{margin-left:-35.544868px;}
._8{margin-left:-9.898906px;}
._c{margin-left:-7.038079px;}
._1{margin-left:-5.397215px;}
._10{margin-left:-4.202129px;}
._2{margin-left:-3.096367px;}
._0{margin-left:-1.507135px;}
._31{width:1.126370px;}
._9{width:2.995595px;}
._a{width:4.093662px;}
._3{width:9.706174px;}
._15{width:11.955150px;}
._5{width:12.971268px;}
._51{width:14.107042px;}
._e{width:15.493939px;}
._d{width:16.892698px;}
._53{width:17.945120px;}
._14{width:18.961610px;}
._f{width:20.175180px;}
._13{width:21.955482px;}
._1d{width:23.134331px;}
._18{width:24.206421px;}
._4{width:25.946136px;}
._1b{width:27.138122px;}
._1a{width:28.769474px;}
._50{width:30.114381px;}
._6{width:31.256572px;}
._1c{width:32.307797px;}
._33{width:33.396724px;}
._11{width:34.789399px;}
._12{width:36.998399px;}
._19{width:39.093242px;}
._54{width:61.868160px;}
._b{width:70.638860px;}
._26{width:82.723216px;}
._2d{width:83.727443px;}
._21{width:91.175461px;}
._2c{width:93.183916px;}
._30{width:102.389332px;}
._25{width:104.397786px;}
._2f{width:106.866511px;}
._27{width:109.586293px;}
._4c{width:110.770906px;}
._2b{width:114.858486px;}
._20{width:120.046993px;}
._4f{width:121.493290px;}
._1f{width:131.260864px;}
._4e{width:132.935846px;}
._4d{width:134.872589px;}
._24{width:139.169153px;}
._2a{width:149.629853px;}
._29{width:163.145077px;}
._28{width:173.605777px;}
._23{width:175.739760px;}
._2e{width:179.167484px;}
._4a{width:182.252995px;}
._22{width:189.634184px;}
._1e{width:195.025978px;}
._46{width:198.516096px;}
._4b{width:199.702320px;}
._45{width:205.999927px;}
._48{width:215.731584px;}
._47{width:229.181184px;}
._35{width:275.931994px;}
._43{width:277.462800px;}
._34{width:289.435392px;}
._42{width:304.362000px;}
._40{width:335.971008px;}
._41{width:339.898291px;}
._3e{width:349.474406px;}
._3f{width:356.199206px;}
._3b{width:366.797491px;}
._3d{width:369.595008px;}
._3a{width:371.746944px;}
._36{width:375.596489px;}
._3c{width:382.990810px;}
._37{width:387.725069px;}
._39{width:398.000563px;}
._38{width:410.212800px;}
._49{width:664.111794px;}
._16{width:825.931225px;}
._32{width:1997.393215px;}
._52{width:2354.185211px;}
._17{width:2378.095211px;}
._44{width:2398.339378px;}
.fc5{color:rgb(8,117,183);}
.fc4{color:rgb(53,30,58);}
.fc6{color:transparent;}
.fc3{color:rgb(90,40,100);}
.fc2{color:rgb(14,15,14);}
.fc1{color:rgb(72,62,33);}
.fc0{color:rgb(0,0,0);}
.fs1a{font-size:22.083600px;}
.fsc{font-size:29.887800px;}
.fsb{font-size:31.143000px;}
.fs14{font-size:33.106200px;}
.fs12{font-size:33.114000px;}
.fs10{font-size:33.120000px;}
.fs17{font-size:33.123000px;}
.fs19{font-size:33.126000px;}
.fs7{font-size:35.865600px;}
.fs13{font-size:36.189600px;}
.fs18{font-size:36.199800px;}
.fs20{font-size:39.744000px;}
.fs0{font-size:41.842800px;}
.fs15{font-size:42.173400px;}
.fs11{font-size:42.241200px;}
.fs1e{font-size:43.200000px;}
.fsa{font-size:43.600200px;}
.fs6{font-size:45.429600px;}
.fs21{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fsd{font-size:47.880000px;}
.fs1{font-size:52.914960px;}
.fs9{font-size:53.798400px;}
.fsf{font-size:54.000000px;}
.fs1b{font-size:56.058000px;}
.fs2{font-size:56.694600px;}
.fs1c{font-size:57.456000px;}
.fs4{font-size:59.775600px;}
.fse{font-size:60.120000px;}
.fs1f{font-size:64.800000px;}
.fs3{font-size:68.033520px;}
.fs1d{font-size:72.144000px;}
.fs16{font-size:72.402000px;}
.fs5{font-size:107.596800px;}
.y1c1{bottom:-755.165550px;}
.y1e5{bottom:-688.821078px;}
.y1e4{bottom:-669.561636px;}
.y1e3{bottom:-650.392374px;}
.y1e2{bottom:-631.132932px;}
.y1e1{bottom:-611.873490px;}
.y1e0{bottom:-592.704228px;}
.y1df{bottom:-573.444786px;}
.y1de{bottom:-554.275524px;}
.y1dd{bottom:-535.016082px;}
.y1dc{bottom:-515.756640px;}
.y1db{bottom:-496.587378px;}
.y1da{bottom:-477.327936px;}
.y1d9{bottom:-458.158674px;}
.y1d8{bottom:-438.899232px;}
.y1d7{bottom:-419.639790px;}
.y1d6{bottom:-400.470528px;}
.y1d5{bottom:-381.211086px;}
.y1d4{bottom:-362.041824px;}
.y1d3{bottom:-342.782382px;}
.y1d2{bottom:-323.522940px;}
.y1d1{bottom:-304.353678px;}
.y1d0{bottom:-285.094236px;}
.y1cf{bottom:-265.924974px;}
.yc1{bottom:-250.219050px;}
.y1ce{bottom:-242.165550px;}
.y1cd{bottom:-205.356900px;}
.y1cc{bottom:-187.986450px;}
.yd1{bottom:-177.859950px;}
.y14b{bottom:-172.191060px;}
.y1cb{bottom:-170.706450px;}
.y1ca{bottom:-153.336000px;}
.yd0{bottom:-142.580400px;}
.y1c9{bottom:-136.056000px;}
.ycf{bottom:-125.209950px;}
.y1c8{bottom:-118.776000px;}
.yce{bottom:-107.839500px;}
.y1c7{bottom:-101.496000px;}
.y170{bottom:-90.759600px;}
.y171{bottom:-90.758880px;}
.ycd{bottom:-90.559500px;}
.y1c6{bottom:-84.125550px;}
.ycc{bottom:-73.279500px;}
.y16f{bottom:-69.915060px;}
.y1c5{bottom:-66.845550px;}
.ycb{bottom:-55.999500px;}
.y1c4{bottom:-49.565550px;}
.y16e{bottom:-49.179060px;}
.yca{bottom:-38.629050px;}
.y1c3{bottom:-32.285550px;}
.y16d{bottom:-28.443060px;}
.yc9{bottom:-11.986035px;}
.y1c2{bottom:-9.785766px;}
.y16c{bottom:-1.549678px;}
.y0{bottom:0.000000px;}
.y1c{bottom:9.473101px;}
.ye9{bottom:12.310950px;}
.y1b{bottom:28.937869px;}
.y4d{bottom:31.890000px;}
.y1a{bottom:32.769195px;}
.yea{bottom:53.260950px;}
.yfc{bottom:54.520950px;}
.yfd{bottom:57.040950px;}
.ye4{bottom:79.899040px;}
.yfa{bottom:80.260950px;}
.yfb{bottom:82.690950px;}
.y4c{bottom:103.621500px;}
.y18{bottom:104.646000px;}
.y289{bottom:107.895000px;}
.y20b{bottom:112.011000px;}
.y147{bottom:112.041000px;}
.y110{bottom:115.350000px;}
.y235{bottom:117.355500px;}
.y83{bottom:117.802500px;}
.y25e{bottom:118.699500px;}
.y4b{bottom:122.449500px;}
.y17{bottom:122.535000px;}
.y288{bottom:125.470500px;}
.yde{bottom:128.141100px;}
.yf8{bottom:128.860950px;}
.y20a{bottom:130.840500px;}
.y146{bottom:130.870500px;}
.ye3{bottom:131.019422px;}
.yf9{bottom:131.380950px;}
.y2f5{bottom:133.719000px;}
.y10f{bottom:134.179500px;}
.y234{bottom:136.185000px;}
.y82{bottom:136.632000px;}
.ye8{bottom:136.691100px;}
.y2c0{bottom:137.170500px;}
.y25d{bottom:137.529000px;}
.y21c{bottom:138.426000px;}
.y16{bottom:140.422500px;}
.y4a{bottom:141.279000px;}
.y287{bottom:143.044500px;}
.y209{bottom:149.670000px;}
.y10e{bottom:149.932500px;}
.ye7{bottom:150.461100px;}
.y2f4{bottom:150.978000px;}
.y10d{bottom:153.009000px;}
.y145{bottom:154.183500px;}
.y1bd{bottom:154.284000px;}
.y2bf{bottom:154.431000px;}
.y233{bottom:155.013000px;}
.y81{bottom:155.461500px;}
.y25c{bottom:156.358500px;}
.y21b{bottom:157.255500px;}
.y15{bottom:158.310000px;}
.y49{bottom:160.108500px;}
.y286{bottom:160.618500px;}
.ye6{bottom:164.141100px;}
.ybd{bottom:167.956500px;}
.y2f3{bottom:168.238500px;}
.y208{bottom:168.499500px;}
.y144{bottom:169.875000px;}
.y2be{bottom:171.691500px;}
.y10c{bottom:171.837000px;}
.y232{bottom:173.842500px;}
.y1bc{bottom:174.010500px;}
.y80{bottom:174.291000px;}
.y188{bottom:174.952500px;}
.y25a{bottom:175.188000px;}
.y21a{bottom:176.085000px;}
.y14{bottom:176.199000px;}
.ye5{bottom:177.820950px;}
.y285{bottom:178.192500px;}
.y48{bottom:178.938000px;}
.y25b{bottom:180.613500px;}
.yf6{bottom:180.881100px;}
.ye2{bottom:182.139804px;}
.yf7{bottom:183.311100px;}
.y2f2{bottom:185.499000px;}
.ybc{bottom:186.786000px;}
.y207{bottom:187.329000px;}
.y2bd{bottom:188.952000px;}
.y10b{bottom:190.666500px;}
.y187{bottom:191.052000px;}
.y219{bottom:192.184500px;}
.y231{bottom:192.672000px;}
.y7f{bottom:193.120500px;}
.y186{bottom:193.782000px;}
.y259{bottom:194.017500px;}
.y13{bottom:194.086500px;}
.y1bb{bottom:194.334000px;}
.y218{bottom:194.914500px;}
.y284{bottom:195.766500px;}
.y47{bottom:197.767500px;}
.y2f1{bottom:202.759500px;}
.ybb{bottom:205.615500px;}
.y206{bottom:206.158500px;}
.y2bc{bottom:206.212500px;}
.y10a{bottom:209.496000px;}
.y143{bottom:210.537000px;}
.y230{bottom:211.501500px;}
.y7e{bottom:211.950000px;}
.y12{bottom:211.974000px;}
.y185{bottom:212.611500px;}
.y258{bottom:212.847000px;}
.y283{bottom:213.340500px;}
.y217{bottom:213.744000px;}
.y1b9{bottom:214.657500px;}
.y46{bottom:216.597000px;}
.y2f0{bottom:220.020000px;}
.y1ba{bottom:223.090500px;}
.y2bb{bottom:223.471500px;}
.yba{bottom:224.445000px;}
.y205{bottom:224.988000px;}
.y109{bottom:228.325500px;}
.y11{bottom:229.863000px;}
.y142{bottom:230.263500px;}
.y22f{bottom:230.331000px;}
.y7d{bottom:230.779500px;}
.yf4{bottom:230.830950px;}
.y184{bottom:231.441000px;}
.y257{bottom:231.676500px;}
.y216{bottom:232.573500px;}
.ye1{bottom:233.260186px;}
.yf5{bottom:233.260950px;}
.y1b8{bottom:234.384000px;}
.y45{bottom:235.426500px;}
.y2ef{bottom:237.280500px;}
.y282{bottom:239.881500px;}
.y2ba{bottom:240.732000px;}
.yb9{bottom:243.274500px;}
.y204{bottom:243.817500px;}
.y108{bottom:244.078500px;}
.y1b5{bottom:245.130000px;}
.y107{bottom:247.155000px;}
.y183{bottom:247.540500px;}
.y22e{bottom:249.160500px;}
.y7c{bottom:249.609000px;}
.y141{bottom:249.988500px;}
.y182{bottom:250.270500px;}
.y256{bottom:250.506000px;}
.y215{bottom:251.403000px;}
.y44{bottom:254.256000px;}
.y2ee{bottom:254.541000px;}
.y1b7{bottom:254.856000px;}
.y281{bottom:257.455500px;}
.y2b9{bottom:257.992500px;}
.yb8{bottom:262.104000px;}
.y203{bottom:262.647000px;}
.y106{bottom:265.984500px;}
.y22d{bottom:267.990000px;}
.y7b{bottom:268.438500px;}
.y181{bottom:269.100000px;}
.y255{bottom:269.335500px;}
.y140{bottom:269.715000px;}
.y214{bottom:270.232500px;}
.y2ed{bottom:271.801500px;}
.y43{bottom:273.085500px;}
.y2b8{bottom:275.253000px;}
.y1b6{bottom:275.329500px;}
.yb7{bottom:280.933500px;}
.y202{bottom:281.476500px;}
.yf2{bottom:281.590950px;}
.y280{bottom:283.995000px;}
.yf3{bottom:284.110950px;}
.ye0{bottom:284.380568px;}
.y180{bottom:285.199500px;}
.y7a{bottom:287.268000px;}
.y17f{bottom:287.929500px;}
.y254{bottom:288.165000px;}
.y213{bottom:289.062000px;}
.y13f{bottom:289.441500px;}
.y22c{bottom:291.303000px;}
.y42{bottom:291.915000px;}
.y2b7{bottom:292.513500px;}
.y10{bottom:297.166500px;}
.y105{bottom:299.550000px;}
.yb6{bottom:299.763000px;}
.y201{bottom:300.306000px;}
.y27f{bottom:301.570500px;}
.y17e{bottom:304.029000px;}
.y79{bottom:306.097500px;}
.y2ec{bottom:306.321000px;}
.y17d{bottom:306.759000px;}
.y253{bottom:306.994500px;}
.y212{bottom:307.891500px;}
.y1b4{bottom:308.208000px;}
.y13e{bottom:309.166500px;}
.y2b6{bottom:309.774000px;}
.yf{bottom:315.054000px;}
.y41{bottom:315.228000px;}
.yb5{bottom:318.592500px;}
.y104{bottom:318.783000px;}
.y200{bottom:319.135500px;}
.y2eb{bottom:323.581500px;}
.y22b{bottom:324.927000px;}
.y17b{bottom:325.588500px;}
.y252{bottom:325.824000px;}
.y211{bottom:326.719500px;}
.y2b5{bottom:327.034500px;}
.y1b3{bottom:327.439500px;}
.y27e{bottom:328.110000px;}
.y13d{bottom:328.893000px;}
.y78{bottom:329.410500px;}
.y17c{bottom:331.012500px;}
.yeb{bottom:332.890950px;}
.ye{bottom:332.943000px;}
.yf0{bottom:334.240950px;}
.ydf{bottom:335.500950px;}
.yf1{bottom:336.670950px;}
.yb4{bottom:337.422000px;}
.y1ff{bottom:337.965000px;}
.y103{bottom:338.016000px;}
.y2ea{bottom:340.842000px;}
.y22a{bottom:343.756500px;}
.y2b4{bottom:344.295000px;}
.y251{bottom:344.653500px;}
.y210{bottom:345.549000px;}
.y27d{bottom:345.684000px;}
.y13c{bottom:348.618000px;}
.y77{bottom:349.584000px;}
.yd{bottom:350.830500px;}
.yb3{bottom:356.251500px;}
.y1fe{bottom:356.794500px;}
.y102{bottom:357.249000px;}
.y2e9{bottom:358.102500px;}
.ydc{bottom:358.720950px;}
.y17a{bottom:359.154000px;}
.y2b3{bottom:361.555500px;}
.y229{bottom:362.586000px;}
.y27c{bottom:363.258000px;}
.y250{bottom:363.483000px;}
.y20f{bottom:364.378500px;}
.y1b2{bottom:364.545000px;}
.y13b{bottom:368.344500px;}
.yb2{bottom:375.079500px;}
.y2e8{bottom:375.363000px;}
.y1fd{bottom:375.624000px;}
.y101{bottom:376.482000px;}
.y179{bottom:378.387000px;}
.y2b2{bottom:378.814500px;}
.y1c0{bottom:378.924585px;}
.yc{bottom:379.179000px;}
.y27b{bottom:380.832000px;}
.y228{bottom:381.415500px;}
.y24f{bottom:382.312500px;}
.y76{bottom:383.208000px;}
.y1b1{bottom:383.374500px;}
.y13a{bottom:388.071000px;}
.y1bf{bottom:388.554450px;}
.y40{bottom:388.791000px;}
.y2e7{bottom:392.623500px;}
.yb1{bottom:393.909000px;}
.y1fc{bottom:394.453500px;}
.y100{bottom:395.715000px;}
.y2b1{bottom:396.075000px;}
.y178{bottom:397.620000px;}
.y27a{bottom:398.407500px;}
.y20e{bottom:399.307500px;}
.y227{bottom:400.245000px;}
.ydb{bottom:401.740950px;}
.y75{bottom:402.037500px;}
.y1b0{bottom:402.204000px;}
.y24e{bottom:405.624000px;}
.yb{bottom:406.033500px;}
.y139{bottom:407.796000px;}
.y3f{bottom:408.247500px;}
.y2e6{bottom:409.884000px;}
.yff{bottom:412.006500px;}
.yb0{bottom:412.738500px;}
.y1fb{bottom:413.283000px;}
.y2b0{bottom:413.335500px;}
.yfe{bottom:414.948000px;}
.y279{bottom:415.981500px;}
.y177{bottom:416.853000px;}
.y226{bottom:419.074500px;}
.y74{bottom:420.867000px;}
.y1ae{bottom:421.033500px;}
.ya{bottom:423.921000px;}
.y1af{bottom:426.457500px;}
.y2e5{bottom:427.144500px;}
.y138{bottom:427.522500px;}
.y3e{bottom:427.705500px;}
.y2af{bottom:430.596000px;}
.yaf{bottom:431.568000px;}
.y1fa{bottom:432.112500px;}
.y176{bottom:433.462500px;}
.y278{bottom:433.555500px;}
.yd6{bottom:433.603020px;}
.yef{bottom:435.220950px;}
.y175{bottom:436.086000px;}
.ybe{bottom:437.377500px;}
.y225{bottom:437.904000px;}
.y24d{bottom:439.248000px;}
.y73{bottom:439.696500px;}
.y1ad{bottom:439.861500px;}
.y9{bottom:441.810000px;}
.y2e4{bottom:444.403500px;}
.y137{bottom:447.249000px;}
.y2ae{bottom:447.856500px;}
.yae{bottom:450.397500px;}
.y1f9{bottom:450.942000px;}
.y174{bottom:455.319000px;}
.y224{bottom:456.733500px;}
.y24c{bottom:458.077500px;}
.y72{bottom:458.526000px;}
.y1ac{bottom:458.691000px;}
.y8{bottom:459.697500px;}
.y277{bottom:460.095000px;}
.y2e3{bottom:461.664000px;}
.y3d{bottom:465.094500px;}
.y2ad{bottom:465.117000px;}
.y136{bottom:466.974000px;}
.yad{bottom:469.227000px;}
.y1f8{bottom:469.771500px;}
.y173{bottom:474.550500px;}
.y223{bottom:475.563000px;}
.y24b{bottom:476.907000px;}
.y71{bottom:477.355500px;}
.y1ab{bottom:477.520500px;}
.y7{bottom:477.585000px;}
.y276{bottom:478.140000px;}
.y2e2{bottom:478.924500px;}
.y2ac{bottom:482.377500px;}
.y3c{bottom:484.552500px;}
.y135{bottom:486.700500px;}
.y1f7{bottom:488.601000px;}
.yac{bottom:492.540000px;}
.y172{bottom:493.783500px;}
.y222{bottom:494.392500px;}
.y6{bottom:495.474000px;}
.y24a{bottom:495.736500px;}
.y70{bottom:496.185000px;}
.y1aa{bottom:496.350000px;}
.yee{bottom:499.120950px;}
.y2ab{bottom:499.638000px;}
.yd5{bottom:500.292133px;}
.yd2{bottom:500.740950px;}
.y3b{bottom:504.009000px;}
.y134{bottom:506.427000px;}
.y1f6{bottom:507.430500px;}
.y221{bottom:513.222000px;}
.y5{bottom:513.361500px;}
.y2e1{bottom:513.445500px;}
.y275{bottom:514.117500px;}
.y249{bottom:514.566000px;}
.y6f{bottom:515.014500px;}
.y1a8{bottom:515.179500px;}
.y2aa{bottom:516.897000px;}
.y148{bottom:519.202500px;}
.y16b{bottom:519.333610px;}
.y1a9{bottom:520.605000px;}
.y3a{bottom:523.465500px;}
.y133{bottom:526.152000px;}
.y1f5{bottom:526.260000px;}
.y2e0{bottom:530.706000px;}
.yda{bottom:531.160950px;}
.y4{bottom:531.249000px;}
.y220{bottom:532.051500px;}
.y274{bottom:532.947000px;}
.y248{bottom:533.395500px;}
.y6e{bottom:533.844000px;}
.y1a7{bottom:534.009000px;}
.y2a9{bottom:534.157500px;}
.yab{bottom:534.936000px;}
.y39{bottom:540.300000px;}
.y16a{bottom:542.444940px;}
.y169{bottom:542.447381px;}
.y38{bottom:542.923500px;}
.yd9{bottom:543.940950px;}
.y130{bottom:544.978500px;}
.y132{bottom:546.625500px;}
.yaa{bottom:546.891000px;}
.y2df{bottom:547.966500px;}
.y3{bottom:549.138000px;}
.y1f4{bottom:549.571500px;}
.y21f{bottom:550.881000px;}
.y2a8{bottom:551.418000px;}
.y273{bottom:551.776500px;}
.y247{bottom:552.225000px;}
.y6d{bottom:552.673500px;}
.y1a6{bottom:552.838500px;}
.yd8{bottom:556.630950px;}
.ya9{bottom:558.846000px;}
.y12f{bottom:561.417000px;}
.y37{bottom:562.380000px;}
.y2de{bottom:565.227000px;}
.y168{bottom:565.450495px;}
.yed{bottom:565.810950px;}
.yd4{bottom:566.891838px;}
.y2{bottom:567.025500px;}
.y131{bottom:567.099000px;}
.y2a7{bottom:568.678500px;}
.yd7{bottom:569.320950px;}
.y272{bottom:570.606000px;}
.y246{bottom:571.054500px;}
.y6c{bottom:571.503000px;}
.y1a5{bottom:571.668000px;}
.y21e{bottom:574.192500px;}
.ya8{bottom:574.389000px;}
.y1f3{bottom:579.999000px;}
.y36{bottom:581.836500px;}
.y2dd{bottom:582.487500px;}
.y1{bottom:584.913000px;}
.y2a6{bottom:585.939000px;}
.y167{bottom:588.561826px;}
.y271{bottom:589.435500px;}
.y245{bottom:589.884000px;}
.ya7{bottom:589.930500px;}
.y6b{bottom:590.332500px;}
.y1a4{bottom:590.497500px;}
.y21d{bottom:594.367500px;}
.y12e{bottom:596.988000px;}
.y1f2{bottom:599.232000px;}
.y2dc{bottom:599.746500px;}
.y35{bottom:601.294500px;}
.y2a5{bottom:603.199500px;}
.ya6{bottom:605.472000px;}
.y270{bottom:608.265000px;}
.y243{bottom:608.713500px;}
.y6a{bottom:609.162000px;}
.y1a2{bottom:609.327000px;}
.y166{bottom:611.564940px;}
.y165{bottom:611.566279px;}
.y244{bottom:614.139000px;}
.y1a3{bottom:614.752500px;}
.y12d{bottom:616.221000px;}
.y2db{bottom:617.007000px;}
.y1f1{bottom:618.465000px;}
.y2a4{bottom:620.460000px;}
.y34{bottom:620.751000px;}
.ya5{bottom:621.013500px;}
.y242{bottom:627.543000px;}
.y69{bottom:627.991500px;}
.y1a1{bottom:628.156500px;}
.y2f8{bottom:629.710500px;}
.y26f{bottom:631.578000px;}
.y12c{bottom:632.511000px;}
.yec{bottom:632.950950px;}
.yd3{bottom:633.580950px;}
.y2da{bottom:634.267500px;}
.y164{bottom:634.677610px;}
.y12b{bottom:635.454000px;}
.ya4{bottom:636.555000px;}
.y1f0{bottom:637.698000px;}
.y2a3{bottom:637.720500px;}
.y33{bottom:640.209000px;}
.y240{bottom:646.372500px;}
.y68{bottom:646.821000px;}
.y2f7{bottom:646.969500px;}
.y1a0{bottom:646.986000px;}
.y2d9{bottom:651.528000px;}
.y12a{bottom:651.744000px;}
.y241{bottom:651.796500px;}
.ya3{bottom:652.096500px;}
.y129{bottom:654.685500px;}
.y2a2{bottom:654.981000px;}
.y1ef{bottom:656.931000px;}
.y163{bottom:657.788940px;}
.y162{bottom:657.789826px;}
.y32{bottom:659.665500px;}
.y2f6{bottom:664.230000px;}
.y23e{bottom:665.202000px;}
.y67{bottom:665.650500px;}
.y19f{bottom:665.815500px;}
.ydd{bottom:667.150950px;}
.ya2{bottom:667.638000px;}
.y2d8{bottom:668.788500px;}
.y23f{bottom:670.626000px;}
.y2a1{bottom:672.240000px;}
.y1ee{bottom:676.164000px;}
.y31{bottom:679.122000px;}
.y161{bottom:680.792940px;}
.y160{bottom:680.793610px;}
.ya1{bottom:683.181000px;}
.y23d{bottom:684.031500px;}
.y66{bottom:684.480000px;}
.y19d{bottom:684.645000px;}
.y2d7{bottom:686.049000px;}
.y2a0{bottom:689.500500px;}
.y19e{bottom:690.069000px;}
.y128{bottom:694.615500px;}
.y1ec{bottom:695.397000px;}
.y30{bottom:698.580000px;}
.ya0{bottom:698.722500px;}
.y26e{bottom:700.131000px;}
.y1ed{bottom:700.278000px;}
.y23c{bottom:702.861000px;}
.y65{bottom:703.309500px;}
.y19c{bottom:703.474500px;}
.y15f{bottom:703.904940px;}
.y15e{bottom:703.913029px;}
.y29f{bottom:706.761000px;}
.yc8{bottom:713.863767px;}
.y9f{bottom:714.264000px;}
.y127{bottom:714.340500px;}
.y1eb{bottom:714.630000px;}
.y2f{bottom:718.036500px;}
.y2d6{bottom:720.570000px;}
.y23b{bottom:721.690500px;}
.y64{bottom:722.139000px;}
.y19b{bottom:722.304000px;}
.y29e{bottom:724.021500px;}
.y15d{bottom:726.916144px;}
.y9d{bottom:730.404000px;}
.y1ea{bottom:731.239500px;}
.yc7{bottom:733.033029px;}
.y1e9{bottom:733.861500px;}
.y126{bottom:734.067000px;}
.y9e{bottom:736.381500px;}
.y2e{bottom:737.493000px;}
.y26d{bottom:737.790000px;}
.y2d5{bottom:737.829000px;}
.y19a{bottom:738.403500px;}
.y95{bottom:739.041000px;}
.y9b{bottom:739.350000px;}
.y23a{bottom:740.520000px;}
.y63{bottom:740.968500px;}
.y199{bottom:741.133500px;}
.y29d{bottom:741.282000px;}
.y96{bottom:741.753000px;}
.y9c{bottom:742.359000px;}
.y92{bottom:746.353500px;}
.y9a{bottom:749.505000px;}
.y15c{bottom:750.027474px;}
.y97{bottom:750.625500px;}
.y94{bottom:750.996000px;}
.y99{bottom:751.305000px;}
.y8f{bottom:752.059500px;}
.y8d{bottom:752.176500px;}
.yc6{bottom:752.292471px;}
.y1e8{bottom:753.094500px;}
.y125{bottom:753.792000px;}
.y2d4{bottom:755.089500px;}
.y91{bottom:758.308500px;}
.y8b{bottom:758.497500px;}
.y29c{bottom:758.542500px;}
.y239{bottom:759.349500px;}
.y62{bottom:759.798000px;}
.y198{bottom:759.963000px;}
.y93{bottom:762.951000px;}
.y98{bottom:763.260000px;}
.y8e{bottom:764.014500px;}
.y8c{bottom:764.131500px;}
.y8a{bottom:764.475000px;}
.y90{bottom:770.263500px;}
.yc5{bottom:771.461733px;}
.y1e6{bottom:772.327500px;}
.y2d3{bottom:772.350000px;}
.y15b{bottom:773.138804px;}
.y124{bottom:773.518500px;}
.y29b{bottom:775.803000px;}
.y1e7{bottom:777.210000px;}
.y238{bottom:778.179000px;}
.y61{bottom:778.627500px;}
.y197{bottom:778.792500px;}
.y2d{bottom:779.707500px;}
.y89{bottom:786.592500px;}
.y2d2{bottom:789.610500px;}
.yc4{bottom:790.721175px;}
.y2c{bottom:791.508000px;}
.y29a{bottom:793.063500px;}
.y123{bottom:793.245000px;}
.y1be{bottom:794.757000px;}
.y15a{bottom:796.143722px;}
.y26c{bottom:797.008500px;}
.y60{bottom:797.457000px;}
.y237{bottom:801.490500px;}
.y196{bottom:802.105500px;}
.y2d1{bottom:806.871000px;}
.y2b{bottom:807.648000px;}
.yc3{bottom:809.980617px;}
.y299{bottom:810.322500px;}
.y26b{bottom:812.761500px;}
.y122{bottom:812.970000px;}
.y26a{bottom:815.838000px;}
.y5f{bottom:816.286500px;}
.y88{bottom:816.840000px;}
.y159{bottom:819.255053px;}
.y2d0{bottom:824.131500px;}
.y298{bottom:827.583000px;}
.y2a{bottom:828.127500px;}
.yc2{bottom:829.151382px;}
.y121{bottom:832.696500px;}
.y269{bottom:834.667500px;}
.y5e{bottom:835.114500px;}
.y29{bottom:839.926500px;}
.y2cf{bottom:841.392000px;}
.y158{bottom:842.258167px;}
.y297{bottom:844.843500px;}
.y195{bottom:851.644500px;}
.y120{bottom:852.423000px;}
.y268{bottom:853.497000px;}
.y5d{bottom:853.944000px;}
.y2ce{bottom:858.652500px;}
.y28{bottom:860.406000px;}
.y296{bottom:862.104000px;}
.y157{bottom:865.369498px;}
.y11f{bottom:872.148000px;}
.y27{bottom:872.206500px;}
.y267{bottom:872.326500px;}
.y5c{bottom:872.773500px;}
.y2cd{bottom:875.913000px;}
.y295{bottom:879.364500px;}
.yc0{bottom:883.871085px;}
.y26{bottom:888.345000px;}
.y156{bottom:888.480828px;}
.y87{bottom:888.528000px;}
.y266{bottom:891.156000px;}
.y5b{bottom:891.603000px;}
.y11e{bottom:891.874500px;}
.y2cc{bottom:893.172000px;}
.ybf{bottom:893.500950px;}
.y294{bottom:896.625000px;}
.y194{bottom:900.960000px;}
.y25{bottom:904.485000px;}
.y236{bottom:907.356000px;}
.y24{bottom:908.824500px;}
.y265{bottom:909.984000px;}
.y5a{bottom:910.432500px;}
.y11d{bottom:911.601000px;}
.y293{bottom:913.885500px;}
.y155{bottom:916.883921px;}
.y2cb{bottom:927.693000px;}
.y264{bottom:928.813500px;}
.y59{bottom:929.262000px;}
.y292{bottom:931.146000px;}
.y11c{bottom:931.326000px;}
.y154{bottom:939.995251px;}
.y2ca{bottom:944.953500px;}
.y86{bottom:945.015000px;}
.y263{bottom:947.643000px;}
.y58{bottom:948.091500px;}
.y291{bottom:948.406500px;}
.y193{bottom:950.274000px;}
.y11b{bottom:951.052500px;}
.y22{bottom:952.791000px;}
.y23{bottom:958.215000px;}
.y2c9{bottom:962.214000px;}
.y85{bottom:963.844500px;}
.y290{bottom:965.665500px;}
.y57{bottom:966.921000px;}
.y11a{bottom:970.777500px;}
.y262{bottom:970.956000px;}
.y21{bottom:971.620500px;}
.y2c8{bottom:979.474500px;}
.y28f{bottom:982.926000px;}
.y153{bottom:984.706495px;}
.y56{bottom:985.750500px;}
.y119{bottom:990.504000px;}
.y2c7{bottom:996.735000px;}
.y18e{bottom:997.126500px;}
.y84{bottom:1001.503500px;}
.y55{bottom:1004.580000px;}
.y28e{bottom:1004.670000px;}
.y152{bottom:1007.709610px;}
.y20{bottom:1008.382500px;}
.y116{bottom:1009.330500px;}
.y118{bottom:1010.977500px;}
.y2c6{bottom:1013.995500px;}
.y192{bottom:1014.741000px;}
.y54{bottom:1023.409500px;}
.y115{bottom:1025.767500px;}
.y18d{bottom:1030.003500px;}
.y151{bottom:1030.820940px;}
.y150{bottom:1030.822765px;}
.y191{bottom:1031.179500px;}
.y2c5{bottom:1031.254500px;}
.y117{bottom:1031.451000px;}
.y18f{bottom:1035.738000px;}
.y1f{bottom:1036.626000px;}
.y28d{bottom:1038.294000px;}
.y53{bottom:1042.239000px;}
.y18c{bottom:1046.440500px;}
.y190{bottom:1047.618000px;}
.y261{bottom:1047.663000px;}
.y2c4{bottom:1048.515000px;}
.y18a{bottom:1049.427000px;}
.y14f{bottom:1053.825880px;}
.y28c{bottom:1055.868000px;}
.y52{bottom:1061.068500px;}
.y114{bottom:1061.340000px;}
.y18b{bottom:1062.879000px;}
.y1e{bottom:1064.871000px;}
.y2c3{bottom:1065.775500px;}
.y14e{bottom:1076.937210px;}
.y51{bottom:1079.898000px;}
.y113{bottom:1080.571500px;}
.y28b{bottom:1082.409000px;}
.y2c2{bottom:1083.036000px;}
.y260{bottom:1085.322000px;}
.y1d{bottom:1093.114500px;}
.y50{bottom:1098.727500px;}
.y112{bottom:1099.804500px;}
.y28a{bottom:1099.983000px;}
.y14d{bottom:1100.048540px;}
.y2c1{bottom:1100.296500px;}
.y20d{bottom:1102.053000px;}
.y25f{bottom:1104.151500px;}
.y20c{bottom:1114.827000px;}
.y189{bottom:1116.415500px;}
.y4f{bottom:1117.557000px;}
.y111{bottom:1119.037500px;}
.y14c{bottom:1123.053458px;}
.y19{bottom:1136.601000px;}
.y4e{bottom:1177.662000px;}
.y14a{bottom:1188.717102px;}
.y149{bottom:1200.272940px;}
.h2a{height:15.355003px;}
.h18{height:21.608879px;}
.h17{height:21.613242px;}
.h24{height:23.019155px;}
.h22{height:23.024578px;}
.h27{height:23.030836px;}
.h29{height:23.032922px;}
.h23{height:25.163081px;}
.h28{height:25.170173px;}
.h25{height:29.323692px;}
.h21{height:29.370834px;}
.h16{height:30.252344px;}
.h44{height:30.258539px;}
.hc{height:32.845601px;}
.h3b{height:32.852294px;}
.hd{height:33.821261px;}
.h4{height:35.876343px;}
.h14{height:36.805242px;}
.h3a{height:37.124156px;}
.h10{height:37.336090px;}
.h2b{height:37.658880px;}
.h2c{height:38.896243px;}
.h2d{height:38.904252px;}
.h5{height:39.402747px;}
.h2{height:39.457760px;}
.h37{height:40.352344px;}
.h3c{height:41.484266px;}
.h12{height:41.842920px;}
.h13{height:42.840113px;}
.hb{height:43.217759px;}
.h19{height:43.370195px;}
.h1a{height:43.376195px;}
.h7{height:43.875290px;}
.h1d{height:44.723848px;}
.he{height:45.094826px;}
.h6{height:46.126727px;}
.h2e{height:49.782539px;}
.h30{height:49.788539px;}
.h20{height:50.229492px;}
.h1f{height:50.440430px;}
.hf{height:50.731891px;}
.h3d{height:50.842243px;}
.h3{height:50.931027px;}
.h33{height:51.511891px;}
.h3e{height:51.613891px;}
.h2f{height:51.619891px;}
.h38{height:51.923953px;}
.h35{height:53.668617px;}
.h15{height:54.162344px;}
.h26{height:54.301500px;}
.ha{height:55.352206px;}
.h43{height:55.922168px;}
.h1e{height:56.157012px;}
.h11{height:56.368391px;}
.h32{height:58.981760px;}
.h31{height:58.987760px;}
.h39{height:60.528516px;}
.h41{height:63.157891px;}
.h36{height:67.388414px;}
.h8{height:77.792486px;}
.h9{height:78.115277px;}
.h1b{height:91.196195px;}
.h40{height:96.889891px;}
.h3f{height:99.139891px;}
.h42{height:337.744500px;}
.h34{height:489.535200px;}
.h1c{height:695.125500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:215.864690px;}
.w5{width:516.927000px;}
.w3{width:567.882000px;}
.w4{width:690.413400px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xb1{left:-235.047600px;}
.xd7{left:-208.146000px;}
.x7d{left:-205.984500px;}
.xd9{left:-12.576000px;}
.x7e{left:-10.414140px;}
.x0{left:0.000000px;}
.xda{left:19.284594px;}
.x7f{left:21.446454px;}
.x88{left:24.235500px;}
.x80{left:27.025500px;}
.x81{left:33.775500px;}
.x89{left:34.945500px;}
.x84{left:36.295500px;}
.xb4{left:37.871441px;}
.x8a{left:51.415500px;}
.x4{left:52.444500px;}
.x1{left:53.574000px;}
.x3{left:60.027581px;}
.x51{left:62.541000px;}
.x52{left:64.152000px;}
.x6a{left:66.804000px;}
.x69{left:69.418500px;}
.xd6{left:72.231000px;}
.x10f{left:85.848000px;}
.xb0{left:101.038500px;}
.x53{left:112.168500px;}
.xb5{left:115.520400px;}
.x54{left:116.536500px;}
.xb6{left:126.320400px;}
.xd3{left:135.924000px;}
.xd2{left:145.671000px;}
.x55{left:162.712500px;}
.x56{left:163.785000px;}
.x5{left:171.915000px;}
.x6{left:178.341000px;}
.x2{left:181.274369px;}
.xb8{left:182.372400px;}
.x59{left:211.426500px;}
.x58{left:215.484000px;}
.x57{left:219.391500px;}
.x5a{left:230.064000px;}
.x82{left:234.115500px;}
.x86{left:236.635500px;}
.x5b{left:240.693000px;}
.xf{left:248.526000px;}
.xd{left:249.591000px;}
.xe9{left:254.533500px;}
.xe8{left:258.240000px;}
.x44{left:260.395500px;}
.xbc{left:265.534500px;}
.x45{left:268.083000px;}
.xe{left:269.764500px;}
.x5c{left:271.477500px;}
.xc4{left:272.875500px;}
.xca{left:274.126500px;}
.x2e{left:276.480000px;}
.xc5{left:280.105500px;}
.x16{left:281.479500px;}
.x112{left:284.269500px;}
.x36{left:285.615000px;}
.xbe{left:288.880500px;}
.x2f{left:291.424500px;}
.x109{left:295.113000px;}
.xbf{left:298.111500px;}
.x37{left:300.559500px;}
.x10a{left:301.920000px;}
.xec{left:304.693500px;}
.xa8{left:306.774000px;}
.xed{left:308.505000px;}
.x46{left:309.738000px;}
.xe4{left:312.196500px;}
.x12{left:314.182500px;}
.xfd{left:315.255000px;}
.x10{left:316.485000px;}
.x47{left:321.171000px;}
.x32{left:323.460000px;}
.x2c{left:325.633500px;}
.x13{left:328.765500px;}
.x38{left:330.255000px;}
.x5e{left:332.281500px;}
.x93{left:334.425000px;}
.xaa{left:335.785500px;}
.x6d{left:337.146000px;}
.x33{left:338.404500px;}
.x2d{left:340.576500px;}
.x34{left:342.214500px;}
.xf6{left:343.387500px;}
.x39{left:345.199500px;}
.x5d{left:349.503000px;}
.x6e{left:352.090500px;}
.x48{left:353.472000px;}
.x35{left:357.159000px;}
.x11{left:359.899500px;}
.x49{left:361.158000px;}
.x10d{left:362.176500px;}
.x14{left:364.350000px;}
.xc0{left:365.836500px;}
.xd1{left:367.125000px;}
.x9e{left:368.766000px;}
.x76{left:370.996500px;}
.x15{left:372.658500px;}
.x9a{left:374.742000px;}
.x5f{left:376.321500px;}
.x17{left:379.227000px;}
.x1f{left:382.903500px;}
.x7{left:384.483000px;}
.x18{left:386.698500px;}
.xc3{left:388.419000px;}
.x20{left:390.376500px;}
.x10b{left:392.718000px;}
.x19{left:394.320000px;}
.xbd{left:395.478000px;}
.x60{left:398.109000px;}
.x100{left:399.309000px;}
.x1a{left:401.791500px;}
.x8{left:404.515500px;}
.x72{left:408.322500px;}
.xe5{left:409.399500px;}
.x101{left:410.545500px;}
.x4a{left:413.716500px;}
.x3d{left:414.960000px;}
.x106{left:418.237500px;}
.xef{left:419.391000px;}
.xac{left:420.949500px;}
.xa6{left:423.231000px;}
.x4f{left:425.179500px;}
.xf3{left:427.378500px;}
.x3e{left:429.904500px;}
.xad{left:435.132000px;}
.xa7{left:437.413500px;}
.x78{left:438.567000px;}
.x107{left:441.243000px;}
.xf4{left:442.323000px;}
.xf5{left:446.133000px;}
.x61{left:450.436500px;}
.x79{left:453.510000px;}
.x62{left:454.599000px;}
.xe6{left:457.132500px;}
.xf0{left:460.356000px;}
.x8e{left:461.359500px;}
.xc1{left:465.204000px;}
.x102{left:467.415000px;}
.x94{left:469.906500px;}
.x8f{left:474.808500px;}
.xb7{left:476.132400px;}
.xf1{left:477.321000px;}
.x23{left:480.321000px;}
.x95{left:483.355500px;}
.xaf{left:484.429500px;}
.x6f{left:487.123500px;}
.xf2{left:490.752000px;}
.x108{left:491.904000px;}
.x24{left:495.265500px;}
.x3b{left:497.367000px;}
.x63{left:501.684000px;}
.xdf{left:506.691000px;}
.x29{left:509.461500px;}
.x3a{left:510.552000px;}
.x3c{left:512.311500px;}
.xdb{left:515.109000px;}
.x2a{left:516.970500px;}
.xeb{left:519.246000px;}
.xd8{left:520.673730px;}
.xea{left:522.951000px;}
.x8b{left:524.298000px;}
.x7c{left:527.932500px;}
.xfb{left:529.218000px;}
.x2b{left:531.915000px;}
.x8c{left:533.559000px;}
.x40{left:536.457000px;}
.x85{left:537.595500px;}
.x83{left:539.395350px;}
.x87{left:541.015350px;}
.xfc{left:544.162500px;}
.x41{left:546.745500px;}
.x73{left:549.007500px;}
.xee{left:552.883500px;}
.xe0{left:554.929500px;}
.x64{left:556.315500px;}
.x9b{left:557.905500px;}
.x9f{left:560.139000px;}
.xd4{left:562.302000px;}
.x1b{left:564.709500px;}
.xba{left:566.636400px;}
.xe1{left:568.783500px;}
.xa9{left:570.946500px;}
.x1c{left:572.182500px;}
.x9{left:574.272000px;}
.xf8{left:579.033000px;}
.x6b{left:580.162500px;}
.xa{left:584.284500px;}
.x77{left:588.244500px;}
.xe2{left:591.079500px;}
.xcc{left:592.858500px;}
.xbb{left:596.877000px;}
.xcd{left:599.665500px;}
.x42{left:603.385500px;}
.xe3{left:606.024000px;}
.x65{left:607.564500px;}
.x43{left:611.073000px;}
.xae{left:612.129000px;}
.xf9{left:613.420500px;}
.x103{left:617.226000px;}
.x8d{left:618.889500px;}
.xfa{left:620.626500px;}
.x96{left:623.329500px;}
.xde{left:628.182000px;}
.xa1{left:633.918000px;}
.xf7{left:635.461500px;}
.x97{left:636.780000px;}
.x70{left:643.228500px;}
.xb2{left:644.612400px;}
.x4b{left:648.682500px;}
.xb3{left:651.200400px;}
.x66{left:655.318500px;}
.x4c{left:656.368500px;}
.x71{left:658.173000px;}
.xcf{left:659.272500px;}
.x90{left:662.550000px;}
.xd0{left:666.078000px;}
.x7a{left:667.885500px;}
.x104{left:674.953500px;}
.x25{left:678.208500px;}
.x105{left:681.759000px;}
.x7b{left:682.830000px;}
.xb9{left:685.866620px;}
.x26{left:693.153000px;}
.x27{left:696.964500px;}
.x4d{left:698.770500px;}
.xa2{left:702.093000px;}
.x67{left:706.677000px;}
.x4e{left:710.188500px;}
.x28{left:711.907500px;}
.xab{left:712.950000px;}
.xa3{left:714.472500px;}
.xa4{left:715.969500px;}
.x6c{left:720.009000px;}
.xc6{left:722.343000px;}
.x50{left:723.763500px;}
.xdd{left:724.911000px;}
.x21{left:726.510000px;}
.xa5{left:729.420000px;}
.x1d{left:732.424500px;}
.x22{left:733.983000px;}
.x111{left:738.358500px;}
.x1e{left:739.896000px;}
.xc2{left:745.776000px;}
.x110{left:747.934500px;}
.xe7{left:749.643000px;}
.x74{left:754.228500px;}
.x9c{left:759.060000px;}
.x98{left:762.913500px;}
.xa0{left:765.276000px;}
.x75{left:769.173000px;}
.x9d{left:772.510500px;}
.xc7{left:774.217500px;}
.x99{left:776.364000px;}
.x10c{left:779.076000px;}
.x91{left:780.405000px;}
.xc9{left:783.744000px;}
.x92{left:793.855500px;}
.xc8{left:795.261000px;}
.x10e{left:798.685500px;}
.xd5{left:803.812500px;}
.x68{left:805.939500px;}
.xb{left:808.546500px;}
.xdc{left:810.019500px;}
.xfe{left:813.412500px;}
.x30{left:817.237500px;}
.xc{left:818.559000px;}
.xff{left:823.701000px;}
.xcb{left:826.809000px;}
.x31{left:832.182000px;}
.x3f{left:833.838000px;}
.xce{left:836.970000px;}
@media print{
.vb{vertical-align:-37.237333pt;}
.vd{vertical-align:-29.984000pt;}
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v9{vertical-align:-8.485333pt;}
.v7{vertical-align:-6.400000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:10.618667pt;}
.v5{vertical-align:13.504000pt;}
.v4{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v6{vertical-align:21.253333pt;}
.vc{vertical-align:41.029333pt;}
.v8{vertical-align:42.506667pt;}
.ls88{letter-spacing:-1.654502pt;}
.lsb9{letter-spacing:-1.195200pt;}
.ls48{letter-spacing:-0.660840pt;}
.ls96{letter-spacing:-0.305280pt;}
.ls8b{letter-spacing:-0.269338pt;}
.lsba{letter-spacing:-0.230400pt;}
.ls4e{letter-spacing:-0.226729pt;}
.ls4d{letter-spacing:-0.192373pt;}
.ls8e{letter-spacing:-0.173146pt;}
.ls38{letter-spacing:-0.160320pt;}
.ls90{letter-spacing:-0.153907pt;}
.ls3f{letter-spacing:-0.153600pt;}
.ls46{letter-spacing:-0.147975pt;}
.ls4a{letter-spacing:-0.144799pt;}
.ls8d{letter-spacing:-0.141082pt;}
.ls95{letter-spacing:-0.121843pt;}
.ls3c{letter-spacing:-0.117568pt;}
.ls84{letter-spacing:-0.115430pt;}
.lsc0{letter-spacing:-0.112224pt;}
.ls85{letter-spacing:-0.109018pt;}
.ls43{letter-spacing:-0.105600pt;}
.lsbd{letter-spacing:-0.101536pt;}
.ls8a{letter-spacing:-0.096192pt;}
.lsb7{letter-spacing:-0.091200pt;}
.lsc5{letter-spacing:-0.090848pt;}
.ls82{letter-spacing:-0.089779pt;}
.lsc4{letter-spacing:-0.085504pt;}
.ls47{letter-spacing:-0.083638pt;}
.ls8c{letter-spacing:-0.083366pt;}
.ls4b{letter-spacing:-0.080444pt;}
.ls40{letter-spacing:-0.076800pt;}
.lsc3{letter-spacing:-0.074816pt;}
.ls87{letter-spacing:-0.070541pt;}
.lsbc{letter-spacing:-0.069472pt;}
.ls80{letter-spacing:-0.066394pt;}
.ls37{letter-spacing:-0.063840pt;}
.ls8f{letter-spacing:-0.057715pt;}
.ls49{letter-spacing:-0.054702pt;}
.ls89{letter-spacing:-0.051302pt;}
.ls45{letter-spacing:-0.048253pt;}
.ls3b{letter-spacing:-0.048096pt;}
.ls44{letter-spacing:-0.048000pt;}
.ls81{letter-spacing:-0.044890pt;}
.lsc1{letter-spacing:-0.042752pt;}
.ls92{letter-spacing:-0.038477pt;}
.ls3a{letter-spacing:-0.037408pt;}
.lsbe{letter-spacing:-0.032064pt;}
.ls98{letter-spacing:-0.028800pt;}
.ls86{letter-spacing:-0.025651pt;}
.lsb6{letter-spacing:-0.024000pt;}
.ls9b{letter-spacing:-0.023040pt;}
.lsbb{letter-spacing:-0.021376pt;}
.ls94{letter-spacing:-0.019238pt;}
.ls3d{letter-spacing:-0.019200pt;}
.ls97{letter-spacing:-0.017280pt;}
.lsc2{letter-spacing:-0.016032pt;}
.lsb5{letter-spacing:-0.014400pt;}
.ls83{letter-spacing:-0.012826pt;}
.ls39{letter-spacing:-0.010688pt;}
.lsb4{letter-spacing:-0.009600pt;}
.ls93{letter-spacing:-0.006413pt;}
.ls3e{letter-spacing:-0.004800pt;}
.ls16{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000044pt;}
.lsb0{letter-spacing:0.000125pt;}
.lsd{letter-spacing:0.000164pt;}
.lse3{letter-spacing:0.000403pt;}
.ls12{letter-spacing:0.000407pt;}
.lsc6{letter-spacing:0.000567pt;}
.lsca{letter-spacing:0.000600pt;}
.lsd1{letter-spacing:0.000711pt;}
.ls58{letter-spacing:0.000751pt;}
.lscc{letter-spacing:0.000921pt;}
.lsc8{letter-spacing:0.001024pt;}
.lsd6{letter-spacing:0.001026pt;}
.lsb1{letter-spacing:0.001263pt;}
.lsc9{letter-spacing:0.001408pt;}
.ls2{letter-spacing:0.001628pt;}
.lsd2{letter-spacing:0.001921pt;}
.lsb2{letter-spacing:0.002008pt;}
.ls1b{letter-spacing:0.002046pt;}
.ls60{letter-spacing:0.002099pt;}
.lsb3{letter-spacing:0.002133pt;}
.lse2{letter-spacing:0.002212pt;}
.lseb{letter-spacing:0.002670pt;}
.lsc{letter-spacing:0.002716pt;}
.lsea{letter-spacing:0.002746pt;}
.ls7f{letter-spacing:0.002797pt;}
.ls3{letter-spacing:0.002813pt;}
.lsa{letter-spacing:0.002926pt;}
.ls0{letter-spacing:0.002932pt;}
.lse{letter-spacing:0.002945pt;}
.lscd{letter-spacing:0.003150pt;}
.ls7{letter-spacing:0.003733pt;}
.lsc7{letter-spacing:0.004039pt;}
.ls6{letter-spacing:0.004237pt;}
.ls28{letter-spacing:0.004800pt;}
.ls6e{letter-spacing:0.006413pt;}
.ls9a{letter-spacing:0.007066pt;}
.ls91{letter-spacing:0.007680pt;}
.ls2a{letter-spacing:0.009600pt;}
.ls70{letter-spacing:0.012826pt;}
.ls29{letter-spacing:0.014400pt;}
.lsab{letter-spacing:0.016032pt;}
.ls77{letter-spacing:0.017280pt;}
.ls30{letter-spacing:0.018744pt;}
.ls71{letter-spacing:0.019238pt;}
.lsae{letter-spacing:0.021376pt;}
.ls7a{letter-spacing:0.023040pt;}
.lsa4{letter-spacing:0.024000pt;}
.ls6f{letter-spacing:0.025651pt;}
.ls24{letter-spacing:0.026720pt;}
.lsa2{letter-spacing:0.028800pt;}
.ls22{letter-spacing:0.029792pt;}
.ls26{letter-spacing:0.032064pt;}
.lsa6{letter-spacing:0.033600pt;}
.ls4c{letter-spacing:0.033739pt;}
.ls7b{letter-spacing:0.034560pt;}
.lsac{letter-spacing:0.037408pt;}
.ls75{letter-spacing:0.040320pt;}
.ls25{letter-spacing:0.042752pt;}
.lsa8{letter-spacing:0.043200pt;}
.ls68{letter-spacing:0.045965pt;}
.ls6a{letter-spacing:0.051302pt;}
.lsa1{letter-spacing:0.052800pt;}
.lsaa{letter-spacing:0.053440pt;}
.lsa7{letter-spacing:0.057600pt;}
.lsbf{letter-spacing:0.058784pt;}
.ls33{letter-spacing:0.061835pt;}
.ls2b{letter-spacing:0.062400pt;}
.ls6b{letter-spacing:0.064128pt;}
.ls2c{letter-spacing:0.067200pt;}
.ls78{letter-spacing:0.069120pt;}
.lsaf{letter-spacing:0.069472pt;}
.ls34{letter-spacing:0.070669pt;}
.ls32{letter-spacing:0.076551pt;}
.ls31{letter-spacing:0.079495pt;}
.lsa5{letter-spacing:0.081600pt;}
.ls2f{letter-spacing:0.091226pt;}
.ls2e{letter-spacing:0.091247pt;}
.ls35{letter-spacing:0.091281pt;}
.ls27{letter-spacing:0.096000pt;}
.ls74{letter-spacing:0.096192pt;}
.ls7c{letter-spacing:0.097920pt;}
.ls73{letter-spacing:0.102605pt;}
.ls76{letter-spacing:0.103680pt;}
.ls99{letter-spacing:0.109440pt;}
.lsa3{letter-spacing:0.110400pt;}
.lsad{letter-spacing:0.117568pt;}
.ls2d{letter-spacing:0.123908pt;}
.lsb8{letter-spacing:0.124800pt;}
.ls36{letter-spacing:0.127594pt;}
.ls6d{letter-spacing:0.128256pt;}
.ls79{letter-spacing:0.132480pt;}
.ls23{letter-spacing:0.148960pt;}
.lsa9{letter-spacing:0.158400pt;}
.ls6c{letter-spacing:0.160320pt;}
.ls21{letter-spacing:0.161728pt;}
.ls72{letter-spacing:0.166733pt;}
.ls7d{letter-spacing:0.172800pt;}
.ls69{letter-spacing:0.188966pt;}
.ls67{letter-spacing:0.204288pt;}
.ls1a{letter-spacing:0.319089pt;}
.ls5f{letter-spacing:0.442457pt;}
.ls1d{letter-spacing:0.447791pt;}
.ls19{letter-spacing:0.462180pt;}
.ls52{letter-spacing:0.570745pt;}
.ls53{letter-spacing:0.576078pt;}
.ls4f{letter-spacing:0.595447pt;}
.ls56{letter-spacing:0.596267pt;}
.ls64{letter-spacing:1.076267pt;}
.ls50{letter-spacing:2.656533pt;}
.ls8{letter-spacing:2.657067pt;}
.ls18{letter-spacing:2.990667pt;}
.ls42{letter-spacing:3.038400pt;}
.ls51{letter-spacing:3.118133pt;}
.ls17{letter-spacing:3.123467pt;}
.ls41{letter-spacing:3.681600pt;}
.ls9d{letter-spacing:3.994377pt;}
.ls5{letter-spacing:9.298933pt;}
.ls1e{letter-spacing:9.743791pt;}
.lsf{letter-spacing:10.623733pt;}
.ls15{letter-spacing:10.626533pt;}
.ls11{letter-spacing:10.629067pt;}
.ls4{letter-spacing:11.528267pt;}
.lse9{letter-spacing:11.717039pt;}
.lscf{letter-spacing:11.736804pt;}
.lsd0{letter-spacing:11.767676pt;}
.lsd3{letter-spacing:11.803330pt;}
.lsd9{letter-spacing:11.810512pt;}
.lsd5{letter-spacing:11.829152pt;}
.lsda{letter-spacing:11.841298pt;}
.lsd8{letter-spacing:11.867022pt;}
.ls7e{letter-spacing:11.890098pt;}
.lsce{letter-spacing:11.954133pt;}
.ls1c{letter-spacing:11.954270pt;}
.lscb{letter-spacing:11.956267pt;}
.lse7{letter-spacing:11.956888pt;}
.lsd7{letter-spacing:11.959467pt;}
.lse8{letter-spacing:12.031373pt;}
.lsdb{letter-spacing:12.050144pt;}
.lsde{letter-spacing:12.052889pt;}
.lse0{letter-spacing:12.082663pt;}
.lse6{letter-spacing:12.104179pt;}
.lsd4{letter-spacing:12.180027pt;}
.lsdc{letter-spacing:12.229082pt;}
.ls5c{letter-spacing:12.528078pt;}
.ls5a{letter-spacing:12.533411pt;}
.ls66{letter-spacing:12.699747pt;}
.ls9{letter-spacing:13.281867pt;}
.ls20{letter-spacing:13.283467pt;}
.ls62{letter-spacing:13.630933pt;}
.ls59{letter-spacing:14.613377pt;}
.lsdf{letter-spacing:14.779441pt;}
.lse4{letter-spacing:15.075350pt;}
.lse5{letter-spacing:15.187284pt;}
.ls55{letter-spacing:15.951940pt;}
.lsdd{letter-spacing:17.362447pt;}
.lse1{letter-spacing:18.528460pt;}
.ls61{letter-spacing:23.434710pt;}
.lsb{letter-spacing:51.035733pt;}
.ls10{letter-spacing:55.787733pt;}
.ls14{letter-spacing:55.926400pt;}
.ls13{letter-spacing:57.174803pt;}
.ls5d{letter-spacing:87.973867pt;}
.ls5e{letter-spacing:87.979200pt;}
.ls5b{letter-spacing:97.275200pt;}
.ls1f{letter-spacing:128.033867pt;}
.ls9c{letter-spacing:164.521600pt;}
.ls9f{letter-spacing:169.511526pt;}
.ls54{letter-spacing:249.145600pt;}
.ls65{letter-spacing:289.396267pt;}
.ls63{letter-spacing:330.325333pt;}
.ls57{letter-spacing:377.864267pt;}
.ls9e{letter-spacing:560.028049pt;}
.lsa0{letter-spacing:834.796860pt;}
.wscf{word-spacing:-64.128000pt;}
.ws130{word-spacing:-53.440000pt;}
.ws64{word-spacing:-48.000000pt;}
.wsda{word-spacing:-40.078876pt;}
.wsd2{word-spacing:-16.134605pt;}
.wsd0{word-spacing:-16.032000pt;}
.wsd3{word-spacing:-14.400000pt;}
.ws191{word-spacing:-13.283467pt;}
.wscd{word-spacing:-12.972288pt;}
.wsce{word-spacing:-12.768000pt;}
.ws12d{word-spacing:-12.124800pt;}
.ws66{word-spacing:-12.000000pt;}
.ws77{word-spacing:-11.955200pt;}
.ws12f{word-spacing:-10.804800pt;}
.ws61{word-spacing:-10.801728pt;}
.ws62{word-spacing:-10.640000pt;}
.ws16{word-spacing:-10.626800pt;}
.wsf{word-spacing:-10.095467pt;}
.ws1{word-spacing:-9.298400pt;}
.ws65{word-spacing:-7.360000pt;}
.ws6c{word-spacing:-7.217436pt;}
.ws6e{word-spacing:-7.191694pt;}
.ws69{word-spacing:-7.186450pt;}
.ws6d{word-spacing:-7.127338pt;}
.ws68{word-spacing:-7.122113pt;}
.ws72{word-spacing:-6.745926pt;}
.ws67{word-spacing:-6.743482pt;}
.ws6a{word-spacing:-6.741894pt;}
.ws6b{word-spacing:-6.733538pt;}
.ws6f{word-spacing:-6.730594pt;}
.ws71{word-spacing:-6.725314pt;}
.ws70{word-spacing:-6.716481pt;}
.ws75{word-spacing:-6.427916pt;}
.ws73{word-spacing:-4.563944pt;}
.ws74{word-spacing:-4.243977pt;}
.wsf9{word-spacing:-3.373133pt;}
.ws15b{word-spacing:-3.372064pt;}
.wsf8{word-spacing:-3.353894pt;}
.ws15a{word-spacing:-3.174336pt;}
.ws85{word-spacing:-2.960576pt;}
.ws5e{word-spacing:-2.762961pt;}
.ws194{word-spacing:-2.656693pt;}
.ws11c{word-spacing:-2.652000pt;}
.ws88{word-spacing:-2.185696pt;}
.ws89{word-spacing:-1.881088pt;}
.wsf2{word-spacing:-1.872538pt;}
.ws78{word-spacing:-1.817190pt;}
.wsef{word-spacing:-1.795584pt;}
.wsf0{word-spacing:-1.725043pt;}
.ws18f{word-spacing:-1.700284pt;}
.wsfd{word-spacing:-1.667328pt;}
.ws134{word-spacing:-1.625907pt;}
.wsf1{word-spacing:-1.551898pt;}
.ws139{word-spacing:-1.487748pt;}
.ws1c{word-spacing:-1.434624pt;}
.ws100{word-spacing:-1.397990pt;}
.ws1b{word-spacing:-1.386803pt;}
.ws19a{word-spacing:-1.381481pt;}
.ws184{word-spacing:-1.222079pt;}
.ws193{word-spacing:-1.168945pt;}
.ws8b{word-spacing:-1.159648pt;}
.ws153{word-spacing:-1.123200pt;}
.ws13a{word-spacing:-1.115811pt;}
.ws8c{word-spacing:-1.042080pt;}
.ws32{word-spacing:-1.009543pt;}
.ws132{word-spacing:-1.004237pt;}
.ws133{word-spacing:-0.956416pt;}
.ws3d{word-spacing:-0.956410pt;}
.ws5c{word-spacing:-0.850142pt;}
.ws155{word-spacing:-0.796800pt;}
.ws154{word-spacing:-0.777600pt;}
.ws199{word-spacing:-0.743874pt;}
.ws128{word-spacing:-0.717312pt;}
.ws45{word-spacing:-0.690740pt;}
.ws167{word-spacing:-0.619904pt;}
.ws8a{word-spacing:-0.593184pt;}
.wscc{word-spacing:-0.584473pt;}
.ws168{word-spacing:-0.577152pt;}
.ws7d{word-spacing:-0.573850pt;}
.ws96{word-spacing:-0.542400pt;}
.ws18a{word-spacing:-0.531339pt;}
.ws1b8{word-spacing:-0.526029pt;}
.ws94{word-spacing:-0.494400pt;}
.ws95{word-spacing:-0.489600pt;}
.ws137{word-spacing:-0.478205pt;}
.ws7f{word-spacing:-0.425071pt;}
.ws201{word-spacing:-0.382566pt;}
.ws10b{word-spacing:-0.378355pt;}
.ws38{word-spacing:-0.371937pt;}
.ws1bd{word-spacing:-0.334746pt;}
.ws3e{word-spacing:-0.318803pt;}
.wsdc{word-spacing:-0.296218pt;}
.ws7e{word-spacing:-0.286925pt;}
.ws169{word-spacing:-0.272544pt;}
.ws34{word-spacing:-0.265669pt;}
.ws82{word-spacing:-0.242592pt;}
.wsd5{word-spacing:-0.239104pt;}
.ws2c{word-spacing:-0.212535pt;}
.ws37{word-spacing:-0.201639pt;}
.ws1ab{word-spacing:-0.198714pt;}
.ws135{word-spacing:-0.191283pt;}
.ws1c9{word-spacing:-0.160719pt;}
.ws2b{word-spacing:-0.159402pt;}
.ws19f{word-spacing:-0.149228pt;}
.ws1e{word-spacing:-0.143462pt;}
.wsdd{word-spacing:-0.137894pt;}
.ws83{word-spacing:-0.110656pt;}
.ws4c{word-spacing:-0.106268pt;}
.ws1d2{word-spacing:-0.103619pt;}
.ws1f{word-spacing:-0.095642pt;}
.wsd4{word-spacing:-0.064371pt;}
.wsd1{word-spacing:-0.064128pt;}
.ws63{word-spacing:-0.053440pt;}
.wsd{word-spacing:-0.053134pt;}
.ws12e{word-spacing:-0.048000pt;}
.ws1a{word-spacing:-0.047821pt;}
.ws17{word-spacing:-0.042507pt;}
.ws3{word-spacing:-0.037194pt;}
.wsdb{word-spacing:-0.025536pt;}
.ws81{word-spacing:-0.017024pt;}
.ws1ce{word-spacing:-0.006972pt;}
.ws1d6{word-spacing:-0.006605pt;}
.ws1d4{word-spacing:-0.006050pt;}
.ws1da{word-spacing:-0.005999pt;}
.ws10{word-spacing:-0.004155pt;}
.ws1f3{word-spacing:-0.003379pt;}
.ws1f6{word-spacing:-0.003081pt;}
.ws200{word-spacing:-0.002449pt;}
.ws1fc{word-spacing:-0.002330pt;}
.ws12{word-spacing:-0.002318pt;}
.ws1c8{word-spacing:-0.002304pt;}
.ws1cf{word-spacing:-0.002159pt;}
.ws11{word-spacing:-0.002126pt;}
.ws1bc{word-spacing:-0.002048pt;}
.wse{word-spacing:-0.001941pt;}
.wsd9{word-spacing:-0.001067pt;}
.ws136{word-spacing:-0.000939pt;}
.ws1d7{word-spacing:-0.000717pt;}
.ws4{word-spacing:-0.000204pt;}
.ws2{word-spacing:0.000000pt;}
.ws19e{word-spacing:0.025296pt;}
.ws19d{word-spacing:0.034075pt;}
.ws22{word-spacing:0.047821pt;}
.ws35{word-spacing:0.053134pt;}
.wsec{word-spacing:0.076954pt;}
.ws1de{word-spacing:0.085259pt;}
.wsd6{word-spacing:0.095642pt;}
.ws9b{word-spacing:0.096000pt;}
.ws158{word-spacing:0.101536pt;}
.ws2d{word-spacing:0.106268pt;}
.ws3a{word-spacing:0.111880pt;}
.wsed{word-spacing:0.115430pt;}
.ws15{word-spacing:0.127522pt;}
.ws8d{word-spacing:0.128256pt;}
.ws1d{word-spacing:0.143462pt;}
.ws156{word-spacing:0.144000pt;}
.wsee{word-spacing:0.153907pt;}
.ws29{word-spacing:0.159402pt;}
.wsfc{word-spacing:0.160320pt;}
.ws157{word-spacing:0.177600pt;}
.ws79{word-spacing:0.191283pt;}
.ws16a{word-spacing:0.192384pt;}
.ws8e{word-spacing:0.197728pt;}
.ws1ca{word-spacing:0.207163pt;}
.ws14{word-spacing:0.212535pt;}
.ws23{word-spacing:0.239104pt;}
.ws1e0{word-spacing:0.258483pt;}
.ws13{word-spacing:0.265669pt;}
.ws1e1{word-spacing:0.286925pt;}
.ws60{word-spacing:0.318803pt;}
.ws1f0{word-spacing:0.334746pt;}
.ws41{word-spacing:0.371937pt;}
.ws17d{word-spacing:0.425071pt;}
.ws9d{word-spacing:0.430387pt;}
.ws53{word-spacing:0.451073pt;}
.ws4f{word-spacing:0.470612pt;}
.ws56{word-spacing:0.471546pt;}
.ws58{word-spacing:0.473012pt;}
.ws125{word-spacing:0.478205pt;}
.ws1df{word-spacing:0.478208pt;}
.ws148{word-spacing:0.480000pt;}
.ws147{word-spacing:0.494400pt;}
.wse6{word-spacing:0.500198pt;}
.wse7{word-spacing:0.513024pt;}
.ws9e{word-spacing:0.526029pt;}
.ws17f{word-spacing:0.531339pt;}
.wse8{word-spacing:0.557914pt;}
.wsc6{word-spacing:0.573577pt;}
.ws9c{word-spacing:0.573850pt;}
.wsc8{word-spacing:0.574541pt;}
.wsc5{word-spacing:0.574643pt;}
.wsc7{word-spacing:0.575360pt;}
.ws187{word-spacing:0.584473pt;}
.wsbe{word-spacing:0.593067pt;}
.wsbf{word-spacing:0.594159pt;}
.wsbd{word-spacing:0.596147pt;}
.wsc2{word-spacing:0.596156pt;}
.wsc0{word-spacing:0.596275pt;}
.wsbc{word-spacing:0.596386pt;}
.wsba{word-spacing:0.598400pt;}
.ws9f{word-spacing:0.598596pt;}
.wsb9{word-spacing:0.616627pt;}
.wsc1{word-spacing:0.617916pt;}
.wsc3{word-spacing:0.619264pt;}
.ws1d1{word-spacing:0.621670pt;}
.ws39{word-spacing:0.637606pt;}
.ws31{word-spacing:0.690740pt;}
.ws30{word-spacing:0.743874pt;}
.ws150{word-spacing:0.748800pt;}
.ws173{word-spacing:0.764192pt;}
.ws4b{word-spacing:0.797008pt;}
.ws174{word-spacing:0.839008pt;}
.ws43{word-spacing:0.850142pt;}
.ws76{word-spacing:0.860774pt;}
.ws49{word-spacing:0.903276pt;}
.ws21{word-spacing:0.908595pt;}
.ws138{word-spacing:0.956410pt;}
.ws18c{word-spacing:0.984776pt;}
.ws13b{word-spacing:1.009543pt;}
.ws86{word-spacing:1.042080pt;}
.ws1a7{word-spacing:1.062677pt;}
.ws151{word-spacing:1.075200pt;}
.ws152{word-spacing:1.089600pt;}
.wsb7{word-spacing:1.099878pt;}
.ws27{word-spacing:1.115811pt;}
.ws1a8{word-spacing:1.168945pt;}
.ws1d3{word-spacing:1.195520pt;}
.ws126{word-spacing:1.222079pt;}
.wsb{word-spacing:1.227389pt;}
.ws1a9{word-spacing:1.275213pt;}
.ws87{word-spacing:1.362720pt;}
.ws1c1{word-spacing:1.386803pt;}
.ws1c7{word-spacing:1.434624pt;}
.ws97{word-spacing:1.440000pt;}
.ws1ee{word-spacing:1.530266pt;}
.ws3c{word-spacing:1.540882pt;}
.ws5f{word-spacing:1.594016pt;}
.ws161{word-spacing:1.699392pt;}
.ws19b{word-spacing:1.700284pt;}
.ws206{word-spacing:1.721549pt;}
.ws13e{word-spacing:1.753418pt;}
.ws160{word-spacing:1.779552pt;}
.ws198{word-spacing:1.965953pt;}
.ws13c{word-spacing:2.019087pt;}
.ws16d{word-spacing:2.036064pt;}
.ws3f{word-spacing:2.072221pt;}
.ws1c4{word-spacing:2.104115pt;}
.ws1a5{word-spacing:2.125355pt;}
.wse9{word-spacing:2.141875pt;}
.ws1e6{word-spacing:2.151936pt;}
.ws192{word-spacing:2.178489pt;}
.ws1eb{word-spacing:2.199757pt;}
.ws5{word-spacing:2.231616pt;}
.ws0{word-spacing:2.232481pt;}
.ws16c{word-spacing:2.287232pt;}
.ws208{word-spacing:2.295398pt;}
.ws16b{word-spacing:2.356704pt;}
.ws141{word-spacing:2.371200pt;}
.ws46{word-spacing:2.391024pt;}
.ws188{word-spacing:2.497292pt;}
.ws1f9{word-spacing:2.534502pt;}
.ws13d{word-spacing:2.550426pt;}
.ws2f{word-spacing:2.550432pt;}
.ws1ff{word-spacing:2.582323pt;}
.ws209{word-spacing:2.626924pt;}
.ws1be{word-spacing:2.630144pt;}
.ws1c2{word-spacing:2.677965pt;}
.ws18e{word-spacing:2.709827pt;}
.ws24{word-spacing:2.713848pt;}
.ws1b4{word-spacing:2.724944pt;}
.ws1db{word-spacing:2.725786pt;}
.ws183{word-spacing:2.762961pt;}
.ws42{word-spacing:2.816095pt;}
.ws1ed{word-spacing:2.821427pt;}
.ws204{word-spacing:2.862106pt;}
.ws1d0{word-spacing:2.862251pt;}
.ws1d8{word-spacing:2.862319pt;}
.ws1dd{word-spacing:2.863138pt;}
.ws1f7{word-spacing:2.863625pt;}
.ws1c0{word-spacing:2.865434pt;}
.ws1f8{word-spacing:2.865732pt;}
.ws1ea{word-spacing:2.865963pt;}
.ws1d9{word-spacing:2.866987pt;}
.ws207{word-spacing:2.867345pt;}
.ws1ef{word-spacing:2.867405pt;}
.ws1c5{word-spacing:2.867840pt;}
.ws1c3{word-spacing:2.869248pt;}
.ws1e2{word-spacing:2.959078pt;}
.ws203{word-spacing:2.964163pt;}
.ws1dc{word-spacing:2.964890pt;}
.ws17e{word-spacing:2.975497pt;}
.ws176{word-spacing:2.976608pt;}
.ws7a{word-spacing:3.012710pt;}
.ws146{word-spacing:3.014400pt;}
.ws1fd{word-spacing:3.034049pt;}
.ws144{word-spacing:3.043200pt;}
.ws145{word-spacing:3.048000pt;}
.ws202{word-spacing:3.058152pt;}
.ws7b{word-spacing:3.060531pt;}
.ws5d{word-spacing:3.081764pt;}
.ws1b2{word-spacing:3.083216pt;}
.ws20b{word-spacing:3.108352pt;}
.wse1{word-spacing:3.123034pt;}
.ws1a4{word-spacing:3.134898pt;}
.ws25{word-spacing:3.188032pt;}
.ws1f5{word-spacing:3.203994pt;}
.ws2e{word-spacing:3.241166pt;}
.ws1fb{word-spacing:3.251814pt;}
.ws16e{word-spacing:3.281216pt;}
.ws16f{word-spacing:3.297248pt;}
.ws177{word-spacing:3.356032pt;}
.ws1d5{word-spacing:3.443098pt;}
.ws4a{word-spacing:3.453701pt;}
.ws1ba{word-spacing:3.490918pt;}
.wse4{word-spacing:3.494976pt;}
.ws181{word-spacing:3.506835pt;}
.ws1bf{word-spacing:3.538739pt;}
.ws18b{word-spacing:3.559969pt;}
.ws1f4{word-spacing:3.586560pt;}
.ws3b{word-spacing:3.613103pt;}
.ws9a{word-spacing:3.614400pt;}
.ws1ac{word-spacing:3.634381pt;}
.ws33{word-spacing:3.666237pt;}
.wse5{word-spacing:3.668122pt;}
.ws93{word-spacing:3.676800pt;}
.ws1ad{word-spacing:3.682202pt;}
.ws90{word-spacing:3.686400pt;}
.ws8f{word-spacing:3.700800pt;}
.ws1bb{word-spacing:3.730022pt;}
.ws92{word-spacing:3.758400pt;}
.ws1b6{word-spacing:3.777843pt;}
.wsd7{word-spacing:3.825638pt;}
.ws131{word-spacing:3.825664pt;}
.ws91{word-spacing:3.835200pt;}
.ws26{word-spacing:3.878772pt;}
.ws195{word-spacing:3.931906pt;}
.ws1b7{word-spacing:3.969126pt;}
.ws19c{word-spacing:3.985040pt;}
.wsf4{word-spacing:3.988762pt;}
.wsf5{word-spacing:4.084954pt;}
.ws36{word-spacing:4.091308pt;}
.wsf6{word-spacing:4.117018pt;}
.ws1b3{word-spacing:4.160410pt;}
.ws166{word-spacing:4.195040pt;}
.ws47{word-spacing:4.197575pt;}
.ws189{word-spacing:4.250709pt;}
.ws205{word-spacing:4.256051pt;}
.ws102{word-spacing:4.302989pt;}
.ws1e3{word-spacing:4.303872pt;}
.wsff{word-spacing:4.322227pt;}
.ws101{word-spacing:4.335053pt;}
.ws111{word-spacing:4.400640pt;}
.ws1af{word-spacing:4.447334pt;}
.ws80{word-spacing:4.463245pt;}
.ws165{word-spacing:4.515680pt;}
.ws1a2{word-spacing:4.516379pt;}
.ws17b{word-spacing:4.590496pt;}
.ws1c6{word-spacing:4.590797pt;}
.ws17a{word-spacing:4.606528pt;}
.ws180{word-spacing:4.622646pt;}
.ws28{word-spacing:4.675780pt;}
.ws7c{word-spacing:4.686438pt;}
.ws110{word-spacing:4.740480pt;}
.ws112{word-spacing:4.775040pt;}
.ws182{word-spacing:4.782048pt;}
.ws1b9{word-spacing:4.782080pt;}
.ws9{word-spacing:4.872362pt;}
.ws1fe{word-spacing:4.877722pt;}
.ws1a3{word-spacing:4.888316pt;}
.ws1b1{word-spacing:5.021184pt;}
.ws2a{word-spacing:5.047717pt;}
.ws116{word-spacing:5.080320pt;}
.ws113{word-spacing:5.091840pt;}
.ws20{word-spacing:5.116826pt;}
.ws127{word-spacing:5.153985pt;}
.ws1f1{word-spacing:5.212467pt;}
.ws196{word-spacing:5.313387pt;}
.ws119{word-spacing:5.316000pt;}
.ws18d{word-spacing:5.366521pt;}
.ws1e5{word-spacing:5.403750pt;}
.ws186{word-spacing:5.472788pt;}
.ws164{word-spacing:5.498976pt;}
.ws14f{word-spacing:5.544000pt;}
.ws163{word-spacing:5.552416pt;}
.ws185{word-spacing:5.579056pt;}
.ws114{word-spacing:5.592960pt;}
.ws1b0{word-spacing:5.595034pt;}
.ws117{word-spacing:5.598720pt;}
.ws115{word-spacing:5.604480pt;}
.ws1ae{word-spacing:5.642854pt;}
.ws1cd{word-spacing:5.690675pt;}
.ws109{word-spacing:5.867712pt;}
.ws10a{word-spacing:5.874125pt;}
.ws14d{word-spacing:5.884800pt;}
.ws40{word-spacing:5.950993pt;}
.ws99{word-spacing:5.966400pt;}
.wsfe{word-spacing:5.983142pt;}
.ws14e{word-spacing:6.009600pt;}
.ws98{word-spacing:6.024000pt;}
.ws19{word-spacing:6.073242pt;}
.ws197{word-spacing:6.110395pt;}
.ws118{word-spacing:6.121062pt;}
.ws15f{word-spacing:6.129568pt;}
.ws44{word-spacing:6.216662pt;}
.ws190{word-spacing:6.322930pt;}
.wsf3{word-spacing:6.329434pt;}
.ws1b5{word-spacing:6.551450pt;}
.ws172{word-spacing:6.567776pt;}
.ws1e9{word-spacing:6.590538pt;}
.ws1e8{word-spacing:6.599270pt;}
.ws1a1{word-spacing:6.694867pt;}
.wsd8{word-spacing:6.748001pt;}
.ws1a0{word-spacing:6.801135pt;}
.ws1a6{word-spacing:6.854269pt;}
.ws1cb{word-spacing:7.125299pt;}
.ws1cc{word-spacing:7.173120pt;}
.ws140{word-spacing:7.468800pt;}
.ws1aa{word-spacing:7.496181pt;}
.ws13f{word-spacing:7.540800pt;}
.ws179{word-spacing:8.010656pt;}
.ws20a{word-spacing:8.081715pt;}
.ws178{word-spacing:8.112192pt;}
.wsfa{word-spacing:8.137843pt;}
.wsfb{word-spacing:8.169907pt;}
.ws48{word-spacing:8.182615pt;}
.ws1e7{word-spacing:8.296490pt;}
.ws15e{word-spacing:8.651936pt;}
.ws7{word-spacing:8.740496pt;}
.wsc9{word-spacing:8.819695pt;}
.wsca{word-spacing:8.822528pt;}
.ws175{word-spacing:9.314592pt;}
.ws1ec{word-spacing:9.898906pt;}
.ws15d{word-spacing:9.934496pt;}
.ws15c{word-spacing:9.982592pt;}
.ws143{word-spacing:10.065600pt;}
.wsea{word-spacing:10.080922pt;}
.wseb{word-spacing:10.138637pt;}
.ws84{word-spacing:10.329312pt;}
.ws142{word-spacing:10.401600pt;}
.ws8{word-spacing:10.525789pt;}
.ws159{word-spacing:10.607840pt;}
.ws1fa{word-spacing:10.903142pt;}
.ws10d{word-spacing:11.232000pt;}
.ws104{word-spacing:11.260877pt;}
.ws10c{word-spacing:11.295360pt;}
.ws10f{word-spacing:11.318400pt;}
.ws103{word-spacing:11.331418pt;}
.ws105{word-spacing:11.357069pt;}
.ws10e{word-spacing:11.646720pt;}
.ws149{word-spacing:11.990400pt;}
.ws17c{word-spacing:12.013312pt;}
.ws14a{word-spacing:12.024000pt;}
.wsf7{word-spacing:12.389530pt;}
.wsde{word-spacing:12.395174pt;}
.ws107{word-spacing:13.672090pt;}
.ws106{word-spacing:13.723392pt;}
.ws14c{word-spacing:13.920000pt;}
.ws14b{word-spacing:13.924800pt;}
.wsa{word-spacing:14.282342pt;}
.ws18{word-spacing:15.203693pt;}
.ws1e4{word-spacing:16.115610pt;}
.ws1f2{word-spacing:18.915938pt;}
.ws6{word-spacing:19.857270pt;}
.wsdf{word-spacing:21.662438pt;}
.wse0{word-spacing:21.707328pt;}
.ws170{word-spacing:23.134176pt;}
.ws171{word-spacing:23.192960pt;}
.wsc{word-spacing:23.814758pt;}
.wse2{word-spacing:24.317338pt;}
.wse3{word-spacing:24.419942pt;}
.ws162{word-spacing:25.640512pt;}
.ws108{word-spacing:27.658406pt;}
.ws4d{word-spacing:35.891824pt;}
.ws59{word-spacing:68.406348pt;}
.ws51{word-spacing:68.408748pt;}
.wsbb{word-spacing:69.380000pt;}
.ws57{word-spacing:77.702348pt;}
.ws4e{word-spacing:77.707148pt;}
.wsc4{word-spacing:78.676000pt;}
.ws55{word-spacing:82.355414pt;}
.ws5b{word-spacing:94.789024pt;}
.ws12c{word-spacing:95.115571pt;}
.ws5a{word-spacing:99.893415pt;}
.ws54{word-spacing:105.452667pt;}
.ws11b{word-spacing:118.643405pt;}
.ws50{word-spacing:135.719446pt;}
.ws12b{word-spacing:144.275354pt;}
.ws52{word-spacing:145.017846pt;}
.ws12a{word-spacing:148.387942pt;}
.ws123{word-spacing:167.823863pt;}
.ws11a{word-spacing:168.284049pt;}
.ws122{word-spacing:171.152691pt;}
.ws121{word-spacing:179.758387pt;}
.ws124{word-spacing:179.806208pt;}
.wsb6{word-spacing:183.392000pt;}
.ws120{word-spacing:191.071684pt;}
.ws11f{word-spacing:191.761408pt;}
.ws11d{word-spacing:203.047117pt;}
.ws11e{word-spacing:203.668787pt;}
.wsa2{word-spacing:207.302400pt;}
.wsa0{word-spacing:210.746266pt;}
.wsae{word-spacing:219.259733pt;}
.wsaf{word-spacing:219.260800pt;}
.wscb{word-spacing:222.725333pt;}
.wsa4{word-spacing:225.232000pt;}
.wsa9{word-spacing:225.233067pt;}
.wsaa{word-spacing:225.237333pt;}
.wsb4{word-spacing:225.238400pt;}
.wsb8{word-spacing:225.379430pt;}
.wsa6{word-spacing:237.190400pt;}
.wsb2{word-spacing:349.325227pt;}
.wsb5{word-spacing:352.766089pt;}
.wsb3{word-spacing:361.087727pt;}
.wsb0{word-spacing:361.283627pt;}
.wsb1{word-spacing:367.260160pt;}
.wsab{word-spacing:376.725197pt;}
.wsad{word-spacing:379.213227pt;}
.wsa8{word-spacing:381.103070pt;}
.wsa1{word-spacing:384.189286pt;}
.wsac{word-spacing:391.097498pt;}
.wsa7{word-spacing:404.442837pt;}
.wsa3{word-spacing:413.241958pt;}
.wsa5{word-spacing:415.300147pt;}
.ws129{word-spacing:1066.212557pt;}
._7{margin-left:-31.595439pt;}
._8{margin-left:-8.799027pt;}
._c{margin-left:-6.256070pt;}
._1{margin-left:-4.797524pt;}
._10{margin-left:-3.735226pt;}
._2{margin-left:-2.752326pt;}
._0{margin-left:-1.339676pt;}
._31{width:1.001218pt;}
._9{width:2.662751pt;}
._a{width:3.638811pt;}
._3{width:8.627710pt;}
._15{width:10.626800pt;}
._5{width:11.530016pt;}
._51{width:12.539593pt;}
._e{width:13.772390pt;}
._d{width:15.015731pt;}
._53{width:15.951218pt;}
._14{width:16.854765pt;}
._f{width:17.933493pt;}
._13{width:19.515984pt;}
._1d{width:20.563850pt;}
._18{width:21.516819pt;}
._4{width:23.063232pt;}
._1b{width:24.122775pt;}
._1a{width:25.572866pt;}
._50{width:26.768339pt;}
._6{width:27.783619pt;}
._1c{width:28.718042pt;}
._33{width:29.685977pt;}
._11{width:30.923910pt;}
._12{width:32.887466pt;}
._19{width:34.749549pt;}
._54{width:54.993920pt;}
._b{width:62.790097pt;}
._26{width:73.531747pt;}
._2d{width:74.424394pt;}
._21{width:81.044854pt;}
._2c{width:82.830147pt;}
._30{width:91.012739pt;}
._25{width:92.798032pt;}
._2f{width:94.992454pt;}
._27{width:97.410038pt;}
._4c{width:98.463027pt;}
._2b{width:102.096432pt;}
._20{width:106.708438pt;}
._4f{width:107.994035pt;}
._1f{width:116.676323pt;}
._4e{width:118.165197pt;}
._4d{width:119.886746pt;}
._24{width:123.705914pt;}
._2a{width:133.004314pt;}
._29{width:145.017846pt;}
._28{width:154.316246pt;}
._23{width:156.213120pt;}
._2e{width:159.259986pt;}
._4a{width:162.002662pt;}
._22{width:168.563719pt;}
._1e{width:173.356425pt;}
._46{width:176.458752pt;}
._4b{width:177.513173pt;}
._45{width:183.111046pt;}
._48{width:191.761408pt;}
._47{width:203.716608pt;}
._35{width:245.272883pt;}
._43{width:246.633600pt;}
._34{width:257.275904pt;}
._42{width:270.544000pt;}
._40{width:298.640896pt;}
._41{width:302.131814pt;}
._3e{width:310.643917pt;}
._3f{width:316.621517pt;}
._3b{width:326.042214pt;}
._3d{width:328.528896pt;}
._3a{width:330.441728pt;}
._36{width:333.863546pt;}
._3c{width:340.436275pt;}
._37{width:344.644506pt;}
._39{width:353.778278pt;}
._38{width:364.633600pt;}
._49{width:590.321595pt;}
._16{width:734.161089pt;}
._32{width:1775.460636pt;}
._52{width:2092.609076pt;}
._17{width:2113.862410pt;}
._44{width:2131.857225pt;}
.fs1a{font-size:19.629867pt;}
.fsc{font-size:26.566933pt;}
.fsb{font-size:27.682667pt;}
.fs14{font-size:29.427733pt;}
.fs12{font-size:29.434667pt;}
.fs10{font-size:29.440000pt;}
.fs17{font-size:29.442667pt;}
.fs19{font-size:29.445333pt;}
.fs7{font-size:31.880533pt;}
.fs13{font-size:32.168533pt;}
.fs18{font-size:32.177600pt;}
.fs20{font-size:35.328000pt;}
.fs0{font-size:37.193600pt;}
.fs15{font-size:37.487467pt;}
.fs11{font-size:37.547733pt;}
.fs1e{font-size:38.400000pt;}
.fsa{font-size:38.755733pt;}
.fs6{font-size:40.381867pt;}
.fs21{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fsd{font-size:42.560000pt;}
.fs1{font-size:47.035520pt;}
.fs9{font-size:47.820800pt;}
.fsf{font-size:48.000000pt;}
.fs1b{font-size:49.829333pt;}
.fs2{font-size:50.395200pt;}
.fs1c{font-size:51.072000pt;}
.fs4{font-size:53.133867pt;}
.fse{font-size:53.440000pt;}
.fs1f{font-size:57.600000pt;}
.fs3{font-size:60.474240pt;}
.fs1d{font-size:64.128000pt;}
.fs16{font-size:64.357333pt;}
.fs5{font-size:95.641600pt;}
.y1c1{bottom:-671.258267pt;}
.y1e5{bottom:-612.285403pt;}
.y1e4{bottom:-595.165899pt;}
.y1e3{bottom:-578.126555pt;}
.y1e2{bottom:-561.007051pt;}
.y1e1{bottom:-543.887547pt;}
.y1e0{bottom:-526.848203pt;}
.y1df{bottom:-509.728699pt;}
.y1de{bottom:-492.689355pt;}
.y1dd{bottom:-475.569851pt;}
.y1dc{bottom:-458.450347pt;}
.y1db{bottom:-441.411003pt;}
.y1da{bottom:-424.291499pt;}
.y1d9{bottom:-407.252155pt;}
.y1d8{bottom:-390.132651pt;}
.y1d7{bottom:-373.013147pt;}
.y1d6{bottom:-355.973803pt;}
.y1d5{bottom:-338.854299pt;}
.y1d4{bottom:-321.814955pt;}
.y1d3{bottom:-304.695451pt;}
.y1d2{bottom:-287.575947pt;}
.y1d1{bottom:-270.536603pt;}
.y1d0{bottom:-253.417099pt;}
.y1cf{bottom:-236.377755pt;}
.yc1{bottom:-222.416933pt;}
.y1ce{bottom:-215.258267pt;}
.y1cd{bottom:-182.539467pt;}
.y1cc{bottom:-167.099067pt;}
.yd1{bottom:-158.097733pt;}
.y14b{bottom:-153.058720pt;}
.y1cb{bottom:-151.739067pt;}
.y1ca{bottom:-136.298667pt;}
.yd0{bottom:-126.738133pt;}
.y1c9{bottom:-120.938667pt;}
.ycf{bottom:-111.297733pt;}
.y1c8{bottom:-105.578667pt;}
.yce{bottom:-95.857333pt;}
.y1c7{bottom:-90.218667pt;}
.y170{bottom:-80.675200pt;}
.y171{bottom:-80.674560pt;}
.ycd{bottom:-80.497333pt;}
.y1c6{bottom:-74.778267pt;}
.ycc{bottom:-65.137333pt;}
.y16f{bottom:-62.146720pt;}
.y1c5{bottom:-59.418267pt;}
.ycb{bottom:-49.777333pt;}
.y1c4{bottom:-44.058267pt;}
.y16e{bottom:-43.714720pt;}
.yca{bottom:-34.336933pt;}
.y1c3{bottom:-28.698267pt;}
.y16d{bottom:-25.282720pt;}
.yc9{bottom:-10.654253pt;}
.y1c2{bottom:-8.698459pt;}
.y16c{bottom:-1.377491pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:8.420534pt;}
.ye9{bottom:10.943067pt;}
.y1b{bottom:25.722550pt;}
.y4d{bottom:28.346667pt;}
.y1a{bottom:29.128174pt;}
.yea{bottom:47.343067pt;}
.yfc{bottom:48.463067pt;}
.yfd{bottom:50.703067pt;}
.ye4{bottom:71.021369pt;}
.yfa{bottom:71.343067pt;}
.yfb{bottom:73.503067pt;}
.y4c{bottom:92.108000pt;}
.y18{bottom:93.018667pt;}
.y289{bottom:95.906667pt;}
.y20b{bottom:99.565333pt;}
.y147{bottom:99.592000pt;}
.y110{bottom:102.533333pt;}
.y235{bottom:104.316000pt;}
.y83{bottom:104.713333pt;}
.y25e{bottom:105.510667pt;}
.y4b{bottom:108.844000pt;}
.y17{bottom:108.920000pt;}
.y288{bottom:111.529333pt;}
.yde{bottom:113.903200pt;}
.yf8{bottom:114.543067pt;}
.y20a{bottom:116.302667pt;}
.y146{bottom:116.329333pt;}
.ye3{bottom:116.461708pt;}
.yf9{bottom:116.783067pt;}
.y2f5{bottom:118.861333pt;}
.y10f{bottom:119.270667pt;}
.y234{bottom:121.053333pt;}
.y82{bottom:121.450667pt;}
.ye8{bottom:121.503200pt;}
.y2c0{bottom:121.929333pt;}
.y25d{bottom:122.248000pt;}
.y21c{bottom:123.045333pt;}
.y16{bottom:124.820000pt;}
.y4a{bottom:125.581333pt;}
.y287{bottom:127.150667pt;}
.y209{bottom:133.040000pt;}
.y10e{bottom:133.273333pt;}
.ye7{bottom:133.743200pt;}
.y2f4{bottom:134.202667pt;}
.y10d{bottom:136.008000pt;}
.y145{bottom:137.052000pt;}
.y1bd{bottom:137.141333pt;}
.y2bf{bottom:137.272000pt;}
.y233{bottom:137.789333pt;}
.y81{bottom:138.188000pt;}
.y25c{bottom:138.985333pt;}
.y21b{bottom:139.782667pt;}
.y15{bottom:140.720000pt;}
.y49{bottom:142.318667pt;}
.y286{bottom:142.772000pt;}
.ye6{bottom:145.903200pt;}
.ybd{bottom:149.294667pt;}
.y2f3{bottom:149.545333pt;}
.y208{bottom:149.777333pt;}
.y144{bottom:151.000000pt;}
.y2be{bottom:152.614667pt;}
.y10c{bottom:152.744000pt;}
.y232{bottom:154.526667pt;}
.y1bc{bottom:154.676000pt;}
.y80{bottom:154.925333pt;}
.y188{bottom:155.513333pt;}
.y25a{bottom:155.722667pt;}
.y21a{bottom:156.520000pt;}
.y14{bottom:156.621333pt;}
.ye5{bottom:158.063067pt;}
.y285{bottom:158.393333pt;}
.y48{bottom:159.056000pt;}
.y25b{bottom:160.545333pt;}
.yf6{bottom:160.783200pt;}
.ye2{bottom:161.902048pt;}
.yf7{bottom:162.943200pt;}
.y2f2{bottom:164.888000pt;}
.ybc{bottom:166.032000pt;}
.y207{bottom:166.514667pt;}
.y2bd{bottom:167.957333pt;}
.y10b{bottom:169.481333pt;}
.y187{bottom:169.824000pt;}
.y219{bottom:170.830667pt;}
.y231{bottom:171.264000pt;}
.y7f{bottom:171.662667pt;}
.y186{bottom:172.250667pt;}
.y259{bottom:172.460000pt;}
.y13{bottom:172.521333pt;}
.y1bb{bottom:172.741333pt;}
.y218{bottom:173.257333pt;}
.y284{bottom:174.014667pt;}
.y47{bottom:175.793333pt;}
.y2f1{bottom:180.230667pt;}
.ybb{bottom:182.769333pt;}
.y206{bottom:183.252000pt;}
.y2bc{bottom:183.300000pt;}
.y10a{bottom:186.218667pt;}
.y143{bottom:187.144000pt;}
.y230{bottom:188.001333pt;}
.y7e{bottom:188.400000pt;}
.y12{bottom:188.421333pt;}
.y185{bottom:188.988000pt;}
.y258{bottom:189.197333pt;}
.y283{bottom:189.636000pt;}
.y217{bottom:189.994667pt;}
.y1b9{bottom:190.806667pt;}
.y46{bottom:192.530667pt;}
.y2f0{bottom:195.573333pt;}
.y1ba{bottom:198.302667pt;}
.y2bb{bottom:198.641333pt;}
.yba{bottom:199.506667pt;}
.y205{bottom:199.989333pt;}
.y109{bottom:202.956000pt;}
.y11{bottom:204.322667pt;}
.y142{bottom:204.678667pt;}
.y22f{bottom:204.738667pt;}
.y7d{bottom:205.137333pt;}
.yf4{bottom:205.183067pt;}
.y184{bottom:205.725333pt;}
.y257{bottom:205.934667pt;}
.y216{bottom:206.732000pt;}
.ye1{bottom:207.342387pt;}
.yf5{bottom:207.343067pt;}
.y1b8{bottom:208.341333pt;}
.y45{bottom:209.268000pt;}
.y2ef{bottom:210.916000pt;}
.y282{bottom:213.228000pt;}
.y2ba{bottom:213.984000pt;}
.yb9{bottom:216.244000pt;}
.y204{bottom:216.726667pt;}
.y108{bottom:216.958667pt;}
.y1b5{bottom:217.893333pt;}
.y107{bottom:219.693333pt;}
.y183{bottom:220.036000pt;}
.y22e{bottom:221.476000pt;}
.y7c{bottom:221.874667pt;}
.y141{bottom:222.212000pt;}
.y182{bottom:222.462667pt;}
.y256{bottom:222.672000pt;}
.y215{bottom:223.469333pt;}
.y44{bottom:226.005333pt;}
.y2ee{bottom:226.258667pt;}
.y1b7{bottom:226.538667pt;}
.y281{bottom:228.849333pt;}
.y2b9{bottom:229.326667pt;}
.yb8{bottom:232.981333pt;}
.y203{bottom:233.464000pt;}
.y106{bottom:236.430667pt;}
.y22d{bottom:238.213333pt;}
.y7b{bottom:238.612000pt;}
.y181{bottom:239.200000pt;}
.y255{bottom:239.409333pt;}
.y140{bottom:239.746667pt;}
.y214{bottom:240.206667pt;}
.y2ed{bottom:241.601333pt;}
.y43{bottom:242.742667pt;}
.y2b8{bottom:244.669333pt;}
.y1b6{bottom:244.737333pt;}
.yb7{bottom:249.718667pt;}
.y202{bottom:250.201333pt;}
.yf2{bottom:250.303067pt;}
.y280{bottom:252.440000pt;}
.yf3{bottom:252.543067pt;}
.ye0{bottom:252.782727pt;}
.y180{bottom:253.510667pt;}
.y7a{bottom:255.349333pt;}
.y17f{bottom:255.937333pt;}
.y254{bottom:256.146667pt;}
.y213{bottom:256.944000pt;}
.y13f{bottom:257.281333pt;}
.y22c{bottom:258.936000pt;}
.y42{bottom:259.480000pt;}
.y2b7{bottom:260.012000pt;}
.y10{bottom:264.148000pt;}
.y105{bottom:266.266667pt;}
.yb6{bottom:266.456000pt;}
.y201{bottom:266.938667pt;}
.y27f{bottom:268.062667pt;}
.y17e{bottom:270.248000pt;}
.y79{bottom:272.086667pt;}
.y2ec{bottom:272.285333pt;}
.y17d{bottom:272.674667pt;}
.y253{bottom:272.884000pt;}
.y212{bottom:273.681333pt;}
.y1b4{bottom:273.962667pt;}
.y13e{bottom:274.814667pt;}
.y2b6{bottom:275.354667pt;}
.yf{bottom:280.048000pt;}
.y41{bottom:280.202667pt;}
.yb5{bottom:283.193333pt;}
.y104{bottom:283.362667pt;}
.y200{bottom:283.676000pt;}
.y2eb{bottom:287.628000pt;}
.y22b{bottom:288.824000pt;}
.y17b{bottom:289.412000pt;}
.y252{bottom:289.621333pt;}
.y211{bottom:290.417333pt;}
.y2b5{bottom:290.697333pt;}
.y1b3{bottom:291.057333pt;}
.y27e{bottom:291.653333pt;}
.y13d{bottom:292.349333pt;}
.y78{bottom:292.809333pt;}
.y17c{bottom:294.233333pt;}
.yeb{bottom:295.903067pt;}
.ye{bottom:295.949333pt;}
.yf0{bottom:297.103067pt;}
.ydf{bottom:298.223067pt;}
.yf1{bottom:299.263067pt;}
.yb4{bottom:299.930667pt;}
.y1ff{bottom:300.413333pt;}
.y103{bottom:300.458667pt;}
.y2ea{bottom:302.970667pt;}
.y22a{bottom:305.561333pt;}
.y2b4{bottom:306.040000pt;}
.y251{bottom:306.358667pt;}
.y210{bottom:307.154667pt;}
.y27d{bottom:307.274667pt;}
.y13c{bottom:309.882667pt;}
.y77{bottom:310.741333pt;}
.yd{bottom:311.849333pt;}
.yb3{bottom:316.668000pt;}
.y1fe{bottom:317.150667pt;}
.y102{bottom:317.554667pt;}
.y2e9{bottom:318.313333pt;}
.ydc{bottom:318.863067pt;}
.y17a{bottom:319.248000pt;}
.y2b3{bottom:321.382667pt;}
.y229{bottom:322.298667pt;}
.y27c{bottom:322.896000pt;}
.y250{bottom:323.096000pt;}
.y20f{bottom:323.892000pt;}
.y1b2{bottom:324.040000pt;}
.y13b{bottom:327.417333pt;}
.yb2{bottom:333.404000pt;}
.y2e8{bottom:333.656000pt;}
.y1fd{bottom:333.888000pt;}
.y101{bottom:334.650667pt;}
.y179{bottom:336.344000pt;}
.y2b2{bottom:336.724000pt;}
.y1c0{bottom:336.821853pt;}
.yc{bottom:337.048000pt;}
.y27b{bottom:338.517333pt;}
.y228{bottom:339.036000pt;}
.y24f{bottom:339.833333pt;}
.y76{bottom:340.629333pt;}
.y1b1{bottom:340.777333pt;}
.y13a{bottom:344.952000pt;}
.y1bf{bottom:345.381733pt;}
.y40{bottom:345.592000pt;}
.y2e7{bottom:348.998667pt;}
.yb1{bottom:350.141333pt;}
.y1fc{bottom:350.625333pt;}
.y100{bottom:351.746667pt;}
.y2b1{bottom:352.066667pt;}
.y178{bottom:353.440000pt;}
.y27a{bottom:354.140000pt;}
.y20e{bottom:354.940000pt;}
.y227{bottom:355.773333pt;}
.ydb{bottom:357.103067pt;}
.y75{bottom:357.366667pt;}
.y1b0{bottom:357.514667pt;}
.y24e{bottom:360.554667pt;}
.yb{bottom:360.918667pt;}
.y139{bottom:362.485333pt;}
.y3f{bottom:362.886667pt;}
.y2e6{bottom:364.341333pt;}
.yff{bottom:366.228000pt;}
.yb0{bottom:366.878667pt;}
.y1fb{bottom:367.362667pt;}
.y2b0{bottom:367.409333pt;}
.yfe{bottom:368.842667pt;}
.y279{bottom:369.761333pt;}
.y177{bottom:370.536000pt;}
.y226{bottom:372.510667pt;}
.y74{bottom:374.104000pt;}
.y1ae{bottom:374.252000pt;}
.ya{bottom:376.818667pt;}
.y1af{bottom:379.073333pt;}
.y2e5{bottom:379.684000pt;}
.y138{bottom:380.020000pt;}
.y3e{bottom:380.182667pt;}
.y2af{bottom:382.752000pt;}
.yaf{bottom:383.616000pt;}
.y1fa{bottom:384.100000pt;}
.y176{bottom:385.300000pt;}
.y278{bottom:385.382667pt;}
.yd6{bottom:385.424907pt;}
.yef{bottom:386.863067pt;}
.y175{bottom:387.632000pt;}
.ybe{bottom:388.780000pt;}
.y225{bottom:389.248000pt;}
.y24d{bottom:390.442667pt;}
.y73{bottom:390.841333pt;}
.y1ad{bottom:390.988000pt;}
.y9{bottom:392.720000pt;}
.y2e4{bottom:395.025333pt;}
.y137{bottom:397.554667pt;}
.y2ae{bottom:398.094667pt;}
.yae{bottom:400.353333pt;}
.y1f9{bottom:400.837333pt;}
.y174{bottom:404.728000pt;}
.y224{bottom:405.985333pt;}
.y24c{bottom:407.180000pt;}
.y72{bottom:407.578667pt;}
.y1ac{bottom:407.725333pt;}
.y8{bottom:408.620000pt;}
.y277{bottom:408.973333pt;}
.y2e3{bottom:410.368000pt;}
.y3d{bottom:413.417333pt;}
.y2ad{bottom:413.437333pt;}
.y136{bottom:415.088000pt;}
.yad{bottom:417.090667pt;}
.y1f8{bottom:417.574667pt;}
.y173{bottom:421.822667pt;}
.y223{bottom:422.722667pt;}
.y24b{bottom:423.917333pt;}
.y71{bottom:424.316000pt;}
.y1ab{bottom:424.462667pt;}
.y7{bottom:424.520000pt;}
.y276{bottom:425.013333pt;}
.y2e2{bottom:425.710667pt;}
.y2ac{bottom:428.780000pt;}
.y3c{bottom:430.713333pt;}
.y135{bottom:432.622667pt;}
.y1f7{bottom:434.312000pt;}
.yac{bottom:437.813333pt;}
.y172{bottom:438.918667pt;}
.y222{bottom:439.460000pt;}
.y6{bottom:440.421333pt;}
.y24a{bottom:440.654667pt;}
.y70{bottom:441.053333pt;}
.y1aa{bottom:441.200000pt;}
.yee{bottom:443.663067pt;}
.y2ab{bottom:444.122667pt;}
.yd5{bottom:444.704118pt;}
.yd2{bottom:445.103067pt;}
.y3b{bottom:448.008000pt;}
.y134{bottom:450.157333pt;}
.y1f6{bottom:451.049333pt;}
.y221{bottom:456.197333pt;}
.y5{bottom:456.321333pt;}
.y2e1{bottom:456.396000pt;}
.y275{bottom:456.993333pt;}
.y249{bottom:457.392000pt;}
.y6f{bottom:457.790667pt;}
.y1a8{bottom:457.937333pt;}
.y2aa{bottom:459.464000pt;}
.y148{bottom:461.513333pt;}
.y16b{bottom:461.629875pt;}
.y1a9{bottom:462.760000pt;}
.y3a{bottom:465.302667pt;}
.y133{bottom:467.690667pt;}
.y1f5{bottom:467.786667pt;}
.y2e0{bottom:471.738667pt;}
.yda{bottom:472.143067pt;}
.y4{bottom:472.221333pt;}
.y220{bottom:472.934667pt;}
.y274{bottom:473.730667pt;}
.y248{bottom:474.129333pt;}
.y6e{bottom:474.528000pt;}
.y1a7{bottom:474.674667pt;}
.y2a9{bottom:474.806667pt;}
.yab{bottom:475.498667pt;}
.y39{bottom:480.266667pt;}
.y16a{bottom:482.173280pt;}
.y169{bottom:482.175450pt;}
.y38{bottom:482.598667pt;}
.yd9{bottom:483.503067pt;}
.y130{bottom:484.425333pt;}
.y132{bottom:485.889333pt;}
.yaa{bottom:486.125333pt;}
.y2df{bottom:487.081333pt;}
.y3{bottom:488.122667pt;}
.y1f4{bottom:488.508000pt;}
.y21f{bottom:489.672000pt;}
.y2a8{bottom:490.149333pt;}
.y273{bottom:490.468000pt;}
.y247{bottom:490.866667pt;}
.y6d{bottom:491.265333pt;}
.y1a6{bottom:491.412000pt;}
.yd8{bottom:494.783067pt;}
.ya9{bottom:496.752000pt;}
.y12f{bottom:499.037333pt;}
.y37{bottom:499.893333pt;}
.y2de{bottom:502.424000pt;}
.y168{bottom:502.622662pt;}
.yed{bottom:502.943067pt;}
.yd4{bottom:503.903856pt;}
.y2{bottom:504.022667pt;}
.y131{bottom:504.088000pt;}
.y2a7{bottom:505.492000pt;}
.yd7{bottom:506.063067pt;}
.y272{bottom:507.205333pt;}
.y246{bottom:507.604000pt;}
.y6c{bottom:508.002667pt;}
.y1a5{bottom:508.149333pt;}
.y21e{bottom:510.393333pt;}
.ya8{bottom:510.568000pt;}
.y1f3{bottom:515.554667pt;}
.y36{bottom:517.188000pt;}
.y2dd{bottom:517.766667pt;}
.y1{bottom:519.922667pt;}
.y2a6{bottom:520.834667pt;}
.y167{bottom:523.166067pt;}
.y271{bottom:523.942667pt;}
.y245{bottom:524.341333pt;}
.ya7{bottom:524.382667pt;}
.y6b{bottom:524.740000pt;}
.y1a4{bottom:524.886667pt;}
.y21d{bottom:528.326667pt;}
.y12e{bottom:530.656000pt;}
.y1f2{bottom:532.650667pt;}
.y2dc{bottom:533.108000pt;}
.y35{bottom:534.484000pt;}
.y2a5{bottom:536.177333pt;}
.ya6{bottom:538.197333pt;}
.y270{bottom:540.680000pt;}
.y243{bottom:541.078667pt;}
.y6a{bottom:541.477333pt;}
.y1a2{bottom:541.624000pt;}
.y166{bottom:543.613280pt;}
.y165{bottom:543.614470pt;}
.y244{bottom:545.901333pt;}
.y1a3{bottom:546.446667pt;}
.y12d{bottom:547.752000pt;}
.y2db{bottom:548.450667pt;}
.y1f1{bottom:549.746667pt;}
.y2a4{bottom:551.520000pt;}
.y34{bottom:551.778667pt;}
.ya5{bottom:552.012000pt;}
.y242{bottom:557.816000pt;}
.y69{bottom:558.214667pt;}
.y1a1{bottom:558.361333pt;}
.y2f8{bottom:559.742667pt;}
.y26f{bottom:561.402667pt;}
.y12c{bottom:562.232000pt;}
.yec{bottom:562.623067pt;}
.yd3{bottom:563.183067pt;}
.y2da{bottom:563.793333pt;}
.y164{bottom:564.157875pt;}
.y12b{bottom:564.848000pt;}
.ya4{bottom:565.826667pt;}
.y1f0{bottom:566.842667pt;}
.y2a3{bottom:566.862667pt;}
.y33{bottom:569.074667pt;}
.y240{bottom:574.553333pt;}
.y68{bottom:574.952000pt;}
.y2f7{bottom:575.084000pt;}
.y1a0{bottom:575.098667pt;}
.y2d9{bottom:579.136000pt;}
.y12a{bottom:579.328000pt;}
.y241{bottom:579.374667pt;}
.ya3{bottom:579.641333pt;}
.y129{bottom:581.942667pt;}
.y2a2{bottom:582.205333pt;}
.y1ef{bottom:583.938667pt;}
.y163{bottom:584.701280pt;}
.y162{bottom:584.702067pt;}
.y32{bottom:586.369333pt;}
.y2f6{bottom:590.426667pt;}
.y23e{bottom:591.290667pt;}
.y67{bottom:591.689333pt;}
.y19f{bottom:591.836000pt;}
.ydd{bottom:593.023067pt;}
.ya2{bottom:593.456000pt;}
.y2d8{bottom:594.478667pt;}
.y23f{bottom:596.112000pt;}
.y2a1{bottom:597.546667pt;}
.y1ee{bottom:601.034667pt;}
.y31{bottom:603.664000pt;}
.y161{bottom:605.149280pt;}
.y160{bottom:605.149875pt;}
.ya1{bottom:607.272000pt;}
.y23d{bottom:608.028000pt;}
.y66{bottom:608.426667pt;}
.y19d{bottom:608.573333pt;}
.y2d7{bottom:609.821333pt;}
.y2a0{bottom:612.889333pt;}
.y19e{bottom:613.394667pt;}
.y128{bottom:617.436000pt;}
.y1ec{bottom:618.130667pt;}
.y30{bottom:620.960000pt;}
.ya0{bottom:621.086667pt;}
.y26e{bottom:622.338667pt;}
.y1ed{bottom:622.469333pt;}
.y23c{bottom:624.765333pt;}
.y65{bottom:625.164000pt;}
.y19c{bottom:625.310667pt;}
.y15f{bottom:625.693280pt;}
.y15e{bottom:625.700470pt;}
.y29f{bottom:628.232000pt;}
.yc8{bottom:634.545571pt;}
.y9f{bottom:634.901333pt;}
.y127{bottom:634.969333pt;}
.y1eb{bottom:635.226667pt;}
.y2f{bottom:638.254667pt;}
.y2d6{bottom:640.506667pt;}
.y23b{bottom:641.502667pt;}
.y64{bottom:641.901333pt;}
.y19b{bottom:642.048000pt;}
.y29e{bottom:643.574667pt;}
.y15d{bottom:646.147683pt;}
.y9d{bottom:649.248000pt;}
.y1ea{bottom:649.990667pt;}
.yc7{bottom:651.584915pt;}
.y1e9{bottom:652.321333pt;}
.y126{bottom:652.504000pt;}
.y9e{bottom:654.561333pt;}
.y2e{bottom:655.549333pt;}
.y26d{bottom:655.813333pt;}
.y2d5{bottom:655.848000pt;}
.y19a{bottom:656.358667pt;}
.y95{bottom:656.925333pt;}
.y9b{bottom:657.200000pt;}
.y23a{bottom:658.240000pt;}
.y63{bottom:658.638667pt;}
.y199{bottom:658.785333pt;}
.y29d{bottom:658.917333pt;}
.y96{bottom:659.336000pt;}
.y9c{bottom:659.874667pt;}
.y92{bottom:663.425333pt;}
.y9a{bottom:666.226667pt;}
.y15c{bottom:666.691088pt;}
.y97{bottom:667.222667pt;}
.y94{bottom:667.552000pt;}
.y99{bottom:667.826667pt;}
.y8f{bottom:668.497333pt;}
.y8d{bottom:668.601333pt;}
.yc6{bottom:668.704419pt;}
.y1e8{bottom:669.417333pt;}
.y125{bottom:670.037333pt;}
.y2d4{bottom:671.190667pt;}
.y91{bottom:674.052000pt;}
.y8b{bottom:674.220000pt;}
.y29c{bottom:674.260000pt;}
.y239{bottom:674.977333pt;}
.y62{bottom:675.376000pt;}
.y198{bottom:675.522667pt;}
.y93{bottom:678.178667pt;}
.y98{bottom:678.453333pt;}
.y8e{bottom:679.124000pt;}
.y8c{bottom:679.228000pt;}
.y8a{bottom:679.533333pt;}
.y90{bottom:684.678667pt;}
.yc5{bottom:685.743763pt;}
.y1e6{bottom:686.513333pt;}
.y2d3{bottom:686.533333pt;}
.y15b{bottom:687.234493pt;}
.y124{bottom:687.572000pt;}
.y29b{bottom:689.602667pt;}
.y1e7{bottom:690.853333pt;}
.y238{bottom:691.714667pt;}
.y61{bottom:692.113333pt;}
.y197{bottom:692.260000pt;}
.y2d{bottom:693.073333pt;}
.y89{bottom:699.193333pt;}
.y2d2{bottom:701.876000pt;}
.yc4{bottom:702.863267pt;}
.y2c{bottom:703.562667pt;}
.y29a{bottom:704.945333pt;}
.y123{bottom:705.106667pt;}
.y1be{bottom:706.450667pt;}
.y15a{bottom:707.683309pt;}
.y26c{bottom:708.452000pt;}
.y60{bottom:708.850667pt;}
.y237{bottom:712.436000pt;}
.y196{bottom:712.982667pt;}
.y2d1{bottom:717.218667pt;}
.y2b{bottom:717.909333pt;}
.yc3{bottom:719.982771pt;}
.y299{bottom:720.286667pt;}
.y26b{bottom:722.454667pt;}
.y122{bottom:722.640000pt;}
.y26a{bottom:725.189333pt;}
.y5f{bottom:725.588000pt;}
.y88{bottom:726.080000pt;}
.y159{bottom:728.226714pt;}
.y2d0{bottom:732.561333pt;}
.y298{bottom:735.629333pt;}
.y2a{bottom:736.113333pt;}
.yc2{bottom:737.023451pt;}
.y121{bottom:740.174667pt;}
.y269{bottom:741.926667pt;}
.y5e{bottom:742.324000pt;}
.y29{bottom:746.601333pt;}
.y2cf{bottom:747.904000pt;}
.y158{bottom:748.673926pt;}
.y297{bottom:750.972000pt;}
.y195{bottom:757.017333pt;}
.y120{bottom:757.709333pt;}
.y268{bottom:758.664000pt;}
.y5d{bottom:759.061333pt;}
.y2ce{bottom:763.246667pt;}
.y28{bottom:764.805333pt;}
.y296{bottom:766.314667pt;}
.y157{bottom:769.217331pt;}
.y11f{bottom:775.242667pt;}
.y27{bottom:775.294667pt;}
.y267{bottom:775.401333pt;}
.y5c{bottom:775.798667pt;}
.y2cd{bottom:778.589333pt;}
.y295{bottom:781.657333pt;}
.yc0{bottom:785.663187pt;}
.y26{bottom:789.640000pt;}
.y156{bottom:789.760736pt;}
.y87{bottom:789.802667pt;}
.y266{bottom:792.138667pt;}
.y5b{bottom:792.536000pt;}
.y11e{bottom:792.777333pt;}
.y2cc{bottom:793.930667pt;}
.ybf{bottom:794.223067pt;}
.y294{bottom:797.000000pt;}
.y194{bottom:800.853333pt;}
.y25{bottom:803.986667pt;}
.y236{bottom:806.538667pt;}
.y24{bottom:807.844000pt;}
.y265{bottom:808.874667pt;}
.y5a{bottom:809.273333pt;}
.y11d{bottom:810.312000pt;}
.y293{bottom:812.342667pt;}
.y155{bottom:815.007930pt;}
.y2cb{bottom:824.616000pt;}
.y264{bottom:825.612000pt;}
.y59{bottom:826.010667pt;}
.y292{bottom:827.685333pt;}
.y11c{bottom:827.845333pt;}
.y154{bottom:835.551334pt;}
.y2ca{bottom:839.958667pt;}
.y86{bottom:840.013333pt;}
.y263{bottom:842.349333pt;}
.y58{bottom:842.748000pt;}
.y291{bottom:843.028000pt;}
.y193{bottom:844.688000pt;}
.y11b{bottom:845.380000pt;}
.y22{bottom:846.925333pt;}
.y23{bottom:851.746667pt;}
.y2c9{bottom:855.301333pt;}
.y85{bottom:856.750667pt;}
.y290{bottom:858.369333pt;}
.y57{bottom:859.485333pt;}
.y11a{bottom:862.913333pt;}
.y262{bottom:863.072000pt;}
.y21{bottom:863.662667pt;}
.y2c8{bottom:870.644000pt;}
.y28f{bottom:873.712000pt;}
.y153{bottom:875.294662pt;}
.y56{bottom:876.222667pt;}
.y119{bottom:880.448000pt;}
.y2c7{bottom:885.986667pt;}
.y18e{bottom:886.334667pt;}
.y84{bottom:890.225333pt;}
.y55{bottom:892.960000pt;}
.y28e{bottom:893.040000pt;}
.y152{bottom:895.741875pt;}
.y20{bottom:896.340000pt;}
.y116{bottom:897.182667pt;}
.y118{bottom:898.646667pt;}
.y2c6{bottom:901.329333pt;}
.y192{bottom:901.992000pt;}
.y54{bottom:909.697333pt;}
.y115{bottom:911.793333pt;}
.y18d{bottom:915.558667pt;}
.y151{bottom:916.285280pt;}
.y150{bottom:916.286902pt;}
.y191{bottom:916.604000pt;}
.y2c5{bottom:916.670667pt;}
.y117{bottom:916.845333pt;}
.y18f{bottom:920.656000pt;}
.y1f{bottom:921.445333pt;}
.y28d{bottom:922.928000pt;}
.y53{bottom:926.434667pt;}
.y18c{bottom:930.169333pt;}
.y190{bottom:931.216000pt;}
.y261{bottom:931.256000pt;}
.y2c4{bottom:932.013333pt;}
.y18a{bottom:932.824000pt;}
.y14f{bottom:936.734115pt;}
.y28c{bottom:938.549333pt;}
.y52{bottom:943.172000pt;}
.y114{bottom:943.413333pt;}
.y18b{bottom:944.781333pt;}
.y1e{bottom:946.552000pt;}
.y2c3{bottom:947.356000pt;}
.y14e{bottom:957.277520pt;}
.y51{bottom:959.909333pt;}
.y113{bottom:960.508000pt;}
.y28b{bottom:962.141333pt;}
.y2c2{bottom:962.698667pt;}
.y260{bottom:964.730667pt;}
.y1d{bottom:971.657333pt;}
.y50{bottom:976.646667pt;}
.y112{bottom:977.604000pt;}
.y28a{bottom:977.762667pt;}
.y14d{bottom:977.820925pt;}
.y2c1{bottom:978.041333pt;}
.y20d{bottom:979.602667pt;}
.y25f{bottom:981.468000pt;}
.y20c{bottom:990.957333pt;}
.y189{bottom:992.369333pt;}
.y4f{bottom:993.384000pt;}
.y111{bottom:994.700000pt;}
.y14c{bottom:998.269741pt;}
.y19{bottom:1010.312000pt;}
.y4e{bottom:1046.810667pt;}
.y14a{bottom:1056.637424pt;}
.y149{bottom:1066.909280pt;}
.h2a{height:13.648892pt;}
.h18{height:19.207893pt;}
.h17{height:19.211771pt;}
.h24{height:20.461471pt;}
.h22{height:20.466292pt;}
.h27{height:20.471854pt;}
.h29{height:20.473708pt;}
.h23{height:22.367183pt;}
.h28{height:22.373487pt;}
.h25{height:26.065504pt;}
.h21{height:26.107408pt;}
.h16{height:26.890973pt;}
.h44{height:26.896479pt;}
.hc{height:29.196090pt;}
.h3b{height:29.202039pt;}
.hd{height:30.063343pt;}
.h4{height:31.890083pt;}
.h14{height:32.715771pt;}
.h3a{height:32.999250pt;}
.h10{height:33.187635pt;}
.h2b{height:33.474560pt;}
.h2c{height:34.574438pt;}
.h2d{height:34.581557pt;}
.h5{height:35.024664pt;}
.h2{height:35.073565pt;}
.h37{height:35.868750pt;}
.h3c{height:36.874903pt;}
.h12{height:37.193707pt;}
.h13{height:38.080100pt;}
.hb{height:38.415786pt;}
.h19{height:38.551285pt;}
.h1a{height:38.556618pt;}
.h7{height:39.000258pt;}
.h1d{height:39.754531pt;}
.he{height:40.084290pt;}
.h6{height:41.001535pt;}
.h2e{height:44.251146pt;}
.h30{height:44.256479pt;}
.h20{height:44.648438pt;}
.h1f{height:44.835938pt;}
.hf{height:45.095014pt;}
.h3d{height:45.193105pt;}
.h3{height:45.272024pt;}
.h33{height:45.788348pt;}
.h3e{height:45.879014pt;}
.h2f{height:45.884348pt;}
.h38{height:46.154625pt;}
.h35{height:47.705437pt;}
.h15{height:48.144306pt;}
.h26{height:48.268000pt;}
.ha{height:49.201961pt;}
.h43{height:49.708594pt;}
.h1e{height:49.917344pt;}
.h11{height:50.105236pt;}
.h32{height:52.428231pt;}
.h31{height:52.433565pt;}
.h39{height:53.803125pt;}
.h41{height:56.140348pt;}
.h36{height:59.900812pt;}
.h8{height:69.148877pt;}
.h9{height:69.435802pt;}
.h1b{height:81.063285pt;}
.h40{height:86.124348pt;}
.h3f{height:88.124348pt;}
.h42{height:300.217333pt;}
.h34{height:435.142400pt;}
.h1c{height:617.889333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:191.879724pt;}
.w5{width:459.490667pt;}
.w3{width:504.784000pt;}
.w4{width:613.700800pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xb1{left:-208.931200pt;}
.xd7{left:-185.018667pt;}
.x7d{left:-183.097333pt;}
.xd9{left:-11.178667pt;}
.x7e{left:-9.257013pt;}
.x0{left:0.000000pt;}
.xda{left:17.141861pt;}
.x7f{left:19.063515pt;}
.x88{left:21.542667pt;}
.x80{left:24.022667pt;}
.x81{left:30.022667pt;}
.x89{left:31.062667pt;}
.x84{left:32.262667pt;}
.xb4{left:33.663503pt;}
.x8a{left:45.702667pt;}
.x4{left:46.617333pt;}
.x1{left:47.621333pt;}
.x3{left:53.357850pt;}
.x51{left:55.592000pt;}
.x52{left:57.024000pt;}
.x6a{left:59.381333pt;}
.x69{left:61.705333pt;}
.xd6{left:64.205333pt;}
.x10f{left:76.309333pt;}
.xb0{left:89.812000pt;}
.x53{left:99.705333pt;}
.xb5{left:102.684800pt;}
.x54{left:103.588000pt;}
.xb6{left:112.284800pt;}
.xd3{left:120.821333pt;}
.xd2{left:129.485333pt;}
.x55{left:144.633333pt;}
.x56{left:145.586667pt;}
.x5{left:152.813333pt;}
.x6{left:158.525333pt;}
.x2{left:161.132773pt;}
.xb8{left:162.108800pt;}
.x59{left:187.934667pt;}
.x58{left:191.541333pt;}
.x57{left:195.014667pt;}
.x5a{left:204.501333pt;}
.x82{left:208.102667pt;}
.x86{left:210.342667pt;}
.x5b{left:213.949333pt;}
.xf{left:220.912000pt;}
.xd{left:221.858667pt;}
.xe9{left:226.252000pt;}
.xe8{left:229.546667pt;}
.x44{left:231.462667pt;}
.xbc{left:236.030667pt;}
.x45{left:238.296000pt;}
.xe{left:239.790667pt;}
.x5c{left:241.313333pt;}
.xc4{left:242.556000pt;}
.xca{left:243.668000pt;}
.x2e{left:245.760000pt;}
.xc5{left:248.982667pt;}
.x16{left:250.204000pt;}
.x112{left:252.684000pt;}
.x36{left:253.880000pt;}
.xbe{left:256.782667pt;}
.x2f{left:259.044000pt;}
.x109{left:262.322667pt;}
.xbf{left:264.988000pt;}
.x37{left:267.164000pt;}
.x10a{left:268.373333pt;}
.xec{left:270.838667pt;}
.xa8{left:272.688000pt;}
.xed{left:274.226667pt;}
.x46{left:275.322667pt;}
.xe4{left:277.508000pt;}
.x12{left:279.273333pt;}
.xfd{left:280.226667pt;}
.x10{left:281.320000pt;}
.x47{left:285.485333pt;}
.x32{left:287.520000pt;}
.x2c{left:289.452000pt;}
.x13{left:292.236000pt;}
.x38{left:293.560000pt;}
.x5e{left:295.361333pt;}
.x93{left:297.266667pt;}
.xaa{left:298.476000pt;}
.x6d{left:299.685333pt;}
.x33{left:300.804000pt;}
.x2d{left:302.734667pt;}
.x34{left:304.190667pt;}
.xf6{left:305.233333pt;}
.x39{left:306.844000pt;}
.x5d{left:310.669333pt;}
.x6e{left:312.969333pt;}
.x48{left:314.197333pt;}
.x35{left:317.474667pt;}
.x11{left:319.910667pt;}
.x49{left:321.029333pt;}
.x10d{left:321.934667pt;}
.x14{left:323.866667pt;}
.xc0{left:325.188000pt;}
.xd1{left:326.333333pt;}
.x9e{left:327.792000pt;}
.x76{left:329.774667pt;}
.x15{left:331.252000pt;}
.x9a{left:333.104000pt;}
.x5f{left:334.508000pt;}
.x17{left:337.090667pt;}
.x1f{left:340.358667pt;}
.x7{left:341.762667pt;}
.x18{left:343.732000pt;}
.xc3{left:345.261333pt;}
.x20{left:347.001333pt;}
.x10b{left:349.082667pt;}
.x19{left:350.506667pt;}
.xbd{left:351.536000pt;}
.x60{left:353.874667pt;}
.x100{left:354.941333pt;}
.x1a{left:357.148000pt;}
.x8{left:359.569333pt;}
.x72{left:362.953333pt;}
.xe5{left:363.910667pt;}
.x101{left:364.929333pt;}
.x4a{left:367.748000pt;}
.x3d{left:368.853333pt;}
.x106{left:371.766667pt;}
.xef{left:372.792000pt;}
.xac{left:374.177333pt;}
.xa6{left:376.205333pt;}
.x4f{left:377.937333pt;}
.xf3{left:379.892000pt;}
.x3e{left:382.137333pt;}
.xad{left:386.784000pt;}
.xa7{left:388.812000pt;}
.x78{left:389.837333pt;}
.x107{left:392.216000pt;}
.xf4{left:393.176000pt;}
.xf5{left:396.562667pt;}
.x61{left:400.388000pt;}
.x79{left:403.120000pt;}
.x62{left:404.088000pt;}
.xe6{left:406.340000pt;}
.xf0{left:409.205333pt;}
.x8e{left:410.097333pt;}
.xc1{left:413.514667pt;}
.x102{left:415.480000pt;}
.x94{left:417.694667pt;}
.x8f{left:422.052000pt;}
.xb7{left:423.228800pt;}
.xf1{left:424.285333pt;}
.x23{left:426.952000pt;}
.x95{left:429.649333pt;}
.xaf{left:430.604000pt;}
.x6f{left:432.998667pt;}
.xf2{left:436.224000pt;}
.x108{left:437.248000pt;}
.x24{left:440.236000pt;}
.x3b{left:442.104000pt;}
.x63{left:445.941333pt;}
.xdf{left:450.392000pt;}
.x29{left:452.854667pt;}
.x3a{left:453.824000pt;}
.x3c{left:455.388000pt;}
.xdb{left:457.874667pt;}
.x2a{left:459.529333pt;}
.xeb{left:461.552000pt;}
.xd8{left:462.821093pt;}
.xea{left:464.845333pt;}
.x8b{left:466.042667pt;}
.x7c{left:469.273333pt;}
.xfb{left:470.416000pt;}
.x2b{left:472.813333pt;}
.x8c{left:474.274667pt;}
.x40{left:476.850667pt;}
.x85{left:477.862667pt;}
.x83{left:479.462533pt;}
.x87{left:480.902533pt;}
.xfc{left:483.700000pt;}
.x41{left:485.996000pt;}
.x73{left:488.006667pt;}
.xee{left:491.452000pt;}
.xe0{left:493.270667pt;}
.x64{left:494.502667pt;}
.x9b{left:495.916000pt;}
.x9f{left:497.901333pt;}
.xd4{left:499.824000pt;}
.x1b{left:501.964000pt;}
.xba{left:503.676800pt;}
.xe1{left:505.585333pt;}
.xa9{left:507.508000pt;}
.x1c{left:508.606667pt;}
.x9{left:510.464000pt;}
.xf8{left:514.696000pt;}
.x6b{left:515.700000pt;}
.xa{left:519.364000pt;}
.x77{left:522.884000pt;}
.xe2{left:525.404000pt;}
.xcc{left:526.985333pt;}
.xbb{left:530.557333pt;}
.xcd{left:533.036000pt;}
.x42{left:536.342667pt;}
.xe3{left:538.688000pt;}
.x65{left:540.057333pt;}
.x43{left:543.176000pt;}
.xae{left:544.114667pt;}
.xf9{left:545.262667pt;}
.x103{left:548.645333pt;}
.x8d{left:550.124000pt;}
.xfa{left:551.668000pt;}
.x96{left:554.070667pt;}
.xde{left:558.384000pt;}
.xa1{left:563.482667pt;}
.xf7{left:564.854667pt;}
.x97{left:566.026667pt;}
.x70{left:571.758667pt;}
.xb2{left:572.988800pt;}
.x4b{left:576.606667pt;}
.xb3{left:578.844800pt;}
.x66{left:582.505333pt;}
.x4c{left:583.438667pt;}
.x71{left:585.042667pt;}
.xcf{left:586.020000pt;}
.x90{left:588.933333pt;}
.xd0{left:592.069333pt;}
.x7a{left:593.676000pt;}
.x104{left:599.958667pt;}
.x25{left:602.852000pt;}
.x105{left:606.008000pt;}
.x7b{left:606.960000pt;}
.xb9{left:609.659218pt;}
.x26{left:616.136000pt;}
.x27{left:619.524000pt;}
.x4d{left:621.129333pt;}
.xa2{left:624.082667pt;}
.x67{left:628.157333pt;}
.x4e{left:631.278667pt;}
.x28{left:632.806667pt;}
.xab{left:633.733333pt;}
.xa3{left:635.086667pt;}
.xa4{left:636.417333pt;}
.x6c{left:640.008000pt;}
.xc6{left:642.082667pt;}
.x50{left:643.345333pt;}
.xdd{left:644.365333pt;}
.x21{left:645.786667pt;}
.xa5{left:648.373333pt;}
.x1d{left:651.044000pt;}
.x22{left:652.429333pt;}
.x111{left:656.318667pt;}
.x1e{left:657.685333pt;}
.xc2{left:662.912000pt;}
.x110{left:664.830667pt;}
.xe7{left:666.349333pt;}
.x74{left:670.425333pt;}
.x9c{left:674.720000pt;}
.x98{left:678.145333pt;}
.xa0{left:680.245333pt;}
.x75{left:683.709333pt;}
.x9d{left:686.676000pt;}
.xc7{left:688.193333pt;}
.x99{left:690.101333pt;}
.x10c{left:692.512000pt;}
.x91{left:693.693333pt;}
.xc9{left:696.661333pt;}
.x92{left:705.649333pt;}
.xc8{left:706.898667pt;}
.x10e{left:709.942667pt;}
.xd5{left:714.500000pt;}
.x68{left:716.390667pt;}
.xb{left:718.708000pt;}
.xdc{left:720.017333pt;}
.xfe{left:723.033333pt;}
.x30{left:726.433333pt;}
.xc{left:727.608000pt;}
.xff{left:732.178667pt;}
.xcb{left:734.941333pt;}
.x31{left:739.717333pt;}
.x3f{left:741.189333pt;}
.xce{left:743.973333pt;}
}




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