
    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_b0fdbc090fb9a816c7324b4c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_19c5ab6d4cd7192477ac6a2b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d777a6490897c46df211ae3d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.736000;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_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.660000;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_52521e14869355c48b53979a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.885000;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_e956fd144f33d6c9f4eb3e07.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.011000;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_b48400994b549082084be954.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a97b6857305e528b3ef9ad00.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.900000;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_71084074d432a33562ab92f9.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_324cda3dde024f08e47ab30e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666000;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_577ba831db7ea3631ca8b148.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.900000;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_67109cfe0ebc006bc2143f1c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.740000;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_38ff888066aab524d78503e8.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_af34bbac9b83d06dec1c4dbe.woff2')format("woff");}.fff{font-family:fff;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_bd0221067986c8590d41767f.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.011230;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_2fbf0aa4cbec605107c6e5c3.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.995117;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_7e9e42b8ec2eaeb68ad3af58.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_af34bbac9b83d06dec1c4dbe.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_c15a0eaabb7104c3cbf96d77.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_f5ad03086e40b9d525159f34.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_8ae0b959d975605514979377.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_5ad6be3ddb8c8800d0c64706.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_a9bf042aaaa687d2a9167d6f.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_414bb83983cc541a72862773.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_1dda76eaa97128deb9154bb1.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_70b25716f9ec5daa8d69fe62.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.689000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_f44b93bbd2f3035219b679c5.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_6c2dea12c564699d873f579d.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_fbf9195318d1e9b66bfb33d3.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_33a812a8602ea1eeb0cab828.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v6{vertical-align:-1.248000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.886000px;}
.va{vertical-align:16.128000px;}
.v9{vertical-align:18.276000px;}
.v7{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.vc{vertical-align:27.162000px;}
.vb{vertical-align:28.392000px;}
.v5{vertical-align:32.880000px;}
.v3{vertical-align:40.470000px;}
.v8{vertical-align:51.156000px;}
.ls61{letter-spacing:-0.577152px;}
.ls5a{letter-spacing:-0.270000px;}
.ls90{letter-spacing:-0.258516px;}
.ls40{letter-spacing:-0.232200px;}
.ls96{letter-spacing:-0.222444px;}
.ls91{letter-spacing:-0.180360px;}
.ls5e{letter-spacing:-0.150300px;}
.ls65{letter-spacing:-0.138276px;}
.ls2f{letter-spacing:-0.136890px;}
.ls95{letter-spacing:-0.126252px;}
.ls60{letter-spacing:-0.120240px;}
.ls5f{letter-spacing:-0.114228px;}
.ls5d{letter-spacing:-0.108216px;}
.ls8f{letter-spacing:-0.104400px;}
.ls64{letter-spacing:-0.102204px;}
.ls55{letter-spacing:-0.090972px;}
.ls3f{letter-spacing:-0.086184px;}
.ls93{letter-spacing:-0.078156px;}
.ls63{letter-spacing:-0.072144px;}
.ls57{letter-spacing:-0.066132px;}
.ls42{letter-spacing:-0.064800px;}
.ls76{letter-spacing:-0.064260px;}
.ls74{letter-spacing:-0.060329px;}
.ls5b{letter-spacing:-0.060120px;}
.ls2d{letter-spacing:-0.056020px;}
.ls59{letter-spacing:-0.043200px;}
.ls92{letter-spacing:-0.042084px;}
.ls56{letter-spacing:-0.036072px;}
.ls58{letter-spacing:-0.030060px;}
.ls2e{letter-spacing:-0.028080px;}
.ls9a{letter-spacing:-0.024048px;}
.ls75{letter-spacing:-0.022680px;}
.ls44{letter-spacing:-0.021600px;}
.ls30{letter-spacing:-0.021060px;}
.ls5c{letter-spacing:-0.018036px;}
.ls9c{letter-spacing:-0.016200px;}
.ls98{letter-spacing:-0.012024px;}
.ls99{letter-spacing:-0.006012px;}
.ls41{letter-spacing:-0.005400px;}
.ls77{letter-spacing:-0.003780px;}
.lsa{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.000435px;}
.ls9e{letter-spacing:0.000566px;}
.ls4{letter-spacing:0.000600px;}
.lsc{letter-spacing:0.000608px;}
.ls8b{letter-spacing:0.000800px;}
.lsa5{letter-spacing:0.001036px;}
.ls54{letter-spacing:0.001133px;}
.lsac{letter-spacing:0.001155px;}
.lsb2{letter-spacing:0.001301px;}
.lsb1{letter-spacing:0.001449px;}
.lsa4{letter-spacing:0.001502px;}
.lsb3{letter-spacing:0.001701px;}
.lsab{letter-spacing:0.001746px;}
.ls7{letter-spacing:0.001933px;}
.ls6{letter-spacing:0.001952px;}
.lsf{letter-spacing:0.001996px;}
.lsb6{letter-spacing:0.002841px;}
.ls81{letter-spacing:0.003746px;}
.ls6c{letter-spacing:0.003780px;}
.ls79{letter-spacing:0.003830px;}
.ls8c{letter-spacing:0.004090px;}
.lsd{letter-spacing:0.004200px;}
.ls80{letter-spacing:0.004800px;}
.ls3c{letter-spacing:0.005400px;}
.lse{letter-spacing:0.006005px;}
.ls3e{letter-spacing:0.006012px;}
.ls28{letter-spacing:0.007020px;}
.ls6d{letter-spacing:0.007560px;}
.ls2b{letter-spacing:0.010530px;}
.ls39{letter-spacing:0.010800px;}
.ls6a{letter-spacing:0.011340px;}
.ls23{letter-spacing:0.014040px;}
.ls4d{letter-spacing:0.016200px;}
.ls27{letter-spacing:0.017550px;}
.ls4f{letter-spacing:0.018036px;}
.ls72{letter-spacing:0.018900px;}
.ls25{letter-spacing:0.021060px;}
.ls38{letter-spacing:0.021600px;}
.ls6e{letter-spacing:0.022680px;}
.ls88{letter-spacing:0.024048px;}
.ls22{letter-spacing:0.024570px;}
.ls71{letter-spacing:0.026460px;}
.ls36{letter-spacing:0.027000px;}
.ls1f{letter-spacing:0.028010px;}
.ls86{letter-spacing:0.030060px;}
.ls67{letter-spacing:0.030164px;}
.ls6f{letter-spacing:0.030240px;}
.ls29{letter-spacing:0.031590px;}
.ls34{letter-spacing:0.032400px;}
.ls45{letter-spacing:0.033516px;}
.ls70{letter-spacing:0.034020px;}
.ls85{letter-spacing:0.036072px;}
.ls3a{letter-spacing:0.037800px;}
.ls2a{letter-spacing:0.038610px;}
.ls73{letter-spacing:0.041580px;}
.ls52{letter-spacing:0.042084px;}
.ls26{letter-spacing:0.042120px;}
.ls31{letter-spacing:0.043092px;}
.ls4c{letter-spacing:0.043200px;}
.ls4b{letter-spacing:0.048096px;}
.ls37{letter-spacing:0.048600px;}
.ls2c{letter-spacing:0.052650px;}
.ls87{letter-spacing:0.054108px;}
.ls3b{letter-spacing:0.059400px;}
.ls48{letter-spacing:0.066132px;}
.ls3d{letter-spacing:0.070200px;}
.ls8a{letter-spacing:0.072144px;}
.ls24{letter-spacing:0.080730px;}
.ls53{letter-spacing:0.084168px;}
.ls6b{letter-spacing:0.086940px;}
.ls51{letter-spacing:0.090180px;}
.ls8d{letter-spacing:0.102204px;}
.ls4e{letter-spacing:0.108000px;}
.ls89{letter-spacing:0.108216px;}
.ls21{letter-spacing:0.115151px;}
.ls35{letter-spacing:0.124200px;}
.ls20{letter-spacing:0.124488px;}
.ls69{letter-spacing:0.127361px;}
.ls68{letter-spacing:0.134064px;}
.ls4a{letter-spacing:0.138276px;}
.ls94{letter-spacing:0.156312px;}
.ls50{letter-spacing:0.162324px;}
.ls47{letter-spacing:0.167580px;}
.ls33{letter-spacing:0.177156px;}
.ls49{letter-spacing:0.180360px;}
.ls46{letter-spacing:0.181944px;}
.ls32{letter-spacing:0.191520px;}
.ls8e{letter-spacing:0.192384px;}
.ls84{letter-spacing:0.428370px;}
.ls83{letter-spacing:0.434370px;}
.ls7c{letter-spacing:0.503764px;}
.ls7f{letter-spacing:0.542815px;}
.ls43{letter-spacing:0.545400px;}
.ls78{letter-spacing:0.548815px;}
.ls17{letter-spacing:0.567590px;}
.ls7b{letter-spacing:0.642088px;}
.ls7d{letter-spacing:0.648088px;}
.ls7a{letter-spacing:0.669878px;}
.ls16{letter-spacing:1.117615px;}
.lsb{letter-spacing:1.275394px;}
.ls2{letter-spacing:1.861130px;}
.ls66{letter-spacing:2.248488px;}
.ls9b{letter-spacing:2.349000px;}
.ls1{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.998354px;}
.ls97{letter-spacing:3.697380px;}
.ls15{letter-spacing:4.119497px;}
.ls62{letter-spacing:5.488956px;}
.ls3{letter-spacing:10.461300px;}
.lsa9{letter-spacing:11.774890px;}
.ls9{letter-spacing:11.954850px;}
.ls82{letter-spacing:12.530693px;}
.lsb7{letter-spacing:12.601420px;}
.lsae{letter-spacing:12.736114px;}
.lsb5{letter-spacing:13.029992px;}
.lsa2{letter-spacing:13.242708px;}
.lsa1{letter-spacing:13.244762px;}
.lsa7{letter-spacing:13.348359px;}
.ls1b{letter-spacing:13.444090px;}
.lsb0{letter-spacing:13.445674px;}
.lsa0{letter-spacing:13.448400px;}
.ls1c{letter-spacing:13.450090px;}
.ls1a{letter-spacing:13.450560px;}
.ls9f{letter-spacing:13.454400px;}
.lsa3{letter-spacing:13.469156px;}
.lsb9{letter-spacing:13.472244px;}
.lsa8{letter-spacing:13.568582px;}
.lsad{letter-spacing:13.595901px;}
.lsa6{letter-spacing:13.657434px;}
.lsb4{letter-spacing:13.688015px;}
.lsb8{letter-spacing:14.085694px;}
.ls1e{letter-spacing:14.094088px;}
.ls1d{letter-spacing:14.100088px;}
.ls19{letter-spacing:14.764573px;}
.ls10{letter-spacing:14.944228px;}
.ls12{letter-spacing:14.944766px;}
.ls7e{letter-spacing:15.663483px;}
.lsaf{letter-spacing:16.344518px;}
.lsaa{letter-spacing:16.439263px;}
.ls11{letter-spacing:16.576531px;}
.ls13{letter-spacing:17.325483px;}
.ls9d{letter-spacing:18.894178px;}
.ls5{letter-spacing:62.761200px;}
.ls8{letter-spacing:64.321654px;}
.ls14{letter-spacing:100.485483px;}
.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;}
}
.ws77{word-spacing:-35.100000px;}
.wsa9{word-spacing:-15.048036px;}
.wsaa{word-spacing:-15.030000px;}
.ws30{word-spacing:-14.943900px;}
.ws4{word-spacing:-14.355754px;}
.ws8c{word-spacing:-13.500000px;}
.ws1a{word-spacing:-13.449600px;}
.ws8b{word-spacing:-12.161520px;}
.wsa8{word-spacing:-12.151944px;}
.ws2a{word-spacing:-11.955150px;}
.ws5e{word-spacing:-11.357400px;}
.ws9{word-spacing:-10.460700px;}
.wsda{word-spacing:-9.450000px;}
.ws76{word-spacing:-8.775000px;}
.wsd9{word-spacing:-8.513064px;}
.ws75{word-spacing:-7.904988px;}
.ws198{word-spacing:-3.227904px;}
.ws199{word-spacing:-3.012710px;}
.ws11f{word-spacing:-2.929004px;}
.ws110{word-spacing:-2.869229px;}
.ws112{word-spacing:-2.809453px;}
.ws168{word-spacing:-2.689902px;}
.ws7a{word-spacing:-2.636122px;}
.ws111{word-spacing:-2.630126px;}
.ws2e{word-spacing:-2.570351px;}
.ws2f{word-spacing:-2.510575px;}
.wscf{word-spacing:-2.470932px;}
.ws18a{word-spacing:-2.313331px;}
.ws3e{word-spacing:-2.271473px;}
.ws188{word-spacing:-2.211697px;}
.ws1aa{word-spacing:-2.151936px;}
.ws10d{word-spacing:-2.151922px;}
.ws140{word-spacing:-2.068128px;}
.ws10e{word-spacing:-2.032370px;}
.ws7d{word-spacing:-2.011230px;}
.ws80{word-spacing:-2.007720px;}
.ws7f{word-spacing:-2.000700px;}
.ws10b{word-spacing:-1.972595px;}
.ws7e{word-spacing:-1.958580px;}
.ws155{word-spacing:-1.912819px;}
.ws6{word-spacing:-1.908367px;}
.ws10f{word-spacing:-1.853044px;}
.ws141{word-spacing:-1.779552px;}
.wsa7{word-spacing:-1.733492px;}
.ws13f{word-spacing:-1.689372px;}
.ws1ab{word-spacing:-1.667750px;}
.wse9{word-spacing:-1.666980px;}
.wse8{word-spacing:-1.663200px;}
.wsea{word-spacing:-1.659420px;}
.wse7{word-spacing:-1.655640px;}
.wse5{word-spacing:-1.640520px;}
.wse6{word-spacing:-1.632960px;}
.ws17a{word-spacing:-1.494390px;}
.ws17c{word-spacing:-1.484775px;}
.ws125{word-spacing:-1.398758px;}
.ws15a{word-spacing:-1.374839px;}
.wsc4{word-spacing:-1.352700px;}
.ws5{word-spacing:-1.322630px;}
.wsc7{word-spacing:-1.238472px;}
.ws126{word-spacing:-1.183565px;}
.ws1c6{word-spacing:-1.129766px;}
.wsbc{word-spacing:-1.040076px;}
.ws48{word-spacing:-1.016185px;}
.ws1bd{word-spacing:-0.968371px;}
.wsbd{word-spacing:-0.961920px;}
.ws49{word-spacing:-0.956410px;}
.ws15e{word-spacing:-0.896634px;}
.ws1c7{word-spacing:-0.860774px;}
.ws123{word-spacing:-0.836858px;}
.ws189{word-spacing:-0.699379px;}
.ws15f{word-spacing:-0.657532px;}
.ws195{word-spacing:-0.645581px;}
.ws13e{word-spacing:-0.601200px;}
.ws1c5{word-spacing:-0.591782px;}
.ws58{word-spacing:-0.537980px;}
.ws1b0{word-spacing:-0.484186px;}
.ws59{word-spacing:-0.478205px;}
.ws1a9{word-spacing:-0.430387px;}
.ws2c{word-spacing:-0.418429px;}
.ws1cd{word-spacing:-0.376589px;}
.ws166{word-spacing:-0.364424px;}
.ws2b{word-spacing:-0.358654px;}
.wsd0{word-spacing:-0.354708px;}
.wsc5{word-spacing:-0.336672px;}
.ws1b3{word-spacing:-0.322790px;}
.ws134{word-spacing:-0.318636px;}
.ws131{word-spacing:-0.306612px;}
.ws38{word-spacing:-0.298878px;}
.wsa6{word-spacing:-0.270540px;}
.ws90{word-spacing:-0.268992px;}
.wsc6{word-spacing:-0.252504px;}
.ws45{word-spacing:-0.239102px;}
.ws1f{word-spacing:-0.215194px;}
.ws43{word-spacing:-0.179327px;}
.ws17{word-spacing:-0.161395px;}
.ws154{word-spacing:-0.156324px;}
.ws163{word-spacing:-0.152499px;}
.ws17d{word-spacing:-0.143233px;}
.wsd8{word-spacing:-0.140853px;}
.ws15b{word-spacing:-0.140427px;}
.ws15c{word-spacing:-0.138841px;}
.ws92{word-spacing:-0.129276px;}
.wsb6{word-spacing:-0.124488px;}
.ws44{word-spacing:-0.119551px;}
.ws14e{word-spacing:-0.118981px;}
.ws79{word-spacing:-0.107597px;}
.ws149{word-spacing:-0.100659px;}
.ws180{word-spacing:-0.100035px;}
.ws182{word-spacing:-0.098473px;}
.ws181{word-spacing:-0.095149px;}
.wsdc{word-spacing:-0.090493px;}
.ws135{word-spacing:-0.084168px;}
.ws7b{word-spacing:-0.084029px;}
.ws12f{word-spacing:-0.060120px;}
.ws28{word-spacing:-0.059776px;}
.ws153{word-spacing:-0.056611px;}
.wscc{word-spacing:-0.054108px;}
.ws22{word-spacing:-0.053798px;}
.ws1b6{word-spacing:-0.027907px;}
.ws115{word-spacing:-0.007622px;}
.ws1b5{word-spacing:-0.006749px;}
.wsad{word-spacing:-0.006154px;}
.ws129{word-spacing:-0.006012px;}
.wsb5{word-spacing:-0.006008px;}
.wsae{word-spacing:-0.004657px;}
.ws1c8{word-spacing:-0.004435px;}
.ws8{word-spacing:-0.004012px;}
.ws1b9{word-spacing:-0.003926px;}
.ws1b4{word-spacing:-0.003859px;}
.ws1a5{word-spacing:-0.003466px;}
.ws1a4{word-spacing:-0.003312px;}
.ws1ce{word-spacing:-0.002429px;}
.ws14c{word-spacing:-0.001550px;}
.wsb3{word-spacing:-0.001259px;}
.wsb2{word-spacing:-0.001225px;}
.ws1{word-spacing:-0.001217px;}
.ws29{word-spacing:-0.000868px;}
.ws0{word-spacing:0.000000px;}
.ws1bb{word-spacing:0.000182px;}
.wsaf{word-spacing:0.000900px;}
.wsb4{word-spacing:0.004009px;}
.wsd4{word-spacing:0.006012px;}
.ws128{word-spacing:0.030060px;}
.wsd3{word-spacing:0.042084px;}
.wsd2{word-spacing:0.048096px;}
.ws1e{word-spacing:0.053798px;}
.ws3f{word-spacing:0.059776px;}
.ws133{word-spacing:0.066132px;}
.wsc2{word-spacing:0.070200px;}
.ws81{word-spacing:0.077220px;}
.ws86{word-spacing:0.087750px;}
.ws85{word-spacing:0.094770px;}
.ws87{word-spacing:0.098280px;}
.wsdb{word-spacing:0.107597px;}
.ws88{word-spacing:0.108810px;}
.wsa5{word-spacing:0.113400px;}
.ws160{word-spacing:0.118468px;}
.ws4e{word-spacing:0.119551px;}
.ws161{word-spacing:0.124154px;}
.ws148{word-spacing:0.124200px;}
.wsee{word-spacing:0.124740px;}
.ws12d{word-spacing:0.138276px;}
.ws183{word-spacing:0.146917px;}
.ws184{word-spacing:0.150127px;}
.ws94{word-spacing:0.151200px;}
.ws91{word-spacing:0.161395px;}
.wscd{word-spacing:0.162324px;}
.ws132{word-spacing:0.168336px;}
.ws173{word-spacing:0.170558px;}
.ws14a{word-spacing:0.170771px;}
.ws3b{word-spacing:0.179327px;}
.wsa{word-spacing:0.209214px;}
.ws78{word-spacing:0.215194px;}
.ws14b{word-spacing:0.220738px;}
.ws130{word-spacing:0.222444px;}
.ws3d{word-spacing:0.239102px;}
.ws82{word-spacing:0.256230px;}
.ws177{word-spacing:0.258952px;}
.ws179{word-spacing:0.263024px;}
.ws178{word-spacing:0.266996px;}
.ws8f{word-spacing:0.268992px;}
.ws12c{word-spacing:0.276552px;}
.wsc{word-spacing:0.292900px;}
.ws25{word-spacing:0.298878px;}
.ws136{word-spacing:0.318636px;}
.wsac{word-spacing:0.322790px;}
.ws13c{word-spacing:0.348696px;}
.ws12b{word-spacing:0.354708px;}
.ws63{word-spacing:0.358654px;}
.ws190{word-spacing:0.376589px;}
.ws95{word-spacing:0.415800px;}
.ws64{word-spacing:0.418429px;}
.wsc1{word-spacing:0.448200px;}
.ws13d{word-spacing:0.462924px;}
.ws19{word-spacing:0.484186px;}
.ws9d{word-spacing:0.523800px;}
.ws1b{word-spacing:0.527287px;}
.ws9e{word-spacing:0.550800px;}
.wsab{word-spacing:0.591782px;}
.ws11e{word-spacing:0.597756px;}
.ws117{word-spacing:0.598800px;}
.ws9f{word-spacing:0.610200px;}
.wse3{word-spacing:0.627480px;}
.wse4{word-spacing:0.638820px;}
.ws1c9{word-spacing:0.645581px;}
.ws70{word-spacing:0.668054px;}
.ws6c{word-spacing:0.670454px;}
.wsf5{word-spacing:0.673200px;}
.ws6b{word-spacing:0.682349px;}
.ws6f{word-spacing:0.687571px;}
.ws6d{word-spacing:0.691296px;}
.wse2{word-spacing:0.699300px;}
.ws191{word-spacing:0.699379px;}
.ws51{word-spacing:0.717307px;}
.ws14f{word-spacing:0.751959px;}
.ws124{word-spacing:0.777083px;}
.ws193{word-spacing:0.860774px;}
.ws39{word-spacing:0.896634px;}
.wsce{word-spacing:0.913824px;}
.ws19e{word-spacing:0.914573px;}
.ws175{word-spacing:0.914833px;}
.ws176{word-spacing:0.916988px;}
.ws174{word-spacing:0.917626px;}
.wsc9{word-spacing:0.925848px;}
.wsc8{word-spacing:0.961920px;}
.ws1cb{word-spacing:0.968371px;}
.ws4d{word-spacing:1.016185px;}
.ws170{word-spacing:1.075961px;}
.ws19a{word-spacing:1.129766px;}
.ws3a{word-spacing:1.135736px;}
.ws13a{word-spacing:1.184364px;}
.ws13b{word-spacing:1.202400px;}
.ws97{word-spacing:1.215000px;}
.ws98{word-spacing:1.231200px;}
.ws96{word-spacing:1.236600px;}
.ws54{word-spacing:1.255288px;}
.ws83{word-spacing:1.274130px;}
.ws84{word-spacing:1.284660px;}
.ws15{word-spacing:1.291162px;}
.ws53{word-spacing:1.315063px;}
.ws1d{word-spacing:1.344960px;}
.ws27{word-spacing:1.374839px;}
.wsde{word-spacing:1.379700px;}
.wse1{word-spacing:1.387260px;}
.wsdf{word-spacing:1.391040px;}
.wse0{word-spacing:1.413720px;}
.ws16{word-spacing:1.452557px;}
.ws73{word-spacing:1.494390px;}
.ws68{word-spacing:1.554166px;}
.ws5b{word-spacing:1.613941px;}
.ws121{word-spacing:1.613952px;}
.ws1a1{word-spacing:1.721549px;}
.ws152{word-spacing:1.853044px;}
.ws165{word-spacing:1.857639px;}
.ws151{word-spacing:1.869606px;}
.ws192{word-spacing:1.990541px;}
.wsb{word-spacing:2.008454px;}
.ws60{word-spacing:2.032370px;}
.ws66{word-spacing:2.092146px;}
.ws162{word-spacing:2.151922px;}
.ws122{word-spacing:2.151936px;}
.ws18d{word-spacing:2.205734px;}
.ws55{word-spacing:2.207081px;}
.ws56{word-spacing:2.211697px;}
.ws5a{word-spacing:2.271473px;}
.ws9b{word-spacing:2.311200px;}
.ws1bf{word-spacing:2.313331px;}
.ws9c{word-spacing:2.322000px;}
.wsf0{word-spacing:2.331248px;}
.ws142{word-spacing:2.332800px;}
.ws143{word-spacing:2.349000px;}
.wsec{word-spacing:2.358720px;}
.wsb1{word-spacing:2.391024px;}
.wseb{word-spacing:2.392740px;}
.wsed{word-spacing:2.400300px;}
.ws6a{word-spacing:2.420928px;}
.ws74{word-spacing:2.450800px;}
.ws17f{word-spacing:2.510575px;}
.ws72{word-spacing:2.570351px;}
.ws50{word-spacing:2.630126px;}
.ws19d{word-spacing:2.636122px;}
.wsc0{word-spacing:2.656800px;}
.ws18e{word-spacing:2.689920px;}
.wsbe{word-spacing:2.721600px;}
.wsa1{word-spacing:2.727000px;}
.wsbf{word-spacing:2.743200px;}
.ws69{word-spacing:2.743718px;}
.wsef{word-spacing:2.749678px;}
.ws3c{word-spacing:2.809453px;}
.ws196{word-spacing:2.851315px;}
.ws14{word-spacing:2.869236px;}
.wsb7{word-spacing:2.903796px;}
.ws1c0{word-spacing:2.905114px;}
.ws187{word-spacing:2.929004px;}
.wsa0{word-spacing:3.007800px;}
.ws18{word-spacing:3.012710px;}
.wsca{word-spacing:3.036060px;}
.ws157{word-spacing:3.048556px;}
.wscb{word-spacing:3.090168px;}
.ws1be{word-spacing:3.120307px;}
.ws171{word-spacing:3.168107px;}
.ws1c{word-spacing:3.174106px;}
.ws172{word-spacing:3.194320px;}
.ws23{word-spacing:3.219667px;}
.ws1bc{word-spacing:3.220493px;}
.ws1c4{word-spacing:3.221030px;}
.ws1cc{word-spacing:3.221232px;}
.ws1a3{word-spacing:3.221290px;}
.ws1a7{word-spacing:3.221578px;}
.ws1ba{word-spacing:3.222979px;}
.ws1c3{word-spacing:3.222998px;}
.ws1af{word-spacing:3.223018px;}
.ws1ac{word-spacing:3.223651px;}
.ws1b1{word-spacing:3.223968px;}
.ws1a8{word-spacing:3.224333px;}
.ws1c1{word-spacing:3.224688px;}
.ws1a2{word-spacing:3.225571px;}
.ws1ca{word-spacing:3.227232px;}
.ws159{word-spacing:3.227882px;}
.ws19c{word-spacing:3.227904px;}
.ws19f{word-spacing:3.228394px;}
.ws1a0{word-spacing:3.281702px;}
.ws17b{word-spacing:3.374272px;}
.ws194{word-spacing:3.389299px;}
.ws164{word-spacing:3.407209px;}
.ws1ae{word-spacing:3.443098px;}
.ws15d{word-spacing:3.451623px;}
.ws1ad{word-spacing:3.453772px;}
.ws18f{word-spacing:3.496896px;}
.ws42{word-spacing:3.526760px;}
.ws24{word-spacing:3.586536px;}
.ws89{word-spacing:3.615300px;}
.ws31{word-spacing:3.646312px;}
.ws8a{word-spacing:3.653910px;}
.ws21{word-spacing:3.688894px;}
.ws14d{word-spacing:3.706087px;}
.ws20{word-spacing:3.712090px;}
.wsa4{word-spacing:3.753000px;}
.wsa3{word-spacing:3.763800px;}
.ws4f{word-spacing:3.765863px;}
.ws197{word-spacing:3.765888px;}
.ws186{word-spacing:3.776329px;}
.wsa2{word-spacing:3.780000px;}
.ws4a{word-spacing:3.825638px;}
.ws156{word-spacing:3.945190px;}
.ws158{word-spacing:4.004965px;}
.ws41{word-spacing:4.064741px;}
.ws1a6{word-spacing:4.088678px;}
.ws37{word-spacing:4.124516px;}
.ws2d{word-spacing:4.244068px;}
.ws52{word-spacing:4.363619px;}
.ws5c{word-spacing:4.483170px;}
.ws5f{word-spacing:4.662497px;}
.wsc3{word-spacing:4.719420px;}
.ws1b7{word-spacing:4.734259px;}
.ws145{word-spacing:4.843800px;}
.ws144{word-spacing:4.881600px;}
.ws40{word-spacing:4.901599px;}
.ws57{word-spacing:5.140702px;}
.ws139{word-spacing:5.158296px;}
.ws8e{word-spacing:5.164646px;}
.ws146{word-spacing:5.216400px;}
.ws147{word-spacing:5.243400px;}
.ws47{word-spacing:5.260253px;}
.ws19b{word-spacing:5.272243px;}
.ws1c2{word-spacing:5.433638px;}
.ws167{word-spacing:5.499355px;}
.wsb8{word-spacing:5.525028px;}
.ws8d{word-spacing:5.541235px;}
.wsb9{word-spacing:5.555088px;}
.ws99{word-spacing:5.567400px;}
.ws9a{word-spacing:5.578200px;}
.ws4c{word-spacing:5.618906px;}
.ws36{word-spacing:5.738458px;}
.ws65{word-spacing:5.798233px;}
.ws35{word-spacing:5.858009px;}
.ws16a{word-spacing:5.917784px;}
.ws10c{word-spacing:5.977560px;}
.ws32{word-spacing:6.037336px;}
.ws12{word-spacing:6.067206px;}
.ws13{word-spacing:6.150892px;}
.ws114{word-spacing:6.294413px;}
.ws120{word-spacing:6.336214px;}
.ws18b{word-spacing:6.455808px;}
.ws1b8{word-spacing:6.509606px;}
.ws113{word-spacing:6.671002px;}
.ws18c{word-spacing:6.724800px;}
.ws67{word-spacing:6.814418px;}
.ws26{word-spacing:6.874194px;}
.ws169{word-spacing:7.292623px;}
.wsd7{word-spacing:7.352399px;}
.ws16e{word-spacing:7.531726px;}
.ws16f{word-spacing:7.535273px;}
.ws16c{word-spacing:7.538362px;}
.ws16d{word-spacing:7.540285px;}
.ws7c{word-spacing:7.553309px;}
.ws4b{word-spacing:7.591501px;}
.ws138{word-spacing:7.635240px;}
.ws150{word-spacing:7.651277px;}
.ws137{word-spacing:7.671312px;}
.wsd6{word-spacing:7.770828px;}
.ws33{word-spacing:7.830604px;}
.wsb0{word-spacing:8.129482px;}
.wsdd{word-spacing:8.130982px;}
.ws1b2{word-spacing:8.177357px;}
.ws46{word-spacing:8.189257px;}
.wsbb{word-spacing:8.591148px;}
.wsd5{word-spacing:8.607686px;}
.ws10{word-spacing:8.661460px;}
.ws16b{word-spacing:8.963253px;}
.wsba{word-spacing:9.150264px;}
.wsd1{word-spacing:9.162288px;}
.ws62{word-spacing:10.400954px;}
.ws17e{word-spacing:10.640057px;}
.ws127{word-spacing:11.615688px;}
.ws93{word-spacing:11.620476px;}
.ws5d{word-spacing:12.369028px;}
.ws61{word-spacing:15.123227px;}
.ws185{word-spacing:15.424572px;}
.ws7{word-spacing:15.483541px;}
.wsd{word-spacing:16.142252px;}
.wse{word-spacing:16.151321px;}
.wsf{word-spacing:17.699504px;}
.ws11{word-spacing:27.448877px;}
.ws34{word-spacing:27.556552px;}
.ws3{word-spacing:40.068708px;}
.ws2{word-spacing:40.638646px;}
.ws116{word-spacing:54.228560px;}
.ws11a{word-spacing:85.953831px;}
.ws118{word-spacing:85.956681px;}
.wsf3{word-spacing:110.319274px;}
.ws12e{word-spacing:122.350212px;}
.ws100{word-spacing:123.766474px;}
.ws108{word-spacing:123.772474px;}
.ws12a{word-spacing:137.115684px;}
.wsf4{word-spacing:149.785200px;}
.wsf7{word-spacing:159.768259px;}
.wsf1{word-spacing:160.980778px;}
.wsf9{word-spacing:186.230534px;}
.ws109{word-spacing:195.968534px;}
.ws106{word-spacing:203.720602px;}
.wsf8{word-spacing:213.778934px;}
.ws11c{word-spacing:224.458390px;}
.wsfd{word-spacing:226.958266px;}
.ws11b{word-spacing:256.855603px;}
.ws107{word-spacing:261.389510px;}
.ws11d{word-spacing:264.073424px;}
.ws10a{word-spacing:265.939238px;}
.wsf2{word-spacing:268.923245px;}
.ws104{word-spacing:274.352534px;}
.ws103{word-spacing:275.965334px;}
.wsfb{word-spacing:275.971334px;}
.ws119{word-spacing:276.031424px;}
.wsfc{word-spacing:276.372000px;}
.wsff{word-spacing:278.257200px;}
.ws105{word-spacing:321.023779px;}
.ws6e{word-spacing:329.353805px;}
.wsf6{word-spacing:357.069245px;}
.ws102{word-spacing:375.252355px;}
.wsfa{word-spacing:384.960710px;}
.ws71{word-spacing:450.454003px;}
.wsfe{word-spacing:471.279110px;}
.ws101{word-spacing:496.940602px;}
._69{margin-left:-138.390228px;}
._6d{margin-left:-123.624756px;}
._68{margin-left:-27.926838px;}
._6c{margin-left:-12.204058px;}
._12{margin-left:-7.843336px;}
._0{margin-left:-6.685078px;}
._7{margin-left:-5.308087px;}
._3{margin-left:-3.849538px;}
._8{margin-left:-2.630133px;}
._1{margin-left:-1.322630px;}
._2{width:1.091170px;}
._5{width:2.301354px;}
._15{width:4.430962px;}
._8a{width:10.965141px;}
._4{width:12.971268px;}
._f{width:14.822886px;}
._a{width:16.617289px;}
._e{width:18.470660px;}
._13{width:19.912842px;}
._b{width:21.190581px;}
._17{width:22.244090px;}
._d{width:23.611362px;}
._19{width:24.874217px;}
._14{width:26.787036px;}
._c{width:28.072213px;}
._88{width:29.428677px;}
._16{width:30.605107px;}
._6{width:32.637384px;}
._1a{width:33.721006px;}
._18{width:36.112030px;}
._1b{width:39.511672px;}
._3b{width:41.970038px;}
._3a{width:43.691589px;}
._9{width:56.810873px;}
._89{width:61.868160px;}
._67{width:63.384516px;}
._6b{width:79.111898px;}
._5c{width:86.890030px;}
._5d{width:91.576449px;}
._5e{width:98.741345px;}
._4b{width:110.293440px;}
._47{width:123.768874px;}
._50{width:132.128870px;}
._66{width:135.444338px;}
._43{width:137.977730px;}
._55{width:139.066253px;}
._54{width:145.182096px;}
._62{width:153.631595px;}
._64{width:154.795282px;}
._53{width:159.008074px;}
._6e{width:167.975280px;}
._4a{width:181.193011px;}
._48{width:183.563635px;}
._51{width:185.673514px;}
._60{width:193.960354px;}
._40{width:196.564426px;}
._6a{width:200.602404px;}
._44{width:213.564348px;}
._3d{width:216.646157px;}
._61{width:224.661179px;}
._52{width:233.081290px;}
._63{width:235.755558px;}
._1f{width:236.919245px;}
._49{width:240.451330px;}
._3f{width:245.482099px;}
._3e{width:259.738675px;}
._4d{width:261.160867px;}
._1e{width:268.880726px;}
._4f{width:278.059982px;}
._1d{width:281.707421px;}
._5b{width:284.293467px;}
._30{width:292.878490px;}
._37{width:308.587622px;}
._85{width:313.806067px;}
._21{width:324.619546px;}
._81{width:328.977216px;}
._46{width:333.670365px;}
._24{width:338.069146px;}
._22{width:346.192704px;}
._70{width:350.657971px;}
._78{width:353.018322px;}
._58{width:360.398736px;}
._83{width:366.910992px;}
._42{width:369.951168px;}
._84{width:374.880826px;}
._5a{width:383.569033px;}
._29{width:387.671270px;}
._87{width:391.006771px;}
._4c{width:392.620723px;}
._5f{width:396.576236px;}
._86{width:401.835470px;}
._80{width:403.846634px;}
._27{width:414.409075px;}
._7d{width:415.431245px;}
._4e{width:419.842714px;}
._7f{width:422.801626px;}
._79{width:423.931392px;}
._7b{width:425.276352px;}
._31{width:429.634022px;}
._45{width:434.725296px;}
._28{width:435.982234px;}
._82{width:440.267707px;}
._56{width:444.701674px;}
._7a{width:446.805226px;}
._2e{width:448.033075px;}
._23{width:449.879962px;}
._74{width:451.045786px;}
._7c{width:452.638186px;}
._73{width:456.719318px;}
._41{width:458.850461px;}
._75{width:460.714277px;}
._2c{width:463.903603px;}
._25{width:467.292902px;}
._57{width:469.527226px;}
._34{width:481.657075px;}
._7e{width:485.969534px;}
._76{width:487.305907px;}
._72{width:489.626774px;}
._77{width:493.691942px;}
._1c{width:500.608188px;}
._2b{width:512.160768px;}
._71{width:526.524941px;}
._33{width:529.268659px;}
._2a{width:534.702298px;}
._35{width:545.784768px;}
._6f{width:557.183854px;}
._10{width:571.456170px;}
._2d{width:586.079770px;}
._36{width:601.035725px;}
._20{width:637.424006px;}
._26{width:752.478221px;}
._32{width:763.399296px;}
._2f{width:789.868109px;}
._38{width:1343.384242px;}
._3c{width:1430.084149px;}
._65{width:2042.977356px;}
._39{width:2066.744988px;}
._59{width:2451.279000px;}
._11{width:2475.189000px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(45,70,152);}
.fsd{font-size:31.122000px;}
.fs14{font-size:33.516000px;}
.fsf{font-size:35.100000px;}
.fs7{font-size:35.865600px;}
.fs19{font-size:36.000000px;}
.fs18{font-size:37.371600px;}
.fs16{font-size:37.800000px;}
.fse{font-size:39.078000px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fs15{font-size:42.084000px;}
.fs10{font-size:43.600200px;}
.fs3{font-size:45.429600px;}
.fs4{font-size:47.236800px;}
.fsa{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fs11{font-size:47.880000px;}
.fs17{font-size:49.829400px;}
.fs9{font-size:53.798400px;}
.fs13{font-size:54.000000px;}
.fsc{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fs12{font-size:60.120000px;}
.fsb{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:136.067040px;}
.y14f{bottom:-466.983120px;}
.y14e{bottom:-429.723750px;}
.y14d{bottom:-410.464308px;}
.y14c{bottom:-391.295046px;}
.y14b{bottom:-372.035604px;}
.y14a{bottom:-352.776162px;}
.y149{bottom:-333.605397px;}
.y148{bottom:-314.345955px;}
.y147{bottom:-295.086513px;}
.y146{bottom:-275.917251px;}
.y145{bottom:-256.657809px;}
.y144{bottom:-237.488547px;}
.y128{bottom:-225.437550px;}
.y143{bottom:-218.229105px;}
.y142{bottom:-198.969663px;}
.y127{bottom:-188.628900px;}
.y141{bottom:-179.800401px;}
.y126{bottom:-171.258450px;}
.y140{bottom:-156.129654px;}
.y125{bottom:-153.978450px;}
.y124{bottom:-136.608000px;}
.y123{bottom:-119.328000px;}
.y13f{bottom:-118.870284px;}
.y122{bottom:-102.048000px;}
.y13e{bottom:-99.610842px;}
.y170{bottom:-90.467685px;}
.y121{bottom:-84.768000px;}
.y13d{bottom:-80.351400px;}
.y16f{bottom:-78.246000px;}
.y113{bottom:-74.720393px;}
.y21d{bottom:-74.023500px;}
.y21e{bottom:-74.023050px;}
.y120{bottom:-67.397550px;}
.y16e{bottom:-66.150000px;}
.y112{bottom:-63.429600px;}
.y21c{bottom:-56.653050px;}
.y16d{bottom:-54.054000px;}
.y111{bottom:-52.197600px;}
.y11f{bottom:-50.117550px;}
.y13c{bottom:-43.631100px;}
.y16c{bottom:-41.958000px;}
.y110{bottom:-40.965600px;}
.y21b{bottom:-39.373050px;}
.y16b{bottom:-29.798685px;}
.y10f{bottom:-29.674807px;}
.y11e{bottom:-27.707550px;}
.y13b{bottom:-26.171550px;}
.y21a{bottom:-22.093050px;}
.y10e{bottom:-18.442808px;}
.y16a{bottom:-17.702685px;}
.y10d{bottom:-3.876307px;}
.y13a{bottom:-3.761136px;}
.y169{bottom:-2.015685px;}
.y0{bottom:0.000000px;}
.y219{bottom:0.319191px;}
.yc{bottom:3.425340px;}
.y203{bottom:4.410450px;}
.y2{bottom:13.870617px;}
.yb{bottom:14.151273px;}
.y50{bottom:31.890000px;}
.y131{bottom:87.795000px;}
.y269{bottom:88.993500px;}
.y119{bottom:93.193500px;}
.y2c2{bottom:100.800000px;}
.y28{bottom:102.823500px;}
.y4f{bottom:103.621500px;}
.yb9{bottom:105.351000px;}
.y85{bottom:106.677000px;}
.y296{bottom:106.695000px;}
.y130{bottom:107.028000px;}
.y268{bottom:107.823000px;}
.y117{bottom:112.425000px;}
.y118{bottom:117.307500px;}
.y2c1{bottom:118.374000px;}
.y27{bottom:120.711000px;}
.y32c{bottom:120.817500px;}
.y4e{bottom:122.449500px;}
.y2f8{bottom:122.655000px;}
.yb8{bottom:124.180500px;}
.y177{bottom:125.460000px;}
.y84{bottom:125.506500px;}
.y295{bottom:125.524500px;}
.ye9{bottom:125.526000px;}
.y12f{bottom:126.259500px;}
.y267{bottom:126.652500px;}
.y116{bottom:131.658000px;}
.y1e7{bottom:132.517500px;}
.y233{bottom:133.846500px;}
.y2c0{bottom:135.949500px;}
.y32b{bottom:138.078000px;}
.y26{bottom:138.600000px;}
.y2f7{bottom:139.915500px;}
.y4d{bottom:141.279000px;}
.yb7{bottom:143.010000px;}
.y83{bottom:144.336000px;}
.y294{bottom:144.354000px;}
.ye8{bottom:144.355500px;}
.y176{bottom:144.693000px;}
.y266{bottom:145.482000px;}
.y12e{bottom:145.492500px;}
.y1e5{bottom:146.715000px;}
.y115{bottom:150.891000px;}
.y232{bottom:150.910500px;}
.y32a{bottom:155.338500px;}
.y25{bottom:156.487500px;}
.y2f6{bottom:157.176000px;}
.y4c{bottom:160.108500px;}
.y1e4{bottom:160.911000px;}
.yb6{bottom:161.839500px;}
.y2bf{bottom:162.489000px;}
.y82{bottom:163.165500px;}
.y293{bottom:163.183500px;}
.ye7{bottom:163.185000px;}
.y163{bottom:163.270500px;}
.y175{bottom:163.926000px;}
.y265{bottom:164.311500px;}
.y12d{bottom:164.725500px;}
.y1ae{bottom:166.723500px;}
.y231{bottom:167.973000px;}
.y114{bottom:170.124000px;}
.y329{bottom:172.599000px;}
.y24{bottom:174.375000px;}
.y2f5{bottom:174.436500px;}
.y1ad{bottom:174.942000px;}
.y1e6{bottom:175.108500px;}
.y4b{bottom:178.938000px;}
.y2be{bottom:180.063000px;}
.yb5{bottom:180.669000px;}
.y81{bottom:181.995000px;}
.y292{bottom:182.013000px;}
.ye6{bottom:182.014500px;}
.y162{bottom:182.100000px;}
.y264{bottom:183.141000px;}
.y174{bottom:183.159000px;}
.y12c{bottom:183.958500px;}
.y230{bottom:185.035500px;}
.y1e3{bottom:189.304500px;}
.y328{bottom:189.858000px;}
.y2f4{bottom:191.697000px;}
.y23{bottom:192.264000px;}
.y10a{bottom:192.553500px;}
.y2bd{bottom:197.637000px;}
.y4a{bottom:197.767500px;}
.yb4{bottom:199.497000px;}
.y1ac{bottom:199.599000px;}
.y80{bottom:200.824500px;}
.y291{bottom:200.842500px;}
.ye5{bottom:200.844000px;}
.y161{bottom:200.929500px;}
.y263{bottom:201.970500px;}
.y22f{bottom:202.099500px;}
.y173{bottom:202.392000px;}
.y12b{bottom:203.191500px;}
.y1e0{bottom:203.502000px;}
.y327{bottom:207.118500px;}
.y1ab{bottom:207.819000px;}
.y2f3{bottom:208.957500px;}
.y22{bottom:210.151500px;}
.y49{bottom:216.597000px;}
.y1e2{bottom:217.698000px;}
.y1df{bottom:217.699500px;}
.yb3{bottom:218.326500px;}
.y22e{bottom:219.162000px;}
.y290{bottom:219.672000px;}
.y160{bottom:219.759000px;}
.y262{bottom:220.800000px;}
.y172{bottom:221.625000px;}
.y12a{bottom:222.424500px;}
.y7f{bottom:224.137500px;}
.ye4{bottom:224.157000px;}
.y2bc{bottom:224.178000px;}
.y326{bottom:224.379000px;}
.y2f2{bottom:226.218000px;}
.y21{bottom:228.039000px;}
.y1e1{bottom:231.895500px;}
.y1aa{bottom:232.788000px;}
.y22d{bottom:236.224500px;}
.y28f{bottom:238.501500px;}
.y15f{bottom:238.588500px;}
.y261{bottom:239.629500px;}
.y48{bottom:239.910000px;}
.y171{bottom:240.856500px;}
.yb2{bottom:241.639500px;}
.y129{bottom:241.657500px;}
.y2bb{bottom:241.752000px;}
.y2f1{bottom:243.478500px;}
.ye3{bottom:244.330500px;}
.y1de{bottom:246.093000px;}
.y1a9{bottom:249.538500px;}
.y22c{bottom:253.288500px;}
.y28e{bottom:257.331000px;}
.y15e{bottom:257.418000px;}
.y1a8{bottom:257.758500px;}
.y7e{bottom:257.761500px;}
.y260{bottom:258.459000px;}
.y325{bottom:258.900000px;}
.y2ba{bottom:259.326000px;}
.y1dd{bottom:260.289000px;}
.y2f0{bottom:260.739000px;}
.y166{bottom:263.286000px;}
.y11b{bottom:264.087000px;}
.y1d9{bottom:267.387000px;}
.y1dc{bottom:274.486500px;}
.yb1{bottom:275.263500px;}
.y28d{bottom:276.160500px;}
.y15d{bottom:276.247500px;}
.y7d{bottom:276.591000px;}
.y2b9{bottom:276.900000px;}
.y22b{bottom:277.240500px;}
.y25f{bottom:277.288500px;}
.ye2{bottom:277.954500px;}
.y2ef{bottom:277.998000px;}
.y1d8{bottom:281.584500px;}
.y1a7{bottom:282.729000px;}
.y1db{bottom:288.682500px;}
.y324{bottom:293.421000px;}
.yb0{bottom:294.093000px;}
.y2b8{bottom:294.474000px;}
.y28c{bottom:294.990000px;}
.y15c{bottom:295.077000px;}
.y2ee{bottom:295.258500px;}
.y7c{bottom:295.420500px;}
.y25e{bottom:296.118000px;}
.ye1{bottom:296.784000px;}
.y1a6{bottom:299.479500px;}
.y1da{bottom:302.880000px;}
.y20{bottom:307.299000px;}
.y1a5{bottom:307.698000px;}
.y1a0{bottom:308.731500px;}
.y22a{bottom:308.860500px;}
.y323{bottom:310.681500px;}
.y2b7{bottom:312.049500px;}
.y2ed{bottom:312.519000px;}
.yaf{bottom:312.922500px;}
.y10c{bottom:312.959780px;}
.y28b{bottom:313.819500px;}
.y15b{bottom:313.906500px;}
.y7b{bottom:314.250000px;}
.y25d{bottom:314.947500px;}
.y47{bottom:315.060000px;}
.ye0{bottom:315.613500px;}
.y1d7{bottom:317.076000px;}
.y10b{bottom:319.219193px;}
.y1f{bottom:325.186500px;}
.y322{bottom:327.940500px;}
.y229{bottom:328.093500px;}
.y2ec{bottom:329.779500px;}
.y1d5{bottom:331.273500px;}
.yae{bottom:331.752000px;}
.y28a{bottom:332.649000px;}
.y1a4{bottom:332.668500px;}
.y15a{bottom:332.736000px;}
.y7a{bottom:333.079500px;}
.y25c{bottom:333.777000px;}
.ydf{bottom:334.443000px;}
.y2b6{bottom:338.589000px;}
.y1e{bottom:343.074000px;}
.y321{bottom:345.201000px;}
.y1d4{bottom:345.469500px;}
.y2eb{bottom:347.040000px;}
.y1a3{bottom:349.731000px;}
.yad{bottom:350.581500px;}
.y289{bottom:351.478500px;}
.y159{bottom:351.565500px;}
.y46{bottom:352.450500px;}
.y25b{bottom:352.606500px;}
.yde{bottom:353.272500px;}
.y79{bottom:356.391000px;}
.y2b5{bottom:356.634000px;}
.y1c2{bottom:359.643000px;}
.y1d6{bottom:359.667000px;}
.y1d{bottom:360.963000px;}
.y320{bottom:362.461500px;}
.y228{bottom:364.114500px;}
.y2ea{bottom:364.300500px;}
.y1a2{bottom:366.793500px;}
.yac{bottom:369.411000px;}
.y288{bottom:370.308000px;}
.y158{bottom:370.395000px;}
.y25a{bottom:371.436000px;}
.y45{bottom:371.907000px;}
.y1d3{bottom:373.863000px;}
.y2b4{bottom:374.679000px;}
.ydd{bottom:376.585500px;}
.y218{bottom:376.698948px;}
.y31f{bottom:379.722000px;}
.y2e9{bottom:381.561000px;}
.y227{bottom:382.944000px;}
.y1a1{bottom:383.857500px;}
.y1d1{bottom:388.060500px;}
.yab{bottom:388.240500px;}
.y287{bottom:389.137500px;}
.y157{bottom:389.224500px;}
.y78{bottom:390.015000px;}
.y259{bottom:390.265500px;}
.y44{bottom:391.363500px;}
.y2b3{bottom:392.724000px;}
.y217{bottom:395.958390px;}
.y31e{bottom:396.982500px;}
.y2e8{bottom:398.821500px;}
.y1c{bottom:399.024000px;}
.y19f{bottom:401.205000px;}
.y226{bottom:401.773500px;}
.y1d0{bottom:402.256500px;}
.yaa{bottom:407.070000px;}
.y286{bottom:407.967000px;}
.y156{bottom:408.054000px;}
.y77{bottom:408.844500px;}
.y258{bottom:409.095000px;}
.y19e{bottom:409.425000px;}
.ydc{bottom:410.209500px;}
.y2b2{bottom:410.769000px;}
.y43{bottom:410.821500px;}
.y31d{bottom:414.243000px;}
.y216{bottom:415.217832px;}
.y2e7{bottom:416.080500px;}
.y1cf{bottom:416.454000px;}
.y1b{bottom:416.913000px;}
.y225{bottom:420.603000px;}
.ya9{bottom:425.899500px;}
.y285{bottom:426.796500px;}
.y76{bottom:427.674000px;}
.y257{bottom:427.923000px;}
.y2b1{bottom:428.814000px;}
.ydb{bottom:429.039000px;}
.y42{bottom:430.278000px;}
.y1d2{bottom:430.650000px;}
.y155{bottom:431.367000px;}
.y31c{bottom:431.503500px;}
.y2e6{bottom:433.341000px;}
.y215{bottom:434.387094px;}
.y19d{bottom:434.394000px;}
.y1a{bottom:434.800500px;}
.y224{bottom:439.432500px;}
.y139{bottom:443.719539px;}
.ya8{bottom:444.729000px;}
.y1ce{bottom:444.847500px;}
.y284{bottom:445.626000px;}
.y75{bottom:446.503500px;}
.y256{bottom:446.752500px;}
.y2b0{bottom:446.859000px;}
.yda{bottom:447.868500px;}
.y31b{bottom:448.764000px;}
.y41{bottom:449.736000px;}
.y2e5{bottom:450.601500px;}
.y19c{bottom:451.458000px;}
.y214{bottom:453.646536px;}
.y223{bottom:458.262000px;}
.y1cc{bottom:459.043500px;}
.y138{bottom:462.888801px;}
.ya7{bottom:463.558500px;}
.y283{bottom:464.454000px;}
.y2af{bottom:464.904000px;}
.y154{bottom:464.991000px;}
.y74{bottom:465.333000px;}
.y255{bottom:465.582000px;}
.y31a{bottom:466.024500px;}
.yd9{bottom:466.698000px;}
.y2e4{bottom:467.862000px;}
.y19b{bottom:468.208500px;}
.y40{bottom:469.192500px;}
.y19{bottom:470.622000px;}
.y213{bottom:472.817301px;}
.y1cb{bottom:473.241000px;}
.y19a{bottom:476.427000px;}
.y137{bottom:482.148243px;}
.ya6{bottom:482.388000px;}
.y2ae{bottom:482.949000px;}
.y282{bottom:483.283500px;}
.y153{bottom:483.820500px;}
.y73{bottom:484.162500px;}
.y254{bottom:484.411500px;}
.y2e3{bottom:485.122500px;}
.yd8{bottom:485.527500px;}
.y1ca{bottom:487.437000px;}
.y3f{bottom:488.649000px;}
.y222{bottom:491.827500px;}
.y212{bottom:492.076743px;}
.y319{bottom:500.544000px;}
.y2ad{bottom:500.992500px;}
.y199{bottom:501.085500px;}
.ya5{bottom:501.217500px;}
.y136{bottom:501.407685px;}
.y1cd{bottom:501.634500px;}
.y281{bottom:502.113000px;}
.y2e2{bottom:502.383000px;}
.y152{bottom:502.650000px;}
.y72{bottom:502.992000px;}
.y253{bottom:503.241000px;}
.yd7{bottom:504.357000px;}
.y109{bottom:505.702500px;}
.y18{bottom:506.442000px;}
.y3e{bottom:508.107000px;}
.y198{bottom:509.304000px;}
.y221{bottom:511.060500px;}
.y211{bottom:511.336185px;}
.y1c9{bottom:515.830500px;}
.y318{bottom:517.804500px;}
.y2ac{bottom:519.037500px;}
.y2e1{bottom:519.643500px;}
.ya4{bottom:520.047000px;}
.y135{bottom:520.578450px;}
.y280{bottom:520.942500px;}
.y252{bottom:522.070500px;}
.yd6{bottom:523.186500px;}
.y17{bottom:524.329500px;}
.y108{bottom:524.532000px;}
.y71{bottom:526.305000px;}
.y3d{bottom:527.563500px;}
.y1c8{bottom:530.028000px;}
.y220{bottom:530.293500px;}
.y210{bottom:530.506950px;}
.y197{bottom:534.274500px;}
.y317{bottom:535.065000px;}
.y151{bottom:536.215500px;}
.y2e0{bottom:536.904000px;}
.y2ab{bottom:537.082500px;}
.ya3{bottom:538.876500px;}
.y27f{bottom:539.772000px;}
.y251{bottom:540.900000px;}
.yd5{bottom:542.016000px;}
.y16{bottom:542.218500px;}
.y191{bottom:543.213000px;}
.y107{bottom:543.361500px;}
.y1c7{bottom:544.224000px;}
.y70{bottom:546.480000px;}
.y3c{bottom:547.020000px;}
.y21f{bottom:549.525000px;}
.y196{bottom:551.025000px;}
.y1c3{bottom:551.322000px;}
.y316{bottom:552.325500px;}
.y2df{bottom:554.164500px;}
.y2aa{bottom:555.127500px;}
.y150{bottom:555.448500px;}
.ya2{bottom:557.706000px;}
.y1c6{bottom:558.421500px;}
.y27e{bottom:558.601500px;}
.y195{bottom:559.243500px;}
.y250{bottom:559.729500px;}
.y15{bottom:560.106000px;}
.yd4{bottom:560.845500px;}
.y105{bottom:562.191000px;}
.y3b{bottom:566.478000px;}
.y106{bottom:567.616500px;}
.y20f{bottom:569.567913px;}
.y315{bottom:569.586000px;}
.y2de{bottom:571.423500px;}
.y1ea{bottom:571.954500px;}
.y1c5{bottom:572.617500px;}
.y2a9{bottom:573.172500px;}
.y134{bottom:575.298585px;}
.ya1{bottom:576.535500px;}
.y27d{bottom:577.431000px;}
.y132{bottom:577.876500px;}
.y14{bottom:577.993500px;}
.y24f{bottom:578.559000px;}
.yd3{bottom:579.675000px;}
.y6f{bottom:580.104000px;}
.y104{bottom:581.020500px;}
.y194{bottom:584.214000px;}
.y133{bottom:584.928450px;}
.y3a{bottom:585.934500px;}
.y1c4{bottom:586.815000px;}
.y314{bottom:586.846500px;}
.y2dd{bottom:588.684000px;}
.y209{bottom:589.727436px;}
.y20e{bottom:589.727652px;}
.y2a8{bottom:591.217500px;}
.ya0{bottom:595.365000px;}
.y13{bottom:595.882500px;}
.y27c{bottom:596.260500px;}
.y24e{bottom:597.388500px;}
.yd2{bottom:598.503000px;}
.y6e{bottom:598.932000px;}
.y102{bottom:599.850000px;}
.y20b{bottom:599.896950px;}
.y193{bottom:601.276500px;}
.y20a{bottom:603.677100px;}
.y313{bottom:604.107000px;}
.y103{bottom:605.275500px;}
.y39{bottom:605.392500px;}
.y2dc{bottom:605.944500px;}
.y1c1{bottom:608.214000px;}
.y2a7{bottom:609.262500px;}
.y208{bottom:609.977355px;}
.y20d{bottom:609.977571px;}
.y12{bottom:613.770000px;}
.y9f{bottom:614.194500px;}
.y27b{bottom:615.090000px;}
.y24d{bottom:616.218000px;}
.yd1{bottom:617.332500px;}
.y6d{bottom:617.761500px;}
.y192{bottom:618.339000px;}
.y101{bottom:618.679500px;}
.y312{bottom:621.366000px;}
.y1bf{bottom:622.410000px;}
.y2db{bottom:623.205000px;}
.y38{bottom:624.849000px;}
.y2a6{bottom:627.307500px;}
.y20c{bottom:630.227490px;}
.y11{bottom:631.657500px;}
.y9e{bottom:633.022500px;}
.y27a{bottom:633.919500px;}
.y24c{bottom:635.047500px;}
.y190{bottom:636.000000px;}
.yd0{bottom:636.162000px;}
.y6c{bottom:636.591000px;}
.y1be{bottom:636.607500px;}
.y100{bottom:637.509000px;}
.y311{bottom:638.626500px;}
.y2da{bottom:640.465500px;}
.y2a5{bottom:645.352500px;}
.y10{bottom:649.546500px;}
.y207{bottom:650.477193px;}
.y1bd{bottom:650.803500px;}
.y9d{bottom:651.852000px;}
.y279{bottom:652.749000px;}
.y18f{bottom:652.750500px;}
.y24b{bottom:653.877000px;}
.ycf{bottom:654.991500px;}
.y6b{bottom:655.420500px;}
.y310{bottom:655.887000px;}
.yff{bottom:656.338500px;}
.y168{bottom:657.657410px;}
.y2d9{bottom:657.726000px;}
.y1ff{bottom:660.556734px;}
.y18e{bottom:660.970500px;}
.y37{bottom:661.173000px;}
.y2a4{bottom:663.397500px;}
.y167{bottom:664.398315px;}
.y1c0{bottom:665.001000px;}
.yf{bottom:667.434000px;}
.y9c{bottom:670.681500px;}
.y206{bottom:670.727112px;}
.y278{bottom:671.578500px;}
.y24a{bottom:672.706500px;}
.y30f{bottom:673.147500px;}
.yce{bottom:673.821000px;}
.y69{bottom:674.250000px;}
.y2d8{bottom:674.986500px;}
.yfe{bottom:675.168000px;}
.y36{bottom:677.313000px;}
.y1bc{bottom:679.197000px;}
.y6a{bottom:679.675500px;}
.y1fe{bottom:680.806653px;}
.y201{bottom:680.806950px;}
.y2a3{bottom:681.442500px;}
.y1b5{bottom:683.857500px;}
.y200{bottom:684.586950px;}
.ye{bottom:685.321500px;}
.y18d{bottom:685.939500px;}
.y9b{bottom:689.511000px;}
.y277{bottom:690.408000px;}
.y205{bottom:690.977031px;}
.y249{bottom:691.536000px;}
.y2d7{bottom:692.247000px;}
.ycd{bottom:692.650500px;}
.y68{bottom:693.079500px;}
.y1bb{bottom:693.394500px;}
.yfd{bottom:693.997500px;}
.y35{bottom:697.792500px;}
.y2a2{bottom:699.487500px;}
.y1fd{bottom:701.056572px;}
.y18c{bottom:702.690000px;}
.yd{bottom:703.210500px;}
.y1ba{bottom:707.590500px;}
.y30e{bottom:707.668500px;}
.y9a{bottom:708.340500px;}
.y276{bottom:709.237500px;}
.y2d6{bottom:709.506000px;}
.y34{bottom:709.591500px;}
.y248{bottom:710.365500px;}
.y18b{bottom:710.910000px;}
.y204{bottom:711.226950px;}
.ycc{bottom:711.480000px;}
.y67{bottom:711.909000px;}
.yfc{bottom:712.827000px;}
.y1b6{bottom:714.688500px;}
.y2a1{bottom:717.531000px;}
.y1b9{bottom:721.788000px;}
.y30d{bottom:724.929000px;}
.ya{bottom:725.581464px;}
.y2d5{bottom:726.766500px;}
.y99{bottom:727.170000px;}
.y275{bottom:728.067000px;}
.y247{bottom:729.195000px;}
.y33{bottom:730.071000px;}
.y66{bottom:730.738500px;}
.y1fc{bottom:731.387112px;}
.ycb{bottom:733.446000px;}
.y2a0{bottom:735.576000px;}
.y18a{bottom:735.879000px;}
.y1b8{bottom:735.984000px;}
.yfb{bottom:736.140000px;}
.y32{bottom:741.871500px;}
.y30c{bottom:742.189500px;}
.y2d4{bottom:744.027000px;}
.yca{bottom:745.408500px;}
.y98{bottom:745.999500px;}
.y274{bottom:746.896500px;}
.y246{bottom:748.024500px;}
.y65{bottom:749.568000px;}
.y1b7{bottom:750.181500px;}
.y1fb{bottom:751.637031px;}
.y189{bottom:752.631000px;}
.yc9{bottom:753.367500px;}
.y29f{bottom:753.621000px;}
.y30b{bottom:759.450000px;}
.y188{bottom:760.849500px;}
.y2d3{bottom:761.287500px;}
.y1f6{bottom:761.807031px;}
.y31{bottom:762.351000px;}
.y97{bottom:764.829000px;}
.y273{bottom:765.726000px;}
.y64{bottom:768.397500px;}
.y245{bottom:771.337500px;}
.y1b4{bottom:771.580500px;}
.y29e{bottom:771.666000px;}
.y1f8{bottom:771.886950px;}
.y30{bottom:774.150000px;}
.y1f7{bottom:775.666950px;}
.y30a{bottom:776.709000px;}
.yfa{bottom:778.464000px;}
.y2d2{bottom:778.548000px;}
.yc8{bottom:779.623500px;}
.y1f5{bottom:782.056950px;}
.y96{bottom:783.658500px;}
.y272{bottom:784.555500px;}
.y181{bottom:785.478000px;}
.y187{bottom:785.820000px;}
.y63{bottom:787.227000px;}
.y29d{bottom:789.711000px;}
.y1fa{bottom:792.136869px;}
.y309{bottom:793.969500px;}
.y2f{bottom:794.629500px;}
.yf9{bottom:794.901000px;}
.y2d1{bottom:795.808500px;}
.yc7{bottom:798.453000px;}
.y1b3{bottom:801.630000px;}
.y95{bottom:802.488000px;}
.y186{bottom:802.882500px;}
.y271{bottom:803.385000px;}
.y62{bottom:806.056500px;}
.y2e{bottom:806.430000px;}
.y29c{bottom:807.756000px;}
.yf6{bottom:810.186000px;}
.y308{bottom:811.230000px;}
.yf8{bottom:811.339500px;}
.y244{bottom:811.683000px;}
.y1f9{bottom:812.386788px;}
.y11d{bottom:812.982585px;}
.y2d0{bottom:813.069000px;}
.yc6{bottom:817.282500px;}
.y185{bottom:819.633000px;}
.y1b2{bottom:820.863000px;}
.y94{bottom:821.317500px;}
.y270{bottom:822.214500px;}
.y11c{bottom:822.612450px;}
.y61{bottom:824.886000px;}
.y29b{bottom:825.801000px;}
.y2d{bottom:826.908000px;}
.yf7{bottom:827.778000px;}
.y184{bottom:827.851500px;}
.y307{bottom:828.490500px;}
.y243{bottom:828.745500px;}
.y2cf{bottom:830.329500px;}
.y1f4{bottom:832.637913px;}
.yc5{bottom:836.112000px;}
.y2c{bottom:838.708500px;}
.y26f{bottom:841.044000px;}
.y60{bottom:843.715500px;}
.y29a{bottom:843.846000px;}
.yf5{bottom:844.216500px;}
.y93{bottom:844.630500px;}
.y306{bottom:845.751000px;}
.y242{bottom:845.808000px;}
.y2ce{bottom:847.590000px;}
.y183{bottom:852.510000px;}
.y1ee{bottom:852.887211px;}
.y1f3{bottom:852.887832px;}
.y2b{bottom:854.848500px;}
.yc4{bottom:854.941500px;}
.y1b1{bottom:855.390000px;}
.y26e{bottom:859.873500px;}
.yf4{bottom:860.655000px;}
.y182{bottom:860.728500px;}
.y299{bottom:861.891000px;}
.y5f{bottom:862.545000px;}
.y241{bottom:862.872000px;}
.y1f0{bottom:862.966950px;}
.y305{bottom:863.011500px;}
.y2cd{bottom:864.849000px;}
.y1ef{bottom:866.746950px;}
.y2a{bottom:870.987000px;}
.y1ed{bottom:873.046950px;}
.y1f2{bottom:873.047571px;}
.yc3{bottom:873.771000px;}
.y1b0{bottom:874.219500px;}
.yf3{bottom:877.093500px;}
.y92{bottom:878.254500px;}
.y26d{bottom:878.703000px;}
.y240{bottom:879.934500px;}
.y298{bottom:879.936000px;}
.y304{bottom:880.272000px;}
.y5e{bottom:881.374500px;}
.y2cc{bottom:882.109500px;}
.y180{bottom:885.984000px;}
.y29{bottom:891.466500px;}
.yc2{bottom:892.600500px;}
.y1af{bottom:893.049000px;}
.y1f1{bottom:893.297490px;}
.yf2{bottom:893.532000px;}
.y23f{bottom:896.997000px;}
.y91{bottom:897.084000px;}
.y26c{bottom:897.532500px;}
.y2cb{bottom:899.370000px;}
.y5d{bottom:900.204000px;}
.yf1{bottom:909.970500px;}
.y165{bottom:911.878500px;}
.y23e{bottom:914.061000px;}
.y303{bottom:914.791500px;}
.y32d{bottom:914.793000px;}
.y90{bottom:915.913500px;}
.y26b{bottom:916.362000px;}
.y17f{bottom:917.604000px;}
.y5c{bottom:919.033500px;}
.y2ca{bottom:921.114000px;}
.yf0{bottom:926.409000px;}
.y9{bottom:929.400000px;}
.y164{bottom:930.708000px;}
.y23d{bottom:931.123500px;}
.y302{bottom:932.052000px;}
.y8e{bottom:934.743000px;}
.y26a{bottom:935.191500px;}
.y17e{bottom:936.837000px;}
.y5b{bottom:937.863000px;}
.y8f{bottom:940.167000px;}
.yef{bottom:942.847500px;}
.y23c{bottom:948.186000px;}
.y8{bottom:948.228000px;}
.y301{bottom:949.312500px;}
.yc1{bottom:949.537500px;}
.y1ec{bottom:950.267085px;}
.y8d{bottom:953.572500px;}
.y1e9{bottom:954.021000px;}
.y2c9{bottom:954.738000px;}
.y17d{bottom:956.070000px;}
.y5a{bottom:956.692500px;}
.yee{bottom:959.284500px;}
.y1eb{bottom:959.896950px;}
.y23b{bottom:965.250000px;}
.y300{bottom:966.573000px;}
.y7{bottom:967.057500px;}
.yc0{bottom:968.367000px;}
.y8c{bottom:972.402000px;}
.y1e8{bottom:972.849000px;}
.y59{bottom:975.522000px;}
.yed{bottom:975.723000px;}
.y2c8{bottom:981.279000px;}
.y23a{bottom:982.312500px;}
.y2ff{bottom:983.833500px;}
.ybf{bottom:987.196500px;}
.y8b{bottom:991.231500px;}
.y17c{bottom:991.678500px;}
.y58{bottom:994.351500px;}
.y2c7{bottom:998.853000px;}
.yec{bottom:999.364500px;}
.y239{bottom:999.375000px;}
.y2fe{bottom:1001.094000px;}
.ybe{bottom:1006.026000px;}
.y8a{bottom:1010.061000px;}
.y17b{bottom:1010.508000px;}
.y6{bottom:1012.954500px;}
.y57{bottom:1013.181000px;}
.y238{bottom:1016.439000px;}
.y2fd{bottom:1018.354500px;}
.ybd{bottom:1024.855500px;}
.y2c6{bottom:1025.392500px;}
.y89{bottom:1028.890500px;}
.y17a{bottom:1029.337500px;}
.yeb{bottom:1030.983000px;}
.y56{bottom:1032.010500px;}
.y297{bottom:1033.372500px;}
.y237{bottom:1033.501500px;}
.y2fc{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.y2c5{bottom:1042.966500px;}
.ybc{bottom:1043.685000px;}
.y179{bottom:1048.167000px;}
.yea{bottom:1050.216000px;}
.y236{bottom:1050.564000px;}
.y55{bottom:1050.840000px;}
.y88{bottom:1052.202000px;}
.y2fb{bottom:1052.875500px;}
.y2c4{bottom:1060.540500px;}
.ybb{bottom:1062.513000px;}
.y11a{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y54{bottom:1069.669500px;}
.y2fa{bottom:1070.134500px;}
.y178{bottom:1072.422000px;}
.y235{bottom:1074.517500px;}
.y2c3{bottom:1078.116000px;}
.yba{bottom:1081.342500px;}
.y87{bottom:1085.826000px;}
.y2f9{bottom:1087.395000px;}
.y53{bottom:1088.499000px;}
.y3{bottom:1097.688000px;}
.y86{bottom:1104.655500px;}
.y234{bottom:1106.137500px;}
.y52{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y51{bottom:1173.397500px;}
.y202{bottom:1278.771000px;}
.h41{height:-348.391500px;}
.h1e{height:22.718452px;}
.h1d{height:22.916004px;}
.h2d{height:24.466025px;}
.h2c{height:24.678773px;}
.h8{height:25.508090px;}
.h21{height:25.622314px;}
.h20{height:25.845117px;}
.hd{height:26.110157px;}
.h40{height:26.279297px;}
.h30{height:27.593262px;}
.h2f{height:27.833203px;}
.h1f{height:28.526177px;}
.hb{height:30.461558px;}
.hc{height:30.712615px;}
.h2e{height:30.720498px;}
.h22{height:32.700150px;}
.h19{height:33.072749px;}
.ha{height:33.112997px;}
.h9{height:34.199443px;}
.h3a{height:34.574294px;}
.he{height:34.813397px;}
.h25{height:34.951465px;}
.h14{height:35.100320px;}
.h24{height:35.255391px;}
.h16{height:35.503200px;}
.h1a{height:37.551283px;}
.h18{height:38.796799px;}
.hf{height:38.896243px;}
.h10{height:39.165235px;}
.h28{height:39.418945px;}
.h11{height:39.488026px;}
.h27{height:39.761719px;}
.h15{height:41.723369px;}
.h32{height:41.801357px;}
.h1b{height:42.043500px;}
.h12{height:43.217759px;}
.h29{height:43.269961px;}
.h13{height:43.516637px;}
.h4{height:43.875290px;}
.h26{height:43.886426px;}
.h3c{height:44.150700px;}
.h3b{height:44.156700px;}
.h31{height:46.714950px;}
.h43{height:49.991558px;}
.h2{height:50.930649px;}
.h35{height:50.976150px;}
.h37{height:50.982150px;}
.h7{height:54.541601px;}
.h6{height:54.547601px;}
.h39{height:57.199200px;}
.h36{height:72.039235px;}
.h33{height:72.045235px;}
.h3d{height:72.548700px;}
.h5{height:77.792486px;}
.h34{height:83.856150px;}
.h38{height:83.862150px;}
.h17{height:83.986637px;}
.h3f{height:84.208910px;}
.h42{height:84.563618px;}
.h3{height:92.253453px;}
.h1c{height:289.511625px;}
.h3e{height:358.425000px;}
.h2a{height:423.337500px;}
.h2b{height:624.954750px;}
.h23{height:779.271000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w9{width:197.370000px;}
.w2{width:241.345133px;}
.w4{width:475.516763px;}
.w7{width:557.078025px;}
.w5{width:674.028000px;}
.w6{width:702.408600px;}
.w8{width:751.534950px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x62{left:-54.790500px;}
.x6d{left:-35.870400px;}
.x64{left:-22.930500px;}
.xa1{left:-21.679050px;}
.x55{left:-16.653488px;}
.x70{left:-4.010400px;}
.x0{left:0.000000px;}
.x57{left:4.055512px;}
.xb2{left:10.180950px;}
.x74{left:26.991825px;}
.x3{left:29.274117px;}
.xa7{left:45.910950px;}
.xa2{left:46.990950px;}
.xa9{left:52.843748px;}
.x1{left:54.000000px;}
.x2{left:58.056971px;}
.x4f{left:62.967000px;}
.x7d{left:64.582500px;}
.xa3{left:65.981286px;}
.xa0{left:70.690050px;}
.x83{left:77.313000px;}
.x7e{left:82.914000px;}
.x88{left:84.265500px;}
.x4b{left:85.446000px;}
.x8f{left:87.784500px;}
.x6c{left:95.253900px;}
.x90{left:97.683000px;}
.xaa{left:99.463220px;}
.x61{left:109.443000px;}
.x7a{left:136.669500px;}
.x4c{left:139.441500px;}
.x65{left:140.779500px;}
.x58{left:143.121000px;}
.x4e{left:144.516000px;}
.x66{left:148.653000px;}
.x80{left:158.320500px;}
.x6f{left:159.699006px;}
.x7f{left:163.680000px;}
.x81{left:165.045000px;}
.x73{left:167.919525px;}
.x89{left:169.651500px;}
.x85{left:170.653500px;}
.x84{left:174.393000px;}
.x87{left:175.885500px;}
.x9a{left:177.087000px;}
.x9f{left:178.893000px;}
.xb3{left:181.450950px;}
.x96{left:183.118500px;}
.x9e{left:184.338000px;}
.x95{left:190.107000px;}
.x6e{left:191.559600px;}
.x9d{left:195.426000px;}
.x9b{left:197.190000px;}
.xab{left:204.763432px;}
.x54{left:208.701487px;}
.x9c{left:215.595000px;}
.x6{left:249.832500px;}
.x4{left:250.897500px;}
.x52{left:258.660000px;}
.x53{left:262.809000px;}
.x5{left:271.221000px;}
.x82{left:276.181500px;}
.x8{left:282.786000px;}
.xb8{left:286.212000px;}
.xb6{left:290.320500px;}
.x86{left:291.817500px;}
.xb9{left:296.722500px;}
.xb4{left:301.222500px;}
.x5c{left:303.411000px;}
.x3d{left:305.097000px;}
.xba{left:307.240500px;}
.xb7{left:308.256000px;}
.x7{left:310.236000px;}
.xb5{left:311.355000px;}
.x50{left:313.428000px;}
.x71{left:314.491500px;}
.xbd{left:317.667000px;}
.x3e{left:320.041500px;}
.x21{left:321.973500px;}
.x44{left:323.794500px;}
.xd4{left:325.006500px;}
.xbb{left:326.587500px;}
.x97{left:328.119000px;}
.xc7{left:330.001500px;}
.xbe{left:332.611500px;}
.x22{left:336.918000px;}
.x15{left:339.142500px;}
.x72{left:342.457500px;}
.x19{left:345.087000px;}
.x1a{left:349.236000px;}
.x5d{left:352.039500px;}
.x16{left:354.087000px;}
.x4a{left:359.389500px;}
.x17{left:361.408500px;}
.x51{left:363.888000px;}
.x18{left:376.353000px;}
.xdf{left:381.658500px;}
.x39{left:382.858500px;}
.xde{left:390.420000px;}
.xe0{left:392.038500px;}
.xd6{left:394.263000px;}
.x23{left:397.954500px;}
.xd{left:405.217500px;}
.xd7{left:409.206000px;}
.xe{left:412.689000px;}
.xdd{left:414.957000px;}
.xd8{left:423.501000px;}
.x33{left:427.032000px;}
.xbf{left:428.791500px;}
.xe5{left:430.450500px;}
.xe2{left:434.226000px;}
.xd2{left:436.705500px;}
.x45{left:438.847500px;}
.x3a{left:441.430500px;}
.xc0{left:443.734500px;}
.xd3{left:451.648500px;}
.x46{left:453.792000px;}
.xc6{left:455.566500px;}
.xcc{left:459.214500px;}
.xdc{left:460.771500px;}
.x26{left:462.477000px;}
.x5e{left:465.535500px;}
.x29{left:468.835500px;}
.x56{left:475.390013px;}
.x27{left:477.420000px;}
.x2a{left:483.780000px;}
.xe1{left:494.350500px;}
.x76{left:495.649500px;}
.x36{left:498.150000px;}
.xa4{left:502.750950px;}
.x1b{left:506.550000px;}
.xb{left:510.615000px;}
.x77{left:512.349000px;}
.x1c{left:514.414500px;}
.x75{left:515.968500px;}
.xc{left:518.086500px;}
.x2d{left:519.454500px;}
.xd1{left:524.511000px;}
.x47{left:526.266000px;}
.x78{left:527.733000px;}
.xae{left:532.001176px;}
.x2e{left:534.399000px;}
.xa8{left:539.471108px;}
.xaf{left:542.441353px;}
.x79{left:543.501000px;}
.xa5{left:546.131248px;}
.xb0{left:548.921204px;}
.x31{left:553.705500px;}
.xad{left:557.020950px;}
.x32{left:568.648500px;}
.x13{left:573.705000px;}
.xcd{left:576.919500px;}
.xca{left:578.113500px;}
.x1d{left:582.153000px;}
.xc9{left:587.472000px;}
.x14{left:588.882000px;}
.x37{left:591.064500px;}
.xcb{left:593.056500px;}
.x28{left:596.083500px;}
.x3b{left:600.565500px;}
.x6a{left:601.666500px;}
.x2b{left:603.436500px;}
.x38{left:606.009000px;}
.xa6{left:613.901507px;}
.xac{left:616.731000px;}
.x2c{left:618.381000px;}
.x2f{left:632.389500px;}
.xd5{left:636.954000px;}
.x8d{left:638.647500px;}
.x59{left:641.976000px;}
.x34{left:645.570000px;}
.x30{left:647.332500px;}
.xcf{left:649.132500px;}
.x5a{left:652.440000px;}
.x8a{left:654.115500px;}
.xc8{left:655.170000px;}
.x91{left:658.806000px;}
.x35{left:660.513000px;}
.x99{left:662.572500px;}
.xc4{left:664.378500px;}
.x93{left:665.560500px;}
.x8c{left:666.979500px;}
.x63{left:668.629500px;}
.x98{left:669.895500px;}
.x92{left:671.043000px;}
.xea{left:675.921000px;}
.x7b{left:677.647500px;}
.xc5{left:679.321500px;}
.xd9{left:680.763000px;}
.x67{left:682.483500px;}
.xda{left:684.570000px;}
.x7c{left:686.907000px;}
.xef{left:691.137000px;}
.x68{left:692.947500px;}
.xbc{left:695.611500px;}
.xdb{left:699.514500px;}
.x48{left:700.837500px;}
.x9{left:703.206000px;}
.xf1{left:705.384000px;}
.x3c{left:708.333000px;}
.xa{left:710.677500px;}
.x49{left:715.782000px;}
.x94{left:718.773000px;}
.xf2{left:722.121000px;}
.xeb{left:723.201000px;}
.x6b{left:726.136500px;}
.xd0{left:729.970500px;}
.x5f{left:731.707500px;}
.xee{left:734.008500px;}
.xe6{left:736.285500px;}
.x1e{left:737.953500px;}
.xed{left:742.332000px;}
.x5b{left:743.491500px;}
.xf0{left:745.374000px;}
.xb1{left:748.808454px;}
.xec{left:750.100500px;}
.x1f{left:752.898000px;}
.xe8{left:757.366500px;}
.x69{left:760.759500px;}
.xe7{left:763.185000px;}
.xc1{left:764.523000px;}
.xce{left:765.751500px;}
.x24{left:766.930500px;}
.x43{left:769.510500px;}
.xe9{left:771.385500px;}
.x25{left:774.808500px;}
.xc2{left:781.341000px;}
.xe3{left:782.856000px;}
.xf{left:784.816500px;}
.x8e{left:785.988000px;}
.x10{left:792.289500px;}
.xc3{left:796.285500px;}
.x4d{left:798.112500px;}
.x20{left:800.454000px;}
.x60{left:803.728500px;}
.x8b{left:809.748000px;}
.x41{left:817.290000px;}
.x3f{left:819.052500px;}
.x11{left:827.070000px;}
.x42{left:832.234500px;}
.x40{left:833.997000px;}
.x12{left:836.970000px;}
.xe4{left:838.765500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v6{vertical-align:-1.109333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.565333pt;}
.va{vertical-align:14.336000pt;}
.v9{vertical-align:16.245333pt;}
.v7{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.vc{vertical-align:24.144000pt;}
.vb{vertical-align:25.237333pt;}
.v5{vertical-align:29.226667pt;}
.v3{vertical-align:35.973333pt;}
.v8{vertical-align:45.472000pt;}
.ls61{letter-spacing:-0.513024pt;}
.ls5a{letter-spacing:-0.240000pt;}
.ls90{letter-spacing:-0.229792pt;}
.ls40{letter-spacing:-0.206400pt;}
.ls96{letter-spacing:-0.197728pt;}
.ls91{letter-spacing:-0.160320pt;}
.ls5e{letter-spacing:-0.133600pt;}
.ls65{letter-spacing:-0.122912pt;}
.ls2f{letter-spacing:-0.121680pt;}
.ls95{letter-spacing:-0.112224pt;}
.ls60{letter-spacing:-0.106880pt;}
.ls5f{letter-spacing:-0.101536pt;}
.ls5d{letter-spacing:-0.096192pt;}
.ls8f{letter-spacing:-0.092800pt;}
.ls64{letter-spacing:-0.090848pt;}
.ls55{letter-spacing:-0.080864pt;}
.ls3f{letter-spacing:-0.076608pt;}
.ls93{letter-spacing:-0.069472pt;}
.ls63{letter-spacing:-0.064128pt;}
.ls57{letter-spacing:-0.058784pt;}
.ls42{letter-spacing:-0.057600pt;}
.ls76{letter-spacing:-0.057120pt;}
.ls74{letter-spacing:-0.053626pt;}
.ls5b{letter-spacing:-0.053440pt;}
.ls2d{letter-spacing:-0.049795pt;}
.ls59{letter-spacing:-0.038400pt;}
.ls92{letter-spacing:-0.037408pt;}
.ls56{letter-spacing:-0.032064pt;}
.ls58{letter-spacing:-0.026720pt;}
.ls2e{letter-spacing:-0.024960pt;}
.ls9a{letter-spacing:-0.021376pt;}
.ls75{letter-spacing:-0.020160pt;}
.ls44{letter-spacing:-0.019200pt;}
.ls30{letter-spacing:-0.018720pt;}
.ls5c{letter-spacing:-0.016032pt;}
.ls9c{letter-spacing:-0.014400pt;}
.ls98{letter-spacing:-0.010688pt;}
.ls99{letter-spacing:-0.005344pt;}
.ls41{letter-spacing:-0.004800pt;}
.ls77{letter-spacing:-0.003360pt;}
.lsa{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.000387pt;}
.ls9e{letter-spacing:0.000503pt;}
.ls4{letter-spacing:0.000533pt;}
.lsc{letter-spacing:0.000540pt;}
.ls8b{letter-spacing:0.000711pt;}
.lsa5{letter-spacing:0.000921pt;}
.ls54{letter-spacing:0.001007pt;}
.lsac{letter-spacing:0.001026pt;}
.lsb2{letter-spacing:0.001156pt;}
.lsb1{letter-spacing:0.001288pt;}
.lsa4{letter-spacing:0.001335pt;}
.lsb3{letter-spacing:0.001512pt;}
.lsab{letter-spacing:0.001552pt;}
.ls7{letter-spacing:0.001718pt;}
.ls6{letter-spacing:0.001735pt;}
.lsf{letter-spacing:0.001774pt;}
.lsb6{letter-spacing:0.002525pt;}
.ls81{letter-spacing:0.003330pt;}
.ls6c{letter-spacing:0.003360pt;}
.ls79{letter-spacing:0.003405pt;}
.ls8c{letter-spacing:0.003635pt;}
.lsd{letter-spacing:0.003733pt;}
.ls80{letter-spacing:0.004267pt;}
.ls3c{letter-spacing:0.004800pt;}
.lse{letter-spacing:0.005338pt;}
.ls3e{letter-spacing:0.005344pt;}
.ls28{letter-spacing:0.006240pt;}
.ls6d{letter-spacing:0.006720pt;}
.ls2b{letter-spacing:0.009360pt;}
.ls39{letter-spacing:0.009600pt;}
.ls6a{letter-spacing:0.010080pt;}
.ls23{letter-spacing:0.012480pt;}
.ls4d{letter-spacing:0.014400pt;}
.ls27{letter-spacing:0.015600pt;}
.ls4f{letter-spacing:0.016032pt;}
.ls72{letter-spacing:0.016800pt;}
.ls25{letter-spacing:0.018720pt;}
.ls38{letter-spacing:0.019200pt;}
.ls6e{letter-spacing:0.020160pt;}
.ls88{letter-spacing:0.021376pt;}
.ls22{letter-spacing:0.021840pt;}
.ls71{letter-spacing:0.023520pt;}
.ls36{letter-spacing:0.024000pt;}
.ls1f{letter-spacing:0.024898pt;}
.ls86{letter-spacing:0.026720pt;}
.ls67{letter-spacing:0.026813pt;}
.ls6f{letter-spacing:0.026880pt;}
.ls29{letter-spacing:0.028080pt;}
.ls34{letter-spacing:0.028800pt;}
.ls45{letter-spacing:0.029792pt;}
.ls70{letter-spacing:0.030240pt;}
.ls85{letter-spacing:0.032064pt;}
.ls3a{letter-spacing:0.033600pt;}
.ls2a{letter-spacing:0.034320pt;}
.ls73{letter-spacing:0.036960pt;}
.ls52{letter-spacing:0.037408pt;}
.ls26{letter-spacing:0.037440pt;}
.ls31{letter-spacing:0.038304pt;}
.ls4c{letter-spacing:0.038400pt;}
.ls4b{letter-spacing:0.042752pt;}
.ls37{letter-spacing:0.043200pt;}
.ls2c{letter-spacing:0.046800pt;}
.ls87{letter-spacing:0.048096pt;}
.ls3b{letter-spacing:0.052800pt;}
.ls48{letter-spacing:0.058784pt;}
.ls3d{letter-spacing:0.062400pt;}
.ls8a{letter-spacing:0.064128pt;}
.ls24{letter-spacing:0.071760pt;}
.ls53{letter-spacing:0.074816pt;}
.ls6b{letter-spacing:0.077280pt;}
.ls51{letter-spacing:0.080160pt;}
.ls8d{letter-spacing:0.090848pt;}
.ls4e{letter-spacing:0.096000pt;}
.ls89{letter-spacing:0.096192pt;}
.ls21{letter-spacing:0.102357pt;}
.ls35{letter-spacing:0.110400pt;}
.ls20{letter-spacing:0.110656pt;}
.ls69{letter-spacing:0.113210pt;}
.ls68{letter-spacing:0.119168pt;}
.ls4a{letter-spacing:0.122912pt;}
.ls94{letter-spacing:0.138944pt;}
.ls50{letter-spacing:0.144288pt;}
.ls47{letter-spacing:0.148960pt;}
.ls33{letter-spacing:0.157472pt;}
.ls49{letter-spacing:0.160320pt;}
.ls46{letter-spacing:0.161728pt;}
.ls32{letter-spacing:0.170240pt;}
.ls8e{letter-spacing:0.171008pt;}
.ls84{letter-spacing:0.380773pt;}
.ls83{letter-spacing:0.386106pt;}
.ls7c{letter-spacing:0.447791pt;}
.ls7f{letter-spacing:0.482502pt;}
.ls43{letter-spacing:0.484800pt;}
.ls78{letter-spacing:0.487835pt;}
.ls17{letter-spacing:0.504525pt;}
.ls7b{letter-spacing:0.570745pt;}
.ls7d{letter-spacing:0.576078pt;}
.ls7a{letter-spacing:0.595447pt;}
.ls16{letter-spacing:0.993435pt;}
.lsb{letter-spacing:1.133683pt;}
.ls2{letter-spacing:1.654338pt;}
.ls66{letter-spacing:1.998656pt;}
.ls9b{letter-spacing:2.088000pt;}
.ls1{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.665203pt;}
.ls97{letter-spacing:3.286560pt;}
.ls15{letter-spacing:3.661775pt;}
.ls62{letter-spacing:4.879072pt;}
.ls3{letter-spacing:9.298933pt;}
.lsa9{letter-spacing:10.466569pt;}
.ls9{letter-spacing:10.626533pt;}
.ls82{letter-spacing:11.138393pt;}
.lsb7{letter-spacing:11.201263pt;}
.lsae{letter-spacing:11.320990pt;}
.lsb5{letter-spacing:11.582215pt;}
.lsa2{letter-spacing:11.771296pt;}
.lsa1{letter-spacing:11.773122pt;}
.lsa7{letter-spacing:11.865208pt;}
.ls1b{letter-spacing:11.950302pt;}
.lsb0{letter-spacing:11.951710pt;}
.lsa0{letter-spacing:11.954133pt;}
.ls1c{letter-spacing:11.955635pt;}
.ls1a{letter-spacing:11.956053pt;}
.ls9f{letter-spacing:11.959467pt;}
.lsa3{letter-spacing:11.972583pt;}
.lsb9{letter-spacing:11.975328pt;}
.lsa8{letter-spacing:12.060962pt;}
.lsad{letter-spacing:12.085245pt;}
.lsa6{letter-spacing:12.139941pt;}
.lsb4{letter-spacing:12.167124pt;}
.lsb8{letter-spacing:12.520617pt;}
.ls1e{letter-spacing:12.528078pt;}
.ls1d{letter-spacing:12.533411pt;}
.ls19{letter-spacing:13.124065pt;}
.ls10{letter-spacing:13.283758pt;}
.ls12{letter-spacing:13.284237pt;}
.ls7e{letter-spacing:13.923096pt;}
.lsaf{letter-spacing:14.528460pt;}
.lsaa{letter-spacing:14.612678pt;}
.ls11{letter-spacing:14.734694pt;}
.ls13{letter-spacing:15.400429pt;}
.ls9d{letter-spacing:16.794825pt;}
.ls5{letter-spacing:55.787733pt;}
.ls8{letter-spacing:57.174803pt;}
.ls14{letter-spacing:89.320429pt;}
.ws77{word-spacing:-31.200000pt;}
.wsa9{word-spacing:-13.376032pt;}
.wsaa{word-spacing:-13.360000pt;}
.ws30{word-spacing:-13.283467pt;}
.ws4{word-spacing:-12.760670pt;}
.ws8c{word-spacing:-12.000000pt;}
.ws1a{word-spacing:-11.955200pt;}
.ws8b{word-spacing:-10.810240pt;}
.wsa8{word-spacing:-10.801728pt;}
.ws2a{word-spacing:-10.626800pt;}
.ws5e{word-spacing:-10.095467pt;}
.ws9{word-spacing:-9.298400pt;}
.wsda{word-spacing:-8.400000pt;}
.ws76{word-spacing:-7.800000pt;}
.wsd9{word-spacing:-7.567168pt;}
.ws75{word-spacing:-7.026656pt;}
.ws198{word-spacing:-2.869248pt;}
.ws199{word-spacing:-2.677965pt;}
.ws11f{word-spacing:-2.603559pt;}
.ws110{word-spacing:-2.550426pt;}
.ws112{word-spacing:-2.497292pt;}
.ws168{word-spacing:-2.391024pt;}
.ws7a{word-spacing:-2.343219pt;}
.ws111{word-spacing:-2.337890pt;}
.ws2e{word-spacing:-2.284756pt;}
.ws2f{word-spacing:-2.231622pt;}
.wscf{word-spacing:-2.196384pt;}
.ws18a{word-spacing:-2.056294pt;}
.ws3e{word-spacing:-2.019087pt;}
.ws188{word-spacing:-1.965953pt;}
.ws1aa{word-spacing:-1.912832pt;}
.ws10d{word-spacing:-1.912819pt;}
.ws140{word-spacing:-1.838336pt;}
.ws10e{word-spacing:-1.806551pt;}
.ws7d{word-spacing:-1.787760pt;}
.ws80{word-spacing:-1.784640pt;}
.ws7f{word-spacing:-1.778400pt;}
.ws10b{word-spacing:-1.753418pt;}
.ws7e{word-spacing:-1.740960pt;}
.ws155{word-spacing:-1.700284pt;}
.ws6{word-spacing:-1.696326pt;}
.ws10f{word-spacing:-1.647150pt;}
.ws141{word-spacing:-1.581824pt;}
.wsa7{word-spacing:-1.540882pt;}
.ws13f{word-spacing:-1.501664pt;}
.ws1ab{word-spacing:-1.482445pt;}
.wse9{word-spacing:-1.481760pt;}
.wse8{word-spacing:-1.478400pt;}
.wsea{word-spacing:-1.475040pt;}
.wse7{word-spacing:-1.471680pt;}
.wse5{word-spacing:-1.458240pt;}
.wse6{word-spacing:-1.451520pt;}
.ws17a{word-spacing:-1.328347pt;}
.ws17c{word-spacing:-1.319800pt;}
.ws125{word-spacing:-1.243341pt;}
.ws15a{word-spacing:-1.222079pt;}
.wsc4{word-spacing:-1.202400pt;}
.ws5{word-spacing:-1.175671pt;}
.wsc7{word-spacing:-1.100864pt;}
.ws126{word-spacing:-1.052058pt;}
.ws1c6{word-spacing:-1.004237pt;}
.wsbc{word-spacing:-0.924512pt;}
.ws48{word-spacing:-0.903276pt;}
.ws1bd{word-spacing:-0.860774pt;}
.wsbd{word-spacing:-0.855040pt;}
.ws49{word-spacing:-0.850142pt;}
.ws15e{word-spacing:-0.797008pt;}
.ws1c7{word-spacing:-0.765133pt;}
.ws123{word-spacing:-0.743874pt;}
.ws189{word-spacing:-0.621670pt;}
.ws15f{word-spacing:-0.584473pt;}
.ws195{word-spacing:-0.573850pt;}
.ws13e{word-spacing:-0.534400pt;}
.ws1c5{word-spacing:-0.526029pt;}
.ws58{word-spacing:-0.478205pt;}
.ws1b0{word-spacing:-0.430387pt;}
.ws59{word-spacing:-0.425071pt;}
.ws1a9{word-spacing:-0.382566pt;}
.ws2c{word-spacing:-0.371937pt;}
.ws1cd{word-spacing:-0.334746pt;}
.ws166{word-spacing:-0.323933pt;}
.ws2b{word-spacing:-0.318803pt;}
.wsd0{word-spacing:-0.315296pt;}
.wsc5{word-spacing:-0.299264pt;}
.ws1b3{word-spacing:-0.286925pt;}
.ws134{word-spacing:-0.283232pt;}
.ws131{word-spacing:-0.272544pt;}
.ws38{word-spacing:-0.265669pt;}
.wsa6{word-spacing:-0.240480pt;}
.ws90{word-spacing:-0.239104pt;}
.wsc6{word-spacing:-0.224448pt;}
.ws45{word-spacing:-0.212535pt;}
.ws1f{word-spacing:-0.191283pt;}
.ws43{word-spacing:-0.159402pt;}
.ws17{word-spacing:-0.143462pt;}
.ws154{word-spacing:-0.138955pt;}
.ws163{word-spacing:-0.135554pt;}
.ws17d{word-spacing:-0.127318pt;}
.wsd8{word-spacing:-0.125203pt;}
.ws15b{word-spacing:-0.124824pt;}
.ws15c{word-spacing:-0.123414pt;}
.ws92{word-spacing:-0.114912pt;}
.wsb6{word-spacing:-0.110656pt;}
.ws44{word-spacing:-0.106268pt;}
.ws14e{word-spacing:-0.105761pt;}
.ws79{word-spacing:-0.095642pt;}
.ws149{word-spacing:-0.089474pt;}
.ws180{word-spacing:-0.088920pt;}
.ws182{word-spacing:-0.087532pt;}
.ws181{word-spacing:-0.084577pt;}
.wsdc{word-spacing:-0.080438pt;}
.ws135{word-spacing:-0.074816pt;}
.ws7b{word-spacing:-0.074693pt;}
.ws12f{word-spacing:-0.053440pt;}
.ws28{word-spacing:-0.053134pt;}
.ws153{word-spacing:-0.050321pt;}
.wscc{word-spacing:-0.048096pt;}
.ws22{word-spacing:-0.047821pt;}
.ws1b6{word-spacing:-0.024806pt;}
.ws115{word-spacing:-0.006775pt;}
.ws1b5{word-spacing:-0.005999pt;}
.wsad{word-spacing:-0.005470pt;}
.ws129{word-spacing:-0.005344pt;}
.wsb5{word-spacing:-0.005341pt;}
.wsae{word-spacing:-0.004140pt;}
.ws1c8{word-spacing:-0.003942pt;}
.ws8{word-spacing:-0.003566pt;}
.ws1b9{word-spacing:-0.003490pt;}
.ws1b4{word-spacing:-0.003430pt;}
.ws1a5{word-spacing:-0.003081pt;}
.ws1a4{word-spacing:-0.002944pt;}
.ws1ce{word-spacing:-0.002159pt;}
.ws14c{word-spacing:-0.001378pt;}
.wsb3{word-spacing:-0.001119pt;}
.wsb2{word-spacing:-0.001089pt;}
.ws1{word-spacing:-0.001082pt;}
.ws29{word-spacing:-0.000772pt;}
.ws0{word-spacing:0.000000pt;}
.ws1bb{word-spacing:0.000162pt;}
.wsaf{word-spacing:0.000800pt;}
.wsb4{word-spacing:0.003564pt;}
.wsd4{word-spacing:0.005344pt;}
.ws128{word-spacing:0.026720pt;}
.wsd3{word-spacing:0.037408pt;}
.wsd2{word-spacing:0.042752pt;}
.ws1e{word-spacing:0.047821pt;}
.ws3f{word-spacing:0.053134pt;}
.ws133{word-spacing:0.058784pt;}
.wsc2{word-spacing:0.062400pt;}
.ws81{word-spacing:0.068640pt;}
.ws86{word-spacing:0.078000pt;}
.ws85{word-spacing:0.084240pt;}
.ws87{word-spacing:0.087360pt;}
.wsdb{word-spacing:0.095642pt;}
.ws88{word-spacing:0.096720pt;}
.wsa5{word-spacing:0.100800pt;}
.ws160{word-spacing:0.105305pt;}
.ws4e{word-spacing:0.106268pt;}
.ws161{word-spacing:0.110359pt;}
.ws148{word-spacing:0.110400pt;}
.wsee{word-spacing:0.110880pt;}
.ws12d{word-spacing:0.122912pt;}
.ws183{word-spacing:0.130593pt;}
.ws184{word-spacing:0.133446pt;}
.ws94{word-spacing:0.134400pt;}
.ws91{word-spacing:0.143462pt;}
.wscd{word-spacing:0.144288pt;}
.ws132{word-spacing:0.149632pt;}
.ws173{word-spacing:0.151607pt;}
.ws14a{word-spacing:0.151796pt;}
.ws3b{word-spacing:0.159402pt;}
.wsa{word-spacing:0.185968pt;}
.ws78{word-spacing:0.191283pt;}
.ws14b{word-spacing:0.196211pt;}
.ws130{word-spacing:0.197728pt;}
.ws3d{word-spacing:0.212535pt;}
.ws82{word-spacing:0.227760pt;}
.ws177{word-spacing:0.230180pt;}
.ws179{word-spacing:0.233799pt;}
.ws178{word-spacing:0.237330pt;}
.ws8f{word-spacing:0.239104pt;}
.ws12c{word-spacing:0.245824pt;}
.wsc{word-spacing:0.260355pt;}
.ws25{word-spacing:0.265669pt;}
.ws136{word-spacing:0.283232pt;}
.wsac{word-spacing:0.286925pt;}
.ws13c{word-spacing:0.309952pt;}
.ws12b{word-spacing:0.315296pt;}
.ws63{word-spacing:0.318803pt;}
.ws190{word-spacing:0.334746pt;}
.ws95{word-spacing:0.369600pt;}
.ws64{word-spacing:0.371937pt;}
.wsc1{word-spacing:0.398400pt;}
.ws13d{word-spacing:0.411488pt;}
.ws19{word-spacing:0.430387pt;}
.ws9d{word-spacing:0.465600pt;}
.ws1b{word-spacing:0.468699pt;}
.ws9e{word-spacing:0.489600pt;}
.wsab{word-spacing:0.526029pt;}
.ws11e{word-spacing:0.531339pt;}
.ws117{word-spacing:0.532267pt;}
.ws9f{word-spacing:0.542400pt;}
.wse3{word-spacing:0.557760pt;}
.wse4{word-spacing:0.567840pt;}
.ws1c9{word-spacing:0.573850pt;}
.ws70{word-spacing:0.593826pt;}
.ws6c{word-spacing:0.595959pt;}
.wsf5{word-spacing:0.598400pt;}
.ws6b{word-spacing:0.606532pt;}
.ws6f{word-spacing:0.611174pt;}
.ws6d{word-spacing:0.614485pt;}
.wse2{word-spacing:0.621600pt;}
.ws191{word-spacing:0.621670pt;}
.ws51{word-spacing:0.637606pt;}
.ws14f{word-spacing:0.668408pt;}
.ws124{word-spacing:0.690740pt;}
.ws193{word-spacing:0.765133pt;}
.ws39{word-spacing:0.797008pt;}
.wsce{word-spacing:0.812288pt;}
.ws19e{word-spacing:0.812954pt;}
.ws175{word-spacing:0.813185pt;}
.ws176{word-spacing:0.815101pt;}
.ws174{word-spacing:0.815668pt;}
.wsc9{word-spacing:0.822976pt;}
.wsc8{word-spacing:0.855040pt;}
.ws1cb{word-spacing:0.860774pt;}
.ws4d{word-spacing:0.903276pt;}
.ws170{word-spacing:0.956410pt;}
.ws19a{word-spacing:1.004237pt;}
.ws3a{word-spacing:1.009543pt;}
.ws13a{word-spacing:1.052768pt;}
.ws13b{word-spacing:1.068800pt;}
.ws97{word-spacing:1.080000pt;}
.ws98{word-spacing:1.094400pt;}
.ws96{word-spacing:1.099200pt;}
.ws54{word-spacing:1.115811pt;}
.ws83{word-spacing:1.132560pt;}
.ws84{word-spacing:1.141920pt;}
.ws15{word-spacing:1.147699pt;}
.ws53{word-spacing:1.168945pt;}
.ws1d{word-spacing:1.195520pt;}
.ws27{word-spacing:1.222079pt;}
.wsde{word-spacing:1.226400pt;}
.wse1{word-spacing:1.233120pt;}
.wsdf{word-spacing:1.236480pt;}
.wse0{word-spacing:1.256640pt;}
.ws16{word-spacing:1.291162pt;}
.ws73{word-spacing:1.328347pt;}
.ws68{word-spacing:1.381481pt;}
.ws5b{word-spacing:1.434614pt;}
.ws121{word-spacing:1.434624pt;}
.ws1a1{word-spacing:1.530266pt;}
.ws152{word-spacing:1.647150pt;}
.ws165{word-spacing:1.651234pt;}
.ws151{word-spacing:1.661872pt;}
.ws192{word-spacing:1.769370pt;}
.wsb{word-spacing:1.785293pt;}
.ws60{word-spacing:1.806551pt;}
.ws66{word-spacing:1.859685pt;}
.ws162{word-spacing:1.912819pt;}
.ws122{word-spacing:1.912832pt;}
.ws18d{word-spacing:1.960653pt;}
.ws55{word-spacing:1.961850pt;}
.ws56{word-spacing:1.965953pt;}
.ws5a{word-spacing:2.019087pt;}
.ws9b{word-spacing:2.054400pt;}
.ws1bf{word-spacing:2.056294pt;}
.ws9c{word-spacing:2.064000pt;}
.wsf0{word-spacing:2.072221pt;}
.ws142{word-spacing:2.073600pt;}
.ws143{word-spacing:2.088000pt;}
.wsec{word-spacing:2.096640pt;}
.wsb1{word-spacing:2.125355pt;}
.wseb{word-spacing:2.126880pt;}
.wsed{word-spacing:2.133600pt;}
.ws6a{word-spacing:2.151936pt;}
.ws74{word-spacing:2.178489pt;}
.ws17f{word-spacing:2.231622pt;}
.ws72{word-spacing:2.284756pt;}
.ws50{word-spacing:2.337890pt;}
.ws19d{word-spacing:2.343219pt;}
.wsc0{word-spacing:2.361600pt;}
.ws18e{word-spacing:2.391040pt;}
.wsbe{word-spacing:2.419200pt;}
.wsa1{word-spacing:2.424000pt;}
.wsbf{word-spacing:2.438400pt;}
.ws69{word-spacing:2.438861pt;}
.wsef{word-spacing:2.444158pt;}
.ws3c{word-spacing:2.497292pt;}
.ws196{word-spacing:2.534502pt;}
.ws14{word-spacing:2.550432pt;}
.wsb7{word-spacing:2.581152pt;}
.ws1c0{word-spacing:2.582323pt;}
.ws187{word-spacing:2.603559pt;}
.wsa0{word-spacing:2.673600pt;}
.ws18{word-spacing:2.677965pt;}
.wsca{word-spacing:2.698720pt;}
.ws157{word-spacing:2.709827pt;}
.wscb{word-spacing:2.746816pt;}
.ws1be{word-spacing:2.773606pt;}
.ws171{word-spacing:2.816095pt;}
.ws1c{word-spacing:2.821427pt;}
.ws172{word-spacing:2.839396pt;}
.ws23{word-spacing:2.861926pt;}
.ws1bc{word-spacing:2.862660pt;}
.ws1c4{word-spacing:2.863138pt;}
.ws1cc{word-spacing:2.863317pt;}
.ws1a3{word-spacing:2.863369pt;}
.ws1a7{word-spacing:2.863625pt;}
.ws1ba{word-spacing:2.864870pt;}
.ws1c3{word-spacing:2.864887pt;}
.ws1af{word-spacing:2.864905pt;}
.ws1ac{word-spacing:2.865468pt;}
.ws1b1{word-spacing:2.865749pt;}
.ws1a8{word-spacing:2.866074pt;}
.ws1c1{word-spacing:2.866389pt;}
.ws1a2{word-spacing:2.867174pt;}
.ws1ca{word-spacing:2.868651pt;}
.ws159{word-spacing:2.869229pt;}
.ws19c{word-spacing:2.869248pt;}
.ws19f{word-spacing:2.869683pt;}
.ws1a0{word-spacing:2.917069pt;}
.ws17b{word-spacing:2.999353pt;}
.ws194{word-spacing:3.012710pt;}
.ws164{word-spacing:3.028630pt;}
.ws1ae{word-spacing:3.060531pt;}
.ws15d{word-spacing:3.068109pt;}
.ws1ad{word-spacing:3.070020pt;}
.ws18f{word-spacing:3.108352pt;}
.ws42{word-spacing:3.134898pt;}
.ws24{word-spacing:3.188032pt;}
.ws89{word-spacing:3.213600pt;}
.ws31{word-spacing:3.241166pt;}
.ws8a{word-spacing:3.247920pt;}
.ws21{word-spacing:3.279017pt;}
.ws14d{word-spacing:3.294300pt;}
.ws20{word-spacing:3.299635pt;}
.wsa4{word-spacing:3.336000pt;}
.wsa3{word-spacing:3.345600pt;}
.ws4f{word-spacing:3.347434pt;}
.ws197{word-spacing:3.347456pt;}
.ws186{word-spacing:3.356737pt;}
.wsa2{word-spacing:3.360000pt;}
.ws4a{word-spacing:3.400567pt;}
.ws156{word-spacing:3.506835pt;}
.ws158{word-spacing:3.559969pt;}
.ws41{word-spacing:3.613103pt;}
.ws1a6{word-spacing:3.634381pt;}
.ws37{word-spacing:3.666237pt;}
.ws2d{word-spacing:3.772505pt;}
.ws52{word-spacing:3.878772pt;}
.ws5c{word-spacing:3.985040pt;}
.ws5f{word-spacing:4.144442pt;}
.wsc3{word-spacing:4.195040pt;}
.ws1b7{word-spacing:4.208230pt;}
.ws145{word-spacing:4.305600pt;}
.ws144{word-spacing:4.339200pt;}
.ws40{word-spacing:4.356977pt;}
.ws57{word-spacing:4.569513pt;}
.ws139{word-spacing:4.585152pt;}
.ws8e{word-spacing:4.590797pt;}
.ws146{word-spacing:4.636800pt;}
.ws147{word-spacing:4.660800pt;}
.ws47{word-spacing:4.675780pt;}
.ws19b{word-spacing:4.686438pt;}
.ws1c2{word-spacing:4.829901pt;}
.ws167{word-spacing:4.888316pt;}
.wsb8{word-spacing:4.911136pt;}
.ws8d{word-spacing:4.925542pt;}
.wsb9{word-spacing:4.937856pt;}
.ws99{word-spacing:4.948800pt;}
.ws9a{word-spacing:4.958400pt;}
.ws4c{word-spacing:4.994583pt;}
.ws36{word-spacing:5.100851pt;}
.ws65{word-spacing:5.153985pt;}
.ws35{word-spacing:5.207119pt;}
.ws16a{word-spacing:5.260253pt;}
.ws10c{word-spacing:5.313387pt;}
.ws32{word-spacing:5.366521pt;}
.ws12{word-spacing:5.393072pt;}
.ws13{word-spacing:5.467459pt;}
.ws114{word-spacing:5.595034pt;}
.ws120{word-spacing:5.632190pt;}
.ws18b{word-spacing:5.738496pt;}
.ws1b8{word-spacing:5.786317pt;}
.ws113{word-spacing:5.929779pt;}
.ws18c{word-spacing:5.977600pt;}
.ws67{word-spacing:6.057261pt;}
.ws26{word-spacing:6.110395pt;}
.ws169{word-spacing:6.482332pt;}
.wsd7{word-spacing:6.535466pt;}
.ws16e{word-spacing:6.694867pt;}
.ws16f{word-spacing:6.698021pt;}
.ws16c{word-spacing:6.700766pt;}
.ws16d{word-spacing:6.702475pt;}
.ws7c{word-spacing:6.714053pt;}
.ws4b{word-spacing:6.748001pt;}
.ws138{word-spacing:6.786880pt;}
.ws150{word-spacing:6.801135pt;}
.ws137{word-spacing:6.818944pt;}
.wsd6{word-spacing:6.907403pt;}
.ws33{word-spacing:6.960537pt;}
.wsb0{word-spacing:7.226206pt;}
.wsdd{word-spacing:7.227539pt;}
.ws1b2{word-spacing:7.268762pt;}
.ws46{word-spacing:7.279340pt;}
.wsbb{word-spacing:7.636576pt;}
.wsd5{word-spacing:7.651277pt;}
.ws10{word-spacing:7.699075pt;}
.ws16b{word-spacing:7.967336pt;}
.wsba{word-spacing:8.133568pt;}
.wsd1{word-spacing:8.144256pt;}
.ws62{word-spacing:9.245293pt;}
.ws17e{word-spacing:9.457828pt;}
.ws127{word-spacing:10.325056pt;}
.ws93{word-spacing:10.329312pt;}
.ws5d{word-spacing:10.994691pt;}
.ws61{word-spacing:13.442868pt;}
.ws185{word-spacing:13.710731pt;}
.ws7{word-spacing:13.763148pt;}
.wsd{word-spacing:14.348669pt;}
.wse{word-spacing:14.356730pt;}
.wsf{word-spacing:15.732893pt;}
.ws11{word-spacing:24.399002pt;}
.ws34{word-spacing:24.494713pt;}
.ws3{word-spacing:35.616629pt;}
.ws2{word-spacing:36.123241pt;}
.ws116{word-spacing:48.203165pt;}
.ws11a{word-spacing:76.403405pt;}
.ws118{word-spacing:76.405939pt;}
.wsf3{word-spacing:98.061577pt;}
.ws12e{word-spacing:108.755744pt;}
.ws100{word-spacing:110.014643pt;}
.ws108{word-spacing:110.019977pt;}
.ws12a{word-spacing:121.880608pt;}
.wsf4{word-spacing:133.142400pt;}
.wsf7{word-spacing:142.016230pt;}
.wsf1{word-spacing:143.094025pt;}
.wsf9{word-spacing:165.538253pt;}
.ws109{word-spacing:174.194253pt;}
.ws106{word-spacing:181.084979pt;}
.wsf8{word-spacing:190.025719pt;}
.ws11c{word-spacing:199.518569pt;}
.wsfd{word-spacing:201.740681pt;}
.ws11b{word-spacing:228.316092pt;}
.ws107{word-spacing:232.346231pt;}
.ws11d{word-spacing:234.731933pt;}
.ws10a{word-spacing:236.390434pt;}
.wsf2{word-spacing:239.042884pt;}
.ws104{word-spacing:243.868919pt;}
.ws103{word-spacing:245.302519pt;}
.wsfb{word-spacing:245.307853pt;}
.ws119{word-spacing:245.361266pt;}
.wsfc{word-spacing:245.664000pt;}
.wsff{word-spacing:247.339733pt;}
.ws105{word-spacing:285.354470pt;}
.ws6e{word-spacing:292.758938pt;}
.wsf6{word-spacing:317.394884pt;}
.ws102{word-spacing:333.557649pt;}
.wsfa{word-spacing:342.187298pt;}
.ws71{word-spacing:400.403558pt;}
.wsfe{word-spacing:418.914765pt;}
.ws101{word-spacing:441.724979pt;}
._69{margin-left:-123.013536pt;}
._6d{margin-left:-109.888672pt;}
._68{margin-left:-24.823856pt;}
._6c{margin-left:-10.848051pt;}
._12{margin-left:-6.971854pt;}
._0{margin-left:-5.942291pt;}
._7{margin-left:-4.718299pt;}
._3{margin-left:-3.421811pt;}
._8{margin-left:-2.337896pt;}
._1{margin-left:-1.175671pt;}
._2{width:0.969929pt;}
._5{width:2.045648pt;}
._15{width:3.938633pt;}
._8a{width:9.746792pt;}
._4{width:11.530016pt;}
._f{width:13.175899pt;}
._a{width:14.770924pt;}
._e{width:16.418365pt;}
._13{width:17.700304pt;}
._b{width:18.836072pt;}
._17{width:19.772525pt;}
._d{width:20.987877pt;}
._19{width:22.110415pt;}
._14{width:23.810699pt;}
._c{width:24.953079pt;}
._88{width:26.158824pt;}
._16{width:27.204540pt;}
._6{width:29.011008pt;}
._1a{width:29.974227pt;}
._18{width:32.099582pt;}
._1b{width:35.121486pt;}
._3b{width:37.306701pt;}
._3a{width:38.836968pt;}
._9{width:50.498554pt;}
._89{width:54.993920pt;}
._67{width:56.341792pt;}
._6b{width:70.321687pt;}
._5c{width:77.235582pt;}
._5d{width:81.401288pt;}
._5e{width:87.770084pt;}
._4b{width:98.038613pt;}
._47{width:110.016777pt;}
._50{width:117.447885pt;}
._66{width:120.394967pt;}
._43{width:122.646871pt;}
._55{width:123.614447pt;}
._54{width:129.050752pt;}
._62{width:136.561418pt;}
._64{width:137.595806pt;}
._53{width:141.340510pt;}
._6e{width:149.311360pt;}
._4a{width:161.060454pt;}
._48{width:163.167676pt;}
._51{width:165.043123pt;}
._60{width:172.409203pt;}
._40{width:174.723934pt;}
._6a{width:178.313248pt;}
._44{width:189.834976pt;}
._3d{width:192.574362pt;}
._61{width:199.698826pt;}
._52{width:207.183369pt;}
._63{width:209.560496pt;}
._1f{width:210.594884pt;}
._49{width:213.734515pt;}
._3f{width:218.206310pt;}
._3e{width:230.878822pt;}
._4d{width:232.142993pt;}
._1e{width:239.005090pt;}
._4f{width:247.164429pt;}
._1d{width:250.406596pt;}
._5b{width:252.705304pt;}
._30{width:260.336435pt;}
._37{width:274.300109pt;}
._85{width:278.938726pt;}
._21{width:288.550707pt;}
._81{width:292.424192pt;}
._46{width:296.595880pt;}
._24{width:300.505907pt;}
._22{width:307.726848pt;}
._70{width:311.695974pt;}
._78{width:313.794064pt;}
._58{width:320.354432pt;}
._83{width:326.143104pt;}
._42{width:328.845483pt;}
._84{width:333.227401pt;}
._5a{width:340.950251pt;}
._29{width:344.596685pt;}
._87{width:347.561574pt;}
._4c{width:348.996198pt;}
._5f{width:352.512210pt;}
._86{width:357.187085pt;}
._80{width:358.974786pt;}
._27{width:368.363622pt;}
._7d{width:369.272218pt;}
._4e{width:373.193523pt;}
._7f{width:375.823667pt;}
._79{width:376.827904pt;}
._7b{width:378.023424pt;}
._31{width:381.896909pt;}
._45{width:386.422485pt;}
._28{width:387.539763pt;}
._82{width:391.349073pt;}
._56{width:395.290377pt;}
._7a{width:397.160201pt;}
._2e{width:398.251622pt;}
._23{width:399.893299pt;}
._74{width:400.929587pt;}
._7c{width:402.345054pt;}
._73{width:405.972727pt;}
._41{width:407.867076pt;}
._75{width:409.523802pt;}
._2c{width:412.358758pt;}
._25{width:415.371469pt;}
._57{width:417.357534pt;}
._34{width:428.139622pt;}
._7e{width:431.972919pt;}
._76{width:433.160806pt;}
._72{width:435.223799pt;}
._77{width:438.837282pt;}
._1c{width:444.985056pt;}
._2b{width:455.254016pt;}
._71{width:468.022170pt;}
._33{width:470.461030pt;}
._2a{width:475.290931pt;}
._35{width:485.142016pt;}
._6f{width:495.274537pt;}
._10{width:507.961040pt;}
._2d{width:520.959795pt;}
._36{width:534.253978pt;}
._20{width:566.599117pt;}
._26{width:668.869530pt;}
._32{width:678.577152pt;}
._2f{width:702.104986pt;}
._38{width:1194.119326pt;}
._3c{width:1271.185910pt;}
._65{width:1815.979872pt;}
._39{width:1837.106656pt;}
._59{width:2178.914667pt;}
._11{width:2200.168000pt;}
.fsd{font-size:27.664000pt;}
.fs14{font-size:29.792000pt;}
.fsf{font-size:31.200000pt;}
.fs7{font-size:31.880533pt;}
.fs19{font-size:32.000000pt;}
.fs18{font-size:33.219200pt;}
.fs16{font-size:33.600000pt;}
.fse{font-size:34.736000pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fs15{font-size:37.408000pt;}
.fs10{font-size:38.755733pt;}
.fs3{font-size:40.381867pt;}
.fs4{font-size:41.988267pt;}
.fsa{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fs11{font-size:42.560000pt;}
.fs17{font-size:44.292800pt;}
.fs9{font-size:47.820800pt;}
.fs13{font-size:48.000000pt;}
.fsc{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fs12{font-size:53.440000pt;}
.fsb{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:120.948480pt;}
.y14f{bottom:-415.096107pt;}
.y14e{bottom:-381.976667pt;}
.y14d{bottom:-364.857163pt;}
.y14c{bottom:-347.817819pt;}
.y14b{bottom:-330.698315pt;}
.y14a{bottom:-313.578811pt;}
.y149{bottom:-296.538131pt;}
.y148{bottom:-279.418627pt;}
.y147{bottom:-262.299123pt;}
.y146{bottom:-245.259779pt;}
.y145{bottom:-228.140275pt;}
.y144{bottom:-211.100931pt;}
.y128{bottom:-200.388933pt;}
.y143{bottom:-193.981427pt;}
.y142{bottom:-176.861923pt;}
.y127{bottom:-167.670133pt;}
.y141{bottom:-159.822579pt;}
.y126{bottom:-152.229733pt;}
.y140{bottom:-138.781915pt;}
.y125{bottom:-136.869733pt;}
.y124{bottom:-121.429333pt;}
.y123{bottom:-106.069333pt;}
.y13f{bottom:-105.662475pt;}
.y122{bottom:-90.709333pt;}
.y13e{bottom:-88.542971pt;}
.y170{bottom:-80.415720pt;}
.y121{bottom:-75.349333pt;}
.y13d{bottom:-71.423467pt;}
.y16f{bottom:-69.552000pt;}
.y113{bottom:-66.418127pt;}
.y21d{bottom:-65.798667pt;}
.y21e{bottom:-65.798267pt;}
.y120{bottom:-59.908933pt;}
.y16e{bottom:-58.800000pt;}
.y112{bottom:-56.381867pt;}
.y21c{bottom:-50.358267pt;}
.y16d{bottom:-48.048000pt;}
.y111{bottom:-46.397867pt;}
.y11f{bottom:-44.548933pt;}
.y13c{bottom:-38.783200pt;}
.y16c{bottom:-37.296000pt;}
.y110{bottom:-36.413867pt;}
.y21b{bottom:-34.998267pt;}
.y16b{bottom:-26.487720pt;}
.y10f{bottom:-26.377607pt;}
.y11e{bottom:-24.628933pt;}
.y13b{bottom:-23.263600pt;}
.y21a{bottom:-19.638267pt;}
.y10e{bottom:-16.393607pt;}
.y16a{bottom:-15.735720pt;}
.y10d{bottom:-3.445607pt;}
.y13a{bottom:-3.343232pt;}
.y169{bottom:-1.791720pt;}
.y0{bottom:0.000000pt;}
.y219{bottom:0.283725pt;}
.yc{bottom:3.044747pt;}
.y203{bottom:3.920400pt;}
.y2{bottom:12.329438pt;}
.yb{bottom:12.578910pt;}
.y50{bottom:28.346667pt;}
.y131{bottom:78.040000pt;}
.y269{bottom:79.105333pt;}
.y119{bottom:82.838667pt;}
.y2c2{bottom:89.600000pt;}
.y28{bottom:91.398667pt;}
.y4f{bottom:92.108000pt;}
.yb9{bottom:93.645333pt;}
.y85{bottom:94.824000pt;}
.y296{bottom:94.840000pt;}
.y130{bottom:95.136000pt;}
.y268{bottom:95.842667pt;}
.y117{bottom:99.933333pt;}
.y118{bottom:104.273333pt;}
.y2c1{bottom:105.221333pt;}
.y27{bottom:107.298667pt;}
.y32c{bottom:107.393333pt;}
.y4e{bottom:108.844000pt;}
.y2f8{bottom:109.026667pt;}
.yb8{bottom:110.382667pt;}
.y177{bottom:111.520000pt;}
.y84{bottom:111.561333pt;}
.y295{bottom:111.577333pt;}
.ye9{bottom:111.578667pt;}
.y12f{bottom:112.230667pt;}
.y267{bottom:112.580000pt;}
.y116{bottom:117.029333pt;}
.y1e7{bottom:117.793333pt;}
.y233{bottom:118.974667pt;}
.y2c0{bottom:120.844000pt;}
.y32b{bottom:122.736000pt;}
.y26{bottom:123.200000pt;}
.y2f7{bottom:124.369333pt;}
.y4d{bottom:125.581333pt;}
.yb7{bottom:127.120000pt;}
.y83{bottom:128.298667pt;}
.y294{bottom:128.314667pt;}
.ye8{bottom:128.316000pt;}
.y176{bottom:128.616000pt;}
.y266{bottom:129.317333pt;}
.y12e{bottom:129.326667pt;}
.y1e5{bottom:130.413333pt;}
.y115{bottom:134.125333pt;}
.y232{bottom:134.142667pt;}
.y32a{bottom:138.078667pt;}
.y25{bottom:139.100000pt;}
.y2f6{bottom:139.712000pt;}
.y4c{bottom:142.318667pt;}
.y1e4{bottom:143.032000pt;}
.yb6{bottom:143.857333pt;}
.y2bf{bottom:144.434667pt;}
.y82{bottom:145.036000pt;}
.y293{bottom:145.052000pt;}
.ye7{bottom:145.053333pt;}
.y163{bottom:145.129333pt;}
.y175{bottom:145.712000pt;}
.y265{bottom:146.054667pt;}
.y12d{bottom:146.422667pt;}
.y1ae{bottom:148.198667pt;}
.y231{bottom:149.309333pt;}
.y114{bottom:151.221333pt;}
.y329{bottom:153.421333pt;}
.y24{bottom:155.000000pt;}
.y2f5{bottom:155.054667pt;}
.y1ad{bottom:155.504000pt;}
.y1e6{bottom:155.652000pt;}
.y4b{bottom:159.056000pt;}
.y2be{bottom:160.056000pt;}
.yb5{bottom:160.594667pt;}
.y81{bottom:161.773333pt;}
.y292{bottom:161.789333pt;}
.ye6{bottom:161.790667pt;}
.y162{bottom:161.866667pt;}
.y264{bottom:162.792000pt;}
.y174{bottom:162.808000pt;}
.y12c{bottom:163.518667pt;}
.y230{bottom:164.476000pt;}
.y1e3{bottom:168.270667pt;}
.y328{bottom:168.762667pt;}
.y2f4{bottom:170.397333pt;}
.y23{bottom:170.901333pt;}
.y10a{bottom:171.158667pt;}
.y2bd{bottom:175.677333pt;}
.y4a{bottom:175.793333pt;}
.yb4{bottom:177.330667pt;}
.y1ac{bottom:177.421333pt;}
.y80{bottom:178.510667pt;}
.y291{bottom:178.526667pt;}
.ye5{bottom:178.528000pt;}
.y161{bottom:178.604000pt;}
.y263{bottom:179.529333pt;}
.y22f{bottom:179.644000pt;}
.y173{bottom:179.904000pt;}
.y12b{bottom:180.614667pt;}
.y1e0{bottom:180.890667pt;}
.y327{bottom:184.105333pt;}
.y1ab{bottom:184.728000pt;}
.y2f3{bottom:185.740000pt;}
.y22{bottom:186.801333pt;}
.y49{bottom:192.530667pt;}
.y1e2{bottom:193.509333pt;}
.y1df{bottom:193.510667pt;}
.yb3{bottom:194.068000pt;}
.y22e{bottom:194.810667pt;}
.y290{bottom:195.264000pt;}
.y160{bottom:195.341333pt;}
.y262{bottom:196.266667pt;}
.y172{bottom:197.000000pt;}
.y12a{bottom:197.710667pt;}
.y7f{bottom:199.233333pt;}
.ye4{bottom:199.250667pt;}
.y2bc{bottom:199.269333pt;}
.y326{bottom:199.448000pt;}
.y2f2{bottom:201.082667pt;}
.y21{bottom:202.701333pt;}
.y1e1{bottom:206.129333pt;}
.y1aa{bottom:206.922667pt;}
.y22d{bottom:209.977333pt;}
.y28f{bottom:212.001333pt;}
.y15f{bottom:212.078667pt;}
.y261{bottom:213.004000pt;}
.y48{bottom:213.253333pt;}
.y171{bottom:214.094667pt;}
.yb2{bottom:214.790667pt;}
.y129{bottom:214.806667pt;}
.y2bb{bottom:214.890667pt;}
.y2f1{bottom:216.425333pt;}
.ye3{bottom:217.182667pt;}
.y1de{bottom:218.749333pt;}
.y1a9{bottom:221.812000pt;}
.y22c{bottom:225.145333pt;}
.y28e{bottom:228.738667pt;}
.y15e{bottom:228.816000pt;}
.y1a8{bottom:229.118667pt;}
.y7e{bottom:229.121333pt;}
.y260{bottom:229.741333pt;}
.y325{bottom:230.133333pt;}
.y2ba{bottom:230.512000pt;}
.y1dd{bottom:231.368000pt;}
.y2f0{bottom:231.768000pt;}
.y166{bottom:234.032000pt;}
.y11b{bottom:234.744000pt;}
.y1d9{bottom:237.677333pt;}
.y1dc{bottom:243.988000pt;}
.yb1{bottom:244.678667pt;}
.y28d{bottom:245.476000pt;}
.y15d{bottom:245.553333pt;}
.y7d{bottom:245.858667pt;}
.y2b9{bottom:246.133333pt;}
.y22b{bottom:246.436000pt;}
.y25f{bottom:246.478667pt;}
.ye2{bottom:247.070667pt;}
.y2ef{bottom:247.109333pt;}
.y1d8{bottom:250.297333pt;}
.y1a7{bottom:251.314667pt;}
.y1db{bottom:256.606667pt;}
.y324{bottom:260.818667pt;}
.yb0{bottom:261.416000pt;}
.y2b8{bottom:261.754667pt;}
.y28c{bottom:262.213333pt;}
.y15c{bottom:262.290667pt;}
.y2ee{bottom:262.452000pt;}
.y7c{bottom:262.596000pt;}
.y25e{bottom:263.216000pt;}
.ye1{bottom:263.808000pt;}
.y1a6{bottom:266.204000pt;}
.y1da{bottom:269.226667pt;}
.y20{bottom:273.154667pt;}
.y1a5{bottom:273.509333pt;}
.y1a0{bottom:274.428000pt;}
.y22a{bottom:274.542667pt;}
.y323{bottom:276.161333pt;}
.y2b7{bottom:277.377333pt;}
.y2ed{bottom:277.794667pt;}
.yaf{bottom:278.153333pt;}
.y10c{bottom:278.186471pt;}
.y28b{bottom:278.950667pt;}
.y15b{bottom:279.028000pt;}
.y7b{bottom:279.333333pt;}
.y25d{bottom:279.953333pt;}
.y47{bottom:280.053333pt;}
.ye0{bottom:280.545333pt;}
.y1d7{bottom:281.845333pt;}
.y10b{bottom:283.750393pt;}
.y1f{bottom:289.054667pt;}
.y322{bottom:291.502667pt;}
.y229{bottom:291.638667pt;}
.y2ec{bottom:293.137333pt;}
.y1d5{bottom:294.465333pt;}
.yae{bottom:294.890667pt;}
.y28a{bottom:295.688000pt;}
.y1a4{bottom:295.705333pt;}
.y15a{bottom:295.765333pt;}
.y7a{bottom:296.070667pt;}
.y25c{bottom:296.690667pt;}
.ydf{bottom:297.282667pt;}
.y2b6{bottom:300.968000pt;}
.y1e{bottom:304.954667pt;}
.y321{bottom:306.845333pt;}
.y1d4{bottom:307.084000pt;}
.y2eb{bottom:308.480000pt;}
.y1a3{bottom:310.872000pt;}
.yad{bottom:311.628000pt;}
.y289{bottom:312.425333pt;}
.y159{bottom:312.502667pt;}
.y46{bottom:313.289333pt;}
.y25b{bottom:313.428000pt;}
.yde{bottom:314.020000pt;}
.y79{bottom:316.792000pt;}
.y2b5{bottom:317.008000pt;}
.y1c2{bottom:319.682667pt;}
.y1d6{bottom:319.704000pt;}
.y1d{bottom:320.856000pt;}
.y320{bottom:322.188000pt;}
.y228{bottom:323.657333pt;}
.y2ea{bottom:323.822667pt;}
.y1a2{bottom:326.038667pt;}
.yac{bottom:328.365333pt;}
.y288{bottom:329.162667pt;}
.y158{bottom:329.240000pt;}
.y25a{bottom:330.165333pt;}
.y45{bottom:330.584000pt;}
.y1d3{bottom:332.322667pt;}
.y2b4{bottom:333.048000pt;}
.ydd{bottom:334.742667pt;}
.y218{bottom:334.843509pt;}
.y31f{bottom:337.530667pt;}
.y2e9{bottom:339.165333pt;}
.y227{bottom:340.394667pt;}
.y1a1{bottom:341.206667pt;}
.y1d1{bottom:344.942667pt;}
.yab{bottom:345.102667pt;}
.y287{bottom:345.900000pt;}
.y157{bottom:345.977333pt;}
.y78{bottom:346.680000pt;}
.y259{bottom:346.902667pt;}
.y44{bottom:347.878667pt;}
.y2b3{bottom:349.088000pt;}
.y217{bottom:351.963013pt;}
.y31e{bottom:352.873333pt;}
.y2e8{bottom:354.508000pt;}
.y1c{bottom:354.688000pt;}
.y19f{bottom:356.626667pt;}
.y226{bottom:357.132000pt;}
.y1d0{bottom:357.561333pt;}
.yaa{bottom:361.840000pt;}
.y286{bottom:362.637333pt;}
.y156{bottom:362.714667pt;}
.y77{bottom:363.417333pt;}
.y258{bottom:363.640000pt;}
.y19e{bottom:363.933333pt;}
.ydc{bottom:364.630667pt;}
.y2b2{bottom:365.128000pt;}
.y43{bottom:365.174667pt;}
.y31d{bottom:368.216000pt;}
.y216{bottom:369.082517pt;}
.y2e7{bottom:369.849333pt;}
.y1cf{bottom:370.181333pt;}
.y1b{bottom:370.589333pt;}
.y225{bottom:373.869333pt;}
.ya9{bottom:378.577333pt;}
.y285{bottom:379.374667pt;}
.y76{bottom:380.154667pt;}
.y257{bottom:380.376000pt;}
.y2b1{bottom:381.168000pt;}
.ydb{bottom:381.368000pt;}
.y42{bottom:382.469333pt;}
.y1d2{bottom:382.800000pt;}
.y155{bottom:383.437333pt;}
.y31c{bottom:383.558667pt;}
.y2e6{bottom:385.192000pt;}
.y215{bottom:386.121861pt;}
.y19d{bottom:386.128000pt;}
.y1a{bottom:386.489333pt;}
.y224{bottom:390.606667pt;}
.y139{bottom:394.417368pt;}
.ya8{bottom:395.314667pt;}
.y1ce{bottom:395.420000pt;}
.y284{bottom:396.112000pt;}
.y75{bottom:396.892000pt;}
.y256{bottom:397.113333pt;}
.y2b0{bottom:397.208000pt;}
.yda{bottom:398.105333pt;}
.y31b{bottom:398.901333pt;}
.y41{bottom:399.765333pt;}
.y2e5{bottom:400.534667pt;}
.y19c{bottom:401.296000pt;}
.y214{bottom:403.241365pt;}
.y223{bottom:407.344000pt;}
.y1cc{bottom:408.038667pt;}
.y138{bottom:411.456712pt;}
.ya7{bottom:412.052000pt;}
.y283{bottom:412.848000pt;}
.y2af{bottom:413.248000pt;}
.y154{bottom:413.325333pt;}
.y74{bottom:413.629333pt;}
.y255{bottom:413.850667pt;}
.y31a{bottom:414.244000pt;}
.yd9{bottom:414.842667pt;}
.y2e4{bottom:415.877333pt;}
.y19b{bottom:416.185333pt;}
.y40{bottom:417.060000pt;}
.y19{bottom:418.330667pt;}
.y213{bottom:420.282045pt;}
.y1cb{bottom:420.658667pt;}
.y19a{bottom:423.490667pt;}
.y137{bottom:428.576216pt;}
.ya6{bottom:428.789333pt;}
.y2ae{bottom:429.288000pt;}
.y282{bottom:429.585333pt;}
.y153{bottom:430.062667pt;}
.y73{bottom:430.366667pt;}
.y254{bottom:430.588000pt;}
.y2e3{bottom:431.220000pt;}
.yd8{bottom:431.580000pt;}
.y1ca{bottom:433.277333pt;}
.y3f{bottom:434.354667pt;}
.y222{bottom:437.180000pt;}
.y212{bottom:437.401549pt;}
.y319{bottom:444.928000pt;}
.y2ad{bottom:445.326667pt;}
.y199{bottom:445.409333pt;}
.ya5{bottom:445.526667pt;}
.y136{bottom:445.695720pt;}
.y1cd{bottom:445.897333pt;}
.y281{bottom:446.322667pt;}
.y2e2{bottom:446.562667pt;}
.y152{bottom:446.800000pt;}
.y72{bottom:447.104000pt;}
.y253{bottom:447.325333pt;}
.yd7{bottom:448.317333pt;}
.y109{bottom:449.513333pt;}
.y18{bottom:450.170667pt;}
.y3e{bottom:451.650667pt;}
.y198{bottom:452.714667pt;}
.y221{bottom:454.276000pt;}
.y211{bottom:454.521053pt;}
.y1c9{bottom:458.516000pt;}
.y318{bottom:460.270667pt;}
.y2ac{bottom:461.366667pt;}
.y2e1{bottom:461.905333pt;}
.ya4{bottom:462.264000pt;}
.y135{bottom:462.736400pt;}
.y280{bottom:463.060000pt;}
.y252{bottom:464.062667pt;}
.yd6{bottom:465.054667pt;}
.y17{bottom:466.070667pt;}
.y108{bottom:466.250667pt;}
.y71{bottom:467.826667pt;}
.y3d{bottom:468.945333pt;}
.y1c8{bottom:471.136000pt;}
.y220{bottom:471.372000pt;}
.y210{bottom:471.561733pt;}
.y197{bottom:474.910667pt;}
.y317{bottom:475.613333pt;}
.y151{bottom:476.636000pt;}
.y2e0{bottom:477.248000pt;}
.y2ab{bottom:477.406667pt;}
.ya3{bottom:479.001333pt;}
.y27f{bottom:479.797333pt;}
.y251{bottom:480.800000pt;}
.yd5{bottom:481.792000pt;}
.y16{bottom:481.972000pt;}
.y191{bottom:482.856000pt;}
.y107{bottom:482.988000pt;}
.y1c7{bottom:483.754667pt;}
.y70{bottom:485.760000pt;}
.y3c{bottom:486.240000pt;}
.y21f{bottom:488.466667pt;}
.y196{bottom:489.800000pt;}
.y1c3{bottom:490.064000pt;}
.y316{bottom:490.956000pt;}
.y2df{bottom:492.590667pt;}
.y2aa{bottom:493.446667pt;}
.y150{bottom:493.732000pt;}
.ya2{bottom:495.738667pt;}
.y1c6{bottom:496.374667pt;}
.y27e{bottom:496.534667pt;}
.y195{bottom:497.105333pt;}
.y250{bottom:497.537333pt;}
.y15{bottom:497.872000pt;}
.yd4{bottom:498.529333pt;}
.y105{bottom:499.725333pt;}
.y3b{bottom:503.536000pt;}
.y106{bottom:504.548000pt;}
.y20f{bottom:506.282589pt;}
.y315{bottom:506.298667pt;}
.y2de{bottom:507.932000pt;}
.y1ea{bottom:508.404000pt;}
.y1c5{bottom:508.993333pt;}
.y2a9{bottom:509.486667pt;}
.y134{bottom:511.376520pt;}
.ya1{bottom:512.476000pt;}
.y27d{bottom:513.272000pt;}
.y132{bottom:513.668000pt;}
.y14{bottom:513.772000pt;}
.y24f{bottom:514.274667pt;}
.yd3{bottom:515.266667pt;}
.y6f{bottom:515.648000pt;}
.y104{bottom:516.462667pt;}
.y194{bottom:519.301333pt;}
.y133{bottom:519.936400pt;}
.y3a{bottom:520.830667pt;}
.y1c4{bottom:521.613333pt;}
.y314{bottom:521.641333pt;}
.y2dd{bottom:523.274667pt;}
.y209{bottom:524.202165pt;}
.y20e{bottom:524.202357pt;}
.y2a8{bottom:525.526667pt;}
.ya0{bottom:529.213333pt;}
.y13{bottom:529.673333pt;}
.y27c{bottom:530.009333pt;}
.y24e{bottom:531.012000pt;}
.yd2{bottom:532.002667pt;}
.y6e{bottom:532.384000pt;}
.y102{bottom:533.200000pt;}
.y20b{bottom:533.241733pt;}
.y193{bottom:534.468000pt;}
.y20a{bottom:536.601867pt;}
.y313{bottom:536.984000pt;}
.y103{bottom:538.022667pt;}
.y39{bottom:538.126667pt;}
.y2dc{bottom:538.617333pt;}
.y1c1{bottom:540.634667pt;}
.y2a7{bottom:541.566667pt;}
.y208{bottom:542.202093pt;}
.y20d{bottom:542.202285pt;}
.y12{bottom:545.573333pt;}
.y9f{bottom:545.950667pt;}
.y27b{bottom:546.746667pt;}
.y24d{bottom:547.749333pt;}
.yd1{bottom:548.740000pt;}
.y6d{bottom:549.121333pt;}
.y192{bottom:549.634667pt;}
.y101{bottom:549.937333pt;}
.y312{bottom:552.325333pt;}
.y1bf{bottom:553.253333pt;}
.y2db{bottom:553.960000pt;}
.y38{bottom:555.421333pt;}
.y2a6{bottom:557.606667pt;}
.y20c{bottom:560.202213pt;}
.y11{bottom:561.473333pt;}
.y9e{bottom:562.686667pt;}
.y27a{bottom:563.484000pt;}
.y24c{bottom:564.486667pt;}
.y190{bottom:565.333333pt;}
.yd0{bottom:565.477333pt;}
.y6c{bottom:565.858667pt;}
.y1be{bottom:565.873333pt;}
.y100{bottom:566.674667pt;}
.y311{bottom:567.668000pt;}
.y2da{bottom:569.302667pt;}
.y2a5{bottom:573.646667pt;}
.y10{bottom:577.374667pt;}
.y207{bottom:578.201949pt;}
.y1bd{bottom:578.492000pt;}
.y9d{bottom:579.424000pt;}
.y279{bottom:580.221333pt;}
.y18f{bottom:580.222667pt;}
.y24b{bottom:581.224000pt;}
.ycf{bottom:582.214667pt;}
.y6b{bottom:582.596000pt;}
.y310{bottom:583.010667pt;}
.yff{bottom:583.412000pt;}
.y168{bottom:584.584364pt;}
.y2d9{bottom:584.645333pt;}
.y1ff{bottom:587.161541pt;}
.y18e{bottom:587.529333pt;}
.y37{bottom:587.709333pt;}
.y2a4{bottom:589.686667pt;}
.y167{bottom:590.576280pt;}
.y1c0{bottom:591.112000pt;}
.yf{bottom:593.274667pt;}
.y9c{bottom:596.161333pt;}
.y206{bottom:596.201877pt;}
.y278{bottom:596.958667pt;}
.y24a{bottom:597.961333pt;}
.y30f{bottom:598.353333pt;}
.yce{bottom:598.952000pt;}
.y69{bottom:599.333333pt;}
.y2d8{bottom:599.988000pt;}
.yfe{bottom:600.149333pt;}
.y36{bottom:602.056000pt;}
.y1bc{bottom:603.730667pt;}
.y6a{bottom:604.156000pt;}
.y1fe{bottom:605.161469pt;}
.y201{bottom:605.161733pt;}
.y2a3{bottom:605.726667pt;}
.y1b5{bottom:607.873333pt;}
.y200{bottom:608.521733pt;}
.ye{bottom:609.174667pt;}
.y18d{bottom:609.724000pt;}
.y9b{bottom:612.898667pt;}
.y277{bottom:613.696000pt;}
.y205{bottom:614.201805pt;}
.y249{bottom:614.698667pt;}
.y2d7{bottom:615.330667pt;}
.ycd{bottom:615.689333pt;}
.y68{bottom:616.070667pt;}
.y1bb{bottom:616.350667pt;}
.yfd{bottom:616.886667pt;}
.y35{bottom:620.260000pt;}
.y2a2{bottom:621.766667pt;}
.y1fd{bottom:623.161397pt;}
.y18c{bottom:624.613333pt;}
.yd{bottom:625.076000pt;}
.y1ba{bottom:628.969333pt;}
.y30e{bottom:629.038667pt;}
.y9a{bottom:629.636000pt;}
.y276{bottom:630.433333pt;}
.y2d6{bottom:630.672000pt;}
.y34{bottom:630.748000pt;}
.y248{bottom:631.436000pt;}
.y18b{bottom:631.920000pt;}
.y204{bottom:632.201733pt;}
.ycc{bottom:632.426667pt;}
.y67{bottom:632.808000pt;}
.yfc{bottom:633.624000pt;}
.y1b6{bottom:635.278667pt;}
.y2a1{bottom:637.805333pt;}
.y1b9{bottom:641.589333pt;}
.y30d{bottom:644.381333pt;}
.ya{bottom:644.961301pt;}
.y2d5{bottom:646.014667pt;}
.y99{bottom:646.373333pt;}
.y275{bottom:647.170667pt;}
.y247{bottom:648.173333pt;}
.y33{bottom:648.952000pt;}
.y66{bottom:649.545333pt;}
.y1fc{bottom:650.121877pt;}
.ycb{bottom:651.952000pt;}
.y2a0{bottom:653.845333pt;}
.y18a{bottom:654.114667pt;}
.y1b8{bottom:654.208000pt;}
.yfb{bottom:654.346667pt;}
.y32{bottom:659.441333pt;}
.y30c{bottom:659.724000pt;}
.y2d4{bottom:661.357333pt;}
.yca{bottom:662.585333pt;}
.y98{bottom:663.110667pt;}
.y274{bottom:663.908000pt;}
.y246{bottom:664.910667pt;}
.y65{bottom:666.282667pt;}
.y1b7{bottom:666.828000pt;}
.y1fb{bottom:668.121805pt;}
.y189{bottom:669.005333pt;}
.yc9{bottom:669.660000pt;}
.y29f{bottom:669.885333pt;}
.y30b{bottom:675.066667pt;}
.y188{bottom:676.310667pt;}
.y2d3{bottom:676.700000pt;}
.y1f6{bottom:677.161805pt;}
.y31{bottom:677.645333pt;}
.y97{bottom:679.848000pt;}
.y273{bottom:680.645333pt;}
.y64{bottom:683.020000pt;}
.y245{bottom:685.633333pt;}
.y1b4{bottom:685.849333pt;}
.y29e{bottom:685.925333pt;}
.y1f8{bottom:686.121733pt;}
.y30{bottom:688.133333pt;}
.y1f7{bottom:689.481733pt;}
.y30a{bottom:690.408000pt;}
.yfa{bottom:691.968000pt;}
.y2d2{bottom:692.042667pt;}
.yc8{bottom:692.998667pt;}
.y1f5{bottom:695.161733pt;}
.y96{bottom:696.585333pt;}
.y272{bottom:697.382667pt;}
.y181{bottom:698.202667pt;}
.y187{bottom:698.506667pt;}
.y63{bottom:699.757333pt;}
.y29d{bottom:701.965333pt;}
.y1fa{bottom:704.121661pt;}
.y309{bottom:705.750667pt;}
.y2f{bottom:706.337333pt;}
.yf9{bottom:706.578667pt;}
.y2d1{bottom:707.385333pt;}
.yc7{bottom:709.736000pt;}
.y1b3{bottom:712.560000pt;}
.y95{bottom:713.322667pt;}
.y186{bottom:713.673333pt;}
.y271{bottom:714.120000pt;}
.y62{bottom:716.494667pt;}
.y2e{bottom:716.826667pt;}
.y29c{bottom:718.005333pt;}
.yf6{bottom:720.165333pt;}
.y308{bottom:721.093333pt;}
.yf8{bottom:721.190667pt;}
.y244{bottom:721.496000pt;}
.y1f9{bottom:722.121589pt;}
.y11d{bottom:722.651187pt;}
.y2d0{bottom:722.728000pt;}
.yc6{bottom:726.473333pt;}
.y185{bottom:728.562667pt;}
.y1b2{bottom:729.656000pt;}
.y94{bottom:730.060000pt;}
.y270{bottom:730.857333pt;}
.y11c{bottom:731.211067pt;}
.y61{bottom:733.232000pt;}
.y29b{bottom:734.045333pt;}
.y2d{bottom:735.029333pt;}
.yf7{bottom:735.802667pt;}
.y184{bottom:735.868000pt;}
.y307{bottom:736.436000pt;}
.y243{bottom:736.662667pt;}
.y2cf{bottom:738.070667pt;}
.y1f4{bottom:740.122589pt;}
.yc5{bottom:743.210667pt;}
.y2c{bottom:745.518667pt;}
.y26f{bottom:747.594667pt;}
.y60{bottom:749.969333pt;}
.y29a{bottom:750.085333pt;}
.yf5{bottom:750.414667pt;}
.y93{bottom:750.782667pt;}
.y306{bottom:751.778667pt;}
.y242{bottom:751.829333pt;}
.y2ce{bottom:753.413333pt;}
.y183{bottom:757.786667pt;}
.y1ee{bottom:758.121965pt;}
.y1f3{bottom:758.122517pt;}
.y2b{bottom:759.865333pt;}
.yc4{bottom:759.948000pt;}
.y1b1{bottom:760.346667pt;}
.y26e{bottom:764.332000pt;}
.yf4{bottom:765.026667pt;}
.y182{bottom:765.092000pt;}
.y299{bottom:766.125333pt;}
.y5f{bottom:766.706667pt;}
.y241{bottom:766.997333pt;}
.y1f0{bottom:767.081733pt;}
.y305{bottom:767.121333pt;}
.y2cd{bottom:768.754667pt;}
.y1ef{bottom:770.441733pt;}
.y2a{bottom:774.210667pt;}
.y1ed{bottom:776.041733pt;}
.y1f2{bottom:776.042285pt;}
.yc3{bottom:776.685333pt;}
.y1b0{bottom:777.084000pt;}
.yf3{bottom:779.638667pt;}
.y92{bottom:780.670667pt;}
.y26d{bottom:781.069333pt;}
.y240{bottom:782.164000pt;}
.y298{bottom:782.165333pt;}
.y304{bottom:782.464000pt;}
.y5e{bottom:783.444000pt;}
.y2cc{bottom:784.097333pt;}
.y180{bottom:787.541333pt;}
.y29{bottom:792.414667pt;}
.yc2{bottom:793.422667pt;}
.y1af{bottom:793.821333pt;}
.y1f1{bottom:794.042213pt;}
.yf2{bottom:794.250667pt;}
.y23f{bottom:797.330667pt;}
.y91{bottom:797.408000pt;}
.y26c{bottom:797.806667pt;}
.y2cb{bottom:799.440000pt;}
.y5d{bottom:800.181333pt;}
.yf1{bottom:808.862667pt;}
.y165{bottom:810.558667pt;}
.y23e{bottom:812.498667pt;}
.y303{bottom:813.148000pt;}
.y32d{bottom:813.149333pt;}
.y90{bottom:814.145333pt;}
.y26b{bottom:814.544000pt;}
.y17f{bottom:815.648000pt;}
.y5c{bottom:816.918667pt;}
.y2ca{bottom:818.768000pt;}
.yf0{bottom:823.474667pt;}
.y9{bottom:826.133333pt;}
.y164{bottom:827.296000pt;}
.y23d{bottom:827.665333pt;}
.y302{bottom:828.490667pt;}
.y8e{bottom:830.882667pt;}
.y26a{bottom:831.281333pt;}
.y17e{bottom:832.744000pt;}
.y5b{bottom:833.656000pt;}
.y8f{bottom:835.704000pt;}
.yef{bottom:838.086667pt;}
.y23c{bottom:842.832000pt;}
.y8{bottom:842.869333pt;}
.y301{bottom:843.833333pt;}
.yc1{bottom:844.033333pt;}
.y1ec{bottom:844.681853pt;}
.y8d{bottom:847.620000pt;}
.y1e9{bottom:848.018667pt;}
.y2c9{bottom:848.656000pt;}
.y17d{bottom:849.840000pt;}
.y5a{bottom:850.393333pt;}
.yee{bottom:852.697333pt;}
.y1eb{bottom:853.241733pt;}
.y23b{bottom:858.000000pt;}
.y300{bottom:859.176000pt;}
.y7{bottom:859.606667pt;}
.yc0{bottom:860.770667pt;}
.y8c{bottom:864.357333pt;}
.y1e8{bottom:864.754667pt;}
.y59{bottom:867.130667pt;}
.yed{bottom:867.309333pt;}
.y2c8{bottom:872.248000pt;}
.y23a{bottom:873.166667pt;}
.y2ff{bottom:874.518667pt;}
.ybf{bottom:877.508000pt;}
.y8b{bottom:881.094667pt;}
.y17c{bottom:881.492000pt;}
.y58{bottom:883.868000pt;}
.y2c7{bottom:887.869333pt;}
.yec{bottom:888.324000pt;}
.y239{bottom:888.333333pt;}
.y2fe{bottom:889.861333pt;}
.ybe{bottom:894.245333pt;}
.y8a{bottom:897.832000pt;}
.y17b{bottom:898.229333pt;}
.y6{bottom:900.404000pt;}
.y57{bottom:900.605333pt;}
.y238{bottom:903.501333pt;}
.y2fd{bottom:905.204000pt;}
.ybd{bottom:910.982667pt;}
.y2c6{bottom:911.460000pt;}
.y89{bottom:914.569333pt;}
.y17a{bottom:914.966667pt;}
.yeb{bottom:916.429333pt;}
.y56{bottom:917.342667pt;}
.y297{bottom:918.553333pt;}
.y237{bottom:918.668000pt;}
.y2fc{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.y2c5{bottom:927.081333pt;}
.ybc{bottom:927.720000pt;}
.y179{bottom:931.704000pt;}
.yea{bottom:933.525333pt;}
.y236{bottom:933.834667pt;}
.y55{bottom:934.080000pt;}
.y88{bottom:935.290667pt;}
.y2fb{bottom:935.889333pt;}
.y2c4{bottom:942.702667pt;}
.ybb{bottom:944.456000pt;}
.y11a{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y54{bottom:950.817333pt;}
.y2fa{bottom:951.230667pt;}
.y178{bottom:953.264000pt;}
.y235{bottom:955.126667pt;}
.y2c3{bottom:958.325333pt;}
.yba{bottom:961.193333pt;}
.y87{bottom:965.178667pt;}
.y2f9{bottom:966.573333pt;}
.y53{bottom:967.554667pt;}
.y3{bottom:975.722667pt;}
.y86{bottom:981.916000pt;}
.y234{bottom:983.233333pt;}
.y52{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y51{bottom:1043.020000pt;}
.y202{bottom:1136.685333pt;}
.h41{height:-309.681333pt;}
.h1e{height:20.194180pt;}
.h1d{height:20.369781pt;}
.h2d{height:21.747578pt;}
.h2c{height:21.936688pt;}
.h8{height:22.673858pt;}
.h21{height:22.775391pt;}
.h20{height:22.973438pt;}
.hd{height:23.209028pt;}
.h40{height:23.359375pt;}
.h30{height:24.527344pt;}
.h2f{height:24.740625pt;}
.h1f{height:25.356602pt;}
.hb{height:27.076941pt;}
.hc{height:27.300102pt;}
.h2e{height:27.307109pt;}
.h22{height:29.066800pt;}
.h19{height:29.397999pt;}
.ha{height:29.433775pt;}
.h9{height:30.399505pt;}
.h3a{height:30.732706pt;}
.he{height:30.945242pt;}
.h25{height:31.067969pt;}
.h14{height:31.200285pt;}
.h24{height:31.338125pt;}
.h16{height:31.558400pt;}
.h1a{height:33.378918pt;}
.h18{height:34.486044pt;}
.hf{height:34.574438pt;}
.h10{height:34.813542pt;}
.h28{height:35.039062pt;}
.h11{height:35.100467pt;}
.h27{height:35.343750pt;}
.h15{height:37.087439pt;}
.h32{height:37.156762pt;}
.h1b{height:37.372000pt;}
.h12{height:38.415786pt;}
.h29{height:38.462187pt;}
.h13{height:38.681455pt;}
.h4{height:39.000258pt;}
.h26{height:39.010156pt;}
.h3c{height:39.245067pt;}
.h3b{height:39.250400pt;}
.h31{height:41.524400pt;}
.h43{height:44.436941pt;}
.h2{height:45.271688pt;}
.h35{height:45.312133pt;}
.h37{height:45.317467pt;}
.h7{height:48.481423pt;}
.h6{height:48.486756pt;}
.h39{height:50.843733pt;}
.h36{height:64.034876pt;}
.h33{height:64.040209pt;}
.h3d{height:64.487733pt;}
.h5{height:69.148877pt;}
.h34{height:74.538800pt;}
.h38{height:74.544133pt;}
.h17{height:74.654788pt;}
.h3f{height:74.852364pt;}
.h42{height:75.167660pt;}
.h3{height:82.003069pt;}
.h1c{height:257.343667pt;}
.h3e{height:318.600000pt;}
.h2a{height:376.300000pt;}
.h2b{height:555.515333pt;}
.h23{height:692.685333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w9{width:175.440000pt;}
.w2{width:214.529007pt;}
.w4{width:422.681567pt;}
.w7{width:495.180467pt;}
.w5{width:599.136000pt;}
.w6{width:624.363200pt;}
.w8{width:668.031067pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x62{left:-48.702667pt;}
.x6d{left:-31.884800pt;}
.x64{left:-20.382667pt;}
.xa1{left:-19.270267pt;}
.x55{left:-14.803100pt;}
.x70{left:-3.564800pt;}
.x0{left:0.000000pt;}
.x57{left:3.604900pt;}
.xb2{left:9.049733pt;}
.x74{left:23.992733pt;}
.x3{left:26.021437pt;}
.xa7{left:40.809733pt;}
.xa2{left:41.769733pt;}
.xa9{left:46.972221pt;}
.x1{left:48.000000pt;}
.x2{left:51.606197pt;}
.x4f{left:55.970667pt;}
.x7d{left:57.406667pt;}
.xa3{left:58.650032pt;}
.xa0{left:62.835600pt;}
.x83{left:68.722667pt;}
.x7e{left:73.701333pt;}
.x88{left:74.902667pt;}
.x4b{left:75.952000pt;}
.x8f{left:78.030667pt;}
.x6c{left:84.670133pt;}
.x90{left:86.829333pt;}
.xaa{left:88.411751pt;}
.x61{left:97.282667pt;}
.x7a{left:121.484000pt;}
.x4c{left:123.948000pt;}
.x65{left:125.137333pt;}
.x58{left:127.218667pt;}
.x4e{left:128.458667pt;}
.x66{left:132.136000pt;}
.x80{left:140.729333pt;}
.x6f{left:141.954672pt;}
.x7f{left:145.493333pt;}
.x81{left:146.706667pt;}
.x73{left:149.261800pt;}
.x89{left:150.801333pt;}
.x85{left:151.692000pt;}
.x84{left:155.016000pt;}
.x87{left:156.342667pt;}
.x9a{left:157.410667pt;}
.x9f{left:159.016000pt;}
.xb3{left:161.289733pt;}
.x96{left:162.772000pt;}
.x9e{left:163.856000pt;}
.x95{left:168.984000pt;}
.x6e{left:170.275200pt;}
.x9d{left:173.712000pt;}
.x9b{left:175.280000pt;}
.xab{left:182.011939pt;}
.x54{left:185.512433pt;}
.x9c{left:191.640000pt;}
.x6{left:222.073333pt;}
.x4{left:223.020000pt;}
.x52{left:229.920000pt;}
.x53{left:233.608000pt;}
.x5{left:241.085333pt;}
.x82{left:245.494667pt;}
.x8{left:251.365333pt;}
.xb8{left:254.410667pt;}
.xb6{left:258.062667pt;}
.x86{left:259.393333pt;}
.xb9{left:263.753333pt;}
.xb4{left:267.753333pt;}
.x5c{left:269.698667pt;}
.x3d{left:271.197333pt;}
.xba{left:273.102667pt;}
.xb7{left:274.005333pt;}
.x7{left:275.765333pt;}
.xb5{left:276.760000pt;}
.x50{left:278.602667pt;}
.x71{left:279.548000pt;}
.xbd{left:282.370667pt;}
.x3e{left:284.481333pt;}
.x21{left:286.198667pt;}
.x44{left:287.817333pt;}
.xd4{left:288.894667pt;}
.xbb{left:290.300000pt;}
.x97{left:291.661333pt;}
.xc7{left:293.334667pt;}
.xbe{left:295.654667pt;}
.x22{left:299.482667pt;}
.x15{left:301.460000pt;}
.x72{left:304.406667pt;}
.x19{left:306.744000pt;}
.x1a{left:310.432000pt;}
.x5d{left:312.924000pt;}
.x16{left:314.744000pt;}
.x4a{left:319.457333pt;}
.x17{left:321.252000pt;}
.x51{left:323.456000pt;}
.x18{left:334.536000pt;}
.xdf{left:339.252000pt;}
.x39{left:340.318667pt;}
.xde{left:347.040000pt;}
.xe0{left:348.478667pt;}
.xd6{left:350.456000pt;}
.x23{left:353.737333pt;}
.xd{left:360.193333pt;}
.xd7{left:363.738667pt;}
.xe{left:366.834667pt;}
.xdd{left:368.850667pt;}
.xd8{left:376.445333pt;}
.x33{left:379.584000pt;}
.xbf{left:381.148000pt;}
.xe5{left:382.622667pt;}
.xe2{left:385.978667pt;}
.xd2{left:388.182667pt;}
.x45{left:390.086667pt;}
.x3a{left:392.382667pt;}
.xc0{left:394.430667pt;}
.xd3{left:401.465333pt;}
.x46{left:403.370667pt;}
.xc6{left:404.948000pt;}
.xcc{left:408.190667pt;}
.xdc{left:409.574667pt;}
.x26{left:411.090667pt;}
.x5e{left:413.809333pt;}
.x29{left:416.742667pt;}
.x56{left:422.568900pt;}
.x27{left:424.373333pt;}
.x2a{left:430.026667pt;}
.xe1{left:439.422667pt;}
.x76{left:440.577333pt;}
.x36{left:442.800000pt;}
.xa4{left:446.889733pt;}
.x1b{left:450.266667pt;}
.xb{left:453.880000pt;}
.x77{left:455.421333pt;}
.x1c{left:457.257333pt;}
.x75{left:458.638667pt;}
.xc{left:460.521333pt;}
.x2d{left:461.737333pt;}
.xd1{left:466.232000pt;}
.x47{left:467.792000pt;}
.x78{left:469.096000pt;}
.xae{left:472.889934pt;}
.x2e{left:475.021333pt;}
.xa8{left:479.529874pt;}
.xaf{left:482.170092pt;}
.x79{left:483.112000pt;}
.xa5{left:485.449998pt;}
.xb0{left:487.929959pt;}
.x31{left:492.182667pt;}
.xad{left:495.129733pt;}
.x32{left:505.465333pt;}
.x13{left:509.960000pt;}
.xcd{left:512.817333pt;}
.xca{left:513.878667pt;}
.x1d{left:517.469333pt;}
.xc9{left:522.197333pt;}
.x14{left:523.450667pt;}
.x37{left:525.390667pt;}
.xcb{left:527.161333pt;}
.x28{left:529.852000pt;}
.x3b{left:533.836000pt;}
.x6a{left:534.814667pt;}
.x2b{left:536.388000pt;}
.x38{left:538.674667pt;}
.xa6{left:545.690228pt;}
.xac{left:548.205333pt;}
.x2c{left:549.672000pt;}
.x2f{left:562.124000pt;}
.xd5{left:566.181333pt;}
.x8d{left:567.686667pt;}
.x59{left:570.645333pt;}
.x34{left:573.840000pt;}
.x30{left:575.406667pt;}
.xcf{left:577.006667pt;}
.x5a{left:579.946667pt;}
.x8a{left:581.436000pt;}
.xc8{left:582.373333pt;}
.x91{left:585.605333pt;}
.x35{left:587.122667pt;}
.x99{left:588.953333pt;}
.xc4{left:590.558667pt;}
.x93{left:591.609333pt;}
.x8c{left:592.870667pt;}
.x63{left:594.337333pt;}
.x98{left:595.462667pt;}
.x92{left:596.482667pt;}
.xea{left:600.818667pt;}
.x7b{left:602.353333pt;}
.xc5{left:603.841333pt;}
.xd9{left:605.122667pt;}
.x67{left:606.652000pt;}
.xda{left:608.506667pt;}
.x7c{left:610.584000pt;}
.xef{left:614.344000pt;}
.x68{left:615.953333pt;}
.xbc{left:618.321333pt;}
.xdb{left:621.790667pt;}
.x48{left:622.966667pt;}
.x9{left:625.072000pt;}
.xf1{left:627.008000pt;}
.x3c{left:629.629333pt;}
.xa{left:631.713333pt;}
.x49{left:636.250667pt;}
.x94{left:638.909333pt;}
.xf2{left:641.885333pt;}
.xeb{left:642.845333pt;}
.x6b{left:645.454667pt;}
.xd0{left:648.862667pt;}
.x5f{left:650.406667pt;}
.xee{left:652.452000pt;}
.xe6{left:654.476000pt;}
.x1e{left:655.958667pt;}
.xed{left:659.850667pt;}
.x5b{left:660.881333pt;}
.xf0{left:662.554667pt;}
.xb1{left:665.607515pt;}
.xec{left:666.756000pt;}
.x1f{left:669.242667pt;}
.xe8{left:673.214667pt;}
.x69{left:676.230667pt;}
.xe7{left:678.386667pt;}
.xc1{left:679.576000pt;}
.xce{left:680.668000pt;}
.x24{left:681.716000pt;}
.x43{left:684.009333pt;}
.xe9{left:685.676000pt;}
.x25{left:688.718667pt;}
.xc2{left:694.525333pt;}
.xe3{left:695.872000pt;}
.xf{left:697.614667pt;}
.x8e{left:698.656000pt;}
.x10{left:704.257333pt;}
.xc3{left:707.809333pt;}
.x4d{left:709.433333pt;}
.x20{left:711.514667pt;}
.x60{left:714.425333pt;}
.x8b{left:719.776000pt;}
.x41{left:726.480000pt;}
.x3f{left:728.046667pt;}
.x11{left:735.173333pt;}
.x42{left:739.764000pt;}
.x40{left:741.330667pt;}
.x12{left:743.973333pt;}
.xe4{left:745.569333pt;}
}




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