
    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_edf17265424e3557af51913e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.902000;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_696a38866f5def54caac2815.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.888000;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_721ef15c01f5f0dbcdf148cc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.852000;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_1e0f6873c53883db631edd96.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7bb137e93887fd34ab44531c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_cbbc032bdcaab256309828ba.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861000;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_5cadf77cf0148d4122db86fa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.934000;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_7df96035403c60bc91271e98.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.780000;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_c284119d8543b2d9529e4af4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ef6a61caa99000cb7d38a969.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.782000;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_42b894323eea6d5e7815cea1.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.025000;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_ce4ef384385ab20fc08a8f13.woff2')format("woff");}.ffc{font-family:ffc;line-height:2.999000;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_faa769b307972cf782159c49.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.685000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b459d697caa2aa18ef7bac99.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.431000;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_33c83d95a6ae50f48535553b.woff2')format("woff");}.fff{font-family:fff;line-height:0.902000;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_c0c12800adbdae9aa55926c5.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.901000;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_a58f5f4679d15f1620e8296e.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_4d850285ed5035b33b2a54e0.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.002000;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_a2d34e90179b81455e0e9873.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_41cd0a83f3de0a48aa50da4d.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_7f8cd3b0bede310ea56201a7.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.918000;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_84040e126516381389cc6de0.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_26125adab657ffffe3dbb263.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.848000;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_fd008e2e410cf0609b083f5a.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.914000;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_6c47e8c151dffb8a177a0b58.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.899000;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_d177c5e7062dc33af3b979a5.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.897000;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_7bfd2e2a1dededc162bc21f0.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.686000;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_fad7081dba4325bd4ff23d00.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.676000;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_b599e85c4e3c17025bf95fe8.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_537905ccf628004368545164.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v17{vertical-align:-19.350000px;}
.v3{vertical-align:-17.934000px;}
.vf{vertical-align:-15.714000px;}
.va{vertical-align:-13.320000px;}
.v6{vertical-align:-10.662000px;}
.v1{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v15{vertical-align:5.898000px;}
.v11{vertical-align:10.470000px;}
.vd{vertical-align:16.182000px;}
.vb{vertical-align:18.912000px;}
.v4{vertical-align:21.690000px;}
.v5{vertical-align:23.754000px;}
.v9{vertical-align:27.024000px;}
.v13{vertical-align:32.922000px;}
.v10{vertical-align:34.500000px;}
.v12{vertical-align:37.104000px;}
.v7{vertical-align:39.276000px;}
.ve{vertical-align:43.206000px;}
.v2{vertical-align:44.832000px;}
.v18{vertical-align:46.920000px;}
.v16{vertical-align:49.092000px;}
.vc{vertical-align:59.160000px;}
.v8{vertical-align:66.300000px;}
.v1d{vertical-align:84.858000px;}
.v14{vertical-align:89.088000px;}
.v1c{vertical-align:93.972000px;}
.v1a{vertical-align:107.082000px;}
.v1b{vertical-align:111.930000px;}
.v19{vertical-align:156.828000px;}
.ls25{letter-spacing:0.000000px;}
.lsa6{letter-spacing:0.000201px;}
.ls9a{letter-spacing:0.000245px;}
.lsdc{letter-spacing:0.000499px;}
.ls68{letter-spacing:0.001050px;}
.lsa1{letter-spacing:0.001058px;}
.ls42{letter-spacing:0.001059px;}
.ls10f{letter-spacing:0.001593px;}
.lsf7{letter-spacing:0.001599px;}
.ls75{letter-spacing:0.001821px;}
.ls48{letter-spacing:0.002102px;}
.ls111{letter-spacing:0.002108px;}
.ls34{letter-spacing:0.002544px;}
.ls52{letter-spacing:0.002696px;}
.lsde{letter-spacing:0.002700px;}
.ls7c{letter-spacing:0.003108px;}
.lsd4{letter-spacing:0.003193px;}
.lscb{letter-spacing:0.003791px;}
.lse{letter-spacing:0.004200px;}
.ls138{letter-spacing:0.004332px;}
.ls6{letter-spacing:0.004409px;}
.ls8{letter-spacing:0.004583px;}
.ls83{letter-spacing:0.004844px;}
.ls133{letter-spacing:0.005349px;}
.lsa3{letter-spacing:0.005402px;}
.lsd8{letter-spacing:0.005408px;}
.lsb{letter-spacing:0.005514px;}
.ls13d{letter-spacing:0.005972px;}
.ls4e{letter-spacing:0.007461px;}
.ls88{letter-spacing:0.008062px;}
.lsd6{letter-spacing:0.008298px;}
.ls60{letter-spacing:0.009320px;}
.lsda{letter-spacing:0.009491px;}
.lsf1{letter-spacing:0.011281px;}
.ls49{letter-spacing:0.012206px;}
.lsb0{letter-spacing:0.012877px;}
.ls140{letter-spacing:0.013001px;}
.ls97{letter-spacing:0.013257px;}
.lsed{letter-spacing:0.013772px;}
.ls5d{letter-spacing:0.014638px;}
.ls121{letter-spacing:0.014912px;}
.ls2{letter-spacing:0.015025px;}
.lsab{letter-spacing:0.015054px;}
.ls50{letter-spacing:0.015167px;}
.ls122{letter-spacing:0.015569px;}
.ls58{letter-spacing:0.016274px;}
.lsfd{letter-spacing:0.017262px;}
.ls10b{letter-spacing:0.017784px;}
.ls56{letter-spacing:0.018856px;}
.lsae{letter-spacing:0.018877px;}
.ls81{letter-spacing:0.018931px;}
.lsb6{letter-spacing:0.020112px;}
.ls6d{letter-spacing:0.020534px;}
.lsb4{letter-spacing:0.020584px;}
.ls11e{letter-spacing:0.020987px;}
.ls99{letter-spacing:0.021041px;}
.ls80{letter-spacing:0.021262px;}
.ls142{letter-spacing:0.022182px;}
.ls23{letter-spacing:0.022692px;}
.ls1b{letter-spacing:0.023279px;}
.ls53{letter-spacing:0.023335px;}
.ls12d{letter-spacing:0.024372px;}
.ls135{letter-spacing:0.024661px;}
.ls54{letter-spacing:0.024860px;}
.lseb{letter-spacing:0.025054px;}
.ls101{letter-spacing:0.026013px;}
.lsc2{letter-spacing:0.026101px;}
.ls36{letter-spacing:0.026296px;}
.lsc8{letter-spacing:0.027115px;}
.ls9c{letter-spacing:0.028251px;}
.ls8a{letter-spacing:0.028716px;}
.ls94{letter-spacing:0.029829px;}
.lsd{letter-spacing:0.029883px;}
.lsa9{letter-spacing:0.030872px;}
.ls9b{letter-spacing:0.031509px;}
.lsbc{letter-spacing:0.032101px;}
.lscc{letter-spacing:0.033654px;}
.ls4b{letter-spacing:0.573847px;}
.ls39{letter-spacing:1.767274px;}
.ls40{letter-spacing:1.832729px;}
.ls143{letter-spacing:2.029093px;}
.ls148{letter-spacing:2.094547px;}
.ls12e{letter-spacing:2.316372px;}
.ls2d{letter-spacing:2.356366px;}
.lse6{letter-spacing:2.477976px;}
.lse9{letter-spacing:2.487275px;}
.lsa7{letter-spacing:2.979297px;}
.ls7{letter-spacing:2.982648px;}
.ls132{letter-spacing:2.984263px;}
.lsc6{letter-spacing:2.984292px;}
.ls3{letter-spacing:2.984525px;}
.ls7f{letter-spacing:2.984915px;}
.ls4d{letter-spacing:2.985297px;}
.ls108{letter-spacing:2.985543px;}
.lsb2{letter-spacing:2.987207px;}
.ls37{letter-spacing:2.987236px;}
.ls4f{letter-spacing:2.987447px;}
.ls51{letter-spacing:2.988499px;}
.lsf2{letter-spacing:2.988509px;}
.lsdd{letter-spacing:2.988532px;}
.ls69{letter-spacing:2.989115px;}
.ls109{letter-spacing:2.989289px;}
.ls8f{letter-spacing:2.989392px;}
.ls14{letter-spacing:2.989409px;}
.lsc7{letter-spacing:2.990263px;}
.ls131{letter-spacing:2.990292px;}
.lsbd{letter-spacing:2.990915px;}
.ls44{letter-spacing:2.993236px;}
.ls10c{letter-spacing:2.995289px;}
.ls7e{letter-spacing:3.600003px;}
.ls8e{letter-spacing:3.638154px;}
.ls85{letter-spacing:3.665458px;}
.ls123{letter-spacing:3.730912px;}
.ls141{letter-spacing:4.265644px;}
.lsa{letter-spacing:4.275333px;}
.ls0{letter-spacing:4.281333px;}
.lsa2{letter-spacing:4.393329px;}
.ls9e{letter-spacing:4.399329px;}
.lsb9{letter-spacing:5.105459px;}
.lsc0{letter-spacing:5.170913px;}
.ls107{letter-spacing:5.301823px;}
.ls100{letter-spacing:6.349096px;}
.ls47{letter-spacing:6.676369px;}
.lsb3{letter-spacing:7.003642px;}
.lsaf{letter-spacing:7.077449px;}
.ls2c{letter-spacing:7.134551px;}
.ls2f{letter-spacing:7.200006px;}
.ls13{letter-spacing:8.308808px;}
.ls3f{letter-spacing:9.098189px;}
.ls12{letter-spacing:9.145667px;}
.lsff{letter-spacing:9.341236px;}
.ls4{letter-spacing:9.420479px;}
.lsb7{letter-spacing:9.621826px;}
.lsd3{letter-spacing:10.048177px;}
.lsc1{letter-spacing:10.865464px;}
.ls110{letter-spacing:10.907412px;}
.ls38{letter-spacing:10.930918px;}
.ls12a{letter-spacing:11.716373px;}
.lsf0{letter-spacing:11.789674px;}
.ls11{letter-spacing:12.138648px;}
.ls126{letter-spacing:12.174556px;}
.lsb8{letter-spacing:12.395236px;}
.ls5{letter-spacing:12.948648px;}
.lsf6{letter-spacing:13.895236px;}
.ls106{letter-spacing:13.899543px;}
.ls1e{letter-spacing:14.530921px;}
.ls5b{letter-spacing:14.596376px;}
.ls5a{letter-spacing:14.661830px;}
.ls114{letter-spacing:14.989103px;}
.ls70{letter-spacing:15.578195px;}
.lse8{letter-spacing:15.691536px;}
.lsc{letter-spacing:16.019861px;}
.ls16{letter-spacing:16.438290px;}
.ls10{letter-spacing:16.617617px;}
.ls129{letter-spacing:16.821832px;}
.ls71{letter-spacing:16.887287px;}
.ls125{letter-spacing:17.345469px;}
.ls4c{letter-spacing:17.529297px;}
.ls136{letter-spacing:17.530059px;}
.ls1d{letter-spacing:17.531236px;}
.ls43{letter-spacing:17.537236px;}
.ls59{letter-spacing:17.657236px;}
.ls62{letter-spacing:17.672742px;}
.ls87{letter-spacing:17.869106px;}
.ls22{letter-spacing:18.130924px;}
.lsf5{letter-spacing:18.180924px;}
.ls1c{letter-spacing:18.196379px;}
.ls104{letter-spacing:18.261833px;}
.ls57{letter-spacing:18.458197px;}
.ls27{letter-spacing:19.374562px;}
.ls65{letter-spacing:19.440016px;}
.lsd5{letter-spacing:19.505471px;}
.ls15{letter-spacing:19.546621px;}
.ls3b{letter-spacing:19.636380px;}
.ls115{letter-spacing:19.898198px;}
.ls144{letter-spacing:20.225471px;}
.ls149{letter-spacing:20.290926px;}
.lsf3{letter-spacing:20.489236px;}
.lsce{letter-spacing:20.552744px;}
.ls79{letter-spacing:20.618199px;}
.ls17{letter-spacing:20.682358px;}
.ls78{letter-spacing:20.683654px;}
.ls61{letter-spacing:20.687236px;}
.ls18{letter-spacing:20.742133px;}
.lsbb{letter-spacing:21.144699px;}
.ls7d{letter-spacing:21.164915px;}
.lsa8{letter-spacing:21.165297px;}
.ls9d{letter-spacing:21.167207px;}
.ls35{letter-spacing:21.167236px;}
.ls13e{letter-spacing:21.169289px;}
.ls7b{letter-spacing:21.170915px;}
.ls46{letter-spacing:21.173236px;}
.ls11f{letter-spacing:21.272745px;}
.ls2b{letter-spacing:21.403654px;}
.ls29{letter-spacing:21.665473px;}
.ls20{letter-spacing:21.730927px;}
.ls9{letter-spacing:22.236523px;}
.lsd7{letter-spacing:22.516382px;}
.ls105{letter-spacing:22.579329px;}
.ls10e{letter-spacing:22.766690px;}
.lse4{letter-spacing:22.778201px;}
.ls93{letter-spacing:23.236383px;}
.ls6f{letter-spacing:23.301838px;}
.ls90{letter-spacing:23.929591px;}
.lsf{letter-spacing:24.029791px;}
.ls96{letter-spacing:24.218202px;}
.ls1{letter-spacing:24.268894px;}
.ls95{letter-spacing:24.283657px;}
.ls11d{letter-spacing:24.610930px;}
.lsf4{letter-spacing:24.676384px;}
.ls24{letter-spacing:24.686915px;}
.lsf8{letter-spacing:24.689236px;}
.ls76{letter-spacing:24.692915px;}
.ls124{letter-spacing:24.807293px;}
.ls63{letter-spacing:24.938203px;}
.lse5{letter-spacing:25.134566px;}
.ls2e{letter-spacing:25.330930px;}
.ls146{letter-spacing:25.341214px;}
.ls145{letter-spacing:25.461839px;}
.ls12f{letter-spacing:25.527294px;}
.ls33{letter-spacing:25.854567px;}
.ls72{letter-spacing:25.920022px;}
.ls5f{letter-spacing:26.050931px;}
.lscf{letter-spacing:26.101329px;}
.ls7a{letter-spacing:26.162915px;}
.ls120{letter-spacing:26.181840px;}
.ls9f{letter-spacing:26.225236px;}
.ls6e{letter-spacing:26.228915px;}
.ls10d{letter-spacing:26.275289px;}
.ls74{letter-spacing:26.312749px;}
.ls26{letter-spacing:26.574568px;}
.ls66{letter-spacing:26.640022px;}
.ls127{letter-spacing:26.967295px;}
.lse3{letter-spacing:27.098204px;}
.lse2{letter-spacing:27.163659px;}
.ls3e{letter-spacing:27.229114px;}
.lsa5{letter-spacing:27.637329px;}
.ls139{letter-spacing:27.883660px;}
.lsba{letter-spacing:28.222177px;}
.ls130{letter-spacing:28.341842px;}
.ls3d{letter-spacing:28.407296px;}
.ls31{letter-spacing:28.800024px;}
.ls1a{letter-spacing:28.865479px;}
.ls21{letter-spacing:28.930933px;}
.ls84{letter-spacing:29.042915px;}
.lsee{letter-spacing:29.066915px;}
.lsec{letter-spacing:29.069236px;}
.lsea{letter-spacing:29.075236px;}
.lse0{letter-spacing:29.127297px;}
.ls73{letter-spacing:29.276915px;}
.ls128{letter-spacing:29.323661px;}
.ls98{letter-spacing:29.552915px;}
.ls2a{letter-spacing:29.585479px;}
.lsb5{letter-spacing:29.847298px;}
.ls30{letter-spacing:29.912752px;}
.ls55{letter-spacing:29.978207px;}
.ls12c{letter-spacing:30.174571px;}
.ls137{letter-spacing:30.264838px;}
.ls64{letter-spacing:30.305480px;}
.ls6b{letter-spacing:30.370934px;}
.lsad{letter-spacing:30.501844px;}
.lsfa{letter-spacing:30.632753px;}
.ls77{letter-spacing:30.698207px;}
.lse7{letter-spacing:30.707236px;}
.lsac{letter-spacing:30.763662px;}
.ls1f{letter-spacing:30.829117px;}
.ls67{letter-spacing:31.090935px;}
.lsc4{letter-spacing:31.221844px;}
.lsca{letter-spacing:31.352753px;}
.ls82{letter-spacing:31.549117px;}
.lse1{letter-spacing:32.090915px;}
.ls92{letter-spacing:32.334572px;}
.ls19{letter-spacing:32.727300px;}
.lsdb{letter-spacing:32.819236px;}
.ls113{letter-spacing:33.578210px;}
.ls11b{letter-spacing:34.625483px;}
.lsd2{letter-spacing:34.756393px;}
.ls91{letter-spacing:34.887302px;}
.ls103{letter-spacing:36.000030px;}
.lsf9{letter-spacing:36.130939px;}
.ls28{letter-spacing:37.178213px;}
.ls102{letter-spacing:39.005236px;}
.lsd0{letter-spacing:39.995424px;}
.ls12b{letter-spacing:43.985491px;}
.lsfc{letter-spacing:45.164915px;}
.lsaa{letter-spacing:65.061872px;}
.lsbe{letter-spacing:66.370964px;}
.lsfb{letter-spacing:75.130177px;}
.ls8b{letter-spacing:75.247223px;}
.lsfe{letter-spacing:75.992791px;}
.ls11c{letter-spacing:85.418253px;}
.lsc5{letter-spacing:101.454630px;}
.ls117{letter-spacing:116.967370px;}
.ls119{letter-spacing:130.778291px;}
.ls89{letter-spacing:142.761142px;}
.ls13f{letter-spacing:143.531412px;}
.ls13a{letter-spacing:155.587667px;}
.ls118{letter-spacing:168.676504px;}
.ls116{letter-spacing:219.338365px;}
.ls11a{letter-spacing:282.436599px;}
.ls134{letter-spacing:313.322763px;}
.lsc9{letter-spacing:440.921236px;}
.lsb1{letter-spacing:614.750915px;}
.ls10a{letter-spacing:635.041289px;}
.lsdf{letter-spacing:683.542388px;}
.lsd9{letter-spacing:689.367847px;}
.ls8d{letter-spacing:697.026035px;}
.ls5c{letter-spacing:733.418793px;}
.ls147{letter-spacing:758.487774px;}
.lsd1{letter-spacing:771.308915px;}
.lsef{letter-spacing:777.666103px;}
.lsa4{letter-spacing:800.706122px;}
.ls13b{letter-spacing:823.519937px;}
.ls8c{letter-spacing:834.349786px;}
.ls112{letter-spacing:834.613593px;}
.lsbf{letter-spacing:864.031471px;}
.ls86{letter-spacing:869.594915px;}
.ls41{letter-spacing:892.907236px;}
.lsc3{letter-spacing:927.229864px;}
.lscd{letter-spacing:943.616667px;}
.lsa0{letter-spacing:956.488070px;}
.ls4a{letter-spacing:990.328098px;}
.ls45{letter-spacing:990.400837px;}
.ls6a{letter-spacing:1046.378000px;}
.ls3a{letter-spacing:1061.869976px;}
.ls13c{letter-spacing:1092.282442px;}
.ls5e{letter-spacing:1136.553674px;}
.ls32{letter-spacing:1178.051891px;}
.ls3c{letter-spacing:1180.146438px;}
.ls6c{letter-spacing:1184.348915px;}
.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;}
}
.wsad{word-spacing:-83.650979px;}
.wsdb{word-spacing:-65.454600px;}
.wsaa{word-spacing:-54.589136px;}
.wsf7{word-spacing:-53.568045px;}
.ws8b{word-spacing:-51.820407px;}
.ws60{word-spacing:-50.923679px;}
.ws8c{word-spacing:-50.809387px;}
.ws16{word-spacing:-47.324343px;}
.ws84{word-spacing:-47.323676px;}
.ws5c{word-spacing:-47.258221px;}
.ws34{word-spacing:-42.637126px;}
.wsb5{word-spacing:-39.921434px;}
.ws75{word-spacing:-39.900103px;}
.wsfb{word-spacing:-39.848760px;}
.wse{word-spacing:-38.937826px;}
.ws92{word-spacing:-38.330214px;}
.ws35{word-spacing:-37.387668px;}
.ws81{word-spacing:-36.379667px;}
.ws8f{word-spacing:-33.840028px;}
.ws88{word-spacing:-33.211407px;}
.ws4a{word-spacing:-33.192028px;}
.ws8d{word-spacing:-32.714209px;}
.ws3b{word-spacing:-32.544027px;}
.ws59{word-spacing:-31.771663px;}
.ws58{word-spacing:-31.706208px;}
.ws17{word-spacing:-31.633157px;}
.ws19{word-spacing:-29.015076px;}
.ws14{word-spacing:-28.955301px;}
.wsae{word-spacing:-24.506202px;}
.ws89{word-spacing:-24.440748px;}
.ws106{word-spacing:-21.351291px;}
.ws13c{word-spacing:-20.631290px;}
.ws137{word-spacing:-20.434926px;}
.ws135{word-spacing:-19.845835px;}
.wse1{word-spacing:-19.714926px;}
.wsd5{word-spacing:-19.060380px;}
.ws0{word-spacing:-18.540986px;}
.ws79{word-spacing:-18.183288px;}
.ws46{word-spacing:-18.013106px;}
.ws96{word-spacing:-17.947651px;}
.ws155{word-spacing:-17.882197px;}
.ws43{word-spacing:-17.816742px;}
.ws107{word-spacing:-17.554924px;}
.ws108{word-spacing:-17.424015px;}
.ws125{word-spacing:-17.358560px;}
.wse2{word-spacing:-17.162196px;}
.ws87{word-spacing:-17.096742px;}
.ws78{word-spacing:-17.031287px;}
.wsab{word-spacing:-16.704014px;}
.ws130{word-spacing:-16.638559px;}
.ws95{word-spacing:-16.632014px;}
.wsd6{word-spacing:-16.573105px;}
.ws94{word-spacing:-16.566559px;}
.ws13e{word-spacing:-16.442196px;}
.ws156{word-spacing:-16.370195px;}
.ws158{word-spacing:-16.311286px;}
.wsa{word-spacing:-16.193210px;}
.ws117{word-spacing:-16.114923px;}
.ws11a{word-spacing:-16.049468px;}
.wsd4{word-spacing:-15.918559px;}
.wse3{word-spacing:-15.781104px;}
.ws12f{word-spacing:-15.722195px;}
.ws45{word-spacing:-15.656740px;}
.ws12c{word-spacing:-15.525831px;}
.wsf6{word-spacing:-15.394922px;}
.ws164{word-spacing:-15.198558px;}
.wsd7{word-spacing:-15.192013px;}
.ws162{word-spacing:-15.133104px;}
.ws86{word-spacing:-15.093831px;}
.wse0{word-spacing:-15.067649px;}
.ws76{word-spacing:-15.028376px;}
.ws15b{word-spacing:-15.002194px;}
.wsc2{word-spacing:-14.936740px;}
.ws1c{word-spacing:-14.878147px;}
.wsd0{word-spacing:-14.871285px;}
.ws63{word-spacing:-14.740376px;}
.wse5{word-spacing:-14.609467px;}
.ws131{word-spacing:-14.478558px;}
.ws4b{word-spacing:-14.413103px;}
.ws5b{word-spacing:-14.406557px;}
.ws47{word-spacing:-14.347648px;}
.wsfc{word-spacing:-14.282194px;}
.ws44{word-spacing:-14.275648px;}
.ws7f{word-spacing:-14.216739px;}
.wsc1{word-spacing:-14.020375px;}
.ws3a{word-spacing:-13.954921px;}
.ws163{word-spacing:-13.882921px;}
.wsbc{word-spacing:-13.824012px;}
.wsa5{word-spacing:-13.693102px;}
.wsf8{word-spacing:-13.686557px;}
.ws1f{word-spacing:-13.563084px;}
.wsfd{word-spacing:-13.514158px;}
.ws42{word-spacing:-13.496739px;}
.ws25{word-spacing:-13.443532px;}
.ws2d{word-spacing:-13.442427px;}
.wseb{word-spacing:-13.169466px;}
.ws13f{word-spacing:-13.162920px;}
.wsc4{word-spacing:-13.038556px;}
.wsc3{word-spacing:-12.973102px;}
.wsa3{word-spacing:-12.901102px;}
.ws56{word-spacing:-12.842193px;}
.ws26{word-spacing:-12.726225px;}
.wsf2{word-spacing:-12.711283px;}
.wsec{word-spacing:-12.645829px;}
.ws109{word-spacing:-12.580374px;}
.wsa6{word-spacing:-12.573829px;}
.ws4c{word-spacing:-12.514920px;}
.ws32{word-spacing:-12.449465px;}
.ws2f{word-spacing:-12.442919px;}
.ws10c{word-spacing:-12.384010px;}
.ws6b{word-spacing:-12.253101px;}
.wsf4{word-spacing:-12.122192px;}
.ws22{word-spacing:-12.068694px;}
.wse4{word-spacing:-12.056737px;}
.ws20{word-spacing:-12.008918px;}
.ws172{word-spacing:-11.991283px;}
.ws97{word-spacing:-11.788373px;}
.ws138{word-spacing:-11.729464px;}
.wsf3{word-spacing:-11.657464px;}
.ws72{word-spacing:-11.598555px;}
.ws23{word-spacing:-11.590489px;}
.ws150{word-spacing:-11.526555px;}
.ws61{word-spacing:-11.493828px;}
.ws141{word-spacing:-11.467646px;}
.ws77{word-spacing:-11.428373px;}
.ws119{word-spacing:-11.402191px;}
.ws9e{word-spacing:-11.271282px;}
.ws57{word-spacing:-11.205828px;}
.ws129{word-spacing:-11.140373px;}
.ws146{word-spacing:-11.074918px;}
.ws4{word-spacing:-10.992733px;}
.ws31{word-spacing:-10.878555px;}
.wsc{word-spacing:-10.813406px;}
.ws2e{word-spacing:-10.813100px;}
.ws12d{word-spacing:-10.747645px;}
.ws6c{word-spacing:-10.682191px;}
.wsf5{word-spacing:-10.551282px;}
.ws50{word-spacing:-10.485827px;}
.ws14a{word-spacing:-10.354918px;}
.ws133{word-spacing:-10.289463px;}
.ws24{word-spacing:-10.275426px;}
.ws151{word-spacing:-10.224009px;}
.ws153{word-spacing:-10.158554px;}
.ws10{word-spacing:-10.096099px;}
.ws73{word-spacing:-10.093099px;}
.wsbd{word-spacing:-10.027645px;}
.ws9a{word-spacing:-10.021099px;}
.ws8{word-spacing:-9.976548px;}
.ws3d{word-spacing:-9.962190px;}
.ws30{word-spacing:-9.955645px;}
.ws9f{word-spacing:-9.831281px;}
.wsd3{word-spacing:-9.765826px;}
.ws6d{word-spacing:-9.759281px;}
.wsb0{word-spacing:-9.700372px;}
.wsbe{word-spacing:-9.504008px;}
.ws7e{word-spacing:-9.373099px;}
.ws152{word-spacing:-9.366553px;}
.ws66{word-spacing:-9.307644px;}
.ws166{word-spacing:-9.301099px;}
.ws4e{word-spacing:-9.242190px;}
.ws74{word-spacing:-9.235644px;}
.ws29{word-spacing:-9.199465px;}
.ws112{word-spacing:-9.176735px;}
.ws51{word-spacing:-9.111280px;}
.ws39{word-spacing:-9.045826px;}
.ws41{word-spacing:-8.980371px;}
.wsa0{word-spacing:-8.973826px;}
.ws82{word-spacing:-8.914917px;}
.ws132{word-spacing:-8.908371px;}
.wsed{word-spacing:-8.784007px;}
.ws11{word-spacing:-8.781036px;}
.ws12b{word-spacing:-8.718553px;}
.ws14f{word-spacing:-8.646553px;}
.ws140{word-spacing:-8.581098px;}
.wsd{word-spacing:-8.541933px;}
.wscc{word-spacing:-8.456734px;}
.ws52{word-spacing:-8.391280px;}
.ws123{word-spacing:-8.325825px;}
.wsb3{word-spacing:-8.194916px;}
.wsc0{word-spacing:-8.064007px;}
.ws111{word-spacing:-7.998552px;}
.ws40{word-spacing:-7.802188px;}
.ws48{word-spacing:-7.736734px;}
.ws12e{word-spacing:-7.671279px;}
.ws13{word-spacing:-7.645299px;}
.wsee{word-spacing:-7.605825px;}
.ws3e{word-spacing:-7.474915px;}
.wsb4{word-spacing:-7.468370px;}
.wscd{word-spacing:-7.344006px;}
.wsa1{word-spacing:-7.317824px;}
.ws170{word-spacing:-7.287436px;}
.ws100{word-spacing:-7.280826px;}
.ws37{word-spacing:-7.278552px;}
.ws8a{word-spacing:-7.252370px;}
.ws7a{word-spacing:-7.147642px;}
.ws83{word-spacing:-7.141097px;}
.ws16e{word-spacing:-7.082188px;}
.wsd9{word-spacing:-7.075642px;}
.wsa7{word-spacing:-6.885824px;}
.wsef{word-spacing:-6.754915px;}
.ws38{word-spacing:-6.682915px;}
.ws93{word-spacing:-6.617460px;}
.ws124{word-spacing:-6.552005px;}
.ws90{word-spacing:-6.493096px;}
.ws169{word-spacing:-6.427642px;}
.wsde{word-spacing:-6.401460px;}
.ws12a{word-spacing:-6.362187px;}
.ws7b{word-spacing:-6.296733px;}
.ws71{word-spacing:-6.165823px;}
.ws49{word-spacing:-6.159278px;}
.wsb2{word-spacing:-6.093823px;}
.wsa9{word-spacing:-6.034914px;}
.wsa8{word-spacing:-5.969460px;}
.ws91{word-spacing:-5.962914px;}
.ws1a{word-spacing:-5.852031px;}
.ws14b{word-spacing:-5.838550px;}
.ws18{word-spacing:-5.836676px;}
.ws5{word-spacing:-5.732480px;}
.wsce{word-spacing:-5.707641px;}
.ws4d{word-spacing:-5.701096px;}
.ws3c{word-spacing:-5.642187px;}
.ws116{word-spacing:-5.570186px;}
.wsd2{word-spacing:-5.445823px;}
.wsd1{word-spacing:-5.380368px;}
.ws118{word-spacing:-5.184004px;}
.wscf{word-spacing:-5.177459px;}
.ws14c{word-spacing:-5.118550px;}
.ws148{word-spacing:-4.987641px;}
.ws102{word-spacing:-4.856731px;}
.ws54{word-spacing:-4.791277px;}
.wsa4{word-spacing:-4.784731px;}
.ws136{word-spacing:-4.725822px;}
.ws67{word-spacing:-4.719277px;}
.ws16c{word-spacing:-4.660368px;}
.ws105{word-spacing:-4.424731px;}
.ws149{word-spacing:-4.333095px;}
.ws103{word-spacing:-4.202185px;}
.wsac{word-spacing:-4.136731px;}
.wsda{word-spacing:-4.133115px;}
.ws147{word-spacing:-4.005822px;}
.ws13b{word-spacing:-3.874912px;}
.ws104{word-spacing:-3.868367px;}
.ws101{word-spacing:-3.809458px;}
.wsfe{word-spacing:-3.744003px;}
.ws7c{word-spacing:-3.678549px;}
.ws69{word-spacing:-3.652367px;}
.ws6f{word-spacing:-3.613094px;}
.ws142{word-spacing:-3.547639px;}
.wsc9{word-spacing:-3.482185px;}
.wscb{word-spacing:-3.416730px;}
.ws13a{word-spacing:-3.351276px;}
.ws5d{word-spacing:-3.279275px;}
.ws127{word-spacing:-3.220366px;}
.wsc7{word-spacing:-3.154912px;}
.ws157{word-spacing:-3.089457px;}
.ws143{word-spacing:-3.082912px;}
.ws144{word-spacing:-3.017457px;}
.ws128{word-spacing:-2.952002px;}
.ws65{word-spacing:-2.886548px;}
.wsc5{word-spacing:-2.696730px;}
.wse9{word-spacing:-2.690184px;}
.ws113{word-spacing:-2.565820px;}
.wsc6{word-spacing:-2.493820px;}
.ws80{word-spacing:-2.434911px;}
.wsb8{word-spacing:-2.369457px;}
.ws165{word-spacing:-2.232002px;}
.wsb9{word-spacing:-2.042184px;}
.wsf0{word-spacing:-1.845820px;}
.wsba{word-spacing:-1.839274px;}
.ws134{word-spacing:-1.773820px;}
.ws7d{word-spacing:-1.512001px;}
.ws13d{word-spacing:-1.060365px;}
.ws8e{word-spacing:-0.929455px;}
.wsaf{word-spacing:-0.661091px;}
.ws154{word-spacing:-0.602182px;}
.ws110{word-spacing:-0.536728px;}
.ws62{word-spacing:-0.530182px;}
.ws2a{word-spacing:-0.352676px;}
.wsf9{word-spacing:-0.209455px;}
.ws159{word-spacing:-0.144000px;}
.ws2b{word-spacing:-0.113574px;}
.ws15a{word-spacing:-0.086077px;}
.ws3{word-spacing:-0.071731px;}
.wsc8{word-spacing:-0.065455px;}
.ws1d{word-spacing:-0.059776px;}
.ws5a{word-spacing:-0.052364px;}
.ws70{word-spacing:-0.047821px;}
.wsb7{word-spacing:-0.023587px;}
.ws36{word-spacing:0.000000px;}
.ws5f{word-spacing:0.013091px;}
.ws3f{word-spacing:0.183273px;}
.wsf1{word-spacing:0.314182px;}
.wse8{word-spacing:0.386182px;}
.wse7{word-spacing:0.445091px;}
.wse6{word-spacing:0.510546px;}
.ws55{word-spacing:1.368001px;}
.wsca{word-spacing:1.695274px;}
.ws14e{word-spacing:1.754183px;}
.ws14d{word-spacing:2.016002px;}
.wsff{word-spacing:2.631275px;}
.ws9c{word-spacing:2.801457px;}
.ws9d{word-spacing:3.194184px;}
.ws15{word-spacing:3.897369px;}
.ws15e{word-spacing:4.437822px;}
.ws10d{word-spacing:7.972370px;}
.ws10e{word-spacing:9.216008px;}
.ws7{word-spacing:9.330971px;}
.ws64{word-spacing:9.623387px;}
.ws160{word-spacing:10.597100px;}
.ws15f{word-spacing:11.506919px;}
.ws161{word-spacing:11.572373px;}
.ws15d{word-spacing:12.495283px;}
.ws15c{word-spacing:13.666920px;}
.ws171{word-spacing:13.849440px;}
.ws115{word-spacing:13.889466px;}
.ws9{word-spacing:15.720983px;}
.ws1e{word-spacing:16.258963px;}
.ws1b{word-spacing:17.155597px;}
.wsfa{word-spacing:17.816742px;}
.wsea{word-spacing:18.315290px;}
.ws21{word-spacing:19.545195px;}
.ws6a{word-spacing:21.111447px;}
.ws68{word-spacing:21.117447px;}
.ws167{word-spacing:21.118210px;}
.wsdd{word-spacing:21.119321px;}
.ws5e{word-spacing:21.119387px;}
.wsa2{word-spacing:21.120206px;}
.wsdc{word-spacing:21.122631px;}
.ws33{word-spacing:21.125387px;}
.ws98{word-spacing:21.127443px;}
.ws126{word-spacing:21.141594px;}
.ws16f{word-spacing:21.141993px;}
.ws6e{word-spacing:21.425387px;}
.wsb{word-spacing:21.877870px;}
.wsf{word-spacing:22.654952px;}
.ws1{word-spacing:23.312640px;}
.ws2{word-spacing:23.384371px;}
.ws27{word-spacing:23.611362px;}
.ws28{word-spacing:23.730913px;}
.ws12{word-spacing:24.209118px;}
.ws6{word-spacing:25.165528px;}
.ws16b{word-spacing:29.052943px;}
.ws16a{word-spacing:29.055461px;}
.ws53{word-spacing:31.418178px;}
.wsbf{word-spacing:31.504255px;}
.ws85{word-spacing:33.178937px;}
.ws10f{word-spacing:34.088756px;}
.ws114{word-spacing:35.037594px;}
.ws168{word-spacing:37.426940px;}
.ws120{word-spacing:39.194214px;}
.ws4f{word-spacing:40.355973px;}
.ws11f{word-spacing:78.074247px;}
.wsb1{word-spacing:83.271342px;}
.ws2c{word-spacing:94.598843px;}
.ws11e{word-spacing:129.456108px;}
.ws121{word-spacing:143.005210px;}
.ws11d{word-spacing:145.819758px;}
.ws11c{word-spacing:162.445226px;}
.ws122{word-spacing:163.165227px;}
.ws10a{word-spacing:215.790725px;}
.ws11b{word-spacing:218.605273px;}
.ws10b{word-spacing:240.467109px;}
.ws139{word-spacing:365.419941px;}
.wsbb{word-spacing:576.386662px;}
.ws145{word-spacing:694.460215px;}
.wsdf{word-spacing:762.166453px;}
.ws99{word-spacing:829.519237px;}
.wsd8{word-spacing:841.693792px;}
.ws9b{word-spacing:894.842928px;}
.ws16d{word-spacing:1063.154124px;}
.wsb6{word-spacing:1145.887500px;}
._36{margin-left:-32.334572px;}
._3a{margin-left:-21.657332px;}
._2a{margin-left:-19.701835px;}
._3c{margin-left:-17.571992px;}
._25{margin-left:-14.406701px;}
._2e{margin-left:-10.959369px;}
._2d{margin-left:-7.393723px;}
._17{margin-left:-6.218187px;}
._2{margin-left:-4.961375px;}
._12{margin-left:-3.932797px;}
._1{margin-left:-2.892187px;}
._3{margin-left:-1.613941px;}
._4{width:1.793268px;}
._0{width:2.892187px;}
._1e{width:3.935612px;}
._22{width:5.014010px;}
._1f{width:6.092798px;}
._11{width:7.775923px;}
._13{width:9.494145px;}
._6{width:14.727756px;}
._21{width:15.780079px;}
._24{width:16.817114px;}
._b{width:18.769538px;}
._20{width:20.006263px;}
._18{width:21.665473px;}
._a{width:23.491811px;}
._5{width:25.165528px;}
._7{width:26.361040px;}
._c{width:28.094532px;}
._8{width:29.409595px;}
._29{width:30.507364px;}
._e{width:31.920170px;}
._2b{width:32.977791px;}
._14{width:34.206762px;}
._1b{width:36.065485px;}
._52{width:37.528037px;}
._9{width:38.787253px;}
._15{width:39.934104px;}
._6e{width:41.086422px;}
._1d{width:42.091751px;}
._4b{width:43.666485px;}
._d{width:45.011027px;}
._34{width:47.597679px;}
._6c{width:48.788456px;}
._39{width:49.984891px;}
._31{width:51.554108px;}
._32{width:52.719167px;}
._30{width:53.857548px;}
._f{width:56.069513px;}
._3b{width:60.872778px;}
._38{width:65.989915px;}
._23{width:67.008607px;}
._1a{width:69.230973px;}
._3e{width:71.738242px;}
._51{width:74.814608px;}
._4a{width:77.093841px;}
._57{width:79.255282px;}
._10{width:80.697600px;}
._59{width:82.123099px;}
._5d{width:91.145887px;}
._1c{width:94.684920px;}
._3f{width:99.764995px;}
._19{width:108.651372px;}
._54{width:136.407386px;}
._58{width:147.600123px;}
._42{width:150.338977px;}
._4e{width:171.425597px;}
._4f{width:172.724450px;}
._4d{width:175.680146px;}
._40{width:180.392878px;}
._65{width:196.691073px;}
._44{width:212.007449px;}
._2c{width:225.928774px;}
._48{width:227.301402px;}
._5a{width:253.875970px;}
._43{width:264.698402px;}
._16{width:267.380315px;}
._6a{width:270.589316px;}
._55{width:273.338410px;}
._68{width:291.105828px;}
._47{width:303.840253px;}
._56{width:312.938443px;}
._66{width:317.563295px;}
._37{width:324.239235px;}
._3d{width:326.635491px;}
._49{width:338.203918px;}
._64{width:347.734296px;}
._5b{width:355.108242px;}
._5c{width:358.298480px;}
._45{width:360.763331px;}
._46{width:364.189394px;}
._67{width:404.967610px;}
._5e{width:410.400342px;}
._41{width:414.851255px;}
._53{width:415.898528px;}
._4c{width:427.196180px;}
._35{width:435.273571px;}
._5f{width:439.736188px;}
._62{width:461.765300px;}
._6b{width:473.148880px;}
._63{width:484.822222px;}
._69{width:490.036166px;}
._50{width:500.531326px;}
._6d{width:528.259069px;}
._60{width:578.749573px;}
._61{width:590.378068px;}
._27{width:621.002146px;}
._2f{width:683.446188px;}
._33{width:746.458081px;}
._28{width:759.584726px;}
._26{width:1000.811600px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y27{bottom:63.168000px;}
.y26{bottom:108.000000px;}
.y156{bottom:108.043500px;}
.y177{bottom:109.429500px;}
.y285{bottom:111.690000px;}
.y49{bottom:113.740500px;}
.y1ef{bottom:114.537000px;}
.y249{bottom:119.202000px;}
.y12d{bottom:123.939000px;}
.y25{bottom:128.323500px;}
.y155{bottom:128.367000px;}
.y66{bottom:129.132000px;}
.y176{bottom:129.754500px;}
.y1ee{bottom:134.860500px;}
.y265{bottom:138.471000px;}
.y248{bottom:139.525500px;}
.y19a{bottom:140.877000px;}
.y106{bottom:143.328000px;}
.yc4{bottom:144.514500px;}
.y284{bottom:145.462500px;}
.y24{bottom:148.647000px;}
.y154{bottom:148.690500px;}
.y65{bottom:149.455500px;}
.y12c{bottom:154.828500px;}
.y1ed{bottom:155.185500px;}
.y48{bottom:157.227000px;}
.ya6{bottom:157.458000px;}
.y175{bottom:160.642500px;}
.y199{bottom:161.200500px;}
.ya5{bottom:161.503500px;}
.y228{bottom:163.308000px;}
.y283{bottom:165.786000px;}
.y264{bottom:169.360500px;}
.y64{bottom:169.780500px;}
.y247{bottom:173.299500px;}
.y1ec{bottom:175.509000px;}
.y105{bottom:178.656000px;}
.y83{bottom:180.249000px;}
.y2a6{bottom:180.582000px;}
.yc3{bottom:181.027500px;}
.y23{bottom:181.368000px;}
.y2c8{bottom:181.405500px;}
.y198{bottom:181.525500px;}
.y227{bottom:183.631500px;}
.y153{bottom:186.946500px;}
.y1cc{bottom:187.839000px;}
.y63{bottom:190.104000px;}
.y246{bottom:193.623000px;}
.y47{bottom:193.989000px;}
.ya4{bottom:194.683500px;}
.y1eb{bottom:195.832500px;}
.y12b{bottom:198.642000px;}
.y282{bottom:199.560000px;}
.y82{bottom:200.574000px;}
.ye5{bottom:201.594000px;}
.y197{bottom:201.849000px;}
.y104{bottom:202.053000px;}
.y174{bottom:204.456000px;}
.y152{bottom:207.270000px;}
.yc2{bottom:210.940500px;}
.y2a5{bottom:211.471500px;}
.y2c7{bottom:212.293500px;}
.y20d{bottom:212.305500px;}
.y263{bottom:215.293500px;}
.y1ea{bottom:216.156000px;}
.y22{bottom:218.359500px;}
.y12a{bottom:218.965500px;}
.y281{bottom:219.883500px;}
.y226{bottom:220.395000px;}
.y46{bottom:221.038500px;}
.y101{bottom:221.484000px;}
.y62{bottom:223.876500px;}
.y1cb{bottom:224.601000px;}
.y173{bottom:224.781000px;}
.y245{bottom:227.397000px;}
.y151{bottom:227.595000px;}
.ya3{bottom:227.862000px;}
.yc1{bottom:231.264000px;}
.y1b9{bottom:234.382500px;}
.y262{bottom:235.617000px;}
.y196{bottom:235.621500px;}
.y1e9{bottom:236.479500px;}
.y103{bottom:237.030000px;}
.y81{bottom:237.336000px;}
.y2cf{bottom:237.996000px;}
.ye4{bottom:238.356000px;}
.y21{bottom:238.683000px;}
.y1ae{bottom:238.843500px;}
.y129{bottom:239.289000px;}
.y102{bottom:241.939500px;}
.y20c{bottom:243.195000px;}
.y61{bottom:244.201500px;}
.y172{bottom:245.104500px;}
.y244{bottom:247.720500px;}
.y150{bottom:247.918500px;}
.y45{bottom:248.086500px;}
.y280{bottom:253.657500px;}
.y2a4{bottom:254.340000px;}
.y1b8{bottom:254.706000px;}
.y2c6{bottom:255.916500px;}
.y195{bottom:255.946500px;}
.y100{bottom:256.420500px;}
.y225{bottom:257.157000px;}
.y2ce{bottom:258.319500px;}
.y1ad{bottom:259.167000px;}
.y128{bottom:259.612500px;}
.ya2{bottom:261.042000px;}
.y1ca{bottom:261.364500px;}
.y80{bottom:262.143000px;}
.y171{bottom:265.428000px;}
.yc0{bottom:267.778500px;}
.y14f{bottom:268.242000px;}
.y44{bottom:268.410000px;}
.y261{bottom:269.391000px;}
.y1e8{bottom:270.253500px;}
.ye3{bottom:272.130000px;}
.y20b{bottom:274.084500px;}
.y60{bottom:275.091000px;}
.y20{bottom:275.676000px;}
.y2c5{bottom:276.240000px;}
.y194{bottom:276.270000px;}
.yff{bottom:276.744000px;}
.y243{bottom:278.610000px;}
.y1ac{bottom:279.492000px;}
.y127{bottom:279.937500px;}
.y1c9{bottom:281.688000px;}
.y170{bottom:285.751500px;}
.y2a3{bottom:286.275000px;}
.y27f{bottom:287.430000px;}
.y260{bottom:289.714500px;}
.ya1{bottom:290.752500px;}
.ye2{bottom:292.453500px;}
.y224{bottom:293.919000px;}
.y1b6{bottom:295.087500px;}
.y2c4{bottom:296.563500px;}
.y7f{bottom:298.905000px;}
.y126{bottom:300.261000px;}
.y1e7{bottom:301.143000px;}
.ya0{bottom:301.977000px;}
.y43{bottom:302.184000px;}
.ybf{bottom:304.291500px;}
.y16f{bottom:306.075000px;}
.y14e{bottom:306.498000px;}
.y1f{bottom:306.565500px;}
.y2a2{bottom:306.598500px;}
.y193{bottom:307.159500px;}
.y242{bottom:309.499500px;}
.y25f{bottom:310.038000px;}
.yfe{bottom:310.278000px;}
.ye1{bottom:312.777000px;}
.y2c3{bottom:316.887000px;}
.y20a{bottom:317.898000px;}
.y5f{bottom:318.904500px;}
.y1b7{bottom:319.867500px;}
.y1b5{bottom:319.894500px;}
.y125{bottom:320.584500px;}
.y27e{bottom:321.204000px;}
.y1c8{bottom:326.674500px;}
.y14d{bottom:326.823000px;}
.y2a1{bottom:326.922000px;}
.y223{bottom:330.681000px;}
.y1e6{bottom:332.032500px;}
.y7e{bottom:332.677500px;}
.ybe{bottom:335.181000px;}
.y42{bottom:335.956500px;}
.y2c2{bottom:337.212000px;}
.y209{bottom:338.221500px;}
.y5e{bottom:339.228000px;}
.y9f{bottom:341.125500px;}
.y16e{bottom:342.838500px;}
.y1e{bottom:343.687500px;}
.y25e{bottom:343.810500px;}
.y1b4{bottom:344.701500px;}
.ye0{bottom:346.551000px;}
.y1c7{bottom:346.998000px;}
.y14c{bottom:347.146500px;}
.y2a0{bottom:347.247000px;}
.y192{bottom:350.973000px;}
.yfd{bottom:352.138500px;}
.y7d{bottom:353.002500px;}
.y241{bottom:353.313000px;}
.y27d{bottom:354.978000px;}
.y41{bottom:356.281500px;}
.y208{bottom:358.545000px;}
.y124{bottom:360.543000px;}
.y222{bottom:361.570500px;}
.y1c6{bottom:367.321500px;}
.y29f{bottom:367.570500px;}
.y2c1{bottom:368.100000px;}
.y9e{bottom:371.913000px;}
.y240{bottom:373.636500px;}
.y27c{bottom:375.301500px;}
.y5d{bottom:375.751500px;}
.y1e5{bottom:375.846000px;}
.y25d{bottom:377.584500px;}
.y14b{bottom:377.964000px;}
.y207{bottom:378.870000px;}
.ybd{bottom:378.955500px;}
.y16d{bottom:379.600500px;}
.y123{bottom:380.866500px;}
.yde{bottom:383.313000px;}
.y191{bottom:384.745500px;}
.y1b3{bottom:386.031000px;}
.y7c{bottom:386.775000px;}
.y1c5{bottom:387.645000px;}
.y29e{bottom:387.894000px;}
.y40{bottom:390.054000px;}
.ydf{bottom:392.589000px;}
.y23f{bottom:393.960000px;}
.yfc{bottom:394.090500px;}
.y1d{bottom:395.041500px;}
.y1e4{bottom:396.169500px;}
.y25c{bottom:397.908000px;}
.y9d{bottom:402.771000px;}
.y221{bottom:404.785500px;}
.y190{bottom:405.070500px;}
.y2c0{bottom:405.295500px;}
.y29d{bottom:408.217500px;}
.y27b{bottom:409.074000px;}
.y14a{bottom:410.335500px;}
.y122{bottom:411.706500px;}
.ybc{bottom:412.522500px;}
.y206{bottom:412.642500px;}
.y1c{bottom:412.974000px;}
.y23e{bottom:414.283500px;}
.y1c4{bottom:416.179500px;}
.y1b2{bottom:416.920500px;}
.y25b{bottom:418.231500px;}
.y7b{bottom:420.549000px;}
.y2bf{bottom:422.406000px;}
.yfb{bottom:423.409500px;}
.ydd{bottom:423.573000px;}
.y2bd{bottom:424.042500px;}
.y9c{bottom:424.800000px;}
.y220{bottom:425.109000px;}
.y18f{bottom:425.394000px;}
.y5c{bottom:427.303500px;}
.y29c{bottom:428.541000px;}
.y27a{bottom:429.397500px;}
.y2be{bottom:430.425000px;}
.y1b{bottom:430.906500px;}
.y11f{bottom:431.137500px;}
.y16c{bottom:432.031500px;}
.y1e3{bottom:432.693000px;}
.ybb{bottom:432.846000px;}
.y3f{bottom:433.540500px;}
.y149{bottom:440.545500px;}
.y7a{bottom:440.872500px;}
.yfa{bottom:443.734500px;}
.ydc{bottom:443.896500px;}
.y9b{bottom:445.123500px;}
.y121{bottom:446.683500px;}
.y23d{bottom:448.057500px;}
.y1a{bottom:448.839000px;}
.y29b{bottom:448.866000px;}
.y279{bottom:449.722500px;}
.y120{bottom:451.593000px;}
.y25a{bottom:452.005500px;}
.y16b{bottom:452.355000px;}
.yba{bottom:453.169500px;}
.y205{bottom:453.816000px;}
.y1c3{bottom:457.326000px;}
.y21f{bottom:458.883000px;}
.y18e{bottom:459.166500px;}
.y148{bottom:460.869000px;}
.y5b{bottom:461.077500px;}
.y79{bottom:461.196000px;}
.yf9{bottom:464.058000px;}
.y19{bottom:466.771500px;}
.y29a{bottom:469.189500px;}
.y1b1{bottom:469.344000px;}
.y3e{bottom:470.304000px;}
.y259{bottom:472.329000px;}
.y2bc{bottom:472.573500px;}
.y16a{bottom:472.678500px;}
.yb9{bottom:473.493000px;}
.y204{bottom:474.139500px;}
.y9a{bottom:475.911000px;}
.y21e{bottom:479.206500px;}
.ydb{bottom:479.517000px;}
.y147{bottom:481.192500px;}
.y78{bottom:481.519500px;}
.y11e{bottom:483.421500px;}
.y1e2{bottom:484.246500px;}
.y18{bottom:484.705500px;}
.y278{bottom:486.246000px;}
.y23c{bottom:486.313500px;}
.y1b0{bottom:489.667500px;}
.y18d{bottom:492.940500px;}
.y5a{bottom:494.850000px;}
.yf8{bottom:496.636500px;}
.y3d{bottom:497.352000px;}
.yda{bottom:499.842000px;}
.y258{bottom:500.788500px;}
.y299{bottom:501.123000px;}
.y17{bottom:502.638000px;}
.y2bb{bottom:503.463000px;}
.y1c2{bottom:503.538000px;}
.y11d{bottom:503.745000px;}
.y1e1{bottom:504.570000px;}
.y169{bottom:506.452500px;}
.y99{bottom:506.700000px;}
.yb8{bottom:507.060000px;}
.y1af{bottom:509.992500px;}
.y21d{bottom:512.980500px;}
.y18c{bottom:513.264000px;}
.y203{bottom:513.526500px;}
.y146{bottom:513.606000px;}
.y59{bottom:515.175000px;}
.y77{bottom:515.293500px;}
.y23b{bottom:520.087500px;}
.yd9{bottom:520.165500px;}
.y16{bottom:520.570500px;}
.y257{bottom:521.112000px;}
.y11c{bottom:524.068500px;}
.y3c{bottom:524.400000px;}
.y1e0{bottom:524.893500px;}
.yf7{bottom:525.154500px;}
.y98{bottom:527.023500px;}
.y298{bottom:532.012500px;}
.y21c{bottom:533.304000px;}
.y18b{bottom:533.587500px;}
.y202{bottom:533.850000px;}
.y145{bottom:533.929500px;}
.yf6{bottom:536.052000px;}
.y277{bottom:537.798000px;}
.yb7{bottom:537.949500px;}
.y15{bottom:538.503000px;}
.yd8{bottom:540.489000px;}
.y256{bottom:541.435500px;}
.y168{bottom:543.214500px;}
.y3b{bottom:544.723500px;}
.y1df{bottom:545.217000px;}
.y2ba{bottom:546.487500px;}
.y97{bottom:547.347000px;}
.y1c1{bottom:547.351500px;}
.y58{bottom:548.947500px;}
.y76{bottom:549.066000px;}
.y21b{bottom:553.627500px;}
.y23a{bottom:553.860000px;}
.y201{bottom:554.173500px;}
.y11b{bottom:554.931000px;}
.y14{bottom:556.435500px;}
.yf5{bottom:558.081000px;}
.y276{bottom:558.121500px;}
.y297{bottom:562.902000px;}
.y144{bottom:564.022500px;}
.y1de{bottom:565.540500px;}
.y2b9{bottom:566.811000px;}
.y18a{bottom:567.361500px;}
.yd7{bottom:571.378500px;}
.y255{bottom:572.731500px;}
.y21a{bottom:573.951000px;}
.y118{bottom:574.362000px;}
.y13{bottom:574.368000px;}
.y200{bottom:574.497000px;}
.y96{bottom:578.134500px;}
.yf4{bottom:578.404500px;}
.y3a{bottom:578.497500px;}
.y75{bottom:579.103500px;}
.y1c0{bottom:581.124000px;}
.yb6{bottom:581.724000px;}
.y57{bottom:582.721500px;}
.y143{bottom:584.346000px;}
.y167{bottom:584.383500px;}
.y2b8{bottom:587.134500px;}
.y239{bottom:587.634000px;}
.y11a{bottom:589.908000px;}
.y275{bottom:591.895500px;}
.y12{bottom:592.302000px;}
.y219{bottom:594.276000px;}
.y119{bottom:594.817500px;}
.y1ff{bottom:594.820500px;}
.y39{bottom:598.821000px;}
.y1dd{bottom:599.314500px;}
.y74{bottom:599.427000px;}
.yb5{bottom:602.047500px;}
.y254{bottom:603.621000px;}
.y142{bottom:604.669500px;}
.y188{bottom:604.753500px;}
.y296{bottom:606.369000px;}
.yd6{bottom:608.500500px;}
.y95{bottom:609.024000px;}
.y11{bottom:610.234500px;}
.yf3{bottom:610.983000px;}
.y274{bottom:612.219000px;}
.y2b7{bottom:614.097000px;}
.y1bf{bottom:614.898000px;}
.y56{bottom:616.494000px;}
.y166{bottom:618.157500px;}
.y1dc{bottom:619.638000px;}
.y73{bottom:619.752000px;}
.y238{bottom:621.406500px;}
.y1ab{bottom:621.543000px;}
.y1fe{bottom:623.355000px;}
.y2b6{bottom:625.321500px;}
.y117{bottom:626.644500px;}
.y295{bottom:626.692500px;}
.y218{bottom:628.048500px;}
.y10{bottom:628.167000px;}
.y189{bottom:629.533500px;}
.y187{bottom:629.560500px;}
.y38{bottom:632.595000px;}
.y141{bottom:634.762500px;}
.y165{bottom:638.481000px;}
.yb4{bottom:638.571000px;}
.y1db{bottom:639.961500px;}
.y273{bottom:645.993000px;}
.yf{bottom:646.099500px;}
.yf2{bottom:646.309500px;}
.y294{bottom:647.017500px;}
.y253{bottom:647.434500px;}
.y217{bottom:648.372000px;}
.y1be{bottom:648.670500px;}
.y55{bottom:650.268000px;}
.y94{bottom:652.275000px;}
.y2b5{bottom:652.431000px;}
.y37{bottom:652.918500px;}
.y186{bottom:654.367500px;}
.y140{bottom:655.086000px;}
.y1aa{bottom:655.315500px;}
.yd5{bottom:657.232500px;}
.y164{bottom:658.804500px;}
.y72{bottom:659.128500px;}
.y237{bottom:659.664000px;}
.y1da{bottom:660.285000px;}
.ye{bottom:664.032000px;}
.y1fd{bottom:664.575000px;}
.y116{bottom:666.604500px;}
.y293{bottom:667.341000px;}
.y252{bottom:667.758000px;}
.y54{bottom:670.591500px;}
.y93{bottom:672.598500px;}
.y1a9{bottom:675.639000px;}
.yd4{bottom:677.557500px;}
.y185{bottom:678.349500px;}
.y1d9{bottom:680.610000px;}
.yf1{bottom:681.637500px;}
.yd{bottom:681.964500px;}
.y13f{bottom:682.056000px;}
.y216{bottom:682.146000px;}
.y272{bottom:682.516500px;}
.y2b4{bottom:684.505500px;}
.y36{bottom:686.692500px;}
.y115{bottom:686.928000px;}
.y292{bottom:687.664500px;}
.yb3{bottom:687.792000px;}
.y236{bottom:690.553500px;}
.y163{bottom:692.577000px;}
.y92{bottom:692.922000px;}
.y1fc{bottom:695.464500px;}
.y2b3{bottom:695.730000px;}
.y71{bottom:697.600500px;}
.yd3{bottom:697.881000px;}
.y184{bottom:698.674500px;}
.yc{bottom:699.898500px;}
.y53{bottom:701.481000px;}
.y251{bottom:701.530500px;}
.yf0{bottom:701.961000px;}
.y13e{bottom:702.379500px;}
.y215{bottom:702.469500px;}
.y114{bottom:707.251500px;}
.y291{bottom:707.988000px;}
.yb2{bottom:708.117000px;}
.y1a8{bottom:709.413000px;}
.y35{bottom:713.740500px;}
.y1d8{bottom:714.382500px;}
.yb{bottom:717.831000px;}
.yd2{bottom:718.204500px;}
.y235{bottom:721.443000px;}
.y250{bottom:721.854000px;}
.y214{bottom:722.793000px;}
.y91{bottom:726.099000px;}
.y113{bottom:727.575000px;}
.y290{bottom:728.311500px;}
.y162{bottom:729.340500px;}
.y183{bottom:729.564000px;}
.y1a7{bottom:729.736500px;}
.y13d{bottom:733.269000px;}
.y34{bottom:734.064000px;}
.y271{bottom:734.068500px;}
.y70{bottom:734.362500px;}
.y1d7{bottom:734.706000px;}
.yef{bottom:735.496500px;}
.ya{bottom:735.763500px;}
.y1bd{bottom:738.141000px;}
.y1fb{bottom:738.679500px;}
.y2b2{bottom:739.876500px;}
.yb1{bottom:746.373000px;}
.y90{bottom:746.422500px;}
.y52{bottom:746.505000px;}
.y28f{bottom:748.636500px;}
.y234{bottom:752.331000px;}
.y9{bottom:753.696000px;}
.y270{bottom:754.393500px;}
.yd1{bottom:754.734000px;}
.y1d6{bottom:755.031000px;}
.y24f{bottom:755.628000px;}
.y213{bottom:756.567000px;}
.y112{bottom:758.464500px;}
.y1fa{bottom:759.003000px;}
.y33{bottom:761.113500px;}
.y1a6{bottom:763.510500px;}
.y161{bottom:766.102500px;}
.yb0{bottom:766.696500px;}
.y8f{bottom:766.746000px;}
.y51{bottom:766.828500px;}
.y2b1{bottom:766.839000px;}
.yd0{bottom:770.145000px;}
.yee{bottom:770.823000px;}
.y6f{bottom:771.124500px;}
.y8{bottom:771.628500px;}
.y182{bottom:773.377500px;}
.y26f{bottom:774.717000px;}
.ycf{bottom:775.057500px;}
.y1bc{bottom:775.263000px;}
.y13c{bottom:775.800000px;}
.y24e{bottom:775.951500px;}
.y212{bottom:776.890500px;}
.y2b0{bottom:778.063500px;}
.y1f9{bottom:779.328000px;}
.y28e{bottom:779.524500px;}
.y1a5{bottom:783.834000px;}
.y1d5{bottom:785.919000px;}
.yaf{bottom:787.020000px;}
.y8e{bottom:787.069500px;}
.y7{bottom:789.561000px;}
.yce{bottom:790.167000px;}
.y181{bottom:793.701000px;}
.y26e{bottom:795.040500px;}
.ycd{bottom:795.382500px;}
.y111{bottom:795.586500px;}
.y13b{bottom:796.125000px;}
.y32{bottom:799.369500px;}
.y1f8{bottom:799.651500px;}
.y50{bottom:800.602500px;}
.y6e{bottom:801.162000px;}
.y233{bottom:804.754500px;}
.y160{bottom:806.061000px;}
.yed{bottom:806.151000px;}
.yae{bottom:807.345000px;}
.y8d{bottom:807.394500px;}
.y24d{bottom:809.725500px;}
.y211{bottom:810.664500px;}
.y180{bottom:814.024500px;}
.y2af{bottom:814.920000px;}
.y26d{bottom:815.364000px;}
.y6{bottom:815.572500px;}
.y1a4{bottom:817.608000px;}
.y13a{bottom:818.799000px;}
.y31{bottom:819.693000px;}
.y1f7{bottom:819.975000px;}
.y4f{bottom:820.926000px;}
.y6d{bottom:821.487000px;}
.y28d{bottom:822.394500px;}
.y1bb{bottom:824.523000px;}
.y15f{bottom:826.384500px;}
.y2cd{bottom:826.849500px;}
.yad{bottom:827.668500px;}
.y8c{bottom:827.718000px;}
.ycc{bottom:828.297000px;}
.y1d4{bottom:829.734000px;}
.y24c{bottom:830.049000px;}
.y210{bottom:830.988000px;}
.y26c{bottom:835.687500px;}
.y1a3{bottom:837.931500px;}
.y17f{bottom:838.138500px;}
.y137{bottom:838.231500px;}
.yec{bottom:838.729500px;}
.y1f6{bottom:840.298500px;}
.y4e{bottom:841.249500px;}
.y28c{bottom:842.718000px;}
.y232{bottom:844.141500px;}
.y110{bottom:844.846500px;}
.y17e{bottom:846.544500px;}
.y15e{bottom:846.708000px;}
.y2cc{bottom:847.173000px;}
.ycb{bottom:848.622000px;}
.y1d3{bottom:850.057500px;}
.y30{bottom:850.582500px;}
.y139{bottom:853.777500px;}
.y17d{bottom:857.769000px;}
.y2ae{bottom:857.944500px;}
.y6c{bottom:858.249000px;}
.y1a2{bottom:858.255000px;}
.y8b{bottom:858.505500px;}
.y138{bottom:858.685500px;}
.y1f5{bottom:860.622000px;}
.y24b{bottom:860.938500px;}
.y20f{bottom:861.877500px;}
.y28b{bottom:863.041500px;}
.y231{bottom:864.466500px;}
.y10f{bottom:865.170000px;}
.yac{bottom:865.924500px;}
.y15d{bottom:867.031500px;}
.y1d2{bottom:870.381000px;}
.y5{bottom:874.579500px;}
.y4d{bottom:875.023500px;}
.y26b{bottom:875.647500px;}
.y136{bottom:876.105000px;}
.yeb{bottom:876.672000px;}
.y2ad{bottom:878.268000px;}
.y1a1{bottom:878.578500px;}
.y1f4{bottom:880.947000px;}
.yca{bottom:881.835000px;}
.y28a{bottom:883.365000px;}
.y230{bottom:884.790000px;}
.yab{bottom:886.248000px;}
.y17c{bottom:887.901000px;}
.y1d1{bottom:890.704500px;}
.y8a{bottom:893.388000px;}
.y2f{bottom:894.396000px;}
.y6b{bottom:895.011000px;}
.y133{bottom:895.537500px;}
.y2ac{bottom:898.591500px;}
.y15c{bottom:900.805500px;}
.y1f3{bottom:901.270500px;}
.yc9{bottom:902.158500px;}
.y10e{bottom:903.427500px;}
.y289{bottom:903.690000px;}
.y24a{bottom:904.153500px;}
.y22f{bottom:905.113500px;}
.y20e{bottom:905.818500px;}
.yaa{bottom:906.573000px;}
.y26a{bottom:908.053500px;}
.y17b{bottom:908.224500px;}
.y4{bottom:910.972500px;}
.y135{bottom:911.083500px;}
.y4c{bottom:913.396500px;}
.yea{bottom:914.614500px;}
.y2e{bottom:914.719500px;}
.y6a{bottom:915.334500px;}
.y134{bottom:915.991500px;}
.y2ab{bottom:918.915000px;}
.y269{bottom:919.278000px;}
.y15b{bottom:921.129000px;}
.y1f2{bottom:921.594000px;}
.y10d{bottom:923.751000px;}
.y288{bottom:924.013500px;}
.y1d0{bottom:924.478500px;}
.y89{bottom:928.324500px;}
.y17a{bottom:928.548000px;}
.y3{bottom:931.894500px;}
.y22e{bottom:933.646500px;}
.y2cb{bottom:935.043000px;}
.y1a0{bottom:935.121000px;}
.yc8{bottom:935.560500px;}
.ya9{bottom:938.491500px;}
.y132{bottom:938.748000px;}
.y15a{bottom:941.452500px;}
.y2aa{bottom:943.332000px;}
.y10c{bottom:944.074500px;}
.y287{bottom:944.337000px;}
.y69{bottom:946.224000px;}
.ye9{bottom:947.193000px;}
.y2d{bottom:948.493500px;}
.y88{bottom:948.648000px;}
.y2{bottom:952.815000px;}
.y2a9{bottom:954.556500px;}
.y1f1{bottom:955.368000px;}
.y19f{bottom:955.444500px;}
.y1cf{bottom:958.251000px;}
.y159{bottom:961.777500px;}
.y268{bottom:962.007000px;}
.y22d{bottom:962.179500px;}
.y179{bottom:962.322000px;}
.y10b{bottom:964.398000px;}
.y286{bottom:964.660500px;}
.y131{bottom:965.718000px;}
.y2c{bottom:968.817000px;}
.yc7{bottom:968.961000px;}
.y4b{bottom:970.482000px;}
.y2ca{bottom:975.691500px;}
.y19e{bottom:975.768000px;}
.y87{bottom:977.050500px;}
.y1ce{bottom:978.574500px;}
.ye8{bottom:979.770000px;}
.ya8{bottom:982.266000px;}
.y267{bottom:982.330500px;}
.y22c{bottom:982.503000px;}
.y10a{bottom:984.723000px;}
.y130{bottom:986.041500px;}
.y86{bottom:986.869500px;}
.y2a8{bottom:989.050500px;}
.y2b{bottom:989.140500px;}
.y68{bottom:990.037500px;}
.y158{bottom:995.550000px;}
.y2c9{bottom:996.015000px;}
.ye7{bottom:996.049500px;}
.y19d{bottom:996.093000px;}
.y1{bottom:998.143500px;}
.y1cd{bottom:998.899500px;}
.ye6{bottom:1000.093500px;}
.yc6{bottom:1002.363000px;}
.ya7{bottom:1002.591000px;}
.y266{bottom:1002.655500px;}
.y22b{bottom:1002.826500px;}
.y178{bottom:1003.861500px;}
.y1ba{bottom:1005.046500px;}
.y4a{bottom:1009.464000px;}
.y12f{bottom:1010.595000px;}
.y85{bottom:1012.348500px;}
.y12e{bottom:1014.639000px;}
.y2a7{bottom:1019.940000px;}
.y2a{bottom:1022.914500px;}
.y109{bottom:1022.979000px;}
.y19c{bottom:1024.626000px;}
.y157{bottom:1026.439500px;}
.y67{bottom:1026.799500px;}
.y1f0{bottom:1029.789000px;}
.yc5{bottom:1030.161000px;}
.y22a{bottom:1031.361000px;}
.y84{bottom:1032.672000px;}
.y29{bottom:1043.238000px;}
.y108{bottom:1043.302500px;}
.y229{bottom:1059.894000px;}
.y28{bottom:1063.561500px;}
.y107{bottom:1063.626000px;}
.y19b{bottom:1065.774000px;}
.h24{height:2.618184px;}
.h2f{height:15.213908px;}
.h1e{height:33.235317px;}
.h1c{height:33.713523px;}
.h23{height:34.143908px;}
.h25{height:35.865450px;}
.h3{height:44.832000px;}
.h4{height:44.891476px;}
.h7{height:46.326090px;}
.h1d{height:46.865494px;}
.h5{height:47.223024px;}
.h10{height:49.090950px;}
.ha{height:49.156405px;}
.hb{height:49.221859px;}
.h6{height:49.473619px;}
.h2{height:49.853184px;}
.h9{height:50.283571px;}
.hd{height:50.727315px;}
.h29{height:51.710184px;}
.h18{height:57.897908px;}
.hf{height:59.613450px;}
.he{height:59.619450px;}
.h8{height:60.426194px;}
.h13{height:60.617683px;}
.hc{height:60.623683px;}
.h16{height:61.778184px;}
.h19{height:62.889450px;}
.h26{height:62.895450px;}
.h12{height:63.893683px;}
.h27{height:63.899683px;}
.h20{height:65.266950px;}
.h28{height:65.332405px;}
.h2e{height:66.215494px;}
.h1b{height:69.952950px;}
.h1f{height:70.339317px;}
.h1a{height:70.365450px;}
.h1{height:72.511265px;}
.h2a{height:72.969450px;}
.h17{height:80.075683px;}
.h2d{height:91.145494px;}
.h22{height:91.706184px;}
.h14{height:93.370950px;}
.h15{height:94.054405px;}
.h21{height:94.317315px;}
.h11{height:102.165450px;}
.h2c{height:114.548184px;}
.h2b{height:159.446184px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5a{left:99.864000px;}
.x9{left:108.000000px;}
.x54{left:110.533500px;}
.x46{left:124.533000px;}
.xc{left:128.839500px;}
.xa{left:133.405500px;}
.xf{left:143.101500px;}
.x8{left:148.909500px;}
.x10{left:160.417500px;}
.x4d{left:161.860500px;}
.x33{left:163.941000px;}
.x7{left:171.319500px;}
.xe{left:176.805000px;}
.x1{left:202.971000px;}
.xd{left:216.589500px;}
.x50{left:221.685000px;}
.x57{left:225.585000px;}
.x28{left:228.478500px;}
.x2b{left:246.412500px;}
.x44{left:252.981000px;}
.x51{left:262.065000px;}
.x52{left:271.702500px;}
.x45{left:273.976500px;}
.x43{left:280.617000px;}
.x2f{left:289.330500px;}
.x22{left:291.976500px;}
.x47{left:294.942000px;}
.x4e{left:301.279500px;}
.x58{left:302.352000px;}
.x4b{left:305.502000px;}
.x21{left:308.208000px;}
.x1e{left:311.194500px;}
.x53{left:317.323500px;}
.x16{left:320.281500px;}
.x41{left:322.711500px;}
.x24{left:324.972000px;}
.x5f{left:326.551500px;}
.x2e{left:329.010000px;}
.x3d{left:331.351500px;}
.x20{left:337.102500px;}
.x4f{left:340.486500px;}
.x38{left:342.922500px;}
.x34{left:344.386500px;}
.x1c{left:345.528000px;}
.x4{left:348.292500px;}
.x14{left:351.273000px;}
.x1b{left:353.581500px;}
.x17{left:355.821000px;}
.x3c{left:359.170500px;}
.x23{left:365.178000px;}
.x3{left:367.158000px;}
.x2a{left:368.734500px;}
.x2d{left:372.834000px;}
.x15{left:376.386000px;}
.x3a{left:377.436000px;}
.x2c{left:378.753000px;}
.x39{left:383.265000px;}
.x5{left:386.466000px;}
.x3e{left:387.597000px;}
.x3f{left:389.007000px;}
.x12{left:394.257000px;}
.x19{left:398.532000px;}
.x5b{left:399.975000px;}
.x3b{left:402.390000px;}
.x18{left:403.725000px;}
.x5e{left:405.469500px;}
.x48{left:407.628000px;}
.x1d{left:409.921500px;}
.x40{left:413.961000px;}
.x29{left:418.320000px;}
.x56{left:420.234000px;}
.x13{left:421.545000px;}
.x11{left:423.318000px;}
.x6{left:426.130500px;}
.x55{left:427.495500px;}
.x1a{left:432.268500px;}
.x2{left:433.279500px;}
.x31{left:436.081500px;}
.x30{left:441.957000px;}
.x26{left:443.521500px;}
.x25{left:447.403500px;}
.x42{left:450.864000px;}
.x1f{left:452.844000px;}
.xb{left:454.932000px;}
.x32{left:459.718500px;}
.x59{left:461.673000px;}
.x61{left:469.644000px;}
.x36{left:470.865000px;}
.x35{left:476.739000px;}
.x5c{left:482.298000px;}
.x60{left:486.916500px;}
.x49{left:490.281000px;}
.x37{left:494.500500px;}
.x5d{left:501.883500px;}
.x4a{left:506.989500px;}
.x27{left:521.868000px;}
.x62{left:531.903000px;}
.x4c{left:781.071000px;}
@media print{
.v17{vertical-align:-17.200000pt;}
.v3{vertical-align:-15.941333pt;}
.vf{vertical-align:-13.968000pt;}
.va{vertical-align:-11.840000pt;}
.v6{vertical-align:-9.477333pt;}
.v1{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v15{vertical-align:5.242667pt;}
.v11{vertical-align:9.306667pt;}
.vd{vertical-align:14.384000pt;}
.vb{vertical-align:16.810667pt;}
.v4{vertical-align:19.280000pt;}
.v5{vertical-align:21.114667pt;}
.v9{vertical-align:24.021333pt;}
.v13{vertical-align:29.264000pt;}
.v10{vertical-align:30.666667pt;}
.v12{vertical-align:32.981333pt;}
.v7{vertical-align:34.912000pt;}
.ve{vertical-align:38.405333pt;}
.v2{vertical-align:39.850667pt;}
.v18{vertical-align:41.706667pt;}
.v16{vertical-align:43.637333pt;}
.vc{vertical-align:52.586667pt;}
.v8{vertical-align:58.933333pt;}
.v1d{vertical-align:75.429333pt;}
.v14{vertical-align:79.189333pt;}
.v1c{vertical-align:83.530667pt;}
.v1a{vertical-align:95.184000pt;}
.v1b{vertical-align:99.493333pt;}
.v19{vertical-align:139.402667pt;}
.ls25{letter-spacing:0.000000pt;}
.lsa6{letter-spacing:0.000179pt;}
.ls9a{letter-spacing:0.000218pt;}
.lsdc{letter-spacing:0.000444pt;}
.ls68{letter-spacing:0.000933pt;}
.lsa1{letter-spacing:0.000940pt;}
.ls42{letter-spacing:0.000942pt;}
.ls10f{letter-spacing:0.001416pt;}
.lsf7{letter-spacing:0.001422pt;}
.ls75{letter-spacing:0.001619pt;}
.ls48{letter-spacing:0.001869pt;}
.ls111{letter-spacing:0.001874pt;}
.ls34{letter-spacing:0.002261pt;}
.ls52{letter-spacing:0.002397pt;}
.lsde{letter-spacing:0.002400pt;}
.ls7c{letter-spacing:0.002763pt;}
.lsd4{letter-spacing:0.002838pt;}
.lscb{letter-spacing:0.003370pt;}
.lse{letter-spacing:0.003733pt;}
.ls138{letter-spacing:0.003851pt;}
.ls6{letter-spacing:0.003919pt;}
.ls8{letter-spacing:0.004074pt;}
.ls83{letter-spacing:0.004305pt;}
.ls133{letter-spacing:0.004755pt;}
.lsa3{letter-spacing:0.004802pt;}
.lsd8{letter-spacing:0.004807pt;}
.lsb{letter-spacing:0.004901pt;}
.ls13d{letter-spacing:0.005308pt;}
.ls4e{letter-spacing:0.006632pt;}
.ls88{letter-spacing:0.007167pt;}
.lsd6{letter-spacing:0.007376pt;}
.ls60{letter-spacing:0.008284pt;}
.lsda{letter-spacing:0.008436pt;}
.lsf1{letter-spacing:0.010027pt;}
.ls49{letter-spacing:0.010850pt;}
.lsb0{letter-spacing:0.011447pt;}
.ls140{letter-spacing:0.011557pt;}
.ls97{letter-spacing:0.011784pt;}
.lsed{letter-spacing:0.012242pt;}
.ls5d{letter-spacing:0.013011pt;}
.ls121{letter-spacing:0.013255pt;}
.ls2{letter-spacing:0.013355pt;}
.lsab{letter-spacing:0.013381pt;}
.ls50{letter-spacing:0.013481pt;}
.ls122{letter-spacing:0.013839pt;}
.ls58{letter-spacing:0.014466pt;}
.lsfd{letter-spacing:0.015344pt;}
.ls10b{letter-spacing:0.015808pt;}
.ls56{letter-spacing:0.016761pt;}
.lsae{letter-spacing:0.016780pt;}
.ls81{letter-spacing:0.016828pt;}
.lsb6{letter-spacing:0.017877pt;}
.ls6d{letter-spacing:0.018252pt;}
.lsb4{letter-spacing:0.018297pt;}
.ls11e{letter-spacing:0.018655pt;}
.ls99{letter-spacing:0.018703pt;}
.ls80{letter-spacing:0.018900pt;}
.ls142{letter-spacing:0.019718pt;}
.ls23{letter-spacing:0.020171pt;}
.ls1b{letter-spacing:0.020693pt;}
.ls53{letter-spacing:0.020742pt;}
.ls12d{letter-spacing:0.021664pt;}
.ls135{letter-spacing:0.021921pt;}
.ls54{letter-spacing:0.022098pt;}
.lseb{letter-spacing:0.022270pt;}
.ls101{letter-spacing:0.023122pt;}
.lsc2{letter-spacing:0.023201pt;}
.ls36{letter-spacing:0.023375pt;}
.lsc8{letter-spacing:0.024103pt;}
.ls9c{letter-spacing:0.025112pt;}
.ls8a{letter-spacing:0.025525pt;}
.ls94{letter-spacing:0.026515pt;}
.lsd{letter-spacing:0.026563pt;}
.lsa9{letter-spacing:0.027442pt;}
.ls9b{letter-spacing:0.028008pt;}
.lsbc{letter-spacing:0.028534pt;}
.lscc{letter-spacing:0.029915pt;}
.ls4b{letter-spacing:0.510086pt;}
.ls39{letter-spacing:1.570910pt;}
.ls40{letter-spacing:1.629092pt;}
.ls143{letter-spacing:1.803638pt;}
.ls148{letter-spacing:1.861820pt;}
.ls12e{letter-spacing:2.058998pt;}
.ls2d{letter-spacing:2.094547pt;}
.lse6{letter-spacing:2.202645pt;}
.lse9{letter-spacing:2.210911pt;}
.lsa7{letter-spacing:2.648264pt;}
.ls7{letter-spacing:2.651242pt;}
.ls132{letter-spacing:2.652679pt;}
.lsc6{letter-spacing:2.652704pt;}
.ls3{letter-spacing:2.652911pt;}
.ls7f{letter-spacing:2.653258pt;}
.ls4d{letter-spacing:2.653597pt;}
.ls108{letter-spacing:2.653816pt;}
.lsb2{letter-spacing:2.655295pt;}
.ls37{letter-spacing:2.655321pt;}
.ls4f{letter-spacing:2.655508pt;}
.ls51{letter-spacing:2.656444pt;}
.lsf2{letter-spacing:2.656452pt;}
.lsdd{letter-spacing:2.656473pt;}
.ls69{letter-spacing:2.656991pt;}
.ls109{letter-spacing:2.657146pt;}
.ls8f{letter-spacing:2.657237pt;}
.ls14{letter-spacing:2.657253pt;}
.lsc7{letter-spacing:2.658012pt;}
.ls131{letter-spacing:2.658037pt;}
.lsbd{letter-spacing:2.658591pt;}
.ls44{letter-spacing:2.660654pt;}
.ls10c{letter-spacing:2.662479pt;}
.ls7e{letter-spacing:3.200003pt;}
.ls8e{letter-spacing:3.233914pt;}
.ls85{letter-spacing:3.258185pt;}
.ls123{letter-spacing:3.316366pt;}
.ls141{letter-spacing:3.791684pt;}
.lsa{letter-spacing:3.800296pt;}
.ls0{letter-spacing:3.805629pt;}
.lsa2{letter-spacing:3.905181pt;}
.ls9e{letter-spacing:3.910514pt;}
.lsb9{letter-spacing:4.538186pt;}
.lsc0{letter-spacing:4.596367pt;}
.ls107{letter-spacing:4.712731pt;}
.ls100{letter-spacing:5.643641pt;}
.ls47{letter-spacing:5.934550pt;}
.lsb3{letter-spacing:6.225460pt;}
.lsaf{letter-spacing:6.291066pt;}
.ls2c{letter-spacing:6.341823pt;}
.ls2f{letter-spacing:6.400005pt;}
.ls13{letter-spacing:7.385607pt;}
.ls3f{letter-spacing:8.087279pt;}
.ls12{letter-spacing:8.129482pt;}
.lsff{letter-spacing:8.303321pt;}
.ls4{letter-spacing:8.373759pt;}
.lsb7{letter-spacing:8.552734pt;}
.lsd3{letter-spacing:8.931713pt;}
.lsc1{letter-spacing:9.658190pt;}
.ls110{letter-spacing:9.695477pt;}
.ls38{letter-spacing:9.716372pt;}
.ls12a{letter-spacing:10.414554pt;}
.lsf0{letter-spacing:10.479710pt;}
.ls11{letter-spacing:10.789909pt;}
.ls126{letter-spacing:10.821827pt;}
.lsb8{letter-spacing:11.017987pt;}
.ls5{letter-spacing:11.509909pt;}
.lsf6{letter-spacing:12.351321pt;}
.ls106{letter-spacing:12.355149pt;}
.ls1e{letter-spacing:12.916374pt;}
.ls5b{letter-spacing:12.974556pt;}
.ls5a{letter-spacing:13.032738pt;}
.ls114{letter-spacing:13.323647pt;}
.ls70{letter-spacing:13.847284pt;}
.lse8{letter-spacing:13.948032pt;}
.lsc{letter-spacing:14.239876pt;}
.ls16{letter-spacing:14.611813pt;}
.ls10{letter-spacing:14.771215pt;}
.ls129{letter-spacing:14.952740pt;}
.ls71{letter-spacing:15.010922pt;}
.ls125{letter-spacing:15.418195pt;}
.ls4c{letter-spacing:15.581597pt;}
.ls136{letter-spacing:15.582275pt;}
.ls1d{letter-spacing:15.583321pt;}
.ls43{letter-spacing:15.588654pt;}
.ls59{letter-spacing:15.695321pt;}
.ls62{letter-spacing:15.709104pt;}
.ls87{letter-spacing:15.883650pt;}
.ls22{letter-spacing:16.116377pt;}
.lsf5{letter-spacing:16.160822pt;}
.ls1c{letter-spacing:16.174559pt;}
.ls104{letter-spacing:16.232741pt;}
.ls57{letter-spacing:16.407286pt;}
.ls27{letter-spacing:17.221833pt;}
.ls65{letter-spacing:17.280014pt;}
.lsd5{letter-spacing:17.338196pt;}
.ls15{letter-spacing:17.374774pt;}
.ls3b{letter-spacing:17.454560pt;}
.ls115{letter-spacing:17.687287pt;}
.ls144{letter-spacing:17.978197pt;}
.ls149{letter-spacing:18.036379pt;}
.lsf3{letter-spacing:18.212654pt;}
.lsce{letter-spacing:18.269106pt;}
.ls79{letter-spacing:18.327288pt;}
.ls17{letter-spacing:18.384318pt;}
.ls78{letter-spacing:18.385470pt;}
.ls61{letter-spacing:18.388654pt;}
.ls18{letter-spacing:18.437452pt;}
.lsbb{letter-spacing:18.795288pt;}
.ls7d{letter-spacing:18.813258pt;}
.lsa8{letter-spacing:18.813597pt;}
.ls9d{letter-spacing:18.815295pt;}
.ls35{letter-spacing:18.815321pt;}
.ls13e{letter-spacing:18.817146pt;}
.ls7b{letter-spacing:18.818591pt;}
.ls46{letter-spacing:18.820654pt;}
.ls11f{letter-spacing:18.909107pt;}
.ls2b{letter-spacing:19.025470pt;}
.ls29{letter-spacing:19.258198pt;}
.ls20{letter-spacing:19.316380pt;}
.ls9{letter-spacing:19.765798pt;}
.lsd7{letter-spacing:20.014562pt;}
.ls105{letter-spacing:20.070514pt;}
.ls10e{letter-spacing:20.237058pt;}
.lse4{letter-spacing:20.247290pt;}
.ls93{letter-spacing:20.654563pt;}
.ls6f{letter-spacing:20.712745pt;}
.ls90{letter-spacing:21.270748pt;}
.lsf{letter-spacing:21.359814pt;}
.ls96{letter-spacing:21.527291pt;}
.ls1{letter-spacing:21.572350pt;}
.ls95{letter-spacing:21.585473pt;}
.ls11d{letter-spacing:21.876382pt;}
.lsf4{letter-spacing:21.934564pt;}
.ls24{letter-spacing:21.943925pt;}
.lsf8{letter-spacing:21.945987pt;}
.ls76{letter-spacing:21.949258pt;}
.ls124{letter-spacing:22.050927pt;}
.ls63{letter-spacing:22.167291pt;}
.lse5{letter-spacing:22.341837pt;}
.ls2e{letter-spacing:22.516382pt;}
.ls146{letter-spacing:22.525524pt;}
.ls145{letter-spacing:22.632746pt;}
.ls12f{letter-spacing:22.690928pt;}
.ls33{letter-spacing:22.981837pt;}
.ls72{letter-spacing:23.040019pt;}
.ls5f{letter-spacing:23.156383pt;}
.lscf{letter-spacing:23.201181pt;}
.ls7a{letter-spacing:23.255925pt;}
.ls120{letter-spacing:23.272747pt;}
.ls9f{letter-spacing:23.311321pt;}
.ls6e{letter-spacing:23.314591pt;}
.ls10d{letter-spacing:23.355812pt;}
.ls74{letter-spacing:23.389110pt;}
.ls26{letter-spacing:23.621838pt;}
.ls66{letter-spacing:23.680020pt;}
.ls127{letter-spacing:23.970929pt;}
.lse3{letter-spacing:24.087293pt;}
.lse2{letter-spacing:24.145475pt;}
.ls3e{letter-spacing:24.203657pt;}
.lsa5{letter-spacing:24.566514pt;}
.ls139{letter-spacing:24.785475pt;}
.lsba{letter-spacing:25.086379pt;}
.ls130{letter-spacing:25.192748pt;}
.ls3d{letter-spacing:25.250930pt;}
.ls31{letter-spacing:25.600021pt;}
.ls1a{letter-spacing:25.658203pt;}
.ls21{letter-spacing:25.716385pt;}
.ls84{letter-spacing:25.815925pt;}
.lsee{letter-spacing:25.837258pt;}
.lsec{letter-spacing:25.839321pt;}
.lsea{letter-spacing:25.844654pt;}
.lse0{letter-spacing:25.890931pt;}
.ls73{letter-spacing:26.023925pt;}
.ls128{letter-spacing:26.065476pt;}
.ls98{letter-spacing:26.269258pt;}
.ls2a{letter-spacing:26.298204pt;}
.lsb5{letter-spacing:26.530931pt;}
.ls30{letter-spacing:26.589113pt;}
.ls55{letter-spacing:26.647295pt;}
.ls12c{letter-spacing:26.821841pt;}
.ls137{letter-spacing:26.902078pt;}
.ls64{letter-spacing:26.938204pt;}
.ls6b{letter-spacing:26.996386pt;}
.lsad{letter-spacing:27.112750pt;}
.lsfa{letter-spacing:27.229114pt;}
.ls77{letter-spacing:27.287295pt;}
.lse7{letter-spacing:27.295321pt;}
.lsac{letter-spacing:27.345477pt;}
.ls1f{letter-spacing:27.403659pt;}
.ls67{letter-spacing:27.636387pt;}
.lsc4{letter-spacing:27.752750pt;}
.lsca{letter-spacing:27.869114pt;}
.ls82{letter-spacing:28.043660pt;}
.lse1{letter-spacing:28.525258pt;}
.ls92{letter-spacing:28.741842pt;}
.ls19{letter-spacing:29.090933pt;}
.lsdb{letter-spacing:29.172654pt;}
.ls113{letter-spacing:29.847298pt;}
.ls11b{letter-spacing:30.778207pt;}
.lsd2{letter-spacing:30.894571pt;}
.ls91{letter-spacing:31.010935pt;}
.ls103{letter-spacing:32.000027pt;}
.lsf9{letter-spacing:32.116390pt;}
.ls28{letter-spacing:33.047300pt;}
.ls102{letter-spacing:34.671321pt;}
.lsd0{letter-spacing:35.551488pt;}
.ls12b{letter-spacing:39.098214pt;}
.lsfc{letter-spacing:40.146591pt;}
.lsaa{letter-spacing:57.832775pt;}
.lsbe{letter-spacing:58.996413pt;}
.lsfb{letter-spacing:66.782379pt;}
.ls8b{letter-spacing:66.886420pt;}
.lsfe{letter-spacing:67.549147pt;}
.ls11c{letter-spacing:75.927336pt;}
.lsc5{letter-spacing:90.181893pt;}
.ls117{letter-spacing:103.970996pt;}
.ls119{letter-spacing:116.247370pt;}
.ls89{letter-spacing:126.898792pt;}
.ls13f{letter-spacing:127.583477pt;}
.ls13a{letter-spacing:138.300148pt;}
.ls118{letter-spacing:149.934670pt;}
.ls116{letter-spacing:194.967435pt;}
.ls11a{letter-spacing:251.054755pt;}
.ls134{letter-spacing:278.509122pt;}
.lsc9{letter-spacing:391.929987pt;}
.lsb1{letter-spacing:546.445258pt;}
.ls10a{letter-spacing:564.481146pt;}
.lsdf{letter-spacing:607.593234pt;}
.lsd9{letter-spacing:612.771420pt;}
.ls8d{letter-spacing:619.578698pt;}
.ls5c{letter-spacing:651.927816pt;}
.ls147{letter-spacing:674.211355pt;}
.lsd1{letter-spacing:685.607925pt;}
.lsef{letter-spacing:691.258758pt;}
.lsa4{letter-spacing:711.738775pt;}
.ls13b{letter-spacing:732.017722pt;}
.ls8c{letter-spacing:741.644254pt;}
.ls112{letter-spacing:741.878749pt;}
.lsbf{letter-spacing:768.027974pt;}
.ls86{letter-spacing:772.973258pt;}
.ls41{letter-spacing:793.695321pt;}
.lsc3{letter-spacing:824.204323pt;}
.lscd{letter-spacing:838.770371pt;}
.lsa0{letter-spacing:850.211618pt;}
.ls4a{letter-spacing:880.291643pt;}
.ls45{letter-spacing:880.356299pt;}
.ls6a{letter-spacing:930.113778pt;}
.ls3a{letter-spacing:943.884423pt;}
.ls13c{letter-spacing:970.917726pt;}
.ls5e{letter-spacing:1010.269933pt;}
.ls32{letter-spacing:1047.157236pt;}
.ls3c{letter-spacing:1049.019056pt;}
.ls6c{letter-spacing:1052.754591pt;}
.wsad{word-spacing:-74.356426pt;}
.wsdb{word-spacing:-58.181867pt;}
.wsaa{word-spacing:-48.523677pt;}
.wsf7{word-spacing:-47.616040pt;}
.ws8b{word-spacing:-46.062584pt;}
.ws60{word-spacing:-45.265492pt;}
.ws8c{word-spacing:-45.163900pt;}
.ws16{word-spacing:-42.066082pt;}
.ws84{word-spacing:-42.065490pt;}
.ws5c{word-spacing:-42.007308pt;}
.ws34{word-spacing:-37.899668pt;}
.wsb5{word-spacing:-35.485720pt;}
.ws75{word-spacing:-35.466759pt;}
.wsfb{word-spacing:-35.421120pt;}
.wse{word-spacing:-34.611401pt;}
.ws92{word-spacing:-34.071301pt;}
.ws35{word-spacing:-33.233482pt;}
.ws81{word-spacing:-32.337481pt;}
.ws8f{word-spacing:-30.080025pt;}
.ws88{word-spacing:-29.521250pt;}
.ws4a{word-spacing:-29.504025pt;}
.ws8d{word-spacing:-29.079297pt;}
.ws3b{word-spacing:-28.928024pt;}
.ws59{word-spacing:-28.241478pt;}
.ws58{word-spacing:-28.183296pt;}
.ws17{word-spacing:-28.118362pt;}
.ws19{word-spacing:-25.791179pt;}
.ws14{word-spacing:-25.738045pt;}
.wsae{word-spacing:-21.783291pt;}
.ws89{word-spacing:-21.725109pt;}
.ws106{word-spacing:-18.978925pt;}
.ws13c{word-spacing:-18.338924pt;}
.ws137{word-spacing:-18.164379pt;}
.ws135{word-spacing:-17.640742pt;}
.wse1{word-spacing:-17.524378pt;}
.wsd5{word-spacing:-16.942560pt;}
.ws0{word-spacing:-16.480876pt;}
.ws79{word-spacing:-16.162923pt;}
.ws46{word-spacing:-16.011650pt;}
.ws96{word-spacing:-15.953468pt;}
.ws155{word-spacing:-15.895286pt;}
.ws43{word-spacing:-15.837104pt;}
.ws107{word-spacing:-15.604377pt;}
.ws108{word-spacing:-15.488013pt;}
.ws125{word-spacing:-15.429831pt;}
.wse2{word-spacing:-15.255285pt;}
.ws87{word-spacing:-15.197104pt;}
.ws78{word-spacing:-15.138922pt;}
.wsab{word-spacing:-14.848012pt;}
.ws130{word-spacing:-14.789831pt;}
.ws95{word-spacing:-14.784012pt;}
.wsd6{word-spacing:-14.731649pt;}
.ws94{word-spacing:-14.725830pt;}
.ws13e{word-spacing:-14.615285pt;}
.ws156{word-spacing:-14.551285pt;}
.ws158{word-spacing:-14.498921pt;}
.wsa{word-spacing:-14.393964pt;}
.ws117{word-spacing:-14.324376pt;}
.ws11a{word-spacing:-14.266194pt;}
.wsd4{word-spacing:-14.149830pt;}
.wse3{word-spacing:-14.027648pt;}
.ws12f{word-spacing:-13.975284pt;}
.ws45{word-spacing:-13.917103pt;}
.ws12c{word-spacing:-13.800739pt;}
.wsf6{word-spacing:-13.684375pt;}
.ws164{word-spacing:-13.509829pt;}
.wsd7{word-spacing:-13.504011pt;}
.ws162{word-spacing:-13.451648pt;}
.ws86{word-spacing:-13.416738pt;}
.wse0{word-spacing:-13.393466pt;}
.ws76{word-spacing:-13.358557pt;}
.ws15b{word-spacing:-13.335284pt;}
.wsc2{word-spacing:-13.277102pt;}
.ws1c{word-spacing:-13.225019pt;}
.wsd0{word-spacing:-13.218920pt;}
.ws63{word-spacing:-13.102556pt;}
.wse5{word-spacing:-12.986193pt;}
.ws131{word-spacing:-12.869829pt;}
.ws4b{word-spacing:-12.811647pt;}
.ws5b{word-spacing:-12.805829pt;}
.ws47{word-spacing:-12.753465pt;}
.wsfc{word-spacing:-12.695283pt;}
.ws44{word-spacing:-12.689465pt;}
.ws7f{word-spacing:-12.637101pt;}
.wsc1{word-spacing:-12.462556pt;}
.ws3a{word-spacing:-12.404374pt;}
.ws163{word-spacing:-12.340374pt;}
.wsbc{word-spacing:-12.288010pt;}
.wsa5{word-spacing:-12.171647pt;}
.wsf8{word-spacing:-12.165828pt;}
.ws1f{word-spacing:-12.056074pt;}
.wsfd{word-spacing:-12.012585pt;}
.ws42{word-spacing:-11.997101pt;}
.ws25{word-spacing:-11.949807pt;}
.ws2d{word-spacing:-11.948824pt;}
.wseb{word-spacing:-11.706192pt;}
.ws13f{word-spacing:-11.700373pt;}
.wsc4{word-spacing:-11.589828pt;}
.wsc3{word-spacing:-11.531646pt;}
.wsa3{word-spacing:-11.467646pt;}
.ws56{word-spacing:-11.415282pt;}
.ws26{word-spacing:-11.312200pt;}
.wsf2{word-spacing:-11.298919pt;}
.wsec{word-spacing:-11.240737pt;}
.ws109{word-spacing:-11.182555pt;}
.wsa6{word-spacing:-11.176737pt;}
.ws4c{word-spacing:-11.124373pt;}
.ws32{word-spacing:-11.066191pt;}
.ws2f{word-spacing:-11.060373pt;}
.ws10c{word-spacing:-11.008009pt;}
.ws6b{word-spacing:-10.891645pt;}
.wsf4{word-spacing:-10.775282pt;}
.ws22{word-spacing:-10.727728pt;}
.wse4{word-spacing:-10.717100pt;}
.ws20{word-spacing:-10.674594pt;}
.ws172{word-spacing:-10.658918pt;}
.ws97{word-spacing:-10.478554pt;}
.ws138{word-spacing:-10.426191pt;}
.wsf3{word-spacing:-10.362190pt;}
.ws72{word-spacing:-10.309827pt;}
.ws23{word-spacing:-10.302657pt;}
.ws150{word-spacing:-10.245827pt;}
.ws61{word-spacing:-10.216736pt;}
.ws141{word-spacing:-10.193463pt;}
.ws77{word-spacing:-10.158554pt;}
.ws119{word-spacing:-10.135281pt;}
.ws9e{word-spacing:-10.018917pt;}
.ws57{word-spacing:-9.960736pt;}
.ws129{word-spacing:-9.902554pt;}
.ws146{word-spacing:-9.844372pt;}
.ws4{word-spacing:-9.771318pt;}
.ws31{word-spacing:-9.669826pt;}
.wsc{word-spacing:-9.611916pt;}
.ws2e{word-spacing:-9.611644pt;}
.ws12d{word-spacing:-9.553463pt;}
.ws6c{word-spacing:-9.495281pt;}
.wsf5{word-spacing:-9.378917pt;}
.ws50{word-spacing:-9.320735pt;}
.ws14a{word-spacing:-9.204371pt;}
.ws133{word-spacing:-9.146189pt;}
.ws24{word-spacing:-9.133712pt;}
.ws151{word-spacing:-9.088008pt;}
.ws153{word-spacing:-9.029826pt;}
.ws10{word-spacing:-8.974310pt;}
.ws73{word-spacing:-8.971644pt;}
.wsbd{word-spacing:-8.913462pt;}
.ws9a{word-spacing:-8.907644pt;}
.ws8{word-spacing:-8.868042pt;}
.ws3d{word-spacing:-8.855280pt;}
.ws30{word-spacing:-8.849462pt;}
.ws9f{word-spacing:-8.738916pt;}
.wsd3{word-spacing:-8.680735pt;}
.ws6d{word-spacing:-8.674916pt;}
.wsb0{word-spacing:-8.622553pt;}
.wsbe{word-spacing:-8.448007pt;}
.ws7e{word-spacing:-8.331643pt;}
.ws152{word-spacing:-8.325825pt;}
.ws66{word-spacing:-8.273461pt;}
.ws166{word-spacing:-8.267643pt;}
.ws4e{word-spacing:-8.215280pt;}
.ws74{word-spacing:-8.209461pt;}
.ws29{word-spacing:-8.177302pt;}
.ws112{word-spacing:-8.157098pt;}
.ws51{word-spacing:-8.098916pt;}
.ws39{word-spacing:-8.040734pt;}
.ws41{word-spacing:-7.982552pt;}
.wsa0{word-spacing:-7.976734pt;}
.ws82{word-spacing:-7.924370pt;}
.ws132{word-spacing:-7.918552pt;}
.wsed{word-spacing:-7.808007pt;}
.ws11{word-spacing:-7.805365pt;}
.ws12b{word-spacing:-7.749825pt;}
.ws14f{word-spacing:-7.685825pt;}
.ws140{word-spacing:-7.627643pt;}
.wsd{word-spacing:-7.592830pt;}
.wscc{word-spacing:-7.517097pt;}
.ws52{word-spacing:-7.458915pt;}
.ws123{word-spacing:-7.400733pt;}
.wsb3{word-spacing:-7.284370pt;}
.wsc0{word-spacing:-7.168006pt;}
.ws111{word-spacing:-7.109824pt;}
.ws40{word-spacing:-6.935279pt;}
.ws48{word-spacing:-6.877097pt;}
.ws12e{word-spacing:-6.818915pt;}
.ws13{word-spacing:-6.795822pt;}
.wsee{word-spacing:-6.760733pt;}
.ws3e{word-spacing:-6.644369pt;}
.wsb4{word-spacing:-6.638551pt;}
.wscd{word-spacing:-6.528005pt;}
.wsa1{word-spacing:-6.504733pt;}
.ws170{word-spacing:-6.477721pt;}
.ws100{word-spacing:-6.471845pt;}
.ws37{word-spacing:-6.469824pt;}
.ws8a{word-spacing:-6.446551pt;}
.ws7a{word-spacing:-6.353460pt;}
.ws83{word-spacing:-6.347642pt;}
.ws16e{word-spacing:-6.295278pt;}
.wsd9{word-spacing:-6.289460pt;}
.wsa7{word-spacing:-6.120732pt;}
.wsef{word-spacing:-6.004369pt;}
.ws38{word-spacing:-5.940369pt;}
.ws93{word-spacing:-5.882187pt;}
.ws124{word-spacing:-5.824005pt;}
.ws90{word-spacing:-5.771641pt;}
.ws169{word-spacing:-5.713459pt;}
.wsde{word-spacing:-5.690187pt;}
.ws12a{word-spacing:-5.655277pt;}
.ws7b{word-spacing:-5.597096pt;}
.ws71{word-spacing:-5.480732pt;}
.ws49{word-spacing:-5.474914pt;}
.wsb2{word-spacing:-5.416732pt;}
.wsa9{word-spacing:-5.364368pt;}
.wsa8{word-spacing:-5.306186pt;}
.ws91{word-spacing:-5.300368pt;}
.ws1a{word-spacing:-5.201806pt;}
.ws14b{word-spacing:-5.189823pt;}
.ws18{word-spacing:-5.188157pt;}
.ws5{word-spacing:-5.095538pt;}
.wsce{word-spacing:-5.073459pt;}
.ws4d{word-spacing:-5.067641pt;}
.ws3c{word-spacing:-5.015277pt;}
.ws116{word-spacing:-4.951277pt;}
.wsd2{word-spacing:-4.840731pt;}
.wsd1{word-spacing:-4.782549pt;}
.ws118{word-spacing:-4.608004pt;}
.wscf{word-spacing:-4.602186pt;}
.ws14c{word-spacing:-4.549822pt;}
.ws148{word-spacing:-4.433458pt;}
.ws102{word-spacing:-4.317095pt;}
.ws54{word-spacing:-4.258913pt;}
.wsa4{word-spacing:-4.253094pt;}
.ws136{word-spacing:-4.200731pt;}
.ws67{word-spacing:-4.194913pt;}
.ws16c{word-spacing:-4.142549pt;}
.ws105{word-spacing:-3.933094pt;}
.ws149{word-spacing:-3.851640pt;}
.ws103{word-spacing:-3.735276pt;}
.wsac{word-spacing:-3.677094pt;}
.wsda{word-spacing:-3.673880pt;}
.ws147{word-spacing:-3.560730pt;}
.ws13b{word-spacing:-3.444367pt;}
.ws104{word-spacing:-3.438548pt;}
.ws101{word-spacing:-3.386185pt;}
.wsfe{word-spacing:-3.328003pt;}
.ws7c{word-spacing:-3.269821pt;}
.ws69{word-spacing:-3.246548pt;}
.ws6f{word-spacing:-3.211639pt;}
.ws142{word-spacing:-3.153457pt;}
.wsc9{word-spacing:-3.095275pt;}
.wscb{word-spacing:-3.037093pt;}
.ws13a{word-spacing:-2.978912pt;}
.ws5d{word-spacing:-2.914912pt;}
.ws127{word-spacing:-2.862548pt;}
.wsc7{word-spacing:-2.804366pt;}
.ws157{word-spacing:-2.746184pt;}
.ws143{word-spacing:-2.740366pt;}
.ws144{word-spacing:-2.682184pt;}
.ws128{word-spacing:-2.624002pt;}
.ws65{word-spacing:-2.565820pt;}
.wsc5{word-spacing:-2.397093pt;}
.wse9{word-spacing:-2.391275pt;}
.ws113{word-spacing:-2.280729pt;}
.wsc6{word-spacing:-2.216729pt;}
.ws80{word-spacing:-2.164365pt;}
.wsb8{word-spacing:-2.106184pt;}
.ws165{word-spacing:-1.984002pt;}
.wsb9{word-spacing:-1.815274pt;}
.wsf0{word-spacing:-1.640729pt;}
.wsba{word-spacing:-1.634910pt;}
.ws134{word-spacing:-1.576729pt;}
.ws7d{word-spacing:-1.344001pt;}
.ws13d{word-spacing:-0.942546pt;}
.ws8e{word-spacing:-0.826183pt;}
.wsaf{word-spacing:-0.587637pt;}
.ws154{word-spacing:-0.535273pt;}
.ws110{word-spacing:-0.477091pt;}
.ws62{word-spacing:-0.471273pt;}
.ws2a{word-spacing:-0.313490pt;}
.wsf9{word-spacing:-0.186182pt;}
.ws159{word-spacing:-0.128000pt;}
.ws2b{word-spacing:-0.100954pt;}
.ws15a{word-spacing:-0.076513pt;}
.ws3{word-spacing:-0.063761pt;}
.wsc8{word-spacing:-0.058182pt;}
.ws1d{word-spacing:-0.053134pt;}
.ws5a{word-spacing:-0.046545pt;}
.ws70{word-spacing:-0.042507pt;}
.wsb7{word-spacing:-0.020966pt;}
.ws36{word-spacing:0.000000pt;}
.ws5f{word-spacing:0.011636pt;}
.ws3f{word-spacing:0.162909pt;}
.wsf1{word-spacing:0.279273pt;}
.wse8{word-spacing:0.343273pt;}
.wse7{word-spacing:0.395637pt;}
.wse6{word-spacing:0.453819pt;}
.ws55{word-spacing:1.216001pt;}
.wsca{word-spacing:1.506910pt;}
.ws14e{word-spacing:1.559274pt;}
.ws14d{word-spacing:1.792001pt;}
.wsff{word-spacing:2.338911pt;}
.ws9c{word-spacing:2.490184pt;}
.ws9d{word-spacing:2.839275pt;}
.ws15{word-spacing:3.464328pt;}
.ws15e{word-spacing:3.944731pt;}
.ws10d{word-spacing:7.086551pt;}
.ws10e{word-spacing:8.192007pt;}
.ws7{word-spacing:8.294197pt;}
.ws64{word-spacing:8.554121pt;}
.ws160{word-spacing:9.419644pt;}
.ws15f{word-spacing:10.228372pt;}
.ws161{word-spacing:10.286554pt;}
.ws15d{word-spacing:11.106918pt;}
.ws15c{word-spacing:12.148374pt;}
.ws171{word-spacing:12.310613pt;}
.ws115{word-spacing:12.346192pt;}
.ws9{word-spacing:13.974207pt;}
.ws1e{word-spacing:14.452412pt;}
.ws1b{word-spacing:15.249420pt;}
.wsfa{word-spacing:15.837104pt;}
.wsea{word-spacing:16.280258pt;}
.ws21{word-spacing:17.373506pt;}
.ws6a{word-spacing:18.765731pt;}
.ws68{word-spacing:18.771064pt;}
.ws167{word-spacing:18.771742pt;}
.wsdd{word-spacing:18.772730pt;}
.ws5e{word-spacing:18.772788pt;}
.wsa2{word-spacing:18.773516pt;}
.wsdc{word-spacing:18.775672pt;}
.ws33{word-spacing:18.778121pt;}
.ws98{word-spacing:18.779949pt;}
.ws126{word-spacing:18.792528pt;}
.ws16f{word-spacing:18.792883pt;}
.ws6e{word-spacing:19.044788pt;}
.wsb{word-spacing:19.446995pt;}
.wsf{word-spacing:20.137735pt;}
.ws1{word-spacing:20.722347pt;}
.ws2{word-spacing:20.786108pt;}
.ws27{word-spacing:20.987877pt;}
.ws28{word-spacing:21.094145pt;}
.ws12{word-spacing:21.519216pt;}
.ws6{word-spacing:22.369358pt;}
.ws16b{word-spacing:25.824838pt;}
.ws16a{word-spacing:25.827076pt;}
.ws53{word-spacing:27.927269pt;}
.wsbf{word-spacing:28.003782pt;}
.ws85{word-spacing:29.492388pt;}
.ws10f{word-spacing:30.301116pt;}
.ws114{word-spacing:31.144528pt;}
.ws168{word-spacing:33.268391pt;}
.ws120{word-spacing:34.839302pt;}
.ws4f{word-spacing:35.871976pt;}
.ws11f{word-spacing:69.399331pt;}
.wsb1{word-spacing:74.018971pt;}
.ws2c{word-spacing:84.087860pt;}
.ws11e{word-spacing:115.072096pt;}
.ws121{word-spacing:127.115742pt;}
.ws11d{word-spacing:129.617563pt;}
.ws11c{word-spacing:144.395757pt;}
.ws122{word-spacing:145.035757pt;}
.ws10a{word-spacing:191.813978pt;}
.ws11b{word-spacing:194.315798pt;}
.ws10b{word-spacing:213.748542pt;}
.ws139{word-spacing:324.817725pt;}
.wsbb{word-spacing:512.343700pt;}
.ws145{word-spacing:617.297969pt;}
.wsdf{word-spacing:677.481292pt;}
.ws99{word-spacing:737.350433pt;}
.wsd8{word-spacing:748.172260pt;}
.ws9b{word-spacing:795.415936pt;}
.ws16d{word-spacing:945.025888pt;}
.wsb6{word-spacing:1018.566667pt;}
._36{margin-left:-28.741842pt;}
._3a{margin-left:-19.250962pt;}
._2a{margin-left:-17.512742pt;}
._3c{margin-left:-15.619548pt;}
._25{margin-left:-12.805957pt;}
._2e{margin-left:-9.741661pt;}
._2d{margin-left:-6.572198pt;}
._17{margin-left:-5.527277pt;}
._2{margin-left:-4.410111pt;}
._12{margin-left:-3.495819pt;}
._1{margin-left:-2.570833pt;}
._3{margin-left:-1.434614pt;}
._4{width:1.594016pt;}
._0{width:2.570833pt;}
._1e{width:3.498322pt;}
._22{width:4.456898pt;}
._1f{width:5.415821pt;}
._11{width:6.911931pt;}
._13{width:8.439240pt;}
._6{width:13.091339pt;}
._21{width:14.026737pt;}
._24{width:14.948546pt;}
._b{width:16.684034pt;}
._20{width:17.783345pt;}
._18{width:19.258198pt;}
._a{width:20.881610pt;}
._5{width:22.369358pt;}
._7{width:23.432035pt;}
._c{width:24.972917pt;}
._8{width:26.141862pt;}
._29{width:27.117657pt;}
._e{width:28.373485pt;}
._2b{width:29.313592pt;}
._14{width:30.406011pt;}
._1b{width:32.058209pt;}
._52{width:33.358255pt;}
._9{width:34.477558pt;}
._15{width:35.496981pt;}
._6e{width:36.521264pt;}
._1d{width:37.414890pt;}
._4b{width:38.814653pt;}
._d{width:40.009802pt;}
._34{width:42.309048pt;}
._6c{width:43.367516pt;}
._39{width:44.431014pt;}
._31{width:45.825874pt;}
._32{width:46.861482pt;}
._30{width:47.873376pt;}
._f{width:49.839567pt;}
._3b{width:54.109136pt;}
._38{width:58.657702pt;}
._23{width:59.563206pt;}
._1a{width:61.538643pt;}
._3e{width:63.767326pt;}
._51{width:66.501874pt;}
._4a{width:68.527859pt;}
._57{width:70.449139pt;}
._10{width:71.731200pt;}
._59{width:72.998310pt;}
._5d{width:81.018566pt;}
._1c{width:84.164373pt;}
._3f{width:88.679996pt;}
._19{width:96.578997pt;}
._54{width:121.251010pt;}
._58{width:131.200109pt;}
._42{width:133.634646pt;}
._4e{width:152.378309pt;}
._4f{width:153.532845pt;}
._4d{width:156.160130pt;}
._40{width:160.349225pt;}
._65{width:174.836509pt;}
._44{width:188.451066pt;}
._2c{width:200.825577pt;}
._48{width:202.045691pt;}
._5a{width:225.667529pt;}
._43{width:235.287469pt;}
._16{width:237.671391pt;}
._6a{width:240.523837pt;}
._55{width:242.967475pt;}
._68{width:258.760736pt;}
._47{width:270.080225pt;}
._56{width:278.167505pt;}
._66{width:282.278485pt;}
._37{width:288.212653pt;}
._3d{width:290.342659pt;}
._49{width:300.625705pt;}
._64{width:309.097152pt;}
._5b{width:315.651771pt;}
._5c{width:318.487538pt;}
._45{width:320.678517pt;}
._46{width:323.723906pt;}
._67{width:359.971209pt;}
._5e{width:364.800304pt;}
._41{width:368.756671pt;}
._53{width:369.687581pt;}
._4c{width:379.729938pt;}
._35{width:386.909841pt;}
._5f{width:390.876611pt;}
._62{width:410.458044pt;}
._6b{width:420.576782pt;}
._63{width:430.953086pt;}
._69{width:435.587703pt;}
._50{width:444.916734pt;}
._6d{width:469.563617pt;}
._60{width:514.444065pt;}
._61{width:524.780505pt;}
._27{width:552.001908pt;}
._2f{width:607.507723pt;}
._33{width:663.518294pt;}
._28{width:675.186423pt;}
._26{width:889.610311pt;}
.fs7{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:56.149333pt;}
.y26{bottom:96.000000pt;}
.y156{bottom:96.038667pt;}
.y177{bottom:97.270667pt;}
.y285{bottom:99.280000pt;}
.y49{bottom:101.102667pt;}
.y1ef{bottom:101.810667pt;}
.y249{bottom:105.957333pt;}
.y12d{bottom:110.168000pt;}
.y25{bottom:114.065333pt;}
.y155{bottom:114.104000pt;}
.y66{bottom:114.784000pt;}
.y176{bottom:115.337333pt;}
.y1ee{bottom:119.876000pt;}
.y265{bottom:123.085333pt;}
.y248{bottom:124.022667pt;}
.y19a{bottom:125.224000pt;}
.y106{bottom:127.402667pt;}
.yc4{bottom:128.457333pt;}
.y284{bottom:129.300000pt;}
.y24{bottom:132.130667pt;}
.y154{bottom:132.169333pt;}
.y65{bottom:132.849333pt;}
.y12c{bottom:137.625333pt;}
.y1ed{bottom:137.942667pt;}
.y48{bottom:139.757333pt;}
.ya6{bottom:139.962667pt;}
.y175{bottom:142.793333pt;}
.y199{bottom:143.289333pt;}
.ya5{bottom:143.558667pt;}
.y228{bottom:145.162667pt;}
.y283{bottom:147.365333pt;}
.y264{bottom:150.542667pt;}
.y64{bottom:150.916000pt;}
.y247{bottom:154.044000pt;}
.y1ec{bottom:156.008000pt;}
.y105{bottom:158.805333pt;}
.y83{bottom:160.221333pt;}
.y2a6{bottom:160.517333pt;}
.yc3{bottom:160.913333pt;}
.y23{bottom:161.216000pt;}
.y2c8{bottom:161.249333pt;}
.y198{bottom:161.356000pt;}
.y227{bottom:163.228000pt;}
.y153{bottom:166.174667pt;}
.y1cc{bottom:166.968000pt;}
.y63{bottom:168.981333pt;}
.y246{bottom:172.109333pt;}
.y47{bottom:172.434667pt;}
.ya4{bottom:173.052000pt;}
.y1eb{bottom:174.073333pt;}
.y12b{bottom:176.570667pt;}
.y282{bottom:177.386667pt;}
.y82{bottom:178.288000pt;}
.ye5{bottom:179.194667pt;}
.y197{bottom:179.421333pt;}
.y104{bottom:179.602667pt;}
.y174{bottom:181.738667pt;}
.y152{bottom:184.240000pt;}
.yc2{bottom:187.502667pt;}
.y2a5{bottom:187.974667pt;}
.y2c7{bottom:188.705333pt;}
.y20d{bottom:188.716000pt;}
.y263{bottom:191.372000pt;}
.y1ea{bottom:192.138667pt;}
.y22{bottom:194.097333pt;}
.y12a{bottom:194.636000pt;}
.y281{bottom:195.452000pt;}
.y226{bottom:195.906667pt;}
.y46{bottom:196.478667pt;}
.y101{bottom:196.874667pt;}
.y62{bottom:199.001333pt;}
.y1cb{bottom:199.645333pt;}
.y173{bottom:199.805333pt;}
.y245{bottom:202.130667pt;}
.y151{bottom:202.306667pt;}
.ya3{bottom:202.544000pt;}
.yc1{bottom:205.568000pt;}
.y1b9{bottom:208.340000pt;}
.y262{bottom:209.437333pt;}
.y196{bottom:209.441333pt;}
.y1e9{bottom:210.204000pt;}
.y103{bottom:210.693333pt;}
.y81{bottom:210.965333pt;}
.y2cf{bottom:211.552000pt;}
.ye4{bottom:211.872000pt;}
.y21{bottom:212.162667pt;}
.y1ae{bottom:212.305333pt;}
.y129{bottom:212.701333pt;}
.y102{bottom:215.057333pt;}
.y20c{bottom:216.173333pt;}
.y61{bottom:217.068000pt;}
.y172{bottom:217.870667pt;}
.y244{bottom:220.196000pt;}
.y150{bottom:220.372000pt;}
.y45{bottom:220.521333pt;}
.y280{bottom:225.473333pt;}
.y2a4{bottom:226.080000pt;}
.y1b8{bottom:226.405333pt;}
.y2c6{bottom:227.481333pt;}
.y195{bottom:227.508000pt;}
.y100{bottom:227.929333pt;}
.y225{bottom:228.584000pt;}
.y2ce{bottom:229.617333pt;}
.y1ad{bottom:230.370667pt;}
.y128{bottom:230.766667pt;}
.ya2{bottom:232.037333pt;}
.y1ca{bottom:232.324000pt;}
.y80{bottom:233.016000pt;}
.y171{bottom:235.936000pt;}
.yc0{bottom:238.025333pt;}
.y14f{bottom:238.437333pt;}
.y44{bottom:238.586667pt;}
.y261{bottom:239.458667pt;}
.y1e8{bottom:240.225333pt;}
.ye3{bottom:241.893333pt;}
.y20b{bottom:243.630667pt;}
.y60{bottom:244.525333pt;}
.y20{bottom:245.045333pt;}
.y2c5{bottom:245.546667pt;}
.y194{bottom:245.573333pt;}
.yff{bottom:245.994667pt;}
.y243{bottom:247.653333pt;}
.y1ac{bottom:248.437333pt;}
.y127{bottom:248.833333pt;}
.y1c9{bottom:250.389333pt;}
.y170{bottom:254.001333pt;}
.y2a3{bottom:254.466667pt;}
.y27f{bottom:255.493333pt;}
.y260{bottom:257.524000pt;}
.ya1{bottom:258.446667pt;}
.ye2{bottom:259.958667pt;}
.y224{bottom:261.261333pt;}
.y1b6{bottom:262.300000pt;}
.y2c4{bottom:263.612000pt;}
.y7f{bottom:265.693333pt;}
.y126{bottom:266.898667pt;}
.y1e7{bottom:267.682667pt;}
.ya0{bottom:268.424000pt;}
.y43{bottom:268.608000pt;}
.ybf{bottom:270.481333pt;}
.y16f{bottom:272.066667pt;}
.y14e{bottom:272.442667pt;}
.y1f{bottom:272.502667pt;}
.y2a2{bottom:272.532000pt;}
.y193{bottom:273.030667pt;}
.y242{bottom:275.110667pt;}
.y25f{bottom:275.589333pt;}
.yfe{bottom:275.802667pt;}
.ye1{bottom:278.024000pt;}
.y2c3{bottom:281.677333pt;}
.y20a{bottom:282.576000pt;}
.y5f{bottom:283.470667pt;}
.y1b7{bottom:284.326667pt;}
.y1b5{bottom:284.350667pt;}
.y125{bottom:284.964000pt;}
.y27e{bottom:285.514667pt;}
.y1c8{bottom:290.377333pt;}
.y14d{bottom:290.509333pt;}
.y2a1{bottom:290.597333pt;}
.y223{bottom:293.938667pt;}
.y1e6{bottom:295.140000pt;}
.y7e{bottom:295.713333pt;}
.ybe{bottom:297.938667pt;}
.y42{bottom:298.628000pt;}
.y2c2{bottom:299.744000pt;}
.y209{bottom:300.641333pt;}
.y5e{bottom:301.536000pt;}
.y9f{bottom:303.222667pt;}
.y16e{bottom:304.745333pt;}
.y1e{bottom:305.500000pt;}
.y25e{bottom:305.609333pt;}
.y1b4{bottom:306.401333pt;}
.ye0{bottom:308.045333pt;}
.y1c7{bottom:308.442667pt;}
.y14c{bottom:308.574667pt;}
.y2a0{bottom:308.664000pt;}
.y192{bottom:311.976000pt;}
.yfd{bottom:313.012000pt;}
.y7d{bottom:313.780000pt;}
.y241{bottom:314.056000pt;}
.y27d{bottom:315.536000pt;}
.y41{bottom:316.694667pt;}
.y208{bottom:318.706667pt;}
.y124{bottom:320.482667pt;}
.y222{bottom:321.396000pt;}
.y1c6{bottom:326.508000pt;}
.y29f{bottom:326.729333pt;}
.y2c1{bottom:327.200000pt;}
.y9e{bottom:330.589333pt;}
.y240{bottom:332.121333pt;}
.y27c{bottom:333.601333pt;}
.y5d{bottom:334.001333pt;}
.y1e5{bottom:334.085333pt;}
.y25d{bottom:335.630667pt;}
.y14b{bottom:335.968000pt;}
.y207{bottom:336.773333pt;}
.ybd{bottom:336.849333pt;}
.y16d{bottom:337.422667pt;}
.y123{bottom:338.548000pt;}
.yde{bottom:340.722667pt;}
.y191{bottom:341.996000pt;}
.y1b3{bottom:343.138667pt;}
.y7c{bottom:343.800000pt;}
.y1c5{bottom:344.573333pt;}
.y29e{bottom:344.794667pt;}
.y40{bottom:346.714667pt;}
.ydf{bottom:348.968000pt;}
.y23f{bottom:350.186667pt;}
.yfc{bottom:350.302667pt;}
.y1d{bottom:351.148000pt;}
.y1e4{bottom:352.150667pt;}
.y25c{bottom:353.696000pt;}
.y9d{bottom:358.018667pt;}
.y221{bottom:359.809333pt;}
.y190{bottom:360.062667pt;}
.y2c0{bottom:360.262667pt;}
.y29d{bottom:362.860000pt;}
.y27b{bottom:363.621333pt;}
.y14a{bottom:364.742667pt;}
.y122{bottom:365.961333pt;}
.ybc{bottom:366.686667pt;}
.y206{bottom:366.793333pt;}
.y1c{bottom:367.088000pt;}
.y23e{bottom:368.252000pt;}
.y1c4{bottom:369.937333pt;}
.y1b2{bottom:370.596000pt;}
.y25b{bottom:371.761333pt;}
.y7b{bottom:373.821333pt;}
.y2bf{bottom:375.472000pt;}
.yfb{bottom:376.364000pt;}
.ydd{bottom:376.509333pt;}
.y2bd{bottom:376.926667pt;}
.y9c{bottom:377.600000pt;}
.y220{bottom:377.874667pt;}
.y18f{bottom:378.128000pt;}
.y5c{bottom:379.825333pt;}
.y29c{bottom:380.925333pt;}
.y27a{bottom:381.686667pt;}
.y2be{bottom:382.600000pt;}
.y1b{bottom:383.028000pt;}
.y11f{bottom:383.233333pt;}
.y16c{bottom:384.028000pt;}
.y1e3{bottom:384.616000pt;}
.ybb{bottom:384.752000pt;}
.y3f{bottom:385.369333pt;}
.y149{bottom:391.596000pt;}
.y7a{bottom:391.886667pt;}
.yfa{bottom:394.430667pt;}
.ydc{bottom:394.574667pt;}
.y9b{bottom:395.665333pt;}
.y121{bottom:397.052000pt;}
.y23d{bottom:398.273333pt;}
.y1a{bottom:398.968000pt;}
.y29b{bottom:398.992000pt;}
.y279{bottom:399.753333pt;}
.y120{bottom:401.416000pt;}
.y25a{bottom:401.782667pt;}
.y16b{bottom:402.093333pt;}
.yba{bottom:402.817333pt;}
.y205{bottom:403.392000pt;}
.y1c3{bottom:406.512000pt;}
.y21f{bottom:407.896000pt;}
.y18e{bottom:408.148000pt;}
.y148{bottom:409.661333pt;}
.y5b{bottom:409.846667pt;}
.y79{bottom:409.952000pt;}
.yf9{bottom:412.496000pt;}
.y19{bottom:414.908000pt;}
.y29a{bottom:417.057333pt;}
.y1b1{bottom:417.194667pt;}
.y3e{bottom:418.048000pt;}
.y259{bottom:419.848000pt;}
.y2bc{bottom:420.065333pt;}
.y16a{bottom:420.158667pt;}
.yb9{bottom:420.882667pt;}
.y204{bottom:421.457333pt;}
.y9a{bottom:423.032000pt;}
.y21e{bottom:425.961333pt;}
.ydb{bottom:426.237333pt;}
.y147{bottom:427.726667pt;}
.y78{bottom:428.017333pt;}
.y11e{bottom:429.708000pt;}
.y1e2{bottom:430.441333pt;}
.y18{bottom:430.849333pt;}
.y278{bottom:432.218667pt;}
.y23c{bottom:432.278667pt;}
.y1b0{bottom:435.260000pt;}
.y18d{bottom:438.169333pt;}
.y5a{bottom:439.866667pt;}
.yf8{bottom:441.454667pt;}
.y3d{bottom:442.090667pt;}
.yda{bottom:444.304000pt;}
.y258{bottom:445.145333pt;}
.y299{bottom:445.442667pt;}
.y17{bottom:446.789333pt;}
.y2bb{bottom:447.522667pt;}
.y1c2{bottom:447.589333pt;}
.y11d{bottom:447.773333pt;}
.y1e1{bottom:448.506667pt;}
.y169{bottom:450.180000pt;}
.y99{bottom:450.400000pt;}
.yb8{bottom:450.720000pt;}
.y1af{bottom:453.326667pt;}
.y21d{bottom:455.982667pt;}
.y18c{bottom:456.234667pt;}
.y203{bottom:456.468000pt;}
.y146{bottom:456.538667pt;}
.y59{bottom:457.933333pt;}
.y77{bottom:458.038667pt;}
.y23b{bottom:462.300000pt;}
.yd9{bottom:462.369333pt;}
.y16{bottom:462.729333pt;}
.y257{bottom:463.210667pt;}
.y11c{bottom:465.838667pt;}
.y3c{bottom:466.133333pt;}
.y1e0{bottom:466.572000pt;}
.yf7{bottom:466.804000pt;}
.y98{bottom:468.465333pt;}
.y298{bottom:472.900000pt;}
.y21c{bottom:474.048000pt;}
.y18b{bottom:474.300000pt;}
.y202{bottom:474.533333pt;}
.y145{bottom:474.604000pt;}
.yf6{bottom:476.490667pt;}
.y277{bottom:478.042667pt;}
.yb7{bottom:478.177333pt;}
.y15{bottom:478.669333pt;}
.yd8{bottom:480.434667pt;}
.y256{bottom:481.276000pt;}
.y168{bottom:482.857333pt;}
.y3b{bottom:484.198667pt;}
.y1df{bottom:484.637333pt;}
.y2ba{bottom:485.766667pt;}
.y97{bottom:486.530667pt;}
.y1c1{bottom:486.534667pt;}
.y58{bottom:487.953333pt;}
.y76{bottom:488.058667pt;}
.y21b{bottom:492.113333pt;}
.y23a{bottom:492.320000pt;}
.y201{bottom:492.598667pt;}
.y11b{bottom:493.272000pt;}
.y14{bottom:494.609333pt;}
.yf5{bottom:496.072000pt;}
.y276{bottom:496.108000pt;}
.y297{bottom:500.357333pt;}
.y144{bottom:501.353333pt;}
.y1de{bottom:502.702667pt;}
.y2b9{bottom:503.832000pt;}
.y18a{bottom:504.321333pt;}
.yd7{bottom:507.892000pt;}
.y255{bottom:509.094667pt;}
.y21a{bottom:510.178667pt;}
.y118{bottom:510.544000pt;}
.y13{bottom:510.549333pt;}
.y200{bottom:510.664000pt;}
.y96{bottom:513.897333pt;}
.yf4{bottom:514.137333pt;}
.y3a{bottom:514.220000pt;}
.y75{bottom:514.758667pt;}
.y1c0{bottom:516.554667pt;}
.yb6{bottom:517.088000pt;}
.y57{bottom:517.974667pt;}
.y143{bottom:519.418667pt;}
.y167{bottom:519.452000pt;}
.y2b8{bottom:521.897333pt;}
.y239{bottom:522.341333pt;}
.y11a{bottom:524.362667pt;}
.y275{bottom:526.129333pt;}
.y12{bottom:526.490667pt;}
.y219{bottom:528.245333pt;}
.y119{bottom:528.726667pt;}
.y1ff{bottom:528.729333pt;}
.y39{bottom:532.285333pt;}
.y1dd{bottom:532.724000pt;}
.y74{bottom:532.824000pt;}
.yb5{bottom:535.153333pt;}
.y254{bottom:536.552000pt;}
.y142{bottom:537.484000pt;}
.y188{bottom:537.558667pt;}
.y296{bottom:538.994667pt;}
.yd6{bottom:540.889333pt;}
.y95{bottom:541.354667pt;}
.y11{bottom:542.430667pt;}
.yf3{bottom:543.096000pt;}
.y274{bottom:544.194667pt;}
.y2b7{bottom:545.864000pt;}
.y1bf{bottom:546.576000pt;}
.y56{bottom:547.994667pt;}
.y166{bottom:549.473333pt;}
.y1dc{bottom:550.789333pt;}
.y73{bottom:550.890667pt;}
.y238{bottom:552.361333pt;}
.y1ab{bottom:552.482667pt;}
.y1fe{bottom:554.093333pt;}
.y2b6{bottom:555.841333pt;}
.y117{bottom:557.017333pt;}
.y295{bottom:557.060000pt;}
.y218{bottom:558.265333pt;}
.y10{bottom:558.370667pt;}
.y189{bottom:559.585333pt;}
.y187{bottom:559.609333pt;}
.y38{bottom:562.306667pt;}
.y141{bottom:564.233333pt;}
.y165{bottom:567.538667pt;}
.yb4{bottom:567.618667pt;}
.y1db{bottom:568.854667pt;}
.y273{bottom:574.216000pt;}
.yf{bottom:574.310667pt;}
.yf2{bottom:574.497333pt;}
.y294{bottom:575.126667pt;}
.y253{bottom:575.497333pt;}
.y217{bottom:576.330667pt;}
.y1be{bottom:576.596000pt;}
.y55{bottom:578.016000pt;}
.y94{bottom:579.800000pt;}
.y2b5{bottom:579.938667pt;}
.y37{bottom:580.372000pt;}
.y186{bottom:581.660000pt;}
.y140{bottom:582.298667pt;}
.y1aa{bottom:582.502667pt;}
.yd5{bottom:584.206667pt;}
.y164{bottom:585.604000pt;}
.y72{bottom:585.892000pt;}
.y237{bottom:586.368000pt;}
.y1da{bottom:586.920000pt;}
.ye{bottom:590.250667pt;}
.y1fd{bottom:590.733333pt;}
.y116{bottom:592.537333pt;}
.y293{bottom:593.192000pt;}
.y252{bottom:593.562667pt;}
.y54{bottom:596.081333pt;}
.y93{bottom:597.865333pt;}
.y1a9{bottom:600.568000pt;}
.yd4{bottom:602.273333pt;}
.y185{bottom:602.977333pt;}
.y1d9{bottom:604.986667pt;}
.yf1{bottom:605.900000pt;}
.yd{bottom:606.190667pt;}
.y13f{bottom:606.272000pt;}
.y216{bottom:606.352000pt;}
.y272{bottom:606.681333pt;}
.y2b4{bottom:608.449333pt;}
.y36{bottom:610.393333pt;}
.y115{bottom:610.602667pt;}
.y292{bottom:611.257333pt;}
.yb3{bottom:611.370667pt;}
.y236{bottom:613.825333pt;}
.y163{bottom:615.624000pt;}
.y92{bottom:615.930667pt;}
.y1fc{bottom:618.190667pt;}
.y2b3{bottom:618.426667pt;}
.y71{bottom:620.089333pt;}
.yd3{bottom:620.338667pt;}
.y184{bottom:621.044000pt;}
.yc{bottom:622.132000pt;}
.y53{bottom:623.538667pt;}
.y251{bottom:623.582667pt;}
.yf0{bottom:623.965333pt;}
.y13e{bottom:624.337333pt;}
.y215{bottom:624.417333pt;}
.y114{bottom:628.668000pt;}
.y291{bottom:629.322667pt;}
.yb2{bottom:629.437333pt;}
.y1a8{bottom:630.589333pt;}
.y35{bottom:634.436000pt;}
.y1d8{bottom:635.006667pt;}
.yb{bottom:638.072000pt;}
.yd2{bottom:638.404000pt;}
.y235{bottom:641.282667pt;}
.y250{bottom:641.648000pt;}
.y214{bottom:642.482667pt;}
.y91{bottom:645.421333pt;}
.y113{bottom:646.733333pt;}
.y290{bottom:647.388000pt;}
.y162{bottom:648.302667pt;}
.y183{bottom:648.501333pt;}
.y1a7{bottom:648.654667pt;}
.y13d{bottom:651.794667pt;}
.y34{bottom:652.501333pt;}
.y271{bottom:652.505333pt;}
.y70{bottom:652.766667pt;}
.y1d7{bottom:653.072000pt;}
.yef{bottom:653.774667pt;}
.ya{bottom:654.012000pt;}
.y1bd{bottom:656.125333pt;}
.y1fb{bottom:656.604000pt;}
.y2b2{bottom:657.668000pt;}
.yb1{bottom:663.442667pt;}
.y90{bottom:663.486667pt;}
.y52{bottom:663.560000pt;}
.y28f{bottom:665.454667pt;}
.y234{bottom:668.738667pt;}
.y9{bottom:669.952000pt;}
.y270{bottom:670.572000pt;}
.yd1{bottom:670.874667pt;}
.y1d6{bottom:671.138667pt;}
.y24f{bottom:671.669333pt;}
.y213{bottom:672.504000pt;}
.y112{bottom:674.190667pt;}
.y1fa{bottom:674.669333pt;}
.y33{bottom:676.545333pt;}
.y1a6{bottom:678.676000pt;}
.y161{bottom:680.980000pt;}
.yb0{bottom:681.508000pt;}
.y8f{bottom:681.552000pt;}
.y51{bottom:681.625333pt;}
.y2b1{bottom:681.634667pt;}
.yd0{bottom:684.573333pt;}
.yee{bottom:685.176000pt;}
.y6f{bottom:685.444000pt;}
.y8{bottom:685.892000pt;}
.y182{bottom:687.446667pt;}
.y26f{bottom:688.637333pt;}
.ycf{bottom:688.940000pt;}
.y1bc{bottom:689.122667pt;}
.y13c{bottom:689.600000pt;}
.y24e{bottom:689.734667pt;}
.y212{bottom:690.569333pt;}
.y2b0{bottom:691.612000pt;}
.y1f9{bottom:692.736000pt;}
.y28e{bottom:692.910667pt;}
.y1a5{bottom:696.741333pt;}
.y1d5{bottom:698.594667pt;}
.yaf{bottom:699.573333pt;}
.y8e{bottom:699.617333pt;}
.y7{bottom:701.832000pt;}
.yce{bottom:702.370667pt;}
.y181{bottom:705.512000pt;}
.y26e{bottom:706.702667pt;}
.ycd{bottom:707.006667pt;}
.y111{bottom:707.188000pt;}
.y13b{bottom:707.666667pt;}
.y32{bottom:710.550667pt;}
.y1f8{bottom:710.801333pt;}
.y50{bottom:711.646667pt;}
.y6e{bottom:712.144000pt;}
.y233{bottom:715.337333pt;}
.y160{bottom:716.498667pt;}
.yed{bottom:716.578667pt;}
.yae{bottom:717.640000pt;}
.y8d{bottom:717.684000pt;}
.y24d{bottom:719.756000pt;}
.y211{bottom:720.590667pt;}
.y180{bottom:723.577333pt;}
.y2af{bottom:724.373333pt;}
.y26d{bottom:724.768000pt;}
.y6{bottom:724.953333pt;}
.y1a4{bottom:726.762667pt;}
.y13a{bottom:727.821333pt;}
.y31{bottom:728.616000pt;}
.y1f7{bottom:728.866667pt;}
.y4f{bottom:729.712000pt;}
.y6d{bottom:730.210667pt;}
.y28d{bottom:731.017333pt;}
.y1bb{bottom:732.909333pt;}
.y15f{bottom:734.564000pt;}
.y2cd{bottom:734.977333pt;}
.yad{bottom:735.705333pt;}
.y8c{bottom:735.749333pt;}
.ycc{bottom:736.264000pt;}
.y1d4{bottom:737.541333pt;}
.y24c{bottom:737.821333pt;}
.y210{bottom:738.656000pt;}
.y26c{bottom:742.833333pt;}
.y1a3{bottom:744.828000pt;}
.y17f{bottom:745.012000pt;}
.y137{bottom:745.094667pt;}
.yec{bottom:745.537333pt;}
.y1f6{bottom:746.932000pt;}
.y4e{bottom:747.777333pt;}
.y28c{bottom:749.082667pt;}
.y232{bottom:750.348000pt;}
.y110{bottom:750.974667pt;}
.y17e{bottom:752.484000pt;}
.y15e{bottom:752.629333pt;}
.y2cc{bottom:753.042667pt;}
.ycb{bottom:754.330667pt;}
.y1d3{bottom:755.606667pt;}
.y30{bottom:756.073333pt;}
.y139{bottom:758.913333pt;}
.y17d{bottom:762.461333pt;}
.y2ae{bottom:762.617333pt;}
.y6c{bottom:762.888000pt;}
.y1a2{bottom:762.893333pt;}
.y8b{bottom:763.116000pt;}
.y138{bottom:763.276000pt;}
.y1f5{bottom:764.997333pt;}
.y24b{bottom:765.278667pt;}
.y20f{bottom:766.113333pt;}
.y28b{bottom:767.148000pt;}
.y231{bottom:768.414667pt;}
.y10f{bottom:769.040000pt;}
.yac{bottom:769.710667pt;}
.y15d{bottom:770.694667pt;}
.y1d2{bottom:773.672000pt;}
.y5{bottom:777.404000pt;}
.y4d{bottom:777.798667pt;}
.y26b{bottom:778.353333pt;}
.y136{bottom:778.760000pt;}
.yeb{bottom:779.264000pt;}
.y2ad{bottom:780.682667pt;}
.y1a1{bottom:780.958667pt;}
.y1f4{bottom:783.064000pt;}
.yca{bottom:783.853333pt;}
.y28a{bottom:785.213333pt;}
.y230{bottom:786.480000pt;}
.yab{bottom:787.776000pt;}
.y17c{bottom:789.245333pt;}
.y1d1{bottom:791.737333pt;}
.y8a{bottom:794.122667pt;}
.y2f{bottom:795.018667pt;}
.y6b{bottom:795.565333pt;}
.y133{bottom:796.033333pt;}
.y2ac{bottom:798.748000pt;}
.y15c{bottom:800.716000pt;}
.y1f3{bottom:801.129333pt;}
.yc9{bottom:801.918667pt;}
.y10e{bottom:803.046667pt;}
.y289{bottom:803.280000pt;}
.y24a{bottom:803.692000pt;}
.y22f{bottom:804.545333pt;}
.y20e{bottom:805.172000pt;}
.yaa{bottom:805.842667pt;}
.y26a{bottom:807.158667pt;}
.y17b{bottom:807.310667pt;}
.y4{bottom:809.753333pt;}
.y135{bottom:809.852000pt;}
.y4c{bottom:811.908000pt;}
.yea{bottom:812.990667pt;}
.y2e{bottom:813.084000pt;}
.y6a{bottom:813.630667pt;}
.y134{bottom:814.214667pt;}
.y2ab{bottom:816.813333pt;}
.y269{bottom:817.136000pt;}
.y15b{bottom:818.781333pt;}
.y1f2{bottom:819.194667pt;}
.y10d{bottom:821.112000pt;}
.y288{bottom:821.345333pt;}
.y1d0{bottom:821.758667pt;}
.y89{bottom:825.177333pt;}
.y17a{bottom:825.376000pt;}
.y3{bottom:828.350667pt;}
.y22e{bottom:829.908000pt;}
.y2cb{bottom:831.149333pt;}
.y1a0{bottom:831.218667pt;}
.yc8{bottom:831.609333pt;}
.ya9{bottom:834.214667pt;}
.y132{bottom:834.442667pt;}
.y15a{bottom:836.846667pt;}
.y2aa{bottom:838.517333pt;}
.y10c{bottom:839.177333pt;}
.y287{bottom:839.410667pt;}
.y69{bottom:841.088000pt;}
.ye9{bottom:841.949333pt;}
.y2d{bottom:843.105333pt;}
.y88{bottom:843.242667pt;}
.y2{bottom:846.946667pt;}
.y2a9{bottom:848.494667pt;}
.y1f1{bottom:849.216000pt;}
.y19f{bottom:849.284000pt;}
.y1cf{bottom:851.778667pt;}
.y159{bottom:854.913333pt;}
.y268{bottom:855.117333pt;}
.y22d{bottom:855.270667pt;}
.y179{bottom:855.397333pt;}
.y10b{bottom:857.242667pt;}
.y286{bottom:857.476000pt;}
.y131{bottom:858.416000pt;}
.y2c{bottom:861.170667pt;}
.yc7{bottom:861.298667pt;}
.y4b{bottom:862.650667pt;}
.y2ca{bottom:867.281333pt;}
.y19e{bottom:867.349333pt;}
.y87{bottom:868.489333pt;}
.y1ce{bottom:869.844000pt;}
.ye8{bottom:870.906667pt;}
.ya8{bottom:873.125333pt;}
.y267{bottom:873.182667pt;}
.y22c{bottom:873.336000pt;}
.y10a{bottom:875.309333pt;}
.y130{bottom:876.481333pt;}
.y86{bottom:877.217333pt;}
.y2a8{bottom:879.156000pt;}
.y2b{bottom:879.236000pt;}
.y68{bottom:880.033333pt;}
.y158{bottom:884.933333pt;}
.y2c9{bottom:885.346667pt;}
.ye7{bottom:885.377333pt;}
.y19d{bottom:885.416000pt;}
.y1{bottom:887.238667pt;}
.y1cd{bottom:887.910667pt;}
.ye6{bottom:888.972000pt;}
.yc6{bottom:890.989333pt;}
.ya7{bottom:891.192000pt;}
.y266{bottom:891.249333pt;}
.y22b{bottom:891.401333pt;}
.y178{bottom:892.321333pt;}
.y1ba{bottom:893.374667pt;}
.y4a{bottom:897.301333pt;}
.y12f{bottom:898.306667pt;}
.y85{bottom:899.865333pt;}
.y12e{bottom:901.901333pt;}
.y2a7{bottom:906.613333pt;}
.y2a{bottom:909.257333pt;}
.y109{bottom:909.314667pt;}
.y19c{bottom:910.778667pt;}
.y157{bottom:912.390667pt;}
.y67{bottom:912.710667pt;}
.y1f0{bottom:915.368000pt;}
.yc5{bottom:915.698667pt;}
.y22a{bottom:916.765333pt;}
.y84{bottom:917.930667pt;}
.y29{bottom:927.322667pt;}
.y108{bottom:927.380000pt;}
.y229{bottom:942.128000pt;}
.y28{bottom:945.388000pt;}
.y107{bottom:945.445333pt;}
.y19b{bottom:947.354667pt;}
.h24{height:2.327275pt;}
.h2f{height:13.523474pt;}
.h1e{height:29.542504pt;}
.h1c{height:29.967576pt;}
.h23{height:30.350141pt;}
.h25{height:31.880400pt;}
.h3{height:39.850667pt;}
.h4{height:39.903534pt;}
.h7{height:41.178747pt;}
.h1d{height:41.658217pt;}
.h5{height:41.976021pt;}
.h10{height:43.636400pt;}
.ha{height:43.694582pt;}
.hb{height:43.752764pt;}
.h6{height:43.976550pt;}
.h2{height:44.313941pt;}
.h9{height:44.696508pt;}
.hd{height:45.090947pt;}
.h29{height:45.964608pt;}
.h18{height:51.464807pt;}
.hf{height:52.989733pt;}
.he{height:52.995067pt;}
.h8{height:53.712173pt;}
.h13{height:53.882385pt;}
.hc{height:53.887718pt;}
.h16{height:54.913941pt;}
.h19{height:55.901733pt;}
.h26{height:55.907067pt;}
.h12{height:56.794385pt;}
.h27{height:56.799718pt;}
.h20{height:58.015067pt;}
.h28{height:58.073249pt;}
.h2e{height:58.858217pt;}
.h1b{height:62.180400pt;}
.h1f{height:62.523837pt;}
.h1a{height:62.547067pt;}
.h1{height:64.454458pt;}
.h2a{height:64.861733pt;}
.h17{height:71.178385pt;}
.h2d{height:81.018217pt;}
.h22{height:81.516608pt;}
.h14{height:82.996400pt;}
.h15{height:83.603915pt;}
.h21{height:83.837613pt;}
.h11{height:90.813733pt;}
.h2c{height:101.820608pt;}
.h2b{height:141.729941pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5a{left:88.768000pt;}
.x9{left:96.000000pt;}
.x54{left:98.252000pt;}
.x46{left:110.696000pt;}
.xc{left:114.524000pt;}
.xa{left:118.582667pt;}
.xf{left:127.201333pt;}
.x8{left:132.364000pt;}
.x10{left:142.593333pt;}
.x4d{left:143.876000pt;}
.x33{left:145.725333pt;}
.x7{left:152.284000pt;}
.xe{left:157.160000pt;}
.x1{left:180.418667pt;}
.xd{left:192.524000pt;}
.x50{left:197.053333pt;}
.x57{left:200.520000pt;}
.x28{left:203.092000pt;}
.x2b{left:219.033333pt;}
.x44{left:224.872000pt;}
.x51{left:232.946667pt;}
.x52{left:241.513333pt;}
.x45{left:243.534667pt;}
.x43{left:249.437333pt;}
.x2f{left:257.182667pt;}
.x22{left:259.534667pt;}
.x47{left:262.170667pt;}
.x4e{left:267.804000pt;}
.x58{left:268.757333pt;}
.x4b{left:271.557333pt;}
.x21{left:273.962667pt;}
.x1e{left:276.617333pt;}
.x53{left:282.065333pt;}
.x16{left:284.694667pt;}
.x41{left:286.854667pt;}
.x24{left:288.864000pt;}
.x5f{left:290.268000pt;}
.x2e{left:292.453333pt;}
.x3d{left:294.534667pt;}
.x20{left:299.646667pt;}
.x4f{left:302.654667pt;}
.x38{left:304.820000pt;}
.x34{left:306.121333pt;}
.x1c{left:307.136000pt;}
.x4{left:309.593333pt;}
.x14{left:312.242667pt;}
.x1b{left:314.294667pt;}
.x17{left:316.285333pt;}
.x3c{left:319.262667pt;}
.x23{left:324.602667pt;}
.x3{left:326.362667pt;}
.x2a{left:327.764000pt;}
.x2d{left:331.408000pt;}
.x15{left:334.565333pt;}
.x3a{left:335.498667pt;}
.x2c{left:336.669333pt;}
.x39{left:340.680000pt;}
.x5{left:343.525333pt;}
.x3e{left:344.530667pt;}
.x3f{left:345.784000pt;}
.x12{left:350.450667pt;}
.x19{left:354.250667pt;}
.x5b{left:355.533333pt;}
.x3b{left:357.680000pt;}
.x18{left:358.866667pt;}
.x5e{left:360.417333pt;}
.x48{left:362.336000pt;}
.x1d{left:364.374667pt;}
.x40{left:367.965333pt;}
.x29{left:371.840000pt;}
.x56{left:373.541333pt;}
.x13{left:374.706667pt;}
.x11{left:376.282667pt;}
.x6{left:378.782667pt;}
.x55{left:379.996000pt;}
.x1a{left:384.238667pt;}
.x2{left:385.137333pt;}
.x31{left:387.628000pt;}
.x30{left:392.850667pt;}
.x26{left:394.241333pt;}
.x25{left:397.692000pt;}
.x42{left:400.768000pt;}
.x1f{left:402.528000pt;}
.xb{left:404.384000pt;}
.x32{left:408.638667pt;}
.x59{left:410.376000pt;}
.x61{left:417.461333pt;}
.x36{left:418.546667pt;}
.x35{left:423.768000pt;}
.x5c{left:428.709333pt;}
.x60{left:432.814667pt;}
.x49{left:435.805333pt;}
.x37{left:439.556000pt;}
.x5d{left:446.118667pt;}
.x4a{left:450.657333pt;}
.x27{left:463.882667pt;}
.x62{left:472.802667pt;}
.x4c{left:694.285333pt;}
}




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