
    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_e11c5030b9ca7a277680391f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e4a897a1119af1c94c4f6325.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.909000;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_f0fac8d3cc39b2acfcf17bb5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_83bd7f725fbae08e27a754f2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.890000;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_af4bcd62e873e8944f04e06c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a265aca04efedd689d606fa3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c6e236a6464088ac8f75c995.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.909000;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_a70d902acb489f1bf8ac52c5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.525000;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_04554135692fadbf459e7b1c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.782000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_83fb340d3a634c59d6c8264d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_847568a3de8251ab2b503747.woff2')format("woff");}.ffb{font-family:ffb;line-height:2.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5b9bc31e400758ce1c13d2b1.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.311035;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_ccd306a9f2db680e1db0a7ba.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284180;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_90fa29f2d71b71c25cce558c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284668;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_238c01a2593cf089e05dc85f.woff2')format("woff");}.fff{font-family:fff;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_f32e37b7ef7b563566938ac0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.688000;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_466cbd9551f1a3998a4ac11d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.056000;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_1ae65b7e315f1f49026f716f.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.284180;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_cbbc20569d511c8cde01ac72.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.284668;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_59d37e6cf8d9e2822e431750.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.311035;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_28083921f838e5d09f208965.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_b359690935255ca45248bfc5.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_6929f00fd78beebd109b3ef0.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.839000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_e2c63f798a401a56da50ccef.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_4a1fcc546809664f901cac6f.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_b588ec10664875a0e0c4f0a3.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_bbcf1981bb754a34f8f1e008.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_c2b37c8e4c45ac3e2c503cbb.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.810000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_50bea0548995be4eac292df8.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_4a1fcc546809664f901cac6f.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.284180;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:ff1f;src:url('chunks/assets/font_c7c44567d9a1e0c9f15a14a3.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.311035;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:ff20;src:url('chunks/assets/font_505deb616376d38ba97a5795.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.284180;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v10{vertical-align:-29.100690px;}
.va{vertical-align:-21.660000px;}
.v19{vertical-align:-16.860000px;}
.vd{vertical-align:-14.940000px;}
.v4{vertical-align:-12.540000px;}
.v1b{vertical-align:-10.365770px;}
.v1{vertical-align:-8.940000px;}
.v0{vertical-align:0.000000px;}
.v1c{vertical-align:8.996808px;}
.vc{vertical-align:15.720000px;}
.v1d{vertical-align:17.992855px;}
.v8{vertical-align:20.640000px;}
.vb{vertical-align:21.660000px;}
.v12{vertical-align:23.520000px;}
.v3{vertical-align:24.660000px;}
.v7{vertical-align:26.640000px;}
.v5{vertical-align:27.900000px;}
.v18{vertical-align:31.080000px;}
.v17{vertical-align:34.680000px;}
.v14{vertical-align:37.545366px;}
.v6{vertical-align:40.980000px;}
.v9{vertical-align:42.300000px;}
.v11{vertical-align:43.650064px;}
.v1a{vertical-align:67.560000px;}
.vf{vertical-align:77.520000px;}
.v13{vertical-align:81.480000px;}
.v15{vertical-align:84.300000px;}
.ve{vertical-align:102.180000px;}
.v2{vertical-align:120.120000px;}
.v16{vertical-align:125.340000px;}
.ls1c{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.004130px;}
.ls22{letter-spacing:0.004672px;}
.ls25{letter-spacing:0.005437px;}
.ls34{letter-spacing:0.006655px;}
.ls2b{letter-spacing:0.013457px;}
.ls84{letter-spacing:0.013672px;}
.ls6b{letter-spacing:0.013926px;}
.lsc3{letter-spacing:0.014657px;}
.ls7b{letter-spacing:0.015101px;}
.ls6{letter-spacing:0.017492px;}
.lsd8{letter-spacing:0.019513px;}
.ls10{letter-spacing:0.022812px;}
.ls2d{letter-spacing:0.024496px;}
.ls24{letter-spacing:0.029362px;}
.ls5{letter-spacing:0.029767px;}
.ls77{letter-spacing:0.032336px;}
.ls11{letter-spacing:0.033927px;}
.lsf0{letter-spacing:0.037095px;}
.lsc8{letter-spacing:0.042536px;}
.ls96{letter-spacing:0.046479px;}
.ls69{letter-spacing:0.051000px;}
.lscf{letter-spacing:0.054774px;}
.lsc9{letter-spacing:0.450565px;}
.ls2f{letter-spacing:1.195560px;}
.ls120{letter-spacing:1.277250px;}
.ls90{letter-spacing:1.604930px;}
.ls7d{letter-spacing:1.648166px;}
.ls94{letter-spacing:1.664930px;}
.ls144{letter-spacing:1.997967px;}
.ls143{letter-spacing:1.999006px;}
.ls76{letter-spacing:2.115101px;}
.ls79{letter-spacing:2.175101px;}
.ls108{letter-spacing:2.303177px;}
.ls7a{letter-spacing:2.360341px;}
.lsd9{letter-spacing:2.420341px;}
.ls9{letter-spacing:2.934026px;}
.lse8{letter-spacing:2.946000px;}
.ls36{letter-spacing:2.946655px;}
.ls9e{letter-spacing:2.952587px;}
.ls1f{letter-spacing:2.953457px;}
.ls2{letter-spacing:2.953926px;}
.ls61{letter-spacing:2.955373px;}
.ls9d{letter-spacing:2.956561px;}
.ls136{letter-spacing:2.956586px;}
.ls0{letter-spacing:2.964840px;}
.ls146{letter-spacing:2.968074px;}
.lsd6{letter-spacing:2.973960px;}
.ls1{letter-spacing:2.988900px;}
.ls7{letter-spacing:2.994026px;}
.ls14{letter-spacing:3.006655px;}
.ls20{letter-spacing:3.013457px;}
.ls60{letter-spacing:3.015373px;}
.ls50{letter-spacing:3.016586px;}
.ls112{letter-spacing:3.018000px;}
.ls147{letter-spacing:3.028074px;}
.lsd{letter-spacing:3.149563px;}
.ls5a{letter-spacing:3.554916px;}
.ls5b{letter-spacing:3.664672px;}
.ls48{letter-spacing:4.065688px;}
.ls49{letter-spacing:4.084672px;}
.ls4a{letter-spacing:4.094916px;}
.ls137{letter-spacing:4.250545px;}
.ls67{letter-spacing:4.490482px;}
.ls39{letter-spacing:4.648708px;}
.ls18{letter-spacing:4.708708px;}
.lsa4{letter-spacing:4.794774px;}
.lsa5{letter-spacing:4.873672px;}
.ls121{letter-spacing:5.093394px;}
.ls7c{letter-spacing:5.420341px;}
.lsff{letter-spacing:5.644672px;}
.lsfe{letter-spacing:5.672336px;}
.ls2e{letter-spacing:5.939588px;}
.ls23{letter-spacing:5.979254px;}
.ls2c{letter-spacing:5.999588px;}
.lsfb{letter-spacing:6.508377px;}
.ls47{letter-spacing:6.509362px;}
.lsee{letter-spacing:6.515802px;}
.ls104{letter-spacing:6.568377px;}
.ls57{letter-spacing:6.569362px;}
.ls8b{letter-spacing:7.131000px;}
.ls75{letter-spacing:7.134026px;}
.ls74{letter-spacing:7.172336px;}
.lsbc{letter-spacing:7.194026px;}
.ls110{letter-spacing:7.435364px;}
.lsf8{letter-spacing:7.495364px;}
.lsb{letter-spacing:7.708708px;}
.ls145{letter-spacing:7.995585px;}
.ls114{letter-spacing:8.404672px;}
.ls55{letter-spacing:8.644672px;}
.ls54{letter-spacing:8.654916px;}
.ls3b{letter-spacing:8.772691px;}
.lsd3{letter-spacing:8.788166px;}
.ls30{letter-spacing:9.557976px;}
.lsbd{letter-spacing:9.913672px;}
.ls8{letter-spacing:9.973672px;}
.ls101{letter-spacing:10.532336px;}
.ls102{letter-spacing:10.564672px;}
.ls135{letter-spacing:12.904672px;}
.lsd2{letter-spacing:12.954026px;}
.ls97{letter-spacing:13.232336px;}
.ls15{letter-spacing:13.246007px;}
.lsec{letter-spacing:13.246479px;}
.lse2{letter-spacing:13.251000px;}
.ls52{letter-spacing:13.264672px;}
.ls3e{letter-spacing:13.270716px;}
.ls13{letter-spacing:13.273672px;}
.ls51{letter-spacing:13.274916px;}
.lsdc{letter-spacing:13.292336px;}
.ls91{letter-spacing:13.296873px;}
.ls140{letter-spacing:13.306007px;}
.ls95{letter-spacing:13.306479px;}
.ls37{letter-spacing:13.311493px;}
.ls92{letter-spacing:13.314774px;}
.ls8a{letter-spacing:13.324672px;}
.lsfa{letter-spacing:13.334916px;}
.ls106{letter-spacing:13.352336px;}
.ls107{letter-spacing:13.384672px;}
.lsa1{letter-spacing:13.564672px;}
.ls126{letter-spacing:13.864672px;}
.ls4e{letter-spacing:14.044672px;}
.ls4d{letter-spacing:14.054916px;}
.lse9{letter-spacing:14.110392px;}
.lsea{letter-spacing:14.121552px;}
.ls9c{letter-spacing:14.132336px;}
.ls10e{letter-spacing:14.404672px;}
.ls12e{letter-spacing:14.764672px;}
.ls12f{letter-spacing:14.824672px;}
.ls11b{letter-spacing:14.884672px;}
.ls89{letter-spacing:14.908166px;}
.ls113{letter-spacing:14.908377px;}
.lse1{letter-spacing:14.968166px;}
.ls12a{letter-spacing:15.508166px;}
.ls13f{letter-spacing:15.883230px;}
.ls46{letter-spacing:15.945688px;}
.ls12{letter-spacing:16.266655px;}
.ls12d{letter-spacing:16.468166px;}
.lsa9{letter-spacing:16.551000px;}
.lsf{letter-spacing:16.564672px;}
.lsae{letter-spacing:16.573672px;}
.lsdf{letter-spacing:16.592336px;}
.lsbe{letter-spacing:16.606007px;}
.ls4b{letter-spacing:16.611000px;}
.ls87{letter-spacing:16.614774px;}
.lsc4{letter-spacing:16.615916px;}
.ls59{letter-spacing:16.624672px;}
.lsb7{letter-spacing:16.633672px;}
.ls100{letter-spacing:16.791000px;}
.lsa{letter-spacing:16.797618px;}
.lsfc{letter-spacing:16.832336px;}
.lsa0{letter-spacing:17.224672px;}
.ls13e{letter-spacing:17.570545px;}
.lsa8{letter-spacing:17.845551px;}
.ls5e{letter-spacing:17.856873px;}
.ls5f{letter-spacing:17.905551px;}
.lse6{letter-spacing:17.972336px;}
.ls128{letter-spacing:18.004672px;}
.ls123{letter-spacing:18.037095px;}
.ls124{letter-spacing:18.064672px;}
.lsfd{letter-spacing:18.404930px;}
.ls56{letter-spacing:18.411000px;}
.lsa3{letter-spacing:18.706479px;}
.ls64{letter-spacing:18.735101px;}
.ls9f{letter-spacing:18.824930px;}
.lsc7{letter-spacing:19.024672px;}
.lsc6{letter-spacing:19.034916px;}
.ls10a{letter-spacing:19.144672px;}
.ls13a{letter-spacing:19.243230px;}
.ls3d{letter-spacing:19.259588px;}
.ls35{letter-spacing:19.272830px;}
.ls134{letter-spacing:19.408377px;}
.ls103{letter-spacing:19.491000px;}
.ls32{letter-spacing:19.573457px;}
.ls13d{letter-spacing:19.576586px;}
.ls2a{letter-spacing:19.633457px;}
.ls115{letter-spacing:19.717095px;}
.lsce{letter-spacing:19.726740px;}
.ls27{letter-spacing:19.731000px;}
.ls29{letter-spacing:19.744672px;}
.ls3c{letter-spacing:19.752691px;}
.lscd{letter-spacing:19.754916px;}
.lsf3{letter-spacing:19.768377px;}
.lsef{letter-spacing:19.828377px;}
.ls31{letter-spacing:20.112691px;}
.lsb4{letter-spacing:20.444076px;}
.lsac{letter-spacing:20.451000px;}
.ls16{letter-spacing:20.464672px;}
.ls119{letter-spacing:20.566479px;}
.ls68{letter-spacing:20.570482px;}
.ls11a{letter-spacing:20.584672px;}
.ls132{letter-spacing:20.695500px;}
.ls11c{letter-spacing:20.755364px;}
.ls10d{letter-spacing:20.848377px;}
.lsb3{letter-spacing:20.856873px;}
.lsa6{letter-spacing:20.871000px;}
.ls10f{letter-spacing:20.908377px;}
.lsdb{letter-spacing:20.912336px;}
.lsab{letter-spacing:20.916873px;}
.ls12b{letter-spacing:20.917095px;}
.lsd7{letter-spacing:20.926479px;}
.lsaa{letter-spacing:20.931000px;}
.lse7{letter-spacing:21.018000px;}
.ls105{letter-spacing:21.032336px;}
.ls10c{letter-spacing:21.328377px;}
.lse{letter-spacing:21.333927px;}
.ls125{letter-spacing:21.355364px;}
.lsc2{letter-spacing:21.526007px;}
.lsc0{letter-spacing:21.534774px;}
.lsc1{letter-spacing:21.594774px;}
.ls9a{letter-spacing:21.625551px;}
.ls99{letter-spacing:21.692336px;}
.ls129{letter-spacing:21.711000px;}
.ls5d{letter-spacing:21.865551px;}
.ls5c{letter-spacing:21.876873px;}
.ls3a{letter-spacing:22.014026px;}
.ls85{letter-spacing:22.461349px;}
.ls45{letter-spacing:22.469362px;}
.ls83{letter-spacing:22.486007px;}
.ls8f{letter-spacing:22.544930px;}
.ls28{letter-spacing:22.753457px;}
.lse5{letter-spacing:22.832336px;}
.ls130{letter-spacing:22.911000px;}
.ls58{letter-spacing:23.052691px;}
.ls118{letter-spacing:23.072336px;}
.lsd0{letter-spacing:23.128377px;}
.ls1a{letter-spacing:23.154026px;}
.ls9b{letter-spacing:23.192336px;}
.lsb9{letter-spacing:23.256873px;}
.ls122{letter-spacing:23.260776px;}
.lsb5{letter-spacing:23.751000px;}
.ls65{letter-spacing:23.764672px;}
.ls8d{letter-spacing:23.811000px;}
.ls1b{letter-spacing:23.934026px;}
.ls13c{letter-spacing:23.956586px;}
.ls17{letter-spacing:23.991000px;}
.lsf1{letter-spacing:24.055364px;}
.ls86{letter-spacing:24.074657px;}
.lsf2{letter-spacing:24.115364px;}
.ls4{letter-spacing:24.393927px;}
.lsba{letter-spacing:24.471000px;}
.lsb8{letter-spacing:24.824930px;}
.ls4c{letter-spacing:24.976586px;}
.ls80{letter-spacing:25.280341px;}
.ls82{letter-spacing:25.446655px;}
.ls127{letter-spacing:25.555364px;}
.ls10b{letter-spacing:25.648377px;}
.lsc{letter-spacing:25.652336px;}
.ls109{letter-spacing:25.708377px;}
.ls44{letter-spacing:25.934916px;}
.ls81{letter-spacing:26.235101px;}
.lsbf{letter-spacing:26.451000px;}
.ls7f{letter-spacing:26.548166px;}
.lsb2{letter-spacing:26.665551px;}
.lsb1{letter-spacing:27.139212px;}
.ls3{letter-spacing:27.273927px;}
.ls142{letter-spacing:27.406007px;}
.ls4f{letter-spacing:27.449362px;}
.ls133{letter-spacing:28.195364px;}
.lsa2{letter-spacing:28.232336px;}
.ls78{letter-spacing:28.712336px;}
.lsd5{letter-spacing:29.095916px;}
.ls33{letter-spacing:29.211493px;}
.ls70{letter-spacing:29.212716px;}
.ls6a{letter-spacing:29.234916px;}
.ls6f{letter-spacing:29.271000px;}
.lsca{letter-spacing:29.852336px;}
.lsde{letter-spacing:29.866500px;}
.lsed{letter-spacing:29.902843px;}
.lsf9{letter-spacing:29.926500px;}
.ls117{letter-spacing:30.304672px;}
.ls138{letter-spacing:30.556586px;}
.ls62{letter-spacing:30.793457px;}
.ls63{letter-spacing:30.795373px;}
.ls53{letter-spacing:30.796586px;}
.ls6c{letter-spacing:31.971000px;}
.ls6e{letter-spacing:31.984672px;}
.ls71{letter-spacing:32.031000px;}
.ls73{letter-spacing:32.044672px;}
.ls43{letter-spacing:32.333776px;}
.ls1d{letter-spacing:32.436873px;}
.lscb{letter-spacing:32.815916px;}
.lscc{letter-spacing:32.824672px;}
.ls98{letter-spacing:32.972336px;}
.ls139{letter-spacing:33.343230px;}
.ls12c{letter-spacing:33.559513px;}
.ls131{letter-spacing:34.135364px;}
.lsb0{letter-spacing:34.314026px;}
.ls72{letter-spacing:34.935373px;}
.lsf5{letter-spacing:34.971000px;}
.ls6d{letter-spacing:34.993457px;}
.ls26{letter-spacing:37.693457px;}
.ls13b{letter-spacing:38.450545px;}
.ls111{letter-spacing:38.455364px;}
.lse4{letter-spacing:41.631000px;}
.ls21{letter-spacing:42.096873px;}
.lsf7{letter-spacing:42.604672px;}
.lsf6{letter-spacing:42.637095px;}
.lsf4{letter-spacing:50.095364px;}
.lse3{letter-spacing:57.051000px;}
.ls11e{letter-spacing:59.797095px;}
.lsd1{letter-spacing:61.251493px;}
.lse0{letter-spacing:67.011000px;}
.ls88{letter-spacing:73.744672px;}
.ls40{letter-spacing:80.277486px;}
.ls116{letter-spacing:82.491000px;}
.lsbb{letter-spacing:86.331000px;}
.lsa7{letter-spacing:86.391000px;}
.lsaf{letter-spacing:93.591000px;}
.ls8c{letter-spacing:100.813672px;}
.ls41{letter-spacing:101.321488px;}
.ls11d{letter-spacing:110.917095px;}
.ls11f{letter-spacing:248.271000px;}
.ls19{letter-spacing:266.574026px;}
.ls38{letter-spacing:287.814026px;}
.ls42{letter-spacing:319.574073px;}
.ls3f{letter-spacing:355.311000px;}
.ls8e{letter-spacing:430.791000px;}
.lsad{letter-spacing:437.991000px;}
.lsb6{letter-spacing:438.051000px;}
.ls7e{letter-spacing:455.180341px;}
.lsdd{letter-spacing:460.206655px;}
.lseb{letter-spacing:462.906655px;}
.ls141{letter-spacing:488.012336px;}
.lsc5{letter-spacing:503.174657px;}
.lsda{letter-spacing:508.086655px;}
.lsd4{letter-spacing:536.031493px;}
.ls93{letter-spacing:581.605551px;}
.ls66{letter-spacing:679.815101px;}
.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;}
}
.wse7{word-spacing:-27.198990px;}
.wse9{word-spacing:-20.503854px;}
.wsfc{word-spacing:-19.786518px;}
.ws59{word-spacing:-16.857396px;}
.ws7a{word-spacing:-13.330494px;}
.ws92{word-spacing:-9.700230px;}
.ws126{word-spacing:-6.575580px;}
.ws174{word-spacing:-5.997618px;}
.ws10{word-spacing:-3.012660px;}
.ws6c{word-spacing:-1.255338px;}
.ws1{word-spacing:-0.143460px;}
.ws1f{word-spacing:-0.059778px;}
.ws2{word-spacing:-0.053796px;}
.ws108{word-spacing:-0.047820px;}
.ws56{word-spacing:-0.041844px;}
.ws6b{word-spacing:-0.029886px;}
.ws5a{word-spacing:0.000000px;}
.ws11c{word-spacing:5.630839px;}
.ws55{word-spacing:9.863370px;}
.ws58{word-spacing:9.923148px;}
.ws177{word-spacing:11.859360px;}
.ws4b{word-spacing:11.891916px;}
.wsa0{word-spacing:11.907180px;}
.wsb5{word-spacing:13.151160px;}
.ws190{word-spacing:13.198320px;}
.ws14e{word-spacing:13.207849px;}
.ws73{word-spacing:13.210938px;}
.wsd5{word-spacing:13.479227px;}
.ws6f{word-spacing:13.509828px;}
.ws18c{word-spacing:13.628700px;}
.wsdf{word-spacing:13.748940px;}
.wsb2{word-spacing:13.988052px;}
.ws10d{word-spacing:14.167386px;}
.ws197{word-spacing:14.250360px;}
.ws6d{word-spacing:14.346720px;}
.ws1b{word-spacing:14.406498px;}
.ws81{word-spacing:14.585832px;}
.ws160{word-spacing:14.645610px;}
.ws24{word-spacing:14.705388px;}
.ws17c{word-spacing:14.765166px;}
.wsd7{word-spacing:14.824944px;}
.ws78{word-spacing:14.884722px;}
.ws76{word-spacing:14.944500px;}
.ws84{word-spacing:15.004278px;}
.ws77{word-spacing:15.004330px;}
.ws4f{word-spacing:15.064056px;}
.wsee{word-spacing:15.243390px;}
.ws137{word-spacing:15.303168px;}
.ws128{word-spacing:15.362946px;}
.wse{word-spacing:15.439452px;}
.ws1a{word-spacing:15.482502px;}
.ws9e{word-spacing:15.602058px;}
.ws17d{word-spacing:15.781392px;}
.ws96{word-spacing:15.888138px;}
.ws95{word-spacing:15.900948px;}
.wsaa{word-spacing:15.994938px;}
.ws50{word-spacing:16.020504px;}
.ws181{word-spacing:16.067520px;}
.ws12{word-spacing:16.080282px;}
.ws182{word-spacing:16.115340px;}
.ws23{word-spacing:16.199838px;}
.ws112{word-spacing:16.234994px;}
.ws8e{word-spacing:16.259616px;}
.ws89{word-spacing:16.319394px;}
.wsb{word-spacing:16.461576px;}
.ws152{word-spacing:16.497900px;}
.ws6a{word-spacing:16.498728px;}
.wsc1{word-spacing:16.520281px;}
.ws11d{word-spacing:16.523558px;}
.ws133{word-spacing:16.537905px;}
.wsb4{word-spacing:16.538945px;}
.wse6{word-spacing:16.555894px;}
.ws99{word-spacing:16.558506px;}
.wse2{word-spacing:16.583558px;}
.ws11f{word-spacing:16.595899px;}
.ws14a{word-spacing:16.597683px;}
.ws29{word-spacing:16.618284px;}
.ws183{word-spacing:16.641360px;}
.ws57{word-spacing:16.678062px;}
.ws5d{word-spacing:16.689180px;}
.wsfe{word-spacing:16.737840px;}
.wsd8{word-spacing:16.797618px;}
.ws149{word-spacing:16.938432px;}
.ws49{word-spacing:16.976952px;}
.wse0{word-spacing:17.035894px;}
.ws46{word-spacing:17.036730px;}
.ws34{word-spacing:17.096508px;}
.ws3f{word-spacing:17.275842px;}
.ws153{word-spacing:17.310840px;}
.wsa2{word-spacing:17.335620px;}
.ws10c{word-spacing:17.455176px;}
.ws8b{word-spacing:17.574732px;}
.ws52{word-spacing:17.694288px;}
.wse3{word-spacing:17.754066px;}
.ws4c{word-spacing:17.789040px;}
.ws25{word-spacing:17.813844px;}
.wsa6{word-spacing:17.840790px;}
.ws10f{word-spacing:17.873622px;}
.ws117{word-spacing:17.933400px;}
.ws37{word-spacing:18.052956px;}
.ws4a{word-spacing:18.112734px;}
.ws193{word-spacing:18.171600px;}
.ws144{word-spacing:18.191790px;}
.ws145{word-spacing:18.232290px;}
.ws188{word-spacing:18.267240px;}
.ws9c{word-spacing:18.292068px;}
.ws189{word-spacing:18.315060px;}
.ws9d{word-spacing:18.351846px;}
.ws18f{word-spacing:18.506340px;}
.wsdb{word-spacing:18.590958px;}
.ws14f{word-spacing:18.650736px;}
.ws47{word-spacing:18.770292px;}
.wsa{word-spacing:18.828600px;}
.ws15{word-spacing:18.830070px;}
.ws192{word-spacing:18.841080px;}
.wsa3{word-spacing:18.889848px;}
.ws191{word-spacing:18.936720px;}
.ws75{word-spacing:18.949626px;}
.ws74{word-spacing:18.962568px;}
.wsaf{word-spacing:19.069182px;}
.ws3c{word-spacing:19.128960px;}
.wsde{word-spacing:19.248516px;}
.ws26{word-spacing:19.308294px;}
.ws7f{word-spacing:19.368072px;}
.ws3b{word-spacing:19.427850px;}
.wsa1{word-spacing:19.487628px;}
.ws11a{word-spacing:19.534994px;}
.ws36{word-spacing:19.547406px;}
.wsc5{word-spacing:19.594994px;}
.ws7b{word-spacing:19.607184px;}
.ws69{word-spacing:19.666962px;}
.wsb7{word-spacing:19.786518px;}
.wsfb{word-spacing:19.842155px;}
.ws187{word-spacing:19.845300px;}
.ws16a{word-spacing:19.846296px;}
.ws21{word-spacing:19.906074px;}
.wsf3{word-spacing:20.025630px;}
.ws184{word-spacing:20.084400px;}
.ws12a{word-spacing:20.085408px;}
.wsd{word-spacing:20.119704px;}
.wscc{word-spacing:20.145186px;}
.wsf2{word-spacing:20.204964px;}
.ws97{word-spacing:20.324520px;}
.ws63{word-spacing:20.563632px;}
.ws62{word-spacing:20.623410px;}
.ws168{word-spacing:20.660790px;}
.ws167{word-spacing:20.663558px;}
.ws166{word-spacing:20.682222px;}
.ws38{word-spacing:20.683188px;}
.wse4{word-spacing:20.742966px;}
.ws6{word-spacing:20.765256px;}
.ws14d{word-spacing:20.776399px;}
.ws42{word-spacing:20.802744px;}
.ws131{word-spacing:20.836399px;}
.wse1{word-spacing:20.840790px;}
.ws16f{word-spacing:20.847432px;}
.ws18{word-spacing:20.862522px;}
.ws159{word-spacing:20.867370px;}
.wsc3{word-spacing:20.875894px;}
.ws17{word-spacing:20.922300px;}
.ws130{word-spacing:20.982078px;}
.ws7d{word-spacing:21.101634px;}
.ws7c{word-spacing:21.140532px;}
.ws7e{word-spacing:21.161412px;}
.wsbf{word-spacing:21.221190px;}
.ws70{word-spacing:21.280968px;}
.ws6e{word-spacing:21.340746px;}
.ws179{word-spacing:21.400524px;}
.wsa9{word-spacing:21.460302px;}
.wsc6{word-spacing:21.520080px;}
.wsc7{word-spacing:21.579858px;}
.ws156{word-spacing:21.615864px;}
.wsc8{word-spacing:21.620790px;}
.wsb3{word-spacing:21.639636px;}
.ws154{word-spacing:21.662568px;}
.ws157{word-spacing:21.680790px;}
.ws155{word-spacing:21.697683px;}
.ws178{word-spacing:21.759192px;}
.wsa5{word-spacing:21.800790px;}
.ws98{word-spacing:21.818970px;}
.wsa4{word-spacing:21.836148px;}
.ws93{word-spacing:21.878748px;}
.ws51{word-spacing:21.938526px;}
.wsce{word-spacing:21.945654px;}
.ws3a{word-spacing:21.998304px;}
.wsff{word-spacing:22.117860px;}
.ws8c{word-spacing:22.177638px;}
.ws13f{word-spacing:22.283558px;}
.ws12d{word-spacing:22.297194px;}
.ws12c{word-spacing:22.297683px;}
.ws18b{word-spacing:22.331940px;}
.ws40{word-spacing:22.356972px;}
.ws17f{word-spacing:22.379760px;}
.wsbc{word-spacing:22.416750px;}
.ws17e{word-spacing:22.427580px;}
.wsef{word-spacing:22.463558px;}
.wsf0{word-spacing:22.476528px;}
.ws54{word-spacing:22.536306px;}
.ws43{word-spacing:22.655862px;}
.ws194{word-spacing:22.666680px;}
.ws72{word-spacing:22.775418px;}
.ws71{word-spacing:22.799580px;}
.ws45{word-spacing:22.835196px;}
.ws163{word-spacing:22.880790px;}
.ws162{word-spacing:22.894938px;}
.wse5{word-spacing:22.894974px;}
.ws18a{word-spacing:22.905780px;}
.ws2a{word-spacing:22.954752px;}
.ws18d{word-spacing:23.001420px;}
.ws31{word-spacing:23.014530px;}
.ws18e{word-spacing:23.049240px;}
.ws28{word-spacing:23.074308px;}
.ws12b{word-spacing:23.077683px;}
.wscb{word-spacing:23.134086px;}
.ws150{word-spacing:23.144880px;}
.ws151{word-spacing:23.192700px;}
.wsca{word-spacing:23.193864px;}
.ws82{word-spacing:23.373198px;}
.wsf8{word-spacing:23.432976px;}
.ws3d{word-spacing:23.492754px;}
.wsf7{word-spacing:23.552532px;}
.ws11{word-spacing:23.612310px;}
.ws30{word-spacing:23.731866px;}
.ws5{word-spacing:23.777832px;}
.ws80{word-spacing:23.791644px;}
.ws196{word-spacing:23.814360px;}
.ws5e{word-spacing:23.851422px;}
.ws195{word-spacing:23.862180px;}
.wseb{word-spacing:23.911200px;}
.wsbd{word-spacing:23.970978px;}
.wsb9{word-spacing:24.007938px;}
.wsba{word-spacing:24.021540px;}
.wsbb{word-spacing:24.027534px;}
.ws14b{word-spacing:24.030756px;}
.ws103{word-spacing:24.090534px;}
.ws53{word-spacing:24.150312px;}
.wsec{word-spacing:24.210090px;}
.ws13c{word-spacing:24.329646px;}
.wsc{word-spacing:24.369588px;}
.ws41{word-spacing:24.389424px;}
.ws15a{word-spacing:24.449202px;}
.wsbe{word-spacing:24.568758px;}
.ws68{word-spacing:24.628536px;}
.wsb6{word-spacing:24.807870px;}
.ws142{word-spacing:24.867648px;}
.wscf{word-spacing:24.934994px;}
.ws8a{word-spacing:24.987204px;}
.wsac{word-spacing:25.046982px;}
.wsdc{word-spacing:25.286094px;}
.ws39{word-spacing:25.345872px;}
.ws119{word-spacing:25.485737px;}
.ws134{word-spacing:25.500073px;}
.ws132{word-spacing:25.509883px;}
.ws11e{word-spacing:25.519609px;}
.ws125{word-spacing:25.532186px;}
.ws111{word-spacing:25.532408px;}
.ws110{word-spacing:25.545737px;}
.ws120{word-spacing:25.559851px;}
.ws11b{word-spacing:25.578686px;}
.ws48{word-spacing:25.584984px;}
.ws44{word-spacing:25.644762px;}
.ws17a{word-spacing:25.704540px;}
.ws94{word-spacing:25.824096px;}
.ws161{word-spacing:25.834994px;}
.ws4{word-spacing:25.875876px;}
.ws173{word-spacing:25.883874px;}
.ws60{word-spacing:26.003430px;}
.ws8d{word-spacing:26.182764px;}
.ws16{word-spacing:26.242542px;}
.ws104{word-spacing:26.302320px;}
.wsf6{word-spacing:26.362098px;}
.ws12f{word-spacing:26.375128px;}
.wsf4{word-spacing:26.415864px;}
.ws1e{word-spacing:26.421876px;}
.ws1d{word-spacing:26.503938px;}
.wse8{word-spacing:26.541432px;}
.ws165{word-spacing:26.600790px;}
.ws164{word-spacing:26.617683px;}
.ws17b{word-spacing:26.720766px;}
.ws12e{word-spacing:26.737683px;}
.ws180{word-spacing:26.779200px;}
.ws10e{word-spacing:26.780544px;}
.wsf5{word-spacing:26.827442px;}
.ws83{word-spacing:26.840322px;}
.ws14{word-spacing:27.019656px;}
.wsf1{word-spacing:27.139212px;}
.ws171{word-spacing:27.317574px;}
.ws141{word-spacing:27.318546px;}
.ws136{word-spacing:27.378324px;}
.ws172{word-spacing:27.380790px;}
.ws16c{word-spacing:27.476148px;}
.wsd6{word-spacing:27.497880px;}
.ws16e{word-spacing:27.500790px;}
.ws16d{word-spacing:27.541622px;}
.wsb8{word-spacing:27.557658px;}
.ws9b{word-spacing:27.677214px;}
.wsa8{word-spacing:27.736992px;}
.wsa7{word-spacing:27.740790px;}
.ws32{word-spacing:27.796770px;}
.ws10b{word-spacing:27.856548px;}
.ws138{word-spacing:27.916326px;}
.ws15f{word-spacing:27.976104px;}
.ws127{word-spacing:28.035882px;}
.ws5f{word-spacing:28.095660px;}
.wsda{word-spacing:28.132938px;}
.ws86{word-spacing:28.155438px;}
.ws7{word-spacing:28.189104px;}
.ws105{word-spacing:28.274994px;}
.wsfa{word-spacing:28.573884px;}
.wsb1{word-spacing:28.633662px;}
.ws88{word-spacing:28.693440px;}
.ws139{word-spacing:28.753218px;}
.ws13a{word-spacing:28.763558px;}
.ws4e{word-spacing:28.932552px;}
.ws102{word-spacing:28.992330px;}
.ws101{word-spacing:29.052108px;}
.ws3{word-spacing:29.103636px;}
.wsab{word-spacing:29.171664px;}
.ws22{word-spacing:29.231442px;}
.ws143{word-spacing:29.236399px;}
.ws106{word-spacing:29.350998px;}
.wsd0{word-spacing:29.410776px;}
.wsd4{word-spacing:29.470554px;}
.ws13e{word-spacing:29.530332px;}
.wsad{word-spacing:29.590110px;}
.ws10a{word-spacing:29.709666px;}
.ws79{word-spacing:29.769444px;}
.ws16b{word-spacing:29.829222px;}
.ws176{word-spacing:30.117291px;}
.ws186{word-spacing:30.174420px;}
.ws1c{word-spacing:30.187890px;}
.ws185{word-spacing:30.222240px;}
.ws33{word-spacing:30.247668px;}
.ws9{word-spacing:30.340944px;}
.ws2d{word-spacing:30.367224px;}
.ws100{word-spacing:30.427002px;}
.wscd{word-spacing:30.666114px;}
.ws148{word-spacing:30.725892px;}
.ws109{word-spacing:30.845448px;}
.ws140{word-spacing:30.905226px;}
.wsea{word-spacing:30.965004px;}
.ws13{word-spacing:31.144338px;}
.ws8{word-spacing:31.201680px;}
.ws13d{word-spacing:31.263894px;}
.wsd9{word-spacing:31.443228px;}
.ws4d{word-spacing:31.503006px;}
.ws169{word-spacing:31.562784px;}
.ws158{word-spacing:31.622562px;}
.wsfd{word-spacing:31.742118px;}
.wsae{word-spacing:31.921452px;}
.ws35{word-spacing:31.981230px;}
.ws116{word-spacing:32.160564px;}
.ws2f{word-spacing:32.339898px;}
.ws27{word-spacing:32.399676px;}
.ws87{word-spacing:32.459454px;}
.wsdd{word-spacing:32.758344px;}
.ws129{word-spacing:32.818122px;}
.ws61{word-spacing:32.877900px;}
.ws85{word-spacing:32.937678px;}
.ws3e{word-spacing:33.356124px;}
.ws15b{word-spacing:33.474360px;}
.ws15e{word-spacing:33.475680px;}
.ws15c{word-spacing:33.500790px;}
.ws2c{word-spacing:33.595236px;}
.ws20{word-spacing:33.894126px;}
.ws2b{word-spacing:34.133238px;}
.ws118{word-spacing:34.193016px;}
.ws19{word-spacing:34.252794px;}
.ws14c{word-spacing:34.456399px;}
.ws67{word-spacing:34.551684px;}
.ws64{word-spacing:34.593222px;}
.ws66{word-spacing:34.611462px;}
.ws146{word-spacing:34.777905px;}
.ws147{word-spacing:34.790796px;}
.ws123{word-spacing:34.880790px;}
.ws121{word-spacing:34.894938px;}
.ws124{word-spacing:34.910352px;}
.ws15d{word-spacing:35.189529px;}
.wsb0{word-spacing:35.209242px;}
.wsed{word-spacing:35.747244px;}
.ws170{word-spacing:35.807022px;}
.wsc9{word-spacing:36.464580px;}
.ws135{word-spacing:36.584136px;}
.wsf9{word-spacing:36.883026px;}
.ws13b{word-spacing:37.122138px;}
.ws2e{word-spacing:37.899252px;}
.ws115{word-spacing:38.795922px;}
.ws113{word-spacing:41.545710px;}
.ws65{word-spacing:41.964156px;}
.ws122{word-spacing:42.502158px;}
.ws0{word-spacing:48.489480px;}
.wsd2{word-spacing:48.623716px;}
.wsd1{word-spacing:48.659039px;}
.ws114{word-spacing:54.876204px;}
.ws9f{word-spacing:56.729322px;}
.ws107{word-spacing:62.647344px;}
.wsf{word-spacing:62.707122px;}
.ws5c{word-spacing:114.545153px;}
.ws5b{word-spacing:119.315577px;}
.ws175{word-spacing:138.074543px;}
.wsd3{word-spacing:251.141069px;}
.ws90{word-spacing:312.020181px;}
.ws9a{word-spacing:365.224894px;}
.ws91{word-spacing:365.652590px;}
.wsc2{word-spacing:396.694994px;}
.wsc0{word-spacing:486.124894px;}
.wsc4{word-spacing:494.455894px;}
.ws8f{word-spacing:509.262068px;}
._11{margin-left:-446.210574px;}
._f{margin-left:-135.803218px;}
._8{margin-left:-16.785259px;}
._e{margin-left:-6.635358px;}
._4{margin-left:-4.662684px;}
._0{margin-left:-3.299580px;}
._1{margin-left:-2.008440px;}
._7{width:1.158606px;}
._2{width:2.929122px;}
._24{width:4.386733px;}
._21{width:6.456024px;}
._28{width:14.843076px;}
._15{width:16.590620px;}
._5{width:17.813844px;}
._14{width:19.666962px;}
._12{width:20.898288px;}
._3{width:21.986082px;}
._16{width:23.021097px;}
._2d{width:24.094284px;}
._20{width:25.525206px;}
._9{width:28.195512px;}
._13{width:32.160564px;}
._1d{width:38.851306px;}
._2e{width:40.671384px;}
._2c{width:47.801880px;}
._d{width:50.163180px;}
._22{width:56.717208px;}
._6{width:59.778000px;}
._1e{width:65.453213px;}
._29{width:71.673822px;}
._1c{width:104.516970px;}
._c{width:109.770147px;}
._1f{width:110.869735px;}
._2b{width:117.838867px;}
._25{width:134.234338px;}
._b{width:143.181441px;}
._a{width:157.503785px;}
._2a{width:179.405778px;}
._27{width:246.678035px;}
._1a{width:292.325537px;}
._26{width:327.396516px;}
._23{width:338.203310px;}
._10{width:409.541280px;}
._1b{width:460.712228px;}
._18{width:467.302384px;}
._19{width:522.206491px;}
._17{width:529.406491px;}
.fc0{color:rgb(0,0,0);}
.fs1b{font-size:19.992461px;}
.fs19{font-size:23.990474px;}
.fs6{font-size:25.453842px;}
.fs11{font-size:26.491599px;}
.fs15{font-size:27.640885px;}
.fs1a{font-size:27.988486px;}
.fs9{font-size:29.886000px;}
.fs1d{font-size:29.988092px;}
.fs7{font-size:31.818734px;}
.fs18{font-size:31.987698px;}
.fs16{font-size:32.247239px;}
.fs10{font-size:35.322117px;}
.fs12{font-size:35.868000px;}
.fs17{font-size:35.985711px;}
.fs14{font-size:36.854974px;}
.fs8{font-size:38.181718px;}
.fsc{font-size:38.800919px;}
.fs1c{font-size:39.983723px;}
.fs4{font-size:41.844000px;}
.fsa{font-size:42.034976px;}
.fse{font-size:44.152635px;}
.fs5{font-size:44.544701px;}
.fs13{font-size:46.067681px;}
.fs3{font-size:47.820000px;}
.fsb{font-size:48.501149px;}
.fsd{font-size:51.735206px;}
.fsf{font-size:52.983197px;}
.fs1{font-size:53.796000px;}
.fs2{font-size:59.778000px;}
.fs0{font-size:143.460000px;}
.y0{bottom:0.000000px;}
.y6c{bottom:0.715350px;}
.y65{bottom:0.715937px;}
.y102{bottom:1.054986px;}
.y25b{bottom:3.147990px;}
.y98{bottom:4.203514px;}
.ya9{bottom:4.203918px;}
.y1d2{bottom:9.271444px;}
.y101{bottom:10.442321px;}
.y1c4{bottom:11.862547px;}
.y1d8{bottom:11.862950px;}
.y25e{bottom:14.393525px;}
.y97{bottom:15.116030px;}
.ya8{bottom:15.116434px;}
.y25d{bottom:21.140695px;}
.y1d1{bottom:24.819442px;}
.y96{bottom:26.029273px;}
.yaa{bottom:26.029435px;}
.y25c{bottom:27.888316px;}
.y100{bottom:29.215964px;}
.y6b{bottom:29.351639px;}
.y1cd{bottom:32.592525px;}
.y269{bottom:36.884644px;}
.y24b{bottom:36.885703px;}
.y1c1{bottom:37.776164px;}
.yff{bottom:38.602305px;}
.y1be{bottom:42.958485px;}
.y69{bottom:43.670147px;}
.y68{bottom:47.249834px;}
.y9b{bottom:47.854467px;}
.y268{bottom:50.378936px;}
.y261{bottom:50.379036px;}
.y24a{bottom:50.379995px;}
.y1c0{bottom:50.732311px;}
.y1c2{bottom:55.915207px;}
.y1cc{bottom:63.688521px;}
.y1d7{bottom:63.689206px;}
.y260{bottom:66.122984px;}
.y24d{bottom:66.123844px;}
.y249{bottom:66.123944px;}
.y1cb{bottom:66.279963px;}
.yfc{bottom:69.891361px;}
.y9a{bottom:73.317571px;}
.y67{bottom:79.465579px;}
.y9c{bottom:80.592662px;}
.y12f{bottom:81.840000px;}
.y63{bottom:82.665000px;}
.y66{bottom:83.045266px;}
.y24c{bottom:84.116699px;}
.y272{bottom:84.116749px;}
.y1cf{bottom:84.419185px;}
.y1d5{bottom:87.012009px;}
.y33{bottom:87.825000px;}
.y189{bottom:92.040000px;}
.y6a{bottom:93.783844px;}
.y1d3{bottom:94.785432px;}
.y99{bottom:95.143088px;}
.y1d9{bottom:97.376938px;}
.y1ff{bottom:101.265000px;}
.y12e{bottom:102.210000px;}
.y32{bottom:104.265000px;}
.y10c{bottom:104.310117px;}
.y26f{bottom:104.357257px;}
.y263{bottom:104.357452px;}
.y251{bottom:104.358311px;}
.y248{bottom:104.358561px;}
.yfd{bottom:113.696900px;}
.y1fe{bottom:114.720000px;}
.ya3{bottom:116.968848px;}
.y188{bottom:117.765000px;}
.y26c{bottom:117.852043px;}
.y61{bottom:119.115000px;}
.y31{bottom:120.705000px;}
.y271{bottom:124.601024px;}
.y12d{bottom:124.770000px;}
.y1c6{bottom:125.880622px;}
.y62{bottom:126.840000px;}
.y26e{bottom:126.848326px;}
.y25f{bottom:126.848871px;}
.ycb{bottom:127.110000px;}
.y285{bottom:128.460000px;}
.y267{bottom:129.097678px;}
.y1c8{bottom:131.063288px;}
.y23b{bottom:131.347844px;}
.y1fd{bottom:132.390000px;}
.y262{bottom:133.596192px;}
.y24e{bottom:133.597051px;}
.y187{bottom:134.205000px;}
.y10d{bottom:135.599283px;}
.y26d{bottom:135.844754px;}
.y12c{bottom:136.065000px;}
.y5d{bottom:137.085000px;}
.y30{bottom:137.130000px;}
.yca{bottom:137.355000px;}
.y26b{bottom:138.093956px;}
.y107{bottom:138.727880px;}
.y5e{bottom:140.220000px;}
.y266{bottom:140.343213px;}
.y252{bottom:140.344022px;}
.y12b{bottom:141.210000px;}
.y1c3{bottom:141.429196px;}
.y250{bottom:144.842586px;}
.y104{bottom:144.985625px;}
.y1bc{bottom:145.905000px;}
.y26a{bottom:147.090383px;}
.y186{bottom:150.645000px;}
.y60{bottom:151.275000px;}
.y270{bottom:151.589807px;}
.y2f{bottom:153.570000px;}
.y5f{bottom:155.760000px;}
.y1ca{bottom:156.976618px;}
.ya7{bottom:156.982296px;}
.yfe{bottom:157.501115px;}
.y1fc{bottom:159.675000px;}
.y9f{bottom:160.620448px;}
.y231{bottom:162.030000px;}
.y1d0{bottom:162.159859px;}
.y1bb{bottom:162.345000px;}
.y264{bottom:162.834232px;}
.y247{bottom:162.835341px;}
.yc9{bottom:166.860000px;}
.y1fb{bottom:167.445000px;}
.y2e{bottom:170.010000px;}
.ya5{bottom:171.532641px;}
.y1c5{bottom:175.115948px;}
.y185{bottom:176.205000px;}
.y1ba{bottom:178.785000px;}
.y5c{bottom:180.090000px;}
.y9e{bottom:182.445965px;}
.y105{bottom:182.532977px;}
.yc8{bottom:183.300000px;}
.y284{bottom:184.800000px;}
.y1d6{bottom:185.481856px;}
.y2d{bottom:186.450000px;}
.y230{bottom:186.915000px;}
.y103{bottom:188.790645px;}
.y184{bottom:192.645000px;}
.y1c7{bottom:193.255279px;}
.y1bf{bottom:193.255855px;}
.y1b9{bottom:195.225000px;}
.y5b{bottom:196.530000px;}
.y265{bottom:196.570886px;}
.y23c{bottom:196.571945px;}
.y24f{bottom:196.572045px;}
.y12a{bottom:198.795000px;}
.yc7{bottom:199.740000px;}
.y283{bottom:201.240000px;}
.y10a{bottom:201.307261px;}
.y1fa{bottom:201.720000px;}
.y2c{bottom:202.890000px;}
.y22f{bottom:203.355000px;}
.y1c9{bottom:203.620611px;}
.ya2{bottom:204.270917px;}
.y1ce{bottom:208.803168px;}
.y183{bottom:209.085000px;}
.y109{bottom:210.693602px;}
.y1b8{bottom:211.665000px;}
.y5a{bottom:212.970000px;}
.y1d4{bottom:213.986749px;}
.yc6{bottom:216.180000px;}
.y282{bottom:217.680000px;}
.y1f9{bottom:218.160000px;}
.y2b{bottom:219.330000px;}
.y22e{bottom:219.795000px;}
.y129{bottom:221.340000px;}
.y182{bottom:225.525000px;}
.y1b7{bottom:228.105000px;}
.y59{bottom:229.410000px;}
.y10b{bottom:229.467223px;}
.y108{bottom:229.467278px;}
.y281{bottom:234.120000px;}
.y2a{bottom:235.770000px;}
.y22d{bottom:236.235000px;}
.ya4{bottom:237.009192px;}
.y240{bottom:237.055520px;}
.yc5{bottom:241.395000px;}
.y128{bottom:241.710000px;}
.y1f8{bottom:244.155000px;}
.y1b6{bottom:244.545000px;}
.yfa{bottom:244.560000px;}
.y94{bottom:245.415000px;}
.y58{bottom:245.850000px;}
.y158{bottom:246.105000px;}
.y9d{bottom:247.922517px;}
.y280{bottom:250.560000px;}
.y1f7{bottom:251.925000px;}
.y22c{bottom:252.675000px;}
.y181{bottom:253.575000px;}
.y243{bottom:255.048481px;}
.yc4{bottom:257.835000px;}
.yf9{bottom:261.000000px;}
.y180{bottom:261.345000px;}
.y93{bottom:261.855000px;}
.y57{bottom:262.290000px;}
.y29{bottom:262.455000px;}
.y127{bottom:266.925000px;}
.y27f{bottom:267.000000px;}
.y22b{bottom:269.115000px;}
.ya0{bottom:269.748034px;}
.y106{bottom:270.142731px;}
.y1b5{bottom:270.855000px;}
.y157{bottom:272.880000px;}
.yc3{bottom:274.275000px;}
.ya6{bottom:277.022641px;}
.yf8{bottom:277.440000px;}
.y92{bottom:278.295000px;}
.y1b4{bottom:278.625000px;}
.y28{bottom:278.895000px;}
.y242{bottom:282.037764px;}
.y126{bottom:283.365000px;}
.y27e{bottom:283.440000px;}
.y241{bottom:284.286966px;}
.y1f6{bottom:286.200000px;}
.y56{bottom:288.735000px;}
.yc2{bottom:290.715000px;}
.ya1{bottom:291.572985px;}
.y17f{bottom:293.550000px;}
.yf7{bottom:293.880000px;}
.y91{bottom:294.720000px;}
.y27{bottom:295.335000px;}
.y125{bottom:299.805000px;}
.y27d{bottom:299.880000px;}
.y244{bottom:300.030619px;}
.y17e{bottom:301.320000px;}
.y156{bottom:301.470000px;}
.y22a{bottom:301.920000px;}
.y1f5{bottom:302.640000px;}
.y55{bottom:305.175000px;}
.yc1{bottom:307.155000px;}
.yf6{bottom:310.320000px;}
.y90{bottom:311.160000px;}
.y26{bottom:311.775000px;}
.y155{bottom:312.750000px;}
.y1b3{bottom:313.230000px;}
.y27c{bottom:316.305000px;}
.y154{bottom:317.910000px;}
.y229{bottom:318.360000px;}
.y54{bottom:321.615000px;}
.yc0{bottom:323.595000px;}
.yf5{bottom:326.760000px;}
.y245{bottom:327.020147px;}
.y8f{bottom:327.600000px;}
.y25{bottom:328.215000px;}
.y124{bottom:328.590000px;}
.y1f4{bottom:328.635000px;}
.y1b2{bottom:329.670000px;}
.y27b{bottom:332.745000px;}
.y228{bottom:334.785000px;}
.y1f3{bottom:336.405000px;}
.y17d{bottom:336.630000px;}
.y53{bottom:338.055000px;}
.y153{bottom:343.440000px;}
.y8e{bottom:344.040000px;}
.y24{bottom:344.640000px;}
.ybf{bottom:348.825000px;}
.y27a{bottom:349.185000px;}
.y256{bottom:349.510707px;}
.y227{bottom:351.225000px;}
.y235{bottom:351.760323px;}
.yf4{bottom:352.935000px;}
.y17c{bottom:353.070000px;}
.y52{bottom:354.480000px;}
.y1b1{bottom:355.980000px;}
.y123{bottom:357.390000px;}
.y152{bottom:359.880000px;}
.y8d{bottom:360.480000px;}
.y23{bottom:361.080000px;}
.y1b0{bottom:363.750000px;}
.ybe{bottom:365.250000px;}
.y279{bottom:365.625000px;}
.y259{bottom:367.503667px;}
.y17b{bottom:369.510000px;}
.y238{bottom:369.753284px;}
.y1f2{bottom:370.695000px;}
.y51{bottom:370.920000px;}
.y151{bottom:371.160000px;}
.y122{bottom:373.830000px;}
.y150{bottom:376.320000px;}
.y8c{bottom:376.920000px;}
.y22{bottom:377.520000px;}
.yf3{bottom:379.110000px;}
.y278{bottom:382.065000px;}
.y226{bottom:384.030000px;}
.y17a{bottom:385.950000px;}
.y1f1{bottom:387.120000px;}
.y8b{bottom:393.360000px;}
.y21{bottom:393.960000px;}
.y258{bottom:394.492950px;}
.y257{bottom:396.742152px;}
.y237{bottom:396.742567px;}
.y50{bottom:397.365000px;}
.y1af{bottom:398.355000px;}
.y277{bottom:398.505000px;}
.y236{bottom:398.991769px;}
.ybd{bottom:400.170000px;}
.y225{bottom:400.470000px;}
.y1f0{bottom:403.560000px;}
.y121{bottom:403.920000px;}
.y14f{bottom:404.895000px;}
.yf2{bottom:405.300000px;}
.y20{bottom:410.400000px;}
.y25a{bottom:412.485805px;}
.y179{bottom:412.800000px;}
.y239{bottom:414.735072px;}
.y1ae{bottom:414.795000px;}
.y276{bottom:414.945000px;}
.ybc{bottom:416.595000px;}
.y224{bottom:416.910000px;}
.y8a{bottom:419.445000px;}
.y1ef{bottom:420.000000px;}
.y120{bottom:420.360000px;}
.y14e{bottom:421.335000px;}
.y1f{bottom:426.840000px;}
.y1ad{bottom:431.235000px;}
.y275{bottom:431.385000px;}
.yf1{bottom:431.475000px;}
.ybb{bottom:433.035000px;}
.y223{bottom:433.350000px;}
.y89{bottom:435.870000px;}
.y1ee{bottom:436.440000px;}
.y11f{bottom:436.800000px;}
.y4f{bottom:437.415000px;}
.y14d{bottom:437.775000px;}
.y178{bottom:439.650000px;}
.y246{bottom:441.724600px;}
.y1e{bottom:443.280000px;}
.y1ac{bottom:447.675000px;}
.yba{bottom:449.475000px;}
.y222{bottom:449.790000px;}
.y88{bottom:452.310000px;}
.y1ed{bottom:452.880000px;}
.y4e{bottom:453.855000px;}
.y177{bottom:456.090000px;}
.yf0{bottom:457.650000px;}
.y1d{bottom:459.720000px;}
.y274{bottom:461.550000px;}
.y253{bottom:461.966313px;}
.y14c{bottom:463.305000px;}
.y11e{bottom:463.335000px;}
.y1ab{bottom:464.115000px;}
.y23d{bottom:464.215670px;}
.y221{bottom:466.230000px;}
.y87{bottom:468.750000px;}
.y1ec{bottom:469.320000px;}
.y4d{bottom:470.295000px;}
.y254{bottom:475.460954px;}
.yb9{bottom:475.650000px;}
.y1c{bottom:476.160000px;}
.y23e{bottom:477.710311px;}
.y1aa{bottom:480.555000px;}
.y176{bottom:481.230000px;}
.y220{bottom:482.670000px;}
.yef{bottom:483.840000px;}
.y86{bottom:485.190000px;}
.y4c{bottom:486.735000px;}
.y1b{bottom:492.585000px;}
.y1eb{bottom:495.315000px;}
.y1a9{bottom:496.995000px;}
.y173{bottom:498.870000px;}
.y14b{bottom:499.350000px;}
.y233{bottom:500.201380px;}
.y85{bottom:501.630000px;}
.yb8{bottom:501.810000px;}
.y1ea{bottom:503.085000px;}
.y4b{bottom:503.160000px;}
.y11d{bottom:503.790000px;}
.y23a{bottom:506.948701px;}
.y21f{bottom:507.255000px;}
.y1a{bottom:509.025000px;}
.y234{bottom:509.197808px;}
.yee{bottom:510.015000px;}
.y175{bottom:513.060000px;}
.y1a8{bottom:513.420000px;}
.y14a{bottom:515.790000px;}
.y174{bottom:517.545000px;}
.y84{bottom:518.070000px;}
.yb7{bottom:518.250000px;}
.y4a{bottom:519.600000px;}
.y11c{bottom:520.215000px;}
.y255{bottom:520.443093px;}
.y273{bottom:521.985000px;}
.y23f{bottom:522.692100px;}
.y21e{bottom:523.695000px;}
.y19{bottom:525.465000px;}
.y83{bottom:534.510000px;}
.yb6{bottom:534.690000px;}
.y49{bottom:536.040000px;}
.yed{bottom:536.205000px;}
.y11b{bottom:536.655000px;}
.y1e9{bottom:537.870000px;}
.y1a7{bottom:538.635000px;}
.y172{bottom:539.610000px;}
.y21d{bottom:540.135000px;}
.y149{bottom:541.320000px;}
.y232{bottom:549.105000px;}
.yb5{bottom:551.130000px;}
.y18{bottom:552.165000px;}
.y48{bottom:552.480000px;}
.yec{bottom:552.645000px;}
.y11a{bottom:553.095000px;}
.y1e8{bottom:554.310000px;}
.y1a6{bottom:555.075000px;}
.y171{bottom:556.050000px;}
.y21c{bottom:556.575000px;}
.y148{bottom:557.760000px;}
.y82{bottom:562.395000px;}
.yb4{bottom:567.555000px;}
.y17{bottom:568.590000px;}
.yeb{bottom:569.070000px;}
.y119{bottom:569.535000px;}
.y1e7{bottom:570.750000px;}
.y1a5{bottom:571.515000px;}
.y170{bottom:572.490000px;}
.y21b{bottom:573.000000px;}
.y147{bottom:574.200000px;}
.y47{bottom:578.925000px;}
.yb3{bottom:583.995000px;}
.y16{bottom:585.030000px;}
.y118{bottom:585.975000px;}
.y1e6{bottom:587.175000px;}
.y1a4{bottom:587.955000px;}
.y21a{bottom:589.440000px;}
.yea{bottom:590.250000px;}
.y81{bottom:590.265000px;}
.y146{bottom:590.640000px;}
.y46{bottom:595.365000px;}
.y16f{bottom:598.050000px;}
.yb2{bottom:600.435000px;}
.ye9{bottom:600.510000px;}
.y15{bottom:601.470000px;}
.y117{bottom:602.415000px;}
.y1e5{bottom:603.615000px;}
.y1a3{bottom:604.395000px;}
.y80{bottom:606.705000px;}
.y45{bottom:611.805000px;}
.y219{bottom:614.040000px;}
.y16e{bottom:614.490000px;}
.y145{bottom:616.170000px;}
.yb1{bottom:616.875000px;}
.y14{bottom:617.910000px;}
.y116{bottom:618.855000px;}
.y1e4{bottom:620.295000px;}
.y1a2{bottom:620.835000px;}
.y7f{bottom:623.145000px;}
.y44{bottom:628.245000px;}
.y16d{bottom:630.930000px;}
.y144{bottom:632.610000px;}
.ye8{bottom:633.225000px;}
.y13{bottom:634.350000px;}
.y1e3{bottom:636.735000px;}
.y1a1{bottom:637.260000px;}
.y7e{bottom:639.585000px;}
.yb0{bottom:642.105000px;}
.y43{bottom:644.685000px;}
.y115{bottom:645.390000px;}
.y218{bottom:646.860000px;}
.y16c{bottom:647.370000px;}
.y143{bottom:649.050000px;}
.ye7{bottom:649.665000px;}
.y12{bottom:650.790000px;}
.y1e2{bottom:653.175000px;}
.y142{bottom:660.330000px;}
.y42{bottom:661.125000px;}
.y114{bottom:661.830000px;}
.y1a0{bottom:662.475000px;}
.y217{bottom:663.300000px;}
.y16b{bottom:663.810000px;}
.y7d{bottom:665.205000px;}
.y141{bottom:665.490000px;}
.ye6{bottom:666.105000px;}
.y11{bottom:667.230000px;}
.y1e1{bottom:669.615000px;}
.yaf{bottom:677.010000px;}
.y41{bottom:677.550000px;}
.y113{bottom:678.270000px;}
.y19f{bottom:678.915000px;}
.y216{bottom:679.740000px;}
.y16a{bottom:680.250000px;}
.y140{bottom:681.930000px;}
.ye5{bottom:682.545000px;}
.y7b{bottom:682.845000px;}
.y1e0{bottom:686.040000px;}
.yae{bottom:693.450000px;}
.y10{bottom:693.915000px;}
.y112{bottom:694.710000px;}
.y19e{bottom:695.355000px;}
.y215{bottom:696.180000px;}
.y169{bottom:696.690000px;}
.y7c{bottom:697.035000px;}
.y2a0{bottom:697.530000px;}
.ye4{bottom:698.985000px;}
.y40{bottom:703.995000px;}
.y13f{bottom:707.460000px;}
.yad{bottom:709.890000px;}
.y29f{bottom:710.985000px;}
.y1df{bottom:711.090000px;}
.y111{bottom:711.150000px;}
.y214{bottom:712.620000px;}
.y168{bottom:713.130000px;}
.y3f{bottom:720.435000px;}
.ye3{bottom:722.445000px;}
.y13e{bottom:723.900000px;}
.y7a{bottom:725.670000px;}
.yac{bottom:726.330000px;}
.y1de{bottom:727.530000px;}
.y110{bottom:727.575000px;}
.y29e{bottom:728.175000px;}
.y213{bottom:729.060000px;}
.y19d{bottom:730.440000px;}
.y3e{bottom:736.875000px;}
.yf{bottom:738.135000px;}
.y19c{bottom:738.210000px;}
.y167{bottom:738.690000px;}
.ye0{bottom:740.070000px;}
.y13d{bottom:740.340000px;}
.y29d{bottom:741.615000px;}
.y79{bottom:742.095000px;}
.y1dd{bottom:743.970000px;}
.y10f{bottom:744.015000px;}
.y212{bottom:745.500000px;}
.ye{bottom:753.075000px;}
.y3d{bottom:753.315000px;}
.ye2{bottom:754.275000px;}
.y29c{bottom:755.070000px;}
.y78{bottom:758.535000px;}
.ye1{bottom:758.760000px;}
.y1dc{bottom:760.410000px;}
.y211{bottom:761.940000px;}
.y13c{bottom:765.870000px;}
.y29b{bottom:768.525000px;}
.y3c{bottom:769.755000px;}
.y19b{bottom:772.815000px;}
.y166{bottom:774.885000px;}
.y77{bottom:774.975000px;}
.y1db{bottom:776.850000px;}
.ydf{bottom:777.090000px;}
.yd{bottom:778.260000px;}
.y210{bottom:778.380000px;}
.yab{bottom:780.720000px;}
.y13b{bottom:782.310000px;}
.y19a{bottom:785.145000px;}
.y29a{bottom:785.700000px;}
.y3b{bottom:786.195000px;}
.y199{bottom:789.255000px;}
.y165{bottom:791.325000px;}
.y76{bottom:791.415000px;}
.yc{bottom:793.215000px;}
.yde{bottom:793.515000px;}
.y20f{bottom:794.805000px;}
.y299{bottom:799.155000px;}
.y10e{bottom:800.460000px;}
.y3a{bottom:802.635000px;}
.y164{bottom:807.765000px;}
.y95{bottom:807.840000px;}
.y75{bottom:807.855000px;}
.yb{bottom:808.155000px;}
.ydd{bottom:809.955000px;}
.y13a{bottom:810.885000px;}
.y198{bottom:810.975000px;}
.y20e{bottom:811.245000px;}
.y298{bottom:812.610000px;}
.y197{bottom:815.085000px;}
.ya{bottom:823.095000px;}
.y163{bottom:824.205000px;}
.y74{bottom:824.295000px;}
.ydc{bottom:826.395000px;}
.y139{bottom:827.325000px;}
.y196{bottom:827.415000px;}
.yfb{bottom:827.580000px;}
.y20d{bottom:827.685000px;}
.y39{bottom:829.080000px;}
.y297{bottom:829.785000px;}
.y1da{bottom:830.475000px;}
.y193{bottom:831.075000px;}
.y195{bottom:831.525000px;}
.y9{bottom:838.050000px;}
.y162{bottom:840.645000px;}
.y73{bottom:840.735000px;}
.y296{bottom:843.240000px;}
.y194{bottom:843.855000px;}
.y20c{bottom:844.125000px;}
.y38{bottom:845.520000px;}
.ydb{bottom:851.625000px;}
.y138{bottom:852.855000px;}
.y8{bottom:852.990000px;}
.y295{bottom:856.695000px;}
.y161{bottom:857.085000px;}
.y72{bottom:857.175000px;}
.y1bd{bottom:857.595000px;}
.y20b{bottom:860.565000px;}
.y37{bottom:861.960000px;}
.y7{bottom:867.930000px;}
.yda{bottom:868.065000px;}
.y192{bottom:869.340000px;}
.y294{bottom:870.135000px;}
.y160{bottom:873.525000px;}
.y71{bottom:873.615000px;}
.y20a{bottom:877.005000px;}
.y36{bottom:878.385000px;}
.y6{bottom:882.870000px;}
.yd9{bottom:884.505000px;}
.y191{bottom:885.780000px;}
.y293{bottom:887.325000px;}
.y137{bottom:888.900000px;}
.y70{bottom:890.040000px;}
.y209{bottom:893.445000px;}
.y35{bottom:894.825000px;}
.y5{bottom:897.825000px;}
.y292{bottom:900.780000px;}
.yd8{bottom:900.945000px;}
.y136{bottom:905.340000px;}
.y6f{bottom:906.480000px;}
.y15f{bottom:907.380000px;}
.y208{bottom:909.885000px;}
.y190{bottom:910.605000px;}
.y34{bottom:911.265000px;}
.y4{bottom:912.765000px;}
.y291{bottom:914.220000px;}
.yd7{bottom:917.385000px;}
.y15e{bottom:917.640000px;}
.y135{bottom:921.780000px;}
.y6e{bottom:922.920000px;}
.y207{bottom:926.325000px;}
.y18e{bottom:926.595000px;}
.y18f{bottom:927.045000px;}
.y3{bottom:927.705000px;}
.y290{bottom:931.410000px;}
.yd6{bottom:933.825000px;}
.y134{bottom:938.220000px;}
.y206{bottom:942.750000px;}
.y28f{bottom:944.865000px;}
.y15d{bottom:949.920000px;}
.yd5{bottom:950.265000px;}
.y28e{bottom:958.305000px;}
.y205{bottom:959.190000px;}
.yd4{bottom:961.545000px;}
.y18d{bottom:962.835000px;}
.y15c{bottom:966.360000px;}
.yd3{bottom:966.705000px;}
.y133{bottom:966.810000px;}
.y28d{bottom:975.495000px;}
.y6d{bottom:978.855000px;}
.y15b{bottom:982.800000px;}
.yd2{bottom:983.130000px;}
.y204{bottom:983.790000px;}
.y28c{bottom:988.950000px;}
.y18c{bottom:988.980000px;}
.y132{bottom:993.585000px;}
.yd1{bottom:999.570000px;}
.y203{bottom:1000.215000px;}
.y18b{bottom:1005.405000px;}
.y64{bottom:1005.990000px;}
.y28b{bottom:1006.125000px;}
.y15a{bottom:1008.375000px;}
.y131{bottom:1014.120000px;}
.yd0{bottom:1016.010000px;}
.y202{bottom:1016.655000px;}
.y28a{bottom:1019.580000px;}
.y159{bottom:1024.815000px;}
.y18a{bottom:1031.550000px;}
.y289{bottom:1033.020000px;}
.y201{bottom:1033.095000px;}
.y130{bottom:1034.475000px;}
.y2{bottom:1037.715000px;}
.ycf{bottom:1041.240000px;}
.y288{bottom:1046.475000px;}
.y200{bottom:1049.535000px;}
.yce{bottom:1057.680000px;}
.y287{bottom:1063.665000px;}
.ycd{bottom:1074.120000px;}
.y286{bottom:1077.105000px;}
.y1{bottom:1079.550000px;}
.ycc{bottom:1090.560000px;}
.h7{height:2.391120px;}
.h51{height:19.621508px;}
.h49{height:23.545338px;}
.h35{height:24.677184px;}
.hf{height:24.969125px;}
.h40{height:27.114521px;}
.h3f{height:27.128017px;}
.h50{height:27.455502px;}
.h48{height:27.469169px;}
.h52{height:29.431673px;}
.h8{height:29.500020px;}
.h10{height:31.212811px;}
.h47{height:31.394177px;}
.h3e{height:31.633155px;}
.h3d{height:31.648901px;}
.h4e{height:32.540346px;}
.h4a{height:32.542146px;}
.h12{height:32.900160px;}
.h53{height:33.140160px;}
.h2b{height:34.666726px;}
.h46{height:35.318007px;}
.h3c{height:36.171142px;}
.h3{height:37.173036px;}
.h44{height:37.301472px;}
.h11{height:37.473268px;}
.h2{height:37.872384px;}
.h1b{height:38.062035px;}
.h19{height:38.080981px;}
.h4c{height:39.222314px;}
.h4f{height:40.296096px;}
.h1d{height:40.828374px;}
.h4{height:41.127264px;}
.h17{height:41.234505px;}
.h4d{height:41.537154px;}
.h4b{height:41.538194px;}
.h29{height:43.333396px;}
.h5{height:44.833500px;}
.he{height:44.892706px;}
.h1e{height:45.050796px;}
.h20{height:45.110796px;}
.h3b{height:45.190416px;}
.h18{height:47.601226px;}
.h1f{height:48.050796px;}
.h34{height:50.508672px;}
.h13{height:51.160020px;}
.h23{height:51.304416px;}
.h2a{height:52.000110px;}
.h1a{height:52.139387px;}
.h32{height:54.160020px;}
.h25{height:54.220020px;}
.hb{height:56.140020px;}
.h41{height:57.627264px;}
.h2d{height:59.695630px;}
.h38{height:61.273500px;}
.h42{height:61.333500px;}
.h39{height:61.490796px;}
.h2e{height:65.413500px;}
.h24{height:65.473500px;}
.hc{height:71.800020px;}
.h33{height:72.207264px;}
.h2c{height:72.212091px;}
.h9{height:72.733500px;}
.h22{height:82.107264px;}
.h21{height:85.273500px;}
.h27{height:85.873500px;}
.h43{height:86.631120px;}
.h30{height:86.691120px;}
.h1c{height:91.251290px;}
.ha{height:95.140020px;}
.h1{height:98.700480px;}
.hd{height:101.022783px;}
.h15{height:104.571120px;}
.h14{height:107.020020px;}
.h36{height:112.393500px;}
.h37{height:112.670796px;}
.h6{height:122.511120px;}
.h2f{height:126.253500px;}
.h26{height:126.313500px;}
.h31{height:127.731120px;}
.h3a{height:249.343691px;}
.h28{height:279.275072px;}
.h16{height:299.089604px;}
.h45{height:557.778297px;}
.h0{height:1188.000000px;}
.w3{width:254.989953px;}
.w1{width:344.430735px;}
.w2{width:361.332701px;}
.w4{width:378.334636px;}
.w5{width:378.349554px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x45{left:1.040051px;}
.x24{left:4.203279px;}
.x91{left:5.796698px;}
.x17{left:7.716135px;}
.x25{left:11.477886px;}
.x22{left:15.115383px;}
.x6a{left:21.248758px;}
.x46{left:26.070920px;}
.x69{left:29.023102px;}
.x18{left:32.772490px;}
.x23{left:36.941709px;}
.x47{left:38.587403px;}
.x48{left:41.716519px;}
.x3f{left:44.844596px;}
.x8b{left:48.530280px;}
.x89{left:55.277600px;}
.x12{left:57.829632px;}
.x3e{left:60.489179px;}
.x8d{left:62.024771px;}
.x42{left:63.618273px;}
.x19{left:64.988234px;}
.x8a{left:66.523135px;}
.x78{left:70.484257px;}
.x1{left:73.440000px;}
.x49{left:76.133784px;}
.x8f{left:77.768120px;}
.x8e{left:80.017427px;}
.x5e{left:81.810000px;}
.x5f{left:84.105000px;}
.x74{left:86.032255px;}
.x11{left:90.315000px;}
.x3{left:93.540000px;}
.x5{left:95.040000px;}
.x75{left:96.397587px;}
.x82{left:98.011082px;}
.x40{left:101.165625px;}
.x9e{left:105.315000px;}
.x6f{left:106.762867px;}
.x41{left:110.551911px;}
.x2a{left:113.329742px;}
.x64{left:115.425000px;}
.x2b{left:116.966754px;}
.x60{left:119.385000px;}
.x4f{left:124.095000px;}
.x70{left:127.493876px;}
.x6e{left:132.676197px;}
.x90{left:136.244900px;}
.x29{left:138.792845px;}
.x67{left:143.805000px;}
.x9a{left:145.242327px;}
.x1f{left:149.805000px;}
.x9f{left:152.460000px;}
.x14{left:154.476953px;}
.x6d{left:155.998136px;}
.x13{left:158.056640px;}
.x1b{left:162.060000px;}
.x8c{left:163.234583px;}
.x3b{left:166.875000px;}
.x37{left:168.675000px;}
.x92{left:169.981504px;}
.x93{left:172.230256px;}
.x33{left:173.280000px;}
.x43{left:176.260794px;}
.x39{left:182.520000px;}
.x16{left:186.692626px;}
.x15{left:190.272313px;}
.x3c{left:192.075000px;}
.x1a{left:193.852009px;}
.x38{left:198.120000px;}
.x4{left:200.475000px;}
.x66{left:202.470000px;}
.x3a{left:206.370000px;}
.x44{left:210.679053px;}
.x1c{left:212.730000px;}
.x1d{left:213.840000px;}
.x83{left:226.210177px;}
.x50{left:228.615000px;}
.x27{left:233.371210px;}
.x1e{left:236.805000px;}
.x2c{left:240.644685px;}
.x2d{left:244.282425px;}
.x71{left:246.695193px;}
.x94{left:248.700151px;}
.x21{left:251.559295px;}
.x95{left:253.198365px;}
.x26{left:255.196161px;}
.x28{left:258.833909px;}
.x35{left:261.885000px;}
.x86{left:264.444844px;}
.x98{left:266.692757px;}
.x81{left:268.942948px;}
.x34{left:270.570000px;}
.x6c{left:272.608120px;}
.x6b{left:275.199562px;}
.x84{left:282.437755px;}
.x36{left:285.960000px;}
.x85{left:289.185171px;}
.x87{left:300.430145px;}
.x96{left:304.927824px;}
.x51{left:309.720000px;}
.x62{left:310.755000px;}
.x76{left:319.252223px;}
.x9b{left:320.672668px;}
.x65{left:325.185000px;}
.x68{left:329.617555px;}
.x72{left:334.800515px;}
.x7f{left:336.416416px;}
.x63{left:338.145000px;}
.x73{left:339.982881px;}
.x97{left:343.162892px;}
.x80{left:345.412584px;}
.x53{left:361.065000px;}
.x77{left:363.304884px;}
.x88{left:365.654806px;}
.x99{left:367.902249px;}
.x2{left:413.505000px;}
.x52{left:420.180000px;}
.x61{left:426.705000px;}
.x6{left:478.500000px;}
.x7b{left:484.875000px;}
.x20{left:486.870000px;}
.x5d{left:490.455000px;}
.x7{left:500.085000px;}
.x2f{left:509.715000px;}
.x56{left:513.195000px;}
.x5b{left:514.530000px;}
.x7e{left:526.320000px;}
.x4a{left:529.155000px;}
.x4e{left:530.955000px;}
.x8{left:536.925000px;}
.x3d{left:540.015000px;}
.x7a{left:546.300000px;}
.x2e{left:557.355000px;}
.x9c{left:558.510000px;}
.x7c{left:560.550000px;}
.x9{left:561.810000px;}
.x7d{left:566.955000px;}
.x10{left:578.820000px;}
.x5c{left:584.205000px;}
.x5a{left:587.820000px;}
.xa{left:595.290000px;}
.x57{left:599.775000px;}
.xc{left:605.265000px;}
.x54{left:607.515000px;}
.xb{left:608.790000px;}
.x9d{left:625.725000px;}
.x31{left:633.000000px;}
.x4c{left:635.460000px;}
.x30{left:636.465000px;}
.xd{left:637.485000px;}
.x4d{left:640.995000px;}
.x58{left:648.285000px;}
.x55{left:651.585000px;}
.x4b{left:656.505000px;}
.x32{left:662.595000px;}
.x59{left:672.360000px;}
.xe{left:679.860000px;}
.xf{left:710.760000px;}
.x79{left:814.410000px;}
@media print{
.v10{vertical-align:-25.867280pt;}
.va{vertical-align:-19.253333pt;}
.v19{vertical-align:-14.986667pt;}
.vd{vertical-align:-13.280000pt;}
.v4{vertical-align:-11.146667pt;}
.v1b{vertical-align:-9.214017pt;}
.v1{vertical-align:-7.946667pt;}
.v0{vertical-align:0.000000pt;}
.v1c{vertical-align:7.997162pt;}
.vc{vertical-align:13.973333pt;}
.v1d{vertical-align:15.993649pt;}
.v8{vertical-align:18.346667pt;}
.vb{vertical-align:19.253333pt;}
.v12{vertical-align:20.906667pt;}
.v3{vertical-align:21.920000pt;}
.v7{vertical-align:23.680000pt;}
.v5{vertical-align:24.800000pt;}
.v18{vertical-align:27.626667pt;}
.v17{vertical-align:30.826667pt;}
.v14{vertical-align:33.373658pt;}
.v6{vertical-align:36.426667pt;}
.v9{vertical-align:37.600000pt;}
.v11{vertical-align:38.800057pt;}
.v1a{vertical-align:60.053333pt;}
.vf{vertical-align:68.906667pt;}
.v13{vertical-align:72.426667pt;}
.v15{vertical-align:74.933333pt;}
.ve{vertical-align:90.826667pt;}
.v2{vertical-align:106.773333pt;}
.v16{vertical-align:111.413333pt;}
.ls1c{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.003671pt;}
.ls22{letter-spacing:0.004153pt;}
.ls25{letter-spacing:0.004833pt;}
.ls34{letter-spacing:0.005916pt;}
.ls2b{letter-spacing:0.011962pt;}
.ls84{letter-spacing:0.012153pt;}
.ls6b{letter-spacing:0.012379pt;}
.lsc3{letter-spacing:0.013028pt;}
.ls7b{letter-spacing:0.013423pt;}
.ls6{letter-spacing:0.015549pt;}
.lsd8{letter-spacing:0.017345pt;}
.ls10{letter-spacing:0.020277pt;}
.ls2d{letter-spacing:0.021774pt;}
.ls24{letter-spacing:0.026100pt;}
.ls5{letter-spacing:0.026460pt;}
.ls77{letter-spacing:0.028743pt;}
.ls11{letter-spacing:0.030157pt;}
.lsf0{letter-spacing:0.032973pt;}
.lsc8{letter-spacing:0.037810pt;}
.ls96{letter-spacing:0.041315pt;}
.ls69{letter-spacing:0.045333pt;}
.lscf{letter-spacing:0.048688pt;}
.lsc9{letter-spacing:0.400502pt;}
.ls2f{letter-spacing:1.062720pt;}
.ls120{letter-spacing:1.135333pt;}
.ls90{letter-spacing:1.426604pt;}
.ls7d{letter-spacing:1.465037pt;}
.ls94{letter-spacing:1.479938pt;}
.ls144{letter-spacing:1.775970pt;}
.ls143{letter-spacing:1.776894pt;}
.ls76{letter-spacing:1.880090pt;}
.ls79{letter-spacing:1.933423pt;}
.ls108{letter-spacing:2.047268pt;}
.ls7a{letter-spacing:2.098081pt;}
.lsd9{letter-spacing:2.151414pt;}
.ls9{letter-spacing:2.608023pt;}
.lse8{letter-spacing:2.618667pt;}
.ls36{letter-spacing:2.619249pt;}
.ls9e{letter-spacing:2.624522pt;}
.ls1f{letter-spacing:2.625295pt;}
.ls2{letter-spacing:2.625712pt;}
.ls61{letter-spacing:2.626998pt;}
.ls9d{letter-spacing:2.628054pt;}
.ls136{letter-spacing:2.628077pt;}
.ls0{letter-spacing:2.635413pt;}
.ls146{letter-spacing:2.638288pt;}
.lsd6{letter-spacing:2.643520pt;}
.ls1{letter-spacing:2.656800pt;}
.ls7{letter-spacing:2.661357pt;}
.ls14{letter-spacing:2.672582pt;}
.ls20{letter-spacing:2.678628pt;}
.ls60{letter-spacing:2.680332pt;}
.ls50{letter-spacing:2.681410pt;}
.ls112{letter-spacing:2.682667pt;}
.ls147{letter-spacing:2.691621pt;}
.lsd{letter-spacing:2.799612pt;}
.ls5a{letter-spacing:3.159925pt;}
.ls5b{letter-spacing:3.257486pt;}
.ls48{letter-spacing:3.613945pt;}
.ls49{letter-spacing:3.630819pt;}
.ls4a{letter-spacing:3.639925pt;}
.ls137{letter-spacing:3.778262pt;}
.ls67{letter-spacing:3.991539pt;}
.ls39{letter-spacing:4.132185pt;}
.ls18{letter-spacing:4.185518pt;}
.lsa4{letter-spacing:4.262021pt;}
.lsa5{letter-spacing:4.332153pt;}
.ls121{letter-spacing:4.527461pt;}
.ls7c{letter-spacing:4.818081pt;}
.lsff{letter-spacing:5.017486pt;}
.lsfe{letter-spacing:5.042076pt;}
.ls2e{letter-spacing:5.279634pt;}
.ls23{letter-spacing:5.314892pt;}
.ls2c{letter-spacing:5.332967pt;}
.lsfb{letter-spacing:5.785224pt;}
.ls47{letter-spacing:5.786100pt;}
.lsee{letter-spacing:5.791824pt;}
.ls104{letter-spacing:5.838557pt;}
.ls57{letter-spacing:5.839433pt;}
.ls8b{letter-spacing:6.338667pt;}
.ls75{letter-spacing:6.341357pt;}
.ls74{letter-spacing:6.375410pt;}
.lsbc{letter-spacing:6.394690pt;}
.ls110{letter-spacing:6.609213pt;}
.lsf8{letter-spacing:6.662546pt;}
.lsb{letter-spacing:6.852185pt;}
.ls145{letter-spacing:7.107187pt;}
.ls114{letter-spacing:7.470819pt;}
.ls55{letter-spacing:7.684153pt;}
.ls54{letter-spacing:7.693259pt;}
.ls3b{letter-spacing:7.797948pt;}
.lsd3{letter-spacing:7.811703pt;}
.ls30{letter-spacing:8.495979pt;}
.lsbd{letter-spacing:8.812153pt;}
.ls8{letter-spacing:8.865486pt;}
.ls101{letter-spacing:9.362076pt;}
.ls102{letter-spacing:9.390819pt;}
.ls135{letter-spacing:11.470819pt;}
.lsd2{letter-spacing:11.514690pt;}
.ls97{letter-spacing:11.762076pt;}
.ls15{letter-spacing:11.774229pt;}
.lsec{letter-spacing:11.774648pt;}
.lse2{letter-spacing:11.778667pt;}
.ls52{letter-spacing:11.790819pt;}
.ls3e{letter-spacing:11.796192pt;}
.ls13{letter-spacing:11.798819pt;}
.ls51{letter-spacing:11.799925pt;}
.lsdc{letter-spacing:11.815410pt;}
.ls91{letter-spacing:11.819443pt;}
.ls140{letter-spacing:11.827562pt;}
.ls95{letter-spacing:11.827981pt;}
.ls37{letter-spacing:11.832438pt;}
.ls92{letter-spacing:11.835355pt;}
.ls8a{letter-spacing:11.844153pt;}
.lsfa{letter-spacing:11.853259pt;}
.ls106{letter-spacing:11.868743pt;}
.ls107{letter-spacing:11.897486pt;}
.lsa1{letter-spacing:12.057486pt;}
.ls126{letter-spacing:12.324153pt;}
.ls4e{letter-spacing:12.484153pt;}
.ls4d{letter-spacing:12.493259pt;}
.lse9{letter-spacing:12.542571pt;}
.lsea{letter-spacing:12.552491pt;}
.ls9c{letter-spacing:12.562076pt;}
.ls10e{letter-spacing:12.804153pt;}
.ls12e{letter-spacing:13.124153pt;}
.ls12f{letter-spacing:13.177486pt;}
.ls11b{letter-spacing:13.230819pt;}
.ls89{letter-spacing:13.251703pt;}
.ls113{letter-spacing:13.251891pt;}
.lse1{letter-spacing:13.305037pt;}
.ls12a{letter-spacing:13.785037pt;}
.ls13f{letter-spacing:14.118427pt;}
.ls46{letter-spacing:14.173945pt;}
.ls12{letter-spacing:14.459249pt;}
.ls12d{letter-spacing:14.638370pt;}
.lsa9{letter-spacing:14.712000pt;}
.lsf{letter-spacing:14.724153pt;}
.lsae{letter-spacing:14.732153pt;}
.lsdf{letter-spacing:14.748743pt;}
.lsbe{letter-spacing:14.760895pt;}
.ls4b{letter-spacing:14.765333pt;}
.ls87{letter-spacing:14.768688pt;}
.lsc4{letter-spacing:14.769703pt;}
.ls59{letter-spacing:14.777486pt;}
.lsb7{letter-spacing:14.785486pt;}
.ls100{letter-spacing:14.925333pt;}
.lsa{letter-spacing:14.931216pt;}
.lsfc{letter-spacing:14.962076pt;}
.lsa0{letter-spacing:15.310819pt;}
.ls13e{letter-spacing:15.618262pt;}
.lsa8{letter-spacing:15.862712pt;}
.ls5e{letter-spacing:15.872776pt;}
.ls5f{letter-spacing:15.916045pt;}
.lse6{letter-spacing:15.975410pt;}
.ls128{letter-spacing:16.004153pt;}
.ls123{letter-spacing:16.032973pt;}
.ls124{letter-spacing:16.057486pt;}
.lsfd{letter-spacing:16.359938pt;}
.ls56{letter-spacing:16.365333pt;}
.lsa3{letter-spacing:16.627981pt;}
.ls64{letter-spacing:16.653423pt;}
.ls9f{letter-spacing:16.733271pt;}
.lsc7{letter-spacing:16.910819pt;}
.lsc6{letter-spacing:16.919925pt;}
.ls10a{letter-spacing:17.017486pt;}
.ls13a{letter-spacing:17.105093pt;}
.ls3d{letter-spacing:17.119634pt;}
.ls35{letter-spacing:17.131405pt;}
.ls134{letter-spacing:17.251891pt;}
.ls103{letter-spacing:17.325333pt;}
.ls32{letter-spacing:17.398628pt;}
.ls13d{letter-spacing:17.401410pt;}
.ls2a{letter-spacing:17.451962pt;}
.ls115{letter-spacing:17.526307pt;}
.lsce{letter-spacing:17.534880pt;}
.ls27{letter-spacing:17.538667pt;}
.ls29{letter-spacing:17.550819pt;}
.ls3c{letter-spacing:17.557948pt;}
.lscd{letter-spacing:17.559925pt;}
.lsf3{letter-spacing:17.571891pt;}
.lsef{letter-spacing:17.625224pt;}
.ls31{letter-spacing:17.877948pt;}
.lsb4{letter-spacing:18.172512pt;}
.lsac{letter-spacing:18.178667pt;}
.ls16{letter-spacing:18.190819pt;}
.ls119{letter-spacing:18.281315pt;}
.ls68{letter-spacing:18.284873pt;}
.ls11a{letter-spacing:18.297486pt;}
.ls132{letter-spacing:18.396000pt;}
.ls11c{letter-spacing:18.449213pt;}
.ls10d{letter-spacing:18.531891pt;}
.lsb3{letter-spacing:18.539443pt;}
.lsa6{letter-spacing:18.552000pt;}
.ls10f{letter-spacing:18.585224pt;}
.lsdb{letter-spacing:18.588743pt;}
.lsab{letter-spacing:18.592776pt;}
.ls12b{letter-spacing:18.592973pt;}
.lsd7{letter-spacing:18.601315pt;}
.lsaa{letter-spacing:18.605333pt;}
.lse7{letter-spacing:18.682667pt;}
.ls105{letter-spacing:18.695410pt;}
.ls10c{letter-spacing:18.958557pt;}
.lse{letter-spacing:18.963491pt;}
.ls125{letter-spacing:18.982546pt;}
.lsc2{letter-spacing:19.134229pt;}
.lsc0{letter-spacing:19.142021pt;}
.lsc1{letter-spacing:19.195355pt;}
.ls9a{letter-spacing:19.222712pt;}
.ls99{letter-spacing:19.282076pt;}
.ls129{letter-spacing:19.298667pt;}
.ls5d{letter-spacing:19.436045pt;}
.ls5c{letter-spacing:19.446109pt;}
.ls3a{letter-spacing:19.568023pt;}
.ls85{letter-spacing:19.965644pt;}
.ls45{letter-spacing:19.972766pt;}
.ls83{letter-spacing:19.987562pt;}
.ls8f{letter-spacing:20.039938pt;}
.ls28{letter-spacing:20.225295pt;}
.lse5{letter-spacing:20.295410pt;}
.ls130{letter-spacing:20.365333pt;}
.ls58{letter-spacing:20.491281pt;}
.ls118{letter-spacing:20.508743pt;}
.lsd0{letter-spacing:20.558557pt;}
.ls1a{letter-spacing:20.581357pt;}
.ls9b{letter-spacing:20.615410pt;}
.lsb9{letter-spacing:20.672776pt;}
.ls122{letter-spacing:20.676245pt;}
.lsb5{letter-spacing:21.112000pt;}
.ls65{letter-spacing:21.124153pt;}
.ls8d{letter-spacing:21.165333pt;}
.ls1b{letter-spacing:21.274690pt;}
.ls13c{letter-spacing:21.294743pt;}
.ls17{letter-spacing:21.325333pt;}
.lsf1{letter-spacing:21.382546pt;}
.ls86{letter-spacing:21.399695pt;}
.lsf2{letter-spacing:21.435879pt;}
.ls4{letter-spacing:21.683491pt;}
.lsba{letter-spacing:21.752000pt;}
.lsb8{letter-spacing:22.066604pt;}
.ls4c{letter-spacing:22.201410pt;}
.ls80{letter-spacing:22.471414pt;}
.ls82{letter-spacing:22.619249pt;}
.ls127{letter-spacing:22.715879pt;}
.ls10b{letter-spacing:22.798557pt;}
.lsc{letter-spacing:22.802076pt;}
.ls109{letter-spacing:22.851891pt;}
.ls44{letter-spacing:23.053259pt;}
.ls81{letter-spacing:23.320090pt;}
.lsbf{letter-spacing:23.512000pt;}
.ls7f{letter-spacing:23.598370pt;}
.lsb2{letter-spacing:23.702712pt;}
.lsb1{letter-spacing:24.123744pt;}
.ls3{letter-spacing:24.243491pt;}
.ls142{letter-spacing:24.360895pt;}
.ls4f{letter-spacing:24.399433pt;}
.ls133{letter-spacing:25.062546pt;}
.lsa2{letter-spacing:25.095410pt;}
.ls78{letter-spacing:25.522076pt;}
.lsd5{letter-spacing:25.863037pt;}
.ls33{letter-spacing:25.965771pt;}
.ls70{letter-spacing:25.966859pt;}
.ls6a{letter-spacing:25.986592pt;}
.ls6f{letter-spacing:26.018667pt;}
.lsca{letter-spacing:26.535410pt;}
.lsde{letter-spacing:26.548000pt;}
.lsed{letter-spacing:26.580305pt;}
.lsf9{letter-spacing:26.601333pt;}
.ls117{letter-spacing:26.937486pt;}
.ls138{letter-spacing:27.161410pt;}
.ls62{letter-spacing:27.371962pt;}
.ls63{letter-spacing:27.373665pt;}
.ls53{letter-spacing:27.374743pt;}
.ls6c{letter-spacing:28.418667pt;}
.ls6e{letter-spacing:28.430819pt;}
.ls71{letter-spacing:28.472000pt;}
.ls73{letter-spacing:28.484153pt;}
.ls43{letter-spacing:28.741134pt;}
.ls1d{letter-spacing:28.832776pt;}
.lscb{letter-spacing:29.169703pt;}
.lscc{letter-spacing:29.177486pt;}
.ls98{letter-spacing:29.308743pt;}
.ls139{letter-spacing:29.638427pt;}
.ls12c{letter-spacing:29.830678pt;}
.ls131{letter-spacing:30.342546pt;}
.lsb0{letter-spacing:30.501357pt;}
.ls72{letter-spacing:31.053665pt;}
.lsf5{letter-spacing:31.085333pt;}
.ls6d{letter-spacing:31.105295pt;}
.ls26{letter-spacing:33.505295pt;}
.ls13b{letter-spacing:34.178262pt;}
.ls111{letter-spacing:34.182546pt;}
.lse4{letter-spacing:37.005333pt;}
.ls21{letter-spacing:37.419443pt;}
.lsf7{letter-spacing:37.870819pt;}
.lsf6{letter-spacing:37.899640pt;}
.lsf4{letter-spacing:44.529213pt;}
.lse3{letter-spacing:50.712000pt;}
.ls11e{letter-spacing:53.152973pt;}
.lsd1{letter-spacing:54.445771pt;}
.lse0{letter-spacing:59.565333pt;}
.ls88{letter-spacing:65.550819pt;}
.ls40{letter-spacing:71.357765pt;}
.ls116{letter-spacing:73.325333pt;}
.lsbb{letter-spacing:76.738667pt;}
.lsa7{letter-spacing:76.792000pt;}
.lsaf{letter-spacing:83.192000pt;}
.ls8c{letter-spacing:89.612153pt;}
.ls41{letter-spacing:90.063545pt;}
.ls11d{letter-spacing:98.592973pt;}
.ls11f{letter-spacing:220.685333pt;}
.ls19{letter-spacing:236.954690pt;}
.ls38{letter-spacing:255.834690pt;}
.ls42{letter-spacing:284.065843pt;}
.ls3f{letter-spacing:315.832000pt;}
.ls8e{letter-spacing:382.925333pt;}
.lsad{letter-spacing:389.325333pt;}
.lsb6{letter-spacing:389.378667pt;}
.ls7e{letter-spacing:404.604748pt;}
.lsdd{letter-spacing:409.072582pt;}
.lseb{letter-spacing:411.472582pt;}
.ls141{letter-spacing:433.788743pt;}
.lsc5{letter-spacing:447.266362pt;}
.lsda{letter-spacing:451.632582pt;}
.lsd4{letter-spacing:476.472438pt;}
.ls93{letter-spacing:516.982712pt;}
.ls66{letter-spacing:604.280090pt;}
.wse7{word-spacing:-24.176880pt;}
.wse9{word-spacing:-18.225648pt;}
.wsfc{word-spacing:-17.588016pt;}
.ws59{word-spacing:-14.984352pt;}
.ws7a{word-spacing:-11.849328pt;}
.ws92{word-spacing:-8.622427pt;}
.ws126{word-spacing:-5.844960pt;}
.ws174{word-spacing:-5.331216pt;}
.ws10{word-spacing:-2.677920pt;}
.ws6c{word-spacing:-1.115856pt;}
.ws1{word-spacing:-0.127520pt;}
.ws1f{word-spacing:-0.053136pt;}
.ws2{word-spacing:-0.047819pt;}
.ws108{word-spacing:-0.042507pt;}
.ws56{word-spacing:-0.037195pt;}
.ws6b{word-spacing:-0.026565pt;}
.ws5a{word-spacing:0.000000pt;}
.ws11c{word-spacing:5.005190pt;}
.ws55{word-spacing:8.767440pt;}
.ws58{word-spacing:8.820576pt;}
.ws177{word-spacing:10.541653pt;}
.ws4b{word-spacing:10.570592pt;}
.wsa0{word-spacing:10.584160pt;}
.wsb5{word-spacing:11.689920pt;}
.ws190{word-spacing:11.731840pt;}
.ws14e{word-spacing:11.740310pt;}
.ws73{word-spacing:11.743056pt;}
.wsd5{word-spacing:11.981535pt;}
.ws6f{word-spacing:12.008736pt;}
.ws18c{word-spacing:12.114400pt;}
.wsdf{word-spacing:12.221280pt;}
.wsb2{word-spacing:12.433824pt;}
.ws10d{word-spacing:12.593232pt;}
.ws197{word-spacing:12.666987pt;}
.ws6d{word-spacing:12.752640pt;}
.ws1b{word-spacing:12.805776pt;}
.ws81{word-spacing:12.965184pt;}
.ws160{word-spacing:13.018320pt;}
.ws24{word-spacing:13.071456pt;}
.ws17c{word-spacing:13.124592pt;}
.wsd7{word-spacing:13.177728pt;}
.ws78{word-spacing:13.230864pt;}
.ws76{word-spacing:13.284000pt;}
.ws84{word-spacing:13.337136pt;}
.ws77{word-spacing:13.337182pt;}
.ws4f{word-spacing:13.390272pt;}
.wsee{word-spacing:13.549680pt;}
.ws137{word-spacing:13.602816pt;}
.ws128{word-spacing:13.655952pt;}
.wse{word-spacing:13.723957pt;}
.ws1a{word-spacing:13.762224pt;}
.ws9e{word-spacing:13.868496pt;}
.ws17d{word-spacing:14.027904pt;}
.ws96{word-spacing:14.122789pt;}
.ws95{word-spacing:14.134176pt;}
.wsaa{word-spacing:14.217723pt;}
.ws50{word-spacing:14.240448pt;}
.ws181{word-spacing:14.282240pt;}
.ws12{word-spacing:14.293584pt;}
.ws182{word-spacing:14.324747pt;}
.ws23{word-spacing:14.399856pt;}
.ws112{word-spacing:14.431106pt;}
.ws8e{word-spacing:14.452992pt;}
.ws89{word-spacing:14.506128pt;}
.wsb{word-spacing:14.632512pt;}
.ws152{word-spacing:14.664800pt;}
.ws6a{word-spacing:14.665536pt;}
.wsc1{word-spacing:14.684694pt;}
.ws11d{word-spacing:14.687607pt;}
.ws133{word-spacing:14.700360pt;}
.wsb4{word-spacing:14.701285pt;}
.wse6{word-spacing:14.716350pt;}
.ws99{word-spacing:14.718672pt;}
.wse2{word-spacing:14.740940pt;}
.ws11f{word-spacing:14.751910pt;}
.ws14a{word-spacing:14.753496pt;}
.ws29{word-spacing:14.771808pt;}
.ws183{word-spacing:14.792320pt;}
.ws57{word-spacing:14.824944pt;}
.ws5d{word-spacing:14.834827pt;}
.wsfe{word-spacing:14.878080pt;}
.wsd8{word-spacing:14.931216pt;}
.ws149{word-spacing:15.056384pt;}
.ws49{word-spacing:15.090624pt;}
.wse0{word-spacing:15.143017pt;}
.ws46{word-spacing:15.143760pt;}
.ws34{word-spacing:15.196896pt;}
.ws3f{word-spacing:15.356304pt;}
.ws153{word-spacing:15.387413pt;}
.wsa2{word-spacing:15.409440pt;}
.ws10c{word-spacing:15.515712pt;}
.ws8b{word-spacing:15.621984pt;}
.ws52{word-spacing:15.728256pt;}
.wse3{word-spacing:15.781392pt;}
.ws4c{word-spacing:15.812480pt;}
.ws25{word-spacing:15.834528pt;}
.wsa6{word-spacing:15.858480pt;}
.ws10f{word-spacing:15.887664pt;}
.ws117{word-spacing:15.940800pt;}
.ws37{word-spacing:16.047072pt;}
.ws4a{word-spacing:16.100208pt;}
.ws193{word-spacing:16.152533pt;}
.ws144{word-spacing:16.170480pt;}
.ws145{word-spacing:16.206480pt;}
.ws188{word-spacing:16.237547pt;}
.ws9c{word-spacing:16.259616pt;}
.ws189{word-spacing:16.280053pt;}
.ws9d{word-spacing:16.312752pt;}
.ws18f{word-spacing:16.450080pt;}
.wsdb{word-spacing:16.525296pt;}
.ws14f{word-spacing:16.578432pt;}
.ws47{word-spacing:16.684704pt;}
.wsa{word-spacing:16.736533pt;}
.ws15{word-spacing:16.737840pt;}
.ws192{word-spacing:16.747627pt;}
.wsa3{word-spacing:16.790976pt;}
.ws191{word-spacing:16.832640pt;}
.ws75{word-spacing:16.844112pt;}
.ws74{word-spacing:16.855616pt;}
.wsaf{word-spacing:16.950384pt;}
.ws3c{word-spacing:17.003520pt;}
.wsde{word-spacing:17.109792pt;}
.ws26{word-spacing:17.162928pt;}
.ws7f{word-spacing:17.216064pt;}
.ws3b{word-spacing:17.269200pt;}
.wsa1{word-spacing:17.322336pt;}
.ws11a{word-spacing:17.364439pt;}
.ws36{word-spacing:17.375472pt;}
.wsc5{word-spacing:17.417773pt;}
.ws7b{word-spacing:17.428608pt;}
.ws69{word-spacing:17.481744pt;}
.wsb7{word-spacing:17.588016pt;}
.wsfb{word-spacing:17.637471pt;}
.ws187{word-spacing:17.640267pt;}
.ws16a{word-spacing:17.641152pt;}
.ws21{word-spacing:17.694288pt;}
.wsf3{word-spacing:17.800560pt;}
.ws184{word-spacing:17.852800pt;}
.ws12a{word-spacing:17.853696pt;}
.wsd{word-spacing:17.884181pt;}
.wscc{word-spacing:17.906832pt;}
.wsf2{word-spacing:17.959968pt;}
.ws97{word-spacing:18.066240pt;}
.ws63{word-spacing:18.278784pt;}
.ws62{word-spacing:18.331920pt;}
.ws168{word-spacing:18.365147pt;}
.ws167{word-spacing:18.367607pt;}
.ws166{word-spacing:18.384197pt;}
.ws38{word-spacing:18.385056pt;}
.wse4{word-spacing:18.438192pt;}
.ws6{word-spacing:18.458005pt;}
.ws14d{word-spacing:18.467910pt;}
.ws42{word-spacing:18.491328pt;}
.ws131{word-spacing:18.521243pt;}
.wse1{word-spacing:18.525147pt;}
.ws16f{word-spacing:18.531051pt;}
.ws18{word-spacing:18.544464pt;}
.ws159{word-spacing:18.548773pt;}
.wsc3{word-spacing:18.556350pt;}
.ws17{word-spacing:18.597600pt;}
.ws130{word-spacing:18.650736pt;}
.ws7d{word-spacing:18.757008pt;}
.ws7c{word-spacing:18.791584pt;}
.ws7e{word-spacing:18.810144pt;}
.wsbf{word-spacing:18.863280pt;}
.ws70{word-spacing:18.916416pt;}
.ws6e{word-spacing:18.969552pt;}
.ws179{word-spacing:19.022688pt;}
.wsa9{word-spacing:19.075824pt;}
.wsc6{word-spacing:19.128960pt;}
.wsc7{word-spacing:19.182096pt;}
.ws156{word-spacing:19.214101pt;}
.wsc8{word-spacing:19.218480pt;}
.wsb3{word-spacing:19.235232pt;}
.ws154{word-spacing:19.255616pt;}
.ws157{word-spacing:19.271813pt;}
.ws155{word-spacing:19.286829pt;}
.ws178{word-spacing:19.341504pt;}
.wsa5{word-spacing:19.378480pt;}
.ws98{word-spacing:19.394640pt;}
.wsa4{word-spacing:19.409909pt;}
.ws93{word-spacing:19.447776pt;}
.ws51{word-spacing:19.500912pt;}
.wsce{word-spacing:19.507248pt;}
.ws3a{word-spacing:19.554048pt;}
.wsff{word-spacing:19.660320pt;}
.ws8c{word-spacing:19.713456pt;}
.ws13f{word-spacing:19.807607pt;}
.ws12d{word-spacing:19.819728pt;}
.ws12c{word-spacing:19.820163pt;}
.ws18b{word-spacing:19.850613pt;}
.ws40{word-spacing:19.872864pt;}
.ws17f{word-spacing:19.893120pt;}
.wsbc{word-spacing:19.926000pt;}
.ws17e{word-spacing:19.935627pt;}
.wsef{word-spacing:19.967607pt;}
.wsf0{word-spacing:19.979136pt;}
.ws54{word-spacing:20.032272pt;}
.ws43{word-spacing:20.138544pt;}
.ws194{word-spacing:20.148160pt;}
.ws72{word-spacing:20.244816pt;}
.ws71{word-spacing:20.266293pt;}
.ws45{word-spacing:20.297952pt;}
.ws163{word-spacing:20.338480pt;}
.ws162{word-spacing:20.351056pt;}
.wse5{word-spacing:20.351088pt;}
.ws18a{word-spacing:20.360693pt;}
.ws2a{word-spacing:20.404224pt;}
.ws18d{word-spacing:20.445707pt;}
.ws31{word-spacing:20.457360pt;}
.ws18e{word-spacing:20.488213pt;}
.ws28{word-spacing:20.510496pt;}
.ws12b{word-spacing:20.513496pt;}
.wscb{word-spacing:20.563632pt;}
.ws150{word-spacing:20.573227pt;}
.ws151{word-spacing:20.615733pt;}
.wsca{word-spacing:20.616768pt;}
.ws82{word-spacing:20.776176pt;}
.wsf8{word-spacing:20.829312pt;}
.ws3d{word-spacing:20.882448pt;}
.wsf7{word-spacing:20.935584pt;}
.ws11{word-spacing:20.988720pt;}
.ws30{word-spacing:21.094992pt;}
.ws5{word-spacing:21.135851pt;}
.ws80{word-spacing:21.148128pt;}
.ws196{word-spacing:21.168320pt;}
.ws5e{word-spacing:21.201264pt;}
.ws195{word-spacing:21.210827pt;}
.wseb{word-spacing:21.254400pt;}
.wsbd{word-spacing:21.307536pt;}
.wsb9{word-spacing:21.340389pt;}
.wsba{word-spacing:21.352480pt;}
.wsbb{word-spacing:21.357808pt;}
.ws14b{word-spacing:21.360672pt;}
.ws103{word-spacing:21.413808pt;}
.ws53{word-spacing:21.466944pt;}
.wsec{word-spacing:21.520080pt;}
.ws13c{word-spacing:21.626352pt;}
.wsc{word-spacing:21.661856pt;}
.ws41{word-spacing:21.679488pt;}
.ws15a{word-spacing:21.732624pt;}
.wsbe{word-spacing:21.838896pt;}
.ws68{word-spacing:21.892032pt;}
.wsb6{word-spacing:22.051440pt;}
.ws142{word-spacing:22.104576pt;}
.wscf{word-spacing:22.164439pt;}
.ws8a{word-spacing:22.210848pt;}
.wsac{word-spacing:22.263984pt;}
.wsdc{word-spacing:22.476528pt;}
.ws39{word-spacing:22.529664pt;}
.ws119{word-spacing:22.653988pt;}
.ws134{word-spacing:22.666731pt;}
.ws132{word-spacing:22.675451pt;}
.ws11e{word-spacing:22.684097pt;}
.ws125{word-spacing:22.695277pt;}
.ws111{word-spacing:22.695474pt;}
.ws110{word-spacing:22.707322pt;}
.ws120{word-spacing:22.719867pt;}
.ws11b{word-spacing:22.736610pt;}
.ws48{word-spacing:22.742208pt;}
.ws44{word-spacing:22.795344pt;}
.ws17a{word-spacing:22.848480pt;}
.ws94{word-spacing:22.954752pt;}
.ws161{word-spacing:22.964439pt;}
.ws4{word-spacing:23.000779pt;}
.ws173{word-spacing:23.007888pt;}
.ws60{word-spacing:23.114160pt;}
.ws8d{word-spacing:23.273568pt;}
.ws16{word-spacing:23.326704pt;}
.ws104{word-spacing:23.379840pt;}
.wsf6{word-spacing:23.432976pt;}
.ws12f{word-spacing:23.444558pt;}
.wsf4{word-spacing:23.480768pt;}
.ws1e{word-spacing:23.486112pt;}
.ws1d{word-spacing:23.559056pt;}
.wse8{word-spacing:23.592384pt;}
.ws165{word-spacing:23.645147pt;}
.ws164{word-spacing:23.660163pt;}
.ws17b{word-spacing:23.751792pt;}
.ws12e{word-spacing:23.766829pt;}
.ws180{word-spacing:23.803733pt;}
.ws10e{word-spacing:23.804928pt;}
.wsf5{word-spacing:23.846615pt;}
.ws83{word-spacing:23.858064pt;}
.ws14{word-spacing:24.017472pt;}
.wsf1{word-spacing:24.123744pt;}
.ws171{word-spacing:24.282288pt;}
.ws141{word-spacing:24.283152pt;}
.ws136{word-spacing:24.336288pt;}
.ws172{word-spacing:24.338480pt;}
.ws16c{word-spacing:24.423243pt;}
.wsd6{word-spacing:24.442560pt;}
.ws16e{word-spacing:24.445147pt;}
.ws16d{word-spacing:24.481442pt;}
.wsb8{word-spacing:24.495696pt;}
.ws9b{word-spacing:24.601968pt;}
.wsa8{word-spacing:24.655104pt;}
.wsa7{word-spacing:24.658480pt;}
.ws32{word-spacing:24.708240pt;}
.ws10b{word-spacing:24.761376pt;}
.ws138{word-spacing:24.814512pt;}
.ws15f{word-spacing:24.867648pt;}
.ws127{word-spacing:24.920784pt;}
.ws5f{word-spacing:24.973920pt;}
.wsda{word-spacing:25.007056pt;}
.ws86{word-spacing:25.027056pt;}
.ws7{word-spacing:25.056981pt;}
.ws105{word-spacing:25.133328pt;}
.wsfa{word-spacing:25.399008pt;}
.wsb1{word-spacing:25.452144pt;}
.ws88{word-spacing:25.505280pt;}
.ws139{word-spacing:25.558416pt;}
.ws13a{word-spacing:25.567607pt;}
.ws4e{word-spacing:25.717824pt;}
.ws102{word-spacing:25.770960pt;}
.ws101{word-spacing:25.824096pt;}
.ws3{word-spacing:25.869899pt;}
.wsab{word-spacing:25.930368pt;}
.ws22{word-spacing:25.983504pt;}
.ws143{word-spacing:25.987910pt;}
.ws106{word-spacing:26.089776pt;}
.wsd0{word-spacing:26.142912pt;}
.wsd4{word-spacing:26.196048pt;}
.ws13e{word-spacing:26.249184pt;}
.wsad{word-spacing:26.302320pt;}
.ws10a{word-spacing:26.408592pt;}
.ws79{word-spacing:26.461728pt;}
.ws16b{word-spacing:26.514864pt;}
.ws176{word-spacing:26.770925pt;}
.ws186{word-spacing:26.821707pt;}
.ws1c{word-spacing:26.833680pt;}
.ws185{word-spacing:26.864213pt;}
.ws33{word-spacing:26.886816pt;}
.ws9{word-spacing:26.969728pt;}
.ws2d{word-spacing:26.993088pt;}
.ws100{word-spacing:27.046224pt;}
.wscd{word-spacing:27.258768pt;}
.ws148{word-spacing:27.311904pt;}
.ws109{word-spacing:27.418176pt;}
.ws140{word-spacing:27.471312pt;}
.wsea{word-spacing:27.524448pt;}
.ws13{word-spacing:27.683856pt;}
.ws8{word-spacing:27.734827pt;}
.ws13d{word-spacing:27.790128pt;}
.wsd9{word-spacing:27.949536pt;}
.ws4d{word-spacing:28.002672pt;}
.ws169{word-spacing:28.055808pt;}
.ws158{word-spacing:28.108944pt;}
.wsfd{word-spacing:28.215216pt;}
.wsae{word-spacing:28.374624pt;}
.ws35{word-spacing:28.427760pt;}
.ws116{word-spacing:28.587168pt;}
.ws2f{word-spacing:28.746576pt;}
.ws27{word-spacing:28.799712pt;}
.ws87{word-spacing:28.852848pt;}
.wsdd{word-spacing:29.118528pt;}
.ws129{word-spacing:29.171664pt;}
.ws61{word-spacing:29.224800pt;}
.ws85{word-spacing:29.277936pt;}
.ws3e{word-spacing:29.649888pt;}
.ws15b{word-spacing:29.754987pt;}
.ws15e{word-spacing:29.756160pt;}
.ws15c{word-spacing:29.778480pt;}
.ws2c{word-spacing:29.862432pt;}
.ws20{word-spacing:30.128112pt;}
.ws2b{word-spacing:30.340656pt;}
.ws118{word-spacing:30.393792pt;}
.ws19{word-spacing:30.446928pt;}
.ws14c{word-spacing:30.627910pt;}
.ws67{word-spacing:30.712608pt;}
.ws64{word-spacing:30.749531pt;}
.ws66{word-spacing:30.765744pt;}
.ws146{word-spacing:30.913693pt;}
.ws147{word-spacing:30.925152pt;}
.ws123{word-spacing:31.005147pt;}
.ws121{word-spacing:31.017723pt;}
.ws124{word-spacing:31.031424pt;}
.ws15d{word-spacing:31.279581pt;}
.wsb0{word-spacing:31.297104pt;}
.wsed{word-spacing:31.775328pt;}
.ws170{word-spacing:31.828464pt;}
.wsc9{word-spacing:32.412960pt;}
.ws135{word-spacing:32.519232pt;}
.wsf9{word-spacing:32.784912pt;}
.ws13b{word-spacing:32.997456pt;}
.ws2e{word-spacing:33.688224pt;}
.ws115{word-spacing:34.485264pt;}
.ws113{word-spacing:36.929520pt;}
.ws65{word-spacing:37.301472pt;}
.ws122{word-spacing:37.779696pt;}
.ws0{word-spacing:43.101760pt;}
.wsd2{word-spacing:43.221081pt;}
.wsd1{word-spacing:43.252479pt;}
.ws114{word-spacing:48.778848pt;}
.ws9f{word-spacing:50.426064pt;}
.ws107{word-spacing:55.686528pt;}
.wsf{word-spacing:55.739664pt;}
.ws5c{word-spacing:101.817914pt;}
.ws5b{word-spacing:106.058290pt;}
.ws175{word-spacing:122.732927pt;}
.wsd3{word-spacing:223.236506pt;}
.ws90{word-spacing:277.351272pt;}
.ws9a{word-spacing:324.644350pt;}
.ws91{word-spacing:325.024525pt;}
.wsc2{word-spacing:352.617773pt;}
.wsc0{word-spacing:432.111017pt;}
.wsc4{word-spacing:439.516350pt;}
.ws8f{word-spacing:452.677394pt;}
._11{margin-left:-396.631621pt;}
._f{margin-left:-120.713972pt;}
._8{margin-left:-14.920230pt;}
._e{margin-left:-5.898096pt;}
._4{margin-left:-4.144608pt;}
._0{margin-left:-2.932960pt;}
._1{margin-left:-1.785280pt;}
._7{width:1.029872pt;}
._2{width:2.603664pt;}
._24{width:3.899318pt;}
._21{width:5.738688pt;}
._28{width:13.193845pt;}
._15{width:14.747218pt;}
._5{width:15.834528pt;}
._14{width:17.481744pt;}
._12{width:18.576256pt;}
._3{width:19.543184pt;}
._16{width:20.463197pt;}
._2d{width:21.417141pt;}
._20{width:22.689072pt;}
._9{width:25.062677pt;}
._13{width:28.587168pt;}
._1d{width:34.534494pt;}
._2e{width:36.152341pt;}
._2c{width:42.490560pt;}
._d{width:44.589493pt;}
._22{width:50.415296pt;}
._6{width:53.136000pt;}
._1e{width:58.180634pt;}
._29{width:63.710064pt;}
._1c{width:92.903973pt;}
._c{width:97.573464pt;}
._1f{width:98.550875pt;}
._2b{width:104.745660pt;}
._25{width:119.319411pt;}
._b{width:127.272392pt;}
._a{width:140.003364pt;}
._2a{width:159.471803pt;}
._27{width:219.269364pt;}
._1a{width:259.844922pt;}
._26{width:291.019125pt;}
._23{width:300.625165pt;}
._10{width:364.036693pt;}
._1b{width:409.521981pt;}
._18{width:415.379897pt;}
._19{width:464.183547pt;}
._17{width:470.583547pt;}
.fs1b{font-size:17.771077pt;}
.fs19{font-size:21.324866pt;}
.fs6{font-size:22.625637pt;}
.fs11{font-size:23.548088pt;}
.fs15{font-size:24.569676pt;}
.fs1a{font-size:24.878655pt;}
.fs9{font-size:26.565333pt;}
.fs1d{font-size:26.656082pt;}
.fs7{font-size:28.283319pt;}
.fs18{font-size:28.433510pt;}
.fs16{font-size:28.664212pt;}
.fs10{font-size:31.397437pt;}
.fs12{font-size:31.882667pt;}
.fs17{font-size:31.987299pt;}
.fs14{font-size:32.759977pt;}
.fs8{font-size:33.939305pt;}
.fsc{font-size:34.489706pt;}
.fs1c{font-size:35.541087pt;}
.fs4{font-size:37.194667pt;}
.fsa{font-size:37.364423pt;}
.fse{font-size:39.246786pt;}
.fs5{font-size:39.595290pt;}
.fs13{font-size:40.949050pt;}
.fs3{font-size:42.506667pt;}
.fsb{font-size:43.112133pt;}
.fsd{font-size:45.986850pt;}
.fsf{font-size:47.096175pt;}
.fs1{font-size:47.818667pt;}
.fs2{font-size:53.136000pt;}
.fs0{font-size:127.520000pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:0.635867pt;}
.y65{bottom:0.636389pt;}
.y102{bottom:0.937765pt;}
.y25b{bottom:2.798213pt;}
.y98{bottom:3.736457pt;}
.ya9{bottom:3.736816pt;}
.y1d2{bottom:8.241283pt;}
.y101{bottom:9.282063pt;}
.y1c4{bottom:10.544486pt;}
.y1d8{bottom:10.544844pt;}
.y25e{bottom:12.794244pt;}
.y97{bottom:13.436471pt;}
.ya8{bottom:13.436830pt;}
.y25d{bottom:18.791729pt;}
.y1d1{bottom:22.061726pt;}
.y96{bottom:23.137132pt;}
.yaa{bottom:23.137276pt;}
.y25c{bottom:24.789614pt;}
.y100{bottom:25.969746pt;}
.y6b{bottom:26.090345pt;}
.y1cd{bottom:28.971133pt;}
.y269{bottom:32.786350pt;}
.y24b{bottom:32.787292pt;}
.y1c1{bottom:33.578813pt;}
.yff{bottom:34.313160pt;}
.y1be{bottom:38.185320pt;}
.y69{bottom:38.817908pt;}
.y68{bottom:41.999853pt;}
.y9b{bottom:42.537304pt;}
.y268{bottom:44.781276pt;}
.y261{bottom:44.781365pt;}
.y24a{bottom:44.782218pt;}
.y1c0{bottom:45.095387pt;}
.y1c2{bottom:49.702406pt;}
.y1cc{bottom:56.612019pt;}
.y1d7{bottom:56.612628pt;}
.y260{bottom:58.775986pt;}
.y24d{bottom:58.776750pt;}
.y249{bottom:58.776839pt;}
.y1cb{bottom:58.915523pt;}
.yfc{bottom:62.125654pt;}
.y9a{bottom:65.171174pt;}
.y67{bottom:70.636070pt;}
.y9c{bottom:71.637922pt;}
.y12f{bottom:72.746667pt;}
.y63{bottom:73.480000pt;}
.y66{bottom:73.818014pt;}
.y24c{bottom:74.770399pt;}
.y272{bottom:74.770444pt;}
.y1cf{bottom:75.039275pt;}
.y1d5{bottom:77.344008pt;}
.y33{bottom:78.066667pt;}
.y189{bottom:81.813333pt;}
.y6a{bottom:83.363417pt;}
.y1d3{bottom:84.253718pt;}
.y99{bottom:84.571634pt;}
.y1d9{bottom:86.557278pt;}
.y1ff{bottom:90.013333pt;}
.y12e{bottom:90.853333pt;}
.y32{bottom:92.680000pt;}
.y10c{bottom:92.720104pt;}
.y26f{bottom:92.762006pt;}
.y263{bottom:92.762179pt;}
.y251{bottom:92.762944pt;}
.y248{bottom:92.763166pt;}
.yfd{bottom:101.063911pt;}
.y1fe{bottom:101.973333pt;}
.ya3{bottom:103.972309pt;}
.y188{bottom:104.680000pt;}
.y26c{bottom:104.757372pt;}
.y61{bottom:105.880000pt;}
.y31{bottom:107.293333pt;}
.y271{bottom:110.756465pt;}
.y12d{bottom:110.906667pt;}
.y1c6{bottom:111.893886pt;}
.y62{bottom:112.746667pt;}
.y26e{bottom:112.754068pt;}
.y25f{bottom:112.754552pt;}
.ycb{bottom:112.986667pt;}
.y285{bottom:114.186667pt;}
.y267{bottom:114.753492pt;}
.y1c8{bottom:116.500700pt;}
.y23b{bottom:116.753640pt;}
.y1fd{bottom:117.680000pt;}
.y262{bottom:118.752170pt;}
.y24e{bottom:118.752935pt;}
.y187{bottom:119.293333pt;}
.y10d{bottom:120.532696pt;}
.y26d{bottom:120.750892pt;}
.y12c{bottom:120.946667pt;}
.y5d{bottom:121.853333pt;}
.y30{bottom:121.893333pt;}
.yca{bottom:122.093333pt;}
.y26b{bottom:122.750183pt;}
.y107{bottom:123.313671pt;}
.y5e{bottom:124.640000pt;}
.y266{bottom:124.749522pt;}
.y252{bottom:124.750242pt;}
.y12b{bottom:125.520000pt;}
.y1c3{bottom:125.714840pt;}
.y250{bottom:128.748965pt;}
.y104{bottom:128.876111pt;}
.y1bc{bottom:129.693333pt;}
.y26a{bottom:130.747008pt;}
.y186{bottom:133.906667pt;}
.y60{bottom:134.466667pt;}
.y270{bottom:134.746495pt;}
.y2f{bottom:136.506667pt;}
.y5f{bottom:138.453333pt;}
.y1ca{bottom:139.534771pt;}
.ya7{bottom:139.539819pt;}
.yfe{bottom:140.000991pt;}
.y1fc{bottom:141.933333pt;}
.y9f{bottom:142.773732pt;}
.y231{bottom:144.026667pt;}
.y1d0{bottom:144.142097pt;}
.y1bb{bottom:144.306667pt;}
.y264{bottom:144.741539pt;}
.y247{bottom:144.742526pt;}
.yc9{bottom:148.320000pt;}
.y1fb{bottom:148.840000pt;}
.y2e{bottom:151.120000pt;}
.ya5{bottom:152.473458pt;}
.y1c5{bottom:155.658621pt;}
.y185{bottom:156.626667pt;}
.y1ba{bottom:158.920000pt;}
.y5c{bottom:160.080000pt;}
.y9e{bottom:162.174191pt;}
.y105{bottom:162.251535pt;}
.yc8{bottom:162.933333pt;}
.y284{bottom:164.266667pt;}
.y1d6{bottom:164.872761pt;}
.y2d{bottom:165.733333pt;}
.y230{bottom:166.146667pt;}
.y103{bottom:167.813907pt;}
.y184{bottom:171.240000pt;}
.y1c7{bottom:171.782470pt;}
.y1bf{bottom:171.782982pt;}
.y1b9{bottom:173.533333pt;}
.y5b{bottom:174.693333pt;}
.y265{bottom:174.729676pt;}
.y23c{bottom:174.730618pt;}
.y24f{bottom:174.730707pt;}
.y12a{bottom:176.706667pt;}
.yc7{bottom:177.546667pt;}
.y283{bottom:178.880000pt;}
.y10a{bottom:178.939787pt;}
.y1fa{bottom:179.306667pt;}
.y2c{bottom:180.346667pt;}
.y22f{bottom:180.760000pt;}
.y1c9{bottom:180.996099pt;}
.ya2{bottom:181.574148pt;}
.y1ce{bottom:185.602816pt;}
.y183{bottom:185.853333pt;}
.y109{bottom:187.283202pt;}
.y1b8{bottom:188.146667pt;}
.y5a{bottom:189.306667pt;}
.y1d4{bottom:190.210444pt;}
.yc6{bottom:192.160000pt;}
.y282{bottom:193.493333pt;}
.y1f9{bottom:193.920000pt;}
.y2b{bottom:194.960000pt;}
.y22e{bottom:195.373333pt;}
.y129{bottom:196.746667pt;}
.y182{bottom:200.466667pt;}
.y1b7{bottom:202.760000pt;}
.y59{bottom:203.920000pt;}
.y10b{bottom:203.970865pt;}
.y108{bottom:203.970914pt;}
.y281{bottom:208.106667pt;}
.y2a{bottom:209.573333pt;}
.y22d{bottom:209.986667pt;}
.ya4{bottom:210.674838pt;}
.y240{bottom:210.716018pt;}
.yc5{bottom:214.573333pt;}
.y128{bottom:214.853333pt;}
.y1f8{bottom:217.026667pt;}
.y1b6{bottom:217.373333pt;}
.yfa{bottom:217.386667pt;}
.y94{bottom:218.146667pt;}
.y58{bottom:218.533333pt;}
.y158{bottom:218.760000pt;}
.y9d{bottom:220.375571pt;}
.y280{bottom:222.720000pt;}
.y1f7{bottom:223.933333pt;}
.y22c{bottom:224.600000pt;}
.y181{bottom:225.400000pt;}
.y243{bottom:226.709760pt;}
.yc4{bottom:229.186667pt;}
.yf9{bottom:232.000000pt;}
.y180{bottom:232.306667pt;}
.y93{bottom:232.760000pt;}
.y57{bottom:233.146667pt;}
.y29{bottom:233.293333pt;}
.y127{bottom:237.266667pt;}
.y27f{bottom:237.333333pt;}
.y22b{bottom:239.213333pt;}
.ya0{bottom:239.776030pt;}
.y106{bottom:240.126872pt;}
.y1b5{bottom:240.760000pt;}
.y157{bottom:242.560000pt;}
.yc3{bottom:243.800000pt;}
.ya6{bottom:246.242347pt;}
.yf8{bottom:246.613333pt;}
.y92{bottom:247.373333pt;}
.y1b4{bottom:247.666667pt;}
.y28{bottom:247.906667pt;}
.y242{bottom:250.700234pt;}
.y126{bottom:251.880000pt;}
.y27e{bottom:251.946667pt;}
.y241{bottom:252.699525pt;}
.y1f6{bottom:254.400000pt;}
.y56{bottom:256.653333pt;}
.yc2{bottom:258.413333pt;}
.ya1{bottom:259.175987pt;}
.y17f{bottom:260.933333pt;}
.yf7{bottom:261.226667pt;}
.y91{bottom:261.973333pt;}
.y27{bottom:262.520000pt;}
.y125{bottom:266.493333pt;}
.y27d{bottom:266.560000pt;}
.y244{bottom:266.693884pt;}
.y17e{bottom:267.840000pt;}
.y156{bottom:267.973333pt;}
.y22a{bottom:268.373333pt;}
.y1f5{bottom:269.013333pt;}
.y55{bottom:271.266667pt;}
.yc1{bottom:273.026667pt;}
.yf6{bottom:275.840000pt;}
.y90{bottom:276.586667pt;}
.y26{bottom:277.133333pt;}
.y155{bottom:278.000000pt;}
.y1b3{bottom:278.426667pt;}
.y27c{bottom:281.160000pt;}
.y154{bottom:282.586667pt;}
.y229{bottom:282.986667pt;}
.y54{bottom:285.880000pt;}
.yc0{bottom:287.640000pt;}
.yf5{bottom:290.453333pt;}
.y245{bottom:290.684575pt;}
.y8f{bottom:291.200000pt;}
.y25{bottom:291.746667pt;}
.y124{bottom:292.080000pt;}
.y1f4{bottom:292.120000pt;}
.y1b2{bottom:293.040000pt;}
.y27b{bottom:295.773333pt;}
.y228{bottom:297.586667pt;}
.y1f3{bottom:299.026667pt;}
.y17d{bottom:299.226667pt;}
.y53{bottom:300.493333pt;}
.y153{bottom:305.280000pt;}
.y8e{bottom:305.813333pt;}
.y24{bottom:306.346667pt;}
.ybf{bottom:310.066667pt;}
.y27a{bottom:310.386667pt;}
.y256{bottom:310.676184pt;}
.y227{bottom:312.200000pt;}
.y235{bottom:312.675843pt;}
.yf4{bottom:313.720000pt;}
.y17c{bottom:313.840000pt;}
.y52{bottom:315.093333pt;}
.y1b1{bottom:316.426667pt;}
.y123{bottom:317.680000pt;}
.y152{bottom:319.893333pt;}
.y8d{bottom:320.426667pt;}
.y23{bottom:320.960000pt;}
.y1b0{bottom:323.333333pt;}
.ybe{bottom:324.666667pt;}
.y279{bottom:325.000000pt;}
.y259{bottom:326.669926pt;}
.y17b{bottom:328.453333pt;}
.y238{bottom:328.669585pt;}
.y1f2{bottom:329.506667pt;}
.y51{bottom:329.706667pt;}
.y151{bottom:329.920000pt;}
.y122{bottom:332.293333pt;}
.y150{bottom:334.506667pt;}
.y8c{bottom:335.040000pt;}
.y22{bottom:335.573333pt;}
.yf3{bottom:336.986667pt;}
.y278{bottom:339.613333pt;}
.y226{bottom:341.360000pt;}
.y17a{bottom:343.066667pt;}
.y1f1{bottom:344.106667pt;}
.y8b{bottom:349.653333pt;}
.y21{bottom:350.186667pt;}
.y258{bottom:350.660400pt;}
.y257{bottom:352.659691pt;}
.y237{bottom:352.660059pt;}
.y50{bottom:353.213333pt;}
.y1af{bottom:354.093333pt;}
.y277{bottom:354.226667pt;}
.y236{bottom:354.659350pt;}
.ybd{bottom:355.706667pt;}
.y225{bottom:355.973333pt;}
.y1f0{bottom:358.720000pt;}
.y121{bottom:359.040000pt;}
.y14f{bottom:359.906667pt;}
.yf2{bottom:360.266667pt;}
.y20{bottom:364.800000pt;}
.y25a{bottom:366.654049pt;}
.y179{bottom:366.933333pt;}
.y239{bottom:368.653398pt;}
.y1ae{bottom:368.706667pt;}
.y276{bottom:368.840000pt;}
.ybc{bottom:370.306667pt;}
.y224{bottom:370.586667pt;}
.y8a{bottom:372.840000pt;}
.y1ef{bottom:373.333333pt;}
.y120{bottom:373.653333pt;}
.y14e{bottom:374.520000pt;}
.y1f{bottom:379.413333pt;}
.y1ad{bottom:383.320000pt;}
.y275{bottom:383.453333pt;}
.yf1{bottom:383.533333pt;}
.ybb{bottom:384.920000pt;}
.y223{bottom:385.200000pt;}
.y89{bottom:387.440000pt;}
.y1ee{bottom:387.946667pt;}
.y11f{bottom:388.266667pt;}
.y4f{bottom:388.813333pt;}
.y14d{bottom:389.133333pt;}
.y178{bottom:390.800000pt;}
.y246{bottom:392.644089pt;}
.y1e{bottom:394.026667pt;}
.y1ac{bottom:397.933333pt;}
.yba{bottom:399.533333pt;}
.y222{bottom:399.813333pt;}
.y88{bottom:402.053333pt;}
.y1ed{bottom:402.560000pt;}
.y4e{bottom:403.426667pt;}
.y177{bottom:405.413333pt;}
.yf0{bottom:406.800000pt;}
.y1d{bottom:408.640000pt;}
.y274{bottom:410.266667pt;}
.y253{bottom:410.636722pt;}
.y14c{bottom:411.826667pt;}
.y11e{bottom:411.853333pt;}
.y1ab{bottom:412.546667pt;}
.y23d{bottom:412.636151pt;}
.y221{bottom:414.426667pt;}
.y87{bottom:416.666667pt;}
.y1ec{bottom:417.173333pt;}
.y4d{bottom:418.040000pt;}
.y254{bottom:422.631959pt;}
.yb9{bottom:422.800000pt;}
.y1c{bottom:423.253333pt;}
.y23e{bottom:424.631388pt;}
.y1aa{bottom:427.160000pt;}
.y176{bottom:427.760000pt;}
.y220{bottom:429.040000pt;}
.yef{bottom:430.080000pt;}
.y86{bottom:431.280000pt;}
.y4c{bottom:432.653333pt;}
.y1b{bottom:437.853333pt;}
.y1eb{bottom:440.280000pt;}
.y1a9{bottom:441.773333pt;}
.y173{bottom:443.440000pt;}
.y14b{bottom:443.866667pt;}
.y233{bottom:444.623449pt;}
.y85{bottom:445.893333pt;}
.yb8{bottom:446.053333pt;}
.y1ea{bottom:447.186667pt;}
.y4b{bottom:447.253333pt;}
.y11d{bottom:447.813333pt;}
.y23a{bottom:450.621068pt;}
.y21f{bottom:450.893333pt;}
.y1a{bottom:452.466667pt;}
.y234{bottom:452.620274pt;}
.yee{bottom:453.346667pt;}
.y175{bottom:456.053333pt;}
.y1a8{bottom:456.373333pt;}
.y14a{bottom:458.480000pt;}
.y174{bottom:460.040000pt;}
.y84{bottom:460.506667pt;}
.yb7{bottom:460.666667pt;}
.y4a{bottom:461.866667pt;}
.y11c{bottom:462.413333pt;}
.y255{bottom:462.616082pt;}
.y273{bottom:463.986667pt;}
.y23f{bottom:464.615200pt;}
.y21e{bottom:465.506667pt;}
.y19{bottom:467.080000pt;}
.y83{bottom:475.120000pt;}
.yb6{bottom:475.280000pt;}
.y49{bottom:476.480000pt;}
.yed{bottom:476.626667pt;}
.y11b{bottom:477.026667pt;}
.y1e9{bottom:478.106667pt;}
.y1a7{bottom:478.786667pt;}
.y172{bottom:479.653333pt;}
.y21d{bottom:480.120000pt;}
.y149{bottom:481.173333pt;}
.y232{bottom:488.093333pt;}
.yb5{bottom:489.893333pt;}
.y18{bottom:490.813333pt;}
.y48{bottom:491.093333pt;}
.yec{bottom:491.240000pt;}
.y11a{bottom:491.640000pt;}
.y1e8{bottom:492.720000pt;}
.y1a6{bottom:493.400000pt;}
.y171{bottom:494.266667pt;}
.y21c{bottom:494.733333pt;}
.y148{bottom:495.786667pt;}
.y82{bottom:499.906667pt;}
.yb4{bottom:504.493333pt;}
.y17{bottom:505.413333pt;}
.yeb{bottom:505.840000pt;}
.y119{bottom:506.253333pt;}
.y1e7{bottom:507.333333pt;}
.y1a5{bottom:508.013333pt;}
.y170{bottom:508.880000pt;}
.y21b{bottom:509.333333pt;}
.y147{bottom:510.400000pt;}
.y47{bottom:514.600000pt;}
.yb3{bottom:519.106667pt;}
.y16{bottom:520.026667pt;}
.y118{bottom:520.866667pt;}
.y1e6{bottom:521.933333pt;}
.y1a4{bottom:522.626667pt;}
.y21a{bottom:523.946667pt;}
.yea{bottom:524.666667pt;}
.y81{bottom:524.680000pt;}
.y146{bottom:525.013333pt;}
.y46{bottom:529.213333pt;}
.y16f{bottom:531.600000pt;}
.yb2{bottom:533.720000pt;}
.ye9{bottom:533.786667pt;}
.y15{bottom:534.640000pt;}
.y117{bottom:535.480000pt;}
.y1e5{bottom:536.546667pt;}
.y1a3{bottom:537.240000pt;}
.y80{bottom:539.293333pt;}
.y45{bottom:543.826667pt;}
.y219{bottom:545.813333pt;}
.y16e{bottom:546.213333pt;}
.y145{bottom:547.706667pt;}
.yb1{bottom:548.333333pt;}
.y14{bottom:549.253333pt;}
.y116{bottom:550.093333pt;}
.y1e4{bottom:551.373333pt;}
.y1a2{bottom:551.853333pt;}
.y7f{bottom:553.906667pt;}
.y44{bottom:558.440000pt;}
.y16d{bottom:560.826667pt;}
.y144{bottom:562.320000pt;}
.ye8{bottom:562.866667pt;}
.y13{bottom:563.866667pt;}
.y1e3{bottom:565.986667pt;}
.y1a1{bottom:566.453333pt;}
.y7e{bottom:568.520000pt;}
.yb0{bottom:570.760000pt;}
.y43{bottom:573.053333pt;}
.y115{bottom:573.680000pt;}
.y218{bottom:574.986667pt;}
.y16c{bottom:575.440000pt;}
.y143{bottom:576.933333pt;}
.ye7{bottom:577.480000pt;}
.y12{bottom:578.480000pt;}
.y1e2{bottom:580.600000pt;}
.y142{bottom:586.960000pt;}
.y42{bottom:587.666667pt;}
.y114{bottom:588.293333pt;}
.y1a0{bottom:588.866667pt;}
.y217{bottom:589.600000pt;}
.y16b{bottom:590.053333pt;}
.y7d{bottom:591.293333pt;}
.y141{bottom:591.546667pt;}
.ye6{bottom:592.093333pt;}
.y11{bottom:593.093333pt;}
.y1e1{bottom:595.213333pt;}
.yaf{bottom:601.786667pt;}
.y41{bottom:602.266667pt;}
.y113{bottom:602.906667pt;}
.y19f{bottom:603.480000pt;}
.y216{bottom:604.213333pt;}
.y16a{bottom:604.666667pt;}
.y140{bottom:606.160000pt;}
.ye5{bottom:606.706667pt;}
.y7b{bottom:606.973333pt;}
.y1e0{bottom:609.813333pt;}
.yae{bottom:616.400000pt;}
.y10{bottom:616.813333pt;}
.y112{bottom:617.520000pt;}
.y19e{bottom:618.093333pt;}
.y215{bottom:618.826667pt;}
.y169{bottom:619.280000pt;}
.y7c{bottom:619.586667pt;}
.y2a0{bottom:620.026667pt;}
.ye4{bottom:621.320000pt;}
.y40{bottom:625.773333pt;}
.y13f{bottom:628.853333pt;}
.yad{bottom:631.013333pt;}
.y29f{bottom:631.986667pt;}
.y1df{bottom:632.080000pt;}
.y111{bottom:632.133333pt;}
.y214{bottom:633.440000pt;}
.y168{bottom:633.893333pt;}
.y3f{bottom:640.386667pt;}
.ye3{bottom:642.173333pt;}
.y13e{bottom:643.466667pt;}
.y7a{bottom:645.040000pt;}
.yac{bottom:645.626667pt;}
.y1de{bottom:646.693333pt;}
.y110{bottom:646.733333pt;}
.y29e{bottom:647.266667pt;}
.y213{bottom:648.053333pt;}
.y19d{bottom:649.280000pt;}
.y3e{bottom:655.000000pt;}
.yf{bottom:656.120000pt;}
.y19c{bottom:656.186667pt;}
.y167{bottom:656.613333pt;}
.ye0{bottom:657.840000pt;}
.y13d{bottom:658.080000pt;}
.y29d{bottom:659.213333pt;}
.y79{bottom:659.640000pt;}
.y1dd{bottom:661.306667pt;}
.y10f{bottom:661.346667pt;}
.y212{bottom:662.666667pt;}
.ye{bottom:669.400000pt;}
.y3d{bottom:669.613333pt;}
.ye2{bottom:670.466667pt;}
.y29c{bottom:671.173333pt;}
.y78{bottom:674.253333pt;}
.ye1{bottom:674.453333pt;}
.y1dc{bottom:675.920000pt;}
.y211{bottom:677.280000pt;}
.y13c{bottom:680.773333pt;}
.y29b{bottom:683.133333pt;}
.y3c{bottom:684.226667pt;}
.y19b{bottom:686.946667pt;}
.y166{bottom:688.786667pt;}
.y77{bottom:688.866667pt;}
.y1db{bottom:690.533333pt;}
.ydf{bottom:690.746667pt;}
.yd{bottom:691.786667pt;}
.y210{bottom:691.893333pt;}
.yab{bottom:693.973333pt;}
.y13b{bottom:695.386667pt;}
.y19a{bottom:697.906667pt;}
.y29a{bottom:698.400000pt;}
.y3b{bottom:698.840000pt;}
.y199{bottom:701.560000pt;}
.y165{bottom:703.400000pt;}
.y76{bottom:703.480000pt;}
.yc{bottom:705.080000pt;}
.yde{bottom:705.346667pt;}
.y20f{bottom:706.493333pt;}
.y299{bottom:710.360000pt;}
.y10e{bottom:711.520000pt;}
.y3a{bottom:713.453333pt;}
.y164{bottom:718.013333pt;}
.y95{bottom:718.080000pt;}
.y75{bottom:718.093333pt;}
.yb{bottom:718.360000pt;}
.ydd{bottom:719.960000pt;}
.y13a{bottom:720.786667pt;}
.y198{bottom:720.866667pt;}
.y20e{bottom:721.106667pt;}
.y298{bottom:722.320000pt;}
.y197{bottom:724.520000pt;}
.ya{bottom:731.640000pt;}
.y163{bottom:732.626667pt;}
.y74{bottom:732.706667pt;}
.ydc{bottom:734.573333pt;}
.y139{bottom:735.400000pt;}
.y196{bottom:735.480000pt;}
.yfb{bottom:735.626667pt;}
.y20d{bottom:735.720000pt;}
.y39{bottom:736.960000pt;}
.y297{bottom:737.586667pt;}
.y1da{bottom:738.200000pt;}
.y193{bottom:738.733333pt;}
.y195{bottom:739.133333pt;}
.y9{bottom:744.933333pt;}
.y162{bottom:747.240000pt;}
.y73{bottom:747.320000pt;}
.y296{bottom:749.546667pt;}
.y194{bottom:750.093333pt;}
.y20c{bottom:750.333333pt;}
.y38{bottom:751.573333pt;}
.ydb{bottom:757.000000pt;}
.y138{bottom:758.093333pt;}
.y8{bottom:758.213333pt;}
.y295{bottom:761.506667pt;}
.y161{bottom:761.853333pt;}
.y72{bottom:761.933333pt;}
.y1bd{bottom:762.306667pt;}
.y20b{bottom:764.946667pt;}
.y37{bottom:766.186667pt;}
.y7{bottom:771.493333pt;}
.yda{bottom:771.613333pt;}
.y192{bottom:772.746667pt;}
.y294{bottom:773.453333pt;}
.y160{bottom:776.466667pt;}
.y71{bottom:776.546667pt;}
.y20a{bottom:779.560000pt;}
.y36{bottom:780.786667pt;}
.y6{bottom:784.773333pt;}
.yd9{bottom:786.226667pt;}
.y191{bottom:787.360000pt;}
.y293{bottom:788.733333pt;}
.y137{bottom:790.133333pt;}
.y70{bottom:791.146667pt;}
.y209{bottom:794.173333pt;}
.y35{bottom:795.400000pt;}
.y5{bottom:798.066667pt;}
.y292{bottom:800.693333pt;}
.yd8{bottom:800.840000pt;}
.y136{bottom:804.746667pt;}
.y6f{bottom:805.760000pt;}
.y15f{bottom:806.560000pt;}
.y208{bottom:808.786667pt;}
.y190{bottom:809.426667pt;}
.y34{bottom:810.013333pt;}
.y4{bottom:811.346667pt;}
.y291{bottom:812.640000pt;}
.yd7{bottom:815.453333pt;}
.y15e{bottom:815.680000pt;}
.y135{bottom:819.360000pt;}
.y6e{bottom:820.373333pt;}
.y207{bottom:823.400000pt;}
.y18e{bottom:823.640000pt;}
.y18f{bottom:824.040000pt;}
.y3{bottom:824.626667pt;}
.y290{bottom:827.920000pt;}
.yd6{bottom:830.066667pt;}
.y134{bottom:833.973333pt;}
.y206{bottom:838.000000pt;}
.y28f{bottom:839.880000pt;}
.y15d{bottom:844.373333pt;}
.yd5{bottom:844.680000pt;}
.y28e{bottom:851.826667pt;}
.y205{bottom:852.613333pt;}
.yd4{bottom:854.706667pt;}
.y18d{bottom:855.853333pt;}
.y15c{bottom:858.986667pt;}
.yd3{bottom:859.293333pt;}
.y133{bottom:859.386667pt;}
.y28d{bottom:867.106667pt;}
.y6d{bottom:870.093333pt;}
.y15b{bottom:873.600000pt;}
.yd2{bottom:873.893333pt;}
.y204{bottom:874.480000pt;}
.y28c{bottom:879.066667pt;}
.y18c{bottom:879.093333pt;}
.y132{bottom:883.186667pt;}
.yd1{bottom:888.506667pt;}
.y203{bottom:889.080000pt;}
.y18b{bottom:893.693333pt;}
.y64{bottom:894.213333pt;}
.y28b{bottom:894.333333pt;}
.y15a{bottom:896.333333pt;}
.y131{bottom:901.440000pt;}
.yd0{bottom:903.120000pt;}
.y202{bottom:903.693333pt;}
.y28a{bottom:906.293333pt;}
.y159{bottom:910.946667pt;}
.y18a{bottom:916.933333pt;}
.y289{bottom:918.240000pt;}
.y201{bottom:918.306667pt;}
.y130{bottom:919.533333pt;}
.y2{bottom:922.413333pt;}
.ycf{bottom:925.546667pt;}
.y288{bottom:930.200000pt;}
.y200{bottom:932.920000pt;}
.yce{bottom:940.160000pt;}
.y287{bottom:945.480000pt;}
.ycd{bottom:954.773333pt;}
.y286{bottom:957.426667pt;}
.y1{bottom:959.600000pt;}
.ycc{bottom:969.386667pt;}
.h7{height:2.125440pt;}
.h51{height:17.441340pt;}
.h49{height:20.929189pt;}
.h35{height:21.935275pt;}
.hf{height:22.194778pt;}
.h40{height:24.101796pt;}
.h3f{height:24.113793pt;}
.h50{height:24.404891pt;}
.h48{height:24.417039pt;}
.h52{height:26.161487pt;}
.h8{height:26.222240pt;}
.h10{height:27.744721pt;}
.h47{height:27.905935pt;}
.h3e{height:28.118360pt;}
.h3d{height:28.132357pt;}
.h4e{height:28.924752pt;}
.h4a{height:28.926352pt;}
.h12{height:29.244587pt;}
.h53{height:29.457920pt;}
.h2b{height:30.814867pt;}
.h46{height:31.393784pt;}
.h3c{height:32.152126pt;}
.h3{height:33.042699pt;}
.h44{height:33.156864pt;}
.h11{height:33.309571pt;}
.h2{height:33.664341pt;}
.h1b{height:33.832920pt;}
.h19{height:33.849760pt;}
.h4c{height:34.864280pt;}
.h4f{height:35.818752pt;}
.h1d{height:36.291888pt;}
.h4{height:36.557568pt;}
.h17{height:36.652894pt;}
.h4d{height:36.921915pt;}
.h4b{height:36.922839pt;}
.h29{height:38.518575pt;}
.h5{height:39.852000pt;}
.he{height:39.904628pt;}
.h1e{height:40.045152pt;}
.h20{height:40.098485pt;}
.h3b{height:40.169258pt;}
.h18{height:42.312201pt;}
.h1f{height:42.711819pt;}
.h34{height:44.896597pt;}
.h13{height:45.475573pt;}
.h23{height:45.603925pt;}
.h2a{height:46.222320pt;}
.h1a{height:46.346122pt;}
.h32{height:48.142240pt;}
.h25{height:48.195573pt;}
.hb{height:49.902240pt;}
.h41{height:51.224235pt;}
.h2d{height:53.062782pt;}
.h38{height:54.465333pt;}
.h42{height:54.518667pt;}
.h39{height:54.658485pt;}
.h2e{height:58.145333pt;}
.h24{height:58.198667pt;}
.hc{height:63.822240pt;}
.h33{height:64.184235pt;}
.h2c{height:64.188526pt;}
.h9{height:64.652000pt;}
.h22{height:72.984235pt;}
.h21{height:75.798667pt;}
.h27{height:76.332000pt;}
.h43{height:77.005440pt;}
.h30{height:77.058773pt;}
.h1c{height:81.112258pt;}
.ha{height:84.568907pt;}
.h1{height:87.733760pt;}
.hd{height:89.798029pt;}
.h15{height:92.952107pt;}
.h14{height:95.128907pt;}
.h36{height:99.905333pt;}
.h37{height:100.151819pt;}
.h6{height:108.898773pt;}
.h2f{height:112.225333pt;}
.h26{height:112.278667pt;}
.h31{height:113.538773pt;}
.h3a{height:221.638836pt;}
.h28{height:248.244509pt;}
.h16{height:265.857426pt;}
.h45{height:495.802931pt;}
.h0{height:1056.000000pt;}
.w3{width:226.657736pt;}
.w1{width:306.160654pt;}
.w2{width:321.184623pt;}
.w4{width:336.297454pt;}
.w5{width:336.310715pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x45{left:0.924489pt;}
.x24{left:3.736248pt;}
.x91{left:5.152621pt;}
.x17{left:6.858787pt;}
.x25{left:10.202565pt;}
.x22{left:13.435896pt;}
.x6a{left:18.887785pt;}
.x46{left:23.174151pt;}
.x69{left:25.798313pt;}
.x18{left:29.131102pt;}
.x23{left:32.837074pt;}
.x47{left:34.299914pt;}
.x48{left:37.081350pt;}
.x3f{left:39.861863pt;}
.x8b{left:43.138026pt;}
.x89{left:49.135645pt;}
.x12{left:51.404117pt;}
.x3e{left:53.768159pt;}
.x8d{left:55.133130pt;}
.x42{left:56.549576pt;}
.x19{left:57.767320pt;}
.x8a{left:59.131676pt;}
.x78{left:62.652673pt;}
.x1{left:65.280000pt;}
.x49{left:67.674475pt;}
.x8f{left:69.127218pt;}
.x8e{left:71.126602pt;}
.x5e{left:72.720000pt;}
.x5f{left:74.760000pt;}
.x74{left:76.473115pt;}
.x11{left:80.280000pt;}
.x3{left:83.146667pt;}
.x5{left:84.480000pt;}
.x75{left:85.686744pt;}
.x82{left:87.120962pt;}
.x40{left:89.925000pt;}
.x9e{left:93.613333pt;}
.x6f{left:94.900326pt;}
.x41{left:98.268366pt;}
.x2a{left:100.737548pt;}
.x64{left:102.600000pt;}
.x2b{left:103.970448pt;}
.x60{left:106.120000pt;}
.x4f{left:110.306667pt;}
.x70{left:113.327890pt;}
.x6e{left:117.934397pt;}
.x90{left:121.106578pt;}
.x29{left:123.371418pt;}
.x67{left:127.826667pt;}
.x9a{left:129.104291pt;}
.x1f{left:133.160000pt;}
.x9f{left:135.520000pt;}
.x14{left:137.312847pt;}
.x6d{left:138.665010pt;}
.x13{left:140.494791pt;}
.x1b{left:144.053333pt;}
.x8c{left:145.097407pt;}
.x3b{left:148.333333pt;}
.x37{left:149.933333pt;}
.x92{left:151.094670pt;}
.x93{left:153.093561pt;}
.x33{left:154.026667pt;}
.x43{left:156.676261pt;}
.x39{left:162.240000pt;}
.x16{left:165.949001pt;}
.x15{left:169.130945pt;}
.x3c{left:170.733333pt;}
.x1a{left:172.312896pt;}
.x38{left:176.106667pt;}
.x4{left:178.200000pt;}
.x66{left:179.973333pt;}
.x3a{left:183.440000pt;}
.x44{left:187.270270pt;}
.x1c{left:189.093333pt;}
.x1d{left:190.080000pt;}
.x83{left:201.075713pt;}
.x50{left:203.213333pt;}
.x27{left:207.441076pt;}
.x1e{left:210.493333pt;}
.x2c{left:213.906387pt;}
.x2d{left:217.139933pt;}
.x71{left:219.284616pt;}
.x94{left:221.066801pt;}
.x21{left:223.608262pt;}
.x95{left:225.065213pt;}
.x26{left:226.841032pt;}
.x28{left:230.074586pt;}
.x35{left:232.786667pt;}
.x86{left:235.062084pt;}
.x98{left:237.060228pt;}
.x81{left:239.060399pt;}
.x34{left:240.506667pt;}
.x6c{left:242.318329pt;}
.x6b{left:244.621833pt;}
.x84{left:251.055782pt;}
.x36{left:254.186667pt;}
.x85{left:257.053485pt;}
.x87{left:267.049018pt;}
.x96{left:271.046955pt;}
.x51{left:275.306667pt;}
.x62{left:276.226667pt;}
.x76{left:283.779754pt;}
.x9b{left:285.042371pt;}
.x65{left:289.053333pt;}
.x68{left:292.993382pt;}
.x72{left:297.600458pt;}
.x7f{left:299.036814pt;}
.x63{left:300.573333pt;}
.x73{left:302.207006pt;}
.x97{left:305.033682pt;}
.x80{left:307.033408pt;}
.x53{left:320.946667pt;}
.x77{left:322.937674pt;}
.x88{left:325.026494pt;}
.x99{left:327.024221pt;}
.x2{left:367.560000pt;}
.x52{left:373.493333pt;}
.x61{left:379.293333pt;}
.x6{left:425.333333pt;}
.x7b{left:431.000000pt;}
.x20{left:432.773333pt;}
.x5d{left:435.960000pt;}
.x7{left:444.520000pt;}
.x2f{left:453.080000pt;}
.x56{left:456.173333pt;}
.x5b{left:457.360000pt;}
.x7e{left:467.840000pt;}
.x4a{left:470.360000pt;}
.x4e{left:471.960000pt;}
.x8{left:477.266667pt;}
.x3d{left:480.013333pt;}
.x7a{left:485.600000pt;}
.x2e{left:495.426667pt;}
.x9c{left:496.453333pt;}
.x7c{left:498.266667pt;}
.x9{left:499.386667pt;}
.x7d{left:503.960000pt;}
.x10{left:514.506667pt;}
.x5c{left:519.293333pt;}
.x5a{left:522.506667pt;}
.xa{left:529.146667pt;}
.x57{left:533.133333pt;}
.xc{left:538.013333pt;}
.x54{left:540.013333pt;}
.xb{left:541.146667pt;}
.x9d{left:556.200000pt;}
.x31{left:562.666667pt;}
.x4c{left:564.853333pt;}
.x30{left:565.746667pt;}
.xd{left:566.653333pt;}
.x4d{left:569.773333pt;}
.x58{left:576.253333pt;}
.x55{left:579.186667pt;}
.x4b{left:583.560000pt;}
.x32{left:588.973333pt;}
.x59{left:597.653333pt;}
.xe{left:604.320000pt;}
.xf{left:631.786667pt;}
.x79{left:723.920000pt;}
}




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