
    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_528f71efe2e8965f99d8c623.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.192000;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_39972eb5fb0cb75433f08a5d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.460000;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_c39b84fdba61ac260c7c89de.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.026000;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_fba623ce5c6aa8406f7732a6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.586000;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_bf75517c7aa862e784f3f552.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.699000;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_56ef7765dabf3278fdef8945.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_744b13efd6061d694a30ce3a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.936250;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_32f4da3737fae5fa936b6ae2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9227a01b097cc3cdf23dc3ad.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.898000;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_902eda72258e81e8ce546dd1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.923000;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_536582d71b0a8db09159cb2a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938000;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_c626f68f964d9a12495e3422.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.927000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8cd5108298307c77c0ecfd79.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.725000;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_9d2c00b8886ca9cea20246ce.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.806000;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_4c7c5c29f072236a26fbaa90.woff2')format("woff");}.fff{font-family:fff;line-height:0.938000;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_df879f0038793c21c42ddffa.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.964000;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_2a92303ae0c932cfb1ab4931.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.772000;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_060161f7f86db4e8f2e16d7e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.722000;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;}
.m13{transform:matrix(0.000000,-0.249488,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249488,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249488,0.250000,0.000000,0,0);}
.m14{transform:matrix(0.000000,-0.249491,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249491,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249491,0.250000,0.000000,0,0);}
.m17{transform:matrix(0.000000,-0.249575,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249575,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249575,0.250000,0.000000,0,0);}
.m19{transform:matrix(0.000000,-0.249578,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249578,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249578,0.250000,0.000000,0,0);}
.m1b{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.000000,-0.250003,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250003,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250003,0.250000,0.000000,0,0);}
.m10{transform:matrix(0.000000,-0.250004,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250004,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250004,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.247630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247630,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247635,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);}
.m18{transform:matrix(0.250418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250418,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250419,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250421,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250509,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.254861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254861,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.256741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256741,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.256744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256744,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.256745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256745,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.256747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256747,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.256748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256748,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.256763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256763,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.259952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259952,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.259998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259998,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.v3{vertical-align:-32.999670px;}
.v1{vertical-align:-1.018592px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:7.142395px;}
.v4{vertical-align:31.259034px;}
.ls47{letter-spacing:-5.183209px;}
.ls69{letter-spacing:-1.906327px;}
.ls3e{letter-spacing:-1.474220px;}
.ls5c{letter-spacing:-0.731664px;}
.ls3d{letter-spacing:-0.246945px;}
.ls3b{letter-spacing:-0.197220px;}
.ls6c{letter-spacing:-0.138044px;}
.ls67{letter-spacing:-0.069866px;}
.ls20{letter-spacing:-0.068336px;}
.ls45{letter-spacing:-0.050766px;}
.ls6a{letter-spacing:-0.050400px;}
.ls68{letter-spacing:-0.048841px;}
.ls5d{letter-spacing:-0.042000px;}
.ls66{letter-spacing:-0.039900px;}
.ls48{letter-spacing:-0.036000px;}
.ls43{letter-spacing:-0.034353px;}
.ls62{letter-spacing:-0.033600px;}
.ls70{letter-spacing:-0.027168px;}
.ls3c{letter-spacing:-0.019722px;}
.ls61{letter-spacing:-0.012000px;}
.ls3f{letter-spacing:-0.009861px;}
.ls5f{letter-spacing:-0.006000px;}
.ls73{letter-spacing:-0.004200px;}
.lse{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004224px;}
.ls56{letter-spacing:0.009600px;}
.ls3a{letter-spacing:0.015230px;}
.ls35{letter-spacing:0.015300px;}
.ls6b{letter-spacing:0.018900px;}
.ls65{letter-spacing:0.019200px;}
.ls39{letter-spacing:0.020306px;}
.ls64{letter-spacing:0.021769px;}
.ls54{letter-spacing:0.021830px;}
.ls6f{letter-spacing:0.022640px;}
.ls71{letter-spacing:0.027168px;}
.ls19{letter-spacing:0.027905px;}
.ls72{letter-spacing:0.031696px;}
.ls44{letter-spacing:0.035536px;}
.ls21{letter-spacing:0.037950px;}
.ls59{letter-spacing:0.038256px;}
.ls41{letter-spacing:0.050766px;}
.ls46{letter-spacing:0.055843px;}
.ls17{letter-spacing:0.059138px;}
.ls55{letter-spacing:0.062400px;}
.ls36{letter-spacing:0.065035px;}
.ls16{letter-spacing:0.065710px;}
.ls1d{letter-spacing:0.066950px;}
.ls60{letter-spacing:0.068241px;}
.ls4f{letter-spacing:0.077529px;}
.ls53{letter-spacing:0.077999px;}
.ls4e{letter-spacing:0.080116px;}
.ls50{letter-spacing:0.080338px;}
.ls42{letter-spacing:0.086410px;}
.ls1b{letter-spacing:0.090982px;}
.ls1a{letter-spacing:0.095277px;}
.ls5e{letter-spacing:0.099259px;}
.ls0{letter-spacing:0.105594px;}
.ls15{letter-spacing:0.116255px;}
.ls58{letter-spacing:0.122419px;}
.ls30{letter-spacing:0.138681px;}
.ls1e{letter-spacing:0.153028px;}
.ls1f{letter-spacing:0.245447px;}
.ls57{letter-spacing:0.249900px;}
.ls2d{letter-spacing:0.296491px;}
.ls6d{letter-spacing:4.628976px;}
.lsc{letter-spacing:5.575952px;}
.lsd{letter-spacing:5.614209px;}
.lsa{letter-spacing:5.781583px;}
.ls5{letter-spacing:6.116331px;}
.ls5a{letter-spacing:9.066672px;}
.ls5b{letter-spacing:9.395674px;}
.ls37{letter-spacing:9.433930px;}
.ls31{letter-spacing:10.539792px;}
.ls3{letter-spacing:10.570280px;}
.ls12{letter-spacing:11.145349px;}
.ls13{letter-spacing:11.216113px;}
.ls34{letter-spacing:11.414920px;}
.ls9{letter-spacing:11.443613px;}
.ls28{letter-spacing:11.529691px;}
.ls27{letter-spacing:11.534473px;}
.ls7{letter-spacing:11.630116px;}
.ls33{letter-spacing:11.744887px;}
.ls2f{letter-spacing:11.864440px;}
.ls26{letter-spacing:11.878786px;}
.lsb{letter-spacing:12.467630px;}
.ls6e{letter-spacing:12.566640px;}
.ls2e{letter-spacing:12.739568px;}
.ls23{letter-spacing:13.236908px;}
.ls32{letter-spacing:13.385154px;}
.ls22{letter-spacing:13.519053px;}
.ls14{letter-spacing:13.672639px;}
.ls4{letter-spacing:13.983241px;}
.ls18{letter-spacing:14.016350px;}
.ls4c{letter-spacing:15.058896px;}
.ls6{letter-spacing:15.546236px;}
.ls8{letter-spacing:15.546820px;}
.ls2a{letter-spacing:15.886203px;}
.ls63{letter-spacing:16.053577px;}
.ls29{letter-spacing:16.220951px;}
.ls74{letter-spacing:16.683442px;}
.ls25{letter-spacing:17.158247px;}
.ls24{letter-spacing:17.215632px;}
.ls49{letter-spacing:17.488213px;}
.ls2c{letter-spacing:17.669933px;}
.ls4b{letter-spacing:18.038157px;}
.ls1c{letter-spacing:18.047721px;}
.ls2b{letter-spacing:20.697015px;}
.ls2{letter-spacing:23.676412px;}
.lsf{letter-spacing:23.902363px;}
.ls4a{letter-spacing:25.656074px;}
.ls10{letter-spacing:32.771868px;}
.ls11{letter-spacing:33.101835px;}
.ls40{letter-spacing:67.065600px;}
.ls38{letter-spacing:249.390864px;}
.ls51{letter-spacing:249.719866px;}
.ls4d{letter-spacing:262.967918px;}
.ls52{letter-spacing:307.352530px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws204{word-spacing:-62.865600px;}
.ws3e{word-spacing:-33.149656px;}
.ws3d{word-spacing:-32.819690px;}
.ws7c{word-spacing:-18.095542px;}
.ws213{word-spacing:-17.536034px;}
.ws205{word-spacing:-14.062182px;}
.ws40{word-spacing:-11.677937px;}
.ws41{word-spacing:-11.491434px;}
.ws206{word-spacing:-8.929739px;}
.ws67{word-spacing:-5.662030px;}
.ws68{word-spacing:-5.623773px;}
.wsd7{word-spacing:-0.851154px;}
.ws20b{word-spacing:-0.725954px;}
.ws25f{word-spacing:-0.062400px;}
.ws6a{word-spacing:-0.050546px;}
.ws30{word-spacing:-0.047821px;}
.ws1e{word-spacing:-0.043039px;}
.ws5d{word-spacing:-0.038256px;}
.ws6d{word-spacing:-0.032854px;}
.wsc7{word-spacing:-0.031876px;}
.ws157{word-spacing:-0.031084px;}
.ws25e{word-spacing:-0.025500px;}
.ws291{word-spacing:-0.019200px;}
.ws260{word-spacing:-0.014400px;}
.ws69{word-spacing:0.000000px;}
.ws292{word-spacing:0.009600px;}
.ws261{word-spacing:0.024000px;}
.wsd6{word-spacing:6.243379px;}
.ws203{word-spacing:9.081974px;}
.ws1f7{word-spacing:9.124056px;}
.ws1c6{word-spacing:9.150835px;}
.ws1c5{word-spacing:9.189091px;}
.ws1c4{word-spacing:9.273254px;}
.ws25a{word-spacing:9.315336px;}
.ws290{word-spacing:9.322987px;}
.ws28f{word-spacing:9.445406px;}
.ws2e8{word-spacing:9.502790px;}
.ws208{word-spacing:9.521918px;}
.ws28e{word-spacing:9.606082px;}
.ws1f6{word-spacing:9.632861px;}
.ws25b{word-spacing:9.671117px;}
.ws24d{word-spacing:9.797362px;}
.ws25c{word-spacing:9.877699px;}
.ws316{word-spacing:9.919781px;}
.ws2e3{word-spacing:10.072805px;}
.ws13{word-spacing:10.088248px;}
.ws66{word-spacing:10.138094px;}
.ws1c{word-spacing:10.290529px;}
.ws1f{word-spacing:10.316352px;}
.ws79{word-spacing:10.338943px;}
.ws2ff{word-spacing:10.397981px;}
.ws130{word-spacing:10.477625px;}
.ws1d{word-spacing:10.479899px;}
.wscc{word-spacing:10.506318px;}
.ws1d6{word-spacing:10.520664px;}
.wscb{word-spacing:10.525446px;}
.ws131{word-spacing:10.544575px;}
.ws23d{word-spacing:10.549357px;}
.ws23f{word-spacing:10.582832px;}
.ws165{word-spacing:10.611524px;}
.ws78{word-spacing:10.625871px;}
.ws1a5{word-spacing:10.692820px;}
.ws1c2{word-spacing:10.707167px;}
.ws77{word-spacing:10.731077px;}
.ws1a1{word-spacing:10.740642px;}
.ws311{word-spacing:10.818797px;}
.ws26a{word-spacing:10.836284px;}
.ws11c{word-spacing:10.898451px;}
.ws23e{word-spacing:10.927144px;}
.ws29d{word-spacing:10.970183px;}
.ws2d8{word-spacing:10.975646px;}
.ws12e{word-spacing:10.989312px;}
.ws299{word-spacing:11.056261px;}
.wse5{word-spacing:11.070608px;}
.ws70{word-spacing:11.094803px;}
.ws2c4{word-spacing:11.104083px;}
.wsd3{word-spacing:11.113368px;}
.ws281{word-spacing:11.123211px;}
.ws2e6{word-spacing:11.124845px;}
.ws1d0{word-spacing:11.185379px;}
.ws1b{word-spacing:11.190036px;}
.ws2bd{word-spacing:11.204507px;}
.ws275{word-spacing:11.214071px;}
.wsfe{word-spacing:11.218854px;}
.ws155{word-spacing:11.233200px;}
.ws129{word-spacing:11.237982px;}
.ws123{word-spacing:11.252328px;}
.ws14f{word-spacing:11.261893px;}
.wsab{word-spacing:11.266675px;}
.ws154{word-spacing:11.281021px;}
.ws35{word-spacing:11.290585px;}
.ws47{word-spacing:11.295367px;}
.ws99{word-spacing:11.309714px;}
.ws3c{word-spacing:11.314496px;}
.wsa0{word-spacing:11.319278px;}
.ws16a{word-spacing:11.328842px;}
.ws1be{word-spacing:11.338407px;}
.ws2b4{word-spacing:11.347971px;}
.wscf{word-spacing:11.352753px;}
.ws1cc{word-spacing:11.362317px;}
.ws17d{word-spacing:11.367099px;}
.ws1f4{word-spacing:11.381160px;}
.ws1bd{word-spacing:11.381446px;}
.wsaa{word-spacing:11.395792px;}
.ws2ba{word-spacing:11.400574px;}
.ws18e{word-spacing:11.419703px;}
.wsa9{word-spacing:11.429267px;}
.ws1ea{word-spacing:11.434049px;}
.ws1bb{word-spacing:11.438831px;}
.ws42{word-spacing:11.448395px;}
.ws1c0{word-spacing:11.453177px;}
.ws126{word-spacing:11.467524px;}
.ws136{word-spacing:11.472306px;}
.ws9b{word-spacing:11.486652px;}
.ws3f{word-spacing:11.496216px;}
.wsb1{word-spacing:11.500999px;}
.ws151{word-spacing:11.510563px;}
.ws13b{word-spacing:11.515345px;}
.ws18d{word-spacing:11.520127px;}
.ws178{word-spacing:11.529691px;}
.ws1bc{word-spacing:11.544038px;}
.ws88{word-spacing:11.553602px;}
.wsb{word-spacing:11.555767px;}
.wsa4{word-spacing:11.563166px;}
.ws214{word-spacing:11.567948px;}
.wsb7{word-spacing:11.572730px;}
.ws152{word-spacing:11.591859px;}
.ws2b5{word-spacing:11.596641px;}
.ws17b{word-spacing:11.601423px;}
.ws16f{word-spacing:11.615769px;}
.wsf1{word-spacing:11.625334px;}
.ws1b6{word-spacing:11.630116px;}
.ws87{word-spacing:11.644462px;}
.ws146{word-spacing:11.658809px;}
.ws167{word-spacing:11.677937px;}
.ws16b{word-spacing:11.682719px;}
.ws34{word-spacing:11.701848px;}
.ws89{word-spacing:11.725758px;}
.ws26f{word-spacing:11.730540px;}
.ws121{word-spacing:11.754451px;}
.wsc6{word-spacing:11.759233px;}
.ws17c{word-spacing:11.778362px;}
.ws284{word-spacing:11.816619px;}
.ws2ea{word-spacing:11.817278px;}
.wsca{word-spacing:11.821401px;}
.ws22f{word-spacing:11.888350px;}
.wsec{word-spacing:11.926607px;}
.ws17e{word-spacing:11.931389px;}
.ws22d{word-spacing:11.945736px;}
.wsfa{word-spacing:12.007903px;}
.ws1cf{word-spacing:12.041378px;}
.ws19{word-spacing:12.050808px;}
.ws10d{word-spacing:12.060507px;}
.ws30a{word-spacing:12.073594px;}
.wsa{word-spacing:12.081245px;}
.ws28d{word-spacing:12.085070px;}
.ws2cb{word-spacing:12.096547px;}
.wse{word-spacing:12.104198px;}
.ws2d4{word-spacing:12.134803px;}
.wsfb{word-spacing:12.137021px;}
.ws2ce{word-spacing:12.138629px;}
.ws2fa{word-spacing:12.157757px;}
.ws28b{word-spacing:12.161582px;}
.ws2ed{word-spacing:12.176885px;}
.ws30d{word-spacing:12.188362px;}
.ws9{word-spacing:12.192187px;}
.ws2dc{word-spacing:12.203664px;}
.ws1cd{word-spacing:12.203970px;}
.ws63{word-spacing:12.211315px;}
.ws310{word-spacing:12.215141px;}
.ws2e1{word-spacing:12.218966px;}
.ws62{word-spacing:12.234269px;}
.wsf9{word-spacing:12.237445px;}
.ws2e4{word-spacing:12.241920px;}
.ws307{word-spacing:12.249571px;}
.ws22e{word-spacing:12.251791px;}
.ws2db{word-spacing:12.253397px;}
.ws2ec{word-spacing:12.257222px;}
.ws264{word-spacing:12.261356px;}
.ws313{word-spacing:12.280176px;}
.ws148{word-spacing:12.285266px;}
.ws5e{word-spacing:12.287827px;}
.ws2e7{word-spacing:12.291653px;}
.ws144{word-spacing:12.294831px;}
.ws2f4{word-spacing:12.295478px;}
.wsf{word-spacing:12.314606px;}
.wsd{word-spacing:12.326083px;}
.ws1fa{word-spacing:12.329909px;}
.ws2c9{word-spacing:12.333734px;}
.ws60{word-spacing:12.341386px;}
.ws1c7{word-spacing:12.345211px;}
.ws26{word-spacing:12.347434px;}
.ws315{word-spacing:12.360514px;}
.ws29c{word-spacing:12.371344px;}
.ws304{word-spacing:12.375816px;}
.ws1fe{word-spacing:12.379642px;}
.ws301{word-spacing:12.394944px;}
.ws2d3{word-spacing:12.398770px;}
.ws5f{word-spacing:12.406421px;}
.ws1f5{word-spacing:12.425549px;}
.ws1e1{word-spacing:12.433512px;}
.ws11{word-spacing:12.437026px;}
.ws12{word-spacing:12.440851px;}
.ws1ff{word-spacing:12.444677px;}
.ws221{word-spacing:12.452640px;}
.ws303{word-spacing:12.456154px;}
.ws145{word-spacing:12.486115px;}
.ws2ab{word-spacing:12.519590px;}
.ws10{word-spacing:12.521189px;}
.ws8{word-spacing:12.528840px;}
.ws11d{word-spacing:12.543501px;}
.ws308{word-spacing:12.578573px;}
.ws1ce{word-spacing:12.581758px;}
.ws28a{word-spacing:12.586224px;}
.wsc{word-spacing:12.593875px;}
.ws61{word-spacing:12.605352px;}
.ws90{word-spacing:12.639143px;}
.ws28{word-spacing:12.653490px;}
.ws27{word-spacing:12.663054px;}
.ws1f3{word-spacing:12.712469px;}
.wsee{word-spacing:12.720439px;}
.ws254{word-spacing:12.723946px;}
.wsf4{word-spacing:12.725221px;}
.ws3a{word-spacing:12.730003px;}
.wsed{word-spacing:12.744350px;}
.ws2f9{word-spacing:12.781330px;}
.ws27d{word-spacing:12.782607px;}
.ws8e{word-spacing:12.796953px;}
.ws297{word-spacing:12.806517px;}
.ws216{word-spacing:12.820864px;}
.wseb{word-spacing:12.839992px;}
.ws283{word-spacing:12.844774px;}
.ws127{word-spacing:12.892596px;}
.ws1d1{word-spacing:12.916506px;}
.ws276{word-spacing:12.988238px;}
.ws3b{word-spacing:13.012149px;}
.ws2f1{word-spacing:13.018517px;}
.ws1ae{word-spacing:13.021713px;}
.ws2b8{word-spacing:13.026495px;}
.ws29e{word-spacing:13.040841px;}
.ws1c8{word-spacing:13.050405px;}
.ws24b{word-spacing:13.052947px;}
.wsea{word-spacing:13.055188px;}
.ws159{word-spacing:13.079098px;}
.ws8f{word-spacing:13.117355px;}
.ws1d7{word-spacing:13.122137px;}
.ws2f{word-spacing:13.126919px;}
.ws31{word-spacing:13.155612px;}
.ws243{word-spacing:13.198651px;}
.ws1d9{word-spacing:13.232126px;}
.ws171{word-spacing:13.246472px;}
.wsc0{word-spacing:13.270383px;}
.ws14{word-spacing:13.281712px;}
.ws115{word-spacing:13.303858px;}
.ws117{word-spacing:13.322986px;}
.ws222{word-spacing:13.327768px;}
.ws11f{word-spacing:13.337333px;}
.ws16c{word-spacing:13.366025px;}
.ws116{word-spacing:13.380372px;}
.ws15a{word-spacing:13.389936px;}
.ws1db{word-spacing:13.418629px;}
.wsba{word-spacing:13.447321px;}
.wse0{word-spacing:13.452104px;}
.ws1c9{word-spacing:13.504707px;}
.ws2bb{word-spacing:13.509489px;}
.ws86{word-spacing:13.528617px;}
.ws147{word-spacing:13.542964px;}
.wsc9{word-spacing:13.557310px;}
.ws1d8{word-spacing:13.576439px;}
.ws2fb{word-spacing:13.603834px;}
.ws1a{word-spacing:13.613109px;}
.wsd9{word-spacing:13.638606px;}
.ws278{word-spacing:13.643388px;}
.ws44{word-spacing:13.657735px;}
.ws6e{word-spacing:13.677693px;}
.ws133{word-spacing:13.681645px;}
.ws85{word-spacing:13.710338px;}
.ws84{word-spacing:13.719902px;}
.ws1a4{word-spacing:13.729467px;}
.ws59{word-spacing:13.734249px;}
.ws143{word-spacing:13.748595px;}
.ws20f{word-spacing:13.753377px;}
.ws24c{word-spacing:13.802765px;}
.ws135{word-spacing:13.815545px;}
.ws105{word-spacing:13.820327px;}
.ws300{word-spacing:13.829544px;}
.ws94{word-spacing:13.849020px;}
.ws240{word-spacing:13.877712px;}
.ws2cf{word-spacing:13.898405px;}
.ws55{word-spacing:13.920751px;}
.ws72{word-spacing:13.960750px;}
.ws22{word-spacing:13.961722px;}
.wse6{word-spacing:13.973355px;}
.ws29f{word-spacing:13.992483px;}
.ws15e{word-spacing:14.006829px;}
.ws23{word-spacing:14.009064px;}
.ws6b{word-spacing:14.021405px;}
.ws5a{word-spacing:14.025958px;}
.ws314{word-spacing:14.028475px;}
.ws45{word-spacing:14.040304px;}
.ws2af{word-spacing:14.049869px;}
.ws54{word-spacing:14.064215px;}
.ws262{word-spacing:14.102472px;}
.ws317{word-spacing:14.116464px;}
.ws24a{word-spacing:14.121600px;}
.ws53{word-spacing:14.155075px;}
.ws279{word-spacing:14.159857px;}
.ws29b{word-spacing:14.174204px;}
.wsda{word-spacing:14.178986px;}
.ws153{word-spacing:14.193332px;}
.ws2b7{word-spacing:14.226807px;}
.ws134{word-spacing:14.241153px;}
.ws46{word-spacing:14.274628px;}
.ws2c1{word-spacing:14.279410px;}
.ws1a8{word-spacing:14.303321px;}
.wse1{word-spacing:14.360706px;}
.ws1aa{word-spacing:14.389399px;}
.ws1ba{word-spacing:14.403745px;}
.ws298{word-spacing:14.446785px;}
.ws5b{word-spacing:14.451567px;}
.ws210{word-spacing:14.461131px;}
.ws217{word-spacing:14.465913px;}
.ws108{word-spacing:14.494606px;}
.ws150{word-spacing:14.499388px;}
.ws18{word-spacing:14.516920px;}
.wsc8{word-spacing:14.537645px;}
.ws1a9{word-spacing:14.571120px;}
.wsae{word-spacing:14.595030px;}
.ws202{word-spacing:14.640571px;}
.ws15d{word-spacing:14.676326px;}
.wsb0{word-spacing:14.690673px;}
.ws1a3{word-spacing:14.714583px;}
.wse3{word-spacing:14.728930px;}
.ws43{word-spacing:14.771969px;}
.ws125{word-spacing:14.805444px;}
.ws29{word-spacing:14.824572px;}
.ws2e{word-spacing:14.877175px;}
.ws109{word-spacing:14.881957px;}
.wse2{word-spacing:14.891522px;}
.ws7f{word-spacing:14.896304px;}
.wsaf{word-spacing:14.901086px;}
.ws201{word-spacing:14.904538px;}
.ws104{word-spacing:14.920214px;}
.ws49{word-spacing:14.934561px;}
.ws247{word-spacing:14.939343px;}
.wse4{word-spacing:14.958471px;}
.ws2a{word-spacing:14.963253px;}
.ws95{word-spacing:14.991946px;}
.ws83{word-spacing:15.025421px;}
.ws170{word-spacing:15.039767px;}
.ws1c1{word-spacing:15.044550px;}
.ws11e{word-spacing:15.068460px;}
.ws2b9{word-spacing:15.078024px;}
.ws93{word-spacing:15.082806px;}
.wsd8{word-spacing:15.087589px;}
.ws10c{word-spacing:15.101935px;}
.ws13e{word-spacing:15.106717px;}
.ws265{word-spacing:15.111499px;}
.ws162{word-spacing:15.125846px;}
.ws30b{word-spacing:15.126422px;}
.ws96{word-spacing:15.130628px;}
.ws1e2{word-spacing:15.140192px;}
.ws2ae{word-spacing:15.144974px;}
.ws12d{word-spacing:15.149756px;}
.ws2a4{word-spacing:15.159320px;}
.ws1ac{word-spacing:15.164103px;}
.ws33{word-spacing:15.168885px;}
.ws23a{word-spacing:15.188013px;}
.ws142{word-spacing:15.202359px;}
.ws2c2{word-spacing:15.211924px;}
.ws239{word-spacing:15.216706px;}
.ws103{word-spacing:15.221488px;}
.ws26d{word-spacing:15.231052px;}
.ws246{word-spacing:15.235834px;}
.wsb4{word-spacing:15.240616px;}
.ws244{word-spacing:15.259745px;}
.ws2c3{word-spacing:15.264527px;}
.ws24{word-spacing:15.283656px;}
.ws4b{word-spacing:15.298002px;}
.ws64{word-spacing:15.302784px;}
.ws8d{word-spacing:15.336259px;}
.ws2f7{word-spacing:15.336830px;}
.ws92{word-spacing:15.341041px;}
.ws4a{word-spacing:15.369734px;}
.wsde{word-spacing:15.388862px;}
.wsac{word-spacing:15.422337px;}
.ws1e7{word-spacing:15.427119px;}
.ws2c0{word-spacing:15.446248px;}
.wsbc{word-spacing:15.474940px;}
.ws26e{word-spacing:15.489287px;}
.ws7a{word-spacing:15.494069px;}
.wsa3{word-spacing:15.551454px;}
.ws2c8{word-spacing:15.562541px;}
.ws56{word-spacing:15.575365px;}
.ws198{word-spacing:15.584929px;}
.ws2b1{word-spacing:15.589711px;}
.ws21{word-spacing:15.597189px;}
.ws197{word-spacing:15.604058px;}
.ws2c7{word-spacing:15.612274px;}
.ws57{word-spacing:15.613622px;}
.ws1dc{word-spacing:15.642315px;}
.wsb5{word-spacing:15.651879px;}
.wsa2{word-spacing:15.671007px;}
.ws18c{word-spacing:15.709264px;}
.ws272{word-spacing:15.714046px;}
.ws1dd{word-spacing:15.718828px;}
.ws106{word-spacing:15.757085px;}
.ws2a5{word-spacing:15.800124px;}
.ws58{word-spacing:15.828817px;}
.ws37{word-spacing:15.838381px;}
.ws17a{word-spacing:15.881421px;}
.ws18b{word-spacing:15.895767px;}
.ws120{word-spacing:15.914895px;}
.ws128{word-spacing:15.919677px;}
.ws169{word-spacing:15.981845px;}
.wsb3{word-spacing:15.986627px;}
.ws1ee{word-spacing:15.991409px;}
.ws107{word-spacing:15.996191px;}
.ws39{word-spacing:16.096616px;}
.ws102{word-spacing:16.149219px;}
.ws15{word-spacing:16.152387px;}
.wse8{word-spacing:16.154001px;}
.wse7{word-spacing:16.173130px;}
.ws1a7{word-spacing:16.177912px;}
.ws286{word-spacing:16.206605px;}
.ws14d{word-spacing:16.211387px;}
.ws1a6{word-spacing:16.225733px;}
.ws22a{word-spacing:16.254426px;}
.ws38{word-spacing:16.259208px;}
.ws19a{word-spacing:16.263990px;}
.ws19c{word-spacing:16.287901px;}
.ws2fd{word-spacing:16.297056px;}
.ws176{word-spacing:16.297465px;}
.ws101{word-spacing:16.302247px;}
.ws36{word-spacing:16.307029px;}
.wsb2{word-spacing:16.311811px;}
.ws2bf{word-spacing:16.359633px;}
.ws118{word-spacing:16.369197px;}
.ws2f6{word-spacing:16.400347px;}
.ws174{word-spacing:16.402672px;}
.wscd{word-spacing:16.440929px;}
.ws9e{word-spacing:16.445711px;}
.ws149{word-spacing:16.483968px;}
.ws220{word-spacing:16.541353px;}
.ws186{word-spacing:16.546135px;}
.ws19b{word-spacing:16.560482px;}
.ws1ab{word-spacing:16.565264px;}
.ws2f2{word-spacing:16.629883px;}
.ws2cc{word-spacing:16.633709px;}
.wsa1{word-spacing:16.651342px;}
.ws9d{word-spacing:16.670470px;}
.ws185{word-spacing:16.699163px;}
.ws184{word-spacing:16.770895px;}
.wsb8{word-spacing:16.818716px;}
.ws9c{word-spacing:16.823498px;}
.ws194{word-spacing:16.856973px;}
.ws141{word-spacing:16.866537px;}
.ws48{word-spacing:16.885666px;}
.ws183{word-spacing:16.890448px;}
.ws20e{word-spacing:16.904794px;}
.ws241{word-spacing:16.909576px;}
.ws17{word-spacing:16.922778px;}
.ws52{word-spacing:16.962180px;}
.ws182{word-spacing:16.981308px;}
.wsc1{word-spacing:17.048258px;}
.wsd2{word-spacing:17.050699px;}
.ws4e{word-spacing:17.053040px;}
.ws2d5{word-spacing:17.066002px;}
.ws212{word-spacing:17.096079px;}
.ws75{word-spacing:17.129554px;}
.wsb9{word-spacing:17.148682px;}
.ws17f{word-spacing:17.163029px;}
.wsef{word-spacing:17.206068px;}
.wsd1{word-spacing:17.222851px;}
.ws16{word-spacing:17.232655px;}
.wsf0{word-spacing:17.239543px;}
.ws13a{word-spacing:17.306492px;}
.ws10e{word-spacing:17.316057px;}
.ws15b{word-spacing:17.339967px;}
.ws2f3{word-spacing:17.395003px;}
.wsbd{word-spacing:17.411699px;}
.ws124{word-spacing:17.430827px;}
.ws173{word-spacing:17.435610px;}
.ws7b{word-spacing:17.445174px;}
.ws50{word-spacing:17.469084px;}
.ws294{word-spacing:17.478649px;}
.ws233{word-spacing:17.497777px;}
.ws227{word-spacing:17.531252px;}
.ws1ed{word-spacing:17.545598px;}
.ws1eb{word-spacing:17.574291px;}
.ws232{word-spacing:17.579073px;}
.ws13c{word-spacing:17.583855px;}
.ws4f{word-spacing:17.588637px;}
.ws51{word-spacing:17.617330px;}
.wsf3{word-spacing:17.655587px;}
.ws193{word-spacing:17.660369px;}
.ws296{word-spacing:17.669933px;}
.ws1d3{word-spacing:17.684280px;}
.ws8c{word-spacing:17.765576px;}
.ws1ec{word-spacing:17.808615px;}
.ws29a{word-spacing:17.818179px;}
.ws229{word-spacing:17.846872px;}
.ws295{word-spacing:17.885129px;}
.ws156{word-spacing:17.899475px;}
.ws2a7{word-spacing:17.928168px;}
.ws228{word-spacing:17.942514px;}
.ws219{word-spacing:17.961643px;}
.ws196{word-spacing:17.995118px;}
.ws187{word-spacing:18.009464px;}
.ws2be{word-spacing:18.019028px;}
.ws218{word-spacing:18.023810px;}
.ws27c{word-spacing:18.076414px;}
.ws158{word-spacing:18.114671px;}
.ws188{word-spacing:18.148145px;}
.ws175{word-spacing:18.162492px;}
.ws2df{word-spacing:18.163949px;}
.ws1ef{word-spacing:18.172056px;}
.ws195{word-spacing:18.215095px;}
.ws215{word-spacing:18.234224px;}
.ws2d9{word-spacing:18.259589px;}
.ws1f1{word-spacing:18.310737px;}
.ws21a{word-spacing:18.334648px;}
.ws2f5{word-spacing:18.347578px;}
.ws190{word-spacing:18.358559px;}
.ws2c6{word-spacing:18.370531px;}
.ws132{word-spacing:18.372905px;}
.ws268{word-spacing:18.387251px;}
.wsc5{word-spacing:18.392034px;}
.ws18f{word-spacing:18.415944px;}
.ws231{word-spacing:18.454201px;}
.ws27b{word-spacing:18.478112px;}
.wsbe{word-spacing:18.506804px;}
.wsbb{word-spacing:18.511587px;}
.ws140{word-spacing:18.540279px;}
.ws1f0{word-spacing:18.545061px;}
.ws257{word-spacing:18.550334px;}
.ws2b2{word-spacing:18.583318px;}
.ws258{word-spacing:18.600067px;}
.ws7e{word-spacing:18.602447px;}
.ws181{word-spacing:18.607229px;}
.ws2ef{word-spacing:18.619195px;}
.ws13d{word-spacing:18.688525px;}
.ws1a2{word-spacing:18.702871px;}
.ws207{word-spacing:18.714835px;}
.wsf2{word-spacing:18.717218px;}
.ws238{word-spacing:18.736346px;}
.ws1cb{word-spacing:18.745910px;}
.ws30f{word-spacing:18.749266px;}
.ws180{word-spacing:18.755475px;}
.ws259{word-spacing:18.787522px;}
.ws25{word-spacing:18.927631px;}
.ws2a8{word-spacing:18.951542px;}
.ws7d{word-spacing:19.018491px;}
.ws1d2{word-spacing:19.051966px;}
.ws19e{word-spacing:19.080659px;}
.ws14c{word-spacing:19.090223px;}
.ws1b0{word-spacing:19.095005px;}
.wsa7{word-spacing:19.176301px;}
.ws1e0{word-spacing:19.286290px;}
.ws306{word-spacing:19.303978px;}
.wsa6{word-spacing:19.319765px;}
.ws277{word-spacing:19.348458px;}
.ws16e{word-spacing:19.401061px;}
.ws189{word-spacing:19.453664px;}
.ws305{word-spacing:19.460827px;}
.ws15f{word-spacing:19.491921px;}
.ws235{word-spacing:19.506267px;}
.ws1ad{word-spacing:19.525396px;}
.ws285{word-spacing:19.544524px;}
.ws1b1{word-spacing:19.573217px;}
.ws2aa{word-spacing:19.577999px;}
.ws18a{word-spacing:19.649731px;}
.ws199{word-spacing:19.683206px;}
.ws237{word-spacing:19.702334px;}
.ws192{word-spacing:19.740591px;}
.ws160{word-spacing:19.750156px;}
.ws137{word-spacing:19.797977px;}
.ws2bc{word-spacing:19.802759px;}
.ws236{word-spacing:19.869709px;}
.wsf6{word-spacing:19.884055px;}
.ws12a{word-spacing:19.927094px;}
.ws172{word-spacing:19.946223px;}
.ws122{word-spacing:19.979697px;}
.ws2e2{word-spacing:19.988760px;}
.wsf7{word-spacing:20.003608px;}
.ws293{word-spacing:20.013172px;}
.wsf8{word-spacing:20.037083px;}
.ws20{word-spacing:20.043076px;}
.ws82{word-spacing:20.056211px;}
.ws2de{word-spacing:20.080574px;}
.ws9a{word-spacing:20.089686px;}
.ws309{word-spacing:20.095877px;}
.ws12b{word-spacing:20.127943px;}
.ws12c{word-spacing:20.137507px;}
.ws191{word-spacing:20.199675px;}
.ws1c3{word-spacing:20.209239px;}
.ws1b2{word-spacing:20.261842px;}
.ws2e9{word-spacing:20.275680px;}
.wsc3{word-spacing:20.290535px;}
.ws19d{word-spacing:20.343138px;}
.ws271{word-spacing:20.371831px;}
.ws13f{word-spacing:20.414870px;}
.ws21d{word-spacing:20.438781px;}
.ws161{word-spacing:20.443563px;}
.ws267{word-spacing:20.486602px;}
.ws223{word-spacing:20.500948px;}
.ws164{word-spacing:20.515295px;}
.wsdb{word-spacing:20.534423px;}
.ws20d{word-spacing:20.653976px;}
.ws270{word-spacing:20.716144px;}
.wsa5{word-spacing:20.730490px;}
.ws76{word-spacing:20.740054px;}
.ws163{word-spacing:20.744837px;}
.ws21b{word-spacing:20.759183px;}
.ws266{word-spacing:20.763965px;}
.wsdd{word-spacing:20.778311px;}
.wsdc{word-spacing:20.787876px;}
.ws21c{word-spacing:20.792658px;}
.ws3{word-spacing:20.890781px;}
.ws6{word-spacing:20.985826px;}
.ws1e9{word-spacing:20.988725px;}
.ws4{word-spacing:21.023843px;}
.ws7{word-spacing:21.036516px;}
.ws4c{word-spacing:21.036546px;}
.ws5{word-spacing:21.061861px;}
.ws2a3{word-spacing:21.070021px;}
.ws2{word-spacing:21.112552px;}
.ws97{word-spacing:21.113060px;}
.ws1b9{word-spacing:21.122624px;}
.ws4d{word-spacing:21.127406px;}
.ws2d2{word-spacing:21.147917px;}
.ws2ac{word-spacing:21.203920px;}
.ws21f{word-spacing:21.232613px;}
.wsb6{word-spacing:21.313909px;}
.ws16d{word-spacing:21.333037px;}
.ws20c{word-spacing:21.347384px;}
.ws2d1{word-spacing:21.369802px;}
.ws288{word-spacing:21.380859px;}
.ws100{word-spacing:21.457372px;}
.ws2e5{word-spacing:21.496046px;}
.ws179{word-spacing:21.639093px;}
.ws2da{word-spacing:21.660547px;}
.ws248{word-spacing:21.739518px;}
.ws11b{word-spacing:21.782557px;}
.ws11a{word-spacing:21.873417px;}
.wsf5{word-spacing:21.887763px;}
.ws274{word-spacing:21.916456px;}
.wsc4{word-spacing:22.031227px;}
.ws114{word-spacing:22.117305px;}
.ws112{word-spacing:22.174690px;}
.ws2a1{word-spacing:22.227294px;}
.ws10a{word-spacing:22.332500px;}
.ws1b3{word-spacing:22.337283px;}
.ws30e{word-spacing:22.341504px;}
.ws234{word-spacing:22.356411px;}
.ws2fe{word-spacing:22.364458px;}
.ws14b{word-spacing:22.399450px;}
.ws1b5{word-spacing:22.466400px;}
.ws15c{word-spacing:22.504657px;}
.ws1b4{word-spacing:22.628992px;}
.ws5c{word-spacing:22.652902px;}
.wsce{word-spacing:22.868098px;}
.ws10f{word-spacing:22.892008px;}
.ws10b{word-spacing:22.911137px;}
.ws2d0{word-spacing:22.953600px;}
.ws12f{word-spacing:22.963740px;}
.ws242{word-spacing:23.064165px;}
.ws111{word-spacing:23.159807px;}
.ws14e{word-spacing:23.169371px;}
.ws318{word-spacing:23.290253px;}
.ws73{word-spacing:23.293707px;}
.ws110{word-spacing:23.317617px;}
.wsd4{word-spacing:23.366765px;}
.ws2ca{word-spacing:23.462405px;}
.ws27e{word-spacing:23.484991px;}
.ws1e5{word-spacing:23.499338px;}
.ws280{word-spacing:23.523248px;}
.ws1e8{word-spacing:23.633237px;}
.ws1e4{word-spacing:23.657148px;}
.ws23c{word-spacing:23.666712px;}
.ws1d4{word-spacing:23.752790px;}
.ws1d5{word-spacing:23.762354px;}
.ws14a{word-spacing:23.771919px;}
.ws1e6{word-spacing:23.781483px;}
.ws9f{word-spacing:23.800611px;}
.ws27f{word-spacing:23.843650px;}
.ws2d7{word-spacing:23.848790px;}
.ws1e3{word-spacing:23.924946px;}
.ws2b0{word-spacing:23.996678px;}
.wse9{word-spacing:24.015807px;}
.ws23b{word-spacing:24.044499px;}
.ws226{word-spacing:24.111449px;}
.wsbf{word-spacing:24.326644px;}
.ws28c{word-spacing:24.349944px;}
.ws20a{word-spacing:24.430282px;}
.ws263{word-spacing:24.431851px;}
.ws2c{word-spacing:24.441415px;}
.wsdf{word-spacing:24.522711px;}
.wsc2{word-spacing:24.584879px;}
.ws166{word-spacing:24.651829px;}
.ws74{word-spacing:24.656611px;}
.ws8b{word-spacing:24.780946px;}
.wsff{word-spacing:24.881370px;}
.ws22b{word-spacing:24.981795px;}
.ws2a2{word-spacing:25.000923px;}
.ws22c{word-spacing:25.005705px;}
.ws81{word-spacing:25.015270px;}
.ws2fc{word-spacing:25.038552px;}
.ws119{word-spacing:25.153951px;}
.ws224{word-spacing:25.321325px;}
.ws2b6{word-spacing:25.383493px;}
.ws249{word-spacing:25.536521px;}
.ws302{word-spacing:25.574136px;}
.ws225{word-spacing:25.751716px;}
.ws2e0{word-spacing:25.857230px;}
.ws282{word-spacing:25.890398px;}
.ws211{word-spacing:25.899962px;}
.ws209{word-spacing:25.914614px;}
.ws2a6{word-spacing:26.148632px;}
.ws177{word-spacing:26.516855px;}
.ws98{word-spacing:26.636408px;}
.ws65{word-spacing:26.737549px;}
.ws2b{word-spacing:26.856386px;}
.ws0{word-spacing:27.025425px;}
.ws1da{word-spacing:27.081146px;}
.ws1{word-spacing:27.098053px;}
.ws2ad{word-spacing:27.372855px;}
.ws230{word-spacing:27.487626px;}
.ws2a0{word-spacing:27.501972px;}
.ws91{word-spacing:28.295804px;}
.ws2dd{word-spacing:28.320917px;}
.ws32{word-spacing:28.467960px;}
.ws113{word-spacing:28.530128px;}
.ws26c{word-spacing:28.654463px;}
.ws269{word-spacing:29.027468px;}
.ws312{word-spacing:29.040130px;}
.ws26b{word-spacing:29.147021px;}
.ws273{word-spacing:29.539155px;}
.ws1df{word-spacing:29.634798px;}
.ws1af{word-spacing:29.759133px;}
.ws287{word-spacing:29.931289px;}
.wsad{word-spacing:30.151267px;}
.ws19f{word-spacing:30.184741px;}
.ws21e{word-spacing:30.261255px;}
.ws80{word-spacing:30.280384px;}
.ws245{word-spacing:30.835110px;}
.ws8a{word-spacing:31.499824px;}
.ws27a{word-spacing:31.858483px;}
.ws25d{word-spacing:31.959062px;}
.ws168{word-spacing:33.010974px;}
.ws2f8{word-spacing:33.305674px;}
.ws1a0{word-spacing:33.441365px;}
.ws1de{word-spacing:33.761767px;}
.ws2c5{word-spacing:33.943488px;}
.wsfc{word-spacing:34.225633px;}
.wsfd{word-spacing:34.670370px;}
.ws1ca{word-spacing:34.789923px;}
.ws1f2{word-spacing:35.057722px;}
.ws2f0{word-spacing:36.848179px;}
.ws30c{word-spacing:38.386070px;}
.ws138{word-spacing:39.945048px;}
.ws139{word-spacing:40.150680px;}
.ws2d{word-spacing:40.246322px;}
.wsa8{word-spacing:43.675102px;}
.ws2a9{word-spacing:45.119302px;}
.ws1b7{word-spacing:45.841402px;}
.ws1b8{word-spacing:46.099637px;}
.ws2d6{word-spacing:52.781803px;}
.ws1bf{word-spacing:60.092120px;}
.ws2b3{word-spacing:77.766835px;}
.ws2cd{word-spacing:80.942045px;}
.ws24e{word-spacing:92.606299px;}
.ws200{word-spacing:93.838469px;}
.ws1f8{word-spacing:95.919269px;}
.ws250{word-spacing:114.909547px;}
.ws252{word-spacing:115.330363px;}
.ws1f9{word-spacing:118.218691px;}
.ws1fc{word-spacing:118.639507px;}
.ws253{word-spacing:122.139931px;}
.ws1fd{word-spacing:125.449075px;}
.ws251{word-spacing:143.176906px;}
.ws255{word-spacing:146.489875px;}
.ws1fb{word-spacing:146.910691px;}
.ws289{word-spacing:158.562600px;}
.ws24f{word-spacing:166.321786px;}
.ws256{word-spacing:171.704400px;}
.wsd0{word-spacing:339.023093px;}
.ws2eb{word-spacing:343.757400px;}
.ws6f{word-spacing:359.365474px;}
.ws6c{word-spacing:387.180828px;}
.ws71{word-spacing:446.931018px;}
.wsd5{word-spacing:866.544307px;}
.ws2ee{word-spacing:866.965123px;}
._27{margin-left:-67.275600px;}
._e{margin-left:-34.063041px;}
._d{margin-left:-32.767086px;}
._c{margin-left:-21.084367px;}
._11{margin-left:-17.298431px;}
._f{margin-left:-11.630116px;}
._8{margin-left:-1.109452px;}
._6{width:1.238264px;}
._3b{width:2.699286px;}
._28{width:4.297616px;}
._14{width:5.421246px;}
._20{width:9.177614px;}
._16{width:10.420239px;}
._1{width:11.469149px;}
._2{width:13.416379px;}
._3{width:14.590085px;}
._5{width:15.640227px;}
._a{width:16.988178px;}
._4{width:18.390394px;}
._13{width:20.084904px;}
._0{width:22.037651px;}
._7{width:23.290602px;}
._10{width:24.393594px;}
._9{width:25.689549px;}
._12{width:27.697325px;}
._15{width:29.673055px;}
._1a{width:31.375489px;}
._b{width:32.752740px;}
._19{width:34.211286px;}
._3e{width:37.231054px;}
._3d{width:38.271306px;}
._37{width:39.352065px;}
._17{width:41.078411px;}
._1b{width:47.280820px;}
._40{width:54.304392px;}
._3f{width:82.131806px;}
._2e{width:92.644555px;}
._2a{width:95.796850px;}
._1d{width:99.113645px;}
._2d{width:114.947803px;}
._29{width:118.103923px;}
._1c{width:121.745894px;}
._26{width:130.854742px;}
._33{width:146.528131px;}
._2b{width:164.695906px;}
._2c{width:166.360042px;}
._1e{width:168.008875px;}
._23{width:170.005838px;}
._3a{width:178.508400px;}
._21{width:179.983003px;}
._36{width:190.184400px;}
._2f{width:193.563883px;}
._38{width:200.268600px;}
._39{width:201.419400px;}
._24{width:203.965690px;}
._35{width:214.187400px;}
._31{width:217.546570px;}
._1f{width:254.356493px;}
._25{width:266.892984px;}
._32{width:280.473864px;}
._22{width:291.147288px;}
._30{width:304.728168px;}
._41{width:379.604400px;}
._3c{width:441.666338px;}
._34{width:480.661193px;}
._18{width:867.261220px;}
.fc0{color:rgb(0,0,0);}
.fc9{color:rgb(255,255,255);}
.fca{color:rgb(29,0,186);}
.fcb{color:rgb(128,128,128);}
.fcd{color:rgb(56,110,17);}
.fc1{color:rgb(0,128,173);}
.fc2{color:rgb(0,0,204);}
.fc4{color:rgb(255,0,0);}
.fc7{color:rgb(255,51,204);}
.fc5{color:rgb(51,51,204);}
.fc6{color:rgb(58,252,12);}
.fc8{color:rgb(255,102,0);}
.fc3{color:rgb(0,128,0);}
.fcc{color:rgb(202,24,27);}
.fs15{font-size:23.909400px;}
.fs4{font-size:25.500000px;}
.fs14{font-size:31.083600px;}
.fs9{font-size:31.876200px;}
.fsd{font-size:32.854200px;}
.fs19{font-size:35.999400px;}
.fs5{font-size:38.256000px;}
.fs17{font-size:42.000000px;}
.fs2{font-size:42.237600px;}
.fs7{font-size:43.038600px;}
.fsa{font-size:44.830800px;}
.fs16{font-size:45.219000px;}
.fs2b{font-size:45.279600px;}
.fs8{font-size:47.821200px;}
.fs18{font-size:47.994600px;}
.fs1d{font-size:47.996400px;}
.fs24{font-size:48.000000px;}
.fs1f{font-size:48.005400px;}
.fs13{font-size:49.255800px;}
.fs1b{font-size:49.305000px;}
.fs1a{font-size:49.327200px;}
.fs1c{font-size:49.389000px;}
.fsc{font-size:50.545800px;}
.fs21{font-size:50.700000px;}
.fs1e{font-size:50.766000px;}
.fs3{font-size:51.799200px;}
.fs6{font-size:53.797800px;}
.fs12{font-size:54.213600px;}
.fs26{font-size:54.423000px;}
.fs23{font-size:54.574200px;}
.fse{font-size:56.428800px;}
.fs25{font-size:56.999400px;}
.fs20{font-size:57.254400px;}
.fs10{font-size:59.999400px;}
.fs22{font-size:62.037000px;}
.fs11{font-size:62.124000px;}
.fs2a{font-size:62.999400px;}
.fs1{font-size:63.363000px;}
.fs29{font-size:65.735400px;}
.fs28{font-size:69.772800px;}
.fsf{font-size:69.802200px;}
.fs27{font-size:69.865800px;}
.fs0{font-size:80.697000px;}
.fsb{font-size:83.685600px;}
.y0{bottom:0.000000px;}
.y1d0{bottom:59.953024px;}
.y15f{bottom:59.953224px;}
.y378{bottom:59.953379px;}
.y11d{bottom:59.953548px;}
.y1cd{bottom:59.953702px;}
.yde{bottom:59.953721px;}
.ya8{bottom:59.954176px;}
.y1fa{bottom:59.954650px;}
.y33b{bottom:59.954970px;}
.y1ef{bottom:59.957512px;}
.y2f7{bottom:59.957665px;}
.y271{bottom:60.633795px;}
.y377{bottom:71.858646px;}
.y1ce{bottom:72.793650px;}
.y57{bottom:72.794074px;}
.ydd{bottom:72.794347px;}
.y15e{bottom:75.600321px;}
.y11c{bottom:75.600645px;}
.y1cc{bottom:75.600798px;}
.ya7{bottom:75.601272px;}
.y1f9{bottom:75.601746px;}
.y33a{bottom:75.602067px;}
.y1ee{bottom:75.604608px;}
.y2f6{bottom:75.604762px;}
.y270{bottom:76.365774px;}
.y1cf{bottom:77.045700px;}
.y376{bottom:83.849033px;}
.y56{bottom:85.634700px;}
.ydc{bottom:85.634974px;}
.y15d{bottom:91.332300px;}
.y11b{bottom:91.332624px;}
.y1cb{bottom:91.332777px;}
.ya6{bottom:91.333252px;}
.y1f8{bottom:91.333726px;}
.y339{bottom:91.334046px;}
.y1ed{bottom:91.336588px;}
.y2f5{bottom:91.336741px;}
.y26f{bottom:92.012871px;}
.y375{bottom:95.754300px;}
.ydb{bottom:98.475600px;}
.y26c{bottom:105.703950px;}
.y11a{bottom:106.979721px;}
.y1ca{bottom:106.979874px;}
.ya5{bottom:106.980348px;}
.y1f7{bottom:106.980822px;}
.y338{bottom:106.981143px;}
.y1ec{bottom:106.983684px;}
.y2f4{bottom:106.983838px;}
.y26e{bottom:107.744850px;}
.y374{bottom:107.745246px;}
.y26b{bottom:107.746276px;}
.y5a{bottom:112.592136px;}
.y26d{bottom:113.017147px;}
.y373{bottom:119.735633px;}
.y119{bottom:122.711700px;}
.y1c9{bottom:122.711853px;}
.ya4{bottom:122.712327px;}
.y1f6{bottom:122.712802px;}
.y337{bottom:122.713122px;}
.y1eb{bottom:122.715663px;}
.y2f3{bottom:122.715817px;}
.y26a{bottom:123.393372px;}
.y55{bottom:126.624177px;}
.y59{bottom:126.708600px;}
.y58{bottom:128.494500px;}
.y372{bottom:131.640900px;}
.y1c8{bottom:138.358950px;}
.ya3{bottom:138.359424px;}
.y1f5{bottom:138.359898px;}
.y336{bottom:138.360219px;}
.y118{bottom:138.360693px;}
.y1ea{bottom:138.362760px;}
.y2f2{bottom:138.362913px;}
.y268{bottom:139.125352px;}
.y269{bottom:139.379999px;}
.y54{bottom:142.271274px;}
.y371{bottom:143.631846px;}
.y1c7{bottom:143.716500px;}
.yd4{bottom:150.174633px;}
.ya2{bottom:154.091403px;}
.y1f4{bottom:154.091877px;}
.y335{bottom:154.092198px;}
.y1e9{bottom:154.094739px;}
.y286{bottom:154.094893px;}
.y267{bottom:154.772448px;}
.y370{bottom:155.537113px;}
.y53{bottom:158.003253px;}
.y15c{bottom:159.960693px;}
.yd3{bottom:161.814150px;}
.y36f{bottom:167.527500px;}
.ya1{bottom:169.738500px;}
.y1f3{bottom:169.738974px;}
.y334{bottom:169.739295px;}
.y1c5{bottom:169.739448px;}
.y117{bottom:169.739769px;}
.y1e8{bottom:169.741836px;}
.y285{bottom:169.741989px;}
.y31b{bottom:170.504224px;}
.y266{bottom:170.504427px;}
.y52{bottom:173.650350px;}
.y1c6{bottom:175.096050px;}
.y15b{bottom:175.692672px;}
.y36e{bottom:179.518446px;}
.y31a{bottom:183.344850px;}
.yd6{bottom:185.075733px;}
.ya0{bottom:185.470117px;}
.y1f2{bottom:185.470953px;}
.y333{bottom:185.471274px;}
.y1c4{bottom:185.471427px;}
.y116{bottom:185.471748px;}
.y1e7{bottom:185.473815px;}
.y284{bottom:185.473969px;}
.y265{bottom:186.151524px;}
.y50{bottom:187.426800px;}
.y51{bottom:189.382650px;}
.y3e{bottom:189.382803px;}
.y4f{bottom:189.383598px;}
.y159{bottom:191.339769px;}
.y36d{bottom:191.423713px;}
.y15a{bottom:191.594417px;}
.y1f1{bottom:201.118050px;}
.y332{bottom:201.118371px;}
.y1c3{bottom:201.118524px;}
.y115{bottom:201.118845px;}
.y1e6{bottom:201.120912px;}
.y283{bottom:201.121065px;}
.y264{bottom:201.883503px;}
.y3c{bottom:203.073900px;}
.y36c{bottom:203.414100px;}
.y3d{bottom:205.029900px;}
.y3a{bottom:205.030374px;}
.y4e{bottom:205.030695px;}
.y3b{bottom:205.285022px;}
.y158{bottom:207.071748px;}
.y36b{bottom:215.320076px;}
.y261{bottom:215.574750px;}
.y1f0{bottom:216.850350px;}
.y1c2{bottom:216.850503px;}
.y114{bottom:216.850824px;}
.y1e5{bottom:216.852891px;}
.y282{bottom:216.853045px;}
.y263{bottom:217.530600px;}
.y260{bottom:217.531548px;}
.y39{bottom:220.762353px;}
.y4c{bottom:220.762674px;}
.y4d{bottom:221.017322px;}
.y9f{bottom:222.718050px;}
.y157{bottom:222.718845px;}
.y9d{bottom:222.720117px;}
.y262{bottom:222.887947px;}
.y36a{bottom:227.310463px;}
.y9e{bottom:228.075600px;}
.y1c1{bottom:232.497600px;}
.y113{bottom:232.497921px;}
.y1e4{bottom:232.499988px;}
.y281{bottom:232.500141px;}
.y1bf{bottom:232.500465px;}
.y25f{bottom:233.263527px;}
.y38{bottom:236.409450px;}
.y4b{bottom:236.409771px;}
.y1c0{bottom:237.855150px;}
.y156{bottom:238.450824px;}
.y9c{bottom:238.452096px;}
.y369{bottom:239.300850px;}
.y112{bottom:248.229900px;}
.y1e3{bottom:248.231967px;}
.y280{bottom:248.232120px;}
.y1be{bottom:248.232445px;}
.y25e{bottom:248.910624px;}
.y367{bottom:249.590550px;}
.y49{bottom:250.185750px;}
.y368{bottom:251.206350px;}
.y366{bottom:251.206513px;}
.y4a{bottom:252.141750px;}
.y48{bottom:252.142395px;}
.y37{bottom:252.143343px;}
.y155{bottom:254.097921px;}
.y9b{bottom:254.099193px;}
.yd5{bottom:260.690711px;}
.y365{bottom:263.196900px;}
.y111{bottom:263.878590px;}
.y1e1{bottom:263.879064px;}
.y27f{bottom:263.879217px;}
.y1bd{bottom:263.879541px;}
.y1e2{bottom:264.133712px;}
.y25d{bottom:264.642603px;}
.y153{bottom:267.789000px;}
.y47{bottom:267.789491px;}
.y36{bottom:267.790440px;}
.yd8{bottom:268.684088px;}
.y154{bottom:269.829900px;}
.y152{bottom:269.830053px;}
.y9a{bottom:269.831172px;}
.y364{bottom:275.102563px;}
.y110{bottom:279.610569px;}
.y1e0{bottom:279.611043px;}
.y27e{bottom:279.611196px;}
.y1bc{bottom:279.611520px;}
.y150{bottom:280.204650px;}
.y25c{bottom:280.289700px;}
.y14f{bottom:281.395200px;}
.y151{bottom:283.521150px;}
.y46{bottom:283.521471px;}
.y35{bottom:283.522419px;}
.y212{bottom:285.222000px;}
.y14b{bottom:285.477150px;}
.y14a{bottom:285.477474px;}
.y99{bottom:285.478269px;}
.y211{bottom:286.837800px;}
.y363{bottom:287.092950px;}
.y14d{bottom:290.409300px;}
.y210{bottom:291.089700px;}
.y14e{bottom:291.259800px;}
.y14c{bottom:292.450350px;}
.y10f{bottom:295.257666px;}
.y1df{bottom:295.258140px;}
.y27d{bottom:295.258293px;}
.y1bb{bottom:295.258617px;}
.y25b{bottom:296.022627px;}
.y362{bottom:298.998613px;}
.y45{bottom:299.253450px;}
.y34{bottom:299.254398px;}
.y149{bottom:301.209453px;}
.y98{bottom:301.210248px;}
.y20f{bottom:308.608513px;}
.y361{bottom:310.989000px;}
.y10e{bottom:310.989645px;}
.y1de{bottom:310.990119px;}
.y27c{bottom:310.990272px;}
.y1ba{bottom:310.990596px;}
.y25a{bottom:311.669724px;}
.y33{bottom:314.901495px;}
.y148{bottom:316.856550px;}
.y97{bottom:316.857345px;}
.yd9{bottom:319.214400px;}
.y360{bottom:322.979796px;}
.y10d{bottom:326.636741px;}
.y1dd{bottom:326.637216px;}
.y27b{bottom:326.637369px;}
.y1b9{bottom:326.637693px;}
.y20e{bottom:327.062251px;}
.y259{bottom:327.401703px;}
.y32{bottom:330.633474px;}
.y96{bottom:332.589324px;}
.y35f{bottom:334.885063px;}
.y20d{bottom:339.902878px;}
.y257{bottom:341.092800px;}
.y10c{bottom:342.368721px;}
.y1dc{bottom:342.369195px;}
.y27a{bottom:342.369348px;}
.y1b8{bottom:342.369672px;}
.y258{bottom:343.048800px;}
.y256{bottom:343.050240px;}
.y31{bottom:346.280571px;}
.y35e{bottom:346.875450px;}
.y95{bottom:348.236421px;}
.y20c{bottom:352.743504px;}
.y10b{bottom:358.100700px;}
.y1db{bottom:358.101174px;}
.y279{bottom:358.101327px;}
.y1b7{bottom:358.101652px;}
.y35d{bottom:358.781100px;}
.y255{bottom:358.782219px;}
.y2f{bottom:359.971500px;}
.y93{bottom:361.927500px;}
.y30{bottom:362.012550px;}
.y44{bottom:362.012703px;}
.y2e{bottom:362.013024px;}
.y94{bottom:363.968400px;}
.y92{bottom:363.968874px;}
.y146{bottom:363.971569px;}
.y20b{bottom:365.669250px;}
.y209{bottom:365.669524px;}
.y147{bottom:369.240900px;}
.y20a{bottom:369.836100px;}
.y35c{bottom:370.772046px;}
.y1da{bottom:373.748271px;}
.y10a{bottom:373.748424px;}
.y1b6{bottom:373.748748px;}
.y254{bottom:374.514198px;}
.y42{bottom:375.703950px;}
.y207{bottom:376.894500px;}
.y43{bottom:377.659800px;}
.y2d{bottom:377.660121px;}
.y206{bottom:378.509618px;}
.y208{bottom:378.510150px;}
.y91{bottom:379.615971px;}
.y145{bottom:379.618665px;}
.y35a{bottom:382.762433px;}
.y35b{bottom:382.932672px;}
.y1d9{bottom:389.480250px;}
.y278{bottom:389.480403px;}
.y1b5{bottom:389.480727px;}
.y204{bottom:389.735400px;}
.y253{bottom:390.161295px;}
.y203{bottom:391.350668px;}
.y205{bottom:393.136800px;}
.y8f{bottom:393.307050px;}
.y2c{bottom:393.392100px;}
.y359{bottom:394.667700px;}
.y90{bottom:395.347950px;}
.y8e{bottom:395.348103px;}
.y144{bottom:395.350645px;}
.y109{bottom:403.171500px;}
.y201{bottom:404.362050px;}
.y108{bottom:405.127500px;}
.y1b4{bottom:405.127824px;}
.y1d8{bottom:405.129246px;}
.y107{bottom:405.130195px;}
.y252{bottom:405.893274px;}
.y200{bottom:405.977446px;}
.y202{bottom:405.977850px;}
.y358{bottom:406.658333px;}
.y41{bottom:407.083350px;}
.y40{bottom:409.039350px;}
.y8d{bottom:410.995200px;}
.y143{bottom:410.997741px;}
.y357{bottom:418.563600px;}
.y1b3{bottom:420.859803px;}
.y331{bottom:420.860277px;}
.y277{bottom:420.860598px;}
.y2f1{bottom:420.860752px;}
.y1d7{bottom:420.861226px;}
.y106{bottom:420.862174px;}
.y251{bottom:421.540371px;}
.y3f{bottom:422.730600px;}
.y2b{bottom:424.771500px;}
.y1ff{bottom:426.727500px;}
.y8c{bottom:426.727974px;}
.y142{bottom:426.729720px;}
.y356{bottom:430.554696px;}
.y1b2{bottom:436.506900px;}
.y330{bottom:436.507374px;}
.y276{bottom:436.507695px;}
.y2f0{bottom:436.507848px;}
.y1b0{bottom:436.508169px;}
.y1d6{bottom:436.508322px;}
.y105{bottom:436.509270px;}
.y250{bottom:437.272350px;}
.y1b1{bottom:441.864600px;}
.y141{bottom:442.376817px;}
.y355{bottom:442.459963px;}
.y1fe{bottom:448.243421px;}
.y32f{bottom:452.239353px;}
.y275{bottom:452.239674px;}
.y2ef{bottom:452.239827px;}
.y1af{bottom:452.240148px;}
.y1d5{bottom:452.240302px;}
.y104{bottom:452.241250px;}
.yd7{bottom:452.525250px;}
.y24f{bottom:452.920548px;}
.y354{bottom:454.450350px;}
.y8b{bottom:458.107050px;}
.y140{bottom:458.108796px;}
.y1fd{bottom:461.084047px;}
.y353{bottom:466.440900px;}
.y32e{bottom:467.886450px;}
.y274{bottom:467.886771px;}
.y2ee{bottom:467.886924px;}
.y1ae{bottom:467.887245px;}
.y1d4{bottom:467.887398px;}
.y103{bottom:467.888346px;}
.y24e{bottom:468.652527px;}
.y13f{bottom:473.755893px;}
.y1fc{bottom:473.924674px;}
.y352{bottom:478.346563px;}
.y273{bottom:483.618750px;}
.y2ed{bottom:483.618903px;}
.y1ad{bottom:483.619224px;}
.y1d3{bottom:483.619377px;}
.y102{bottom:483.620326px;}
.y24d{bottom:484.299624px;}
.y1fb{bottom:486.765300px;}
.y8a{bottom:489.486450px;}
.y13e{bottom:489.487872px;}
.y351{bottom:490.336950px;}
.yda{bottom:492.674250px;}
.y2a{bottom:499.095652px;}
.y272{bottom:499.266000px;}
.y1ac{bottom:499.266321px;}
.y1d2{bottom:499.266474px;}
.y101{bottom:499.267422px;}
.y24c{bottom:500.031603px;}
.y350{bottom:502.242613px;}
.y13d{bottom:505.134969px;}
.y34f{bottom:512.617200px;}
.y29{bottom:513.467316px;}
.y34e{bottom:514.233000px;}
.y1ab{bottom:514.998300px;}
.y1d1{bottom:514.998453px;}
.y2ec{bottom:514.999248px;}
.y100{bottom:514.999402px;}
.y24b{bottom:515.678700px;}
.y13c{bottom:520.866948px;}
.yd2{bottom:521.291250px;}
.yd0{bottom:521.292045px;}
.yd1{bottom:526.648650px;}
.y28{bottom:527.753980px;}
.y246{bottom:528.010475px;}
.y89{bottom:529.371372px;}
.y18d{bottom:530.645550px;}
.y18b{bottom:530.645871px;}
.y2eb{bottom:530.646345px;}
.yff{bottom:530.646498px;}
.y1aa{bottom:530.648245px;}
.y24a{bottom:531.411477px;}
.y18c{bottom:536.003100px;}
.y13b{bottom:536.514045px;}
.ycf{bottom:537.024024px;}
.y32d{bottom:538.130796px;}
.y245{bottom:540.851101px;}
.y34d{bottom:541.275450px;}
.y27{bottom:542.125644px;}
.y1a{bottom:542.808072px;}
.y88{bottom:545.018469px;}
.y18a{bottom:546.377850px;}
.y2ea{bottom:546.378324px;}
.yfe{bottom:546.378477px;}
.y188{bottom:546.378648px;}
.y1a9{bottom:546.380224px;}
.y249{bottom:547.058574px;}
.y189{bottom:551.650200px;}
.y2e7{bottom:551.905774px;}
.y13a{bottom:552.246024px;}
.yce{bottom:552.671121px;}
.y244{bottom:553.691728px;}
.y32c{bottom:553.862776px;}
.y19{bottom:555.648698px;}
.y26{bottom:556.497309px;}
.y87{bottom:560.750448px;}
.y2e9{bottom:562.025421px;}
.yfd{bottom:562.025574px;}
.y187{bottom:562.025745px;}
.y1a8{bottom:562.027320px;}
.y248{bottom:562.790553px;}
.y2e4{bottom:563.130600px;}
.y2e6{bottom:564.746400px;}
.y2e3{bottom:564.746674px;}
.y243{bottom:566.617474px;}
.y139{bottom:567.893121px;}
.ycd{bottom:568.403100px;}
.ycb{bottom:568.403424px;}
.y18{bottom:568.574444px;}
.y2e5{bottom:568.998150px;}
.y32b{bottom:569.509872px;}
.y25{bottom:570.783972px;}
.ycc{bottom:573.675450px;}
.y2e1{bottom:575.971500px;}
.y86{bottom:576.397545px;}
.y2e2{bottom:577.587300px;}
.y2e0{bottom:577.587574px;}
.y2e8{bottom:577.757400px;}
.yfc{bottom:577.757553px;}
.y186{bottom:577.757724px;}
.y1a7{bottom:577.759300px;}
.y247{bottom:578.437650px;}
.y34c{bottom:578.693441px;}
.y242{bottom:579.458100px;}
.y17{bottom:581.415071px;}
.y22f{bottom:581.839624px;}
.y138{bottom:583.625100px;}
.yca{bottom:584.050521px;}
.y24{bottom:585.155636px;}
.y32a{bottom:585.241852px;}
.y2de{bottom:588.897450px;}
.y2dd{bottom:590.428200px;}
.y85{bottom:592.129524px;}
.yfb{bottom:593.404650px;}
.y185{bottom:593.404821px;}
.yfa{bottom:593.405445px;}
.y1a6{bottom:593.406396px;}
.y16{bottom:594.255697px;}
.y34b{bottom:594.425421px;}
.y2df{bottom:594.680212px;}
.y22e{bottom:594.680250px;}
.y319{bottom:598.422274px;}
.y137{bottom:599.272680px;}
.y23{bottom:599.527301px;}
.yc9{bottom:599.782500px;}
.yc7{bottom:599.782653px;}
.y329{bottom:600.888948px;}
.yc8{bottom:605.055000px;}
.y15{bottom:607.096324px;}
.y84{bottom:607.776621px;}
.y184{bottom:609.136800px;}
.y182{bottom:609.137103px;}
.yf9{bottom:609.137424px;}
.y1a5{bottom:609.138376px;}
.y34a{bottom:610.157400px;}
.y318{bottom:611.262900px;}
.y22{bottom:613.813964px;}
.y183{bottom:614.409300px;}
.yc6{bottom:615.429750px;}
.yc4{bottom:615.431817px;}
.y328{bottom:616.620927px;}
.y2da{bottom:616.973850px;}
.y14{bottom:619.936950px;}
.y2b7{bottom:620.021850px;}
.y312{bottom:620.106900px;}
.yc5{bottom:620.787300px;}
.y21c{bottom:621.304050px;}
.y2b6{bottom:621.637650px;}
.y83{bottom:623.508600px;}
.y181{bottom:624.784200px;}
.yf8{bottom:624.784521px;}
.y17f{bottom:624.784524px;}
.y1a4{bottom:624.785472px;}
.y2b5{bottom:625.889550px;}
.y21{bottom:628.185629px;}
.y180{bottom:630.141600px;}
.yc3{bottom:631.163796px;}
.y327{bottom:632.268024px;}
.y136{bottom:633.969352px;}
.y2cf{bottom:636.110700px;}
.y82{bottom:639.157122px;}
.yf7{bottom:640.516500px;}
.y17e{bottom:640.516503px;}
.y1a3{bottom:640.517452px;}
.y214{bottom:641.208900px;}
.y349{bottom:641.536950px;}
.y20{bottom:642.557293px;}
.y2b4{bottom:643.408433px;}
.y311{bottom:646.521600px;}
.yc2{bottom:646.810893px;}
.y326{bottom:648.000003px;}
.y135{bottom:649.616448px;}
.y13{bottom:650.042144px;}
.y215{bottom:653.450400px;}
.y81{bottom:654.889102px;}
.y2d0{bottom:655.105200px;}
.yf6{bottom:656.163600px;}
.y17c{bottom:656.163921px;}
.y1a2{bottom:656.164548px;}
.y1f{bottom:656.928958px;}
.y17d{bottom:661.521150px;}
.y2b3{bottom:661.862171px;}
.yc1{bottom:662.542872px;}
.y12{bottom:662.882771px;}
.y325{bottom:663.647100px;}
.y134{bottom:665.348427px;}
.y309{bottom:666.247950px;}
.y80{bottom:670.536198px;}
.y1e{bottom:671.215621px;}
.y17b{bottom:671.895900px;}
.y1a1{bottom:671.896527px;}
.y179{bottom:671.898274px;}
.yf5{bottom:671.898915px;}
.y2b2{bottom:674.702797px;}
.y11{bottom:675.723397px;}
.y17a{bottom:677.168400px;}
.yc0{bottom:678.189969px;}
.y21f{bottom:679.043250px;}
.y2d1{bottom:679.223700px;}
.y324{bottom:679.381146px;}
.y133{bottom:680.995524px;}
.y348{bottom:681.506298px;}
.y30a{bottom:682.448400px;}
.y1d{bottom:685.587285px;}
.y7f{bottom:686.268177px;}
.y2b1{bottom:687.543424px;}
.y1a0{bottom:687.543624px;}
.y178{bottom:687.545370px;}
.yf4{bottom:687.546012px;}
.y2d9{bottom:687.965400px;}
.y10{bottom:688.564024px;}
.y2b9{bottom:689.934900px;}
.y21a{bottom:690.417600px;}
.ybf{bottom:693.921948px;}
.y323{bottom:695.028243px;}
.y132{bottom:696.727503px;}
.y347{bottom:697.238277px;}
.y1c{bottom:699.958950px;}
.y2b0{bottom:700.384050px;}
.y2ae{bottom:700.384474px;}
.yf{bottom:701.404650px;}
.y7e{bottom:701.915274px;}
.y216{bottom:702.299550px;}
.y19f{bottom:703.275603px;}
.y177{bottom:703.277350px;}
.yf3{bottom:703.277991px;}
.y2d2{bottom:703.345350px;}
.y2af{bottom:704.636100px;}
.ybe{bottom:709.569045px;}
.y322{bottom:710.760222px;}
.y2ac{bottom:711.694350px;}
.y131{bottom:712.374600px;}
.y346{bottom:712.885374px;}
.y2ab{bottom:713.224348px;}
.y2ad{bottom:713.225100px;}
.y2fa{bottom:715.850010px;}
.y7d{bottom:717.647253px;}
.y19e{bottom:718.922700px;}
.y176{bottom:718.924446px;}
.yf2{bottom:718.925088px;}
.y30b{bottom:719.873550px;}
.ybd{bottom:725.301024px;}
.y2aa{bottom:726.150668px;}
.y321{bottom:726.407319px;}
.y2d3{bottom:727.463850px;}
.y130{bottom:728.110322px;}
.y345{bottom:728.617353px;}
.y317{bottom:728.667633px;}
.y1b{bottom:729.467550px;}
.ye{bottom:729.892800px;}
.y220{bottom:731.298450px;}
.y2f9{bottom:732.130650px;}
.y7c{bottom:733.294350px;}
.y175{bottom:734.656426px;}
.yf1{bottom:734.657067px;}
.y19d{bottom:734.658169px;}
.y310{bottom:737.565150px;}
.y2a8{bottom:739.162050px;}
.y2a7{bottom:740.777296px;}
.y2a9{bottom:740.777850px;}
.ybc{bottom:740.948121px;}
.y320{bottom:742.139298px;}
.y344{bottom:744.264450px;}
.y174{bottom:750.303522px;}
.yf0{bottom:750.304164px;}
.y19c{bottom:750.305265px;}
.y217{bottom:751.151850px;}
.y2d4{bottom:751.585500px;}
.y7b{bottom:755.319450px;}
.ybb{bottom:756.680100px;}
.y7a{bottom:757.190400px;}
.y30c{bottom:757.299750px;}
.y31f{bottom:757.786395px;}
.y3a7{bottom:758.806200px;}
.y2a6{bottom:761.527350px;}
.y12f{bottom:762.720915px;}
.y173{bottom:766.035502px;}
.yef{bottom:766.036143px;}
.y19b{bottom:766.037245px;}
.y3a6{bottom:770.796983px;}
.yba{bottom:772.326796px;}
.y31e{bottom:773.518374px;}
.y2dc{bottom:775.090928px;}
.y343{bottom:775.643850px;}
.y2d5{bottom:775.819500px;}
.y12e{bottom:778.452895px;}
.yd{bottom:779.810850px;}
.y172{bottom:781.682598px;}
.yee{bottom:781.683240px;}
.y19a{bottom:781.684341px;}
.y3a5{bottom:782.702250px;}
.y2a5{bottom:782.958151px;}
.yc{bottom:784.062900px;}
.y79{bottom:785.851038px;}
.y240{bottom:785.937000px;}
.y31d{bottom:789.250353px;}
.y223{bottom:789.267571px;}
.y2db{bottom:791.416800px;}
.yb{bottom:792.651900px;}
.y2ba{bottom:793.446300px;}
.y12d{bottom:794.099991px;}
.y3bc{bottom:794.693196px;}
.y3a4{bottom:794.693359px;}
.y30d{bottom:794.728050px;}
.y21b{bottom:795.432150px;}
.y2a4{bottom:795.883897px;}
.ya{bottom:796.903800px;}
.y171{bottom:797.414577px;}
.yed{bottom:797.415219px;}
.y199{bottom:797.416320px;}
.y316{bottom:799.926450px;}
.y2d6{bottom:799.941150px;}
.y218{bottom:800.114400px;}
.y78{bottom:801.583017px;}
.yb9{bottom:803.791950px;}
.y31c{bottom:804.897450px;}
.y9{bottom:805.492800px;}
.y3bb{bottom:806.598463px;}
.y3a3{bottom:806.598626px;}
.y23f{bottom:807.407534px;}
.y2a3{bottom:808.724524px;}
.y8{bottom:809.744700px;}
.y12c{bottom:809.831970px;}
.y170{bottom:813.061674px;}
.yec{bottom:813.062316px;}
.y198{bottom:813.063417px;}
.y342{bottom:813.063588px;}
.y77{bottom:817.230114px;}
.y3ba{bottom:818.588850px;}
.y3a2{bottom:818.589013px;}
.y2a2{bottom:821.565150px;}
.y2b8{bottom:822.483150px;}
.y2d7{bottom:824.059650px;}
.y12b{bottom:825.563950px;}
.y22c{bottom:825.615000px;}
.y224{bottom:826.352327px;}
.y236{bottom:827.071350px;}
.y5{bottom:828.198150px;}
.y16f{bottom:828.793653px;}
.yeb{bottom:828.794295px;}
.y197{bottom:828.795396px;}
.y341{bottom:828.795567px;}
.y3a1{bottom:830.579400px;}
.y3b9{bottom:830.579633px;}
.y22d{bottom:830.665449px;}
.y30e{bottom:832.150050px;}
.y76{bottom:832.962093px;}
.y7{bottom:835.001400px;}
.y6{bottom:835.171500px;}
.y2fd{bottom:837.691200px;}
.y315{bottom:838.914159px;}
.yb8{bottom:839.849598px;}
.y12a{bottom:841.211046px;}
.y2c0{bottom:841.995913px;}
.y3b8{bottom:842.484900px;}
.y3a0{bottom:842.485296px;}
.y230{bottom:842.528700px;}
.y16e{bottom:844.440750px;}
.yea{bottom:844.441391px;}
.y196{bottom:844.442493px;}
.y340{bottom:844.442664px;}
.y23d{bottom:846.736952px;}
.y3{bottom:847.587300px;}
.y38c{bottom:847.757250px;}
.y2d8{bottom:848.179200px;}
.y75{bottom:848.694072px;}
.y219{bottom:848.963550px;}
.y39f{bottom:854.475683px;}
.y3b7{bottom:854.475846px;}
.y4{bottom:854.645550px;}
.yb7{bottom:855.496695px;}
.y129{bottom:856.943026px;}
.ye9{bottom:860.173371px;}
.y16d{bottom:860.174169px;}
.y195{bottom:860.174472px;}
.y33f{bottom:860.174643px;}
.y2fc{bottom:860.548050px;}
.y23c{bottom:862.003557px;}
.y241{bottom:862.279200px;}
.y226{bottom:863.639850px;}
.y74{bottom:864.341169px;}
.y2a1{bottom:865.445400px;}
.y39e{bottom:866.380950px;}
.y3b6{bottom:866.381113px;}
.y2a0{bottom:866.976150px;}
.y30f{bottom:869.578350px;}
.y29f{bottom:871.228200px;}
.yb6{bottom:871.228674px;}
.y128{bottom:872.590122px;}
.ye7{bottom:873.864300px;}
.y38b{bottom:874.213500px;}
.y2c5{bottom:874.588500px;}
.ye8{bottom:875.905350px;}
.ye6{bottom:875.905824px;}
.y16c{bottom:875.906148px;}
.y194{bottom:875.906452px;}
.y33e{bottom:875.906622px;}
.y23b{bottom:877.295546px;}
.y3b5{bottom:878.371500px;}
.y39d{bottom:878.371896px;}
.y73{bottom:880.073148px;}
.y2{bottom:881.433616px;}
.y302{bottom:884.090400px;}
.y231{bottom:886.700550px;}
.yb5{bottom:886.875771px;}
.y127{bottom:888.322102px;}
.y29e{bottom:888.747013px;}
.y381{bottom:889.889850px;}
.y39c{bottom:890.362283px;}
.ye5{bottom:891.552921px;}
.y16b{bottom:891.553245px;}
.y193{bottom:891.553548px;}
.y33d{bottom:891.553719px;}
.y23a{bottom:892.562151px;}
.y72{bottom:895.720245px;}
.y2c6{bottom:898.705950px;}
.y39b{bottom:900.651750px;}
.y382{bottom:901.696050px;}
.y39a{bottom:902.267550px;}
.yb4{bottom:902.607750px;}
.yb3{bottom:902.608227px;}
.y126{bottom:903.969198px;}
.y301{bottom:904.259760px;}
.y2ce{bottom:906.656700px;}
.y1{bottom:907.284900px;}
.y16a{bottom:907.285224px;}
.y192{bottom:907.285527px;}
.y33c{bottom:907.285698px;}
.y29d{bottom:907.285871px;}
.y239{bottom:907.830025px;}
.y22b{bottom:908.642550px;}
.y2be{bottom:909.358200px;}
.y71{bottom:911.452224px;}
.y3b3{bottom:912.642300px;}
.y227{bottom:913.808850px;}
.y3b4{bottom:914.258100px;}
.y399{bottom:914.258333px;}
.y232{bottom:916.934241px;}
.yb2{bottom:918.255324px;}
.y37a{bottom:919.475114px;}
.y125{bottom:919.701177px;}
.y29c{bottom:920.126497px;}
.y300{bottom:920.539040px;}
.y308{bottom:921.080250px;}
.y303{bottom:922.299900px;}
.y2c7{bottom:922.827600px;}
.y169{bottom:922.932321px;}
.y191{bottom:922.932624px;}
.ye4{bottom:922.932795px;}
.y238{bottom:923.097900px;}
.y313{bottom:925.517700px;}
.y398{bottom:926.163600px;}
.y70{bottom:927.099321px;}
.y383{bottom:927.099750px;}
.y37e{bottom:930.403200px;}
.y222{bottom:931.959939px;}
.y29b{bottom:932.967124px;}
.yb1{bottom:933.987303px;}
.y124{bottom:935.348274px;}
.y2ff{bottom:936.818320px;}
.y3b2{bottom:938.154383px;}
.y397{bottom:938.154546px;}
.y168{bottom:938.664300px;}
.y190{bottom:938.664603px;}
.ye3{bottom:938.664774px;}
.y37c{bottom:938.911383px;}
.y6e{bottom:940.790250px;}
.y6f{bottom:942.831300px;}
.y6d{bottom:942.831777px;}
.y38a{bottom:943.108650px;}
.y29a{bottom:945.807750px;}
.y298{bottom:945.808024px;}
.y2c8{bottom:946.946100px;}
.y37d{bottom:948.023902px;}
.yb0{bottom:949.634400px;}
.y299{bottom:950.059650px;}
.y396{bottom:950.059813px;}
.y123{bottom:951.080253px;}
.y384{bottom:952.503450px;}
.y2fe{bottom:953.097600px;}
.y18f{bottom:954.311700px;}
.ye2{bottom:954.311871px;}
.y167{bottom:954.313446px;}
.y234{bottom:955.502441px;}
.y296{bottom:957.032850px;}
.y37f{bottom:957.123600px;}
.y6c{bottom:958.478874px;}
.y295{bottom:958.648118px;}
.y297{bottom:958.648650px;}
.y221{bottom:959.387078px;}
.y18e{bottom:959.669100px;}
.y304{bottom:960.509400px;}
.y37b{bottom:960.770110px;}
.y395{bottom:962.050200px;}
.y3b1{bottom:962.050596px;}
.y21d{bottom:963.354000px;}
.y228{bottom:963.978900px;}
.yaf{bottom:965.367163px;}
.y122{bottom:966.727350px;}
.y293{bottom:969.958800px;}
.ye1{bottom:970.043850px;}
.y166{bottom:970.045426px;}
.y2c9{bottom:971.067750px;}
.y292{bottom:971.489250px;}
.y294{bottom:973.275300px;}
.y394{bottom:974.040983px;}
.y6b{bottom:974.210853px;}
.y385{bottom:977.907150px;}
.y121{bottom:982.460377px;}
.y2c4{bottom:983.727834px;}
.y290{bottom:984.585600px;}
.ye0{bottom:985.692369px;}
.y165{bottom:985.692522px;}
.y393{bottom:985.946250px;}
.y28f{bottom:986.201018px;}
.y5e{bottom:987.051750px;}
.y291{bottom:987.987150px;}
.y6a{bottom:989.857950px;}
.y2ca{bottom:995.301750px;}
.y233{bottom:997.663604px;}
.y2bd{bottom:997.906255px;}
.y3b0{bottom:997.936883px;}
.y392{bottom:997.937196px;}
.y305{bottom:998.603400px;}
.y28d{bottom:999.212400px;}
.y380{bottom:999.629825px;}
.y2c3{bottom:1000.053706px;}
.y28c{bottom:1000.827646px;}
.y28e{bottom:1000.828200px;}
.yae{bottom:1001.424348px;}
.y164{bottom:1001.424502px;}
.y386{bottom:1003.409550px;}
.y3af{bottom:1009.842150px;}
.y391{bottom:1009.842463px;}
.y68{bottom:1013.158800px;}
.y229{bottom:1014.264450px;}
.y67{bottom:1015.029109px;}
.y69{bottom:1015.029750px;}
.y2c2{bottom:1016.379578px;}
.y120{bottom:1017.070971px;}
.yad{bottom:1017.071445px;}
.y163{bottom:1017.071598px;}
.y2cb{bottom:1019.423400px;}
.y28b{bottom:1021.577700px;}
.y390{bottom:1021.832850px;}
.y3ae{bottom:1021.833246px;}
.y5d{bottom:1028.125800px;}
.y387{bottom:1028.814300px;}
.y11e{bottom:1030.762050px;}
.y2c1{bottom:1032.705450px;}
.y11f{bottom:1032.802950px;}
.yac{bottom:1032.803424px;}
.y162{bottom:1032.803577px;}
.y3ad{bottom:1033.823633px;}
.y38f{bottom:1033.823796px;}
.y65{bottom:1034.503650px;}
.y64{bottom:1036.373959px;}
.y66{bottom:1036.374600px;}
.y306{bottom:1036.811850px;}
.y235{bottom:1038.522619px;}
.y28a{bottom:1043.006588px;}
.y379{bottom:1043.360100px;}
.y2cc{bottom:1043.541900px;}
.y3ac{bottom:1045.728900px;}
.y38e{bottom:1045.729063px;}
.yab{bottom:1048.450521px;}
.y161{bottom:1048.450674px;}
.y21e{bottom:1052.904206px;}
.y388{bottom:1054.219050px;}
.y2bc{bottom:1054.305691px;}
.y62{bottom:1055.763600px;}
.y289{bottom:1055.932334px;}
.y63{bottom:1057.719450px;}
.y3ab{bottom:1057.719683px;}
.y61{bottom:1057.719687px;}
.y314{bottom:1060.431392px;}
.yaa{bottom:1064.182500px;}
.y160{bottom:1064.182653px;}
.y22a{bottom:1064.431350px;}
.y2f8{bottom:1064.481600px;}
.y225{bottom:1064.990850px;}
.y2cd{bottom:1067.662500px;}
.y2bf{bottom:1068.264150px;}
.y288{bottom:1068.773917px;}
.y3a9{bottom:1069.624950px;}
.y38d{bottom:1069.625113px;}
.y3aa{bottom:1069.880309px;}
.y5c{bottom:1070.730450px;}
.y2fb{bottom:1073.647800px;}
.y237{bottom:1074.265350px;}
.y307{bottom:1075.020300px;}
.y2bb{bottom:1075.762977px;}
.y23e{bottom:1075.763850px;}
.y213{bottom:1075.764000px;}
.y60{bottom:1077.108450px;}
.y5f{bottom:1078.979250px;}
.y389{bottom:1079.623800px;}
.ya9{bottom:1079.829750px;}
.y3a8{bottom:1079.999850px;}
.y287{bottom:1081.615500px;}
.ydf{bottom:1111.209300px;}
.y3bd{bottom:1111.210921px;}
.y5b{bottom:1111.549350px;}
.h1c{height:19.510070px;}
.he{height:20.935984px;}
.h5{height:24.190226px;}
.h6{height:25.041000px;}
.h1b{height:25.364218px;}
.h1d{height:26.010979px;}
.h25{height:26.207563px;}
.h1f{height:30.183984px;}
.h23{height:30.576000px;}
.h8{height:31.202724px;}
.h7{height:31.216896px;}
.hd{height:31.302428px;}
.h12{height:32.262824px;}
.h22{height:32.919432px;}
.h3c{height:32.963549px;}
.h24{height:34.940069px;}
.h29{height:34.941379px;}
.h34{height:34.944000px;}
.h2b{height:34.947931px;}
.h1a{height:35.217897px;}
.hf{height:35.256180px;}
.h27{height:35.894040px;}
.h26{height:35.910202px;}
.h28{height:35.955192px;}
.h2a{height:36.957648px;}
.h9{height:37.567392px;}
.h2f{height:37.568318px;}
.h30{height:37.568592px;}
.h2d{height:37.568700px;}
.h21{height:37.569518px;}
.hb{height:37.730927px;}
.h1e{height:37.906992px;}
.h2e{height:37.907870px;}
.h14{height:39.022099px;}
.h19{height:39.467501px;}
.h36{height:39.619944px;}
.h33{height:39.730018px;}
.h15{height:40.346592px;}
.h4{height:41.477323px;}
.h35{height:41.495563px;}
.h2c{height:41.681203px;}
.ha{height:42.263905px;}
.h17{height:43.679563px;}
.h20{height:44.709787px;}
.h31{height:44.711314px;}
.h32{height:45.162936px;}
.h18{height:45.226272px;}
.h3b{height:45.863563px;}
.hc{height:46.960418px;}
.h39{height:47.855371px;}
.h11{height:49.635976px;}
.h13{height:49.638541px;}
.h38{height:50.794598px;}
.h16{height:50.816002px;}
.h37{height:50.862302px;}
.h3{height:62.222466px;}
.h3a{height:77.122597px;}
.h2{height:79.244454px;}
.h10{height:82.179259px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3e{left:49.067700px;}
.x3f{left:56.636100px;}
.xbd{left:57.741750px;}
.x40{left:62.078700px;}
.x1{left:63.949500px;}
.x57{left:66.585750px;}
.xb9{left:67.776300px;}
.xe{left:69.222000px;}
.x3a{left:70.497600px;}
.x54{left:72.453450px;}
.x41{left:75.770100px;}
.xbc{left:77.130750px;}
.xba{left:78.406200px;}
.xbb{left:80.192100px;}
.x11{left:81.382650px;}
.xa9{left:83.331300px;}
.xdc{left:87.165331px;}
.x14{left:88.270580px;}
.xcd{left:92.629950px;}
.xa3{left:94.257000px;}
.xce{left:96.885300px;}
.xa2{left:99.213900px;}
.xac{left:103.201950px;}
.xb7{left:107.744850px;}
.xa1{left:109.366500px;}
.xab{left:112.875150px;}
.xaa{left:118.724700px;}
.xd1{left:120.370950px;}
.xbe{left:123.392100px;}
.x42{left:128.239350px;}
.xd0{left:130.653809px;}
.xa0{left:135.443550px;}
.x43{left:136.488150px;}
.xd2{left:140.521200px;}
.x4b{left:143.376300px;}
.x5c{left:148.478700px;}
.xa8{left:152.428619px;}
.x5d{left:153.921300px;}
.xb8{left:155.196750px;}
.xa5{left:158.037150px;}
.x55{left:170.248800px;}
.x5e{left:177.987300px;}
.x50{left:184.960500px;}
.x51{left:190.488150px;}
.xdb{left:193.092300px;}
.x44{left:199.842450px;}
.x2{left:205.880250px;}
.xa{left:209.281800px;}
.x52{left:210.642450px;}
.x3{left:212.003100px;}
.xb6{left:213.957600px;}
.xa4{left:217.202550px;}
.x45{left:220.081800px;}
.x15{left:222.462900px;}
.xb{left:223.908600px;}
.x46{left:225.524400px;}
.x16{left:227.650350px;}
.x4c{left:232.412550px;}
.xcc{left:233.827650px;}
.x47{left:234.878700px;}
.x9f{left:236.737050px;}
.x17{left:239.385750px;}
.xa6{left:240.572400px;}
.x4d{left:241.766850px;}
.x18{left:244.573200px;}
.x48{left:247.889700px;}
.x3d{left:249.505500px;}
.x4e{left:254.777850px;}
.x12{left:260.645550px;}
.xa7{left:262.310975px;}
.x60{left:265.833000px;}
.x13{left:269.744850px;}
.x61{left:271.105500px;}
.xda{left:272.785050px;}
.x19{left:274.422000px;}
.x53{left:275.867700px;}
.x75{left:278.333850px;}
.x49{left:285.222000px;}
.x76{left:287.177850px;}
.x4a{left:290.664450px;}
.x4f{left:292.025100px;}
.x3c{left:296.702250px;}
.x1a{left:297.892800px;}
.x1b{left:303.165300px;}
.xf{left:310.733850px;}
.xcf{left:312.954750px;}
.x5f{left:315.240900px;}
.x1c{left:316.431450px;}
.xb2{left:335.310150px;}
.xb4{left:337.011000px;}
.xb3{left:340.582650px;}
.x3b{left:342.113250px;}
.x89{left:346.195200px;}
.xb5{left:352.573200px;}
.xc{left:355.039350px;}
.x8a{left:358.270800px;}
.xd{left:363.968400px;}
.x78{left:367.284900px;}
.x77{left:372.982650px;}
.x79{left:375.363750px;}
.x58{left:381.911700px;}
.x8c{left:384.973050px;}
.x59{left:387.099150px;}
.x4{left:388.204650px;}
.x7a{left:392.116350px;}
.x5{left:394.412550px;}
.x7b{left:397.303800px;}
.x92{left:399.429750px;}
.xdd{left:402.321150px;}
.x7c{left:406.147950px;}
.x56{left:408.699150px;}
.x5a{left:410.740050px;}
.x5b{left:421.199850px;}
.x8b{left:422.815650px;}
.x62{left:452.579400px;}
.xd6{left:457.426650px;}
.x1d{left:467.291250px;}
.x63{left:470.097450px;}
.x9c{left:475.965300px;}
.xc1{left:478.541122px;}
.x93{left:480.047667px;}
.x30{left:484.809300px;}
.x94{left:485.914800px;}
.x95{left:490.166850px;}
.x99{left:495.354150px;}
.x96{left:496.544700px;}
.x98{left:498.415650px;}
.x9a{left:499.521150px;}
.x97{left:500.796750px;}
.xc4{left:503.735100px;}
.x28{left:506.324250px;}
.x74{left:509.878950px;}
.x29{left:511.511700px;}
.xc3{left:516.444000px;}
.xc5{left:517.841550px;}
.x7d{left:520.695900px;}
.x90{left:522.736950px;}
.x6{left:533.366850px;}
.x91{left:534.812400px;}
.x67{left:538.639200px;}
.x7{left:540.255000px;}
.x9b{left:541.615650px;}
.x6b{left:543.741600px;}
.x73{left:547.446750px;}
.x32{left:551.480100px;}
.x2a{left:552.585600px;}
.x68{left:554.286450px;}
.x2b{left:557.858100px;}
.x6c{left:559.814100px;}
.xae{left:560.965350px;}
.x33{left:563.980950px;}
.xd8{left:566.191950px;}
.x36{left:567.298060px;}
.x66{left:570.614100px;}
.x70{left:575.486437px;}
.xd9{left:576.821850px;}
.x69{left:580.563600px;}
.x37{left:581.924250px;}
.xe0{left:583.369178px;}
.x38{left:587.111700px;}
.x6a{left:595.445550px;}
.x2c{left:600.973050px;}
.xc7{left:605.565150px;}
.x2d{left:610.157250px;}
.x6f{left:615.552900px;}
.xad{left:617.864700px;}
.xc8{left:620.106900px;}
.x88{left:627.250583px;}
.x71{left:633.614219px;}
.xd4{left:635.643300px;}
.x10{left:639.241927px;}
.x6d{left:644.088000px;}
.xc6{left:646.193250px;}
.xc2{left:649.458750px;}
.x6e{left:660.160500px;}
.x7e{left:661.266000px;}
.x2e{left:666.368250px;}
.x7f{left:669.684900px;}
.x2f{left:671.555700px;}
.xb1{left:678.170250px;}
.x8{left:679.209300px;}
.x86{left:684.396750px;}
.x9{left:685.417200px;}
.xd5{left:686.670375px;}
.xd3{left:687.702450px;}
.x87{left:692.645400px;}
.x1e{left:710.588700px;}
.x8f{left:713.310000px;}
.x1f{left:715.861200px;}
.x80{left:718.667550px;}
.x82{left:721.899000px;}
.x81{left:728.617200px;}
.x64{left:733.719450px;}
.x83{left:735.335250px;}
.xbf{left:738.414300px;}
.x65{left:741.883350px;}
.x8d{left:744.349350px;}
.xc9{left:745.965150px;}
.x72{left:749.348100px;}
.xd7{left:751.832850px;}
.x9d{left:753.278550px;}
.x8e{left:756.510000px;}
.xc0{left:757.954650px;}
.x20{left:759.656550px;}
.x9e{left:760.677000px;}
.x21{left:764.843850px;}
.xaf{left:769.642800px;}
.x22{left:773.688000px;}
.xb0{left:776.609164px;}
.x23{left:778.875300px;}
.xca{left:780.150900px;}
.xde{left:796.903800px;}
.xcb{left:798.094350px;}
.x34{left:804.132150px;}
.xdf{left:808.384050px;}
.x35{left:809.404500px;}
.x84{left:818.078550px;}
.x24{left:821.820300px;}
.x85{left:825.477000px;}
.x25{left:827.007600px;}
.x31{left:831.344700px;}
.x26{left:835.766850px;}
.x39{left:838.657950px;}
.x27{left:841.039050px;}
@media print{
.v3{vertical-align:-29.333040pt;}
.v1{vertical-align:-0.905415pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:6.348796pt;}
.v4{vertical-align:27.785808pt;}
.ls47{letter-spacing:-4.607297pt;}
.ls69{letter-spacing:-1.694513pt;}
.ls3e{letter-spacing:-1.310417pt;}
.ls5c{letter-spacing:-0.650368pt;}
.ls3d{letter-spacing:-0.219507pt;}
.ls3b{letter-spacing:-0.175307pt;}
.ls6c{letter-spacing:-0.122706pt;}
.ls67{letter-spacing:-0.062103pt;}
.ls20{letter-spacing:-0.060743pt;}
.ls45{letter-spacing:-0.045125pt;}
.ls6a{letter-spacing:-0.044800pt;}
.ls68{letter-spacing:-0.043414pt;}
.ls5d{letter-spacing:-0.037333pt;}
.ls66{letter-spacing:-0.035466pt;}
.ls48{letter-spacing:-0.032000pt;}
.ls43{letter-spacing:-0.030536pt;}
.ls62{letter-spacing:-0.029867pt;}
.ls70{letter-spacing:-0.024149pt;}
.ls3c{letter-spacing:-0.017531pt;}
.ls61{letter-spacing:-0.010667pt;}
.ls3f{letter-spacing:-0.008765pt;}
.ls5f{letter-spacing:-0.005333pt;}
.ls73{letter-spacing:-0.003733pt;}
.lse{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003754pt;}
.ls56{letter-spacing:0.008533pt;}
.ls3a{letter-spacing:0.013538pt;}
.ls35{letter-spacing:0.013600pt;}
.ls6b{letter-spacing:0.016800pt;}
.ls65{letter-spacing:0.017067pt;}
.ls39{letter-spacing:0.018050pt;}
.ls64{letter-spacing:0.019350pt;}
.ls54{letter-spacing:0.019404pt;}
.ls6f{letter-spacing:0.020124pt;}
.ls71{letter-spacing:0.024149pt;}
.ls19{letter-spacing:0.024804pt;}
.ls72{letter-spacing:0.028174pt;}
.ls44{letter-spacing:0.031588pt;}
.ls21{letter-spacing:0.033733pt;}
.ls59{letter-spacing:0.034005pt;}
.ls41{letter-spacing:0.045125pt;}
.ls46{letter-spacing:0.049638pt;}
.ls17{letter-spacing:0.052567pt;}
.ls55{letter-spacing:0.055467pt;}
.ls36{letter-spacing:0.057809pt;}
.ls16{letter-spacing:0.058408pt;}
.ls1d{letter-spacing:0.059511pt;}
.ls60{letter-spacing:0.060658pt;}
.ls4f{letter-spacing:0.068914pt;}
.ls53{letter-spacing:0.069333pt;}
.ls4e{letter-spacing:0.071214pt;}
.ls50{letter-spacing:0.071411pt;}
.ls42{letter-spacing:0.076809pt;}
.ls1b{letter-spacing:0.080873pt;}
.ls1a{letter-spacing:0.084691pt;}
.ls5e{letter-spacing:0.088230pt;}
.ls0{letter-spacing:0.093861pt;}
.ls15{letter-spacing:0.103338pt;}
.ls58{letter-spacing:0.108817pt;}
.ls30{letter-spacing:0.123272pt;}
.ls1e{letter-spacing:0.136025pt;}
.ls1f{letter-spacing:0.218175pt;}
.ls57{letter-spacing:0.222133pt;}
.ls2d{letter-spacing:0.263548pt;}
.ls6d{letter-spacing:4.114645pt;}
.lsc{letter-spacing:4.956402pt;}
.lsd{letter-spacing:4.990408pt;}
.lsa{letter-spacing:5.139185pt;}
.ls5{letter-spacing:5.436739pt;}
.ls5a{letter-spacing:8.059264pt;}
.ls5b{letter-spacing:8.351710pt;}
.ls37{letter-spacing:8.385715pt;}
.ls31{letter-spacing:9.368704pt;}
.ls3{letter-spacing:9.395805pt;}
.ls12{letter-spacing:9.906977pt;}
.ls13{letter-spacing:9.969878pt;}
.ls34{letter-spacing:10.146596pt;}
.ls9{letter-spacing:10.172101pt;}
.ls28{letter-spacing:10.248615pt;}
.ls27{letter-spacing:10.252865pt;}
.ls7{letter-spacing:10.337881pt;}
.ls33{letter-spacing:10.439899pt;}
.ls2f{letter-spacing:10.546169pt;}
.ls26{letter-spacing:10.558921pt;}
.lsb{letter-spacing:11.082338pt;}
.ls6e{letter-spacing:11.170347pt;}
.ls2e{letter-spacing:11.324060pt;}
.ls23{letter-spacing:11.766141pt;}
.ls32{letter-spacing:11.897915pt;}
.ls22{letter-spacing:12.016936pt;}
.ls14{letter-spacing:12.153457pt;}
.ls4{letter-spacing:12.429548pt;}
.ls18{letter-spacing:12.458978pt;}
.ls4c{letter-spacing:13.385685pt;}
.ls6{letter-spacing:13.818876pt;}
.ls8{letter-spacing:13.819395pt;}
.ls2a{letter-spacing:14.121069pt;}
.ls63{letter-spacing:14.269846pt;}
.ls29{letter-spacing:14.418623pt;}
.ls74{letter-spacing:14.829726pt;}
.ls25{letter-spacing:15.251775pt;}
.ls24{letter-spacing:15.302784pt;}
.ls49{letter-spacing:15.545078pt;}
.ls2c{letter-spacing:15.706607pt;}
.ls4b{letter-spacing:16.033917pt;}
.ls1c{letter-spacing:16.042419pt;}
.ls2b{letter-spacing:18.397347pt;}
.ls2{letter-spacing:21.045699pt;}
.lsf{letter-spacing:21.246544pt;}
.ls4a{letter-spacing:22.805399pt;}
.ls10{letter-spacing:29.130550pt;}
.ls11{letter-spacing:29.423853pt;}
.ls40{letter-spacing:59.613867pt;}
.ls38{letter-spacing:221.680768pt;}
.ls51{letter-spacing:221.973214pt;}
.ls4d{letter-spacing:233.749261pt;}
.ls52{letter-spacing:273.202249pt;}
.ws204{word-spacing:-55.880533pt;}
.ws3e{word-spacing:-29.466361pt;}
.ws3d{word-spacing:-29.173057pt;}
.ws7c{word-spacing:-16.084926pt;}
.ws213{word-spacing:-15.587586pt;}
.ws205{word-spacing:-12.499717pt;}
.ws40{word-spacing:-10.380388pt;}
.ws41{word-spacing:-10.214608pt;}
.ws206{word-spacing:-7.937546pt;}
.ws67{word-spacing:-5.032916pt;}
.ws68{word-spacing:-4.998909pt;}
.wsd7{word-spacing:-0.756581pt;}
.ws20b{word-spacing:-0.645292pt;}
.ws25f{word-spacing:-0.055467pt;}
.ws6a{word-spacing:-0.044930pt;}
.ws30{word-spacing:-0.042508pt;}
.ws1e{word-spacing:-0.038257pt;}
.ws5d{word-spacing:-0.034005pt;}
.ws6d{word-spacing:-0.029204pt;}
.wsc7{word-spacing:-0.028334pt;}
.ws157{word-spacing:-0.027630pt;}
.ws25e{word-spacing:-0.022667pt;}
.ws291{word-spacing:-0.017067pt;}
.ws260{word-spacing:-0.012800pt;}
.ws69{word-spacing:0.000000pt;}
.ws292{word-spacing:0.008533pt;}
.ws261{word-spacing:0.021333pt;}
.wsd6{word-spacing:5.549670pt;}
.ws203{word-spacing:8.072866pt;}
.ws1f7{word-spacing:8.110272pt;}
.ws1c6{word-spacing:8.134076pt;}
.ws1c5{word-spacing:8.168081pt;}
.ws1c4{word-spacing:8.242893pt;}
.ws25a{word-spacing:8.280299pt;}
.ws290{word-spacing:8.287100pt;}
.ws28f{word-spacing:8.395917pt;}
.ws2e8{word-spacing:8.446925pt;}
.ws208{word-spacing:8.463927pt;}
.ws28e{word-spacing:8.538739pt;}
.ws1f6{word-spacing:8.562543pt;}
.ws25b{word-spacing:8.596548pt;}
.ws24d{word-spacing:8.708766pt;}
.ws25c{word-spacing:8.780177pt;}
.ws316{word-spacing:8.817583pt;}
.ws2e3{word-spacing:8.953604pt;}
.ws13{word-spacing:8.967331pt;}
.ws66{word-spacing:9.011639pt;}
.ws1c{word-spacing:9.147137pt;}
.ws1f{word-spacing:9.170091pt;}
.ws79{word-spacing:9.190172pt;}
.ws2ff{word-spacing:9.242650pt;}
.ws130{word-spacing:9.313444pt;}
.ws1d{word-spacing:9.315466pt;}
.wscc{word-spacing:9.338949pt;}
.ws1d6{word-spacing:9.351701pt;}
.wscb{word-spacing:9.355952pt;}
.ws131{word-spacing:9.372955pt;}
.ws23d{word-spacing:9.377206pt;}
.ws23f{word-spacing:9.406961pt;}
.ws165{word-spacing:9.432466pt;}
.ws78{word-spacing:9.445218pt;}
.ws1a5{word-spacing:9.504729pt;}
.ws1c2{word-spacing:9.517481pt;}
.ws77{word-spacing:9.538735pt;}
.ws1a1{word-spacing:9.547237pt;}
.ws311{word-spacing:9.616708pt;}
.ws26a{word-spacing:9.632252pt;}
.ws11c{word-spacing:9.687512pt;}
.ws23e{word-spacing:9.713017pt;}
.ws29d{word-spacing:9.751274pt;}
.ws2d8{word-spacing:9.756130pt;}
.ws12e{word-spacing:9.768277pt;}
.ws299{word-spacing:9.827788pt;}
.wse5{word-spacing:9.840540pt;}
.ws70{word-spacing:9.862047pt;}
.ws2c4{word-spacing:9.870296pt;}
.wsd3{word-spacing:9.878549pt;}
.ws281{word-spacing:9.887299pt;}
.ws2e6{word-spacing:9.888751pt;}
.ws1d0{word-spacing:9.942559pt;}
.ws1b{word-spacing:9.946699pt;}
.ws2bd{word-spacing:9.959562pt;}
.ws275{word-spacing:9.968063pt;}
.wsfe{word-spacing:9.972314pt;}
.ws155{word-spacing:9.985067pt;}
.ws129{word-spacing:9.989317pt;}
.ws123{word-spacing:10.002070pt;}
.ws14f{word-spacing:10.010571pt;}
.wsab{word-spacing:10.014822pt;}
.ws154{word-spacing:10.027574pt;}
.ws35{word-spacing:10.036076pt;}
.ws47{word-spacing:10.040327pt;}
.ws99{word-spacing:10.053079pt;}
.ws3c{word-spacing:10.057330pt;}
.wsa0{word-spacing:10.061580pt;}
.ws16a{word-spacing:10.070082pt;}
.ws1be{word-spacing:10.078584pt;}
.ws2b4{word-spacing:10.087085pt;}
.wscf{word-spacing:10.091336pt;}
.ws1cc{word-spacing:10.099837pt;}
.ws17d{word-spacing:10.104088pt;}
.ws1f4{word-spacing:10.116587pt;}
.ws1bd{word-spacing:10.116841pt;}
.wsaa{word-spacing:10.129593pt;}
.ws2ba{word-spacing:10.133844pt;}
.ws18e{word-spacing:10.150847pt;}
.wsa9{word-spacing:10.159348pt;}
.ws1ea{word-spacing:10.163599pt;}
.ws1bb{word-spacing:10.167850pt;}
.ws42{word-spacing:10.176351pt;}
.ws1c0{word-spacing:10.180602pt;}
.ws126{word-spacing:10.193354pt;}
.ws136{word-spacing:10.197605pt;}
.ws9b{word-spacing:10.210358pt;}
.ws3f{word-spacing:10.218859pt;}
.wsb1{word-spacing:10.223110pt;}
.ws151{word-spacing:10.231611pt;}
.ws13b{word-spacing:10.235862pt;}
.ws18d{word-spacing:10.240113pt;}
.ws178{word-spacing:10.248615pt;}
.ws1bc{word-spacing:10.261367pt;}
.ws88{word-spacing:10.269868pt;}
.wsb{word-spacing:10.271793pt;}
.wsa4{word-spacing:10.278370pt;}
.ws214{word-spacing:10.282621pt;}
.wsb7{word-spacing:10.286871pt;}
.ws152{word-spacing:10.303875pt;}
.ws2b5{word-spacing:10.308125pt;}
.ws17b{word-spacing:10.312376pt;}
.ws16f{word-spacing:10.325128pt;}
.wsf1{word-spacing:10.333630pt;}
.ws1b6{word-spacing:10.337881pt;}
.ws87{word-spacing:10.350633pt;}
.ws146{word-spacing:10.363385pt;}
.ws167{word-spacing:10.380388pt;}
.ws16b{word-spacing:10.384639pt;}
.ws34{word-spacing:10.401642pt;}
.ws89{word-spacing:10.422896pt;}
.ws26f{word-spacing:10.427147pt;}
.ws121{word-spacing:10.448401pt;}
.wsc6{word-spacing:10.452652pt;}
.ws17c{word-spacing:10.469655pt;}
.ws284{word-spacing:10.503661pt;}
.ws2ea{word-spacing:10.504247pt;}
.wsca{word-spacing:10.507912pt;}
.ws22f{word-spacing:10.567423pt;}
.wsec{word-spacing:10.601429pt;}
.ws17e{word-spacing:10.605679pt;}
.ws22d{word-spacing:10.618432pt;}
.wsfa{word-spacing:10.673692pt;}
.ws1cf{word-spacing:10.703447pt;}
.ws19{word-spacing:10.711829pt;}
.ws10d{word-spacing:10.720450pt;}
.ws30a{word-spacing:10.732083pt;}
.wsa{word-spacing:10.738884pt;}
.ws28d{word-spacing:10.742285pt;}
.ws2cb{word-spacing:10.752486pt;}
.wse{word-spacing:10.759287pt;}
.ws2d4{word-spacing:10.786492pt;}
.wsfb{word-spacing:10.788463pt;}
.ws2ce{word-spacing:10.789892pt;}
.ws2fa{word-spacing:10.806895pt;}
.ws28b{word-spacing:10.810295pt;}
.ws2ed{word-spacing:10.823898pt;}
.ws30d{word-spacing:10.834099pt;}
.ws9{word-spacing:10.837500pt;}
.ws2dc{word-spacing:10.847701pt;}
.ws1cd{word-spacing:10.847974pt;}
.ws63{word-spacing:10.854502pt;}
.ws310{word-spacing:10.857903pt;}
.ws2e1{word-spacing:10.861303pt;}
.ws62{word-spacing:10.874906pt;}
.wsf9{word-spacing:10.877729pt;}
.ws2e4{word-spacing:10.881707pt;}
.ws307{word-spacing:10.888508pt;}
.ws22e{word-spacing:10.890481pt;}
.ws2db{word-spacing:10.891908pt;}
.ws2ec{word-spacing:10.895309pt;}
.ws264{word-spacing:10.898983pt;}
.ws313{word-spacing:10.915712pt;}
.ws148{word-spacing:10.920237pt;}
.ws5e{word-spacing:10.922513pt;}
.ws2e7{word-spacing:10.925914pt;}
.ws144{word-spacing:10.928738pt;}
.ws2f4{word-spacing:10.929314pt;}
.wsf{word-spacing:10.946317pt;}
.wsd{word-spacing:10.956518pt;}
.ws1fa{word-spacing:10.959919pt;}
.ws2c9{word-spacing:10.963319pt;}
.ws60{word-spacing:10.970121pt;}
.ws1c7{word-spacing:10.973521pt;}
.ws26{word-spacing:10.975497pt;}
.ws315{word-spacing:10.987123pt;}
.ws29c{word-spacing:10.996751pt;}
.ws304{word-spacing:11.000725pt;}
.ws1fe{word-spacing:11.004126pt;}
.ws301{word-spacing:11.017728pt;}
.ws2d3{word-spacing:11.021129pt;}
.ws5f{word-spacing:11.027930pt;}
.ws1f5{word-spacing:11.044932pt;}
.ws1e1{word-spacing:11.052011pt;}
.ws11{word-spacing:11.055134pt;}
.ws12{word-spacing:11.058534pt;}
.ws1ff{word-spacing:11.061935pt;}
.ws221{word-spacing:11.069014pt;}
.ws303{word-spacing:11.072137pt;}
.ws145{word-spacing:11.098769pt;}
.ws2ab{word-spacing:11.128525pt;}
.ws10{word-spacing:11.129946pt;}
.ws8{word-spacing:11.136747pt;}
.ws11d{word-spacing:11.149778pt;}
.ws308{word-spacing:11.180954pt;}
.ws1ce{word-spacing:11.183785pt;}
.ws28a{word-spacing:11.187755pt;}
.wsc{word-spacing:11.194556pt;}
.ws61{word-spacing:11.204757pt;}
.ws90{word-spacing:11.234794pt;}
.ws28{word-spacing:11.247546pt;}
.ws27{word-spacing:11.256048pt;}
.ws1f3{word-spacing:11.299972pt;}
.wsee{word-spacing:11.307057pt;}
.ws254{word-spacing:11.310174pt;}
.wsf4{word-spacing:11.311308pt;}
.ws3a{word-spacing:11.315559pt;}
.wsed{word-spacing:11.328311pt;}
.ws2f9{word-spacing:11.361182pt;}
.ws27d{word-spacing:11.362317pt;}
.ws8e{word-spacing:11.375069pt;}
.ws297{word-spacing:11.383571pt;}
.ws216{word-spacing:11.396323pt;}
.wseb{word-spacing:11.413326pt;}
.ws283{word-spacing:11.417577pt;}
.ws127{word-spacing:11.460085pt;}
.ws1d1{word-spacing:11.481339pt;}
.ws276{word-spacing:11.545100pt;}
.ws3b{word-spacing:11.566354pt;}
.ws2f1{word-spacing:11.572015pt;}
.ws1ae{word-spacing:11.574856pt;}
.ws2b8{word-spacing:11.579107pt;}
.ws29e{word-spacing:11.591859pt;}
.ws1c8{word-spacing:11.600360pt;}
.ws24b{word-spacing:11.602620pt;}
.wsea{word-spacing:11.604611pt;}
.ws159{word-spacing:11.625865pt;}
.ws8f{word-spacing:11.659871pt;}
.ws1d7{word-spacing:11.664122pt;}
.ws2f{word-spacing:11.668373pt;}
.ws31{word-spacing:11.693877pt;}
.ws243{word-spacing:11.732134pt;}
.ws1d9{word-spacing:11.761890pt;}
.ws171{word-spacing:11.774642pt;}
.wsc0{word-spacing:11.795896pt;}
.ws14{word-spacing:11.805966pt;}
.ws115{word-spacing:11.825651pt;}
.ws117{word-spacing:11.842655pt;}
.ws222{word-spacing:11.846905pt;}
.ws11f{word-spacing:11.855407pt;}
.ws16c{word-spacing:11.880911pt;}
.ws116{word-spacing:11.893664pt;}
.ws15a{word-spacing:11.902165pt;}
.ws1db{word-spacing:11.927670pt;}
.wsba{word-spacing:11.953175pt;}
.wse0{word-spacing:11.957425pt;}
.ws1c9{word-spacing:12.004184pt;}
.ws2bb{word-spacing:12.008435pt;}
.ws86{word-spacing:12.025438pt;}
.ws147{word-spacing:12.038190pt;}
.wsc9{word-spacing:12.050942pt;}
.ws1d8{word-spacing:12.067945pt;}
.ws2fb{word-spacing:12.092297pt;}
.ws1a{word-spacing:12.100541pt;}
.wsd9{word-spacing:12.123206pt;}
.ws278{word-spacing:12.127456pt;}
.ws44{word-spacing:12.140209pt;}
.ws6e{word-spacing:12.157950pt;}
.ws133{word-spacing:12.161463pt;}
.ws85{word-spacing:12.186967pt;}
.ws84{word-spacing:12.195469pt;}
.ws1a4{word-spacing:12.203970pt;}
.ws59{word-spacing:12.208221pt;}
.ws143{word-spacing:12.220973pt;}
.ws20f{word-spacing:12.225224pt;}
.ws24c{word-spacing:12.269124pt;}
.ws135{word-spacing:12.280484pt;}
.ws105{word-spacing:12.284735pt;}
.ws300{word-spacing:12.292928pt;}
.ws94{word-spacing:12.310240pt;}
.ws240{word-spacing:12.335744pt;}
.ws2cf{word-spacing:12.354138pt;}
.ws55{word-spacing:12.374001pt;}
.ws72{word-spacing:12.409556pt;}
.ws22{word-spacing:12.410419pt;}
.wse6{word-spacing:12.420760pt;}
.ws29f{word-spacing:12.437763pt;}
.ws15e{word-spacing:12.450515pt;}
.ws23{word-spacing:12.452502pt;}
.ws6b{word-spacing:12.463471pt;}
.ws5a{word-spacing:12.467518pt;}
.ws314{word-spacing:12.469756pt;}
.ws45{word-spacing:12.480271pt;}
.ws2af{word-spacing:12.488772pt;}
.ws54{word-spacing:12.501524pt;}
.ws262{word-spacing:12.535531pt;}
.ws317{word-spacing:12.547968pt;}
.ws24a{word-spacing:12.552534pt;}
.ws53{word-spacing:12.582289pt;}
.ws279{word-spacing:12.586540pt;}
.ws29b{word-spacing:12.599292pt;}
.wsda{word-spacing:12.603543pt;}
.ws153{word-spacing:12.616295pt;}
.ws2b7{word-spacing:12.646051pt;}
.ws134{word-spacing:12.658803pt;}
.ws46{word-spacing:12.688558pt;}
.ws2c1{word-spacing:12.692809pt;}
.ws1a8{word-spacing:12.714063pt;}
.wse1{word-spacing:12.765072pt;}
.ws1aa{word-spacing:12.790577pt;}
.ws1ba{word-spacing:12.803329pt;}
.ws298{word-spacing:12.841586pt;}
.ws5b{word-spacing:12.845837pt;}
.ws210{word-spacing:12.854339pt;}
.ws217{word-spacing:12.858589pt;}
.ws108{word-spacing:12.884094pt;}
.ws150{word-spacing:12.888345pt;}
.ws18{word-spacing:12.903929pt;}
.wsc8{word-spacing:12.922351pt;}
.ws1a9{word-spacing:12.952106pt;}
.wsae{word-spacing:12.973360pt;}
.ws202{word-spacing:13.013841pt;}
.ws15d{word-spacing:13.045623pt;}
.wsb0{word-spacing:13.058376pt;}
.ws1a3{word-spacing:13.079630pt;}
.wse3{word-spacing:13.092382pt;}
.ws43{word-spacing:13.130639pt;}
.ws125{word-spacing:13.160394pt;}
.ws29{word-spacing:13.177397pt;}
.ws2e{word-spacing:13.224156pt;}
.ws109{word-spacing:13.228407pt;}
.wse2{word-spacing:13.236908pt;}
.ws7f{word-spacing:13.241159pt;}
.wsaf{word-spacing:13.245410pt;}
.ws201{word-spacing:13.248478pt;}
.ws104{word-spacing:13.262413pt;}
.ws49{word-spacing:13.275165pt;}
.ws247{word-spacing:13.279416pt;}
.wse4{word-spacing:13.296419pt;}
.ws2a{word-spacing:13.300670pt;}
.ws95{word-spacing:13.326174pt;}
.ws83{word-spacing:13.355930pt;}
.ws170{word-spacing:13.368682pt;}
.ws1c1{word-spacing:13.372933pt;}
.ws11e{word-spacing:13.394187pt;}
.ws2b9{word-spacing:13.402688pt;}
.ws93{word-spacing:13.406939pt;}
.wsd8{word-spacing:13.411190pt;}
.ws10c{word-spacing:13.423942pt;}
.ws13e{word-spacing:13.428193pt;}
.ws265{word-spacing:13.432444pt;}
.ws162{word-spacing:13.445196pt;}
.ws30b{word-spacing:13.445709pt;}
.ws96{word-spacing:13.449447pt;}
.ws1e2{word-spacing:13.457948pt;}
.ws2ae{word-spacing:13.462199pt;}
.ws12d{word-spacing:13.466450pt;}
.ws2a4{word-spacing:13.474951pt;}
.ws1ac{word-spacing:13.479202pt;}
.ws33{word-spacing:13.483453pt;}
.ws23a{word-spacing:13.500456pt;}
.ws142{word-spacing:13.513208pt;}
.ws2c2{word-spacing:13.521710pt;}
.ws239{word-spacing:13.525961pt;}
.ws103{word-spacing:13.530212pt;}
.ws26d{word-spacing:13.538713pt;}
.ws246{word-spacing:13.542964pt;}
.wsb4{word-spacing:13.547215pt;}
.ws244{word-spacing:13.564218pt;}
.ws2c3{word-spacing:13.568468pt;}
.ws24{word-spacing:13.585472pt;}
.ws4b{word-spacing:13.598224pt;}
.ws64{word-spacing:13.602475pt;}
.ws8d{word-spacing:13.632230pt;}
.ws2f7{word-spacing:13.632738pt;}
.ws92{word-spacing:13.636481pt;}
.ws4a{word-spacing:13.661985pt;}
.wsde{word-spacing:13.678989pt;}
.wsac{word-spacing:13.708744pt;}
.ws1e7{word-spacing:13.712995pt;}
.ws2c0{word-spacing:13.729998pt;}
.wsbc{word-spacing:13.755503pt;}
.ws26e{word-spacing:13.768255pt;}
.ws7a{word-spacing:13.772506pt;}
.wsa3{word-spacing:13.823515pt;}
.ws2c8{word-spacing:13.833370pt;}
.ws56{word-spacing:13.844769pt;}
.ws198{word-spacing:13.853270pt;}
.ws2b1{word-spacing:13.857521pt;}
.ws21{word-spacing:13.864168pt;}
.ws197{word-spacing:13.870273pt;}
.ws2c7{word-spacing:13.877577pt;}
.ws57{word-spacing:13.878775pt;}
.ws1dc{word-spacing:13.904280pt;}
.wsb5{word-spacing:13.912781pt;}
.wsa2{word-spacing:13.929784pt;}
.ws18c{word-spacing:13.963790pt;}
.ws272{word-spacing:13.968041pt;}
.ws1dd{word-spacing:13.972292pt;}
.ws106{word-spacing:14.006298pt;}
.ws2a5{word-spacing:14.044555pt;}
.ws58{word-spacing:14.070060pt;}
.ws37{word-spacing:14.078561pt;}
.ws17a{word-spacing:14.116818pt;}
.ws18b{word-spacing:14.129571pt;}
.ws120{word-spacing:14.146574pt;}
.ws128{word-spacing:14.150824pt;}
.ws169{word-spacing:14.206084pt;}
.wsb3{word-spacing:14.210335pt;}
.ws1ee{word-spacing:14.214586pt;}
.ws107{word-spacing:14.218837pt;}
.ws39{word-spacing:14.308103pt;}
.ws102{word-spacing:14.354862pt;}
.ws15{word-spacing:14.357677pt;}
.wse8{word-spacing:14.359112pt;}
.wse7{word-spacing:14.376115pt;}
.ws1a7{word-spacing:14.380366pt;}
.ws286{word-spacing:14.405871pt;}
.ws14d{word-spacing:14.410122pt;}
.ws1a6{word-spacing:14.422874pt;}
.ws22a{word-spacing:14.448379pt;}
.ws38{word-spacing:14.452629pt;}
.ws19a{word-spacing:14.456880pt;}
.ws19c{word-spacing:14.478134pt;}
.ws2fd{word-spacing:14.486272pt;}
.ws176{word-spacing:14.486636pt;}
.ws101{word-spacing:14.490886pt;}
.ws36{word-spacing:14.495137pt;}
.wsb2{word-spacing:14.499388pt;}
.ws2bf{word-spacing:14.541896pt;}
.ws118{word-spacing:14.550397pt;}
.ws2f6{word-spacing:14.578086pt;}
.ws174{word-spacing:14.580153pt;}
.wscd{word-spacing:14.614159pt;}
.ws9e{word-spacing:14.618409pt;}
.ws149{word-spacing:14.652416pt;}
.ws220{word-spacing:14.703425pt;}
.ws186{word-spacing:14.707676pt;}
.ws19b{word-spacing:14.720428pt;}
.ws1ab{word-spacing:14.724679pt;}
.ws2f2{word-spacing:14.782118pt;}
.ws2cc{word-spacing:14.785519pt;}
.wsa1{word-spacing:14.801193pt;}
.ws9d{word-spacing:14.818196pt;}
.ws185{word-spacing:14.843700pt;}
.ws184{word-spacing:14.907462pt;}
.wsb8{word-spacing:14.949970pt;}
.ws9c{word-spacing:14.954221pt;}
.ws194{word-spacing:14.983976pt;}
.ws141{word-spacing:14.992478pt;}
.ws48{word-spacing:15.009481pt;}
.ws183{word-spacing:15.013731pt;}
.ws20e{word-spacing:15.026484pt;}
.ws241{word-spacing:15.030735pt;}
.ws17{word-spacing:15.042469pt;}
.ws52{word-spacing:15.077493pt;}
.ws182{word-spacing:15.094496pt;}
.wsc1{word-spacing:15.154007pt;}
.wsd2{word-spacing:15.156177pt;}
.ws4e{word-spacing:15.158258pt;}
.ws2d5{word-spacing:15.169779pt;}
.ws212{word-spacing:15.196515pt;}
.ws75{word-spacing:15.226270pt;}
.wsb9{word-spacing:15.243273pt;}
.ws17f{word-spacing:15.256025pt;}
.wsef{word-spacing:15.294282pt;}
.wsd1{word-spacing:15.309201pt;}
.ws16{word-spacing:15.317916pt;}
.wsf0{word-spacing:15.324038pt;}
.ws13a{word-spacing:15.383549pt;}
.ws10e{word-spacing:15.392050pt;}
.ws15b{word-spacing:15.413304pt;}
.ws2f3{word-spacing:15.462225pt;}
.wsbd{word-spacing:15.477066pt;}
.ws124{word-spacing:15.494069pt;}
.ws173{word-spacing:15.498320pt;}
.ws7b{word-spacing:15.506821pt;}
.ws50{word-spacing:15.528075pt;}
.ws294{word-spacing:15.536577pt;}
.ws233{word-spacing:15.553580pt;}
.ws227{word-spacing:15.583335pt;}
.ws1ed{word-spacing:15.596087pt;}
.ws1eb{word-spacing:15.621592pt;}
.ws232{word-spacing:15.625843pt;}
.ws13c{word-spacing:15.630094pt;}
.ws4f{word-spacing:15.634344pt;}
.ws51{word-spacing:15.659849pt;}
.wsf3{word-spacing:15.693855pt;}
.ws193{word-spacing:15.698106pt;}
.ws296{word-spacing:15.706607pt;}
.ws1d3{word-spacing:15.719360pt;}
.ws8c{word-spacing:15.791623pt;}
.ws1ec{word-spacing:15.829880pt;}
.ws29a{word-spacing:15.838381pt;}
.ws229{word-spacing:15.863886pt;}
.ws295{word-spacing:15.897892pt;}
.ws156{word-spacing:15.910645pt;}
.ws2a7{word-spacing:15.936149pt;}
.ws228{word-spacing:15.948902pt;}
.ws219{word-spacing:15.965905pt;}
.ws196{word-spacing:15.995660pt;}
.ws187{word-spacing:16.008412pt;}
.ws2be{word-spacing:16.016914pt;}
.ws218{word-spacing:16.021165pt;}
.ws27c{word-spacing:16.067923pt;}
.ws158{word-spacing:16.101929pt;}
.ws188{word-spacing:16.131685pt;}
.ws175{word-spacing:16.144437pt;}
.ws2df{word-spacing:16.145732pt;}
.ws1ef{word-spacing:16.152939pt;}
.ws195{word-spacing:16.191196pt;}
.ws215{word-spacing:16.208199pt;}
.ws2d9{word-spacing:16.230746pt;}
.ws1f1{word-spacing:16.276211pt;}
.ws21a{word-spacing:16.297465pt;}
.ws2f5{word-spacing:16.308958pt;}
.ws190{word-spacing:16.318719pt;}
.ws2c6{word-spacing:16.329361pt;}
.ws132{word-spacing:16.331471pt;}
.ws268{word-spacing:16.344223pt;}
.wsc5{word-spacing:16.348474pt;}
.ws18f{word-spacing:16.369728pt;}
.ws231{word-spacing:16.403734pt;}
.ws27b{word-spacing:16.424988pt;}
.wsbe{word-spacing:16.450493pt;}
.wsbb{word-spacing:16.454744pt;}
.ws140{word-spacing:16.480248pt;}
.ws1f0{word-spacing:16.484499pt;}
.ws257{word-spacing:16.489186pt;}
.ws2b2{word-spacing:16.518505pt;}
.ws258{word-spacing:16.533393pt;}
.ws7e{word-spacing:16.535508pt;}
.ws181{word-spacing:16.539759pt;}
.ws2ef{word-spacing:16.550396pt;}
.ws13d{word-spacing:16.612022pt;}
.ws1a2{word-spacing:16.624775pt;}
.ws207{word-spacing:16.635409pt;}
.wsf2{word-spacing:16.637527pt;}
.ws238{word-spacing:16.654530pt;}
.ws1cb{word-spacing:16.663031pt;}
.ws30f{word-spacing:16.666014pt;}
.ws180{word-spacing:16.671533pt;}
.ws259{word-spacing:16.700019pt;}
.ws25{word-spacing:16.824561pt;}
.ws2a8{word-spacing:16.845815pt;}
.ws7d{word-spacing:16.905326pt;}
.ws1d2{word-spacing:16.935081pt;}
.ws19e{word-spacing:16.960586pt;}
.ws14c{word-spacing:16.969087pt;}
.ws1b0{word-spacing:16.973338pt;}
.wsa7{word-spacing:17.045601pt;}
.ws1e0{word-spacing:17.143369pt;}
.ws306{word-spacing:17.159091pt;}
.wsa6{word-spacing:17.173124pt;}
.ws277{word-spacing:17.198629pt;}
.ws16e{word-spacing:17.245387pt;}
.ws189{word-spacing:17.292146pt;}
.ws305{word-spacing:17.298513pt;}
.ws15f{word-spacing:17.326152pt;}
.ws235{word-spacing:17.338904pt;}
.ws1ad{word-spacing:17.355908pt;}
.ws285{word-spacing:17.372911pt;}
.ws1b1{word-spacing:17.398415pt;}
.ws2aa{word-spacing:17.402666pt;}
.ws18a{word-spacing:17.466428pt;}
.ws199{word-spacing:17.496183pt;}
.ws237{word-spacing:17.513186pt;}
.ws192{word-spacing:17.547192pt;}
.ws160{word-spacing:17.555694pt;}
.ws137{word-spacing:17.598202pt;}
.ws2bc{word-spacing:17.602452pt;}
.ws236{word-spacing:17.661963pt;}
.wsf6{word-spacing:17.674716pt;}
.ws12a{word-spacing:17.712972pt;}
.ws172{word-spacing:17.729976pt;}
.ws122{word-spacing:17.759731pt;}
.ws2e2{word-spacing:17.767787pt;}
.wsf7{word-spacing:17.780985pt;}
.ws293{word-spacing:17.789486pt;}
.wsf8{word-spacing:17.810740pt;}
.ws20{word-spacing:17.816068pt;}
.ws82{word-spacing:17.827743pt;}
.ws2de{word-spacing:17.849399pt;}
.ws9a{word-spacing:17.857499pt;}
.ws309{word-spacing:17.863002pt;}
.ws12b{word-spacing:17.891505pt;}
.ws12c{word-spacing:17.900007pt;}
.ws191{word-spacing:17.955267pt;}
.ws1c3{word-spacing:17.963768pt;}
.ws1b2{word-spacing:18.010527pt;}
.ws2e9{word-spacing:18.022827pt;}
.wsc3{word-spacing:18.036031pt;}
.ws19d{word-spacing:18.082790pt;}
.ws271{word-spacing:18.108294pt;}
.ws13f{word-spacing:18.146551pt;}
.ws21d{word-spacing:18.167805pt;}
.ws161{word-spacing:18.172056pt;}
.ws267{word-spacing:18.210313pt;}
.ws223{word-spacing:18.223065pt;}
.ws164{word-spacing:18.235818pt;}
.wsdb{word-spacing:18.252821pt;}
.ws20d{word-spacing:18.359090pt;}
.ws270{word-spacing:18.414350pt;}
.wsa5{word-spacing:18.427102pt;}
.ws76{word-spacing:18.435604pt;}
.ws163{word-spacing:18.439855pt;}
.ws21b{word-spacing:18.452607pt;}
.ws266{word-spacing:18.456858pt;}
.wsdd{word-spacing:18.469610pt;}
.wsdc{word-spacing:18.478112pt;}
.ws21c{word-spacing:18.482362pt;}
.ws3{word-spacing:18.569583pt;}
.ws6{word-spacing:18.654067pt;}
.ws1e9{word-spacing:18.656644pt;}
.ws4{word-spacing:18.687861pt;}
.ws7{word-spacing:18.699125pt;}
.ws4c{word-spacing:18.699152pt;}
.ws5{word-spacing:18.721654pt;}
.ws2a3{word-spacing:18.728907pt;}
.ws2{word-spacing:18.766713pt;}
.ws97{word-spacing:18.767164pt;}
.ws1b9{word-spacing:18.775666pt;}
.ws4d{word-spacing:18.779917pt;}
.ws2d2{word-spacing:18.798148pt;}
.ws2ac{word-spacing:18.847929pt;}
.ws21f{word-spacing:18.873434pt;}
.wsb6{word-spacing:18.945697pt;}
.ws16d{word-spacing:18.962700pt;}
.ws20c{word-spacing:18.975452pt;}
.ws2d1{word-spacing:18.995379pt;}
.ws288{word-spacing:19.005208pt;}
.ws100{word-spacing:19.073220pt;}
.ws2e5{word-spacing:19.107597pt;}
.ws179{word-spacing:19.234749pt;}
.ws2da{word-spacing:19.253820pt;}
.ws248{word-spacing:19.324016pt;}
.ws11b{word-spacing:19.362273pt;}
.ws11a{word-spacing:19.443037pt;}
.wsf5{word-spacing:19.455790pt;}
.ws274{word-spacing:19.481294pt;}
.wsc4{word-spacing:19.583313pt;}
.ws114{word-spacing:19.659827pt;}
.ws112{word-spacing:19.710836pt;}
.ws2a1{word-spacing:19.757594pt;}
.ws10a{word-spacing:19.851111pt;}
.ws1b3{word-spacing:19.855362pt;}
.ws30e{word-spacing:19.859115pt;}
.ws234{word-spacing:19.872365pt;}
.ws2fe{word-spacing:19.879518pt;}
.ws14b{word-spacing:19.910622pt;}
.ws1b5{word-spacing:19.970133pt;}
.ws15c{word-spacing:20.004139pt;}
.ws1b4{word-spacing:20.114659pt;}
.ws5c{word-spacing:20.135913pt;}
.wsce{word-spacing:20.327198pt;}
.ws10f{word-spacing:20.348452pt;}
.ws10b{word-spacing:20.365455pt;}
.ws2d0{word-spacing:20.403200pt;}
.ws12f{word-spacing:20.412214pt;}
.ws242{word-spacing:20.501480pt;}
.ws111{word-spacing:20.586495pt;}
.ws14e{word-spacing:20.594997pt;}
.ws318{word-spacing:20.702447pt;}
.ws73{word-spacing:20.705517pt;}
.ws110{word-spacing:20.726771pt;}
.wsd4{word-spacing:20.770458pt;}
.ws2ca{word-spacing:20.855471pt;}
.ws27e{word-spacing:20.875548pt;}
.ws1e5{word-spacing:20.888300pt;}
.ws280{word-spacing:20.909554pt;}
.ws1e8{word-spacing:21.007322pt;}
.ws1e4{word-spacing:21.028576pt;}
.ws23c{word-spacing:21.037077pt;}
.ws1d4{word-spacing:21.113591pt;}
.ws1d5{word-spacing:21.122093pt;}
.ws14a{word-spacing:21.130594pt;}
.ws1e6{word-spacing:21.139096pt;}
.ws9f{word-spacing:21.156099pt;}
.ws27f{word-spacing:21.194356pt;}
.ws2d7{word-spacing:21.198925pt;}
.ws1e3{word-spacing:21.266619pt;}
.ws2b0{word-spacing:21.330381pt;}
.wse9{word-spacing:21.347384pt;}
.ws23b{word-spacing:21.372888pt;}
.ws226{word-spacing:21.432399pt;}
.wsbf{word-spacing:21.623684pt;}
.ws28c{word-spacing:21.644395pt;}
.ws20a{word-spacing:21.715806pt;}
.ws263{word-spacing:21.717201pt;}
.ws2c{word-spacing:21.725703pt;}
.wsdf{word-spacing:21.797966pt;}
.wsc2{word-spacing:21.853226pt;}
.ws166{word-spacing:21.912737pt;}
.ws74{word-spacing:21.916987pt;}
.ws8b{word-spacing:22.027507pt;}
.wsff{word-spacing:22.116774pt;}
.ws22b{word-spacing:22.206040pt;}
.ws2a2{word-spacing:22.223043pt;}
.ws22c{word-spacing:22.227294pt;}
.ws81{word-spacing:22.235795pt;}
.ws2fc{word-spacing:22.256491pt;}
.ws119{word-spacing:22.359068pt;}
.ws224{word-spacing:22.507845pt;}
.ws2b6{word-spacing:22.563105pt;}
.ws249{word-spacing:22.699130pt;}
.ws302{word-spacing:22.732565pt;}
.ws225{word-spacing:22.890414pt;}
.ws2e0{word-spacing:22.984205pt;}
.ws282{word-spacing:23.013687pt;}
.ws211{word-spacing:23.022188pt;}
.ws209{word-spacing:23.035213pt;}
.ws2a6{word-spacing:23.243229pt;}
.ws177{word-spacing:23.570538pt;}
.ws98{word-spacing:23.676807pt;}
.ws65{word-spacing:23.766710pt;}
.ws2b{word-spacing:23.872343pt;}
.ws0{word-spacing:24.022600pt;}
.ws1da{word-spacing:24.072129pt;}
.ws1{word-spacing:24.087158pt;}
.ws2ad{word-spacing:24.331427pt;}
.ws230{word-spacing:24.433445pt;}
.ws2a0{word-spacing:24.446197pt;}
.ws91{word-spacing:25.151826pt;}
.ws2dd{word-spacing:25.174148pt;}
.ws32{word-spacing:25.304854pt;}
.ws113{word-spacing:25.360114pt;}
.ws26c{word-spacing:25.470634pt;}
.ws269{word-spacing:25.802194pt;}
.ws312{word-spacing:25.813449pt;}
.ws26b{word-spacing:25.908463pt;}
.ws273{word-spacing:26.257027pt;}
.ws1df{word-spacing:26.342042pt;}
.ws1af{word-spacing:26.452562pt;}
.ws287{word-spacing:26.605590pt;}
.wsad{word-spacing:26.801126pt;}
.ws19f{word-spacing:26.830881pt;}
.ws21e{word-spacing:26.898894pt;}
.ws80{word-spacing:26.915897pt;}
.ws245{word-spacing:27.408986pt;}
.ws8a{word-spacing:27.999844pt;}
.ws27a{word-spacing:28.318652pt;}
.ws25d{word-spacing:28.408055pt;}
.ws168{word-spacing:29.343088pt;}
.ws2f8{word-spacing:29.605043pt;}
.ws1a0{word-spacing:29.725658pt;}
.ws1de{word-spacing:30.010460pt;}
.ws2c5{word-spacing:30.171989pt;}
.wsfc{word-spacing:30.422785pt;}
.wsfd{word-spacing:30.818107pt;}
.ws1ca{word-spacing:30.924376pt;}
.ws1f2{word-spacing:31.162419pt;}
.ws2f0{word-spacing:32.753937pt;}
.ws30c{word-spacing:34.120951pt;}
.ws138{word-spacing:35.506710pt;}
.ws139{word-spacing:35.689493pt;}
.ws2d{word-spacing:35.774508pt;}
.wsa8{word-spacing:38.822313pt;}
.ws2a9{word-spacing:40.106046pt;}
.ws1b7{word-spacing:40.747913pt;}
.ws1b8{word-spacing:40.977455pt;}
.ws2d6{word-spacing:46.917158pt;}
.ws1bf{word-spacing:53.415218pt;}
.ws2b3{word-spacing:69.126076pt;}
.ws2cd{word-spacing:71.948484pt;}
.ws24e{word-spacing:82.316710pt;}
.ws200{word-spacing:83.411972pt;}
.ws1f8{word-spacing:85.261572pt;}
.ws250{word-spacing:102.141820pt;}
.ws252{word-spacing:102.515878pt;}
.ws1f9{word-spacing:105.083281pt;}
.ws1fc{word-spacing:105.457340pt;}
.ws253{word-spacing:108.568828pt;}
.ws1fd{word-spacing:111.510289pt;}
.ws251{word-spacing:127.268361pt;}
.ws255{word-spacing:130.213222pt;}
.ws1fb{word-spacing:130.587281pt;}
.ws289{word-spacing:140.944533pt;}
.ws24f{word-spacing:147.841587pt;}
.ws256{word-spacing:152.626133pt;}
.wsd0{word-spacing:301.353860pt;}
.ws2eb{word-spacing:305.562133pt;}
.ws6f{word-spacing:319.435977pt;}
.ws6c{word-spacing:344.160736pt;}
.ws71{word-spacing:397.272016pt;}
.wsd5{word-spacing:770.261606pt;}
.ws2ee{word-spacing:770.635665pt;}
._27{margin-left:-59.800533pt;}
._e{margin-left:-30.278258pt;}
._d{margin-left:-29.126299pt;}
._c{margin-left:-18.741660pt;}
._11{margin-left:-15.376383pt;}
._f{margin-left:-10.337881pt;}
._8{margin-left:-0.986179pt;}
._6{width:1.100679pt;}
._3b{width:2.399366pt;}
._28{width:3.820103pt;}
._14{width:4.818886pt;}
._20{width:8.157879pt;}
._16{width:9.262435pt;}
._1{width:10.194799pt;}
._2{width:11.925670pt;}
._3{width:12.968965pt;}
._5{width:13.902424pt;}
._a{width:15.100602pt;}
._4{width:16.347017pt;}
._13{width:17.853248pt;}
._0{width:19.589023pt;}
._7{width:20.702757pt;}
._10{width:21.683195pt;}
._9{width:22.835154pt;}
._12{width:24.619844pt;}
._15{width:26.376049pt;}
._1a{width:27.889324pt;}
._b{width:29.113547pt;}
._19{width:30.410032pt;}
._3e{width:33.094270pt;}
._3d{width:34.018939pt;}
._37{width:34.979614pt;}
._17{width:36.514143pt;}
._1b{width:42.027396pt;}
._40{width:48.270571pt;}
._3f{width:73.006050pt;}
._2e{width:82.350716pt;}
._2a{width:85.152755pt;}
._1d{width:88.101018pt;}
._2d{width:102.175825pt;}
._29{width:104.981265pt;}
._1c{width:108.218573pt;}
._26{width:116.315326pt;}
._33{width:130.247228pt;}
._2b{width:146.396361pt;}
._2c{width:147.875593pt;}
._1e{width:149.341222pt;}
._23{width:151.116301pt;}
._3a{width:158.674133pt;}
._21{width:159.984892pt;}
._36{width:169.052800pt;}
._2f{width:172.056785pt;}
._38{width:178.016533pt;}
._39{width:179.039467pt;}
._24{width:181.302835pt;}
._35{width:190.388800pt;}
._31{width:193.374729pt;}
._1f{width:226.094660pt;}
._25{width:237.238208pt;}
._32{width:249.310101pt;}
._22{width:258.797589pt;}
._30{width:270.869483pt;}
._41{width:337.426133pt;}
._3c{width:392.592301pt;}
._34{width:427.254394pt;}
._18{width:770.898863pt;}
.fs15{font-size:21.252800pt;}
.fs4{font-size:22.666667pt;}
.fs14{font-size:27.629867pt;}
.fs9{font-size:28.334400pt;}
.fsd{font-size:29.203733pt;}
.fs19{font-size:31.999467pt;}
.fs5{font-size:34.005333pt;}
.fs17{font-size:37.333333pt;}
.fs2{font-size:37.544533pt;}
.fs7{font-size:38.256533pt;}
.fsa{font-size:39.849600pt;}
.fs16{font-size:40.194667pt;}
.fs2b{font-size:40.248533pt;}
.fs8{font-size:42.507733pt;}
.fs18{font-size:42.661867pt;}
.fs1d{font-size:42.663467pt;}
.fs24{font-size:42.666667pt;}
.fs1f{font-size:42.671467pt;}
.fs13{font-size:43.782933pt;}
.fs1b{font-size:43.826667pt;}
.fs1a{font-size:43.846400pt;}
.fs1c{font-size:43.901333pt;}
.fsc{font-size:44.929600pt;}
.fs21{font-size:45.066667pt;}
.fs1e{font-size:45.125333pt;}
.fs3{font-size:46.043733pt;}
.fs6{font-size:47.820267pt;}
.fs12{font-size:48.189867pt;}
.fs26{font-size:48.376000pt;}
.fs23{font-size:48.510400pt;}
.fse{font-size:50.158933pt;}
.fs25{font-size:50.666133pt;}
.fs20{font-size:50.892800pt;}
.fs10{font-size:53.332800pt;}
.fs22{font-size:55.144000pt;}
.fs11{font-size:55.221333pt;}
.fs2a{font-size:55.999467pt;}
.fs1{font-size:56.322667pt;}
.fs29{font-size:58.431467pt;}
.fs28{font-size:62.020267pt;}
.fsf{font-size:62.046400pt;}
.fs27{font-size:62.102933pt;}
.fs0{font-size:71.730667pt;}
.fsb{font-size:74.387200pt;}
.y0{bottom:0.000000pt;}
.y1d0{bottom:53.291577pt;}
.y15f{bottom:53.291755pt;}
.y378{bottom:53.291892pt;}
.y11d{bottom:53.292043pt;}
.y1cd{bottom:53.292179pt;}
.yde{bottom:53.292196pt;}
.ya8{bottom:53.292601pt;}
.y1fa{bottom:53.293022pt;}
.y33b{bottom:53.293307pt;}
.y1ef{bottom:53.295566pt;}
.y2f7{bottom:53.295702pt;}
.y271{bottom:53.896707pt;}
.y377{bottom:63.874352pt;}
.y1ce{bottom:64.705467pt;}
.y57{bottom:64.705843pt;}
.ydd{bottom:64.706086pt;}
.y15e{bottom:67.200285pt;}
.y11c{bottom:67.200573pt;}
.y1cc{bottom:67.200709pt;}
.ya7{bottom:67.201131pt;}
.y1f9{bottom:67.201552pt;}
.y33a{bottom:67.201837pt;}
.y1ee{bottom:67.204096pt;}
.y2f6{bottom:67.204233pt;}
.y270{bottom:67.880688pt;}
.y1cf{bottom:68.485067pt;}
.y376{bottom:74.532474pt;}
.y56{bottom:76.119733pt;}
.ydc{bottom:76.119977pt;}
.y15d{bottom:81.184267pt;}
.y11b{bottom:81.184555pt;}
.y1cb{bottom:81.184691pt;}
.ya6{bottom:81.185112pt;}
.y1f8{bottom:81.185534pt;}
.y339{bottom:81.185819pt;}
.y1ed{bottom:81.188078pt;}
.y2f5{bottom:81.188214pt;}
.y26f{bottom:81.789218pt;}
.y375{bottom:85.114933pt;}
.ydb{bottom:87.533867pt;}
.y26c{bottom:93.959067pt;}
.y11a{bottom:95.093085pt;}
.y1ca{bottom:95.093221pt;}
.ya5{bottom:95.093643pt;}
.y1f7{bottom:95.094064pt;}
.y338{bottom:95.094349pt;}
.y1ec{bottom:95.096608pt;}
.y2f4{bottom:95.096744pt;}
.y26e{bottom:95.773200pt;}
.y374{bottom:95.773552pt;}
.y26b{bottom:95.774467pt;}
.y5a{bottom:100.081899pt;}
.y26d{bottom:100.459686pt;}
.y373{bottom:106.431674pt;}
.y119{bottom:109.077067pt;}
.y1c9{bottom:109.077203pt;}
.ya4{bottom:109.077624pt;}
.y1f6{bottom:109.078046pt;}
.y337{bottom:109.078331pt;}
.y1eb{bottom:109.080590pt;}
.y2f3{bottom:109.080726pt;}
.y26a{bottom:109.682998pt;}
.y55{bottom:112.554824pt;}
.y59{bottom:112.629867pt;}
.y58{bottom:114.217333pt;}
.y372{bottom:117.014133pt;}
.y1c8{bottom:122.985733pt;}
.ya3{bottom:122.986155pt;}
.y1f5{bottom:122.986576pt;}
.y336{bottom:122.986861pt;}
.y118{bottom:122.987283pt;}
.y1ea{bottom:122.989120pt;}
.y2f2{bottom:122.989256pt;}
.y268{bottom:123.666979pt;}
.y269{bottom:123.893333pt;}
.y54{bottom:126.463355pt;}
.y371{bottom:127.672752pt;}
.y1c7{bottom:127.748000pt;}
.yd4{bottom:133.488563pt;}
.ya2{bottom:136.970136pt;}
.y1f4{bottom:136.970558pt;}
.y335{bottom:136.970843pt;}
.y1e9{bottom:136.973102pt;}
.y286{bottom:136.973238pt;}
.y267{bottom:137.575509pt;}
.y370{bottom:138.255212pt;}
.y53{bottom:140.447336pt;}
.y15c{bottom:142.187283pt;}
.yd3{bottom:143.834800pt;}
.y36f{bottom:148.913333pt;}
.ya1{bottom:150.878667pt;}
.y1f3{bottom:150.879088pt;}
.y334{bottom:150.879373pt;}
.y1c5{bottom:150.879509pt;}
.y117{bottom:150.879795pt;}
.y1e8{bottom:150.881632pt;}
.y285{bottom:150.881768pt;}
.y31b{bottom:151.559310pt;}
.y266{bottom:151.559491pt;}
.y52{bottom:154.355867pt;}
.y1c6{bottom:155.640933pt;}
.y15b{bottom:156.171264pt;}
.y36e{bottom:159.571952pt;}
.y31a{bottom:162.973200pt;}
.yd6{bottom:164.511763pt;}
.ya0{bottom:164.862327pt;}
.y1f2{bottom:164.863070pt;}
.y333{bottom:164.863355pt;}
.y1c4{bottom:164.863491pt;}
.y116{bottom:164.863776pt;}
.y1e7{bottom:164.865614pt;}
.y284{bottom:164.865750pt;}
.y265{bottom:165.468021pt;}
.y50{bottom:166.601600pt;}
.y51{bottom:168.340133pt;}
.y3e{bottom:168.340270pt;}
.y4f{bottom:168.340976pt;}
.y159{bottom:170.079795pt;}
.y36d{bottom:170.154412pt;}
.y15a{bottom:170.306148pt;}
.y1f1{bottom:178.771600pt;}
.y332{bottom:178.771885pt;}
.y1c3{bottom:178.772021pt;}
.y115{bottom:178.772307pt;}
.y1e6{bottom:178.774144pt;}
.y283{bottom:178.774280pt;}
.y264{bottom:179.452003pt;}
.y3c{bottom:180.510133pt;}
.y36c{bottom:180.812533pt;}
.y3d{bottom:182.248800pt;}
.y3a{bottom:182.249221pt;}
.y4e{bottom:182.249507pt;}
.y3b{bottom:182.475575pt;}
.y158{bottom:184.063776pt;}
.y36b{bottom:191.395623pt;}
.y261{bottom:191.622000pt;}
.y1f0{bottom:192.755867pt;}
.y1c2{bottom:192.756003pt;}
.y114{bottom:192.756288pt;}
.y1e5{bottom:192.758125pt;}
.y282{bottom:192.758262pt;}
.y263{bottom:193.360533pt;}
.y260{bottom:193.361376pt;}
.y39{bottom:196.233203pt;}
.y4c{bottom:196.233488pt;}
.y4d{bottom:196.459842pt;}
.y9f{bottom:197.971600pt;}
.y157{bottom:197.972307pt;}
.y9d{bottom:197.973437pt;}
.y262{bottom:198.122620pt;}
.y36a{bottom:202.053745pt;}
.y9e{bottom:202.733867pt;}
.y1c1{bottom:206.664533pt;}
.y113{bottom:206.664818pt;}
.y1e4{bottom:206.666656pt;}
.y281{bottom:206.666792pt;}
.y1bf{bottom:206.667080pt;}
.y25f{bottom:207.345358pt;}
.y38{bottom:210.141733pt;}
.y4b{bottom:210.142018pt;}
.y1c0{bottom:211.426800pt;}
.y156{bottom:211.956288pt;}
.y9c{bottom:211.957419pt;}
.y369{bottom:212.711867pt;}
.y112{bottom:220.648800pt;}
.y1e3{bottom:220.650637pt;}
.y280{bottom:220.650774pt;}
.y1be{bottom:220.651062pt;}
.y25e{bottom:221.253888pt;}
.y367{bottom:221.858267pt;}
.y49{bottom:222.387333pt;}
.y368{bottom:223.294533pt;}
.y366{bottom:223.294678pt;}
.y4a{bottom:224.126000pt;}
.y48{bottom:224.126573pt;}
.y37{bottom:224.127416pt;}
.y155{bottom:225.864818pt;}
.y9b{bottom:225.865949pt;}
.yd5{bottom:231.725077pt;}
.y365{bottom:233.952800pt;}
.y111{bottom:234.558746pt;}
.y1e1{bottom:234.559168pt;}
.y27f{bottom:234.559304pt;}
.y1bd{bottom:234.559592pt;}
.y1e2{bottom:234.785521pt;}
.y25d{bottom:235.237870pt;}
.y153{bottom:238.034667pt;}
.y47{bottom:238.035104pt;}
.y36{bottom:238.035946pt;}
.yd8{bottom:238.830301pt;}
.y154{bottom:239.848800pt;}
.y152{bottom:239.848936pt;}
.y9a{bottom:239.849931pt;}
.y364{bottom:244.535612pt;}
.y110{bottom:248.542728pt;}
.y1e0{bottom:248.543149pt;}
.y27e{bottom:248.543286pt;}
.y1bc{bottom:248.543574pt;}
.y150{bottom:249.070800pt;}
.y25c{bottom:249.146400pt;}
.y14f{bottom:250.129067pt;}
.y151{bottom:252.018800pt;}
.y46{bottom:252.019085pt;}
.y35{bottom:252.019928pt;}
.y212{bottom:253.530667pt;}
.y14b{bottom:253.757467pt;}
.y14a{bottom:253.757755pt;}
.y99{bottom:253.758461pt;}
.y211{bottom:254.966933pt;}
.y363{bottom:255.193733pt;}
.y14d{bottom:258.141600pt;}
.y210{bottom:258.746400pt;}
.y14e{bottom:258.897600pt;}
.y14c{bottom:259.955867pt;}
.y10f{bottom:262.451258pt;}
.y1df{bottom:262.451680pt;}
.y27d{bottom:262.451816pt;}
.y1bb{bottom:262.452104pt;}
.y25b{bottom:263.131224pt;}
.y362{bottom:265.776545pt;}
.y45{bottom:266.003067pt;}
.y34{bottom:266.003909pt;}
.y149{bottom:267.741736pt;}
.y98{bottom:267.742443pt;}
.y20f{bottom:274.318678pt;}
.y361{bottom:276.434667pt;}
.y10e{bottom:276.435240pt;}
.y1de{bottom:276.435661pt;}
.y27c{bottom:276.435798pt;}
.y1ba{bottom:276.436086pt;}
.y25a{bottom:277.039755pt;}
.y33{bottom:279.912440pt;}
.y148{bottom:281.650267pt;}
.y97{bottom:281.650973pt;}
.yd9{bottom:283.746133pt;}
.y360{bottom:287.093152pt;}
.y10d{bottom:290.343770pt;}
.y1dd{bottom:290.344192pt;}
.y27b{bottom:290.344328pt;}
.y1b9{bottom:290.344616pt;}
.y20e{bottom:290.722001pt;}
.y259{bottom:291.023736pt;}
.y32{bottom:293.896421pt;}
.y96{bottom:295.634955pt;}
.y35f{bottom:297.675612pt;}
.y20d{bottom:302.135891pt;}
.y257{bottom:303.193600pt;}
.y10c{bottom:304.327752pt;}
.y1dc{bottom:304.328173pt;}
.y27a{bottom:304.328309pt;}
.y1b8{bottom:304.328598pt;}
.y258{bottom:304.932267pt;}
.y256{bottom:304.933546pt;}
.y31{bottom:307.804952pt;}
.y35e{bottom:308.333733pt;}
.y95{bottom:309.543485pt;}
.y20c{bottom:313.549781pt;}
.y10b{bottom:318.311733pt;}
.y1db{bottom:318.312155pt;}
.y279{bottom:318.312291pt;}
.y1b7{bottom:318.312579pt;}
.y35d{bottom:318.916533pt;}
.y255{bottom:318.917528pt;}
.y2f{bottom:319.974667pt;}
.y93{bottom:321.713333pt;}
.y30{bottom:321.788933pt;}
.y44{bottom:321.789070pt;}
.y2e{bottom:321.789355pt;}
.y94{bottom:323.527467pt;}
.y92{bottom:323.527888pt;}
.y146{bottom:323.530283pt;}
.y20b{bottom:325.039333pt;}
.y209{bottom:325.039577pt;}
.y147{bottom:328.214133pt;}
.y20a{bottom:328.743200pt;}
.y35c{bottom:329.575152pt;}
.y1da{bottom:332.220685pt;}
.y10a{bottom:332.220821pt;}
.y1b6{bottom:332.221109pt;}
.y254{bottom:332.901509pt;}
.y42{bottom:333.959067pt;}
.y207{bottom:335.017333pt;}
.y43{bottom:335.697600pt;}
.y2d{bottom:335.697885pt;}
.y206{bottom:336.452994pt;}
.y208{bottom:336.453467pt;}
.y91{bottom:337.436418pt;}
.y145{bottom:337.438814pt;}
.y35a{bottom:340.233274pt;}
.y35b{bottom:340.384597pt;}
.y1d9{bottom:346.204667pt;}
.y278{bottom:346.204803pt;}
.y1b5{bottom:346.205091pt;}
.y204{bottom:346.431467pt;}
.y253{bottom:346.810040pt;}
.y203{bottom:347.867261pt;}
.y205{bottom:349.454933pt;}
.y8f{bottom:349.606267pt;}
.y2c{bottom:349.681867pt;}
.y359{bottom:350.815733pt;}
.y90{bottom:351.420400pt;}
.y8e{bottom:351.420536pt;}
.y144{bottom:351.422795pt;}
.y109{bottom:358.374667pt;}
.y201{bottom:359.432933pt;}
.y108{bottom:360.113333pt;}
.y1b4{bottom:360.113621pt;}
.y1d8{bottom:360.114886pt;}
.y107{bottom:360.115728pt;}
.y252{bottom:360.794021pt;}
.y200{bottom:360.868841pt;}
.y202{bottom:360.869200pt;}
.y358{bottom:361.474074pt;}
.y41{bottom:361.851867pt;}
.y40{bottom:363.590533pt;}
.y8d{bottom:365.329067pt;}
.y143{bottom:365.331325pt;}
.y357{bottom:372.056533pt;}
.y1b3{bottom:374.097603pt;}
.y331{bottom:374.098024pt;}
.y277{bottom:374.098309pt;}
.y2f1{bottom:374.098446pt;}
.y1d7{bottom:374.098867pt;}
.y106{bottom:374.099710pt;}
.y251{bottom:374.702552pt;}
.y3f{bottom:375.760533pt;}
.y2b{bottom:377.574667pt;}
.y1ff{bottom:379.313333pt;}
.y8c{bottom:379.313755pt;}
.y142{bottom:379.315307pt;}
.y356{bottom:382.715285pt;}
.y1b2{bottom:388.006133pt;}
.y330{bottom:388.006555pt;}
.y276{bottom:388.006840pt;}
.y2f0{bottom:388.006976pt;}
.y1b0{bottom:388.007261pt;}
.y1d6{bottom:388.007398pt;}
.y105{bottom:388.008240pt;}
.y250{bottom:388.686533pt;}
.y1b1{bottom:392.768533pt;}
.y141{bottom:393.223837pt;}
.y355{bottom:393.297745pt;}
.y1fe{bottom:398.438596pt;}
.y32f{bottom:401.990536pt;}
.y275{bottom:401.990821pt;}
.y2ef{bottom:401.990958pt;}
.y1af{bottom:401.991243pt;}
.y1d5{bottom:401.991379pt;}
.y104{bottom:401.992222pt;}
.yd7{bottom:402.244667pt;}
.y24f{bottom:402.596043pt;}
.y354{bottom:403.955867pt;}
.y8b{bottom:407.206267pt;}
.y140{bottom:407.207819pt;}
.y1fd{bottom:409.852486pt;}
.y353{bottom:414.614133pt;}
.y32e{bottom:415.899067pt;}
.y274{bottom:415.899352pt;}
.y2ee{bottom:415.899488pt;}
.y1ae{bottom:415.899773pt;}
.y1d4{bottom:415.899909pt;}
.y103{bottom:415.900752pt;}
.y24e{bottom:416.580024pt;}
.y13f{bottom:421.116349pt;}
.y1fc{bottom:421.266377pt;}
.y352{bottom:425.196945pt;}
.y273{bottom:429.883333pt;}
.y2ed{bottom:429.883470pt;}
.y1ad{bottom:429.883755pt;}
.y1d3{bottom:429.883891pt;}
.y102{bottom:429.884734pt;}
.y24d{bottom:430.488555pt;}
.y1fb{bottom:432.680267pt;}
.y8a{bottom:435.099067pt;}
.y13e{bottom:435.100331pt;}
.y351{bottom:435.855067pt;}
.yda{bottom:437.932667pt;}
.y2a{bottom:443.640579pt;}
.y272{bottom:443.792000pt;}
.y1ac{bottom:443.792285pt;}
.y1d2{bottom:443.792421pt;}
.y101{bottom:443.793264pt;}
.y24c{bottom:444.472536pt;}
.y350{bottom:446.437878pt;}
.y13d{bottom:449.008861pt;}
.y34f{bottom:455.659733pt;}
.y29{bottom:456.415392pt;}
.y34e{bottom:457.096000pt;}
.y1ab{bottom:457.776267pt;}
.y1d1{bottom:457.776403pt;}
.y2ec{bottom:457.777109pt;}
.y100{bottom:457.777246pt;}
.y24b{bottom:458.381067pt;}
.y13c{bottom:462.992843pt;}
.yd2{bottom:463.370000pt;}
.yd0{bottom:463.370707pt;}
.yd1{bottom:468.132133pt;}
.y28{bottom:469.114649pt;}
.y246{bottom:469.342644pt;}
.y89{bottom:470.552331pt;}
.y18d{bottom:471.684933pt;}
.y18b{bottom:471.685218pt;}
.y2eb{bottom:471.685640pt;}
.yff{bottom:471.685776pt;}
.y1aa{bottom:471.687328pt;}
.y24a{bottom:472.365758pt;}
.y18c{bottom:476.447200pt;}
.y13b{bottom:476.901373pt;}
.ycf{bottom:477.354688pt;}
.y32d{bottom:478.338486pt;}
.y245{bottom:480.756534pt;}
.y34d{bottom:481.133733pt;}
.y27{bottom:481.889461pt;}
.y1a{bottom:482.496064pt;}
.y88{bottom:484.460861pt;}
.y18a{bottom:485.669200pt;}
.y2ea{bottom:485.669621pt;}
.yfe{bottom:485.669758pt;}
.y188{bottom:485.669909pt;}
.y1a9{bottom:485.671310pt;}
.y249{bottom:486.274288pt;}
.y189{bottom:490.355733pt;}
.y2e7{bottom:490.582910pt;}
.y13a{bottom:490.885355pt;}
.yce{bottom:491.263218pt;}
.y244{bottom:492.170425pt;}
.y32c{bottom:492.322467pt;}
.y19{bottom:493.909954pt;}
.y26{bottom:494.664274pt;}
.y87{bottom:498.444843pt;}
.y2e9{bottom:499.578152pt;}
.yfd{bottom:499.578288pt;}
.y187{bottom:499.578440pt;}
.y1a8{bottom:499.579840pt;}
.y248{bottom:500.258270pt;}
.y2e4{bottom:500.560533pt;}
.y2e6{bottom:501.996800pt;}
.y2e3{bottom:501.997043pt;}
.y243{bottom:503.659977pt;}
.y139{bottom:504.793885pt;}
.ycd{bottom:505.247200pt;}
.ycb{bottom:505.247488pt;}
.y18{bottom:505.399506pt;}
.y2e5{bottom:505.776133pt;}
.y32b{bottom:506.230998pt;}
.y25{bottom:507.363531pt;}
.ycc{bottom:509.933733pt;}
.y2e1{bottom:511.974667pt;}
.y86{bottom:512.353373pt;}
.y2e2{bottom:513.410933pt;}
.y2e0{bottom:513.411177pt;}
.y2e8{bottom:513.562133pt;}
.yfc{bottom:513.562270pt;}
.y186{bottom:513.562421pt;}
.y1a7{bottom:513.563822pt;}
.y247{bottom:514.166800pt;}
.y34c{bottom:514.394170pt;}
.y242{bottom:515.073867pt;}
.y17{bottom:516.813396pt;}
.y22f{bottom:517.190777pt;}
.y138{bottom:518.777867pt;}
.yca{bottom:519.156018pt;}
.y24{bottom:520.138343pt;}
.y32a{bottom:520.214979pt;}
.y2de{bottom:523.464400pt;}
.y2dd{bottom:524.825067pt;}
.y85{bottom:526.337355pt;}
.yfb{bottom:527.470800pt;}
.y185{bottom:527.470952pt;}
.yfa{bottom:527.471507pt;}
.y1a6{bottom:527.472352pt;}
.y16{bottom:528.227286pt;}
.y34b{bottom:528.378152pt;}
.y2df{bottom:528.604633pt;}
.y22e{bottom:528.604667pt;}
.y319{bottom:531.930910pt;}
.y137{bottom:532.686827pt;}
.y23{bottom:532.913156pt;}
.yc9{bottom:533.140000pt;}
.yc7{bottom:533.140136pt;}
.y329{bottom:534.123509pt;}
.yc8{bottom:537.826667pt;}
.y15{bottom:539.641177pt;}
.y84{bottom:540.245885pt;}
.y184{bottom:541.454933pt;}
.y182{bottom:541.455203pt;}
.yf9{bottom:541.455488pt;}
.y1a5{bottom:541.456334pt;}
.y34a{bottom:542.362133pt;}
.y318{bottom:543.344800pt;}
.y22{bottom:545.612413pt;}
.y183{bottom:546.141600pt;}
.yc6{bottom:547.048667pt;}
.yc4{bottom:547.050504pt;}
.y328{bottom:548.107491pt;}
.y2da{bottom:548.421200pt;}
.y14{bottom:551.055067pt;}
.y2b7{bottom:551.130533pt;}
.y312{bottom:551.206133pt;}
.yc5{bottom:551.810933pt;}
.y21c{bottom:552.270267pt;}
.y2b6{bottom:552.566800pt;}
.y83{bottom:554.229867pt;}
.y181{bottom:555.363733pt;}
.yf8{bottom:555.364018pt;}
.y17f{bottom:555.364021pt;}
.y1a4{bottom:555.364864pt;}
.y2b5{bottom:556.346267pt;}
.y21{bottom:558.387226pt;}
.y180{bottom:560.125867pt;}
.yc3{bottom:561.034486pt;}
.y327{bottom:562.016021pt;}
.y136{bottom:563.528312pt;}
.y2cf{bottom:565.431733pt;}
.y82{bottom:568.139664pt;}
.yf7{bottom:569.348000pt;}
.y17e{bottom:569.348003pt;}
.y1a3{bottom:569.348846pt;}
.y214{bottom:569.963467pt;}
.y349{bottom:570.255067pt;}
.y20{bottom:571.162038pt;}
.y2b4{bottom:571.918607pt;}
.y311{bottom:574.685867pt;}
.yc2{bottom:574.943016pt;}
.y326{bottom:576.000003pt;}
.y135{bottom:577.436843pt;}
.y13{bottom:577.815239pt;}
.y215{bottom:580.844800pt;}
.y81{bottom:582.123646pt;}
.y2d0{bottom:582.315733pt;}
.yf6{bottom:583.256533pt;}
.y17c{bottom:583.256818pt;}
.y1a2{bottom:583.257376pt;}
.y1f{bottom:583.936851pt;}
.y17d{bottom:588.018800pt;}
.y2b3{bottom:588.321930pt;}
.yc1{bottom:588.926998pt;}
.y12{bottom:589.229130pt;}
.y325{bottom:589.908533pt;}
.y134{bottom:591.420824pt;}
.y309{bottom:592.220400pt;}
.y80{bottom:596.032176pt;}
.y1e{bottom:596.636108pt;}
.y17b{bottom:597.240800pt;}
.y1a1{bottom:597.241358pt;}
.y179{bottom:597.242910pt;}
.yf5{bottom:597.243480pt;}
.y2b2{bottom:599.735820pt;}
.y11{bottom:600.643020pt;}
.y17a{bottom:601.927467pt;}
.yc0{bottom:602.835528pt;}
.y21f{bottom:603.594000pt;}
.y2d1{bottom:603.754400pt;}
.y324{bottom:603.894352pt;}
.y133{bottom:605.329355pt;}
.y348{bottom:605.783376pt;}
.y30a{bottom:606.620800pt;}
.y1d{bottom:609.410920pt;}
.y7f{bottom:610.016158pt;}
.y2b1{bottom:611.149710pt;}
.y1a0{bottom:611.149888pt;}
.y178{bottom:611.151440pt;}
.yf4{bottom:611.152011pt;}
.y2d9{bottom:611.524800pt;}
.y10{bottom:612.056910pt;}
.y2b9{bottom:613.275467pt;}
.y21a{bottom:613.704533pt;}
.ybf{bottom:616.819509pt;}
.y323{bottom:617.802883pt;}
.y132{bottom:619.313336pt;}
.y347{bottom:619.767358pt;}
.y1c{bottom:622.185733pt;}
.y2b0{bottom:622.563600pt;}
.y2ae{bottom:622.563977pt;}
.yf{bottom:623.470800pt;}
.y7e{bottom:623.924688pt;}
.y216{bottom:624.266267pt;}
.y19f{bottom:625.133870pt;}
.y177{bottom:625.135422pt;}
.yf3{bottom:625.135992pt;}
.y2d2{bottom:625.195867pt;}
.y2af{bottom:626.343200pt;}
.ybe{bottom:630.728040pt;}
.y322{bottom:631.786864pt;}
.y2ac{bottom:632.617200pt;}
.y131{bottom:633.221867pt;}
.y346{bottom:633.675888pt;}
.y2ab{bottom:633.977198pt;}
.y2ad{bottom:633.977867pt;}
.y2fa{bottom:636.311120pt;}
.y7d{bottom:637.908670pt;}
.y19e{bottom:639.042400pt;}
.y176{bottom:639.043952pt;}
.yf2{bottom:639.044523pt;}
.y30b{bottom:639.887600pt;}
.ybd{bottom:644.712021pt;}
.y2aa{bottom:645.467261pt;}
.y321{bottom:645.695395pt;}
.y2d3{bottom:646.634533pt;}
.y130{bottom:647.209175pt;}
.y345{bottom:647.659870pt;}
.y317{bottom:647.704563pt;}
.y1b{bottom:648.415600pt;}
.ye{bottom:648.793600pt;}
.y220{bottom:650.043067pt;}
.y2f9{bottom:650.782800pt;}
.y7c{bottom:651.817200pt;}
.y175{bottom:653.027934pt;}
.yf1{bottom:653.028504pt;}
.y19d{bottom:653.029483pt;}
.y310{bottom:655.613467pt;}
.y2a8{bottom:657.032933pt;}
.y2a7{bottom:658.468707pt;}
.y2a9{bottom:658.469200pt;}
.ybc{bottom:658.620552pt;}
.y320{bottom:659.679376pt;}
.y344{bottom:661.568400pt;}
.y174{bottom:666.936464pt;}
.yf0{bottom:666.937034pt;}
.y19c{bottom:666.938014pt;}
.y217{bottom:667.690533pt;}
.y2d4{bottom:668.076000pt;}
.y7b{bottom:671.395067pt;}
.ybb{bottom:672.604533pt;}
.y7a{bottom:673.058133pt;}
.y30c{bottom:673.155333pt;}
.y31f{bottom:673.587907pt;}
.y3a7{bottom:674.494400pt;}
.y2a6{bottom:676.913200pt;}
.y12f{bottom:677.974147pt;}
.y173{bottom:680.920446pt;}
.yef{bottom:680.921016pt;}
.y19b{bottom:680.921995pt;}
.y3a6{bottom:685.152874pt;}
.yba{bottom:686.512707pt;}
.y31e{bottom:687.571888pt;}
.y2dc{bottom:688.969714pt;}
.y343{bottom:689.461200pt;}
.y2d5{bottom:689.617333pt;}
.y12e{bottom:691.958128pt;}
.yd{bottom:693.165200pt;}
.y172{bottom:694.828976pt;}
.yee{bottom:694.829546pt;}
.y19a{bottom:694.830525pt;}
.y3a5{bottom:695.735333pt;}
.y2a5{bottom:695.962801pt;}
.yc{bottom:696.944800pt;}
.y79{bottom:698.534256pt;}
.y240{bottom:698.610667pt;}
.y31d{bottom:701.555870pt;}
.y223{bottom:701.571174pt;}
.y2db{bottom:703.481600pt;}
.yb{bottom:704.579467pt;}
.y2ba{bottom:705.285600pt;}
.y12d{bottom:705.866659pt;}
.y3bc{bottom:706.393952pt;}
.y3a4{bottom:706.394097pt;}
.y30d{bottom:706.424933pt;}
.y21b{bottom:707.050800pt;}
.y2a4{bottom:707.452353pt;}
.ya{bottom:708.358933pt;}
.y171{bottom:708.812958pt;}
.yed{bottom:708.813528pt;}
.y199{bottom:708.814507pt;}
.y316{bottom:711.045733pt;}
.y2d6{bottom:711.058800pt;}
.y218{bottom:711.212800pt;}
.y78{bottom:712.518237pt;}
.yb9{bottom:714.481733pt;}
.y31c{bottom:715.464400pt;}
.y9{bottom:715.993600pt;}
.y3bb{bottom:716.976412pt;}
.y3a3{bottom:716.976557pt;}
.y23f{bottom:717.695585pt;}
.y2a3{bottom:718.866243pt;}
.y8{bottom:719.773067pt;}
.y12c{bottom:719.850640pt;}
.y170{bottom:722.721488pt;}
.yec{bottom:722.722058pt;}
.y198{bottom:722.723037pt;}
.y342{bottom:722.723189pt;}
.y77{bottom:726.426768pt;}
.y3ba{bottom:727.634533pt;}
.y3a2{bottom:727.634678pt;}
.y2a2{bottom:730.280133pt;}
.y2b8{bottom:731.096133pt;}
.y2d7{bottom:732.497467pt;}
.y12b{bottom:733.834622pt;}
.y22c{bottom:733.880000pt;}
.y224{bottom:734.535402pt;}
.y236{bottom:735.174533pt;}
.y5{bottom:736.176133pt;}
.y16f{bottom:736.705470pt;}
.yeb{bottom:736.706040pt;}
.y197{bottom:736.707019pt;}
.y341{bottom:736.707171pt;}
.y3a1{bottom:738.292800pt;}
.y3b9{bottom:738.293007pt;}
.y22d{bottom:738.369288pt;}
.y30e{bottom:739.688933pt;}
.y76{bottom:740.410749pt;}
.y7{bottom:742.223467pt;}
.y6{bottom:742.374667pt;}
.y2fd{bottom:744.614400pt;}
.y315{bottom:745.701475pt;}
.yb8{bottom:746.532976pt;}
.y12a{bottom:747.743152pt;}
.y2c0{bottom:748.440811pt;}
.y3b8{bottom:748.875467pt;}
.y3a0{bottom:748.875819pt;}
.y230{bottom:748.914400pt;}
.y16e{bottom:750.614000pt;}
.yea{bottom:750.614570pt;}
.y196{bottom:750.615549pt;}
.y340{bottom:750.615701pt;}
.y23d{bottom:752.655068pt;}
.y3{bottom:753.410933pt;}
.y38c{bottom:753.562000pt;}
.y2d8{bottom:753.937067pt;}
.y75{bottom:754.394731pt;}
.y219{bottom:754.634267pt;}
.y39f{bottom:759.533940pt;}
.y3b7{bottom:759.534085pt;}
.y4{bottom:759.684933pt;}
.yb7{bottom:760.441507pt;}
.y129{bottom:761.727134pt;}
.ye9{bottom:764.598552pt;}
.y16d{bottom:764.599261pt;}
.y195{bottom:764.599531pt;}
.y33f{bottom:764.599683pt;}
.y2fc{bottom:764.931600pt;}
.y23c{bottom:766.225384pt;}
.y241{bottom:766.470400pt;}
.y226{bottom:767.679867pt;}
.y74{bottom:768.303261pt;}
.y2a1{bottom:769.284800pt;}
.y39e{bottom:770.116400pt;}
.y3b6{bottom:770.116545pt;}
.y2a0{bottom:770.645467pt;}
.y30f{bottom:772.958533pt;}
.y29f{bottom:774.425067pt;}
.yb6{bottom:774.425488pt;}
.y128{bottom:775.635664pt;}
.ye7{bottom:776.768267pt;}
.y38b{bottom:777.078667pt;}
.y2c5{bottom:777.412000pt;}
.ye8{bottom:778.582533pt;}
.ye6{bottom:778.582955pt;}
.y16c{bottom:778.583243pt;}
.y194{bottom:778.583512pt;}
.y33e{bottom:778.583664pt;}
.y23b{bottom:779.818263pt;}
.y3b5{bottom:780.774667pt;}
.y39d{bottom:780.775019pt;}
.y73{bottom:782.287243pt;}
.y2{bottom:783.496548pt;}
.y302{bottom:785.858133pt;}
.y231{bottom:788.178267pt;}
.yb5{bottom:788.334018pt;}
.y127{bottom:789.619646pt;}
.y29e{bottom:789.997345pt;}
.y381{bottom:791.013200pt;}
.y39c{bottom:791.433140pt;}
.ye5{bottom:792.491485pt;}
.y16b{bottom:792.491773pt;}
.y193{bottom:792.492043pt;}
.y33d{bottom:792.492195pt;}
.y23a{bottom:793.388579pt;}
.y72{bottom:796.195773pt;}
.y2c6{bottom:798.849733pt;}
.y39b{bottom:800.579333pt;}
.y382{bottom:801.507600pt;}
.y39a{bottom:802.015600pt;}
.yb4{bottom:802.318000pt;}
.yb3{bottom:802.318424pt;}
.y126{bottom:803.528176pt;}
.y301{bottom:803.786454pt;}
.y2ce{bottom:805.917067pt;}
.y1{bottom:806.475467pt;}
.y16a{bottom:806.475755pt;}
.y192{bottom:806.476024pt;}
.y33c{bottom:806.476176pt;}
.y29d{bottom:806.476330pt;}
.y239{bottom:806.960023pt;}
.y22b{bottom:807.682267pt;}
.y2be{bottom:808.318400pt;}
.y71{bottom:810.179755pt;}
.y3b3{bottom:811.237600pt;}
.y227{bottom:812.274533pt;}
.y3b4{bottom:812.673867pt;}
.y399{bottom:812.674074pt;}
.y232{bottom:815.052659pt;}
.yb2{bottom:816.226955pt;}
.y37a{bottom:817.311213pt;}
.y125{bottom:817.512158pt;}
.y29c{bottom:817.890220pt;}
.y300{bottom:818.256925pt;}
.y308{bottom:818.738000pt;}
.y303{bottom:819.822133pt;}
.y2c7{bottom:820.291200pt;}
.y169{bottom:820.384285pt;}
.y191{bottom:820.384555pt;}
.ye4{bottom:820.384707pt;}
.y238{bottom:820.531467pt;}
.y313{bottom:822.682400pt;}
.y398{bottom:823.256533pt;}
.y70{bottom:824.088285pt;}
.y383{bottom:824.088667pt;}
.y37e{bottom:827.025067pt;}
.y222{bottom:828.408835pt;}
.y29b{bottom:829.304110pt;}
.yb1{bottom:830.210936pt;}
.y124{bottom:831.420688pt;}
.y2ff{bottom:832.727396pt;}
.y3b2{bottom:833.915007pt;}
.y397{bottom:833.915152pt;}
.y168{bottom:834.368267pt;}
.y190{bottom:834.368536pt;}
.ye3{bottom:834.368688pt;}
.y37c{bottom:834.587896pt;}
.y6e{bottom:836.258000pt;}
.y6f{bottom:838.072267pt;}
.y6d{bottom:838.072691pt;}
.y38a{bottom:838.318800pt;}
.y29a{bottom:840.718000pt;}
.y298{bottom:840.718243pt;}
.y2c8{bottom:841.729867pt;}
.y37d{bottom:842.687913pt;}
.yb0{bottom:844.119467pt;}
.y299{bottom:844.497467pt;}
.y396{bottom:844.497612pt;}
.y123{bottom:845.404670pt;}
.y384{bottom:846.669733pt;}
.y2fe{bottom:847.197867pt;}
.y18f{bottom:848.277067pt;}
.ye2{bottom:848.277218pt;}
.y167{bottom:848.278619pt;}
.y234{bottom:849.335503pt;}
.y296{bottom:850.695867pt;}
.y37f{bottom:850.776533pt;}
.y6c{bottom:851.981221pt;}
.y295{bottom:852.131661pt;}
.y297{bottom:852.132133pt;}
.y221{bottom:852.788514pt;}
.y18e{bottom:853.039200pt;}
.y304{bottom:853.786133pt;}
.y37b{bottom:854.017875pt;}
.y395{bottom:855.155733pt;}
.y3b1{bottom:855.156085pt;}
.y21d{bottom:856.314667pt;}
.y228{bottom:856.870133pt;}
.yaf{bottom:858.104145pt;}
.y122{bottom:859.313200pt;}
.y293{bottom:862.185600pt;}
.ye1{bottom:862.261200pt;}
.y166{bottom:862.262601pt;}
.y2c9{bottom:863.171333pt;}
.y292{bottom:863.546000pt;}
.y294{bottom:865.133600pt;}
.y394{bottom:865.814207pt;}
.y6b{bottom:865.965203pt;}
.y385{bottom:869.250800pt;}
.y121{bottom:873.298113pt;}
.y2c4{bottom:874.424742pt;}
.y290{bottom:875.187200pt;}
.ye0{bottom:876.170995pt;}
.y165{bottom:876.171131pt;}
.y393{bottom:876.396667pt;}
.y28f{bottom:876.623127pt;}
.y5e{bottom:877.379333pt;}
.y291{bottom:878.210800pt;}
.y6a{bottom:879.873733pt;}
.y2ca{bottom:884.712667pt;}
.y233{bottom:886.812092pt;}
.y2bd{bottom:887.027783pt;}
.y3b0{bottom:887.055007pt;}
.y392{bottom:887.055285pt;}
.y305{bottom:887.647467pt;}
.y28d{bottom:888.188800pt;}
.y380{bottom:888.559844pt;}
.y2c3{bottom:888.936628pt;}
.y28c{bottom:889.624574pt;}
.y28e{bottom:889.625067pt;}
.yae{bottom:890.154976pt;}
.y164{bottom:890.155112pt;}
.y386{bottom:891.919600pt;}
.y3af{bottom:897.637467pt;}
.y391{bottom:897.637745pt;}
.y68{bottom:900.585600pt;}
.y229{bottom:901.568400pt;}
.y67{bottom:902.248097pt;}
.y69{bottom:902.248667pt;}
.y2c2{bottom:903.448514pt;}
.y120{bottom:904.063085pt;}
.yad{bottom:904.063507pt;}
.y163{bottom:904.063643pt;}
.y2cb{bottom:906.154133pt;}
.y28b{bottom:908.069067pt;}
.y390{bottom:908.295867pt;}
.y3ae{bottom:908.296219pt;}
.y5d{bottom:913.889600pt;}
.y387{bottom:914.501600pt;}
.y11e{bottom:916.232933pt;}
.y2c1{bottom:917.960400pt;}
.y11f{bottom:918.047067pt;}
.yac{bottom:918.047488pt;}
.y162{bottom:918.047624pt;}
.y3ad{bottom:918.954340pt;}
.y38f{bottom:918.954485pt;}
.y65{bottom:919.558800pt;}
.y64{bottom:921.221297pt;}
.y66{bottom:921.221867pt;}
.y306{bottom:921.610533pt;}
.y235{bottom:923.131217pt;}
.y28a{bottom:927.116967pt;}
.y379{bottom:927.431200pt;}
.y2cc{bottom:927.592800pt;}
.y3ac{bottom:929.536800pt;}
.y38e{bottom:929.536945pt;}
.yab{bottom:931.956018pt;}
.y161{bottom:931.956155pt;}
.y21e{bottom:935.914850pt;}
.y388{bottom:937.083600pt;}
.y2bc{bottom:937.160615pt;}
.y62{bottom:938.456533pt;}
.y289{bottom:938.606519pt;}
.y63{bottom:940.195067pt;}
.y3ab{bottom:940.195274pt;}
.y61{bottom:940.195277pt;}
.y314{bottom:942.605681pt;}
.yaa{bottom:945.940000pt;}
.y160{bottom:945.940136pt;}
.y22a{bottom:946.161200pt;}
.y2f8{bottom:946.205867pt;}
.y225{bottom:946.658533pt;}
.y2cd{bottom:949.033333pt;}
.y2bf{bottom:949.568133pt;}
.y288{bottom:950.021260pt;}
.y3a9{bottom:950.777733pt;}
.y38d{bottom:950.777878pt;}
.y3aa{bottom:951.004719pt;}
.y5c{bottom:951.760400pt;}
.y2fb{bottom:954.353600pt;}
.y237{bottom:954.902533pt;}
.y307{bottom:955.573600pt;}
.y2bb{bottom:956.233757pt;}
.y23e{bottom:956.234533pt;}
.y213{bottom:956.234667pt;}
.y60{bottom:957.429733pt;}
.y5f{bottom:959.092667pt;}
.y389{bottom:959.665600pt;}
.ya9{bottom:959.848667pt;}
.y3a8{bottom:959.999867pt;}
.y287{bottom:961.436000pt;}
.ydf{bottom:987.741600pt;}
.y3bd{bottom:987.743041pt;}
.y5b{bottom:988.043867pt;}
.h1c{height:17.342285pt;}
.he{height:18.609763pt;}
.h5{height:21.502423pt;}
.h6{height:22.258667pt;}
.h1b{height:22.545971pt;}
.h1d{height:23.120870pt;}
.h25{height:23.295612pt;}
.h1f{height:26.830208pt;}
.h23{height:27.178667pt;}
.h8{height:27.735755pt;}
.h7{height:27.748352pt;}
.hd{height:27.824381pt;}
.h12{height:28.678066pt;}
.h22{height:29.261717pt;}
.h3c{height:29.300932pt;}
.h24{height:31.057839pt;}
.h29{height:31.059004pt;}
.h34{height:31.061333pt;}
.h2b{height:31.064828pt;}
.h1a{height:31.304797pt;}
.hf{height:31.338826pt;}
.h27{height:31.905813pt;}
.h26{height:31.920179pt;}
.h28{height:31.960171pt;}
.h2a{height:32.851243pt;}
.h9{height:33.393237pt;}
.h2f{height:33.394061pt;}
.h30{height:33.394304pt;}
.h2d{height:33.394400pt;}
.h21{height:33.395127pt;}
.hb{height:33.538602pt;}
.h1e{height:33.695104pt;}
.h2e{height:33.695885pt;}
.h14{height:34.686310pt;}
.h19{height:35.082223pt;}
.h36{height:35.217728pt;}
.h33{height:35.315571pt;}
.h15{height:35.863637pt;}
.h4{height:36.868732pt;}
.h35{height:36.884945pt;}
.h2c{height:37.049958pt;}
.ha{height:37.567916pt;}
.h17{height:38.826278pt;}
.h20{height:39.742033pt;}
.h31{height:39.743390pt;}
.h32{height:40.144832pt;}
.h18{height:40.201131pt;}
.h3b{height:40.767612pt;}
.hc{height:41.742594pt;}
.h39{height:42.538108pt;}
.h11{height:44.120867pt;}
.h13{height:44.123148pt;}
.h38{height:45.150754pt;}
.h16{height:45.169779pt;}
.h37{height:45.210935pt;}
.h3{height:55.308859pt;}
.h3a{height:68.553419pt;}
.h2{height:70.439515pt;}
.h10{height:73.048230pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3e{left:43.615733pt;}
.x3f{left:50.343200pt;}
.xbd{left:51.326000pt;}
.x40{left:55.181067pt;}
.x1{left:56.844000pt;}
.x57{left:59.187333pt;}
.xb9{left:60.245600pt;}
.xe{left:61.530667pt;}
.x3a{left:62.664533pt;}
.x54{left:64.403067pt;}
.x41{left:67.351200pt;}
.xbc{left:68.560667pt;}
.xba{left:69.694400pt;}
.xbb{left:71.281867pt;}
.x11{left:72.340133pt;}
.xa9{left:74.072267pt;}
.xdc{left:77.480294pt;}
.x14{left:78.462738pt;}
.xcd{left:82.337733pt;}
.xa3{left:83.784000pt;}
.xce{left:86.120267pt;}
.xa2{left:88.190133pt;}
.xac{left:91.735067pt;}
.xb7{left:95.773200pt;}
.xa1{left:97.214667pt;}
.xab{left:100.333467pt;}
.xaa{left:105.533067pt;}
.xd1{left:106.996400pt;}
.xbe{left:109.681867pt;}
.x42{left:113.990533pt;}
.xd0{left:116.136719pt;}
.xa0{left:120.394267pt;}
.x43{left:121.322800pt;}
.xd2{left:124.907733pt;}
.x4b{left:127.445600pt;}
.x5c{left:131.981067pt;}
.xa8{left:135.492106pt;}
.x5d{left:136.818933pt;}
.xb8{left:137.952667pt;}
.xa5{left:140.477467pt;}
.x55{left:151.332267pt;}
.x5e{left:158.210933pt;}
.x50{left:164.409333pt;}
.x51{left:169.322800pt;}
.xdb{left:171.637600pt;}
.x44{left:177.637733pt;}
.x2{left:183.004667pt;}
.xa{left:186.028267pt;}
.x52{left:187.237733pt;}
.x3{left:188.447200pt;}
.xb6{left:190.184533pt;}
.xa4{left:193.068933pt;}
.x45{left:195.628267pt;}
.x15{left:197.744800pt;}
.xb{left:199.029867pt;}
.x46{left:200.466133pt;}
.x16{left:202.355867pt;}
.x4c{left:206.588933pt;}
.xcc{left:207.846800pt;}
.x47{left:208.781067pt;}
.x9f{left:210.432933pt;}
.x17{left:212.787333pt;}
.xa6{left:213.842133pt;}
.x4d{left:214.903867pt;}
.x18{left:217.398400pt;}
.x48{left:220.346400pt;}
.x3d{left:221.782667pt;}
.x4e{left:226.469200pt;}
.x12{left:231.684933pt;}
.xa7{left:233.165311pt;}
.x60{left:236.296000pt;}
.x13{left:239.773200pt;}
.x61{left:240.982667pt;}
.xda{left:242.475600pt;}
.x19{left:243.930667pt;}
.x53{left:245.215733pt;}
.x75{left:247.407867pt;}
.x49{left:253.530667pt;}
.x76{left:255.269200pt;}
.x4a{left:258.368400pt;}
.x4f{left:259.577867pt;}
.x3c{left:263.735333pt;}
.x1a{left:264.793600pt;}
.x1b{left:269.480267pt;}
.xf{left:276.207867pt;}
.xcf{left:278.182000pt;}
.x5f{left:280.214133pt;}
.x1c{left:281.272400pt;}
.xb2{left:298.053467pt;}
.xb4{left:299.565333pt;}
.xb3{left:302.740133pt;}
.x3b{left:304.100667pt;}
.x89{left:307.729067pt;}
.xb5{left:313.398400pt;}
.xc{left:315.590533pt;}
.x8a{left:318.462933pt;}
.xd{left:323.527467pt;}
.x78{left:326.475467pt;}
.x77{left:331.540133pt;}
.x79{left:333.656667pt;}
.x58{left:339.477067pt;}
.x8c{left:342.198267pt;}
.x59{left:344.088133pt;}
.x4{left:345.070800pt;}
.x7a{left:348.547867pt;}
.x5{left:350.588933pt;}
.x7b{left:353.158933pt;}
.x92{left:355.048667pt;}
.xdd{left:357.618800pt;}
.x7c{left:361.020400pt;}
.x56{left:363.288133pt;}
.x5a{left:365.102267pt;}
.x5b{left:374.399867pt;}
.x8b{left:375.836133pt;}
.x62{left:402.292800pt;}
.xd6{left:406.601467pt;}
.x1d{left:415.370000pt;}
.x63{left:417.864400pt;}
.x9c{left:423.080267pt;}
.xc1{left:425.369886pt;}
.x93{left:426.709037pt;}
.x30{left:430.941600pt;}
.x94{left:431.924267pt;}
.x95{left:435.703867pt;}
.x99{left:440.314800pt;}
.x96{left:441.373067pt;}
.x98{left:443.036133pt;}
.x9a{left:444.018800pt;}
.x97{left:445.152667pt;}
.xc4{left:447.764533pt;}
.x28{left:450.066000pt;}
.x74{left:453.225733pt;}
.x29{left:454.677067pt;}
.xc3{left:459.061333pt;}
.xc5{left:460.303600pt;}
.x7d{left:462.840800pt;}
.x90{left:464.655067pt;}
.x6{left:474.103867pt;}
.x91{left:475.388800pt;}
.x67{left:478.790400pt;}
.x7{left:480.226667pt;}
.x9b{left:481.436133pt;}
.x6b{left:483.325867pt;}
.x73{left:486.619333pt;}
.x32{left:490.204533pt;}
.x2a{left:491.187200pt;}
.x68{left:492.699067pt;}
.x2b{left:495.873867pt;}
.x6c{left:497.612533pt;}
.xae{left:498.635867pt;}
.x33{left:501.316400pt;}
.xd8{left:503.281733pt;}
.x36{left:504.264942pt;}
.x66{left:507.212533pt;}
.x70{left:511.543500pt;}
.xd9{left:512.730533pt;}
.x69{left:516.056533pt;}
.x37{left:517.266000pt;}
.xe0{left:518.550381pt;}
.x38{left:521.877067pt;}
.x6a{left:529.284933pt;}
.x2c{left:534.198267pt;}
.xc7{left:538.280133pt;}
.x2d{left:542.362000pt;}
.x6f{left:547.158133pt;}
.xad{left:549.213067pt;}
.xc8{left:551.206133pt;}
.x88{left:557.556074pt;}
.x71{left:563.212639pt;}
.xd4{left:565.016267pt;}
.x10{left:568.215046pt;}
.x6d{left:572.522667pt;}
.xc6{left:574.394000pt;}
.xc2{left:577.296667pt;}
.x6e{left:586.809333pt;}
.x7e{left:587.792000pt;}
.x2e{left:592.327333pt;}
.x7f{left:595.275467pt;}
.x2f{left:596.938400pt;}
.xb1{left:602.818000pt;}
.x8{left:603.741600pt;}
.x86{left:608.352667pt;}
.x9{left:609.259733pt;}
.xd5{left:610.373667pt;}
.xd3{left:611.291067pt;}
.x87{left:615.684800pt;}
.x1e{left:631.634400pt;}
.x8f{left:634.053333pt;}
.x1f{left:636.321067pt;}
.x80{left:638.815600pt;}
.x82{left:641.688000pt;}
.x81{left:647.659733pt;}
.x64{left:652.195067pt;}
.x83{left:653.631333pt;}
.xbf{left:656.368267pt;}
.x65{left:659.451867pt;}
.x8d{left:661.643867pt;}
.xc9{left:663.080133pt;}
.x72{left:666.087200pt;}
.xd7{left:668.295867pt;}
.x9d{left:669.580933pt;}
.x8e{left:672.453333pt;}
.xc0{left:673.737467pt;}
.x20{left:675.250267pt;}
.x9e{left:676.157333pt;}
.x21{left:679.861200pt;}
.xaf{left:684.126933pt;}
.x22{left:687.722667pt;}
.xb0{left:690.319257pt;}
.x23{left:692.333600pt;}
.xca{left:693.467467pt;}
.xde{left:708.358933pt;}
.xcb{left:709.417200pt;}
.x34{left:714.784133pt;}
.xdf{left:718.563600pt;}
.x35{left:719.470667pt;}
.x84{left:727.180933pt;}
.x24{left:730.506933pt;}
.x85{left:733.757333pt;}
.x25{left:735.117867pt;}
.x31{left:738.973067pt;}
.x26{left:742.903867pt;}
.x39{left:745.473733pt;}
.x27{left:747.590267pt;}
}




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