
    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_f7259198d9098ae55fd3544d.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_6717bbf0236b3154fb619e2f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_3e9e0db34aff1b98fa84493d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3d75f33be6f423cc4ea42190.woff')format("woff");}.ff4{font-family:ff4;line-height:0.895000;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_5a7c02042791dd25104aa6b9.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3ff626cadc1c019f26cd7d3b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.733000;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_8639912712692c392449829c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.735000;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_f5809ac9c5ffc45f431afa40.woff')format("woff");}.ff8{font-family:ff8;line-height:0.482000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m34{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);}
.m40{transform:matrix(0.245243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245243,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m18{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);}
.m46{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);}
.m3a{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);}
.m23{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);}
.m11{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);}
.m37{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);}
.m43{transform:matrix(0.246247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246247,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m13{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);}
.m42{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);}
.m3f{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);}
.m24{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);}
.m30{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);}
.md{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);}
.m2c{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);}
.m15{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);}
.m25{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);}
.m3d{transform:matrix(0.247992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247992,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.m6{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);}
.m2f{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);}
.m21{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m48{transform:matrix(0.248756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248756,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.248996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248996,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m31{transform:matrix(0.249258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249258,0.000000,0.000000,0.250000,0,0);}
.m35{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);}
.m1e{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);}
.m12{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m1b{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);}
.m2b{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);}
.m2e{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);}
.m1f{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);}
.mc{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);}
.m38{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);}
.m9{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);}
.m5{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);}
.m39{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);}
.m17{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);}
.m16{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);}
.m36{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);}
.m2d{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);}
.m28{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);}
.m10{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);}
.m14{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);}
.m3c{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);}
.m1d{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);}
.mb{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);}
.m44{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);}
.m2{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);}
.m32{transform:matrix(0.253513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253513,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.m3b{transform:matrix(0.253753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253753,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.253993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253993,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.ma{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);}
.m41{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);}
.m22{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);}
.m7{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);}
.m45{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);}
.m29{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);}
.m3{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);}
.m47{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-19.530000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.524000px;}
.v3{vertical-align:24.954000px;}
.v2{vertical-align:55.542000px;}
.v1{vertical-align:56.676000px;}
.ls42{letter-spacing:-72.454068px;}
.ls1d{letter-spacing:-62.211510px;}
.ls24{letter-spacing:-61.455348px;}
.ls41{letter-spacing:-44.132364px;}
.ls20{letter-spacing:-19.312764px;}
.ls27{letter-spacing:-16.566822px;}
.ls22{letter-spacing:-15.741918px;}
.ls25{letter-spacing:-11.823624px;}
.ls1f{letter-spacing:-9.629484px;}
.ls26{letter-spacing:-8.661492px;}
.ls21{letter-spacing:-7.905330px;}
.ls1c{letter-spacing:-0.806940px;}
.ls23{letter-spacing:-0.068742px;}
.ls1{letter-spacing:0.000000px;}
.ls3a{letter-spacing:1.443582px;}
.ls0{letter-spacing:2.988780px;}
.ls16{letter-spacing:4.544813px;}
.ls5{letter-spacing:5.774328px;}
.ls9{letter-spacing:5.840574px;}
.ls11{letter-spacing:5.846574px;}
.ls6{letter-spacing:7.561620px;}
.ls17{letter-spacing:13.395802px;}
.ls1a{letter-spacing:13.399471px;}
.ls8{letter-spacing:13.885884px;}
.ls7{letter-spacing:13.954626px;}
.lsf{letter-spacing:15.191982px;}
.ls14{letter-spacing:15.260724px;}
.ls32{letter-spacing:15.604434px;}
.ls13{letter-spacing:15.741918px;}
.ls10{letter-spacing:15.810660px;}
.lsd{letter-spacing:15.879402px;}
.lsb{letter-spacing:15.948144px;}
.lsc{letter-spacing:16.016886px;}
.ls3d{letter-spacing:16.429338px;}
.ls1b{letter-spacing:16.440000px;}
.ls2c{letter-spacing:16.910532px;}
.lsa{letter-spacing:16.919100px;}
.ls36{letter-spacing:16.979274px;}
.ls31{letter-spacing:17.048016px;}
.ls2f{letter-spacing:17.116758px;}
.ls29{letter-spacing:17.185500px;}
.ls40{letter-spacing:17.251830px;}
.ls35{letter-spacing:17.254242px;}
.ls18{letter-spacing:17.322984px;}
.ls38{letter-spacing:17.391726px;}
.ls34{letter-spacing:17.460468px;}
.ls2d{letter-spacing:17.529210px;}
.ls28{letter-spacing:17.872920px;}
.ls2b{letter-spacing:18.147888px;}
.ls15{letter-spacing:18.245100px;}
.lse{letter-spacing:18.263100px;}
.ls3f{letter-spacing:18.291396px;}
.ls30{letter-spacing:18.422856px;}
.ls12{letter-spacing:18.821100px;}
.ls37{letter-spacing:19.110276px;}
.ls3b{letter-spacing:19.797696px;}
.ls2e{letter-spacing:20.760084px;}
.ls3e{letter-spacing:20.966310px;}
.ls33{letter-spacing:22.891086px;}
.ls3c{letter-spacing:23.234796px;}
.ls39{letter-spacing:23.372280px;}
.ls2a{letter-spacing:25.090830px;}
.ls1e{letter-spacing:40.831164px;}
.ls19{letter-spacing:91.332000px;}
.ls2{letter-spacing:957.795000px;}
.ls4{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;}
.ws10e{word-spacing:-13.449600px;}
.ws16b{word-spacing:-13.449000px;}
.ws193{word-spacing:-9.280170px;}
.ws18c{word-spacing:-3.919959px;}
.ws137{word-spacing:-3.849552px;}
.ws72{word-spacing:-3.780810px;}
.ws17e{word-spacing:-3.719121px;}
.ws97{word-spacing:-3.712068px;}
.ws1a5{word-spacing:-3.582078px;}
.ws19{word-spacing:-3.574584px;}
.ws58{word-spacing:-3.505842px;}
.wsdd{word-spacing:-3.437100px;}
.wsd0{word-spacing:-3.368358px;}
.wsee{word-spacing:-3.230874px;}
.ws192{word-spacing:-3.166687px;}
.ws4d{word-spacing:-3.162132px;}
.ws1b8{word-spacing:-3.099806px;}
.ws1df{word-spacing:-3.099561px;}
.ws1fd{word-spacing:-3.093390px;}
.wsb3{word-spacing:-3.024648px;}
.ws10{word-spacing:-2.988780px;}
.ws4c{word-spacing:-2.955906px;}
.ws1b9{word-spacing:-2.895490px;}
.ws12b{word-spacing:-2.887164px;}
.wsc8{word-spacing:-2.818422px;}
.wsfe{word-spacing:-2.749680px;}
.wsd3{word-spacing:-2.680938px;}
.wsc4{word-spacing:-2.612196px;}
.ws6a{word-spacing:-2.543454px;}
.ws1dd{word-spacing:-2.542205px;}
.ws146{word-spacing:-2.528525px;}
.ws3a{word-spacing:-2.474712px;}
.ws8c{word-spacing:-2.405970px;}
.ws7a{word-spacing:-2.337228px;}
.ws90{word-spacing:-2.268486px;}
.ws10f{word-spacing:-2.259533px;}
.wscd{word-spacing:-2.199744px;}
.ws69{word-spacing:-2.131002px;}
.ws9c{word-spacing:-2.062260px;}
.wsa0{word-spacing:-1.993518px;}
.ws87{word-spacing:-1.924776px;}
.ws75{word-spacing:-1.856034px;}
.wsc1{word-spacing:-1.787292px;}
.wsd9{word-spacing:-1.718550px;}
.ws1fe{word-spacing:-1.649808px;}
.wsa7{word-spacing:-1.581066px;}
.wsc{word-spacing:-1.554166px;}
.ws71{word-spacing:-1.512324px;}
.ws78{word-spacing:-1.443582px;}
.ws4a{word-spacing:-1.374840px;}
.ws11f{word-spacing:-1.344960px;}
.ws94{word-spacing:-1.306098px;}
.ws1bc{word-spacing:-1.240491px;}
.wsa4{word-spacing:-1.237356px;}
.ws95{word-spacing:-1.168614px;}
.ws212{word-spacing:-1.106264px;}
.ws3b{word-spacing:-1.099872px;}
.ws133{word-spacing:-1.075968px;}
.wsf5{word-spacing:-1.031130px;}
.ws8{word-spacing:-1.016185px;}
.wsce{word-spacing:-0.962388px;}
.ws8e{word-spacing:-0.893646px;}
.wsa5{word-spacing:-0.824904px;}
.ws132{word-spacing:-0.806976px;}
.ws76{word-spacing:-0.756162px;}
.ws96{word-spacing:-0.687420px;}
.ws99{word-spacing:-0.618678px;}
.ws85{word-spacing:-0.549936px;}
.ws1a{word-spacing:-0.481194px;}
.ws13{word-spacing:-0.412452px;}
.ws1ce{word-spacing:-0.408436px;}
.ws1b5{word-spacing:-0.407407px;}
.ws1ee{word-spacing:-0.376589px;}
.ws1c5{word-spacing:-0.349408px;}
.ws1a4{word-spacing:-0.345178px;}
.ws36{word-spacing:-0.343710px;}
.ws175{word-spacing:-0.343474px;}
.ws168{word-spacing:-0.343392px;}
.ws1be{word-spacing:-0.340781px;}
.ws1ba{word-spacing:-0.340686px;}
.ws1bd{word-spacing:-0.339357px;}
.ws18a{word-spacing:-0.338967px;}
.wsb{word-spacing:-0.298878px;}
.ws189{word-spacing:-0.280938px;}
.ws1d8{word-spacing:-0.280562px;}
.ws1c3{word-spacing:-0.276615px;}
.ws27{word-spacing:-0.274968px;}
.ws1b0{word-spacing:-0.274921px;}
.ws197{word-spacing:-0.272842px;}
.wsf7{word-spacing:-0.268992px;}
.ws1d9{word-spacing:-0.265755px;}
.wsf{word-spacing:-0.239102px;}
.ws16d{word-spacing:-0.219823px;}
.ws128{word-spacing:-0.215194px;}
.ws160{word-spacing:-0.208129px;}
.ws22{word-spacing:-0.206226px;}
.ws1cb{word-spacing:-0.205988px;}
.ws176{word-spacing:-0.205520px;}
.ws186{word-spacing:-0.204075px;}
.ws1bf{word-spacing:-0.201501px;}
.ws9{word-spacing:-0.179327px;}
.ws10c{word-spacing:-0.161395px;}
.ws182{word-spacing:-0.141365px;}
.ws185{word-spacing:-0.140430px;}
.ws21a{word-spacing:-0.139852px;}
.ws1c{word-spacing:-0.137484px;}
.ws162{word-spacing:-0.136120px;}
.ws198{word-spacing:-0.136084px;}
.ws5{word-spacing:-0.119551px;}
.wsf8{word-spacing:-0.107597px;}
.ws187{word-spacing:-0.079736px;}
.ws15a{word-spacing:-0.074969px;}
.ws2c{word-spacing:-0.068742px;}
.ws166{word-spacing:-0.068134px;}
.ws172{word-spacing:-0.064677px;}
.ws1de{word-spacing:-0.063195px;}
.wsfb{word-spacing:-0.053798px;}
.ws1{word-spacing:-0.047821px;}
.ws14f{word-spacing:-0.003672px;}
.ws14e{word-spacing:-0.002862px;}
.ws18b{word-spacing:-0.002820px;}
.ws15c{word-spacing:-0.002754px;}
.ws1d2{word-spacing:-0.002480px;}
.ws17b{word-spacing:-0.001944px;}
.ws1e3{word-spacing:-0.001758px;}
.ws16a{word-spacing:-0.001674px;}
.ws17f{word-spacing:-0.001484px;}
.ws1c0{word-spacing:-0.001224px;}
.ws155{word-spacing:-0.001068px;}
.ws2{word-spacing:0.000000px;}
.ws1cf{word-spacing:0.000145px;}
.ws179{word-spacing:0.000864px;}
.ws1d3{word-spacing:0.001953px;}
.ws171{word-spacing:0.004056px;}
.ws16c{word-spacing:0.004152px;}
.ws153{word-spacing:0.004932px;}
.ws16f{word-spacing:0.006204px;}
.ws178{word-spacing:0.006864px;}
.ws150{word-spacing:0.007464px;}
.ws108{word-spacing:0.053798px;}
.wsa{word-spacing:0.059776px;}
.ws159{word-spacing:0.064286px;}
.ws1a0{word-spacing:0.064584px;}
.ws21c{word-spacing:0.065124px;}
.ws163{word-spacing:0.067313px;}
.ws17{word-spacing:0.068742px;}
.ws196{word-spacing:0.069230px;}
.ws191{word-spacing:0.070708px;}
.ws15f{word-spacing:0.076451px;}
.ws11{word-spacing:0.107597px;}
.ws4{word-spacing:0.119551px;}
.ws169{word-spacing:0.125339px;}
.ws164{word-spacing:0.133267px;}
.ws1ab{word-spacing:0.136936px;}
.ws195{word-spacing:0.137242px;}
.ws2e{word-spacing:0.137484px;}
.ws21d{word-spacing:0.138690px;}
.ws19a{word-spacing:0.139818px;}
.ws180{word-spacing:0.141543px;}
.ws173{word-spacing:0.145424px;}
.wse8{word-spacing:0.161395px;}
.ws7{word-spacing:0.179327px;}
.ws165{word-spacing:0.193109px;}
.ws1a8{word-spacing:0.199978px;}
.ws48{word-spacing:0.206226px;}
.ws1c6{word-spacing:0.209559px;}
.ws107{word-spacing:0.215194px;}
.ws103{word-spacing:0.268992px;}
.ws1a7{word-spacing:0.269260px;}
.ws18{word-spacing:0.274968px;}
.wsd{word-spacing:0.298878px;}
.ws109{word-spacing:0.322790px;}
.ws184{word-spacing:0.339454px;}
.ws1bb{word-spacing:0.339547px;}
.ws1c7{word-spacing:0.341700px;}
.ws1dc{word-spacing:0.341981px;}
.ws3d{word-spacing:0.343710px;}
.ws174{word-spacing:0.344122px;}
.ws188{word-spacing:0.345431px;}
.ws1c9{word-spacing:0.350472px;}
.ws26{word-spacing:0.412452px;}
.ws19c{word-spacing:0.416379px;}
.ws1a1{word-spacing:0.477700px;}
.ws5c{word-spacing:0.481194px;}
.ws19b{word-spacing:0.486784px;}
.ws12f{word-spacing:0.537984px;}
.wsa8{word-spacing:0.549936px;}
.ws8b{word-spacing:0.618678px;}
.ws2d{word-spacing:0.687420px;}
.ws6{word-spacing:0.717307px;}
.ws31{word-spacing:0.756162px;}
.wsbc{word-spacing:0.824904px;}
.ws4b{word-spacing:0.893646px;}
.ws106{word-spacing:0.914573px;}
.ws194{word-spacing:0.960059px;}
.ws79{word-spacing:0.962388px;}
.ws64{word-spacing:1.031130px;}
.ws214{word-spacing:1.034083px;}
.wsb2{word-spacing:1.099872px;}
.ws215{word-spacing:1.100743px;}
.ws213{word-spacing:1.103190px;}
.ws3c{word-spacing:1.168614px;}
.wsc0{word-spacing:1.237356px;}
.wse5{word-spacing:1.306098px;}
.ws6c{word-spacing:1.374840px;}
.ws1da{word-spacing:1.377711px;}
.ws12e{word-spacing:1.443582px;}
.ws15b{word-spacing:1.510430px;}
.ws1b1{word-spacing:1.511289px;}
.ws8f{word-spacing:1.512324px;}
.ws1b3{word-spacing:1.513006px;}
.ws1c4{word-spacing:1.579431px;}
.ws6d{word-spacing:1.581066px;}
.ws131{word-spacing:1.613952px;}
.ws154{word-spacing:1.619268px;}
.wsde{word-spacing:1.649808px;}
.ws10b{word-spacing:1.667750px;}
.ws91{word-spacing:1.718550px;}
.wsb5{word-spacing:1.787292px;}
.ws25{word-spacing:1.856034px;}
.ws20{word-spacing:1.924776px;}
.ws138{word-spacing:1.990541px;}
.wsd4{word-spacing:1.993518px;}
.ws167{word-spacing:2.060072px;}
.wsaa{word-spacing:2.062260px;}
.ws1ae{word-spacing:2.127355px;}
.wscc{word-spacing:2.131002px;}
.ws1b4{word-spacing:2.199403px;}
.wsbf{word-spacing:2.199744px;}
.wsfc{word-spacing:2.205734px;}
.ws6f{word-spacing:2.268486px;}
.ws217{word-spacing:2.336310px;}
.ws7e{word-spacing:2.337228px;}
.ws39{word-spacing:2.405970px;}
.ws3e{word-spacing:2.474712px;}
.ws1ad{word-spacing:2.476006px;}
.ws14{word-spacing:2.543454px;}
.ws139{word-spacing:2.582323px;}
.wsbe{word-spacing:2.612196px;}
.ws83{word-spacing:2.680938px;}
.ws18e{word-spacing:2.681891px;}
.ws1ca{word-spacing:2.683597px;}
.ws2b{word-spacing:2.749680px;}
.ws52{word-spacing:2.818422px;}
.ws199{word-spacing:2.818904px;}
.ws1a6{word-spacing:2.821481px;}
.wsea{word-spacing:2.851315px;}
.ws12d{word-spacing:2.887164px;}
.ws5d{word-spacing:2.955906px;}
.ws53{word-spacing:3.024648px;}
.ws1cd{word-spacing:3.091778px;}
.ws1f{word-spacing:3.093390px;}
.ws1f1{word-spacing:3.120307px;}
.ws74{word-spacing:3.162132px;}
.ws1d5{word-spacing:3.167556px;}
.ws68{word-spacing:3.230874px;}
.ws42{word-spacing:3.299616px;}
.ws50{word-spacing:3.368358px;}
.ws130{word-spacing:3.389299px;}
.wscb{word-spacing:3.437100px;}
.ws10d{word-spacing:3.443098px;}
.ws1e1{word-spacing:3.503842px;}
.ws23{word-spacing:3.505842px;}
.ws37{word-spacing:3.574584px;}
.wsb6{word-spacing:3.643326px;}
.ws86{word-spacing:3.712068px;}
.ws126{word-spacing:3.712090px;}
.ws9a{word-spacing:3.780810px;}
.ws3{word-spacing:3.825638px;}
.ws46{word-spacing:3.849552px;}
.ws7f{word-spacing:3.918294px;}
.wsfa{word-spacing:3.927283px;}
.ws5b{word-spacing:3.987036px;}
.ws89{word-spacing:4.055778px;}
.ws98{word-spacing:4.124520px;}
.ws5e{word-spacing:4.193262px;}
.ws1e0{word-spacing:4.261769px;}
.ws15e{word-spacing:4.261816px;}
.ws45{word-spacing:4.262004px;}
.ws190{word-spacing:4.262545px;}
.wsf6{word-spacing:4.303872px;}
.ws38{word-spacing:4.330746px;}
.wscf{word-spacing:4.399488px;}
.ws5a{word-spacing:4.468230px;}
.wsda{word-spacing:4.536972px;}
.wsdb{word-spacing:4.605714px;}
.wsd5{word-spacing:4.674456px;}
.wse{word-spacing:4.722272px;}
.ws54{word-spacing:4.743198px;}
.ws16e{word-spacing:4.750187px;}
.ws11e{word-spacing:4.788058px;}
.ws77{word-spacing:4.811940px;}
.ws21{word-spacing:4.880682px;}
.wsc2{word-spacing:4.949424px;}
.ws2f{word-spacing:5.018166px;}
.ws13b{word-spacing:5.057050px;}
.ws3f{word-spacing:5.086908px;}
.ws18d{word-spacing:5.087073px;}
.ws41{word-spacing:5.155650px;}
.wsd6{word-spacing:5.224392px;}
.wsf0{word-spacing:5.293134px;}
.ws1ac{word-spacing:5.298711px;}
.ws33{word-spacing:5.361876px;}
.ws1b7{word-spacing:5.365135px;}
.ws1b6{word-spacing:5.423744px;}
.ws4e{word-spacing:5.430618px;}
.ws201{word-spacing:5.499360px;}
.ws1d6{word-spacing:5.499572px;}
.ws1d0{word-spacing:5.563549px;}
.ws1c1{word-spacing:5.567714px;}
.wsae{word-spacing:5.568102px;}
.ws8d{word-spacing:5.636844px;}
.ws1ec{word-spacing:5.702630px;}
.wsc6{word-spacing:5.705586px;}
.ws49{word-spacing:5.774328px;}
.wsc5{word-spacing:5.843070px;}
.ws24{word-spacing:5.911812px;}
.ws147{word-spacing:5.913888px;}
.ws148{word-spacing:5.928132px;}
.ws123{word-spacing:5.971622px;}
.wsab{word-spacing:5.980554px;}
.ws1af{word-spacing:6.046637px;}
.wsc7{word-spacing:6.049296px;}
.wse1{word-spacing:6.118038px;}
.ws84{word-spacing:6.186780px;}
.ws1a9{word-spacing:6.186956px;}
.ws43{word-spacing:6.255522px;}
.ws1cc{word-spacing:6.323111px;}
.ws1e5{word-spacing:6.324264px;}
.ws62{word-spacing:6.393006px;}
.ws28{word-spacing:6.461748px;}
.ws216{word-spacing:6.463560px;}
.ws161{word-spacing:6.528408px;}
.ws44{word-spacing:6.530490px;}
.ws63{word-spacing:6.599232px;}
.ws1e{word-spacing:6.667974px;}
.ws40{word-spacing:6.736716px;}
.ws125{word-spacing:6.778598px;}
.ws56{word-spacing:6.805458px;}
.ws1aa{word-spacing:6.811352px;}
.ws9d{word-spacing:6.874200px;}
.ws134{word-spacing:6.886195px;}
.ws113{word-spacing:6.942942px;}
.wsa9{word-spacing:7.011684px;}
.ws140{word-spacing:7.047097px;}
.ws13e{word-spacing:7.077613px;}
.ws30{word-spacing:7.080426px;}
.ws20f{word-spacing:7.089666px;}
.ws47{word-spacing:7.149168px;}
.ws20d{word-spacing:7.189641px;}
.ws100{word-spacing:7.217910px;}
.wsd7{word-spacing:7.286652px;}
.ws127{word-spacing:7.316582px;}
.wsbb{word-spacing:7.355394px;}
.wse4{word-spacing:7.424136px;}
.ws1d7{word-spacing:7.425560px;}
.ws207{word-spacing:7.487915px;}
.ws4f{word-spacing:7.492878px;}
.ws210{word-spacing:7.554108px;}
.ws208{word-spacing:7.555224px;}
.ws209{word-spacing:7.559028px;}
.ws206{word-spacing:7.559052px;}
.ws20c{word-spacing:7.559862px;}
.ws20e{word-spacing:7.560414px;}
.ws219{word-spacing:7.561224px;}
.ws21e{word-spacing:7.561500px;}
.wsc9{word-spacing:7.561620px;}
.ws156{word-spacing:7.564302px;}
.ws158{word-spacing:7.566020px;}
.ws16{word-spacing:7.630362px;}
.ws59{word-spacing:7.699104px;}
.wsd2{word-spacing:7.767846px;}
.ws88{word-spacing:7.836588px;}
.ws92{word-spacing:7.905330px;}
.ws13a{word-spacing:7.962163px;}
.ws2a{word-spacing:7.974072px;}
.ws20b{word-spacing:8.010486px;}
.ws20a{word-spacing:8.035526px;}
.wsaf{word-spacing:8.042814px;}
.ws218{word-spacing:8.060814px;}
.ws93{word-spacing:8.111556px;}
.ws1a2{word-spacing:8.113085px;}
.ws1a3{word-spacing:8.177792px;}
.ws8a{word-spacing:8.180298px;}
.ws5f{word-spacing:8.249040px;}
.wsb7{word-spacing:8.317782px;}
.ws1d1{word-spacing:8.319829px;}
.ws1b{word-spacing:8.386524px;}
.wsd1{word-spacing:8.455266px;}
.ws1c2{word-spacing:8.455984px;}
.wsdf{word-spacing:8.524008px;}
.ws19d{word-spacing:8.526573px;}
.ws19f{word-spacing:8.529020px;}
.wsba{word-spacing:8.592750px;}
.ws1d4{word-spacing:8.592997px;}
.ws34{word-spacing:8.661492px;}
.ws1f3{word-spacing:8.715341px;}
.ws19e{word-spacing:8.726916px;}
.ws15{word-spacing:8.730234px;}
.wsdc{word-spacing:8.798976px;}
.ws104{word-spacing:8.822938px;}
.ws51{word-spacing:8.867718px;}
.wsf9{word-spacing:8.876736px;}
.wsa3{word-spacing:8.936460px;}
.wsef{word-spacing:9.005202px;}
.ws1d{word-spacing:9.073944px;}
.wse2{word-spacing:9.142686px;}
.wse3{word-spacing:9.211428px;}
.ws1ea{word-spacing:9.253325px;}
.ws67{word-spacing:9.280170px;}
.ws1db{word-spacing:9.347665px;}
.ws9b{word-spacing:9.348912px;}
.wsb0{word-spacing:9.417654px;}
.ws80{word-spacing:9.486396px;}
.ws18f{word-spacing:9.554279px;}
.wsbd{word-spacing:9.555138px;}
.ws60{word-spacing:9.623880px;}
.ws7d{word-spacing:9.692622px;}
.wsa1{word-spacing:9.761364px;}
.ws29{word-spacing:9.830106px;}
.ws12c{word-spacing:9.898848px;}
.ws35{word-spacing:9.967590px;}
.ws1eb{word-spacing:10.006502px;}
.wse0{word-spacing:10.036332px;}
.ws61{word-spacing:10.173816px;}
.wsad{word-spacing:10.242558px;}
.wsd8{word-spacing:10.380042px;}
.wse9{word-spacing:10.586268px;}
.wsb1{word-spacing:10.723752px;}
.ws65{word-spacing:10.792494px;}
.ws1ff{word-spacing:10.861236px;}
.ws117{word-spacing:10.929978px;}
.wsb4{word-spacing:11.067462px;}
.ws141{word-spacing:11.204946px;}
.ws124{word-spacing:11.243866px;}
.ws11a{word-spacing:11.411172px;}
.ws9e{word-spacing:11.479914px;}
.ws202{word-spacing:11.617398px;}
.wsec{word-spacing:11.754882px;}
.ws120{word-spacing:11.892366px;}
.ws10a{word-spacing:11.961108px;}
.ws1ed{word-spacing:12.158438px;}
.ws55{word-spacing:12.167334px;}
.ws70{word-spacing:12.236076px;}
.ws1fa{word-spacing:12.304818px;}
.wsa6{word-spacing:12.373560px;}
.wse6{word-spacing:12.579786px;}
.ws122{word-spacing:12.648528px;}
.ws7c{word-spacing:12.717270px;}
.ws121{word-spacing:12.786012px;}
.ws129{word-spacing:12.804019px;}
.wse7{word-spacing:12.854754px;}
.ws118{word-spacing:12.923496px;}
.ws1e2{word-spacing:12.930370px;}
.ws1f5{word-spacing:13.180608px;}
.ws13f{word-spacing:13.335948px;}
.ws116{word-spacing:13.610916px;}
.ws7b{word-spacing:13.679658px;}
.ws1fb{word-spacing:13.748400px;}
.ws136{word-spacing:13.954626px;}
.wsf4{word-spacing:14.229594px;}
.ws73{word-spacing:14.298336px;}
.wsf3{word-spacing:14.367078px;}
.ws115{word-spacing:14.573304px;}
.ws111{word-spacing:15.054498px;}
.ws145{word-spacing:15.123240px;}
.wsc3{word-spacing:15.191982px;}
.ws1fc{word-spacing:15.329466px;}
.ws101{word-spacing:15.398208px;}
.ws11d{word-spacing:15.440141px;}
.ws6e{word-spacing:15.535692px;}
.ws144{word-spacing:15.673176px;}
.ws181{word-spacing:15.799340px;}
.ws9f{word-spacing:15.810660px;}
.ws13d{word-spacing:15.948144px;}
.ws11b{word-spacing:16.085628px;}
.ws102{word-spacing:16.085722px;}
.ws14d{word-spacing:16.223112px;}
.ws119{word-spacing:16.429338px;}
.ws203{word-spacing:16.773048px;}
.ws183{word-spacing:16.879206px;}
.ws0{word-spacing:16.880672px;}
.wsfd{word-spacing:16.910532px;}
.ws135{word-spacing:17.000294px;}
.ws6b{word-spacing:17.666694px;}
.ws1c8{word-spacing:17.668430px;}
.ws57{word-spacing:17.804178px;}
.ws114{word-spacing:17.872920px;}
.ws112{word-spacing:19.453986px;}
.ws15d{word-spacing:19.522399px;}
.wsac{word-spacing:19.591470px;}
.ws142{word-spacing:19.797696px;}
.ws205{word-spacing:20.278890px;}
.wsb9{word-spacing:21.653730px;}
.wsb8{word-spacing:21.722472px;}
.ws17c{word-spacing:23.003170px;}
.ws1f0{word-spacing:23.671296px;}
.ws17d{word-spacing:25.430940px;}
.ws1ef{word-spacing:25.608038px;}
.ws13c{word-spacing:26.190702px;}
.ws110{word-spacing:26.791603px;}
.ws1f9{word-spacing:26.946864px;}
.ws1f2{word-spacing:27.813773px;}
.ws32{word-spacing:27.840510px;}
.ws1f4{word-spacing:28.405555px;}
.ws143{word-spacing:29.146608px;}
.ws1f8{word-spacing:30.503693px;}
.ws12a{word-spacing:34.484774px;}
.ws204{word-spacing:35.677098px;}
.ws81{word-spacing:36.158292px;}
.ws1e9{word-spacing:38.304461px;}
.ws1e6{word-spacing:38.465856px;}
.ws1e7{word-spacing:38.950042px;}
.ws1e8{word-spacing:41.639962px;}
.wsed{word-spacing:42.207588px;}
.wseb{word-spacing:48.364762px;}
.wsf1{word-spacing:50.181660px;}
.ws82{word-spacing:51.075306px;}
.ws200{word-spacing:51.762726px;}
.wsa2{word-spacing:52.931340px;}
.ws1f6{word-spacing:53.529408px;}
.ws170{word-spacing:58.263000px;}
.ws14b{word-spacing:58.263667px;}
.ws151{word-spacing:58.266000px;}
.ws177{word-spacing:58.271832px;}
.ws152{word-spacing:58.272000px;}
.ws12{word-spacing:58.281300px;}
.ws14a{word-spacing:58.317466px;}
.ws14c{word-spacing:63.482112px;}
.ws211{word-spacing:67.202179px;}
.wsf2{word-spacing:72.316584px;}
.ws105{word-spacing:76.931712px;}
.ws1f7{word-spacing:84.947674px;}
.wsff{word-spacing:87.027372px;}
.ws1b2{word-spacing:100.335823px;}
.ws157{word-spacing:101.813776px;}
.ws21b{word-spacing:121.398372px;}
.ws149{word-spacing:151.980480px;}
.ws17a{word-spacing:213.690000px;}
.ws1e4{word-spacing:886.912500px;}
.ws11c{word-spacing:923.422500px;}
.wsca{word-spacing:926.002500px;}
._25{margin-left:-8.818704px;}
._11{margin-left:-7.558613px;}
._22{margin-left:-6.535270px;}
._e{margin-left:-5.086908px;}
._8{margin-left:-3.586536px;}
._5{margin-left:-2.570351px;}
._1{margin-left:-1.549386px;}
._0{width:1.386797px;}
._7d{width:3.363569px;}
._7e{width:4.632611px;}
._3{width:6.490906px;}
._79{width:7.881884px;}
._71{width:9.763605px;}
._47{width:12.812909px;}
._4{width:14.047266px;}
._a{width:16.236349px;}
._7{width:17.629022px;}
._b{width:18.990835px;}
._32{width:20.003922px;}
._6{width:21.100787px;}
._1b{width:22.341150px;}
._16{width:24.197184px;}
._19{width:25.640766px;}
._d{width:26.740638px;}
._1f{width:28.444240px;}
._14{width:29.559060px;}
._10{width:31.002642px;}
._2{width:32.020644px;}
._12{width:33.202386px;}
._1a{width:34.376382px;}
._21{width:36.158292px;}
._17{width:37.670616px;}
._24{width:39.622289px;}
._13{width:41.382684px;}
._23{width:42.688782px;}
._1c{width:44.269848px;}
._15{width:45.919656px;}
._c{width:47.470829px;}
._f{width:49.081788px;}
._18{width:51.900210px;}
._49{width:54.306180px;}
._7c{width:55.358554px;}
._43{width:57.262086px;}
._9{width:59.775600px;}
._6b{width:62.286138px;}
._1e{width:67.367160px;}
._1d{width:68.742000px;}
._20{width:70.116840px;}
._28{width:72.186685px;}
._4b{width:73.757606px;}
._3d{width:75.616200px;}
._33{width:77.708400px;}
._54{width:78.771625px;}
._6a{width:81.463890px;}
._36{width:83.656512px;}
._5d{width:85.737125px;}
._6c{width:87.012553px;}
._34{width:89.570826px;}
._31{width:90.596506px;}
._6e{width:94.903356px;}
._55{width:98.278909px;}
._57{width:99.365645px;}
._5e{width:102.442921px;}
._39{width:104.212872px;}
._6d{width:105.765306px;}
._7b{width:112.750679px;}
._4c{width:115.827955px;}
._68{width:117.127932px;}
._2d{width:120.508416px;}
._29{width:122.014771px;}
._5f{width:124.059110px;}
._56{width:125.511667px;}
._62{width:126.799319px;}
._70{width:130.740061px;}
._26{width:132.021274px;}
._27{width:133.043443px;}
._65{width:135.264677px;}
._69{width:145.210932px;}
._4e{width:147.407616px;}
._6f{width:148.683967px;}
._63{width:154.186214px;}
._37{width:155.265692px;}
._4d{width:161.341402px;}
._51{width:165.376282px;}
._64{width:166.495280px;}
._5c{width:177.803712px;}
._50{width:178.933478px;}
._2b{width:182.537971px;}
._30{width:190.015949px;}
._52{width:191.884189px;}
._67{width:193.732932px;}
._61{width:202.658573px;}
._2f{width:204.918106px;}
._3e{width:206.585856px;}
._2e{width:219.874061px;}
._3f{width:223.370957px;}
._7a{width:224.488751px;}
._74{width:227.139000px;}
._48{width:228.485315px;}
._2a{width:231.817306px;}
._2c{width:236.981952px;}
._58{width:276.362381px;}
._59{width:279.151870px;}
._3b{width:285.185318px;}
._5b{width:286.896100px;}
._44{width:289.907605px;}
._5a{width:300.345700px;}
._66{width:301.978240px;}
._60{width:310.951242px;}
._46{width:353.993472px;}
._75{width:446.911728px;}
._3c{width:484.066031px;}
._42{width:509.363251px;}
._72{width:513.138000px;}
._45{width:545.451210px;}
._78{width:555.999318px;}
._4f{width:558.911578px;}
._4a{width:607.814323px;}
._35{width:647.409946px;}
._53{width:649.938470px;}
._40{width:672.318605px;}
._3a{width:686.306189px;}
._41{width:705.297024px;}
._76{width:707.029728px;}
._77{width:805.584000px;}
._73{width:816.132108px;}
._38{width:1163.097468px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs7{font-size:41.842800px;}
.fs9{font-size:41.844000px;}
.fsa{font-size:47.820000px;}
.fs0{font-size:47.820600px;}
.fs6{font-size:50.869800px;}
.fs8{font-size:53.796000px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs5{font-size:68.742000px;}
.fs2{font-size:77.708400px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y54{bottom:41.308500px;}
.y58{bottom:41.592000px;}
.y55{bottom:43.522500px;}
.y1ad{bottom:87.921000px;}
.y110{bottom:89.415000px;}
.y53{bottom:90.733500px;}
.y25d{bottom:94.822500px;}
.y25{bottom:95.548500px;}
.y249{bottom:95.836500px;}
.y90{bottom:97.953000px;}
.y9a{bottom:98.967000px;}
.y25f{bottom:99.448500px;}
.y1df{bottom:99.547500px;}
.y1bd{bottom:100.462500px;}
.y12e{bottom:103.768500px;}
.yea{bottom:104.674500px;}
.y227{bottom:105.678000px;}
.y27b{bottom:107.475000px;}
.ybc{bottom:108.145500px;}
.y28b{bottom:108.489000px;}
.y204{bottom:108.781500px;}
.yd5{bottom:109.159500px;}
.y170{bottom:110.134500px;}
.y1ac{bottom:110.718000px;}
.y10f{bottom:112.212000px;}
.y52{bottom:113.530500px;}
.y25c{bottom:117.621000px;}
.y24{bottom:118.345500px;}
.y248{bottom:118.633500px;}
.y8f{bottom:120.751500px;}
.y99{bottom:121.764000px;}
.y25e{bottom:122.245500px;}
.y1de{bottom:122.344500px;}
.ye9{bottom:123.249000px;}
.y1bc{bottom:123.259500px;}
.y12d{bottom:126.565500px;}
.y226{bottom:128.475000px;}
.y66{bottom:129.889500px;}
.y27a{bottom:130.272000px;}
.ybb{bottom:130.942500px;}
.y28a{bottom:131.286000px;}
.y203{bottom:131.578500px;}
.yd4{bottom:131.956500px;}
.y16f{bottom:132.933000px;}
.y1ab{bottom:133.515000px;}
.y10e{bottom:135.009000px;}
.y51{bottom:136.327500px;}
.y25b{bottom:140.418000px;}
.y23{bottom:141.142500px;}
.y247{bottom:141.432000px;}
.y8e{bottom:143.548500px;}
.y98{bottom:144.562500px;}
.ye8{bottom:144.813000px;}
.y1dd{bottom:145.141500px;}
.y1bb{bottom:146.056500px;}
.y12c{bottom:149.364000px;}
.y28f{bottom:149.889000px;}
.y225{bottom:151.272000px;}
.y65{bottom:152.686500px;}
.y279{bottom:153.070500px;}
.yba{bottom:153.739500px;}
.y1b3{bottom:154.024500px;}
.y289{bottom:154.084500px;}
.y202{bottom:154.375500px;}
.yd3{bottom:154.753500px;}
.y16e{bottom:155.730000px;}
.y1aa{bottom:156.312000px;}
.y10d{bottom:157.806000px;}
.y50{bottom:159.124500px;}
.y25a{bottom:163.215000px;}
.ye7{bottom:163.389000px;}
.y22{bottom:163.939500px;}
.y246{bottom:164.229000px;}
.y8d{bottom:166.345500px;}
.y97{bottom:167.359500px;}
.y1dc{bottom:167.938500px;}
.y1ba{bottom:168.853500px;}
.y12b{bottom:172.161000px;}
.y28e{bottom:172.686000px;}
.y64{bottom:175.483500px;}
.y278{bottom:175.867500px;}
.yb9{bottom:176.536500px;}
.y288{bottom:176.881500px;}
.yd2{bottom:177.550500px;}
.y10c{bottom:180.604500px;}
.y4f{bottom:181.921500px;}
.y1b2{bottom:183.091500px;}
.ye6{bottom:184.953000px;}
.y259{bottom:186.012000px;}
.y21{bottom:186.736500px;}
.y245{bottom:187.026000px;}
.y8c{bottom:189.142500px;}
.y96{bottom:190.156500px;}
.y1db{bottom:190.735500px;}
.y1b9{bottom:191.650500px;}
.y224{bottom:194.913000px;}
.y12a{bottom:194.958000px;}
.y28d{bottom:195.483000px;}
.y201{bottom:198.016500px;}
.y63{bottom:198.280500px;}
.y277{bottom:198.664500px;}
.yb8{bottom:199.333500px;}
.y287{bottom:199.678500px;}
.yd1{bottom:200.347500px;}
.y10a{bottom:203.401500px;}
.ye5{bottom:203.529000px;}
.y1b1{bottom:204.655500px;}
.y4e{bottom:204.718500px;}
.y10b{bottom:207.147000px;}
.y258{bottom:208.809000px;}
.y20{bottom:209.533500px;}
.y244{bottom:209.823000px;}
.y8b{bottom:211.939500px;}
.y95{bottom:212.953500px;}
.y1da{bottom:213.532500px;}
.y16d{bottom:214.392000px;}
.y1b8{bottom:214.447500px;}
.y1a9{bottom:215.455500px;}
.y195{bottom:216.469500px;}
.y129{bottom:217.755000px;}
.yf6{bottom:218.280000px;}
.y223{bottom:220.900500px;}
.y62{bottom:221.077500px;}
.y276{bottom:221.461500px;}
.yb7{bottom:222.130500px;}
.y286{bottom:222.475500px;}
.yd0{bottom:223.144500px;}
.y200{bottom:224.004000px;}
.ye4{bottom:225.093000px;}
.y109{bottom:226.198500px;}
.y4d{bottom:227.515500px;}
.y257{bottom:231.606000px;}
.y1f{bottom:232.330500px;}
.y243{bottom:232.620000px;}
.y1b0{bottom:233.722500px;}
.y8a{bottom:234.736500px;}
.y94{bottom:235.750500px;}
.y1d9{bottom:236.329500px;}
.y16c{bottom:237.189000px;}
.y1b7{bottom:237.244500px;}
.y1a8{bottom:238.252500px;}
.y194{bottom:239.266500px;}
.y128{bottom:240.552000px;}
.yf5{bottom:241.078500px;}
.y222{bottom:242.464500px;}
.ye3{bottom:243.667500px;}
.y61{bottom:243.874500px;}
.y275{bottom:244.258500px;}
.yb6{bottom:244.927500px;}
.y285{bottom:245.272500px;}
.y1ff{bottom:245.568000px;}
.ycf{bottom:245.941500px;}
.y14a{bottom:248.995500px;}
.y4c{bottom:250.312500px;}
.y28c{bottom:251.538000px;}
.y1af{bottom:252.298500px;}
.y256{bottom:254.403000px;}
.y1e{bottom:255.127500px;}
.y242{bottom:255.417000px;}
.y89{bottom:257.533500px;}
.y93{bottom:258.547500px;}
.y1d8{bottom:259.126500px;}
.y16b{bottom:259.986000px;}
.y1b6{bottom:260.041500px;}
.y1a7{bottom:261.049500px;}
.y193{bottom:262.063500px;}
.y127{bottom:263.349000px;}
.yf4{bottom:263.875500px;}
.y221{bottom:264.028500px;}
.ye2{bottom:265.233000px;}
.y60{bottom:266.671500px;}
.y274{bottom:267.055500px;}
.y1fe{bottom:267.132000px;}
.yb5{bottom:267.726000px;}
.y284{bottom:268.069500px;}
.yce{bottom:268.740000px;}
.y149{bottom:271.792500px;}
.y1e3{bottom:272.196000px;}
.y4b{bottom:273.109500px;}
.y108{bottom:276.270000px;}
.y255{bottom:277.200000px;}
.y1d{bottom:277.924500px;}
.y241{bottom:278.214000px;}
.y88{bottom:280.330500px;}
.y92{bottom:281.344500px;}
.y1d7{bottom:281.925000px;}
.y16a{bottom:282.783000px;}
.y1b5{bottom:282.838500px;}
.ye1{bottom:283.807500px;}
.y1a6{bottom:283.846500px;}
.y192{bottom:284.860500px;}
.y220{bottom:285.592500px;}
.y126{bottom:286.146000px;}
.yf3{bottom:286.672500px;}
.y5f{bottom:289.468500px;}
.y273{bottom:289.852500px;}
.yb4{bottom:290.523000px;}
.y283{bottom:290.866500px;}
.ycd{bottom:291.537000px;}
.y148{bottom:294.589500px;}
.y1e2{bottom:294.993000px;}
.y1ae{bottom:295.450500px;}
.y4a{bottom:295.908000px;}
.y1fd{bottom:296.199000px;}
.y254{bottom:299.997000px;}
.y240{bottom:301.011000px;}
.y87{bottom:303.127500px;}
.y91{bottom:304.141500px;}
.y1d6{bottom:304.722000px;}
.y107{bottom:305.337000px;}
.y169{bottom:305.580000px;}
.y1a5{bottom:306.643500px;}
.y21f{bottom:307.156500px;}
.y191{bottom:307.657500px;}
.y125{bottom:308.943000px;}
.yf2{bottom:309.469500px;}
.y5e{bottom:312.265500px;}
.y272{bottom:312.649500px;}
.ye0{bottom:312.874500px;}
.yb3{bottom:313.320000px;}
.y282{bottom:313.663500px;}
.ycc{bottom:314.334000px;}
.y147{bottom:317.386500px;}
.y1e1{bottom:317.790000px;}
.y49{bottom:318.705000px;}
.y253{bottom:322.794000px;}
.y23f{bottom:323.808000px;}
.y106{bottom:323.913000px;}
.y168{bottom:328.377000px;}
.y1c{bottom:329.115000px;}
.y1a4{bottom:329.440500px;}
.y190{bottom:330.454500px;}
.y124{bottom:331.740000px;}
.yf1{bottom:332.266500px;}
.y5d{bottom:335.062500px;}
.y271{bottom:335.446500px;}
.yb2{bottom:336.117000px;}
.y21e{bottom:336.223500px;}
.y281{bottom:336.460500px;}
.ycb{bottom:337.131000px;}
.y1fc{bottom:339.351000px;}
.y146{bottom:340.183500px;}
.y1e0{bottom:340.587000px;}
.y48{bottom:341.502000px;}
.y105{bottom:342.487500px;}
.y86{bottom:344.871000px;}
.y252{bottom:345.591000px;}
.y23e{bottom:346.605000px;}
.y167{bottom:351.174000px;}
.ydf{bottom:352.177500px;}
.y1a3{bottom:352.237500px;}
.y18f{bottom:353.251500px;}
.y123{bottom:354.537000px;}
.yf0{bottom:355.063500px;}
.y5c{bottom:357.859500px;}
.y270{bottom:358.243500px;}
.yb1{bottom:358.914000px;}
.y280{bottom:359.257500px;}
.yca{bottom:359.928000px;}
.y145{bottom:362.980500px;}
.y1d5{bottom:363.384000px;}
.y104{bottom:364.051500px;}
.y47{bottom:364.299000px;}
.y85{bottom:367.668000px;}
.y251{bottom:368.388000px;}
.y23d{bottom:369.402000px;}
.y1b{bottom:370.288500px;}
.y1fb{bottom:373.242000px;}
.y166{bottom:373.972500px;}
.yde{bottom:374.974500px;}
.y1a2{bottom:375.034500px;}
.y18e{bottom:376.048500px;}
.y122{bottom:377.334000px;}
.yef{bottom:377.860500px;}
.y21d{bottom:379.377000px;}
.y5b{bottom:380.656500px;}
.y26f{bottom:381.040500px;}
.yb0{bottom:381.711000px;}
.y27f{bottom:382.054500px;}
.y103{bottom:382.627500px;}
.yc9{bottom:382.725000px;}
.y144{bottom:385.777500px;}
.y1d4{bottom:386.181000px;}
.y46{bottom:387.096000px;}
.y1a{bottom:388.864500px;}
.y84{bottom:390.465000px;}
.y250{bottom:391.185000px;}
.y23c{bottom:392.199000px;}
.y1fa{bottom:396.039000px;}
.y165{bottom:396.769500px;}
.ydd{bottom:397.771500px;}
.y1a1{bottom:397.831500px;}
.y18d{bottom:398.845500px;}
.y121{bottom:400.131000px;}
.yee{bottom:400.657500px;}
.y102{bottom:401.203500px;}
.y21c{bottom:402.174000px;}
.y5a{bottom:403.453500px;}
.y26e{bottom:403.837500px;}
.yaf{bottom:404.508000px;}
.y27e{bottom:404.851500px;}
.yc8{bottom:405.522000px;}
.y19{bottom:405.754500px;}
.y143{bottom:408.574500px;}
.y1d3{bottom:408.978000px;}
.y44{bottom:409.893000px;}
.y45{bottom:409.978500px;}
.y83{bottom:413.263500px;}
.y24f{bottom:413.982000px;}
.y23b{bottom:414.996000px;}
.y1f9{bottom:418.836000px;}
.y164{bottom:419.566500px;}
.y1a0{bottom:420.630000px;}
.y18c{bottom:421.644000px;}
.y101{bottom:422.767500px;}
.yed{bottom:423.454500px;}
.y59{bottom:425.238000px;}
.y26d{bottom:426.634500px;}
.yae{bottom:427.305000px;}
.y27d{bottom:427.648500px;}
.y18{bottom:427.708500px;}
.yc7{bottom:428.319000px;}
.y142{bottom:431.371500px;}
.y1d2{bottom:431.775000px;}
.y43{bottom:432.690000px;}
.y82{bottom:436.060500px;}
.y21b{bottom:436.063500px;}
.y24e{bottom:436.780500px;}
.y23a{bottom:437.794500px;}
.y100{bottom:441.342000px;}
.y1f8{bottom:441.633000px;}
.y163{bottom:442.363500px;}
.y19f{bottom:443.427000px;}
.y18b{bottom:444.441000px;}
.yec{bottom:446.251500px;}
.ydc{bottom:447.843000px;}
.y26c{bottom:449.433000px;}
.yad{bottom:450.102000px;}
.y120{bottom:450.202500px;}
.y17{bottom:450.381000px;}
.y27c{bottom:450.445500px;}
.yc6{bottom:451.116000px;}
.y1d1{bottom:454.572000px;}
.y42{bottom:455.487000px;}
.y81{bottom:458.857500px;}
.y21a{bottom:458.860500px;}
.y24d{bottom:459.577500px;}
.yff{bottom:459.918000px;}
.y239{bottom:460.591500px;}
.y1f7{bottom:464.430000px;}
.y162{bottom:465.160500px;}
.y19e{bottom:466.224000px;}
.ydb{bottom:466.419000px;}
.y18a{bottom:467.238000px;}
.yac{bottom:472.899000px;}
.yc5{bottom:473.913000px;}
.y1d0{bottom:477.369000px;}
.y41{bottom:478.284000px;}
.y11f{bottom:479.271000px;}
.yeb{bottom:479.509500px;}
.y141{bottom:481.443000px;}
.yfe{bottom:481.482000px;}
.y80{bottom:481.654500px;}
.y219{bottom:481.659000px;}
.y24c{bottom:482.374500px;}
.y238{bottom:483.388500px;}
.y16{bottom:485.784000px;}
.y1f6{bottom:487.227000px;}
.y161{bottom:487.957500px;}
.yda{bottom:487.983000px;}
.y19d{bottom:489.021000px;}
.y189{bottom:490.035000px;}
.y26b{bottom:491.176500px;}
.yab{bottom:495.696000px;}
.yc4{bottom:496.710000px;}
.y11e{bottom:497.845500px;}
.yfd{bottom:500.058000px;}
.y1cf{bottom:500.166000px;}
.y40{bottom:501.081000px;}
.y7f{bottom:504.451500px;}
.y24b{bottom:505.171500px;}
.y237{bottom:506.185500px;}
.yd9{bottom:506.557500px;}
.y15{bottom:507.736500px;}
.y1f5{bottom:510.025500px;}
.y140{bottom:510.511500px;}
.y160{bottom:510.754500px;}
.y19c{bottom:511.818000px;}
.y188{bottom:512.832000px;}
.y26a{bottom:513.973500px;}
.y11d{bottom:516.421500px;}
.yaa{bottom:518.493000px;}
.yfc{bottom:518.632500px;}
.yc3{bottom:519.507000px;}
.y1ce{bottom:522.963000px;}
.y3f{bottom:523.878000px;}
.y217{bottom:525.300000px;}
.y7e{bottom:527.248500px;}
.y24a{bottom:527.968500px;}
.yd8{bottom:528.121500px;}
.y236{bottom:528.982500px;}
.y13f{bottom:529.086000px;}
.y14{bottom:529.689000px;}
.y218{bottom:530.182500px;}
.y1f4{bottom:532.822500px;}
.y15f{bottom:533.551500px;}
.y19b{bottom:534.615000px;}
.y187{bottom:535.629000px;}
.y269{bottom:536.770500px;}
.y11c{bottom:537.985500px;}
.yfb{bottom:540.196500px;}
.ya9{bottom:541.290000px;}
.yc2{bottom:542.304000px;}
.y1cd{bottom:545.761500px;}
.y3e{bottom:546.675000px;}
.yd7{bottom:546.697500px;}
.y13e{bottom:547.662000px;}
.y7d{bottom:550.045500px;}
.y13{bottom:551.641500px;}
.y216{bottom:553.993500px;}
.y1f3{bottom:555.619500px;}
.y15e{bottom:556.348500px;}
.y11b{bottom:556.561500px;}
.y19a{bottom:557.412000px;}
.y186{bottom:558.426000px;}
.yfa{bottom:558.772500px;}
.y268{bottom:559.567500px;}
.ya8{bottom:564.088500px;}
.yc1{bottom:565.101000px;}
.y1cc{bottom:568.558500px;}
.y13d{bottom:569.226000px;}
.y3d{bottom:569.472000px;}
.y57{bottom:569.559000px;}
.y7c{bottom:572.842500px;}
.y12{bottom:573.595500px;}
.y11a{bottom:575.136000px;}
.y215{bottom:575.557500px;}
.yd6{bottom:575.764500px;}
.yf9{bottom:577.348500px;}
.y235{bottom:579.054000px;}
.y15d{bottom:579.145500px;}
.y199{bottom:580.209000px;}
.y185{bottom:581.223000px;}
.ya7{bottom:586.885500px;}
.y13c{bottom:587.802000px;}
.yc0{bottom:587.899500px;}
.y1cb{bottom:591.355500px;}
.y3c{bottom:592.269000px;}
.y267{bottom:592.825500px;}
.y214{bottom:594.133500px;}
.y11{bottom:595.548000px;}
.y7b{bottom:595.639500px;}
.y119{bottom:596.700000px;}
.y234{bottom:597.630000px;}
.y15c{bottom:601.942500px;}
.y198{bottom:603.006000px;}
.y184{bottom:604.020000px;}
.y1f2{bottom:605.691000px;}
.y13b{bottom:606.376500px;}
.yf8{bottom:606.415500px;}
.ya6{bottom:609.682500px;}
.ybf{bottom:610.696500px;}
.y1ca{bottom:614.152500px;}
.y3b{bottom:615.067500px;}
.y290{bottom:615.153000px;}
.y118{bottom:615.276000px;}
.y213{bottom:615.697500px;}
.y233{bottom:616.204500px;}
.y10{bottom:617.500500px;}
.y7a{bottom:618.436500px;}
.y15b{bottom:624.739500px;}
.y197{bottom:625.803000px;}
.y183{bottom:626.817000px;}
.y1f1{bottom:627.255000px;}
.y13a{bottom:627.940500px;}
.ya5{bottom:632.479500px;}
.ybe{bottom:633.493500px;}
.y232{bottom:634.780500px;}
.y117{bottom:636.840000px;}
.y1c9{bottom:636.949500px;}
.y266{bottom:637.194000px;}
.y212{bottom:637.261500px;}
.y3a{bottom:637.864500px;}
.yf{bottom:639.453000px;}
.y79{bottom:641.233500px;}
.y139{bottom:646.516500px;}
.y15a{bottom:647.536500px;}
.y196{bottom:648.600000px;}
.y1f0{bottom:648.819000px;}
.yf7{bottom:649.567500px;}
.y182{bottom:649.614000px;}
.ya4{bottom:655.276500px;}
.y116{bottom:655.416000px;}
.ybd{bottom:656.290500px;}
.y1c8{bottom:659.746500px;}
.y265{bottom:659.991000px;}
.y39{bottom:660.661500px;}
.y1b4{bottom:660.747000px;}
.ye{bottom:661.405500px;}
.y231{bottom:663.816000px;}
.y78{bottom:664.030500px;}
.y138{bottom:665.092500px;}
.y210{bottom:666.328500px;}
.y159{bottom:670.333500px;}
.y211{bottom:671.211000px;}
.y181{bottom:673.900500px;}
.y115{bottom:673.990500px;}
.y1ef{bottom:677.886000px;}
.y230{bottom:682.392000px;}
.y1c7{bottom:682.543500px;}
.y264{bottom:682.788000px;}
.yd{bottom:683.359500px;}
.y38{bottom:683.458500px;}
.y137{bottom:686.656500px;}
.y77{bottom:686.827500px;}
.y158{bottom:693.132000px;}
.y114{bottom:695.554500px;}
.ya3{bottom:697.020000px;}
.y1ee{bottom:699.450000px;}
.y22f{bottom:700.966500px;}
.y180{bottom:702.967500px;}
.y136{bottom:705.231000px;}
.yc{bottom:705.312000px;}
.y1c6{bottom:705.340500px;}
.y263{bottom:705.585000px;}
.y20f{bottom:705.631500px;}
.y37{bottom:706.255500px;}
.y76{bottom:709.626000px;}
.y113{bottom:714.130500px;}
.y157{bottom:715.929000px;}
.y22e{bottom:719.542500px;}
.ya2{bottom:719.817000px;}
.y1ed{bottom:721.014000px;}
.y17f{bottom:721.543500px;}
.y135{bottom:723.807000px;}
.yb{bottom:727.264500px;}
.y262{bottom:728.382000px;}
.y20e{bottom:728.428500px;}
.y36{bottom:729.052500px;}
.y1c5{bottom:729.627000px;}
.y75{bottom:732.423000px;}
.y156{bottom:738.726000px;}
.y17e{bottom:740.118000px;}
.ya1{bottom:742.614000px;}
.y112{bottom:743.197500px;}
.y134{bottom:745.371000px;}
.y22d{bottom:748.579500px;}
.ya{bottom:749.217000px;}
.y1ec{bottom:750.082500px;}
.y261{bottom:751.179000px;}
.y20d{bottom:751.225500px;}
.y35{bottom:751.849500px;}
.y74{bottom:755.220000px;}
.y1c4{bottom:758.694000px;}
.y155{bottom:761.523000px;}
.y17d{bottom:761.682000px;}
.y133{bottom:763.947000px;}
.ya0{bottom:765.411000px;}
.y22c{bottom:767.154000px;}
.y9{bottom:771.169500px;}
.y1eb{bottom:771.646500px;}
.y260{bottom:772.962000px;}
.y20c{bottom:774.022500px;}
.y34{bottom:774.646500px;}
.y1c3{bottom:777.268500px;}
.y73{bottom:778.017000px;}
.y291{bottom:778.393500px;}
.y17c{bottom:780.258000px;}
.y132{bottom:782.521500px;}
.y154{bottom:784.320000px;}
.y22b{bottom:785.730000px;}
.y111{bottom:786.349500px;}
.y9f{bottom:788.208000px;}
.y8{bottom:793.122000px;}
.y1ea{bottom:793.210500px;}
.y1c2{bottom:795.844500px;}
.y20b{bottom:796.819500px;}
.y33{bottom:797.443500px;}
.y17b{bottom:798.834000px;}
.y22a{bottom:804.304500px;}
.y153{bottom:807.117000px;}
.y9e{bottom:811.005000px;}
.y131{bottom:811.588500px;}
.y7{bottom:815.076000px;}
.y1c1{bottom:817.408500px;}
.y72{bottom:819.226500px;}
.y20a{bottom:819.616500px;}
.y32{bottom:820.240500px;}
.y56{bottom:820.327500px;}
.y17a{bottom:820.398000px;}
.y1e9{bottom:822.277500px;}
.y152{bottom:829.914000px;}
.y229{bottom:833.373000px;}
.y9d{bottom:833.802000px;}
.y1c0{bottom:835.984500px;}
.y179{bottom:838.972500px;}
.y71{bottom:842.023500px;}
.y209{bottom:842.413500px;}
.y31{bottom:843.037500px;}
.y151{bottom:852.711000px;}
.y130{bottom:854.742000px;}
.y9c{bottom:856.600500px;}
.y178{bottom:857.548500px;}
.y70{bottom:864.820500px;}
.y208{bottom:865.210500px;}
.y1e8{bottom:865.429500px;}
.y30{bottom:865.834500px;}
.y150{bottom:875.508000px;}
.y1bf{bottom:876.123000px;}
.y228{bottom:876.525000px;}
.y12f{bottom:877.539000px;}
.y177{bottom:879.112500px;}
.y6{bottom:880.816500px;}
.y1e7{bottom:884.299500px;}
.y6f{bottom:887.617500px;}
.y207{bottom:888.007500px;}
.y2f{bottom:888.631500px;}
.y9b{bottom:889.857000px;}
.y176{bottom:897.688500px;}
.y1e6{bottom:910.285500px;}
.y6e{bottom:910.416000px;}
.y206{bottom:910.804500px;}
.y2e{bottom:911.430000px;}
.y292{bottom:911.515500px;}
.y175{bottom:916.263000px;}
.y5{bottom:922.197000px;}
.y14f{bottom:925.579500px;}
.y205{bottom:928.660500px;}
.y1e5{bottom:931.849500px;}
.y6d{bottom:933.213000px;}
.y2d{bottom:934.227000px;}
.y293{bottom:934.312500px;}
.y174{bottom:937.827000px;}
.y1e4{bottom:953.413500px;}
.y14e{bottom:954.646500px;}
.y6c{bottom:956.010000px;}
.y173{bottom:956.403000px;}
.y2c{bottom:957.024000px;}
.y4{bottom:959.347500px;}
.y172{bottom:974.979000px;}
.y14d{bottom:976.212000px;}
.y6b{bottom:978.807000px;}
.y2b{bottom:979.821000px;}
.y1be{bottom:985.470000px;}
.y3{bottom:996.498000px;}
.y14c{bottom:997.776000px;}
.y6a{bottom:1001.604000px;}
.y2a{bottom:1002.618000px;}
.y171{bottom:1004.046000px;}
.y69{bottom:1024.401000px;}
.y29{bottom:1025.415000px;}
.y14b{bottom:1026.843000px;}
.y68{bottom:1047.198000px;}
.y28{bottom:1048.212000px;}
.y67{bottom:1069.995000px;}
.y27{bottom:1071.009000px;}
.y2{bottom:1101.726000px;}
.y26{bottom:1110.262500px;}
.y1{bottom:1113.681000px;}
.h13{height:28.788672px;}
.h15{height:35.865000px;}
.h1{height:35.865450px;}
.h12{height:37.011648px;}
.h7{height:37.013299px;}
.h11{height:37.226832px;}
.hd{height:37.228493px;}
.h6{height:41.125613px;}
.h5{height:41.364715px;}
.hb{height:47.157012px;}
.h9{height:47.294496px;}
.h10{height:48.311846px;}
.he{height:51.556500px;}
.h4{height:53.463379px;}
.h8{height:53.774213px;}
.h3{height:53.853379px;}
.hf{height:59.952422px;}
.h2{height:71.065171px;}
.hc{height:91.407450px;}
.h14{height:92.541000px;}
.ha{height:92.541450px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2e{left:125.274000px;}
.xe{left:127.558500px;}
.x48{left:128.848500px;}
.x53{left:134.079000px;}
.x5f{left:135.184500px;}
.x3{left:136.812000px;}
.x4c{left:138.694500px;}
.x60{left:142.800000px;}
.x4{left:143.913000px;}
.x1e{left:151.072500px;}
.xf{left:153.070500px;}
.x4e{left:154.702500px;}
.x12{left:158.698500px;}
.x24{left:171.123000px;}
.x58{left:173.175000px;}
.x61{left:176.919000px;}
.x8{left:178.044000px;}
.x5c{left:180.510000px;}
.xc{left:182.308500px;}
.x20{left:184.305000px;}
.x2a{left:185.451000px;}
.x1d{left:187.872000px;}
.x29{left:189.411000px;}
.x21{left:190.990500px;}
.x62{left:193.725000px;}
.x22{left:194.805000px;}
.x1f{left:202.096500px;}
.x4d{left:206.401500px;}
.x4b{left:208.641000px;}
.x2d{left:213.582000px;}
.x17{left:228.663000px;}
.x13{left:236.361000px;}
.xa{left:239.121000px;}
.x50{left:242.037000px;}
.x2b{left:252.877500px;}
.xb{left:265.518000px;}
.x4a{left:267.405000px;}
.x30{left:276.660000px;}
.x57{left:277.741500px;}
.x27{left:279.121500px;}
.x52{left:290.316000px;}
.x26{left:294.439500px;}
.x46{left:298.914000px;}
.x18{left:301.267500px;}
.x63{left:305.283000px;}
.x5a{left:317.658000px;}
.x59{left:318.667500px;}
.x5e{left:322.585500px;}
.x5{left:359.031000px;}
.x49{left:361.854000px;}
.x47{left:363.925500px;}
.x44{left:368.235000px;}
.x5d{left:372.091500px;}
.x45{left:376.395000px;}
.x6{left:381.069000px;}
.x11{left:404.373000px;}
.x9{left:410.130000px;}
.x25{left:411.681000px;}
.xd{left:432.832500px;}
.x23{left:447.636000px;}
.x14{left:452.577000px;}
.x56{left:457.408500px;}
.x2f{left:462.060000px;}
.x10{left:464.346000px;}
.x35{left:465.634500px;}
.x54{left:473.473500px;}
.x28{left:482.445000px;}
.x16{left:489.858000px;}
.x55{left:498.985500px;}
.x7{left:505.713000px;}
.x51{left:518.691000px;}
.x2c{left:525.928500px;}
.x31{left:528.913500px;}
.x36{left:533.301000px;}
.x40{left:539.892000px;}
.x32{left:560.338500px;}
.x2{left:573.774000px;}
.x15{left:578.070000px;}
.x3b{left:582.474000px;}
.x4f{left:588.966000px;}
.x41{left:591.414000px;}
.x3c{left:592.755000px;}
.x38{left:594.906000px;}
.x37{left:603.087000px;}
.x5b{left:609.651000px;}
.x19{left:631.147500px;}
.x1b{left:637.977000px;}
.x1a{left:639.412500px;}
.x3d{left:653.155500px;}
.x3e{left:662.148000px;}
.x33{left:663.766500px;}
.x1c{left:688.551000px;}
.x1{left:696.322500px;}
.x42{left:711.142500px;}
.x39{left:713.110500px;}
.x3a{left:723.477000px;}
.x3f{left:732.886500px;}
.x43{left:781.594500px;}
.x34{left:783.954000px;}
@media print{
.v5{vertical-align:-17.360000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.354667pt;}
.v3{vertical-align:22.181333pt;}
.v2{vertical-align:49.370667pt;}
.v1{vertical-align:50.378667pt;}
.ls42{letter-spacing:-64.403616pt;}
.ls1d{letter-spacing:-55.299120pt;}
.ls24{letter-spacing:-54.626976pt;}
.ls41{letter-spacing:-39.228768pt;}
.ls20{letter-spacing:-17.166901pt;}
.ls27{letter-spacing:-14.726064pt;}
.ls22{letter-spacing:-13.992816pt;}
.ls25{letter-spacing:-10.509888pt;}
.ls1f{letter-spacing:-8.559541pt;}
.ls26{letter-spacing:-7.699104pt;}
.ls21{letter-spacing:-7.026960pt;}
.ls1c{letter-spacing:-0.717280pt;}
.ls23{letter-spacing:-0.061104pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3a{letter-spacing:1.283184pt;}
.ls0{letter-spacing:2.656693pt;}
.ls16{letter-spacing:4.039834pt;}
.ls5{letter-spacing:5.132736pt;}
.ls9{letter-spacing:5.191621pt;}
.ls11{letter-spacing:5.196955pt;}
.ls6{letter-spacing:6.721440pt;}
.ls17{letter-spacing:11.907379pt;}
.ls1a{letter-spacing:11.910641pt;}
.ls8{letter-spacing:12.343008pt;}
.ls7{letter-spacing:12.404112pt;}
.lsf{letter-spacing:13.503984pt;}
.ls14{letter-spacing:13.565088pt;}
.ls32{letter-spacing:13.870608pt;}
.ls13{letter-spacing:13.992816pt;}
.ls10{letter-spacing:14.053920pt;}
.lsd{letter-spacing:14.115024pt;}
.lsb{letter-spacing:14.176128pt;}
.lsc{letter-spacing:14.237232pt;}
.ls3d{letter-spacing:14.603856pt;}
.ls1b{letter-spacing:14.613333pt;}
.ls2c{letter-spacing:15.031584pt;}
.lsa{letter-spacing:15.039200pt;}
.ls36{letter-spacing:15.092688pt;}
.ls31{letter-spacing:15.153792pt;}
.ls2f{letter-spacing:15.214896pt;}
.ls29{letter-spacing:15.276000pt;}
.ls40{letter-spacing:15.334960pt;}
.ls35{letter-spacing:15.337104pt;}
.ls18{letter-spacing:15.398208pt;}
.ls38{letter-spacing:15.459312pt;}
.ls34{letter-spacing:15.520416pt;}
.ls2d{letter-spacing:15.581520pt;}
.ls28{letter-spacing:15.887040pt;}
.ls2b{letter-spacing:16.131456pt;}
.ls15{letter-spacing:16.217867pt;}
.lse{letter-spacing:16.233867pt;}
.ls3f{letter-spacing:16.259018pt;}
.ls30{letter-spacing:16.375872pt;}
.ls12{letter-spacing:16.729867pt;}
.ls37{letter-spacing:16.986912pt;}
.ls3b{letter-spacing:17.597952pt;}
.ls2e{letter-spacing:18.453408pt;}
.ls3e{letter-spacing:18.636720pt;}
.ls33{letter-spacing:20.347632pt;}
.ls3c{letter-spacing:20.653152pt;}
.ls39{letter-spacing:20.775360pt;}
.ls2a{letter-spacing:22.302960pt;}
.ls1e{letter-spacing:36.294368pt;}
.ls19{letter-spacing:81.184000pt;}
.ls2{letter-spacing:851.373333pt;}
.ls4{letter-spacing:852.136000pt;}
.ls3{letter-spacing:852.440000pt;}
.ws66{word-spacing:-15.276000pt;}
.ws10e{word-spacing:-11.955200pt;}
.ws16b{word-spacing:-11.954667pt;}
.ws193{word-spacing:-8.249040pt;}
.ws18c{word-spacing:-3.484408pt;}
.ws137{word-spacing:-3.421824pt;}
.ws72{word-spacing:-3.360720pt;}
.ws17e{word-spacing:-3.305885pt;}
.ws97{word-spacing:-3.299616pt;}
.ws1a5{word-spacing:-3.184069pt;}
.ws19{word-spacing:-3.177408pt;}
.ws58{word-spacing:-3.116304pt;}
.wsdd{word-spacing:-3.055200pt;}
.wsd0{word-spacing:-2.994096pt;}
.wsee{word-spacing:-2.871888pt;}
.ws192{word-spacing:-2.814833pt;}
.ws4d{word-spacing:-2.810784pt;}
.ws1b8{word-spacing:-2.755383pt;}
.ws1df{word-spacing:-2.755166pt;}
.ws1fd{word-spacing:-2.749680pt;}
.wsb3{word-spacing:-2.688576pt;}
.ws10{word-spacing:-2.656693pt;}
.ws4c{word-spacing:-2.627472pt;}
.ws1b9{word-spacing:-2.573769pt;}
.ws12b{word-spacing:-2.566368pt;}
.wsc8{word-spacing:-2.505264pt;}
.wsfe{word-spacing:-2.444160pt;}
.wsd3{word-spacing:-2.383056pt;}
.wsc4{word-spacing:-2.321952pt;}
.ws6a{word-spacing:-2.260848pt;}
.ws1dd{word-spacing:-2.259738pt;}
.ws146{word-spacing:-2.247578pt;}
.ws3a{word-spacing:-2.199744pt;}
.ws8c{word-spacing:-2.138640pt;}
.ws7a{word-spacing:-2.077536pt;}
.ws90{word-spacing:-2.016432pt;}
.ws10f{word-spacing:-2.008474pt;}
.wscd{word-spacing:-1.955328pt;}
.ws69{word-spacing:-1.894224pt;}
.ws9c{word-spacing:-1.833120pt;}
.wsa0{word-spacing:-1.772016pt;}
.ws87{word-spacing:-1.710912pt;}
.ws75{word-spacing:-1.649808pt;}
.wsc1{word-spacing:-1.588704pt;}
.wsd9{word-spacing:-1.527600pt;}
.ws1fe{word-spacing:-1.466496pt;}
.wsa7{word-spacing:-1.405392pt;}
.wsc{word-spacing:-1.381481pt;}
.ws71{word-spacing:-1.344288pt;}
.ws78{word-spacing:-1.283184pt;}
.ws4a{word-spacing:-1.222080pt;}
.ws11f{word-spacing:-1.195520pt;}
.ws94{word-spacing:-1.160976pt;}
.ws1bc{word-spacing:-1.102658pt;}
.wsa4{word-spacing:-1.099872pt;}
.ws95{word-spacing:-1.038768pt;}
.ws212{word-spacing:-0.983346pt;}
.ws3b{word-spacing:-0.977664pt;}
.ws133{word-spacing:-0.956416pt;}
.wsf5{word-spacing:-0.916560pt;}
.ws8{word-spacing:-0.903276pt;}
.wsce{word-spacing:-0.855456pt;}
.ws8e{word-spacing:-0.794352pt;}
.wsa5{word-spacing:-0.733248pt;}
.ws132{word-spacing:-0.717312pt;}
.ws76{word-spacing:-0.672144pt;}
.ws96{word-spacing:-0.611040pt;}
.ws99{word-spacing:-0.549936pt;}
.ws85{word-spacing:-0.488832pt;}
.ws1a{word-spacing:-0.427728pt;}
.ws13{word-spacing:-0.366624pt;}
.ws1ce{word-spacing:-0.363054pt;}
.ws1b5{word-spacing:-0.362139pt;}
.ws1ee{word-spacing:-0.334746pt;}
.ws1c5{word-spacing:-0.310585pt;}
.ws1a4{word-spacing:-0.306825pt;}
.ws36{word-spacing:-0.305520pt;}
.ws175{word-spacing:-0.305310pt;}
.ws168{word-spacing:-0.305238pt;}
.ws1be{word-spacing:-0.302916pt;}
.ws1ba{word-spacing:-0.302832pt;}
.ws1bd{word-spacing:-0.301651pt;}
.ws18a{word-spacing:-0.301304pt;}
.wsb{word-spacing:-0.265669pt;}
.ws189{word-spacing:-0.249723pt;}
.ws1d8{word-spacing:-0.249388pt;}
.ws1c3{word-spacing:-0.245880pt;}
.ws27{word-spacing:-0.244416pt;}
.ws1b0{word-spacing:-0.244374pt;}
.ws197{word-spacing:-0.242526pt;}
.wsf7{word-spacing:-0.239104pt;}
.ws1d9{word-spacing:-0.236227pt;}
.wsf{word-spacing:-0.212535pt;}
.ws16d{word-spacing:-0.195398pt;}
.ws128{word-spacing:-0.191283pt;}
.ws160{word-spacing:-0.185003pt;}
.ws22{word-spacing:-0.183312pt;}
.ws1cb{word-spacing:-0.183100pt;}
.ws176{word-spacing:-0.182685pt;}
.ws186{word-spacing:-0.181400pt;}
.ws1bf{word-spacing:-0.179112pt;}
.ws9{word-spacing:-0.159402pt;}
.ws10c{word-spacing:-0.143462pt;}
.ws182{word-spacing:-0.125658pt;}
.ws185{word-spacing:-0.124827pt;}
.ws21a{word-spacing:-0.124313pt;}
.ws1c{word-spacing:-0.122208pt;}
.ws162{word-spacing:-0.120996pt;}
.ws198{word-spacing:-0.120964pt;}
.ws5{word-spacing:-0.106268pt;}
.wsf8{word-spacing:-0.095642pt;}
.ws187{word-spacing:-0.070876pt;}
.ws15a{word-spacing:-0.066640pt;}
.ws2c{word-spacing:-0.061104pt;}
.ws166{word-spacing:-0.060564pt;}
.ws172{word-spacing:-0.057490pt;}
.ws1de{word-spacing:-0.056173pt;}
.wsfb{word-spacing:-0.047821pt;}
.ws1{word-spacing:-0.042507pt;}
.ws14f{word-spacing:-0.003264pt;}
.ws14e{word-spacing:-0.002544pt;}
.ws18b{word-spacing:-0.002507pt;}
.ws15c{word-spacing:-0.002448pt;}
.ws1d2{word-spacing:-0.002204pt;}
.ws17b{word-spacing:-0.001728pt;}
.ws1e3{word-spacing:-0.001563pt;}
.ws16a{word-spacing:-0.001488pt;}
.ws17f{word-spacing:-0.001319pt;}
.ws1c0{word-spacing:-0.001088pt;}
.ws155{word-spacing:-0.000949pt;}
.ws2{word-spacing:0.000000pt;}
.ws1cf{word-spacing:0.000129pt;}
.ws179{word-spacing:0.000768pt;}
.ws1d3{word-spacing:0.001736pt;}
.ws171{word-spacing:0.003605pt;}
.ws16c{word-spacing:0.003691pt;}
.ws153{word-spacing:0.004384pt;}
.ws16f{word-spacing:0.005515pt;}
.ws178{word-spacing:0.006101pt;}
.ws150{word-spacing:0.006635pt;}
.ws108{word-spacing:0.047821pt;}
.wsa{word-spacing:0.053134pt;}
.ws159{word-spacing:0.057143pt;}
.ws1a0{word-spacing:0.057408pt;}
.ws21c{word-spacing:0.057888pt;}
.ws163{word-spacing:0.059834pt;}
.ws17{word-spacing:0.061104pt;}
.ws196{word-spacing:0.061538pt;}
.ws191{word-spacing:0.062851pt;}
.ws15f{word-spacing:0.067957pt;}
.ws11{word-spacing:0.095642pt;}
.ws4{word-spacing:0.106268pt;}
.ws169{word-spacing:0.111412pt;}
.ws164{word-spacing:0.118459pt;}
.ws1ab{word-spacing:0.121721pt;}
.ws195{word-spacing:0.121993pt;}
.ws2e{word-spacing:0.122208pt;}
.ws21d{word-spacing:0.123280pt;}
.ws19a{word-spacing:0.124283pt;}
.ws180{word-spacing:0.125816pt;}
.ws173{word-spacing:0.129266pt;}
.wse8{word-spacing:0.143462pt;}
.ws7{word-spacing:0.159402pt;}
.ws165{word-spacing:0.171653pt;}
.ws1a8{word-spacing:0.177758pt;}
.ws48{word-spacing:0.183312pt;}
.ws1c6{word-spacing:0.186275pt;}
.ws107{word-spacing:0.191283pt;}
.ws103{word-spacing:0.239104pt;}
.ws1a7{word-spacing:0.239342pt;}
.ws18{word-spacing:0.244416pt;}
.wsd{word-spacing:0.265669pt;}
.ws109{word-spacing:0.286925pt;}
.ws184{word-spacing:0.301737pt;}
.ws1bb{word-spacing:0.301819pt;}
.ws1c7{word-spacing:0.303733pt;}
.ws1dc{word-spacing:0.303983pt;}
.ws3d{word-spacing:0.305520pt;}
.ws174{word-spacing:0.305886pt;}
.ws188{word-spacing:0.307050pt;}
.ws1c9{word-spacing:0.311530pt;}
.ws26{word-spacing:0.366624pt;}
.ws19c{word-spacing:0.370114pt;}
.ws1a1{word-spacing:0.424622pt;}
.ws5c{word-spacing:0.427728pt;}
.ws19b{word-spacing:0.432697pt;}
.ws12f{word-spacing:0.478208pt;}
.wsa8{word-spacing:0.488832pt;}
.ws8b{word-spacing:0.549936pt;}
.ws2d{word-spacing:0.611040pt;}
.ws6{word-spacing:0.637606pt;}
.ws31{word-spacing:0.672144pt;}
.wsbc{word-spacing:0.733248pt;}
.ws4b{word-spacing:0.794352pt;}
.ws106{word-spacing:0.812954pt;}
.ws194{word-spacing:0.853385pt;}
.ws79{word-spacing:0.855456pt;}
.ws64{word-spacing:0.916560pt;}
.ws214{word-spacing:0.919185pt;}
.wsb2{word-spacing:0.977664pt;}
.ws215{word-spacing:0.978438pt;}
.ws213{word-spacing:0.980613pt;}
.ws3c{word-spacing:1.038768pt;}
.wsc0{word-spacing:1.099872pt;}
.wse5{word-spacing:1.160976pt;}
.ws6c{word-spacing:1.222080pt;}
.ws1da{word-spacing:1.224632pt;}
.ws12e{word-spacing:1.283184pt;}
.ws15b{word-spacing:1.342604pt;}
.ws1b1{word-spacing:1.343368pt;}
.ws8f{word-spacing:1.344288pt;}
.ws1b3{word-spacing:1.344895pt;}
.ws1c4{word-spacing:1.403938pt;}
.ws6d{word-spacing:1.405392pt;}
.ws131{word-spacing:1.434624pt;}
.ws154{word-spacing:1.439349pt;}
.wsde{word-spacing:1.466496pt;}
.ws10b{word-spacing:1.482445pt;}
.ws91{word-spacing:1.527600pt;}
.wsb5{word-spacing:1.588704pt;}
.ws25{word-spacing:1.649808pt;}
.ws20{word-spacing:1.710912pt;}
.ws138{word-spacing:1.769370pt;}
.wsd4{word-spacing:1.772016pt;}
.ws167{word-spacing:1.831175pt;}
.wsaa{word-spacing:1.833120pt;}
.ws1ae{word-spacing:1.890982pt;}
.wscc{word-spacing:1.894224pt;}
.ws1b4{word-spacing:1.955025pt;}
.wsbf{word-spacing:1.955328pt;}
.wsfc{word-spacing:1.960653pt;}
.ws6f{word-spacing:2.016432pt;}
.ws217{word-spacing:2.076720pt;}
.ws7e{word-spacing:2.077536pt;}
.ws39{word-spacing:2.138640pt;}
.ws3e{word-spacing:2.199744pt;}
.ws1ad{word-spacing:2.200894pt;}
.ws14{word-spacing:2.260848pt;}
.ws139{word-spacing:2.295398pt;}
.wsbe{word-spacing:2.321952pt;}
.ws83{word-spacing:2.383056pt;}
.ws18e{word-spacing:2.383903pt;}
.ws1ca{word-spacing:2.385419pt;}
.ws2b{word-spacing:2.444160pt;}
.ws52{word-spacing:2.505264pt;}
.ws199{word-spacing:2.505693pt;}
.ws1a6{word-spacing:2.507983pt;}
.wsea{word-spacing:2.534502pt;}
.ws12d{word-spacing:2.566368pt;}
.ws5d{word-spacing:2.627472pt;}
.ws53{word-spacing:2.688576pt;}
.ws1cd{word-spacing:2.748247pt;}
.ws1f{word-spacing:2.749680pt;}
.ws1f1{word-spacing:2.773606pt;}
.ws74{word-spacing:2.810784pt;}
.ws1d5{word-spacing:2.815605pt;}
.ws68{word-spacing:2.871888pt;}
.ws42{word-spacing:2.932992pt;}
.ws50{word-spacing:2.994096pt;}
.ws130{word-spacing:3.012710pt;}
.wscb{word-spacing:3.055200pt;}
.ws10d{word-spacing:3.060531pt;}
.ws1e1{word-spacing:3.114526pt;}
.ws23{word-spacing:3.116304pt;}
.ws37{word-spacing:3.177408pt;}
.wsb6{word-spacing:3.238512pt;}
.ws86{word-spacing:3.299616pt;}
.ws126{word-spacing:3.299635pt;}
.ws9a{word-spacing:3.360720pt;}
.ws3{word-spacing:3.400567pt;}
.ws46{word-spacing:3.421824pt;}
.ws7f{word-spacing:3.482928pt;}
.wsfa{word-spacing:3.490918pt;}
.ws5b{word-spacing:3.544032pt;}
.ws89{word-spacing:3.605136pt;}
.ws98{word-spacing:3.666240pt;}
.ws5e{word-spacing:3.727344pt;}
.ws1e0{word-spacing:3.788239pt;}
.ws15e{word-spacing:3.788281pt;}
.ws45{word-spacing:3.788448pt;}
.ws190{word-spacing:3.788929pt;}
.wsf6{word-spacing:3.825664pt;}
.ws38{word-spacing:3.849552pt;}
.wscf{word-spacing:3.910656pt;}
.ws5a{word-spacing:3.971760pt;}
.wsda{word-spacing:4.032864pt;}
.wsdb{word-spacing:4.093968pt;}
.wsd5{word-spacing:4.155072pt;}
.wse{word-spacing:4.197575pt;}
.ws54{word-spacing:4.216176pt;}
.ws16e{word-spacing:4.222388pt;}
.ws11e{word-spacing:4.256051pt;}
.ws77{word-spacing:4.277280pt;}
.ws21{word-spacing:4.338384pt;}
.wsc2{word-spacing:4.399488pt;}
.ws2f{word-spacing:4.460592pt;}
.ws13b{word-spacing:4.495155pt;}
.ws3f{word-spacing:4.521696pt;}
.ws18d{word-spacing:4.521842pt;}
.ws41{word-spacing:4.582800pt;}
.wsd6{word-spacing:4.643904pt;}
.wsf0{word-spacing:4.705008pt;}
.ws1ac{word-spacing:4.709965pt;}
.ws33{word-spacing:4.766112pt;}
.ws1b7{word-spacing:4.769009pt;}
.ws1b6{word-spacing:4.821106pt;}
.ws4e{word-spacing:4.827216pt;}
.ws201{word-spacing:4.888320pt;}
.ws1d6{word-spacing:4.888508pt;}
.ws1d0{word-spacing:4.945377pt;}
.ws1c1{word-spacing:4.949079pt;}
.wsae{word-spacing:4.949424pt;}
.ws8d{word-spacing:5.010528pt;}
.ws1ec{word-spacing:5.069005pt;}
.wsc6{word-spacing:5.071632pt;}
.ws49{word-spacing:5.132736pt;}
.wsc5{word-spacing:5.193840pt;}
.ws24{word-spacing:5.254944pt;}
.ws147{word-spacing:5.256789pt;}
.ws148{word-spacing:5.269451pt;}
.ws123{word-spacing:5.308109pt;}
.wsab{word-spacing:5.316048pt;}
.ws1af{word-spacing:5.374789pt;}
.wsc7{word-spacing:5.377152pt;}
.wse1{word-spacing:5.438256pt;}
.ws84{word-spacing:5.499360pt;}
.ws1a9{word-spacing:5.499517pt;}
.ws43{word-spacing:5.560464pt;}
.ws1cc{word-spacing:5.620543pt;}
.ws1e5{word-spacing:5.621568pt;}
.ws62{word-spacing:5.682672pt;}
.ws28{word-spacing:5.743776pt;}
.ws216{word-spacing:5.745386pt;}
.ws161{word-spacing:5.803029pt;}
.ws44{word-spacing:5.804880pt;}
.ws63{word-spacing:5.865984pt;}
.ws1e{word-spacing:5.927088pt;}
.ws40{word-spacing:5.988192pt;}
.ws125{word-spacing:6.025421pt;}
.ws56{word-spacing:6.049296pt;}
.ws1aa{word-spacing:6.054535pt;}
.ws9d{word-spacing:6.110400pt;}
.ws134{word-spacing:6.121062pt;}
.ws113{word-spacing:6.171504pt;}
.wsa9{word-spacing:6.232608pt;}
.ws140{word-spacing:6.264086pt;}
.ws13e{word-spacing:6.291212pt;}
.ws30{word-spacing:6.293712pt;}
.ws20f{word-spacing:6.301925pt;}
.ws47{word-spacing:6.354816pt;}
.ws20d{word-spacing:6.390792pt;}
.ws100{word-spacing:6.415920pt;}
.wsd7{word-spacing:6.477024pt;}
.ws127{word-spacing:6.503629pt;}
.wsbb{word-spacing:6.538128pt;}
.wse4{word-spacing:6.599232pt;}
.ws1d7{word-spacing:6.600497pt;}
.ws207{word-spacing:6.655924pt;}
.ws4f{word-spacing:6.660336pt;}
.ws210{word-spacing:6.714763pt;}
.ws208{word-spacing:6.715755pt;}
.ws209{word-spacing:6.719136pt;}
.ws206{word-spacing:6.719157pt;}
.ws20c{word-spacing:6.719877pt;}
.ws20e{word-spacing:6.720368pt;}
.ws219{word-spacing:6.721088pt;}
.ws21e{word-spacing:6.721333pt;}
.wsc9{word-spacing:6.721440pt;}
.ws156{word-spacing:6.723824pt;}
.ws158{word-spacing:6.725351pt;}
.ws16{word-spacing:6.782544pt;}
.ws59{word-spacing:6.843648pt;}
.wsd2{word-spacing:6.904752pt;}
.ws88{word-spacing:6.965856pt;}
.ws92{word-spacing:7.026960pt;}
.ws13a{word-spacing:7.077478pt;}
.ws2a{word-spacing:7.088064pt;}
.ws20b{word-spacing:7.120432pt;}
.ws20a{word-spacing:7.142689pt;}
.wsaf{word-spacing:7.149168pt;}
.ws218{word-spacing:7.165168pt;}
.ws93{word-spacing:7.210272pt;}
.ws1a2{word-spacing:7.211631pt;}
.ws1a3{word-spacing:7.269149pt;}
.ws8a{word-spacing:7.271376pt;}
.ws5f{word-spacing:7.332480pt;}
.wsb7{word-spacing:7.393584pt;}
.ws1d1{word-spacing:7.395404pt;}
.ws1b{word-spacing:7.454688pt;}
.wsd1{word-spacing:7.515792pt;}
.ws1c2{word-spacing:7.516430pt;}
.wsdf{word-spacing:7.576896pt;}
.ws19d{word-spacing:7.579176pt;}
.ws19f{word-spacing:7.581351pt;}
.wsba{word-spacing:7.638000pt;}
.ws1d4{word-spacing:7.638220pt;}
.ws34{word-spacing:7.699104pt;}
.ws1f3{word-spacing:7.746970pt;}
.ws19e{word-spacing:7.757259pt;}
.ws15{word-spacing:7.760208pt;}
.wsdc{word-spacing:7.821312pt;}
.ws104{word-spacing:7.842611pt;}
.ws51{word-spacing:7.882416pt;}
.wsf9{word-spacing:7.890432pt;}
.wsa3{word-spacing:7.943520pt;}
.wsef{word-spacing:8.004624pt;}
.ws1d{word-spacing:8.065728pt;}
.wse2{word-spacing:8.126832pt;}
.wse3{word-spacing:8.187936pt;}
.ws1ea{word-spacing:8.225178pt;}
.ws67{word-spacing:8.249040pt;}
.ws1db{word-spacing:8.309035pt;}
.ws9b{word-spacing:8.310144pt;}
.wsb0{word-spacing:8.371248pt;}
.ws80{word-spacing:8.432352pt;}
.ws18f{word-spacing:8.492693pt;}
.wsbd{word-spacing:8.493456pt;}
.ws60{word-spacing:8.554560pt;}
.ws7d{word-spacing:8.615664pt;}
.wsa1{word-spacing:8.676768pt;}
.ws29{word-spacing:8.737872pt;}
.ws12c{word-spacing:8.798976pt;}
.ws35{word-spacing:8.860080pt;}
.ws1eb{word-spacing:8.894669pt;}
.wse0{word-spacing:8.921184pt;}
.ws61{word-spacing:9.043392pt;}
.wsad{word-spacing:9.104496pt;}
.wsd8{word-spacing:9.226704pt;}
.wse9{word-spacing:9.410016pt;}
.wsb1{word-spacing:9.532224pt;}
.ws65{word-spacing:9.593328pt;}
.ws1ff{word-spacing:9.654432pt;}
.ws117{word-spacing:9.715536pt;}
.wsb4{word-spacing:9.837744pt;}
.ws141{word-spacing:9.959952pt;}
.ws124{word-spacing:9.994547pt;}
.ws11a{word-spacing:10.143264pt;}
.ws9e{word-spacing:10.204368pt;}
.ws202{word-spacing:10.326576pt;}
.wsec{word-spacing:10.448784pt;}
.ws120{word-spacing:10.570992pt;}
.ws10a{word-spacing:10.632096pt;}
.ws1ed{word-spacing:10.807501pt;}
.ws55{word-spacing:10.815408pt;}
.ws70{word-spacing:10.876512pt;}
.ws1fa{word-spacing:10.937616pt;}
.wsa6{word-spacing:10.998720pt;}
.wse6{word-spacing:11.182032pt;}
.ws122{word-spacing:11.243136pt;}
.ws7c{word-spacing:11.304240pt;}
.ws121{word-spacing:11.365344pt;}
.ws129{word-spacing:11.381350pt;}
.wse7{word-spacing:11.426448pt;}
.ws118{word-spacing:11.487552pt;}
.ws1e2{word-spacing:11.493662pt;}
.ws1f5{word-spacing:11.716096pt;}
.ws13f{word-spacing:11.854176pt;}
.ws116{word-spacing:12.098592pt;}
.ws7b{word-spacing:12.159696pt;}
.ws1fb{word-spacing:12.220800pt;}
.ws136{word-spacing:12.404112pt;}
.wsf4{word-spacing:12.648528pt;}
.ws73{word-spacing:12.709632pt;}
.wsf3{word-spacing:12.770736pt;}
.ws115{word-spacing:12.954048pt;}
.ws111{word-spacing:13.381776pt;}
.ws145{word-spacing:13.442880pt;}
.wsc3{word-spacing:13.503984pt;}
.ws1fc{word-spacing:13.626192pt;}
.ws101{word-spacing:13.687296pt;}
.ws11d{word-spacing:13.724570pt;}
.ws6e{word-spacing:13.809504pt;}
.ws144{word-spacing:13.931712pt;}
.ws181{word-spacing:14.043858pt;}
.ws9f{word-spacing:14.053920pt;}
.ws13d{word-spacing:14.176128pt;}
.ws11b{word-spacing:14.298336pt;}
.ws102{word-spacing:14.298419pt;}
.ws14d{word-spacing:14.420544pt;}
.ws119{word-spacing:14.603856pt;}
.ws203{word-spacing:14.909376pt;}
.ws183{word-spacing:15.003739pt;}
.ws0{word-spacing:15.005042pt;}
.wsfd{word-spacing:15.031584pt;}
.ws135{word-spacing:15.111373pt;}
.ws6b{word-spacing:15.703728pt;}
.ws1c8{word-spacing:15.705271pt;}
.ws57{word-spacing:15.825936pt;}
.ws114{word-spacing:15.887040pt;}
.ws112{word-spacing:17.292432pt;}
.ws15d{word-spacing:17.353243pt;}
.wsac{word-spacing:17.414640pt;}
.ws142{word-spacing:17.597952pt;}
.ws205{word-spacing:18.025680pt;}
.wsb9{word-spacing:19.247760pt;}
.wsb8{word-spacing:19.308864pt;}
.ws17c{word-spacing:20.447262pt;}
.ws1f0{word-spacing:21.041152pt;}
.ws17d{word-spacing:22.605280pt;}
.ws1ef{word-spacing:22.762701pt;}
.ws13c{word-spacing:23.280624pt;}
.ws110{word-spacing:23.814758pt;}
.ws1f9{word-spacing:23.952768pt;}
.ws1f2{word-spacing:24.723354pt;}
.ws32{word-spacing:24.747120pt;}
.ws1f4{word-spacing:25.249382pt;}
.ws143{word-spacing:25.908096pt;}
.ws1f8{word-spacing:27.114394pt;}
.ws12a{word-spacing:30.653133pt;}
.ws204{word-spacing:31.712976pt;}
.ws81{word-spacing:32.140704pt;}
.ws1e9{word-spacing:34.048410pt;}
.ws1e6{word-spacing:34.191872pt;}
.ws1e7{word-spacing:34.622259pt;}
.ws1e8{word-spacing:37.013299pt;}
.wsed{word-spacing:37.517856pt;}
.wseb{word-spacing:42.990899pt;}
.wsf1{word-spacing:44.605920pt;}
.ws82{word-spacing:45.400272pt;}
.ws200{word-spacing:46.011312pt;}
.wsa2{word-spacing:47.050080pt;}
.ws1f6{word-spacing:47.581696pt;}
.ws170{word-spacing:51.789333pt;}
.ws14b{word-spacing:51.789926pt;}
.ws151{word-spacing:51.792000pt;}
.ws177{word-spacing:51.797184pt;}
.ws152{word-spacing:51.797333pt;}
.ws12{word-spacing:51.805600pt;}
.ws14a{word-spacing:51.837747pt;}
.ws14c{word-spacing:56.428544pt;}
.ws211{word-spacing:59.735270pt;}
.wsf2{word-spacing:64.281408pt;}
.ws105{word-spacing:68.383744pt;}
.ws1f7{word-spacing:75.509043pt;}
.wsff{word-spacing:77.357664pt;}
.ws1b2{word-spacing:89.187398pt;}
.ws157{word-spacing:90.501134pt;}
.ws21b{word-spacing:107.909664pt;}
.ws149{word-spacing:135.093760pt;}
.ws17a{word-spacing:189.946667pt;}
.ws1e4{word-spacing:788.366667pt;}
.ws11c{word-spacing:820.820000pt;}
.wsca{word-spacing:823.113333pt;}
._25{margin-left:-7.838848pt;}
._11{margin-left:-6.718767pt;}
._22{margin-left:-5.809129pt;}
._e{margin-left:-4.521696pt;}
._8{margin-left:-3.188032pt;}
._5{margin-left:-2.284756pt;}
._1{margin-left:-1.377232pt;}
._0{width:1.232709pt;}
._7d{width:2.989839pt;}
._7e{width:4.117876pt;}
._3{width:5.769694pt;}
._79{width:7.006119pt;}
._71{width:8.678760pt;}
._47{width:11.389252pt;}
._4{width:12.486459pt;}
._a{width:14.432310pt;}
._7{width:15.670242pt;}
._b{width:16.880742pt;}
._32{width:17.781264pt;}
._6{width:18.756255pt;}
._1b{width:19.858800pt;}
._16{width:21.508608pt;}
._19{width:22.791792pt;}
._d{width:23.769456pt;}
._1f{width:25.283769pt;}
._14{width:26.274720pt;}
._10{width:27.557904pt;}
._2{width:28.462795pt;}
._12{width:29.513232pt;}
._1a{width:30.556784pt;}
._21{width:32.140704pt;}
._17{width:33.484992pt;}
._24{width:35.219812pt;}
._13{width:36.784608pt;}
._23{width:37.945584pt;}
._1c{width:39.350976pt;}
._15{width:40.817472pt;}
._c{width:42.196292pt;}
._f{width:43.628256pt;}
._18{width:46.133520pt;}
._49{width:48.272160pt;}
._7c{width:49.207603pt;}
._43{width:50.899632pt;}
._9{width:53.133867pt;}
._6b{width:55.365456pt;}
._1e{width:59.881920pt;}
._1d{width:61.104000pt;}
._20{width:62.326080pt;}
._28{width:64.165942pt;}
._4b{width:65.562317pt;}
._3d{width:67.214400pt;}
._33{width:69.074133pt;}
._54{width:70.019222pt;}
._6a{width:72.412347pt;}
._36{width:74.361344pt;}
._5d{width:76.210778pt;}
._6c{width:77.344492pt;}
._34{width:79.618512pt;}
._31{width:80.530227pt;}
._6e{width:84.358539pt;}
._55{width:87.359030pt;}
._57{width:88.325018pt;}
._5e{width:91.060374pt;}
._39{width:92.633664pt;}
._6d{width:94.013605pt;}
._7b{width:100.222826pt;}
._4c{width:102.958182pt;}
._68{width:104.113717pt;}
._2d{width:107.118592pt;}
._29{width:108.457574pt;}
._5f{width:110.274765pt;}
._56{width:111.565926pt;}
._62{width:112.710506pt;}
._70{width:116.213388pt;}
._26{width:117.352243pt;}
._27{width:118.260838pt;}
._65{width:120.235268pt;}
._69{width:129.076384pt;}
._4e{width:131.028992pt;}
._6f{width:132.163526pt;}
._63{width:137.054413pt;}
._37{width:138.013949pt;}
._4d{width:143.414579pt;}
._51{width:147.001139pt;}
._64{width:147.995805pt;}
._5c{width:158.047744pt;}
._50{width:159.051981pt;}
._2b{width:162.255974pt;}
._30{width:168.903066pt;}
._52{width:170.563724pt;}
._67{width:172.207051pt;}
._61{width:180.140954pt;}
._2f{width:182.149427pt;}
._3e{width:183.631872pt;}
._2e{width:195.443610pt;}
._3f{width:198.551962pt;}
._7a{width:199.545556pt;}
._74{width:201.901333pt;}
._48{width:203.098058pt;}
._2a{width:206.059827pt;}
._2c{width:210.650624pt;}
._58{width:245.655450pt;}
._59{width:248.134995pt;}
._3b{width:253.498061pt;}
._5b{width:255.018755pt;}
._44{width:257.695649pt;}
._5a{width:266.973955pt;}
._66{width:268.425102pt;}
._60{width:276.401104pt;}
._46{width:314.660864pt;}
._75{width:397.254869pt;}
._3c{width:430.280916pt;}
._42{width:452.767334pt;}
._72{width:456.122667pt;}
._45{width:484.845520pt;}
._78{width:494.221616pt;}
._4f{width:496.810291pt;}
._4a{width:540.279398pt;}
._35{width:575.475507pt;}
._53{width:577.723085pt;}
._40{width:597.616538pt;}
._3a{width:610.049946pt;}
._41{width:626.930688pt;}
._76{width:628.470869pt;}
._77{width:716.074667pt;}
._73{width:725.450763pt;}
._38{width:1033.864416pt;}
.fs7{font-size:37.193600pt;}
.fs9{font-size:37.194667pt;}
.fsa{font-size:42.506667pt;}
.fs0{font-size:42.507200pt;}
.fs6{font-size:45.217600pt;}
.fs8{font-size:47.818667pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs5{font-size:61.104000pt;}
.fs2{font-size:69.074133pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:36.718667pt;}
.y58{bottom:36.970667pt;}
.y55{bottom:38.686667pt;}
.y1ad{bottom:78.152000pt;}
.y110{bottom:79.480000pt;}
.y53{bottom:80.652000pt;}
.y25d{bottom:84.286667pt;}
.y25{bottom:84.932000pt;}
.y249{bottom:85.188000pt;}
.y90{bottom:87.069333pt;}
.y9a{bottom:87.970667pt;}
.y25f{bottom:88.398667pt;}
.y1df{bottom:88.486667pt;}
.y1bd{bottom:89.300000pt;}
.y12e{bottom:92.238667pt;}
.yea{bottom:93.044000pt;}
.y227{bottom:93.936000pt;}
.y27b{bottom:95.533333pt;}
.ybc{bottom:96.129333pt;}
.y28b{bottom:96.434667pt;}
.y204{bottom:96.694667pt;}
.yd5{bottom:97.030667pt;}
.y170{bottom:97.897333pt;}
.y1ac{bottom:98.416000pt;}
.y10f{bottom:99.744000pt;}
.y52{bottom:100.916000pt;}
.y25c{bottom:104.552000pt;}
.y24{bottom:105.196000pt;}
.y248{bottom:105.452000pt;}
.y8f{bottom:107.334667pt;}
.y99{bottom:108.234667pt;}
.y25e{bottom:108.662667pt;}
.y1de{bottom:108.750667pt;}
.ye9{bottom:109.554667pt;}
.y1bc{bottom:109.564000pt;}
.y12d{bottom:112.502667pt;}
.y226{bottom:114.200000pt;}
.y66{bottom:115.457333pt;}
.y27a{bottom:115.797333pt;}
.ybb{bottom:116.393333pt;}
.y28a{bottom:116.698667pt;}
.y203{bottom:116.958667pt;}
.yd4{bottom:117.294667pt;}
.y16f{bottom:118.162667pt;}
.y1ab{bottom:118.680000pt;}
.y10e{bottom:120.008000pt;}
.y51{bottom:121.180000pt;}
.y25b{bottom:124.816000pt;}
.y23{bottom:125.460000pt;}
.y247{bottom:125.717333pt;}
.y8e{bottom:127.598667pt;}
.y98{bottom:128.500000pt;}
.ye8{bottom:128.722667pt;}
.y1dd{bottom:129.014667pt;}
.y1bb{bottom:129.828000pt;}
.y12c{bottom:132.768000pt;}
.y28f{bottom:133.234667pt;}
.y225{bottom:134.464000pt;}
.y65{bottom:135.721333pt;}
.y279{bottom:136.062667pt;}
.yba{bottom:136.657333pt;}
.y1b3{bottom:136.910667pt;}
.y289{bottom:136.964000pt;}
.y202{bottom:137.222667pt;}
.yd3{bottom:137.558667pt;}
.y16e{bottom:138.426667pt;}
.y1aa{bottom:138.944000pt;}
.y10d{bottom:140.272000pt;}
.y50{bottom:141.444000pt;}
.y25a{bottom:145.080000pt;}
.ye7{bottom:145.234667pt;}
.y22{bottom:145.724000pt;}
.y246{bottom:145.981333pt;}
.y8d{bottom:147.862667pt;}
.y97{bottom:148.764000pt;}
.y1dc{bottom:149.278667pt;}
.y1ba{bottom:150.092000pt;}
.y12b{bottom:153.032000pt;}
.y28e{bottom:153.498667pt;}
.y64{bottom:155.985333pt;}
.y278{bottom:156.326667pt;}
.yb9{bottom:156.921333pt;}
.y288{bottom:157.228000pt;}
.yd2{bottom:157.822667pt;}
.y10c{bottom:160.537333pt;}
.y4f{bottom:161.708000pt;}
.y1b2{bottom:162.748000pt;}
.ye6{bottom:164.402667pt;}
.y259{bottom:165.344000pt;}
.y21{bottom:165.988000pt;}
.y245{bottom:166.245333pt;}
.y8c{bottom:168.126667pt;}
.y96{bottom:169.028000pt;}
.y1db{bottom:169.542667pt;}
.y1b9{bottom:170.356000pt;}
.y224{bottom:173.256000pt;}
.y12a{bottom:173.296000pt;}
.y28d{bottom:173.762667pt;}
.y201{bottom:176.014667pt;}
.y63{bottom:176.249333pt;}
.y277{bottom:176.590667pt;}
.yb8{bottom:177.185333pt;}
.y287{bottom:177.492000pt;}
.yd1{bottom:178.086667pt;}
.y10a{bottom:180.801333pt;}
.ye5{bottom:180.914667pt;}
.y1b1{bottom:181.916000pt;}
.y4e{bottom:181.972000pt;}
.y10b{bottom:184.130667pt;}
.y258{bottom:185.608000pt;}
.y20{bottom:186.252000pt;}
.y244{bottom:186.509333pt;}
.y8b{bottom:188.390667pt;}
.y95{bottom:189.292000pt;}
.y1da{bottom:189.806667pt;}
.y16d{bottom:190.570667pt;}
.y1b8{bottom:190.620000pt;}
.y1a9{bottom:191.516000pt;}
.y195{bottom:192.417333pt;}
.y129{bottom:193.560000pt;}
.yf6{bottom:194.026667pt;}
.y223{bottom:196.356000pt;}
.y62{bottom:196.513333pt;}
.y276{bottom:196.854667pt;}
.yb7{bottom:197.449333pt;}
.y286{bottom:197.756000pt;}
.yd0{bottom:198.350667pt;}
.y200{bottom:199.114667pt;}
.ye4{bottom:200.082667pt;}
.y109{bottom:201.065333pt;}
.y4d{bottom:202.236000pt;}
.y257{bottom:205.872000pt;}
.y1f{bottom:206.516000pt;}
.y243{bottom:206.773333pt;}
.y1b0{bottom:207.753333pt;}
.y8a{bottom:208.654667pt;}
.y94{bottom:209.556000pt;}
.y1d9{bottom:210.070667pt;}
.y16c{bottom:210.834667pt;}
.y1b7{bottom:210.884000pt;}
.y1a8{bottom:211.780000pt;}
.y194{bottom:212.681333pt;}
.y128{bottom:213.824000pt;}
.yf5{bottom:214.292000pt;}
.y222{bottom:215.524000pt;}
.ye3{bottom:216.593333pt;}
.y61{bottom:216.777333pt;}
.y275{bottom:217.118667pt;}
.yb6{bottom:217.713333pt;}
.y285{bottom:218.020000pt;}
.y1ff{bottom:218.282667pt;}
.ycf{bottom:218.614667pt;}
.y14a{bottom:221.329333pt;}
.y4c{bottom:222.500000pt;}
.y28c{bottom:223.589333pt;}
.y1af{bottom:224.265333pt;}
.y256{bottom:226.136000pt;}
.y1e{bottom:226.780000pt;}
.y242{bottom:227.037333pt;}
.y89{bottom:228.918667pt;}
.y93{bottom:229.820000pt;}
.y1d8{bottom:230.334667pt;}
.y16b{bottom:231.098667pt;}
.y1b6{bottom:231.148000pt;}
.y1a7{bottom:232.044000pt;}
.y193{bottom:232.945333pt;}
.y127{bottom:234.088000pt;}
.yf4{bottom:234.556000pt;}
.y221{bottom:234.692000pt;}
.ye2{bottom:235.762667pt;}
.y60{bottom:237.041333pt;}
.y274{bottom:237.382667pt;}
.y1fe{bottom:237.450667pt;}
.yb5{bottom:237.978667pt;}
.y284{bottom:238.284000pt;}
.yce{bottom:238.880000pt;}
.y149{bottom:241.593333pt;}
.y1e3{bottom:241.952000pt;}
.y4b{bottom:242.764000pt;}
.y108{bottom:245.573333pt;}
.y255{bottom:246.400000pt;}
.y1d{bottom:247.044000pt;}
.y241{bottom:247.301333pt;}
.y88{bottom:249.182667pt;}
.y92{bottom:250.084000pt;}
.y1d7{bottom:250.600000pt;}
.y16a{bottom:251.362667pt;}
.y1b5{bottom:251.412000pt;}
.ye1{bottom:252.273333pt;}
.y1a6{bottom:252.308000pt;}
.y192{bottom:253.209333pt;}
.y220{bottom:253.860000pt;}
.y126{bottom:254.352000pt;}
.yf3{bottom:254.820000pt;}
.y5f{bottom:257.305333pt;}
.y273{bottom:257.646667pt;}
.yb4{bottom:258.242667pt;}
.y283{bottom:258.548000pt;}
.ycd{bottom:259.144000pt;}
.y148{bottom:261.857333pt;}
.y1e2{bottom:262.216000pt;}
.y1ae{bottom:262.622667pt;}
.y4a{bottom:263.029333pt;}
.y1fd{bottom:263.288000pt;}
.y254{bottom:266.664000pt;}
.y240{bottom:267.565333pt;}
.y87{bottom:269.446667pt;}
.y91{bottom:270.348000pt;}
.y1d6{bottom:270.864000pt;}
.y107{bottom:271.410667pt;}
.y169{bottom:271.626667pt;}
.y1a5{bottom:272.572000pt;}
.y21f{bottom:273.028000pt;}
.y191{bottom:273.473333pt;}
.y125{bottom:274.616000pt;}
.yf2{bottom:275.084000pt;}
.y5e{bottom:277.569333pt;}
.y272{bottom:277.910667pt;}
.ye0{bottom:278.110667pt;}
.yb3{bottom:278.506667pt;}
.y282{bottom:278.812000pt;}
.ycc{bottom:279.408000pt;}
.y147{bottom:282.121333pt;}
.y1e1{bottom:282.480000pt;}
.y49{bottom:283.293333pt;}
.y253{bottom:286.928000pt;}
.y23f{bottom:287.829333pt;}
.y106{bottom:287.922667pt;}
.y168{bottom:291.890667pt;}
.y1c{bottom:292.546667pt;}
.y1a4{bottom:292.836000pt;}
.y190{bottom:293.737333pt;}
.y124{bottom:294.880000pt;}
.yf1{bottom:295.348000pt;}
.y5d{bottom:297.833333pt;}
.y271{bottom:298.174667pt;}
.yb2{bottom:298.770667pt;}
.y21e{bottom:298.865333pt;}
.y281{bottom:299.076000pt;}
.ycb{bottom:299.672000pt;}
.y1fc{bottom:301.645333pt;}
.y146{bottom:302.385333pt;}
.y1e0{bottom:302.744000pt;}
.y48{bottom:303.557333pt;}
.y105{bottom:304.433333pt;}
.y86{bottom:306.552000pt;}
.y252{bottom:307.192000pt;}
.y23e{bottom:308.093333pt;}
.y167{bottom:312.154667pt;}
.ydf{bottom:313.046667pt;}
.y1a3{bottom:313.100000pt;}
.y18f{bottom:314.001333pt;}
.y123{bottom:315.144000pt;}
.yf0{bottom:315.612000pt;}
.y5c{bottom:318.097333pt;}
.y270{bottom:318.438667pt;}
.yb1{bottom:319.034667pt;}
.y280{bottom:319.340000pt;}
.yca{bottom:319.936000pt;}
.y145{bottom:322.649333pt;}
.y1d5{bottom:323.008000pt;}
.y104{bottom:323.601333pt;}
.y47{bottom:323.821333pt;}
.y85{bottom:326.816000pt;}
.y251{bottom:327.456000pt;}
.y23d{bottom:328.357333pt;}
.y1b{bottom:329.145333pt;}
.y1fb{bottom:331.770667pt;}
.y166{bottom:332.420000pt;}
.yde{bottom:333.310667pt;}
.y1a2{bottom:333.364000pt;}
.y18e{bottom:334.265333pt;}
.y122{bottom:335.408000pt;}
.yef{bottom:335.876000pt;}
.y21d{bottom:337.224000pt;}
.y5b{bottom:338.361333pt;}
.y26f{bottom:338.702667pt;}
.yb0{bottom:339.298667pt;}
.y27f{bottom:339.604000pt;}
.y103{bottom:340.113333pt;}
.yc9{bottom:340.200000pt;}
.y144{bottom:342.913333pt;}
.y1d4{bottom:343.272000pt;}
.y46{bottom:344.085333pt;}
.y1a{bottom:345.657333pt;}
.y84{bottom:347.080000pt;}
.y250{bottom:347.720000pt;}
.y23c{bottom:348.621333pt;}
.y1fa{bottom:352.034667pt;}
.y165{bottom:352.684000pt;}
.ydd{bottom:353.574667pt;}
.y1a1{bottom:353.628000pt;}
.y18d{bottom:354.529333pt;}
.y121{bottom:355.672000pt;}
.yee{bottom:356.140000pt;}
.y102{bottom:356.625333pt;}
.y21c{bottom:357.488000pt;}
.y5a{bottom:358.625333pt;}
.y26e{bottom:358.966667pt;}
.yaf{bottom:359.562667pt;}
.y27e{bottom:359.868000pt;}
.yc8{bottom:360.464000pt;}
.y19{bottom:360.670667pt;}
.y143{bottom:363.177333pt;}
.y1d3{bottom:363.536000pt;}
.y44{bottom:364.349333pt;}
.y45{bottom:364.425333pt;}
.y83{bottom:367.345333pt;}
.y24f{bottom:367.984000pt;}
.y23b{bottom:368.885333pt;}
.y1f9{bottom:372.298667pt;}
.y164{bottom:372.948000pt;}
.y1a0{bottom:373.893333pt;}
.y18c{bottom:374.794667pt;}
.y101{bottom:375.793333pt;}
.yed{bottom:376.404000pt;}
.y59{bottom:377.989333pt;}
.y26d{bottom:379.230667pt;}
.yae{bottom:379.826667pt;}
.y27d{bottom:380.132000pt;}
.y18{bottom:380.185333pt;}
.yc7{bottom:380.728000pt;}
.y142{bottom:383.441333pt;}
.y1d2{bottom:383.800000pt;}
.y43{bottom:384.613333pt;}
.y82{bottom:387.609333pt;}
.y21b{bottom:387.612000pt;}
.y24e{bottom:388.249333pt;}
.y23a{bottom:389.150667pt;}
.y100{bottom:392.304000pt;}
.y1f8{bottom:392.562667pt;}
.y163{bottom:393.212000pt;}
.y19f{bottom:394.157333pt;}
.y18b{bottom:395.058667pt;}
.yec{bottom:396.668000pt;}
.ydc{bottom:398.082667pt;}
.y26c{bottom:399.496000pt;}
.yad{bottom:400.090667pt;}
.y120{bottom:400.180000pt;}
.y17{bottom:400.338667pt;}
.y27c{bottom:400.396000pt;}
.yc6{bottom:400.992000pt;}
.y1d1{bottom:404.064000pt;}
.y42{bottom:404.877333pt;}
.y81{bottom:407.873333pt;}
.y21a{bottom:407.876000pt;}
.y24d{bottom:408.513333pt;}
.yff{bottom:408.816000pt;}
.y239{bottom:409.414667pt;}
.y1f7{bottom:412.826667pt;}
.y162{bottom:413.476000pt;}
.y19e{bottom:414.421333pt;}
.ydb{bottom:414.594667pt;}
.y18a{bottom:415.322667pt;}
.yac{bottom:420.354667pt;}
.yc5{bottom:421.256000pt;}
.y1d0{bottom:424.328000pt;}
.y41{bottom:425.141333pt;}
.y11f{bottom:426.018667pt;}
.yeb{bottom:426.230667pt;}
.y141{bottom:427.949333pt;}
.yfe{bottom:427.984000pt;}
.y80{bottom:428.137333pt;}
.y219{bottom:428.141333pt;}
.y24c{bottom:428.777333pt;}
.y238{bottom:429.678667pt;}
.y16{bottom:431.808000pt;}
.y1f6{bottom:433.090667pt;}
.y161{bottom:433.740000pt;}
.yda{bottom:433.762667pt;}
.y19d{bottom:434.685333pt;}
.y189{bottom:435.586667pt;}
.y26b{bottom:436.601333pt;}
.yab{bottom:440.618667pt;}
.yc4{bottom:441.520000pt;}
.y11e{bottom:442.529333pt;}
.yfd{bottom:444.496000pt;}
.y1cf{bottom:444.592000pt;}
.y40{bottom:445.405333pt;}
.y7f{bottom:448.401333pt;}
.y24b{bottom:449.041333pt;}
.y237{bottom:449.942667pt;}
.yd9{bottom:450.273333pt;}
.y15{bottom:451.321333pt;}
.y1f5{bottom:453.356000pt;}
.y140{bottom:453.788000pt;}
.y160{bottom:454.004000pt;}
.y19c{bottom:454.949333pt;}
.y188{bottom:455.850667pt;}
.y26a{bottom:456.865333pt;}
.y11d{bottom:459.041333pt;}
.yaa{bottom:460.882667pt;}
.yfc{bottom:461.006667pt;}
.yc3{bottom:461.784000pt;}
.y1ce{bottom:464.856000pt;}
.y3f{bottom:465.669333pt;}
.y217{bottom:466.933333pt;}
.y7e{bottom:468.665333pt;}
.y24a{bottom:469.305333pt;}
.yd8{bottom:469.441333pt;}
.y236{bottom:470.206667pt;}
.y13f{bottom:470.298667pt;}
.y14{bottom:470.834667pt;}
.y218{bottom:471.273333pt;}
.y1f4{bottom:473.620000pt;}
.y15f{bottom:474.268000pt;}
.y19b{bottom:475.213333pt;}
.y187{bottom:476.114667pt;}
.y269{bottom:477.129333pt;}
.y11c{bottom:478.209333pt;}
.yfb{bottom:480.174667pt;}
.ya9{bottom:481.146667pt;}
.yc2{bottom:482.048000pt;}
.y1cd{bottom:485.121333pt;}
.y3e{bottom:485.933333pt;}
.yd7{bottom:485.953333pt;}
.y13e{bottom:486.810667pt;}
.y7d{bottom:488.929333pt;}
.y13{bottom:490.348000pt;}
.y216{bottom:492.438667pt;}
.y1f3{bottom:493.884000pt;}
.y15e{bottom:494.532000pt;}
.y11b{bottom:494.721333pt;}
.y19a{bottom:495.477333pt;}
.y186{bottom:496.378667pt;}
.yfa{bottom:496.686667pt;}
.y268{bottom:497.393333pt;}
.ya8{bottom:501.412000pt;}
.yc1{bottom:502.312000pt;}
.y1cc{bottom:505.385333pt;}
.y13d{bottom:505.978667pt;}
.y3d{bottom:506.197333pt;}
.y57{bottom:506.274667pt;}
.y7c{bottom:509.193333pt;}
.y12{bottom:509.862667pt;}
.y11a{bottom:511.232000pt;}
.y215{bottom:511.606667pt;}
.yd6{bottom:511.790667pt;}
.yf9{bottom:513.198667pt;}
.y235{bottom:514.714667pt;}
.y15d{bottom:514.796000pt;}
.y199{bottom:515.741333pt;}
.y185{bottom:516.642667pt;}
.ya7{bottom:521.676000pt;}
.y13c{bottom:522.490667pt;}
.yc0{bottom:522.577333pt;}
.y1cb{bottom:525.649333pt;}
.y3c{bottom:526.461333pt;}
.y267{bottom:526.956000pt;}
.y214{bottom:528.118667pt;}
.y11{bottom:529.376000pt;}
.y7b{bottom:529.457333pt;}
.y119{bottom:530.400000pt;}
.y234{bottom:531.226667pt;}
.y15c{bottom:535.060000pt;}
.y198{bottom:536.005333pt;}
.y184{bottom:536.906667pt;}
.y1f2{bottom:538.392000pt;}
.y13b{bottom:539.001333pt;}
.yf8{bottom:539.036000pt;}
.ya6{bottom:541.940000pt;}
.ybf{bottom:542.841333pt;}
.y1ca{bottom:545.913333pt;}
.y3b{bottom:546.726667pt;}
.y290{bottom:546.802667pt;}
.y118{bottom:546.912000pt;}
.y213{bottom:547.286667pt;}
.y233{bottom:547.737333pt;}
.y10{bottom:548.889333pt;}
.y7a{bottom:549.721333pt;}
.y15b{bottom:555.324000pt;}
.y197{bottom:556.269333pt;}
.y183{bottom:557.170667pt;}
.y1f1{bottom:557.560000pt;}
.y13a{bottom:558.169333pt;}
.ya5{bottom:562.204000pt;}
.ybe{bottom:563.105333pt;}
.y232{bottom:564.249333pt;}
.y117{bottom:566.080000pt;}
.y1c9{bottom:566.177333pt;}
.y266{bottom:566.394667pt;}
.y212{bottom:566.454667pt;}
.y3a{bottom:566.990667pt;}
.yf{bottom:568.402667pt;}
.y79{bottom:569.985333pt;}
.y139{bottom:574.681333pt;}
.y15a{bottom:575.588000pt;}
.y196{bottom:576.533333pt;}
.y1f0{bottom:576.728000pt;}
.yf7{bottom:577.393333pt;}
.y182{bottom:577.434667pt;}
.ya4{bottom:582.468000pt;}
.y116{bottom:582.592000pt;}
.ybd{bottom:583.369333pt;}
.y1c8{bottom:586.441333pt;}
.y265{bottom:586.658667pt;}
.y39{bottom:587.254667pt;}
.y1b4{bottom:587.330667pt;}
.ye{bottom:587.916000pt;}
.y231{bottom:590.058667pt;}
.y78{bottom:590.249333pt;}
.y138{bottom:591.193333pt;}
.y210{bottom:592.292000pt;}
.y159{bottom:595.852000pt;}
.y211{bottom:596.632000pt;}
.y181{bottom:599.022667pt;}
.y115{bottom:599.102667pt;}
.y1ef{bottom:602.565333pt;}
.y230{bottom:606.570667pt;}
.y1c7{bottom:606.705333pt;}
.y264{bottom:606.922667pt;}
.yd{bottom:607.430667pt;}
.y38{bottom:607.518667pt;}
.y137{bottom:610.361333pt;}
.y77{bottom:610.513333pt;}
.y158{bottom:616.117333pt;}
.y114{bottom:618.270667pt;}
.ya3{bottom:619.573333pt;}
.y1ee{bottom:621.733333pt;}
.y22f{bottom:623.081333pt;}
.y180{bottom:624.860000pt;}
.y136{bottom:626.872000pt;}
.yc{bottom:626.944000pt;}
.y1c6{bottom:626.969333pt;}
.y263{bottom:627.186667pt;}
.y20f{bottom:627.228000pt;}
.y37{bottom:627.782667pt;}
.y76{bottom:630.778667pt;}
.y113{bottom:634.782667pt;}
.y157{bottom:636.381333pt;}
.y22e{bottom:639.593333pt;}
.ya2{bottom:639.837333pt;}
.y1ed{bottom:640.901333pt;}
.y17f{bottom:641.372000pt;}
.y135{bottom:643.384000pt;}
.yb{bottom:646.457333pt;}
.y262{bottom:647.450667pt;}
.y20e{bottom:647.492000pt;}
.y36{bottom:648.046667pt;}
.y1c5{bottom:648.557333pt;}
.y75{bottom:651.042667pt;}
.y156{bottom:656.645333pt;}
.y17e{bottom:657.882667pt;}
.ya1{bottom:660.101333pt;}
.y112{bottom:660.620000pt;}
.y134{bottom:662.552000pt;}
.y22d{bottom:665.404000pt;}
.ya{bottom:665.970667pt;}
.y1ec{bottom:666.740000pt;}
.y261{bottom:667.714667pt;}
.y20d{bottom:667.756000pt;}
.y35{bottom:668.310667pt;}
.y74{bottom:671.306667pt;}
.y1c4{bottom:674.394667pt;}
.y155{bottom:676.909333pt;}
.y17d{bottom:677.050667pt;}
.y133{bottom:679.064000pt;}
.ya0{bottom:680.365333pt;}
.y22c{bottom:681.914667pt;}
.y9{bottom:685.484000pt;}
.y1eb{bottom:685.908000pt;}
.y260{bottom:687.077333pt;}
.y20c{bottom:688.020000pt;}
.y34{bottom:688.574667pt;}
.y1c3{bottom:690.905333pt;}
.y73{bottom:691.570667pt;}
.y291{bottom:691.905333pt;}
.y17c{bottom:693.562667pt;}
.y132{bottom:695.574667pt;}
.y154{bottom:697.173333pt;}
.y22b{bottom:698.426667pt;}
.y111{bottom:698.977333pt;}
.y9f{bottom:700.629333pt;}
.y8{bottom:704.997333pt;}
.y1ea{bottom:705.076000pt;}
.y1c2{bottom:707.417333pt;}
.y20b{bottom:708.284000pt;}
.y33{bottom:708.838667pt;}
.y17b{bottom:710.074667pt;}
.y22a{bottom:714.937333pt;}
.y153{bottom:717.437333pt;}
.y9e{bottom:720.893333pt;}
.y131{bottom:721.412000pt;}
.y7{bottom:724.512000pt;}
.y1c1{bottom:726.585333pt;}
.y72{bottom:728.201333pt;}
.y20a{bottom:728.548000pt;}
.y32{bottom:729.102667pt;}
.y56{bottom:729.180000pt;}
.y17a{bottom:729.242667pt;}
.y1e9{bottom:730.913333pt;}
.y152{bottom:737.701333pt;}
.y229{bottom:740.776000pt;}
.y9d{bottom:741.157333pt;}
.y1c0{bottom:743.097333pt;}
.y179{bottom:745.753333pt;}
.y71{bottom:748.465333pt;}
.y209{bottom:748.812000pt;}
.y31{bottom:749.366667pt;}
.y151{bottom:757.965333pt;}
.y130{bottom:759.770667pt;}
.y9c{bottom:761.422667pt;}
.y178{bottom:762.265333pt;}
.y70{bottom:768.729333pt;}
.y208{bottom:769.076000pt;}
.y1e8{bottom:769.270667pt;}
.y30{bottom:769.630667pt;}
.y150{bottom:778.229333pt;}
.y1bf{bottom:778.776000pt;}
.y228{bottom:779.133333pt;}
.y12f{bottom:780.034667pt;}
.y177{bottom:781.433333pt;}
.y6{bottom:782.948000pt;}
.y1e7{bottom:786.044000pt;}
.y6f{bottom:788.993333pt;}
.y207{bottom:789.340000pt;}
.y2f{bottom:789.894667pt;}
.y9b{bottom:790.984000pt;}
.y176{bottom:797.945333pt;}
.y1e6{bottom:809.142667pt;}
.y6e{bottom:809.258667pt;}
.y206{bottom:809.604000pt;}
.y2e{bottom:810.160000pt;}
.y292{bottom:810.236000pt;}
.y175{bottom:814.456000pt;}
.y5{bottom:819.730667pt;}
.y14f{bottom:822.737333pt;}
.y205{bottom:825.476000pt;}
.y1e5{bottom:828.310667pt;}
.y6d{bottom:829.522667pt;}
.y2d{bottom:830.424000pt;}
.y293{bottom:830.500000pt;}
.y174{bottom:833.624000pt;}
.y1e4{bottom:847.478667pt;}
.y14e{bottom:848.574667pt;}
.y6c{bottom:849.786667pt;}
.y173{bottom:850.136000pt;}
.y2c{bottom:850.688000pt;}
.y4{bottom:852.753333pt;}
.y172{bottom:866.648000pt;}
.y14d{bottom:867.744000pt;}
.y6b{bottom:870.050667pt;}
.y2b{bottom:870.952000pt;}
.y1be{bottom:875.973333pt;}
.y3{bottom:885.776000pt;}
.y14c{bottom:886.912000pt;}
.y6a{bottom:890.314667pt;}
.y2a{bottom:891.216000pt;}
.y171{bottom:892.485333pt;}
.y69{bottom:910.578667pt;}
.y29{bottom:911.480000pt;}
.y14b{bottom:912.749333pt;}
.y68{bottom:930.842667pt;}
.y28{bottom:931.744000pt;}
.y67{bottom:951.106667pt;}
.y27{bottom:952.008000pt;}
.y2{bottom:979.312000pt;}
.y26{bottom:986.900000pt;}
.y1{bottom:989.938667pt;}
.h13{height:25.589931pt;}
.h15{height:31.880000pt;}
.h1{height:31.880400pt;}
.h12{height:32.899243pt;}
.h7{height:32.900710pt;}
.h11{height:33.090517pt;}
.hd{height:33.091994pt;}
.h6{height:36.556100pt;}
.h5{height:36.768636pt;}
.hb{height:41.917344pt;}
.h9{height:42.039552pt;}
.h10{height:42.943863pt;}
.he{height:45.828000pt;}
.h4{height:47.523004pt;}
.h8{height:47.799300pt;}
.h3{height:47.869670pt;}
.hf{height:53.291042pt;}
.h2{height:63.169041pt;}
.hc{height:81.251067pt;}
.h14{height:82.258667pt;}
.ha{height:82.259067pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:111.354667pt;}
.xe{left:113.385333pt;}
.x48{left:114.532000pt;}
.x53{left:119.181333pt;}
.x5f{left:120.164000pt;}
.x3{left:121.610667pt;}
.x4c{left:123.284000pt;}
.x60{left:126.933333pt;}
.x4{left:127.922667pt;}
.x1e{left:134.286667pt;}
.xf{left:136.062667pt;}
.x4e{left:137.513333pt;}
.x12{left:141.065333pt;}
.x24{left:152.109333pt;}
.x58{left:153.933333pt;}
.x61{left:157.261333pt;}
.x8{left:158.261333pt;}
.x5c{left:160.453333pt;}
.xc{left:162.052000pt;}
.x20{left:163.826667pt;}
.x2a{left:164.845333pt;}
.x1d{left:166.997333pt;}
.x29{left:168.365333pt;}
.x21{left:169.769333pt;}
.x62{left:172.200000pt;}
.x22{left:173.160000pt;}
.x1f{left:179.641333pt;}
.x4d{left:183.468000pt;}
.x4b{left:185.458667pt;}
.x2d{left:189.850667pt;}
.x17{left:203.256000pt;}
.x13{left:210.098667pt;}
.xa{left:212.552000pt;}
.x50{left:215.144000pt;}
.x2b{left:224.780000pt;}
.xb{left:236.016000pt;}
.x4a{left:237.693333pt;}
.x30{left:245.920000pt;}
.x57{left:246.881333pt;}
.x27{left:248.108000pt;}
.x52{left:258.058667pt;}
.x26{left:261.724000pt;}
.x46{left:265.701333pt;}
.x18{left:267.793333pt;}
.x63{left:271.362667pt;}
.x5a{left:282.362667pt;}
.x59{left:283.260000pt;}
.x5e{left:286.742667pt;}
.x5{left:319.138667pt;}
.x49{left:321.648000pt;}
.x47{left:323.489333pt;}
.x44{left:327.320000pt;}
.x5d{left:330.748000pt;}
.x45{left:334.573333pt;}
.x6{left:338.728000pt;}
.x11{left:359.442667pt;}
.x9{left:364.560000pt;}
.x25{left:365.938667pt;}
.xd{left:384.740000pt;}
.x23{left:397.898667pt;}
.x14{left:402.290667pt;}
.x56{left:406.585333pt;}
.x2f{left:410.720000pt;}
.x10{left:412.752000pt;}
.x35{left:413.897333pt;}
.x54{left:420.865333pt;}
.x28{left:428.840000pt;}
.x16{left:435.429333pt;}
.x55{left:443.542667pt;}
.x7{left:449.522667pt;}
.x51{left:461.058667pt;}
.x2c{left:467.492000pt;}
.x31{left:470.145333pt;}
.x36{left:474.045333pt;}
.x40{left:479.904000pt;}
.x32{left:498.078667pt;}
.x2{left:510.021333pt;}
.x15{left:513.840000pt;}
.x3b{left:517.754667pt;}
.x4f{left:523.525333pt;}
.x41{left:525.701333pt;}
.x3c{left:526.893333pt;}
.x38{left:528.805333pt;}
.x37{left:536.077333pt;}
.x5b{left:541.912000pt;}
.x19{left:561.020000pt;}
.x1b{left:567.090667pt;}
.x1a{left:568.366667pt;}
.x3d{left:580.582667pt;}
.x3e{left:588.576000pt;}
.x33{left:590.014667pt;}
.x1c{left:612.045333pt;}
.x1{left:618.953333pt;}
.x42{left:632.126667pt;}
.x39{left:633.876000pt;}
.x3a{left:643.090667pt;}
.x3f{left:651.454667pt;}
.x43{left:694.750667pt;}
.x34{left:696.848000pt;}
}




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