
    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_43cb1bc70c4a557c1dbe200d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3e0edc1b96bbe337803ae07c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986328;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_7e004bd62f2e5c619695880f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.986816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_070ace1677e7c7c3985d42c9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_90125a9cefb6d9cc864e7b7f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.986816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_218909a551cc40dfc8be1fb8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.990234;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_c9748679e0682af42e122989.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.990234;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_1f456c5e86f5f3296e17798f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.990234;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_8ea902afe7a39c7e516c5180.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.990234;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_761177ae2223460ae16ddc5a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.715820;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_bf884dfc857bca633c211f40.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.700195;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_362b6aaa6c993587859228aa.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.986816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_be52d18968539b0e5627e674.woff2')format("woff");}.fff{font-family:fff;line-height:0.871582;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_0377f4e8d066077e936512a1.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.990234;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_e91eaefa68972617af187bdb.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.700195;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_0b865d49a8fa3eac03c49792.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.986816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_18cd92d6a83c0780e9aa7e72.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.986816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_b3a068384ceba016cbe51bdb.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_bd238521bd555b4e31e5aaba.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.052000;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_aad505c9d91748a747aebe32.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.086667;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_83b752b7351718e7fe1ed82b.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.259000;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_fd0993780e9891ca5bf1c6f6.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.218471;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_d4d3e34e71f2e72073c95c0b.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.666000;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_4f70df1f1e117f01f68e08fc.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.236000;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_9df774eb6cf4a3a3bb61633a.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.895000;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_c57c22b3049f2973abb5a26b.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.106000;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_5a519749eaa5f09a07f75e2d.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.986816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_a81de2346252e583451fb01d.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.986328;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_18cd92d6a83c0780e9aa7e72.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.986816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m3{transform:matrix(0.249999,0.000000,0.000800,0.249999,0,0);-ms-transform:matrix(0.249999,0.000000,0.000800,0.249999,0,0);-webkit-transform:matrix(0.249999,0.000000,0.000800,0.249999,0,0);}
.m4{transform:matrix(0.249999,-0.000800,0.000800,0.249999,0,0);-ms-transform:matrix(0.249999,-0.000800,0.000800,0.249999,0,0);-webkit-transform:matrix(0.249999,-0.000800,0.000800,0.249999,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.696000px;}
.v6{vertical-align:-8.232042px;}
.v5{vertical-align:-3.780019px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.780019px;}
.v4{vertical-align:5.040026px;}
.v8{vertical-align:17.556090px;}
.v7{vertical-align:20.622106px;}
.v9{vertical-align:24.192124px;}
.v1{vertical-align:26.040000px;}
.ls2a{letter-spacing:-1.004645px;}
.lsd{letter-spacing:-0.528000px;}
.ls6{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.358560px;}
.ls7{letter-spacing:-0.324000px;}
.ls14{letter-spacing:-0.298800px;}
.ls5{letter-spacing:-0.240000px;}
.ls18{letter-spacing:-0.239040px;}
.ls9{letter-spacing:-0.180000px;}
.ls15{letter-spacing:-0.179280px;}
.ls4{letter-spacing:-0.149760px;}
.lsc{letter-spacing:-0.132000px;}
.ls8{letter-spacing:-0.060000px;}
.ls13{letter-spacing:-0.059760px;}
.lsa{letter-spacing:-0.054000px;}
.ls2d{letter-spacing:-0.022680px;}
.ls2c{letter-spacing:-0.015120px;}
.ls0{letter-spacing:0.000000px;}
.ls36{letter-spacing:0.002400px;}
.ls23{letter-spacing:0.004200px;}
.ls2b{letter-spacing:0.005040px;}
.ls26{letter-spacing:0.020160px;}
.ls2{letter-spacing:0.024000px;}
.ls29{letter-spacing:0.025200px;}
.ls11{letter-spacing:0.066000px;}
.lsf{letter-spacing:0.132000px;}
.ls27{letter-spacing:0.145741px;}
.ls16{letter-spacing:0.179280px;}
.lse{letter-spacing:0.198000px;}
.ls3{letter-spacing:0.329760px;}
.ls10{letter-spacing:0.330000px;}
.lsb{letter-spacing:0.432000px;}
.ls24{letter-spacing:0.579603px;}
.ls22{letter-spacing:1.022705px;}
.ls20{letter-spacing:1.029005px;}
.ls4a{letter-spacing:1.508400px;}
.ls21{letter-spacing:2.028610px;}
.ls12{letter-spacing:2.270880px;}
.ls30{letter-spacing:2.654400px;}
.ls1a{letter-spacing:2.987100px;}
.ls25{letter-spacing:4.059321px;}
.ls28{letter-spacing:15.006677px;}
.ls3e{letter-spacing:15.349200px;}
.ls3a{letter-spacing:16.471200px;}
.ls43{letter-spacing:16.717200px;}
.ls45{letter-spacing:17.575200px;}
.ls34{letter-spacing:17.761200px;}
.ls2f{letter-spacing:17.929200px;}
.ls35{letter-spacing:17.935200px;}
.ls46{letter-spacing:18.421200px;}
.ls4c{letter-spacing:18.637200px;}
.ls19{letter-spacing:19.216800px;}
.ls3d{letter-spacing:19.267200px;}
.ls41{letter-spacing:19.297200px;}
.ls48{letter-spacing:19.495200px;}
.ls33{letter-spacing:19.525200px;}
.ls4e{letter-spacing:19.585200px;}
.ls3f{letter-spacing:19.873200px;}
.ls47{letter-spacing:20.017200px;}
.ls4d{letter-spacing:20.191200px;}
.ls38{letter-spacing:20.407200px;}
.ls37{letter-spacing:20.521200px;}
.ls4b{letter-spacing:21.145200px;}
.ls32{letter-spacing:22.393200px;}
.ls42{letter-spacing:23.005200px;}
.ls31{letter-spacing:23.197200px;}
.ls49{letter-spacing:24.007200px;}
.ls1d{letter-spacing:24.478800px;}
.ls44{letter-spacing:24.757200px;}
.ls39{letter-spacing:25.381200px;}
.ls1e{letter-spacing:25.984800px;}
.ls2e{letter-spacing:28.645200px;}
.ls3c{letter-spacing:29.017200px;}
.ls1{letter-spacing:31.698000px;}
.ls3b{letter-spacing:32.317200px;}
.ls40{letter-spacing:36.439200px;}
.ls1f{letter-spacing:39.442800px;}
.ls1c{letter-spacing:46.144800px;}
.ls1b{letter-spacing:52.006800px;}
.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;}
}
.ws2{word-spacing:-91.343520px;}
.ws1{word-spacing:-90.354240px;}
.ws4{word-spacing:-49.248000px;}
.ws6{word-spacing:-36.612000px;}
.ws1c7{word-spacing:-25.823100px;}
.ws3{word-spacing:-19.728000px;}
.ws8{word-spacing:-18.282240px;}
.ws4b{word-spacing:-17.932800px;}
.ws203{word-spacing:-16.493760px;}
.ws28{word-spacing:-16.374240px;}
.ws29{word-spacing:-16.314480px;}
.ws27{word-spacing:-16.075440px;}
.ws2a{word-spacing:-16.015680px;}
.ws7{word-spacing:-15.228000px;}
.wsad{word-spacing:-14.943900px;}
.ws5{word-spacing:-14.796000px;}
.ws186{word-spacing:-13.449600px;}
.wsed{word-spacing:-11.058450px;}
.wsd8{word-spacing:-7.355078px;}
.wsd7{word-spacing:-7.350038px;}
.ws1c9{word-spacing:-6.599270px;}
.ws1e2{word-spacing:-6.384077px;}
.ws1f0{word-spacing:-5.666765px;}
.ws1e9{word-spacing:-4.519066px;}
.ws169{word-spacing:-4.303872px;}
.ws1c5{word-spacing:-4.232141px;}
.wscf{word-spacing:-4.160410px;}
.ws17f{word-spacing:-4.131696px;}
.ws1c6{word-spacing:-4.088678px;}
.ws3a{word-spacing:-4.063680px;}
.ws191{word-spacing:-4.016947px;}
.wsb0{word-spacing:-3.945216px;}
.ws1d1{word-spacing:-3.873485px;}
.ws167{word-spacing:-3.801754px;}
.ws188{word-spacing:-3.730022px;}
.ws193{word-spacing:-3.658291px;}
.ws1f8{word-spacing:-3.638410px;}
.ws1d0{word-spacing:-3.586560px;}
.ws15b{word-spacing:-3.514829px;}
.ws192{word-spacing:-3.443098px;}
.ws137{word-spacing:-3.371366px;}
.ws17a{word-spacing:-3.299635px;}
.ws5a{word-spacing:-3.156173px;}
.ws113{word-spacing:-3.084442px;}
.ws61{word-spacing:-3.012710px;}
.ws14b{word-spacing:-2.988780px;}
.wsa9{word-spacing:-2.940979px;}
.ws1d3{word-spacing:-2.892979px;}
.ws171{word-spacing:-2.869248px;}
.ws120{word-spacing:-2.869229px;}
.ws131{word-spacing:-2.809453px;}
.wsda{word-spacing:-2.797517px;}
.ws19a{word-spacing:-2.749678px;}
.wsa0{word-spacing:-2.654054px;}
.ws2f{word-spacing:-2.629440px;}
.ws17c{word-spacing:-2.582323px;}
.ws17e{word-spacing:-2.570351px;}
.ws55{word-spacing:-2.510592px;}
.ws64{word-spacing:-2.510575px;}
.ws183{word-spacing:-2.438861px;}
.ws1ad{word-spacing:-2.391024px;}
.ws7c{word-spacing:-2.367130px;}
.ws8c{word-spacing:-2.331248px;}
.wseb{word-spacing:-2.295398px;}
.wsc0{word-spacing:-2.271473px;}
.ws5f{word-spacing:-2.223667px;}
.ws6d{word-spacing:-2.211697px;}
.ws5e{word-spacing:-2.151936px;}
.ws88{word-spacing:-2.092146px;}
.wsc8{word-spacing:-2.080205px;}
.ws87{word-spacing:-2.032370px;}
.ws11a{word-spacing:-2.008474px;}
.ws3f{word-spacing:-1.963638px;}
.ws97{word-spacing:-1.936742px;}
.ws18e{word-spacing:-1.912819px;}
.wsc5{word-spacing:-1.865011px;}
.wsf2{word-spacing:-1.853044px;}
.ws159{word-spacing:-1.793280px;}
.ws5d{word-spacing:-1.721549px;}
.wsa2{word-spacing:-1.649818px;}
.ws6b{word-spacing:-1.613941px;}
.wsbc{word-spacing:-1.578086px;}
.wsfe{word-spacing:-1.506355px;}
.ws3e{word-spacing:-1.505456px;}
.ws19f{word-spacing:-1.494390px;}
.ws128{word-spacing:-1.434624px;}
.wsd4{word-spacing:-1.434614px;}
.ws23{word-spacing:-1.380000px;}
.ws46{word-spacing:-1.374547px;}
.ws62{word-spacing:-1.362893px;}
.ws145{word-spacing:-1.355837px;}
.ws22{word-spacing:-1.326000px;}
.ws19c{word-spacing:-1.315063px;}
.ws50{word-spacing:-1.291162px;}
.ws17{word-spacing:-1.278000px;}
.ws68{word-spacing:-1.255288px;}
.ws1cf{word-spacing:-1.237133px;}
.wsa4{word-spacing:-1.219430px;}
.ws15e{word-spacing:-1.195512px;}
.wsba{word-spacing:-1.147699px;}
.ws6c{word-spacing:-1.135736px;}
.ws43{word-spacing:-1.112728px;}
.ws9f{word-spacing:-1.075968px;}
.ws67{word-spacing:-1.075961px;}
.ws1d6{word-spacing:-1.033354px;}
.ws119{word-spacing:-1.016185px;}
.wsc7{word-spacing:-1.004237px;}
.ws86{word-spacing:-0.956410px;}
.ws10a{word-spacing:-0.932506px;}
.ws140{word-spacing:-0.896634px;}
.ws24{word-spacing:-0.894000px;}
.ws54{word-spacing:-0.860774px;}
.ws1ce{word-spacing:-0.843130px;}
.ws1b7{word-spacing:-0.836858px;}
.ws51{word-spacing:-0.789043px;}
.ws118{word-spacing:-0.777083px;}
.ws16{word-spacing:-0.738000px;}
.ws4f{word-spacing:-0.717312px;}
.ws1f3{word-spacing:-0.704179px;}
.ws26{word-spacing:-0.702000px;}
.ws206{word-spacing:-0.678000px;}
.ws14d{word-spacing:-0.657532px;}
.wsec{word-spacing:-0.645581px;}
.ws8a{word-spacing:-0.597756px;}
.ws1e{word-spacing:-0.582000px;}
.wse4{word-spacing:-0.573850px;}
.ws84{word-spacing:-0.537980px;}
.ws7b{word-spacing:-0.502118px;}
.ws21{word-spacing:-0.492000px;}
.wsbe{word-spacing:-0.478205px;}
.ws1a{word-spacing:-0.462000px;}
.ws9e{word-spacing:-0.430387px;}
.ws20{word-spacing:-0.396000px;}
.wsb{word-spacing:-0.366000px;}
.ws172{word-spacing:-0.358656px;}
.wsf8{word-spacing:-0.358654px;}
.ws39{word-spacing:-0.358560px;}
.ws12f{word-spacing:-0.298878px;}
.ws94{word-spacing:-0.286925px;}
.ws52{word-spacing:-0.215194px;}
.ws8b{word-spacing:-0.179327px;}
.ws9a{word-spacing:-0.143462px;}
.ws1f{word-spacing:-0.132000px;}
.ws18b{word-spacing:-0.119551px;}
.ws15{word-spacing:-0.108000px;}
.ws76{word-spacing:-0.071731px;}
.ws25{word-spacing:-0.066000px;}
.ws1b8{word-spacing:-0.059776px;}
.ws1d8{word-spacing:-0.008563px;}
.ws1d9{word-spacing:-0.006000px;}
.ws1ea{word-spacing:-0.003379px;}
.ws1fc{word-spacing:-0.001469px;}
.ws0{word-spacing:0.000000px;}
.ws2b{word-spacing:0.059760px;}
.ws177{word-spacing:0.059776px;}
.ws11{word-spacing:0.060000px;}
.ws7d{word-spacing:0.071731px;}
.ws12c{word-spacing:0.119551px;}
.ws44{word-spacing:0.130909px;}
.ws18{word-spacing:0.132000px;}
.ws181{word-spacing:0.143462px;}
.ws30{word-spacing:0.179280px;}
.wsee{word-spacing:0.179327px;}
.ws9b{word-spacing:0.215194px;}
.ws2c{word-spacing:0.239040px;}
.ws90{word-spacing:0.239102px;}
.ws205{word-spacing:0.276000px;}
.ws204{word-spacing:0.282000px;}
.wsc1{word-spacing:0.286925px;}
.ws19{word-spacing:0.294000px;}
.ws122{word-spacing:0.298878px;}
.ws13{word-spacing:0.306000px;}
.ws1b{word-spacing:0.312000px;}
.ws12{word-spacing:0.348000px;}
.ws2e{word-spacing:0.358560px;}
.wscd{word-spacing:0.358656px;}
.ws1ed{word-spacing:0.385690px;}
.ws35{word-spacing:0.418320px;}
.ws148{word-spacing:0.430387px;}
.wsa1{word-spacing:0.502118px;}
.ws3c{word-spacing:0.523637px;}
.ws9{word-spacing:0.524160px;}
.ws7a{word-spacing:0.573850px;}
.ws125{word-spacing:0.597756px;}
.ws1d{word-spacing:0.612000px;}
.ws105{word-spacing:0.645581px;}
.wsf6{word-spacing:0.657532px;}
.ws15f{word-spacing:0.717307px;}
.ws4e{word-spacing:0.717312px;}
.ws202{word-spacing:0.777083px;}
.ws63{word-spacing:0.789043px;}
.ws123{word-spacing:0.836858px;}
.ws104{word-spacing:0.860774px;}
.ws14{word-spacing:0.864000px;}
.wse0{word-spacing:0.932506px;}
.ws2d{word-spacing:0.956160px;}
.ws85{word-spacing:0.956410px;}
.ws139{word-spacing:1.004237px;}
.ws1c{word-spacing:1.056000px;}
.wsd0{word-spacing:1.075968px;}
.ws13d{word-spacing:1.135736px;}
.ws16b{word-spacing:1.147699px;}
.ws1b0{word-spacing:1.195512px;}
.ws73{word-spacing:1.219430px;}
.ws12e{word-spacing:1.255288px;}
.wsdc{word-spacing:1.291162px;}
.ws130{word-spacing:1.315063px;}
.wsd9{word-spacing:1.362893px;}
.wsf1{word-spacing:1.374839px;}
.ws155{word-spacing:1.434614px;}
.wsdb{word-spacing:1.434624px;}
.ws48{word-spacing:1.440001px;}
.ws14c{word-spacing:1.494390px;}
.ws16c{word-spacing:1.506355px;}
.ws8e{word-spacing:1.554166px;}
.ws60{word-spacing:1.578086px;}
.ws1fb{word-spacing:1.647130px;}
.wsa7{word-spacing:1.649818px;}
.wsaa{word-spacing:1.673717px;}
.wsea{word-spacing:1.721549px;}
.wse5{word-spacing:1.793280px;}
.wsa{word-spacing:1.836000px;}
.ws135{word-spacing:1.853044px;}
.wsdf{word-spacing:1.865011px;}
.ws1c8{word-spacing:1.879027px;}
.ws8d{word-spacing:1.912819px;}
.ws53{word-spacing:1.936742px;}
.ws1f1{word-spacing:1.947274px;}
.ws124{word-spacing:1.972595px;}
.ws4d{word-spacing:2.008474px;}
.wsf7{word-spacing:2.032370px;}
.ws10e{word-spacing:2.080205px;}
.ws14a{word-spacing:2.092146px;}
.ws1c4{word-spacing:2.151922px;}
.ws58{word-spacing:2.151936px;}
.ws164{word-spacing:2.223667px;}
.ws66{word-spacing:2.271473px;}
.wsc6{word-spacing:2.295398px;}
.ws1de{word-spacing:2.314464px;}
.ws83{word-spacing:2.331248px;}
.ws112{word-spacing:2.367130px;}
.ws32{word-spacing:2.390400px;}
.ws176{word-spacing:2.391024px;}
.ws6e{word-spacing:2.438861px;}
.ws33{word-spacing:2.509920px;}
.wsbf{word-spacing:2.510575px;}
.ws6f{word-spacing:2.510592px;}
.ws80{word-spacing:2.570351px;}
.ws142{word-spacing:2.582323px;}
.ws101{word-spacing:2.654054px;}
.ws49{word-spacing:2.683639px;}
.ws12d{word-spacing:2.689902px;}
.ws93{word-spacing:2.725786px;}
.ws65{word-spacing:2.749678px;}
.wsc3{word-spacing:2.797517px;}
.ws1a3{word-spacing:2.809453px;}
.ws89{word-spacing:2.869229px;}
.wsbd{word-spacing:2.869248px;}
.wsc4{word-spacing:2.940979px;}
.wsd5{word-spacing:2.988780px;}
.ws5c{word-spacing:3.012710px;}
.ws18d{word-spacing:3.048556px;}
.ws143{word-spacing:3.084442px;}
.ws31{word-spacing:3.107520px;}
.ws121{word-spacing:3.108331px;}
.ws45{word-spacing:3.141821px;}
.ws56{word-spacing:3.156173px;}
.ws109{word-spacing:3.227904px;}
.ws1bd{word-spacing:3.287658px;}
.wscc{word-spacing:3.299635px;}
.ws47{word-spacing:3.338185px;}
.ws107{word-spacing:3.371366px;}
.wsf5{word-spacing:3.407209px;}
.ws11e{word-spacing:3.443098px;}
.ws82{word-spacing:3.466985px;}
.ws5b{word-spacing:3.514829px;}
.ws1a2{word-spacing:3.526760px;}
.wsd6{word-spacing:3.586536px;}
.wsb9{word-spacing:3.586560px;}
.ws1a1{word-spacing:3.646312px;}
.wsa8{word-spacing:3.658291px;}
.ws189{word-spacing:3.706087px;}
.wse9{word-spacing:3.730022px;}
.ws1ac{word-spacing:3.765863px;}
.wsff{word-spacing:3.801754px;}
.ws3d{word-spacing:3.861821px;}
.ws10d{word-spacing:3.873485px;}
.ws14f{word-spacing:3.885414px;}
.ws150{word-spacing:3.911375px;}
.ws151{word-spacing:3.945190px;}
.ws57{word-spacing:3.945216px;}
.wsf4{word-spacing:4.004965px;}
.ws103{word-spacing:4.016947px;}
.ws13f{word-spacing:4.064741px;}
.ws162{word-spacing:4.088678px;}
.ws168{word-spacing:4.124516px;}
.ws17b{word-spacing:4.160410px;}
.ws1df{word-spacing:4.171258px;}
.ws146{word-spacing:4.232141px;}
.wsbb{word-spacing:4.303872px;}
.wsf3{word-spacing:4.363619px;}
.ws17d{word-spacing:4.375603px;}
.ws79{word-spacing:4.447334px;}
.ws160{word-spacing:4.483170px;}
.ws72{word-spacing:4.519066px;}
.ws136{word-spacing:4.542946px;}
.ws13a{word-spacing:4.590797px;}
.ws37{word-spacing:4.601520px;}
.ws40{word-spacing:4.647277px;}
.ws8f{word-spacing:4.662497px;}
.wsca{word-spacing:4.662528px;}
.ws1a7{word-spacing:4.722272px;}
.wsc9{word-spacing:4.734259px;}
.wsd2{word-spacing:4.805990px;}
.ws38{word-spacing:4.840560px;}
.ws132{word-spacing:4.841824px;}
.wsd3{word-spacing:4.877722px;}
.ws154{word-spacing:4.901599px;}
.wsa3{word-spacing:4.949453px;}
.wsab{word-spacing:5.021150px;}
.wse7{word-spacing:5.021184px;}
.ws1f7{word-spacing:5.083910px;}
.wsce{word-spacing:5.092915px;}
.ws98{word-spacing:5.164646px;}
.ws200{word-spacing:5.184749px;}
.wsf0{word-spacing:5.200477px;}
.wsa6{word-spacing:5.236378px;}
.ws106{word-spacing:5.308109px;}
.ws13e{word-spacing:5.320028px;}
.ws1be{word-spacing:5.341891px;}
.ws1a6{word-spacing:5.379804px;}
.ws126{word-spacing:5.379840px;}
.ws185{word-spacing:5.439580px;}
.ws102{word-spacing:5.451571px;}
.ws100{word-spacing:5.523302px;}
.wsdd{word-spacing:5.595034px;}
.ws16f{word-spacing:5.618906px;}
.ws13c{word-spacing:5.666765px;}
.ws14e{word-spacing:5.738458px;}
.ws11f{word-spacing:5.738496px;}
.ws96{word-spacing:5.810227px;}
.ws69{word-spacing:5.858009px;}
.ws11c{word-spacing:5.881958px;}
.wscb{word-spacing:5.953690px;}
.ws15d{word-spacing:6.025421px;}
.ws152{word-spacing:6.037336px;}
.ws175{word-spacing:6.097111px;}
.wsfa{word-spacing:6.097152px;}
.ws110{word-spacing:6.168883px;}
.wsef{word-spacing:6.216662px;}
.ws10c{word-spacing:6.240614px;}
.ws1c1{word-spacing:6.312346px;}
.ws195{word-spacing:6.384077px;}
.ws6a{word-spacing:6.455765px;}
.wsc2{word-spacing:6.455808px;}
.ws117{word-spacing:6.515540px;}
.ws9d{word-spacing:6.527539px;}
.ws70{word-spacing:6.599270px;}
.ws180{word-spacing:6.671002px;}
.ws16e{word-spacing:6.742733px;}
.ws138{word-spacing:6.814464px;}
.wse2{word-spacing:6.886195px;}
.ws19b{word-spacing:6.933970px;}
.ws91{word-spacing:6.957926px;}
.ws156{word-spacing:7.029658px;}
.ws7e{word-spacing:7.101389px;}
.ws41{word-spacing:7.134551px;}
.ws1ff{word-spacing:7.146259px;}
.ws18a{word-spacing:7.173072px;}
.ws71{word-spacing:7.173120px;}
.ws173{word-spacing:7.244851px;}
.ws1b1{word-spacing:7.292623px;}
.ws75{word-spacing:7.316582px;}
.ws194{word-spacing:7.322400px;}
.ws16d{word-spacing:7.388314px;}
.ws4a{word-spacing:7.396370px;}
.wsfd{word-spacing:7.460045px;}
.ws1db{word-spacing:7.469501px;}
.ws42{word-spacing:7.527279px;}
.ws115{word-spacing:7.531776px;}
.ws3b{word-spacing:7.592734px;}
.wsfc{word-spacing:7.603507px;}
.ws1b5{word-spacing:7.656000px;}
.wsb8{word-spacing:7.675238px;}
.ws1a0{word-spacing:7.711052px;}
.wsde{word-spacing:7.746970px;}
.ws108{word-spacing:7.818701px;}
.ws1ae{word-spacing:7.890379px;}
.ws74{word-spacing:7.890432px;}
.ws1bf{word-spacing:7.962163px;}
.ws12a{word-spacing:8.033894px;}
.ws1ab{word-spacing:8.069706px;}
.wsa5{word-spacing:8.105626px;}
.ws197{word-spacing:8.177357px;}
.ws153{word-spacing:8.189257px;}
.ws81{word-spacing:8.249033px;}
.ws7f{word-spacing:8.249088px;}
.wsd1{word-spacing:8.320819px;}
.ws129{word-spacing:8.366684px;}
.wse3{word-spacing:8.392550px;}
.ws99{word-spacing:8.464282px;}
.ws1f2{word-spacing:8.536013px;}
.ws95{word-spacing:8.607744px;}
.ws134{word-spacing:8.667462px;}
.ws9c{word-spacing:8.679475px;}
.wsfb{word-spacing:8.751206px;}
.wse6{word-spacing:8.822938px;}
.ws78{word-spacing:8.894669px;}
.ws36{word-spacing:8.904240px;}
.ws133{word-spacing:8.906564px;}
.ws77{word-spacing:8.966400px;}
.ws178{word-spacing:9.007200px;}
.ws19d{word-spacing:9.018000px;}
.ws1d7{word-spacing:9.038131px;}
.ws163{word-spacing:9.109862px;}
.ws158{word-spacing:9.181594px;}
.ws190{word-spacing:9.253325px;}
.ws10f{word-spacing:9.325056px;}
.ws1aa{word-spacing:9.396787px;}
.ws11d{word-spacing:9.468518px;}
.ws1af{word-spacing:9.540250px;}
.wsaf{word-spacing:9.611981px;}
.ws1ca{word-spacing:9.683712px;}
.ws165{word-spacing:9.755443px;}
.ws166{word-spacing:9.827174px;}
.ws19e{word-spacing:9.834000px;}
.ws174{word-spacing:9.970637px;}
.ws18f{word-spacing:10.042368px;}
.ws1ee{word-spacing:10.114099px;}
.ws92{word-spacing:10.185830px;}
.ws187{word-spacing:10.257562px;}
.ws1ef{word-spacing:10.329293px;}
.ws1b6{word-spacing:10.401024px;}
.ws1fd{word-spacing:10.472755px;}
.ws1bc{word-spacing:10.544486px;}
.ws1c3{word-spacing:10.616218px;}
.ws116{word-spacing:10.640057px;}
.ws1cb{word-spacing:10.687949px;}
.ws199{word-spacing:10.759680px;}
.ws1b2{word-spacing:10.903142px;}
.ws1e0{word-spacing:11.046605px;}
.ws1e5{word-spacing:11.261798px;}
.ws1eb{word-spacing:11.333530px;}
.ws1ec{word-spacing:11.405261px;}
.wsb5{word-spacing:11.692186px;}
.ws34{word-spacing:11.712960px;}
.ws114{word-spacing:11.772000px;}
.ws1c2{word-spacing:11.778000px;}
.ws1da{word-spacing:12.266035px;}
.ws59{word-spacing:12.337766px;}
.ws147{word-spacing:12.510000px;}
.ws1e4{word-spacing:12.525619px;}
.ws1e8{word-spacing:12.552960px;}
.ws1f4{word-spacing:13.198541px;}
.ws1e3{word-spacing:13.270272px;}
.ws1c0{word-spacing:13.987584px;}
.wsb1{word-spacing:14.346240px;}
.ws1dc{word-spacing:14.417971px;}
.wse1{word-spacing:14.610000px;}
.ws1fe{word-spacing:15.135283px;}
.ws1a9{word-spacing:15.270000px;}
.ws184{word-spacing:15.278746px;}
.wsb3{word-spacing:15.637402px;}
.ws1dd{word-spacing:16.426445px;}
.wse{word-spacing:16.794000px;}
.ws10{word-spacing:16.842000px;}
.wsc{word-spacing:16.854000px;}
.ws1d2{word-spacing:16.856832px;}
.wsd{word-spacing:16.866000px;}
.wsf{word-spacing:16.890000px;}
.ws1f5{word-spacing:17.143757px;}
.wsae{word-spacing:17.215488px;}
.ws170{word-spacing:17.646000px;}
.ws111{word-spacing:18.222000px;}
.ws1f6{word-spacing:18.434918px;}
.ws1d5{word-spacing:18.793574px;}
.ws198{word-spacing:18.822000px;}
.ws1d4{word-spacing:18.865306px;}
.ws1e6{word-spacing:19.008768px;}
.wse8{word-spacing:19.242000px;}
.ws1e7{word-spacing:20.284512px;}
.ws141{word-spacing:20.796000px;}
.ws196{word-spacing:21.918000px;}
.ws1cd{word-spacing:22.451866px;}
.ws1cc{word-spacing:22.523597px;}
.ws144{word-spacing:23.802000px;}
.ws11b{word-spacing:23.820000px;}
.ws201{word-spacing:24.384000px;}
.ws1a4{word-spacing:25.038000px;}
.ws13b{word-spacing:26.718000px;}
.ws127{word-spacing:28.044000px;}
.ws1fa{word-spacing:28.118630px;}
.ws1f9{word-spacing:28.190362px;}
.ws149{word-spacing:29.274000px;}
.ws15c{word-spacing:29.928000px;}
.ws1ba{word-spacing:30.180000px;}
.ws1e1{word-spacing:30.198835px;}
.ws161{word-spacing:30.432000px;}
.ws10b{word-spacing:30.576000px;}
.ws1bb{word-spacing:32.076000px;}
.ws157{word-spacing:32.904000px;}
.ws182{word-spacing:33.600000px;}
.ws179{word-spacing:33.672000px;}
.ws1b4{word-spacing:33.900000px;}
.ws12b{word-spacing:36.006000px;}
.ws1a8{word-spacing:37.542000px;}
.ws1b3{word-spacing:37.956000px;}
.ws18c{word-spacing:38.094000px;}
.ws1b9{word-spacing:38.268000px;}
.wsb6{word-spacing:39.236966px;}
.ws1a5{word-spacing:40.722000px;}
.wsb7{word-spacing:45.692774px;}
.wsac{word-spacing:64.318546px;}
.ws16a{word-spacing:64.557900px;}
.wsb4{word-spacing:70.368307px;}
.wsb2{word-spacing:71.516006px;}
.ws4c{word-spacing:77.469300px;}
.wsf9{word-spacing:398.251622px;}
.ws15a{word-spacing:882.662170px;}
._2a{margin-left:-15.804681px;}
._5{margin-left:-9.554569px;}
._11{margin-left:-7.484506px;}
._15{margin-left:-6.025427px;}
._6{margin-left:-4.720803px;}
._d{margin-left:-3.534548px;}
._3{margin-left:-2.151930px;}
._1{margin-left:-1.027872px;}
._0{width:1.228032px;}
._2{width:3.194208px;}
._3b{width:4.375597px;}
._3f{width:6.173939px;}
._1c{width:8.069714px;}
._1d{width:9.862966px;}
._17{width:11.417140px;}
._40{width:12.781968px;}
._1e{width:13.803847px;}
._18{width:14.943908px;}
._16{width:16.067789px;}
._8{width:17.936996px;}
._c{width:18.965690px;}
._9{width:20.037179px;}
._12{width:21.088973px;}
._7{width:22.573765px;}
._13{width:23.862331px;}
._b{width:25.598150px;}
._4{width:26.683932px;}
._10{width:28.341842px;}
._e{width:29.577407px;}
._f{width:31.221844px;}
._3a{width:32.279034px;}
._14{width:33.355008px;}
._2b{width:34.976522px;}
._29{width:36.750004px;}
._19{width:38.598085px;}
._1f{width:39.892424px;}
._a{width:41.498216px;}
._1b{width:42.739554px;}
._1a{width:44.473412px;}
._39{width:45.549306px;}
._21{width:46.553549px;}
._20{width:48.275098px;}
._2f{width:49.483355px;}
._3c{width:51.818726px;}
._3d{width:53.396819px;}
._22{width:57.026310px;}
._24{width:63.051725px;}
._3e{width:64.423128px;}
._38{width:71.000736px;}
._28{width:86.077200px;}
._26{width:99.048192px;}
._27{width:103.292400px;}
._35{width:218.551808px;}
._34{width:224.577229px;}
._23{width:285.585542px;}
._2d{width:302.992589px;}
._25{width:324.360088px;}
._37{width:345.946426px;}
._30{width:375.786605px;}
._2c{width:377.736493px;}
._2e{width:430.961050px;}
._36{width:586.269575px;}
._32{width:602.815853px;}
._31{width:642.770131px;}
._33{width:754.240416px;}
.fc16{color:rgb(34,31,31);}
.fc15{color:rgb(147,147,147);}
.fc13{color:rgb(88,88,88);}
.fc12{color:rgb(128,128,128);}
.fc11{color:rgb(144,144,144);}
.fc10{color:rgb(75,75,75);}
.fce{color:rgb(85,85,85);}
.fc14{color:rgb(184,184,184);}
.fcd{color:rgb(68,68,68);}
.fc3{color:rgb(35,31,32);}
.fc4{color:rgb(255,255,255);}
.fcb{color:rgb(20,88,136);}
.fcf{color:rgb(8,80,128);}
.fcc{color:rgb(96,96,96);}
.fc17{color:rgb(31,94,158);}
.fc1{color:rgb(76,77,79);}
.fc2{color:rgb(25,115,186);}
.fc5{color:rgb(32,94,158);}
.fc6{color:rgb(79,129,189);}
.fc7{color:rgb(65,73,88);}
.fc8{color:rgb(126,134,142);}
.fc0{color:rgb(0,0,0);}
.fc9{color:rgb(56,61,65);}
.fca{color:rgb(176,12,16);}
.fs15{font-size:18.900097px;}
.fs17{font-size:25.200129px;}
.fs14{font-size:29.400151px;}
.fs4{font-size:42.000000px;}
.fs11{font-size:44.233800px;}
.fs10{font-size:53.798400px;}
.fsa{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs12{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsd{font-size:65.454600px;}
.fsb{font-size:66.240000px;}
.fs13{font-size:71.400366px;}
.fse{font-size:71.731200px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:74.880000px;}
.fs8{font-size:77.760000px;}
.fsc{font-size:86.077200px;}
.fs2{font-size:102.000000px;}
.fsf{font-size:103.292400px;}
.fs9{font-size:120.240000px;}
.fs16{font-size:126.000645px;}
.fs5{font-size:329.760000px;}
.y0{bottom:0.000000px;}
.y25{bottom:1.440000px;}
.y6{bottom:35.925007px;}
.y26{bottom:42.299850px;}
.y91{bottom:61.467000px;}
.y5{bottom:66.525004px;}
.y125{bottom:88.857510px;}
.y4{bottom:97.125005px;}
.y124{bottom:97.405560px;}
.y206{bottom:106.299000px;}
.y281{bottom:106.324500px;}
.y1d3{bottom:106.951500px;}
.y123{bottom:107.002560px;}
.y11a{bottom:107.164500px;}
.y1ed{bottom:109.474500px;}
.y277{bottom:109.818000px;}
.y1e0{bottom:110.665500px;}
.y20c{bottom:110.680500px;}
.y174{bottom:112.783500px;}
.y243{bottom:115.720500px;}
.y122{bottom:116.319210px;}
.y241{bottom:116.751000px;}
.y23e{bottom:118.885500px;}
.y14d{bottom:119.203500px;}
.y25d{bottom:119.236500px;}
.y21b{bottom:119.254500px;}
.y238{bottom:119.622000px;}
.y261{bottom:119.655000px;}
.y3d{bottom:122.220000px;}
.y205{bottom:124.231500px;}
.y280{bottom:124.257000px;}
.y27e{bottom:125.080500px;}
.y119{bottom:125.098500px;}
.y13c{bottom:125.236500px;}
.y121{bottom:125.518260px;}
.y1ec{bottom:127.407000px;}
.y90{bottom:127.567500px;}
.y196{bottom:127.810500px;}
.y24c{bottom:127.842000px;}
.y265{bottom:127.858500px;}
.ycc{bottom:128.227500px;}
.y1df{bottom:128.598000px;}
.y20b{bottom:128.613000px;}
.y1b5{bottom:129.466500px;}
.y1d2{bottom:130.308000px;}
.y120{bottom:135.013410px;}
.y276{bottom:136.710000px;}
.y23d{bottom:136.818000px;}
.y14c{bottom:137.136000px;}
.y256{bottom:137.169000px;}
.y21a{bottom:137.187000px;}
.y237{bottom:137.554500px;}
.y23{bottom:139.264499px;}
.y173{bottom:139.674000px;}
.y260{bottom:143.013000px;}
.y25f{bottom:143.031000px;}
.y1d1{bottom:143.185500px;}
.y240{bottom:143.641500px;}
.y11f{bottom:144.555810px;}
.y1eb{bottom:145.339500px;}
.y195{bottom:145.743000px;}
.y24b{bottom:145.774500px;}
.ybc{bottom:146.446500px;}
.y1de{bottom:146.530500px;}
.y20a{bottom:146.547000px;}
.y1b4{bottom:147.399000px;}
.y204{bottom:147.589500px;}
.y27f{bottom:147.615000px;}
.y118{bottom:148.455000px;}
.y67{bottom:149.698500px;}
.y8f{bottom:150.924000px;}
.y264{bottom:151.216500px;}
.ycb{bottom:151.585500px;}
.y27d{bottom:151.971000px;}
.y13b{bottom:152.127000px;}
.y44{bottom:152.430660px;}
.y14b{bottom:155.068500px;}
.y255{bottom:155.101500px;}
.y236{bottom:155.488500px;}
.y23c{bottom:160.176000px;}
.y203{bottom:160.467000px;}
.y25c{bottom:160.527000px;}
.y219{bottom:160.545000px;}
.y1d0{bottom:161.119500px;}
.y117{bottom:161.332500px;}
.y1ea{bottom:163.272000px;}
.y275{bottom:163.600500px;}
.y24a{bottom:163.707000px;}
.y8e{bottom:163.801500px;}
.y263{bottom:164.094000px;}
.ybb{bottom:164.379000px;}
.yca{bottom:164.463000px;}
.y1dd{bottom:164.464500px;}
.y1b3{bottom:165.331500px;}
.y25e{bottom:166.387500px;}
.y172{bottom:166.564500px;}
.y194{bottom:169.101000px;}
.y209{bottom:169.903500px;}
.y23f{bottom:170.532000px;}
.y14a{bottom:173.001000px;}
.y254{bottom:173.035500px;}
.y23b{bottom:173.053500px;}
.y25b{bottom:173.404500px;}
.y235{bottom:173.421000px;}
.y217{bottom:173.422500px;}
.yf3{bottom:175.339500px;}
.y66{bottom:176.589000px;}
.y202{bottom:178.399500px;}
.y27c{bottom:178.863000px;}
.y13a{bottom:179.019000px;}
.y1cf{bottom:179.052000px;}
.y1e9{bottom:181.204500px;}
.y249{bottom:181.641000px;}
.y8d{bottom:181.734000px;}
.y193{bottom:181.978500px;}
.yba{bottom:182.313000px;}
.yc9{bottom:182.395500px;}
.y1dc{bottom:182.397000px;}
.y1b2{bottom:183.265500px;}
.y116{bottom:184.690500px;}
.y262{bottom:187.450500px;}
.y43{bottom:188.077500px;}
.y274{bottom:190.491000px;}
.y11e{bottom:190.590960px;}
.y149{bottom:190.935000px;}
.y253{bottom:190.968000px;}
.y23a{bottom:190.986000px;}
.y25a{bottom:191.337000px;}
.y234{bottom:191.353500px;}
.y216{bottom:191.355000px;}
.yf2{bottom:193.272000px;}
.y171{bottom:193.456500px;}
.y201{bottom:196.332000px;}
.y1a{bottom:196.933500px;}
.y1ce{bottom:196.984500px;}
.y208{bottom:197.422500px;}
.y1e8{bottom:199.137000px;}
.y8c{bottom:199.666500px;}
.y192{bottom:199.911000px;}
.yb9{bottom:200.245500px;}
.yc8{bottom:200.328000px;}
.y248{bottom:204.997500px;}
.y42{bottom:205.542360px;}
.y1db{bottom:205.753500px;}
.y139{bottom:205.909500px;}
.y1b1{bottom:206.622000px;}
.y148{bottom:208.867500px;}
.y252{bottom:208.900500px;}
.y259{bottom:209.269500px;}
.y233{bottom:209.286000px;}
.y215{bottom:209.287500px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.yf1{bottom:211.204500px;}
.y115{bottom:212.209500px;}
.y200{bottom:214.264500px;}
.y239{bottom:214.342500px;}
.y1cd{bottom:214.917000px;}
.y1e7{bottom:217.071000px;}
.y273{bottom:217.381500px;}
.y8b{bottom:217.600500px;}
.y191{bottom:217.843500px;}
.y247{bottom:217.875000px;}
.yb8{bottom:218.178000px;}
.y1b0{bottom:219.499500px;}
.y170{bottom:220.347000px;}
.y65{bottom:221.413500px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.yc7{bottom:223.686000px;}
.y41{bottom:223.724340px;}
.y230{bottom:224.293500px;}
.y207{bottom:224.313000px;}
.y147{bottom:226.800000px;}
.y251{bottom:226.833000px;}
.y258{bottom:227.202000px;}
.y232{bottom:227.218500px;}
.y3b{bottom:228.789000px;}
.y11d{bottom:230.627040px;}
.y27b{bottom:232.644000px;}
.y214{bottom:232.645500px;}
.y138{bottom:232.800000px;}
.y1cc{bottom:232.849500px;}
.y1da{bottom:233.274000px;}
.yf0{bottom:234.562500px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y1e6{bottom:235.003500px;}
.y8a{bottom:235.533000px;}
.y190{bottom:235.776000px;}
.y246{bottom:235.807500px;}
.yb7{bottom:236.110500px;}
.y1af{bottom:237.432000px;}
.y1ff{bottom:237.622500px;}
.y114{bottom:239.100000px;}
.y40{bottom:241.009920px;}
.y22f{bottom:242.227500px;}
.y272{bottom:244.273500px;}
.y146{bottom:244.732500px;}
.y257{bottom:245.134500px;}
.y64{bottom:246.634500px;}
.yef{bottom:247.141500px;}
.y16f{bottom:247.237500px;}
.y250{bottom:250.191000px;}
.y231{bottom:250.576500px;}
.y1cb{bottom:250.782000px;}
.yc6{bottom:251.205000px;}
.y11c{bottom:251.463975px;}
.y1e5{bottom:252.936000px;}
.y89{bottom:253.465500px;}
.y18f{bottom:253.708500px;}
.yb6{bottom:254.043000px;}
.y1ae{bottom:255.364500px;}
.y245{bottom:259.165500px;}
.y27a{bottom:259.534500px;}
.y137{bottom:259.690500px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y22e{bottom:260.160000px;}
.y1d9{bottom:260.164500px;}
.y3a{bottom:260.284500px;}
.y145{bottom:262.665000px;}
.y24f{bottom:263.068500px;}
.y1fe{bottom:263.892000px;}
.y113{bottom:265.990500px;}
.y1ca{bottom:268.716000px;}
.yee{bottom:270.498000px;}
.y271{bottom:271.164000px;}
.y88{bottom:271.398000px;}
.y18e{bottom:271.641000px;}
.y63{bottom:271.857000px;}
.yb5{bottom:271.975500px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y16e{bottom:274.128000px;}
.y39{bottom:276.120000px;}
.y1e4{bottom:276.292500px;}
.y3f{bottom:277.015320px;}
.y244{bottom:277.467000px;}
.yc5{bottom:278.095500px;}
.y1ad{bottom:278.722500px;}
.y144{bottom:280.597500px;}
.y24e{bottom:281.001000px;}
.y22d{bottom:283.516500px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y279{bottom:286.426500px;}
.y136{bottom:286.582500px;}
.y1c9{bottom:286.648500px;}
.y1d8{bottom:287.055000px;}
.y87{bottom:289.330500px;}
.y18d{bottom:289.575000px;}
.yb4{bottom:289.909500px;}
.y1fd{bottom:290.784000px;}
.y112{bottom:292.881000px;}
.y1e3{bottom:294.595500px;}
.y62{bottom:297.078000px;}
.yed{bottom:298.017000px;}
.y270{bottom:298.054500px;}
.y143{bottom:298.531500px;}
.y16d{bottom:301.020000px;}
.y24d{bottom:304.357500px;}
.y1c8{bottom:304.581000px;}
.yc4{bottom:304.986000px;}
.y1ac{bottom:306.241500px;}
.y1e2{bottom:307.473000px;}
.y18c{bottom:307.507500px;}
.yb3{bottom:307.842000px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y22c{bottom:311.037000px;}
.y86{bottom:312.688500px;}
.y3e{bottom:313.200000px;}
.y278{bottom:313.317000px;}
.y135{bottom:313.473000px;}
.y1d7{bottom:313.945500px;}
.y142{bottom:316.464000px;}
.y1fc{bottom:317.674500px;}
.y111{bottom:319.773000px;}
.y61{bottom:322.300500px;}
.y1c7{bottom:322.513500px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.yec{bottom:324.909000px;}
.y26f{bottom:324.945000px;}
.yb2{bottom:325.774500px;}
.y16c{bottom:327.910500px;}
.y1e1{bottom:330.829500px;}
.y18b{bottom:330.864000px;}
.yc3{bottom:331.876500px;}
.y1ab{bottom:333.132000px;}
.y141{bottom:334.396500px;}
.y22b{bottom:337.927500px;}
.y85{bottom:340.207500px;}
.y134{bottom:340.363500px;}
.y1c6{bottom:340.446000px;}
.y213{bottom:340.836000px;}
.y1d6{bottom:340.837500px;}
.yb1{bottom:343.707000px;}
.y18a{bottom:343.741500px;}
.y110{bottom:346.663500px;}
.y60{bottom:347.521500px;}
.y11{bottom:348.133500px;}
.yeb{bottom:351.799500px;}
.y26e{bottom:351.835500px;}
.y140{bottom:352.329000px;}
.y16b{bottom:354.801000px;}
.y1c5{bottom:358.380000px;}
.yc2{bottom:358.768500px;}
.y289{bottom:359.819850px;}
.y1aa{bottom:360.024000px;}
.yb0{bottom:361.639500px;}
.y288{bottom:362.460990px;}
.y1fb{bottom:362.988000px;}
.y22a{bottom:364.818000px;}
.y84{bottom:367.098000px;}
.y189{bottom:367.099500px;}
.y133{bottom:367.254000px;}
.y1d5{bottom:367.728000px;}
.y5f{bottom:372.744000px;}
.y10f{bottom:373.554000px;}
.y13f{bottom:375.687000px;}
.yea{bottom:378.690000px;}
.y26d{bottom:378.727500px;}
.yaf{bottom:379.572000px;}
.y16a{bottom:381.691500px;}
.y1c4{bottom:381.736500px;}
.yc1{bottom:385.659000px;}
.y10{bottom:386.785499px;}
.y1a9{bottom:386.914500px;}
.y13e{bottom:388.564500px;}
.y4f{bottom:391.706100px;}
.y229{bottom:391.708500px;}
.y83{bottom:393.990000px;}
.y132{bottom:394.144500px;}
.y1c3{bottom:394.614000px;}
.y188{bottom:394.618500px;}
.yae{bottom:397.506000px;}
.y287{bottom:397.913610px;}
.y5e{bottom:397.965000px;}
.y10e{bottom:400.444500px;}
.ye9{bottom:405.580500px;}
.y26c{bottom:405.618000px;}
.y218{bottom:406.723500px;}
.yf{bottom:408.044999px;}
.y169{bottom:408.583500px;}
.y1f8{bottom:409.461000px;}
.y4e{bottom:411.860160px;}
.y13d{bottom:411.921000px;}
.yc0{bottom:412.549500px;}
.y1a8{bottom:413.805000px;}
.yad{bottom:415.438500px;}
.y286{bottom:415.557750px;}
.y1c2{bottom:417.970500px;}
.y228{bottom:418.599000px;}
.y82{bottom:420.880500px;}
.y131{bottom:421.036500px;}
.y187{bottom:421.509000px;}
.y5d{bottom:423.187500px;}
.y10d{bottom:427.336500px;}
.y4d{bottom:431.655660px;}
.ye8{bottom:432.472500px;}
.y26b{bottom:432.508500px;}
.yac{bottom:433.371000px;}
.y285{bottom:434.098290px;}
.y168{bottom:435.474000px;}
.ybf{bottom:439.440000px;}
.y1a7{bottom:440.695500px;}
.y1c1{bottom:445.491000px;}
.y81{bottom:447.771000px;}
.y130{bottom:447.927000px;}
.y186{bottom:448.399500px;}
.y5c{bottom:448.408500px;}
.y284{bottom:451.025310px;}
.yab{bottom:451.303500px;}
.y4c{bottom:451.630440px;}
.y10c{bottom:454.227000px;}
.ye7{bottom:459.363000px;}
.y26a{bottom:459.399000px;}
.y167{bottom:462.364500px;}
.ybe{bottom:466.332000px;}
.y1a6{bottom:467.586000px;}
.yaa{bottom:469.236000px;}
.y4b{bottom:471.610440px;}
.y1c0{bottom:472.381500px;}
.y5b{bottom:473.631000px;}
.y80{bottom:474.661500px;}
.y12f{bottom:474.817500px;}
.y185{bottom:475.291500px;}
.y10b{bottom:481.117500px;}
.ye{bottom:484.864502px;}
.ye6{bottom:486.253500px;}
.y269{bottom:486.291000px;}
.y283{bottom:487.209990px;}
.y166{bottom:489.255000px;}
.y4a{bottom:491.585220px;}
.ya9{bottom:492.594000px;}
.ybd{bottom:493.222500px;}
.y1a5{bottom:494.478000px;}
.y5a{bottom:498.852000px;}
.y1bf{bottom:499.272000px;}
.y7f{bottom:501.552000px;}
.y12e{bottom:501.708000px;}
.y184{bottom:502.182000px;}
.yd{bottom:502.864502px;}
.y10a{bottom:508.008000px;}
.y49{bottom:511.574940px;}
.ye5{bottom:513.144000px;}
.y268{bottom:513.181500px;}
.y165{bottom:516.147000px;}
.y38{bottom:516.255000px;}
.ya8{bottom:520.113000px;}
.yc{bottom:520.864502px;}
.y1a4{bottom:521.368500px;}
.y282{bottom:523.215450px;}
.y59{bottom:524.074500px;}
.y1be{bottom:526.162500px;}
.y1f9{bottom:528.204000px;}
.y7e{bottom:528.444000px;}
.y12d{bottom:528.600000px;}
.y183{bottom:529.072500px;}
.y48{bottom:531.549720px;}
.y109{bottom:534.900000px;}
.yb{bottom:538.864499px;}
.ye4{bottom:540.034500px;}
.y267{bottom:540.072000px;}
.y1d4{bottom:541.177500px;}
.y164{bottom:543.037500px;}
.ya7{bottom:547.003500px;}
.y1a3{bottom:548.259000px;}
.y58{bottom:549.295500px;}
.y47{bottom:551.345220px;}
.y1bd{bottom:553.054500px;}
.y7d{bottom:555.334500px;}
.y12c{bottom:555.490500px;}
.y182{bottom:555.963000px;}
.ya{bottom:556.864499px;}
.y108{bottom:561.790500px;}
.ye3{bottom:566.926500px;}
.y163{bottom:569.928000px;}
.y46{bottom:571.320000px;}
.ya6{bottom:573.895500px;}
.y57{bottom:574.518000px;}
.y1a2{bottom:575.149500px;}
.y1bc{bottom:579.945000px;}
.y37{bottom:581.055000px;}
.y7c{bottom:582.225000px;}
.y12b{bottom:582.381000px;}
.y181{bottom:582.855000px;}
.y266{bottom:585.523500px;}
.y107{bottom:588.681000px;}
.y45{bottom:591.300000px;}
.ye2{bottom:593.817000px;}
.y242{bottom:594.958500px;}
.y162{bottom:596.818500px;}
.y56{bottom:599.739000px;}
.ya5{bottom:600.786000px;}
.y1a1{bottom:602.041500px;}
.y1bb{bottom:606.835500px;}
.y7b{bottom:609.115500px;}
.y12a{bottom:609.271500px;}
.y180{bottom:609.745500px;}
.y106{bottom:615.571500px;}
.ye1{bottom:620.707500px;}
.y161{bottom:623.709000px;}
.y55{bottom:624.961500px;}
.ya4{bottom:627.676500px;}
.y1a0{bottom:628.932000px;}
.y1ba{bottom:633.726000px;}
.y7a{bottom:636.007500px;}
.y129{bottom:636.163500px;}
.y17f{bottom:636.636000px;}
.y105{bottom:642.462000px;}
.y9{bottom:645.510000px;}
.y54{bottom:650.182500px;}
.y160{bottom:650.601000px;}
.y1fa{bottom:650.650500px;}
.ya3{bottom:654.567000px;}
.y19f{bottom:655.822500px;}
.y1b9{bottom:660.618000px;}
.y79{bottom:662.898000px;}
.y128{bottom:663.054000px;}
.y17e{bottom:663.526500px;}
.ye0{bottom:666.159000px;}
.y8{bottom:666.771000px;}
.y104{bottom:669.354000px;}
.y36{bottom:670.356000px;}
.y15f{bottom:677.491500px;}
.ya2{bottom:681.457500px;}
.y19e{bottom:682.713000px;}
.y53{bottom:686.650500px;}
.y1b8{bottom:687.508500px;}
.y78{bottom:689.788500px;}
.y17d{bottom:690.418500px;}
.y1f7{bottom:691.092000px;}
.y103{bottom:696.244500px;}
.y15e{bottom:704.382000px;}
.y35{bottom:706.428000px;}
.ya1{bottom:708.349500px;}
.y19d{bottom:709.605000px;}
.y227{bottom:714.399000px;}
.y127{bottom:714.756000px;}
.y77{bottom:716.679000px;}
.y17c{bottom:717.309000px;}
.y1f6{bottom:717.982500px;}
.y102{bottom:723.135000px;}
.ydf{bottom:725.143500px;}
.y7{bottom:726.298500px;}
.y15d{bottom:731.272500px;}
.y1b7{bottom:732.960000px;}
.ya0{bottom:735.240000px;}
.y126{bottom:736.425000px;}
.y19c{bottom:736.495500px;}
.y226{bottom:741.289500px;}
.y34{bottom:742.500000px;}
.y76{bottom:743.571000px;}
.y17b{bottom:744.199500px;}
.y1f5{bottom:744.874500px;}
.yde{bottom:746.811000px;}
.y101{bottom:750.025500px;}
.y3{bottom:752.599495px;}
.y15c{bottom:758.164500px;}
.y9f{bottom:762.130500px;}
.y19b{bottom:763.386000px;}
.y225{bottom:768.181500px;}
.ydd{bottom:768.480000px;}
.y75{bottom:770.461500px;}
.y17a{bottom:771.090000px;}
.y1f4{bottom:771.765000px;}
.y11b{bottom:773.038500px;}
.y1b6{bottom:773.760000px;}
.y52{bottom:773.818500px;}
.y100{bottom:776.917500px;}
.y24{bottom:783.360000px;}
.y15b{bottom:785.055000px;}
.y33{bottom:786.960000px;}
.y9e{bottom:789.021000px;}
.ydc{bottom:790.149000px;}
.y19a{bottom:790.276500px;}
.y224{bottom:795.072000px;}
.y74{bottom:797.352000px;}
.y179{bottom:797.980500px;}
.y1f3{bottom:798.655500px;}
.yff{bottom:803.808000px;}
.y32{bottom:808.783080px;}
.ydb{bottom:811.818000px;}
.y15a{bottom:811.945500px;}
.y9d{bottom:815.913000px;}
.y199{bottom:817.168500px;}
.y223{bottom:821.962500px;}
.y73{bottom:824.242500px;}
.y178{bottom:824.872500px;}
.y1f2{bottom:825.546000px;}
.y31{bottom:826.068660px;}
.yfe{bottom:830.698500px;}
.yda{bottom:833.487000px;}
.y159{bottom:838.836000px;}
.y9c{bottom:842.803500px;}
.y30{bottom:843.354240px;}
.y222{bottom:848.853000px;}
.y51{bottom:849.720000px;}
.y72{bottom:851.134500px;}
.y177{bottom:851.763000px;}
.y1f1{bottom:852.438000px;}
.yd9{bottom:855.156000px;}
.yfd{bottom:857.589000px;}
.y2f{bottom:860.460540px;}
.y9b{bottom:869.694000px;}
.y221{bottom:875.743500px;}
.y198{bottom:876.151500px;}
.y50{bottom:876.610500px;}
.yd8{bottom:876.823500px;}
.y2e{bottom:877.746120px;}
.y71{bottom:878.025000px;}
.y176{bottom:878.653500px;}
.y1f0{bottom:879.328500px;}
.y2{bottom:879.369000px;}
.yfc{bottom:884.481000px;}
.y2d{bottom:895.031700px;}
.y9a{bottom:896.584500px;}
.y158{bottom:897.820500px;}
.yd7{bottom:898.492500px;}
.y220{bottom:902.635500px;}
.y70{bottom:904.915500px;}
.y212{bottom:905.544000px;}
.y1ef{bottom:906.219000px;}
.yfb{bottom:911.371500px;}
.y2c{bottom:912.317280px;}
.y175{bottom:917.649000px;}
.y157{bottom:919.489500px;}
.yd6{bottom:920.161500px;}
.y99{bottom:923.476500px;}
.y21f{bottom:929.526000px;}
.y2b{bottom:929.602860px;}
.y6f{bottom:931.806000px;}
.y211{bottom:932.436000px;}
.yfa{bottom:938.262000px;}
.y156{bottom:941.158500px;}
.yd5{bottom:941.830500px;}
.y1ee{bottom:945.214500px;}
.y2a{bottom:946.709160px;}
.y98{bottom:950.367000px;}
.y21e{bottom:956.416500px;}
.y6e{bottom:958.696500px;}
.y210{bottom:959.326500px;}
.y155{bottom:962.826000px;}
.yd4{bottom:963.499500px;}
.y29{bottom:963.994740px;}
.yf9{bottom:965.152500px;}
.y1{bottom:966.726000px;}
.y97{bottom:977.257500px;}
.y28{bottom:981.280320px;}
.y154{bottom:984.495000px;}
.yd3{bottom:985.167000px;}
.y6d{bottom:985.588500px;}
.y20f{bottom:986.217000px;}
.yf8{bottom:992.044500px;}
.y27{bottom:998.565900px;}
.y21d{bottom:1001.868000px;}
.y96{bottom:1004.148000px;}
.y153{bottom:1006.164000px;}
.yd2{bottom:1006.836000px;}
.y6c{bottom:1012.479000px;}
.y20e{bottom:1013.107500px;}
.y14f{bottom:1016.998500px;}
.yf7{bottom:1018.935000px;}
.y152{bottom:1027.833000px;}
.yd1{bottom:1028.505000px;}
.y95{bottom:1031.040000px;}
.y6b{bottom:1039.369500px;}
.y21c{bottom:1042.668000px;}
.yf6{bottom:1045.825500px;}
.y151{bottom:1049.502000px;}
.yd0{bottom:1050.174000px;}
.y20d{bottom:1052.103000px;}
.y94{bottom:1057.930500px;}
.y6a{bottom:1066.260000px;}
.y150{bottom:1071.169500px;}
.yf5{bottom:1072.716000px;}
.y197{bottom:1080.540000px;}
.ycf{bottom:1081.212000px;}
.y93{bottom:1084.821000px;}
.y69{bottom:1093.152000px;}
.yf4{bottom:1099.606500px;}
.y14e{bottom:1102.209000px;}
.yce{bottom:1107.765000px;}
.y92{bottom:1111.711500px;}
.ycd{bottom:1129.434000px;}
.y68{bottom:1138.602000px;}
.y3c{bottom:1230.553500px;}
.h26{height:30.311555px;}
.h27{height:30.844958px;}
.h7{height:32.130000px;}
.h1f{height:36.890989px;}
.hc{height:39.830273px;}
.h10{height:40.763672px;}
.h14{height:44.878359px;}
.h13{height:44.936719px;}
.h15{height:44.997879px;}
.h1a{height:45.294583px;}
.h2c{height:45.834399px;}
.h6{height:45.900000px;}
.h11{height:46.406250px;}
.h23{height:47.552643px;}
.h3{height:48.195000px;}
.h29{height:49.207603px;}
.h28{height:49.637990px;}
.h12{height:49.809375px;}
.h20{height:49.852850px;}
.h16{height:50.309663px;}
.hd{height:51.827344px;}
.hf{height:54.351562px;}
.h1b{height:54.589136px;}
.h2{height:55.080000px;}
.hb{height:56.233125px;}
.h24{height:58.787701px;}
.h18{height:59.565422px;}
.h1c{height:59.823821px;}
.h21{height:70.901866px;}
.h1e{height:70.907866px;}
.h1d{height:71.478341px;}
.h19{height:71.788385px;}
.h5{height:78.030000px;}
.h25{height:83.916430px;}
.he{height:90.414844px;}
.h4{height:119.055004px;}
.ha{height:247.964062px;}
.h22{height:383.499900px;}
.h9{height:413.820000px;}
.h0{height:1262.833500px;}
.h17{height:1262.835000px;}
.h1{height:1263.000000px;}
.h8{height:1263.060000px;}
.h2b{height:1263.750000px;}
.h2a{height:1263.780000px;}
.w4{width:147.420000px;}
.w6{width:356.008800px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w5{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:893.340000px;}
.w8{width:894.000000px;}
.w7{width:894.060000px;}
.x0{left:0.000000px;}
.x5{left:8.820000px;}
.x8{left:22.495350px;}
.xa{left:31.603500px;}
.xd{left:35.100000px;}
.xc{left:54.900000px;}
.xb{left:63.360000px;}
.x6{left:91.620000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x18{left:118.980000px;}
.x21{left:121.392000px;}
.x2f{left:123.580500px;}
.x15{left:126.922500px;}
.xe{left:130.804500px;}
.x14{left:132.637500px;}
.x7{left:141.660000px;}
.x17{left:143.712000px;}
.x2c{left:145.033500px;}
.x13{left:150.196500px;}
.x2a{left:153.501000px;}
.x22{left:157.384500px;}
.x30{left:160.299000px;}
.x12{left:174.742500px;}
.x1c{left:180.873630px;}
.x9{left:201.240000px;}
.x4{left:203.484001px;}
.x1b{left:221.746875px;}
.xf{left:230.610000px;}
.x20{left:254.107923px;}
.x23{left:262.854000px;}
.x1a{left:268.453500px;}
.x1f{left:281.178610px;}
.x1e{left:324.125673px;}
.x1d{left:327.834252px;}
.x2d{left:360.936000px;}
.x19{left:365.740500px;}
.x26{left:367.956000px;}
.x27{left:377.479500px;}
.x24{left:379.164000px;}
.x25{left:381.648000px;}
.x10{left:384.288000px;}
.x2e{left:401.052000px;}
.x11{left:416.013000px;}
.x29{left:433.509000px;}
.x2b{left:437.490000px;}
.x16{left:441.973500px;}
.x3{left:454.959000px;}
.x28{left:485.487000px;}
.x31{left:765.720000px;}
.x32{left:806.400000px;}
.x33{left:847.080000px;}
@media print{
.v2{vertical-align:-19.285333pt;}
.v6{vertical-align:-7.317371pt;}
.v5{vertical-align:-3.360017pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.360017pt;}
.v4{vertical-align:4.480023pt;}
.v8{vertical-align:15.605413pt;}
.v7{vertical-align:18.330761pt;}
.v9{vertical-align:21.504110pt;}
.v1{vertical-align:23.146667pt;}
.ls2a{letter-spacing:-0.893018pt;}
.lsd{letter-spacing:-0.469333pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.318720pt;}
.ls7{letter-spacing:-0.288000pt;}
.ls14{letter-spacing:-0.265600pt;}
.ls5{letter-spacing:-0.213333pt;}
.ls18{letter-spacing:-0.212480pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls15{letter-spacing:-0.159360pt;}
.ls4{letter-spacing:-0.133120pt;}
.lsc{letter-spacing:-0.117333pt;}
.ls8{letter-spacing:-0.053333pt;}
.ls13{letter-spacing:-0.053120pt;}
.lsa{letter-spacing:-0.048000pt;}
.ls2d{letter-spacing:-0.020160pt;}
.ls2c{letter-spacing:-0.013440pt;}
.ls0{letter-spacing:0.000000pt;}
.ls36{letter-spacing:0.002133pt;}
.ls23{letter-spacing:0.003733pt;}
.ls2b{letter-spacing:0.004480pt;}
.ls26{letter-spacing:0.017920pt;}
.ls2{letter-spacing:0.021333pt;}
.ls29{letter-spacing:0.022400pt;}
.ls11{letter-spacing:0.058667pt;}
.lsf{letter-spacing:0.117333pt;}
.ls27{letter-spacing:0.129547pt;}
.ls16{letter-spacing:0.159360pt;}
.lse{letter-spacing:0.176000pt;}
.ls3{letter-spacing:0.293120pt;}
.ls10{letter-spacing:0.293333pt;}
.lsb{letter-spacing:0.384000pt;}
.ls24{letter-spacing:0.515203pt;}
.ls22{letter-spacing:0.909071pt;}
.ls20{letter-spacing:0.914671pt;}
.ls4a{letter-spacing:1.340800pt;}
.ls21{letter-spacing:1.803209pt;}
.ls12{letter-spacing:2.018560pt;}
.ls30{letter-spacing:2.359467pt;}
.ls1a{letter-spacing:2.655200pt;}
.ls25{letter-spacing:3.608285pt;}
.ls28{letter-spacing:13.339268pt;}
.ls3e{letter-spacing:13.643733pt;}
.ls3a{letter-spacing:14.641067pt;}
.ls43{letter-spacing:14.859733pt;}
.ls45{letter-spacing:15.622400pt;}
.ls34{letter-spacing:15.787733pt;}
.ls2f{letter-spacing:15.937067pt;}
.ls35{letter-spacing:15.942400pt;}
.ls46{letter-spacing:16.374400pt;}
.ls4c{letter-spacing:16.566400pt;}
.ls19{letter-spacing:17.081600pt;}
.ls3d{letter-spacing:17.126400pt;}
.ls41{letter-spacing:17.153067pt;}
.ls48{letter-spacing:17.329067pt;}
.ls33{letter-spacing:17.355733pt;}
.ls4e{letter-spacing:17.409067pt;}
.ls3f{letter-spacing:17.665067pt;}
.ls47{letter-spacing:17.793067pt;}
.ls4d{letter-spacing:17.947733pt;}
.ls38{letter-spacing:18.139733pt;}
.ls37{letter-spacing:18.241067pt;}
.ls4b{letter-spacing:18.795733pt;}
.ls32{letter-spacing:19.905067pt;}
.ls42{letter-spacing:20.449067pt;}
.ls31{letter-spacing:20.619733pt;}
.ls49{letter-spacing:21.339733pt;}
.ls1d{letter-spacing:21.758933pt;}
.ls44{letter-spacing:22.006400pt;}
.ls39{letter-spacing:22.561067pt;}
.ls1e{letter-spacing:23.097600pt;}
.ls2e{letter-spacing:25.462400pt;}
.ls3c{letter-spacing:25.793067pt;}
.ls1{letter-spacing:28.176000pt;}
.ls3b{letter-spacing:28.726400pt;}
.ls40{letter-spacing:32.390400pt;}
.ls1f{letter-spacing:35.060267pt;}
.ls1c{letter-spacing:41.017600pt;}
.ls1b{letter-spacing:46.228267pt;}
.ws2{word-spacing:-81.194240pt;}
.ws1{word-spacing:-80.314880pt;}
.ws4{word-spacing:-43.776000pt;}
.ws6{word-spacing:-32.544000pt;}
.ws1c7{word-spacing:-22.953867pt;}
.ws3{word-spacing:-17.536000pt;}
.ws8{word-spacing:-16.250880pt;}
.ws4b{word-spacing:-15.940267pt;}
.ws203{word-spacing:-14.661120pt;}
.ws28{word-spacing:-14.554880pt;}
.ws29{word-spacing:-14.501760pt;}
.ws27{word-spacing:-14.289280pt;}
.ws2a{word-spacing:-14.236160pt;}
.ws7{word-spacing:-13.536000pt;}
.wsad{word-spacing:-13.283467pt;}
.ws5{word-spacing:-13.152000pt;}
.ws186{word-spacing:-11.955200pt;}
.wsed{word-spacing:-9.829733pt;}
.wsd8{word-spacing:-6.537847pt;}
.wsd7{word-spacing:-6.533367pt;}
.ws1c9{word-spacing:-5.866018pt;}
.ws1e2{word-spacing:-5.674735pt;}
.ws1f0{word-spacing:-5.037124pt;}
.ws1e9{word-spacing:-4.016947pt;}
.ws169{word-spacing:-3.825664pt;}
.ws1c5{word-spacing:-3.761903pt;}
.wscf{word-spacing:-3.698142pt;}
.ws17f{word-spacing:-3.672619pt;}
.ws1c6{word-spacing:-3.634381pt;}
.ws3a{word-spacing:-3.612160pt;}
.ws191{word-spacing:-3.570620pt;}
.wsb0{word-spacing:-3.506859pt;}
.ws1d1{word-spacing:-3.443098pt;}
.ws167{word-spacing:-3.379337pt;}
.ws188{word-spacing:-3.315575pt;}
.ws193{word-spacing:-3.251814pt;}
.ws1f8{word-spacing:-3.234142pt;}
.ws1d0{word-spacing:-3.188053pt;}
.ws15b{word-spacing:-3.124292pt;}
.ws192{word-spacing:-3.060531pt;}
.ws137{word-spacing:-2.996770pt;}
.ws17a{word-spacing:-2.933009pt;}
.ws5a{word-spacing:-2.805487pt;}
.ws113{word-spacing:-2.741726pt;}
.ws61{word-spacing:-2.677965pt;}
.ws14b{word-spacing:-2.656693pt;}
.wsa9{word-spacing:-2.614204pt;}
.ws1d3{word-spacing:-2.571537pt;}
.ws171{word-spacing:-2.550443pt;}
.ws120{word-spacing:-2.550426pt;}
.ws131{word-spacing:-2.497292pt;}
.wsda{word-spacing:-2.486682pt;}
.ws19a{word-spacing:-2.444158pt;}
.wsa0{word-spacing:-2.359159pt;}
.ws2f{word-spacing:-2.337280pt;}
.ws17c{word-spacing:-2.295398pt;}
.ws17e{word-spacing:-2.284756pt;}
.ws55{word-spacing:-2.231637pt;}
.ws64{word-spacing:-2.231622pt;}
.ws183{word-spacing:-2.167876pt;}
.ws1ad{word-spacing:-2.125355pt;}
.ws7c{word-spacing:-2.104115pt;}
.ws8c{word-spacing:-2.072221pt;}
.wseb{word-spacing:-2.040354pt;}
.wsc0{word-spacing:-2.019087pt;}
.ws5f{word-spacing:-1.976593pt;}
.ws6d{word-spacing:-1.965953pt;}
.ws5e{word-spacing:-1.912832pt;}
.ws88{word-spacing:-1.859685pt;}
.wsc8{word-spacing:-1.849071pt;}
.ws87{word-spacing:-1.806551pt;}
.ws11a{word-spacing:-1.785310pt;}
.ws3f{word-spacing:-1.745456pt;}
.ws97{word-spacing:-1.721549pt;}
.ws18e{word-spacing:-1.700284pt;}
.wsc5{word-spacing:-1.657788pt;}
.wsf2{word-spacing:-1.647150pt;}
.ws159{word-spacing:-1.594027pt;}
.ws5d{word-spacing:-1.530266pt;}
.wsa2{word-spacing:-1.466505pt;}
.ws6b{word-spacing:-1.434614pt;}
.wsbc{word-spacing:-1.402743pt;}
.wsfe{word-spacing:-1.338982pt;}
.ws3e{word-spacing:-1.338183pt;}
.ws19f{word-spacing:-1.328347pt;}
.ws128{word-spacing:-1.275221pt;}
.wsd4{word-spacing:-1.275213pt;}
.ws23{word-spacing:-1.226667pt;}
.ws46{word-spacing:-1.221819pt;}
.ws62{word-spacing:-1.211460pt;}
.ws145{word-spacing:-1.205188pt;}
.ws22{word-spacing:-1.178667pt;}
.ws19c{word-spacing:-1.168945pt;}
.ws50{word-spacing:-1.147699pt;}
.ws17{word-spacing:-1.136000pt;}
.ws68{word-spacing:-1.115811pt;}
.ws1cf{word-spacing:-1.099674pt;}
.wsa4{word-spacing:-1.083938pt;}
.ws15e{word-spacing:-1.062677pt;}
.wsba{word-spacing:-1.020177pt;}
.ws6c{word-spacing:-1.009543pt;}
.ws43{word-spacing:-0.989092pt;}
.ws9f{word-spacing:-0.956416pt;}
.ws67{word-spacing:-0.956410pt;}
.ws1d6{word-spacing:-0.918537pt;}
.ws119{word-spacing:-0.903276pt;}
.wsc7{word-spacing:-0.892655pt;}
.ws86{word-spacing:-0.850142pt;}
.ws10a{word-spacing:-0.828894pt;}
.ws140{word-spacing:-0.797008pt;}
.ws24{word-spacing:-0.794667pt;}
.ws54{word-spacing:-0.765133pt;}
.ws1ce{word-spacing:-0.749449pt;}
.ws1b7{word-spacing:-0.743874pt;}
.ws51{word-spacing:-0.701372pt;}
.ws118{word-spacing:-0.690740pt;}
.ws16{word-spacing:-0.656000pt;}
.ws4f{word-spacing:-0.637611pt;}
.ws1f3{word-spacing:-0.625937pt;}
.ws26{word-spacing:-0.624000pt;}
.ws206{word-spacing:-0.602667pt;}
.ws14d{word-spacing:-0.584473pt;}
.wsec{word-spacing:-0.573850pt;}
.ws8a{word-spacing:-0.531339pt;}
.ws1e{word-spacing:-0.517333pt;}
.wse4{word-spacing:-0.510089pt;}
.ws84{word-spacing:-0.478205pt;}
.ws7b{word-spacing:-0.446327pt;}
.ws21{word-spacing:-0.437333pt;}
.wsbe{word-spacing:-0.425071pt;}
.ws1a{word-spacing:-0.410667pt;}
.ws9e{word-spacing:-0.382566pt;}
.ws20{word-spacing:-0.352000pt;}
.wsb{word-spacing:-0.325333pt;}
.ws172{word-spacing:-0.318805pt;}
.wsf8{word-spacing:-0.318803pt;}
.ws39{word-spacing:-0.318720pt;}
.ws12f{word-spacing:-0.265669pt;}
.ws94{word-spacing:-0.255044pt;}
.ws52{word-spacing:-0.191283pt;}
.ws8b{word-spacing:-0.159402pt;}
.ws9a{word-spacing:-0.127522pt;}
.ws1f{word-spacing:-0.117333pt;}
.ws18b{word-spacing:-0.106268pt;}
.ws15{word-spacing:-0.096000pt;}
.ws76{word-spacing:-0.063761pt;}
.ws25{word-spacing:-0.058667pt;}
.ws1b8{word-spacing:-0.053134pt;}
.ws1d8{word-spacing:-0.007612pt;}
.ws1d9{word-spacing:-0.005333pt;}
.ws1ea{word-spacing:-0.003004pt;}
.ws1fc{word-spacing:-0.001306pt;}
.ws0{word-spacing:0.000000pt;}
.ws2b{word-spacing:0.053120pt;}
.ws177{word-spacing:0.053134pt;}
.ws11{word-spacing:0.053333pt;}
.ws7d{word-spacing:0.063761pt;}
.ws12c{word-spacing:0.106268pt;}
.ws44{word-spacing:0.116364pt;}
.ws18{word-spacing:0.117333pt;}
.ws181{word-spacing:0.127522pt;}
.ws30{word-spacing:0.159360pt;}
.wsee{word-spacing:0.159402pt;}
.ws9b{word-spacing:0.191283pt;}
.ws2c{word-spacing:0.212480pt;}
.ws90{word-spacing:0.212535pt;}
.ws205{word-spacing:0.245333pt;}
.ws204{word-spacing:0.250667pt;}
.wsc1{word-spacing:0.255044pt;}
.ws19{word-spacing:0.261333pt;}
.ws122{word-spacing:0.265669pt;}
.ws13{word-spacing:0.272000pt;}
.ws1b{word-spacing:0.277333pt;}
.ws12{word-spacing:0.309333pt;}
.ws2e{word-spacing:0.318720pt;}
.wscd{word-spacing:0.318805pt;}
.ws1ed{word-spacing:0.342835pt;}
.ws35{word-spacing:0.371840pt;}
.ws148{word-spacing:0.382566pt;}
.wsa1{word-spacing:0.446327pt;}
.ws3c{word-spacing:0.465455pt;}
.ws9{word-spacing:0.465920pt;}
.ws7a{word-spacing:0.510089pt;}
.ws125{word-spacing:0.531339pt;}
.ws1d{word-spacing:0.544000pt;}
.ws105{word-spacing:0.573850pt;}
.wsf6{word-spacing:0.584473pt;}
.ws15f{word-spacing:0.637606pt;}
.ws4e{word-spacing:0.637611pt;}
.ws202{word-spacing:0.690740pt;}
.ws63{word-spacing:0.701372pt;}
.ws123{word-spacing:0.743874pt;}
.ws104{word-spacing:0.765133pt;}
.ws14{word-spacing:0.768000pt;}
.wse0{word-spacing:0.828894pt;}
.ws2d{word-spacing:0.849920pt;}
.ws85{word-spacing:0.850142pt;}
.ws139{word-spacing:0.892655pt;}
.ws1c{word-spacing:0.938667pt;}
.wsd0{word-spacing:0.956416pt;}
.ws13d{word-spacing:1.009543pt;}
.ws16b{word-spacing:1.020177pt;}
.ws1b0{word-spacing:1.062677pt;}
.ws73{word-spacing:1.083938pt;}
.ws12e{word-spacing:1.115811pt;}
.wsdc{word-spacing:1.147699pt;}
.ws130{word-spacing:1.168945pt;}
.wsd9{word-spacing:1.211460pt;}
.wsf1{word-spacing:1.222079pt;}
.ws155{word-spacing:1.275213pt;}
.wsdb{word-spacing:1.275221pt;}
.ws48{word-spacing:1.280001pt;}
.ws14c{word-spacing:1.328347pt;}
.ws16c{word-spacing:1.338982pt;}
.ws8e{word-spacing:1.381481pt;}
.ws60{word-spacing:1.402743pt;}
.ws1fb{word-spacing:1.464115pt;}
.wsa7{word-spacing:1.466505pt;}
.wsaa{word-spacing:1.487748pt;}
.wsea{word-spacing:1.530266pt;}
.wse5{word-spacing:1.594027pt;}
.wsa{word-spacing:1.632000pt;}
.ws135{word-spacing:1.647150pt;}
.wsdf{word-spacing:1.657788pt;}
.ws1c8{word-spacing:1.670246pt;}
.ws8d{word-spacing:1.700284pt;}
.ws53{word-spacing:1.721549pt;}
.ws1f1{word-spacing:1.730910pt;}
.ws124{word-spacing:1.753418pt;}
.ws4d{word-spacing:1.785310pt;}
.wsf7{word-spacing:1.806551pt;}
.ws10e{word-spacing:1.849071pt;}
.ws14a{word-spacing:1.859685pt;}
.ws1c4{word-spacing:1.912819pt;}
.ws58{word-spacing:1.912832pt;}
.ws164{word-spacing:1.976593pt;}
.ws66{word-spacing:2.019087pt;}
.wsc6{word-spacing:2.040354pt;}
.ws1de{word-spacing:2.057301pt;}
.ws83{word-spacing:2.072221pt;}
.ws112{word-spacing:2.104115pt;}
.ws32{word-spacing:2.124800pt;}
.ws176{word-spacing:2.125355pt;}
.ws6e{word-spacing:2.167876pt;}
.ws33{word-spacing:2.231040pt;}
.wsbf{word-spacing:2.231622pt;}
.ws6f{word-spacing:2.231637pt;}
.ws80{word-spacing:2.284756pt;}
.ws142{word-spacing:2.295398pt;}
.ws101{word-spacing:2.359159pt;}
.ws49{word-spacing:2.385457pt;}
.ws12d{word-spacing:2.391024pt;}
.ws93{word-spacing:2.422921pt;}
.ws65{word-spacing:2.444158pt;}
.wsc3{word-spacing:2.486682pt;}
.ws1a3{word-spacing:2.497292pt;}
.ws89{word-spacing:2.550426pt;}
.wsbd{word-spacing:2.550443pt;}
.wsc4{word-spacing:2.614204pt;}
.wsd5{word-spacing:2.656693pt;}
.ws5c{word-spacing:2.677965pt;}
.ws18d{word-spacing:2.709827pt;}
.ws143{word-spacing:2.741726pt;}
.ws31{word-spacing:2.762240pt;}
.ws121{word-spacing:2.762961pt;}
.ws45{word-spacing:2.792730pt;}
.ws56{word-spacing:2.805487pt;}
.ws109{word-spacing:2.869248pt;}
.ws1bd{word-spacing:2.922363pt;}
.wscc{word-spacing:2.933009pt;}
.ws47{word-spacing:2.967275pt;}
.ws107{word-spacing:2.996770pt;}
.wsf5{word-spacing:3.028630pt;}
.ws11e{word-spacing:3.060531pt;}
.ws82{word-spacing:3.081764pt;}
.ws5b{word-spacing:3.124292pt;}
.ws1a2{word-spacing:3.134898pt;}
.wsd6{word-spacing:3.188032pt;}
.wsb9{word-spacing:3.188053pt;}
.ws1a1{word-spacing:3.241166pt;}
.wsa8{word-spacing:3.251814pt;}
.ws189{word-spacing:3.294300pt;}
.wse9{word-spacing:3.315575pt;}
.ws1ac{word-spacing:3.347434pt;}
.wsff{word-spacing:3.379337pt;}
.ws3d{word-spacing:3.432730pt;}
.ws10d{word-spacing:3.443098pt;}
.ws14f{word-spacing:3.453701pt;}
.ws150{word-spacing:3.476778pt;}
.ws151{word-spacing:3.506835pt;}
.ws57{word-spacing:3.506859pt;}
.wsf4{word-spacing:3.559969pt;}
.ws103{word-spacing:3.570620pt;}
.ws13f{word-spacing:3.613103pt;}
.ws162{word-spacing:3.634381pt;}
.ws168{word-spacing:3.666237pt;}
.ws17b{word-spacing:3.698142pt;}
.ws1df{word-spacing:3.707785pt;}
.ws146{word-spacing:3.761903pt;}
.wsbb{word-spacing:3.825664pt;}
.wsf3{word-spacing:3.878772pt;}
.ws17d{word-spacing:3.889425pt;}
.ws79{word-spacing:3.953186pt;}
.ws160{word-spacing:3.985040pt;}
.ws72{word-spacing:4.016947pt;}
.ws136{word-spacing:4.038174pt;}
.ws13a{word-spacing:4.080708pt;}
.ws37{word-spacing:4.090240pt;}
.ws40{word-spacing:4.130913pt;}
.ws8f{word-spacing:4.144442pt;}
.wsca{word-spacing:4.144469pt;}
.ws1a7{word-spacing:4.197575pt;}
.wsc9{word-spacing:4.208230pt;}
.wsd2{word-spacing:4.271991pt;}
.ws38{word-spacing:4.302720pt;}
.ws132{word-spacing:4.303843pt;}
.wsd3{word-spacing:4.335753pt;}
.ws154{word-spacing:4.356977pt;}
.wsa3{word-spacing:4.399514pt;}
.wsab{word-spacing:4.463245pt;}
.wse7{word-spacing:4.463275pt;}
.ws1f7{word-spacing:4.519031pt;}
.wsce{word-spacing:4.527036pt;}
.ws98{word-spacing:4.590797pt;}
.ws200{word-spacing:4.608666pt;}
.wsf0{word-spacing:4.622646pt;}
.wsa6{word-spacing:4.654558pt;}
.ws106{word-spacing:4.718319pt;}
.ws13e{word-spacing:4.728914pt;}
.ws1be{word-spacing:4.748348pt;}
.ws1a6{word-spacing:4.782048pt;}
.ws126{word-spacing:4.782080pt;}
.ws185{word-spacing:4.835182pt;}
.ws102{word-spacing:4.845841pt;}
.ws100{word-spacing:4.909602pt;}
.wsdd{word-spacing:4.973363pt;}
.ws16f{word-spacing:4.994583pt;}
.ws13c{word-spacing:5.037124pt;}
.ws14e{word-spacing:5.100851pt;}
.ws11f{word-spacing:5.100885pt;}
.ws96{word-spacing:5.164646pt;}
.ws69{word-spacing:5.207119pt;}
.ws11c{word-spacing:5.228407pt;}
.wscb{word-spacing:5.292169pt;}
.ws15d{word-spacing:5.355930pt;}
.ws152{word-spacing:5.366521pt;}
.ws175{word-spacing:5.419654pt;}
.wsfa{word-spacing:5.419691pt;}
.ws110{word-spacing:5.483452pt;}
.wsef{word-spacing:5.525922pt;}
.ws10c{word-spacing:5.547213pt;}
.ws1c1{word-spacing:5.610974pt;}
.ws195{word-spacing:5.674735pt;}
.ws6a{word-spacing:5.738458pt;}
.wsc2{word-spacing:5.738496pt;}
.ws117{word-spacing:5.791591pt;}
.ws9d{word-spacing:5.802257pt;}
.ws70{word-spacing:5.866018pt;}
.ws180{word-spacing:5.929779pt;}
.ws16e{word-spacing:5.993540pt;}
.ws138{word-spacing:6.057301pt;}
.wse2{word-spacing:6.121062pt;}
.ws19b{word-spacing:6.163529pt;}
.ws91{word-spacing:6.184823pt;}
.ws156{word-spacing:6.248585pt;}
.ws7e{word-spacing:6.312346pt;}
.ws41{word-spacing:6.341823pt;}
.ws1ff{word-spacing:6.352230pt;}
.ws18a{word-spacing:6.376064pt;}
.ws71{word-spacing:6.376107pt;}
.ws173{word-spacing:6.439868pt;}
.ws1b1{word-spacing:6.482332pt;}
.ws75{word-spacing:6.503629pt;}
.ws194{word-spacing:6.508800pt;}
.ws16d{word-spacing:6.567390pt;}
.ws4a{word-spacing:6.574551pt;}
.wsfd{word-spacing:6.631151pt;}
.ws1db{word-spacing:6.639556pt;}
.ws42{word-spacing:6.690915pt;}
.ws115{word-spacing:6.694912pt;}
.ws3b{word-spacing:6.749097pt;}
.wsfc{word-spacing:6.758673pt;}
.ws1b5{word-spacing:6.805333pt;}
.wsb8{word-spacing:6.822434pt;}
.ws1a0{word-spacing:6.854269pt;}
.wsde{word-spacing:6.886195pt;}
.ws108{word-spacing:6.949956pt;}
.ws1ae{word-spacing:7.013670pt;}
.ws74{word-spacing:7.013717pt;}
.ws1bf{word-spacing:7.077478pt;}
.ws12a{word-spacing:7.141239pt;}
.ws1ab{word-spacing:7.173072pt;}
.wsa5{word-spacing:7.205001pt;}
.ws197{word-spacing:7.268762pt;}
.ws153{word-spacing:7.279340pt;}
.ws81{word-spacing:7.332474pt;}
.ws7f{word-spacing:7.332523pt;}
.wsd1{word-spacing:7.396284pt;}
.ws129{word-spacing:7.437053pt;}
.wse3{word-spacing:7.460045pt;}
.ws99{word-spacing:7.523806pt;}
.ws1f2{word-spacing:7.587567pt;}
.ws95{word-spacing:7.651328pt;}
.ws134{word-spacing:7.704411pt;}
.ws9c{word-spacing:7.715089pt;}
.wsfb{word-spacing:7.778850pt;}
.wse6{word-spacing:7.842611pt;}
.ws78{word-spacing:7.906372pt;}
.ws36{word-spacing:7.914880pt;}
.ws133{word-spacing:7.916946pt;}
.ws77{word-spacing:7.970133pt;}
.ws178{word-spacing:8.006400pt;}
.ws19d{word-spacing:8.016000pt;}
.ws1d7{word-spacing:8.033894pt;}
.ws163{word-spacing:8.097655pt;}
.ws158{word-spacing:8.161417pt;}
.ws190{word-spacing:8.225178pt;}
.ws10f{word-spacing:8.288939pt;}
.ws1aa{word-spacing:8.352700pt;}
.ws11d{word-spacing:8.416461pt;}
.ws1af{word-spacing:8.480222pt;}
.wsaf{word-spacing:8.543983pt;}
.ws1ca{word-spacing:8.607744pt;}
.ws165{word-spacing:8.671505pt;}
.ws166{word-spacing:8.735266pt;}
.ws19e{word-spacing:8.741333pt;}
.ws174{word-spacing:8.862788pt;}
.ws18f{word-spacing:8.926549pt;}
.ws1ee{word-spacing:8.990310pt;}
.ws92{word-spacing:9.054071pt;}
.ws187{word-spacing:9.117833pt;}
.ws1ef{word-spacing:9.181594pt;}
.ws1b6{word-spacing:9.245355pt;}
.ws1fd{word-spacing:9.309116pt;}
.ws1bc{word-spacing:9.372877pt;}
.ws1c3{word-spacing:9.436638pt;}
.ws116{word-spacing:9.457828pt;}
.ws1cb{word-spacing:9.500399pt;}
.ws199{word-spacing:9.564160pt;}
.ws1b2{word-spacing:9.691682pt;}
.ws1e0{word-spacing:9.819204pt;}
.ws1e5{word-spacing:10.010487pt;}
.ws1eb{word-spacing:10.074249pt;}
.ws1ec{word-spacing:10.138010pt;}
.wsb5{word-spacing:10.393054pt;}
.ws34{word-spacing:10.411520pt;}
.ws114{word-spacing:10.464000pt;}
.ws1c2{word-spacing:10.469333pt;}
.ws1da{word-spacing:10.903142pt;}
.ws59{word-spacing:10.966903pt;}
.ws147{word-spacing:11.120000pt;}
.ws1e4{word-spacing:11.133884pt;}
.ws1e8{word-spacing:11.158187pt;}
.ws1f4{word-spacing:11.732036pt;}
.ws1e3{word-spacing:11.795797pt;}
.ws1c0{word-spacing:12.433408pt;}
.wsb1{word-spacing:12.752213pt;}
.ws1dc{word-spacing:12.815974pt;}
.wse1{word-spacing:12.986667pt;}
.ws1fe{word-spacing:13.453585pt;}
.ws1a9{word-spacing:13.573333pt;}
.ws184{word-spacing:13.581107pt;}
.wsb3{word-spacing:13.899913pt;}
.ws1dd{word-spacing:14.601284pt;}
.wse{word-spacing:14.928000pt;}
.ws10{word-spacing:14.970667pt;}
.wsc{word-spacing:14.981333pt;}
.ws1d2{word-spacing:14.983851pt;}
.wsd{word-spacing:14.992000pt;}
.wsf{word-spacing:15.013333pt;}
.ws1f5{word-spacing:15.238895pt;}
.wsae{word-spacing:15.302656pt;}
.ws170{word-spacing:15.685333pt;}
.ws111{word-spacing:16.197333pt;}
.ws1f6{word-spacing:16.386594pt;}
.ws1d5{word-spacing:16.705399pt;}
.ws198{word-spacing:16.730667pt;}
.ws1d4{word-spacing:16.769161pt;}
.ws1e6{word-spacing:16.896683pt;}
.wse8{word-spacing:17.104000pt;}
.ws1e7{word-spacing:18.030677pt;}
.ws141{word-spacing:18.485333pt;}
.ws196{word-spacing:19.482667pt;}
.ws1cd{word-spacing:19.957214pt;}
.ws1cc{word-spacing:20.020975pt;}
.ws144{word-spacing:21.157333pt;}
.ws11b{word-spacing:21.173333pt;}
.ws201{word-spacing:21.674667pt;}
.ws1a4{word-spacing:22.256000pt;}
.ws13b{word-spacing:23.749333pt;}
.ws127{word-spacing:24.928000pt;}
.ws1fa{word-spacing:24.994338pt;}
.ws1f9{word-spacing:25.058099pt;}
.ws149{word-spacing:26.021333pt;}
.ws15c{word-spacing:26.602667pt;}
.ws1ba{word-spacing:26.826667pt;}
.ws1e1{word-spacing:26.843409pt;}
.ws161{word-spacing:27.050667pt;}
.ws10b{word-spacing:27.178667pt;}
.ws1bb{word-spacing:28.512000pt;}
.ws157{word-spacing:29.248000pt;}
.ws182{word-spacing:29.866667pt;}
.ws179{word-spacing:29.930667pt;}
.ws1b4{word-spacing:30.133333pt;}
.ws12b{word-spacing:32.005333pt;}
.ws1a8{word-spacing:33.370667pt;}
.ws1b3{word-spacing:33.738667pt;}
.ws18c{word-spacing:33.861333pt;}
.ws1b9{word-spacing:34.016000pt;}
.wsb6{word-spacing:34.877303pt;}
.ws1a5{word-spacing:36.197333pt;}
.wsb7{word-spacing:40.615799pt;}
.wsac{word-spacing:57.172041pt;}
.ws16a{word-spacing:57.384800pt;}
.wsb4{word-spacing:62.549606pt;}
.wsb2{word-spacing:63.569783pt;}
.ws4c{word-spacing:68.861600pt;}
.wsf9{word-spacing:354.001442pt;}
.ws15a{word-spacing:784.588595pt;}
._2a{margin-left:-14.048605pt;}
._5{margin-left:-8.492950pt;}
._11{margin-left:-6.652894pt;}
._15{margin-left:-5.355935pt;}
._6{margin-left:-4.196269pt;}
._d{margin-left:-3.141821pt;}
._3{margin-left:-1.912827pt;}
._1{margin-left:-0.913664pt;}
._0{width:1.091584pt;}
._2{width:2.839296pt;}
._3b{width:3.889420pt;}
._3f{width:5.487946pt;}
._1c{width:7.173079pt;}
._1d{width:8.767081pt;}
._17{width:10.148569pt;}
._40{width:11.361749pt;}
._1e{width:12.270086pt;}
._18{width:13.283474pt;}
._16{width:14.282479pt;}
._8{width:15.943997pt;}
._c{width:16.858391pt;}
._9{width:17.810826pt;}
._12{width:18.745754pt;}
._7{width:20.065569pt;}
._13{width:21.210961pt;}
._b{width:22.753911pt;}
._4{width:23.719051pt;}
._10{width:25.192748pt;}
._e{width:26.291029pt;}
._f{width:27.752750pt;}
._3a{width:28.692475pt;}
._14{width:29.648896pt;}
._2b{width:31.090242pt;}
._29{width:32.666670pt;}
._19{width:34.309409pt;}
._1f{width:35.459932pt;}
._a{width:36.887303pt;}
._1b{width:37.990715pt;}
._1a{width:39.531922pt;}
._39{width:40.488272pt;}
._21{width:41.380932pt;}
._20{width:42.911198pt;}
._2f{width:43.985205pt;}
._3c{width:46.061090pt;}
._3d{width:47.463839pt;}
._22{width:50.690053pt;}
._24{width:56.045978pt;}
._3e{width:57.265003pt;}
._38{width:63.111765pt;}
._28{width:76.513067pt;}
._26{width:88.042837pt;}
._27{width:91.815467pt;}
._35{width:194.268274pt;}
._34{width:199.624204pt;}
._23{width:253.853815pt;}
._2d{width:269.326746pt;}
._25{width:288.320078pt;}
._37{width:307.507934pt;}
._30{width:334.032538pt;}
._2c{width:335.765772pt;}
._2e{width:383.076489pt;}
._36{width:521.128511pt;}
._32{width:535.836314pt;}
._31{width:571.351228pt;}
._33{width:670.435925pt;}
.fs15{font-size:16.800086pt;}
.fs17{font-size:22.400115pt;}
.fs14{font-size:26.133467pt;}
.fs4{font-size:37.333333pt;}
.fs11{font-size:39.318933pt;}
.fs10{font-size:47.820800pt;}
.fsa{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs12{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsd{font-size:58.181867pt;}
.fsb{font-size:58.880000pt;}
.fs13{font-size:63.466992pt;}
.fse{font-size:63.761067pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:66.560000pt;}
.fs8{font-size:69.120000pt;}
.fsc{font-size:76.513067pt;}
.fs2{font-size:90.666667pt;}
.fsf{font-size:91.815467pt;}
.fs9{font-size:106.880000pt;}
.fs16{font-size:112.000573pt;}
.fs5{font-size:293.120000pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:1.280000pt;}
.y6{bottom:31.933340pt;}
.y26{bottom:37.599867pt;}
.y91{bottom:54.637333pt;}
.y5{bottom:59.133337pt;}
.y125{bottom:78.984453pt;}
.y4{bottom:86.333337pt;}
.y124{bottom:86.582720pt;}
.y206{bottom:94.488000pt;}
.y281{bottom:94.510667pt;}
.y1d3{bottom:95.068000pt;}
.y123{bottom:95.113387pt;}
.y11a{bottom:95.257333pt;}
.y1ed{bottom:97.310667pt;}
.y277{bottom:97.616000pt;}
.y1e0{bottom:98.369333pt;}
.y20c{bottom:98.382667pt;}
.y174{bottom:100.252000pt;}
.y243{bottom:102.862667pt;}
.y122{bottom:103.394853pt;}
.y241{bottom:103.778667pt;}
.y23e{bottom:105.676000pt;}
.y14d{bottom:105.958667pt;}
.y25d{bottom:105.988000pt;}
.y21b{bottom:106.004000pt;}
.y238{bottom:106.330667pt;}
.y261{bottom:106.360000pt;}
.y3d{bottom:108.640000pt;}
.y205{bottom:110.428000pt;}
.y280{bottom:110.450667pt;}
.y27e{bottom:111.182667pt;}
.y119{bottom:111.198667pt;}
.y13c{bottom:111.321333pt;}
.y121{bottom:111.571787pt;}
.y1ec{bottom:113.250667pt;}
.y90{bottom:113.393333pt;}
.y196{bottom:113.609333pt;}
.y24c{bottom:113.637333pt;}
.y265{bottom:113.652000pt;}
.ycc{bottom:113.980000pt;}
.y1df{bottom:114.309333pt;}
.y20b{bottom:114.322667pt;}
.y1b5{bottom:115.081333pt;}
.y1d2{bottom:115.829333pt;}
.y120{bottom:120.011920pt;}
.y276{bottom:121.520000pt;}
.y23d{bottom:121.616000pt;}
.y14c{bottom:121.898667pt;}
.y256{bottom:121.928000pt;}
.y21a{bottom:121.944000pt;}
.y237{bottom:122.270667pt;}
.y23{bottom:123.790666pt;}
.y173{bottom:124.154667pt;}
.y260{bottom:127.122667pt;}
.y25f{bottom:127.138667pt;}
.y1d1{bottom:127.276000pt;}
.y240{bottom:127.681333pt;}
.y11f{bottom:128.494053pt;}
.y1eb{bottom:129.190667pt;}
.y195{bottom:129.549333pt;}
.y24b{bottom:129.577333pt;}
.ybc{bottom:130.174667pt;}
.y1de{bottom:130.249333pt;}
.y20a{bottom:130.264000pt;}
.y1b4{bottom:131.021333pt;}
.y204{bottom:131.190667pt;}
.y27f{bottom:131.213333pt;}
.y118{bottom:131.960000pt;}
.y67{bottom:133.065333pt;}
.y8f{bottom:134.154667pt;}
.y264{bottom:134.414667pt;}
.ycb{bottom:134.742667pt;}
.y27d{bottom:135.085333pt;}
.y13b{bottom:135.224000pt;}
.y44{bottom:135.493920pt;}
.y14b{bottom:137.838667pt;}
.y255{bottom:137.868000pt;}
.y236{bottom:138.212000pt;}
.y23c{bottom:142.378667pt;}
.y203{bottom:142.637333pt;}
.y25c{bottom:142.690667pt;}
.y219{bottom:142.706667pt;}
.y1d0{bottom:143.217333pt;}
.y117{bottom:143.406667pt;}
.y1ea{bottom:145.130667pt;}
.y275{bottom:145.422667pt;}
.y24a{bottom:145.517333pt;}
.y8e{bottom:145.601333pt;}
.y263{bottom:145.861333pt;}
.ybb{bottom:146.114667pt;}
.yca{bottom:146.189333pt;}
.y1dd{bottom:146.190667pt;}
.y1b3{bottom:146.961333pt;}
.y25e{bottom:147.900000pt;}
.y172{bottom:148.057333pt;}
.y194{bottom:150.312000pt;}
.y209{bottom:151.025333pt;}
.y23f{bottom:151.584000pt;}
.y14a{bottom:153.778667pt;}
.y254{bottom:153.809333pt;}
.y23b{bottom:153.825333pt;}
.y25b{bottom:154.137333pt;}
.y235{bottom:154.152000pt;}
.y217{bottom:154.153333pt;}
.yf3{bottom:155.857333pt;}
.y66{bottom:156.968000pt;}
.y202{bottom:158.577333pt;}
.y27c{bottom:158.989333pt;}
.y13a{bottom:159.128000pt;}
.y1cf{bottom:159.157333pt;}
.y1e9{bottom:161.070667pt;}
.y249{bottom:161.458667pt;}
.y8d{bottom:161.541333pt;}
.y193{bottom:161.758667pt;}
.yba{bottom:162.056000pt;}
.yc9{bottom:162.129333pt;}
.y1dc{bottom:162.130667pt;}
.y1b2{bottom:162.902667pt;}
.y116{bottom:164.169333pt;}
.y262{bottom:166.622667pt;}
.y43{bottom:167.180000pt;}
.y274{bottom:169.325333pt;}
.y11e{bottom:169.414187pt;}
.y149{bottom:169.720000pt;}
.y253{bottom:169.749333pt;}
.y23a{bottom:169.765333pt;}
.y25a{bottom:170.077333pt;}
.y234{bottom:170.092000pt;}
.y216{bottom:170.093333pt;}
.yf2{bottom:171.797333pt;}
.y171{bottom:171.961333pt;}
.y201{bottom:174.517333pt;}
.y1a{bottom:175.052000pt;}
.y1ce{bottom:175.097333pt;}
.y208{bottom:175.486667pt;}
.y1e8{bottom:177.010667pt;}
.y8c{bottom:177.481333pt;}
.y192{bottom:177.698667pt;}
.yb9{bottom:177.996000pt;}
.yc8{bottom:178.069333pt;}
.y248{bottom:182.220000pt;}
.y42{bottom:182.704320pt;}
.y1db{bottom:182.892000pt;}
.y139{bottom:183.030667pt;}
.y1b1{bottom:183.664000pt;}
.y148{bottom:185.660000pt;}
.y252{bottom:185.689333pt;}
.y259{bottom:186.017333pt;}
.y233{bottom:186.032000pt;}
.y215{bottom:186.033333pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.yf1{bottom:187.737333pt;}
.y115{bottom:188.630667pt;}
.y200{bottom:190.457333pt;}
.y239{bottom:190.526667pt;}
.y1cd{bottom:191.037333pt;}
.y1e7{bottom:192.952000pt;}
.y273{bottom:193.228000pt;}
.y8b{bottom:193.422667pt;}
.y191{bottom:193.638667pt;}
.y247{bottom:193.666667pt;}
.yb8{bottom:193.936000pt;}
.y1b0{bottom:195.110667pt;}
.y170{bottom:195.864000pt;}
.y65{bottom:196.812000pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.yc7{bottom:198.832000pt;}
.y41{bottom:198.866080pt;}
.y230{bottom:199.372000pt;}
.y207{bottom:199.389333pt;}
.y147{bottom:201.600000pt;}
.y251{bottom:201.629333pt;}
.y258{bottom:201.957333pt;}
.y232{bottom:201.972000pt;}
.y3b{bottom:203.368000pt;}
.y11d{bottom:205.001813pt;}
.y27b{bottom:206.794667pt;}
.y214{bottom:206.796000pt;}
.y138{bottom:206.933333pt;}
.y1cc{bottom:206.977333pt;}
.y1da{bottom:207.354667pt;}
.yf0{bottom:208.500000pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y1e6{bottom:208.892000pt;}
.y8a{bottom:209.362667pt;}
.y190{bottom:209.578667pt;}
.y246{bottom:209.606667pt;}
.yb7{bottom:209.876000pt;}
.y1af{bottom:211.050667pt;}
.y1ff{bottom:211.220000pt;}
.y114{bottom:212.533333pt;}
.y40{bottom:214.231040pt;}
.y22f{bottom:215.313333pt;}
.y272{bottom:217.132000pt;}
.y146{bottom:217.540000pt;}
.y257{bottom:217.897333pt;}
.y64{bottom:219.230667pt;}
.yef{bottom:219.681333pt;}
.y16f{bottom:219.766667pt;}
.y250{bottom:222.392000pt;}
.y231{bottom:222.734667pt;}
.y1cb{bottom:222.917333pt;}
.yc6{bottom:223.293333pt;}
.y11c{bottom:223.523533pt;}
.y1e5{bottom:224.832000pt;}
.y89{bottom:225.302667pt;}
.y18f{bottom:225.518667pt;}
.yb6{bottom:225.816000pt;}
.y1ae{bottom:226.990667pt;}
.y245{bottom:230.369333pt;}
.y27a{bottom:230.697333pt;}
.y137{bottom:230.836000pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y22e{bottom:231.253333pt;}
.y1d9{bottom:231.257333pt;}
.y3a{bottom:231.364000pt;}
.y145{bottom:233.480000pt;}
.y24f{bottom:233.838667pt;}
.y1fe{bottom:234.570667pt;}
.y113{bottom:236.436000pt;}
.y1ca{bottom:238.858667pt;}
.yee{bottom:240.442667pt;}
.y271{bottom:241.034667pt;}
.y88{bottom:241.242667pt;}
.y18e{bottom:241.458667pt;}
.y63{bottom:241.650667pt;}
.yb5{bottom:241.756000pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y16e{bottom:243.669333pt;}
.y39{bottom:245.440000pt;}
.y1e4{bottom:245.593333pt;}
.y3f{bottom:246.235840pt;}
.y244{bottom:246.637333pt;}
.yc5{bottom:247.196000pt;}
.y1ad{bottom:247.753333pt;}
.y144{bottom:249.420000pt;}
.y24e{bottom:249.778667pt;}
.y22d{bottom:252.014667pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y279{bottom:254.601333pt;}
.y136{bottom:254.740000pt;}
.y1c9{bottom:254.798667pt;}
.y1d8{bottom:255.160000pt;}
.y87{bottom:257.182667pt;}
.y18d{bottom:257.400000pt;}
.yb4{bottom:257.697333pt;}
.y1fd{bottom:258.474667pt;}
.y112{bottom:260.338667pt;}
.y1e3{bottom:261.862667pt;}
.y62{bottom:264.069333pt;}
.yed{bottom:264.904000pt;}
.y270{bottom:264.937333pt;}
.y143{bottom:265.361333pt;}
.y16d{bottom:267.573333pt;}
.y24d{bottom:270.540000pt;}
.y1c8{bottom:270.738667pt;}
.yc4{bottom:271.098667pt;}
.y1ac{bottom:272.214667pt;}
.y1e2{bottom:273.309333pt;}
.y18c{bottom:273.340000pt;}
.yb3{bottom:273.637333pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y22c{bottom:276.477333pt;}
.y86{bottom:277.945333pt;}
.y3e{bottom:278.400000pt;}
.y278{bottom:278.504000pt;}
.y135{bottom:278.642667pt;}
.y1d7{bottom:279.062667pt;}
.y142{bottom:281.301333pt;}
.y1fc{bottom:282.377333pt;}
.y111{bottom:284.242667pt;}
.y61{bottom:286.489333pt;}
.y1c7{bottom:286.678667pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.yec{bottom:288.808000pt;}
.y26f{bottom:288.840000pt;}
.yb2{bottom:289.577333pt;}
.y16c{bottom:291.476000pt;}
.y1e1{bottom:294.070667pt;}
.y18b{bottom:294.101333pt;}
.yc3{bottom:295.001333pt;}
.y1ab{bottom:296.117333pt;}
.y141{bottom:297.241333pt;}
.y22b{bottom:300.380000pt;}
.y85{bottom:302.406667pt;}
.y134{bottom:302.545333pt;}
.y1c6{bottom:302.618667pt;}
.y213{bottom:302.965333pt;}
.y1d6{bottom:302.966667pt;}
.yb1{bottom:305.517333pt;}
.y18a{bottom:305.548000pt;}
.y110{bottom:308.145333pt;}
.y60{bottom:308.908000pt;}
.y11{bottom:309.452000pt;}
.yeb{bottom:312.710667pt;}
.y26e{bottom:312.742667pt;}
.y140{bottom:313.181333pt;}
.y16b{bottom:315.378667pt;}
.y1c5{bottom:318.560000pt;}
.yc2{bottom:318.905333pt;}
.y289{bottom:319.839867pt;}
.y1aa{bottom:320.021333pt;}
.yb0{bottom:321.457333pt;}
.y288{bottom:322.187547pt;}
.y1fb{bottom:322.656000pt;}
.y22a{bottom:324.282667pt;}
.y84{bottom:326.309333pt;}
.y189{bottom:326.310667pt;}
.y133{bottom:326.448000pt;}
.y1d5{bottom:326.869333pt;}
.y5f{bottom:331.328000pt;}
.y10f{bottom:332.048000pt;}
.y13f{bottom:333.944000pt;}
.yea{bottom:336.613333pt;}
.y26d{bottom:336.646667pt;}
.yaf{bottom:337.397333pt;}
.y16a{bottom:339.281333pt;}
.y1c4{bottom:339.321333pt;}
.yc1{bottom:342.808000pt;}
.y10{bottom:343.809333pt;}
.y1a9{bottom:343.924000pt;}
.y13e{bottom:345.390667pt;}
.y4f{bottom:348.183200pt;}
.y229{bottom:348.185333pt;}
.y83{bottom:350.213333pt;}
.y132{bottom:350.350667pt;}
.y1c3{bottom:350.768000pt;}
.y188{bottom:350.772000pt;}
.yae{bottom:353.338667pt;}
.y287{bottom:353.700987pt;}
.y5e{bottom:353.746667pt;}
.y10e{bottom:355.950667pt;}
.ye9{bottom:360.516000pt;}
.y26c{bottom:360.549333pt;}
.y218{bottom:361.532000pt;}
.yf{bottom:362.706666pt;}
.y169{bottom:363.185333pt;}
.y1f8{bottom:363.965333pt;}
.y4e{bottom:366.097920pt;}
.y13d{bottom:366.152000pt;}
.yc0{bottom:366.710667pt;}
.y1a8{bottom:367.826667pt;}
.yad{bottom:369.278667pt;}
.y286{bottom:369.384667pt;}
.y1c2{bottom:371.529333pt;}
.y228{bottom:372.088000pt;}
.y82{bottom:374.116000pt;}
.y131{bottom:374.254667pt;}
.y187{bottom:374.674667pt;}
.y5d{bottom:376.166667pt;}
.y10d{bottom:379.854667pt;}
.y4d{bottom:383.693920pt;}
.ye8{bottom:384.420000pt;}
.y26b{bottom:384.452000pt;}
.yac{bottom:385.218667pt;}
.y285{bottom:385.865147pt;}
.y168{bottom:387.088000pt;}
.ybf{bottom:390.613333pt;}
.y1a7{bottom:391.729333pt;}
.y1c1{bottom:395.992000pt;}
.y81{bottom:398.018667pt;}
.y130{bottom:398.157333pt;}
.y186{bottom:398.577333pt;}
.y5c{bottom:398.585333pt;}
.y284{bottom:400.911387pt;}
.yab{bottom:401.158667pt;}
.y4c{bottom:401.449280pt;}
.y10c{bottom:403.757333pt;}
.ye7{bottom:408.322667pt;}
.y26a{bottom:408.354667pt;}
.y167{bottom:410.990667pt;}
.ybe{bottom:414.517333pt;}
.y1a6{bottom:415.632000pt;}
.yaa{bottom:417.098667pt;}
.y4b{bottom:419.209280pt;}
.y1c0{bottom:419.894667pt;}
.y5b{bottom:421.005333pt;}
.y80{bottom:421.921333pt;}
.y12f{bottom:422.060000pt;}
.y185{bottom:422.481333pt;}
.y10b{bottom:427.660000pt;}
.ye{bottom:430.990669pt;}
.ye6{bottom:432.225333pt;}
.y269{bottom:432.258667pt;}
.y283{bottom:433.075547pt;}
.y166{bottom:434.893333pt;}
.y4a{bottom:436.964640pt;}
.ya9{bottom:437.861333pt;}
.ybd{bottom:438.420000pt;}
.y1a5{bottom:439.536000pt;}
.y5a{bottom:443.424000pt;}
.y1bf{bottom:443.797333pt;}
.y7f{bottom:445.824000pt;}
.y12e{bottom:445.962667pt;}
.y184{bottom:446.384000pt;}
.yd{bottom:446.990669pt;}
.y10a{bottom:451.562667pt;}
.y49{bottom:454.733280pt;}
.ye5{bottom:456.128000pt;}
.y268{bottom:456.161333pt;}
.y165{bottom:458.797333pt;}
.y38{bottom:458.893333pt;}
.ya8{bottom:462.322667pt;}
.yc{bottom:462.990669pt;}
.y1a4{bottom:463.438667pt;}
.y282{bottom:465.080400pt;}
.y59{bottom:465.844000pt;}
.y1be{bottom:467.700000pt;}
.y1f9{bottom:469.514667pt;}
.y7e{bottom:469.728000pt;}
.y12d{bottom:469.866667pt;}
.y183{bottom:470.286667pt;}
.y48{bottom:472.488640pt;}
.y109{bottom:475.466667pt;}
.yb{bottom:478.990666pt;}
.ye4{bottom:480.030667pt;}
.y267{bottom:480.064000pt;}
.y1d4{bottom:481.046667pt;}
.y164{bottom:482.700000pt;}
.ya7{bottom:486.225333pt;}
.y1a3{bottom:487.341333pt;}
.y58{bottom:488.262667pt;}
.y47{bottom:490.084640pt;}
.y1bd{bottom:491.604000pt;}
.y7d{bottom:493.630667pt;}
.y12c{bottom:493.769333pt;}
.y182{bottom:494.189333pt;}
.ya{bottom:494.990666pt;}
.y108{bottom:499.369333pt;}
.ye3{bottom:503.934667pt;}
.y163{bottom:506.602667pt;}
.y46{bottom:507.840000pt;}
.ya6{bottom:510.129333pt;}
.y57{bottom:510.682667pt;}
.y1a2{bottom:511.244000pt;}
.y1bc{bottom:515.506667pt;}
.y37{bottom:516.493333pt;}
.y7c{bottom:517.533333pt;}
.y12b{bottom:517.672000pt;}
.y181{bottom:518.093333pt;}
.y266{bottom:520.465333pt;}
.y107{bottom:523.272000pt;}
.y45{bottom:525.600000pt;}
.ye2{bottom:527.837333pt;}
.y242{bottom:528.852000pt;}
.y162{bottom:530.505333pt;}
.y56{bottom:533.101333pt;}
.ya5{bottom:534.032000pt;}
.y1a1{bottom:535.148000pt;}
.y1bb{bottom:539.409333pt;}
.y7b{bottom:541.436000pt;}
.y12a{bottom:541.574667pt;}
.y180{bottom:541.996000pt;}
.y106{bottom:547.174667pt;}
.ye1{bottom:551.740000pt;}
.y161{bottom:554.408000pt;}
.y55{bottom:555.521333pt;}
.ya4{bottom:557.934667pt;}
.y1a0{bottom:559.050667pt;}
.y1ba{bottom:563.312000pt;}
.y7a{bottom:565.340000pt;}
.y129{bottom:565.478667pt;}
.y17f{bottom:565.898667pt;}
.y105{bottom:571.077333pt;}
.y9{bottom:573.786667pt;}
.y54{bottom:577.940000pt;}
.y160{bottom:578.312000pt;}
.y1fa{bottom:578.356000pt;}
.ya3{bottom:581.837333pt;}
.y19f{bottom:582.953333pt;}
.y1b9{bottom:587.216000pt;}
.y79{bottom:589.242667pt;}
.y128{bottom:589.381333pt;}
.y17e{bottom:589.801333pt;}
.ye0{bottom:592.141333pt;}
.y8{bottom:592.685334pt;}
.y104{bottom:594.981333pt;}
.y36{bottom:595.872000pt;}
.y15f{bottom:602.214667pt;}
.ya2{bottom:605.740000pt;}
.y19e{bottom:606.856000pt;}
.y53{bottom:610.356000pt;}
.y1b8{bottom:611.118667pt;}
.y78{bottom:613.145333pt;}
.y17d{bottom:613.705333pt;}
.y1f7{bottom:614.304000pt;}
.y103{bottom:618.884000pt;}
.y15e{bottom:626.117333pt;}
.y35{bottom:627.936000pt;}
.ya1{bottom:629.644000pt;}
.y19d{bottom:630.760000pt;}
.y227{bottom:635.021333pt;}
.y127{bottom:635.338667pt;}
.y77{bottom:637.048000pt;}
.y17c{bottom:637.608000pt;}
.y1f6{bottom:638.206667pt;}
.y102{bottom:642.786667pt;}
.ydf{bottom:644.572000pt;}
.y7{bottom:645.598667pt;}
.y15d{bottom:650.020000pt;}
.y1b7{bottom:651.520000pt;}
.ya0{bottom:653.546667pt;}
.y126{bottom:654.600000pt;}
.y19c{bottom:654.662667pt;}
.y226{bottom:658.924000pt;}
.y34{bottom:660.000000pt;}
.y76{bottom:660.952000pt;}
.y17b{bottom:661.510667pt;}
.y1f5{bottom:662.110667pt;}
.yde{bottom:663.832000pt;}
.y101{bottom:666.689333pt;}
.y3{bottom:668.977329pt;}
.y15c{bottom:673.924000pt;}
.y9f{bottom:677.449333pt;}
.y19b{bottom:678.565333pt;}
.y225{bottom:682.828000pt;}
.ydd{bottom:683.093333pt;}
.y75{bottom:684.854667pt;}
.y17a{bottom:685.413333pt;}
.y1f4{bottom:686.013333pt;}
.y11b{bottom:687.145333pt;}
.y1b6{bottom:687.786667pt;}
.y52{bottom:687.838667pt;}
.y100{bottom:690.593333pt;}
.y24{bottom:696.320000pt;}
.y15b{bottom:697.826667pt;}
.y33{bottom:699.520000pt;}
.y9e{bottom:701.352000pt;}
.ydc{bottom:702.354667pt;}
.y19a{bottom:702.468000pt;}
.y224{bottom:706.730667pt;}
.y74{bottom:708.757333pt;}
.y179{bottom:709.316000pt;}
.y1f3{bottom:709.916000pt;}
.yff{bottom:714.496000pt;}
.y32{bottom:718.918293pt;}
.ydb{bottom:721.616000pt;}
.y15a{bottom:721.729333pt;}
.y9d{bottom:725.256000pt;}
.y199{bottom:726.372000pt;}
.y223{bottom:730.633333pt;}
.y73{bottom:732.660000pt;}
.y178{bottom:733.220000pt;}
.y1f2{bottom:733.818667pt;}
.y31{bottom:734.283253pt;}
.yfe{bottom:738.398667pt;}
.yda{bottom:740.877333pt;}
.y159{bottom:745.632000pt;}
.y9c{bottom:749.158667pt;}
.y30{bottom:749.648213pt;}
.y222{bottom:754.536000pt;}
.y51{bottom:755.306667pt;}
.y72{bottom:756.564000pt;}
.y177{bottom:757.122667pt;}
.y1f1{bottom:757.722667pt;}
.yd9{bottom:760.138667pt;}
.yfd{bottom:762.301333pt;}
.y2f{bottom:764.853813pt;}
.y9b{bottom:773.061333pt;}
.y221{bottom:778.438667pt;}
.y198{bottom:778.801333pt;}
.y50{bottom:779.209333pt;}
.yd8{bottom:779.398667pt;}
.y2e{bottom:780.218773pt;}
.y71{bottom:780.466667pt;}
.y176{bottom:781.025333pt;}
.y1f0{bottom:781.625333pt;}
.y2{bottom:781.661334pt;}
.yfc{bottom:786.205333pt;}
.y2d{bottom:795.583733pt;}
.y9a{bottom:796.964000pt;}
.y158{bottom:798.062667pt;}
.yd7{bottom:798.660000pt;}
.y220{bottom:802.342667pt;}
.y70{bottom:804.369333pt;}
.y212{bottom:804.928000pt;}
.y1ef{bottom:805.528000pt;}
.yfb{bottom:810.108000pt;}
.y2c{bottom:810.948693pt;}
.y175{bottom:815.688000pt;}
.y157{bottom:817.324000pt;}
.yd6{bottom:817.921333pt;}
.y99{bottom:820.868000pt;}
.y21f{bottom:826.245333pt;}
.y2b{bottom:826.313653pt;}
.y6f{bottom:828.272000pt;}
.y211{bottom:828.832000pt;}
.yfa{bottom:834.010667pt;}
.y156{bottom:836.585333pt;}
.yd5{bottom:837.182667pt;}
.y1ee{bottom:840.190667pt;}
.y2a{bottom:841.519253pt;}
.y98{bottom:844.770667pt;}
.y21e{bottom:850.148000pt;}
.y6e{bottom:852.174667pt;}
.y210{bottom:852.734667pt;}
.y155{bottom:855.845333pt;}
.yd4{bottom:856.444000pt;}
.y29{bottom:856.884213pt;}
.yf9{bottom:857.913333pt;}
.y1{bottom:859.312000pt;}
.y97{bottom:868.673333pt;}
.y28{bottom:872.249173pt;}
.y154{bottom:875.106667pt;}
.yd3{bottom:875.704000pt;}
.y6d{bottom:876.078667pt;}
.y20f{bottom:876.637333pt;}
.yf8{bottom:881.817333pt;}
.y27{bottom:887.614133pt;}
.y21d{bottom:890.549333pt;}
.y96{bottom:892.576000pt;}
.y153{bottom:894.368000pt;}
.yd2{bottom:894.965333pt;}
.y6c{bottom:899.981333pt;}
.y20e{bottom:900.540000pt;}
.y14f{bottom:903.998667pt;}
.yf7{bottom:905.720000pt;}
.y152{bottom:913.629333pt;}
.yd1{bottom:914.226667pt;}
.y95{bottom:916.480000pt;}
.y6b{bottom:923.884000pt;}
.y21c{bottom:926.816000pt;}
.yf6{bottom:929.622667pt;}
.y151{bottom:932.890667pt;}
.yd0{bottom:933.488000pt;}
.y20d{bottom:935.202667pt;}
.y94{bottom:940.382667pt;}
.y6a{bottom:947.786667pt;}
.y150{bottom:952.150667pt;}
.yf5{bottom:953.525333pt;}
.y197{bottom:960.480000pt;}
.ycf{bottom:961.077333pt;}
.y93{bottom:964.285333pt;}
.y69{bottom:971.690667pt;}
.yf4{bottom:977.428000pt;}
.y14e{bottom:979.741333pt;}
.yce{bottom:984.680000pt;}
.y92{bottom:988.188000pt;}
.ycd{bottom:1003.941333pt;}
.y68{bottom:1012.090667pt;}
.y3c{bottom:1093.825333pt;}
.h26{height:26.943605pt;}
.h27{height:27.417740pt;}
.h7{height:28.560000pt;}
.h1f{height:32.791990pt;}
.hc{height:35.404688pt;}
.h10{height:36.234375pt;}
.h14{height:39.891875pt;}
.h13{height:39.943750pt;}
.h15{height:39.998115pt;}
.h1a{height:40.261852pt;}
.h2c{height:40.741688pt;}
.h6{height:40.800000pt;}
.h11{height:41.250000pt;}
.h23{height:42.269016pt;}
.h3{height:42.840000pt;}
.h29{height:43.740092pt;}
.h28{height:44.122658pt;}
.h12{height:44.275000pt;}
.h20{height:44.313645pt;}
.h16{height:44.719700pt;}
.hd{height:46.068750pt;}
.hf{height:48.312500pt;}
.h1b{height:48.523677pt;}
.h2{height:48.960000pt;}
.hb{height:49.985000pt;}
.h24{height:52.255734pt;}
.h18{height:52.947042pt;}
.h1c{height:53.176730pt;}
.h21{height:63.023881pt;}
.h1e{height:63.029214pt;}
.h1d{height:63.536303pt;}
.h19{height:63.811898pt;}
.h5{height:69.360000pt;}
.h25{height:74.592382pt;}
.he{height:80.368750pt;}
.h4{height:105.826671pt;}
.ha{height:220.412500pt;}
.h22{height:340.888800pt;}
.h9{height:367.840000pt;}
.h0{height:1122.518667pt;}
.h17{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.h8{height:1122.720000pt;}
.h2b{height:1123.333333pt;}
.h2a{height:1123.360000pt;}
.w4{width:131.040000pt;}
.w6{width:316.452267pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w5{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:794.080000pt;}
.w8{width:794.666667pt;}
.w7{width:794.720000pt;}
.x0{left:0.000000pt;}
.x5{left:7.840000pt;}
.x8{left:19.995867pt;}
.xa{left:28.092000pt;}
.xd{left:31.200000pt;}
.xc{left:48.800000pt;}
.xb{left:56.320000pt;}
.x6{left:81.440000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x18{left:105.760000pt;}
.x21{left:107.904000pt;}
.x2f{left:109.849333pt;}
.x15{left:112.820000pt;}
.xe{left:116.270667pt;}
.x14{left:117.900000pt;}
.x7{left:125.920000pt;}
.x17{left:127.744000pt;}
.x2c{left:128.918667pt;}
.x13{left:133.508000pt;}
.x2a{left:136.445333pt;}
.x22{left:139.897333pt;}
.x30{left:142.488000pt;}
.x12{left:155.326667pt;}
.x1c{left:160.776560pt;}
.x9{left:178.880000pt;}
.x4{left:180.874667pt;}
.x1b{left:197.108333pt;}
.xf{left:204.986667pt;}
.x20{left:225.873709pt;}
.x23{left:233.648000pt;}
.x1a{left:238.625333pt;}
.x1f{left:249.936542pt;}
.x1e{left:288.111709pt;}
.x1d{left:291.408224pt;}
.x2d{left:320.832000pt;}
.x19{left:325.102667pt;}
.x26{left:327.072000pt;}
.x27{left:335.537333pt;}
.x24{left:337.034667pt;}
.x25{left:339.242667pt;}
.x10{left:341.589333pt;}
.x2e{left:356.490667pt;}
.x11{left:369.789333pt;}
.x29{left:385.341333pt;}
.x2b{left:388.880000pt;}
.x16{left:392.865333pt;}
.x3{left:404.408000pt;}
.x28{left:431.544000pt;}
.x31{left:680.640000pt;}
.x32{left:716.800000pt;}
.x33{left:752.960000pt;}
}




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