
    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_007c62a03294afa923d3c21e.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_af0110478a5cd1852ab4470b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.929000;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_1883c2525a4b59ba52194db1.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a8e7af993b71cdf3aa9515ab.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e0028a04e087b550b439fa99.woff')format("woff");}.ff5{font-family:ff5;line-height:0.580000;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_71150aa80f6de12fdbc7e13b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.234000;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_f8730c3f46c11d451ef57d09.woff')format("woff");}.ff7{font-family:ff7;line-height:0.773000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_94c14d8be9d6e53c29098e24.woff')format("woff");}.ff8{font-family:ff8;line-height:0.555000;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_42e7d6652f2f9c558fe6032d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.499000;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_ff61b38aaf39a3381b5a01c6.woff')format("woff");}.ffa{font-family:ffa;line-height:0.499000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.245003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245003,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m23{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);}
.m27{transform:matrix(0.245505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245505,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.245745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245745,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m17{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);}
.m25{transform:matrix(0.246007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246007,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m11{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);}
.m44{transform:matrix(0.246509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246509,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.246749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246749,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m20{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);}
.m2e{transform:matrix(0.247011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247011,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m42{transform:matrix(0.247251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247251,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.247491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247491,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m5{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);}
.m2a{transform:matrix(0.247752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247752,0.000000,0.000000,0.250000,0,0);}
.m3c{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);}
.m21{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);}
.m45{transform:matrix(0.248254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248254,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m1b{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);}
.m14{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);}
.m1{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);}
.m2b{transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);}
.m3e{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);}
.m3d{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);}
.m37{transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249760,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);}
.m33{transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.250742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250742,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m7{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);}
.m31{transform:matrix(0.251004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251004,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.251244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251244,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m22{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);}
.m2f{transform:matrix(0.251506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251506,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.251746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251746,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m3b{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);}
.m32{transform:matrix(0.252008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252008,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.252248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252248,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m12{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);}
.m16{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);}
.m40{transform:matrix(0.252989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252989,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m13{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);}
.m39{transform:matrix(0.253251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253251,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.253491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253491,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m8{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);}
.m3a{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);}
.m19{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);}
.m34{transform:matrix(0.254255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254255,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.254495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254495,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m1d{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);}
.m2d{transform:matrix(0.254757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254757,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.254997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254997,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3f{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:55.542000px;}
.v1{vertical-align:56.676000px;}
.lsb{letter-spacing:-305.970642px;}
.ls9{letter-spacing:-240.597000px;}
.ls2b{letter-spacing:-100.019610px;}
.ls29{letter-spacing:-99.263448px;}
.ls8{letter-spacing:-85.033854px;}
.ls2e{letter-spacing:-74.035134px;}
.ls7{letter-spacing:-70.873002px;}
.ls2f{letter-spacing:-64.548738px;}
.ls2c{letter-spacing:-62.211510px;}
.ls2a{letter-spacing:-57.468312px;}
.ls6{letter-spacing:-15.741918px;}
.lsc{letter-spacing:-14.985756px;}
.ls5{letter-spacing:-10.998720px;}
.ls2d{letter-spacing:-8.661492px;}
.ls4{letter-spacing:-1.031130px;}
.lsa{letter-spacing:-0.756162px;}
.ls1{letter-spacing:0.000000px;}
.ls10{letter-spacing:1.237363px;}
.ls34{letter-spacing:1.443582px;}
.ls37{letter-spacing:2.474712px;}
.ls27{letter-spacing:2.540741px;}
.ls16{letter-spacing:2.543454px;}
.ls0{letter-spacing:2.988780px;}
.ls11{letter-spacing:11.889446px;}
.lsf{letter-spacing:11.943245px;}
.lse{letter-spacing:13.180608px;}
.ls13{letter-spacing:13.449600px;}
.ls17{letter-spacing:13.954626px;}
.ls40{letter-spacing:14.092110px;}
.ls35{letter-spacing:16.566822px;}
.ls1a{letter-spacing:16.841790px;}
.ls19{letter-spacing:16.910532px;}
.ls1d{letter-spacing:16.979274px;}
.ls28{letter-spacing:17.045478px;}
.ls42{letter-spacing:17.048016px;}
.ls1f{letter-spacing:17.049131px;}
.ls44{letter-spacing:17.116758px;}
.ls12{letter-spacing:17.143757px;}
.ls21{letter-spacing:17.182500px;}
.ls15{letter-spacing:17.185500px;}
.ls23{letter-spacing:17.188500px;}
.ls24{letter-spacing:17.188542px;}
.ls33{letter-spacing:17.254242px;}
.ls25{letter-spacing:17.318697px;}
.ls30{letter-spacing:17.322984px;}
.ls22{letter-spacing:17.388735px;}
.ls31{letter-spacing:17.391726px;}
.ls26{letter-spacing:17.393956px;}
.ls3b{letter-spacing:17.460468px;}
.ls20{letter-spacing:17.525927px;}
.ls14{letter-spacing:17.529210px;}
.ls3f{letter-spacing:17.872920px;}
.ls39{letter-spacing:17.941662px;}
.ls3c{letter-spacing:18.079146px;}
.ls1b{letter-spacing:18.285372px;}
.ls18{letter-spacing:18.491598px;}
.ls41{letter-spacing:18.697824px;}
.ls3e{letter-spacing:18.766566px;}
.ls43{letter-spacing:19.453986px;}
.ls3a{letter-spacing:20.072664px;}
.ls45{letter-spacing:20.278890px;}
.ls32{letter-spacing:21.241278px;}
.ls36{letter-spacing:21.653730px;}
.ls3d{letter-spacing:22.203666px;}
.ls1e{letter-spacing:23.166054px;}
.ls38{letter-spacing:26.534412px;}
.ls1c{letter-spacing:26.809380px;}
.ls2{letter-spacing:957.795000px;}
.lsd{letter-spacing:958.653000px;}
.ls3{letter-spacing:958.995000px;}
.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;}
}
.ws66{word-spacing:-17.185500px;}
.ws166{word-spacing:-13.449600px;}
.ws1fe{word-spacing:-6.461748px;}
.ws1fb{word-spacing:-3.917853px;}
.wsd5{word-spacing:-3.853323px;}
.ws1f{word-spacing:-3.780810px;}
.wsc7{word-spacing:-3.716745px;}
.ws17f{word-spacing:-3.712068px;}
.ws149{word-spacing:-3.643326px;}
.ws1af{word-spacing:-3.574584px;}
.ws10b{word-spacing:-3.505842px;}
.ws169{word-spacing:-3.437100px;}
.ws13a{word-spacing:-3.368358px;}
.ws1a5{word-spacing:-3.299616px;}
.ws2f{word-spacing:-3.230874px;}
.ws27{word-spacing:-3.162132px;}
.ws1d{word-spacing:-3.093390px;}
.ws1ae{word-spacing:-3.024648px;}
.ws12{word-spacing:-2.988780px;}
.ws22{word-spacing:-2.955906px;}
.ws112{word-spacing:-2.887164px;}
.ws1e2{word-spacing:-2.824765px;}
.ws1e0{word-spacing:-2.824299px;}
.ws145{word-spacing:-2.818422px;}
.ws18a{word-spacing:-2.797517px;}
.wsf4{word-spacing:-2.749680px;}
.ws54{word-spacing:-2.680938px;}
.ws15e{word-spacing:-2.612196px;}
.ws46{word-spacing:-2.543454px;}
.wse2{word-spacing:-2.474712px;}
.ws105{word-spacing:-2.405970px;}
.ws1b6{word-spacing:-2.337228px;}
.ws1fa{word-spacing:-2.275661px;}
.ws1f9{word-spacing:-2.271400px;}
.ws2d{word-spacing:-2.268486px;}
.ws113{word-spacing:-2.199744px;}
.ws81{word-spacing:-2.133892px;}
.ws24{word-spacing:-2.131002px;}
.ws1b{word-spacing:-2.062260px;}
.ws190{word-spacing:-2.044339px;}
.ws14f{word-spacing:-1.993518px;}
.wsa6{word-spacing:-1.930898px;}
.ws74{word-spacing:-1.924776px;}
.ws189{word-spacing:-1.882944px;}
.ws65{word-spacing:-1.856034px;}
.ws120{word-spacing:-1.718550px;}
.ws19{word-spacing:-1.649808px;}
.ws1a4{word-spacing:-1.581066px;}
.ws14b{word-spacing:-1.512324px;}
.ws6f{word-spacing:-1.443582px;}
.ws102{word-spacing:-1.374840px;}
.ws125{word-spacing:-1.306098px;}
.ws10a{word-spacing:-1.237356px;}
.ws44{word-spacing:-1.168614px;}
.ws9b{word-spacing:-1.102296px;}
.wse5{word-spacing:-1.099872px;}
.ws127{word-spacing:-1.031130px;}
.ws11{word-spacing:-1.016185px;}
.ws50{word-spacing:-0.962388px;}
.ws58{word-spacing:-0.893646px;}
.ws1d7{word-spacing:-0.834063px;}
.ws1d9{word-spacing:-0.830928px;}
.ws33{word-spacing:-0.824904px;}
.ws2b{word-spacing:-0.756162px;}
.ws17e{word-spacing:-0.699379px;}
.ws142{word-spacing:-0.687420px;}
.ws28{word-spacing:-0.618678px;}
.ws19a{word-spacing:-0.591782px;}
.ws11c{word-spacing:-0.549936px;}
.ws184{word-spacing:-0.537984px;}
.wsbb{word-spacing:-0.491860px;}
.ws6a{word-spacing:-0.481194px;}
.wsa2{word-spacing:-0.412993px;}
.ws4e{word-spacing:-0.412452px;}
.wsa4{word-spacing:-0.411040px;}
.wsc6{word-spacing:-0.410130px;}
.ws1dd{word-spacing:-0.353031px;}
.ws1dc{word-spacing:-0.350884px;}
.ws1ee{word-spacing:-0.350420px;}
.wsbe{word-spacing:-0.350396px;}
.wsbc{word-spacing:-0.349906px;}
.ws1ec{word-spacing:-0.345694px;}
.wsda{word-spacing:-0.345297px;}
.ws34{word-spacing:-0.343710px;}
.ws1f7{word-spacing:-0.343284px;}
.ws1f8{word-spacing:-0.342112px;}
.wsad{word-spacing:-0.281386px;}
.ws95{word-spacing:-0.279384px;}
.wsdc{word-spacing:-0.275475px;}
.ws1c{word-spacing:-0.274968px;}
.ws16d{word-spacing:-0.268992px;}
.ws8{word-spacing:-0.239102px;}
.ws17d{word-spacing:-0.215194px;}
.ws1f2{word-spacing:-0.207910px;}
.ws84{word-spacing:-0.207891px;}
.ws16{word-spacing:-0.206226px;}
.ws7f{word-spacing:-0.205988px;}
.ws9a{word-spacing:-0.205945px;}
.ws1bf{word-spacing:-0.205337px;}
.wsa1{word-spacing:-0.203073px;}
.ws94{word-spacing:-0.202469px;}
.ws1c0{word-spacing:-0.199242px;}
.ws1f1{word-spacing:-0.190736px;}
.ws1d2{word-spacing:-0.190373px;}
.ws7{word-spacing:-0.179327px;}
.ws163{word-spacing:-0.161395px;}
.wsa5{word-spacing:-0.144343px;}
.ws1f6{word-spacing:-0.140868px;}
.ws1db{word-spacing:-0.139738px;}
.wsa0{word-spacing:-0.139096px;}
.wsa7{word-spacing:-0.137723px;}
.ws18{word-spacing:-0.137484px;}
.ws1f4{word-spacing:-0.137258px;}
.ws1f5{word-spacing:-0.136191px;}
.ws8d{word-spacing:-0.135919px;}
.wsf{word-spacing:-0.119551px;}
.ws160{word-spacing:-0.107597px;}
.wsb5{word-spacing:-0.084093px;}
.wsc8{word-spacing:-0.073532px;}
.wsb4{word-spacing:-0.071210px;}
.ws1d1{word-spacing:-0.070179px;}
.ws1e{word-spacing:-0.068742px;}
.wsb6{word-spacing:-0.064690px;}
.wse{word-spacing:-0.059776px;}
.ws171{word-spacing:-0.053798px;}
.ws1{word-spacing:-0.047821px;}
.ws1de{word-spacing:-0.014245px;}
.wsd3{word-spacing:-0.012264px;}
.wsd1{word-spacing:-0.006186px;}
.ws1df{word-spacing:-0.006085px;}
.ws9c{word-spacing:-0.004224px;}
.ws1e5{word-spacing:-0.004086px;}
.ws1e4{word-spacing:-0.003720px;}
.wsb3{word-spacing:-0.003490px;}
.ws75{word-spacing:-0.002862px;}
.ws1e9{word-spacing:-0.002724px;}
.ws90{word-spacing:-0.002034px;}
.ws77{word-spacing:-0.001776px;}
.ws8f{word-spacing:-0.001707px;}
.wsb9{word-spacing:-0.001344px;}
.wsab{word-spacing:-0.001224px;}
.ws1da{word-spacing:-0.001086px;}
.ws1eb{word-spacing:-0.000690px;}
.ws3{word-spacing:0.000000px;}
.ws1c1{word-spacing:0.000018px;}
.ws1ea{word-spacing:0.000222px;}
.ws1e3{word-spacing:0.000414px;}
.ws1c8{word-spacing:0.000828px;}
.wsd4{word-spacing:0.001776px;}
.ws82{word-spacing:0.002964px;}
.ws15f{word-spacing:0.053798px;}
.wsd{word-spacing:0.059776px;}
.ws1ce{word-spacing:0.064224px;}
.ws1cd{word-spacing:0.065568px;}
.ws20{word-spacing:0.068742px;}
.ws2{word-spacing:0.103292px;}
.ws13{word-spacing:0.107597px;}
.ws99{word-spacing:0.126310px;}
.ws1ef{word-spacing:0.127418px;}
.ws1f0{word-spacing:0.132928px;}
.ws1e7{word-spacing:0.133379px;}
.ws1e8{word-spacing:0.133730px;}
.ws32{word-spacing:0.137484px;}
.ws1c7{word-spacing:0.139973px;}
.ws7c{word-spacing:0.141969px;}
.ws179{word-spacing:0.161395px;}
.ws1cf{word-spacing:0.204752px;}
.ws17{word-spacing:0.206226px;}
.ws1d0{word-spacing:0.206268px;}
.ws17c{word-spacing:0.215194px;}
.ws16e{word-spacing:0.268992px;}
.ws91{word-spacing:0.272982px;}
.ws23{word-spacing:0.274968px;}
.ws1c2{word-spacing:0.275406px;}
.wsd8{word-spacing:0.275980px;}
.wsc2{word-spacing:0.277697px;}
.ws19d{word-spacing:0.322790px;}
.ws98{word-spacing:0.336885px;}
.ws79{word-spacing:0.337357px;}
.ws1c3{word-spacing:0.339649px;}
.ws43{word-spacing:0.343710px;}
.wsd2{word-spacing:0.347971px;}
.ws7e{word-spacing:0.403422px;}
.ws96{word-spacing:0.406305px;}
.ws40{word-spacing:0.412452px;}
.ws178{word-spacing:0.430387px;}
.wsc{word-spacing:0.478205px;}
.ws52{word-spacing:0.481194px;}
.wsae{word-spacing:0.549877px;}
.ws106{word-spacing:0.549936px;}
.ws123{word-spacing:0.618678px;}
.ws30{word-spacing:0.687420px;}
.ws21{word-spacing:0.756162px;}
.ws83{word-spacing:0.756513px;}
.wsb{word-spacing:0.777083px;}
.ws138{word-spacing:0.824904px;}
.ws13c{word-spacing:0.893646px;}
.ws26{word-spacing:0.962388px;}
.wsc0{word-spacing:0.966800px;}
.ws134{word-spacing:1.031130px;}
.wsbd{word-spacing:1.031963px;}
.ws109{word-spacing:1.099872px;}
.ws6{word-spacing:1.135736px;}
.ws4c{word-spacing:1.168614px;}
.ws38{word-spacing:1.237356px;}
.ws10e{word-spacing:1.306098px;}
.ws147{word-spacing:1.374840px;}
.ws48{word-spacing:1.443582px;}
.ws172{word-spacing:1.452557px;}
.ws37{word-spacing:1.512324px;}
.wsf5{word-spacing:1.581066px;}
.ws10c{word-spacing:1.649808px;}
.ws135{word-spacing:1.718550px;}
.ws198{word-spacing:1.721549px;}
.wseb{word-spacing:1.787292px;}
.ws10f{word-spacing:1.856034px;}
.ws42{word-spacing:1.924776px;}
.ws161{word-spacing:1.936742px;}
.ws11e{word-spacing:1.993518px;}
.ws11a{word-spacing:2.062260px;}
.wse4{word-spacing:2.131002px;}
.ws57{word-spacing:2.199744px;}
.ws17b{word-spacing:2.205734px;}
.ws174{word-spacing:2.259533px;}
.wsb0{word-spacing:2.266086px;}
.ws12b{word-spacing:2.268486px;}
.ws9{word-spacing:2.331248px;}
.ws1d5{word-spacing:2.334828px;}
.wse0{word-spacing:2.337228px;}
.ws1d3{word-spacing:2.339981px;}
.ws103{word-spacing:2.405970px;}
.wsea{word-spacing:2.474712px;}
.ws18c{word-spacing:2.474726px;}
.ws104{word-spacing:2.543454px;}
.ws12a{word-spacing:2.612196px;}
.ws80{word-spacing:2.617914px;}
.ws5{word-spacing:2.630126px;}
.ws108{word-spacing:2.680938px;}
.wsb1{word-spacing:2.681891px;}
.wsb2{word-spacing:2.683609px;}
.ws173{word-spacing:2.689920px;}
.ws4f{word-spacing:2.749680px;}
.wse7{word-spacing:2.818422px;}
.ws1a{word-spacing:2.887164px;}
.ws164{word-spacing:2.905114px;}
.ws3e{word-spacing:2.955906px;}
.ws25{word-spacing:3.024648px;}
.ws76{word-spacing:3.025789px;}
.ws15{word-spacing:3.093390px;}
.ws101{word-spacing:3.162132px;}
.ws1a1{word-spacing:3.227904px;}
.ws3f{word-spacing:3.230874px;}
.ws10d{word-spacing:3.299616px;}
.ws9d{word-spacing:3.301392px;}
.ws2a{word-spacing:3.368358px;}
.wsc5{word-spacing:3.434112px;}
.wsc3{word-spacing:3.436829px;}
.ws110{word-spacing:3.437100px;}
.ws100{word-spacing:3.505842px;}
.ws7d{word-spacing:3.507148px;}
.wsdf{word-spacing:3.574584px;}
.ws49{word-spacing:3.643326px;}
.ws18b{word-spacing:3.658291px;}
.ws14e{word-spacing:3.712068px;}
.wsa{word-spacing:3.765863px;}
.ws36{word-spacing:3.780810px;}
.ws8e{word-spacing:3.808307px;}
.ws5a{word-spacing:3.849552px;}
.wsf8{word-spacing:3.918294px;}
.wsff{word-spacing:3.987036px;}
.ws53{word-spacing:4.055778px;}
.ws4b{word-spacing:4.124520px;}
.ws13e{word-spacing:4.193262px;}
.ws165{word-spacing:4.196275px;}
.ws2e{word-spacing:4.262004px;}
.ws5c{word-spacing:4.330746px;}
.ws170{word-spacing:4.357670px;}
.ws111{word-spacing:4.399488px;}
.wsbf{word-spacing:4.402853px;}
.ws140{word-spacing:4.468230px;}
.ws3c{word-spacing:4.536972px;}
.ws1f3{word-spacing:4.538290px;}
.ws199{word-spacing:4.572864px;}
.ws41{word-spacing:4.605714px;}
.ws35{word-spacing:4.674456px;}
.ws1e6{word-spacing:4.739516px;}
.wsef{word-spacing:4.743198px;}
.wsaf{word-spacing:4.808881px;}
.ws1c4{word-spacing:4.810599px;}
.ws1c6{word-spacing:4.811458px;}
.ws12f{word-spacing:4.811940px;}
.wse9{word-spacing:4.880682px;}
.wsee{word-spacing:4.949424px;}
.wsf3{word-spacing:5.018166px;}
.ws10{word-spacing:5.021150px;}
.ws13d{word-spacing:5.086908px;}
.wsf2{word-spacing:5.155650px;}
.wse6{word-spacing:5.224392px;}
.ws89{word-spacing:5.292828px;}
.ws118{word-spacing:5.293134px;}
.ws157{word-spacing:5.361876px;}
.wsd9{word-spacing:5.365994px;}
.ws19c{word-spacing:5.379840px;}
.wsf0{word-spacing:5.430618px;}
.ws17a{word-spacing:5.433638px;}
.ws156{word-spacing:5.499360px;}
.ws56{word-spacing:5.568102px;}
.ws39{word-spacing:5.636844px;}
.ws5b{word-spacing:5.705586px;}
.ws188{word-spacing:5.756429px;}
.ws11d{word-spacing:5.774328px;}
.ws4d{word-spacing:5.843070px;}
.ws1bb{word-spacing:5.908530px;}
.ws1bd{word-spacing:5.910483px;}
.ws3d{word-spacing:5.911812px;}
.ws3a{word-spacing:5.980554px;}
.ws51{word-spacing:6.049296px;}
.ws3b{word-spacing:6.118038px;}
.ws16f{word-spacing:6.133018px;}
.wsdb{word-spacing:6.184509px;}
.ws45{word-spacing:6.186780px;}
.wsf7{word-spacing:6.255522px;}
.ws154{word-spacing:6.324264px;}
.ws158{word-spacing:6.393006px;}
.ws14a{word-spacing:6.461748px;}
.wsd6{word-spacing:6.463430px;}
.wscd{word-spacing:6.464372px;}
.wsfd{word-spacing:6.530490px;}
.ws14c{word-spacing:6.599232px;}
.ws183{word-spacing:6.667974px;}
.ws126{word-spacing:6.736716px;}
.ws29{word-spacing:6.805458px;}
.ws107{word-spacing:6.874200px;}
.ws196{word-spacing:6.942942px;}
.ws168{word-spacing:7.011684px;}
.ws191{word-spacing:7.047590px;}
.wsf6{word-spacing:7.080426px;}
.ws4a{word-spacing:7.149168px;}
.ws131{word-spacing:7.217910px;}
.ws12c{word-spacing:7.286652px;}
.ws59{word-spacing:7.355394px;}
.ws11f{word-spacing:7.424136px;}
.ws15d{word-spacing:7.492878px;}
.ws1fc{word-spacing:7.550586px;}
.ws1ff{word-spacing:7.558380px;}
.ws1fd{word-spacing:7.558500px;}
.ws1b7{word-spacing:7.561242px;}
.ws12e{word-spacing:7.561620px;}
.ws47{word-spacing:7.630362px;}
.ws150{word-spacing:7.699104px;}
.ws195{word-spacing:7.767846px;}
.ws181{word-spacing:7.836588px;}
.wsa8{word-spacing:7.837000px;}
.ws182{word-spacing:7.905330px;}
.ws1be{word-spacing:7.906812px;}
.wsf1{word-spacing:7.974072px;}
.wsf9{word-spacing:8.042814px;}
.ws55{word-spacing:8.111556px;}
.ws116{word-spacing:8.180298px;}
.ws115{word-spacing:8.249040px;}
.ws1b8{word-spacing:8.317782px;}
.ws1d6{word-spacing:8.318970px;}
.ws9f{word-spacing:8.328288px;}
.ws186{word-spacing:8.386524px;}
.ws122{word-spacing:8.455266px;}
.ws155{word-spacing:8.524008px;}
.ws129{word-spacing:8.592750px;}
.wsd7{word-spacing:8.594326px;}
.wsfe{word-spacing:8.661492px;}
.wsdd{word-spacing:8.729022px;}
.wsfa{word-spacing:8.730234px;}
.ws6c{word-spacing:8.798976px;}
.ws31{word-spacing:8.867718px;}
.wsfc{word-spacing:8.936460px;}
.ws1cb{word-spacing:8.940919px;}
.ws1c9{word-spacing:9.004767px;}
.ws1a7{word-spacing:9.073944px;}
.ws67{word-spacing:9.142686px;}
.ws19b{word-spacing:9.145728px;}
.ws121{word-spacing:9.211428px;}
.ws1cc{word-spacing:9.212416px;}
.ws148{word-spacing:9.280170px;}
.wsec{word-spacing:9.348912px;}
.ws13f{word-spacing:9.417654px;}
.ws13b{word-spacing:9.486396px;}
.wsed{word-spacing:9.555138px;}
.ws1a6{word-spacing:9.623880px;}
.ws1a2{word-spacing:9.692622px;}
.wsc9{word-spacing:9.765870px;}
.ws14d{word-spacing:9.898848px;}
.ws8b{word-spacing:9.899895px;}
.wsaa{word-spacing:9.901836px;}
.wscf{word-spacing:9.965919px;}
.ws92{word-spacing:9.966778px;}
.ws151{word-spacing:10.036332px;}
.ws141{word-spacing:10.105074px;}
.wsfb{word-spacing:10.173816px;}
.ws16c{word-spacing:10.242558px;}
.ws16b{word-spacing:10.311300px;}
.wscc{word-spacing:10.317147px;}
.ws87{word-spacing:10.377818px;}
.ws85{word-spacing:10.379536px;}
.ws61{word-spacing:10.380042px;}
.ws8c{word-spacing:10.387136px;}
.ws137{word-spacing:10.448784px;}
.ws117{word-spacing:10.586268px;}
.ws11b{word-spacing:10.792494px;}
.ws2c{word-spacing:10.861236px;}
.ws194{word-spacing:10.929978px;}
.ws18d{word-spacing:10.998720px;}
.ws1b4{word-spacing:11.067462px;}
.ws128{word-spacing:11.136204px;}
.ws139{word-spacing:11.204946px;}
.ws1b1{word-spacing:11.273688px;}
.ws132{word-spacing:11.342430px;}
.wsc4{word-spacing:11.459291px;}
.ws119{word-spacing:11.479914px;}
.ws153{word-spacing:11.617398px;}
.ws152{word-spacing:11.686140px;}
.wse8{word-spacing:11.823624px;}
.wscb{word-spacing:12.168652px;}
.ws69{word-spacing:12.304818px;}
.ws187{word-spacing:12.373560px;}
.ws1ad{word-spacing:12.442302px;}
.ws7a{word-spacing:12.442549px;}
.ws86{word-spacing:12.445079px;}
.wse1{word-spacing:12.511044px;}
.ws68{word-spacing:12.579786px;}
.ws6b{word-spacing:12.717270px;}
.ws146{word-spacing:12.786012px;}
.ws97{word-spacing:12.930370px;}
.ws144{word-spacing:12.992238px;}
.ws19e{word-spacing:13.060980px;}
.ws15a{word-spacing:13.129722px;}
.ws143{word-spacing:13.395802px;}
.ws1a3{word-spacing:13.473432px;}
.wsd0{word-spacing:13.608987px;}
.ws6e{word-spacing:13.610916px;}
.ws5d{word-spacing:13.748400px;}
.ws93{word-spacing:13.882884px;}
.ws15c{word-spacing:13.885884px;}
.ws19f{word-spacing:14.092110px;}
.ws133{word-spacing:14.160852px;}
.ws124{word-spacing:14.573304px;}
.wsba{word-spacing:14.850307px;}
.ws5e{word-spacing:15.054498px;}
.wsce{word-spacing:15.193076px;}
.ws1b2{word-spacing:15.329466px;}
.ws6d{word-spacing:15.466950px;}
.ws1b5{word-spacing:15.948144px;}
.wsca{word-spacing:16.156805px;}
.ws8a{word-spacing:16.358525px;}
.ws12d{word-spacing:16.498080px;}
.ws1d8{word-spacing:16.499868px;}
.ws193{word-spacing:16.566822px;}
.ws88{word-spacing:16.572999px;}
.ws1a8{word-spacing:16.623706px;}
.ws177{word-spacing:16.704306px;}
.ws1b0{word-spacing:16.773048px;}
.ws72{word-spacing:16.841790px;}
.wsde{word-spacing:16.879206px;}
.ws0{word-spacing:16.880672px;}
.ws197{word-spacing:17.185500px;}
.wsb8{word-spacing:17.186880px;}
.ws180{word-spacing:17.597952px;}
.ws1b3{word-spacing:17.666694px;}
.ws9e{word-spacing:17.805472px;}
.ws7b{word-spacing:18.213206px;}
.ws176{word-spacing:18.285372px;}
.ws159{word-spacing:19.349392px;}
.ws130{word-spacing:19.522728px;}
.ws5f{word-spacing:19.866438px;}
.ws16a{word-spacing:20.072664px;}
.ws78{word-spacing:20.076346px;}
.wsc1{word-spacing:20.277937px;}
.ws192{word-spacing:20.622600px;}
.ws62{word-spacing:21.447504px;}
.ws73{word-spacing:22.203666px;}
.ws63{word-spacing:24.128442px;}
.ws71{word-spacing:24.197184px;}
.ws64{word-spacing:24.747120px;}
.ws60{word-spacing:25.022088px;}
.ws185{word-spacing:25.297056px;}
.ws4{word-spacing:26.899020px;}
.ws70{word-spacing:29.765286px;}
.ws18e{word-spacing:32.583708px;}
.wsac{word-spacing:32.592426px;}
.ws15b{word-spacing:42.276330px;}
.ws175{word-spacing:50.181660px;}
.ws1ac{word-spacing:50.319144px;}
.wse3{word-spacing:51.487758px;}
.ws114{word-spacing:51.831468px;}
.ws14{word-spacing:77.630692px;}
.ws1c5{word-spacing:92.760455px;}
.ws1ba{word-spacing:98.988480px;}
.ws1d4{word-spacing:101.813776px;}
.ws1ed{word-spacing:106.309503px;}
.wsa3{word-spacing:118.380598px;}
.ws1e1{word-spacing:124.423020px;}
.wsa9{word-spacing:145.485569px;}
.ws1a9{word-spacing:165.107290px;}
.ws1aa{word-spacing:169.626355px;}
.ws1bc{word-spacing:172.652407px;}
.ws1ca{word-spacing:174.123486px;}
.ws162{word-spacing:207.661824px;}
.ws1a0{word-spacing:332.527910px;}
.ws1b9{word-spacing:486.246537px;}
.wsb7{word-spacing:568.048698px;}
.ws18f{word-spacing:940.539258px;}
.ws136{word-spacing:943.119258px;}
.ws1ab{word-spacing:1178.131162px;}
.ws167{word-spacing:1319.513357px;}
._77{margin-left:-26.740638px;}
._76{margin-left:-24.815862px;}
._74{margin-left:-10.030950px;}
._3{margin-left:-8.625632px;}
._1{margin-left:-7.333760px;}
._14{margin-left:-6.030752px;}
._6{margin-left:-4.662497px;}
._4{margin-left:-3.172886px;}
._2{margin-left:-1.549386px;}
._0{width:1.386797px;}
._2d{width:2.935220px;}
._23{width:4.236239px;}
._6a{width:6.255522px;}
._70{width:7.841014px;}
._75{width:10.142136px;}
._29{width:11.305397px;}
._a{width:12.911530px;}
._1e{width:14.848272px;}
._c{width:16.236349px;}
._5{width:18.231558px;}
._d{width:19.415584px;}
._8{width:20.672798px;}
._f{width:21.729056px;}
._10{width:22.959828px;}
._2e{width:23.996358px;}
._11{width:25.090830px;}
._18{width:26.190702px;}
._17{width:27.703026px;}
._2f{width:28.940382px;}
._7{width:30.366005px;}
._32{width:31.520898px;}
._e{width:32.548032px;}
._9{width:33.947761px;}
._15{width:35.883324px;}
._20{width:37.786466px;}
._16{width:39.801618px;}
._24{width:41.189205px;}
._1d{width:42.470597px;}
._30{width:43.688232px;}
._33{width:45.007466px;}
._31{width:46.113923px;}
._1f{width:47.500722px;}
._13{width:49.050108px;}
._35{width:50.456628px;}
._28{width:52.001519px;}
._27{width:53.702872px;}
._12{width:54.861498px;}
._34{width:56.024730px;}
._b{width:59.775600px;}
._1b{width:61.799058px;}
._1c{width:63.597137px;}
._72{width:64.651410px;}
._22{width:67.367160px;}
._19{width:68.742000px;}
._1a{width:70.116840px;}
._26{width:71.771813px;}
._69{width:74.997522px;}
._25{width:77.011052px;}
._73{width:79.264566px;}
._21{width:80.359398px;}
._6f{width:81.812742px;}
._2b{width:85.972514px;}
._71{width:88.483738px;}
._43{width:90.381312px;}
._42{width:93.555418px;}
._4b{width:97.957350px;}
._6c{width:99.391706px;}
._2a{width:103.772115px;}
._2c{width:110.003937px;}
._46{width:115.827955px;}
._6d{width:122.419565px;}
._6e{width:125.849522px;}
._3b{width:129.976934px;}
._5f{width:156.230554px;}
._63{width:164.246515px;}
._60{width:168.561155px;}
._36{width:174.468211px;}
._3d{width:183.172784px;}
._39{width:185.330052px;}
._62{width:192.813466px;}
._38{width:203.196557px;}
._3c{width:204.702912px;}
._3f{width:211.201751px;}
._3e{width:213.633446px;}
._59{width:237.519936px;}
._5c{width:241.985203px;}
._4d{width:246.558067px;}
._3a{width:260.707046px;}
._66{width:271.143936px;}
._53{width:292.232909px;}
._5b{width:303.369178px;}
._58{width:312.353510px;}
._55{width:366.205709px;}
._5d{width:391.759949px;}
._5a{width:397.731571px;}
._5e{width:404.223214px;}
._40{width:409.997606px;}
._57{width:439.532928px;}
._61{width:518.928599px;}
._64{width:542.915489px;}
._4e{width:594.945738px;}
._4f{width:659.030400px;}
._48{width:675.851335px;}
._56{width:683.831462px;}
._47{width:692.116416px;}
._54{width:696.456122px;}
._52{width:698.572224px;}
._51{width:705.601850px;}
._50{width:708.506964px;}
._37{width:737.091878px;}
._6b{width:800.095012px;}
._4c{width:813.241681px;}
._67{width:819.597089px;}
._49{width:861.282433px;}
._68{width:872.338618px;}
._45{width:898.218086px;}
._65{width:1103.674176px;}
._44{width:1196.261222px;}
._41{width:1199.327731px;}
._4a{width:1289.709043px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs6{font-size:47.820000px;}
.fs0{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs5{font-size:68.742000px;}
.fs7{font-size:71.731200px;}
.fs2{font-size:77.708400px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y53{bottom:41.308500px;}
.y87{bottom:41.592000px;}
.y54{bottom:43.522500px;}
.y170{bottom:83.593500px;}
.y17a{bottom:84.607500px;}
.y86{bottom:89.719500px;}
.y52{bottom:90.733500px;}
.y55{bottom:90.819000px;}
.y14a{bottom:91.521000px;}
.y156{bottom:92.535000px;}
.y11e{bottom:95.077500px;}
.y21f{bottom:95.379000px;}
.y224{bottom:96.393000px;}
.y249{bottom:98.745000px;}
.y1d4{bottom:99.417000px;}
.ye8{bottom:100.203000px;}
.y91{bottom:100.462500px;}
.yee{bottom:101.217000px;}
.y296{bottom:102.438000px;}
.y27c{bottom:102.927000px;}
.y2a6{bottom:103.452000px;}
.y25{bottom:105.657000px;}
.y16f{bottom:106.390500px;}
.y179{bottom:107.404500px;}
.y1f6{bottom:109.461000px;}
.y85{bottom:112.516500px;}
.y51{bottom:113.530500px;}
.y149{bottom:114.318000px;}
.y155{bottom:115.332000px;}
.y11d{bottom:117.874500px;}
.y21e{bottom:118.176000px;}
.y223{bottom:119.190000px;}
.y23f{bottom:120.528000px;}
.y248{bottom:121.542000px;}
.y1d3{bottom:121.579500px;}
.ye7{bottom:123.001500px;}
.y90{bottom:123.259500px;}
.yed{bottom:124.014000px;}
.y295{bottom:125.235000px;}
.y27b{bottom:125.724000px;}
.y262{bottom:125.955000px;}
.y2a5{bottom:126.249000px;}
.y2c2{bottom:127.092000px;}
.y24{bottom:128.455500px;}
.y16e{bottom:129.187500px;}
.y178{bottom:130.201500px;}
.y1f5{bottom:132.258000px;}
.y84{bottom:135.313500px;}
.y50{bottom:136.327500px;}
.y2cc{bottom:136.413000px;}
.y148{bottom:137.115000px;}
.y154{bottom:138.129000px;}
.y1d2{bottom:140.155500px;}
.y11c{bottom:140.671500px;}
.y21d{bottom:140.973000px;}
.y222{bottom:141.987000px;}
.y23e{bottom:143.325000px;}
.y197{bottom:143.986500px;}
.y247{bottom:144.339000px;}
.y261{bottom:144.529500px;}
.ye6{bottom:145.798500px;}
.y8f{bottom:146.056500px;}
.yec{bottom:146.812500px;}
.y294{bottom:148.032000px;}
.y27a{bottom:148.521000px;}
.y2a4{bottom:149.046000px;}
.y2c1{bottom:149.889000px;}
.y23{bottom:151.252500px;}
.y16d{bottom:151.984500px;}
.y177{bottom:152.998500px;}
.y1f4{bottom:155.055000px;}
.y83{bottom:158.110500px;}
.yc0{bottom:158.985000px;}
.y4f{bottom:159.124500px;}
.y146{bottom:159.912000px;}
.y147{bottom:159.997500px;}
.y153{bottom:160.926000px;}
.y1d1{bottom:162.316500px;}
.y11a{bottom:163.468500px;}
.y11b{bottom:163.554000px;}
.y21c{bottom:163.770000px;}
.y221{bottom:164.784000px;}
.y23d{bottom:166.122000px;}
.y196{bottom:166.783500px;}
.y246{bottom:167.136000px;}
.ye5{bottom:168.595500px;}
.y8e{bottom:168.853500px;}
.yeb{bottom:169.609500px;}
.y293{bottom:170.829000px;}
.y2a3{bottom:171.843000px;}
.y2c0{bottom:172.686000px;}
.y22{bottom:174.049500px;}
.y16c{bottom:174.781500px;}
.y176{bottom:175.795500px;}
.y260{bottom:176.325000px;}
.y1f3{bottom:177.852000px;}
.y1d0{bottom:180.892500px;}
.y82{bottom:180.907500px;}
.ybf{bottom:181.782000px;}
.y4e{bottom:181.921500px;}
.y56{bottom:182.007000px;}
.y145{bottom:182.709000px;}
.y152{bottom:183.723000px;}
.y119{bottom:186.265500px;}
.y21b{bottom:186.567000px;}
.y220{bottom:187.581000px;}
.y23c{bottom:188.919000px;}
.y195{bottom:189.580500px;}
.y245{bottom:189.933000px;}
.ye4{bottom:191.392500px;}
.y8d{bottom:191.650500px;}
.yea{bottom:192.406500px;}
.y292{bottom:193.626000px;}
.y2a2{bottom:194.640000px;}
.y2bf{bottom:195.483000px;}
.y21{bottom:196.846500px;}
.y16b{bottom:197.578500px;}
.y25f{bottom:197.889000px;}
.y175{bottom:198.592500px;}
.y1f2{bottom:200.649000px;}
.y1cf{bottom:203.055000px;}
.y81{bottom:203.704500px;}
.y4d{bottom:204.718500px;}
.y144{bottom:205.506000px;}
.y151{bottom:206.520000px;}
.y279{bottom:207.106500px;}
.y118{bottom:209.062500px;}
.y23b{bottom:211.716000px;}
.y194{bottom:212.377500px;}
.y244{bottom:212.730000px;}
.ye3{bottom:214.189500px;}
.y8c{bottom:214.447500px;}
.ybe{bottom:215.040000px;}
.ye9{bottom:215.203500px;}
.y291{bottom:216.423000px;}
.y2a1{bottom:217.437000px;}
.y2be{bottom:218.280000px;}
.y25e{bottom:219.453000px;}
.y20{bottom:219.643500px;}
.y16a{bottom:220.375500px;}
.y174{bottom:221.389500px;}
.y1ce{bottom:221.629500px;}
.y1f1{bottom:223.446000px;}
.y278{bottom:225.682500px;}
.y80{bottom:226.501500px;}
.y4c{bottom:227.515500px;}
.y143{bottom:228.303000px;}
.y150{bottom:229.317000px;}
.y117{bottom:231.859500px;}
.y23a{bottom:234.513000px;}
.y193{bottom:235.176000px;}
.y199{bottom:235.261500px;}
.y243{bottom:235.527000px;}
.y8b{bottom:237.244500px;}
.y290{bottom:239.220000px;}
.y2a0{bottom:240.234000px;}
.y25d{bottom:241.017000px;}
.y2bd{bottom:241.078500px;}
.y1f{bottom:242.440500px;}
.y169{bottom:243.172500px;}
.y1cd{bottom:243.792000px;}
.y173{bottom:244.186500px;}
.y1f0{bottom:246.243000px;}
.y1f8{bottom:246.330000px;}
.y21a{bottom:247.257000px;}
.y7f{bottom:249.298500px;}
.y4b{bottom:250.312500px;}
.y142{bottom:251.100000px;}
.y14f{bottom:252.114000px;}
.y116{bottom:254.656500px;}
.y239{bottom:257.310000px;}
.y192{bottom:257.973000px;}
.y242{bottom:258.324000px;}
.y8a{bottom:260.041500px;}
.y28f{bottom:262.017000px;}
.ye2{bottom:262.104000px;}
.y1cc{bottom:262.366500px;}
.y29f{bottom:263.031000px;}
.y25c{bottom:263.179500px;}
.y2bc{bottom:263.875500px;}
.y1e{bottom:265.237500px;}
.y168{bottom:265.971000px;}
.y172{bottom:266.985000px;}
.y1ef{bottom:269.041500px;}
.y1f7{bottom:269.127000px;}
.y219{bottom:270.054000px;}
.y277{bottom:270.913500px;}
.y7e{bottom:272.097000px;}
.y4a{bottom:273.109500px;}
.y2c7{bottom:273.196500px;}
.y141{bottom:273.897000px;}
.y14e{bottom:274.911000px;}
.y115{bottom:277.453500px;}
.y238{bottom:280.107000px;}
.y191{bottom:280.770000px;}
.y241{bottom:281.121000px;}
.yb0{bottom:281.824500px;}
.y89{bottom:282.838500px;}
.ye1{bottom:283.668000px;}
.y1cb{bottom:284.529000px;}
.y28e{bottom:284.814000px;}
.y29e{bottom:285.828000px;}
.y2bb{bottom:286.672500px;}
.y1d{bottom:288.034500px;}
.y167{bottom:288.768000px;}
.y171{bottom:289.782000px;}
.y1ee{bottom:291.838500px;}
.y276{bottom:292.477500px;}
.y218{bottom:292.852500px;}
.y7d{bottom:294.894000px;}
.y49{bottom:295.908000px;}
.y140{bottom:296.695500px;}
.y14d{bottom:297.708000px;}
.y114{bottom:300.250500px;}
.y25b{bottom:301.551000px;}
.y237{bottom:302.904000px;}
.y1ca{bottom:303.105000px;}
.y190{bottom:303.567000px;}
.y240{bottom:303.918000px;}
.yaf{bottom:304.621500px;}
.ye0{bottom:305.232000px;}
.y88{bottom:305.635500px;}
.y28d{bottom:307.611000px;}
.y29d{bottom:308.625000px;}
.y2ba{bottom:309.469500px;}
.y275{bottom:314.041500px;}
.y1ed{bottom:314.635500px;}
.y217{bottom:315.649500px;}
.y7c{bottom:317.691000px;}
.y48{bottom:318.705000px;}
.y13f{bottom:319.492500px;}
.y14c{bottom:320.506500px;}
.y113{bottom:323.049000px;}
.y92{bottom:324.007500px;}
.y25a{bottom:324.348000px;}
.y1c9{bottom:325.266000px;}
.y18f{bottom:326.364000px;}
.ydf{bottom:326.796000px;}
.yae{bottom:327.418500px;}
.ybd{bottom:328.432500px;}
.y28c{bottom:330.408000px;}
.y29c{bottom:331.422000px;}
.y2b9{bottom:332.266500px;}
.y274{bottom:336.204000px;}
.y166{bottom:336.681000px;}
.y1ec{bottom:337.432500px;}
.y216{bottom:338.446500px;}
.y1c{bottom:339.225000px;}
.y7b{bottom:340.488000px;}
.y47{bottom:341.502000px;}
.y2c6{bottom:341.587500px;}
.y13e{bottom:342.289500px;}
.y14b{bottom:343.303500px;}
.y112{bottom:345.846000px;}
.yde{bottom:348.360000px;}
.y18e{bottom:349.161000px;}
.yad{bottom:350.217000px;}
.y236{bottom:350.818500px;}
.ybc{bottom:351.229500px;}
.y28b{bottom:353.205000px;}
.y29b{bottom:354.219000px;}
.y2b8{bottom:355.063500px;}
.y259{bottom:358.239000px;}
.y273{bottom:358.365000px;}
.y165{bottom:358.843500px;}
.y1eb{bottom:360.229500px;}
.y215{bottom:361.243500px;}
.y7a{bottom:363.285000px;}
.y1c8{bottom:363.639000px;}
.y46{bottom:364.299000px;}
.ydd{bottom:370.522500px;}
.y18d{bottom:371.958000px;}
.y235{bottom:372.981000px;}
.yac{bottom:373.014000px;}
.ybb{bottom:374.028000px;}
.y28a{bottom:376.002000px;}
.y29a{bottom:377.016000px;}
.y164{bottom:377.419500px;}
.y2b7{bottom:377.860500px;}
.y1b{bottom:380.398500px;}
.y272{bottom:380.527500px;}
.y258{bottom:381.036000px;}
.y1ea{bottom:383.026500px;}
.y214{bottom:384.040500px;}
.y79{bottom:386.082000px;}
.y1c7{bottom:386.436000px;}
.y45{bottom:387.096000px;}
.y18c{bottom:394.755000px;}
.y234{bottom:395.142000px;}
.yab{bottom:395.811000px;}
.yba{bottom:396.825000px;}
.y289{bottom:398.800500px;}
.y1a{bottom:398.974500px;}
.y163{bottom:399.580500px;}
.y299{bottom:399.813000px;}
.y2b6{bottom:400.657500px;}
.y13d{bottom:401.965500px;}
.y271{bottom:402.091500px;}
.y257{bottom:403.833000px;}
.y103{bottom:404.508000px;}
.ydc{bottom:405.043500px;}
.y111{bottom:405.522000px;}
.y1e9{bottom:405.823500px;}
.y213{bottom:406.837500px;}
.y78{bottom:408.879000px;}
.y44{bottom:409.893000px;}
.y19{bottom:415.864500px;}
.y233{bottom:417.304500px;}
.y18b{bottom:417.552000px;}
.y162{bottom:418.156500px;}
.yaa{bottom:418.608000px;}
.yb9{bottom:419.622000px;}
.y1c6{bottom:420.960000px;}
.y288{bottom:421.597500px;}
.y298{bottom:422.611500px;}
.y2b5{bottom:423.454500px;}
.y270{bottom:423.655500px;}
.y13c{bottom:424.762500px;}
.y256{bottom:426.630000px;}
.y102{bottom:427.305000px;}
.ydb{bottom:427.842000px;}
.y110{bottom:428.319000px;}
.y1e8{bottom:428.620500px;}
.y212{bottom:429.634500px;}
.y77{bottom:431.676000px;}
.y43{bottom:432.690000px;}
.y18{bottom:437.817000px;}
.y232{bottom:439.467000px;}
.y161{bottom:440.319000px;}
.y18a{bottom:440.349000px;}
.ya9{bottom:441.405000px;}
.yb8{bottom:442.419000px;}
.y1b1{bottom:442.743000px;}
.y1c5{bottom:443.757000px;}
.y287{bottom:444.394500px;}
.y297{bottom:445.408500px;}
.y26f{bottom:445.818000px;}
.y2b4{bottom:446.251500px;}
.y13b{bottom:447.559500px;}
.y255{bottom:449.428500px;}
.y101{bottom:450.102000px;}
.yda{bottom:450.639000px;}
.y10f{bottom:451.116000px;}
.y1e7{bottom:451.417500px;}
.y211{bottom:452.431500px;}
.y76{bottom:454.473000px;}
.y42{bottom:455.487000px;}
.y2cb{bottom:455.572500px;}
.y160{bottom:458.893500px;}
.y17{bottom:459.771000px;}
.y231{bottom:461.628000px;}
.y189{bottom:463.146000px;}
.y198{bottom:463.233000px;}
.ya8{bottom:464.202000px;}
.yb7{bottom:465.216000px;}
.y1b0{bottom:465.540000px;}
.y1c4{bottom:466.554000px;}
.y2b3{bottom:469.048500px;}
.y13a{bottom:470.356500px;}
.y254{bottom:472.225500px;}
.y100{bottom:472.899000px;}
.yd9{bottom:473.436000px;}
.y10e{bottom:473.913000px;}
.y1e6{bottom:474.214500px;}
.y210{bottom:475.228500px;}
.y75{bottom:477.270000px;}
.y41{bottom:478.284000px;}
.y15f{bottom:481.056000px;}
.y16{bottom:483.598500px;}
.y26e{bottom:484.191000px;}
.y188{bottom:485.943000px;}
.y286{bottom:486.138000px;}
.ya7{bottom:486.999000px;}
.yb6{bottom:488.013000px;}
.y1af{bottom:488.337000px;}
.y1c3{bottom:489.351000px;}
.y2b2{bottom:491.845500px;}
.y139{bottom:493.153500px;}
.y253{bottom:495.022500px;}
.yff{bottom:495.696000px;}
.yd8{bottom:496.233000px;}
.y10d{bottom:496.710000px;}
.y1e5{bottom:497.011500px;}
.y20f{bottom:498.025500px;}
.y15e{bottom:499.630500px;}
.y230{bottom:500.001000px;}
.y74{bottom:500.067000px;}
.y40{bottom:501.081000px;}
.y26d{bottom:506.988000px;}
.y187{bottom:508.740000px;}
.y285{bottom:508.935000px;}
.ya6{bottom:509.796000px;}
.yb5{bottom:510.810000px;}
.y1ae{bottom:511.134000px;}
.y1c2{bottom:512.148000px;}
.y2b1{bottom:514.642500px;}
.y138{bottom:515.950500px;}
.y252{bottom:517.819500px;}
.yfe{bottom:518.493000px;}
.y15{bottom:519.000000px;}
.y10c{bottom:519.507000px;}
.y1e4{bottom:519.808500px;}
.y20e{bottom:520.822500px;}
.y15d{bottom:521.793000px;}
.y22f{bottom:522.798000px;}
.y73{bottom:522.864000px;}
.y3f{bottom:523.878000px;}
.y186{bottom:531.537000px;}
.y284{bottom:531.732000px;}
.ya5{bottom:532.593000px;}
.yb4{bottom:533.607000px;}
.y1ad{bottom:533.931000px;}
.y1c1{bottom:534.945000px;}
.y2b0{bottom:537.439500px;}
.y137{bottom:538.747500px;}
.y15c{bottom:540.369000px;}
.y251{bottom:540.616500px;}
.y26c{bottom:540.877500px;}
.y14{bottom:540.954000px;}
.yfd{bottom:541.290000px;}
.y10b{bottom:542.304000px;}
.y1e3{bottom:542.605500px;}
.yd7{bottom:543.133500px;}
.y20d{bottom:543.619500px;}
.y72{bottom:545.661000px;}
.y3e{bottom:546.675000px;}
.y2ca{bottom:546.762000px;}
.y185{bottom:554.335500px;}
.ya4{bottom:555.390000px;}
.yb3{bottom:556.404000px;}
.y22e{bottom:556.689000px;}
.y1ac{bottom:556.728000px;}
.y1c0{bottom:557.742000px;}
.y2af{bottom:560.238000px;}
.y136{bottom:561.546000px;}
.y15b{bottom:562.530000px;}
.y13{bottom:562.906500px;}
.y250{bottom:563.413500px;}
.y26b{bottom:563.676000px;}
.yfc{bottom:564.088500px;}
.yd6{bottom:564.697500px;}
.y283{bottom:564.990000px;}
.y10a{bottom:565.101000px;}
.y209{bottom:565.402500px;}
.y20c{bottom:566.416500px;}
.y71{bottom:568.458000px;}
.y3d{bottom:569.472000px;}
.y2c5{bottom:569.559000px;}
.y184{bottom:577.132500px;}
.ya3{bottom:578.187000px;}
.yb2{bottom:579.201000px;}
.y22d{bottom:579.486000px;}
.y1ab{bottom:579.525000px;}
.y1bf{bottom:580.539000px;}
.y15a{bottom:581.106000px;}
.y2ae{bottom:583.035000px;}
.y135{bottom:584.343000px;}
.y12{bottom:584.859000px;}
.y24f{bottom:586.210500px;}
.yd5{bottom:586.261500px;}
.y26a{bottom:586.473000px;}
.yfb{bottom:586.885500px;}
.y109{bottom:587.899500px;}
.y208{bottom:588.201000px;}
.y20b{bottom:589.215000px;}
.y1e2{bottom:589.506000px;}
.y70{bottom:591.256500px;}
.y3c{bottom:592.269000px;}
.y183{bottom:599.929500px;}
.ya2{bottom:600.984000px;}
.yb1{bottom:601.998000px;}
.y22c{bottom:602.283000px;}
.y1aa{bottom:602.322000px;}
.y159{bottom:603.268500px;}
.y1be{bottom:603.336000px;}
.y2ad{bottom:605.832000px;}
.y11{bottom:606.811500px;}
.y134{bottom:607.140000px;}
.yd4{bottom:607.825500px;}
.y24e{bottom:609.007500px;}
.y269{bottom:609.270000px;}
.yfa{bottom:609.682500px;}
.y108{bottom:610.696500px;}
.y207{bottom:610.998000px;}
.y1e1{bottom:611.668500px;}
.y20a{bottom:612.012000px;}
.y6f{bottom:614.053500px;}
.y3b{bottom:615.067500px;}
.y282{bottom:615.529500px;}
.y182{bottom:622.726500px;}
.y22b{bottom:625.080000px;}
.y1a9{bottom:625.119000px;}
.y1bd{bottom:626.133000px;}
.y2ac{bottom:628.629000px;}
.y10{bottom:628.764000px;}
.yd3{bottom:629.389500px;}
.y133{bottom:629.937000px;}
.y1e0{bottom:630.244500px;}
.y24d{bottom:631.804500px;}
.y268{bottom:632.067000px;}
.yf9{bottom:632.479500px;}
.y107{bottom:633.493500px;}
.y6e{bottom:636.850500px;}
.y281{bottom:637.093500px;}
.y3a{bottom:637.864500px;}
.y2c9{bottom:637.950000px;}
.y158{bottom:641.640000px;}
.ya1{bottom:642.729000px;}
.y181{bottom:645.523500px;}
.y22a{bottom:647.877000px;}
.y1a8{bottom:647.916000px;}
.y1bc{bottom:648.930000px;}
.yf{bottom:650.718000px;}
.y2ab{bottom:651.426000px;}
.yd2{bottom:651.552000px;}
.y1df{bottom:652.405500px;}
.y132{bottom:652.734000px;}
.y24c{bottom:654.601500px;}
.y267{bottom:654.864000px;}
.yf8{bottom:655.276500px;}
.y106{bottom:656.290500px;}
.y280{bottom:658.657500px;}
.y206{bottom:658.911000px;}
.y6d{bottom:659.647500px;}
.y39{bottom:660.661500px;}
.y157{bottom:664.437000px;}
.ya0{bottom:665.526000px;}
.y180{bottom:668.320500px;}
.y229{bottom:670.674000px;}
.y1a7{bottom:670.713000px;}
.y1de{bottom:670.981500px;}
.y1bb{bottom:671.727000px;}
.ye{bottom:672.670500px;}
.y2aa{bottom:674.223000px;}
.y130{bottom:675.531000px;}
.y131{bottom:675.616500px;}
.y266{bottom:677.661000px;}
.yf7{bottom:678.073500px;}
.y105{bottom:679.087500px;}
.y27f{bottom:680.221500px;}
.y205{bottom:681.073500px;}
.y6c{bottom:682.444500px;}
.y38{bottom:683.458500px;}
.yd1{bottom:686.073000px;}
.y9f{bottom:688.323000px;}
.y17f{bottom:691.117500px;}
.y1dd{bottom:693.142500px;}
.y228{bottom:693.471000px;}
.y1a6{bottom:693.510000px;}
.y1ba{bottom:694.524000px;}
.yd{bottom:694.623000px;}
.y2a9{bottom:697.020000px;}
.y12e{bottom:698.328000px;}
.y12f{bottom:698.413500px;}
.y204{bottom:699.649500px;}
.y265{bottom:700.458000px;}
.yf6{bottom:700.870500px;}
.y24b{bottom:701.502000px;}
.y104{bottom:701.884500px;}
.y27e{bottom:702.384000px;}
.y6b{bottom:705.241500px;}
.y58{bottom:705.327000px;}
.y37{bottom:706.255500px;}
.yd0{bottom:708.870000px;}
.y9e{bottom:711.120000px;}
.y1dc{bottom:711.718500px;}
.y17e{bottom:713.914500px;}
.y227{bottom:716.268000px;}
.y1a5{bottom:716.308500px;}
.yc{bottom:716.575500px;}
.y1b9{bottom:717.321000px;}
.y2a8{bottom:719.817000px;}
.y12d{bottom:721.125000px;}
.y203{bottom:721.810500px;}
.y264{bottom:723.255000px;}
.y24a{bottom:723.664500px;}
.y6a{bottom:728.038500px;}
.y36{bottom:729.052500px;}
.ycf{bottom:731.668500px;}
.y1db{bottom:733.881000px;}
.y9d{bottom:733.917000px;}
.yb{bottom:738.528000px;}
.y226{bottom:739.065000px;}
.y1a4{bottom:739.105500px;}
.y1b8{bottom:740.119500px;}
.y202{bottom:740.386500px;}
.y27d{bottom:740.755500px;}
.y12c{bottom:742.239000px;}
.yf5{bottom:742.614000px;}
.y263{bottom:745.038000px;}
.y69{bottom:750.835500px;}
.y35{bottom:751.849500px;}
.y1da{bottom:752.455500px;}
.yce{bottom:754.465500px;}
.y9c{bottom:756.714000px;}
.ya{bottom:760.480500px;}
.y17d{bottom:760.815000px;}
.y225{bottom:761.862000px;}
.y1a3{bottom:761.902500px;}
.y201{bottom:762.549000px;}
.y1b7{bottom:762.916500px;}
.y12b{bottom:764.401500px;}
.yf4{bottom:765.411000px;}
.y68{bottom:773.632500px;}
.y1d9{bottom:774.618000px;}
.y34{bottom:774.646500px;}
.ycd{bottom:777.262500px;}
.y9b{bottom:779.511000px;}
.y200{bottom:781.123500px;}
.y9{bottom:782.434500px;}
.y12a{bottom:782.977500px;}
.y1a2{bottom:784.699500px;}
.y1b6{bottom:785.713500px;}
.yf3{bottom:788.208000px;}
.y1d8{bottom:793.192500px;}
.y67{bottom:796.429500px;}
.y33{bottom:797.443500px;}
.y2c8{bottom:797.529000px;}
.ycc{bottom:800.059500px;}
.y17c{bottom:801.552000px;}
.y9a{bottom:802.308000px;}
.y1ff{bottom:803.286000px;}
.y8{bottom:804.387000px;}
.y129{bottom:805.138500px;}
.y1a1{bottom:807.496500px;}
.y1b5{bottom:808.510500px;}
.yf2{bottom:811.005000px;}
.y1d7{bottom:815.355000px;}
.y66{bottom:819.226500px;}
.y32{bottom:820.240500px;}
.y1fe{bottom:821.860500px;}
.ycb{bottom:822.856500px;}
.y128{bottom:823.714500px;}
.y99{bottom:825.105000px;}
.y7{bottom:826.339500px;}
.y1a0{bottom:830.293500px;}
.y1b4{bottom:831.307500px;}
.yf1{bottom:833.802000px;}
.y65{bottom:842.023500px;}
.y17b{bottom:842.289000px;}
.y31{bottom:843.037500px;}
.y1fd{bottom:844.023000px;}
.y2a7{bottom:844.263000px;}
.yca{bottom:845.653500px;}
.y127{bottom:845.875500px;}
.y98{bottom:847.902000px;}
.y6{bottom:848.292000px;}
.y19f{bottom:853.090500px;}
.y1d6{bottom:853.728000px;}
.y1b3{bottom:854.104500px;}
.yf0{bottom:856.600500px;}
.y1fc{bottom:862.599000px;}
.y126{bottom:864.451500px;}
.y64{bottom:864.820500px;}
.y30{bottom:865.834500px;}
.yc9{bottom:868.450500px;}
.y97{bottom:870.699000px;}
.y19e{bottom:875.887500px;}
.y1d5{bottom:876.525000px;}
.y1b2{bottom:876.901500px;}
.y1fb{bottom:884.760000px;}
.y125{bottom:886.614000px;}
.y63{bottom:887.617500px;}
.y2f{bottom:888.631500px;}
.yef{bottom:889.857000px;}
.yc8{bottom:891.247500px;}
.y96{bottom:893.496000px;}
.y19d{bottom:898.015500px;}
.y124{bottom:905.188500px;}
.y62{bottom:910.416000px;}
.y2e{bottom:911.430000px;}
.y57{bottom:911.515500px;}
.yc7{bottom:914.044500px;}
.y95{bottom:916.293000px;}
.y5{bottom:917.967000px;}
.y19c{bottom:920.178000px;}
.y1fa{bottom:923.133000px;}
.y123{bottom:927.351000px;}
.y60{bottom:933.213000px;}
.y61{bottom:933.298500px;}
.y2d{bottom:934.227000px;}
.y94{bottom:939.091500px;}
.y19b{bottom:942.340500px;}
.y122{bottom:945.927000px;}
.y1f9{bottom:945.930000px;}
.y5e{bottom:956.010000px;}
.y5f{bottom:956.095500px;}
.y2c{bottom:957.024000px;}
.y4{bottom:959.347500px;}
.yc6{bottom:960.945000px;}
.y93{bottom:961.888500px;}
.y19a{bottom:964.501500px;}
.y121{bottom:968.088000px;}
.y5d{bottom:978.807000px;}
.y2c4{bottom:979.708500px;}
.y2b{bottom:979.821000px;}
.yc5{bottom:982.509000px;}
.y120{bottom:986.664000px;}
.y3{bottom:996.498000px;}
.y5c{bottom:1001.604000px;}
.y2a{bottom:1002.618000px;}
.yc4{bottom:1004.073000px;}
.y2c3{bottom:1006.321500px;}
.y11f{bottom:1008.825000px;}
.y5b{bottom:1024.401000px;}
.y29{bottom:1025.415000px;}
.yc3{bottom:1025.637000px;}
.y5a{bottom:1047.198000px;}
.yc2{bottom:1047.202500px;}
.y28{bottom:1048.212000px;}
.yc1{bottom:1069.363500px;}
.y59{bottom:1069.995000px;}
.y27{bottom:1071.009000px;}
.y2cd{bottom:1071.094500px;}
.y2{bottom:1101.726000px;}
.y26{bottom:1110.262500px;}
.y1{bottom:1113.681000px;}
.hc{height:35.865000px;}
.h1{height:35.865450px;}
.h10{height:35.865600px;}
.he{height:37.336090px;}
.hf{height:37.802342px;}
.h5{height:38.250662px;}
.h4{height:42.500452px;}
.h9{height:47.157012px;}
.h7{height:48.875562px;}
.ha{height:49.223562px;}
.h6{height:53.929630px;}
.h3{height:55.250672px;}
.h2{height:73.440896px;}
.hd{height:91.407450px;}
.hb{height:92.541000px;}
.h8{height:92.541450px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x19{left:126.562500px;}
.x3{left:127.666500px;}
.x37{left:130.921500px;}
.x24{left:136.525500px;}
.x54{left:138.124500px;}
.x47{left:141.154500px;}
.x56{left:147.987000px;}
.x1f{left:151.072500px;}
.xd{left:153.070500px;}
.x25{left:154.917000px;}
.x4f{left:160.975500px;}
.x48{left:164.269500px;}
.x26{left:169.482000px;}
.x46{left:175.795500px;}
.x6{left:178.044000px;}
.x3f{left:179.079000px;}
.x43{left:180.270000px;}
.xb{left:182.308500px;}
.x21{left:184.305000px;}
.x18{left:186.372000px;}
.x22{left:190.990500px;}
.x2a{left:193.492500px;}
.x20{left:202.096500px;}
.x57{left:204.811500px;}
.x49{left:221.533500px;}
.x4{left:230.769000px;}
.x50{left:232.825500px;}
.x9{left:234.211500px;}
.x27{left:236.533500px;}
.x8{left:242.668500px;}
.x4e{left:245.337000px;}
.x28{left:251.100000px;}
.x13{left:253.870500px;}
.x45{left:258.061500px;}
.x44{left:259.465500px;}
.x42{left:261.636000px;}
.x59{left:268.045500px;}
.x58{left:269.481000px;}
.x1e{left:271.135500px;}
.x29{left:304.599000px;}
.x4a{left:332.571000px;}
.x5{left:350.035500px;}
.x40{left:354.156000px;}
.x52{left:356.529000px;}
.x55{left:361.573500px;}
.x53{left:364.159500px;}
.x3e{left:365.457000px;}
.x41{left:368.617500px;}
.xa{left:375.714000px;}
.x10{left:404.373000px;}
.x7{left:410.130000px;}
.x2d{left:412.923000px;}
.x2c{left:414.358500px;}
.xc{left:432.832500px;}
.x2e{left:433.938000px;}
.x23{left:447.636000px;}
.x11{left:452.577000px;}
.xf{left:463.057500px;}
.xe{left:464.346000px;}
.x51{left:467.388000px;}
.x14{left:489.858000px;}
.x33{left:496.596000px;}
.x35{left:505.959000px;}
.x4d{left:523.695000px;}
.x31{left:525.736500px;}
.x3a{left:538.500000px;}
.x1a{left:546.370500px;}
.x4b{left:555.123000px;}
.x2b{left:556.249500px;}
.x2{left:573.774000px;}
.x12{left:578.070000px;}
.x15{left:593.236500px;}
.x16{left:594.306000px;}
.x1d{left:600.454500px;}
.x36{left:622.717500px;}
.x34{left:648.109500px;}
.x1b{left:653.124000px;}
.x4c{left:668.880000px;}
.x17{left:672.081000px;}
.x3b{left:683.482500px;}
.x1{left:696.322500px;}
.x38{left:701.856000px;}
.x3c{left:705.334500px;}
.x39{left:715.512000px;}
.x1c{left:730.987500px;}
.x32{left:744.763500px;}
.x30{left:763.786500px;}
.x2f{left:765.222000px;}
.x3d{left:766.374000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:49.370667pt;}
.v1{vertical-align:50.378667pt;}
.lsb{letter-spacing:-271.973904pt;}
.ls9{letter-spacing:-213.864000pt;}
.ls2b{letter-spacing:-88.906320pt;}
.ls29{letter-spacing:-88.234176pt;}
.ls8{letter-spacing:-75.585648pt;}
.ls2e{letter-spacing:-65.809008pt;}
.ls7{letter-spacing:-62.998224pt;}
.ls2f{letter-spacing:-57.376656pt;}
.ls2c{letter-spacing:-55.299120pt;}
.ls2a{letter-spacing:-51.082944pt;}
.ls6{letter-spacing:-13.992816pt;}
.lsc{letter-spacing:-13.320672pt;}
.ls5{letter-spacing:-9.776640pt;}
.ls2d{letter-spacing:-7.699104pt;}
.ls4{letter-spacing:-0.916560pt;}
.lsa{letter-spacing:-0.672144pt;}
.ls1{letter-spacing:0.000000pt;}
.ls10{letter-spacing:1.099878pt;}
.ls34{letter-spacing:1.283184pt;}
.ls37{letter-spacing:2.199744pt;}
.ls27{letter-spacing:2.258436pt;}
.ls16{letter-spacing:2.260848pt;}
.ls0{letter-spacing:2.656693pt;}
.ls11{letter-spacing:10.568397pt;}
.lsf{letter-spacing:10.616218pt;}
.lse{letter-spacing:11.716096pt;}
.ls13{letter-spacing:11.955200pt;}
.ls17{letter-spacing:12.404112pt;}
.ls40{letter-spacing:12.526320pt;}
.ls35{letter-spacing:14.726064pt;}
.ls1a{letter-spacing:14.970480pt;}
.ls19{letter-spacing:15.031584pt;}
.ls1d{letter-spacing:15.092688pt;}
.ls28{letter-spacing:15.151536pt;}
.ls42{letter-spacing:15.153792pt;}
.ls1f{letter-spacing:15.154783pt;}
.ls44{letter-spacing:15.214896pt;}
.ls12{letter-spacing:15.238895pt;}
.ls21{letter-spacing:15.273333pt;}
.ls15{letter-spacing:15.276000pt;}
.ls23{letter-spacing:15.278667pt;}
.ls24{letter-spacing:15.278704pt;}
.ls33{letter-spacing:15.337104pt;}
.ls25{letter-spacing:15.394398pt;}
.ls30{letter-spacing:15.398208pt;}
.ls22{letter-spacing:15.456653pt;}
.ls31{letter-spacing:15.459312pt;}
.ls26{letter-spacing:15.461294pt;}
.ls3b{letter-spacing:15.520416pt;}
.ls20{letter-spacing:15.578602pt;}
.ls14{letter-spacing:15.581520pt;}
.ls3f{letter-spacing:15.887040pt;}
.ls39{letter-spacing:15.948144pt;}
.ls3c{letter-spacing:16.070352pt;}
.ls1b{letter-spacing:16.253664pt;}
.ls18{letter-spacing:16.436976pt;}
.ls41{letter-spacing:16.620288pt;}
.ls3e{letter-spacing:16.681392pt;}
.ls43{letter-spacing:17.292432pt;}
.ls3a{letter-spacing:17.842368pt;}
.ls45{letter-spacing:18.025680pt;}
.ls32{letter-spacing:18.881136pt;}
.ls36{letter-spacing:19.247760pt;}
.ls3d{letter-spacing:19.736592pt;}
.ls1e{letter-spacing:20.592048pt;}
.ls38{letter-spacing:23.586144pt;}
.ls1c{letter-spacing:23.830560pt;}
.ls2{letter-spacing:851.373333pt;}
.lsd{letter-spacing:852.136000pt;}
.ls3{letter-spacing:852.440000pt;}
.ws66{word-spacing:-15.276000pt;}
.ws166{word-spacing:-11.955200pt;}
.ws1fe{word-spacing:-5.743776pt;}
.ws1fb{word-spacing:-3.482536pt;}
.wsd5{word-spacing:-3.425176pt;}
.ws1f{word-spacing:-3.360720pt;}
.wsc7{word-spacing:-3.303774pt;}
.ws17f{word-spacing:-3.299616pt;}
.ws149{word-spacing:-3.238512pt;}
.ws1af{word-spacing:-3.177408pt;}
.ws10b{word-spacing:-3.116304pt;}
.ws169{word-spacing:-3.055200pt;}
.ws13a{word-spacing:-2.994096pt;}
.ws1a5{word-spacing:-2.932992pt;}
.ws2f{word-spacing:-2.871888pt;}
.ws27{word-spacing:-2.810784pt;}
.ws1d{word-spacing:-2.749680pt;}
.ws1ae{word-spacing:-2.688576pt;}
.ws12{word-spacing:-2.656693pt;}
.ws22{word-spacing:-2.627472pt;}
.ws112{word-spacing:-2.566368pt;}
.ws1e2{word-spacing:-2.510902pt;}
.ws1e0{word-spacing:-2.510488pt;}
.ws145{word-spacing:-2.505264pt;}
.ws18a{word-spacing:-2.486682pt;}
.wsf4{word-spacing:-2.444160pt;}
.ws54{word-spacing:-2.383056pt;}
.ws15e{word-spacing:-2.321952pt;}
.ws46{word-spacing:-2.260848pt;}
.wse2{word-spacing:-2.199744pt;}
.ws105{word-spacing:-2.138640pt;}
.ws1b6{word-spacing:-2.077536pt;}
.ws1fa{word-spacing:-2.022810pt;}
.ws1f9{word-spacing:-2.019022pt;}
.ws2d{word-spacing:-2.016432pt;}
.ws113{word-spacing:-1.955328pt;}
.ws81{word-spacing:-1.896793pt;}
.ws24{word-spacing:-1.894224pt;}
.ws1b{word-spacing:-1.833120pt;}
.ws190{word-spacing:-1.817190pt;}
.ws14f{word-spacing:-1.772016pt;}
.wsa6{word-spacing:-1.716354pt;}
.ws74{word-spacing:-1.710912pt;}
.ws189{word-spacing:-1.673728pt;}
.ws65{word-spacing:-1.649808pt;}
.ws120{word-spacing:-1.527600pt;}
.ws19{word-spacing:-1.466496pt;}
.ws1a4{word-spacing:-1.405392pt;}
.ws14b{word-spacing:-1.344288pt;}
.ws6f{word-spacing:-1.283184pt;}
.ws102{word-spacing:-1.222080pt;}
.ws125{word-spacing:-1.160976pt;}
.ws10a{word-spacing:-1.099872pt;}
.ws44{word-spacing:-1.038768pt;}
.ws9b{word-spacing:-0.979819pt;}
.wse5{word-spacing:-0.977664pt;}
.ws127{word-spacing:-0.916560pt;}
.ws11{word-spacing:-0.903276pt;}
.ws50{word-spacing:-0.855456pt;}
.ws58{word-spacing:-0.794352pt;}
.ws1d7{word-spacing:-0.741389pt;}
.ws1d9{word-spacing:-0.738603pt;}
.ws33{word-spacing:-0.733248pt;}
.ws2b{word-spacing:-0.672144pt;}
.ws17e{word-spacing:-0.621670pt;}
.ws142{word-spacing:-0.611040pt;}
.ws28{word-spacing:-0.549936pt;}
.ws19a{word-spacing:-0.526029pt;}
.ws11c{word-spacing:-0.488832pt;}
.ws184{word-spacing:-0.478208pt;}
.wsbb{word-spacing:-0.437209pt;}
.ws6a{word-spacing:-0.427728pt;}
.wsa2{word-spacing:-0.367105pt;}
.ws4e{word-spacing:-0.366624pt;}
.wsa4{word-spacing:-0.365369pt;}
.wsc6{word-spacing:-0.364560pt;}
.ws1dd{word-spacing:-0.313806pt;}
.ws1dc{word-spacing:-0.311897pt;}
.ws1ee{word-spacing:-0.311485pt;}
.wsbe{word-spacing:-0.311463pt;}
.wsbc{word-spacing:-0.311027pt;}
.ws1ec{word-spacing:-0.307283pt;}
.wsda{word-spacing:-0.306931pt;}
.ws34{word-spacing:-0.305520pt;}
.ws1f7{word-spacing:-0.305141pt;}
.ws1f8{word-spacing:-0.304100pt;}
.wsad{word-spacing:-0.250121pt;}
.ws95{word-spacing:-0.248341pt;}
.wsdc{word-spacing:-0.244867pt;}
.ws1c{word-spacing:-0.244416pt;}
.ws16d{word-spacing:-0.239104pt;}
.ws8{word-spacing:-0.212535pt;}
.ws17d{word-spacing:-0.191283pt;}
.ws1f2{word-spacing:-0.184809pt;}
.ws84{word-spacing:-0.184792pt;}
.ws16{word-spacing:-0.183312pt;}
.ws7f{word-spacing:-0.183101pt;}
.ws9a{word-spacing:-0.183062pt;}
.ws1bf{word-spacing:-0.182521pt;}
.wsa1{word-spacing:-0.180509pt;}
.ws94{word-spacing:-0.179973pt;}
.ws1c0{word-spacing:-0.177104pt;}
.ws1f1{word-spacing:-0.169543pt;}
.ws1d2{word-spacing:-0.169221pt;}
.ws7{word-spacing:-0.159402pt;}
.ws163{word-spacing:-0.143462pt;}
.wsa5{word-spacing:-0.128305pt;}
.ws1f6{word-spacing:-0.125216pt;}
.ws1db{word-spacing:-0.124212pt;}
.wsa0{word-spacing:-0.123641pt;}
.wsa7{word-spacing:-0.122420pt;}
.ws18{word-spacing:-0.122208pt;}
.ws1f4{word-spacing:-0.122007pt;}
.ws1f5{word-spacing:-0.121059pt;}
.ws8d{word-spacing:-0.120817pt;}
.wsf{word-spacing:-0.106268pt;}
.ws160{word-spacing:-0.095642pt;}
.wsb5{word-spacing:-0.074749pt;}
.wsc8{word-spacing:-0.065362pt;}
.wsb4{word-spacing:-0.063298pt;}
.ws1d1{word-spacing:-0.062381pt;}
.ws1e{word-spacing:-0.061104pt;}
.wsb6{word-spacing:-0.057502pt;}
.wse{word-spacing:-0.053134pt;}
.ws171{word-spacing:-0.047821pt;}
.ws1{word-spacing:-0.042507pt;}
.ws1de{word-spacing:-0.012662pt;}
.wsd3{word-spacing:-0.010901pt;}
.wsd1{word-spacing:-0.005499pt;}
.ws1df{word-spacing:-0.005409pt;}
.ws9c{word-spacing:-0.003755pt;}
.ws1e5{word-spacing:-0.003632pt;}
.ws1e4{word-spacing:-0.003307pt;}
.wsb3{word-spacing:-0.003102pt;}
.ws75{word-spacing:-0.002544pt;}
.ws1e9{word-spacing:-0.002421pt;}
.ws90{word-spacing:-0.001808pt;}
.ws77{word-spacing:-0.001579pt;}
.ws8f{word-spacing:-0.001518pt;}
.wsb9{word-spacing:-0.001195pt;}
.wsab{word-spacing:-0.001088pt;}
.ws1da{word-spacing:-0.000965pt;}
.ws1eb{word-spacing:-0.000613pt;}
.ws3{word-spacing:0.000000pt;}
.ws1c1{word-spacing:0.000016pt;}
.ws1ea{word-spacing:0.000197pt;}
.ws1e3{word-spacing:0.000368pt;}
.ws1c8{word-spacing:0.000736pt;}
.wsd4{word-spacing:0.001579pt;}
.ws82{word-spacing:0.002635pt;}
.ws15f{word-spacing:0.047821pt;}
.wsd{word-spacing:0.053134pt;}
.ws1ce{word-spacing:0.057088pt;}
.ws1cd{word-spacing:0.058283pt;}
.ws20{word-spacing:0.061104pt;}
.ws2{word-spacing:0.091815pt;}
.ws13{word-spacing:0.095642pt;}
.ws99{word-spacing:0.112276pt;}
.ws1ef{word-spacing:0.113260pt;}
.ws1f0{word-spacing:0.118158pt;}
.ws1e7{word-spacing:0.118559pt;}
.ws1e8{word-spacing:0.118871pt;}
.ws32{word-spacing:0.122208pt;}
.ws1c7{word-spacing:0.124420pt;}
.ws7c{word-spacing:0.126195pt;}
.ws179{word-spacing:0.143462pt;}
.ws1cf{word-spacing:0.182002pt;}
.ws17{word-spacing:0.183312pt;}
.ws1d0{word-spacing:0.183350pt;}
.ws17c{word-spacing:0.191283pt;}
.ws16e{word-spacing:0.239104pt;}
.ws91{word-spacing:0.242651pt;}
.ws23{word-spacing:0.244416pt;}
.ws1c2{word-spacing:0.244805pt;}
.wsd8{word-spacing:0.245315pt;}
.wsc2{word-spacing:0.246842pt;}
.ws19d{word-spacing:0.286925pt;}
.ws98{word-spacing:0.299454pt;}
.ws79{word-spacing:0.299872pt;}
.ws1c3{word-spacing:0.301910pt;}
.ws43{word-spacing:0.305520pt;}
.wsd2{word-spacing:0.309307pt;}
.ws7e{word-spacing:0.358597pt;}
.ws96{word-spacing:0.361160pt;}
.ws40{word-spacing:0.366624pt;}
.ws178{word-spacing:0.382566pt;}
.wsc{word-spacing:0.425071pt;}
.ws52{word-spacing:0.427728pt;}
.wsae{word-spacing:0.488780pt;}
.ws106{word-spacing:0.488832pt;}
.ws123{word-spacing:0.549936pt;}
.ws30{word-spacing:0.611040pt;}
.ws21{word-spacing:0.672144pt;}
.ws83{word-spacing:0.672456pt;}
.wsb{word-spacing:0.690740pt;}
.ws138{word-spacing:0.733248pt;}
.ws13c{word-spacing:0.794352pt;}
.ws26{word-spacing:0.855456pt;}
.wsc0{word-spacing:0.859378pt;}
.ws134{word-spacing:0.916560pt;}
.wsbd{word-spacing:0.917300pt;}
.ws109{word-spacing:0.977664pt;}
.ws6{word-spacing:1.009543pt;}
.ws4c{word-spacing:1.038768pt;}
.ws38{word-spacing:1.099872pt;}
.ws10e{word-spacing:1.160976pt;}
.ws147{word-spacing:1.222080pt;}
.ws48{word-spacing:1.283184pt;}
.ws172{word-spacing:1.291162pt;}
.ws37{word-spacing:1.344288pt;}
.wsf5{word-spacing:1.405392pt;}
.ws10c{word-spacing:1.466496pt;}
.ws135{word-spacing:1.527600pt;}
.ws198{word-spacing:1.530266pt;}
.wseb{word-spacing:1.588704pt;}
.ws10f{word-spacing:1.649808pt;}
.ws42{word-spacing:1.710912pt;}
.ws161{word-spacing:1.721549pt;}
.ws11e{word-spacing:1.772016pt;}
.ws11a{word-spacing:1.833120pt;}
.wse4{word-spacing:1.894224pt;}
.ws57{word-spacing:1.955328pt;}
.ws17b{word-spacing:1.960653pt;}
.ws174{word-spacing:2.008474pt;}
.wsb0{word-spacing:2.014299pt;}
.ws12b{word-spacing:2.016432pt;}
.ws9{word-spacing:2.072221pt;}
.ws1d5{word-spacing:2.075403pt;}
.wse0{word-spacing:2.077536pt;}
.ws1d3{word-spacing:2.079983pt;}
.ws103{word-spacing:2.138640pt;}
.wsea{word-spacing:2.199744pt;}
.ws18c{word-spacing:2.199757pt;}
.ws104{word-spacing:2.260848pt;}
.ws12a{word-spacing:2.321952pt;}
.ws80{word-spacing:2.327034pt;}
.ws5{word-spacing:2.337890pt;}
.ws108{word-spacing:2.383056pt;}
.wsb1{word-spacing:2.383903pt;}
.wsb2{word-spacing:2.385430pt;}
.ws173{word-spacing:2.391040pt;}
.ws4f{word-spacing:2.444160pt;}
.wse7{word-spacing:2.505264pt;}
.ws1a{word-spacing:2.566368pt;}
.ws164{word-spacing:2.582323pt;}
.ws3e{word-spacing:2.627472pt;}
.ws25{word-spacing:2.688576pt;}
.ws76{word-spacing:2.689590pt;}
.ws15{word-spacing:2.749680pt;}
.ws101{word-spacing:2.810784pt;}
.ws1a1{word-spacing:2.869248pt;}
.ws3f{word-spacing:2.871888pt;}
.ws10d{word-spacing:2.932992pt;}
.ws9d{word-spacing:2.934571pt;}
.ws2a{word-spacing:2.994096pt;}
.wsc5{word-spacing:3.052544pt;}
.wsc3{word-spacing:3.054959pt;}
.ws110{word-spacing:3.055200pt;}
.ws100{word-spacing:3.116304pt;}
.ws7d{word-spacing:3.117465pt;}
.wsdf{word-spacing:3.177408pt;}
.ws49{word-spacing:3.238512pt;}
.ws18b{word-spacing:3.251814pt;}
.ws14e{word-spacing:3.299616pt;}
.wsa{word-spacing:3.347434pt;}
.ws36{word-spacing:3.360720pt;}
.ws8e{word-spacing:3.385162pt;}
.ws5a{word-spacing:3.421824pt;}
.wsf8{word-spacing:3.482928pt;}
.wsff{word-spacing:3.544032pt;}
.ws53{word-spacing:3.605136pt;}
.ws4b{word-spacing:3.666240pt;}
.ws13e{word-spacing:3.727344pt;}
.ws165{word-spacing:3.730022pt;}
.ws2e{word-spacing:3.788448pt;}
.ws5c{word-spacing:3.849552pt;}
.ws170{word-spacing:3.873485pt;}
.ws111{word-spacing:3.910656pt;}
.wsbf{word-spacing:3.913647pt;}
.ws140{word-spacing:3.971760pt;}
.ws3c{word-spacing:4.032864pt;}
.ws1f3{word-spacing:4.034035pt;}
.ws199{word-spacing:4.064768pt;}
.ws41{word-spacing:4.093968pt;}
.ws35{word-spacing:4.155072pt;}
.ws1e6{word-spacing:4.212903pt;}
.wsef{word-spacing:4.216176pt;}
.wsaf{word-spacing:4.274561pt;}
.ws1c4{word-spacing:4.276088pt;}
.ws1c6{word-spacing:4.276851pt;}
.ws12f{word-spacing:4.277280pt;}
.wse9{word-spacing:4.338384pt;}
.wsee{word-spacing:4.399488pt;}
.wsf3{word-spacing:4.460592pt;}
.ws10{word-spacing:4.463245pt;}
.ws13d{word-spacing:4.521696pt;}
.wsf2{word-spacing:4.582800pt;}
.wse6{word-spacing:4.643904pt;}
.ws89{word-spacing:4.704736pt;}
.ws118{word-spacing:4.705008pt;}
.ws157{word-spacing:4.766112pt;}
.wsd9{word-spacing:4.769772pt;}
.ws19c{word-spacing:4.782080pt;}
.wsf0{word-spacing:4.827216pt;}
.ws17a{word-spacing:4.829901pt;}
.ws156{word-spacing:4.888320pt;}
.ws56{word-spacing:4.949424pt;}
.ws39{word-spacing:5.010528pt;}
.ws5b{word-spacing:5.071632pt;}
.ws188{word-spacing:5.116826pt;}
.ws11d{word-spacing:5.132736pt;}
.ws4d{word-spacing:5.193840pt;}
.ws1bb{word-spacing:5.252026pt;}
.ws1bd{word-spacing:5.253762pt;}
.ws3d{word-spacing:5.254944pt;}
.ws3a{word-spacing:5.316048pt;}
.ws51{word-spacing:5.377152pt;}
.ws3b{word-spacing:5.438256pt;}
.ws16f{word-spacing:5.451571pt;}
.wsdb{word-spacing:5.497342pt;}
.ws45{word-spacing:5.499360pt;}
.wsf7{word-spacing:5.560464pt;}
.ws154{word-spacing:5.621568pt;}
.ws158{word-spacing:5.682672pt;}
.ws14a{word-spacing:5.743776pt;}
.wsd6{word-spacing:5.745271pt;}
.wscd{word-spacing:5.746108pt;}
.wsfd{word-spacing:5.804880pt;}
.ws14c{word-spacing:5.865984pt;}
.ws183{word-spacing:5.927088pt;}
.ws126{word-spacing:5.988192pt;}
.ws29{word-spacing:6.049296pt;}
.ws107{word-spacing:6.110400pt;}
.ws196{word-spacing:6.171504pt;}
.ws168{word-spacing:6.232608pt;}
.ws191{word-spacing:6.264525pt;}
.wsf6{word-spacing:6.293712pt;}
.ws4a{word-spacing:6.354816pt;}
.ws131{word-spacing:6.415920pt;}
.ws12c{word-spacing:6.477024pt;}
.ws59{word-spacing:6.538128pt;}
.ws11f{word-spacing:6.599232pt;}
.ws15d{word-spacing:6.660336pt;}
.ws1fc{word-spacing:6.711632pt;}
.ws1ff{word-spacing:6.718560pt;}
.ws1fd{word-spacing:6.718667pt;}
.ws1b7{word-spacing:6.721104pt;}
.ws12e{word-spacing:6.721440pt;}
.ws47{word-spacing:6.782544pt;}
.ws150{word-spacing:6.843648pt;}
.ws195{word-spacing:6.904752pt;}
.ws181{word-spacing:6.965856pt;}
.wsa8{word-spacing:6.966222pt;}
.ws182{word-spacing:7.026960pt;}
.ws1be{word-spacing:7.028278pt;}
.wsf1{word-spacing:7.088064pt;}
.wsf9{word-spacing:7.149168pt;}
.ws55{word-spacing:7.210272pt;}
.ws116{word-spacing:7.271376pt;}
.ws115{word-spacing:7.332480pt;}
.ws1b8{word-spacing:7.393584pt;}
.ws1d6{word-spacing:7.394640pt;}
.ws9f{word-spacing:7.402923pt;}
.ws186{word-spacing:7.454688pt;}
.ws122{word-spacing:7.515792pt;}
.ws155{word-spacing:7.576896pt;}
.ws129{word-spacing:7.638000pt;}
.wsd7{word-spacing:7.639401pt;}
.wsfe{word-spacing:7.699104pt;}
.wsdd{word-spacing:7.759131pt;}
.wsfa{word-spacing:7.760208pt;}
.ws6c{word-spacing:7.821312pt;}
.ws31{word-spacing:7.882416pt;}
.wsfc{word-spacing:7.943520pt;}
.ws1cb{word-spacing:7.947483pt;}
.ws1c9{word-spacing:8.004237pt;}
.ws1a7{word-spacing:8.065728pt;}
.ws67{word-spacing:8.126832pt;}
.ws19b{word-spacing:8.129536pt;}
.ws121{word-spacing:8.187936pt;}
.ws1cc{word-spacing:8.188814pt;}
.ws148{word-spacing:8.249040pt;}
.wsec{word-spacing:8.310144pt;}
.ws13f{word-spacing:8.371248pt;}
.ws13b{word-spacing:8.432352pt;}
.wsed{word-spacing:8.493456pt;}
.ws1a6{word-spacing:8.554560pt;}
.ws1a2{word-spacing:8.615664pt;}
.wsc9{word-spacing:8.680773pt;}
.ws14d{word-spacing:8.798976pt;}
.ws8b{word-spacing:8.799907pt;}
.wsaa{word-spacing:8.801632pt;}
.wscf{word-spacing:8.858595pt;}
.ws92{word-spacing:8.859358pt;}
.ws151{word-spacing:8.921184pt;}
.ws141{word-spacing:8.982288pt;}
.wsfb{word-spacing:9.043392pt;}
.ws16c{word-spacing:9.104496pt;}
.ws16b{word-spacing:9.165600pt;}
.wscc{word-spacing:9.170797pt;}
.ws87{word-spacing:9.224728pt;}
.ws85{word-spacing:9.226254pt;}
.ws61{word-spacing:9.226704pt;}
.ws8c{word-spacing:9.233010pt;}
.ws137{word-spacing:9.287808pt;}
.ws117{word-spacing:9.410016pt;}
.ws11b{word-spacing:9.593328pt;}
.ws2c{word-spacing:9.654432pt;}
.ws194{word-spacing:9.715536pt;}
.ws18d{word-spacing:9.776640pt;}
.ws1b4{word-spacing:9.837744pt;}
.ws128{word-spacing:9.898848pt;}
.ws139{word-spacing:9.959952pt;}
.ws1b1{word-spacing:10.021056pt;}
.ws132{word-spacing:10.082160pt;}
.wsc4{word-spacing:10.186037pt;}
.ws119{word-spacing:10.204368pt;}
.ws153{word-spacing:10.326576pt;}
.ws152{word-spacing:10.387680pt;}
.wse8{word-spacing:10.509888pt;}
.wscb{word-spacing:10.816579pt;}
.ws69{word-spacing:10.937616pt;}
.ws187{word-spacing:10.998720pt;}
.ws1ad{word-spacing:11.059824pt;}
.ws7a{word-spacing:11.060044pt;}
.ws86{word-spacing:11.062292pt;}
.wse1{word-spacing:11.120928pt;}
.ws68{word-spacing:11.182032pt;}
.ws6b{word-spacing:11.304240pt;}
.ws146{word-spacing:11.365344pt;}
.ws97{word-spacing:11.493662pt;}
.ws144{word-spacing:11.548656pt;}
.ws19e{word-spacing:11.609760pt;}
.ws15a{word-spacing:11.670864pt;}
.ws143{word-spacing:11.907379pt;}
.ws1a3{word-spacing:11.976384pt;}
.wsd0{word-spacing:12.096877pt;}
.ws6e{word-spacing:12.098592pt;}
.ws5d{word-spacing:12.220800pt;}
.ws93{word-spacing:12.340341pt;}
.ws15c{word-spacing:12.343008pt;}
.ws19f{word-spacing:12.526320pt;}
.ws133{word-spacing:12.587424pt;}
.ws124{word-spacing:12.954048pt;}
.wsba{word-spacing:13.200273pt;}
.ws5e{word-spacing:13.381776pt;}
.wsce{word-spacing:13.504957pt;}
.ws1b2{word-spacing:13.626192pt;}
.ws6d{word-spacing:13.748400pt;}
.ws1b5{word-spacing:14.176128pt;}
.wsca{word-spacing:14.361605pt;}
.ws8a{word-spacing:14.540911pt;}
.ws12d{word-spacing:14.664960pt;}
.ws1d8{word-spacing:14.666549pt;}
.ws193{word-spacing:14.726064pt;}
.ws88{word-spacing:14.731554pt;}
.ws1a8{word-spacing:14.776627pt;}
.ws177{word-spacing:14.848272pt;}
.ws1b0{word-spacing:14.909376pt;}
.ws72{word-spacing:14.970480pt;}
.wsde{word-spacing:15.003739pt;}
.ws0{word-spacing:15.005042pt;}
.ws197{word-spacing:15.276000pt;}
.wsb8{word-spacing:15.277227pt;}
.ws180{word-spacing:15.642624pt;}
.ws1b3{word-spacing:15.703728pt;}
.ws9e{word-spacing:15.827086pt;}
.ws7b{word-spacing:16.189517pt;}
.ws176{word-spacing:16.253664pt;}
.ws159{word-spacing:17.199459pt;}
.ws130{word-spacing:17.353536pt;}
.ws5f{word-spacing:17.659056pt;}
.ws16a{word-spacing:17.842368pt;}
.ws78{word-spacing:17.845641pt;}
.wsc1{word-spacing:18.024833pt;}
.ws192{word-spacing:18.331200pt;}
.ws62{word-spacing:19.064448pt;}
.ws73{word-spacing:19.736592pt;}
.ws63{word-spacing:21.447504pt;}
.ws71{word-spacing:21.508608pt;}
.ws64{word-spacing:21.997440pt;}
.ws60{word-spacing:22.241856pt;}
.ws185{word-spacing:22.486272pt;}
.ws4{word-spacing:23.910240pt;}
.ws70{word-spacing:26.458032pt;}
.ws18e{word-spacing:28.963296pt;}
.wsac{word-spacing:28.971045pt;}
.ws15b{word-spacing:37.578960pt;}
.ws175{word-spacing:44.605920pt;}
.ws1ac{word-spacing:44.728128pt;}
.wse3{word-spacing:45.766896pt;}
.ws114{word-spacing:46.072416pt;}
.ws14{word-spacing:69.005059pt;}
.ws1c5{word-spacing:82.453738pt;}
.ws1ba{word-spacing:87.989760pt;}
.ws1d4{word-spacing:90.501134pt;}
.ws1ed{word-spacing:94.497336pt;}
.wsa3{word-spacing:105.227198pt;}
.ws1e1{word-spacing:110.598240pt;}
.wsa9{word-spacing:129.320506pt;}
.ws1a9{word-spacing:146.762035pt;}
.ws1aa{word-spacing:150.778982pt;}
.ws1bc{word-spacing:153.468806pt;}
.ws1ca{word-spacing:154.776432pt;}
.ws162{word-spacing:184.588288pt;}
.ws1a0{word-spacing:295.580365pt;}
.ws1b9{word-spacing:432.219144pt;}
.wsb7{word-spacing:504.932176pt;}
.ws18f{word-spacing:836.034896pt;}
.ws136{word-spacing:838.328229pt;}
.ws1ab{word-spacing:1047.227699pt;}
.ws167{word-spacing:1172.900762pt;}
._77{margin-left:-23.769456pt;}
._76{margin-left:-22.058544pt;}
._74{margin-left:-8.916400pt;}
._3{margin-left:-7.667229pt;}
._1{margin-left:-6.518898pt;}
._14{margin-left:-5.360669pt;}
._6{margin-left:-4.144442pt;}
._4{margin-left:-2.820343pt;}
._2{margin-left:-1.377232pt;}
._0{width:1.232709pt;}
._2d{width:2.609085pt;}
._23{width:3.765546pt;}
._6a{width:5.560464pt;}
._70{width:6.969790pt;}
._75{width:9.015232pt;}
._29{width:10.049241pt;}
._a{width:11.476915pt;}
._1e{width:13.198464pt;}
._c{width:14.432310pt;}
._5{width:16.205829pt;}
._d{width:17.258297pt;}
._8{width:18.375821pt;}
._f{width:19.314717pt;}
._10{width:20.408736pt;}
._2e{width:21.330096pt;}
._11{width:22.302960pt;}
._18{width:23.280624pt;}
._17{width:24.624912pt;}
._2f{width:25.724784pt;}
._7{width:26.992004pt;}
._32{width:28.018576pt;}
._e{width:28.931584pt;}
._9{width:30.175788pt;}
._15{width:31.896288pt;}
._20{width:33.587970pt;}
._16{width:35.379216pt;}
._24{width:36.612626pt;}
._1d{width:37.751642pt;}
._30{width:38.833984pt;}
._33{width:40.006637pt;}
._31{width:40.990154pt;}
._1f{width:42.222864pt;}
._13{width:43.600096pt;}
._35{width:44.850336pt;}
._28{width:46.223572pt;}
._27{width:47.735887pt;}
._12{width:48.765776pt;}
._34{width:49.799760pt;}
._b{width:53.133867pt;}
._1b{width:54.932496pt;}
._1c{width:56.530788pt;}
._72{width:57.467920pt;}
._22{width:59.881920pt;}
._19{width:61.104000pt;}
._1a{width:62.326080pt;}
._26{width:63.797167pt;}
._69{width:66.664464pt;}
._25{width:68.454268pt;}
._73{width:70.457392pt;}
._21{width:71.430576pt;}
._6f{width:72.722437pt;}
._2b{width:76.420012pt;}
._71{width:78.652211pt;}
._43{width:80.338944pt;}
._42{width:83.160371pt;}
._4b{width:87.073200pt;}
._6c{width:88.348183pt;}
._2a{width:92.241880pt;}
._2c{width:97.781277pt;}
._46{width:102.958182pt;}
._6d{width:108.817391pt;}
._6e{width:111.866242pt;}
._3b{width:115.535053pt;}
._5f{width:138.871603pt;}
._63{width:145.996902pt;}
._60{width:149.832138pt;}
._36{width:155.082854pt;}
._3d{width:162.820253pt;}
._39{width:164.737824pt;}
._62{width:171.389747pt;}
._38{width:180.619162pt;}
._3c{width:181.958144pt;}
._3f{width:187.734890pt;}
._3e{width:189.896397pt;}
._59{width:211.128832pt;}
._5c{width:215.097958pt;}
._4d{width:219.162726pt;}
._3a{width:231.739597pt;}
._66{width:241.016832pt;}
._53{width:259.762586pt;}
._5b{width:269.661491pt;}
._58{width:277.647565pt;}
._55{width:325.516186pt;}
._5d{width:348.231066pt;}
._5a{width:353.539174pt;}
._5e{width:359.309523pt;}
._40{width:364.442317pt;}
._57{width:390.695936pt;}
._61{width:461.269866pt;}
._64{width:482.591546pt;}
._4e{width:528.840656pt;}
._4f{width:585.804800pt;}
._48{width:600.756742pt;}
._56{width:607.850189pt;}
._47{width:615.214592pt;}
._54{width:619.072109pt;}
._52{width:620.953088pt;}
._51{width:627.201645pt;}
._50{width:629.783968pt;}
._37{width:655.192781pt;}
._6b{width:711.195566pt;}
._4c{width:722.881494pt;}
._67{width:728.530746pt;}
._49{width:765.584385pt;}
._68{width:775.412105pt;}
._45{width:798.416077pt;}
._65{width:981.043712pt;}
._44{width:1063.343309pt;}
._41{width:1066.069094pt;}
._4a{width:1146.408038pt;}
.fs6{font-size:42.506667pt;}
.fs0{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs5{font-size:61.104000pt;}
.fs7{font-size:63.761067pt;}
.fs2{font-size:69.074133pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:36.718667pt;}
.y87{bottom:36.970667pt;}
.y54{bottom:38.686667pt;}
.y170{bottom:74.305333pt;}
.y17a{bottom:75.206667pt;}
.y86{bottom:79.750667pt;}
.y52{bottom:80.652000pt;}
.y55{bottom:80.728000pt;}
.y14a{bottom:81.352000pt;}
.y156{bottom:82.253333pt;}
.y11e{bottom:84.513333pt;}
.y21f{bottom:84.781333pt;}
.y224{bottom:85.682667pt;}
.y249{bottom:87.773333pt;}
.y1d4{bottom:88.370667pt;}
.ye8{bottom:89.069333pt;}
.y91{bottom:89.300000pt;}
.yee{bottom:89.970667pt;}
.y296{bottom:91.056000pt;}
.y27c{bottom:91.490667pt;}
.y2a6{bottom:91.957333pt;}
.y25{bottom:93.917333pt;}
.y16f{bottom:94.569333pt;}
.y179{bottom:95.470667pt;}
.y1f6{bottom:97.298667pt;}
.y85{bottom:100.014667pt;}
.y51{bottom:100.916000pt;}
.y149{bottom:101.616000pt;}
.y155{bottom:102.517333pt;}
.y11d{bottom:104.777333pt;}
.y21e{bottom:105.045333pt;}
.y223{bottom:105.946667pt;}
.y23f{bottom:107.136000pt;}
.y248{bottom:108.037333pt;}
.y1d3{bottom:108.070667pt;}
.ye7{bottom:109.334667pt;}
.y90{bottom:109.564000pt;}
.yed{bottom:110.234667pt;}
.y295{bottom:111.320000pt;}
.y27b{bottom:111.754667pt;}
.y262{bottom:111.960000pt;}
.y2a5{bottom:112.221333pt;}
.y2c2{bottom:112.970667pt;}
.y24{bottom:114.182667pt;}
.y16e{bottom:114.833333pt;}
.y178{bottom:115.734667pt;}
.y1f5{bottom:117.562667pt;}
.y84{bottom:120.278667pt;}
.y50{bottom:121.180000pt;}
.y2cc{bottom:121.256000pt;}
.y148{bottom:121.880000pt;}
.y154{bottom:122.781333pt;}
.y1d2{bottom:124.582667pt;}
.y11c{bottom:125.041333pt;}
.y21d{bottom:125.309333pt;}
.y222{bottom:126.210667pt;}
.y23e{bottom:127.400000pt;}
.y197{bottom:127.988000pt;}
.y247{bottom:128.301333pt;}
.y261{bottom:128.470667pt;}
.ye6{bottom:129.598667pt;}
.y8f{bottom:129.828000pt;}
.yec{bottom:130.500000pt;}
.y294{bottom:131.584000pt;}
.y27a{bottom:132.018667pt;}
.y2a4{bottom:132.485333pt;}
.y2c1{bottom:133.234667pt;}
.y23{bottom:134.446667pt;}
.y16d{bottom:135.097333pt;}
.y177{bottom:135.998667pt;}
.y1f4{bottom:137.826667pt;}
.y83{bottom:140.542667pt;}
.yc0{bottom:141.320000pt;}
.y4f{bottom:141.444000pt;}
.y146{bottom:142.144000pt;}
.y147{bottom:142.220000pt;}
.y153{bottom:143.045333pt;}
.y1d1{bottom:144.281333pt;}
.y11a{bottom:145.305333pt;}
.y11b{bottom:145.381333pt;}
.y21c{bottom:145.573333pt;}
.y221{bottom:146.474667pt;}
.y23d{bottom:147.664000pt;}
.y196{bottom:148.252000pt;}
.y246{bottom:148.565333pt;}
.ye5{bottom:149.862667pt;}
.y8e{bottom:150.092000pt;}
.yeb{bottom:150.764000pt;}
.y293{bottom:151.848000pt;}
.y2a3{bottom:152.749333pt;}
.y2c0{bottom:153.498667pt;}
.y22{bottom:154.710667pt;}
.y16c{bottom:155.361333pt;}
.y176{bottom:156.262667pt;}
.y260{bottom:156.733333pt;}
.y1f3{bottom:158.090667pt;}
.y1d0{bottom:160.793333pt;}
.y82{bottom:160.806667pt;}
.ybf{bottom:161.584000pt;}
.y4e{bottom:161.708000pt;}
.y56{bottom:161.784000pt;}
.y145{bottom:162.408000pt;}
.y152{bottom:163.309333pt;}
.y119{bottom:165.569333pt;}
.y21b{bottom:165.837333pt;}
.y220{bottom:166.738667pt;}
.y23c{bottom:167.928000pt;}
.y195{bottom:168.516000pt;}
.y245{bottom:168.829333pt;}
.ye4{bottom:170.126667pt;}
.y8d{bottom:170.356000pt;}
.yea{bottom:171.028000pt;}
.y292{bottom:172.112000pt;}
.y2a2{bottom:173.013333pt;}
.y2bf{bottom:173.762667pt;}
.y21{bottom:174.974667pt;}
.y16b{bottom:175.625333pt;}
.y25f{bottom:175.901333pt;}
.y175{bottom:176.526667pt;}
.y1f2{bottom:178.354667pt;}
.y1cf{bottom:180.493333pt;}
.y81{bottom:181.070667pt;}
.y4d{bottom:181.972000pt;}
.y144{bottom:182.672000pt;}
.y151{bottom:183.573333pt;}
.y279{bottom:184.094667pt;}
.y118{bottom:185.833333pt;}
.y23b{bottom:188.192000pt;}
.y194{bottom:188.780000pt;}
.y244{bottom:189.093333pt;}
.ye3{bottom:190.390667pt;}
.y8c{bottom:190.620000pt;}
.ybe{bottom:191.146667pt;}
.ye9{bottom:191.292000pt;}
.y291{bottom:192.376000pt;}
.y2a1{bottom:193.277333pt;}
.y2be{bottom:194.026667pt;}
.y25e{bottom:195.069333pt;}
.y20{bottom:195.238667pt;}
.y16a{bottom:195.889333pt;}
.y174{bottom:196.790667pt;}
.y1ce{bottom:197.004000pt;}
.y1f1{bottom:198.618667pt;}
.y278{bottom:200.606667pt;}
.y80{bottom:201.334667pt;}
.y4c{bottom:202.236000pt;}
.y143{bottom:202.936000pt;}
.y150{bottom:203.837333pt;}
.y117{bottom:206.097333pt;}
.y23a{bottom:208.456000pt;}
.y193{bottom:209.045333pt;}
.y199{bottom:209.121333pt;}
.y243{bottom:209.357333pt;}
.y8b{bottom:210.884000pt;}
.y290{bottom:212.640000pt;}
.y2a0{bottom:213.541333pt;}
.y25d{bottom:214.237333pt;}
.y2bd{bottom:214.292000pt;}
.y1f{bottom:215.502667pt;}
.y169{bottom:216.153333pt;}
.y1cd{bottom:216.704000pt;}
.y173{bottom:217.054667pt;}
.y1f0{bottom:218.882667pt;}
.y1f8{bottom:218.960000pt;}
.y21a{bottom:219.784000pt;}
.y7f{bottom:221.598667pt;}
.y4b{bottom:222.500000pt;}
.y142{bottom:223.200000pt;}
.y14f{bottom:224.101333pt;}
.y116{bottom:226.361333pt;}
.y239{bottom:228.720000pt;}
.y192{bottom:229.309333pt;}
.y242{bottom:229.621333pt;}
.y8a{bottom:231.148000pt;}
.y28f{bottom:232.904000pt;}
.ye2{bottom:232.981333pt;}
.y1cc{bottom:233.214667pt;}
.y29f{bottom:233.805333pt;}
.y25c{bottom:233.937333pt;}
.y2bc{bottom:234.556000pt;}
.y1e{bottom:235.766667pt;}
.y168{bottom:236.418667pt;}
.y172{bottom:237.320000pt;}
.y1ef{bottom:239.148000pt;}
.y1f7{bottom:239.224000pt;}
.y219{bottom:240.048000pt;}
.y277{bottom:240.812000pt;}
.y7e{bottom:241.864000pt;}
.y4a{bottom:242.764000pt;}
.y2c7{bottom:242.841333pt;}
.y141{bottom:243.464000pt;}
.y14e{bottom:244.365333pt;}
.y115{bottom:246.625333pt;}
.y238{bottom:248.984000pt;}
.y191{bottom:249.573333pt;}
.y241{bottom:249.885333pt;}
.yb0{bottom:250.510667pt;}
.y89{bottom:251.412000pt;}
.ye1{bottom:252.149333pt;}
.y1cb{bottom:252.914667pt;}
.y28e{bottom:253.168000pt;}
.y29e{bottom:254.069333pt;}
.y2bb{bottom:254.820000pt;}
.y1d{bottom:256.030667pt;}
.y167{bottom:256.682667pt;}
.y171{bottom:257.584000pt;}
.y1ee{bottom:259.412000pt;}
.y276{bottom:259.980000pt;}
.y218{bottom:260.313333pt;}
.y7d{bottom:262.128000pt;}
.y49{bottom:263.029333pt;}
.y140{bottom:263.729333pt;}
.y14d{bottom:264.629333pt;}
.y114{bottom:266.889333pt;}
.y25b{bottom:268.045333pt;}
.y237{bottom:269.248000pt;}
.y1ca{bottom:269.426667pt;}
.y190{bottom:269.837333pt;}
.y240{bottom:270.149333pt;}
.yaf{bottom:270.774667pt;}
.ye0{bottom:271.317333pt;}
.y88{bottom:271.676000pt;}
.y28d{bottom:273.432000pt;}
.y29d{bottom:274.333333pt;}
.y2ba{bottom:275.084000pt;}
.y275{bottom:279.148000pt;}
.y1ed{bottom:279.676000pt;}
.y217{bottom:280.577333pt;}
.y7c{bottom:282.392000pt;}
.y48{bottom:283.293333pt;}
.y13f{bottom:283.993333pt;}
.y14c{bottom:284.894667pt;}
.y113{bottom:287.154667pt;}
.y92{bottom:288.006667pt;}
.y25a{bottom:288.309333pt;}
.y1c9{bottom:289.125333pt;}
.y18f{bottom:290.101333pt;}
.ydf{bottom:290.485333pt;}
.yae{bottom:291.038667pt;}
.ybd{bottom:291.940000pt;}
.y28c{bottom:293.696000pt;}
.y29c{bottom:294.597333pt;}
.y2b9{bottom:295.348000pt;}
.y274{bottom:298.848000pt;}
.y166{bottom:299.272000pt;}
.y1ec{bottom:299.940000pt;}
.y216{bottom:300.841333pt;}
.y1c{bottom:301.533333pt;}
.y7b{bottom:302.656000pt;}
.y47{bottom:303.557333pt;}
.y2c6{bottom:303.633333pt;}
.y13e{bottom:304.257333pt;}
.y14b{bottom:305.158667pt;}
.y112{bottom:307.418667pt;}
.yde{bottom:309.653333pt;}
.y18e{bottom:310.365333pt;}
.yad{bottom:311.304000pt;}
.y236{bottom:311.838667pt;}
.ybc{bottom:312.204000pt;}
.y28b{bottom:313.960000pt;}
.y29b{bottom:314.861333pt;}
.y2b8{bottom:315.612000pt;}
.y259{bottom:318.434667pt;}
.y273{bottom:318.546667pt;}
.y165{bottom:318.972000pt;}
.y1eb{bottom:320.204000pt;}
.y215{bottom:321.105333pt;}
.y7a{bottom:322.920000pt;}
.y1c8{bottom:323.234667pt;}
.y46{bottom:323.821333pt;}
.ydd{bottom:329.353333pt;}
.y18d{bottom:330.629333pt;}
.y235{bottom:331.538667pt;}
.yac{bottom:331.568000pt;}
.ybb{bottom:332.469333pt;}
.y28a{bottom:334.224000pt;}
.y29a{bottom:335.125333pt;}
.y164{bottom:335.484000pt;}
.y2b7{bottom:335.876000pt;}
.y1b{bottom:338.132000pt;}
.y272{bottom:338.246667pt;}
.y258{bottom:338.698667pt;}
.y1ea{bottom:340.468000pt;}
.y214{bottom:341.369333pt;}
.y79{bottom:343.184000pt;}
.y1c7{bottom:343.498667pt;}
.y45{bottom:344.085333pt;}
.y18c{bottom:350.893333pt;}
.y234{bottom:351.237333pt;}
.yab{bottom:351.832000pt;}
.yba{bottom:352.733333pt;}
.y289{bottom:354.489333pt;}
.y1a{bottom:354.644000pt;}
.y163{bottom:355.182667pt;}
.y299{bottom:355.389333pt;}
.y2b6{bottom:356.140000pt;}
.y13d{bottom:357.302667pt;}
.y271{bottom:357.414667pt;}
.y257{bottom:358.962667pt;}
.y103{bottom:359.562667pt;}
.ydc{bottom:360.038667pt;}
.y111{bottom:360.464000pt;}
.y1e9{bottom:360.732000pt;}
.y213{bottom:361.633333pt;}
.y78{bottom:363.448000pt;}
.y44{bottom:364.349333pt;}
.y19{bottom:369.657333pt;}
.y233{bottom:370.937333pt;}
.y18b{bottom:371.157333pt;}
.y162{bottom:371.694667pt;}
.yaa{bottom:372.096000pt;}
.yb9{bottom:372.997333pt;}
.y1c6{bottom:374.186667pt;}
.y288{bottom:374.753333pt;}
.y298{bottom:375.654667pt;}
.y2b5{bottom:376.404000pt;}
.y270{bottom:376.582667pt;}
.y13c{bottom:377.566667pt;}
.y256{bottom:379.226667pt;}
.y102{bottom:379.826667pt;}
.ydb{bottom:380.304000pt;}
.y110{bottom:380.728000pt;}
.y1e8{bottom:380.996000pt;}
.y212{bottom:381.897333pt;}
.y77{bottom:383.712000pt;}
.y43{bottom:384.613333pt;}
.y18{bottom:389.170667pt;}
.y232{bottom:390.637333pt;}
.y161{bottom:391.394667pt;}
.y18a{bottom:391.421333pt;}
.ya9{bottom:392.360000pt;}
.yb8{bottom:393.261333pt;}
.y1b1{bottom:393.549333pt;}
.y1c5{bottom:394.450667pt;}
.y287{bottom:395.017333pt;}
.y297{bottom:395.918667pt;}
.y26f{bottom:396.282667pt;}
.y2b4{bottom:396.668000pt;}
.y13b{bottom:397.830667pt;}
.y255{bottom:399.492000pt;}
.y101{bottom:400.090667pt;}
.yda{bottom:400.568000pt;}
.y10f{bottom:400.992000pt;}
.y1e7{bottom:401.260000pt;}
.y211{bottom:402.161333pt;}
.y76{bottom:403.976000pt;}
.y42{bottom:404.877333pt;}
.y2cb{bottom:404.953333pt;}
.y160{bottom:407.905333pt;}
.y17{bottom:408.685333pt;}
.y231{bottom:410.336000pt;}
.y189{bottom:411.685333pt;}
.y198{bottom:411.762667pt;}
.ya8{bottom:412.624000pt;}
.yb7{bottom:413.525333pt;}
.y1b0{bottom:413.813333pt;}
.y1c4{bottom:414.714667pt;}
.y2b3{bottom:416.932000pt;}
.y13a{bottom:418.094667pt;}
.y254{bottom:419.756000pt;}
.y100{bottom:420.354667pt;}
.yd9{bottom:420.832000pt;}
.y10e{bottom:421.256000pt;}
.y1e6{bottom:421.524000pt;}
.y210{bottom:422.425333pt;}
.y75{bottom:424.240000pt;}
.y41{bottom:425.141333pt;}
.y15f{bottom:427.605333pt;}
.y16{bottom:429.865333pt;}
.y26e{bottom:430.392000pt;}
.y188{bottom:431.949333pt;}
.y286{bottom:432.122667pt;}
.ya7{bottom:432.888000pt;}
.yb6{bottom:433.789333pt;}
.y1af{bottom:434.077333pt;}
.y1c3{bottom:434.978667pt;}
.y2b2{bottom:437.196000pt;}
.y139{bottom:438.358667pt;}
.y253{bottom:440.020000pt;}
.yff{bottom:440.618667pt;}
.yd8{bottom:441.096000pt;}
.y10d{bottom:441.520000pt;}
.y1e5{bottom:441.788000pt;}
.y20f{bottom:442.689333pt;}
.y15e{bottom:444.116000pt;}
.y230{bottom:444.445333pt;}
.y74{bottom:444.504000pt;}
.y40{bottom:445.405333pt;}
.y26d{bottom:450.656000pt;}
.y187{bottom:452.213333pt;}
.y285{bottom:452.386667pt;}
.ya6{bottom:453.152000pt;}
.yb5{bottom:454.053333pt;}
.y1ae{bottom:454.341333pt;}
.y1c2{bottom:455.242667pt;}
.y2b1{bottom:457.460000pt;}
.y138{bottom:458.622667pt;}
.y252{bottom:460.284000pt;}
.yfe{bottom:460.882667pt;}
.y15{bottom:461.333333pt;}
.y10c{bottom:461.784000pt;}
.y1e4{bottom:462.052000pt;}
.y20e{bottom:462.953333pt;}
.y15d{bottom:463.816000pt;}
.y22f{bottom:464.709333pt;}
.y73{bottom:464.768000pt;}
.y3f{bottom:465.669333pt;}
.y186{bottom:472.477333pt;}
.y284{bottom:472.650667pt;}
.ya5{bottom:473.416000pt;}
.yb4{bottom:474.317333pt;}
.y1ad{bottom:474.605333pt;}
.y1c1{bottom:475.506667pt;}
.y2b0{bottom:477.724000pt;}
.y137{bottom:478.886667pt;}
.y15c{bottom:480.328000pt;}
.y251{bottom:480.548000pt;}
.y26c{bottom:480.780000pt;}
.y14{bottom:480.848000pt;}
.yfd{bottom:481.146667pt;}
.y10b{bottom:482.048000pt;}
.y1e3{bottom:482.316000pt;}
.yd7{bottom:482.785333pt;}
.y20d{bottom:483.217333pt;}
.y72{bottom:485.032000pt;}
.y3e{bottom:485.933333pt;}
.y2ca{bottom:486.010667pt;}
.y185{bottom:492.742667pt;}
.ya4{bottom:493.680000pt;}
.yb3{bottom:494.581333pt;}
.y22e{bottom:494.834667pt;}
.y1ac{bottom:494.869333pt;}
.y1c0{bottom:495.770667pt;}
.y2af{bottom:497.989333pt;}
.y136{bottom:499.152000pt;}
.y15b{bottom:500.026667pt;}
.y13{bottom:500.361333pt;}
.y250{bottom:500.812000pt;}
.y26b{bottom:501.045333pt;}
.yfc{bottom:501.412000pt;}
.yd6{bottom:501.953333pt;}
.y283{bottom:502.213333pt;}
.y10a{bottom:502.312000pt;}
.y209{bottom:502.580000pt;}
.y20c{bottom:503.481333pt;}
.y71{bottom:505.296000pt;}
.y3d{bottom:506.197333pt;}
.y2c5{bottom:506.274667pt;}
.y184{bottom:513.006667pt;}
.ya3{bottom:513.944000pt;}
.yb2{bottom:514.845333pt;}
.y22d{bottom:515.098667pt;}
.y1ab{bottom:515.133333pt;}
.y1bf{bottom:516.034667pt;}
.y15a{bottom:516.538667pt;}
.y2ae{bottom:518.253333pt;}
.y135{bottom:519.416000pt;}
.y12{bottom:519.874667pt;}
.y24f{bottom:521.076000pt;}
.yd5{bottom:521.121333pt;}
.y26a{bottom:521.309333pt;}
.yfb{bottom:521.676000pt;}
.y109{bottom:522.577333pt;}
.y208{bottom:522.845333pt;}
.y20b{bottom:523.746667pt;}
.y1e2{bottom:524.005333pt;}
.y70{bottom:525.561333pt;}
.y3c{bottom:526.461333pt;}
.y183{bottom:533.270667pt;}
.ya2{bottom:534.208000pt;}
.yb1{bottom:535.109333pt;}
.y22c{bottom:535.362667pt;}
.y1aa{bottom:535.397333pt;}
.y159{bottom:536.238667pt;}
.y1be{bottom:536.298667pt;}
.y2ad{bottom:538.517333pt;}
.y11{bottom:539.388000pt;}
.y134{bottom:539.680000pt;}
.yd4{bottom:540.289333pt;}
.y24e{bottom:541.340000pt;}
.y269{bottom:541.573333pt;}
.yfa{bottom:541.940000pt;}
.y108{bottom:542.841333pt;}
.y207{bottom:543.109333pt;}
.y1e1{bottom:543.705333pt;}
.y20a{bottom:544.010667pt;}
.y6f{bottom:545.825333pt;}
.y3b{bottom:546.726667pt;}
.y282{bottom:547.137333pt;}
.y182{bottom:553.534667pt;}
.y22b{bottom:555.626667pt;}
.y1a9{bottom:555.661333pt;}
.y1bd{bottom:556.562667pt;}
.y2ac{bottom:558.781333pt;}
.y10{bottom:558.901333pt;}
.yd3{bottom:559.457333pt;}
.y133{bottom:559.944000pt;}
.y1e0{bottom:560.217333pt;}
.y24d{bottom:561.604000pt;}
.y268{bottom:561.837333pt;}
.yf9{bottom:562.204000pt;}
.y107{bottom:563.105333pt;}
.y6e{bottom:566.089333pt;}
.y281{bottom:566.305333pt;}
.y3a{bottom:566.990667pt;}
.y2c9{bottom:567.066667pt;}
.y158{bottom:570.346667pt;}
.ya1{bottom:571.314667pt;}
.y181{bottom:573.798667pt;}
.y22a{bottom:575.890667pt;}
.y1a8{bottom:575.925333pt;}
.y1bc{bottom:576.826667pt;}
.yf{bottom:578.416000pt;}
.y2ab{bottom:579.045333pt;}
.yd2{bottom:579.157333pt;}
.y1df{bottom:579.916000pt;}
.y132{bottom:580.208000pt;}
.y24c{bottom:581.868000pt;}
.y267{bottom:582.101333pt;}
.yf8{bottom:582.468000pt;}
.y106{bottom:583.369333pt;}
.y280{bottom:585.473333pt;}
.y206{bottom:585.698667pt;}
.y6d{bottom:586.353333pt;}
.y39{bottom:587.254667pt;}
.y157{bottom:590.610667pt;}
.ya0{bottom:591.578667pt;}
.y180{bottom:594.062667pt;}
.y229{bottom:596.154667pt;}
.y1a7{bottom:596.189333pt;}
.y1de{bottom:596.428000pt;}
.y1bb{bottom:597.090667pt;}
.ye{bottom:597.929333pt;}
.y2aa{bottom:599.309333pt;}
.y130{bottom:600.472000pt;}
.y131{bottom:600.548000pt;}
.y266{bottom:602.365333pt;}
.yf7{bottom:602.732000pt;}
.y105{bottom:603.633333pt;}
.y27f{bottom:604.641333pt;}
.y205{bottom:605.398667pt;}
.y6c{bottom:606.617333pt;}
.y38{bottom:607.518667pt;}
.yd1{bottom:609.842667pt;}
.y9f{bottom:611.842667pt;}
.y17f{bottom:614.326667pt;}
.y1dd{bottom:616.126667pt;}
.y228{bottom:616.418667pt;}
.y1a6{bottom:616.453333pt;}
.y1ba{bottom:617.354667pt;}
.yd{bottom:617.442667pt;}
.y2a9{bottom:619.573333pt;}
.y12e{bottom:620.736000pt;}
.y12f{bottom:620.812000pt;}
.y204{bottom:621.910667pt;}
.y265{bottom:622.629333pt;}
.yf6{bottom:622.996000pt;}
.y24b{bottom:623.557333pt;}
.y104{bottom:623.897333pt;}
.y27e{bottom:624.341333pt;}
.y6b{bottom:626.881333pt;}
.y58{bottom:626.957333pt;}
.y37{bottom:627.782667pt;}
.yd0{bottom:630.106667pt;}
.y9e{bottom:632.106667pt;}
.y1dc{bottom:632.638667pt;}
.y17e{bottom:634.590667pt;}
.y227{bottom:636.682667pt;}
.y1a5{bottom:636.718667pt;}
.yc{bottom:636.956000pt;}
.y1b9{bottom:637.618667pt;}
.y2a8{bottom:639.837333pt;}
.y12d{bottom:641.000000pt;}
.y203{bottom:641.609333pt;}
.y264{bottom:642.893333pt;}
.y24a{bottom:643.257333pt;}
.y6a{bottom:647.145333pt;}
.y36{bottom:648.046667pt;}
.ycf{bottom:650.372000pt;}
.y1db{bottom:652.338667pt;}
.y9d{bottom:652.370667pt;}
.yb{bottom:656.469333pt;}
.y226{bottom:656.946667pt;}
.y1a4{bottom:656.982667pt;}
.y1b8{bottom:657.884000pt;}
.y202{bottom:658.121333pt;}
.y27d{bottom:658.449333pt;}
.y12c{bottom:659.768000pt;}
.yf5{bottom:660.101333pt;}
.y263{bottom:662.256000pt;}
.y69{bottom:667.409333pt;}
.y35{bottom:668.310667pt;}
.y1da{bottom:668.849333pt;}
.yce{bottom:670.636000pt;}
.y9c{bottom:672.634667pt;}
.ya{bottom:675.982667pt;}
.y17d{bottom:676.280000pt;}
.y225{bottom:677.210667pt;}
.y1a3{bottom:677.246667pt;}
.y201{bottom:677.821333pt;}
.y1b7{bottom:678.148000pt;}
.y12b{bottom:679.468000pt;}
.yf4{bottom:680.365333pt;}
.y68{bottom:687.673333pt;}
.y1d9{bottom:688.549333pt;}
.y34{bottom:688.574667pt;}
.ycd{bottom:690.900000pt;}
.y9b{bottom:692.898667pt;}
.y200{bottom:694.332000pt;}
.y9{bottom:695.497333pt;}
.y12a{bottom:695.980000pt;}
.y1a2{bottom:697.510667pt;}
.y1b6{bottom:698.412000pt;}
.yf3{bottom:700.629333pt;}
.y1d8{bottom:705.060000pt;}
.y67{bottom:707.937333pt;}
.y33{bottom:708.838667pt;}
.y2c8{bottom:708.914667pt;}
.ycc{bottom:711.164000pt;}
.y17c{bottom:712.490667pt;}
.y9a{bottom:713.162667pt;}
.y1ff{bottom:714.032000pt;}
.y8{bottom:715.010667pt;}
.y129{bottom:715.678667pt;}
.y1a1{bottom:717.774667pt;}
.y1b5{bottom:718.676000pt;}
.yf2{bottom:720.893333pt;}
.y1d7{bottom:724.760000pt;}
.y66{bottom:728.201333pt;}
.y32{bottom:729.102667pt;}
.y1fe{bottom:730.542667pt;}
.ycb{bottom:731.428000pt;}
.y128{bottom:732.190667pt;}
.y99{bottom:733.426667pt;}
.y7{bottom:734.524000pt;}
.y1a0{bottom:738.038667pt;}
.y1b4{bottom:738.940000pt;}
.yf1{bottom:741.157333pt;}
.y65{bottom:748.465333pt;}
.y17b{bottom:748.701333pt;}
.y31{bottom:749.366667pt;}
.y1fd{bottom:750.242667pt;}
.y2a7{bottom:750.456000pt;}
.yca{bottom:751.692000pt;}
.y127{bottom:751.889333pt;}
.y98{bottom:753.690667pt;}
.y6{bottom:754.037333pt;}
.y19f{bottom:758.302667pt;}
.y1d6{bottom:758.869333pt;}
.y1b3{bottom:759.204000pt;}
.yf0{bottom:761.422667pt;}
.y1fc{bottom:766.754667pt;}
.y126{bottom:768.401333pt;}
.y64{bottom:768.729333pt;}
.y30{bottom:769.630667pt;}
.yc9{bottom:771.956000pt;}
.y97{bottom:773.954667pt;}
.y19e{bottom:778.566667pt;}
.y1d5{bottom:779.133333pt;}
.y1b2{bottom:779.468000pt;}
.y1fb{bottom:786.453333pt;}
.y125{bottom:788.101333pt;}
.y63{bottom:788.993333pt;}
.y2f{bottom:789.894667pt;}
.yef{bottom:790.984000pt;}
.yc8{bottom:792.220000pt;}
.y96{bottom:794.218667pt;}
.y19d{bottom:798.236000pt;}
.y124{bottom:804.612000pt;}
.y62{bottom:809.258667pt;}
.y2e{bottom:810.160000pt;}
.y57{bottom:810.236000pt;}
.yc7{bottom:812.484000pt;}
.y95{bottom:814.482667pt;}
.y5{bottom:815.970667pt;}
.y19c{bottom:817.936000pt;}
.y1fa{bottom:820.562667pt;}
.y123{bottom:824.312000pt;}
.y60{bottom:829.522667pt;}
.y61{bottom:829.598667pt;}
.y2d{bottom:830.424000pt;}
.y94{bottom:834.748000pt;}
.y19b{bottom:837.636000pt;}
.y122{bottom:840.824000pt;}
.y1f9{bottom:840.826667pt;}
.y5e{bottom:849.786667pt;}
.y5f{bottom:849.862667pt;}
.y2c{bottom:850.688000pt;}
.y4{bottom:852.753333pt;}
.yc6{bottom:854.173333pt;}
.y93{bottom:855.012000pt;}
.y19a{bottom:857.334667pt;}
.y121{bottom:860.522667pt;}
.y5d{bottom:870.050667pt;}
.y2c4{bottom:870.852000pt;}
.y2b{bottom:870.952000pt;}
.yc5{bottom:873.341333pt;}
.y120{bottom:877.034667pt;}
.y3{bottom:885.776000pt;}
.y5c{bottom:890.314667pt;}
.y2a{bottom:891.216000pt;}
.yc4{bottom:892.509333pt;}
.y2c3{bottom:894.508000pt;}
.y11f{bottom:896.733333pt;}
.y5b{bottom:910.578667pt;}
.y29{bottom:911.480000pt;}
.yc3{bottom:911.677333pt;}
.y5a{bottom:930.842667pt;}
.yc2{bottom:930.846667pt;}
.y28{bottom:931.744000pt;}
.yc1{bottom:950.545333pt;}
.y59{bottom:951.106667pt;}
.y27{bottom:952.008000pt;}
.y2cd{bottom:952.084000pt;}
.y2{bottom:979.312000pt;}
.y26{bottom:986.900000pt;}
.y1{bottom:989.938667pt;}
.hc{height:31.880000pt;}
.h1{height:31.880400pt;}
.h10{height:31.880533pt;}
.he{height:33.187635pt;}
.hf{height:33.602082pt;}
.h5{height:34.000589pt;}
.h4{height:37.778179pt;}
.h9{height:41.917344pt;}
.h7{height:43.444944pt;}
.ha{height:43.754277pt;}
.h6{height:47.937449pt;}
.h3{height:49.111709pt;}
.h2{height:65.280797pt;}
.hd{height:81.251067pt;}
.hb{height:82.258667pt;}
.h8{height:82.259067pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x19{left:112.500000pt;}
.x3{left:113.481333pt;}
.x37{left:116.374667pt;}
.x24{left:121.356000pt;}
.x54{left:122.777333pt;}
.x47{left:125.470667pt;}
.x56{left:131.544000pt;}
.x1f{left:134.286667pt;}
.xd{left:136.062667pt;}
.x25{left:137.704000pt;}
.x4f{left:143.089333pt;}
.x48{left:146.017333pt;}
.x26{left:150.650667pt;}
.x46{left:156.262667pt;}
.x6{left:158.261333pt;}
.x3f{left:159.181333pt;}
.x43{left:160.240000pt;}
.xb{left:162.052000pt;}
.x21{left:163.826667pt;}
.x18{left:165.664000pt;}
.x22{left:169.769333pt;}
.x2a{left:171.993333pt;}
.x20{left:179.641333pt;}
.x57{left:182.054667pt;}
.x49{left:196.918667pt;}
.x4{left:205.128000pt;}
.x50{left:206.956000pt;}
.x9{left:208.188000pt;}
.x27{left:210.252000pt;}
.x8{left:215.705333pt;}
.x4e{left:218.077333pt;}
.x28{left:223.200000pt;}
.x13{left:225.662667pt;}
.x45{left:229.388000pt;}
.x44{left:230.636000pt;}
.x42{left:232.565333pt;}
.x59{left:238.262667pt;}
.x58{left:239.538667pt;}
.x1e{left:241.009333pt;}
.x29{left:270.754667pt;}
.x4a{left:295.618667pt;}
.x5{left:311.142667pt;}
.x40{left:314.805333pt;}
.x52{left:316.914667pt;}
.x55{left:321.398667pt;}
.x53{left:323.697333pt;}
.x3e{left:324.850667pt;}
.x41{left:327.660000pt;}
.xa{left:333.968000pt;}
.x10{left:359.442667pt;}
.x7{left:364.560000pt;}
.x2d{left:367.042667pt;}
.x2c{left:368.318667pt;}
.xc{left:384.740000pt;}
.x2e{left:385.722667pt;}
.x23{left:397.898667pt;}
.x11{left:402.290667pt;}
.xf{left:411.606667pt;}
.xe{left:412.752000pt;}
.x51{left:415.456000pt;}
.x14{left:435.429333pt;}
.x33{left:441.418667pt;}
.x35{left:449.741333pt;}
.x4d{left:465.506667pt;}
.x31{left:467.321333pt;}
.x3a{left:478.666667pt;}
.x1a{left:485.662667pt;}
.x4b{left:493.442667pt;}
.x2b{left:494.444000pt;}
.x2{left:510.021333pt;}
.x12{left:513.840000pt;}
.x15{left:527.321333pt;}
.x16{left:528.272000pt;}
.x1d{left:533.737333pt;}
.x36{left:553.526667pt;}
.x34{left:576.097333pt;}
.x1b{left:580.554667pt;}
.x4c{left:594.560000pt;}
.x17{left:597.405333pt;}
.x3b{left:607.540000pt;}
.x1{left:618.953333pt;}
.x38{left:623.872000pt;}
.x3c{left:626.964000pt;}
.x39{left:636.010667pt;}
.x1c{left:649.766667pt;}
.x32{left:662.012000pt;}
.x30{left:678.921333pt;}
.x2f{left:680.197333pt;}
.x3d{left:681.221333pt;}
}




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