
    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_5c2d94cc740eb30205238f12.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_bf959156e786e69381ea9386.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_a6b654ff3ce065f1939481f8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_5b3ac1c7f3a20439e287c478.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.895996;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_d44f904aa0702cd83e557ca9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_1dbeacbc026a97e78d2c18ab.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.986816;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_e8c4a8f398b862eddd6b01af.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_88f30b25ec26d82080781234.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_80c3a6662621221a08b3d580.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.090000;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_cf89d235b2cd892194b00fd9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.973000;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_047b6c8cc4e022aa1a2dbab6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.969000;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_eb460858dd080ac963e7fa2f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.037000;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_08bc1b85c89f3ae8d953c582.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.034000;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_1f69d7c13e2285027c14dcea.woff2')format("woff");}.fff{font-family:fff;line-height:0.861816;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_4ab47b70f4a52304e9dbd8d5.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.861816;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_88636289a9534a2215d5b6cb.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.977000;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_3e9b52a360a5b6c22700e733.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.973000;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_e5a5e55edda9e5c09ee4e43e.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.861816;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_aefb32b9d282e5dff9753834.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.858398;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_4875c092ae0db02a8f9dac34.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249901,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v3{vertical-align:-20.880000px;}
.v5{vertical-align:-3.300600px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:17.778000px;}
.v2{vertical-align:20.880600px;}
.v1{vertical-align:37.800000px;}
.ls4b{letter-spacing:-1.760398px;}
.lsd8{letter-spacing:-1.154226px;}
.ls5d{letter-spacing:-0.330660px;}
.lsa5{letter-spacing:-0.225189px;}
.ls73{letter-spacing:-0.210420px;}
.lsc1{letter-spacing:-0.184246px;}
.ls5a{letter-spacing:-0.180360px;}
.lsb3{letter-spacing:-0.174045px;}
.ls68{letter-spacing:-0.162324px;}
.ls69{letter-spacing:-0.156312px;}
.lsc4{letter-spacing:-0.153538px;}
.ls4c{letter-spacing:-0.142186px;}
.ls75{letter-spacing:-0.138276px;}
.lsa1{letter-spacing:-0.138184px;}
.ls19{letter-spacing:-0.125820px;}
.ls8d{letter-spacing:-0.122733px;}
.lsd3{letter-spacing:-0.120379px;}
.ls64{letter-spacing:-0.120240px;}
.lsba{letter-spacing:-0.112617px;}
.ls1e{letter-spacing:-0.109044px;}
.ls4e{letter-spacing:-0.108332px;}
.lsa0{letter-spacing:-0.107477px;}
.lsbf{letter-spacing:-0.102359px;}
.ls8e{letter-spacing:-0.102277px;}
.ls6d{letter-spacing:-0.096192px;}
.ls65{letter-spacing:-0.084168px;}
.ls8c{letter-spacing:-0.081822px;}
.lsd7{letter-spacing:-0.077893px;}
.ls6c{letter-spacing:-0.072144px;}
.lsb9{letter-spacing:-0.071665px;}
.lsa2{letter-spacing:-0.071651px;}
.lsd6{letter-spacing:-0.070811px;}
.ls17{letter-spacing:-0.067104px;}
.lsbb{letter-spacing:-0.066546px;}
.lsc2{letter-spacing:-0.066533px;}
.ls61{letter-spacing:-0.066132px;}
.lsd5{letter-spacing:-0.063730px;}
.ls88{letter-spacing:-0.061366px;}
.ls5b{letter-spacing:-0.060120px;}
.ls1b{letter-spacing:-0.058716px;}
.lsb8{letter-spacing:-0.056309px;}
.lsc3{letter-spacing:-0.056297px;}
.ls8b{letter-spacing:-0.056252px;}
.ls63{letter-spacing:-0.054108px;}
.lsb0{letter-spacing:-0.051190px;}
.ls9a{letter-spacing:-0.051179px;}
.ls84{letter-spacing:-0.051139px;}
.ls6a{letter-spacing:-0.048096px;}
.ls9e{letter-spacing:-0.046061px;}
.ls89{letter-spacing:-0.046025px;}
.ls76{letter-spacing:-0.042084px;}
.ls20{letter-spacing:-0.041940px;}
.lsb5{letter-spacing:-0.040952px;}
.ls9d{letter-spacing:-0.040944px;}
.ls87{letter-spacing:-0.040911px;}
.ls72{letter-spacing:-0.036072px;}
.lsb6{letter-spacing:-0.035833px;}
.lsa3{letter-spacing:-0.035826px;}
.ls8f{letter-spacing:-0.035797px;}
.lsb7{letter-spacing:-0.030714px;}
.lsa4{letter-spacing:-0.030708px;}
.ls90{letter-spacing:-0.030683px;}
.ls6b{letter-spacing:-0.030060px;}
.lsb4{letter-spacing:-0.025595px;}
.ls9f{letter-spacing:-0.025590px;}
.ls8a{letter-spacing:-0.025569px;}
.ls13{letter-spacing:-0.025164px;}
.ls67{letter-spacing:-0.024048px;}
.lsb1{letter-spacing:-0.020476px;}
.ls9b{letter-spacing:-0.020472px;}
.ls85{letter-spacing:-0.020455px;}
.ls4d{letter-spacing:-0.020312px;}
.ls62{letter-spacing:-0.018036px;}
.ls15{letter-spacing:-0.018000px;}
.ls1d{letter-spacing:-0.016776px;}
.lsae{letter-spacing:-0.015357px;}
.ls98{letter-spacing:-0.015354px;}
.ls82{letter-spacing:-0.015342px;}
.ls4f{letter-spacing:-0.013542px;}
.ls5c{letter-spacing:-0.012024px;}
.lsb2{letter-spacing:-0.010238px;}
.ls9c{letter-spacing:-0.010236px;}
.ls86{letter-spacing:-0.010228px;}
.ls1c{letter-spacing:-0.008388px;}
.lsd4{letter-spacing:-0.007081px;}
.ls47{letter-spacing:-0.006771px;}
.ls5e{letter-spacing:-0.006012px;}
.ls14{letter-spacing:-0.006000px;}
.lsaf{letter-spacing:-0.005119px;}
.ls99{letter-spacing:-0.005118px;}
.ls83{letter-spacing:-0.005114px;}
.ls0{letter-spacing:0.000000px;}
.ls7f{letter-spacing:0.005114px;}
.ls94{letter-spacing:0.005118px;}
.lsad{letter-spacing:0.005119px;}
.ls54{letter-spacing:0.006012px;}
.ls38{letter-spacing:0.006771px;}
.ls1{letter-spacing:0.009576px;}
.ls7e{letter-spacing:0.010228px;}
.ls92{letter-spacing:0.010236px;}
.lsa7{letter-spacing:0.010238px;}
.ls55{letter-spacing:0.012024px;}
.ls36{letter-spacing:0.013542px;}
.ls7d{letter-spacing:0.015342px;}
.ls91{letter-spacing:0.015354px;}
.lsa6{letter-spacing:0.015357px;}
.ls10{letter-spacing:0.016776px;}
.ls97{letter-spacing:0.020472px;}
.lsab{letter-spacing:0.020476px;}
.ls59{letter-spacing:0.024048px;}
.ls93{letter-spacing:0.025590px;}
.ls48{letter-spacing:0.027083px;}
.ls6e{letter-spacing:0.030060px;}
.lsa8{letter-spacing:0.030714px;}
.ls1a{letter-spacing:0.033552px;}
.ls3d{letter-spacing:0.033854px;}
.lsa9{letter-spacing:0.035833px;}
.ls6{letter-spacing:0.036000px;}
.ls58{letter-spacing:0.036072px;}
.ls3a{letter-spacing:0.040625px;}
.ls96{letter-spacing:0.040944px;}
.lse{letter-spacing:0.041940px;}
.ls24{letter-spacing:0.042000px;}
.lsd1{letter-spacing:0.042487px;}
.ls5{letter-spacing:0.043200px;}
.lsaa{letter-spacing:0.046071px;}
.ls3f{letter-spacing:0.047395px;}
.ls2{letter-spacing:0.047880px;}
.ls6f{letter-spacing:0.048096px;}
.lsd{letter-spacing:0.050328px;}
.ls81{letter-spacing:0.051139px;}
.ls95{letter-spacing:0.051179px;}
.lsac{letter-spacing:0.051190px;}
.ls3c{letter-spacing:0.054166px;}
.ls80{letter-spacing:0.056252px;}
.ls1f{letter-spacing:0.058716px;}
.ls22{letter-spacing:0.060000px;}
.ls53{letter-spacing:0.060120px;}
.ls40{letter-spacing:0.060937px;}
.lsd2{letter-spacing:0.063730px;}
.ls56{letter-spacing:0.066132px;}
.ls3b{letter-spacing:0.067708px;}
.ls57{letter-spacing:0.072144px;}
.ls3e{letter-spacing:0.074478px;}
.lsf{letter-spacing:0.075492px;}
.ls4a{letter-spacing:0.081249px;}
.ls8{letter-spacing:0.083880px;}
.ls21{letter-spacing:0.084000px;}
.lsbd{letter-spacing:0.086839px;}
.lsbc{letter-spacing:0.092839px;}
.lsc{letter-spacing:0.100656px;}
.ls7{letter-spacing:0.102000px;}
.lsc0{letter-spacing:0.102359px;}
.ls52{letter-spacing:0.108000px;}
.ls49{letter-spacing:0.108332px;}
.ls18{letter-spacing:0.109044px;}
.ls39{letter-spacing:0.135415px;}
.lsb{letter-spacing:0.142596px;}
.ls37{letter-spacing:0.148957px;}
.ls74{letter-spacing:0.150300px;}
.ls3{letter-spacing:0.167760px;}
.ls23{letter-spacing:0.168000px;}
.lsc9{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.192924px;}
.ls16{letter-spacing:0.228000px;}
.ls4{letter-spacing:0.268416px;}
.ls78{letter-spacing:0.480000px;}
.ls41{letter-spacing:0.486000px;}
.lsa{letter-spacing:0.486504px;}
.ls9{letter-spacing:0.503280px;}
.ls12{letter-spacing:0.536832px;}
.ls34{letter-spacing:0.540000px;}
.lscd{letter-spacing:0.552000px;}
.lsce{letter-spacing:0.558000px;}
.ls2c{letter-spacing:0.570000px;}
.lsc6{letter-spacing:0.576000px;}
.ls44{letter-spacing:0.582000px;}
.ls32{letter-spacing:0.588000px;}
.ls2d{letter-spacing:0.594000px;}
.ls2b{letter-spacing:0.600000px;}
.lsca{letter-spacing:0.606000px;}
.ls45{letter-spacing:0.636000px;}
.ls28{letter-spacing:0.660000px;}
.ls2e{letter-spacing:0.666000px;}
.ls7b{letter-spacing:0.691200px;}
.ls26{letter-spacing:0.698400px;}
.ls51{letter-spacing:0.705600px;}
.ls25{letter-spacing:0.712800px;}
.ls27{letter-spacing:0.720000px;}
.lsda{letter-spacing:0.733200px;}
.ls50{letter-spacing:0.764400px;}
.ls7c{letter-spacing:0.772200px;}
.ls2a{letter-spacing:0.780000px;}
.lsc5{letter-spacing:1.020000px;}
.ls77{letter-spacing:1.202400px;}
.ls60{letter-spacing:1.496988px;}
.ls35{letter-spacing:1.500000px;}
.ls5f{letter-spacing:1.557108px;}
.lscc{letter-spacing:1.560000px;}
.ls66{letter-spacing:1.563120px;}
.ls70{letter-spacing:1.584360px;}
.ls29{letter-spacing:1.680006px;}
.lscb{letter-spacing:1.980000px;}
.ls42{letter-spacing:2.760000px;}
.lsc8{letter-spacing:2.940000px;}
.lscf{letter-spacing:3.360000px;}
.ls33{letter-spacing:4.200000px;}
.ls46{letter-spacing:4.560000px;}
.ls31{letter-spacing:5.940000px;}
.lsbe{letter-spacing:6.000000px;}
.lsc7{letter-spacing:7.260000px;}
.lsd9{letter-spacing:7.500000px;}
.lsd0{letter-spacing:7.980000px;}
.ls2f{letter-spacing:9.000000px;}
.ls7a{letter-spacing:9.300000px;}
.ls71{letter-spacing:9.660000px;}
.ls79{letter-spacing:10.020000px;}
.ls43{letter-spacing:10.800000px;}
.ls30{letter-spacing:14.340000px;}
.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;}
}
.ws9{word-spacing:-83.880000px;}
.ws12{word-spacing:-83.770956px;}
.ws17{word-spacing:-72.712800px;}
.ws20c{word-spacing:-70.875130px;}
.ws20b{word-spacing:-70.853887px;}
.ws209{word-spacing:-70.811400px;}
.ws207{word-spacing:-70.804319px;}
.ws208{word-spacing:-70.747670px;}
.ws20a{word-spacing:-70.740589px;}
.ws206{word-spacing:-70.691021px;}
.ws20e{word-spacing:-69.657174px;}
.ws12f{word-spacing:-51.204957px;}
.ws131{word-spacing:-51.199838px;}
.ws10f{word-spacing:-51.194754px;}
.ws111{word-spacing:-51.189636px;}
.ws130{word-spacing:-51.184481px;}
.ws134{word-spacing:-51.179362px;}
.ws110{word-spacing:-51.174282px;}
.ws12e{word-spacing:-51.174243px;}
.ws114{word-spacing:-51.169164px;}
.ws133{word-spacing:-51.169124px;}
.ws10e{word-spacing:-51.164046px;}
.ws113{word-spacing:-51.158928px;}
.wsec{word-spacing:-51.153942px;}
.wsee{word-spacing:-51.148828px;}
.ws132{word-spacing:-51.138410px;}
.wsed{word-spacing:-51.133486px;}
.wsf1{word-spacing:-51.128372px;}
.ws112{word-spacing:-51.128221px;}
.wseb{word-spacing:-51.123258px;}
.wsf0{word-spacing:-51.118145px;}
.wsef{word-spacing:-51.087461px;}
.ws1f6{word-spacing:-32.443200px;}
.ws214{word-spacing:-22.152000px;}
.ws215{word-spacing:-22.105200px;}
.ws46{word-spacing:-15.450874px;}
.ws4a{word-spacing:-15.437333px;}
.ws49{word-spacing:-15.410250px;}
.ws4d{word-spacing:-15.369625px;}
.ws52{word-spacing:-15.362854px;}
.ws4e{word-spacing:-15.356084px;}
.ws4c{word-spacing:-15.342542px;}
.ws4f{word-spacing:-15.335771px;}
.ws45{word-spacing:-15.315459px;}
.ws48{word-spacing:-15.308688px;}
.ws47{word-spacing:-15.295147px;}
.ws51{word-spacing:-15.288376px;}
.ws50{word-spacing:-15.159732px;}
.ws44{word-spacing:-14.796000px;}
.ws18{word-spacing:-13.992000px;}
.ws4b{word-spacing:-13.541520px;}
.ws1f{word-spacing:-12.720000px;}
.ws1d1{word-spacing:-12.678000px;}
.ws1ba{word-spacing:-12.283200px;}
.ws84{word-spacing:-12.144240px;}
.ws1e{word-spacing:-12.120000px;}
.wsa3{word-spacing:-12.102000px;}
.ws1d{word-spacing:-12.090000px;}
.ws82{word-spacing:-8.466804px;}
.wsa2{word-spacing:-8.465004px;}
.ws85{word-spacing:-7.272000px;}
.wsbc{word-spacing:-4.590000px;}
.ws1f7{word-spacing:-4.374000px;}
.wsd2{word-spacing:-4.200000px;}
.ws3f{word-spacing:-3.840000px;}
.ws6c{word-spacing:-3.480000px;}
.ws6a{word-spacing:-3.468000px;}
.ws184{word-spacing:-3.420000px;}
.ws6b{word-spacing:-3.312000px;}
.wsbb{word-spacing:-3.234000px;}
.wsbf{word-spacing:-3.174000px;}
.ws1fb{word-spacing:-3.144000px;}
.ws3e{word-spacing:-3.114000px;}
.ws204{word-spacing:-3.000000px;}
.ws18e{word-spacing:-2.814000px;}
.ws42{word-spacing:-2.634000px;}
.ws73{word-spacing:-2.460000px;}
.ws203{word-spacing:-2.424000px;}
.ws29{word-spacing:-2.340000px;}
.ws28{word-spacing:-2.334000px;}
.ws1a8{word-spacing:-2.286000px;}
.ws162{word-spacing:-2.280000px;}
.ws1a1{word-spacing:-2.160000px;}
.ws1f3{word-spacing:-2.040000px;}
.ws171{word-spacing:-1.980000px;}
.ws21f{word-spacing:-1.920000px;}
.ws17f{word-spacing:-1.860000px;}
.wsd0{word-spacing:-1.800000px;}
.ws1b7{word-spacing:-1.656000px;}
.ws1b8{word-spacing:-1.650000px;}
.ws61{word-spacing:-1.620000px;}
.ws1b9{word-spacing:-1.560000px;}
.ws19d{word-spacing:-1.500000px;}
.ws176{word-spacing:-1.494000px;}
.ws1ac{word-spacing:-1.440000px;}
.ws6d{word-spacing:-1.434000px;}
.ws16a{word-spacing:-1.380000px;}
.ws1d8{word-spacing:-1.320000px;}
.ws1d4{word-spacing:-1.260000px;}
.ws53{word-spacing:-1.254000px;}
.wsb0{word-spacing:-1.212000px;}
.ws41{word-spacing:-1.200000px;}
.wse5{word-spacing:-1.140000px;}
.wsb1{word-spacing:-1.134000px;}
.ws1b1{word-spacing:-1.080000px;}
.ws1b2{word-spacing:-1.050000px;}
.ws69{word-spacing:-1.020000px;}
.ws1e4{word-spacing:-1.014000px;}
.wse7{word-spacing:-0.900000px;}
.ws54{word-spacing:-0.894000px;}
.wsb3{word-spacing:-0.840000px;}
.ws1c9{word-spacing:-0.834000px;}
.ws1b4{word-spacing:-0.780000px;}
.ws177{word-spacing:-0.720000px;}
.ws5d{word-spacing:-0.714000px;}
.ws200{word-spacing:-0.678000px;}
.wse8{word-spacing:-0.600000px;}
.ws161{word-spacing:-0.594000px;}
.ws18c{word-spacing:-0.516000px;}
.ws1a5{word-spacing:-0.444000px;}
.ws1a7{word-spacing:-0.438000px;}
.ws1a6{word-spacing:-0.414000px;}
.ws56{word-spacing:-0.392704px;}
.ws2{word-spacing:-0.352296px;}
.ws1df{word-spacing:-0.300000px;}
.ws15f{word-spacing:-0.294000px;}
.wsa1{word-spacing:-0.288576px;}
.wsf9{word-spacing:-0.281262px;}
.ws13{word-spacing:-0.276804px;}
.wsa4{word-spacing:-0.276552px;}
.ws11e{word-spacing:-0.276369px;}
.ws1ab{word-spacing:-0.276000px;}
.ws139{word-spacing:-0.271305px;}
.ws92{word-spacing:-0.270540px;}
.ws120{word-spacing:-0.266133px;}
.ws8a{word-spacing:-0.264528px;}
.ws8f{word-spacing:-0.258516px;}
.ws152{word-spacing:-0.255948px;}
.ws98{word-spacing:-0.252504px;}
.ws117{word-spacing:-0.250779px;}
.ws9f{word-spacing:-0.240480px;}
.ws126{word-spacing:-0.235425px;}
.wsd8{word-spacing:-0.234000px;}
.ws14f{word-spacing:-0.230353px;}
.ws108{word-spacing:-0.230124px;}
.ws9d{word-spacing:-0.228456px;}
.wsc{word-spacing:-0.226476px;}
.ws127{word-spacing:-0.225189px;}
.wsf6{word-spacing:-0.225010px;}
.ws135{word-spacing:-0.220115px;}
.ws153{word-spacing:-0.220071px;}
.wsf2{word-spacing:-0.219896px;}
.wsa6{word-spacing:-0.216432px;}
.ws146{word-spacing:-0.214996px;}
.ws118{word-spacing:-0.214953px;}
.ws107{word-spacing:-0.214782px;}
.ws13d{word-spacing:-0.209877px;}
.ws151{word-spacing:-0.204758px;}
.ws123{word-spacing:-0.204718px;}
.ws8c{word-spacing:-0.204408px;}
.ws142{word-spacing:-0.199639px;}
.ws11b{word-spacing:-0.199600px;}
.ws13f{word-spacing:-0.194520px;}
.ws8{word-spacing:-0.192924px;}
.ws10b{word-spacing:-0.189213px;}
.ws6{word-spacing:-0.185880px;}
.wse{word-spacing:-0.184536px;}
.ws14c{word-spacing:-0.184283px;}
.ws12c{word-spacing:-0.184246px;}
.wsf3{word-spacing:-0.184099px;}
.ws9c{word-spacing:-0.180360px;}
.ws70{word-spacing:-0.180000px;}
.ws125{word-spacing:-0.179128px;}
.ws154{word-spacing:-0.174010px;}
.ws20f{word-spacing:-0.174000px;}
.ws159{word-spacing:-0.168892px;}
.ws10c{word-spacing:-0.168757px;}
.ws1f1{word-spacing:-0.168000px;}
.ws7{word-spacing:-0.167760px;}
.ws145{word-spacing:-0.153569px;}
.ws3{word-spacing:-0.151200px;}
.wsf{word-spacing:-0.134208px;}
.ws10{word-spacing:-0.125820px;}
.ws5{word-spacing:-0.119880px;}
.wsab{word-spacing:-0.102204px;}
.ws11{word-spacing:-0.100656px;}
.ws4{word-spacing:-0.077880px;}
.wsb{word-spacing:-0.075492px;}
.ws16{word-spacing:-0.071820px;}
.wsd{word-spacing:-0.067104px;}
.ws1db{word-spacing:-0.060000px;}
.ws1{word-spacing:-0.058716px;}
.wsa9{word-spacing:-0.042084px;}
.ws14{word-spacing:-0.041940px;}
.ws15{word-spacing:-0.033516px;}
.ws7c{word-spacing:-0.030000px;}
.wsa{word-spacing:-0.025164px;}
.ws192{word-spacing:-0.006000px;}
.ws0{word-spacing:0.000000px;}
.ws27{word-spacing:0.006000px;}
.ws89{word-spacing:0.006012px;}
.ws1c{word-spacing:0.006600px;}
.ws19{word-spacing:0.007200px;}
.ws1a9{word-spacing:0.007800px;}
.wsfc{word-spacing:0.010228px;}
.ws163{word-spacing:0.012000px;}
.ws55{word-spacing:0.013542px;}
.ws1f2{word-spacing:0.014400px;}
.ws6e{word-spacing:0.015600px;}
.ws1a0{word-spacing:0.018000px;}
.ws94{word-spacing:0.018036px;}
.ws144{word-spacing:0.020476px;}
.ws1a{word-spacing:0.021600px;}
.ws16e{word-spacing:0.024000px;}
.ws138{word-spacing:0.025595px;}
.wsde{word-spacing:0.028800px;}
.wsfd{word-spacing:0.030683px;}
.ws15a{word-spacing:0.030708px;}
.ws148{word-spacing:0.030714px;}
.ws97{word-spacing:0.036072px;}
.ws9a{word-spacing:0.048096px;}
.ws122{word-spacing:0.051179px;}
.ws136{word-spacing:0.051190px;}
.wsaa{word-spacing:0.054108px;}
.wsfa{word-spacing:0.061366px;}
.ws129{word-spacing:0.061415px;}
.ws13a{word-spacing:0.061428px;}
.wsa5{word-spacing:0.066132px;}
.ws158{word-spacing:0.066533px;}
.ws109{word-spacing:0.071594px;}
.ws11d{word-spacing:0.071651px;}
.ws14d{word-spacing:0.071665px;}
.ws103{word-spacing:0.076708px;}
.ws115{word-spacing:0.076769px;}
.ws147{word-spacing:0.076784px;}
.wsf8{word-spacing:0.081822px;}
.ws121{word-spacing:0.081887px;}
.ws149{word-spacing:0.081903px;}
.ws8e{word-spacing:0.084168px;}
.ws105{word-spacing:0.086936px;}
.ws11a{word-spacing:0.087005px;}
.ws14e{word-spacing:0.087022px;}
.ws8d{word-spacing:0.090180px;}
.wsf7{word-spacing:0.092049px;}
.ws12a{word-spacing:0.092123px;}
.ws13c{word-spacing:0.092141px;}
.ws87{word-spacing:0.096192px;}
.wsf5{word-spacing:0.097163px;}
.ws11f{word-spacing:0.097241px;}
.ws88{word-spacing:0.102204px;}
.ws104{word-spacing:0.102277px;}
.ws141{word-spacing:0.102379px;}
.wsff{word-spacing:0.107391px;}
.ws11c{word-spacing:0.107477px;}
.ws13b{word-spacing:0.107498px;}
.ws95{word-spacing:0.108216px;}
.ws10d{word-spacing:0.112505px;}
.ws12d{word-spacing:0.112595px;}
.ws8b{word-spacing:0.114228px;}
.ws155{word-spacing:0.117713px;}
.ws13e{word-spacing:0.117736px;}
.ws7f{word-spacing:0.120000px;}
.ws93{word-spacing:0.120240px;}
.wsfe{word-spacing:0.122733px;}
.ws116{word-spacing:0.122831px;}
.ws140{word-spacing:0.122855px;}
.wse2{word-spacing:0.126000px;}
.wsa8{word-spacing:0.126252px;}
.wsfb{word-spacing:0.127847px;}
.ws119{word-spacing:0.127949px;}
.wsa7{word-spacing:0.132264px;}
.ws10a{word-spacing:0.132960px;}
.ws124{word-spacing:0.133066px;}
.ws14a{word-spacing:0.133093px;}
.ws100{word-spacing:0.138074px;}
.wsac{word-spacing:0.138276px;}
.wsf4{word-spacing:0.143188px;}
.ws143{word-spacing:0.143331px;}
.ws9b{word-spacing:0.144288px;}
.ws157{word-spacing:0.148420px;}
.ws150{word-spacing:0.148450px;}
.ws19c{word-spacing:0.150000px;}
.ws90{word-spacing:0.150300px;}
.ws12b{word-spacing:0.153538px;}
.ws86{word-spacing:0.156312px;}
.ws101{word-spacing:0.158530px;}
.ws19b{word-spacing:0.168000px;}
.ws9e{word-spacing:0.168336px;}
.ws219{word-spacing:0.180000px;}
.ws91{word-spacing:0.180360px;}
.ws106{word-spacing:0.184099px;}
.wsa0{word-spacing:0.192384px;}
.ws102{word-spacing:0.204554px;}
.ws14b{word-spacing:0.209877px;}
.ws128{word-spacing:0.214953px;}
.ws1ff{word-spacing:0.240000px;}
.ws96{word-spacing:0.246492px;}
.ws99{word-spacing:0.252504px;}
.ws137{word-spacing:0.255948px;}
.ws156{word-spacing:0.266133px;}
.wsdd{word-spacing:0.282000px;}
.ws75{word-spacing:0.306000px;}
.ws2f{word-spacing:0.324000px;}
.ws66{word-spacing:0.360000px;}
.ws60{word-spacing:0.366000px;}
.ws168{word-spacing:0.420000px;}
.wsbe{word-spacing:0.516000px;}
.wsc0{word-spacing:0.540000px;}
.wsd7{word-spacing:0.546000px;}
.ws1e5{word-spacing:0.666000px;}
.ws15e{word-spacing:0.720000px;}
.ws64{word-spacing:0.756000px;}
.ws43{word-spacing:0.900000px;}
.wscd{word-spacing:0.906000px;}
.wsd5{word-spacing:0.918000px;}
.ws1b5{word-spacing:0.930000px;}
.ws1b6{word-spacing:0.960000px;}
.ws19f{word-spacing:0.966000px;}
.ws1c0{word-spacing:1.020000px;}
.ws81{word-spacing:1.140000px;}
.ws180{word-spacing:1.206000px;}
.ws1cc{word-spacing:1.230000px;}
.ws196{word-spacing:1.320000px;}
.wscb{word-spacing:1.386000px;}
.ws191{word-spacing:1.422000px;}
.wsc2{word-spacing:1.440000px;}
.ws6f{word-spacing:1.500000px;}
.ws17d{word-spacing:1.506000px;}
.wsba{word-spacing:1.560000px;}
.ws17a{word-spacing:1.566000px;}
.ws1be{word-spacing:1.572000px;}
.ws1aa{word-spacing:1.620000px;}
.wsd9{word-spacing:1.626000px;}
.ws1ad{word-spacing:1.680000px;}
.ws1ae{word-spacing:1.740000px;}
.wsd4{word-spacing:1.806000px;}
.ws3b{word-spacing:1.860000px;}
.wsb9{word-spacing:1.926000px;}
.ws187{word-spacing:1.980000px;}
.ws59{word-spacing:2.040000px;}
.wsdc{word-spacing:2.100000px;}
.ws183{word-spacing:2.106000px;}
.ws58{word-spacing:2.136000px;}
.ws7e{word-spacing:2.220000px;}
.ws1e9{word-spacing:2.286000px;}
.ws1e8{word-spacing:2.310000px;}
.ws1d2{word-spacing:2.340000px;}
.ws199{word-spacing:2.346000px;}
.ws198{word-spacing:2.352000px;}
.ws188{word-spacing:2.394000px;}
.ws172{word-spacing:2.400000px;}
.ws197{word-spacing:2.406000px;}
.ws1c1{word-spacing:2.448000px;}
.wsaf{word-spacing:2.454000px;}
.ws169{word-spacing:2.460000px;}
.ws1f0{word-spacing:2.580000px;}
.ws1bf{word-spacing:2.592000px;}
.ws1eb{word-spacing:2.622000px;}
.ws2b{word-spacing:2.640000px;}
.wsc6{word-spacing:2.700000px;}
.ws71{word-spacing:2.724000px;}
.ws205{word-spacing:2.742000px;}
.wsda{word-spacing:2.760000px;}
.wsbd{word-spacing:2.820000px;}
.ws5c{word-spacing:2.880000px;}
.ws40{word-spacing:2.946000px;}
.ws17b{word-spacing:3.066000px;}
.wsb6{word-spacing:3.120000px;}
.ws62{word-spacing:3.180000px;}
.ws1e0{word-spacing:3.186000px;}
.ws1cb{word-spacing:3.288000px;}
.ws1dd{word-spacing:3.306000px;}
.ws65{word-spacing:3.342000px;}
.ws1ed{word-spacing:3.372000px;}
.ws1c3{word-spacing:3.420000px;}
.ws74{word-spacing:3.480000px;}
.ws189{word-spacing:3.486000px;}
.ws38{word-spacing:3.600000px;}
.ws181{word-spacing:3.606000px;}
.ws37{word-spacing:3.612000px;}
.ws25{word-spacing:3.660000px;}
.ws1c7{word-spacing:3.666000px;}
.ws1d3{word-spacing:3.684000px;}
.ws190{word-spacing:3.720000px;}
.ws1c8{word-spacing:3.726000px;}
.ws21{word-spacing:3.780000px;}
.ws1c5{word-spacing:3.792000px;}
.ws174{word-spacing:3.834000px;}
.ws3a{word-spacing:3.906000px;}
.ws5e{word-spacing:3.960000px;}
.ws218{word-spacing:4.020000px;}
.ws1cf{word-spacing:4.026000px;}
.ws67{word-spacing:4.140000px;}
.ws3d{word-spacing:4.146000px;}
.ws1f4{word-spacing:4.200000px;}
.ws78{word-spacing:4.260000px;}
.ws1d0{word-spacing:4.380000px;}
.ws1bc{word-spacing:4.440000px;}
.ws222{word-spacing:4.554000px;}
.ws7b{word-spacing:4.566000px;}
.ws3c{word-spacing:4.626000px;}
.ws1e1{word-spacing:4.680000px;}
.ws1da{word-spacing:4.734000px;}
.ws2e{word-spacing:4.740000px;}
.ws1ef{word-spacing:4.752000px;}
.ws211{word-spacing:4.770000px;}
.ws217{word-spacing:4.800000px;}
.ws1ca{word-spacing:4.830000px;}
.ws39{word-spacing:4.860000px;}
.ws220{word-spacing:4.920000px;}
.ws165{word-spacing:4.980000px;}
.ws1fa{word-spacing:4.986000px;}
.ws35{word-spacing:5.100000px;}
.ws1a3{word-spacing:5.106000px;}
.ws1e6{word-spacing:5.160000px;}
.ws1a2{word-spacing:5.220000px;}
.ws210{word-spacing:5.244000px;}
.ws36{word-spacing:5.346000px;}
.ws195{word-spacing:5.370000px;}
.ws160{word-spacing:5.400000px;}
.ws221{word-spacing:5.454000px;}
.ws201{word-spacing:5.640000px;}
.ws185{word-spacing:5.664000px;}
.ws1a4{word-spacing:5.682000px;}
.wsae{word-spacing:5.706000px;}
.wsd1{word-spacing:5.802000px;}
.wscc{word-spacing:5.820000px;}
.ws16d{word-spacing:5.886000px;}
.ws175{word-spacing:6.060000px;}
.ws18a{word-spacing:6.108000px;}
.ws63{word-spacing:6.240000px;}
.ws72{word-spacing:6.300000px;}
.ws182{word-spacing:6.306000px;}
.ws15d{word-spacing:6.354000px;}
.ws1d6{word-spacing:6.360000px;}
.ws17e{word-spacing:6.480000px;}
.ws21e{word-spacing:6.522000px;}
.ws21c{word-spacing:6.570000px;}
.ws68{word-spacing:6.600000px;}
.ws17c{word-spacing:6.660000px;}
.ws1ea{word-spacing:6.666000px;}
.wse9{word-spacing:6.720000px;}
.ws77{word-spacing:6.780000px;}
.ws166{word-spacing:6.846000px;}
.ws7a{word-spacing:6.900000px;}
.ws21b{word-spacing:6.906000px;}
.ws15c{word-spacing:6.966000px;}
.ws2d{word-spacing:7.020000px;}
.ws1d5{word-spacing:7.080000px;}
.ws1b3{word-spacing:7.140000px;}
.wse0{word-spacing:7.146000px;}
.ws173{word-spacing:7.206000px;}
.ws7d{word-spacing:7.212000px;}
.wsb2{word-spacing:7.260000px;}
.wse6{word-spacing:7.266000px;}
.ws22{word-spacing:7.320000px;}
.wsce{word-spacing:7.362000px;}
.ws2a{word-spacing:7.380000px;}
.ws21a{word-spacing:7.446000px;}
.ws1bd{word-spacing:7.686000px;}
.ws16b{word-spacing:7.740000px;}
.wse3{word-spacing:7.746000px;}
.ws1af{word-spacing:7.800000px;}
.ws1e3{word-spacing:7.920000px;}
.ws16c{word-spacing:7.980000px;}
.ws1e2{word-spacing:8.010000px;}
.ws32{word-spacing:8.160000px;}
.wsb7{word-spacing:8.202000px;}
.ws5f{word-spacing:8.280000px;}
.ws31{word-spacing:8.400000px;}
.ws30{word-spacing:8.406000px;}
.ws1e7{word-spacing:8.430000px;}
.ws1ec{word-spacing:8.466000px;}
.ws179{word-spacing:8.490000px;}
.ws1ce{word-spacing:8.574000px;}
.ws202{word-spacing:8.580000px;}
.wse1{word-spacing:8.586000px;}
.ws1f8{word-spacing:8.640000px;}
.wsc4{word-spacing:8.700000px;}
.ws1cd{word-spacing:8.880000px;}
.ws1ee{word-spacing:8.940000px;}
.wsc8{word-spacing:9.006000px;}
.ws20{word-spacing:9.060000px;}
.wsb4{word-spacing:9.066000px;}
.wsb5{word-spacing:9.084000px;}
.wsd6{word-spacing:9.120000px;}
.wsc1{word-spacing:9.420000px;}
.wse4{word-spacing:9.582000px;}
.ws23{word-spacing:9.840000px;}
.ws167{word-spacing:9.960000px;}
.ws15b{word-spacing:10.140000px;}
.ws5a{word-spacing:10.200000px;}
.ws5b{word-spacing:10.218000px;}
.ws1b0{word-spacing:10.260000px;}
.wsea{word-spacing:10.620000px;}
.ws21d{word-spacing:10.806000px;}
.ws1c2{word-spacing:10.926000px;}
.ws212{word-spacing:11.160000px;}
.ws1fe{word-spacing:11.226000px;}
.ws24{word-spacing:11.340000px;}
.ws26{word-spacing:11.394000px;}
.ws216{word-spacing:11.640000px;}
.ws1de{word-spacing:11.820000px;}
.ws193{word-spacing:11.874000px;}
.wsc3{word-spacing:12.060000px;}
.ws1f9{word-spacing:12.186000px;}
.ws186{word-spacing:12.366000px;}
.ws1d7{word-spacing:12.540000px;}
.ws2c{word-spacing:12.906000px;}
.ws76{word-spacing:13.500000px;}
.ws1bb{word-spacing:13.728000px;}
.ws34{word-spacing:13.764000px;}
.ws33{word-spacing:13.770000px;}
.ws1c4{word-spacing:14.100000px;}
.ws19e{word-spacing:14.160000px;}
.ws1c6{word-spacing:14.244000px;}
.wsca{word-spacing:14.370000px;}
.wsc7{word-spacing:14.826000px;}
.ws18d{word-spacing:14.940000px;}
.ws1fc{word-spacing:15.540000px;}
.ws19a{word-spacing:15.588000px;}
.ws18b{word-spacing:17.040000px;}
.wsc9{word-spacing:17.466000px;}
.wsdf{word-spacing:17.676000px;}
.ws170{word-spacing:17.946000px;}
.ws1f5{word-spacing:18.840000px;}
.ws16f{word-spacing:18.900000px;}
.ws18f{word-spacing:19.806000px;}
.ws1fd{word-spacing:21.060000px;}
.ws213{word-spacing:24.219000px;}
.ws194{word-spacing:24.906000px;}
.ws1d9{word-spacing:41.688000px;}
.wsd3{word-spacing:41.760000px;}
.wsad{word-spacing:43.279200px;}
.ws178{word-spacing:43.704000px;}
.wscf{word-spacing:43.999200px;}
.wsb8{word-spacing:44.064000px;}
.wsc5{word-spacing:44.496000px;}
.ws1dc{word-spacing:46.094400px;}
.wsdb{word-spacing:46.152000px;}
.ws79{word-spacing:60.494400px;}
.ws164{word-spacing:60.912000px;}
.ws83{word-spacing:69.081360px;}
.ws80{word-spacing:70.500000px;}
.ws1b{word-spacing:88.638000px;}
.ws57{word-spacing:101.244000px;}
.ws20d{word-spacing:538.728205px;}
._12{margin-left:-70.500000px;}
._1a{margin-left:-45.000000px;}
._17{margin-left:-43.272000px;}
._26{margin-left:-38.214000px;}
._1b{margin-left:-27.114000px;}
._6{margin-left:-24.660000px;}
._11{margin-left:-19.596720px;}
._7{margin-left:-17.280000px;}
._1f{margin-left:-11.785680px;}
._e{margin-left:-10.045680px;}
._20{margin-left:-8.147040px;}
._2d{margin-left:-6.711360px;}
._8{margin-left:-5.040000px;}
._2{margin-left:-3.096000px;}
._0{margin-left:-1.174320px;}
._1{width:1.233036px;}
._f{width:2.348696px;}
._29{width:4.440000px;}
._18{width:5.694000px;}
._5{width:7.296000px;}
._19{width:8.460240px;}
._27{width:10.242000px;}
._28{width:13.494000px;}
._1c{width:39.888000px;}
._2f{width:41.040000px;}
._2a{width:43.200000px;}
._2b{width:44.424000px;}
._2e{width:49.440000px;}
._23{width:50.700000px;}
._21{width:53.460000px;}
._22{width:55.560000px;}
._1d{width:56.661486px;}
._25{width:58.632000px;}
._d{width:62.100000px;}
._b{width:63.480000px;}
._c{width:65.766000px;}
._24{width:66.780000px;}
._a{width:67.860000px;}
._14{width:69.360000px;}
._15{width:70.500000px;}
._13{width:71.520000px;}
._9{width:72.840000px;}
._3{width:88.638000px;}
._2c{width:98.826000px;}
._10{width:102.102000px;}
._4{width:117.468000px;}
._16{width:143.016720px;}
._1e{width:722.784442px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:30.646200px;}
.fse{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:47.880000px;}
.fsf{font-size:51.138600px;}
.fs10{font-size:51.179400px;}
.fs11{font-size:51.189600px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fsd{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:66.000000px;}
.fsc{font-size:67.707600px;}
.fs13{font-size:70.811400px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:78.000000px;}
.fs6{font-size:83.880000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.fs9{font-size:168.000600px;}
.y0{bottom:0.000000px;}
.y21{bottom:52.770450px;}
.y4{bottom:97.125005px;}
.y20{bottom:139.264499px;}
.y45{bottom:148.179450px;}
.y2c{bottom:148.388850px;}
.y6e{bottom:148.391400px;}
.y223{bottom:175.032450px;}
.y242{bottom:177.883950px;}
.y266{bottom:180.774150px;}
.y9a{bottom:182.275800px;}
.y13a{bottom:188.547000px;}
.y197{bottom:190.292850px;}
.y38{bottom:190.371300px;}
.y222{bottom:194.532450px;}
.ye7{bottom:194.990850px;}
.y17{bottom:196.933500px;}
.y241{bottom:197.383950px;}
.y15f{bottom:199.605150px;}
.y265{bottom:200.274150px;}
.y99{bottom:201.775800px;}
.y201{bottom:203.501850px;}
.y196{bottom:206.370000px;}
.y288{bottom:207.302400px;}
.y139{bottom:208.047000px;}
.y2bc{bottom:209.421150px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y2d9{bottom:210.787650px;}
.y115{bottom:212.044800px;}
.ye6{bottom:213.890850px;}
.y221{bottom:214.032450px;}
.y240{bottom:216.883950px;}
.y37{bottom:217.371300px;}
.y15e{bottom:219.105150px;}
.y200{bottom:219.593850px;}
.y264{bottom:219.774150px;}
.y98{bottom:221.275800px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y195{bottom:222.368850px;}
.y6c{bottom:226.672350px;}
.y287{bottom:226.802400px;}
.y138{bottom:227.547000px;}
.y2bb{bottom:228.921150px;}
.y2d8{bottom:230.287650px;}
.y114{bottom:231.544800px;}
.ye3{bottom:232.701000px;}
.y220{bottom:233.532450px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y1ff{bottom:235.611000px;}
.y23f{bottom:236.383950px;}
.y194{bottom:238.446000px;}
.y15d{bottom:238.605150px;}
.y263{bottom:239.274150px;}
.y97{bottom:240.775800px;}
.y36{bottom:244.371300px;}
.y6b{bottom:246.172350px;}
.y286{bottom:246.302400px;}
.y19e{bottom:246.790500px;}
.y137{bottom:247.047000px;}
.y2ba{bottom:248.421150px;}
.y2d7{bottom:249.787650px;}
.y113{bottom:251.044800px;}
.ye2{bottom:251.601000px;}
.y1fe{bottom:251.703000px;}
.y29a{bottom:251.869650px;}
.y21f{bottom:253.032450px;}
.y193{bottom:254.446500px;}
.y23e{bottom:255.883950px;}
.y15c{bottom:258.105150px;}
.y30c{bottom:258.126300px;}
.y262{bottom:258.774150px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y96{bottom:260.275800px;}
.ydf{bottom:260.961000px;}
.y19d{bottom:262.867500px;}
.y6a{bottom:265.672350px;}
.y285{bottom:265.802400px;}
.y136{bottom:266.547000px;}
.y1fd{bottom:267.718500px;}
.y2b9{bottom:267.921150px;}
.y2d6{bottom:269.287650px;}
.ye1{bottom:270.411000px;}
.y192{bottom:270.522000px;}
.y299{bottom:271.369650px;}
.y35{bottom:271.371300px;}
.y1b{bottom:272.518500px;}
.y21e{bottom:272.532450px;}
.y12{bottom:272.533503px;}
.y1cd{bottom:274.683000px;}
.y23d{bottom:275.383950px;}
.y15b{bottom:277.605150px;}
.y30b{bottom:277.626300px;}
.y261{bottom:278.274150px;}
.y19c{bottom:278.866500px;}
.y112{bottom:279.049800px;}
.y95{bottom:279.775800px;}
.y1fc{bottom:283.812000px;}
.yb8{bottom:284.024100px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y69{bottom:285.172350px;}
.y284{bottom:285.302400px;}
.y135{bottom:286.047000px;}
.y191{bottom:286.522500px;}
.y2b8{bottom:287.421150px;}
.y2d5{bottom:288.787650px;}
.ye0{bottom:289.311150px;}
.y1cc{bottom:290.695500px;}
.y298{bottom:290.869650px;}
.y21d{bottom:292.032450px;}
.y19b{bottom:294.943500px;}
.y15a{bottom:297.105150px;}
.y34{bottom:298.371300px;}
.y111{bottom:298.549800px;}
.y94{bottom:299.275800px;}
.y190{bottom:302.598000px;}
.y23c{bottom:303.388950px;}
.y68{bottom:304.672350px;}
.y283{bottom:304.802400px;}
.y30a{bottom:305.631300px;}
.y260{bottom:306.279150px;}
.y1cb{bottom:306.784650px;}
.y2b7{bottom:306.921150px;}
.ye5{bottom:308.121000px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y297{bottom:310.369650px;}
.y21c{bottom:311.532450px;}
.yb7{bottom:312.029100px;}
.y134{bottom:314.050650px;}
.y1fb{bottom:316.456650px;}
.y159{bottom:316.605150px;}
.y2d4{bottom:316.791150px;}
.y110{bottom:318.049800px;}
.y18f{bottom:318.598650px;}
.y93{bottom:318.775800px;}
.y1ca{bottom:322.797000px;}
.y23b{bottom:322.888950px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y67{bottom:324.172350px;}
.y282{bottom:324.302400px;}
.y309{bottom:325.131300px;}
.y33{bottom:325.371300px;}
.y25f{bottom:325.779150px;}
.y2b6{bottom:326.421150px;}
.ye4{bottom:327.021150px;}
.y296{bottom:329.869650px;}
.y21b{bottom:331.032450px;}
.yb6{bottom:331.529100px;}
.y1fa{bottom:332.548650px;}
.y18e{bottom:334.675650px;}
.y2b{bottom:335.280000px;}
.y158{bottom:336.105150px;}
.y10f{bottom:337.549800px;}
.y92{bottom:338.275800px;}
.y23a{bottom:342.388950px;}
.y66{bottom:343.672350px;}
.y281{bottom:343.802400px;}
.y25e{bottom:345.279150px;}
.y2b5{bottom:345.921150px;}
.y1c9{bottom:346.548150px;}
.ye{bottom:348.133500px;}
.y1f9{bottom:348.565650px;}
.y21a{bottom:350.532450px;}
.y18d{bottom:350.674650px;}
.y32{bottom:352.371300px;}
.y308{bottom:353.136300px;}
.y157{bottom:355.605150px;}
.y10e{bottom:357.049800px;}
.y91{bottom:357.775800px;}
.y295{bottom:357.873300px;}
.y19a{bottom:358.330650px;}
.y133{bottom:359.310600px;}
.yb5{bottom:359.534100px;}
.y239{bottom:361.888950px;}
.y2d3{bottom:362.051100px;}
.y1c8{bottom:362.560650px;}
.y65{bottom:363.172350px;}
.y280{bottom:363.302400px;}
.y2ee{bottom:363.810300px;}
.y1f8{bottom:364.657800px;}
.y25d{bottom:364.779150px;}
.yde{bottom:365.361300px;}
.y18c{bottom:366.751800px;}
.y219{bottom:370.032450px;}
.y1c5{bottom:370.222650px;}
.y2b4{bottom:373.924650px;}
.y199{bottom:374.407800px;}
.y10d{bottom:376.549800px;}
.y90{bottom:377.275800px;}
.y1c7{bottom:378.649800px;}
.y132{bottom:378.810600px;}
.y31{bottom:379.371300px;}
.y1f7{bottom:380.673300px;}
.y307{bottom:381.141300px;}
.y238{bottom:381.388950px;}
.y2d2{bottom:381.551100px;}
.y64{bottom:382.672350px;}
.y18b{bottom:382.752300px;}
.ydd{bottom:384.171300px;}
.y25c{bottom:384.279150px;}
.y1c4{bottom:386.311800px;}
.y2a{bottom:386.553450px;}
.yd{bottom:386.785499px;}
.yb4{bottom:387.539100px;}
.y218{bottom:389.532450px;}
.y198{bottom:390.406800px;}
.y27f{bottom:391.307400px;}
.y1c6{bottom:394.662300px;}
.y1f6{bottom:396.766800px;}
.y8f{bottom:396.775800px;}
.y131{bottom:398.310600px;}
.y156{bottom:400.617300px;}
.y237{bottom:400.888950px;}
.y2d1{bottom:401.051100px;}
.y63{bottom:402.172350px;}
.y1c3{bottom:402.324300px;}
.ydc{bottom:403.071300px;}
.y294{bottom:403.133250px;}
.y25b{bottom:403.779150px;}
.y10c{bottom:404.553300px;}
.y30{bottom:406.371300px;}
.y18a{bottom:406.483800px;}
.yc{bottom:408.044999px;}
.y306{bottom:409.146300px;}
.y27e{bottom:410.807400px;}
.y1f5{bottom:412.782450px;}
.yb3{bottom:415.544100px;}
.y130{bottom:417.810600px;}
.y1c2{bottom:418.414800px;}
.y2b3{bottom:419.182350px;}
.y236{bottom:420.388950px;}
.y2d0{bottom:420.551100px;}
.y62{bottom:421.672350px;}
.ydb{bottom:421.881300px;}
.y189{bottom:422.482800px;}
.y293{bottom:422.633250px;}
.y25a{bottom:423.279150px;}
.y217{bottom:426.042450px;}
.y1f4{bottom:428.874450px;}
.y2eb{bottom:429.493950px;}
.y27d{bottom:430.307400px;}
.y29{bottom:432.372900px;}
.y2f{bottom:433.371300px;}
.y1c1{bottom:434.427450px;}
.yb2{bottom:435.044100px;}
.y12f{bottom:437.310600px;}
.y235{bottom:439.888950px;}
.y2cf{bottom:440.051100px;}
.yda{bottom:440.781300px;}
.y61{bottom:441.172350px;}
.y8e{bottom:441.787800px;}
.y292{bottom:442.133250px;}
.y1f3{bottom:444.891300px;}
.y2b2{bottom:447.187350px;}
.y27c{bottom:449.807400px;}
.y1c0{bottom:450.516300px;}
.y259{bottom:451.284150px;}
.y305{bottom:454.158450px;}
.yb1{bottom:454.544100px;}
.y188{bottom:455.095950px;}
.y12e{bottom:456.810600px;}
.y28{bottom:457.935330px;}
.y10b{bottom:458.316450px;}
.y234{bottom:459.388950px;}
.y2ce{bottom:459.551100px;}
.yd9{bottom:459.591450px;}
.y2e{bottom:460.371300px;}
.y60{bottom:460.672350px;}
.y1f2{bottom:460.983300px;}
.y155{bottom:461.633250px;}
.y2b1{bottom:466.687350px;}
.y216{bottom:467.830950px;}
.y27b{bottom:469.307400px;}
.y258{bottom:470.784150px;}
.y187{bottom:471.172950px;}
.yb0{bottom:474.044100px;}
.y12d{bottom:476.310600px;}
.yd2{bottom:478.491450px;}
.y233{bottom:478.888950px;}
.y2cd{bottom:479.051100px;}
.y5f{bottom:480.172350px;}
.y154{bottom:481.133250px;}
.y1bf{bottom:483.154950px;}
.y215{bottom:483.843450px;}
.y2ed{bottom:484.202640px;}
.y1f1{bottom:484.662450px;}
.yb{bottom:484.864502px;}
.y186{bottom:487.171950px;}
.y2d{bottom:487.371300px;}
.y27a{bottom:488.807400px;}
.y257{bottom:490.284150px;}
.yaf{bottom:493.544100px;}
.y2b0{bottom:494.692350px;}
.y12c{bottom:495.810600px;}
.yd8{bottom:497.301450px;}
.y232{bottom:498.388950px;}
.y2cc{bottom:498.551100px;}
.y1be{bottom:499.167450px;}
.y5e{bottom:499.672350px;}
.y214{bottom:499.934100px;}
.y153{bottom:500.633250px;}
.y1f0{bottom:500.754450px;}
.y10a{bottom:500.931450px;}
.ya{bottom:502.864502px;}
.y185{bottom:503.248950px;}
.y27{bottom:503.754780px;}
.y279{bottom:508.307400px;}
.y8d{bottom:511.306950px;}
.yae{bottom:513.044100px;}
.y304{bottom:515.174100px;}
.y1bd{bottom:515.256450px;}
.y12b{bottom:515.310600px;}
.y213{bottom:515.946450px;}
.yd7{bottom:516.201450px;}
.y1ef{bottom:516.771450px;}
.y231{bottom:517.888950px;}
.y2cb{bottom:518.051100px;}
.y256{bottom:518.289150px;}
.y5d{bottom:519.172350px;}
.y109{bottom:519.741450px;}
.y152{bottom:520.133250px;}
.y9{bottom:520.864502px;}
.y2af{bottom:522.697350px;}
.y184{bottom:526.903950px;}
.y278{bottom:527.807400px;}
.y212{bottom:532.035600px;}
.yad{bottom:532.544100px;}
.y1ee{bottom:532.863600px;}
.y303{bottom:534.674100px;}
.y12a{bottom:534.810600px;}
.yd6{bottom:535.011450px;}
.y2ca{bottom:537.551100px;}
.y255{bottom:537.789150px;}
.y108{bottom:538.641600px;}
.y2e6{bottom:538.839180px;}
.y8{bottom:538.864499px;}
.y1bc{bottom:538.931100px;}
.y151{bottom:539.633250px;}
.y2ae{bottom:542.197350px;}
.y183{bottom:542.981100px;}
.y2ea{bottom:543.499410px;}
.y230{bottom:545.894100px;}
.y5c{bottom:547.177350px;}
.y277{bottom:547.307400px;}
.y211{bottom:548.048100px;}
.y1ed{bottom:548.879100px;}
.yd5{bottom:553.911600px;}
.y129{bottom:554.310600px;}
.y87{bottom:554.972100px;}
.y1bb{bottom:555.020100px;}
.y7{bottom:556.864499px;}
.y107{bottom:557.451600px;}
.y182{bottom:558.980100px;}
.y150{bottom:559.133250px;}
.y2e5{bottom:560.082600px;}
.yac{bottom:560.547600px;}
.y2ad{bottom:561.697350px;}
.y210{bottom:564.137100px;}
.y2e9{bottom:564.744600px;}
.y1ec{bottom:564.972600px;}
.y2c9{bottom:565.554600px;}
.y254{bottom:565.794150px;}
.y5b{bottom:566.677350px;}
.y276{bottom:566.807400px;}
.y1ba{bottom:571.032600px;}
.y78{bottom:571.041000px;}
.yd4{bottom:572.721600px;}
.y181{bottom:575.057100px;}
.y106{bottom:576.351600px;}
.y14f{bottom:578.633250px;}
.y302{bottom:579.686100px;}
.y20f{bottom:580.151100px;}
.yff{bottom:580.851600px;}
.y1eb{bottom:580.988100px;}
.y2ac{bottom:581.197350px;}
.y128{bottom:582.315600px;}
.y43{bottom:584.869500px;}
.y275{bottom:586.307400px;}
.y1b9{bottom:587.123100px;}
.y22f{bottom:591.151500px;}
.y77{bottom:591.353280px;}
.y86{bottom:591.412410px;}
.yd3{bottom:591.621600px;}
.y253{bottom:593.799150px;}
.y5a{bottom:594.682350px;}
.y105{bottom:595.161600px;}
.y20e{bottom:596.240100px;}
.y1e6{bottom:596.313600px;}
.y14e{bottom:598.133250px;}
.y180{bottom:598.712100px;}
.yfd{bottom:599.661600px;}
.y1b8{bottom:603.135750px;}
.y1ea{bottom:604.743750px;}
.yab{bottom:605.806050px;}
.y274{bottom:605.807400px;}
.y2ab{bottom:609.202350px;}
.y22e{bottom:610.651500px;}
.y2c8{bottom:610.809150px;}
.y76{bottom:611.665560px;}
.y42{bottom:611.863500px;}
.y20d{bottom:612.252750px;}
.y1e5{bottom:612.407250px;}
.y252{bottom:613.299150px;}
.y104{bottom:614.061750px;}
.y59{bottom:614.182350px;}
.y17f{bottom:614.789250px;}
.y2ec{bottom:616.496038px;}
.y14d{bottom:617.633250px;}
.yfe{bottom:618.561750px;}
.y1b7{bottom:619.224750px;}
.y1e9{bottom:620.759250px;}
.y273{bottom:625.307400px;}
.y127{bottom:627.575850px;}
.y20c{bottom:628.341750px;}
.y1e4{bottom:628.422750px;}
.y2aa{bottom:628.702350px;}
.yd1{bottom:629.961750px;}
.y22d{bottom:630.151500px;}
.y2c7{bottom:630.309150px;}
.y17e{bottom:630.789750px;}
.y75{bottom:631.977840px;}
.y85{bottom:632.036970px;}
.y103{bottom:632.871750px;}
.y58{bottom:633.682350px;}
.yaa{bottom:633.811050px;}
.y1b6{bottom:635.237250px;}
.y1e8{bottom:636.852750px;}
.y14c{bottom:637.133250px;}
.y41{bottom:638.857500px;}
.y301{bottom:640.702350px;}
.y251{bottom:641.304150px;}
.y2e8{bottom:643.875330px;}
.y20b{bottom:644.354250px;}
.y1e3{bottom:644.514750px;}
.y272{bottom:644.807400px;}
.y6{bottom:645.510000px;}
.y291{bottom:645.638250px;}
.y17d{bottom:646.865250px;}
.y126{bottom:647.075850px;}
.y2a9{bottom:648.202350px;}
.y22c{bottom:649.651500px;}
.y2c6{bottom:649.809150px;}
.y1b5{bottom:651.326250px;}
.y74{bottom:652.290120px;}
.y84{bottom:652.349250px;}
.y1e7{bottom:652.868250px;}
.ya9{bottom:653.311050px;}
.y2e4{bottom:654.557250px;}
.y14b{bottom:656.633250px;}
.yd0{bottom:657.771750px;}
.y300{bottom:660.202350px;}
.y20a{bottom:660.443250px;}
.y1e2{bottom:660.531900px;}
.y102{bottom:660.771750px;}
.y250{bottom:660.804150px;}
.y26{bottom:661.260450px;}
.y57{bottom:661.687350px;}
.y271{bottom:664.307400px;}
.y2e7{bottom:665.118750px;}
.y40{bottom:665.851500px;}
.y125{bottom:666.575850px;}
.y5{bottom:666.771000px;}
.y2a8{bottom:667.702350px;}
.y22b{bottom:669.151500px;}
.y17c{bottom:670.520250px;}
.y73{bottom:672.602400px;}
.ya8{bottom:672.811050px;}
.y1e1{bottom:676.623900px;}
.ycf{bottom:676.671750px;}
.y2c5{bottom:677.814150px;}
.y101{bottom:679.581750px;}
.y2ff{bottom:679.702350px;}
.y56{bottom:681.187350px;}
.y8b{bottom:683.498052px;}
.y270{bottom:683.807400px;}
.y1b4{bottom:683.964900px;}
.y14a{bottom:684.638400px;}
.y124{bottom:686.075850px;}
.y17b{bottom:686.597400px;}
.y2a7{bottom:687.202350px;}
.y22a{bottom:688.651500px;}
.y24f{bottom:688.809150px;}
.y29e{bottom:690.897900px;}
.y290{bottom:690.898200px;}
.ya7{bottom:692.311050px;}
.y3f{bottom:692.845500px;}
.y209{bottom:693.081900px;}
.yc7{bottom:695.481900px;}
.y2c4{bottom:697.314150px;}
.y100{bottom:698.481900px;}
.y2fe{bottom:699.202350px;}
.y55{bottom:700.687350px;}
.y8a{bottom:703.810332px;}
.y123{bottom:705.575850px;}
.y2a6{bottom:706.702350px;}
.y208{bottom:709.095900px;}
.y1e0{bottom:709.268400px;}
.y17a{bottom:710.252400px;}
.y29d{bottom:710.397900px;}
.y28f{bottom:710.398200px;}
.ya6{bottom:711.811050px;}
.yc6{bottom:714.381900px;}
.y1b1{bottom:716.603400px;}
.y229{bottom:716.656500px;}
.y24e{bottom:716.814150px;}
.y171{bottom:717.219900px;}
.y2fd{bottom:718.702350px;}
.y3e{bottom:719.839500px;}
.y83{bottom:723.912900px;}
.y89{bottom:724.122612px;}
.y1b3{bottom:725.031900px;}
.y122{bottom:725.075850px;}
.y207{bottom:725.184900px;}
.y1df{bottom:725.285400px;}
.y2c3{bottom:725.319150px;}
.y2a5{bottom:726.202350px;}
.y179{bottom:726.329400px;}
.y54{bottom:728.692350px;}
.y26f{bottom:728.819400px;}
.y149{bottom:729.897900px;}
.y28e{bottom:729.898200px;}
.y2e3{bottom:730.853940px;}
.ya5{bottom:731.311050px;}
.y1b0{bottom:732.692400px;}
.yc5{bottom:733.191900px;}
.y170{bottom:733.218900px;}
.y228{bottom:736.156500px;}
.y24d{bottom:736.314150px;}
.yfc{bottom:736.821900px;}
.y2fc{bottom:738.202350px;}
.y81{bottom:739.076520px;}
.y1b2{bottom:741.044400px;}
.y206{bottom:741.197550px;}
.y1de{bottom:741.377400px;}
.y2e0{bottom:741.477630px;}
.y178{bottom:742.329900px;}
.y121{bottom:744.575850px;}
.y2c2{bottom:744.819150px;}
.y2a4{bottom:745.702350px;}
.y3d{bottom:746.833500px;}
.y53{bottom:748.192350px;}
.y1af{bottom:748.704900px;}
.y16f{bottom:749.295900px;}
.y148{bottom:749.397900px;}
.y28d{bottom:749.398200px;}
.ya4{bottom:750.811050px;}
.yc4{bottom:752.091900px;}
.y2e2{bottom:752.099130px;}
.y3{bottom:752.599495px;}
.y227{bottom:755.656500px;}
.y2fb{bottom:757.702350px;}
.y177{bottom:758.405400px;}
.y80{bottom:759.388800px;}
.yf9{bottom:760.132050px;}
.ybf{bottom:761.541900px;}
.y2df{bottom:762.721050px;}
.y120{bottom:764.075850px;}
.y24c{bottom:764.319150px;}
.yfb{bottom:764.632050px;}
.y1ae{bottom:764.795550px;}
.y1dd{bottom:765.056550px;}
.y2a3{bottom:765.202350px;}
.y16e{bottom:765.295050px;}
.y52{bottom:767.692350px;}
.y147{bottom:768.897900px;}
.y28c{bottom:768.898200px;}
.ya3{bottom:770.311050px;}
.yc3{bottom:770.902050px;}
.y2c1{bottom:772.824150px;}
.y2e1{bottom:773.342550px;}
.y88{bottom:773.616867px;}
.y3c{bottom:773.827500px;}
.y205{bottom:773.912550px;}
.y226{bottom:775.156500px;}
.y2fa{bottom:777.202350px;}
.y29c{bottom:777.401550px;}
.y7f{bottom:779.701080px;}
.yce{bottom:779.902050px;}
.y1dc{bottom:781.148550px;}
.y16d{bottom:781.372050px;}
.y176{bottom:782.062050px;}
.yfa{bottom:783.532050px;}
.y11f{bottom:783.575850px;}
.y24b{bottom:783.819150px;}
.y2a2{bottom:784.702350px;}
.y25{bottom:784.830000px;}
.y28b{bottom:788.398200px;}
.yc2{bottom:789.802050px;}
.ya2{bottom:789.811050px;}
.y26e{bottom:789.834150px;}
.y2c0{bottom:792.324150px;}
.y225{bottom:794.656500px;}
.y51{bottom:795.697350px;}
.y2f9{bottom:796.702350px;}
.y146{bottom:796.901550px;}
.y16c{bottom:797.372550px;}
.y1ad{bottom:797.434050px;}
.y175{bottom:798.137550px;}
.ycd{bottom:798.802050px;}
.y7e{bottom:800.013360px;}
.y11e{bottom:803.075850px;}
.y24a{bottom:803.319150px;}
.y2a1{bottom:804.202350px;}
.y1db{bottom:804.827550px;}
.y204{bottom:805.247550px;}
.y28a{bottom:807.898200px;}
.yc1{bottom:808.612050px;}
.ya1{bottom:809.311050px;}
.y26d{bottom:809.334150px;}
.y2bf{bottom:811.824150px;}
.y1ac{bottom:813.446550px;}
.y16b{bottom:813.448200px;}
.y3b{bottom:813.576000px;}
.y224{bottom:814.156500px;}
.y50{bottom:815.197350px;}
.y2f8{bottom:816.202350px;}
.y2de{bottom:817.584150px;}
.ycc{bottom:817.612050px;}
.y7d{bottom:820.325640px;}
.y1da{bottom:820.921200px;}
.y203{bottom:821.338050px;}
.y174{bottom:821.792550px;}
.y82{bottom:821.830050px;}
.yf8{bottom:821.872050px;}
.y11d{bottom:822.575850px;}
.y29b{bottom:822.661500px;}
.y2a0{bottom:823.702350px;}
.yc0{bottom:827.512050px;}
.ya0{bottom:828.811050px;}
.y26c{bottom:828.834150px;}
.y16a{bottom:829.448700px;}
.y1ab{bottom:829.535550px;}
.y24{bottom:830.550000px;}
.y249{bottom:831.324150px;}
.y4f{bottom:834.697350px;}
.y2f7{bottom:835.702350px;}
.y289{bottom:835.901700px;}
.ycb{bottom:836.512050px;}
.y1d9{bottom:836.936700px;}
.y173{bottom:837.869700px;}
.y2be{bottom:839.829150px;}
.y7c{bottom:840.637920px;}
.yf6{bottom:840.682200px;}
.y8c{bottom:841.438050px;}
.y11c{bottom:842.075850px;}
.y145{bottom:842.161500px;}
.y29f{bottom:843.202350px;}
.y202{bottom:845.012700px;}
.y169{bottom:845.525700px;}
.y1aa{bottom:845.548050px;}
.y26b{bottom:848.334150px;}
.y248{bottom:850.824150px;}
.y1d8{bottom:853.028700px;}
.y172{bottom:853.870200px;}
.y2f6{bottom:855.202350px;}
.yca{bottom:855.322200px;}
.y2dd{bottom:856.839150px;}
.y2bd{bottom:859.329150px;}
.yf7{bottom:859.582200px;}
.y7b{bottom:860.950200px;}
.y168{bottom:861.524700px;}
.y11b{bottom:861.575850px;}
.y1a9{bottom:861.637050px;}
.y144{bottom:861.661500px;}
.y4e{bottom:862.702350px;}
.y26a{bottom:867.834150px;}
.y1d7{bottom:869.045700px;}
.y9f{bottom:873.823200px;}
.yc9{bottom:874.222200px;}
.y2f5{bottom:874.702350px;}
.y2dc{bottom:876.339150px;}
.y167{bottom:877.601700px;}
.y1a8{bottom:877.649700px;}
.y247{bottom:878.829150px;}
.y2{bottom:879.369000px;}
.y11a{bottom:881.075850px;}
.y143{bottom:881.161500px;}
.y4d{bottom:882.202350px;}
.y269{bottom:887.334150px;}
.y23{bottom:890.850450px;}
.y1d6{bottom:892.801350px;}
.yc8{bottom:893.032350px;}
.y1a7{bottom:893.740200px;}
.y2f4{bottom:894.202350px;}
.y7a{bottom:894.310920px;}
.y2db{bottom:895.839150px;}
.yf5{bottom:897.922350px;}
.y246{bottom:898.329150px;}
.y119{bottom:900.575850px;}
.y142{bottom:900.661500px;}
.y4c{bottom:901.702350px;}
.yef{bottom:902.422350px;}
.y268{bottom:906.834150px;}
.y1d5{bottom:908.816850px;}
.y1a6{bottom:909.752700px;}
.y166{bottom:909.907350px;}
.y2f3{bottom:913.702350px;}
.y79{bottom:914.623200px;}
.y2da{bottom:915.339150px;}
.y245{bottom:917.829150px;}
.y118{bottom:920.075850px;}
.y141{bottom:920.161500px;}
.y4b{bottom:921.202350px;}
.yee{bottom:921.322200px;}
.y22{bottom:922.170450px;}
.y1d4{bottom:924.908850px;}
.y165{bottom:925.448850px;}
.yf4{bottom:925.822200px;}
.y1a5{bottom:925.841700px;}
.y267{bottom:926.334150px;}
.ybe{bottom:931.462350px;}
.y2f2{bottom:933.202350px;}
.y9e{bottom:934.839150px;}
.y117{bottom:939.575850px;}
.y140{bottom:939.661500px;}
.yed{bottom:940.132350px;}
.y4a{bottom:940.702350px;}
.ybc{bottom:940.822350px;}
.y164{bottom:940.988850px;}
.yf3{bottom:944.632350px;}
.y244{bottom:945.834150px;}
.ye9{bottom:949.582350px;}
.ybb{bottom:950.272350px;}
.y30e{bottom:950.814150px;}
.y2f1{bottom:952.702350px;}
.y9d{bottom:954.339150px;}
.y163{bottom:956.528850px;}
.y1d3{bottom:957.247350px;}
.y1a4{bottom:958.174500px;}
.yec{bottom:959.032350px;}
.y13f{bottom:959.161500px;}
.y49{bottom:960.202350px;}
.yf2{bottom:963.532350px;}
.y243{bottom:965.334150px;}
.y1{bottom:966.726000px;}
.y116{bottom:967.579350px;}
.ybd{bottom:969.172350px;}
.y2f0{bottom:972.202350px;}
.y1d2{bottom:972.803850px;}
.y72{bottom:973.584150px;}
.y1a3{bottom:973.726350px;}
.y9c{bottom:973.839150px;}
.yeb{bottom:977.842500px;}
.y13e{bottom:978.661500px;}
.y48{bottom:979.702350px;}
.y162{bottom:979.724850px;}
.yf1{bottom:982.342500px;}
.y1d1{bottom:988.360500px;}
.y1a2{bottom:989.280000px;}
.y39{bottom:990.544500px;}
.y9b{bottom:993.339150px;}
.y161{bottom:995.266500px;}
.yea{bottom:996.742500px;}
.y13d{bottom:998.161500px;}
.y47{bottom:999.202350px;}
.yf0{bottom:1001.242500px;}
.y1d0{bottom:1003.917000px;}
.y30d{bottom:1004.334150px;}
.y1a1{bottom:1004.833500px;}
.yba{bottom:1007.062500px;}
.y71{bottom:1012.839150px;}
.y2ef{bottom:1017.207150px;}
.y13c{bottom:1017.661500px;}
.y1cf{bottom:1027.135500px;}
.y1a0{bottom:1028.047500px;}
.y160{bottom:1030.570500px;}
.y70{bottom:1032.339150px;}
.ye8{bottom:1039.132500px;}
.y1ce{bottom:1042.692150px;}
.y19f{bottom:1043.601000px;}
.y46{bottom:1044.214650px;}
.y13b{bottom:1045.666500px;}
.yb9{bottom:1048.570500px;}
.y6f{bottom:1051.839150px;}
.y3a{bottom:1068.006000px;}
.y44{bottom:1106.884650px;}
.y6d{bottom:1107.735150px;}
.h7{height:32.130000px;}
.h8{height:32.730469px;}
.h1d{height:38.814197px;}
.h21{height:38.845165px;}
.h24{height:38.852906px;}
.h1c{height:39.121029px;}
.h20{height:39.152241px;}
.h23{height:39.160044px;}
.h1f{height:41.422266px;}
.h1e{height:41.575682px;}
.h22{height:41.608852px;}
.h25{height:41.617145px;}
.h26{height:42.693361px;}
.h6{height:45.900000px;}
.h16{height:45.991800px;}
.h15{height:46.284492px;}
.hc{height:47.304000px;}
.h28{height:48.164199px;}
.h3{height:48.195000px;}
.h27{height:48.406230px;}
.h13{height:48.780000px;}
.h18{height:48.877560px;}
.h11{height:49.962000px;}
.h1b{height:50.147400px;}
.h1a{height:50.148000px;}
.h19{height:50.148600px;}
.h29{height:50.826542px;}
.h14{height:52.560000px;}
.h10{height:53.658000px;}
.he{height:54.648000px;}
.h2{height:55.080000px;}
.h2a{height:59.202000px;}
.h9{height:60.206836px;}
.hd{height:63.072000px;}
.hb{height:67.824844px;}
.h12{height:68.328000px;}
.h5{height:78.030000px;}
.h17{height:86.677560px;}
.ha{height:87.328125px;}
.h4{height:119.055004px;}
.hf{height:127.176454px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w4{width:892.500000px;}
.w3{width:892.830000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x7{left:138.132750px;}
.x2b{left:142.021350px;}
.x26{left:143.668200px;}
.x23{left:146.153400px;}
.x31{left:152.491644px;}
.x2d{left:154.663800px;}
.x28{left:156.300300px;}
.x2e{left:160.179300px;}
.x8{left:163.647750px;}
.xe{left:166.648842px;}
.x5{left:167.670000px;}
.xc{left:174.656958px;}
.xb{left:177.703800px;}
.x3c{left:179.405462px;}
.x3d{left:180.874798px;}
.x1e{left:189.268567px;}
.x30{left:190.729800px;}
.xd{left:193.615086px;}
.xf{left:195.087726px;}
.x36{left:197.044950px;}
.x10{left:198.809952px;}
.x3b{left:202.119450px;}
.x4{left:203.484001px;}
.x37{left:204.655405px;}
.x24{left:214.552950px;}
.x35{left:217.225950px;}
.x1d{left:263.509950px;}
.x25{left:349.463100px;}
.x18{left:367.530750px;}
.x2c{left:368.958750px;}
.x27{left:370.422750px;}
.x1c{left:378.709494px;}
.x29{left:383.054250px;}
.x19{left:386.150250px;}
.x2a{left:388.566750px;}
.x2f{left:390.639750px;}
.x11{left:430.502400px;}
.x12{left:447.767838px;}
.x3{left:454.959000px;}
.x1b{left:475.412874px;}
.x1a{left:484.553400px;}
.x34{left:504.058567px;}
.x22{left:512.713050px;}
.x33{left:516.397453px;}
.x3a{left:517.989683px;}
.x39{left:540.952050px;}
.x38{left:562.312050px;}
.x32{left:573.524550px;}
.x1f{left:576.894577px;}
.x21{left:581.733977px;}
.x20{left:594.718602px;}
.x15{left:633.150870px;}
.x13{left:644.999700px;}
.x9{left:651.422850px;}
.x16{left:654.817302px;}
.x17{left:665.193492px;}
.x14{left:668.358822px;}
.x6{left:733.579350px;}
.xa{left:737.035800px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v5{vertical-align:-2.933867pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.802667pt;}
.v2{vertical-align:18.560533pt;}
.v1{vertical-align:33.600000pt;}
.ls4b{letter-spacing:-1.564798pt;}
.lsd8{letter-spacing:-1.025979pt;}
.ls5d{letter-spacing:-0.293920pt;}
.lsa5{letter-spacing:-0.200168pt;}
.ls73{letter-spacing:-0.187040pt;}
.lsc1{letter-spacing:-0.163774pt;}
.ls5a{letter-spacing:-0.160320pt;}
.lsb3{letter-spacing:-0.154706pt;}
.ls68{letter-spacing:-0.144288pt;}
.ls69{letter-spacing:-0.138944pt;}
.lsc4{letter-spacing:-0.136478pt;}
.ls4c{letter-spacing:-0.126388pt;}
.ls75{letter-spacing:-0.122912pt;}
.lsa1{letter-spacing:-0.122831pt;}
.ls19{letter-spacing:-0.111840pt;}
.ls8d{letter-spacing:-0.109096pt;}
.lsd3{letter-spacing:-0.107004pt;}
.ls64{letter-spacing:-0.106880pt;}
.lsba{letter-spacing:-0.100104pt;}
.ls1e{letter-spacing:-0.096928pt;}
.ls4e{letter-spacing:-0.096295pt;}
.lsa0{letter-spacing:-0.095535pt;}
.lsbf{letter-spacing:-0.090986pt;}
.ls8e{letter-spacing:-0.090913pt;}
.ls6d{letter-spacing:-0.085504pt;}
.ls65{letter-spacing:-0.074816pt;}
.ls8c{letter-spacing:-0.072730pt;}
.lsd7{letter-spacing:-0.069238pt;}
.ls6c{letter-spacing:-0.064128pt;}
.lsb9{letter-spacing:-0.063703pt;}
.lsa2{letter-spacing:-0.063690pt;}
.lsd6{letter-spacing:-0.062943pt;}
.ls17{letter-spacing:-0.059648pt;}
.lsbb{letter-spacing:-0.059152pt;}
.lsc2{letter-spacing:-0.059141pt;}
.ls61{letter-spacing:-0.058784pt;}
.lsd5{letter-spacing:-0.056649pt;}
.ls88{letter-spacing:-0.054548pt;}
.ls5b{letter-spacing:-0.053440pt;}
.ls1b{letter-spacing:-0.052192pt;}
.lsb8{letter-spacing:-0.050052pt;}
.lsc3{letter-spacing:-0.050042pt;}
.ls8b{letter-spacing:-0.050002pt;}
.ls63{letter-spacing:-0.048096pt;}
.lsb0{letter-spacing:-0.045502pt;}
.ls9a{letter-spacing:-0.045493pt;}
.ls84{letter-spacing:-0.045457pt;}
.ls6a{letter-spacing:-0.042752pt;}
.ls9e{letter-spacing:-0.040944pt;}
.ls89{letter-spacing:-0.040911pt;}
.ls76{letter-spacing:-0.037408pt;}
.ls20{letter-spacing:-0.037280pt;}
.lsb5{letter-spacing:-0.036401pt;}
.ls9d{letter-spacing:-0.036394pt;}
.ls87{letter-spacing:-0.036365pt;}
.ls72{letter-spacing:-0.032064pt;}
.lsb6{letter-spacing:-0.031851pt;}
.lsa3{letter-spacing:-0.031845pt;}
.ls8f{letter-spacing:-0.031820pt;}
.lsb7{letter-spacing:-0.027301pt;}
.lsa4{letter-spacing:-0.027296pt;}
.ls90{letter-spacing:-0.027274pt;}
.ls6b{letter-spacing:-0.026720pt;}
.lsb4{letter-spacing:-0.022751pt;}
.ls9f{letter-spacing:-0.022746pt;}
.ls8a{letter-spacing:-0.022728pt;}
.ls13{letter-spacing:-0.022368pt;}
.ls67{letter-spacing:-0.021376pt;}
.lsb1{letter-spacing:-0.018201pt;}
.ls9b{letter-spacing:-0.018197pt;}
.ls85{letter-spacing:-0.018183pt;}
.ls4d{letter-spacing:-0.018055pt;}
.ls62{letter-spacing:-0.016032pt;}
.ls15{letter-spacing:-0.016000pt;}
.ls1d{letter-spacing:-0.014912pt;}
.lsae{letter-spacing:-0.013651pt;}
.ls98{letter-spacing:-0.013648pt;}
.ls82{letter-spacing:-0.013637pt;}
.ls4f{letter-spacing:-0.012037pt;}
.ls5c{letter-spacing:-0.010688pt;}
.lsb2{letter-spacing:-0.009100pt;}
.ls9c{letter-spacing:-0.009099pt;}
.ls86{letter-spacing:-0.009091pt;}
.ls1c{letter-spacing:-0.007456pt;}
.lsd4{letter-spacing:-0.006294pt;}
.ls47{letter-spacing:-0.006018pt;}
.ls5e{letter-spacing:-0.005344pt;}
.ls14{letter-spacing:-0.005333pt;}
.lsaf{letter-spacing:-0.004550pt;}
.ls99{letter-spacing:-0.004549pt;}
.ls83{letter-spacing:-0.004546pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7f{letter-spacing:0.004546pt;}
.ls94{letter-spacing:0.004549pt;}
.lsad{letter-spacing:0.004550pt;}
.ls54{letter-spacing:0.005344pt;}
.ls38{letter-spacing:0.006018pt;}
.ls1{letter-spacing:0.008512pt;}
.ls7e{letter-spacing:0.009091pt;}
.ls92{letter-spacing:0.009099pt;}
.lsa7{letter-spacing:0.009100pt;}
.ls55{letter-spacing:0.010688pt;}
.ls36{letter-spacing:0.012037pt;}
.ls7d{letter-spacing:0.013637pt;}
.ls91{letter-spacing:0.013648pt;}
.lsa6{letter-spacing:0.013651pt;}
.ls10{letter-spacing:0.014912pt;}
.ls97{letter-spacing:0.018197pt;}
.lsab{letter-spacing:0.018201pt;}
.ls59{letter-spacing:0.021376pt;}
.ls93{letter-spacing:0.022746pt;}
.ls48{letter-spacing:0.024074pt;}
.ls6e{letter-spacing:0.026720pt;}
.lsa8{letter-spacing:0.027301pt;}
.ls1a{letter-spacing:0.029824pt;}
.ls3d{letter-spacing:0.030092pt;}
.lsa9{letter-spacing:0.031851pt;}
.ls6{letter-spacing:0.032000pt;}
.ls58{letter-spacing:0.032064pt;}
.ls3a{letter-spacing:0.036111pt;}
.ls96{letter-spacing:0.036394pt;}
.lse{letter-spacing:0.037280pt;}
.ls24{letter-spacing:0.037333pt;}
.lsd1{letter-spacing:0.037766pt;}
.ls5{letter-spacing:0.038400pt;}
.lsaa{letter-spacing:0.040952pt;}
.ls3f{letter-spacing:0.042129pt;}
.ls2{letter-spacing:0.042560pt;}
.ls6f{letter-spacing:0.042752pt;}
.lsd{letter-spacing:0.044736pt;}
.ls81{letter-spacing:0.045457pt;}
.ls95{letter-spacing:0.045493pt;}
.lsac{letter-spacing:0.045502pt;}
.ls3c{letter-spacing:0.048148pt;}
.ls80{letter-spacing:0.050002pt;}
.ls1f{letter-spacing:0.052192pt;}
.ls22{letter-spacing:0.053333pt;}
.ls53{letter-spacing:0.053440pt;}
.ls40{letter-spacing:0.054166pt;}
.lsd2{letter-spacing:0.056649pt;}
.ls56{letter-spacing:0.058784pt;}
.ls3b{letter-spacing:0.060185pt;}
.ls57{letter-spacing:0.064128pt;}
.ls3e{letter-spacing:0.066203pt;}
.lsf{letter-spacing:0.067104pt;}
.ls4a{letter-spacing:0.072221pt;}
.ls8{letter-spacing:0.074560pt;}
.ls21{letter-spacing:0.074667pt;}
.lsbd{letter-spacing:0.077190pt;}
.lsbc{letter-spacing:0.082523pt;}
.lsc{letter-spacing:0.089472pt;}
.ls7{letter-spacing:0.090667pt;}
.lsc0{letter-spacing:0.090986pt;}
.ls52{letter-spacing:0.096000pt;}
.ls49{letter-spacing:0.096295pt;}
.ls18{letter-spacing:0.096928pt;}
.ls39{letter-spacing:0.120369pt;}
.lsb{letter-spacing:0.126752pt;}
.ls37{letter-spacing:0.132406pt;}
.ls74{letter-spacing:0.133600pt;}
.ls3{letter-spacing:0.149120pt;}
.ls23{letter-spacing:0.149333pt;}
.lsc9{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.171488pt;}
.ls16{letter-spacing:0.202667pt;}
.ls4{letter-spacing:0.238592pt;}
.ls78{letter-spacing:0.426667pt;}
.ls41{letter-spacing:0.432000pt;}
.lsa{letter-spacing:0.432448pt;}
.ls9{letter-spacing:0.447360pt;}
.ls12{letter-spacing:0.477184pt;}
.ls34{letter-spacing:0.480000pt;}
.lscd{letter-spacing:0.490667pt;}
.lsce{letter-spacing:0.496000pt;}
.ls2c{letter-spacing:0.506667pt;}
.lsc6{letter-spacing:0.512000pt;}
.ls44{letter-spacing:0.517333pt;}
.ls32{letter-spacing:0.522667pt;}
.ls2d{letter-spacing:0.528000pt;}
.ls2b{letter-spacing:0.533333pt;}
.lsca{letter-spacing:0.538667pt;}
.ls45{letter-spacing:0.565333pt;}
.ls28{letter-spacing:0.586667pt;}
.ls2e{letter-spacing:0.592000pt;}
.ls7b{letter-spacing:0.614400pt;}
.ls26{letter-spacing:0.620800pt;}
.ls51{letter-spacing:0.627200pt;}
.ls25{letter-spacing:0.633600pt;}
.ls27{letter-spacing:0.640000pt;}
.lsda{letter-spacing:0.651733pt;}
.ls50{letter-spacing:0.679467pt;}
.ls7c{letter-spacing:0.686400pt;}
.ls2a{letter-spacing:0.693333pt;}
.lsc5{letter-spacing:0.906667pt;}
.ls77{letter-spacing:1.068800pt;}
.ls60{letter-spacing:1.330656pt;}
.ls35{letter-spacing:1.333333pt;}
.ls5f{letter-spacing:1.384096pt;}
.lscc{letter-spacing:1.386667pt;}
.ls66{letter-spacing:1.389440pt;}
.ls70{letter-spacing:1.408320pt;}
.ls29{letter-spacing:1.493339pt;}
.lscb{letter-spacing:1.760000pt;}
.ls42{letter-spacing:2.453333pt;}
.lsc8{letter-spacing:2.613333pt;}
.lscf{letter-spacing:2.986667pt;}
.ls33{letter-spacing:3.733333pt;}
.ls46{letter-spacing:4.053333pt;}
.ls31{letter-spacing:5.280000pt;}
.lsbe{letter-spacing:5.333333pt;}
.lsc7{letter-spacing:6.453333pt;}
.lsd9{letter-spacing:6.666667pt;}
.lsd0{letter-spacing:7.093333pt;}
.ls2f{letter-spacing:8.000000pt;}
.ls7a{letter-spacing:8.266667pt;}
.ls71{letter-spacing:8.586667pt;}
.ls79{letter-spacing:8.906667pt;}
.ls43{letter-spacing:9.600000pt;}
.ls30{letter-spacing:12.746667pt;}
.ws9{word-spacing:-74.560000pt;}
.ws12{word-spacing:-74.463072pt;}
.ws17{word-spacing:-64.633600pt;}
.ws20c{word-spacing:-63.000116pt;}
.ws20b{word-spacing:-62.981233pt;}
.ws209{word-spacing:-62.943467pt;}
.ws207{word-spacing:-62.937172pt;}
.ws208{word-spacing:-62.886818pt;}
.ws20a{word-spacing:-62.880523pt;}
.ws206{word-spacing:-62.836463pt;}
.ws20e{word-spacing:-61.917488pt;}
.ws12f{word-spacing:-45.515517pt;}
.ws131{word-spacing:-45.510967pt;}
.ws10f{word-spacing:-45.506448pt;}
.ws111{word-spacing:-45.501899pt;}
.ws130{word-spacing:-45.497316pt;}
.ws134{word-spacing:-45.492766pt;}
.ws110{word-spacing:-45.488251pt;}
.ws12e{word-spacing:-45.488216pt;}
.ws114{word-spacing:-45.483701pt;}
.ws133{word-spacing:-45.483666pt;}
.ws10e{word-spacing:-45.479152pt;}
.ws113{word-spacing:-45.474603pt;}
.wsec{word-spacing:-45.470170pt;}
.wsee{word-spacing:-45.465625pt;}
.ws132{word-spacing:-45.456365pt;}
.wsed{word-spacing:-45.451988pt;}
.wsf1{word-spacing:-45.447442pt;}
.ws112{word-spacing:-45.447307pt;}
.wseb{word-spacing:-45.442896pt;}
.wsf0{word-spacing:-45.438351pt;}
.wsef{word-spacing:-45.411077pt;}
.ws1f6{word-spacing:-28.838400pt;}
.ws214{word-spacing:-19.690667pt;}
.ws215{word-spacing:-19.649067pt;}
.ws46{word-spacing:-13.734111pt;}
.ws4a{word-spacing:-13.722074pt;}
.ws49{word-spacing:-13.698000pt;}
.ws4d{word-spacing:-13.661889pt;}
.ws52{word-spacing:-13.655871pt;}
.ws4e{word-spacing:-13.649852pt;}
.ws4c{word-spacing:-13.637815pt;}
.ws4f{word-spacing:-13.631797pt;}
.ws45{word-spacing:-13.613741pt;}
.ws48{word-spacing:-13.607723pt;}
.ws47{word-spacing:-13.595686pt;}
.ws51{word-spacing:-13.589668pt;}
.ws50{word-spacing:-13.475317pt;}
.ws44{word-spacing:-13.152000pt;}
.ws18{word-spacing:-12.437333pt;}
.ws4b{word-spacing:-12.036907pt;}
.ws1f{word-spacing:-11.306667pt;}
.ws1d1{word-spacing:-11.269333pt;}
.ws1ba{word-spacing:-10.918400pt;}
.ws84{word-spacing:-10.794880pt;}
.ws1e{word-spacing:-10.773333pt;}
.wsa3{word-spacing:-10.757333pt;}
.ws1d{word-spacing:-10.746667pt;}
.ws82{word-spacing:-7.526048pt;}
.wsa2{word-spacing:-7.524448pt;}
.ws85{word-spacing:-6.464000pt;}
.wsbc{word-spacing:-4.080000pt;}
.ws1f7{word-spacing:-3.888000pt;}
.wsd2{word-spacing:-3.733333pt;}
.ws3f{word-spacing:-3.413333pt;}
.ws6c{word-spacing:-3.093333pt;}
.ws6a{word-spacing:-3.082667pt;}
.ws184{word-spacing:-3.040000pt;}
.ws6b{word-spacing:-2.944000pt;}
.wsbb{word-spacing:-2.874667pt;}
.wsbf{word-spacing:-2.821333pt;}
.ws1fb{word-spacing:-2.794667pt;}
.ws3e{word-spacing:-2.768000pt;}
.ws204{word-spacing:-2.666667pt;}
.ws18e{word-spacing:-2.501333pt;}
.ws42{word-spacing:-2.341333pt;}
.ws73{word-spacing:-2.186667pt;}
.ws203{word-spacing:-2.154667pt;}
.ws29{word-spacing:-2.080000pt;}
.ws28{word-spacing:-2.074667pt;}
.ws1a8{word-spacing:-2.032000pt;}
.ws162{word-spacing:-2.026667pt;}
.ws1a1{word-spacing:-1.920000pt;}
.ws1f3{word-spacing:-1.813333pt;}
.ws171{word-spacing:-1.760000pt;}
.ws21f{word-spacing:-1.706667pt;}
.ws17f{word-spacing:-1.653333pt;}
.wsd0{word-spacing:-1.600000pt;}
.ws1b7{word-spacing:-1.472000pt;}
.ws1b8{word-spacing:-1.466667pt;}
.ws61{word-spacing:-1.440000pt;}
.ws1b9{word-spacing:-1.386667pt;}
.ws19d{word-spacing:-1.333333pt;}
.ws176{word-spacing:-1.328000pt;}
.ws1ac{word-spacing:-1.280000pt;}
.ws6d{word-spacing:-1.274667pt;}
.ws16a{word-spacing:-1.226667pt;}
.ws1d8{word-spacing:-1.173333pt;}
.ws1d4{word-spacing:-1.120000pt;}
.ws53{word-spacing:-1.114667pt;}
.wsb0{word-spacing:-1.077333pt;}
.ws41{word-spacing:-1.066667pt;}
.wse5{word-spacing:-1.013333pt;}
.wsb1{word-spacing:-1.008000pt;}
.ws1b1{word-spacing:-0.960000pt;}
.ws1b2{word-spacing:-0.933333pt;}
.ws69{word-spacing:-0.906667pt;}
.ws1e4{word-spacing:-0.901333pt;}
.wse7{word-spacing:-0.800000pt;}
.ws54{word-spacing:-0.794667pt;}
.wsb3{word-spacing:-0.746667pt;}
.ws1c9{word-spacing:-0.741333pt;}
.ws1b4{word-spacing:-0.693333pt;}
.ws177{word-spacing:-0.640000pt;}
.ws5d{word-spacing:-0.634667pt;}
.ws200{word-spacing:-0.602667pt;}
.wse8{word-spacing:-0.533333pt;}
.ws161{word-spacing:-0.528000pt;}
.ws18c{word-spacing:-0.458667pt;}
.ws1a5{word-spacing:-0.394667pt;}
.ws1a7{word-spacing:-0.389333pt;}
.ws1a6{word-spacing:-0.368000pt;}
.ws56{word-spacing:-0.349070pt;}
.ws2{word-spacing:-0.313152pt;}
.ws1df{word-spacing:-0.266667pt;}
.ws15f{word-spacing:-0.261333pt;}
.wsa1{word-spacing:-0.256512pt;}
.wsf9{word-spacing:-0.250011pt;}
.ws13{word-spacing:-0.246048pt;}
.wsa4{word-spacing:-0.245824pt;}
.ws11e{word-spacing:-0.245661pt;}
.ws1ab{word-spacing:-0.245333pt;}
.ws139{word-spacing:-0.241160pt;}
.ws92{word-spacing:-0.240480pt;}
.ws120{word-spacing:-0.236563pt;}
.ws8a{word-spacing:-0.235136pt;}
.ws8f{word-spacing:-0.229792pt;}
.ws152{word-spacing:-0.227509pt;}
.ws98{word-spacing:-0.224448pt;}
.ws117{word-spacing:-0.222915pt;}
.ws9f{word-spacing:-0.213760pt;}
.ws126{word-spacing:-0.209267pt;}
.wsd8{word-spacing:-0.208000pt;}
.ws14f{word-spacing:-0.204758pt;}
.ws108{word-spacing:-0.204554pt;}
.ws9d{word-spacing:-0.203072pt;}
.wsc{word-spacing:-0.201312pt;}
.ws127{word-spacing:-0.200168pt;}
.wsf6{word-spacing:-0.200009pt;}
.ws135{word-spacing:-0.195658pt;}
.ws153{word-spacing:-0.195619pt;}
.wsf2{word-spacing:-0.195463pt;}
.wsa6{word-spacing:-0.192384pt;}
.ws146{word-spacing:-0.191108pt;}
.ws118{word-spacing:-0.191070pt;}
.ws107{word-spacing:-0.190917pt;}
.ws13d{word-spacing:-0.186558pt;}
.ws151{word-spacing:-0.182007pt;}
.ws123{word-spacing:-0.181971pt;}
.ws8c{word-spacing:-0.181696pt;}
.ws142{word-spacing:-0.177457pt;}
.ws11b{word-spacing:-0.177422pt;}
.ws13f{word-spacing:-0.172907pt;}
.ws8{word-spacing:-0.171488pt;}
.ws10b{word-spacing:-0.168189pt;}
.ws6{word-spacing:-0.165227pt;}
.wse{word-spacing:-0.164032pt;}
.ws14c{word-spacing:-0.163807pt;}
.ws12c{word-spacing:-0.163774pt;}
.wsf3{word-spacing:-0.163644pt;}
.ws9c{word-spacing:-0.160320pt;}
.ws70{word-spacing:-0.160000pt;}
.ws125{word-spacing:-0.159225pt;}
.ws154{word-spacing:-0.154676pt;}
.ws20f{word-spacing:-0.154667pt;}
.ws159{word-spacing:-0.150126pt;}
.ws10c{word-spacing:-0.150007pt;}
.ws1f1{word-spacing:-0.149333pt;}
.ws7{word-spacing:-0.149120pt;}
.ws145{word-spacing:-0.136506pt;}
.ws3{word-spacing:-0.134400pt;}
.wsf{word-spacing:-0.119296pt;}
.ws10{word-spacing:-0.111840pt;}
.ws5{word-spacing:-0.106560pt;}
.wsab{word-spacing:-0.090848pt;}
.ws11{word-spacing:-0.089472pt;}
.ws4{word-spacing:-0.069227pt;}
.wsb{word-spacing:-0.067104pt;}
.ws16{word-spacing:-0.063840pt;}
.wsd{word-spacing:-0.059648pt;}
.ws1db{word-spacing:-0.053333pt;}
.ws1{word-spacing:-0.052192pt;}
.wsa9{word-spacing:-0.037408pt;}
.ws14{word-spacing:-0.037280pt;}
.ws15{word-spacing:-0.029792pt;}
.ws7c{word-spacing:-0.026667pt;}
.wsa{word-spacing:-0.022368pt;}
.ws192{word-spacing:-0.005333pt;}
.ws0{word-spacing:0.000000pt;}
.ws27{word-spacing:0.005333pt;}
.ws89{word-spacing:0.005344pt;}
.ws1c{word-spacing:0.005867pt;}
.ws19{word-spacing:0.006400pt;}
.ws1a9{word-spacing:0.006933pt;}
.wsfc{word-spacing:0.009091pt;}
.ws163{word-spacing:0.010667pt;}
.ws55{word-spacing:0.012037pt;}
.ws1f2{word-spacing:0.012800pt;}
.ws6e{word-spacing:0.013867pt;}
.ws1a0{word-spacing:0.016000pt;}
.ws94{word-spacing:0.016032pt;}
.ws144{word-spacing:0.018201pt;}
.ws1a{word-spacing:0.019200pt;}
.ws16e{word-spacing:0.021333pt;}
.ws138{word-spacing:0.022751pt;}
.wsde{word-spacing:0.025600pt;}
.wsfd{word-spacing:0.027274pt;}
.ws15a{word-spacing:0.027296pt;}
.ws148{word-spacing:0.027301pt;}
.ws97{word-spacing:0.032064pt;}
.ws9a{word-spacing:0.042752pt;}
.ws122{word-spacing:0.045493pt;}
.ws136{word-spacing:0.045502pt;}
.wsaa{word-spacing:0.048096pt;}
.wsfa{word-spacing:0.054548pt;}
.ws129{word-spacing:0.054591pt;}
.ws13a{word-spacing:0.054602pt;}
.wsa5{word-spacing:0.058784pt;}
.ws158{word-spacing:0.059141pt;}
.ws109{word-spacing:0.063639pt;}
.ws11d{word-spacing:0.063690pt;}
.ws14d{word-spacing:0.063703pt;}
.ws103{word-spacing:0.068185pt;}
.ws115{word-spacing:0.068239pt;}
.ws147{word-spacing:0.068253pt;}
.wsf8{word-spacing:0.072730pt;}
.ws121{word-spacing:0.072788pt;}
.ws149{word-spacing:0.072803pt;}
.ws8e{word-spacing:0.074816pt;}
.ws105{word-spacing:0.077276pt;}
.ws11a{word-spacing:0.077338pt;}
.ws14e{word-spacing:0.077353pt;}
.ws8d{word-spacing:0.080160pt;}
.wsf7{word-spacing:0.081822pt;}
.ws12a{word-spacing:0.081887pt;}
.ws13c{word-spacing:0.081903pt;}
.ws87{word-spacing:0.085504pt;}
.wsf5{word-spacing:0.086367pt;}
.ws11f{word-spacing:0.086436pt;}
.ws88{word-spacing:0.090848pt;}
.ws104{word-spacing:0.090913pt;}
.ws141{word-spacing:0.091004pt;}
.wsff{word-spacing:0.095459pt;}
.ws11c{word-spacing:0.095535pt;}
.ws13b{word-spacing:0.095554pt;}
.ws95{word-spacing:0.096192pt;}
.ws10d{word-spacing:0.100004pt;}
.ws12d{word-spacing:0.100084pt;}
.ws8b{word-spacing:0.101536pt;}
.ws155{word-spacing:0.104633pt;}
.ws13e{word-spacing:0.104654pt;}
.ws7f{word-spacing:0.106667pt;}
.ws93{word-spacing:0.106880pt;}
.wsfe{word-spacing:0.109096pt;}
.ws116{word-spacing:0.109183pt;}
.ws140{word-spacing:0.109204pt;}
.wse2{word-spacing:0.112000pt;}
.wsa8{word-spacing:0.112224pt;}
.wsfb{word-spacing:0.113641pt;}
.ws119{word-spacing:0.113732pt;}
.wsa7{word-spacing:0.117568pt;}
.ws10a{word-spacing:0.118187pt;}
.ws124{word-spacing:0.118281pt;}
.ws14a{word-spacing:0.118305pt;}
.ws100{word-spacing:0.122733pt;}
.wsac{word-spacing:0.122912pt;}
.wsf4{word-spacing:0.127278pt;}
.ws143{word-spacing:0.127405pt;}
.ws9b{word-spacing:0.128256pt;}
.ws157{word-spacing:0.131929pt;}
.ws150{word-spacing:0.131955pt;}
.ws19c{word-spacing:0.133333pt;}
.ws90{word-spacing:0.133600pt;}
.ws12b{word-spacing:0.136478pt;}
.ws86{word-spacing:0.138944pt;}
.ws101{word-spacing:0.140915pt;}
.ws19b{word-spacing:0.149333pt;}
.ws9e{word-spacing:0.149632pt;}
.ws219{word-spacing:0.160000pt;}
.ws91{word-spacing:0.160320pt;}
.ws106{word-spacing:0.163644pt;}
.wsa0{word-spacing:0.171008pt;}
.ws102{word-spacing:0.181826pt;}
.ws14b{word-spacing:0.186558pt;}
.ws128{word-spacing:0.191070pt;}
.ws1ff{word-spacing:0.213333pt;}
.ws96{word-spacing:0.219104pt;}
.ws99{word-spacing:0.224448pt;}
.ws137{word-spacing:0.227509pt;}
.ws156{word-spacing:0.236563pt;}
.wsdd{word-spacing:0.250667pt;}
.ws75{word-spacing:0.272000pt;}
.ws2f{word-spacing:0.288000pt;}
.ws66{word-spacing:0.320000pt;}
.ws60{word-spacing:0.325333pt;}
.ws168{word-spacing:0.373333pt;}
.wsbe{word-spacing:0.458667pt;}
.wsc0{word-spacing:0.480000pt;}
.wsd7{word-spacing:0.485333pt;}
.ws1e5{word-spacing:0.592000pt;}
.ws15e{word-spacing:0.640000pt;}
.ws64{word-spacing:0.672000pt;}
.ws43{word-spacing:0.800000pt;}
.wscd{word-spacing:0.805333pt;}
.wsd5{word-spacing:0.816000pt;}
.ws1b5{word-spacing:0.826667pt;}
.ws1b6{word-spacing:0.853333pt;}
.ws19f{word-spacing:0.858667pt;}
.ws1c0{word-spacing:0.906667pt;}
.ws81{word-spacing:1.013333pt;}
.ws180{word-spacing:1.072000pt;}
.ws1cc{word-spacing:1.093333pt;}
.ws196{word-spacing:1.173333pt;}
.wscb{word-spacing:1.232000pt;}
.ws191{word-spacing:1.264000pt;}
.wsc2{word-spacing:1.280000pt;}
.ws6f{word-spacing:1.333333pt;}
.ws17d{word-spacing:1.338667pt;}
.wsba{word-spacing:1.386667pt;}
.ws17a{word-spacing:1.392000pt;}
.ws1be{word-spacing:1.397333pt;}
.ws1aa{word-spacing:1.440000pt;}
.wsd9{word-spacing:1.445333pt;}
.ws1ad{word-spacing:1.493333pt;}
.ws1ae{word-spacing:1.546667pt;}
.wsd4{word-spacing:1.605333pt;}
.ws3b{word-spacing:1.653333pt;}
.wsb9{word-spacing:1.712000pt;}
.ws187{word-spacing:1.760000pt;}
.ws59{word-spacing:1.813333pt;}
.wsdc{word-spacing:1.866667pt;}
.ws183{word-spacing:1.872000pt;}
.ws58{word-spacing:1.898667pt;}
.ws7e{word-spacing:1.973333pt;}
.ws1e9{word-spacing:2.032000pt;}
.ws1e8{word-spacing:2.053333pt;}
.ws1d2{word-spacing:2.080000pt;}
.ws199{word-spacing:2.085333pt;}
.ws198{word-spacing:2.090667pt;}
.ws188{word-spacing:2.128000pt;}
.ws172{word-spacing:2.133333pt;}
.ws197{word-spacing:2.138667pt;}
.ws1c1{word-spacing:2.176000pt;}
.wsaf{word-spacing:2.181333pt;}
.ws169{word-spacing:2.186667pt;}
.ws1f0{word-spacing:2.293333pt;}
.ws1bf{word-spacing:2.304000pt;}
.ws1eb{word-spacing:2.330667pt;}
.ws2b{word-spacing:2.346667pt;}
.wsc6{word-spacing:2.400000pt;}
.ws71{word-spacing:2.421333pt;}
.ws205{word-spacing:2.437333pt;}
.wsda{word-spacing:2.453333pt;}
.wsbd{word-spacing:2.506667pt;}
.ws5c{word-spacing:2.560000pt;}
.ws40{word-spacing:2.618667pt;}
.ws17b{word-spacing:2.725333pt;}
.wsb6{word-spacing:2.773333pt;}
.ws62{word-spacing:2.826667pt;}
.ws1e0{word-spacing:2.832000pt;}
.ws1cb{word-spacing:2.922667pt;}
.ws1dd{word-spacing:2.938667pt;}
.ws65{word-spacing:2.970667pt;}
.ws1ed{word-spacing:2.997333pt;}
.ws1c3{word-spacing:3.040000pt;}
.ws74{word-spacing:3.093333pt;}
.ws189{word-spacing:3.098667pt;}
.ws38{word-spacing:3.200000pt;}
.ws181{word-spacing:3.205333pt;}
.ws37{word-spacing:3.210667pt;}
.ws25{word-spacing:3.253333pt;}
.ws1c7{word-spacing:3.258667pt;}
.ws1d3{word-spacing:3.274667pt;}
.ws190{word-spacing:3.306667pt;}
.ws1c8{word-spacing:3.312000pt;}
.ws21{word-spacing:3.360000pt;}
.ws1c5{word-spacing:3.370667pt;}
.ws174{word-spacing:3.408000pt;}
.ws3a{word-spacing:3.472000pt;}
.ws5e{word-spacing:3.520000pt;}
.ws218{word-spacing:3.573333pt;}
.ws1cf{word-spacing:3.578667pt;}
.ws67{word-spacing:3.680000pt;}
.ws3d{word-spacing:3.685333pt;}
.ws1f4{word-spacing:3.733333pt;}
.ws78{word-spacing:3.786667pt;}
.ws1d0{word-spacing:3.893333pt;}
.ws1bc{word-spacing:3.946667pt;}
.ws222{word-spacing:4.048000pt;}
.ws7b{word-spacing:4.058667pt;}
.ws3c{word-spacing:4.112000pt;}
.ws1e1{word-spacing:4.160000pt;}
.ws1da{word-spacing:4.208000pt;}
.ws2e{word-spacing:4.213333pt;}
.ws1ef{word-spacing:4.224000pt;}
.ws211{word-spacing:4.240000pt;}
.ws217{word-spacing:4.266667pt;}
.ws1ca{word-spacing:4.293333pt;}
.ws39{word-spacing:4.320000pt;}
.ws220{word-spacing:4.373333pt;}
.ws165{word-spacing:4.426667pt;}
.ws1fa{word-spacing:4.432000pt;}
.ws35{word-spacing:4.533333pt;}
.ws1a3{word-spacing:4.538667pt;}
.ws1e6{word-spacing:4.586667pt;}
.ws1a2{word-spacing:4.640000pt;}
.ws210{word-spacing:4.661333pt;}
.ws36{word-spacing:4.752000pt;}
.ws195{word-spacing:4.773333pt;}
.ws160{word-spacing:4.800000pt;}
.ws221{word-spacing:4.848000pt;}
.ws201{word-spacing:5.013333pt;}
.ws185{word-spacing:5.034667pt;}
.ws1a4{word-spacing:5.050667pt;}
.wsae{word-spacing:5.072000pt;}
.wsd1{word-spacing:5.157333pt;}
.wscc{word-spacing:5.173333pt;}
.ws16d{word-spacing:5.232000pt;}
.ws175{word-spacing:5.386667pt;}
.ws18a{word-spacing:5.429333pt;}
.ws63{word-spacing:5.546667pt;}
.ws72{word-spacing:5.600000pt;}
.ws182{word-spacing:5.605333pt;}
.ws15d{word-spacing:5.648000pt;}
.ws1d6{word-spacing:5.653333pt;}
.ws17e{word-spacing:5.760000pt;}
.ws21e{word-spacing:5.797333pt;}
.ws21c{word-spacing:5.840000pt;}
.ws68{word-spacing:5.866667pt;}
.ws17c{word-spacing:5.920000pt;}
.ws1ea{word-spacing:5.925333pt;}
.wse9{word-spacing:5.973333pt;}
.ws77{word-spacing:6.026667pt;}
.ws166{word-spacing:6.085333pt;}
.ws7a{word-spacing:6.133333pt;}
.ws21b{word-spacing:6.138667pt;}
.ws15c{word-spacing:6.192000pt;}
.ws2d{word-spacing:6.240000pt;}
.ws1d5{word-spacing:6.293333pt;}
.ws1b3{word-spacing:6.346667pt;}
.wse0{word-spacing:6.352000pt;}
.ws173{word-spacing:6.405333pt;}
.ws7d{word-spacing:6.410667pt;}
.wsb2{word-spacing:6.453333pt;}
.wse6{word-spacing:6.458667pt;}
.ws22{word-spacing:6.506667pt;}
.wsce{word-spacing:6.544000pt;}
.ws2a{word-spacing:6.560000pt;}
.ws21a{word-spacing:6.618667pt;}
.ws1bd{word-spacing:6.832000pt;}
.ws16b{word-spacing:6.880000pt;}
.wse3{word-spacing:6.885333pt;}
.ws1af{word-spacing:6.933333pt;}
.ws1e3{word-spacing:7.040000pt;}
.ws16c{word-spacing:7.093333pt;}
.ws1e2{word-spacing:7.120000pt;}
.ws32{word-spacing:7.253333pt;}
.wsb7{word-spacing:7.290667pt;}
.ws5f{word-spacing:7.360000pt;}
.ws31{word-spacing:7.466667pt;}
.ws30{word-spacing:7.472000pt;}
.ws1e7{word-spacing:7.493333pt;}
.ws1ec{word-spacing:7.525333pt;}
.ws179{word-spacing:7.546667pt;}
.ws1ce{word-spacing:7.621333pt;}
.ws202{word-spacing:7.626667pt;}
.wse1{word-spacing:7.632000pt;}
.ws1f8{word-spacing:7.680000pt;}
.wsc4{word-spacing:7.733333pt;}
.ws1cd{word-spacing:7.893333pt;}
.ws1ee{word-spacing:7.946667pt;}
.wsc8{word-spacing:8.005333pt;}
.ws20{word-spacing:8.053333pt;}
.wsb4{word-spacing:8.058667pt;}
.wsb5{word-spacing:8.074667pt;}
.wsd6{word-spacing:8.106667pt;}
.wsc1{word-spacing:8.373333pt;}
.wse4{word-spacing:8.517333pt;}
.ws23{word-spacing:8.746667pt;}
.ws167{word-spacing:8.853333pt;}
.ws15b{word-spacing:9.013333pt;}
.ws5a{word-spacing:9.066667pt;}
.ws5b{word-spacing:9.082667pt;}
.ws1b0{word-spacing:9.120000pt;}
.wsea{word-spacing:9.440000pt;}
.ws21d{word-spacing:9.605333pt;}
.ws1c2{word-spacing:9.712000pt;}
.ws212{word-spacing:9.920000pt;}
.ws1fe{word-spacing:9.978667pt;}
.ws24{word-spacing:10.080000pt;}
.ws26{word-spacing:10.128000pt;}
.ws216{word-spacing:10.346667pt;}
.ws1de{word-spacing:10.506667pt;}
.ws193{word-spacing:10.554667pt;}
.wsc3{word-spacing:10.720000pt;}
.ws1f9{word-spacing:10.832000pt;}
.ws186{word-spacing:10.992000pt;}
.ws1d7{word-spacing:11.146667pt;}
.ws2c{word-spacing:11.472000pt;}
.ws76{word-spacing:12.000000pt;}
.ws1bb{word-spacing:12.202667pt;}
.ws34{word-spacing:12.234667pt;}
.ws33{word-spacing:12.240000pt;}
.ws1c4{word-spacing:12.533333pt;}
.ws19e{word-spacing:12.586667pt;}
.ws1c6{word-spacing:12.661333pt;}
.wsca{word-spacing:12.773333pt;}
.wsc7{word-spacing:13.178667pt;}
.ws18d{word-spacing:13.280000pt;}
.ws1fc{word-spacing:13.813333pt;}
.ws19a{word-spacing:13.856000pt;}
.ws18b{word-spacing:15.146667pt;}
.wsc9{word-spacing:15.525333pt;}
.wsdf{word-spacing:15.712000pt;}
.ws170{word-spacing:15.952000pt;}
.ws1f5{word-spacing:16.746667pt;}
.ws16f{word-spacing:16.800000pt;}
.ws18f{word-spacing:17.605333pt;}
.ws1fd{word-spacing:18.720000pt;}
.ws213{word-spacing:21.528000pt;}
.ws194{word-spacing:22.138667pt;}
.ws1d9{word-spacing:37.056000pt;}
.wsd3{word-spacing:37.120000pt;}
.wsad{word-spacing:38.470400pt;}
.ws178{word-spacing:38.848000pt;}
.wscf{word-spacing:39.110400pt;}
.wsb8{word-spacing:39.168000pt;}
.wsc5{word-spacing:39.552000pt;}
.ws1dc{word-spacing:40.972800pt;}
.wsdb{word-spacing:41.024000pt;}
.ws79{word-spacing:53.772800pt;}
.ws164{word-spacing:54.144000pt;}
.ws83{word-spacing:61.405653pt;}
.ws80{word-spacing:62.666667pt;}
.ws1b{word-spacing:78.789333pt;}
.ws57{word-spacing:89.994667pt;}
.ws20d{word-spacing:478.869516pt;}
._12{margin-left:-62.666667pt;}
._1a{margin-left:-40.000000pt;}
._17{margin-left:-38.464000pt;}
._26{margin-left:-33.968000pt;}
._1b{margin-left:-24.101333pt;}
._6{margin-left:-21.920000pt;}
._11{margin-left:-17.419307pt;}
._7{margin-left:-15.360000pt;}
._1f{margin-left:-10.476160pt;}
._e{margin-left:-8.929493pt;}
._20{margin-left:-7.241813pt;}
._2d{margin-left:-5.965653pt;}
._8{margin-left:-4.480000pt;}
._2{margin-left:-2.752000pt;}
._0{margin-left:-1.043840pt;}
._1{width:1.096032pt;}
._f{width:2.087730pt;}
._29{width:3.946667pt;}
._18{width:5.061333pt;}
._5{width:6.485333pt;}
._19{width:7.520213pt;}
._27{width:9.104000pt;}
._28{width:11.994667pt;}
._1c{width:35.456000pt;}
._2f{width:36.480000pt;}
._2a{width:38.400000pt;}
._2b{width:39.488000pt;}
._2e{width:43.946667pt;}
._23{width:45.066667pt;}
._21{width:47.520000pt;}
._22{width:49.386667pt;}
._1d{width:50.365765pt;}
._25{width:52.117333pt;}
._d{width:55.200000pt;}
._b{width:56.426667pt;}
._c{width:58.458667pt;}
._24{width:59.360000pt;}
._a{width:60.320000pt;}
._14{width:61.653333pt;}
._15{width:62.666667pt;}
._13{width:63.573333pt;}
._9{width:64.746667pt;}
._3{width:78.789333pt;}
._2c{width:87.845333pt;}
._10{width:90.757333pt;}
._4{width:104.416000pt;}
._16{width:127.125973pt;}
._1e{width:642.475060pt;}
.fs12{font-size:27.241067pt;}
.fse{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.560000pt;}
.fsf{font-size:45.456533pt;}
.fs10{font-size:45.492800pt;}
.fs11{font-size:45.501867pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fsd{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.666667pt;}
.fsc{font-size:60.184533pt;}
.fs13{font-size:62.943467pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:69.333333pt;}
.fs6{font-size:74.560000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.fs9{font-size:149.333867pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:46.907067pt;}
.y4{bottom:86.333337pt;}
.y20{bottom:123.790666pt;}
.y45{bottom:131.715067pt;}
.y2c{bottom:131.901200pt;}
.y6e{bottom:131.903467pt;}
.y223{bottom:155.584400pt;}
.y242{bottom:158.119067pt;}
.y266{bottom:160.688133pt;}
.y9a{bottom:162.022933pt;}
.y13a{bottom:167.597333pt;}
.y197{bottom:169.149200pt;}
.y38{bottom:169.218933pt;}
.y222{bottom:172.917733pt;}
.ye7{bottom:173.325200pt;}
.y17{bottom:175.052000pt;}
.y241{bottom:175.452400pt;}
.y15f{bottom:177.426800pt;}
.y265{bottom:178.021467pt;}
.y99{bottom:179.356267pt;}
.y201{bottom:180.890533pt;}
.y196{bottom:183.440000pt;}
.y288{bottom:184.268800pt;}
.y139{bottom:184.930667pt;}
.y2bc{bottom:186.152133pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y2d9{bottom:187.366800pt;}
.y115{bottom:188.484267pt;}
.ye6{bottom:190.125200pt;}
.y221{bottom:190.251067pt;}
.y240{bottom:192.785733pt;}
.y37{bottom:193.218933pt;}
.y15e{bottom:194.760133pt;}
.y200{bottom:195.194533pt;}
.y264{bottom:195.354800pt;}
.y98{bottom:196.689600pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y195{bottom:197.661200pt;}
.y6c{bottom:201.486533pt;}
.y287{bottom:201.602133pt;}
.y138{bottom:202.264000pt;}
.y2bb{bottom:203.485467pt;}
.y2d8{bottom:204.700133pt;}
.y114{bottom:205.817600pt;}
.ye3{bottom:206.845333pt;}
.y220{bottom:207.584400pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y1ff{bottom:209.432000pt;}
.y23f{bottom:210.119067pt;}
.y194{bottom:211.952000pt;}
.y15d{bottom:212.093467pt;}
.y263{bottom:212.688133pt;}
.y97{bottom:214.022933pt;}
.y36{bottom:217.218933pt;}
.y6b{bottom:218.819867pt;}
.y286{bottom:218.935467pt;}
.y19e{bottom:219.369333pt;}
.y137{bottom:219.597333pt;}
.y2ba{bottom:220.818800pt;}
.y2d7{bottom:222.033467pt;}
.y113{bottom:223.150933pt;}
.ye2{bottom:223.645333pt;}
.y1fe{bottom:223.736000pt;}
.y29a{bottom:223.884133pt;}
.y21f{bottom:224.917733pt;}
.y193{bottom:226.174667pt;}
.y23e{bottom:227.452400pt;}
.y15c{bottom:229.426800pt;}
.y30c{bottom:229.445600pt;}
.y262{bottom:230.021467pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y96{bottom:231.356267pt;}
.ydf{bottom:231.965333pt;}
.y19d{bottom:233.660000pt;}
.y6a{bottom:236.153200pt;}
.y285{bottom:236.268800pt;}
.y136{bottom:236.930667pt;}
.y1fd{bottom:237.972000pt;}
.y2b9{bottom:238.152133pt;}
.y2d6{bottom:239.366800pt;}
.ye1{bottom:240.365333pt;}
.y192{bottom:240.464000pt;}
.y299{bottom:241.217467pt;}
.y35{bottom:241.218933pt;}
.y1b{bottom:242.238666pt;}
.y21e{bottom:242.251067pt;}
.y12{bottom:242.252002pt;}
.y1cd{bottom:244.162667pt;}
.y23d{bottom:244.785733pt;}
.y15b{bottom:246.760133pt;}
.y30b{bottom:246.778933pt;}
.y261{bottom:247.354800pt;}
.y19c{bottom:247.881333pt;}
.y112{bottom:248.044267pt;}
.y95{bottom:248.689600pt;}
.y1fc{bottom:252.277333pt;}
.yb8{bottom:252.465867pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y69{bottom:253.486533pt;}
.y284{bottom:253.602133pt;}
.y135{bottom:254.264000pt;}
.y191{bottom:254.686667pt;}
.y2b8{bottom:255.485467pt;}
.y2d5{bottom:256.700133pt;}
.ye0{bottom:257.165467pt;}
.y1cc{bottom:258.396000pt;}
.y298{bottom:258.550800pt;}
.y21d{bottom:259.584400pt;}
.y19b{bottom:262.172000pt;}
.y15a{bottom:264.093467pt;}
.y34{bottom:265.218933pt;}
.y111{bottom:265.377600pt;}
.y94{bottom:266.022933pt;}
.y190{bottom:268.976000pt;}
.y23c{bottom:269.679067pt;}
.y68{bottom:270.819867pt;}
.y283{bottom:270.935467pt;}
.y30a{bottom:271.672267pt;}
.y260{bottom:272.248133pt;}
.y1cb{bottom:272.697467pt;}
.y2b7{bottom:272.818800pt;}
.ye5{bottom:273.885333pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y297{bottom:275.884133pt;}
.y21c{bottom:276.917733pt;}
.yb7{bottom:277.359200pt;}
.y134{bottom:279.156133pt;}
.y1fb{bottom:281.294800pt;}
.y159{bottom:281.426800pt;}
.y2d4{bottom:281.592133pt;}
.y110{bottom:282.710933pt;}
.y18f{bottom:283.198800pt;}
.y93{bottom:283.356267pt;}
.y1ca{bottom:286.930667pt;}
.y23b{bottom:287.012400pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y67{bottom:288.153200pt;}
.y282{bottom:288.268800pt;}
.y309{bottom:289.005600pt;}
.y33{bottom:289.218933pt;}
.y25f{bottom:289.581467pt;}
.y2b6{bottom:290.152133pt;}
.ye4{bottom:290.685467pt;}
.y296{bottom:293.217467pt;}
.y21b{bottom:294.251067pt;}
.yb6{bottom:294.692533pt;}
.y1fa{bottom:295.598800pt;}
.y18e{bottom:297.489467pt;}
.y2b{bottom:298.026667pt;}
.y158{bottom:298.760133pt;}
.y10f{bottom:300.044267pt;}
.y92{bottom:300.689600pt;}
.y23a{bottom:304.345733pt;}
.y66{bottom:305.486533pt;}
.y281{bottom:305.602133pt;}
.y25e{bottom:306.914800pt;}
.y2b5{bottom:307.485467pt;}
.y1c9{bottom:308.042800pt;}
.ye{bottom:309.452000pt;}
.y1f9{bottom:309.836133pt;}
.y21a{bottom:311.584400pt;}
.y18d{bottom:311.710800pt;}
.y32{bottom:313.218933pt;}
.y308{bottom:313.898933pt;}
.y157{bottom:316.093467pt;}
.y10e{bottom:317.377600pt;}
.y91{bottom:318.022933pt;}
.y295{bottom:318.109600pt;}
.y19a{bottom:318.516133pt;}
.y133{bottom:319.387200pt;}
.yb5{bottom:319.585867pt;}
.y239{bottom:321.679067pt;}
.y2d3{bottom:321.823200pt;}
.y1c8{bottom:322.276133pt;}
.y65{bottom:322.819867pt;}
.y280{bottom:322.935467pt;}
.y2ee{bottom:323.386933pt;}
.y1f8{bottom:324.140267pt;}
.y25d{bottom:324.248133pt;}
.yde{bottom:324.765600pt;}
.y18c{bottom:326.001600pt;}
.y219{bottom:328.917733pt;}
.y1c5{bottom:329.086800pt;}
.y2b4{bottom:332.377467pt;}
.y199{bottom:332.806933pt;}
.y10d{bottom:334.710933pt;}
.y90{bottom:335.356267pt;}
.y1c7{bottom:336.577600pt;}
.y132{bottom:336.720533pt;}
.y31{bottom:337.218933pt;}
.y1f7{bottom:338.376267pt;}
.y307{bottom:338.792267pt;}
.y238{bottom:339.012400pt;}
.y2d2{bottom:339.156533pt;}
.y64{bottom:340.153200pt;}
.y18b{bottom:340.224267pt;}
.ydd{bottom:341.485600pt;}
.y25c{bottom:341.581467pt;}
.y1c4{bottom:343.388267pt;}
.y2a{bottom:343.603067pt;}
.yd{bottom:343.809333pt;}
.yb4{bottom:344.479200pt;}
.y218{bottom:346.251067pt;}
.y198{bottom:347.028267pt;}
.y27f{bottom:347.828800pt;}
.y1c6{bottom:350.810933pt;}
.y1f6{bottom:352.681600pt;}
.y8f{bottom:352.689600pt;}
.y131{bottom:354.053867pt;}
.y156{bottom:356.104267pt;}
.y237{bottom:356.345733pt;}
.y2d1{bottom:356.489867pt;}
.y63{bottom:357.486533pt;}
.y1c3{bottom:357.621600pt;}
.ydc{bottom:358.285600pt;}
.y294{bottom:358.340667pt;}
.y25b{bottom:358.914800pt;}
.y10c{bottom:359.602933pt;}
.y30{bottom:361.218933pt;}
.y18a{bottom:361.318933pt;}
.yc{bottom:362.706666pt;}
.y306{bottom:363.685600pt;}
.y27e{bottom:365.162133pt;}
.y1f5{bottom:366.917733pt;}
.yb3{bottom:369.372533pt;}
.y130{bottom:371.387200pt;}
.y1c2{bottom:371.924267pt;}
.y2b3{bottom:372.606533pt;}
.y236{bottom:373.679067pt;}
.y2d0{bottom:373.823200pt;}
.y62{bottom:374.819867pt;}
.ydb{bottom:375.005600pt;}
.y189{bottom:375.540267pt;}
.y293{bottom:375.674000pt;}
.y25a{bottom:376.248133pt;}
.y217{bottom:378.704400pt;}
.y1f4{bottom:381.221733pt;}
.y2eb{bottom:381.772400pt;}
.y27d{bottom:382.495467pt;}
.y29{bottom:384.331467pt;}
.y2f{bottom:385.218933pt;}
.y1c1{bottom:386.157733pt;}
.yb2{bottom:386.705867pt;}
.y12f{bottom:388.720533pt;}
.y235{bottom:391.012400pt;}
.y2cf{bottom:391.156533pt;}
.yda{bottom:391.805600pt;}
.y61{bottom:392.153200pt;}
.y8e{bottom:392.700267pt;}
.y292{bottom:393.007333pt;}
.y1f3{bottom:395.458933pt;}
.y2b2{bottom:397.499867pt;}
.y27c{bottom:399.828800pt;}
.y1c0{bottom:400.458933pt;}
.y259{bottom:401.141467pt;}
.y305{bottom:403.696400pt;}
.yb1{bottom:404.039200pt;}
.y188{bottom:404.529733pt;}
.y12e{bottom:406.053867pt;}
.y28{bottom:407.053627pt;}
.y10b{bottom:407.392400pt;}
.y234{bottom:408.345733pt;}
.y2ce{bottom:408.489867pt;}
.yd9{bottom:408.525733pt;}
.y2e{bottom:409.218933pt;}
.y60{bottom:409.486533pt;}
.y1f2{bottom:409.762933pt;}
.y155{bottom:410.340667pt;}
.y2b1{bottom:414.833200pt;}
.y216{bottom:415.849733pt;}
.y27b{bottom:417.162133pt;}
.y258{bottom:418.474800pt;}
.y187{bottom:418.820400pt;}
.yb0{bottom:421.372533pt;}
.y12d{bottom:423.387200pt;}
.yd2{bottom:425.325733pt;}
.y233{bottom:425.679067pt;}
.y2cd{bottom:425.823200pt;}
.y5f{bottom:426.819867pt;}
.y154{bottom:427.674000pt;}
.y1bf{bottom:429.471067pt;}
.y215{bottom:430.083067pt;}
.y2ed{bottom:430.402347pt;}
.y1f1{bottom:430.811067pt;}
.yb{bottom:430.990669pt;}
.y186{bottom:433.041733pt;}
.y2d{bottom:433.218933pt;}
.y27a{bottom:434.495467pt;}
.y257{bottom:435.808133pt;}
.yaf{bottom:438.705867pt;}
.y2b0{bottom:439.726533pt;}
.y12c{bottom:440.720533pt;}
.yd8{bottom:442.045733pt;}
.y232{bottom:443.012400pt;}
.y2cc{bottom:443.156533pt;}
.y1be{bottom:443.704400pt;}
.y5e{bottom:444.153200pt;}
.y214{bottom:444.385867pt;}
.y153{bottom:445.007333pt;}
.y1f0{bottom:445.115067pt;}
.y10a{bottom:445.272400pt;}
.ya{bottom:446.990669pt;}
.y185{bottom:447.332400pt;}
.y27{bottom:447.782027pt;}
.y279{bottom:451.828800pt;}
.y8d{bottom:454.495067pt;}
.yae{bottom:456.039200pt;}
.y304{bottom:457.932533pt;}
.y1bd{bottom:458.005733pt;}
.y12b{bottom:458.053867pt;}
.y213{bottom:458.619067pt;}
.yd7{bottom:458.845733pt;}
.y1ef{bottom:459.352400pt;}
.y231{bottom:460.345733pt;}
.y2cb{bottom:460.489867pt;}
.y256{bottom:460.701467pt;}
.y5d{bottom:461.486533pt;}
.y109{bottom:461.992400pt;}
.y152{bottom:462.340667pt;}
.y9{bottom:462.990669pt;}
.y2af{bottom:464.619867pt;}
.y184{bottom:468.359067pt;}
.y278{bottom:469.162133pt;}
.y212{bottom:472.920533pt;}
.yad{bottom:473.372533pt;}
.y1ee{bottom:473.656533pt;}
.y303{bottom:475.265867pt;}
.y12a{bottom:475.387200pt;}
.yd6{bottom:475.565733pt;}
.y2ca{bottom:477.823200pt;}
.y255{bottom:478.034800pt;}
.y108{bottom:478.792533pt;}
.y2e6{bottom:478.968160pt;}
.y8{bottom:478.990666pt;}
.y1bc{bottom:479.049867pt;}
.y151{bottom:479.674000pt;}
.y2ae{bottom:481.953200pt;}
.y183{bottom:482.649867pt;}
.y2ea{bottom:483.110586pt;}
.y230{bottom:485.239200pt;}
.y5c{bottom:486.379867pt;}
.y277{bottom:486.495467pt;}
.y211{bottom:487.153867pt;}
.y1ed{bottom:487.892533pt;}
.yd5{bottom:492.365867pt;}
.y129{bottom:492.720533pt;}
.y87{bottom:493.308533pt;}
.y1bb{bottom:493.351200pt;}
.y7{bottom:494.990666pt;}
.y107{bottom:495.512533pt;}
.y182{bottom:496.871200pt;}
.y150{bottom:497.007333pt;}
.y2e5{bottom:497.851200pt;}
.yac{bottom:498.264533pt;}
.y2ad{bottom:499.286533pt;}
.y210{bottom:501.455200pt;}
.y2e9{bottom:501.995200pt;}
.y1ec{bottom:502.197867pt;}
.y2c9{bottom:502.715200pt;}
.y254{bottom:502.928133pt;}
.y5b{bottom:503.713200pt;}
.y276{bottom:503.828800pt;}
.y1ba{bottom:507.584533pt;}
.y78{bottom:507.592000pt;}
.yd4{bottom:509.085867pt;}
.y181{bottom:511.161867pt;}
.y106{bottom:512.312533pt;}
.y14f{bottom:514.340667pt;}
.y302{bottom:515.276533pt;}
.y20f{bottom:515.689867pt;}
.yff{bottom:516.312533pt;}
.y1eb{bottom:516.433867pt;}
.y2ac{bottom:516.619867pt;}
.y128{bottom:517.613867pt;}
.y43{bottom:519.884000pt;}
.y275{bottom:521.162133pt;}
.y1b9{bottom:521.887200pt;}
.y22f{bottom:525.468000pt;}
.y77{bottom:525.647360pt;}
.y86{bottom:525.699920pt;}
.yd3{bottom:525.885867pt;}
.y253{bottom:527.821467pt;}
.y5a{bottom:528.606533pt;}
.y105{bottom:529.032533pt;}
.y20e{bottom:529.991200pt;}
.y1e6{bottom:530.056533pt;}
.y14e{bottom:531.674000pt;}
.y180{bottom:532.188533pt;}
.yfd{bottom:533.032533pt;}
.y1b8{bottom:536.120667pt;}
.y1ea{bottom:537.550000pt;}
.yab{bottom:538.494267pt;}
.y274{bottom:538.495467pt;}
.y2ab{bottom:541.513200pt;}
.y22e{bottom:542.801333pt;}
.y2c8{bottom:542.941467pt;}
.y76{bottom:543.702720pt;}
.y42{bottom:543.878667pt;}
.y20d{bottom:544.224667pt;}
.y1e5{bottom:544.362000pt;}
.y252{bottom:545.154800pt;}
.y104{bottom:545.832667pt;}
.y59{bottom:545.939867pt;}
.y17f{bottom:546.479333pt;}
.y2ec{bottom:547.996479pt;}
.y14d{bottom:549.007333pt;}
.yfe{bottom:549.832667pt;}
.y1b7{bottom:550.422000pt;}
.y1e9{bottom:551.786000pt;}
.y273{bottom:555.828800pt;}
.y127{bottom:557.845200pt;}
.y20c{bottom:558.526000pt;}
.y1e4{bottom:558.598000pt;}
.y2aa{bottom:558.846533pt;}
.yd1{bottom:559.966000pt;}
.y22d{bottom:560.134667pt;}
.y2c7{bottom:560.274800pt;}
.y17e{bottom:560.702000pt;}
.y75{bottom:561.758080pt;}
.y85{bottom:561.810640pt;}
.y103{bottom:562.552667pt;}
.y58{bottom:563.273200pt;}
.yaa{bottom:563.387600pt;}
.y1b6{bottom:564.655333pt;}
.y1e8{bottom:566.091333pt;}
.y14c{bottom:566.340667pt;}
.y41{bottom:567.873333pt;}
.y301{bottom:569.513200pt;}
.y251{bottom:570.048133pt;}
.y2e8{bottom:572.333627pt;}
.y20b{bottom:572.759333pt;}
.y1e3{bottom:572.902000pt;}
.y272{bottom:573.162133pt;}
.y6{bottom:573.786667pt;}
.y291{bottom:573.900667pt;}
.y17d{bottom:574.991333pt;}
.y126{bottom:575.178533pt;}
.y2a9{bottom:576.179867pt;}
.y22c{bottom:577.468000pt;}
.y2c6{bottom:577.608133pt;}
.y1b5{bottom:578.956667pt;}
.y74{bottom:579.813440pt;}
.y84{bottom:579.866000pt;}
.y1e7{bottom:580.327333pt;}
.ya9{bottom:580.720933pt;}
.y2e4{bottom:581.828667pt;}
.y14b{bottom:583.674000pt;}
.yd0{bottom:584.686000pt;}
.y300{bottom:586.846533pt;}
.y20a{bottom:587.060667pt;}
.y1e2{bottom:587.139467pt;}
.y102{bottom:587.352667pt;}
.y250{bottom:587.381467pt;}
.y26{bottom:587.787067pt;}
.y57{bottom:588.166533pt;}
.y271{bottom:590.495467pt;}
.y2e7{bottom:591.216667pt;}
.y40{bottom:591.868000pt;}
.y125{bottom:592.511867pt;}
.y5{bottom:592.685334pt;}
.y2a8{bottom:593.513200pt;}
.y22b{bottom:594.801333pt;}
.y17c{bottom:596.018000pt;}
.y73{bottom:597.868800pt;}
.ya8{bottom:598.054267pt;}
.y1e1{bottom:601.443467pt;}
.ycf{bottom:601.486000pt;}
.y2c5{bottom:602.501467pt;}
.y101{bottom:604.072667pt;}
.y2ff{bottom:604.179867pt;}
.y56{bottom:605.499867pt;}
.y8b{bottom:607.553824pt;}
.y270{bottom:607.828800pt;}
.y1b4{bottom:607.968800pt;}
.y14a{bottom:608.567467pt;}
.y124{bottom:609.845200pt;}
.y17b{bottom:610.308800pt;}
.y2a7{bottom:610.846533pt;}
.y22a{bottom:612.134667pt;}
.y24f{bottom:612.274800pt;}
.y29e{bottom:614.131467pt;}
.y290{bottom:614.131733pt;}
.ya7{bottom:615.387600pt;}
.y3f{bottom:615.862667pt;}
.y209{bottom:616.072800pt;}
.yc7{bottom:618.206133pt;}
.y2c4{bottom:619.834800pt;}
.y100{bottom:620.872800pt;}
.y2fe{bottom:621.513200pt;}
.y55{bottom:622.833200pt;}
.y8a{bottom:625.609184pt;}
.y123{bottom:627.178533pt;}
.y2a6{bottom:628.179867pt;}
.y208{bottom:630.307467pt;}
.y1e0{bottom:630.460800pt;}
.y17a{bottom:631.335467pt;}
.y29d{bottom:631.464800pt;}
.y28f{bottom:631.465067pt;}
.ya6{bottom:632.720933pt;}
.yc6{bottom:635.006133pt;}
.y1b1{bottom:636.980800pt;}
.y229{bottom:637.028000pt;}
.y24e{bottom:637.168133pt;}
.y171{bottom:637.528800pt;}
.y2fd{bottom:638.846533pt;}
.y3e{bottom:639.857333pt;}
.y83{bottom:643.478133pt;}
.y89{bottom:643.664544pt;}
.y1b3{bottom:644.472800pt;}
.y122{bottom:644.511867pt;}
.y207{bottom:644.608800pt;}
.y1df{bottom:644.698133pt;}
.y2c3{bottom:644.728133pt;}
.y2a5{bottom:645.513200pt;}
.y179{bottom:645.626133pt;}
.y54{bottom:647.726533pt;}
.y26f{bottom:647.839467pt;}
.y149{bottom:648.798133pt;}
.y28e{bottom:648.798400pt;}
.y2e3{bottom:649.647946pt;}
.ya5{bottom:650.054267pt;}
.y1b0{bottom:651.282133pt;}
.yc5{bottom:651.726133pt;}
.y170{bottom:651.750133pt;}
.y228{bottom:654.361333pt;}
.y24d{bottom:654.501467pt;}
.yfc{bottom:654.952800pt;}
.y2fc{bottom:656.179867pt;}
.y81{bottom:656.956907pt;}
.y1b2{bottom:658.706133pt;}
.y206{bottom:658.842267pt;}
.y1de{bottom:659.002133pt;}
.y2e0{bottom:659.091227pt;}
.y178{bottom:659.848800pt;}
.y121{bottom:661.845200pt;}
.y2c2{bottom:662.061467pt;}
.y2a4{bottom:662.846533pt;}
.y3d{bottom:663.852000pt;}
.y53{bottom:665.059867pt;}
.y1af{bottom:665.515467pt;}
.y16f{bottom:666.040800pt;}
.y148{bottom:666.131467pt;}
.y28d{bottom:666.131733pt;}
.ya4{bottom:667.387600pt;}
.yc4{bottom:668.526133pt;}
.y2e2{bottom:668.532560pt;}
.y3{bottom:668.977329pt;}
.y227{bottom:671.694667pt;}
.y2fb{bottom:673.513200pt;}
.y177{bottom:674.138133pt;}
.y80{bottom:675.012267pt;}
.yf9{bottom:675.672933pt;}
.ybf{bottom:676.926133pt;}
.y2df{bottom:677.974267pt;}
.y120{bottom:679.178533pt;}
.y24c{bottom:679.394800pt;}
.yfb{bottom:679.672933pt;}
.y1ae{bottom:679.818267pt;}
.y1dd{bottom:680.050267pt;}
.y2a3{bottom:680.179867pt;}
.y16e{bottom:680.262267pt;}
.y52{bottom:682.393200pt;}
.y147{bottom:683.464800pt;}
.y28c{bottom:683.465067pt;}
.ya3{bottom:684.720933pt;}
.yc3{bottom:685.246267pt;}
.y2c1{bottom:686.954800pt;}
.y2e1{bottom:687.415600pt;}
.y88{bottom:687.659438pt;}
.y3c{bottom:687.846667pt;}
.y205{bottom:687.922267pt;}
.y226{bottom:689.028000pt;}
.y2fa{bottom:690.846533pt;}
.y29c{bottom:691.023600pt;}
.y7f{bottom:693.067627pt;}
.yce{bottom:693.246267pt;}
.y1dc{bottom:694.354267pt;}
.y16d{bottom:694.552933pt;}
.y176{bottom:695.166267pt;}
.yfa{bottom:696.472933pt;}
.y11f{bottom:696.511867pt;}
.y24b{bottom:696.728133pt;}
.y2a2{bottom:697.513200pt;}
.y25{bottom:697.626667pt;}
.y28b{bottom:700.798400pt;}
.yc2{bottom:702.046267pt;}
.ya2{bottom:702.054267pt;}
.y26e{bottom:702.074800pt;}
.y2c0{bottom:704.288133pt;}
.y225{bottom:706.361333pt;}
.y51{bottom:707.286533pt;}
.y2f9{bottom:708.179867pt;}
.y146{bottom:708.356933pt;}
.y16c{bottom:708.775600pt;}
.y1ad{bottom:708.830267pt;}
.y175{bottom:709.455600pt;}
.ycd{bottom:710.046267pt;}
.y7e{bottom:711.122987pt;}
.y11e{bottom:713.845200pt;}
.y24a{bottom:714.061467pt;}
.y2a1{bottom:714.846533pt;}
.y1db{bottom:715.402267pt;}
.y204{bottom:715.775600pt;}
.y28a{bottom:718.131733pt;}
.yc1{bottom:718.766267pt;}
.ya1{bottom:719.387600pt;}
.y26d{bottom:719.408133pt;}
.y2bf{bottom:721.621467pt;}
.y1ac{bottom:723.063600pt;}
.y16b{bottom:723.065067pt;}
.y3b{bottom:723.178667pt;}
.y224{bottom:723.694667pt;}
.y50{bottom:724.619867pt;}
.y2f8{bottom:725.513200pt;}
.y2de{bottom:726.741467pt;}
.ycc{bottom:726.766267pt;}
.y7d{bottom:729.178347pt;}
.y1da{bottom:729.707733pt;}
.y203{bottom:730.078267pt;}
.y174{bottom:730.482267pt;}
.y82{bottom:730.515600pt;}
.yf8{bottom:730.552933pt;}
.y11d{bottom:731.178533pt;}
.y29b{bottom:731.254667pt;}
.y2a0{bottom:732.179867pt;}
.yc0{bottom:735.566267pt;}
.ya0{bottom:736.720933pt;}
.y26c{bottom:736.741467pt;}
.y16a{bottom:737.287733pt;}
.y1ab{bottom:737.364933pt;}
.y24{bottom:738.266667pt;}
.y249{bottom:738.954800pt;}
.y4f{bottom:741.953200pt;}
.y2f7{bottom:742.846533pt;}
.y289{bottom:743.023733pt;}
.ycb{bottom:743.566267pt;}
.y1d9{bottom:743.943733pt;}
.y173{bottom:744.773067pt;}
.y2be{bottom:746.514800pt;}
.y7c{bottom:747.233707pt;}
.yf6{bottom:747.273067pt;}
.y8c{bottom:747.944933pt;}
.y11c{bottom:748.511867pt;}
.y145{bottom:748.588000pt;}
.y29f{bottom:749.513200pt;}
.y202{bottom:751.122400pt;}
.y169{bottom:751.578400pt;}
.y1aa{bottom:751.598267pt;}
.y26b{bottom:754.074800pt;}
.y248{bottom:756.288133pt;}
.y1d8{bottom:758.247733pt;}
.y172{bottom:758.995733pt;}
.y2f6{bottom:760.179867pt;}
.yca{bottom:760.286400pt;}
.y2dd{bottom:761.634800pt;}
.y2bd{bottom:763.848133pt;}
.yf7{bottom:764.073067pt;}
.y7b{bottom:765.289067pt;}
.y168{bottom:765.799733pt;}
.y11b{bottom:765.845200pt;}
.y1a9{bottom:765.899600pt;}
.y144{bottom:765.921333pt;}
.y4e{bottom:766.846533pt;}
.y26a{bottom:771.408133pt;}
.y1d7{bottom:772.485067pt;}
.y9f{bottom:776.731733pt;}
.yc9{bottom:777.086400pt;}
.y2f5{bottom:777.513200pt;}
.y2dc{bottom:778.968133pt;}
.y167{bottom:780.090400pt;}
.y1a8{bottom:780.133067pt;}
.y247{bottom:781.181467pt;}
.y2{bottom:781.661334pt;}
.y11a{bottom:783.178533pt;}
.y143{bottom:783.254667pt;}
.y4d{bottom:784.179867pt;}
.y269{bottom:788.741467pt;}
.y23{bottom:791.867067pt;}
.y1d6{bottom:793.601200pt;}
.yc8{bottom:793.806533pt;}
.y1a7{bottom:794.435733pt;}
.y2f4{bottom:794.846533pt;}
.y7a{bottom:794.943040pt;}
.y2db{bottom:796.301467pt;}
.yf5{bottom:798.153200pt;}
.y246{bottom:798.514800pt;}
.y119{bottom:800.511867pt;}
.y142{bottom:800.588000pt;}
.y4c{bottom:801.513200pt;}
.yef{bottom:802.153200pt;}
.y268{bottom:806.074800pt;}
.y1d5{bottom:807.837200pt;}
.y1a6{bottom:808.669067pt;}
.y166{bottom:808.806533pt;}
.y2f3{bottom:812.179867pt;}
.y79{bottom:812.998400pt;}
.y2da{bottom:813.634800pt;}
.y245{bottom:815.848133pt;}
.y118{bottom:817.845200pt;}
.y141{bottom:817.921333pt;}
.y4b{bottom:818.846533pt;}
.yee{bottom:818.953067pt;}
.y22{bottom:819.707067pt;}
.y1d4{bottom:822.141200pt;}
.y165{bottom:822.621200pt;}
.yf4{bottom:822.953067pt;}
.y1a5{bottom:822.970400pt;}
.y267{bottom:823.408133pt;}
.ybe{bottom:827.966533pt;}
.y2f2{bottom:829.513200pt;}
.y9e{bottom:830.968133pt;}
.y117{bottom:835.178533pt;}
.y140{bottom:835.254667pt;}
.yed{bottom:835.673200pt;}
.y4a{bottom:836.179867pt;}
.ybc{bottom:836.286533pt;}
.y164{bottom:836.434533pt;}
.yf3{bottom:839.673200pt;}
.y244{bottom:840.741467pt;}
.ye9{bottom:844.073200pt;}
.ybb{bottom:844.686533pt;}
.y30e{bottom:845.168133pt;}
.y2f1{bottom:846.846533pt;}
.y9d{bottom:848.301467pt;}
.y163{bottom:850.247867pt;}
.y1d3{bottom:850.886533pt;}
.y1a4{bottom:851.710667pt;}
.yec{bottom:852.473200pt;}
.y13f{bottom:852.588000pt;}
.y49{bottom:853.513200pt;}
.yf2{bottom:856.473200pt;}
.y243{bottom:858.074800pt;}
.y1{bottom:859.312000pt;}
.y116{bottom:860.070533pt;}
.ybd{bottom:861.486533pt;}
.y2f0{bottom:864.179867pt;}
.y1d2{bottom:864.714533pt;}
.y72{bottom:865.408133pt;}
.y1a3{bottom:865.534533pt;}
.y9c{bottom:865.634800pt;}
.yeb{bottom:869.193333pt;}
.y13e{bottom:869.921333pt;}
.y48{bottom:870.846533pt;}
.y162{bottom:870.866533pt;}
.yf1{bottom:873.193333pt;}
.y1d1{bottom:878.542667pt;}
.y1a2{bottom:879.360000pt;}
.y39{bottom:880.484000pt;}
.y9b{bottom:882.968133pt;}
.y161{bottom:884.681333pt;}
.yea{bottom:885.993333pt;}
.y13d{bottom:887.254667pt;}
.y47{bottom:888.179867pt;}
.yf0{bottom:889.993333pt;}
.y1d0{bottom:892.370667pt;}
.y30d{bottom:892.741467pt;}
.y1a1{bottom:893.185333pt;}
.yba{bottom:895.166667pt;}
.y71{bottom:900.301467pt;}
.y2ef{bottom:904.184133pt;}
.y13c{bottom:904.588000pt;}
.y1cf{bottom:913.009333pt;}
.y1a0{bottom:913.820000pt;}
.y160{bottom:916.062667pt;}
.y70{bottom:917.634800pt;}
.ye8{bottom:923.673333pt;}
.y1ce{bottom:926.837467pt;}
.y19f{bottom:927.645333pt;}
.y46{bottom:928.190800pt;}
.y13b{bottom:929.481333pt;}
.yb9{bottom:932.062667pt;}
.y6f{bottom:934.968133pt;}
.y3a{bottom:949.338667pt;}
.y44{bottom:983.897467pt;}
.y6d{bottom:984.653467pt;}
.h7{height:28.560000pt;}
.h8{height:29.093750pt;}
.h1d{height:34.501509pt;}
.h21{height:34.529035pt;}
.h24{height:34.535917pt;}
.h1c{height:34.774248pt;}
.h20{height:34.801992pt;}
.h23{height:34.808928pt;}
.h1f{height:36.819792pt;}
.h1e{height:36.956162pt;}
.h22{height:36.985646pt;}
.h25{height:36.993018pt;}
.h26{height:37.949654pt;}
.h6{height:40.800000pt;}
.h16{height:40.881600pt;}
.h15{height:41.141771pt;}
.hc{height:42.048000pt;}
.h28{height:42.812622pt;}
.h3{height:42.840000pt;}
.h27{height:43.027760pt;}
.h13{height:43.360000pt;}
.h18{height:43.446720pt;}
.h11{height:44.410667pt;}
.h1b{height:44.575467pt;}
.h1a{height:44.576000pt;}
.h19{height:44.576533pt;}
.h29{height:45.179148pt;}
.h14{height:46.720000pt;}
.h10{height:47.696000pt;}
.he{height:48.576000pt;}
.h2{height:48.960000pt;}
.h2a{height:52.624000pt;}
.h9{height:53.517187pt;}
.hd{height:56.064000pt;}
.hb{height:60.288750pt;}
.h12{height:60.736000pt;}
.h5{height:69.360000pt;}
.h17{height:77.046720pt;}
.ha{height:77.625000pt;}
.h4{height:105.826671pt;}
.hf{height:113.045737pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w4{width:793.333333pt;}
.w3{width:793.626667pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x7{left:122.784667pt;}
.x2b{left:126.241200pt;}
.x26{left:127.705067pt;}
.x23{left:129.914133pt;}
.x31{left:135.548128pt;}
.x2d{left:137.478933pt;}
.x28{left:138.933600pt;}
.x2e{left:142.381600pt;}
.x8{left:145.464667pt;}
.xe{left:148.132304pt;}
.x5{left:149.040000pt;}
.xc{left:155.250629pt;}
.xb{left:157.958933pt;}
.x3c{left:159.471522pt;}
.x3d{left:160.777599pt;}
.x1e{left:168.238726pt;}
.x30{left:169.537600pt;}
.xd{left:172.102299pt;}
.xf{left:173.411312pt;}
.x36{left:175.151067pt;}
.x10{left:176.719957pt;}
.x3b{left:179.661733pt;}
.x4{left:180.874667pt;}
.x37{left:181.915916pt;}
.x24{left:190.713733pt;}
.x35{left:193.089733pt;}
.x1d{left:234.231067pt;}
.x25{left:310.633867pt;}
.x18{left:326.694000pt;}
.x2c{left:327.963333pt;}
.x27{left:329.264667pt;}
.x1c{left:336.630662pt;}
.x29{left:340.492667pt;}
.x19{left:343.244667pt;}
.x2a{left:345.392667pt;}
.x2f{left:347.235333pt;}
.x11{left:382.668800pt;}
.x12{left:398.015856pt;}
.x3{left:404.408000pt;}
.x1b{left:422.589221pt;}
.x1a{left:430.714133pt;}
.x34{left:448.052059pt;}
.x22{left:455.744933pt;}
.x33{left:459.019958pt;}
.x3a{left:460.435274pt;}
.x39{left:480.846267pt;}
.x38{left:499.832933pt;}
.x32{left:509.799600pt;}
.x1f{left:512.795179pt;}
.x21{left:517.096869pt;}
.x20{left:528.638758pt;}
.x15{left:562.800773pt;}
.x13{left:573.333067pt;}
.x9{left:579.042533pt;}
.x16{left:582.059824pt;}
.x17{left:591.283104pt;}
.x14{left:594.096731pt;}
.x6{left:652.070533pt;}
.xa{left:655.142933pt;}
}




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