
    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_53ce0a3c34c45574d324098f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8f50c64f1f17d86096139701.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9dd838015ba3fa5b65c246f6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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_137e18ca06e432470cf32488.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5c536166806c90c0eda0d851.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_22352ed400f2524b715bb8a1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8b22db6588ac9495d9d6eb4b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_3275cc27e16b044da3da21a1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a89897cdb3c31a16ac0866fe.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.850000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_613c01d7c08b559716b6049f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.580000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_464451cc13d11e19a0959144.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_cb86f8f5a0bc2c8635e5b2b3.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_f0c004159dd719d3284c1b6a.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_975ca6bc273dccee8008fd46.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_4c8c0840843361ac951a6deb.woff2')format("woff");}.fff{font-family:fff;line-height:0.846000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_4954f67266bdd7ce7642470d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.685000;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;}
.m0{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);}
.m1d{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);}
.m13{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);}
.m3{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);}
.m22{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);}
.md{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);}
.m4{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);}
.m1c{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);}
.m1b{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);}
.mc{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);}
.m8{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);}
.m17{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);}
.m12{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);}
.m18{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.mb{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);}
.m2{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);}
.m29{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);}
.m14{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);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.ma{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m19{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);}
.m23{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);}
.m11{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);}
.m9{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.m7{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);}
.m10{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);}
.m25{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);}
.m16{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);}
.m1a{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);}
.m1f{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);}
.m28{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);}
.m20{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);}
.mf{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);}
.m5{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);}
.me{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);}
.v1f{vertical-align:-66.384000px;}
.v1e{vertical-align:-35.310000px;}
.v1a{vertical-align:-24.690000px;}
.v2c{vertical-align:-21.702000px;}
.v2a{vertical-align:-18.798000px;}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.952000px;}
.va{vertical-align:-10.848000px;}
.v8{vertical-align:-8.964000px;}
.v17{vertical-align:-6.816000px;}
.v20{vertical-align:-4.602000px;}
.vd{vertical-align:-1.260000px;}
.v0{vertical-align:0.000000px;}
.v29{vertical-align:3.486000px;}
.v21{vertical-align:5.478000px;}
.v2d{vertical-align:7.926000px;}
.v9{vertical-align:8.964000px;}
.v2b{vertical-align:10.464000px;}
.v23{vertical-align:11.760000px;}
.vc{vertical-align:14.766000px;}
.v11{vertical-align:17.280000px;}
.v1c{vertical-align:18.678000px;}
.ve{vertical-align:20.442000px;}
.v1{vertical-align:21.702000px;}
.v18{vertical-align:23.550000px;}
.vb{vertical-align:24.684000px;}
.v24{vertical-align:28.584000px;}
.v5{vertical-align:29.616000px;}
.v16{vertical-align:31.092000px;}
.v14{vertical-align:33.762000px;}
.v28{vertical-align:36.462000px;}
.v27{vertical-align:38.580000px;}
.v4{vertical-align:40.464000px;}
.v13{vertical-align:41.784000px;}
.vf{vertical-align:44.838000px;}
.v19{vertical-align:46.014000px;}
.v26{vertical-align:49.434000px;}
.v25{vertical-align:52.230000px;}
.v15{vertical-align:55.248000px;}
.v10{vertical-align:62.166000px;}
.v1b{vertical-align:66.378000px;}
.v22{vertical-align:68.418000px;}
.v7{vertical-align:70.626000px;}
.v6{vertical-align:81.474000px;}
.v1d{vertical-align:83.838000px;}
.v12{vertical-align:122.538000px;}
.ls5{letter-spacing:0.000000px;}
.ls6c{letter-spacing:0.000110px;}
.ls11{letter-spacing:0.000145px;}
.ls98{letter-spacing:0.000382px;}
.ls90{letter-spacing:0.000583px;}
.ls97{letter-spacing:0.000743px;}
.ls6b{letter-spacing:0.001663px;}
.ls121{letter-spacing:0.003178px;}
.ls93{letter-spacing:0.003743px;}
.ls120{letter-spacing:0.004800px;}
.ls51{letter-spacing:0.200815px;}
.lsff{letter-spacing:0.428370px;}
.lsf9{letter-spacing:0.434370px;}
.ls73{letter-spacing:0.542815px;}
.ls69{letter-spacing:0.548815px;}
.ls9e{letter-spacing:0.564600px;}
.lsea{letter-spacing:0.564914px;}
.ls124{letter-spacing:0.603044px;}
.lsfd{letter-spacing:0.628407px;}
.ls10{letter-spacing:0.670741px;}
.ls125{letter-spacing:0.674362px;}
.ls100{letter-spacing:0.681662px;}
.ls7a{letter-spacing:0.714783px;}
.ls2c{letter-spacing:0.717483px;}
.ls106{letter-spacing:0.720783px;}
.ls55{letter-spacing:0.735962px;}
.lse7{letter-spacing:0.742200px;}
.lsd0{letter-spacing:0.742483px;}
.ls3b{letter-spacing:0.742825px;}
.ls12{letter-spacing:0.744914px;}
.ls24{letter-spacing:0.745331px;}
.lscf{letter-spacing:0.746700px;}
.ls6f{letter-spacing:0.748115px;}
.ls22{letter-spacing:0.748200px;}
.lsc0{letter-spacing:0.748483px;}
.lsb5{letter-spacing:0.748741px;}
.ls39{letter-spacing:0.748766px;}
.lsc5{letter-spacing:0.749675px;}
.ls101{letter-spacing:0.759886px;}
.lsfe{letter-spacing:0.765886px;}
.ls139{letter-spacing:0.777341px;}
.ls86{letter-spacing:0.856200px;}
.ls5d{letter-spacing:0.859897px;}
.ls88{letter-spacing:0.862200px;}
.ls142{letter-spacing:0.898445px;}
.ls5b{letter-spacing:0.994200px;}
.ls19{letter-spacing:0.994483px;}
.ls7b{letter-spacing:1.000200px;}
.ls17{letter-spacing:1.000483px;}
.ls10c{letter-spacing:1.015142px;}
.ls10a{letter-spacing:1.015200px;}
.lsf6{letter-spacing:1.078407px;}
.lsfb{letter-spacing:1.131662px;}
.ls50{letter-spacing:1.135142px;}
.ls48{letter-spacing:1.135200px;}
.lsf8{letter-spacing:1.147363px;}
.ls135{letter-spacing:1.191341px;}
.ls4a{letter-spacing:1.195200px;}
.ls12f{letter-spacing:1.198800px;}
.lsdc{letter-spacing:1.240741px;}
.ls7f{letter-spacing:1.284783px;}
.ls72{letter-spacing:1.304012px;}
.ls3d{letter-spacing:1.312200px;}
.lsda{letter-spacing:1.312483px;}
.ls10e{letter-spacing:1.312766px;}
.ls13{letter-spacing:1.315897px;}
.ls78{letter-spacing:1.318200px;}
.ls137{letter-spacing:1.401341px;}
.ls129{letter-spacing:1.402800px;}
.lsa3{letter-spacing:1.420741px;}
.lsef{letter-spacing:1.464783px;}
.ls16{letter-spacing:1.467483px;}
.lsad{letter-spacing:1.472576px;}
.ls130{letter-spacing:1.475510px;}
.lsaf{letter-spacing:1.478576px;}
.ls6e{letter-spacing:1.484012px;}
.lsac{letter-spacing:1.485962px;}
.ls112{letter-spacing:1.491986px;}
.ls1d{letter-spacing:1.492200px;}
.ls34{letter-spacing:1.492825px;}
.lsa5{letter-spacing:1.493108px;}
.ls116{letter-spacing:1.494017px;}
.lsf0{letter-spacing:1.494374px;}
.ls8e{letter-spacing:1.494644px;}
.lsa1{letter-spacing:1.495283px;}
.lse3{letter-spacing:1.495625px;}
.ls110{letter-spacing:1.496400px;}
.lsce{letter-spacing:1.496700px;}
.lsa4{letter-spacing:1.498200px;}
.lsd4{letter-spacing:1.498483px;}
.lsb4{letter-spacing:1.499108px;}
.ls1a{letter-spacing:1.537897px;}
.ls4c{letter-spacing:1.540200px;}
.ls49{letter-spacing:1.555142px;}
.lsa0{letter-spacing:1.641634px;}
.ls9c{letter-spacing:1.647634px;}
.lsbd{letter-spacing:1.714741px;}
.ls13b{letter-spacing:1.737341px;}
.lsd5{letter-spacing:1.772576px;}
.lsc1{letter-spacing:1.778576px;}
.lsbf{letter-spacing:1.791634px;}
.lsb7{letter-spacing:1.792200px;}
.ls60{letter-spacing:1.794337px;}
.ls13f{letter-spacing:1.822090px;}
.lsb0{letter-spacing:1.901108px;}
.lsa{letter-spacing:1.903897px;}
.ls4f{letter-spacing:1.933200px;}
.ls4b{letter-spacing:1.996766px;}
.ls65{letter-spacing:2.177108px;}
.ls62{letter-spacing:2.183108px;}
.ls74{letter-spacing:2.194741px;}
.ls117{letter-spacing:2.211634px;}
.lsaa{letter-spacing:2.241586px;}
.ls61{letter-spacing:2.258012px;}
.lsb{letter-spacing:2.269694px;}
.ls11a{letter-spacing:2.275694px;}
.lsd7{letter-spacing:2.735108px;}
.lsf7{letter-spacing:2.808470px;}
.ls103{letter-spacing:2.983200px;}
.ls11d{letter-spacing:2.988600px;}
.ls1{letter-spacing:2.989200px;}
.ls11f{letter-spacing:2.994305px;}
.ls145{letter-spacing:3.093802px;}
.ls38{letter-spacing:3.283625px;}
.ls146{letter-spacing:3.321802px;}
.ls5f{letter-spacing:3.438374px;}
.ls126{letter-spacing:3.496051px;}
.lsfa{letter-spacing:3.559200px;}
.ls148{letter-spacing:3.615802px;}
.ls8a{letter-spacing:3.684374px;}
.ls70{letter-spacing:3.690374px;}
.lse5{letter-spacing:3.733200px;}
.lse1{letter-spacing:3.739200px;}
.ls35{letter-spacing:3.811331px;}
.ls8c{letter-spacing:4.002374px;}
.ls10b{letter-spacing:4.002701px;}
.ls26{letter-spacing:4.009258px;}
.lsfc{letter-spacing:4.255363px;}
.ls58{letter-spacing:4.303142px;}
.lsbb{letter-spacing:4.303200px;}
.ls111{letter-spacing:4.303829px;}
.lsdb{letter-spacing:4.305886px;}
.lsf1{letter-spacing:4.413292px;}
.ls71{letter-spacing:4.620571px;}
.ls76{letter-spacing:4.759258px;}
.ls3a{letter-spacing:5.053200px;}
.lse2{letter-spacing:5.227200px;}
.lsdf{letter-spacing:7.150741px;}
.ls59{letter-spacing:7.905962px;}
.lsb3{letter-spacing:7.915200px;}
.lscd{letter-spacing:7.921200px;}
.ls0{letter-spacing:8.373300px;}
.lsb6{letter-spacing:8.666725px;}
.ls8b{letter-spacing:9.744337px;}
.ls43{letter-spacing:10.165200px;}
.lsde{letter-spacing:10.434571px;}
.lsec{letter-spacing:11.458115px;}
.ls66{letter-spacing:11.629258px;}
.ls8f{letter-spacing:11.706557px;}
.lsc8{letter-spacing:11.709483px;}
.lsca{letter-spacing:11.712783px;}
.lsc7{letter-spacing:11.740200px;}
.lsc9{letter-spacing:11.740766px;}
.ls4{letter-spacing:11.954850px;}
.ls7d{letter-spacing:12.339483px;}
.ls57{letter-spacing:12.345483px;}
.ls14e{letter-spacing:12.440400px;}
.ls151{letter-spacing:12.491216px;}
.ls6a{letter-spacing:12.949200px;}
.lsbc{letter-spacing:13.042741px;}
.lsd2{letter-spacing:13.065483px;}
.lsa9{letter-spacing:13.083483px;}
.lsc3{letter-spacing:13.086783px;}
.ls82{letter-spacing:13.089483px;}
.lsb8{letter-spacing:13.114200px;}
.lsae{letter-spacing:13.115108px;}
.lsbe{letter-spacing:13.120200px;}
.ls14f{letter-spacing:13.164686px;}
.ls150{letter-spacing:13.356282px;}
.ls85{letter-spacing:13.389483px;}
.lsd1{letter-spacing:13.395634px;}
.lsb9{letter-spacing:13.419634px;}
.ls14d{letter-spacing:13.448400px;}
.ls14c{letter-spacing:13.454400px;}
.ls40{letter-spacing:13.663258px;}
.lsf{letter-spacing:13.863483px;}
.ls64{letter-spacing:13.869483px;}
.ls11c{letter-spacing:13.927715px;}
.ls28{letter-spacing:14.122051px;}
.ls29{letter-spacing:14.122090px;}
.lsc4{letter-spacing:14.283483px;}
.lse4{letter-spacing:14.555108px;}
.lsc2{letter-spacing:14.613586px;}
.ls6{letter-spacing:14.764573px;}
.ls27{letter-spacing:14.943900px;}
.ls123{letter-spacing:15.063451px;}
.ls2e{letter-spacing:15.657483px;}
.ls31{letter-spacing:15.663483px;}
.ls30{letter-spacing:15.688200px;}
.lsf2{letter-spacing:15.925200px;}
.ls7e{letter-spacing:15.926153px;}
.lsa8{letter-spacing:15.931200px;}
.ls7c{letter-spacing:16.242571px;}
.ls75{letter-spacing:16.248571px;}
.lsba{letter-spacing:16.377483px;}
.ls81{letter-spacing:16.377886px;}
.lse{letter-spacing:16.381258px;}
.lsb1{letter-spacing:17.020514px;}
.ls7{letter-spacing:17.095822px;}
.ls3f{letter-spacing:17.319483px;}
.ls20{letter-spacing:17.325483px;}
.ls104{letter-spacing:17.469483px;}
.lsa6{letter-spacing:18.022741px;}
.ls15{letter-spacing:18.069483px;}
.ls1f{letter-spacing:18.094200px;}
.ls102{letter-spacing:18.184200px;}
.ls1c{letter-spacing:18.369483px;}
.lsd8{letter-spacing:18.843483px;}
.ls11b{letter-spacing:18.849483px;}
.lsb2{letter-spacing:19.515483px;}
.lsf3{letter-spacing:19.546200px;}
.lsed{letter-spacing:19.563483px;}
.lsab{letter-spacing:19.593586px;}
.ls8{letter-spacing:19.890583px;}
.ls108{letter-spacing:20.882815px;}
.ls52{letter-spacing:20.905142px;}
.ls10f{letter-spacing:20.905829px;}
.ls118{letter-spacing:20.906095px;}
.ls14{letter-spacing:20.906153px;}
.lsdd{letter-spacing:20.907886px;}
.ls1b{letter-spacing:20.911200px;}
.ls113{letter-spacing:20.948815px;}
.ls54{letter-spacing:21.228571px;}
.lsc6{letter-spacing:21.357483px;}
.ls5e{letter-spacing:21.357886px;}
.ls23{letter-spacing:21.361258px;}
.ls3e{letter-spacing:21.367258px;}
.ls114{letter-spacing:21.638767px;}
.ls80{letter-spacing:22.000514px;}
.ls56{letter-spacing:22.056571px;}
.ls53{letter-spacing:22.392571px;}
.ls6d{letter-spacing:22.509483px;}
.ls107{letter-spacing:22.747142px;}
.ls68{letter-spacing:22.836337px;}
.ls122{letter-spacing:23.192933px;}
.ls109{letter-spacing:25.065483px;}
.ls119{letter-spacing:25.239483px;}
.ls33{letter-spacing:25.245483px;}
.lsa2{letter-spacing:25.280725px;}
.ls9d{letter-spacing:26.019483px;}
.lsf4{letter-spacing:26.404200px;}
.lscb{letter-spacing:26.457634px;}
.lsc{letter-spacing:26.705108px;}
.ls37{letter-spacing:26.739483px;}
.ls42{letter-spacing:27.042571px;}
.ls79{letter-spacing:27.975483px;}
.ls63{letter-spacing:31.110571px;}
.ls4d{letter-spacing:32.215200px;}
.lscc{letter-spacing:32.547483px;}
.lsf5{letter-spacing:32.799483px;}
.ls9{letter-spacing:34.941483px;}
.ls47{letter-spacing:36.369483px;}
.lsa7{letter-spacing:44.288725px;}
.ls4e{letter-spacing:45.093483px;}
.lse9{letter-spacing:45.781625px;}
.lsd3{letter-spacing:46.106725px;}
.lse8{letter-spacing:48.025200px;}
.ls105{letter-spacing:49.123200px;}
.lsee{letter-spacing:57.076766px;}
.ls89{letter-spacing:61.245483px;}
.ls83{letter-spacing:62.019483px;}
.ls10d{letter-spacing:62.419200px;}
.ls2{letter-spacing:62.761200px;}
.ls3{letter-spacing:64.321654px;}
.ls45{letter-spacing:69.937200px;}
.ls91{letter-spacing:70.983183px;}
.ls96{letter-spacing:71.442644px;}
.ls95{letter-spacing:72.660644px;}
.ls94{letter-spacing:73.755644px;}
.ls115{letter-spacing:82.059483px;}
.ls84{letter-spacing:83.313483px;}
.ls92{letter-spacing:83.793183px;}
.lsd{letter-spacing:85.515483px;}
.ls9b{letter-spacing:87.887376px;}
.ls87{letter-spacing:90.897483px;}
.lseb{letter-spacing:114.171483px;}
.ls44{letter-spacing:124.333200px;}
.ls133{letter-spacing:133.113797px;}
.ls132{letter-spacing:140.347702px;}
.ls134{letter-spacing:147.423797px;}
.ls12d{letter-spacing:147.957797px;}
.ls13c{letter-spacing:176.472049px;}
.ls13e{letter-spacing:179.379797px;}
.ls12a{letter-spacing:179.460600px;}
.ls138{letter-spacing:181.452600px;}
.ls127{letter-spacing:182.370600px;}
.ls136{letter-spacing:185.553980px;}
.ls9a{letter-spacing:186.155088px;}
.ls149{letter-spacing:186.261797px;}
.ls13d{letter-spacing:186.613702px;}
.ls13a{letter-spacing:186.721151px;}
.ls140{letter-spacing:187.692845px;}
.ls143{letter-spacing:187.747702px;}
.ls147{letter-spacing:193.501702px;}
.ls131{letter-spacing:197.158090px;}
.ls14a{letter-spacing:197.319533px;}
.ls144{letter-spacing:198.181267px;}
.ls14b{letter-spacing:198.395501px;}
.ls141{letter-spacing:200.278445px;}
.ls12c{letter-spacing:200.602800px;}
.ls12e{letter-spacing:201.520800px;}
.ls128{letter-spacing:201.784800px;}
.ls12b{letter-spacing:207.756422px;}
.ls99{letter-spacing:218.636088px;}
.ls32{letter-spacing:281.161200px;}
.ls2f{letter-spacing:288.007200px;}
.ls2d{letter-spacing:336.007200px;}
.ls2b{letter-spacing:342.853200px;}
.ls2a{letter-spacing:392.083142px;}
.ls11e{letter-spacing:478.644583px;}
.ls46{letter-spacing:611.179200px;}
.lse6{letter-spacing:754.156741px;}
.lse0{letter-spacing:777.666571px;}
.ls5a{letter-spacing:803.677200px;}
.ls8d{letter-spacing:811.069258px;}
.ls67{letter-spacing:828.044012px;}
.ls77{letter-spacing:854.200741px;}
.ls18{letter-spacing:876.543292px;}
.lsd6{letter-spacing:878.752741px;}
.ls3c{letter-spacing:910.564200px;}
.ls9f{letter-spacing:919.921258px;}
.ls5c{letter-spacing:950.512766px;}
.ls25{letter-spacing:964.261258px;}
.ls41{letter-spacing:972.400766px;}
.lsd9{letter-spacing:987.429886px;}
.ls1e{letter-spacing:990.521108px;}
.ls21{letter-spacing:999.718200px;}
.ls36{letter-spacing:1027.726483px;}
.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;}
}
.ws6f{word-spacing:-62.286600px;}
.ws6d{word-spacing:-49.206414px;}
.ws32{word-spacing:-14.943900px;}
.wsa4{word-spacing:-13.449600px;}
.wsb{word-spacing:-11.955150px;}
.ws9{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws79{word-spacing:-5.200477px;}
.ws8b{word-spacing:-3.216833px;}
.ws54{word-spacing:-2.809453px;}
.ws7b{word-spacing:-2.689902px;}
.wsb2{word-spacing:-2.630126px;}
.wsa9{word-spacing:-2.573693px;}
.wsa6{word-spacing:-2.544412px;}
.wsa8{word-spacing:-2.542542px;}
.ws29{word-spacing:-2.271473px;}
.ws55{word-spacing:-2.211697px;}
.ws1{word-spacing:-2.092140px;}
.ws42{word-spacing:-2.032370px;}
.ws0{word-spacing:-1.966612px;}
.ws66{word-spacing:-1.912819px;}
.wsb9{word-spacing:-1.721549px;}
.ws65{word-spacing:-1.613941px;}
.ws2d{word-spacing:-1.434614px;}
.wsd6{word-spacing:-1.291162px;}
.ws74{word-spacing:-1.255288px;}
.wsd8{word-spacing:-1.237363px;}
.wsb3{word-spacing:-1.195512px;}
.wsaf{word-spacing:-1.075968px;}
.wscb{word-spacing:-1.022170px;}
.ws67{word-spacing:-1.016185px;}
.ws9b{word-spacing:-0.896634px;}
.ws17{word-spacing:-0.597756px;}
.wsb4{word-spacing:-0.537980px;}
.wsce{word-spacing:-0.430387px;}
.ws15{word-spacing:-0.418429px;}
.ws23{word-spacing:-0.358654px;}
.wsb6{word-spacing:-0.322790px;}
.ws6b{word-spacing:-0.298878px;}
.ws2f{word-spacing:-0.239102px;}
.wsae{word-spacing:-0.215194px;}
.ws10{word-spacing:-0.179327px;}
.wsc6{word-spacing:-0.161395px;}
.ws12{word-spacing:-0.119551px;}
.wsd4{word-spacing:-0.107597px;}
.ws14{word-spacing:-0.059776px;}
.ws5d{word-spacing:-0.053798px;}
.ws22{word-spacing:-0.047821px;}
.ws36{word-spacing:-0.045430px;}
.ws5{word-spacing:-0.041843px;}
.ws45{word-spacing:-0.035866px;}
.ws5b{word-spacing:-0.023910px;}
.ws8{word-spacing:0.000000px;}
.ws77{word-spacing:0.053798px;}
.ws2a{word-spacing:0.059776px;}
.wsd0{word-spacing:0.107597px;}
.wsd{word-spacing:0.119551px;}
.ws20{word-spacing:0.179327px;}
.wsc7{word-spacing:0.215194px;}
.ws11{word-spacing:0.239102px;}
.wsb7{word-spacing:0.268992px;}
.ws30{word-spacing:0.298878px;}
.wsba{word-spacing:0.322790px;}
.ws2b{word-spacing:0.358654px;}
.ws16{word-spacing:0.418429px;}
.ws6{word-spacing:0.422252px;}
.ws7{word-spacing:0.430387px;}
.ws81{word-spacing:0.478205px;}
.ws1a{word-spacing:0.537980px;}
.wsb5{word-spacing:0.597756px;}
.ws90{word-spacing:0.657532px;}
.ws3a{word-spacing:0.667709px;}
.ws39{word-spacing:0.672720px;}
.ws97{word-spacing:0.745424px;}
.ws71{word-spacing:0.746305px;}
.ws3d{word-spacing:0.748286px;}
.wsbc{word-spacing:0.753178px;}
.ws27{word-spacing:0.777083px;}
.ws9d{word-spacing:0.836858px;}
.ws41{word-spacing:0.896634px;}
.ws7c{word-spacing:1.075961px;}
.wsdb{word-spacing:1.129766px;}
.ws1d{word-spacing:1.135736px;}
.ws80{word-spacing:1.195512px;}
.ws37{word-spacing:1.255288px;}
.ws1c{word-spacing:1.374839px;}
.ws7f{word-spacing:1.494390px;}
.wsaa{word-spacing:1.554166px;}
.ws86{word-spacing:1.588009px;}
.ws62{word-spacing:1.613941px;}
.ws43{word-spacing:1.673717px;}
.ws38{word-spacing:1.733492px;}
.wsb8{word-spacing:1.829146px;}
.ws92{word-spacing:1.972595px;}
.ws47{word-spacing:2.032370px;}
.ws33{word-spacing:2.092146px;}
.ws24{word-spacing:2.151922px;}
.wsa5{word-spacing:2.331248px;}
.ws28{word-spacing:2.391024px;}
.ws40{word-spacing:2.404276px;}
.ws8d{word-spacing:2.408582px;}
.ws13{word-spacing:2.510575px;}
.ws3e{word-spacing:2.630126px;}
.ws4d{word-spacing:2.689902px;}
.ws99{word-spacing:2.869229px;}
.ws69{word-spacing:2.929004px;}
.ws9f{word-spacing:3.108331px;}
.wscc{word-spacing:3.174106px;}
.wscd{word-spacing:3.221626px;}
.wsbb{word-spacing:3.224822px;}
.ws93{word-spacing:3.347434px;}
.wsbd{word-spacing:3.389299px;}
.wse0{word-spacing:3.496896px;}
.ws18{word-spacing:3.583475px;}
.ws2c{word-spacing:3.646312px;}
.ws1f{word-spacing:3.765863px;}
.wsc{word-spacing:3.810721px;}
.ws25{word-spacing:3.885414px;}
.ws76{word-spacing:3.945190px;}
.ws75{word-spacing:4.004965px;}
.ws8c{word-spacing:4.064741px;}
.ws8a{word-spacing:4.124516px;}
.ws19{word-spacing:4.303872px;}
.wsf{word-spacing:4.423394px;}
.ws60{word-spacing:4.483170px;}
.wsa0{word-spacing:4.519066px;}
.ws1e{word-spacing:4.602721px;}
.ws61{word-spacing:4.722272px;}
.ws9e{word-spacing:4.841824px;}
.ws4b{word-spacing:4.961375px;}
.ws68{word-spacing:5.080926px;}
.ws91{word-spacing:5.140702px;}
.wsad{word-spacing:5.200477px;}
.ws95{word-spacing:5.260253px;}
.ws5f{word-spacing:5.499355px;}
.wse{word-spacing:5.678682px;}
.ws1b{word-spacing:5.798233px;}
.wsda{word-spacing:5.914976px;}
.ws26{word-spacing:5.977560px;}
.wsb0{word-spacing:6.240614px;}
.ws96{word-spacing:6.395989px;}
.ws2e{word-spacing:6.455765px;}
.ws94{word-spacing:6.694867px;}
.ws7e{word-spacing:6.814418px;}
.ws7d{word-spacing:6.874194px;}
.ws5e{word-spacing:6.993745px;}
.ws9a{word-spacing:7.113296px;}
.ws56{word-spacing:7.292623px;}
.ws57{word-spacing:7.352399px;}
.ws31{word-spacing:7.651277px;}
.wsac{word-spacing:8.249033px;}
.wsab{word-spacing:8.308808px;}
.ws3{word-spacing:8.329685px;}
.ws63{word-spacing:8.979982px;}
.wsdf{word-spacing:9.138835px;}
.ws64{word-spacing:9.982525px;}
.ws83{word-spacing:10.679520px;}
.ws58{word-spacing:11.656320px;}
.ws21{word-spacing:11.905030px;}
.wsd7{word-spacing:12.104640px;}
.wscf{word-spacing:12.965414px;}
.wsdc{word-spacing:13.180608px;}
.wsd5{word-spacing:13.284021px;}
.wsd2{word-spacing:13.342003px;}
.wsd3{word-spacing:13.392374px;}
.wsc8{word-spacing:13.395802px;}
.ws48{word-spacing:13.421765px;}
.wsd1{word-spacing:13.503398px;}
.wsc5{word-spacing:13.664794px;}
.ws44{word-spacing:13.717487px;}
.ws7a{word-spacing:14.346144px;}
.ws6c{word-spacing:14.858400px;}
.ws87{word-spacing:14.884124px;}
.ws6a{word-spacing:14.905539px;}
.wsca{word-spacing:15.601536px;}
.ws53{word-spacing:15.875621px;}
.ws82{word-spacing:15.880740px;}
.ws35{word-spacing:15.881621px;}
.wsde{word-spacing:16.622669px;}
.wsd9{word-spacing:16.623350px;}
.wsc9{word-spacing:16.623706px;}
.wsdd{word-spacing:16.785101px;}
.ws78{word-spacing:17.938541px;}
.ws72{word-spacing:17.948604px;}
.ws85{word-spacing:18.514740px;}
.ws88{word-spacing:20.488672px;}
.ws98{word-spacing:20.858575px;}
.ws49{word-spacing:20.861136px;}
.ws2{word-spacing:22.179541px;}
.wsb1{word-spacing:22.380134px;}
.ws34{word-spacing:29.424049px;}
.ws4a{word-spacing:30.761136px;}
.wsa{word-spacing:46.059600px;}
.ws5a{word-spacing:63.713764px;}
.ws4f{word-spacing:64.031621px;}
.ws4e{word-spacing:64.035223px;}
.ws51{word-spacing:64.350998px;}
.ws52{word-spacing:64.485410px;}
.ws59{word-spacing:80.765554px;}
.ws5c{word-spacing:80.857476px;}
.wsc2{word-spacing:147.662954px;}
.wsc1{word-spacing:155.022388px;}
.wsbf{word-spacing:156.081479px;}
.wsc3{word-spacing:156.362484px;}
.wsc4{word-spacing:160.924946px;}
.wsbe{word-spacing:165.174048px;}
.wsc0{word-spacing:167.436048px;}
.ws73{word-spacing:203.356591px;}
.wsa1{word-spacing:219.404408px;}
.ws8e{word-spacing:310.235364px;}
.ws3c{word-spacing:337.791916px;}
.ws8f{word-spacing:399.838988px;}
.ws3b{word-spacing:423.091697px;}
.wsa2{word-spacing:440.067967px;}
.ws9c{word-spacing:486.334282px;}
.wsa3{word-spacing:578.986462px;}
.ws70{word-spacing:615.927782px;}
.wsa7{word-spacing:734.522573px;}
.ws46{word-spacing:775.308000px;}
.ws89{word-spacing:785.750262px;}
.ws50{word-spacing:789.657410px;}
.ws6e{word-spacing:823.349114px;}
.ws84{word-spacing:857.301655px;}
.ws4c{word-spacing:917.855136px;}
.ws3f{word-spacing:934.292628px;}
._42{margin-left:-20.673793px;}
._4{margin-left:-12.158438px;}
._7{margin-left:-6.635092px;}
._3{margin-left:-5.397721px;}
._14{margin-left:-4.244068px;}
._1{margin-left:-3.054524px;}
._2{margin-left:-1.548184px;}
._1b{width:1.475669px;}
._5{width:2.758926px;}
._2b{width:3.794165px;}
._1a{width:5.266235px;}
._24{width:6.471790px;}
._1c{width:7.917790px;}
._29{width:9.982525px;}
._0{width:11.088342px;}
._43{width:12.669367px;}
._8{width:13.963615px;}
._19{width:15.780758px;}
._28{width:16.864193px;}
._c{width:17.986474px;}
._d{width:19.128192px;}
._b{width:20.503031px;}
._15{width:21.578992px;}
._10{width:22.947848px;}
._18{width:24.567772px;}
._e{width:26.659918px;}
._27{width:28.028774px;}
._31{width:29.104735px;}
._11{width:30.306229px;}
._a{width:31.979946px;}
._25{width:33.892765px;}
._9{width:35.500724px;}
._f{width:36.582667px;}
._16{width:37.891748px;}
._2a{width:39.983894px;}
._26{width:41.006062px;}
._17{width:42.554245px;}
._6{width:54.423634px;}
._44{width:61.868160px;}
._3e{width:72.376736px;}
._41{width:88.767360px;}
._3d{width:100.872000px;}
._3f{width:152.195674px;}
._40{width:175.597978px;}
._20{width:181.963219px;}
._1f{width:188.059219px;}
._30{width:243.730722px;}
._21{width:252.904582px;}
._2e{width:340.063388px;}
._2d{width:351.360977px;}
._23{width:352.676040px;}
._2f{width:355.007288px;}
._2c{width:358.354722px;}
._3a{width:366.125550px;}
._36{width:371.284169px;}
._3b{width:388.003420px;}
._22{width:390.753097px;}
._35{width:412.230455px;}
._1e{width:494.206873px;}
._33{width:498.767606px;}
._1d{width:500.308873px;}
._3c{width:505.044044px;}
._39{width:634.513882px;}
._38{width:655.246954px;}
._34{width:672.236398px;}
._37{width:838.352790px;}
._12{width:1891.283929px;}
._32{width:2514.959929px;}
._13{width:2538.869929px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:23.910300px;}
.fs4{font-size:35.865600px;}
.fsb{font-size:37.371600px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fs9{font-size:47.337600px;}
.fs5{font-size:47.820600px;}
.fs8{font-size:53.798400px;}
.fsc{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fs7{font-size:62.286600px;}
.fs6{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.yfd{bottom:45.220500px;}
.y3f{bottom:45.921000px;}
.yf8{bottom:61.167750px;}
.yfc{bottom:71.870250px;}
.yf9{bottom:72.692250px;}
.yf6{bottom:72.741750px;}
.ye9{bottom:73.124250px;}
.yfb{bottom:80.516250px;}
.yf7{bottom:84.216750px;}
.ye3{bottom:88.899750px;}
.y1a2{bottom:99.720000px;}
.y14{bottom:100.260000px;}
.y15d{bottom:102.150000px;}
.yf0{bottom:104.631750px;}
.ye2{bottom:106.146750px;}
.yfa{bottom:106.665000px;}
.y8e{bottom:108.111000px;}
.y3e{bottom:112.659000px;}
.y1cd{bottom:116.380500px;}
.y13{bottom:118.147500px;}
.y8d{bottom:118.363500px;}
.y1f3{bottom:119.218500px;}
.y15c{bottom:123.042000px;}
.y225{bottom:123.253500px;}
.yf5{bottom:125.350500px;}
.y13d{bottom:131.187000px;}
.y1a1{bottom:132.483000px;}
.y3d{bottom:133.549500px;}
.y12{bottom:136.035000px;}
.ye8{bottom:136.272750px;}
.ye1{bottom:136.854000px;}
.y1cc{bottom:137.272500px;}
.yef{bottom:137.655000px;}
.y8c{bottom:139.254000px;}
.y224{bottom:142.404000px;}
.y223{bottom:142.405500px;}
.y1a0{bottom:142.735500px;}
.y15b{bottom:143.932500px;}
.y1f2{bottom:147.684000px;}
.y13c{bottom:152.077500px;}
.y11{bottom:153.924000px;}
.y3c{bottom:154.441500px;}
.y105{bottom:156.860250px;}
.yf2{bottom:157.240500px;}
.y1cb{bottom:158.164500px;}
.y185{bottom:160.404000px;}
.y222{bottom:161.556000px;}
.y1ce{bottom:164.577000px;}
.y15a{bottom:164.824500px;}
.y70{bottom:166.828500px;}
.y13b{bottom:167.814000px;}
.yed{bottom:168.162000px;}
.ye7{bottom:168.212250px;}
.ye0{bottom:168.743250px;}
.y8b{bottom:170.592000px;}
.y10{bottom:171.811500px;}
.y13a{bottom:172.969500px;}
.y3b{bottom:175.333500px;}
.y1f1{bottom:176.148000px;}
.y6e{bottom:177.079500px;}
.y112{bottom:177.276000px;}
.y1ca{bottom:179.055000px;}
.yc8{bottom:179.436000px;}
.yf1{bottom:179.482500px;}
.y221{bottom:180.706500px;}
.y184{bottom:181.294500px;}
.yee{bottom:182.235000px;}
.y159{bottom:185.716500px;}
.y19f{bottom:186.498000px;}
.y6f{bottom:187.197000px;}
.y104{bottom:189.621750px;}
.yf{bottom:189.699000px;}
.y8a{bottom:191.484000px;}
.y139{bottom:193.861500px;}
.y1f0{bottom:195.648000px;}
.y3a{bottom:196.224000px;}
.y111{bottom:198.166500px;}
.y220{bottom:199.857000px;}
.y1c9{bottom:199.947000px;}
.y251{bottom:199.972500px;}
.ye6{bottom:200.101500px;}
.yc7{bottom:200.326500px;}
.ydf{bottom:200.682750px;}
.y6d{bottom:202.021500px;}
.yf3{bottom:202.131750px;}
.y183{bottom:202.186500px;}
.y1ba{bottom:206.266500px;}
.y158{bottom:206.607000px;}
.y19e{bottom:207.390000px;}
.ye{bottom:207.588000px;}
.y89{bottom:212.374500px;}
.yec{bottom:214.124250px;}
.y1ef{bottom:215.146500px;}
.y103{bottom:215.222250px;}
.y1d1{bottom:215.223000px;}
.y39{bottom:217.116000px;}
.y21f{bottom:219.007500px;}
.y110{bottom:219.058500px;}
.y250{bottom:219.123000px;}
.ydb{bottom:220.639500px;}
.y1c8{bottom:220.839000px;}
.yc6{bottom:221.218500px;}
.y6c{bottom:222.912000px;}
.y182{bottom:223.078500px;}
.y138{bottom:223.822500px;}
.yd{bottom:225.475500px;}
.y102{bottom:226.056750px;}
.y1b9{bottom:227.157000px;}
.y157{bottom:227.499000px;}
.y19d{bottom:228.280500px;}
.yde{bottom:231.269250px;}
.ye5{bottom:231.991500px;}
.y1d0{bottom:234.456000px;}
.y1ee{bottom:234.645000px;}
.y38{bottom:238.008000px;}
.y21e{bottom:238.158000px;}
.y24f{bottom:238.275000px;}
.y181{bottom:238.813500px;}
.y10f{bottom:239.950500px;}
.y1c7{bottom:241.729500px;}
.y6b{bottom:243.804000px;}
.y180{bottom:243.969000px;}
.y137{bottom:244.191000px;}
.yeb{bottom:246.014250px;}
.y101{bottom:247.112250px;}
.y1b8{bottom:248.049000px;}
.y156{bottom:248.391000px;}
.y19c{bottom:249.172500px;}
.yc{bottom:252.330000px;}
.y1ed{bottom:254.143500px;}
.y100{bottom:257.946750px;}
.y37{bottom:258.900000px;}
.yc5{bottom:259.519500px;}
.y88{bottom:260.347500px;}
.y10e{bottom:260.841000px;}
.y21d{bottom:261.792000px;}
.y1c6{bottom:262.621500px;}
.ye4{bottom:263.881500px;}
.ydd{bottom:264.030750px;}
.y6a{bottom:264.696000px;}
.y17e{bottom:264.861000px;}
.y155{bottom:269.281500px;}
.yb{bottom:270.217500px;}
.y17f{bottom:270.285000px;}
.y1ec{bottom:273.642000px;}
.yf4{bottom:273.789000px;}
.yea{bottom:277.904250px;}
.y24e{bottom:278.316000px;}
.y136{bottom:278.524500px;}
.y87{bottom:278.595000px;}
.yff{bottom:279.001500px;}
.y36{bottom:279.790500px;}
.y10d{bottom:281.733000px;}
.y19b{bottom:281.937000px;}
.y135{bottom:283.680000px;}
.ydc{bottom:285.141000px;}
.y69{bottom:285.586500px;}
.y17d{bottom:285.753000px;}
.ya{bottom:288.105000px;}
.yfe{bottom:289.836000px;}
.y154{bottom:290.173500px;}
.y19a{bottom:292.188000px;}
.y1eb{bottom:293.140500px;}
.y1b7{bottom:296.022000px;}
.y86{bottom:297.156000px;}
.y24d{bottom:297.466500px;}
.yc4{bottom:297.820500px;}
.y35{bottom:300.682500px;}
.yda{bottom:301.133250px;}
.y21c{bottom:301.692000px;}
.y10c{bottom:302.625000px;}
.y9{bottom:305.994000px;}
.y17c{bottom:306.643500px;}
.y1c5{bottom:310.594500px;}
.y153{bottom:311.065500px;}
.y68{bottom:311.386500px;}
.yd9{bottom:311.967750px;}
.y1b6{bottom:313.954500px;}
.y85{bottom:315.717000px;}
.y24c{bottom:316.617000px;}
.yc3{bottom:318.712500px;}
.y134{bottom:319.905000px;}
.y21b{bottom:321.190500px;}
.y34{bottom:321.574500px;}
.y67{bottom:321.639000px;}
.y10b{bottom:323.517000px;}
.y8{bottom:323.881500px;}
.y1c4{bottom:328.527000px;}
.y1ea{bottom:330.573000px;}
.y152{bottom:331.956000px;}
.y1b5{bottom:334.180500px;}
.y84{bottom:334.279500px;}
.y199{bottom:335.757000px;}
.y24b{bottom:335.767500px;}
.yc2{bottom:339.604500px;}
.y133{bottom:340.273500px;}
.y21a{bottom:340.690500px;}
.y7{bottom:341.769000px;}
.y33{bottom:342.465000px;}
.y1b4{bottom:343.146000px;}
.y10a{bottom:344.407500px;}
.y66{bottom:344.689500px;}
.y1c3{bottom:346.459500px;}
.y1e9{bottom:351.463500px;}
.y151{bottom:352.848000px;}
.y17b{bottom:354.616500px;}
.y24a{bottom:354.918000px;}
.y6{bottom:359.658000px;}
.y83{bottom:360.027000px;}
.y219{bottom:360.189000px;}
.yc1{bottom:360.495000px;}
.y65{bottom:365.581500px;}
.y1c2{bottom:366.685500px;}
.y32{bottom:367.840500px;}
.y198{bottom:369.532500px;}
.y1e8{bottom:372.355500px;}
.y17a{bottom:372.549000px;}
.y150{bottom:373.740000px;}
.y249{bottom:374.070000px;}
.y132{bottom:374.271000px;}
.y1c1{bottom:375.651000px;}
.y218{bottom:379.687500px;}
.y109{bottom:380.035500px;}
.yc0{bottom:381.387000px;}
.y5{bottom:383.523000px;}
.y1b3{bottom:384.778500px;}
.y64{bottom:386.472000px;}
.y179{bottom:391.110000px;}
.y82{bottom:392.692500px;}
.y248{bottom:393.220500px;}
.y1e7{bottom:393.247500px;}
.y14f{bottom:394.632000px;}
.y217{bottom:399.186000px;}
.y108{bottom:399.268500px;}
.y4{bottom:401.410500px;}
.ybf{bottom:402.279000px;}
.y1b2{bottom:404.011500px;}
.y131{bottom:404.128500px;}
.y63{bottom:411.847500px;}
.y247{bottom:412.371000px;}
.y1e6{bottom:414.138000px;}
.y14e{bottom:415.522500px;}
.y178{bottom:416.544000px;}
.y1c0{bottom:417.283500px;}
.y107{bottom:418.501500px;}
.y216{bottom:418.684500px;}
.ybe{bottom:418.860000px;}
.y3{bottom:419.299500px;}
.ybc{bottom:423.169500px;}
.y130{bottom:424.497000px;}
.ybd{bottom:428.595000px;}
.y81{bottom:431.353500px;}
.y246{bottom:431.521500px;}
.y1e5{bottom:435.030000px;}
.y14d{bottom:436.414500px;}
.y2{bottom:437.187000px;}
.y106{bottom:437.734500px;}
.y215{bottom:438.183000px;}
.y1b1{bottom:441.115500px;}
.y31{bottom:447.052500px;}
.y177{bottom:449.211000px;}
.y1bf{bottom:450.495000px;}
.y62{bottom:450.672000px;}
.y1e4{bottom:455.922000px;}
.y14c{bottom:457.306500px;}
.y214{bottom:457.681500px;}
.y12f{bottom:458.494500px;}
.y1{bottom:461.052000px;}
.y1b0{bottom:462.007500px;}
.yd8{bottom:463.152000px;}
.yba{bottom:468.133500px;}
.ybb{bottom:468.810000px;}
.y245{bottom:469.822500px;}
.y1be{bottom:471.387000px;}
.y61{bottom:471.562500px;}
.yb9{bottom:472.501500px;}
.y1e3{bottom:476.814000px;}
.y213{bottom:477.181500px;}
.y14a{bottom:478.197000px;}
.y12e{bottom:479.386500px;}
.y1af{bottom:482.898000px;}
.y14b{bottom:483.622500px;}
.y30{bottom:485.875500px;}
.y176{bottom:486.315000px;}
.y244{bottom:488.973000px;}
.y60{bottom:492.454500px;}
.y212{bottom:496.680000px;}
.y1e2{bottom:497.704500px;}
.y12d{bottom:500.277000px;}
.y1ae{bottom:503.790000px;}
.y2f{bottom:506.767500px;}
.y1bd{bottom:507.015000px;}
.y175{bottom:507.205500px;}
.y243{bottom:508.123500px;}
.yb8{bottom:512.797500px;}
.y5f{bottom:513.346500px;}
.y211{bottom:516.178500px;}
.y149{bottom:516.498000px;}
.y1e1{bottom:518.596500px;}
.y12c{bottom:521.169000px;}
.y174{bottom:522.936000px;}
.y1ad{bottom:524.682000px;}
.y242{bottom:527.274000px;}
.y2e{bottom:527.659500px;}
.y173{bottom:528.097500px;}
.y5e{bottom:534.237000px;}
.y1bc{bottom:535.213500px;}
.yb7{bottom:535.617000px;}
.y210{bottom:535.677000px;}
.y1e0{bottom:539.488500px;}
.y12b{bottom:542.061000px;}
.y1ac{bottom:545.574000px;}
.yb5{bottom:545.868000px;}
.y241{bottom:546.424500px;}
.y2d{bottom:548.551500px;}
.y172{bottom:548.989500px;}
.y197{bottom:549.525000px;}
.y148{bottom:554.799000px;}
.y5d{bottom:555.129000px;}
.y20f{bottom:555.175500px;}
.yb6{bottom:555.985500px;}
.y1df{bottom:560.379000px;}
.y12a{bottom:562.951500px;}
.y240{bottom:565.575000px;}
.y1ab{bottom:566.464500px;}
.yb4{bottom:566.760000px;}
.y2c{bottom:569.442000px;}
.y171{bottom:569.880000px;}
.y20e{bottom:574.674000px;}
.y147{bottom:575.691000px;}
.y5c{bottom:576.021000px;}
.y1de{bottom:581.271000px;}
.y129{bottom:583.843500px;}
.y23f{bottom:584.725500px;}
.y1aa{bottom:587.356500px;}
.y2b{bottom:590.334000px;}
.y170{bottom:590.772000px;}
.yb1{bottom:593.428500px;}
.y20d{bottom:594.172500px;}
.yb2{bottom:594.406500px;}
.y5b{bottom:596.913000px;}
.yb0{bottom:598.098000px;}
.y1dd{bottom:602.163000px;}
.y23e{bottom:603.876000px;}
.y128{bottom:604.735500px;}
.yb3{bottom:606.925500px;}
.y2a{bottom:611.226000px;}
.y16f{bottom:611.664000px;}
.y20c{bottom:613.672500px;}
.y146{bottom:613.992000px;}
.y5a{bottom:617.803500px;}
.y23d{bottom:623.026500px;}
.y1dc{bottom:623.053500px;}
.y127{bottom:625.626000px;}
.y16e{bottom:626.632500px;}
.yaf{bottom:627.333000px;}
.y29{bottom:632.116500px;}
.y16d{bottom:632.554500px;}
.y20b{bottom:633.171000px;}
.y1a9{bottom:636.823500px;}
.y59{bottom:638.695500px;}
.y23c{bottom:642.177000px;}
.y1db{bottom:643.945500px;}
.y126{bottom:646.518000px;}
.yae{bottom:648.225000px;}
.y145{bottom:652.293000px;}
.y20a{bottom:652.669500px;}
.y28{bottom:653.008500px;}
.y1a8{bottom:654.756000px;}
.y1cf{bottom:654.877500px;}
.y58{bottom:659.587500px;}
.y23b{bottom:661.327500px;}
.y16c{bottom:662.419500px;}
.y1da{bottom:664.837500px;}
.y125{bottom:667.410000px;}
.y209{bottom:672.168000px;}
.y16b{bottom:672.670500px;}
.y1a7{bottom:672.688500px;}
.y27{bottom:673.900500px;}
.y57{bottom:680.478000px;}
.yad{bottom:681.195000px;}
.y1d9{bottom:685.728000px;}
.yaa{bottom:686.526000px;}
.y124{bottom:688.300500px;}
.y144{bottom:690.594000px;}
.y1a6{bottom:690.621000px;}
.y208{bottom:691.666500px;}
.yac{bottom:691.810500px;}
.y26{bottom:694.791000px;}
.y23a{bottom:699.628500px;}
.y16a{bottom:700.182000px;}
.yab{bottom:700.251000px;}
.y56{bottom:701.370000px;}
.y1d8{bottom:706.620000px;}
.y1a5{bottom:708.553500px;}
.y123{bottom:709.192500px;}
.y207{bottom:711.165000px;}
.y25{bottom:715.683000px;}
.y239{bottom:718.779000px;}
.y169{bottom:721.074000px;}
.y55{bottom:722.262000px;}
.y80{bottom:727.350000px;}
.y1d7{bottom:727.512000px;}
.y143{bottom:728.896500px;}
.ya9{bottom:729.627000px;}
.y122{bottom:730.084500px;}
.y206{bottom:730.663500px;}
.y1a4{bottom:733.987500px;}
.y24{bottom:736.575000px;}
.y238{bottom:737.929500px;}
.y168{bottom:741.966000px;}
.y54{bottom:743.152500px;}
.y7f{bottom:748.242000px;}
.y1d6{bottom:748.404000px;}
.y205{bottom:750.163500px;}
.ya8{bottom:750.519000px;}
.y121{bottom:750.976500px;}
.y237{bottom:757.081500px;}
.y23{bottom:757.465500px;}
.y142{bottom:758.754000px;}
.y167{bottom:762.856500px;}
.y53{bottom:764.044500px;}
.ya7{bottom:766.248000px;}
.ya6{bottom:766.255500px;}
.y1a3{bottom:766.653000px;}
.y204{bottom:769.662000px;}
.ya5{bottom:771.411000px;}
.y120{bottom:771.867000px;}
.y1d5{bottom:773.778000px;}
.y236{bottom:776.232000px;}
.y22{bottom:778.357500px;}
.y141{bottom:779.122500px;}
.y196{bottom:780.453000px;}
.y7e{bottom:782.851500px;}
.y166{bottom:783.748500px;}
.y52{bottom:784.936500px;}
.y7d{bottom:786.543000px;}
.y203{bottom:789.160500px;}
.y11f{bottom:792.759000px;}
.y235{bottom:795.382500px;}
.y195{bottom:801.345000px;}
.y165{bottom:804.640500px;}
.y51{bottom:805.827000px;}
.y1d4{bottom:808.164000px;}
.yd7{bottom:808.438500px;}
.y202{bottom:808.659000px;}
.ya3{bottom:808.743000px;}
.ya4{bottom:810.748500px;}
.ya0{bottom:812.841000px;}
.y140{bottom:813.120000px;}
.y11e{bottom:813.651000px;}
.y234{bottom:814.533000px;}
.y21{bottom:818.377500px;}
.y194{bottom:822.235500px;}
.y9e{bottom:822.555000px;}
.y7c{bottom:824.844000px;}
.y50{bottom:826.719000px;}
.y1d3{bottom:827.397000px;}
.y201{bottom:828.157500px;}
.yd6{bottom:829.329000px;}
.y164{bottom:830.014500px;}
.y233{bottom:833.683500px;}
.ya1{bottom:833.812500px;}
.y11d{bottom:834.541500px;}
.ya2{bottom:835.818000px;}
.y20{bottom:838.857000px;}
.y9f{bottom:839.740500px;}
.y193{bottom:843.127500px;}
.y7b{bottom:845.734500px;}
.y1d2{bottom:846.628500px;}
.y4f{bottom:847.611000px;}
.y200{bottom:847.656000px;}
.y13f{bottom:848.748000px;}
.yd5{bottom:850.221000px;}
.y1f{bottom:850.656000px;}
.y232{bottom:852.834000px;}
.y1bb{bottom:853.240500px;}
.y11c{bottom:855.433500px;}
.y192{bottom:864.019500px;}
.y163{bottom:865.357500px;}
.y7a{bottom:866.626500px;}
.y1ff{bottom:867.154500px;}
.y13e{bottom:867.979500px;}
.y4e{bottom:868.503000px;}
.yd4{bottom:871.113000px;}
.y1e{bottom:871.135500px;}
.y231{bottom:871.984500px;}
.y9d{bottom:875.575500px;}
.y11b{bottom:876.325500px;}
.y1d{bottom:882.936000px;}
.y191{bottom:884.910000px;}
.y162{bottom:886.248000px;}
.y1fe{bottom:886.654500px;}
.y79{bottom:887.518500px;}
.y4d{bottom:889.393500px;}
.y230{bottom:891.135000px;}
.y9c{bottom:896.467500px;}
.y11a{bottom:897.216000px;}
.yd3{bottom:903.177000px;}
.y1c{bottom:903.415500px;}
.y190{bottom:905.802000px;}
.y1fd{bottom:906.153000px;}
.y161{bottom:907.140000px;}
.y78{bottom:908.410500px;}
.y4c{bottom:910.285500px;}
.yd1{bottom:913.429500px;}
.y1b{bottom:915.214500px;}
.y9b{bottom:917.359500px;}
.yd2{bottom:919.855500px;}
.y119{bottom:922.591500px;}
.y1fc{bottom:925.651500px;}
.y18f{bottom:926.694000px;}
.y160{bottom:928.032000px;}
.y77{bottom:929.301000px;}
.y22f{bottom:929.436000px;}
.y4b{bottom:931.177500px;}
.y1a{bottom:935.694000px;}
.y9a{bottom:938.250000px;}
.y1fb{bottom:945.150000px;}
.yd0{bottom:945.924000px;}
.y18e{bottom:947.584500px;}
.y22e{bottom:948.586500px;}
.y4a{bottom:952.068000px;}
.y76{bottom:952.263000px;}
.yce{bottom:956.175000px;}
.y99{bottom:959.142000px;}
.y118{bottom:959.691000px;}
.y15f{bottom:960.795000px;}
.ycf{bottom:962.112000px;}
.y75{bottom:962.514000px;}
.y1fa{bottom:964.648500px;}
.y22d{bottom:967.737000px;}
.y18d{bottom:968.476500px;}
.y117{bottom:969.942000px;}
.y15e{bottom:971.047500px;}
.y49{bottom:972.960000px;}
.y19{bottom:980.370000px;}
.y98{bottom:981.961500px;}
.y74{bottom:983.406000px;}
.y1f9{bottom:984.147000px;}
.y22c{bottom:986.887500px;}
.y18c{bottom:989.368500px;}
.y97{bottom:992.212500px;}
.y48{bottom:993.852000px;}
.y116{bottom:996.100500px;}
.ycd{bottom:999.804000px;}
.y18{bottom:1001.262000px;}
.y1f8{bottom:1003.647000px;}
.y73{bottom:1004.298000px;}
.y22b{bottom:1006.038000px;}
.y18b{bottom:1010.260500px;}
.y47{bottom:1014.742500px;}
.y96{bottom:1015.264500px;}
.y115{bottom:1016.992500px;}
.y72{bottom:1025.188500px;}
.y18a{bottom:1031.151000px;}
.ycc{bottom:1031.869500px;}
.y46{bottom:1035.634500px;}
.y95{bottom:1036.155000px;}
.y1f7{bottom:1038.288000px;}
.y17{bottom:1040.086500px;}
.ycb{bottom:1042.120500px;}
.y22a{bottom:1044.339000px;}
.y71{bottom:1046.080500px;}
.y114{bottom:1049.757000px;}
.y189{bottom:1052.043000px;}
.y45{bottom:1056.526500px;}
.y94{bottom:1057.047000px;}
.y113{bottom:1060.008000px;}
.y1f6{bottom:1062.270000px;}
.y229{bottom:1063.489500px;}
.yca{bottom:1068.489000px;}
.y16{bottom:1071.424500px;}
.y188{bottom:1072.935000px;}
.y44{bottom:1077.417000px;}
.y93{bottom:1077.939000px;}
.yc9{bottom:1078.740000px;}
.y228{bottom:1082.640000px;}
.y187{bottom:1093.825500px;}
.y43{bottom:1098.309000px;}
.y1f5{bottom:1101.094500px;}
.y227{bottom:1101.790500px;}
.y15{bottom:1102.761000px;}
.y90{bottom:1104.822000px;}
.y92{bottom:1105.003500px;}
.y186{bottom:1114.717500px;}
.y8f{bottom:1115.254500px;}
.y42{bottom:1119.201000px;}
.y1f4{bottom:1120.593000px;}
.y226{bottom:1120.941000px;}
.y91{bottom:1125.372000px;}
.y41{bottom:1140.091500px;}
.y40{bottom:1200.196500px;}
.h1f{height:2.391024px;}
.h39{height:25.249382px;}
.h35{height:25.285248px;}
.h38{height:25.372200px;}
.h7{height:26.110157px;}
.h37{height:26.899200px;}
.h3a{height:27.496200px;}
.h3b{height:27.499200px;}
.h3c{height:29.782382px;}
.h3d{height:30.187200px;}
.h36{height:30.385200px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h4b{height:33.072749px;}
.h25{height:33.299897px;}
.h8{height:34.813397px;}
.h48{height:35.023200px;}
.hb{height:35.052500px;}
.h27{height:35.503200px;}
.h3f{height:36.941321px;}
.h16{height:39.165235px;}
.h17{height:39.434227px;}
.h42{height:43.217759px;}
.h18{height:43.397086px;}
.h9{height:43.516637px;}
.h4{height:43.815515px;}
.h13{height:46.445641px;}
.he{height:46.714950px;}
.h22{height:46.746749px;}
.h52{height:49.985558px;}
.h4f{height:49.991558px;}
.h1d{height:50.352749px;}
.ha{height:51.861658px;}
.h4d{height:52.065024px;}
.h19{height:53.514749px;}
.h6{height:54.547601px;}
.hf{height:54.768749px;}
.h46{height:54.774749px;}
.h44{height:56.622749px;}
.h26{height:56.849897px;}
.h43{height:57.199200px;}
.h14{height:57.983897px;}
.h15{height:58.282637px;}
.h21{height:59.872157px;}
.h49{height:62.921897px;}
.h30{height:64.087200px;}
.h24{height:64.391897px;}
.h47{height:66.535200px;}
.h4c{height:67.336950px;}
.h20{height:67.894157px;}
.h29{height:68.769024px;}
.h2c{height:68.775024px;}
.h33{height:69.534749px;}
.h32{height:75.228749px;}
.h2d{height:75.234749px;}
.h45{height:75.390749px;}
.h2a{height:76.434749px;}
.h5{height:77.792486px;}
.h50{height:79.085759px;}
.h28{height:79.086749px;}
.h51{height:79.378637px;}
.h4a{height:80.038637px;}
.h2e{height:83.541024px;}
.hc{height:84.279515px;}
.h12{height:84.285515px;}
.h11{height:84.520637px;}
.h1b{height:84.526637px;}
.h4e{height:86.909641px;}
.h3e{height:87.184950px;}
.h10{height:87.718950px;}
.h1a{height:88.653515px;}
.h41{height:89.397024px;}
.h23{height:90.742637px;}
.h1c{height:95.238749px;}
.h31{height:98.976749px;}
.h40{height:101.197200px;}
.h2f{height:103.921200px;}
.h2b{height:109.948157px;}
.h1e{height:124.929024px;}
.hd{height:125.289515px;}
.h34{height:321.645000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:697.995750px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8b{left:3.450750px;}
.x8c{left:15.509250px;}
.x8d{left:41.687250px;}
.x1{left:53.574000px;}
.x8f{left:83.481750px;}
.xe7{left:85.848000px;}
.x91{left:91.348500px;}
.x92{left:93.175500px;}
.x90{left:94.343250px;}
.x8a{left:97.246500px;}
.x93{left:116.266500px;}
.x8e{left:141.451500px;}
.x95{left:185.865000px;}
.x94{left:188.370000px;}
.x96{left:190.994250px;}
.x98{left:230.013000px;}
.x97{left:231.543000px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x99{left:251.695500px;}
.x4e{left:258.556500px;}
.xe4{left:264.025500px;}
.x3{left:269.448000px;}
.xda{left:271.998000px;}
.x9a{left:278.994750px;}
.x5{left:281.479500px;}
.xdb{left:288.861000px;}
.xe3{left:290.245500px;}
.x17{left:293.401500px;}
.x31{left:294.768000px;}
.x67{left:296.163000px;}
.xc0{left:298.561500px;}
.xdd{left:299.713500px;}
.xb6{left:303.819000px;}
.x42{left:305.790000px;}
.x55{left:307.254000px;}
.x18{left:308.346000px;}
.x3a{left:310.230000px;}
.x14{left:312.564000px;}
.x32{left:313.986000px;}
.x9b{left:317.129250px;}
.xc9{left:318.166500px;}
.xca{left:321.978000px;}
.x74{left:327.097500px;}
.xb5{left:329.542500px;}
.x24{left:330.972000px;}
.xb4{left:332.217000px;}
.x4d{left:333.253500px;}
.x4a{left:335.725500px;}
.xcb{left:336.921000px;}
.x25{left:345.916500px;}
.xc1{left:347.268000px;}
.x4b{left:348.346500px;}
.x26{left:349.585500px;}
.xdc{left:350.631000px;}
.x80{left:353.058000px;}
.x1b{left:354.250500px;}
.x75{left:357.087000px;}
.x9e{left:359.064000px;}
.x6{left:363.910500px;}
.x9d{left:365.318250px;}
.xa5{left:367.108500px;}
.x1c{left:369.195000px;}
.x7{left:371.383500px;}
.x1d{left:372.960000px;}
.x81{left:374.416500px;}
.x68{left:377.142000px;}
.x9c{left:380.594250px;}
.x82{left:381.738000px;}
.xa6{left:384.534000px;}
.xd7{left:385.602000px;}
.x69{left:386.784000px;}
.x1e{left:387.904500px;}
.xa7{left:393.933000px;}
.xd8{left:395.500500px;}
.x44{left:400.554000px;}
.x45{left:408.025500px;}
.x83{left:409.608000px;}
.x6a{left:412.749000px;}
.x5d{left:418.162500px;}
.xc2{left:422.101500px;}
.x63{left:423.247500px;}
.xc{left:426.691500px;}
.xaa{left:427.962000px;}
.xb3{left:431.380500px;}
.xb2{left:432.696000px;}
.xd{left:434.164500px;}
.x59{left:438.294000px;}
.x2c{left:440.824500px;}
.xb7{left:441.970500px;}
.x5e{left:444.937500px;}
.x56{left:450.673500px;}
.x2d{left:453.087000px;}
.x37{left:454.561500px;}
.xcf{left:455.754000px;}
.x76{left:457.515000px;}
.xa8{left:459.255000px;}
.x10{left:461.910000px;}
.xbf{left:465.174000px;}
.x51{left:466.953000px;}
.x57{left:468.015000px;}
.x11{left:469.383000px;}
.x6d{left:471.370500px;}
.x12{left:473.193000px;}
.xb8{left:475.468500px;}
.xd0{left:477.055500px;}
.x13{left:480.664500px;}
.xe{left:483.705000px;}
.x21{left:485.044500px;}
.x64{left:486.298500px;}
.xa9{left:489.370500px;}
.xf{left:491.178000px;}
.x79{left:492.553500px;}
.xbd{left:494.491500px;}
.xb0{left:496.122000px;}
.xd3{left:498.084000px;}
.xbe{left:499.699500px;}
.x7a{left:501.765000px;}
.x4f{left:502.830000px;}
.x48{left:504.426000px;}
.x5f{left:506.902500px;}
.x71{left:508.902000px;}
.x41{left:512.793000px;}
.xe2{left:514.359000px;}
.x2e{left:515.574000px;}
.x9f{left:518.144250px;}
.xb9{left:520.014000px;}
.x27{left:521.394000px;}
.xd1{left:526.218000px;}
.x52{left:528.874500px;}
.xc8{left:530.068500px;}
.x65{left:531.384000px;}
.xd4{left:533.589000px;}
.x28{left:536.338500px;}
.xd9{left:539.601000px;}
.xaf{left:541.093500px;}
.x4c{left:543.117000px;}
.xa0{left:545.812500px;}
.xe0{left:547.177500px;}
.x6e{left:548.244000px;}
.x3b{left:555.757500px;}
.x72{left:556.773000px;}
.x50{left:558.160500px;}
.x2f{left:560.667000px;}
.x53{left:563.835000px;}
.x3c{left:565.486500px;}
.x66{left:568.729500px;}
.x38{left:569.928000px;}
.x60{left:571.573500px;}
.x1f{left:573.949500px;}
.x49{left:576.874500px;}
.x46{left:578.776500px;}
.xc3{left:580.732500px;}
.x89{left:582.274500px;}
.x61{left:585.372000px;}
.x54{left:587.869500px;}
.x20{left:588.894000px;}
.x73{left:591.625500px;}
.x6f{left:593.685000px;}
.x39{left:598.033500px;}
.x19{left:600.495000px;}
.x22{left:602.320500px;}
.x7f{left:606.841500px;}
.x70{left:610.108500px;}
.x1a{left:615.439500px;}
.x23{left:617.265000px;}
.xa1{left:619.099500px;}
.x43{left:620.532000px;}
.xa2{left:624.039750px;}
.xa3{left:626.653500px;}
.x5a{left:628.102500px;}
.x29{left:630.588000px;}
.x8{left:631.996500px;}
.xa4{left:634.647750px;}
.x9{left:639.468000px;}
.xa{left:643.279500px;}
.x2a{left:645.532500px;}
.x33{left:647.638500px;}
.xb{left:650.751000px;}
.xae{left:653.266500px;}
.xc4{left:654.792000px;}
.xd5{left:656.058000px;}
.x2b{left:657.777000px;}
.xac{left:661.182000px;}
.x34{left:665.745000px;}
.x84{left:668.529000px;}
.xc5{left:671.374500px;}
.x47{left:678.739500px;}
.x85{left:684.025500px;}
.xc6{left:686.758500px;}
.xad{left:689.727000px;}
.x86{left:691.192500px;}
.x15{left:702.652500px;}
.xcc{left:706.078500px;}
.xe1{left:707.802000px;}
.x16{left:710.125500px;}
.x87{left:712.062000px;}
.x77{left:717.027000px;}
.xcd{left:731.433000px;}
.x3d{left:735.882000px;}
.xde{left:737.190000px;}
.xc7{left:739.248000px;}
.x62{left:740.254500px;}
.xe5{left:742.288500px;}
.x58{left:747.135000px;}
.x6b{left:750.583500px;}
.xb1{left:752.710500px;}
.xd2{left:756.180000px;}
.x7b{left:758.044500px;}
.xd6{left:760.747500px;}
.x3e{left:762.477000px;}
.xce{left:765.816000px;}
.x35{left:770.160000px;}
.x88{left:772.834500px;}
.xdf{left:773.875500px;}
.x78{left:777.606000px;}
.xbc{left:782.260500px;}
.x7c{left:783.414000px;}
.xba{left:787.071000px;}
.x3f{left:792.039000px;}
.x6c{left:793.719000px;}
.xab{left:799.246500px;}
.xbb{left:802.050000px;}
.xe6{left:803.382000px;}
.x5b{left:809.595000px;}
.x7d{left:814.102500px;}
.x7e{left:815.511000px;}
.x40{left:816.636000px;}
.x30{left:822.982500px;}
.x5c{left:828.015000px;}
.x36{left:837.826500px;}
@media print{
.v1f{vertical-align:-59.008000pt;}
.v1e{vertical-align:-31.386667pt;}
.v1a{vertical-align:-21.946667pt;}
.v2c{vertical-align:-19.290667pt;}
.v2a{vertical-align:-16.709333pt;}
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.624000pt;}
.va{vertical-align:-9.642667pt;}
.v8{vertical-align:-7.968000pt;}
.v17{vertical-align:-6.058667pt;}
.v20{vertical-align:-4.090667pt;}
.vd{vertical-align:-1.120000pt;}
.v0{vertical-align:0.000000pt;}
.v29{vertical-align:3.098667pt;}
.v21{vertical-align:4.869333pt;}
.v2d{vertical-align:7.045333pt;}
.v9{vertical-align:7.968000pt;}
.v2b{vertical-align:9.301333pt;}
.v23{vertical-align:10.453333pt;}
.vc{vertical-align:13.125333pt;}
.v11{vertical-align:15.360000pt;}
.v1c{vertical-align:16.602667pt;}
.ve{vertical-align:18.170667pt;}
.v1{vertical-align:19.290667pt;}
.v18{vertical-align:20.933333pt;}
.vb{vertical-align:21.941333pt;}
.v24{vertical-align:25.408000pt;}
.v5{vertical-align:26.325333pt;}
.v16{vertical-align:27.637333pt;}
.v14{vertical-align:30.010667pt;}
.v28{vertical-align:32.410667pt;}
.v27{vertical-align:34.293333pt;}
.v4{vertical-align:35.968000pt;}
.v13{vertical-align:37.141333pt;}
.vf{vertical-align:39.856000pt;}
.v19{vertical-align:40.901333pt;}
.v26{vertical-align:43.941333pt;}
.v25{vertical-align:46.426667pt;}
.v15{vertical-align:49.109333pt;}
.v10{vertical-align:55.258667pt;}
.v1b{vertical-align:59.002667pt;}
.v22{vertical-align:60.816000pt;}
.v7{vertical-align:62.778667pt;}
.v6{vertical-align:72.421333pt;}
.v1d{vertical-align:74.522667pt;}
.v12{vertical-align:108.922667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls6c{letter-spacing:0.000098pt;}
.ls11{letter-spacing:0.000129pt;}
.ls98{letter-spacing:0.000340pt;}
.ls90{letter-spacing:0.000518pt;}
.ls97{letter-spacing:0.000660pt;}
.ls6b{letter-spacing:0.001478pt;}
.ls121{letter-spacing:0.002825pt;}
.ls93{letter-spacing:0.003327pt;}
.ls120{letter-spacing:0.004267pt;}
.ls51{letter-spacing:0.178502pt;}
.lsff{letter-spacing:0.380773pt;}
.lsf9{letter-spacing:0.386106pt;}
.ls73{letter-spacing:0.482502pt;}
.ls69{letter-spacing:0.487835pt;}
.ls9e{letter-spacing:0.501867pt;}
.lsea{letter-spacing:0.502146pt;}
.ls124{letter-spacing:0.536039pt;}
.lsfd{letter-spacing:0.558584pt;}
.ls10{letter-spacing:0.596214pt;}
.ls125{letter-spacing:0.599433pt;}
.ls100{letter-spacing:0.605922pt;}
.ls7a{letter-spacing:0.635362pt;}
.ls2c{letter-spacing:0.637762pt;}
.ls106{letter-spacing:0.640696pt;}
.ls55{letter-spacing:0.654188pt;}
.lse7{letter-spacing:0.659733pt;}
.lsd0{letter-spacing:0.659985pt;}
.ls3b{letter-spacing:0.660289pt;}
.ls12{letter-spacing:0.662146pt;}
.ls24{letter-spacing:0.662516pt;}
.lscf{letter-spacing:0.663733pt;}
.ls6f{letter-spacing:0.664991pt;}
.ls22{letter-spacing:0.665067pt;}
.lsc0{letter-spacing:0.665318pt;}
.lsb5{letter-spacing:0.665548pt;}
.ls39{letter-spacing:0.665570pt;}
.lsc5{letter-spacing:0.666378pt;}
.ls101{letter-spacing:0.675454pt;}
.lsfe{letter-spacing:0.680787pt;}
.ls139{letter-spacing:0.690970pt;}
.ls86{letter-spacing:0.761067pt;}
.ls5d{letter-spacing:0.764353pt;}
.ls88{letter-spacing:0.766400pt;}
.ls142{letter-spacing:0.798618pt;}
.ls5b{letter-spacing:0.883733pt;}
.ls19{letter-spacing:0.883985pt;}
.ls7b{letter-spacing:0.889067pt;}
.ls17{letter-spacing:0.889318pt;}
.ls10c{letter-spacing:0.902349pt;}
.ls10a{letter-spacing:0.902400pt;}
.lsf6{letter-spacing:0.958584pt;}
.lsfb{letter-spacing:1.005922pt;}
.ls50{letter-spacing:1.009015pt;}
.ls48{letter-spacing:1.009067pt;}
.lsf8{letter-spacing:1.019878pt;}
.ls135{letter-spacing:1.058970pt;}
.ls4a{letter-spacing:1.062400pt;}
.ls12f{letter-spacing:1.065600pt;}
.lsdc{letter-spacing:1.102881pt;}
.ls7f{letter-spacing:1.142029pt;}
.ls72{letter-spacing:1.159121pt;}
.ls3d{letter-spacing:1.166400pt;}
.lsda{letter-spacing:1.166652pt;}
.ls10e{letter-spacing:1.166903pt;}
.ls13{letter-spacing:1.169686pt;}
.ls78{letter-spacing:1.171733pt;}
.ls137{letter-spacing:1.245636pt;}
.ls129{letter-spacing:1.246933pt;}
.lsa3{letter-spacing:1.262881pt;}
.lsef{letter-spacing:1.302029pt;}
.ls16{letter-spacing:1.304429pt;}
.lsad{letter-spacing:1.308957pt;}
.ls130{letter-spacing:1.311565pt;}
.lsaf{letter-spacing:1.314290pt;}
.ls6e{letter-spacing:1.319121pt;}
.lsac{letter-spacing:1.320855pt;}
.ls112{letter-spacing:1.326210pt;}
.ls1d{letter-spacing:1.326400pt;}
.ls34{letter-spacing:1.326956pt;}
.lsa5{letter-spacing:1.327207pt;}
.ls116{letter-spacing:1.328015pt;}
.lsf0{letter-spacing:1.328333pt;}
.ls8e{letter-spacing:1.328573pt;}
.lsa1{letter-spacing:1.329140pt;}
.lse3{letter-spacing:1.329444pt;}
.ls110{letter-spacing:1.330133pt;}
.lsce{letter-spacing:1.330400pt;}
.lsa4{letter-spacing:1.331733pt;}
.lsd4{letter-spacing:1.331985pt;}
.lsb4{letter-spacing:1.332541pt;}
.ls1a{letter-spacing:1.367020pt;}
.ls4c{letter-spacing:1.369067pt;}
.ls49{letter-spacing:1.382349pt;}
.lsa0{letter-spacing:1.459230pt;}
.ls9c{letter-spacing:1.464563pt;}
.lsbd{letter-spacing:1.524214pt;}
.ls13b{letter-spacing:1.544303pt;}
.lsd5{letter-spacing:1.575623pt;}
.lsc1{letter-spacing:1.580957pt;}
.lsbf{letter-spacing:1.592563pt;}
.lsb7{letter-spacing:1.593067pt;}
.ls60{letter-spacing:1.594966pt;}
.ls13f{letter-spacing:1.619635pt;}
.lsb0{letter-spacing:1.689874pt;}
.lsa{letter-spacing:1.692353pt;}
.ls4f{letter-spacing:1.718400pt;}
.ls4b{letter-spacing:1.774903pt;}
.ls65{letter-spacing:1.935207pt;}
.ls62{letter-spacing:1.940541pt;}
.ls74{letter-spacing:1.950881pt;}
.ls117{letter-spacing:1.965897pt;}
.lsaa{letter-spacing:1.992521pt;}
.ls61{letter-spacing:2.007121pt;}
.lsb{letter-spacing:2.017506pt;}
.ls11a{letter-spacing:2.022839pt;}
.lsd7{letter-spacing:2.431207pt;}
.lsf7{letter-spacing:2.496418pt;}
.ls103{letter-spacing:2.651733pt;}
.ls11d{letter-spacing:2.656533pt;}
.ls1{letter-spacing:2.657067pt;}
.ls11f{letter-spacing:2.661604pt;}
.ls145{letter-spacing:2.750046pt;}
.ls38{letter-spacing:2.918778pt;}
.ls146{letter-spacing:2.952713pt;}
.ls5f{letter-spacing:3.056333pt;}
.ls126{letter-spacing:3.107601pt;}
.lsfa{letter-spacing:3.163733pt;}
.ls148{letter-spacing:3.214046pt;}
.ls8a{letter-spacing:3.274999pt;}
.ls70{letter-spacing:3.280333pt;}
.lse5{letter-spacing:3.318400pt;}
.lse1{letter-spacing:3.323733pt;}
.ls35{letter-spacing:3.387850pt;}
.ls8c{letter-spacing:3.557666pt;}
.ls10b{letter-spacing:3.557956pt;}
.ls26{letter-spacing:3.563785pt;}
.lsfc{letter-spacing:3.782545pt;}
.ls58{letter-spacing:3.825015pt;}
.lsbb{letter-spacing:3.825067pt;}
.ls111{letter-spacing:3.825626pt;}
.lsdb{letter-spacing:3.827454pt;}
.lsf1{letter-spacing:3.922926pt;}
.ls71{letter-spacing:4.107174pt;}
.ls76{letter-spacing:4.230451pt;}
.ls3a{letter-spacing:4.491733pt;}
.lse2{letter-spacing:4.646400pt;}
.lsdf{letter-spacing:6.356214pt;}
.ls59{letter-spacing:7.027521pt;}
.lsb3{letter-spacing:7.035733pt;}
.lscd{letter-spacing:7.041067pt;}
.ls0{letter-spacing:7.442933pt;}
.lsb6{letter-spacing:7.703756pt;}
.ls8b{letter-spacing:8.661633pt;}
.ls43{letter-spacing:9.035733pt;}
.lsde{letter-spacing:9.275174pt;}
.lsec{letter-spacing:10.184991pt;}
.ls66{letter-spacing:10.337118pt;}
.ls8f{letter-spacing:10.405828pt;}
.lsc8{letter-spacing:10.408429pt;}
.lsca{letter-spacing:10.411362pt;}
.lsc7{letter-spacing:10.435733pt;}
.lsc9{letter-spacing:10.436237pt;}
.ls4{letter-spacing:10.626533pt;}
.ls7d{letter-spacing:10.968429pt;}
.ls57{letter-spacing:10.973762pt;}
.ls14e{letter-spacing:11.058133pt;}
.ls151{letter-spacing:11.103303pt;}
.ls6a{letter-spacing:11.510400pt;}
.lsbc{letter-spacing:11.593548pt;}
.lsd2{letter-spacing:11.613762pt;}
.lsa9{letter-spacing:11.629762pt;}
.lsc3{letter-spacing:11.632696pt;}
.ls82{letter-spacing:11.635096pt;}
.lsb8{letter-spacing:11.657067pt;}
.lsae{letter-spacing:11.657874pt;}
.lsbe{letter-spacing:11.662400pt;}
.ls14f{letter-spacing:11.701943pt;}
.ls150{letter-spacing:11.872251pt;}
.ls85{letter-spacing:11.901762pt;}
.lsd1{letter-spacing:11.907230pt;}
.lsb9{letter-spacing:11.928563pt;}
.ls14d{letter-spacing:11.954133pt;}
.ls14c{letter-spacing:11.959467pt;}
.ls40{letter-spacing:12.145118pt;}
.lsf{letter-spacing:12.323096pt;}
.ls64{letter-spacing:12.328429pt;}
.ls11c{letter-spacing:12.380191pt;}
.ls28{letter-spacing:12.552934pt;}
.ls29{letter-spacing:12.552969pt;}
.lsc4{letter-spacing:12.696429pt;}
.lse4{letter-spacing:12.937874pt;}
.lsc2{letter-spacing:12.989854pt;}
.ls6{letter-spacing:13.124065pt;}
.ls27{letter-spacing:13.283467pt;}
.ls123{letter-spacing:13.389734pt;}
.ls2e{letter-spacing:13.917762pt;}
.ls31{letter-spacing:13.923096pt;}
.ls30{letter-spacing:13.945067pt;}
.lsf2{letter-spacing:14.155733pt;}
.ls7e{letter-spacing:14.156580pt;}
.lsa8{letter-spacing:14.161067pt;}
.ls7c{letter-spacing:14.437841pt;}
.ls75{letter-spacing:14.443174pt;}
.lsba{letter-spacing:14.557762pt;}
.ls81{letter-spacing:14.558121pt;}
.lse{letter-spacing:14.561118pt;}
.lsb1{letter-spacing:15.129346pt;}
.ls7{letter-spacing:15.196286pt;}
.ls3f{letter-spacing:15.395096pt;}
.ls20{letter-spacing:15.400429pt;}
.ls104{letter-spacing:15.528429pt;}
.lsa6{letter-spacing:16.020214pt;}
.ls15{letter-spacing:16.061762pt;}
.ls1f{letter-spacing:16.083733pt;}
.ls102{letter-spacing:16.163733pt;}
.ls1c{letter-spacing:16.328429pt;}
.lsd8{letter-spacing:16.749762pt;}
.ls11b{letter-spacing:16.755096pt;}
.lsb2{letter-spacing:17.347096pt;}
.lsf3{letter-spacing:17.374400pt;}
.lsed{letter-spacing:17.389762pt;}
.lsab{letter-spacing:17.416521pt;}
.ls8{letter-spacing:17.680518pt;}
.ls108{letter-spacing:18.562502pt;}
.ls52{letter-spacing:18.582349pt;}
.ls10f{letter-spacing:18.582959pt;}
.ls118{letter-spacing:18.583196pt;}
.ls14{letter-spacing:18.583247pt;}
.lsdd{letter-spacing:18.584787pt;}
.ls1b{letter-spacing:18.587733pt;}
.ls113{letter-spacing:18.621169pt;}
.ls54{letter-spacing:18.869841pt;}
.lsc6{letter-spacing:18.984429pt;}
.ls5e{letter-spacing:18.984787pt;}
.ls23{letter-spacing:18.987785pt;}
.ls3e{letter-spacing:18.993118pt;}
.ls114{letter-spacing:19.234460pt;}
.ls80{letter-spacing:19.556013pt;}
.ls56{letter-spacing:19.605841pt;}
.ls53{letter-spacing:19.904508pt;}
.ls6d{letter-spacing:20.008429pt;}
.ls107{letter-spacing:20.219682pt;}
.ls68{letter-spacing:20.298966pt;}
.ls122{letter-spacing:20.615940pt;}
.ls109{letter-spacing:22.280429pt;}
.ls119{letter-spacing:22.435096pt;}
.ls33{letter-spacing:22.440429pt;}
.lsa2{letter-spacing:22.471756pt;}
.ls9d{letter-spacing:23.128429pt;}
.lsf4{letter-spacing:23.470400pt;}
.lscb{letter-spacing:23.517897pt;}
.lsc{letter-spacing:23.737874pt;}
.ls37{letter-spacing:23.768429pt;}
.ls42{letter-spacing:24.037841pt;}
.ls79{letter-spacing:24.867096pt;}
.ls63{letter-spacing:27.653841pt;}
.ls4d{letter-spacing:28.635733pt;}
.lscc{letter-spacing:28.931096pt;}
.lsf5{letter-spacing:29.155096pt;}
.ls9{letter-spacing:31.059096pt;}
.ls47{letter-spacing:32.328429pt;}
.lsa7{letter-spacing:39.367756pt;}
.ls4e{letter-spacing:40.083096pt;}
.lse9{letter-spacing:40.694778pt;}
.lsd3{letter-spacing:40.983756pt;}
.lse8{letter-spacing:42.689067pt;}
.ls105{letter-spacing:43.665067pt;}
.lsee{letter-spacing:50.734903pt;}
.ls89{letter-spacing:54.440429pt;}
.ls83{letter-spacing:55.128429pt;}
.ls10d{letter-spacing:55.483733pt;}
.ls2{letter-spacing:55.787733pt;}
.ls3{letter-spacing:57.174803pt;}
.ls45{letter-spacing:62.166400pt;}
.ls91{letter-spacing:63.096163pt;}
.ls96{letter-spacing:63.504573pt;}
.ls95{letter-spacing:64.587240pt;}
.ls94{letter-spacing:65.560573pt;}
.ls115{letter-spacing:72.941762pt;}
.ls84{letter-spacing:74.056429pt;}
.ls92{letter-spacing:74.482829pt;}
.lsd{letter-spacing:76.013762pt;}
.ls9b{letter-spacing:78.122112pt;}
.ls87{letter-spacing:80.797762pt;}
.lseb{letter-spacing:101.485762pt;}
.ls44{letter-spacing:110.518400pt;}
.ls133{letter-spacing:118.323375pt;}
.ls132{letter-spacing:124.753513pt;}
.ls134{letter-spacing:131.043375pt;}
.ls12d{letter-spacing:131.518042pt;}
.ls13c{letter-spacing:156.864044pt;}
.ls13e{letter-spacing:159.448708pt;}
.ls12a{letter-spacing:159.520533pt;}
.ls138{letter-spacing:161.291200pt;}
.ls127{letter-spacing:162.107200pt;}
.ls136{letter-spacing:164.936871pt;}
.ls9a{letter-spacing:165.471190pt;}
.ls149{letter-spacing:165.566042pt;}
.ls13d{letter-spacing:165.878846pt;}
.ls13a{letter-spacing:165.974356pt;}
.ls140{letter-spacing:166.838084pt;}
.ls143{letter-spacing:166.886846pt;}
.ls147{letter-spacing:172.001513pt;}
.ls131{letter-spacing:175.251635pt;}
.ls14a{letter-spacing:175.395140pt;}
.ls144{letter-spacing:176.161126pt;}
.ls14b{letter-spacing:176.351556pt;}
.ls141{letter-spacing:178.025284pt;}
.ls12c{letter-spacing:178.313600pt;}
.ls12e{letter-spacing:179.129600pt;}
.ls128{letter-spacing:179.364267pt;}
.ls12b{letter-spacing:184.672375pt;}
.ls99{letter-spacing:194.343190pt;}
.ls32{letter-spacing:249.921067pt;}
.ls2f{letter-spacing:256.006400pt;}
.ls2d{letter-spacing:298.673067pt;}
.ls2b{letter-spacing:304.758400pt;}
.ls2a{letter-spacing:348.518349pt;}
.ls11e{letter-spacing:425.461852pt;}
.ls46{letter-spacing:543.270400pt;}
.lse6{letter-spacing:670.361548pt;}
.lse0{letter-spacing:691.259174pt;}
.ls5a{letter-spacing:714.379733pt;}
.ls8d{letter-spacing:720.950451pt;}
.ls67{letter-spacing:736.039121pt;}
.ls77{letter-spacing:759.289548pt;}
.ls18{letter-spacing:779.149593pt;}
.lsd6{letter-spacing:781.113548pt;}
.ls3c{letter-spacing:809.390400pt;}
.ls9f{letter-spacing:817.707785pt;}
.ls5c{letter-spacing:844.900237pt;}
.ls25{letter-spacing:857.121118pt;}
.ls41{letter-spacing:864.356237pt;}
.lsd9{letter-spacing:877.715454pt;}
.ls1e{letter-spacing:880.463207pt;}
.ls21{letter-spacing:888.638400pt;}
.ls36{letter-spacing:913.534652pt;}
.ws6f{word-spacing:-55.365867pt;}
.ws6d{word-spacing:-43.739035pt;}
.ws32{word-spacing:-13.283467pt;}
.wsa4{word-spacing:-11.955200pt;}
.wsb{word-spacing:-10.626800pt;}
.ws9{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws79{word-spacing:-4.622646pt;}
.ws8b{word-spacing:-2.859407pt;}
.ws54{word-spacing:-2.497292pt;}
.ws7b{word-spacing:-2.391024pt;}
.wsb2{word-spacing:-2.337890pt;}
.wsa9{word-spacing:-2.287727pt;}
.wsa6{word-spacing:-2.261699pt;}
.wsa8{word-spacing:-2.260037pt;}
.ws29{word-spacing:-2.019087pt;}
.ws55{word-spacing:-1.965953pt;}
.ws1{word-spacing:-1.859680pt;}
.ws42{word-spacing:-1.806551pt;}
.ws0{word-spacing:-1.748099pt;}
.ws66{word-spacing:-1.700284pt;}
.wsb9{word-spacing:-1.530266pt;}
.ws65{word-spacing:-1.434614pt;}
.ws2d{word-spacing:-1.275213pt;}
.wsd6{word-spacing:-1.147699pt;}
.ws74{word-spacing:-1.115811pt;}
.wsd8{word-spacing:-1.099878pt;}
.wsb3{word-spacing:-1.062677pt;}
.wsaf{word-spacing:-0.956416pt;}
.wscb{word-spacing:-0.908595pt;}
.ws67{word-spacing:-0.903276pt;}
.ws9b{word-spacing:-0.797008pt;}
.ws17{word-spacing:-0.531339pt;}
.wsb4{word-spacing:-0.478205pt;}
.wsce{word-spacing:-0.382566pt;}
.ws15{word-spacing:-0.371937pt;}
.ws23{word-spacing:-0.318803pt;}
.wsb6{word-spacing:-0.286925pt;}
.ws6b{word-spacing:-0.265669pt;}
.ws2f{word-spacing:-0.212535pt;}
.wsae{word-spacing:-0.191283pt;}
.ws10{word-spacing:-0.159402pt;}
.wsc6{word-spacing:-0.143462pt;}
.ws12{word-spacing:-0.106268pt;}
.wsd4{word-spacing:-0.095642pt;}
.ws14{word-spacing:-0.053134pt;}
.ws5d{word-spacing:-0.047821pt;}
.ws22{word-spacing:-0.042507pt;}
.ws36{word-spacing:-0.040382pt;}
.ws5{word-spacing:-0.037194pt;}
.ws45{word-spacing:-0.031881pt;}
.ws5b{word-spacing:-0.021254pt;}
.ws8{word-spacing:0.000000pt;}
.ws77{word-spacing:0.047821pt;}
.ws2a{word-spacing:0.053134pt;}
.wsd0{word-spacing:0.095642pt;}
.wsd{word-spacing:0.106268pt;}
.ws20{word-spacing:0.159402pt;}
.wsc7{word-spacing:0.191283pt;}
.ws11{word-spacing:0.212535pt;}
.wsb7{word-spacing:0.239104pt;}
.ws30{word-spacing:0.265669pt;}
.wsba{word-spacing:0.286925pt;}
.ws2b{word-spacing:0.318803pt;}
.ws16{word-spacing:0.371937pt;}
.ws6{word-spacing:0.375335pt;}
.ws7{word-spacing:0.382566pt;}
.ws81{word-spacing:0.425071pt;}
.ws1a{word-spacing:0.478205pt;}
.wsb5{word-spacing:0.531339pt;}
.ws90{word-spacing:0.584473pt;}
.ws3a{word-spacing:0.593519pt;}
.ws39{word-spacing:0.597973pt;}
.ws97{word-spacing:0.662599pt;}
.ws71{word-spacing:0.663382pt;}
.ws3d{word-spacing:0.665143pt;}
.wsbc{word-spacing:0.669491pt;}
.ws27{word-spacing:0.690740pt;}
.ws9d{word-spacing:0.743874pt;}
.ws41{word-spacing:0.797008pt;}
.ws7c{word-spacing:0.956410pt;}
.wsdb{word-spacing:1.004237pt;}
.ws1d{word-spacing:1.009543pt;}
.ws80{word-spacing:1.062677pt;}
.ws37{word-spacing:1.115811pt;}
.ws1c{word-spacing:1.222079pt;}
.ws7f{word-spacing:1.328347pt;}
.wsaa{word-spacing:1.381481pt;}
.ws86{word-spacing:1.411564pt;}
.ws62{word-spacing:1.434614pt;}
.ws43{word-spacing:1.487748pt;}
.ws38{word-spacing:1.540882pt;}
.wsb8{word-spacing:1.625907pt;}
.ws92{word-spacing:1.753418pt;}
.ws47{word-spacing:1.806551pt;}
.ws33{word-spacing:1.859685pt;}
.ws24{word-spacing:1.912819pt;}
.wsa5{word-spacing:2.072221pt;}
.ws28{word-spacing:2.125355pt;}
.ws40{word-spacing:2.137134pt;}
.ws8d{word-spacing:2.140962pt;}
.ws13{word-spacing:2.231622pt;}
.ws3e{word-spacing:2.337890pt;}
.ws4d{word-spacing:2.391024pt;}
.ws99{word-spacing:2.550426pt;}
.ws69{word-spacing:2.603559pt;}
.ws9f{word-spacing:2.762961pt;}
.wscc{word-spacing:2.821427pt;}
.wscd{word-spacing:2.863667pt;}
.wsbb{word-spacing:2.866509pt;}
.ws93{word-spacing:2.975497pt;}
.wsbd{word-spacing:3.012710pt;}
.wse0{word-spacing:3.108352pt;}
.ws18{word-spacing:3.185311pt;}
.ws2c{word-spacing:3.241166pt;}
.ws1f{word-spacing:3.347434pt;}
.wsc{word-spacing:3.387308pt;}
.ws25{word-spacing:3.453701pt;}
.ws76{word-spacing:3.506835pt;}
.ws75{word-spacing:3.559969pt;}
.ws8c{word-spacing:3.613103pt;}
.ws8a{word-spacing:3.666237pt;}
.ws19{word-spacing:3.825664pt;}
.wsf{word-spacing:3.931906pt;}
.ws60{word-spacing:3.985040pt;}
.wsa0{word-spacing:4.016947pt;}
.ws1e{word-spacing:4.091308pt;}
.ws61{word-spacing:4.197575pt;}
.ws9e{word-spacing:4.303843pt;}
.ws4b{word-spacing:4.410111pt;}
.ws68{word-spacing:4.516379pt;}
.ws91{word-spacing:4.569513pt;}
.wsad{word-spacing:4.622646pt;}
.ws95{word-spacing:4.675780pt;}
.ws5f{word-spacing:4.888316pt;}
.wse{word-spacing:5.047717pt;}
.ws1b{word-spacing:5.153985pt;}
.wsda{word-spacing:5.257757pt;}
.ws26{word-spacing:5.313387pt;}
.wsb0{word-spacing:5.547213pt;}
.ws96{word-spacing:5.685324pt;}
.ws2e{word-spacing:5.738458pt;}
.ws94{word-spacing:5.950993pt;}
.ws7e{word-spacing:6.057261pt;}
.ws7d{word-spacing:6.110395pt;}
.ws5e{word-spacing:6.216662pt;}
.ws9a{word-spacing:6.322930pt;}
.ws56{word-spacing:6.482332pt;}
.ws57{word-spacing:6.535466pt;}
.ws31{word-spacing:6.801135pt;}
.wsac{word-spacing:7.332474pt;}
.wsab{word-spacing:7.385607pt;}
.ws3{word-spacing:7.404164pt;}
.ws63{word-spacing:7.982206pt;}
.wsdf{word-spacing:8.123409pt;}
.ws64{word-spacing:8.873356pt;}
.ws83{word-spacing:9.492907pt;}
.ws58{word-spacing:10.361173pt;}
.ws21{word-spacing:10.582249pt;}
.wsd7{word-spacing:10.759680pt;}
.wscf{word-spacing:11.524813pt;}
.wsdc{word-spacing:11.716096pt;}
.wsd5{word-spacing:11.808019pt;}
.wsd2{word-spacing:11.859558pt;}
.wsd3{word-spacing:11.904333pt;}
.wsc8{word-spacing:11.907379pt;}
.ws48{word-spacing:11.930458pt;}
.wsd1{word-spacing:12.003021pt;}
.wsc5{word-spacing:12.146483pt;}
.ws44{word-spacing:12.193322pt;}
.ws7a{word-spacing:12.752128pt;}
.ws6c{word-spacing:13.207467pt;}
.ws87{word-spacing:13.230333pt;}
.ws6a{word-spacing:13.249368pt;}
.wsca{word-spacing:13.868032pt;}
.ws53{word-spacing:14.111663pt;}
.ws82{word-spacing:14.116213pt;}
.ws35{word-spacing:14.116996pt;}
.wsde{word-spacing:14.775706pt;}
.wsd9{word-spacing:14.776311pt;}
.wsc9{word-spacing:14.776627pt;}
.wsdd{word-spacing:14.920090pt;}
.ws78{word-spacing:15.945370pt;}
.ws72{word-spacing:15.954315pt;}
.ws85{word-spacing:16.457547pt;}
.ws88{word-spacing:18.212153pt;}
.ws98{word-spacing:18.540956pt;}
.ws49{word-spacing:18.543232pt;}
.ws2{word-spacing:19.715148pt;}
.wsb1{word-spacing:19.893453pt;}
.ws34{word-spacing:26.154710pt;}
.ws4a{word-spacing:27.343232pt;}
.wsa{word-spacing:40.941867pt;}
.ws5a{word-spacing:56.634457pt;}
.ws4f{word-spacing:56.916996pt;}
.ws4e{word-spacing:56.920198pt;}
.ws51{word-spacing:57.200887pt;}
.ws52{word-spacing:57.320365pt;}
.ws59{word-spacing:71.791603pt;}
.ws5c{word-spacing:71.873312pt;}
.wsc2{word-spacing:131.255959pt;}
.wsc1{word-spacing:137.797678pt;}
.wsbf{word-spacing:138.739092pt;}
.wsc3{word-spacing:138.988875pt;}
.wsc4{word-spacing:143.044397pt;}
.wsbe{word-spacing:146.821376pt;}
.wsc0{word-spacing:148.832043pt;}
.ws73{word-spacing:180.761414pt;}
.wsa1{word-spacing:195.026141pt;}
.ws8e{word-spacing:275.764768pt;}
.ws3c{word-spacing:300.259481pt;}
.ws8f{word-spacing:355.412434pt;}
.ws3b{word-spacing:376.081508pt;}
.wsa2{word-spacing:391.171526pt;}
.ws9c{word-spacing:432.297139pt;}
.wsa3{word-spacing:514.654633pt;}
.ws70{word-spacing:547.491362pt;}
.wsa7{word-spacing:652.908954pt;}
.ws46{word-spacing:689.162667pt;}
.ws89{word-spacing:698.444677pt;}
.ws50{word-spacing:701.917698pt;}
.ws6e{word-spacing:731.865879pt;}
.ws84{word-spacing:762.045916pt;}
.ws4c{word-spacing:815.871232pt;}
.ws3f{word-spacing:830.482336pt;}
._42{margin-left:-18.376705pt;}
._4{margin-left:-10.807501pt;}
._7{margin-left:-5.897859pt;}
._3{margin-left:-4.797974pt;}
._14{margin-left:-3.772505pt;}
._1{margin-left:-2.715133pt;}
._2{margin-left:-1.376163pt;}
._1b{width:1.311706pt;}
._5{width:2.452379pt;}
._2b{width:3.372591pt;}
._1a{width:4.681098pt;}
._24{width:5.752702pt;}
._1c{width:7.038035pt;}
._29{width:8.873356pt;}
._0{width:9.856304pt;}
._43{width:11.261660pt;}
._8{width:12.412102pt;}
._19{width:14.027341pt;}
._28{width:14.990394pt;}
._c{width:15.987977pt;}
._d{width:17.002837pt;}
._b{width:18.224916pt;}
._15{width:19.181326pt;}
._10{width:20.398087pt;}
._18{width:21.838019pt;}
._e{width:23.697705pt;}
._27{width:24.914466pt;}
._31{width:25.870876pt;}
._11{width:26.938870pt;}
._a{width:28.426619pt;}
._25{width:30.126902pt;}
._9{width:31.556199pt;}
._f{width:32.517926pt;}
._16{width:33.681554pt;}
._2a{width:35.541239pt;}
._26{width:36.449833pt;}
._17{width:37.825996pt;}
._6{width:48.376563pt;}
._44{width:54.993920pt;}
._3e{width:64.334877pt;}
._41{width:78.904320pt;}
._3d{width:89.664000pt;}
._3f{width:135.285043pt;}
._40{width:156.087091pt;}
._20{width:161.745084pt;}
._1f{width:167.163750pt;}
._30{width:216.649531pt;}
._21{width:224.804073pt;}
._2e{width:302.278567pt;}
._2d{width:312.320868pt;}
._23{width:313.489813pt;}
._2f{width:315.562034pt;}
._2c{width:318.537531pt;}
._3a{width:325.444933pt;}
._36{width:330.030372pt;}
._3b{width:344.891929pt;}
._22{width:347.336086pt;}
._35{width:366.427071pt;}
._1e{width:439.294998pt;}
._33{width:443.348983pt;}
._1d{width:444.718998pt;}
._3c{width:448.928039pt;}
._39{width:564.012339pt;}
._38{width:582.441737pt;}
._34{width:597.543465pt;}
._37{width:745.202480pt;}
._12{width:1681.141270pt;}
._32{width:2235.519937pt;}
._13{width:2256.773270pt;}
.fsa{font-size:21.253600pt;}
.fs4{font-size:31.880533pt;}
.fsb{font-size:33.219200pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fs9{font-size:42.077867pt;}
.fs5{font-size:42.507200pt;}
.fs8{font-size:47.820800pt;}
.fsc{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fs7{font-size:55.365867pt;}
.fs6{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.yfd{bottom:40.196000pt;}
.y3f{bottom:40.818667pt;}
.yf8{bottom:54.371333pt;}
.yfc{bottom:63.884667pt;}
.yf9{bottom:64.615333pt;}
.yf6{bottom:64.659333pt;}
.ye9{bottom:64.999333pt;}
.yfb{bottom:71.570000pt;}
.yf7{bottom:74.859333pt;}
.ye3{bottom:79.022000pt;}
.y1a2{bottom:88.640000pt;}
.y14{bottom:89.120000pt;}
.y15d{bottom:90.800000pt;}
.yf0{bottom:93.006000pt;}
.ye2{bottom:94.352667pt;}
.yfa{bottom:94.813333pt;}
.y8e{bottom:96.098667pt;}
.y3e{bottom:100.141333pt;}
.y1cd{bottom:103.449333pt;}
.y13{bottom:105.020000pt;}
.y8d{bottom:105.212000pt;}
.y1f3{bottom:105.972000pt;}
.y15c{bottom:109.370667pt;}
.y225{bottom:109.558667pt;}
.yf5{bottom:111.422667pt;}
.y13d{bottom:116.610667pt;}
.y1a1{bottom:117.762667pt;}
.y3d{bottom:118.710667pt;}
.y12{bottom:120.920000pt;}
.ye8{bottom:121.131333pt;}
.ye1{bottom:121.648000pt;}
.y1cc{bottom:122.020000pt;}
.yef{bottom:122.360000pt;}
.y8c{bottom:123.781333pt;}
.y224{bottom:126.581333pt;}
.y223{bottom:126.582667pt;}
.y1a0{bottom:126.876000pt;}
.y15b{bottom:127.940000pt;}
.y1f2{bottom:131.274667pt;}
.y13c{bottom:135.180000pt;}
.y11{bottom:136.821333pt;}
.y3c{bottom:137.281333pt;}
.y105{bottom:139.431333pt;}
.yf2{bottom:139.769333pt;}
.y1cb{bottom:140.590667pt;}
.y185{bottom:142.581333pt;}
.y222{bottom:143.605333pt;}
.y1ce{bottom:146.290667pt;}
.y15a{bottom:146.510667pt;}
.y70{bottom:148.292000pt;}
.y13b{bottom:149.168000pt;}
.yed{bottom:149.477333pt;}
.ye7{bottom:149.522000pt;}
.ye0{bottom:149.994000pt;}
.y8b{bottom:151.637333pt;}
.y10{bottom:152.721333pt;}
.y13a{bottom:153.750667pt;}
.y3b{bottom:155.852000pt;}
.y1f1{bottom:156.576000pt;}
.y6e{bottom:157.404000pt;}
.y112{bottom:157.578667pt;}
.y1ca{bottom:159.160000pt;}
.yc8{bottom:159.498667pt;}
.yf1{bottom:159.540000pt;}
.y221{bottom:160.628000pt;}
.y184{bottom:161.150667pt;}
.yee{bottom:161.986667pt;}
.y159{bottom:165.081333pt;}
.y19f{bottom:165.776000pt;}
.y6f{bottom:166.397333pt;}
.y104{bottom:168.552667pt;}
.yf{bottom:168.621333pt;}
.y8a{bottom:170.208000pt;}
.y139{bottom:172.321333pt;}
.y1f0{bottom:173.909333pt;}
.y3a{bottom:174.421333pt;}
.y111{bottom:176.148000pt;}
.y220{bottom:177.650667pt;}
.y1c9{bottom:177.730667pt;}
.y251{bottom:177.753333pt;}
.ye6{bottom:177.868000pt;}
.yc7{bottom:178.068000pt;}
.ydf{bottom:178.384667pt;}
.y6d{bottom:179.574667pt;}
.yf3{bottom:179.672667pt;}
.y183{bottom:179.721333pt;}
.y1ba{bottom:183.348000pt;}
.y158{bottom:183.650667pt;}
.y19e{bottom:184.346667pt;}
.ye{bottom:184.522667pt;}
.y89{bottom:188.777333pt;}
.yec{bottom:190.332667pt;}
.y1ef{bottom:191.241333pt;}
.y103{bottom:191.308667pt;}
.y1d1{bottom:191.309333pt;}
.y39{bottom:192.992000pt;}
.y21f{bottom:194.673333pt;}
.y110{bottom:194.718667pt;}
.y250{bottom:194.776000pt;}
.ydb{bottom:196.124000pt;}
.y1c8{bottom:196.301333pt;}
.yc6{bottom:196.638667pt;}
.y6c{bottom:198.144000pt;}
.y182{bottom:198.292000pt;}
.y138{bottom:198.953333pt;}
.yd{bottom:200.422667pt;}
.y102{bottom:200.939333pt;}
.y1b9{bottom:201.917333pt;}
.y157{bottom:202.221333pt;}
.y19d{bottom:202.916000pt;}
.yde{bottom:205.572667pt;}
.ye5{bottom:206.214667pt;}
.y1d0{bottom:208.405333pt;}
.y1ee{bottom:208.573333pt;}
.y38{bottom:211.562667pt;}
.y21e{bottom:211.696000pt;}
.y24f{bottom:211.800000pt;}
.y181{bottom:212.278667pt;}
.y10f{bottom:213.289333pt;}
.y1c7{bottom:214.870667pt;}
.y6b{bottom:216.714667pt;}
.y180{bottom:216.861333pt;}
.y137{bottom:217.058667pt;}
.yeb{bottom:218.679333pt;}
.y101{bottom:219.655333pt;}
.y1b8{bottom:220.488000pt;}
.y156{bottom:220.792000pt;}
.y19c{bottom:221.486667pt;}
.yc{bottom:224.293333pt;}
.y1ed{bottom:225.905333pt;}
.y100{bottom:229.286000pt;}
.y37{bottom:230.133333pt;}
.yc5{bottom:230.684000pt;}
.y88{bottom:231.420000pt;}
.y10e{bottom:231.858667pt;}
.y21d{bottom:232.704000pt;}
.y1c6{bottom:233.441333pt;}
.ye4{bottom:234.561333pt;}
.ydd{bottom:234.694000pt;}
.y6a{bottom:235.285333pt;}
.y17e{bottom:235.432000pt;}
.y155{bottom:239.361333pt;}
.yb{bottom:240.193333pt;}
.y17f{bottom:240.253333pt;}
.y1ec{bottom:243.237333pt;}
.yf4{bottom:243.368000pt;}
.yea{bottom:247.026000pt;}
.y24e{bottom:247.392000pt;}
.y136{bottom:247.577333pt;}
.y87{bottom:247.640000pt;}
.yff{bottom:248.001333pt;}
.y36{bottom:248.702667pt;}
.y10d{bottom:250.429333pt;}
.y19b{bottom:250.610667pt;}
.y135{bottom:252.160000pt;}
.ydc{bottom:253.458667pt;}
.y69{bottom:253.854667pt;}
.y17d{bottom:254.002667pt;}
.ya{bottom:256.093333pt;}
.yfe{bottom:257.632000pt;}
.y154{bottom:257.932000pt;}
.y19a{bottom:259.722667pt;}
.y1eb{bottom:260.569333pt;}
.y1b7{bottom:263.130667pt;}
.y86{bottom:264.138667pt;}
.y24d{bottom:264.414667pt;}
.yc4{bottom:264.729333pt;}
.y35{bottom:267.273333pt;}
.yda{bottom:267.674000pt;}
.y21c{bottom:268.170667pt;}
.y10c{bottom:269.000000pt;}
.y9{bottom:271.994667pt;}
.y17c{bottom:272.572000pt;}
.y1c5{bottom:276.084000pt;}
.y153{bottom:276.502667pt;}
.y68{bottom:276.788000pt;}
.yd9{bottom:277.304667pt;}
.y1b6{bottom:279.070667pt;}
.y85{bottom:280.637333pt;}
.y24c{bottom:281.437333pt;}
.yc3{bottom:283.300000pt;}
.y134{bottom:284.360000pt;}
.y21b{bottom:285.502667pt;}
.y34{bottom:285.844000pt;}
.y67{bottom:285.901333pt;}
.y10b{bottom:287.570667pt;}
.y8{bottom:287.894667pt;}
.y1c4{bottom:292.024000pt;}
.y1ea{bottom:293.842667pt;}
.y152{bottom:295.072000pt;}
.y1b5{bottom:297.049333pt;}
.y84{bottom:297.137333pt;}
.y199{bottom:298.450667pt;}
.y24b{bottom:298.460000pt;}
.yc2{bottom:301.870667pt;}
.y133{bottom:302.465333pt;}
.y21a{bottom:302.836000pt;}
.y7{bottom:303.794667pt;}
.y33{bottom:304.413333pt;}
.y1b4{bottom:305.018667pt;}
.y10a{bottom:306.140000pt;}
.y66{bottom:306.390667pt;}
.y1c3{bottom:307.964000pt;}
.y1e9{bottom:312.412000pt;}
.y151{bottom:313.642667pt;}
.y17b{bottom:315.214667pt;}
.y24a{bottom:315.482667pt;}
.y6{bottom:319.696000pt;}
.y83{bottom:320.024000pt;}
.y219{bottom:320.168000pt;}
.yc1{bottom:320.440000pt;}
.y65{bottom:324.961333pt;}
.y1c2{bottom:325.942667pt;}
.y32{bottom:326.969333pt;}
.y198{bottom:328.473333pt;}
.y1e8{bottom:330.982667pt;}
.y17a{bottom:331.154667pt;}
.y150{bottom:332.213333pt;}
.y249{bottom:332.506667pt;}
.y132{bottom:332.685333pt;}
.y1c1{bottom:333.912000pt;}
.y218{bottom:337.500000pt;}
.y109{bottom:337.809333pt;}
.yc0{bottom:339.010667pt;}
.y5{bottom:340.909333pt;}
.y1b3{bottom:342.025333pt;}
.y64{bottom:343.530667pt;}
.y179{bottom:347.653333pt;}
.y82{bottom:349.060000pt;}
.y248{bottom:349.529333pt;}
.y1e7{bottom:349.553333pt;}
.y14f{bottom:350.784000pt;}
.y217{bottom:354.832000pt;}
.y108{bottom:354.905333pt;}
.y4{bottom:356.809333pt;}
.ybf{bottom:357.581333pt;}
.y1b2{bottom:359.121333pt;}
.y131{bottom:359.225333pt;}
.y63{bottom:366.086667pt;}
.y247{bottom:366.552000pt;}
.y1e6{bottom:368.122667pt;}
.y14e{bottom:369.353333pt;}
.y178{bottom:370.261333pt;}
.y1c0{bottom:370.918667pt;}
.y107{bottom:372.001333pt;}
.y216{bottom:372.164000pt;}
.ybe{bottom:372.320000pt;}
.y3{bottom:372.710667pt;}
.ybc{bottom:376.150667pt;}
.y130{bottom:377.330667pt;}
.ybd{bottom:380.973333pt;}
.y81{bottom:383.425333pt;}
.y246{bottom:383.574667pt;}
.y1e5{bottom:386.693333pt;}
.y14d{bottom:387.924000pt;}
.y2{bottom:388.610667pt;}
.y106{bottom:389.097333pt;}
.y215{bottom:389.496000pt;}
.y1b1{bottom:392.102667pt;}
.y31{bottom:397.380000pt;}
.y177{bottom:399.298667pt;}
.y1bf{bottom:400.440000pt;}
.y62{bottom:400.597333pt;}
.y1e4{bottom:405.264000pt;}
.y14c{bottom:406.494667pt;}
.y214{bottom:406.828000pt;}
.y12f{bottom:407.550667pt;}
.y1{bottom:409.824000pt;}
.y1b0{bottom:410.673333pt;}
.yd8{bottom:411.690667pt;}
.yba{bottom:416.118667pt;}
.ybb{bottom:416.720000pt;}
.y245{bottom:417.620000pt;}
.y1be{bottom:419.010667pt;}
.y61{bottom:419.166667pt;}
.yb9{bottom:420.001333pt;}
.y1e3{bottom:423.834667pt;}
.y213{bottom:424.161333pt;}
.y14a{bottom:425.064000pt;}
.y12e{bottom:426.121333pt;}
.y1af{bottom:429.242667pt;}
.y14b{bottom:429.886667pt;}
.y30{bottom:431.889333pt;}
.y176{bottom:432.280000pt;}
.y244{bottom:434.642667pt;}
.y60{bottom:437.737333pt;}
.y212{bottom:441.493333pt;}
.y1e2{bottom:442.404000pt;}
.y12d{bottom:444.690667pt;}
.y1ae{bottom:447.813333pt;}
.y2f{bottom:450.460000pt;}
.y1bd{bottom:450.680000pt;}
.y175{bottom:450.849333pt;}
.y243{bottom:451.665333pt;}
.yb8{bottom:455.820000pt;}
.y5f{bottom:456.308000pt;}
.y211{bottom:458.825333pt;}
.y149{bottom:459.109333pt;}
.y1e1{bottom:460.974667pt;}
.y12c{bottom:463.261333pt;}
.y174{bottom:464.832000pt;}
.y1ad{bottom:466.384000pt;}
.y242{bottom:468.688000pt;}
.y2e{bottom:469.030667pt;}
.y173{bottom:469.420000pt;}
.y5e{bottom:474.877333pt;}
.y1bc{bottom:475.745333pt;}
.yb7{bottom:476.104000pt;}
.y210{bottom:476.157333pt;}
.y1e0{bottom:479.545333pt;}
.y12b{bottom:481.832000pt;}
.y1ac{bottom:484.954667pt;}
.yb5{bottom:485.216000pt;}
.y241{bottom:485.710667pt;}
.y2d{bottom:487.601333pt;}
.y172{bottom:487.990667pt;}
.y197{bottom:488.466667pt;}
.y148{bottom:493.154667pt;}
.y5d{bottom:493.448000pt;}
.y20f{bottom:493.489333pt;}
.yb6{bottom:494.209333pt;}
.y1df{bottom:498.114667pt;}
.y12a{bottom:500.401333pt;}
.y240{bottom:502.733333pt;}
.y1ab{bottom:503.524000pt;}
.yb4{bottom:503.786667pt;}
.y2c{bottom:506.170667pt;}
.y171{bottom:506.560000pt;}
.y20e{bottom:510.821333pt;}
.y147{bottom:511.725333pt;}
.y5c{bottom:512.018667pt;}
.y1de{bottom:516.685333pt;}
.y129{bottom:518.972000pt;}
.y23f{bottom:519.756000pt;}
.y1aa{bottom:522.094667pt;}
.y2b{bottom:524.741333pt;}
.y170{bottom:525.130667pt;}
.yb1{bottom:527.492000pt;}
.y20d{bottom:528.153333pt;}
.yb2{bottom:528.361333pt;}
.y5b{bottom:530.589333pt;}
.yb0{bottom:531.642667pt;}
.y1dd{bottom:535.256000pt;}
.y23e{bottom:536.778667pt;}
.y128{bottom:537.542667pt;}
.yb3{bottom:539.489333pt;}
.y2a{bottom:543.312000pt;}
.y16f{bottom:543.701333pt;}
.y20c{bottom:545.486667pt;}
.y146{bottom:545.770667pt;}
.y5a{bottom:549.158667pt;}
.y23d{bottom:553.801333pt;}
.y1dc{bottom:553.825333pt;}
.y127{bottom:556.112000pt;}
.y16e{bottom:557.006667pt;}
.yaf{bottom:557.629333pt;}
.y29{bottom:561.881333pt;}
.y16d{bottom:562.270667pt;}
.y20b{bottom:562.818667pt;}
.y1a9{bottom:566.065333pt;}
.y59{bottom:567.729333pt;}
.y23c{bottom:570.824000pt;}
.y1db{bottom:572.396000pt;}
.y126{bottom:574.682667pt;}
.yae{bottom:576.200000pt;}
.y145{bottom:579.816000pt;}
.y20a{bottom:580.150667pt;}
.y28{bottom:580.452000pt;}
.y1a8{bottom:582.005333pt;}
.y1cf{bottom:582.113333pt;}
.y58{bottom:586.300000pt;}
.y23b{bottom:587.846667pt;}
.y16c{bottom:588.817333pt;}
.y1da{bottom:590.966667pt;}
.y125{bottom:593.253333pt;}
.y209{bottom:597.482667pt;}
.y16b{bottom:597.929333pt;}
.y1a7{bottom:597.945333pt;}
.y27{bottom:599.022667pt;}
.y57{bottom:604.869333pt;}
.yad{bottom:605.506667pt;}
.y1d9{bottom:609.536000pt;}
.yaa{bottom:610.245333pt;}
.y124{bottom:611.822667pt;}
.y144{bottom:613.861333pt;}
.y1a6{bottom:613.885333pt;}
.y208{bottom:614.814667pt;}
.yac{bottom:614.942667pt;}
.y26{bottom:617.592000pt;}
.y23a{bottom:621.892000pt;}
.y16a{bottom:622.384000pt;}
.yab{bottom:622.445333pt;}
.y56{bottom:623.440000pt;}
.y1d8{bottom:628.106667pt;}
.y1a5{bottom:629.825333pt;}
.y123{bottom:630.393333pt;}
.y207{bottom:632.146667pt;}
.y25{bottom:636.162667pt;}
.y239{bottom:638.914667pt;}
.y169{bottom:640.954667pt;}
.y55{bottom:642.010667pt;}
.y80{bottom:646.533333pt;}
.y1d7{bottom:646.677333pt;}
.y143{bottom:647.908000pt;}
.ya9{bottom:648.557333pt;}
.y122{bottom:648.964000pt;}
.y206{bottom:649.478667pt;}
.y1a4{bottom:652.433333pt;}
.y24{bottom:654.733333pt;}
.y238{bottom:655.937333pt;}
.y168{bottom:659.525333pt;}
.y54{bottom:660.580000pt;}
.y7f{bottom:665.104000pt;}
.y1d6{bottom:665.248000pt;}
.y205{bottom:666.812000pt;}
.ya8{bottom:667.128000pt;}
.y121{bottom:667.534667pt;}
.y237{bottom:672.961333pt;}
.y23{bottom:673.302667pt;}
.y142{bottom:674.448000pt;}
.y167{bottom:678.094667pt;}
.y53{bottom:679.150667pt;}
.ya7{bottom:681.109333pt;}
.ya6{bottom:681.116000pt;}
.y1a3{bottom:681.469333pt;}
.y204{bottom:684.144000pt;}
.ya5{bottom:685.698667pt;}
.y120{bottom:686.104000pt;}
.y1d5{bottom:687.802667pt;}
.y236{bottom:689.984000pt;}
.y22{bottom:691.873333pt;}
.y141{bottom:692.553333pt;}
.y196{bottom:693.736000pt;}
.y7e{bottom:695.868000pt;}
.y166{bottom:696.665333pt;}
.y52{bottom:697.721333pt;}
.y7d{bottom:699.149333pt;}
.y203{bottom:701.476000pt;}
.y11f{bottom:704.674667pt;}
.y235{bottom:707.006667pt;}
.y195{bottom:712.306667pt;}
.y165{bottom:715.236000pt;}
.y51{bottom:716.290667pt;}
.y1d4{bottom:718.368000pt;}
.yd7{bottom:718.612000pt;}
.y202{bottom:718.808000pt;}
.ya3{bottom:718.882667pt;}
.ya4{bottom:720.665333pt;}
.ya0{bottom:722.525333pt;}
.y140{bottom:722.773333pt;}
.y11e{bottom:723.245333pt;}
.y234{bottom:724.029333pt;}
.y21{bottom:727.446667pt;}
.y194{bottom:730.876000pt;}
.y9e{bottom:731.160000pt;}
.y7c{bottom:733.194667pt;}
.y50{bottom:734.861333pt;}
.y1d3{bottom:735.464000pt;}
.y201{bottom:736.140000pt;}
.yd6{bottom:737.181333pt;}
.y164{bottom:737.790667pt;}
.y233{bottom:741.052000pt;}
.ya1{bottom:741.166667pt;}
.y11d{bottom:741.814667pt;}
.ya2{bottom:742.949333pt;}
.y20{bottom:745.650667pt;}
.y9f{bottom:746.436000pt;}
.y193{bottom:749.446667pt;}
.y7b{bottom:751.764000pt;}
.y1d2{bottom:752.558667pt;}
.y4f{bottom:753.432000pt;}
.y200{bottom:753.472000pt;}
.y13f{bottom:754.442667pt;}
.yd5{bottom:755.752000pt;}
.y1f{bottom:756.138667pt;}
.y232{bottom:758.074667pt;}
.y1bb{bottom:758.436000pt;}
.y11c{bottom:760.385333pt;}
.y192{bottom:768.017333pt;}
.y163{bottom:769.206667pt;}
.y7a{bottom:770.334667pt;}
.y1ff{bottom:770.804000pt;}
.y13e{bottom:771.537333pt;}
.y4e{bottom:772.002667pt;}
.yd4{bottom:774.322667pt;}
.y1e{bottom:774.342667pt;}
.y231{bottom:775.097333pt;}
.y9d{bottom:778.289333pt;}
.y11b{bottom:778.956000pt;}
.y1d{bottom:784.832000pt;}
.y191{bottom:786.586667pt;}
.y162{bottom:787.776000pt;}
.y1fe{bottom:788.137333pt;}
.y79{bottom:788.905333pt;}
.y4d{bottom:790.572000pt;}
.y230{bottom:792.120000pt;}
.y9c{bottom:796.860000pt;}
.y11a{bottom:797.525333pt;}
.yd3{bottom:802.824000pt;}
.y1c{bottom:803.036000pt;}
.y190{bottom:805.157333pt;}
.y1fd{bottom:805.469333pt;}
.y161{bottom:806.346667pt;}
.y78{bottom:807.476000pt;}
.y4c{bottom:809.142667pt;}
.yd1{bottom:811.937333pt;}
.y1b{bottom:813.524000pt;}
.y9b{bottom:815.430667pt;}
.yd2{bottom:817.649333pt;}
.y119{bottom:820.081333pt;}
.y1fc{bottom:822.801333pt;}
.y18f{bottom:823.728000pt;}
.y160{bottom:824.917333pt;}
.y77{bottom:826.045333pt;}
.y22f{bottom:826.165333pt;}
.y4b{bottom:827.713333pt;}
.y1a{bottom:831.728000pt;}
.y9a{bottom:834.000000pt;}
.y1fb{bottom:840.133333pt;}
.yd0{bottom:840.821333pt;}
.y18e{bottom:842.297333pt;}
.y22e{bottom:843.188000pt;}
.y4a{bottom:846.282667pt;}
.y76{bottom:846.456000pt;}
.yce{bottom:849.933333pt;}
.y99{bottom:852.570667pt;}
.y118{bottom:853.058667pt;}
.y15f{bottom:854.040000pt;}
.ycf{bottom:855.210667pt;}
.y75{bottom:855.568000pt;}
.y1fa{bottom:857.465333pt;}
.y22d{bottom:860.210667pt;}
.y18d{bottom:860.868000pt;}
.y117{bottom:862.170667pt;}
.y15e{bottom:863.153333pt;}
.y49{bottom:864.853333pt;}
.y19{bottom:871.440000pt;}
.y98{bottom:872.854667pt;}
.y74{bottom:874.138667pt;}
.y1f9{bottom:874.797333pt;}
.y22c{bottom:877.233333pt;}
.y18c{bottom:879.438667pt;}
.y97{bottom:881.966667pt;}
.y48{bottom:883.424000pt;}
.y116{bottom:885.422667pt;}
.ycd{bottom:888.714667pt;}
.y18{bottom:890.010667pt;}
.y1f8{bottom:892.130667pt;}
.y73{bottom:892.709333pt;}
.y22b{bottom:894.256000pt;}
.y18b{bottom:898.009333pt;}
.y47{bottom:901.993333pt;}
.y96{bottom:902.457333pt;}
.y115{bottom:903.993333pt;}
.y72{bottom:911.278667pt;}
.y18a{bottom:916.578667pt;}
.ycc{bottom:917.217333pt;}
.y46{bottom:920.564000pt;}
.y95{bottom:921.026667pt;}
.y1f7{bottom:922.922667pt;}
.y17{bottom:924.521333pt;}
.ycb{bottom:926.329333pt;}
.y22a{bottom:928.301333pt;}
.y71{bottom:929.849333pt;}
.y114{bottom:933.117333pt;}
.y189{bottom:935.149333pt;}
.y45{bottom:939.134667pt;}
.y94{bottom:939.597333pt;}
.y113{bottom:942.229333pt;}
.y1f6{bottom:944.240000pt;}
.y229{bottom:945.324000pt;}
.yca{bottom:949.768000pt;}
.y16{bottom:952.377333pt;}
.y188{bottom:953.720000pt;}
.y44{bottom:957.704000pt;}
.y93{bottom:958.168000pt;}
.yc9{bottom:958.880000pt;}
.y228{bottom:962.346667pt;}
.y187{bottom:972.289333pt;}
.y43{bottom:976.274667pt;}
.y1f5{bottom:978.750667pt;}
.y227{bottom:979.369333pt;}
.y15{bottom:980.232000pt;}
.y90{bottom:982.064000pt;}
.y92{bottom:982.225333pt;}
.y186{bottom:990.860000pt;}
.y8f{bottom:991.337333pt;}
.y42{bottom:994.845333pt;}
.y1f4{bottom:996.082667pt;}
.y226{bottom:996.392000pt;}
.y91{bottom:1000.330667pt;}
.y41{bottom:1013.414667pt;}
.y40{bottom:1066.841333pt;}
.h1f{height:2.125355pt;}
.h39{height:22.443895pt;}
.h35{height:22.475776pt;}
.h38{height:22.553067pt;}
.h7{height:23.209028pt;}
.h37{height:23.910400pt;}
.h3a{height:24.441067pt;}
.h3b{height:24.443733pt;}
.h3c{height:26.473229pt;}
.h3d{height:26.833067pt;}
.h36{height:27.009067pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h4b{height:29.397999pt;}
.h25{height:29.599908pt;}
.h8{height:30.945242pt;}
.h48{height:31.131733pt;}
.hb{height:31.157778pt;}
.h27{height:31.558400pt;}
.h3f{height:32.836730pt;}
.h16{height:34.813542pt;}
.h17{height:35.052646pt;}
.h42{height:38.415786pt;}
.h18{height:38.575187pt;}
.h9{height:38.681455pt;}
.h4{height:38.947124pt;}
.h13{height:41.285014pt;}
.he{height:41.524400pt;}
.h22{height:41.552666pt;}
.h52{height:44.431607pt;}
.h4f{height:44.436941pt;}
.h1d{height:44.757999pt;}
.ha{height:46.099251pt;}
.h4d{height:46.280021pt;}
.h19{height:47.568666pt;}
.h6{height:48.486756pt;}
.hf{height:48.683332pt;}
.h46{height:48.688666pt;}
.h44{height:50.331332pt;}
.h26{height:50.533242pt;}
.h43{height:50.843733pt;}
.h14{height:51.541242pt;}
.h15{height:51.806788pt;}
.h21{height:53.219695pt;}
.h49{height:55.930575pt;}
.h30{height:56.966400pt;}
.h24{height:57.237242pt;}
.h47{height:59.142400pt;}
.h4c{height:59.855067pt;}
.h20{height:60.350362pt;}
.h29{height:61.128021pt;}
.h2c{height:61.133355pt;}
.h33{height:61.808666pt;}
.h32{height:66.869999pt;}
.h2d{height:66.875332pt;}
.h45{height:67.013999pt;}
.h2a{height:67.941999pt;}
.h5{height:69.148877pt;}
.h50{height:70.298452pt;}
.h28{height:70.299332pt;}
.h51{height:70.558788pt;}
.h4a{height:71.145455pt;}
.h2e{height:74.258688pt;}
.hc{height:74.915124pt;}
.h12{height:74.920458pt;}
.h11{height:75.129455pt;}
.h1b{height:75.134788pt;}
.h4e{height:77.253014pt;}
.h3e{height:77.497733pt;}
.h10{height:77.972400pt;}
.h1a{height:78.803124pt;}
.h41{height:79.464021pt;}
.h23{height:80.660122pt;}
.h1c{height:84.656666pt;}
.h31{height:87.979332pt;}
.h40{height:89.953067pt;}
.h2f{height:92.374400pt;}
.h2b{height:97.731695pt;}
.h1e{height:111.048021pt;}
.hd{height:111.368458pt;}
.h34{height:285.906667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:620.440667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8b{left:3.067333pt;}
.x8c{left:13.786000pt;}
.x8d{left:37.055333pt;}
.x1{left:47.621333pt;}
.x8f{left:74.206000pt;}
.xe7{left:76.309333pt;}
.x91{left:81.198667pt;}
.x92{left:82.822667pt;}
.x90{left:83.860667pt;}
.x8a{left:86.441333pt;}
.x93{left:103.348000pt;}
.x8e{left:125.734667pt;}
.x95{left:165.213333pt;}
.x94{left:167.440000pt;}
.x96{left:169.772667pt;}
.x98{left:204.456000pt;}
.x97{left:205.816000pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x99{left:223.729333pt;}
.x4e{left:229.828000pt;}
.xe4{left:234.689333pt;}
.x3{left:239.509333pt;}
.xda{left:241.776000pt;}
.x9a{left:247.995333pt;}
.x5{left:250.204000pt;}
.xdb{left:256.765333pt;}
.xe3{left:257.996000pt;}
.x17{left:260.801333pt;}
.x31{left:262.016000pt;}
.x67{left:263.256000pt;}
.xc0{left:265.388000pt;}
.xdd{left:266.412000pt;}
.xb6{left:270.061333pt;}
.x42{left:271.813333pt;}
.x55{left:273.114667pt;}
.x18{left:274.085333pt;}
.x3a{left:275.760000pt;}
.x14{left:277.834667pt;}
.x32{left:279.098667pt;}
.x9b{left:281.892667pt;}
.xc9{left:282.814667pt;}
.xca{left:286.202667pt;}
.x74{left:290.753333pt;}
.xb5{left:292.926667pt;}
.x24{left:294.197333pt;}
.xb4{left:295.304000pt;}
.x4d{left:296.225333pt;}
.x4a{left:298.422667pt;}
.xcb{left:299.485333pt;}
.x25{left:307.481333pt;}
.xc1{left:308.682667pt;}
.x4b{left:309.641333pt;}
.x26{left:310.742667pt;}
.xdc{left:311.672000pt;}
.x80{left:313.829333pt;}
.x1b{left:314.889333pt;}
.x75{left:317.410667pt;}
.x9e{left:319.168000pt;}
.x6{left:323.476000pt;}
.x9d{left:324.727333pt;}
.xa5{left:326.318667pt;}
.x1c{left:328.173333pt;}
.x7{left:330.118667pt;}
.x1d{left:331.520000pt;}
.x81{left:332.814667pt;}
.x68{left:335.237333pt;}
.x9c{left:338.306000pt;}
.x82{left:339.322667pt;}
.xa6{left:341.808000pt;}
.xd7{left:342.757333pt;}
.x69{left:343.808000pt;}
.x1e{left:344.804000pt;}
.xa7{left:350.162667pt;}
.xd8{left:351.556000pt;}
.x44{left:356.048000pt;}
.x45{left:362.689333pt;}
.x83{left:364.096000pt;}
.x6a{left:366.888000pt;}
.x5d{left:371.700000pt;}
.xc2{left:375.201333pt;}
.x63{left:376.220000pt;}
.xc{left:379.281333pt;}
.xaa{left:380.410667pt;}
.xb3{left:383.449333pt;}
.xb2{left:384.618667pt;}
.xd{left:385.924000pt;}
.x59{left:389.594667pt;}
.x2c{left:391.844000pt;}
.xb7{left:392.862667pt;}
.x5e{left:395.500000pt;}
.x56{left:400.598667pt;}
.x2d{left:402.744000pt;}
.x37{left:404.054667pt;}
.xcf{left:405.114667pt;}
.x76{left:406.680000pt;}
.xa8{left:408.226667pt;}
.x10{left:410.586667pt;}
.xbf{left:413.488000pt;}
.x51{left:415.069333pt;}
.x57{left:416.013333pt;}
.x11{left:417.229333pt;}
.x6d{left:418.996000pt;}
.x12{left:420.616000pt;}
.xb8{left:422.638667pt;}
.xd0{left:424.049333pt;}
.x13{left:427.257333pt;}
.xe{left:429.960000pt;}
.x21{left:431.150667pt;}
.x64{left:432.265333pt;}
.xa9{left:434.996000pt;}
.xf{left:436.602667pt;}
.x79{left:437.825333pt;}
.xbd{left:439.548000pt;}
.xb0{left:440.997333pt;}
.xd3{left:442.741333pt;}
.xbe{left:444.177333pt;}
.x7a{left:446.013333pt;}
.x4f{left:446.960000pt;}
.x48{left:448.378667pt;}
.x5f{left:450.580000pt;}
.x71{left:452.357333pt;}
.x41{left:455.816000pt;}
.xe2{left:457.208000pt;}
.x2e{left:458.288000pt;}
.x9f{left:460.572667pt;}
.xb9{left:462.234667pt;}
.x27{left:463.461333pt;}
.xd1{left:467.749333pt;}
.x52{left:470.110667pt;}
.xc8{left:471.172000pt;}
.x65{left:472.341333pt;}
.xd4{left:474.301333pt;}
.x28{left:476.745333pt;}
.xd9{left:479.645333pt;}
.xaf{left:480.972000pt;}
.x4c{left:482.770667pt;}
.xa0{left:485.166667pt;}
.xe0{left:486.380000pt;}
.x6e{left:487.328000pt;}
.x3b{left:494.006667pt;}
.x72{left:494.909333pt;}
.x50{left:496.142667pt;}
.x2f{left:498.370667pt;}
.x53{left:501.186667pt;}
.x3c{left:502.654667pt;}
.x66{left:505.537333pt;}
.x38{left:506.602667pt;}
.x60{left:508.065333pt;}
.x1f{left:510.177333pt;}
.x49{left:512.777333pt;}
.x46{left:514.468000pt;}
.xc3{left:516.206667pt;}
.x89{left:517.577333pt;}
.x61{left:520.330667pt;}
.x54{left:522.550667pt;}
.x20{left:523.461333pt;}
.x73{left:525.889333pt;}
.x6f{left:527.720000pt;}
.x39{left:531.585333pt;}
.x19{left:533.773333pt;}
.x22{left:535.396000pt;}
.x7f{left:539.414667pt;}
.x70{left:542.318667pt;}
.x1a{left:547.057333pt;}
.x23{left:548.680000pt;}
.xa1{left:550.310667pt;}
.x43{left:551.584000pt;}
.xa2{left:554.702000pt;}
.xa3{left:557.025333pt;}
.x5a{left:558.313333pt;}
.x29{left:560.522667pt;}
.x8{left:561.774667pt;}
.xa4{left:564.131333pt;}
.x9{left:568.416000pt;}
.xa{left:571.804000pt;}
.x2a{left:573.806667pt;}
.x33{left:575.678667pt;}
.xb{left:578.445333pt;}
.xae{left:580.681333pt;}
.xc4{left:582.037333pt;}
.xd5{left:583.162667pt;}
.x2b{left:584.690667pt;}
.xac{left:587.717333pt;}
.x34{left:591.773333pt;}
.x84{left:594.248000pt;}
.xc5{left:596.777333pt;}
.x47{left:603.324000pt;}
.x85{left:608.022667pt;}
.xc6{left:610.452000pt;}
.xad{left:613.090667pt;}
.x86{left:614.393333pt;}
.x15{left:624.580000pt;}
.xcc{left:627.625333pt;}
.xe1{left:629.157333pt;}
.x16{left:631.222667pt;}
.x87{left:632.944000pt;}
.x77{left:637.357333pt;}
.xcd{left:650.162667pt;}
.x3d{left:654.117333pt;}
.xde{left:655.280000pt;}
.xc7{left:657.109333pt;}
.x62{left:658.004000pt;}
.xe5{left:659.812000pt;}
.x58{left:664.120000pt;}
.x6b{left:667.185333pt;}
.xb1{left:669.076000pt;}
.xd2{left:672.160000pt;}
.x7b{left:673.817333pt;}
.xd6{left:676.220000pt;}
.x3e{left:677.757333pt;}
.xce{left:680.725333pt;}
.x35{left:684.586667pt;}
.x88{left:686.964000pt;}
.xdf{left:687.889333pt;}
.x78{left:691.205333pt;}
.xbc{left:695.342667pt;}
.x7c{left:696.368000pt;}
.xba{left:699.618667pt;}
.x3f{left:704.034667pt;}
.x6c{left:705.528000pt;}
.xab{left:710.441333pt;}
.xbb{left:712.933333pt;}
.xe6{left:714.117333pt;}
.x5b{left:719.640000pt;}
.x7d{left:723.646667pt;}
.x7e{left:724.898667pt;}
.x40{left:725.898667pt;}
.x30{left:731.540000pt;}
.x5c{left:736.013333pt;}
.x36{left:744.734667pt;}
}




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