
    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_167382fd45e3a4cfd18e8654.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.077000;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_10fcd7eaeeb53ab3042c1f31.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.084000;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_c326c788b83c9155b1152e5d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941000;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_52d0d6c487996e8083f0f88d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.943000;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_87e6c2ccccdd48f19a4d261c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.954000;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_18b8965a5a0b5e677197c10d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.077000;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_10fcd7eaeeb53ab3042c1f31.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084000;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_6fb7d49e358e468cf8be8d29.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.838000;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_b0a9b450a6701f0de3fc6eaa.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.575000;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_0cb31e9c80037240257abb18.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.575000;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_a1cbf29f5e186e5c551d0ccb.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.575000;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_2b551aa155d470c5bfca2790.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.575000;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_76ac24700aade625d214a117.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.575000;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_e2475fd93c89136c3ebe9ac7.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.575000;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_a702a779454d0f4f0249800a.woff2')format("woff");}.fff{font-family:fff;line-height:1.575000;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_833122541136d35033b01de0.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_b2532662e261ffbc0bd9ac31.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_fb8cb8600e4e906c24cb6cc5.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_33d19e091fd670986a4a7286.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_127e1279cdf471d995ef2649.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_04d2c40a056404923eb123ce.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_81f14bef982ff0c815887082.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_3d725a4f913b66478bc6ceee.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_8d2327408b328541fe0c8159.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_8d2327408b328541fe0c8159.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_a45955fc7fbca789b6e83462.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_692bc3d87b6380e9c76c1d3e.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_d2e25e06840048cae335ff2b.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_9cd3999d37d5d558e4a3d9af.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.575000;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;}
.m3{transform:matrix(0.199238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199238,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.243065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243065,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.243067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243067,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.243068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243068,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.243075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243075,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.243078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243078,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251442,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-19.980000px;}
.v2{vertical-align:-17.982000px;}
.v6{vertical-align:-2.762400px;}
.v4{vertical-align:-1.367523px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.493508px;}
.v3{vertical-align:2.789172px;}
.ls22{letter-spacing:-5.082000px;}
.ls52{letter-spacing:-4.860000px;}
.ls87{letter-spacing:-3.672000px;}
.ls2d{letter-spacing:-3.564000px;}
.ls53{letter-spacing:-3.348000px;}
.ls56{letter-spacing:-3.132000px;}
.ls74{letter-spacing:-3.024000px;}
.ls2f{letter-spacing:-2.970000px;}
.ls8e{letter-spacing:-2.754000px;}
.ls28{letter-spacing:-2.592000px;}
.ls8a{letter-spacing:-2.214000px;}
.ls81{letter-spacing:-2.160000px;}
.ls91{letter-spacing:-2.052000px;}
.ls4c{letter-spacing:-1.944000px;}
.ls29{letter-spacing:-1.848000px;}
.ls42{letter-spacing:-1.380000px;}
.ls94{letter-spacing:-1.080000px;}
.ls2c{letter-spacing:-1.056000px;}
.lsa1{letter-spacing:-0.972000px;}
.ls13{letter-spacing:-0.960000px;}
.ls2b{letter-spacing:-0.924000px;}
.ls3f{letter-spacing:-0.900000px;}
.ls2e{letter-spacing:-0.660000px;}
.lsc{letter-spacing:-0.630000px;}
.ls96{letter-spacing:-0.486000px;}
.ls1e{letter-spacing:-0.462000px;}
.ls10{letter-spacing:-0.420000px;}
.ls23{letter-spacing:-0.378000px;}
.ls50{letter-spacing:-0.303894px;}
.ls84{letter-spacing:-0.303494px;}
.ls63{letter-spacing:-0.303350px;}
.ls78{letter-spacing:-0.302886px;}
.lsa5{letter-spacing:-0.302508px;}
.ls57{letter-spacing:-0.278917px;}
.ls64{letter-spacing:-0.278420px;}
.lsd{letter-spacing:-0.270000px;}
.ls38{letter-spacing:-0.268944px;}
.ls21{letter-spacing:-0.264000px;}
.ls37{letter-spacing:-0.215155px;}
.ls4f{letter-spacing:-0.202596px;}
.ls8b{letter-spacing:-0.202330px;}
.ls20{letter-spacing:-0.198000px;}
.ls30{letter-spacing:-0.189963px;}
.ls4d{letter-spacing:-0.185945px;}
.ls82{letter-spacing:-0.185700px;}
.ls60{letter-spacing:-0.185614px;}
.ls75{letter-spacing:-0.185328px;}
.lsa2{letter-spacing:-0.185098px;}
.lsf{letter-spacing:-0.180000px;}
.ls1f{letter-spacing:-0.132000px;}
.ls8f{letter-spacing:-0.108000px;}
.ls3a{letter-spacing:-0.107578px;}
.ls3d{letter-spacing:-0.066000px;}
.ls39{letter-spacing:-0.053789px;}
.lsa{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.052125px;}
.ls34{letter-spacing:0.053789px;}
.ls24{letter-spacing:0.054000px;}
.ls16{letter-spacing:0.054606px;}
.ls43{letter-spacing:0.060000px;}
.lse{letter-spacing:0.108000px;}
.ls40{letter-spacing:0.120000px;}
.lsa4{letter-spacing:0.151254px;}
.ls77{letter-spacing:0.151443px;}
.ls62{letter-spacing:0.151675px;}
.ls95{letter-spacing:0.151747px;}
.ls54{letter-spacing:0.151947px;}
.ls26{letter-spacing:0.151970px;}
.ls3{letter-spacing:0.174120px;}
.ls25{letter-spacing:0.189963px;}
.ls2a{letter-spacing:0.198000px;}
.ls14{letter-spacing:0.223395px;}
.lsa3{letter-spacing:0.231372px;}
.ls76{letter-spacing:0.231660px;}
.ls61{letter-spacing:0.232017px;}
.ls83{letter-spacing:0.232125px;}
.ls4e{letter-spacing:0.232431px;}
.ls12{letter-spacing:0.240000px;}
.ls15{letter-spacing:0.241267px;}
.ls36{letter-spacing:0.264000px;}
.ls31{letter-spacing:0.268944px;}
.ls1c{letter-spacing:0.270000px;}
.ls97{letter-spacing:0.277646px;}
.ls65{letter-spacing:0.277992px;}
.ls58{letter-spacing:0.278420px;}
.ls79{letter-spacing:0.278550px;}
.ls44{letter-spacing:0.278917px;}
.ls4{letter-spacing:0.299400px;}
.ls2{letter-spacing:0.300000px;}
.ls93{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.359400px;}
.lsb{letter-spacing:0.450000px;}
.ls7{letter-spacing:0.504000px;}
.ls9{letter-spacing:0.506358px;}
.ls19{letter-spacing:0.554400px;}
.ls6{letter-spacing:0.576000px;}
.ls27{letter-spacing:0.648000px;}
.ls35{letter-spacing:0.660000px;}
.ls18{letter-spacing:0.976800px;}
.ls1d{letter-spacing:1.254000px;}
.ls3b{letter-spacing:1.320000px;}
.ls5{letter-spacing:1.325520px;}
.ls0{letter-spacing:1.350000px;}
.ls11{letter-spacing:1.440000px;}
.ls3e{letter-spacing:1.452000px;}
.ls3c{letter-spacing:1.518000px;}
.ls1b{letter-spacing:1.584000px;}
.ls41{letter-spacing:1.620000px;}
.ls1a{letter-spacing:4.740000px;}
.ls8{letter-spacing:6.904320px;}
.ls55{letter-spacing:70.745133px;}
.ls69{letter-spacing:70.925805px;}
.ls5b{letter-spacing:71.034552px;}
.ls49{letter-spacing:71.161845px;}
.ls8d{letter-spacing:74.164450px;}
.ls9d{letter-spacing:74.265714px;}
.ls6e{letter-spacing:74.358513px;}
.ls7f{letter-spacing:74.507875px;}
.ls5e{letter-spacing:83.471918px;}
.ls4a{letter-spacing:83.621499px;}
.ls9e{letter-spacing:86.718960px;}
.ls6f{letter-spacing:86.827320px;}
.ls7d{letter-spacing:87.001728px;}
.ls73{letter-spacing:88.021785px;}
.ls86{letter-spacing:88.558781px;}
.ls98{letter-spacing:88.937352px;}
.ls6b{letter-spacing:89.048484px;}
.ls85{letter-spacing:89.227354px;}
.ls8c{letter-spacing:89.541984px;}
.ls92{letter-spacing:89.593166px;}
.ls72{letter-spacing:89.813214px;}
.ls6a{letter-spacing:95.812938px;}
.ls88{letter-spacing:96.005395px;}
.ls9f{letter-spacing:97.054650px;}
.ls67{letter-spacing:97.175925px;}
.ls5a{letter-spacing:97.324920px;}
.ls89{letter-spacing:97.371120px;}
.ls4b{letter-spacing:97.499325px;}
.ls45{letter-spacing:98.208411px;}
.ls9b{letter-spacing:104.667768px;}
.ls9c{letter-spacing:104.768604px;}
.ls68{letter-spacing:104.798556px;}
.ls5c{letter-spacing:104.959238px;}
.ls7c{letter-spacing:105.009062px;}
.ls5f{letter-spacing:105.060355px;}
.ls90{letter-spacing:105.110227px;}
.ls47{letter-spacing:105.147324px;}
.lsa0{letter-spacing:106.245306px;}
.ls99{letter-spacing:120.398184px;}
.ls6c{letter-spacing:120.548628px;}
.ls7a{letter-spacing:120.790771px;}
.ls70{letter-spacing:122.719311px;}
.ls7e{letter-spacing:122.965814px;}
.ls71{letter-spacing:159.721884px;}
.ls80{letter-spacing:160.042714px;}
.ls9a{letter-spacing:161.942616px;}
.ls6d{letter-spacing:162.144972px;}
.ls7b{letter-spacing:162.470669px;}
.ls5d{letter-spacing:163.404749px;}
.ls48{letter-spacing:163.697568px;}
.ls66{letter-spacing:165.628161px;}
.ls59{letter-spacing:165.882110px;}
.ls46{letter-spacing:166.179369px;}
.ls51{letter-spacing:167.901435px;}
.ls32{letter-spacing:492.866774px;}
.ls33{letter-spacing:506.313974px;}
.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;}
}
.ws0{word-spacing:-69.496080px;}
.wsa{word-spacing:-20.851046px;}
.ws20{word-spacing:-15.246000px;}
.wsbd{word-spacing:-15.180000px;}
.wsbe{word-spacing:-15.114000px;}
.wsbc{word-spacing:-14.982000px;}
.ws1c{word-spacing:-14.916000px;}
.ws7{word-spacing:-13.860000px;}
.ws8{word-spacing:-12.960000px;}
.ws2{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.240000px;}
.ws6{word-spacing:-12.000000px;}
.wsbf{word-spacing:-11.820000px;}
.ws1e{word-spacing:-11.748000px;}
.ws199{word-spacing:-11.718000px;}
.ws9{word-spacing:-11.460000px;}
.ws85{word-spacing:-11.403226px;}
.ws1d{word-spacing:-9.794400px;}
.wsf9{word-spacing:-9.669130px;}
.ws173{word-spacing:-9.656400px;}
.ws12b{word-spacing:-9.651907px;}
.ws14d{word-spacing:-9.637056px;}
.ws1a5{word-spacing:-9.625075px;}
.ws190{word-spacing:-9.234000px;}
.ws3{word-spacing:-9.198000px;}
.ws1f{word-spacing:-8.910000px;}
.ws1{word-spacing:-8.694000px;}
.ws48{word-spacing:-7.884000px;}
.wsc9{word-spacing:-6.072000px;}
.ws4{word-spacing:-5.729724px;}
.ws76{word-spacing:-5.676000px;}
.ws2e{word-spacing:-5.610000px;}
.wsd5{word-spacing:-5.346000px;}
.ws67{word-spacing:-5.280000px;}
.ws72{word-spacing:-5.082000px;}
.wsac{word-spacing:-4.752000px;}
.wseb{word-spacing:-4.260000px;}
.ws28{word-spacing:-3.828000px;}
.ws5b{word-spacing:-3.234000px;}
.wsb0{word-spacing:-2.772000px;}
.ws18{word-spacing:-2.520000px;}
.wsc7{word-spacing:-2.508000px;}
.ws99{word-spacing:-2.442000px;}
.ws95{word-spacing:-2.310000px;}
.ws5a{word-spacing:-2.178000px;}
.ws26{word-spacing:-2.112000px;}
.wse1{word-spacing:-2.100000px;}
.wsc0{word-spacing:-2.052000px;}
.wsa1{word-spacing:-2.046000px;}
.ws6c{word-spacing:-1.848000px;}
.ws46{word-spacing:-1.836000px;}
.wsab{word-spacing:-1.566000px;}
.ws22{word-spacing:-1.386000px;}
.wsb9{word-spacing:-1.188000px;}
.wsdd{word-spacing:-1.140000px;}
.wsec{word-spacing:-1.020000px;}
.wsc4{word-spacing:-0.990000px;}
.ws3c{word-spacing:-0.924000px;}
.ws96{word-spacing:-0.858000px;}
.ws16{word-spacing:-0.840000px;}
.ws17{word-spacing:-0.660000px;}
.ws59{word-spacing:-0.648000px;}
.ws122{word-spacing:-0.506490px;}
.ws145{word-spacing:-0.505584px;}
.ws16a{word-spacing:-0.504810px;}
.ws189{word-spacing:-0.404659px;}
.ws16c{word-spacing:-0.403848px;}
.ws1ba{word-spacing:-0.403344px;}
.ws75{word-spacing:-0.396000px;}
.ws15{word-spacing:-0.360000px;}
.ws18c{word-spacing:-0.354077px;}
.ws31{word-spacing:-0.330000px;}
.ws19b{word-spacing:-0.324000px;}
.ws117{word-spacing:-0.278917px;}
.ws188{word-spacing:-0.278550px;}
.ws144{word-spacing:-0.278420px;}
.ws169{word-spacing:-0.277992px;}
.ws1b9{word-spacing:-0.277646px;}
.wsa8{word-spacing:-0.266022px;}
.ws192{word-spacing:-0.151747px;}
.ws119{word-spacing:-0.139459px;}
.ws18d{word-spacing:-0.139275px;}
.ws147{word-spacing:-0.139210px;}
.ws16e{word-spacing:-0.138996px;}
.ws1bc{word-spacing:-0.138823px;}
.ws1b{word-spacing:-0.135029px;}
.ws11{word-spacing:-0.108000px;}
.wsc{word-spacing:-0.072000px;}
.wsf4{word-spacing:-0.060000px;}
.ws40{word-spacing:-0.054000px;}
.ws18b{word-spacing:-0.050582px;}
.ws16d{word-spacing:-0.050481px;}
.ws1a{word-spacing:-0.017872px;}
.wsb{word-spacing:0.000000px;}
.ws13{word-spacing:0.054000px;}
.wsdb{word-spacing:0.066000px;}
.ws80{word-spacing:0.075985px;}
.wsa6{word-spacing:0.107578px;}
.ws10{word-spacing:0.108000px;}
.ws81{word-spacing:0.113978px;}
.ws2c{word-spacing:0.132000px;}
.ws7f{word-spacing:0.151970px;}
.wsa4{word-spacing:0.161366px;}
.ws30{word-spacing:0.198000px;}
.wsa2{word-spacing:0.215155px;}
.ws19{word-spacing:0.223395px;}
.wse3{word-spacing:0.300000px;}
.ws1bb{word-spacing:0.302508px;}
.ws16b{word-spacing:0.302886px;}
.ws146{word-spacing:0.303350px;}
.ws18a{word-spacing:0.303494px;}
.ws118{word-spacing:0.303894px;}
.wsa7{word-spacing:0.322733px;}
.wsd{word-spacing:0.330000px;}
.wsa3{word-spacing:0.376522px;}
.ws7e{word-spacing:0.378000px;}
.wsae{word-spacing:0.396000px;}
.ws25{word-spacing:0.462000px;}
.wsa9{word-spacing:0.484099px;}
.ws1a2{word-spacing:0.486000px;}
.wsa5{word-spacing:0.537888px;}
.ws71{word-spacing:0.594000px;}
.wse6{word-spacing:0.600000px;}
.wsaa{word-spacing:0.645466px;}
.ws5d{word-spacing:0.660000px;}
.wsf{word-spacing:0.720000px;}
.ws98{word-spacing:0.858000px;}
.ws29{word-spacing:0.924000px;}
.ws1b8{word-spacing:0.972000px;}
.wse{word-spacing:1.080000px;}
.ws9f{word-spacing:1.122000px;}
.ws12{word-spacing:1.134000px;}
.ws79{word-spacing:1.188000px;}
.wsc3{word-spacing:1.320000px;}
.wsf0{word-spacing:1.380000px;}
.ws38{word-spacing:1.452000px;}
.ws23{word-spacing:1.518000px;}
.wsc1{word-spacing:1.782000px;}
.ws5e{word-spacing:1.848000px;}
.ws115{word-spacing:1.944000px;}
.ws2b{word-spacing:1.980000px;}
.ws3f{word-spacing:1.998000px;}
.ws198{word-spacing:2.052000px;}
.ws68{word-spacing:2.112000px;}
.ws187{word-spacing:2.160000px;}
.ws3e{word-spacing:2.268000px;}
.ws24{word-spacing:2.508000px;}
.ws143{word-spacing:2.592000px;}
.ws194{word-spacing:2.754000px;}
.ws116{word-spacing:2.916000px;}
.ws11f{word-spacing:2.970000px;}
.ws168{word-spacing:3.024000px;}
.wsc6{word-spacing:3.102000px;}
.ws126{word-spacing:3.132000px;}
.wsef{word-spacing:3.300000px;}
.ws121{word-spacing:3.348000px;}
.wscb{word-spacing:3.366000px;}
.wsa0{word-spacing:3.432000px;}
.ws18f{word-spacing:3.672000px;}
.ws37{word-spacing:3.696000px;}
.ws7d{word-spacing:3.942000px;}
.ws33{word-spacing:3.960000px;}
.wsc5{word-spacing:4.092000px;}
.ws78{word-spacing:4.104000px;}
.wsdc{word-spacing:4.356000px;}
.wsee{word-spacing:4.680000px;}
.ws2f{word-spacing:4.752000px;}
.wse2{word-spacing:4.800000px;}
.wse4{word-spacing:4.860000px;}
.wsce{word-spacing:4.950000px;}
.ws42{word-spacing:4.968000px;}
.wsd6{word-spacing:5.016000px;}
.ws41{word-spacing:5.130000px;}
.ws14{word-spacing:5.280000px;}
.wse0{word-spacing:5.460000px;}
.ws27{word-spacing:5.544000px;}
.ws43{word-spacing:5.562000px;}
.ws3a{word-spacing:5.676000px;}
.ws6f{word-spacing:5.724000px;}
.wsd0{word-spacing:5.808000px;}
.ws6e{word-spacing:5.832000px;}
.wsaf{word-spacing:5.874000px;}
.ws45{word-spacing:5.994000px;}
.wsd8{word-spacing:6.006000px;}
.ws44{word-spacing:6.048000px;}
.ws6a{word-spacing:6.138000px;}
.wse8{word-spacing:6.540000px;}
.ws69{word-spacing:6.798000px;}
.ws5c{word-spacing:7.194000px;}
.wsbb{word-spacing:7.326000px;}
.wsb7{word-spacing:7.392000px;}
.wscf{word-spacing:7.656000px;}
.ws97{word-spacing:7.854000px;}
.wsda{word-spacing:7.986000px;}
.wse5{word-spacing:8.100000px;}
.wsd9{word-spacing:8.184000px;}
.ws6d{word-spacing:8.316000px;}
.ws7a{word-spacing:8.478000px;}
.wsad{word-spacing:8.778000px;}
.ws74{word-spacing:8.844000px;}
.ws36{word-spacing:8.910000px;}
.wsd4{word-spacing:9.174000px;}
.wse7{word-spacing:9.240000px;}
.wse9{word-spacing:9.300000px;}
.ws77{word-spacing:9.306000px;}
.wsca{word-spacing:9.438000px;}
.wsb4{word-spacing:9.504000px;}
.wsc2{word-spacing:9.570000px;}
.ws3d{word-spacing:9.636000px;}
.wsdf{word-spacing:9.840000px;}
.ws9a{word-spacing:10.296000px;}
.ws5f{word-spacing:10.428000px;}
.ws34{word-spacing:10.494000px;}
.wsd3{word-spacing:10.692000px;}
.ws7c{word-spacing:11.394000px;}
.wsf2{word-spacing:11.400000px;}
.ws65{word-spacing:11.616000px;}
.ws61{word-spacing:11.748000px;}
.ws63{word-spacing:11.880000px;}
.wscc{word-spacing:12.408000px;}
.ws35{word-spacing:12.606000px;}
.wsb6{word-spacing:12.672000px;}
.ws9e{word-spacing:13.002000px;}
.ws3b{word-spacing:13.134000px;}
.ws9b{word-spacing:13.200000px;}
.wsf1{word-spacing:13.260000px;}
.ws6b{word-spacing:13.794000px;}
.ws2a{word-spacing:14.190000px;}
.ws32{word-spacing:14.586000px;}
.ws62{word-spacing:15.114000px;}
.ws60{word-spacing:15.246000px;}
.ws39{word-spacing:15.642000px;}
.wsd2{word-spacing:15.708000px;}
.wsba{word-spacing:16.170000px;}
.ws7b{word-spacing:16.740000px;}
.ws2d{word-spacing:16.764000px;}
.wsc8{word-spacing:18.282000px;}
.wsea{word-spacing:18.420000px;}
.ws73{word-spacing:18.546000px;}
.ws64{word-spacing:18.810000px;}
.wsb2{word-spacing:19.074000px;}
.wsed{word-spacing:20.340000px;}
.wsde{word-spacing:21.120000px;}
.ws94{word-spacing:21.714000px;}
.wscd{word-spacing:21.978000px;}
.wsb5{word-spacing:22.044000px;}
.ws1a7{word-spacing:22.088275px;}
.ws14c{word-spacing:22.100364px;}
.ws12a{word-spacing:22.134422px;}
.ws172{word-spacing:22.144725px;}
.wsf8{word-spacing:22.173917px;}
.wsd7{word-spacing:22.242000px;}
.ws9c{word-spacing:23.430000px;}
.wsb1{word-spacing:23.628000px;}
.wsb3{word-spacing:25.542000px;}
.wsf3{word-spacing:26.040000px;}
.wsd1{word-spacing:26.466000px;}
.wsb8{word-spacing:26.532000px;}
.ws21{word-spacing:26.730000px;}
.ws9d{word-spacing:28.908000px;}
.ws66{word-spacing:32.142000px;}
.ws70{word-spacing:34.020000px;}
.ws13b{word-spacing:46.592435px;}
.ws125{word-spacing:46.675376px;}
.ws1ad{word-spacing:52.382621px;}
.ws153{word-spacing:52.447824px;}
.ws131{word-spacing:52.528649px;}
.ws179{word-spacing:52.553100px;}
.wsff{word-spacing:52.622378px;}
.ws58{word-spacing:56.608974px;}
.ws1af{word-spacing:60.047838px;}
.ws186{word-spacing:60.243638px;}
.ws15c{word-spacing:60.829605px;}
.ws13d{word-spacing:60.922872px;}
.ws105{word-spacing:61.032045px;}
.ws1aa{word-spacing:61.313580px;}
.ws150{word-spacing:61.389900px;}
.ws12e{word-spacing:61.484505px;}
.ws176{word-spacing:61.513125px;}
.wsfc{word-spacing:61.594215px;}
.ws154{word-spacing:62.192592px;}
.ws13f{word-spacing:62.287949px;}
.ws11e{word-spacing:62.399568px;}
.ws165{word-spacing:63.656541px;}
.ws181{word-spacing:63.784406px;}
.ws1b4{word-spacing:64.182114px;}
.ws197{word-spacing:64.391395px;}
.ws167{word-spacing:65.827224px;}
.ws17a{word-spacing:65.959450px;}
.ws1a0{word-spacing:66.223498px;}
.ws11c{word-spacing:66.963213px;}
.ws124{word-spacing:67.216458px;}
.ws140{word-spacing:67.340683px;}
.ws113{word-spacing:67.570401px;}
.ws156{word-spacing:67.896945px;}
.ws134{word-spacing:68.001048px;}
.ws1ac{word-spacing:68.069642px;}
.ws10f{word-spacing:68.122905px;}
.ws152{word-spacing:68.154372px;}
.ws1ab{word-spacing:68.162191px;}
.ws120{word-spacing:68.178189px;}
.ws151{word-spacing:68.247036px;}
.ws130{word-spacing:68.259401px;}
.ws178{word-spacing:68.291175px;}
.ws12f{word-spacing:68.352208px;}
.wsfe{word-spacing:68.381200px;}
.ws177{word-spacing:68.384025px;}
.wsfd{word-spacing:68.474173px;}
.ws114{word-spacing:72.097194px;}
.ws163{word-spacing:72.591678px;}
.ws183{word-spacing:72.737491px;}
.ws13e{word-spacing:73.360238px;}
.ws10a{word-spacing:73.491699px;}
.ws132{word-spacing:74.775874px;}
.ws10d{word-spacing:74.909871px;}
.ws166{word-spacing:76.125348px;}
.ws182{word-spacing:76.278259px;}
.ws1b2{word-spacing:76.635360px;}
.ws161{word-spacing:76.731120px;}
.ws185{word-spacing:76.885248px;}
.ws19f{word-spacing:77.481235px;}
.ws53{word-spacing:80.088401px;}
.ws102{word-spacing:80.683857px;}
.ws1a9{word-spacing:80.841377px;}
.ws14f{word-spacing:80.942004px;}
.ws12d{word-spacing:81.066740px;}
.ws175{word-spacing:81.104475px;}
.wsfb{word-spacing:81.211391px;}
.ws1b3{word-spacing:86.971050px;}
.ws1b1{word-spacing:87.172722px;}
.ws142{word-spacing:87.213240px;}
.ws196{word-spacing:87.254640px;}
.ws15b{word-spacing:87.281649px;}
.ws104{word-spacing:87.369525px;}
.ws13c{word-spacing:87.415474px;}
.ws17c{word-spacing:87.456970px;}
.ws107{word-spacing:87.572121px;}
.ws55{word-spacing:89.662536px;}
.ws155{word-spacing:89.856180px;}
.ws133{word-spacing:89.993952px;}
.ws10e{word-spacing:90.155220px;}
.ws49{word-spacing:91.448188px;}
.ws191{word-spacing:92.110550px;}
.ws1b7{word-spacing:93.979152px;}
.ws15d{word-spacing:94.096584px;}
.ws139{word-spacing:94.240858px;}
.ws17f{word-spacing:94.285594px;}
.ws108{word-spacing:94.409736px;}
.ws57{word-spacing:94.525589px;}
.ws1b5{word-spacing:94.584168px;}
.ws159{word-spacing:94.702356px;}
.ws138{word-spacing:94.847558px;}
.ws17d{word-spacing:94.892582px;}
.ws10b{word-spacing:95.017524px;}
.ws4c{word-spacing:95.589382px;}
.ws52{word-spacing:97.906930px;}
.ws101{word-spacing:102.614874px;}
.ws162{word-spacing:104.344227px;}
.ws15f{word-spacing:104.394708px;}
.ws19d{word-spacing:104.604403px;}
.ws1a6{word-spacing:106.779531px;}
.ws14b{word-spacing:106.934256px;}
.ws129{word-spacing:107.099047px;}
.ws171{word-spacing:107.148900px;}
.wsf7{word-spacing:107.290150px;}
.ws160{word-spacing:108.534150px;}
.ws141{word-spacing:108.700560px;}
.ws184{word-spacing:108.752160px;}
.ws106{word-spacing:108.895350px;}
.ws157{word-spacing:109.846656px;}
.ws13a{word-spacing:110.015078px;}
.ws111{word-spacing:110.212224px;}
.ws1b0{word-spacing:111.827124px;}
.ws158{word-spacing:111.966858px;}
.ws136{word-spacing:112.138531px;}
.ws135{word-spacing:112.189090px;}
.ws17b{word-spacing:112.191763px;}
.ws103{word-spacing:112.339482px;}
.ws110{word-spacing:112.390131px;}
.ws1b6{word-spacing:112.684230px;}
.ws15a{word-spacing:112.825035px;}
.ws137{word-spacing:112.998024px;}
.ws11b{word-spacing:113.048568px;}
.ws17e{word-spacing:113.051664px;}
.ws112{word-spacing:113.200515px;}
.ws164{word-spacing:120.296223px;}
.ws180{word-spacing:120.537859px;}
.ws109{word-spacing:120.797865px;}
.ws14a{word-spacing:124.911072px;}
.ws128{word-spacing:125.103566px;}
.ws170{word-spacing:125.161800px;}
.wsf6{word-spacing:125.326795px;}
.ws4f{word-spacing:132.708152px;}
.ws4e{word-spacing:146.043554px;}
.ws51{word-spacing:155.617690px;}
.ws4d{word-spacing:156.263564px;}
.ws56{word-spacing:163.292195px;}
.ws50{word-spacing:166.331603px;}
.ws1a4{word-spacing:171.710517px;}
.ws149{word-spacing:171.938052px;}
.ws127{word-spacing:172.203017px;}
.ws16f{word-spacing:172.283175px;}
.wsf5{word-spacing:172.510288px;}
.ws1ae{word-spacing:188.966664px;}
.ws1a1{word-spacing:189.582835px;}
.ws1a8{word-spacing:195.324242px;}
.ws14e{word-spacing:195.567372px;}
.ws12c{word-spacing:195.868751px;}
.ws174{word-spacing:195.959925px;}
.wsfa{word-spacing:196.218250px;}
.ws19e{word-spacing:202.784842px;}
.ws4b{word-spacing:210.706960px;}
.ws19c{word-spacing:215.228112px;}
.ws8b{word-spacing:249.526243px;}
.ws11d{word-spacing:254.764470px;}
.ws82{word-spacing:255.550589px;}
.ws8a{word-spacing:262.919654px;}
.ws54{word-spacing:262.984777px;}
.ws10c{word-spacing:267.983859px;}
.ws100{word-spacing:280.443513px;}
.ws83{word-spacing:302.131690px;}
.ws15e{word-spacing:376.133931px;}
.ws87{word-spacing:418.530653px;}
.ws93{word-spacing:436.926422px;}
.ws88{word-spacing:440.799216px;}
.ws8f{word-spacing:467.693616px;}
.ws8c{word-spacing:471.781565px;}
.ws90{word-spacing:475.116470px;}
.ws8e{word-spacing:475.708147px;}
.ws89{word-spacing:476.084669px;}
.ws92{word-spacing:488.940192px;}
.ws91{word-spacing:495.556214px;}
.ws86{word-spacing:619.162877px;}
.ws4a{word-spacing:626.421989px;}
.ws8d{word-spacing:655.147584px;}
.ws84{word-spacing:830.875594px;}
.ws19a{word-spacing:3063.185400px;}
.ws1a3{word-spacing:3064.491600px;}
.ws195{word-spacing:3065.544600px;}
.ws193{word-spacing:3066.258000px;}
.ws148{word-spacing:3066.522000px;}
.ws123{word-spacing:3066.646800px;}
.ws18e{word-spacing:3067.159200px;}
.ws11a{word-spacing:3068.364000px;}
.ws47{word-spacing:3091.204800px;}
._8{margin-left:-3230.762400px;}
._b{margin-left:-2543.167200px;}
._c{margin-left:-13.662000px;}
._3{margin-left:-8.466000px;}
._d{margin-left:-7.164600px;}
._5{margin-left:-5.991600px;}
._4{margin-left:-4.556400px;}
._2{margin-left:-2.958000px;}
._0{margin-left:-1.483800px;}
._1{width:1.720200px;}
._6{width:2.939400px;}
._9{width:4.488000px;}
._a{width:5.935200px;}
._51{width:34.402546px;}
._11{width:36.472896px;}
._10{width:39.360334px;}
._50{width:41.040854px;}
._f{width:44.795364px;}
._2f{width:50.238739px;}
._1b{width:56.962339px;}
._1a{width:63.793517px;}
._19{width:70.355750px;}
._6d{width:71.447311px;}
._13{width:72.717836px;}
._79{width:74.959834px;}
._81{width:76.703839px;}
._82{width:78.434776px;}
._61{width:79.630861px;}
._7d{width:82.420154px;}
._4b{width:83.749162px;}
._6c{width:84.824326px;}
._62{width:86.324873px;}
._78{width:87.606715px;}
._87{width:88.721095px;}
._4a{width:91.763693px;}
._49{width:97.142573px;}
._69{width:98.423563px;}
._7e{width:102.324987px;}
._31{width:103.597229px;}
._66{width:105.552516px;}
._14{width:108.506866px;}
._30{width:110.320829px;}
._7a{width:114.172703px;}
._86{width:115.347155px;}
._7f{width:117.558137px;}
._80{width:118.974445px;}
._64{width:120.949812px;}
._68{width:123.127719px;}
._6b{width:124.275479px;}
._3c{width:126.943651px;}
._83{width:129.136469px;}
._77{width:130.247860px;}
._65{width:131.332857px;}
._1c{width:139.207498px;}
._85{width:144.968760px;}
._34{width:147.596467px;}
._33{width:151.523050px;}
._12{width:156.719475px;}
._84{width:158.170766px;}
._48{width:161.344114px;}
._47{width:168.798313px;}
._32{width:170.136058px;}
._75{width:171.179987px;}
._5d{width:172.317212px;}
._7c{width:173.806083px;}
._15{width:175.297856px;}
._53{width:179.977325px;}
._6f{width:184.450941px;}
._52{width:186.754714px;}
._74{width:201.037805px;}
._2e{width:207.570979px;}
._20{width:211.174829px;}
._3b{width:212.228318px;}
._73{width:214.233547px;}
._2d{width:215.585510px;}
._3a{width:219.059496px;}
._2c{width:220.964390px;}
._39{width:225.621730px;}
._4d{width:226.858872px;}
._8a{width:234.287287px;}
._60{width:235.359631px;}
._7b{width:248.917965px;}
._22{width:262.005245px;}
._1f{width:268.836422px;}
._4f{width:283.928789px;}
._26{width:303.046099px;}
._16{width:305.681750px;}
._40{width:307.349203px;}
._6a{width:309.414741px;}
._25{width:310.415165px;}
._24{width:316.439510px;}
._17{width:319.774416px;}
._1e{width:325.691184px;}
._2b{width:328.488202px;}
._36{width:348.174902px;}
._2a{width:353.930304px;}
._29{width:360.761482px;}
._3e{width:362.253437px;}
._6e{width:364.917658px;}
._70{width:366.213779px;}
._28{width:367.323715px;}
._42{width:370.013155px;}
._41{width:375.392035px;}
._1d{width:396.319003px;}
._43{width:399.543206px;}
._38{width:412.291152px;}
._63{width:431.377533px;}
._67{width:432.795705px;}
._35{width:458.549520px;}
._5c{width:459.764376px;}
._4e{width:460.938514px;}
._3f{width:465.488275px;}
._56{width:487.756838px;}
._23{width:491.629632px;}
._59{width:493.028141px;}
._45{width:494.534227px;}
._18{width:506.690496px;}
._37{width:517.717200px;}
._44{width:520.352851px;}
._46{width:578.153525px;}
._4c{width:587.481274px;}
._21{width:590.385869px;}
._27{width:596.679158px;}
._57{width:659.343110px;}
._e{width:669.581582px;}
._7{width:694.987200px;}
._89{width:700.406659px;}
._76{width:701.415811px;}
._72{width:702.666739px;}
._5f{width:704.117395px;}
._58{width:727.126214px;}
._54{width:755.871720px;}
._3d{width:771.171067px;}
._5b{width:797.366213px;}
._55{width:841.041677px;}
._5a{width:930.008352px;}
._88{width:992.332941px;}
._71{width:994.556843px;}
._5e{width:997.008302px;}
.fc5{color:rgb(79,76,77);}
.fc3{color:rgb(123,121,121);}
.fc2{color:rgb(167,165,166);}
.fc4{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:8.935800px;}
.fsf{font-size:10.425000px;}
.fse{font-size:10.921200px;}
.fsd{font-size:11.914200px;}
.fsc{font-size:16.878600px;}
.fs9{font-size:31.482000px;}
.fs8{font-size:34.980000px;}
.fs11{font-size:37.992600px;}
.fs7{font-size:42.000000px;}
.fs10{font-size:46.200000px;}
.fs1c{font-size:46.274400px;}
.fs18{font-size:46.332000px;}
.fs16{font-size:46.403400px;}
.fs1a{font-size:46.425000px;}
.fs14{font-size:46.486200px;}
.fs1d{font-size:50.418000px;}
.fs19{font-size:50.481000px;}
.fs17{font-size:50.558400px;}
.fs1b{font-size:50.582400px;}
.fs15{font-size:50.649000px;}
.fs13{font-size:53.204400px;}
.fs12{font-size:53.788800px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fsb{font-size:69.043200px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.fs1{font-size:344.040000px;}
.y0{bottom:0.000000px;}
.y21e{bottom:3.290550px;}
.y21a{bottom:3.290700px;}
.y240{bottom:3.291000px;}
.y24d{bottom:3.291150px;}
.y22a{bottom:3.291450px;}
.y225{bottom:3.291600px;}
.y1d8{bottom:3.292050px;}
.y271{bottom:3.970800px;}
.y29e{bottom:3.971700px;}
.y29c{bottom:4.620003px;}
.y28{bottom:14.515950px;}
.y27{bottom:18.239100px;}
.y29b{bottom:21.371383px;}
.y29a{bottom:38.122764px;}
.y6{bottom:46.089600px;}
.y299{bottom:54.874144px;}
.y17d{bottom:67.166255px;}
.y125{bottom:67.398653px;}
.y12e{bottom:67.401734px;}
.y67{bottom:67.916400px;}
.y23e{bottom:68.410676px;}
.y264{bottom:68.417467px;}
.y1bb{bottom:68.427362px;}
.y1fd{bottom:68.434237px;}
.y26d{bottom:68.437090px;}
.y251{bottom:68.457352px;}
.y298{bottom:71.625525px;}
.y4f{bottom:71.816400px;}
.y55{bottom:72.416400px;}
.ycb{bottom:76.010400px;}
.y8a{bottom:81.168300px;}
.y17c{bottom:83.989562px;}
.y124{bottom:84.264770px;}
.y12d{bottom:84.267851px;}
.y1ba{bottom:85.237535px;}
.y263{bottom:85.248761px;}
.y23d{bottom:85.254616px;}
.y1fc{bottom:85.278176px;}
.y26c{bottom:85.281029px;}
.y250{bottom:85.288645px;}
.y297{bottom:88.376905px;}
.y4e{bottom:89.816400px;}
.y54{bottom:90.416400px;}
.yca{bottom:98.510400px;}
.y21{bottom:99.758850px;}
.y17b{bottom:100.787591px;}
.y123{bottom:101.092901px;}
.y12c{bottom:101.095981px;}
.y1b9{bottom:102.009847px;}
.y262{bottom:102.054763px;}
.y23c{bottom:102.060618px;}
.y1fb{bottom:102.084179px;}
.y26b{bottom:102.087031px;}
.y24f{bottom:102.094648px;}
.y89{bottom:103.668300px;}
.y296{bottom:105.128286px;}
.y53{bottom:108.416400px;}
.y66{bottom:112.916400px;}
.y24c{bottom:115.609500px;}
.y17a{bottom:117.585619px;}
.y122{bottom:117.921031px;}
.y12b{bottom:117.924111px;}
.y1b8{bottom:118.782159px;}
.y261{bottom:118.860766px;}
.y23b{bottom:118.866620px;}
.y24b{bottom:118.878622px;}
.y1fa{bottom:118.890181px;}
.y26a{bottom:118.893034px;}
.y24e{bottom:118.900650px;}
.yc9{bottom:121.010400px;}
.y295{bottom:121.879666px;}
.y88{bottom:126.168300px;}
.y179{bottom:134.371008px;}
.y121{bottom:134.736499px;}
.y12a{bottom:134.739579px;}
.y1b7{bottom:135.541851px;}
.y260{bottom:135.654122px;}
.y23a{bottom:135.659977px;}
.y24a{bottom:135.671978px;}
.y1f9{bottom:135.683538px;}
.y269{bottom:135.686390px;}
.y294{bottom:138.631047px;}
.yc8{bottom:143.510400px;}
.y20{bottom:144.758850px;}
.y87{bottom:148.668300px;}
.y178{bottom:151.169036px;}
.y120{bottom:151.564629px;}
.y129{bottom:151.567709px;}
.y1b6{bottom:152.314163px;}
.y25f{bottom:152.460125px;}
.y239{bottom:152.465980px;}
.y249{bottom:152.477981px;}
.y1f8{bottom:152.489540px;}
.y268{bottom:152.492393px;}
.y293{bottom:155.382427px;}
.y23{bottom:157.259550px;}
.y65{bottom:157.916400px;}
.y26{bottom:163.152300px;}
.yc7{bottom:166.010400px;}
.y1f{bottom:167.258850px;}
.y177{bottom:167.967065px;}
.y11f{bottom:168.392759px;}
.y128{bottom:168.395840px;}
.y1b5{bottom:169.086476px;}
.y25e{bottom:169.266127px;}
.y238{bottom:169.271982px;}
.y248{bottom:169.283983px;}
.y1f7{bottom:169.295543px;}
.y267{bottom:169.298395px;}
.y86{bottom:171.168300px;}
.y292{bottom:172.133808px;}
.y25{bottom:177.149250px;}
.y176{bottom:184.765093px;}
.y11e{bottom:185.220890px;}
.y127{bottom:185.223970px;}
.y1b4{bottom:185.858788px;}
.y25d{bottom:186.072130px;}
.y237{bottom:186.077984px;}
.y247{bottom:186.089986px;}
.y1f6{bottom:186.101545px;}
.y266{bottom:186.104398px;}
.y24{bottom:186.396150px;}
.yc6{bottom:188.810550px;}
.y291{bottom:188.885189px;}
.y1e{bottom:189.758850px;}
.y85{bottom:193.668300px;}
.y175{bottom:201.563122px;}
.y126{bottom:201.980022px;}
.y11d{bottom:202.049020px;}
.y1b3{bottom:202.563380px;}
.y265{bottom:202.841257px;}
.y25c{bottom:202.878132px;}
.y236{bottom:202.883987px;}
.y246{bottom:202.895988px;}
.y1f5{bottom:202.907548px;}
.y64{bottom:202.916400px;}
.y290{bottom:205.636569px;}
.yc5{bottom:211.610550px;}
.y1d{bottom:212.258850px;}
.y84{bottom:216.168300px;}
.y174{bottom:218.295364px;}
.y11c{bottom:218.808152px;}
.y13e{bottom:218.829510px;}
.y1b2{bottom:219.335692px;}
.y218{bottom:219.647260px;}
.y25b{bottom:219.684134px;}
.y235{bottom:219.689989px;}
.y245{bottom:219.701990px;}
.y1f4{bottom:219.713550px;}
.y63{bottom:220.916400px;}
.y28f{bottom:222.387949px;}
.yc4{bottom:234.410400px;}
.y173{bottom:235.093392px;}
.y11b{bottom:235.636282px;}
.y13d{bottom:235.657640px;}
.y1b1{bottom:236.108005px;}
.y1f3{bottom:236.450260px;}
.y217{bottom:236.453262px;}
.y25a{bottom:236.490137px;}
.y234{bottom:236.495992px;}
.y244{bottom:236.507993px;}
.y83{bottom:238.668300px;}
.y62{bottom:238.916400px;}
.y28e{bottom:239.164539px;}
.y172{bottom:251.891420px;}
.y11a{bottom:252.464413px;}
.y13c{bottom:252.485771px;}
.y1b0{bottom:252.880317px;}
.y1f2{bottom:253.256262px;}
.y216{bottom:253.259264px;}
.y259{bottom:253.296139px;}
.y233{bottom:253.301994px;}
.y243{bottom:253.313995px;}
.y28d{bottom:255.915919px;}
.yc3{bottom:257.210400px;}
.y82{bottom:261.168300px;}
.y171{bottom:268.689449px;}
.y119{bottom:269.292543px;}
.y13b{bottom:269.313901px;}
.y1af{bottom:269.652629px;}
.y1f1{bottom:270.062264px;}
.y215{bottom:270.065267px;}
.y258{bottom:270.102142px;}
.y232{bottom:270.107996px;}
.y242{bottom:270.119998px;}
.y28c{bottom:272.601624px;}
.ye6{bottom:277.166400px;}
.y1c{bottom:279.758850px;}
.yc2{bottom:280.010400px;}
.y23f{bottom:283.635000px;}
.y81{bottom:283.668300px;}
.y170{bottom:285.487477px;}
.y118{bottom:286.120673px;}
.y13a{bottom:286.142031px;}
.y1ae{bottom:286.424941px;}
.y1f0{bottom:286.868267px;}
.y214{bottom:286.871269px;}
.y257{bottom:286.908144px;}
.y231{bottom:286.913999px;}
.y241{bottom:286.926000px;}
.y28b{bottom:289.353004px;}
.ye5{bottom:299.666400px;}
.y16f{bottom:302.285506px;}
.yc1{bottom:302.810550px;}
.y117{bottom:302.948803px;}
.y139{bottom:302.970161px;}
.y1ad{bottom:303.197254px;}
.y1ef{bottom:303.674269px;}
.y213{bottom:303.677272px;}
.y256{bottom:303.714146px;}
.y230{bottom:303.720001px;}
.y28a{bottom:306.104385px;}
.y80{bottom:306.168300px;}
.y16e{bottom:319.083534px;}
.y116{bottom:319.776934px;}
.y138{bottom:319.798292px;}
.ye4{bottom:319.916400px;}
.y1ac{bottom:319.969566px;}
.y1ee{bottom:320.480272px;}
.y212{bottom:320.483274px;}
.y255{bottom:320.520149px;}
.y22f{bottom:320.526004px;}
.y289{bottom:322.855765px;}
.y1b{bottom:324.758850px;}
.yc0{bottom:325.610550px;}
.y7f{bottom:328.668300px;}
.y16d{bottom:335.881562px;}
.y115{bottom:336.605064px;}
.y137{bottom:336.626422px;}
.y1ab{bottom:336.741878px;}
.y1ed{bottom:337.286274px;}
.y211{bottom:337.289276px;}
.y254{bottom:337.326151px;}
.y22e{bottom:337.332006px;}
.y288{bottom:339.607146px;}
.ye3{bottom:340.166400px;}
.y4d{bottom:341.816400px;}
.y1a{bottom:347.258850px;}
.ybf{bottom:348.410400px;}
.y7e{bottom:351.168300px;}
.y16c{bottom:352.717510px;}
.y114{bottom:353.471181px;}
.y136{bottom:353.492539px;}
.y1aa{bottom:353.552051px;}
.y1ec{bottom:354.130213px;}
.y210{bottom:354.133216px;}
.y253{bottom:354.170090px;}
.y22d{bottom:354.175945px;}
.y287{bottom:356.358526px;}
.ye2{bottom:360.416400px;}
.y4c{bottom:364.316400px;}
.y6f{bottom:364.916400px;}
.y16b{bottom:369.515538px;}
.y19{bottom:369.758850px;}
.y113{bottom:370.299311px;}
.y135{bottom:370.320669px;}
.y1a9{bottom:370.324364px;}
.y1eb{bottom:370.936216px;}
.y20f{bottom:370.939218px;}
.y252{bottom:370.976093px;}
.y22c{bottom:370.981948px;}
.ybe{bottom:371.210400px;}
.y286{bottom:373.109907px;}
.y7d{bottom:373.668300px;}
.ye1{bottom:380.666400px;}
.y6e{bottom:382.916400px;}
.y229{bottom:384.496500px;}
.y26e{bottom:385.512000px;}
.y16a{bottom:386.313566px;}
.y4b{bottom:386.816400px;}
.y1a8{bottom:387.096676px;}
.y112{bottom:387.127442px;}
.y134{bottom:387.148799px;}
.y1ea{bottom:387.742218px;}
.y20e{bottom:387.745220px;}
.y228{bottom:387.782095px;}
.y22b{bottom:387.787950px;}
.y285{bottom:389.861287px;}
.y7c{bottom:396.168300px;}
.y6d{bottom:400.916400px;}
.y169{bottom:403.111595px;}
.y1a7{bottom:403.868988px;}
.y111{bottom:403.955572px;}
.y133{bottom:403.976930px;}
.y1e9{bottom:404.548220px;}
.y20d{bottom:404.551223px;}
.y227{bottom:404.588098px;}
.y284{bottom:406.612668px;}
.y4a{bottom:409.316400px;}
.ybd{bottom:416.810550px;}
.y224{bottom:418.102500px;}
.y7b{bottom:418.668300px;}
.y6c{bottom:418.916400px;}
.y168{bottom:419.909623px;}
.y1a6{bottom:420.641300px;}
.y110{bottom:420.783702px;}
.y132{bottom:420.805060px;}
.ye0{bottom:421.166400px;}
.y1e8{bottom:421.354223px;}
.y20c{bottom:421.357225px;}
.y223{bottom:421.382540px;}
.y226{bottom:421.394100px;}
.y283{bottom:423.364048px;}
.y49{bottom:432.116400px;}
.y167{bottom:436.707652px;}
.y6b{bottom:436.916400px;}
.y1a5{bottom:437.413612px;}
.y10f{bottom:437.611832px;}
.y131{bottom:437.633190px;}
.y1e7{bottom:438.160225px;}
.y20b{bottom:438.163228px;}
.y222{bottom:438.188543px;}
.y282{bottom:440.115429px;}
.y7a{bottom:441.168300px;}
.ydf{bottom:441.416400px;}
.y18{bottom:452.258850px;}
.y166{bottom:453.505680px;}
.y1a4{bottom:454.185925px;}
.y10e{bottom:454.439962px;}
.y130{bottom:454.461320px;}
.y48{bottom:454.916400px;}
.y1e6{bottom:454.966228px;}
.y20a{bottom:454.969230px;}
.y221{bottom:454.994545px;}
.y281{bottom:456.866809px;}
.yde{bottom:461.666400px;}
.ybc{bottom:462.410550px;}
.yad{bottom:463.668300px;}
.y165{bottom:470.303708px;}
.y1a3{bottom:470.958237px;}
.y10d{bottom:471.268093px;}
.y12f{bottom:471.289451px;}
.y1e5{bottom:471.772230px;}
.y209{bottom:471.775232px;}
.y220{bottom:471.800548px;}
.y17{bottom:473.254350px;}
.y280{bottom:473.618190px;}
.y47{bottom:477.716400px;}
.ydd{bottom:481.916400px;}
.ybb{bottom:485.210550px;}
.y16{bottom:485.258850px;}
.y21d{bottom:485.316000px;}
.y79{bottom:486.168300px;}
.y164{bottom:487.101737px;}
.y1a2{bottom:487.730549px;}
.y10c{bottom:488.096223px;}
.y1e4{bottom:488.578232px;}
.y208{bottom:488.581235px;}
.y21c{bottom:488.603698px;}
.y21f{bottom:488.606550px;}
.y27f{bottom:490.369571px;}
.y46{bottom:500.516400px;}
.y219{bottom:502.119000px;}
.ydc{bottom:502.166400px;}
.y163{bottom:503.899765px;}
.y1a1{bottom:504.502861px;}
.y10b{bottom:504.924353px;}
.y1e3{bottom:505.384235px;}
.y207{bottom:505.387237px;}
.y21b{bottom:505.409700px;}
.y15{bottom:506.254350px;}
.y27e{bottom:507.120951px;}
.yba{bottom:508.010400px;}
.y162{bottom:520.697794px;}
.y1a0{bottom:521.275174px;}
.y10a{bottom:521.752484px;}
.y1e2{bottom:522.190237px;}
.y206{bottom:522.193240px;}
.ydb{bottom:522.416400px;}
.y14{bottom:522.754350px;}
.y45{bottom:523.316400px;}
.y27d{bottom:523.910145px;}
.y61{bottom:526.916400px;}
.yb9{bottom:530.810550px;}
.y161{bottom:537.495822px;}
.y19f{bottom:538.047486px;}
.y109{bottom:538.580614px;}
.y1e1{bottom:538.996240px;}
.y205{bottom:538.999242px;}
.y13{bottom:539.254350px;}
.y27c{bottom:540.661525px;}
.yda{bottom:542.666400px;}
.yaa{bottom:543.265326px;}
.y44{bottom:546.116400px;}
.y60{bottom:549.416400px;}
.yb8{bottom:553.610400px;}
.y160{bottom:554.293850px;}
.y19e{bottom:554.819798px;}
.y108{bottom:555.408744px;}
.y12{bottom:555.754350px;}
.y1e0{bottom:555.802242px;}
.y204{bottom:555.805244px;}
.y27b{bottom:557.412906px;}
.ya9{bottom:560.948394px;}
.yd9{bottom:562.916400px;}
.y11{bottom:567.758850px;}
.y43{bottom:568.916400px;}
.y15f{bottom:571.091879px;}
.y19d{bottom:571.592110px;}
.y5f{bottom:571.916400px;}
.y107{bottom:572.236874px;}
.y1df{bottom:572.608244px;}
.y203{bottom:572.611247px;}
.y27a{bottom:574.164287px;}
.yb7{bottom:576.410550px;}
.ya8{bottom:578.658356px;}
.yd8{bottom:583.166400px;}
.y15e{bottom:587.889907px;}
.y19c{bottom:588.364423px;}
.y10{bottom:588.754350px;}
.y106{bottom:589.065004px;}
.y1de{bottom:589.414247px;}
.y202{bottom:589.417249px;}
.y279{bottom:590.915667px;}
.y42{bottom:591.716400px;}
.y5e{bottom:594.416400px;}
.ya7{bottom:596.341424px;}
.yb6{bottom:599.210550px;}
.yd7{bottom:603.416400px;}
.y15d{bottom:604.687936px;}
.y19b{bottom:605.136735px;}
.y105{bottom:605.893135px;}
.y1dd{bottom:606.220249px;}
.y201{bottom:606.223252px;}
.y278{bottom:607.667047px;}
.ya6{bottom:614.024492px;}
.y41{bottom:614.516400px;}
.y5d{bottom:616.916400px;}
.y15c{bottom:621.511243px;}
.y19a{bottom:621.934288px;}
.yb5{bottom:622.010400px;}
.y104{bottom:622.746590px;}
.y1dc{bottom:623.051543px;}
.y200{bottom:623.054545px;}
.yd6{bottom:623.666400px;}
.y277{bottom:624.418428px;}
.yf{bottom:630.758850px;}
.ya5{bottom:631.707560px;}
.y40{bottom:637.316400px;}
.y15b{bottom:638.309272px;}
.y199{bottom:638.640324px;}
.y5c{bottom:639.416400px;}
.y103{bottom:639.574720px;}
.y1db{bottom:639.857545px;}
.y1ff{bottom:639.860548px;}
.y276{bottom:641.169809px;}
.yd5{bottom:643.916400px;}
.yb4{bottom:644.810550px;}
.ya4{bottom:649.390628px;}
.y15a{bottom:655.047204px;}
.y198{bottom:655.412636px;}
.y102{bottom:656.333157px;}
.y1fe{bottom:656.599453px;}
.y1da{bottom:656.663548px;}
.y275{bottom:657.921189px;}
.y3f{bottom:660.116400px;}
.y5b{bottom:661.916400px;}
.yd4{bottom:664.166400px;}
.ya3{bottom:667.073696px;}
.yb3{bottom:667.610400px;}
.y1d7{bottom:670.177500px;}
.y159{bottom:671.845232px;}
.y197{bottom:672.184949px;}
.y101{bottom:673.161287px;}
.y1d6{bottom:673.405456px;}
.y1d9{bottom:673.469550px;}
.y274{bottom:674.672569px;}
.yd{bottom:678.758850px;}
.y3e{bottom:682.916400px;}
.ye{bottom:683.753850px;}
.y5a{bottom:684.416400px;}
.ya2{bottom:684.756764px;}
.y158{bottom:688.643261px;}
.y196{bottom:688.957261px;}
.y100{bottom:689.989417px;}
.y1d5{bottom:690.211458px;}
.yb2{bottom:690.410550px;}
.y273{bottom:691.423950px;}
.yb{bottom:696.758850px;}
.yc{bottom:701.753850px;}
.ya1{bottom:702.439832px;}
.yd3{bottom:704.666400px;}
.y157{bottom:705.441289px;}
.y3d{bottom:705.716400px;}
.y195{bottom:705.729573px;}
.yff{bottom:706.817548px;}
.y59{bottom:706.916400px;}
.y1d4{bottom:707.017460px;}
.y272{bottom:708.172500px;}
.yb1{bottom:713.210550px;}
.ya0{bottom:720.122900px;}
.y156{bottom:722.239318px;}
.y194{bottom:722.501885px;}
.yfe{bottom:723.645678px;}
.y1d3{bottom:723.823463px;}
.y52{bottom:724.916400px;}
.y26f{bottom:724.921200px;}
.y3c{bottom:728.516400px;}
.y58{bottom:729.416400px;}
.y9f{bottom:737.846310px;}
.y155{bottom:739.037346px;}
.y193{bottom:739.274198px;}
.yfd{bottom:740.473808px;}
.y1d2{bottom:740.629465px;}
.y51{bottom:742.916400px;}
.ya{bottom:744.758850px;}
.yd2{bottom:745.166400px;}
.y3b{bottom:751.316400px;}
.y57{bottom:751.916400px;}
.y9e{bottom:755.529378px;}
.y154{bottom:755.835374px;}
.y192{bottom:756.046510px;}
.yfc{bottom:757.301938px;}
.y1d1{bottom:757.435468px;}
.yb0{bottom:758.810550px;}
.y50{bottom:760.916400px;}
.yd1{bottom:765.416400px;}
.y9{bottom:767.258850px;}
.y153{bottom:772.633403px;}
.y9d{bottom:773.212446px;}
.y3a{bottom:774.116400px;}
.yfb{bottom:774.130069px;}
.y1d0{bottom:774.241470px;}
.y56{bottom:774.416400px;}
.yd0{bottom:785.666400px;}
.y152{bottom:789.431431px;}
.y8{bottom:789.758850px;}
.y191{bottom:789.931881px;}
.y9c{bottom:790.895514px;}
.yfa{bottom:790.958199px;}
.y1cf{bottom:791.047472px;}
.y39{bottom:796.916400px;}
.yaf{bottom:804.410550px;}
.ycf{bottom:805.916400px;}
.y151{bottom:806.229460px;}
.y190{bottom:806.704193px;}
.yf9{bottom:807.786329px;}
.y1ce{bottom:807.853475px;}
.y9b{bottom:808.578582px;}
.y7{bottom:812.258850px;}
.y77{bottom:814.165375px;}
.y38{bottom:819.416400px;}
.yae{bottom:822.410550px;}
.y150{bottom:823.027488px;}
.y18f{bottom:823.476506px;}
.yf8{bottom:824.614459px;}
.y1cd{bottom:824.659477px;}
.yce{bottom:826.166400px;}
.y9a{bottom:826.407750px;}
.y76{bottom:828.013678px;}
.y14f{bottom:839.825516px;}
.y18e{bottom:840.248818px;}
.yf7{bottom:841.442590px;}
.y1cc{bottom:841.465480px;}
.y75{bottom:841.861981px;}
.y37{bottom:841.916400px;}
.y99{bottom:843.982212px;}
.ycd{bottom:846.416400px;}
.y74{bottom:855.710284px;}
.y14e{bottom:856.623545px;}
.y18d{bottom:857.021130px;}
.yf6{bottom:858.270720px;}
.y1cb{bottom:858.271482px;}
.y98{bottom:861.665280px;}
.y36{bottom:864.416400px;}
.ycc{bottom:866.666400px;}
.y73{bottom:869.558586px;}
.y14d{bottom:873.421573px;}
.y18c{bottom:873.793442px;}
.y1ca{bottom:875.077484px;}
.yf5{bottom:875.098850px;}
.y97{bottom:879.375242px;}
.y72{bottom:883.406889px;}
.y35{bottom:886.916400px;}
.y14c{bottom:890.219602px;}
.y18b{bottom:890.565755px;}
.y1c9{bottom:891.883487px;}
.yf4{bottom:891.926980px;}
.y96{bottom:897.058310px;}
.y71{bottom:897.483147px;}
.y78{bottom:904.796723px;}
.y14b{bottom:907.055549px;}
.y18a{bottom:907.375927px;}
.y1c8{bottom:908.727426px;}
.yf3{bottom:908.793097px;}
.y34{bottom:909.416400px;}
.y70{bottom:911.331450px;}
.y95{bottom:914.741378px;}
.y14a{bottom:923.853577px;}
.y189{bottom:924.148240px;}
.y1c7{bottom:925.533428px;}
.yf2{bottom:925.621228px;}
.y33{bottom:931.916400px;}
.y94{bottom:932.424446px;}
.y149{bottom:940.651606px;}
.y6a{bottom:940.916400px;}
.y188{bottom:940.920552px;}
.y1c6{bottom:942.339431px;}
.yf1{bottom:942.449358px;}
.y93{bottom:950.107514px;}
.y1{bottom:952.228350px;}
.y32{bottom:954.416400px;}
.y148{bottom:957.449634px;}
.y187{bottom:957.692864px;}
.y69{bottom:958.916400px;}
.y1c5{bottom:959.145433px;}
.yf0{bottom:959.277488px;}
.y92{bottom:967.790582px;}
.y147{bottom:974.247662px;}
.y186{bottom:974.465177px;}
.y22{bottom:975.012000px;}
.y1c4{bottom:975.951436px;}
.yef{bottom:976.105618px;}
.y31{bottom:976.916400px;}
.y5{bottom:985.145700px;}
.y91{bottom:985.473650px;}
.y146{bottom:991.045691px;}
.y185{bottom:991.237489px;}
.y1c3{bottom:992.757438px;}
.yee{bottom:992.933749px;}
.y30{bottom:999.416400px;}
.y90{bottom:1003.156718px;}
.y145{bottom:1007.837336px;}
.y184{bottom:1008.009801px;}
.y4{bottom:1008.339600px;}
.y1c2{bottom:1009.563440px;}
.yed{bottom:1009.761879px;}
.y8f{bottom:1020.839786px;}
.y2f{bottom:1021.916400px;}
.y144{bottom:1024.635365px;}
.y183{bottom:1024.782113px;}
.y1c1{bottom:1026.369443px;}
.yec{bottom:1026.590009px;}
.y3{bottom:1038.339600px;}
.y8e{bottom:1038.563196px;}
.y143{bottom:1041.433393px;}
.y182{bottom:1041.554425px;}
.y1c0{bottom:1043.175445px;}
.yeb{bottom:1043.418140px;}
.y2e{bottom:1044.416400px;}
.y8d{bottom:1056.246264px;}
.y142{bottom:1058.231422px;}
.y181{bottom:1058.326738px;}
.y1bf{bottom:1059.981448px;}
.yea{bottom:1060.246270px;}
.y2d{bottom:1066.916400px;}
.y8c{bottom:1073.929332px;}
.y141{bottom:1075.029450px;}
.y180{bottom:1075.099050px;}
.y1be{bottom:1076.787450px;}
.ye9{bottom:1077.074400px;}
.y2c{bottom:1089.416400px;}
.y140{bottom:1091.475469px;}
.y17f{bottom:1091.519916px;}
.y8b{bottom:1091.612400px;}
.ye8{bottom:1093.549846px;}
.y1bd{bottom:1093.587900px;}
.y2{bottom:1104.891750px;}
.y29d{bottom:1106.461500px;}
.y270{bottom:1107.153000px;}
.y13f{bottom:1108.273500px;}
.y17e{bottom:1108.292100px;}
.yab{bottom:1109.930334px;}
.ye7{bottom:1110.377850px;}
.y1bc{bottom:1110.393750px;}
.y2b{bottom:1111.916400px;}
.y68{bottom:1134.416400px;}
.y2a{bottom:1156.916400px;}
.yac{bottom:1159.166400px;}
.y29{bottom:1210.189950px;}
.hf{height:7.452457px;}
.h14{height:8.621475px;}
.h13{height:9.031832px;}
.h12{height:9.936443px;}
.h11{height:14.076752px;}
.h38{height:15.367500px;}
.h34{height:15.417000px;}
.h31{height:15.418500px;}
.h3b{height:16.059000px;}
.hb{height:22.698522px;}
.ha{height:29.138340px;}
.h9{height:30.000000px;}
.hc{height:38.934000px;}
.h17{height:40.538104px;}
.h18{height:41.449927px;}
.h2{height:44.658000px;}
.h16{height:45.036000px;}
.h6{height:47.586000px;}
.h37{height:49.374785px;}
.h2a{height:49.436244px;}
.h24{height:49.512428px;}
.h2f{height:49.535475px;}
.h1c{height:49.600775px;}
.hd{height:49.620000px;}
.h8{height:49.980000px;}
.h5{height:51.912000px;}
.h29{height:52.216164px;}
.h23{height:52.296632px;}
.h2e{height:52.320975px;}
.h1b{height:52.389947px;}
.h39{height:53.796006px;}
.h2b{height:53.863227px;}
.h25{height:53.945813px;}
.h26{height:53.971344px;}
.h30{height:53.971421px;}
.h1d{height:54.042483px;}
.h3a{height:54.058710px;}
.h21{height:54.127914px;}
.h2c{height:54.128331px;}
.h2d{height:54.134106px;}
.h27{height:54.186197px;}
.h28{height:54.208958px;}
.h22{height:54.233043px;}
.h33{height:54.236582px;}
.h32{height:54.239808px;}
.h35{height:54.247992px;}
.h1f{height:54.318474px;}
.h1e{height:54.321255px;}
.h20{height:54.330795px;}
.h15{height:54.582000px;}
.h1a{height:56.808250px;}
.h19{height:57.392650px;}
.h10{height:57.582029px;}
.h7{height:64.890000px;}
.h4{height:85.068000px;}
.he{height:207.561000px;}
.h3{height:286.929360px;}
.h36{height:737.008500px;}
.h1{height:1254.000000px;}
.h0{height:1254.329957px;}
.w4{width:108.439500px;}
.w6{width:112.045500px;}
.w7{width:117.778500px;}
.w3{width:153.919500px;}
.w5{width:796.063500px;}
.w2{width:956.692500px;}
.w0{width:956.692566px;}
.w1{width:957.000000px;}
.x0{left:0.000000px;}
.x55{left:1.732050px;}
.x5e{left:5.210850px;}
.x25{left:8.721300px;}
.x22{left:35.215800px;}
.x5a{left:37.858800px;}
.x26{left:39.910650px;}
.x24{left:58.147200px;}
.x2a{left:63.779550px;}
.x40{left:64.842600px;}
.x50{left:65.905500px;}
.x23{left:68.920950px;}
.x49{left:71.892300px;}
.x2f{left:76.535550px;}
.x4{left:85.039350px;}
.x4b{left:86.456700px;}
.x3b{left:88.943560px;}
.x59{left:90.943500px;}
.x4e{left:93.152100px;}
.x53{left:94.464000px;}
.x33{left:97.795200px;}
.x29{left:106.299300px;}
.x47{left:107.970900px;}
.x48{left:110.748450px;}
.x20{left:127.559100px;}
.x4c{left:129.230850px;}
.x51{left:130.423050px;}
.x4d{left:132.008400px;}
.x52{left:133.191387px;}
.x8{left:139.720050px;}
.xa{left:141.724650px;}
.x1{left:145.654650px;}
.x1f{left:148.968900px;}
.x15{left:156.149100px;}
.x5b{left:174.906750px;}
.x44{left:197.046750px;}
.x28{left:201.937350px;}
.x3c{left:227.113540px;}
.x2b{left:235.923600px;}
.x3e{left:240.858904px;}
.x43{left:249.914850px;}
.x32{left:257.359650px;}
.xb{left:262.122600px;}
.xc{left:273.647550px;}
.x3f{left:277.112555px;}
.x5{left:284.133450px;}
.x6{left:286.574700px;}
.x16{left:290.983200px;}
.x9{left:302.289600px;}
.x7{left:313.726050px;}
.x3d{left:321.407632px;}
.x3{left:323.149650px;}
.x2c{left:325.079250px;}
.x27{left:334.493550px;}
.x54{left:342.372000px;}
.x3a{left:345.206850px;}
.x57{left:363.631500px;}
.x2d{left:382.514700px;}
.xd{left:384.100500px;}
.x2{left:389.055150px;}
.x1e{left:414.081900px;}
.x2e{left:439.811250px;}
.x17{left:445.224900px;}
.x18{left:449.772150px;}
.x56{left:471.108900px;}
.x41{left:478.346400px;}
.x31{left:491.102400px;}
.x58{left:492.368700px;}
.xe{left:499.006800px;}
.x38{left:502.422565px;}
.xf{left:503.866350px;}
.x35{left:512.362200px;}
.x42{left:520.866150px;}
.x36{left:528.172050px;}
.x37{left:530.347126px;}
.x34{left:542.125950px;}
.x46{left:550.629900px;}
.x4a{left:586.634400px;}
.x39{left:590.755360px;}
.x19{left:598.233000px;}
.x5c{left:599.527500px;}
.x1a{left:602.780400px;}
.x10{left:605.352900px;}
.x4f{left:607.894200px;}
.x11{left:610.371600px;}
.x30{left:615.004050px;}
.x45{left:649.568550px;}
.x1b{left:698.746500px;}
.x1c{left:703.477500px;}
.x5d{left:711.580500px;}
.x12{left:720.169200px;}
.x13{left:725.082150px;}
.x21{left:738.993000px;}
.x1d{left:817.116600px;}
.x14{left:827.669550px;}
@media print{
.v1{vertical-align:-17.760000pt;}
.v2{vertical-align:-15.984000pt;}
.v6{vertical-align:-2.455467pt;}
.v4{vertical-align:-1.215576pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.327563pt;}
.v3{vertical-align:2.479264pt;}
.ls22{letter-spacing:-4.517333pt;}
.ls52{letter-spacing:-4.320000pt;}
.ls87{letter-spacing:-3.264000pt;}
.ls2d{letter-spacing:-3.168000pt;}
.ls53{letter-spacing:-2.976000pt;}
.ls56{letter-spacing:-2.784000pt;}
.ls74{letter-spacing:-2.688000pt;}
.ls2f{letter-spacing:-2.640000pt;}
.ls8e{letter-spacing:-2.448000pt;}
.ls28{letter-spacing:-2.304000pt;}
.ls8a{letter-spacing:-1.968000pt;}
.ls81{letter-spacing:-1.920000pt;}
.ls91{letter-spacing:-1.824000pt;}
.ls4c{letter-spacing:-1.728000pt;}
.ls29{letter-spacing:-1.642667pt;}
.ls42{letter-spacing:-1.226667pt;}
.ls94{letter-spacing:-0.960000pt;}
.ls2c{letter-spacing:-0.938667pt;}
.lsa1{letter-spacing:-0.864000pt;}
.ls13{letter-spacing:-0.853333pt;}
.ls2b{letter-spacing:-0.821333pt;}
.ls3f{letter-spacing:-0.800000pt;}
.ls2e{letter-spacing:-0.586667pt;}
.lsc{letter-spacing:-0.560000pt;}
.ls96{letter-spacing:-0.432000pt;}
.ls1e{letter-spacing:-0.410667pt;}
.ls10{letter-spacing:-0.373333pt;}
.ls23{letter-spacing:-0.336000pt;}
.ls50{letter-spacing:-0.270128pt;}
.ls84{letter-spacing:-0.269773pt;}
.ls63{letter-spacing:-0.269645pt;}
.ls78{letter-spacing:-0.269232pt;}
.lsa5{letter-spacing:-0.268896pt;}
.ls57{letter-spacing:-0.247926pt;}
.ls64{letter-spacing:-0.247485pt;}
.lsd{letter-spacing:-0.240000pt;}
.ls38{letter-spacing:-0.239061pt;}
.ls21{letter-spacing:-0.234667pt;}
.ls37{letter-spacing:-0.191249pt;}
.ls4f{letter-spacing:-0.180085pt;}
.ls8b{letter-spacing:-0.179849pt;}
.ls20{letter-spacing:-0.176000pt;}
.ls30{letter-spacing:-0.168856pt;}
.ls4d{letter-spacing:-0.165284pt;}
.ls82{letter-spacing:-0.165067pt;}
.ls60{letter-spacing:-0.164990pt;}
.ls75{letter-spacing:-0.164736pt;}
.lsa2{letter-spacing:-0.164531pt;}
.lsf{letter-spacing:-0.160000pt;}
.ls1f{letter-spacing:-0.117333pt;}
.ls8f{letter-spacing:-0.096000pt;}
.ls3a{letter-spacing:-0.095625pt;}
.ls3d{letter-spacing:-0.058667pt;}
.ls39{letter-spacing:-0.047812pt;}
.lsa{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.046333pt;}
.ls34{letter-spacing:0.047812pt;}
.ls24{letter-spacing:0.048000pt;}
.ls16{letter-spacing:0.048539pt;}
.ls43{letter-spacing:0.053333pt;}
.lse{letter-spacing:0.096000pt;}
.ls40{letter-spacing:0.106667pt;}
.lsa4{letter-spacing:0.134448pt;}
.ls77{letter-spacing:0.134616pt;}
.ls62{letter-spacing:0.134822pt;}
.ls95{letter-spacing:0.134886pt;}
.ls54{letter-spacing:0.135064pt;}
.ls26{letter-spacing:0.135085pt;}
.ls3{letter-spacing:0.154773pt;}
.ls25{letter-spacing:0.168856pt;}
.ls2a{letter-spacing:0.176000pt;}
.ls14{letter-spacing:0.198573pt;}
.lsa3{letter-spacing:0.205664pt;}
.ls76{letter-spacing:0.205920pt;}
.ls61{letter-spacing:0.206237pt;}
.ls83{letter-spacing:0.206333pt;}
.ls4e{letter-spacing:0.206605pt;}
.ls12{letter-spacing:0.213333pt;}
.ls15{letter-spacing:0.214459pt;}
.ls36{letter-spacing:0.234667pt;}
.ls31{letter-spacing:0.239061pt;}
.ls1c{letter-spacing:0.240000pt;}
.ls97{letter-spacing:0.246797pt;}
.ls65{letter-spacing:0.247104pt;}
.ls58{letter-spacing:0.247485pt;}
.ls79{letter-spacing:0.247600pt;}
.ls44{letter-spacing:0.247926pt;}
.ls4{letter-spacing:0.266133pt;}
.ls2{letter-spacing:0.266667pt;}
.ls93{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.319467pt;}
.lsb{letter-spacing:0.400000pt;}
.ls7{letter-spacing:0.448000pt;}
.ls9{letter-spacing:0.450096pt;}
.ls19{letter-spacing:0.492800pt;}
.ls6{letter-spacing:0.512000pt;}
.ls27{letter-spacing:0.576000pt;}
.ls35{letter-spacing:0.586667pt;}
.ls18{letter-spacing:0.868267pt;}
.ls1d{letter-spacing:1.114667pt;}
.ls3b{letter-spacing:1.173333pt;}
.ls5{letter-spacing:1.178240pt;}
.ls0{letter-spacing:1.200000pt;}
.ls11{letter-spacing:1.280000pt;}
.ls3e{letter-spacing:1.290667pt;}
.ls3c{letter-spacing:1.349333pt;}
.ls1b{letter-spacing:1.408000pt;}
.ls41{letter-spacing:1.440000pt;}
.ls1a{letter-spacing:4.213333pt;}
.ls8{letter-spacing:6.137173pt;}
.ls55{letter-spacing:62.884563pt;}
.ls69{letter-spacing:63.045160pt;}
.ls5b{letter-spacing:63.141824pt;}
.ls49{letter-spacing:63.254973pt;}
.ls8d{letter-spacing:65.923955pt;}
.ls9d{letter-spacing:66.013968pt;}
.ls6e{letter-spacing:66.096456pt;}
.ls7f{letter-spacing:66.229222pt;}
.ls5e{letter-spacing:74.197261pt;}
.ls4a{letter-spacing:74.330221pt;}
.ls9e{letter-spacing:77.083520pt;}
.ls6f{letter-spacing:77.179840pt;}
.ls7d{letter-spacing:77.334869pt;}
.ls73{letter-spacing:78.241587pt;}
.ls86{letter-spacing:78.718916pt;}
.ls98{letter-spacing:79.055424pt;}
.ls6b{letter-spacing:79.154208pt;}
.ls85{letter-spacing:79.313203pt;}
.ls8c{letter-spacing:79.592875pt;}
.ls92{letter-spacing:79.638370pt;}
.ls72{letter-spacing:79.833968pt;}
.ls6a{letter-spacing:85.167056pt;}
.ls88{letter-spacing:85.338129pt;}
.ls9f{letter-spacing:86.270800pt;}
.ls67{letter-spacing:86.378600pt;}
.ls5a{letter-spacing:86.511040pt;}
.ls89{letter-spacing:86.552107pt;}
.ls4b{letter-spacing:86.666067pt;}
.ls45{letter-spacing:87.296365pt;}
.ls9b{letter-spacing:93.038016pt;}
.ls9c{letter-spacing:93.127648pt;}
.ls68{letter-spacing:93.154272pt;}
.ls5c{letter-spacing:93.297101pt;}
.ls7c{letter-spacing:93.341389pt;}
.ls5f{letter-spacing:93.386982pt;}
.ls90{letter-spacing:93.431313pt;}
.ls47{letter-spacing:93.464288pt;}
.lsa0{letter-spacing:94.440272pt;}
.ls99{letter-spacing:107.020608pt;}
.ls6c{letter-spacing:107.154336pt;}
.ls7a{letter-spacing:107.369574pt;}
.ls70{letter-spacing:109.083832pt;}
.ls7e{letter-spacing:109.302946pt;}
.ls71{letter-spacing:141.975008pt;}
.ls80{letter-spacing:142.260190pt;}
.ls9a{letter-spacing:143.948992pt;}
.ls6d{letter-spacing:144.128864pt;}
.ls7b{letter-spacing:144.418372pt;}
.ls5d{letter-spacing:145.248666pt;}
.ls48{letter-spacing:145.508949pt;}
.ls66{letter-spacing:147.225032pt;}
.ls59{letter-spacing:147.450765pt;}
.ls46{letter-spacing:147.714995pt;}
.ls51{letter-spacing:149.245720pt;}
.ls32{letter-spacing:438.103799pt;}
.ls33{letter-spacing:450.056866pt;}
.ws0{word-spacing:-61.774293pt;}
.wsa{word-spacing:-18.534263pt;}
.ws20{word-spacing:-13.552000pt;}
.wsbd{word-spacing:-13.493333pt;}
.wsbe{word-spacing:-13.434667pt;}
.wsbc{word-spacing:-13.317333pt;}
.ws1c{word-spacing:-13.258667pt;}
.ws7{word-spacing:-12.320000pt;}
.ws8{word-spacing:-11.520000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.880000pt;}
.ws6{word-spacing:-10.666667pt;}
.wsbf{word-spacing:-10.506667pt;}
.ws1e{word-spacing:-10.442667pt;}
.ws199{word-spacing:-10.416000pt;}
.ws9{word-spacing:-10.186667pt;}
.ws85{word-spacing:-10.136201pt;}
.ws1d{word-spacing:-8.706133pt;}
.wsf9{word-spacing:-8.594782pt;}
.ws173{word-spacing:-8.583467pt;}
.ws12b{word-spacing:-8.579473pt;}
.ws14d{word-spacing:-8.566272pt;}
.ws1a5{word-spacing:-8.555622pt;}
.ws190{word-spacing:-8.208000pt;}
.ws3{word-spacing:-8.176000pt;}
.ws1f{word-spacing:-7.920000pt;}
.ws1{word-spacing:-7.728000pt;}
.ws48{word-spacing:-7.008000pt;}
.wsc9{word-spacing:-5.397333pt;}
.ws4{word-spacing:-5.093088pt;}
.ws76{word-spacing:-5.045333pt;}
.ws2e{word-spacing:-4.986667pt;}
.wsd5{word-spacing:-4.752000pt;}
.ws67{word-spacing:-4.693333pt;}
.ws72{word-spacing:-4.517333pt;}
.wsac{word-spacing:-4.224000pt;}
.wseb{word-spacing:-3.786667pt;}
.ws28{word-spacing:-3.402667pt;}
.ws5b{word-spacing:-2.874667pt;}
.wsb0{word-spacing:-2.464000pt;}
.ws18{word-spacing:-2.240000pt;}
.wsc7{word-spacing:-2.229333pt;}
.ws99{word-spacing:-2.170667pt;}
.ws95{word-spacing:-2.053333pt;}
.ws5a{word-spacing:-1.936000pt;}
.ws26{word-spacing:-1.877333pt;}
.wse1{word-spacing:-1.866667pt;}
.wsc0{word-spacing:-1.824000pt;}
.wsa1{word-spacing:-1.818667pt;}
.ws6c{word-spacing:-1.642667pt;}
.ws46{word-spacing:-1.632000pt;}
.wsab{word-spacing:-1.392000pt;}
.ws22{word-spacing:-1.232000pt;}
.wsb9{word-spacing:-1.056000pt;}
.wsdd{word-spacing:-1.013333pt;}
.wsec{word-spacing:-0.906667pt;}
.wsc4{word-spacing:-0.880000pt;}
.ws3c{word-spacing:-0.821333pt;}
.ws96{word-spacing:-0.762667pt;}
.ws16{word-spacing:-0.746667pt;}
.ws17{word-spacing:-0.586667pt;}
.ws59{word-spacing:-0.576000pt;}
.ws122{word-spacing:-0.450213pt;}
.ws145{word-spacing:-0.449408pt;}
.ws16a{word-spacing:-0.448720pt;}
.ws189{word-spacing:-0.359697pt;}
.ws16c{word-spacing:-0.358976pt;}
.ws1ba{word-spacing:-0.358528pt;}
.ws75{word-spacing:-0.352000pt;}
.ws15{word-spacing:-0.320000pt;}
.ws18c{word-spacing:-0.314735pt;}
.ws31{word-spacing:-0.293333pt;}
.ws19b{word-spacing:-0.288000pt;}
.ws117{word-spacing:-0.247926pt;}
.ws188{word-spacing:-0.247600pt;}
.ws144{word-spacing:-0.247485pt;}
.ws169{word-spacing:-0.247104pt;}
.ws1b9{word-spacing:-0.246797pt;}
.wsa8{word-spacing:-0.236464pt;}
.ws192{word-spacing:-0.134886pt;}
.ws119{word-spacing:-0.123963pt;}
.ws18d{word-spacing:-0.123800pt;}
.ws147{word-spacing:-0.123742pt;}
.ws16e{word-spacing:-0.123552pt;}
.ws1bc{word-spacing:-0.123398pt;}
.ws1b{word-spacing:-0.120026pt;}
.ws11{word-spacing:-0.096000pt;}
.wsc{word-spacing:-0.064000pt;}
.wsf4{word-spacing:-0.053333pt;}
.ws40{word-spacing:-0.048000pt;}
.ws18b{word-spacing:-0.044962pt;}
.ws16d{word-spacing:-0.044872pt;}
.ws1a{word-spacing:-0.015886pt;}
.wsb{word-spacing:0.000000pt;}
.ws13{word-spacing:0.048000pt;}
.wsdb{word-spacing:0.058667pt;}
.ws80{word-spacing:0.067542pt;}
.wsa6{word-spacing:0.095625pt;}
.ws10{word-spacing:0.096000pt;}
.ws81{word-spacing:0.101314pt;}
.ws2c{word-spacing:0.117333pt;}
.ws7f{word-spacing:0.135085pt;}
.wsa4{word-spacing:0.143437pt;}
.ws30{word-spacing:0.176000pt;}
.wsa2{word-spacing:0.191249pt;}
.ws19{word-spacing:0.198573pt;}
.wse3{word-spacing:0.266667pt;}
.ws1bb{word-spacing:0.268896pt;}
.ws16b{word-spacing:0.269232pt;}
.ws146{word-spacing:0.269645pt;}
.ws18a{word-spacing:0.269773pt;}
.ws118{word-spacing:0.270128pt;}
.wsa7{word-spacing:0.286874pt;}
.wsd{word-spacing:0.293333pt;}
.wsa3{word-spacing:0.334686pt;}
.ws7e{word-spacing:0.336000pt;}
.wsae{word-spacing:0.352000pt;}
.ws25{word-spacing:0.410667pt;}
.wsa9{word-spacing:0.430310pt;}
.ws1a2{word-spacing:0.432000pt;}
.wsa5{word-spacing:0.478123pt;}
.ws71{word-spacing:0.528000pt;}
.wse6{word-spacing:0.533333pt;}
.wsaa{word-spacing:0.573747pt;}
.ws5d{word-spacing:0.586667pt;}
.wsf{word-spacing:0.640000pt;}
.ws98{word-spacing:0.762667pt;}
.ws29{word-spacing:0.821333pt;}
.ws1b8{word-spacing:0.864000pt;}
.wse{word-spacing:0.960000pt;}
.ws9f{word-spacing:0.997333pt;}
.ws12{word-spacing:1.008000pt;}
.ws79{word-spacing:1.056000pt;}
.wsc3{word-spacing:1.173333pt;}
.wsf0{word-spacing:1.226667pt;}
.ws38{word-spacing:1.290667pt;}
.ws23{word-spacing:1.349333pt;}
.wsc1{word-spacing:1.584000pt;}
.ws5e{word-spacing:1.642667pt;}
.ws115{word-spacing:1.728000pt;}
.ws2b{word-spacing:1.760000pt;}
.ws3f{word-spacing:1.776000pt;}
.ws198{word-spacing:1.824000pt;}
.ws68{word-spacing:1.877333pt;}
.ws187{word-spacing:1.920000pt;}
.ws3e{word-spacing:2.016000pt;}
.ws24{word-spacing:2.229333pt;}
.ws143{word-spacing:2.304000pt;}
.ws194{word-spacing:2.448000pt;}
.ws116{word-spacing:2.592000pt;}
.ws11f{word-spacing:2.640000pt;}
.ws168{word-spacing:2.688000pt;}
.wsc6{word-spacing:2.757333pt;}
.ws126{word-spacing:2.784000pt;}
.wsef{word-spacing:2.933333pt;}
.ws121{word-spacing:2.976000pt;}
.wscb{word-spacing:2.992000pt;}
.wsa0{word-spacing:3.050667pt;}
.ws18f{word-spacing:3.264000pt;}
.ws37{word-spacing:3.285333pt;}
.ws7d{word-spacing:3.504000pt;}
.ws33{word-spacing:3.520000pt;}
.wsc5{word-spacing:3.637333pt;}
.ws78{word-spacing:3.648000pt;}
.wsdc{word-spacing:3.872000pt;}
.wsee{word-spacing:4.160000pt;}
.ws2f{word-spacing:4.224000pt;}
.wse2{word-spacing:4.266667pt;}
.wse4{word-spacing:4.320000pt;}
.wsce{word-spacing:4.400000pt;}
.ws42{word-spacing:4.416000pt;}
.wsd6{word-spacing:4.458667pt;}
.ws41{word-spacing:4.560000pt;}
.ws14{word-spacing:4.693333pt;}
.wse0{word-spacing:4.853333pt;}
.ws27{word-spacing:4.928000pt;}
.ws43{word-spacing:4.944000pt;}
.ws3a{word-spacing:5.045333pt;}
.ws6f{word-spacing:5.088000pt;}
.wsd0{word-spacing:5.162667pt;}
.ws6e{word-spacing:5.184000pt;}
.wsaf{word-spacing:5.221333pt;}
.ws45{word-spacing:5.328000pt;}
.wsd8{word-spacing:5.338667pt;}
.ws44{word-spacing:5.376000pt;}
.ws6a{word-spacing:5.456000pt;}
.wse8{word-spacing:5.813333pt;}
.ws69{word-spacing:6.042667pt;}
.ws5c{word-spacing:6.394667pt;}
.wsbb{word-spacing:6.512000pt;}
.wsb7{word-spacing:6.570667pt;}
.wscf{word-spacing:6.805333pt;}
.ws97{word-spacing:6.981333pt;}
.wsda{word-spacing:7.098667pt;}
.wse5{word-spacing:7.200000pt;}
.wsd9{word-spacing:7.274667pt;}
.ws6d{word-spacing:7.392000pt;}
.ws7a{word-spacing:7.536000pt;}
.wsad{word-spacing:7.802667pt;}
.ws74{word-spacing:7.861333pt;}
.ws36{word-spacing:7.920000pt;}
.wsd4{word-spacing:8.154667pt;}
.wse7{word-spacing:8.213333pt;}
.wse9{word-spacing:8.266667pt;}
.ws77{word-spacing:8.272000pt;}
.wsca{word-spacing:8.389333pt;}
.wsb4{word-spacing:8.448000pt;}
.wsc2{word-spacing:8.506667pt;}
.ws3d{word-spacing:8.565333pt;}
.wsdf{word-spacing:8.746667pt;}
.ws9a{word-spacing:9.152000pt;}
.ws5f{word-spacing:9.269333pt;}
.ws34{word-spacing:9.328000pt;}
.wsd3{word-spacing:9.504000pt;}
.ws7c{word-spacing:10.128000pt;}
.wsf2{word-spacing:10.133333pt;}
.ws65{word-spacing:10.325333pt;}
.ws61{word-spacing:10.442667pt;}
.ws63{word-spacing:10.560000pt;}
.wscc{word-spacing:11.029333pt;}
.ws35{word-spacing:11.205333pt;}
.wsb6{word-spacing:11.264000pt;}
.ws9e{word-spacing:11.557333pt;}
.ws3b{word-spacing:11.674667pt;}
.ws9b{word-spacing:11.733333pt;}
.wsf1{word-spacing:11.786667pt;}
.ws6b{word-spacing:12.261333pt;}
.ws2a{word-spacing:12.613333pt;}
.ws32{word-spacing:12.965333pt;}
.ws62{word-spacing:13.434667pt;}
.ws60{word-spacing:13.552000pt;}
.ws39{word-spacing:13.904000pt;}
.wsd2{word-spacing:13.962667pt;}
.wsba{word-spacing:14.373333pt;}
.ws7b{word-spacing:14.880000pt;}
.ws2d{word-spacing:14.901333pt;}
.wsc8{word-spacing:16.250667pt;}
.wsea{word-spacing:16.373333pt;}
.ws73{word-spacing:16.485333pt;}
.ws64{word-spacing:16.720000pt;}
.wsb2{word-spacing:16.954667pt;}
.wsed{word-spacing:18.080000pt;}
.wsde{word-spacing:18.773333pt;}
.ws94{word-spacing:19.301333pt;}
.wscd{word-spacing:19.536000pt;}
.wsb5{word-spacing:19.594667pt;}
.ws1a7{word-spacing:19.634022pt;}
.ws14c{word-spacing:19.644768pt;}
.ws12a{word-spacing:19.675042pt;}
.ws172{word-spacing:19.684200pt;}
.wsf8{word-spacing:19.710149pt;}
.wsd7{word-spacing:19.770667pt;}
.ws9c{word-spacing:20.826667pt;}
.wsb1{word-spacing:21.002667pt;}
.wsb3{word-spacing:22.704000pt;}
.wsf3{word-spacing:23.146667pt;}
.wsd1{word-spacing:23.525333pt;}
.wsb8{word-spacing:23.584000pt;}
.ws21{word-spacing:23.760000pt;}
.ws9d{word-spacing:25.696000pt;}
.ws66{word-spacing:28.570667pt;}
.ws70{word-spacing:30.240000pt;}
.ws13b{word-spacing:41.415498pt;}
.ws125{word-spacing:41.489223pt;}
.ws1ad{word-spacing:46.562330pt;}
.ws153{word-spacing:46.620288pt;}
.ws131{word-spacing:46.692132pt;}
.ws179{word-spacing:46.713867pt;}
.wsff{word-spacing:46.775447pt;}
.ws58{word-spacing:50.319088pt;}
.ws1af{word-spacing:53.375856pt;}
.ws186{word-spacing:53.549901pt;}
.ws15c{word-spacing:54.070760pt;}
.ws13d{word-spacing:54.153664pt;}
.ws105{word-spacing:54.250707pt;}
.ws1aa{word-spacing:54.500960pt;}
.ws150{word-spacing:54.568800pt;}
.ws12e{word-spacing:54.652893pt;}
.ws176{word-spacing:54.678333pt;}
.wsfc{word-spacing:54.750413pt;}
.ws154{word-spacing:55.282304pt;}
.ws13f{word-spacing:55.367066pt;}
.ws11e{word-spacing:55.466283pt;}
.ws165{word-spacing:56.583592pt;}
.ws181{word-spacing:56.697250pt;}
.ws1b4{word-spacing:57.050768pt;}
.ws197{word-spacing:57.236796pt;}
.ws167{word-spacing:58.513088pt;}
.ws17a{word-spacing:58.630622pt;}
.ws1a0{word-spacing:58.865331pt;}
.ws11c{word-spacing:59.522856pt;}
.ws124{word-spacing:59.747963pt;}
.ws140{word-spacing:59.858385pt;}
.ws113{word-spacing:60.062579pt;}
.ws156{word-spacing:60.352840pt;}
.ws134{word-spacing:60.445376pt;}
.ws1ac{word-spacing:60.506349pt;}
.ws10f{word-spacing:60.553693pt;}
.ws152{word-spacing:60.581664pt;}
.ws1ab{word-spacing:60.588614pt;}
.ws120{word-spacing:60.602835pt;}
.ws151{word-spacing:60.664032pt;}
.ws130{word-spacing:60.675023pt;}
.ws178{word-spacing:60.703267pt;}
.ws12f{word-spacing:60.757518pt;}
.wsfe{word-spacing:60.783289pt;}
.ws177{word-spacing:60.785800pt;}
.wsfd{word-spacing:60.865931pt;}
.ws114{word-spacing:64.086395pt;}
.ws163{word-spacing:64.525936pt;}
.ws183{word-spacing:64.655548pt;}
.ws13e{word-spacing:65.209101pt;}
.ws10a{word-spacing:65.325955pt;}
.ws132{word-spacing:66.467443pt;}
.ws10d{word-spacing:66.586552pt;}
.ws166{word-spacing:67.666976pt;}
.ws182{word-spacing:67.802897pt;}
.ws1b2{word-spacing:68.120320pt;}
.ws161{word-spacing:68.205440pt;}
.ws185{word-spacing:68.342443pt;}
.ws19f{word-spacing:68.872209pt;}
.ws53{word-spacing:71.189690pt;}
.ws102{word-spacing:71.718984pt;}
.ws1a9{word-spacing:71.859002pt;}
.ws14f{word-spacing:71.948448pt;}
.ws12d{word-spacing:72.059324pt;}
.ws175{word-spacing:72.092867pt;}
.wsfb{word-spacing:72.187903pt;}
.ws1b3{word-spacing:77.307600pt;}
.ws1b1{word-spacing:77.486864pt;}
.ws142{word-spacing:77.522880pt;}
.ws196{word-spacing:77.559680pt;}
.ws15b{word-spacing:77.583688pt;}
.ws104{word-spacing:77.661800pt;}
.ws13c{word-spacing:77.702643pt;}
.ws17c{word-spacing:77.739529pt;}
.ws107{word-spacing:77.841885pt;}
.ws55{word-spacing:79.700032pt;}
.ws155{word-spacing:79.872160pt;}
.ws133{word-spacing:79.994624pt;}
.ws10e{word-spacing:80.137973pt;}
.ws49{word-spacing:81.287278pt;}
.ws191{word-spacing:81.876045pt;}
.ws1b7{word-spacing:83.537024pt;}
.ws15d{word-spacing:83.641408pt;}
.ws139{word-spacing:83.769651pt;}
.ws17f{word-spacing:83.809417pt;}
.ws108{word-spacing:83.919765pt;}
.ws57{word-spacing:84.022746pt;}
.ws1b5{word-spacing:84.074816pt;}
.ws159{word-spacing:84.179872pt;}
.ws138{word-spacing:84.308941pt;}
.ws17d{word-spacing:84.348962pt;}
.ws10b{word-spacing:84.460021pt;}
.ws4c{word-spacing:84.968339pt;}
.ws52{word-spacing:87.028382pt;}
.ws101{word-spacing:91.213221pt;}
.ws162{word-spacing:92.750424pt;}
.ws15f{word-spacing:92.795296pt;}
.ws19d{word-spacing:92.981692pt;}
.ws1a6{word-spacing:94.915138pt;}
.ws14b{word-spacing:95.052672pt;}
.ws129{word-spacing:95.199153pt;}
.ws171{word-spacing:95.243467pt;}
.wsf7{word-spacing:95.369022pt;}
.ws160{word-spacing:96.474800pt;}
.ws141{word-spacing:96.622720pt;}
.ws184{word-spacing:96.668587pt;}
.ws106{word-spacing:96.795867pt;}
.ws157{word-spacing:97.641472pt;}
.ws13a{word-spacing:97.791181pt;}
.ws111{word-spacing:97.966421pt;}
.ws1b0{word-spacing:99.401888pt;}
.ws158{word-spacing:99.526096pt;}
.ws136{word-spacing:99.678694pt;}
.ws135{word-spacing:99.723635pt;}
.ws17b{word-spacing:99.726012pt;}
.ws103{word-spacing:99.857317pt;}
.ws110{word-spacing:99.902339pt;}
.ws1b6{word-spacing:100.163760pt;}
.ws15a{word-spacing:100.288920pt;}
.ws137{word-spacing:100.442688pt;}
.ws11b{word-spacing:100.487616pt;}
.ws17e{word-spacing:100.490368pt;}
.ws112{word-spacing:100.622680pt;}
.ws164{word-spacing:106.929976pt;}
.ws180{word-spacing:107.144764pt;}
.ws109{word-spacing:107.375880pt;}
.ws14a{word-spacing:111.032064pt;}
.ws128{word-spacing:111.203170pt;}
.ws170{word-spacing:111.254933pt;}
.wsf6{word-spacing:111.401596pt;}
.ws4f{word-spacing:117.962802pt;}
.ws4e{word-spacing:129.816493pt;}
.ws51{word-spacing:138.326835pt;}
.ws4d{word-spacing:138.900946pt;}
.ws56{word-spacing:145.148618pt;}
.ws50{word-spacing:147.850314pt;}
.ws1a4{word-spacing:152.631570pt;}
.ws149{word-spacing:152.833824pt;}
.ws127{word-spacing:153.069349pt;}
.ws16f{word-spacing:153.140600pt;}
.wsf5{word-spacing:153.342478pt;}
.ws1ae{word-spacing:167.970368pt;}
.ws1a1{word-spacing:168.518076pt;}
.ws1a8{word-spacing:173.621549pt;}
.ws14e{word-spacing:173.837664pt;}
.ws12c{word-spacing:174.105557pt;}
.ws174{word-spacing:174.186600pt;}
.wsfa{word-spacing:174.416222pt;}
.ws19e{word-spacing:180.253193pt;}
.ws4b{word-spacing:187.295075pt;}
.ws19c{word-spacing:191.313877pt;}
.ws8b{word-spacing:221.801105pt;}
.ws11d{word-spacing:226.457307pt;}
.ws82{word-spacing:227.156079pt;}
.ws8a{word-spacing:233.706359pt;}
.ws54{word-spacing:233.764246pt;}
.ws10c{word-spacing:238.207875pt;}
.ws100{word-spacing:249.283123pt;}
.ws83{word-spacing:268.561502pt;}
.ws15e{word-spacing:334.341272pt;}
.ws87{word-spacing:372.027247pt;}
.ws93{word-spacing:388.379042pt;}
.ws88{word-spacing:391.821525pt;}
.ws8f{word-spacing:415.727659pt;}
.ws8c{word-spacing:419.361391pt;}
.ws90{word-spacing:422.325751pt;}
.ws8e{word-spacing:422.851686pt;}
.ws89{word-spacing:423.186372pt;}
.ws92{word-spacing:434.613504pt;}
.ws91{word-spacing:440.494413pt;}
.ws86{word-spacing:550.367002pt;}
.ws4a{word-spacing:556.819546pt;}
.ws8d{word-spacing:582.353408pt;}
.ws84{word-spacing:738.556083pt;}
.ws19a{word-spacing:2722.831467pt;}
.ws1a3{word-spacing:2723.992533pt;}
.ws195{word-spacing:2724.928533pt;}
.ws193{word-spacing:2725.562667pt;}
.ws148{word-spacing:2725.797333pt;}
.ws123{word-spacing:2725.908267pt;}
.ws18e{word-spacing:2726.363733pt;}
.ws11a{word-spacing:2727.434667pt;}
.ws47{word-spacing:2747.737600pt;}
._8{margin-left:-2871.788800pt;}
._b{margin-left:-2260.593067pt;}
._c{margin-left:-12.144000pt;}
._3{margin-left:-7.525333pt;}
._d{margin-left:-6.368533pt;}
._5{margin-left:-5.325867pt;}
._4{margin-left:-4.050133pt;}
._2{margin-left:-2.629333pt;}
._0{margin-left:-1.318933pt;}
._1{width:1.529067pt;}
._6{width:2.612800pt;}
._9{width:3.989333pt;}
._a{width:5.275733pt;}
._51{width:30.580041pt;}
._11{width:32.420352pt;}
._10{width:34.986963pt;}
._50{width:36.480759pt;}
._f{width:39.818101pt;}
._2f{width:44.656657pt;}
._1b{width:50.633190pt;}
._1a{width:56.705348pt;}
._19{width:62.538445pt;}
._6d{width:63.508721pt;}
._13{width:64.638077pt;}
._79{width:66.630964pt;}
._81{width:68.181190pt;}
._82{width:69.719801pt;}
._61{width:70.782987pt;}
._7d{width:73.262359pt;}
._4b{width:74.443699pt;}
._6c{width:75.399401pt;}
._62{width:76.733221pt;}
._78{width:77.872636pt;}
._87{width:78.863195pt;}
._4a{width:81.567727pt;}
._49{width:86.348954pt;}
._69{width:87.487612pt;}
._7e{width:90.955544pt;}
._31{width:92.086426pt;}
._66{width:93.824459pt;}
._14{width:96.450547pt;}
._30{width:98.062959pt;}
._7a{width:101.486847pt;}
._86{width:102.530805pt;}
._7f{width:104.496122pt;}
._80{width:105.755062pt;}
._64{width:107.510944pt;}
._68{width:109.446861pt;}
._6b{width:110.467092pt;}
._3c{width:112.838801pt;}
._83{width:114.787972pt;}
._77{width:115.775875pt;}
._65{width:116.740317pt;}
._1c{width:123.739998pt;}
._85{width:128.861120pt;}
._34{width:131.196860pt;}
._33{width:134.687155pt;}
._12{width:139.306200pt;}
._84{width:140.596237pt;}
._48{width:143.416990pt;}
._47{width:150.042945pt;}
._32{width:151.232051pt;}
._75{width:152.159988pt;}
._5d{width:153.170855pt;}
._7c{width:154.494296pt;}
._15{width:155.820317pt;}
._53{width:159.979844pt;}
._6f{width:163.956392pt;}
._52{width:166.004190pt;}
._74{width:178.700271pt;}
._2e{width:184.507537pt;}
._20{width:187.710959pt;}
._3b{width:188.647394pt;}
._73{width:190.429820pt;}
._2d{width:191.631565pt;}
._3a{width:194.719552pt;}
._2c{width:196.412791pt;}
._39{width:200.552649pt;}
._4d{width:201.652331pt;}
._8a{width:208.255366pt;}
._60{width:209.208561pt;}
._7b{width:221.260413pt;}
._22{width:232.893551pt;}
._1f{width:238.965709pt;}
._4f{width:252.381146pt;}
._26{width:269.374310pt;}
._16{width:271.717111pt;}
._40{width:273.199292pt;}
._6a{width:275.035325pt;}
._25{width:275.924591pt;}
._24{width:281.279565pt;}
._17{width:284.243925pt;}
._1e{width:289.503275pt;}
._2b{width:291.989513pt;}
._36{width:309.488802pt;}
._2a{width:314.604715pt;}
._29{width:320.676873pt;}
._3e{width:322.003055pt;}
._6e{width:324.371251pt;}
._70{width:325.523359pt;}
._28{width:326.509969pt;}
._42{width:328.900582pt;}
._41{width:333.681809pt;}
._1d{width:352.283558pt;}
._43{width:355.149517pt;}
._38{width:366.481024pt;}
._63{width:383.446696pt;}
._67{width:384.707293pt;}
._35{width:407.599573pt;}
._5c{width:408.679445pt;}
._4e{width:409.723123pt;}
._3f{width:413.767356pt;}
._56{width:433.561634pt;}
._23{width:437.004117pt;}
._59{width:438.247236pt;}
._45{width:439.585980pt;}
._18{width:450.391552pt;}
._37{width:460.193067pt;}
._44{width:462.535868pt;}
._46{width:513.914244pt;}
._4c{width:522.205577pt;}
._21{width:524.787439pt;}
._27{width:530.381474pt;}
._57{width:586.082765pt;}
._e{width:595.183629pt;}
._7{width:617.766400pt;}
._89{width:622.583697pt;}
._76{width:623.480721pt;}
._72{width:624.592657pt;}
._5f{width:625.882129pt;}
._58{width:646.334413pt;}
._54{width:671.885973pt;}
._3d{width:685.485393pt;}
._5b{width:708.769967pt;}
._55{width:747.592602pt;}
._5a{width:826.674091pt;}
._88{width:882.073725pt;}
._71{width:884.050527pt;}
._5e{width:886.229602pt;}
.fsa{font-size:7.942933pt;}
.fsf{font-size:9.266667pt;}
.fse{font-size:9.707733pt;}
.fsd{font-size:10.590400pt;}
.fsc{font-size:15.003200pt;}
.fs9{font-size:27.984000pt;}
.fs8{font-size:31.093333pt;}
.fs11{font-size:33.771200pt;}
.fs7{font-size:37.333333pt;}
.fs10{font-size:41.066667pt;}
.fs1c{font-size:41.132800pt;}
.fs18{font-size:41.184000pt;}
.fs16{font-size:41.247467pt;}
.fs1a{font-size:41.266667pt;}
.fs14{font-size:41.321067pt;}
.fs1d{font-size:44.816000pt;}
.fs19{font-size:44.872000pt;}
.fs17{font-size:44.940800pt;}
.fs1b{font-size:44.962133pt;}
.fs15{font-size:45.021333pt;}
.fs13{font-size:47.292800pt;}
.fs12{font-size:47.812267pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fsb{font-size:61.371733pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.fs1{font-size:305.813333pt;}
.y0{bottom:0.000000pt;}
.y21e{bottom:2.924933pt;}
.y21a{bottom:2.925067pt;}
.y240{bottom:2.925333pt;}
.y24d{bottom:2.925467pt;}
.y22a{bottom:2.925733pt;}
.y225{bottom:2.925867pt;}
.y1d8{bottom:2.926267pt;}
.y271{bottom:3.529600pt;}
.y29e{bottom:3.530400pt;}
.y29c{bottom:4.106669pt;}
.y28{bottom:12.903067pt;}
.y27{bottom:16.212533pt;}
.y29b{bottom:18.996785pt;}
.y29a{bottom:33.886901pt;}
.y6{bottom:40.968533pt;}
.y299{bottom:48.777017pt;}
.y17d{bottom:59.703338pt;}
.y125{bottom:59.909914pt;}
.y12e{bottom:59.912652pt;}
.y67{bottom:60.370133pt;}
.y23e{bottom:60.809490pt;}
.y264{bottom:60.815526pt;}
.y1bb{bottom:60.824321pt;}
.y1fd{bottom:60.830433pt;}
.y26d{bottom:60.832969pt;}
.y251{bottom:60.850979pt;}
.y298{bottom:63.667133pt;}
.y4f{bottom:63.836800pt;}
.y55{bottom:64.370133pt;}
.ycb{bottom:67.564800pt;}
.y8a{bottom:72.149600pt;}
.y17c{bottom:74.657389pt;}
.y124{bottom:74.902018pt;}
.y12d{bottom:74.904756pt;}
.y1ba{bottom:75.766697pt;}
.y263{bottom:75.776676pt;}
.y23d{bottom:75.781881pt;}
.y1fc{bottom:75.802823pt;}
.y26c{bottom:75.805359pt;}
.y250{bottom:75.812129pt;}
.y297{bottom:78.557249pt;}
.y4e{bottom:79.836800pt;}
.y54{bottom:80.370133pt;}
.yca{bottom:87.564800pt;}
.y21{bottom:88.674533pt;}
.y17b{bottom:89.588970pt;}
.y123{bottom:89.860356pt;}
.y12c{bottom:89.863094pt;}
.y1b9{bottom:90.675419pt;}
.y262{bottom:90.715345pt;}
.y23c{bottom:90.720549pt;}
.y1fb{bottom:90.741492pt;}
.y26b{bottom:90.744028pt;}
.y24f{bottom:90.750798pt;}
.y89{bottom:92.149600pt;}
.y296{bottom:93.447365pt;}
.y53{bottom:96.370133pt;}
.y66{bottom:100.370133pt;}
.y24c{bottom:102.764000pt;}
.y17a{bottom:104.520550pt;}
.y122{bottom:104.818694pt;}
.y12b{bottom:104.821432pt;}
.y1b8{bottom:105.584141pt;}
.y261{bottom:105.654014pt;}
.y23b{bottom:105.659218pt;}
.y24b{bottom:105.669886pt;}
.y1fa{bottom:105.680161pt;}
.y26a{bottom:105.682697pt;}
.y24e{bottom:105.689467pt;}
.yc9{bottom:107.564800pt;}
.y295{bottom:108.337481pt;}
.y88{bottom:112.149600pt;}
.y179{bottom:119.440896pt;}
.y121{bottom:119.765777pt;}
.y12a{bottom:119.768515pt;}
.y1b7{bottom:120.481645pt;}
.y260{bottom:120.581442pt;}
.y23a{bottom:120.586646pt;}
.y24a{bottom:120.597314pt;}
.y1f9{bottom:120.607589pt;}
.y269{bottom:120.610125pt;}
.y294{bottom:123.227597pt;}
.yc8{bottom:127.564800pt;}
.y20{bottom:128.674533pt;}
.y87{bottom:132.149600pt;}
.y178{bottom:134.372477pt;}
.y120{bottom:134.724115pt;}
.y129{bottom:134.726853pt;}
.y1b6{bottom:135.390367pt;}
.y25f{bottom:135.520111pt;}
.y239{bottom:135.525315pt;}
.y249{bottom:135.535983pt;}
.y1f8{bottom:135.546258pt;}
.y268{bottom:135.548794pt;}
.y293{bottom:138.117713pt;}
.y23{bottom:139.786267pt;}
.y65{bottom:140.370133pt;}
.y26{bottom:145.024267pt;}
.yc7{bottom:147.564800pt;}
.y1f{bottom:148.674533pt;}
.y177{bottom:149.304058pt;}
.y11f{bottom:149.682453pt;}
.y128{bottom:149.685191pt;}
.y1b5{bottom:150.299089pt;}
.y25e{bottom:150.458780pt;}
.y238{bottom:150.463984pt;}
.y248{bottom:150.474652pt;}
.y1f7{bottom:150.484927pt;}
.y267{bottom:150.487462pt;}
.y86{bottom:152.149600pt;}
.y292{bottom:153.007829pt;}
.y25{bottom:157.466000pt;}
.y176{bottom:164.235638pt;}
.y11e{bottom:164.640791pt;}
.y127{bottom:164.643529pt;}
.y1b4{bottom:165.207811pt;}
.y25d{bottom:165.397449pt;}
.y237{bottom:165.402653pt;}
.y247{bottom:165.413321pt;}
.y1f6{bottom:165.423596pt;}
.y266{bottom:165.426131pt;}
.y24{bottom:165.685467pt;}
.yc6{bottom:167.831600pt;}
.y291{bottom:167.897945pt;}
.y1e{bottom:168.674533pt;}
.y85{bottom:172.149600pt;}
.y175{bottom:179.167219pt;}
.y126{bottom:179.537797pt;}
.y11d{bottom:179.599129pt;}
.y1b3{bottom:180.056338pt;}
.y265{bottom:180.303340pt;}
.y25c{bottom:180.336117pt;}
.y236{bottom:180.341322pt;}
.y246{bottom:180.351989pt;}
.y1f5{bottom:180.362265pt;}
.y64{bottom:180.370133pt;}
.y290{bottom:182.788061pt;}
.yc5{bottom:188.098267pt;}
.y1d{bottom:188.674533pt;}
.y84{bottom:192.149600pt;}
.y174{bottom:194.040323pt;}
.y11c{bottom:194.496135pt;}
.y13e{bottom:194.515120pt;}
.y1b2{bottom:194.965060pt;}
.y218{bottom:195.242009pt;}
.y25b{bottom:195.274786pt;}
.y235{bottom:195.279990pt;}
.y245{bottom:195.290658pt;}
.y1f4{bottom:195.300933pt;}
.y63{bottom:196.370133pt;}
.y28f{bottom:197.678177pt;}
.yc4{bottom:208.364800pt;}
.y173{bottom:208.971904pt;}
.y11b{bottom:209.454473pt;}
.y13d{bottom:209.473458pt;}
.y1b1{bottom:209.873782pt;}
.y1f3{bottom:210.178009pt;}
.y217{bottom:210.180677pt;}
.y25a{bottom:210.213455pt;}
.y234{bottom:210.218659pt;}
.y244{bottom:210.229327pt;}
.y83{bottom:212.149600pt;}
.y62{bottom:212.370133pt;}
.y28e{bottom:212.590701pt;}
.y172{bottom:223.903485pt;}
.y11a{bottom:224.412811pt;}
.y13c{bottom:224.431796pt;}
.y1b0{bottom:224.782504pt;}
.y1f2{bottom:225.116677pt;}
.y216{bottom:225.119346pt;}
.y259{bottom:225.152124pt;}
.y233{bottom:225.157328pt;}
.y243{bottom:225.167996pt;}
.y28d{bottom:227.480817pt;}
.yc3{bottom:228.631467pt;}
.y82{bottom:232.149600pt;}
.y171{bottom:238.835066pt;}
.y119{bottom:239.371149pt;}
.y13b{bottom:239.390134pt;}
.y1af{bottom:239.691226pt;}
.y1f1{bottom:240.055346pt;}
.y215{bottom:240.058015pt;}
.y258{bottom:240.090793pt;}
.y232{bottom:240.095997pt;}
.y242{bottom:240.106665pt;}
.y28c{bottom:242.312555pt;}
.ye6{bottom:246.370133pt;}
.y1c{bottom:248.674533pt;}
.yc2{bottom:248.898133pt;}
.y23f{bottom:252.120000pt;}
.y81{bottom:252.149600pt;}
.y170{bottom:253.766646pt;}
.y118{bottom:254.329487pt;}
.y13a{bottom:254.348472pt;}
.y1ae{bottom:254.599948pt;}
.y1f0{bottom:254.994015pt;}
.y214{bottom:254.996684pt;}
.y257{bottom:255.029461pt;}
.y231{bottom:255.034666pt;}
.y241{bottom:255.045333pt;}
.y28b{bottom:257.202671pt;}
.ye5{bottom:266.370133pt;}
.y16f{bottom:268.698227pt;}
.yc1{bottom:269.164933pt;}
.y117{bottom:269.287825pt;}
.y139{bottom:269.306810pt;}
.y1ad{bottom:269.508670pt;}
.y1ef{bottom:269.932684pt;}
.y213{bottom:269.935353pt;}
.y256{bottom:269.968130pt;}
.y230{bottom:269.973334pt;}
.y28a{bottom:272.092787pt;}
.y80{bottom:272.149600pt;}
.y16e{bottom:283.629808pt;}
.y116{bottom:284.246163pt;}
.y138{bottom:284.265148pt;}
.ye4{bottom:284.370133pt;}
.y1ac{bottom:284.417392pt;}
.y1ee{bottom:284.871353pt;}
.y212{bottom:284.874021pt;}
.y255{bottom:284.906799pt;}
.y22f{bottom:284.912003pt;}
.y289{bottom:286.982903pt;}
.y1b{bottom:288.674533pt;}
.yc0{bottom:289.431600pt;}
.y7f{bottom:292.149600pt;}
.y16d{bottom:298.561389pt;}
.y115{bottom:299.204501pt;}
.y137{bottom:299.223486pt;}
.y1ab{bottom:299.326114pt;}
.y1ed{bottom:299.810021pt;}
.y211{bottom:299.812690pt;}
.y254{bottom:299.845468pt;}
.y22e{bottom:299.850672pt;}
.y288{bottom:301.873019pt;}
.ye3{bottom:302.370133pt;}
.y4d{bottom:303.836800pt;}
.y1a{bottom:308.674533pt;}
.ybf{bottom:309.698133pt;}
.y7e{bottom:312.149600pt;}
.y16c{bottom:313.526675pt;}
.y114{bottom:314.196605pt;}
.y136{bottom:314.215590pt;}
.y1aa{bottom:314.268490pt;}
.y1ec{bottom:314.782412pt;}
.y210{bottom:314.785081pt;}
.y253{bottom:314.817858pt;}
.y22d{bottom:314.823062pt;}
.y287{bottom:316.763135pt;}
.ye2{bottom:320.370133pt;}
.y4c{bottom:323.836800pt;}
.y6f{bottom:324.370133pt;}
.y16b{bottom:328.458256pt;}
.y19{bottom:328.674533pt;}
.y113{bottom:329.154943pt;}
.y135{bottom:329.173928pt;}
.y1a9{bottom:329.177212pt;}
.y1eb{bottom:329.721081pt;}
.y20f{bottom:329.723749pt;}
.y252{bottom:329.756527pt;}
.y22c{bottom:329.761731pt;}
.ybe{bottom:329.964800pt;}
.y286{bottom:331.653251pt;}
.y7d{bottom:332.149600pt;}
.ye1{bottom:338.370133pt;}
.y6e{bottom:340.370133pt;}
.y229{bottom:341.774667pt;}
.y26e{bottom:342.677333pt;}
.y16a{bottom:343.389837pt;}
.y4b{bottom:343.836800pt;}
.y1a8{bottom:344.085934pt;}
.y112{bottom:344.113281pt;}
.y134{bottom:344.132266pt;}
.y1ea{bottom:344.659749pt;}
.y20e{bottom:344.662418pt;}
.y228{bottom:344.695196pt;}
.y22b{bottom:344.700400pt;}
.y285{bottom:346.543367pt;}
.y7c{bottom:352.149600pt;}
.y6d{bottom:356.370133pt;}
.y169{bottom:358.321418pt;}
.y1a7{bottom:358.994656pt;}
.y111{bottom:359.071619pt;}
.y133{bottom:359.090604pt;}
.y1e9{bottom:359.598418pt;}
.y20d{bottom:359.601087pt;}
.y227{bottom:359.633865pt;}
.y284{bottom:361.433483pt;}
.y4a{bottom:363.836800pt;}
.ybd{bottom:370.498267pt;}
.y224{bottom:371.646667pt;}
.y7b{bottom:372.149600pt;}
.y6c{bottom:372.370133pt;}
.y168{bottom:373.252998pt;}
.y1a6{bottom:373.903378pt;}
.y110{bottom:374.029957pt;}
.y132{bottom:374.048942pt;}
.ye0{bottom:374.370133pt;}
.y1e8{bottom:374.537087pt;}
.y20c{bottom:374.539756pt;}
.y223{bottom:374.562258pt;}
.y226{bottom:374.572533pt;}
.y283{bottom:376.323599pt;}
.y49{bottom:384.103467pt;}
.y167{bottom:388.184579pt;}
.y6b{bottom:388.370133pt;}
.y1a5{bottom:388.812100pt;}
.y10f{bottom:388.988295pt;}
.y131{bottom:389.007280pt;}
.y1e7{bottom:389.475756pt;}
.y20b{bottom:389.478425pt;}
.y222{bottom:389.500927pt;}
.y282{bottom:391.213715pt;}
.y7a{bottom:392.149600pt;}
.ydf{bottom:392.370133pt;}
.y18{bottom:402.007867pt;}
.y166{bottom:403.116160pt;}
.y1a4{bottom:403.720822pt;}
.y10e{bottom:403.946633pt;}
.y130{bottom:403.965618pt;}
.y48{bottom:404.370133pt;}
.y1e6{bottom:404.414425pt;}
.y20a{bottom:404.417093pt;}
.y221{bottom:404.439596pt;}
.y281{bottom:406.103831pt;}
.yde{bottom:410.370133pt;}
.ybc{bottom:411.031600pt;}
.yad{bottom:412.149600pt;}
.y165{bottom:418.047741pt;}
.y1a3{bottom:418.629544pt;}
.y10d{bottom:418.904971pt;}
.y12f{bottom:418.923956pt;}
.y1e5{bottom:419.353093pt;}
.y209{bottom:419.355762pt;}
.y220{bottom:419.378265pt;}
.y17{bottom:420.670533pt;}
.y280{bottom:420.993947pt;}
.y47{bottom:424.636800pt;}
.ydd{bottom:428.370133pt;}
.ybb{bottom:431.298267pt;}
.y16{bottom:431.341200pt;}
.y21d{bottom:431.392000pt;}
.y79{bottom:432.149600pt;}
.y164{bottom:432.979322pt;}
.y1a2{bottom:433.538266pt;}
.y10c{bottom:433.863309pt;}
.y1e4{bottom:434.291762pt;}
.y208{bottom:434.294431pt;}
.y21c{bottom:434.314398pt;}
.y21f{bottom:434.316933pt;}
.y27f{bottom:435.884063pt;}
.y46{bottom:444.903467pt;}
.y219{bottom:446.328000pt;}
.ydc{bottom:446.370133pt;}
.y163{bottom:447.910902pt;}
.y1a1{bottom:448.446988pt;}
.y10b{bottom:448.821647pt;}
.y1e3{bottom:449.230431pt;}
.y207{bottom:449.233100pt;}
.y21b{bottom:449.253067pt;}
.y15{bottom:450.003867pt;}
.y27e{bottom:450.774179pt;}
.yba{bottom:451.564800pt;}
.y162{bottom:462.842483pt;}
.y1a0{bottom:463.355710pt;}
.y10a{bottom:463.779985pt;}
.y1e2{bottom:464.169100pt;}
.y206{bottom:464.171769pt;}
.ydb{bottom:464.370133pt;}
.y14{bottom:464.670533pt;}
.y45{bottom:465.170133pt;}
.y27d{bottom:465.697907pt;}
.y61{bottom:468.370133pt;}
.yb9{bottom:471.831600pt;}
.y161{bottom:477.774064pt;}
.y19f{bottom:478.264432pt;}
.y109{bottom:478.738323pt;}
.y1e1{bottom:479.107769pt;}
.y205{bottom:479.110437pt;}
.y13{bottom:479.337200pt;}
.y27c{bottom:480.588023pt;}
.yda{bottom:482.370133pt;}
.yaa{bottom:482.902512pt;}
.y44{bottom:485.436800pt;}
.y60{bottom:488.370133pt;}
.yb8{bottom:492.098133pt;}
.y160{bottom:492.705645pt;}
.y19e{bottom:493.173154pt;}
.y108{bottom:493.696661pt;}
.y12{bottom:494.003867pt;}
.y1e0{bottom:494.046437pt;}
.y204{bottom:494.049106pt;}
.y27b{bottom:495.478139pt;}
.ya9{bottom:498.620795pt;}
.yd9{bottom:500.370133pt;}
.y11{bottom:504.674533pt;}
.y43{bottom:505.703467pt;}
.y15f{bottom:507.637226pt;}
.y19d{bottom:508.081876pt;}
.y5f{bottom:508.370133pt;}
.y107{bottom:508.654999pt;}
.y1df{bottom:508.985106pt;}
.y203{bottom:508.987775pt;}
.y27a{bottom:510.368255pt;}
.yb7{bottom:512.364933pt;}
.ya8{bottom:514.362983pt;}
.yd8{bottom:518.370133pt;}
.y15e{bottom:522.568806pt;}
.y19c{bottom:522.990598pt;}
.y10{bottom:523.337200pt;}
.y106{bottom:523.613337pt;}
.y1de{bottom:523.923775pt;}
.y202{bottom:523.926444pt;}
.y279{bottom:525.258371pt;}
.y42{bottom:525.970133pt;}
.y5e{bottom:528.370133pt;}
.ya7{bottom:530.081266pt;}
.yb6{bottom:532.631600pt;}
.yd7{bottom:536.370133pt;}
.y15d{bottom:537.500387pt;}
.y19b{bottom:537.899320pt;}
.y105{bottom:538.571675pt;}
.y1dd{bottom:538.862444pt;}
.y201{bottom:538.865113pt;}
.y278{bottom:540.148487pt;}
.ya6{bottom:545.799549pt;}
.y41{bottom:546.236800pt;}
.y5d{bottom:548.370133pt;}
.y15c{bottom:552.454438pt;}
.y19a{bottom:552.830478pt;}
.yb5{bottom:552.898133pt;}
.y104{bottom:553.552524pt;}
.y1dc{bottom:553.823594pt;}
.y200{bottom:553.826262pt;}
.yd6{bottom:554.370133pt;}
.y277{bottom:555.038603pt;}
.yf{bottom:560.674533pt;}
.ya5{bottom:561.517831pt;}
.y40{bottom:566.503467pt;}
.y15b{bottom:567.386019pt;}
.y199{bottom:567.680288pt;}
.y5c{bottom:568.370133pt;}
.y103{bottom:568.510862pt;}
.y1db{bottom:568.762262pt;}
.y1ff{bottom:568.764931pt;}
.y276{bottom:569.928719pt;}
.yd5{bottom:572.370133pt;}
.yb4{bottom:573.164933pt;}
.ya4{bottom:577.236114pt;}
.y15a{bottom:582.264181pt;}
.y198{bottom:582.589010pt;}
.y102{bottom:583.407251pt;}
.y1fe{bottom:583.643958pt;}
.y1da{bottom:583.700931pt;}
.y275{bottom:584.818835pt;}
.y3f{bottom:586.770133pt;}
.y5b{bottom:588.370133pt;}
.yd4{bottom:590.370133pt;}
.ya3{bottom:592.954397pt;}
.yb3{bottom:593.431467pt;}
.y1d7{bottom:595.713333pt;}
.y159{bottom:597.195762pt;}
.y197{bottom:597.497732pt;}
.y101{bottom:598.365589pt;}
.y1d6{bottom:598.582627pt;}
.y1d9{bottom:598.639600pt;}
.y274{bottom:599.708951pt;}
.yd{bottom:603.341200pt;}
.y3e{bottom:607.036800pt;}
.ye{bottom:607.781200pt;}
.y5a{bottom:608.370133pt;}
.ya2{bottom:608.672679pt;}
.y158{bottom:612.127343pt;}
.y196{bottom:612.406454pt;}
.y100{bottom:613.323927pt;}
.y1d5{bottom:613.521296pt;}
.yb2{bottom:613.698267pt;}
.y273{bottom:614.599067pt;}
.yb{bottom:619.341200pt;}
.yc{bottom:623.781200pt;}
.ya1{bottom:624.390962pt;}
.yd3{bottom:626.370133pt;}
.y157{bottom:627.058924pt;}
.y3d{bottom:627.303467pt;}
.y195{bottom:627.315176pt;}
.yff{bottom:628.282265pt;}
.y59{bottom:628.370133pt;}
.y1d4{bottom:628.459965pt;}
.y272{bottom:629.486667pt;}
.yb1{bottom:633.964933pt;}
.ya0{bottom:640.109245pt;}
.y156{bottom:641.990505pt;}
.y194{bottom:642.223898pt;}
.yfe{bottom:643.240603pt;}
.y1d3{bottom:643.398634pt;}
.y52{bottom:644.370133pt;}
.y26f{bottom:644.374400pt;}
.y3c{bottom:647.570133pt;}
.y58{bottom:648.370133pt;}
.y9f{bottom:655.863387pt;}
.y155{bottom:656.922085pt;}
.y193{bottom:657.132620pt;}
.yfd{bottom:658.198941pt;}
.y1d2{bottom:658.337302pt;}
.y51{bottom:660.370133pt;}
.ya{bottom:662.007867pt;}
.yd2{bottom:662.370133pt;}
.y3b{bottom:667.836800pt;}
.y57{bottom:668.370133pt;}
.y9e{bottom:671.581669pt;}
.y154{bottom:671.853666pt;}
.y192{bottom:672.041342pt;}
.yfc{bottom:673.157279pt;}
.y1d1{bottom:673.275971pt;}
.yb0{bottom:674.498267pt;}
.y50{bottom:676.370133pt;}
.yd1{bottom:680.370133pt;}
.y9{bottom:682.007867pt;}
.y153{bottom:686.785247pt;}
.y9d{bottom:687.299952pt;}
.y3a{bottom:688.103467pt;}
.yfb{bottom:688.115617pt;}
.y1d0{bottom:688.214640pt;}
.y56{bottom:688.370133pt;}
.yd0{bottom:698.370133pt;}
.y152{bottom:701.716828pt;}
.y8{bottom:702.007867pt;}
.y191{bottom:702.161672pt;}
.y9c{bottom:703.018235pt;}
.yfa{bottom:703.073955pt;}
.y1cf{bottom:703.153309pt;}
.y39{bottom:708.370133pt;}
.yaf{bottom:715.031600pt;}
.ycf{bottom:716.370133pt;}
.y151{bottom:716.648409pt;}
.y190{bottom:717.070394pt;}
.yf9{bottom:718.032293pt;}
.y1ce{bottom:718.091978pt;}
.y9b{bottom:718.736517pt;}
.y7{bottom:722.007867pt;}
.y77{bottom:723.702556pt;}
.y38{bottom:728.370133pt;}
.yae{bottom:731.031600pt;}
.y150{bottom:731.579989pt;}
.y18f{bottom:731.979116pt;}
.yf8{bottom:732.990631pt;}
.y1cd{bottom:733.030646pt;}
.yce{bottom:734.370133pt;}
.y9a{bottom:734.584667pt;}
.y76{bottom:736.012158pt;}
.y14f{bottom:746.511570pt;}
.y18e{bottom:746.887838pt;}
.yf7{bottom:747.948969pt;}
.y1cc{bottom:747.969315pt;}
.y75{bottom:748.321761pt;}
.y37{bottom:748.370133pt;}
.y99{bottom:750.206411pt;}
.ycd{bottom:752.370133pt;}
.y74{bottom:760.631363pt;}
.y14e{bottom:761.443151pt;}
.y18d{bottom:761.796560pt;}
.yf6{bottom:762.907307pt;}
.y1cb{bottom:762.907984pt;}
.y98{bottom:765.924693pt;}
.y36{bottom:768.370133pt;}
.ycc{bottom:770.370133pt;}
.y73{bottom:772.940966pt;}
.y14d{bottom:776.374732pt;}
.y18c{bottom:776.705282pt;}
.y1ca{bottom:777.846653pt;}
.yf5{bottom:777.865645pt;}
.y97{bottom:781.666882pt;}
.y72{bottom:785.250568pt;}
.y35{bottom:788.370133pt;}
.y14c{bottom:791.306313pt;}
.y18b{bottom:791.614004pt;}
.y1c9{bottom:792.785322pt;}
.yf4{bottom:792.823983pt;}
.y96{bottom:797.385165pt;}
.y71{bottom:797.762798pt;}
.y78{bottom:804.263754pt;}
.y14b{bottom:806.271599pt;}
.y18a{bottom:806.556380pt;}
.y1c8{bottom:807.757712pt;}
.yf3{bottom:807.816087pt;}
.y34{bottom:808.370133pt;}
.y70{bottom:810.072400pt;}
.y95{bottom:813.103447pt;}
.y14a{bottom:821.203180pt;}
.y189{bottom:821.465102pt;}
.y1c7{bottom:822.696381pt;}
.yf2{bottom:822.774425pt;}
.y33{bottom:828.370133pt;}
.y94{bottom:828.821730pt;}
.y149{bottom:836.134761pt;}
.y6a{bottom:836.370133pt;}
.y188{bottom:836.373824pt;}
.y1c6{bottom:837.635050pt;}
.yf1{bottom:837.732763pt;}
.y93{bottom:844.540013pt;}
.y1{bottom:846.425200pt;}
.y32{bottom:848.370133pt;}
.y148{bottom:851.066341pt;}
.y187{bottom:851.282546pt;}
.y69{bottom:852.370133pt;}
.y1c5{bottom:852.573718pt;}
.yf0{bottom:852.691101pt;}
.y92{bottom:860.258295pt;}
.y147{bottom:865.997922pt;}
.y186{bottom:866.191268pt;}
.y22{bottom:866.677333pt;}
.y1c4{bottom:867.512387pt;}
.yef{bottom:867.649439pt;}
.y31{bottom:868.370133pt;}
.y5{bottom:875.685067pt;}
.y91{bottom:875.976578pt;}
.y146{bottom:880.929503pt;}
.y185{bottom:881.099990pt;}
.y1c3{bottom:882.451056pt;}
.yee{bottom:882.607777pt;}
.y30{bottom:888.370133pt;}
.y90{bottom:891.694861pt;}
.y145{bottom:895.855410pt;}
.y184{bottom:896.008712pt;}
.y4{bottom:896.301867pt;}
.y1c2{bottom:897.389725pt;}
.yed{bottom:897.566115pt;}
.y8f{bottom:907.413143pt;}
.y2f{bottom:908.370133pt;}
.y144{bottom:910.786991pt;}
.y183{bottom:910.917434pt;}
.y1c1{bottom:912.328394pt;}
.yec{bottom:912.524453pt;}
.y3{bottom:922.968533pt;}
.y8e{bottom:923.167285pt;}
.y143{bottom:925.718572pt;}
.y182{bottom:925.826156pt;}
.y1c0{bottom:927.267062pt;}
.yeb{bottom:927.482791pt;}
.y2e{bottom:928.370133pt;}
.y8d{bottom:938.885568pt;}
.y142{bottom:940.650153pt;}
.y181{bottom:940.734878pt;}
.y1bf{bottom:942.205731pt;}
.yea{bottom:942.441129pt;}
.y2d{bottom:948.370133pt;}
.y8c{bottom:954.603851pt;}
.y141{bottom:955.581733pt;}
.y180{bottom:955.643600pt;}
.y1be{bottom:957.144400pt;}
.ye9{bottom:957.399467pt;}
.y2c{bottom:968.370133pt;}
.y140{bottom:970.200417pt;}
.y17f{bottom:970.239925pt;}
.y8b{bottom:970.322133pt;}
.ye8{bottom:972.044307pt;}
.y1bd{bottom:972.078133pt;}
.y2{bottom:982.126000pt;}
.y29d{bottom:983.521333pt;}
.y270{bottom:984.136000pt;}
.y13f{bottom:985.132000pt;}
.y17e{bottom:985.148533pt;}
.yab{bottom:986.604741pt;}
.ye7{bottom:987.002533pt;}
.y1bc{bottom:987.016667pt;}
.y2b{bottom:988.370133pt;}
.y68{bottom:1008.370133pt;}
.y2a{bottom:1028.370133pt;}
.yac{bottom:1030.370133pt;}
.y29{bottom:1075.724400pt;}
.hf{height:6.624406pt;}
.h14{height:7.663533pt;}
.h13{height:8.028295pt;}
.h12{height:8.832394pt;}
.h11{height:12.512669pt;}
.h38{height:13.660000pt;}
.h34{height:13.704000pt;}
.h31{height:13.705333pt;}
.h3b{height:14.274667pt;}
.hb{height:20.176464pt;}
.ha{height:25.900747pt;}
.h9{height:26.666667pt;}
.hc{height:34.608000pt;}
.h17{height:36.033870pt;}
.h18{height:36.844379pt;}
.h2{height:39.696000pt;}
.h16{height:40.032000pt;}
.h6{height:42.298667pt;}
.h37{height:43.888698pt;}
.h2a{height:43.943328pt;}
.h24{height:44.011047pt;}
.h2f{height:44.031533pt;}
.h1c{height:44.089578pt;}
.hd{height:44.106667pt;}
.h8{height:44.426667pt;}
.h5{height:46.144000pt;}
.h29{height:46.414368pt;}
.h23{height:46.485895pt;}
.h2e{height:46.507533pt;}
.h1b{height:46.568842pt;}
.h39{height:47.818672pt;}
.h2b{height:47.878424pt;}
.h25{height:47.951834pt;}
.h26{height:47.974528pt;}
.h30{height:47.974596pt;}
.h1d{height:48.037763pt;}
.h3a{height:48.052187pt;}
.h21{height:48.113701pt;}
.h2c{height:48.114072pt;}
.h2d{height:48.119205pt;}
.h27{height:48.165508pt;}
.h28{height:48.185741pt;}
.h22{height:48.207149pt;}
.h33{height:48.210295pt;}
.h32{height:48.213163pt;}
.h35{height:48.220437pt;}
.h1f{height:48.283088pt;}
.h1e{height:48.285560pt;}
.h20{height:48.294040pt;}
.h15{height:48.517333pt;}
.h1a{height:50.496222pt;}
.h19{height:51.015689pt;}
.h10{height:51.184026pt;}
.h7{height:57.680000pt;}
.h4{height:75.616000pt;}
.he{height:184.498667pt;}
.h3{height:255.048320pt;}
.h36{height:655.118667pt;}
.h1{height:1114.666667pt;}
.h0{height:1114.959961pt;}
.w4{width:96.390667pt;}
.w6{width:99.596000pt;}
.w7{width:104.692000pt;}
.w3{width:136.817333pt;}
.w5{width:707.612000pt;}
.w2{width:850.393333pt;}
.w0{width:850.393392pt;}
.w1{width:850.666667pt;}
.x0{left:0.000000pt;}
.x55{left:1.539600pt;}
.x5e{left:4.631867pt;}
.x25{left:7.752267pt;}
.x22{left:31.302933pt;}
.x5a{left:33.652267pt;}
.x26{left:35.476133pt;}
.x24{left:51.686400pt;}
.x2a{left:56.692933pt;}
.x40{left:57.637867pt;}
.x50{left:58.582667pt;}
.x23{left:61.263067pt;}
.x49{left:63.904267pt;}
.x2f{left:68.031600pt;}
.x4{left:75.590533pt;}
.x4b{left:76.850400pt;}
.x3b{left:79.060942pt;}
.x59{left:80.838667pt;}
.x4e{left:82.801867pt;}
.x53{left:83.968000pt;}
.x33{left:86.929067pt;}
.x29{left:94.488267pt;}
.x47{left:95.974133pt;}
.x48{left:98.443067pt;}
.x20{left:113.385867pt;}
.x4c{left:114.871867pt;}
.x51{left:115.931600pt;}
.x4d{left:117.340800pt;}
.x52{left:118.392344pt;}
.x8{left:124.195600pt;}
.xa{left:125.977467pt;}
.x1{left:129.470800pt;}
.x1f{left:132.416800pt;}
.x15{left:138.799200pt;}
.x5b{left:155.472667pt;}
.x44{left:175.152667pt;}
.x28{left:179.499867pt;}
.x3c{left:201.878702pt;}
.x2b{left:209.709867pt;}
.x3e{left:214.096803pt;}
.x43{left:222.146533pt;}
.x32{left:228.764133pt;}
.xb{left:232.997867pt;}
.xc{left:243.242267pt;}
.x3f{left:246.322271pt;}
.x5{left:252.563067pt;}
.x6{left:254.733067pt;}
.x16{left:258.651733pt;}
.x9{left:268.701867pt;}
.x7{left:278.867600pt;}
.x3d{left:285.695673pt;}
.x3{left:287.244133pt;}
.x2c{left:288.959333pt;}
.x27{left:297.327600pt;}
.x54{left:304.330667pt;}
.x3a{left:306.850533pt;}
.x57{left:323.228000pt;}
.x2d{left:340.013067pt;}
.xd{left:341.422667pt;}
.x2{left:345.826800pt;}
.x1e{left:368.072800pt;}
.x2e{left:390.943333pt;}
.x17{left:395.755467pt;}
.x18{left:399.797467pt;}
.x56{left:418.763467pt;}
.x41{left:425.196800pt;}
.x31{left:436.535467pt;}
.x58{left:437.661067pt;}
.xe{left:443.561600pt;}
.x38{left:446.597836pt;}
.xf{left:447.881200pt;}
.x35{left:455.433067pt;}
.x42{left:462.992133pt;}
.x36{left:469.486267pt;}
.x37{left:471.419668pt;}
.x34{left:481.889733pt;}
.x46{left:489.448800pt;}
.x4a{left:521.452800pt;}
.x39{left:525.115876pt;}
.x19{left:531.762667pt;}
.x5c{left:532.913333pt;}
.x1a{left:535.804800pt;}
.x10{left:538.091467pt;}
.x4f{left:540.350400pt;}
.x11{left:542.552533pt;}
.x30{left:546.670267pt;}
.x45{left:577.394267pt;}
.x1b{left:621.108000pt;}
.x1c{left:625.313333pt;}
.x5d{left:632.516000pt;}
.x12{left:640.150400pt;}
.x13{left:644.517467pt;}
.x21{left:656.882667pt;}
.x1d{left:726.325867pt;}
.x14{left:735.706267pt;}
}




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