
    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_db97c61c5039ef5af17bd6fd.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_86555b0d3b0cd41f16dd3329.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_b898a4294992a65284938d9a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986000;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_fb628e08d6bedf125bb05eb1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;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_f5a48cc612ca9939bdb5299a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.010000;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_63c850f7eaf3d24612e2f92b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.933000;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_c4b2953c70093b002c9c0c28.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.006348;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_6b97fefb08da8e5c22d49e09.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006348;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_9358e42dba6e875ede27298e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.206055;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_1f798f204030500acb8d8050.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.006348;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_58dc4659376e1cdf94de3c3b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006348;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_7319153487ff553c43fcdedb.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.206055;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_1737eb6ea4a8106f629ece8a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.522000;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_0b08b3c221ed90319a54bf84.woff2')format("woff");}.fff{font-family:fff;line-height:0.740000;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_de8e23efa7b77d0cec7250ac.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.006348;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_7cb41679824e2b8d538b4365.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.675781;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_d2d9c2fed6cf0427bdc07542.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.006348;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_fc7e704944f6ada249cc491d.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.206055;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_ae12c75740c080f16a38a2d4.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.988770;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_b74b9c6ac0f1d6dd054e40ba.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_1931b6665adbbb7a6ba0f2aa.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.695000;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;}
.m7{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.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);}
.m2b{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,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);}
.v1{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.696000px;}
.v3{vertical-align:23.910000px;}
.lsbe{letter-spacing:-0.311662px;}
.lsa4{letter-spacing:-0.303005px;}
.lsc1{letter-spacing:-0.294348px;}
.lsd2{letter-spacing:-0.277033px;}
.lsb9{letter-spacing:-0.251061px;}
.lsd1{letter-spacing:-0.246732px;}
.lsd0{letter-spacing:-0.242404px;}
.lsce{letter-spacing:-0.233747px;}
.ls5b{letter-spacing:-0.228456px;}
.lscd{letter-spacing:-0.220761px;}
.lsc5{letter-spacing:-0.203446px;}
.lsb8{letter-spacing:-0.194789px;}
.ls28{letter-spacing:-0.191783px;}
.lsc7{letter-spacing:-0.186132px;}
.ls24{letter-spacing:-0.185170px;}
.lsc4{letter-spacing:-0.181803px;}
.lsc3{letter-spacing:-0.173146px;}
.lsa9{letter-spacing:-0.164488px;}
.lsb0{letter-spacing:-0.160160px;}
.lsb6{letter-spacing:-0.151502px;}
.lscf{letter-spacing:-0.147174px;}
.ls27{letter-spacing:-0.145490px;}
.lsad{letter-spacing:-0.138516px;}
.lsbb{letter-spacing:-0.134188px;}
.ls2c{letter-spacing:-0.132264px;}
.lsc9{letter-spacing:-0.129859px;}
.ls57{letter-spacing:-0.126252px;}
.lsbf{letter-spacing:-0.125531px;}
.lsba{letter-spacing:-0.121202px;}
.ls5d{letter-spacing:-0.120240px;}
.lsc8{letter-spacing:-0.116873px;}
.ls4f{letter-spacing:-0.114228px;}
.lsc2{letter-spacing:-0.112545px;}
.ls5c{letter-spacing:-0.108216px;}
.ls2b{letter-spacing:-0.105811px;}
.ls59{letter-spacing:-0.102204px;}
.ls55{letter-spacing:-0.096192px;}
.lsca{letter-spacing:-0.095230px;}
.lsb7{letter-spacing:-0.090901px;}
.ls56{letter-spacing:-0.090180px;}
.lsc0{letter-spacing:-0.086573px;}
.lsb2{letter-spacing:-0.082244px;}
.ls21{letter-spacing:-0.079358px;}
.lsd3{letter-spacing:-0.077916px;}
.lsa5{letter-spacing:-0.073587px;}
.ls1f{letter-spacing:-0.072745px;}
.lsb1{letter-spacing:-0.069258px;}
.ls2d{letter-spacing:-0.066132px;}
.lsa6{letter-spacing:-0.064930px;}
.lsb5{letter-spacing:-0.060601px;}
.lsc6{letter-spacing:-0.056272px;}
.lsa0{letter-spacing:-0.055158px;}
.ls29{letter-spacing:-0.052906px;}
.lsbd{letter-spacing:-0.051944px;}
.ls5f{letter-spacing:-0.048096px;}
.lscb{letter-spacing:-0.047615px;}
.ls26{letter-spacing:-0.046292px;}
.lsaa{letter-spacing:-0.043286px;}
.ls2a{letter-spacing:-0.039679px;}
.lsaf{letter-spacing:-0.038958px;}
.ls54{letter-spacing:-0.037800px;}
.ls58{letter-spacing:-0.036072px;}
.lsac{letter-spacing:-0.034629px;}
.ls25{letter-spacing:-0.033066px;}
.ls1d{letter-spacing:-0.031601px;}
.lsb4{letter-spacing:-0.030300px;}
.ls51{letter-spacing:-0.030060px;}
.ls4c{letter-spacing:-0.028728px;}
.ls23{letter-spacing:-0.026453px;}
.lsb3{letter-spacing:-0.025972px;}
.ls52{letter-spacing:-0.024048px;}
.lsa7{letter-spacing:-0.021643px;}
.ls9e{letter-spacing:-0.020684px;}
.ls2e{letter-spacing:-0.019840px;}
.ls5e{letter-spacing:-0.018036px;}
.lsbc{letter-spacing:-0.017315px;}
.ls22{letter-spacing:-0.013226px;}
.lsae{letter-spacing:-0.012986px;}
.ls50{letter-spacing:-0.012024px;}
.ls53{letter-spacing:-0.010800px;}
.lsa8{letter-spacing:-0.008657px;}
.ls20{letter-spacing:-0.006613px;}
.ls4e{letter-spacing:-0.006012px;}
.ls1e{letter-spacing:-0.005267px;}
.ls4d{letter-spacing:-0.004788px;}
.lsa3{letter-spacing:-0.004329px;}
.ls0{letter-spacing:0.000000px;}
.lsd7{letter-spacing:0.000292px;}
.ls66{letter-spacing:0.000435px;}
.lsdc{letter-spacing:0.000496px;}
.lsde{letter-spacing:0.000676px;}
.lsdf{letter-spacing:0.000800px;}
.lsda{letter-spacing:0.001584px;}
.lsd{letter-spacing:0.002782px;}
.lsd9{letter-spacing:0.002841px;}
.ls76{letter-spacing:0.004329px;}
.lsdd{letter-spacing:0.004414px;}
.lsc{letter-spacing:0.005356px;}
.ls3c{letter-spacing:0.006012px;}
.ls16{letter-spacing:0.006613px;}
.ls5{letter-spacing:0.007619px;}
.ls71{letter-spacing:0.008657px;}
.ls42{letter-spacing:0.012024px;}
.ls97{letter-spacing:0.012986px;}
.ls7d{letter-spacing:0.017315px;}
.ls4b{letter-spacing:0.018036px;}
.ls18{letter-spacing:0.019840px;}
.ls7a{letter-spacing:0.021643px;}
.ls13{letter-spacing:0.023760px;}
.ls49{letter-spacing:0.024048px;}
.ls6e{letter-spacing:0.025972px;}
.ls14{letter-spacing:0.026453px;}
.ls47{letter-spacing:0.030060px;}
.ls84{letter-spacing:0.030300px;}
.ls3f{letter-spacing:0.032400px;}
.ls1b{letter-spacing:0.033066px;}
.ls7b{letter-spacing:0.034629px;}
.ls48{letter-spacing:0.036072px;}
.ls3d{letter-spacing:0.037800px;}
.ls77{letter-spacing:0.038958px;}
.ls17{letter-spacing:0.039679px;}
.ls11{letter-spacing:0.041580px;}
.ls45{letter-spacing:0.042084px;}
.ls79{letter-spacing:0.043286px;}
.ls70{letter-spacing:0.047615px;}
.ls44{letter-spacing:0.048096px;}
.ls82{letter-spacing:0.051944px;}
.ls12{letter-spacing:0.053460px;}
.ls41{letter-spacing:0.054000px;}
.ls81{letter-spacing:0.056272px;}
.ls3e{letter-spacing:0.059400px;}
.ls1a{letter-spacing:0.059519px;}
.ls78{letter-spacing:0.060601px;}
.ls40{letter-spacing:0.064800px;}
.ls7c{letter-spacing:0.064930px;}
.ls15{letter-spacing:0.066132px;}
.ls6f{letter-spacing:0.069258px;}
.ls46{letter-spacing:0.072144px;}
.ls6a{letter-spacing:0.072395px;}
.ls19{letter-spacing:0.072745px;}
.ls90{letter-spacing:0.073587px;}
.ls8d{letter-spacing:0.077916px;}
.ls5a{letter-spacing:0.078156px;}
.ls2f{letter-spacing:0.079358px;}
.ls73{letter-spacing:0.086573px;}
.ls3b{letter-spacing:0.090180px;}
.ls85{letter-spacing:0.090901px;}
.ls9b{letter-spacing:0.099559px;}
.ls3a{letter-spacing:0.102204px;}
.ls69{letter-spacing:0.103421px;}
.ls30{letter-spacing:0.105811px;}
.ls99{letter-spacing:0.108216px;}
.lsa2{letter-spacing:0.110316px;}
.ls4a{letter-spacing:0.120240px;}
.lscc{letter-spacing:0.121202px;}
.ls83{letter-spacing:0.125531px;}
.ls93{letter-spacing:0.129859px;}
.ls68{letter-spacing:0.137894px;}
.ls43{letter-spacing:0.138276px;}
.ls75{letter-spacing:0.138516px;}
.lsab{letter-spacing:0.142845px;}
.ls39{letter-spacing:0.177156px;}
.ls38{letter-spacing:0.191520px;}
.ls10{letter-spacing:0.194872px;}
.lsf{letter-spacing:0.210672px;}
.ls9f{letter-spacing:0.293026px;}
.lsa1{letter-spacing:0.310262px;}
.ls74{letter-spacing:0.328977px;}
.ls60{letter-spacing:0.572693px;}
.ls63{letter-spacing:0.578693px;}
.ls72{letter-spacing:0.588695px;}
.ls61{letter-spacing:0.594600px;}
.ls62{letter-spacing:0.600600px;}
.lse0{letter-spacing:0.671731px;}
.ls64{letter-spacing:0.743400px;}
.ls1{letter-spacing:0.806976px;}
.ls8f{letter-spacing:0.848413px;}
.ls3{letter-spacing:0.896634px;}
.ls6{letter-spacing:0.899284px;}
.ls91{letter-spacing:1.108132px;}
.ls88{letter-spacing:1.363522px;}
.ls8a{letter-spacing:1.367850px;}
.ls89{letter-spacing:1.623240px;}
.ls36{letter-spacing:2.092146px;}
.lsd8{letter-spacing:2.367130px;}
.ls87{letter-spacing:2.662114px;}
.ls86{letter-spacing:2.921832px;}
.ls80{letter-spacing:3.441269px;}
.ls7e{letter-spacing:3.648822px;}
.ls7f{letter-spacing:3.700987px;}
.ls9a{letter-spacing:3.956377px;}
.ls98{letter-spacing:3.960706px;}
.ls92{letter-spacing:4.216095px;}
.ls8b{letter-spacing:4.475814px;}
.ls8c{letter-spacing:4.735532px;}
.ls9c{letter-spacing:4.737026px;}
.ls8e{letter-spacing:4.758835px;}
.ls94{letter-spacing:4.995251px;}
.ls95{letter-spacing:5.254969px;}
.ls96{letter-spacing:5.286072px;}
.ls9d{letter-spacing:5.514687px;}
.ls6c{letter-spacing:8.494295px;}
.ls6d{letter-spacing:8.497742px;}
.ls2{letter-spacing:11.954850px;}
.ls67{letter-spacing:11.955746px;}
.lsdb{letter-spacing:13.209795px;}
.lsd6{letter-spacing:13.586912px;}
.lsd5{letter-spacing:13.919731px;}
.lsd4{letter-spacing:14.585246px;}
.ls34{letter-spacing:14.645022px;}
.ls4{letter-spacing:14.764573px;}
.lsa{letter-spacing:14.943900px;}
.ls32{letter-spacing:15.003676px;}
.lsb{letter-spacing:15.063451px;}
.ls31{letter-spacing:15.183002px;}
.ls37{letter-spacing:15.242778px;}
.ls9{letter-spacing:16.737168px;}
.ls65{letter-spacing:17.959200px;}
.ls33{letter-spacing:19.008641px;}
.ls35{letter-spacing:19.128192px;}
.ls8{letter-spacing:21.519216px;}
.ls7{letter-spacing:21.638767px;}
.lse{letter-spacing:22.415850px;}
.ls1c{letter-spacing:22.953830px;}
.ls6b{letter-spacing:1515.328456px;}
.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;}
}
.ws12c{word-spacing:-43.286400px;}
.ws123{word-spacing:-34.473600px;}
.ws4a{word-spacing:-15.840534px;}
.ws1a7{word-spacing:-15.816730px;}
.wsbc{word-spacing:-15.120180px;}
.ws2a{word-spacing:-14.943900px;}
.ws190{word-spacing:-13.449600px;}
.ws61{word-spacing:-13.377672px;}
.ws62{word-spacing:-13.167000px;}
.wsba{word-spacing:-12.161520px;}
.wsbb{word-spacing:-11.970000px;}
.wsb{word-spacing:-11.955150px;}
.wsa{word-spacing:-10.460700px;}
.ws103{word-spacing:-3.706087px;}
.ws19a{word-spacing:-3.227904px;}
.wsda{word-spacing:-3.120228px;}
.wsd9{word-spacing:-3.054096px;}
.ws7a{word-spacing:-2.665120px;}
.ws43{word-spacing:-2.630126px;}
.ws7b{word-spacing:-2.592374px;}
.ws18a{word-spacing:-2.367130px;}
.ws4e{word-spacing:-2.211697px;}
.ws11a{word-spacing:-2.151922px;}
.ws11{word-spacing:-2.098138px;}
.wsf1{word-spacing:-2.056104px;}
.ws17c{word-spacing:-2.032370px;}
.ws99{word-spacing:-1.950894px;}
.wsf2{word-spacing:-1.941876px;}
.ws180{word-spacing:-1.912819px;}
.wsa0{word-spacing:-1.911215px;}
.ws9a{word-spacing:-1.878149px;}
.ws11e{word-spacing:-1.853044px;}
.ws98{word-spacing:-1.798790px;}
.wsea{word-spacing:-1.743480px;}
.ws3c{word-spacing:-1.673717px;}
.ws19d{word-spacing:-1.667750px;}
.ws1aa{word-spacing:-1.560154px;}
.ws1bf{word-spacing:-1.506355px;}
.ws11b{word-spacing:-1.494390px;}
.ws8c{word-spacing:-1.441678px;}
.wsdb{word-spacing:-1.376748px;}
.wse9{word-spacing:-1.358712px;}
.wsec{word-spacing:-1.346688px;}
.ws8b{word-spacing:-1.335866px;}
.ws102{word-spacing:-1.315063px;}
.ws17a{word-spacing:-1.255288px;}
.wseb{word-spacing:-1.220436px;}
.ws1f{word-spacing:-1.195512px;}
.ws185{word-spacing:-1.183565px;}
.ws7c{word-spacing:-1.150697px;}
.ws10f{word-spacing:-1.135736px;}
.ws45{word-spacing:-1.016185px;}
.wsf4{word-spacing:-0.991980px;}
.ws1bd{word-spacing:-0.968371px;}
.ws52{word-spacing:-0.956410px;}
.wsf3{word-spacing:-0.949896px;}
.ws65{word-spacing:-0.896634px;}
.wsf0{word-spacing:-0.877752px;}
.ws10{word-spacing:-0.860774px;}
.ws48{word-spacing:-0.836858px;}
.ws37{word-spacing:-0.777083px;}
.wsef{word-spacing:-0.757512px;}
.wsd{word-spacing:-0.753178px;}
.ws33{word-spacing:-0.717307px;}
.ws18{word-spacing:-0.699379px;}
.wsd7{word-spacing:-0.667332px;}
.ws38{word-spacing:-0.657532px;}
.ws4d{word-spacing:-0.597756px;}
.ws17{word-spacing:-0.591782px;}
.ws8e{word-spacing:-0.588575px;}
.ws1bc{word-spacing:-0.537984px;}
.ws49{word-spacing:-0.537980px;}
.wsab{word-spacing:-0.478205px;}
.wse{word-spacing:-0.430387px;}
.ws67{word-spacing:-0.418429px;}
.wse8{word-spacing:-0.384768px;}
.ws9e{word-spacing:-0.370339px;}
.ws46{word-spacing:-0.358654px;}
.ws129{word-spacing:-0.344736px;}
.wse7{word-spacing:-0.330660px;}
.ws124{word-spacing:-0.327499px;}
.wse3{word-spacing:-0.312624px;}
.ws70{word-spacing:-0.305474px;}
.ws27{word-spacing:-0.298878px;}
.wsfb{word-spacing:-0.294588px;}
.wsc2{word-spacing:-0.277704px;}
.ws9b{word-spacing:-0.271141px;}
.ws1c0{word-spacing:-0.268992px;}
.ws80{word-spacing:-0.257915px;}
.ws91{word-spacing:-0.244688px;}
.ws39{word-spacing:-0.239102px;}
.ws90{word-spacing:-0.224849px;}
.wsbd{word-spacing:-0.215194px;}
.ws138{word-spacing:-0.186132px;}
.ws136{word-spacing:-0.181803px;}
.ws24{word-spacing:-0.179327px;}
.ws165{word-spacing:-0.173146px;}
.ws125{word-spacing:-0.172368px;}
.ws13c{word-spacing:-0.168817px;}
.ws16c{word-spacing:-0.164488px;}
.ws192{word-spacing:-0.161395px;}
.ws141{word-spacing:-0.151502px;}
.ws12a{word-spacing:-0.144789px;}
.ws170{word-spacing:-0.142845px;}
.ws156{word-spacing:-0.134188px;}
.ws137{word-spacing:-0.129859px;}
.ws15f{word-spacing:-0.121202px;}
.ws3a{word-spacing:-0.119551px;}
.ws163{word-spacing:-0.116873px;}
.ws153{word-spacing:-0.112545px;}
.ws146{word-spacing:-0.108216px;}
.ws198{word-spacing:-0.107597px;}
.ws127{word-spacing:-0.106868px;}
.ws13e{word-spacing:-0.103887px;}
.ws14e{word-spacing:-0.099559px;}
.ws150{word-spacing:-0.095230px;}
.ws131{word-spacing:-0.090901px;}
.ws71{word-spacing:-0.089536px;}
.ws140{word-spacing:-0.086573px;}
.ws13d{word-spacing:-0.082244px;}
.wsc3{word-spacing:-0.081396px;}
.ws145{word-spacing:-0.077916px;}
.ws155{word-spacing:-0.073587px;}
.ws12d{word-spacing:-0.069258px;}
.ws143{word-spacing:-0.064930px;}
.ws6f{word-spacing:-0.063202px;}
.ws14c{word-spacing:-0.060601px;}
.ws2b{word-spacing:-0.059776px;}
.wsc1{word-spacing:-0.057456px;}
.ws169{word-spacing:-0.056272px;}
.ws187{word-spacing:-0.053798px;}
.ws135{word-spacing:-0.051944px;}
.ws139{word-spacing:-0.047615px;}
.ws14d{word-spacing:-0.043286px;}
.wsd3{word-spacing:-0.042084px;}
.ws12b{word-spacing:-0.038958px;}
.ws133{word-spacing:-0.034629px;}
.ws126{word-spacing:-0.034474px;}
.ws197{word-spacing:-0.030530px;}
.ws13f{word-spacing:-0.030300px;}
.ws158{word-spacing:-0.025972px;}
.ws132{word-spacing:-0.021643px;}
.ws149{word-spacing:-0.017315px;}
.ws122{word-spacing:-0.013789px;}
.ws1b9{word-spacing:-0.013018px;}
.ws14a{word-spacing:-0.012986px;}
.ws1cc{word-spacing:-0.011059px;}
.ws18e{word-spacing:-0.010637px;}
.ws19f{word-spacing:-0.010339px;}
.ws1b1{word-spacing:-0.010176px;}
.ws196{word-spacing:-0.010147px;}
.ws13a{word-spacing:-0.008657px;}
.ws199{word-spacing:-0.007219px;}
.ws1b0{word-spacing:-0.004800px;}
.ws142{word-spacing:-0.004329px;}
.ws195{word-spacing:-0.003859px;}
.ws1ae{word-spacing:-0.003552px;}
.ws1c9{word-spacing:-0.003466px;}
.ws1cd{word-spacing:-0.003302px;}
.ws1b5{word-spacing:-0.001843px;}
.ws0{word-spacing:0.000000px;}
.ws2e{word-spacing:0.003599px;}
.ws16b{word-spacing:0.004329px;}
.ws159{word-spacing:0.008657px;}
.ws164{word-spacing:0.012986px;}
.ws14b{word-spacing:0.017315px;}
.ws128{word-spacing:0.020684px;}
.ws130{word-spacing:0.021643px;}
.ws147{word-spacing:0.025972px;}
.ws12f{word-spacing:0.030300px;}
.ws174{word-spacing:0.034629px;}
.ws148{word-spacing:0.038958px;}
.ws85{word-spacing:0.039679px;}
.ws15c{word-spacing:0.043286px;}
.ws9d{word-spacing:0.046292px;}
.ws14f{word-spacing:0.047615px;}
.ws16a{word-spacing:0.051944px;}
.ws1a{word-spacing:0.053798px;}
.ws28{word-spacing:0.059776px;}
.ws15e{word-spacing:0.069258px;}
.ws167{word-spacing:0.073587px;}
.ws154{word-spacing:0.077916px;}
.wsfa{word-spacing:0.078156px;}
.ws15b{word-spacing:0.082244px;}
.wsd2{word-spacing:0.084168px;}
.ws168{word-spacing:0.086573px;}
.wsca{word-spacing:0.090180px;}
.ws157{word-spacing:0.090901px;}
.ws13b{word-spacing:0.095230px;}
.ws9c{word-spacing:0.099198px;}
.ws16f{word-spacing:0.103887px;}
.ws19e{word-spacing:0.107597px;}
.wsc8{word-spacing:0.108216px;}
.ws144{word-spacing:0.116873px;}
.ws20{word-spacing:0.119551px;}
.ws134{word-spacing:0.121202px;}
.wsa1{word-spacing:0.125651px;}
.wsc9{word-spacing:0.126252px;}
.wsd1{word-spacing:0.129600px;}
.ws160{word-spacing:0.129859px;}
.ws7e{word-spacing:0.132264px;}
.ws161{word-spacing:0.138516px;}
.ws166{word-spacing:0.142845px;}
.ws151{word-spacing:0.151502px;}
.ws162{word-spacing:0.160160px;}
.ws188{word-spacing:0.161395px;}
.wsfc{word-spacing:0.162324px;}
.ws16d{word-spacing:0.177474px;}
.ws75{word-spacing:0.178200px;}
.ws35{word-spacing:0.179327px;}
.ws16e{word-spacing:0.190460px;}
.ws171{word-spacing:0.199117px;}
.ws172{word-spacing:0.203446px;}
.ws152{word-spacing:0.207775px;}
.wsc7{word-spacing:0.210420px;}
.wsbe{word-spacing:0.215194px;}
.ws173{word-spacing:0.233747px;}
.ws8f{word-spacing:0.238075px;}
.ws2f{word-spacing:0.239102px;}
.ws15d{word-spacing:0.251061px;}
.ws12e{word-spacing:0.259718px;}
.ws1b3{word-spacing:0.266122px;}
.ws15a{word-spacing:0.268376px;}
.ws1a3{word-spacing:0.268992px;}
.ws7f{word-spacing:0.290981px;}
.ws23{word-spacing:0.298878px;}
.ws13{word-spacing:0.322790px;}
.ws56{word-spacing:0.358654px;}
.ws58{word-spacing:0.418429px;}
.wsc{word-spacing:0.457096px;}
.wsb4{word-spacing:0.478205px;}
.ws189{word-spacing:0.537984px;}
.ws5b{word-spacing:0.597756px;}
.ws5c{word-spacing:0.657532px;}
.ws1b2{word-spacing:0.699379px;}
.ws1e{word-spacing:0.717307px;}
.wsd8{word-spacing:0.745488px;}
.ws14{word-spacing:0.753178px;}
.ws1ca{word-spacing:0.806976px;}
.wsb0{word-spacing:0.836858px;}
.ws1a9{word-spacing:0.857201px;}
.ws194{word-spacing:0.860774px;}
.ws17d{word-spacing:0.896634px;}
.ws89{word-spacing:0.952301px;}
.wsb2{word-spacing:0.956410px;}
.ws1be{word-spacing:0.968371px;}
.ws119{word-spacing:1.016185px;}
.ws1a2{word-spacing:1.022170px;}
.wsb9{word-spacing:1.075961px;}
.wsc5{word-spacing:1.076148px;}
.wsfd{word-spacing:1.112220px;}
.wsc6{word-spacing:1.184364px;}
.ws60{word-spacing:1.195512px;}
.ws6a{word-spacing:1.255288px;}
.ws76{word-spacing:1.276348px;}
.ws68{word-spacing:1.315063px;}
.ws16{word-spacing:1.344960px;}
.ws77{word-spacing:1.368932px;}
.ws9{word-spacing:1.380812px;}
.ws8d{word-spacing:1.401998px;}
.wsa2{word-spacing:1.434614px;}
.ws63{word-spacing:1.452557px;}
.ws88{word-spacing:1.487970px;}
.wsbf{word-spacing:1.494390px;}
.ws64{word-spacing:1.506355px;}
.wsdd{word-spacing:1.551096px;}
.ws54{word-spacing:1.554166px;}
.wsf9{word-spacing:1.557108px;}
.wsf7{word-spacing:1.563120px;}
.ws1d{word-spacing:1.613941px;}
.ws8a{word-spacing:1.653300px;}
.wsdc{word-spacing:1.665324px;}
.wsad{word-spacing:1.673717px;}
.wsa5{word-spacing:1.733492px;}
.ws1b7{word-spacing:1.775347px;}
.ws3d{word-spacing:1.793268px;}
.ws1b8{word-spacing:1.829146px;}
.ws4b{word-spacing:1.853044px;}
.wse0{word-spacing:1.857708px;}
.wse2{word-spacing:1.869732px;}
.ws1ba{word-spacing:1.882944px;}
.wsed{word-spacing:1.893780px;}
.ws59{word-spacing:1.912819px;}
.wsee{word-spacing:1.923840px;}
.wse1{word-spacing:1.929852px;}
.wsf8{word-spacing:1.941876px;}
.ws1c5{word-spacing:1.990541px;}
.wse5{word-spacing:1.995984px;}
.wse4{word-spacing:2.026044px;}
.ws5d{word-spacing:2.032370px;}
.ws1c8{word-spacing:2.205734px;}
.wsd4{word-spacing:2.206404px;}
.ws25{word-spacing:2.211697px;}
.ws55{word-spacing:2.331248px;}
.ws1c3{word-spacing:2.367130px;}
.ws177{word-spacing:2.391024px;}
.ws12{word-spacing:2.474726px;}
.ws18c{word-spacing:2.510568px;}
.ws106{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.ws2{word-spacing:2.513548px;}
.ws32{word-spacing:2.570351px;}
.wsaa{word-spacing:2.630126px;}
.wscc{word-spacing:2.646000px;}
.wscb{word-spacing:2.667600px;}
.wsaf{word-spacing:2.689902px;}
.ws191{word-spacing:2.689920px;}
.wscd{word-spacing:2.716200px;}
.ws1b4{word-spacing:2.743718px;}
.wsa3{word-spacing:2.749678px;}
.ws1ad{word-spacing:2.851315px;}
.ws42{word-spacing:2.869229px;}
.ws110{word-spacing:2.869236px;}
.ws7d{word-spacing:2.883355px;}
.ws66{word-spacing:2.929004px;}
.ws183{word-spacing:2.988780px;}
.ws193{word-spacing:3.012710px;}
.ws44{word-spacing:3.048556px;}
.ws1af{word-spacing:3.066509px;}
.ws53{word-spacing:3.108331px;}
.ws1c6{word-spacing:3.120307px;}
.ws2c{word-spacing:3.168107px;}
.ws15{word-spacing:3.174106px;}
.ws1bb{word-spacing:3.219725px;}
.ws2d{word-spacing:3.227882px;}
.ws18f{word-spacing:3.227904px;}
.wse6{word-spacing:3.258504px;}
.ws1ab{word-spacing:3.270512px;}
.ws1ac{word-spacing:3.281702px;}
.ws26{word-spacing:3.287658px;}
.ws184{word-spacing:3.334468px;}
.ws19{word-spacing:3.347020px;}
.wsa6{word-spacing:3.347434px;}
.ws18d{word-spacing:3.389299px;}
.wsb7{word-spacing:3.407209px;}
.wsa4{word-spacing:3.466985px;}
.ws1ce{word-spacing:3.496896px;}
.ws1c{word-spacing:3.526760px;}
.ws1a4{word-spacing:3.550694px;}
.ws1b{word-spacing:3.586536px;}
.ws1a5{word-spacing:3.604493px;}
.ws29{word-spacing:3.646312px;}
.wsb1{word-spacing:3.706087px;}
.wsd0{word-spacing:3.720600px;}
.wscf{word-spacing:3.753000px;}
.ws4c{word-spacing:3.765863px;}
.wsce{word-spacing:3.823200px;}
.ws5a{word-spacing:3.825638px;}
.ws3f{word-spacing:3.885414px;}
.ws181{word-spacing:3.945190px;}
.ws40{word-spacing:4.064741px;}
.wsde{word-spacing:4.070124px;}
.wsdf{word-spacing:4.088160px;}
.ws34{word-spacing:4.124516px;}
.ws57{word-spacing:4.184292px;}
.ws74{word-spacing:4.508460px;}
.ws73{word-spacing:4.520340px;}
.wsf{word-spacing:4.572864px;}
.ws17b{word-spacing:4.602721px;}
.wsa7{word-spacing:4.662497px;}
.wsac{word-spacing:4.722272px;}
.wsa9{word-spacing:4.782048px;}
.ws94{word-spacing:4.821023px;}
.ws93{word-spacing:4.840862px;}
.ws47{word-spacing:4.841824px;}
.ws182{word-spacing:4.901599px;}
.ws22{word-spacing:4.961375px;}
.ws1cb{word-spacing:5.003251px;}
.ws30{word-spacing:5.140702px;}
.ws31{word-spacing:5.200477px;}
.ws92{word-spacing:5.257494px;}
.ws69{word-spacing:5.260253px;}
.ws78{word-spacing:5.264107px;}
.ws21{word-spacing:5.320028px;}
.ws79{word-spacing:5.336852px;}
.ws17e{word-spacing:5.439580px;}
.ws7{word-spacing:5.481407px;}
.ws11c{word-spacing:5.499355px;}
.wsd5{word-spacing:5.500980px;}
.ws11d{word-spacing:5.521742px;}
.ws4f{word-spacing:5.559131px;}
.wsd6{word-spacing:5.591160px;}
.wsc0{word-spacing:5.618906px;}
.ws9f{word-spacing:5.627833px;}
.ws96{word-spacing:5.707192px;}
.ws95{word-spacing:5.727031px;}
.ws1c2{word-spacing:5.756429px;}
.ws176{word-spacing:5.798233px;}
.ws1a0{word-spacing:5.810227px;}
.ws5e{word-spacing:5.858009px;}
.ws1a6{word-spacing:6.133018px;}
.ws41{word-spacing:6.216662px;}
.ws186{word-spacing:6.294413px;}
.ws178{word-spacing:6.455765px;}
.ws51{word-spacing:6.575316px;}
.wsb8{word-spacing:6.635092px;}
.ws50{word-spacing:6.694867px;}
.ws81{word-spacing:6.864502px;}
.ws17f{word-spacing:6.874194px;}
.ws82{word-spacing:6.884341px;}
.ws105{word-spacing:6.993745px;}
.ws1a1{word-spacing:6.993792px;}
.ws175{word-spacing:7.047590px;}
.wsb3{word-spacing:7.053521px;}
.ws1b6{word-spacing:7.208986px;}
.wsb5{word-spacing:7.232848px;}
.ws1c1{word-spacing:7.262784px;}
.wsb6{word-spacing:7.292623px;}
.ws104{word-spacing:7.352399px;}
.ws1a8{word-spacing:7.370381px;}
.ws5f{word-spacing:7.471950px;}
.ws6b{word-spacing:7.531726px;}
.ws97{word-spacing:7.611793px;}
.ws36{word-spacing:7.770828px;}
.ws6e{word-spacing:7.830604px;}
.ws1c4{word-spacing:8.123558px;}
.ws179{word-spacing:8.368584px;}
.ws3b{word-spacing:8.428360px;}
.wsf6{word-spacing:9.060084px;}
.ws84{word-spacing:9.232027px;}
.ws83{word-spacing:9.364291px;}
.wsf5{word-spacing:9.474912px;}
.ws3e{word-spacing:9.504320px;}
.ws86{word-spacing:10.792742px;}
.ws87{word-spacing:10.825808px;}
.wsc4{word-spacing:11.620476px;}
.ws6{word-spacing:11.841512px;}
.ws72{word-spacing:12.782524px;}
.ws19b{word-spacing:13.180608px;}
.ws5{word-spacing:13.306010px;}
.ws3{word-spacing:15.481836px;}
.ws8{word-spacing:16.067635px;}
.wsfe{word-spacing:16.292520px;}
.ws6c{word-spacing:18.389782px;}
.wsae{word-spacing:18.525325px;}
.wsa8{word-spacing:18.966280px;}
.ws19c{word-spacing:19.367424px;}
.ws1c7{word-spacing:22.433933px;}
.ws4{word-spacing:29.262958px;}
.ws6d{word-spacing:50.454855px;}
.ws10d{word-spacing:84.738103px;}
.ws10c{word-spacing:85.340163px;}
.ws10e{word-spacing:104.679293px;}
.ws10b{word-spacing:104.727114px;}
.ws18b{word-spacing:141.805249px;}
.ws109{word-spacing:149.869760px;}
.ws120{word-spacing:168.280691px;}
.ws113{word-spacing:168.296747px;}
.ws11f{word-spacing:170.432618px;}
.ws121{word-spacing:181.909562px;}
.ws116{word-spacing:190.372500px;}
.ws111{word-spacing:192.860480px;}
.ws117{word-spacing:231.356063px;}
.ws115{word-spacing:231.922024px;}
.ws112{word-spacing:251.297253px;}
.ws114{word-spacing:276.772500px;}
.ws118{word-spacing:316.094166px;}
.ws107{word-spacing:343.925755px;}
.ws108{word-spacing:351.911795px;}
.wsff{word-spacing:554.527678px;}
.ws101{word-spacing:566.482828px;}
.ws100{word-spacing:572.460403px;}
.ws10a{word-spacing:1476.174101px;}
._b{margin-left:-6.832397px;}
._e{margin-left:-4.901608px;}
._1{margin-left:-3.060159px;}
._4{margin-left:-1.464498px;}
._13{width:1.482476px;}
._85{width:3.287656px;}
._86{width:10.967455px;}
._0{width:12.218098px;}
._14{width:13.359842px;}
._6{width:14.824386px;}
._7{width:16.677504px;}
._a{width:18.506650px;}
._9{width:20.066803px;}
._18{width:21.600990px;}
._15{width:22.654961px;}
._c{width:24.209280px;}
._2{width:25.314894px;}
._8{width:26.576410px;}
._12{width:28.501048px;}
._d{width:29.708473px;}
._3{width:31.256572px;}
._5{width:33.355008px;}
._19{width:34.789399px;}
._11{width:36.343573px;}
._68{width:38.370663px;}
._16{width:39.559534px;}
._1a{width:41.603818px;}
._47{width:97.322234px;}
._5f{width:114.865081px;}
._43{width:116.682264px;}
._4c{width:124.190098px;}
._60{width:132.128318px;}
._45{width:135.284477px;}
._42{width:137.340763px;}
._49{width:138.392816px;}
._40{width:139.683973px;}
._4b{width:143.892185px;}
._62{width:146.474498px;}
._3c{width:149.869760px;}
._3d{width:151.208737px;}
._61{width:152.834638px;}
._3b{width:153.886691px;}
._4d{width:155.225668px;}
._3e{width:156.516824px;}
._6b{width:159.253697px;}
._6c{width:161.906884px;}
._3f{width:163.163887px;}
._63{width:165.337917px;}
._6a{width:170.802310px;}
._4f{width:191.521503px;}
._4e{width:195.155869px;}
._50{width:199.890108px;}
._5a{width:201.252560px;}
._55{width:202.540886px;}
._5b{width:206.751929px;}
._5d{width:208.994633px;}
._65{width:220.070401px;}
._53{width:229.682342px;}
._57{width:241.685312px;}
._52{width:250.652648px;}
._5c{width:252.257632px;}
._59{width:256.653160px;}
._54{width:263.252403px;}
._64{width:285.416561px;}
._66{width:306.434405px;}
._58{width:308.708020px;}
._56{width:327.404711px;}
._51{width:328.693921px;}
._4a{width:340.817416px;}
._33{width:368.266441px;}
._37{width:382.469159px;}
._36{width:384.525445px;}
._38{width:385.577498px;}
._35{width:386.868654px;}
._34{width:389.737890px;}
._39{width:391.076867px;}
._67{width:436.076051px;}
._1d{width:446.261839px;}
._21{width:449.083255px;}
._2e{width:477.088186px;}
._20{width:556.631784px;}
._48{width:565.335133px;}
._1f{width:566.482828px;}
._1e{width:576.046948px;}
._2d{width:578.437978px;}
._28{width:590.393128px;}
._2f{width:602.348278px;}
._1c{width:618.798564px;}
._2c{width:621.763441px;}
._2a{width:625.445627px;}
._31{width:635.440133px;}
._22{width:655.429144px;}
._30{width:683.834580px;}
._2b{width:687.277663px;}
._26{width:692.681391px;}
._25{width:704.636541px;}
._72{width:711.249549px;}
._32{width:714.152840px;}
._24{width:716.543870px;}
._27{width:726.012349px;}
._23{width:728.594662px;}
._29{width:763.001579px;}
._70{width:779.405836px;}
._46{width:789.518106px;}
._78{width:822.211020px;}
._f{width:881.284037px;}
._7d{width:955.229281px;}
._3a{width:998.111563px;}
._44{width:1013.701079px;}
._7a{width:1016.528983px;}
._79{width:1105.235719px;}
._76{width:1108.206558px;}
._69{width:1236.669954px;}
._41{width:1237.931872px;}
._7b{width:1267.292884px;}
._75{width:1275.326701px;}
._6d{width:1292.524092px;}
._6f{width:1323.362236px;}
._80{width:1340.308570px;}
._6e{width:1347.589217px;}
._71{width:1381.778801px;}
._74{width:1392.559543px;}
._7c{width:1475.085988px;}
._7f{width:1517.416201px;}
._77{width:1601.271430px;}
._73{width:1669.615422px;}
._81{width:1693.490704px;}
._84{width:1788.542845px;}
._82{width:1857.583465px;}
._83{width:1861.516688px;}
._1b{width:2105.261464px;}
._7e{width:2232.022842px;}
._17{width:2315.935858px;}
._5e{width:2513.997000px;}
._10{width:2537.907000px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:34.473600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs14{font-size:43.286400px;}
.fs12{font-size:45.429600px;}
.fs8{font-size:47.820600px;}
.fsd{font-size:47.880000px;}
.fs10{font-size:49.829400px;}
.fsa{font-size:52.668000px;}
.fs9{font-size:53.798400px;}
.fsf{font-size:54.000000px;}
.fsc{font-size:59.400000px;}
.fs6{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fse{font-size:60.120000px;}
.fs11{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fsb{font-size:66.132000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:107.596800px;}
.yc1{bottom:-881.594505px;}
.ye4{bottom:-759.312962px;}
.ye3{bottom:-738.226774px;}
.ye2{bottom:-717.041388px;}
.y163{bottom:-709.456050px;}
.ye1{bottom:-695.856002px;}
.ye0{bottom:-674.769813px;}
.ydf{bottom:-653.584427px;}
.y187{bottom:-638.431884px;}
.yde{bottom:-632.498239px;}
.y186{bottom:-619.172442px;}
.ydd{bottom:-611.312853px;}
.y185{bottom:-600.003180px;}
.ydc{bottom:-590.127467px;}
.y184{bottom:-580.743738px;}
.ydb{bottom:-569.041278px;}
.y183{bottom:-561.484296px;}
.yda{bottom:-547.855892px;}
.y182{bottom:-542.315034px;}
.yd9{bottom:-526.769704px;}
.y181{bottom:-523.055592px;}
.yd8{bottom:-505.584318px;}
.y180{bottom:-503.886330px;}
.y17f{bottom:-484.626888px;}
.yd7{bottom:-484.398932px;}
.y217{bottom:-469.217556px;}
.y17e{bottom:-465.367446px;}
.yd6{bottom:-463.311090px;}
.y17d{bottom:-446.198184px;}
.yd5{bottom:-442.125704px;}
.y17c{bottom:-426.938742px;}
.y236{bottom:-421.070754px;}
.yd4{bottom:-420.940318px;}
.y235{bottom:-407.201688px;}
.y17b{bottom:-403.267995px;}
.yd3{bottom:-399.854129px;}
.y234{bottom:-393.399819px;}
.y233{bottom:-379.533021px;}
.yd2{bottom:-378.668743px;}
.y17a{bottom:-366.008625px;}
.y232{bottom:-365.666223px;}
.yd1{bottom:-357.582555px;}
.y231{bottom:-351.864354px;}
.y179{bottom:-346.749183px;}
.y230{bottom:-337.996772px;}
.yd0{bottom:-336.397169px;}
.y178{bottom:-327.579921px;}
.y22f{bottom:-324.193821px;}
.ycf{bottom:-315.211783px;}
.y22e{bottom:-310.327023px;}
.y177{bottom:-308.320479px;}
.y22d{bottom:-296.460225px;}
.yce{bottom:-294.123941px;}
.y176{bottom:-289.061037px;}
.y22c{bottom:-282.657021px;}
.ycd{bottom:-272.938555px;}
.y175{bottom:-269.891775px;}
.y22b{bottom:-268.790223px;}
.y22a{bottom:-254.988354px;}
.ycc{bottom:-251.852367px;}
.y174{bottom:-250.632333px;}
.y229{bottom:-241.119180px;}
.y173{bottom:-231.463071px;}
.y228{bottom:-227.252382px;}
.ycb{bottom:-225.717000px;}
.y227{bottom:-213.450513px;}
.y172{bottom:-212.203629px;}
.y226{bottom:-199.583715px;}
.y171{bottom:-192.944187px;}
.y225{bottom:-185.716917px;}
.yca{bottom:-184.731693px;}
.y170{bottom:-173.774925px;}
.y224{bottom:-171.913419px;}
.yc9{bottom:-163.645505px;}
.y223{bottom:-158.046621px;}
.y16f{bottom:-154.515483px;}
.y222{bottom:-144.244752px;}
.yc8{bottom:-142.460119px;}
.y16e{bottom:-135.344718px;}
.y221{bottom:-130.377954px;}
.yc7{bottom:-121.372277px;}
.y220{bottom:-116.510774px;}
.y16d{bottom:-111.585294px;}
.y21f{bottom:-102.708905px;}
.yc6{bottom:-100.186891px;}
.y21e{bottom:-88.842107px;}
.y16c{bottom:-87.916050px;}
.yc5{bottom:-79.001505px;}
.y21d{bottom:-75.037393px;}
.y21c{bottom:-61.170595px;}
.y16b{bottom:-51.016500px;}
.y21b{bottom:-47.303797px;}
.yc4{bottom:-38.511000px;}
.y16a{bottom:-33.646050px;}
.y21a{bottom:-33.501928px;}
.y219{bottom:-19.635130px;}
.yc3{bottom:-19.403505px;}
.y169{bottom:-16.366050px;}
.y218{bottom:-2.333556px;}
.y0{bottom:0.000000px;}
.yc2{bottom:5.247495px;}
.y168{bottom:6.044031px;}
.y5d{bottom:31.890000px;}
.y4{bottom:97.125005px;}
.y238{bottom:100.425000px;}
.y20c{bottom:103.621500px;}
.y30{bottom:104.646000px;}
.y1df{bottom:111.202500px;}
.y256{bottom:115.113000px;}
.y2d5{bottom:116.458500px;}
.y5c{bottom:117.399000px;}
.y94{bottom:119.596500px;}
.y237{bottom:119.656500px;}
.y2a0{bottom:120.919500px;}
.y20b{bottom:122.449500px;}
.y2f{bottom:122.535000px;}
.y1de{bottom:130.032000px;}
.y2d4{bottom:133.719000px;}
.y255{bottom:133.942500px;}
.y134{bottom:136.185000px;}
.y5b{bottom:136.228500px;}
.y29f{bottom:138.180000px;}
.y93{bottom:138.426000px;}
.y1f{bottom:139.264499px;}
.y2e{bottom:140.422500px;}
.y20a{bottom:141.279000px;}
.y214{bottom:142.086000px;}
.y15f{bottom:145.150500px;}
.y104{bottom:145.597500px;}
.y1dd{bottom:148.861500px;}
.y2d3{bottom:150.978000px;}
.y254{bottom:152.772000px;}
.y133{bottom:155.014500px;}
.y5a{bottom:155.056500px;}
.y29e{bottom:155.440500px;}
.ybd{bottom:156.807000px;}
.y92{bottom:157.255500px;}
.y2d{bottom:158.310000px;}
.y209{bottom:160.108500px;}
.y260{bottom:161.290500px;}
.y103{bottom:164.427000px;}
.y1dc{bottom:167.691000px;}
.y2d2{bottom:168.238500px;}
.y253{bottom:171.601500px;}
.y1aa{bottom:171.618000px;}
.y29d{bottom:172.699500px;}
.y132{bottom:173.844000px;}
.y59{bottom:173.886000px;}
.ybc{bottom:175.636500px;}
.y91{bottom:176.085000px;}
.y2c{bottom:176.199000px;}
.y25f{bottom:178.864500px;}
.y208{bottom:178.938000px;}
.y15e{bottom:181.912500px;}
.y2d1{bottom:185.499000px;}
.y1db{bottom:186.520500px;}
.y29c{bottom:189.960000px;}
.y252{bottom:190.431000px;}
.y1a9{bottom:190.447500px;}
.y131{bottom:192.672000px;}
.y58{bottom:192.715500px;}
.y2b{bottom:194.086500px;}
.ybb{bottom:194.466000px;}
.y90{bottom:194.914500px;}
.y25e{bottom:196.438500px;}
.y16{bottom:196.933500px;}
.y207{bottom:197.767500px;}
.y102{bottom:201.190500px;}
.y2d0{bottom:202.759500px;}
.y1da{bottom:205.350000px;}
.y251{bottom:209.260500px;}
.y1a8{bottom:209.277000px;}
.y1e{bottom:209.518500px;}
.y15{bottom:209.533503px;}
.y130{bottom:211.501500px;}
.y57{bottom:211.545000px;}
.y29b{bottom:211.704000px;}
.y2a{bottom:211.974000px;}
.yba{bottom:213.295500px;}
.y8f{bottom:213.744000px;}
.y25d{bottom:214.012500px;}
.y206{bottom:216.597000px;}
.y15d{bottom:218.676000px;}
.y101{bottom:220.020000px;}
.y1d{bottom:222.118502px;}
.y14{bottom:222.133505px;}
.y1d9{bottom:224.179500px;}
.y250{bottom:228.090000px;}
.y1a7{bottom:228.106500px;}
.y29{bottom:229.863000px;}
.y12f{bottom:230.331000px;}
.y56{bottom:230.374500px;}
.y25c{bottom:231.586500px;}
.yb9{bottom:232.125000px;}
.y8e{bottom:232.573500px;}
.y1c{bottom:234.718504px;}
.y13{bottom:234.733496px;}
.y2cf{bottom:237.280500px;}
.y15c{bottom:237.505500px;}
.y1d8{bottom:243.009000px;}
.y24f{bottom:246.919500px;}
.y1a6{bottom:246.936000px;}
.y12e{bottom:249.160500px;}
.y55{bottom:249.204000px;}
.yb8{bottom:250.954500px;}
.y8d{bottom:251.403000px;}
.y2ce{bottom:254.541000px;}
.y29a{bottom:255.672000px;}
.y15b{bottom:256.335000px;}
.y100{bottom:256.782000px;}
.y1b{bottom:259.918497px;}
.y12{bottom:259.933500px;}
.y1d7{bottom:261.838500px;}
.y205{bottom:263.181000px;}
.y24e{bottom:265.749000px;}
.y1a5{bottom:265.765500px;}
.y25b{bottom:266.734500px;}
.y299{bottom:267.627000px;}
.y54{bottom:268.033500px;}
.yb7{bottom:269.784000px;}
.y8c{bottom:270.232500px;}
.y2cd{bottom:271.801500px;}
.y1a{bottom:272.518500px;}
.y11{bottom:272.533503px;}
.y15a{bottom:275.164500px;}
.yff{bottom:275.611500px;}
.y204{bottom:277.378500px;}
.y167{bottom:278.294445px;}
.y298{bottom:279.582000px;}
.y1d6{bottom:280.668000px;}
.y25a{bottom:284.310000px;}
.y24d{bottom:284.578500px;}
.y1a4{bottom:284.595000px;}
.y19{bottom:285.118502px;}
.y10{bottom:285.133499px;}
.y12d{bottom:285.924000px;}
.y53{bottom:286.863000px;}
.yb6{bottom:288.613500px;}
.y8b{bottom:289.062000px;}
.y297{bottom:291.537000px;}
.y203{bottom:291.574500px;}
.y159{bottom:293.992500px;}
.yfe{bottom:294.441000px;}
.y28{bottom:297.166500px;}
.y1d5{bottom:299.497500px;}
.y24c{bottom:303.408000px;}
.y1a3{bottom:303.424500px;}
.y296{bottom:303.492000px;}
.y52{bottom:305.692500px;}
.y202{bottom:305.772000px;}
.y2cc{bottom:306.321000px;}
.yb5{bottom:307.443000px;}
.y8a{bottom:307.891500px;}
.y18{bottom:310.318501px;}
.yf{bottom:310.333501px;}
.y259{bottom:310.849500px;}
.y158{bottom:312.822000px;}
.yfd{bottom:313.270500px;}
.y27{bottom:315.054000px;}
.y295{bottom:315.447000px;}
.y166{bottom:315.553815px;}
.y201{bottom:319.968000px;}
.y24b{bottom:322.237500px;}
.y1a2{bottom:322.254000px;}
.y12c{bottom:322.686000px;}
.y1d4{bottom:322.810500px;}
.y17{bottom:322.918500px;}
.ye{bottom:322.933500px;}
.y2cb{bottom:323.581500px;}
.y51{bottom:324.522000px;}
.yb4{bottom:326.272500px;}
.y89{bottom:326.719500px;}
.y294{bottom:327.402000px;}
.y258{bottom:328.423500px;}
.y157{bottom:331.651500px;}
.yfc{bottom:332.100000px;}
.y26{bottom:332.941500px;}
.y200{bottom:334.165500px;}
.y293{bottom:339.357000px;}
.y2ca{bottom:340.842000px;}
.y24a{bottom:341.067000px;}
.y1a1{bottom:341.083500px;}
.y12b{bottom:341.515500px;}
.y1d3{bottom:342.984000px;}
.y50{bottom:343.351500px;}
.yb3{bottom:345.102000px;}
.y88{bottom:345.549000px;}
.yd{bottom:348.133500px;}
.y1ff{bottom:348.361500px;}
.y216{bottom:348.817741px;}
.y25{bottom:350.830500px;}
.yfb{bottom:350.928000px;}
.y292{bottom:351.313500px;}
.y165{bottom:352.813185px;}
.y215{bottom:355.751244px;}
.y2c9{bottom:358.102500px;}
.y249{bottom:359.896500px;}
.y1a0{bottom:359.913000px;}
.y12a{bottom:360.345000px;}
.y4f{bottom:362.181000px;}
.y1fe{bottom:362.559000px;}
.yb2{bottom:363.931500px;}
.y87{bottom:364.378500px;}
.yc0{bottom:368.181644px;}
.y156{bottom:368.415000px;}
.yfa{bottom:369.757500px;}
.y291{bottom:370.470000px;}
.y164{bottom:371.983950px;}
.y2c8{bottom:375.363000px;}
.y1d2{bottom:376.608000px;}
.y1fd{bottom:376.755000px;}
.y24{bottom:377.685000px;}
.y248{bottom:378.726000px;}
.y19f{bottom:378.742500px;}
.ybf{bottom:378.774495px;}
.y129{bottom:379.174500px;}
.y4e{bottom:381.010500px;}
.y290{bottom:382.425000px;}
.yb1{bottom:382.761000px;}
.y86{bottom:383.208000px;}
.yc{bottom:386.785499px;}
.yf9{bottom:388.587000px;}
.y2c7{bottom:392.623500px;}
.y28f{bottom:394.381500px;}
.y1d1{bottom:395.437500px;}
.y23{bottom:395.572500px;}
.y247{bottom:397.555500px;}
.y19e{bottom:397.572000px;}
.y128{bottom:398.002500px;}
.y1fc{bottom:398.154000px;}
.y4d{bottom:399.840000px;}
.yb0{bottom:401.589000px;}
.y85{bottom:402.037500px;}
.y155{bottom:405.177000px;}
.y28e{bottom:406.336500px;}
.yf8{bottom:407.416500px;}
.yb{bottom:408.044999px;}
.y2c6{bottom:409.884000px;}
.y22{bottom:413.460000px;}
.y1d0{bottom:414.267000px;}
.y246{bottom:416.383500px;}
.y19d{bottom:416.401500px;}
.y127{bottom:416.832000px;}
.y28d{bottom:418.291500px;}
.y4c{bottom:418.669500px;}
.yaf{bottom:420.418500px;}
.y84{bottom:420.867000px;}
.y154{bottom:424.006500px;}
.yf7{bottom:426.246000px;}
.y162{bottom:426.704085px;}
.y2c5{bottom:427.144500px;}
.y28c{bottom:430.246500px;}
.y1fb{bottom:431.194500px;}
.y21{bottom:431.349000px;}
.y1cf{bottom:433.096500px;}
.y245{bottom:435.213000px;}
.y19c{bottom:435.231000px;}
.y126{bottom:435.661500px;}
.y161{bottom:436.333950px;}
.y4b{bottom:437.499000px;}
.yae{bottom:439.248000px;}
.y83{bottom:439.696500px;}
.y28b{bottom:442.201500px;}
.y153{bottom:442.836000px;}
.y2c4{bottom:444.403500px;}
.yf6{bottom:445.075500px;}
.y20{bottom:449.236500px;}
.y1ce{bottom:451.926000px;}
.y244{bottom:454.042500px;}
.y19b{bottom:454.060500px;}
.y125{bottom:454.491000px;}
.y4a{bottom:456.328500px;}
.yad{bottom:458.077500px;}
.y82{bottom:458.526000px;}
.y28a{bottom:461.359500px;}
.y2c3{bottom:461.664000px;}
.y152{bottom:461.665500px;}
.yf5{bottom:463.905000px;}
.y1fa{bottom:467.104500px;}
.y1cd{bottom:470.755500px;}
.y243{bottom:472.872000px;}
.y289{bottom:473.314500px;}
.y124{bottom:473.320500px;}
.y2d8{bottom:474.367500px;}
.y49{bottom:475.158000px;}
.yac{bottom:476.907000px;}
.y81{bottom:477.355500px;}
.y19a{bottom:477.372000px;}
.y2c2{bottom:478.924500px;}
.y213{bottom:479.163000px;}
.y151{bottom:480.495000px;}
.yf4{bottom:482.734500px;}
.y288{bottom:485.269500px;}
.y1f9{bottom:485.934000px;}
.y2d7{bottom:491.628000px;}
.y242{bottom:491.701500px;}
.y123{bottom:492.150000px;}
.y48{bottom:493.987500px;}
.y1cc{bottom:494.068500px;}
.yab{bottom:495.736500px;}
.y80{bottom:496.185000px;}
.y287{bottom:497.224500px;}
.y150{bottom:499.323000px;}
.yf3{bottom:501.564000px;}
.y1f8{bottom:504.763500px;}
.y2d6{bottom:508.887000px;}
.y286{bottom:509.179500px;}
.y241{bottom:510.531000px;}
.y122{bottom:510.979500px;}
.y199{bottom:510.996000px;}
.y47{bottom:512.817000px;}
.y2c1{bottom:513.445500px;}
.yaa{bottom:514.566000px;}
.y7f{bottom:515.014500px;}
.y14f{bottom:518.152500px;}
.yf2{bottom:520.393500px;}
.ya{bottom:520.864502px;}
.y285{bottom:521.134500px;}
.y1f7{bottom:523.593000px;}
.y212{bottom:526.912500px;}
.y1cb{bottom:527.692500px;}
.y240{bottom:529.360500px;}
.y121{bottom:529.809000px;}
.y198{bottom:529.825500px;}
.y2c0{bottom:530.706000px;}
.y284{bottom:533.089500px;}
.ya9{bottom:533.395500px;}
.y7e{bottom:533.844000px;}
.y46{bottom:536.130000px;}
.y14e{bottom:536.982000px;}
.y9{bottom:538.864499px;}
.yf1{bottom:539.223000px;}
.y211{bottom:541.110000px;}
.y1f6{bottom:542.422500px;}
.y283{bottom:545.044500px;}
.y1ca{bottom:546.522000px;}
.y2bf{bottom:547.966500px;}
.y23f{bottom:548.190000px;}
.y120{bottom:548.638500px;}
.y197{bottom:548.655000px;}
.ya8{bottom:552.225000px;}
.y7d{bottom:552.673500px;}
.y210{bottom:555.306000px;}
.y14d{bottom:555.811500px;}
.y8{bottom:556.864499px;}
.yf0{bottom:558.052500px;}
.y1f5{bottom:561.250500px;}
.y282{bottom:564.202500px;}
.y2be{bottom:565.227000px;}
.y1c9{bottom:565.351500px;}
.y23e{bottom:567.019500px;}
.y11f{bottom:567.468000px;}
.y196{bottom:567.484500px;}
.ya7{bottom:571.054500px;}
.y7c{bottom:571.503000px;}
.y14c{bottom:574.641000px;}
.y281{bottom:576.157500px;}
.y20f{bottom:576.705000px;}
.yef{bottom:576.882000px;}
.y1f4{bottom:580.080000px;}
.y2bd{bottom:582.487500px;}
.y1c8{bottom:584.181000px;}
.y23d{bottom:585.849000px;}
.y195{bottom:586.314000px;}
.y280{bottom:588.112500px;}
.ya6{bottom:589.884000px;}
.y7b{bottom:590.332500px;}
.y11e{bottom:590.781000px;}
.y14b{bottom:593.470500px;}
.yee{bottom:595.711500px;}
.y2bc{bottom:599.746500px;}
.y27f{bottom:600.067500px;}
.y1c7{bottom:603.010500px;}
.y1f3{bottom:603.393000px;}
.y23c{bottom:604.678500px;}
.y194{bottom:605.143500px;}
.ya5{bottom:608.713500px;}
.y7a{bottom:609.162000px;}
.y20e{bottom:609.745500px;}
.y45{bottom:611.280000px;}
.y27e{bottom:612.024000px;}
.y14a{bottom:612.300000px;}
.yed{bottom:614.541000px;}
.y2bb{bottom:617.007000px;}
.y1c6{bottom:621.840000px;}
.y23b{bottom:623.508000px;}
.y193{bottom:623.973000px;}
.y27d{bottom:623.979000px;}
.y11d{bottom:624.405000px;}
.ya4{bottom:627.543000px;}
.y79{bottom:627.991500px;}
.y44{bottom:630.736500px;}
.y149{bottom:631.129500px;}
.yec{bottom:633.370500px;}
.y2ba{bottom:634.267500px;}
.y23a{bottom:642.337500px;}
.y192{bottom:642.802500px;}
.y27c{bottom:643.135500px;}
.y11c{bottom:643.234500px;}
.y1c5{bottom:645.153000px;}
.y7{bottom:645.510000px;}
.ya3{bottom:646.372500px;}
.y78{bottom:646.821000px;}
.y1f2{bottom:646.839000px;}
.y2b9{bottom:651.528000px;}
.yeb{bottom:652.200000px;}
.y148{bottom:654.442500px;}
.y27b{bottom:655.090500px;}
.y1f1{bottom:661.036500px;}
.y239{bottom:661.167000px;}
.y191{bottom:661.632000px;}
.ya2{bottom:665.202000px;}
.y77{bottom:665.650500px;}
.y6{bottom:666.771000px;}
.y27a{bottom:667.047000px;}
.y43{bottom:668.125500px;}
.y2b8{bottom:668.788500px;}
.yea{bottom:671.029500px;}
.y1f0{bottom:675.232500px;}
.y279{bottom:679.002000px;}
.y11b{bottom:679.996500px;}
.y190{bottom:680.461500px;}
.ya1{bottom:684.031500px;}
.y76{bottom:684.480000px;}
.y2b7{bottom:686.049000px;}
.y1c4{bottom:686.803500px;}
.y42{bottom:687.583500px;}
.y147{bottom:688.066500px;}
.y1ef{bottom:689.430000px;}
.ye9{bottom:689.859000px;}
.y278{bottom:690.957000px;}
.y11a{bottom:698.826000px;}
.y18f{bottom:699.291000px;}
.y1c3{bottom:701.001000px;}
.ya0{bottom:702.861000px;}
.y277{bottom:702.912000px;}
.y75{bottom:703.309500px;}
.y1ee{bottom:703.626000px;}
.y41{bottom:707.040000px;}
.ye8{bottom:708.688500px;}
.y1c2{bottom:715.197000px;}
.y119{bottom:717.655500px;}
.y1ed{bottom:717.823500px;}
.y18e{bottom:718.120500px;}
.y2b6{bottom:720.570000px;}
.y9f{bottom:721.690500px;}
.y276{bottom:722.070000px;}
.y74{bottom:722.139000px;}
.y146{bottom:724.828500px;}
.y5{bottom:726.298500px;}
.y40{bottom:726.498000px;}
.y1c1{bottom:729.394500px;}
.ye7{bottom:732.001500px;}
.y1ec{bottom:732.019500px;}
.y275{bottom:734.025000px;}
.y118{bottom:736.485000px;}
.y18d{bottom:736.950000px;}
.y2b5{bottom:737.829000px;}
.y9e{bottom:740.520000px;}
.y73{bottom:740.968500px;}
.y1c0{bottom:743.590500px;}
.y145{bottom:743.658000px;}
.y3f{bottom:745.954500px;}
.y274{bottom:745.980000px;}
.y3{bottom:752.599495px;}
.y1eb{bottom:753.418500px;}
.y2b4{bottom:755.089500px;}
.y117{bottom:755.314500px;}
.y1bf{bottom:757.788000px;}
.y273{bottom:757.935000px;}
.y9d{bottom:759.349500px;}
.y72{bottom:759.798000px;}
.y18c{bottom:760.263000px;}
.ye6{bottom:762.429000px;}
.y144{bottom:762.487500px;}
.y257{bottom:763.833000px;}
.y3e{bottom:765.411000px;}
.y272{bottom:769.890000px;}
.y1be{bottom:771.984000px;}
.y2b3{bottom:772.350000px;}
.y116{bottom:774.144000px;}
.y1ea{bottom:774.817500px;}
.y9c{bottom:778.179000px;}
.y71{bottom:778.627500px;}
.y18b{bottom:780.436500px;}
.y143{bottom:781.317000px;}
.ye5{bottom:781.660500px;}
.y271{bottom:781.845000px;}
.y3d{bottom:784.869000px;}
.y1bd{bottom:786.181500px;}
.y2b2{bottom:789.610500px;}
.y115{bottom:792.973500px;}
.y270{bottom:793.800000px;}
.y9b{bottom:797.008500px;}
.y70{bottom:797.457000px;}
.y142{bottom:800.146500px;}
.ybe{bottom:804.090000px;}
.y3c{bottom:804.325500px;}
.y2b1{bottom:806.871000px;}
.y1bc{bottom:807.580500px;}
.y1e9{bottom:807.856500px;}
.y18a{bottom:810.864000px;}
.y114{bottom:811.803000px;}
.y26f{bottom:812.958000px;}
.y9a{bottom:815.838000px;}
.y6f{bottom:816.286500px;}
.y20d{bottom:821.710500px;}
.y3b{bottom:823.783500px;}
.y2b0{bottom:824.131500px;}
.y26e{bottom:824.913000px;}
.y189{bottom:830.097000px;}
.y113{bottom:830.632500px;}
.y99{bottom:834.667500px;}
.y6e{bottom:835.114500px;}
.y26d{bottom:836.868000px;}
.y141{bottom:836.908500px;}
.y1bb{bottom:837.630000px;}
.y2af{bottom:841.392000px;}
.y3a{bottom:843.240000px;}
.y26c{bottom:848.823000px;}
.y188{bottom:849.330000px;}
.y112{bottom:849.462000px;}
.y1e8{bottom:850.869000px;}
.y98{bottom:853.497000px;}
.y6d{bottom:853.944000px;}
.y2ae{bottom:858.652500px;}
.y26b{bottom:860.778000px;}
.y39{bottom:862.696500px;}
.y1e7{bottom:865.066500px;}
.y111{bottom:868.291500px;}
.y160{bottom:871.759500px;}
.y97{bottom:872.326500px;}
.y26a{bottom:872.733000px;}
.y6c{bottom:872.773500px;}
.y140{bottom:873.670500px;}
.y2ad{bottom:875.913000px;}
.y1e6{bottom:879.262500px;}
.y2{bottom:879.369000px;}
.y38{bottom:882.154500px;}
.y1ba{bottom:883.030500px;}
.y110{bottom:887.121000px;}
.y96{bottom:891.156000px;}
.y6b{bottom:891.603000px;}
.y269{bottom:891.891000px;}
.y13f{bottom:892.500000px;}
.y2ac{bottom:893.172000px;}
.y1e5{bottom:893.460000px;}
.y1b9{bottom:897.228000px;}
.y37{bottom:901.611000px;}
.y10f{bottom:905.950500px;}
.y1e4{bottom:907.656000px;}
.y6a{bottom:910.432500px;}
.y13e{bottom:911.329500px;}
.y1b8{bottom:911.424000px;}
.y95{bottom:914.467500px;}
.y36{bottom:921.067500px;}
.y1e3{bottom:921.853500px;}
.y268{bottom:923.361000px;}
.y10e{bottom:924.778500px;}
.y1b7{bottom:925.621500px;}
.y2ab{bottom:927.693000px;}
.y69{bottom:929.262000px;}
.y13d{bottom:930.159000px;}
.y1e2{bottom:936.049500px;}
.y1b6{bottom:939.817500px;}
.y10d{bottom:943.608000px;}
.y2aa{bottom:944.953500px;}
.y68{bottom:948.091500px;}
.y13c{bottom:948.988500px;}
.y1b5{bottom:954.015000px;}
.y267{bottom:957.417000px;}
.y1e1{bottom:957.448500px;}
.y35{bottom:959.653500px;}
.y2a9{bottom:962.214000px;}
.y10c{bottom:962.437500px;}
.y1{bottom:966.726000px;}
.y67{bottom:966.921000px;}
.y13b{bottom:967.818000px;}
.y1b4{bottom:968.211000px;}
.y34{bottom:975.793500px;}
.y2a8{bottom:979.474500px;}
.y10b{bottom:981.267000px;}
.y1b3{bottom:982.408500px;}
.y66{bottom:985.750500px;}
.y13a{bottom:986.647500px;}
.y1e0{bottom:987.499500px;}
.y266{bottom:994.179000px;}
.y1b2{bottom:996.604500px;}
.y2a7{bottom:996.735000px;}
.y10a{bottom:1000.096500px;}
.y65{bottom:1004.580000px;}
.y139{bottom:1005.477000px;}
.y1b1{bottom:1010.802000px;}
.y2a6{bottom:1013.995500px;}
.y109{bottom:1018.926000px;}
.y265{bottom:1020.720000px;}
.y64{bottom:1023.409500px;}
.y138{bottom:1024.306500px;}
.y33{bottom:1024.809000px;}
.y1b0{bottom:1024.998000px;}
.y2a5{bottom:1031.254500px;}
.y108{bottom:1037.755500px;}
.y264{bottom:1038.294000px;}
.y1af{bottom:1039.195500px;}
.y63{bottom:1042.239000px;}
.y137{bottom:1043.136000px;}
.y2a4{bottom:1048.515000px;}
.y1ae{bottom:1053.391500px;}
.y107{bottom:1056.585000px;}
.y62{bottom:1061.068500px;}
.y136{bottom:1061.965500px;}
.y32{bottom:1064.728500px;}
.y263{bottom:1064.835000px;}
.y2a3{bottom:1065.775500px;}
.y1ad{bottom:1067.589000px;}
.y106{bottom:1075.414500px;}
.y61{bottom:1079.898000px;}
.y135{bottom:1080.795000px;}
.y262{bottom:1082.409000px;}
.y2a2{bottom:1083.036000px;}
.y1ac{bottom:1088.988000px;}
.y31{bottom:1092.972000px;}
.y105{bottom:1094.244000px;}
.y60{bottom:1098.727500px;}
.y261{bottom:1099.983000px;}
.y2a1{bottom:1100.296500px;}
.y5f{bottom:1117.557000px;}
.y1ab{bottom:1119.037500px;}
.y5e{bottom:1177.662000px;}
.h24{height:24.272916px;}
.h27{height:30.126816px;}
.h9{height:30.461558px;}
.h25{height:30.478022px;}
.ha{height:30.712615px;}
.h1f{height:31.828453px;}
.h23{height:31.881347px;}
.h7{height:32.130000px;}
.h20{height:33.072749px;}
.h1e{height:34.430832px;}
.he{height:34.813397px;}
.h12{height:35.100320px;}
.h2b{height:36.798106px;}
.h2c{height:37.228493px;}
.hf{height:39.165235px;}
.h29{height:39.488026px;}
.h26{height:40.031466px;}
.hd{height:43.038432px;}
.h10{height:43.516637px;}
.h1d{height:43.622227px;}
.hb{height:43.875290px;}
.h1b{height:44.268047px;}
.h19{height:44.279648px;}
.h6{height:45.900000px;}
.h17{height:47.984449px;}
.h3{height:48.195000px;}
.h14{height:48.707613px;}
.h2a{height:49.117939px;}
.h1c{height:49.939453px;}
.h28{height:54.371558px;}
.h11{height:54.575123px;}
.h21{height:54.768749px;}
.h16{height:54.933398px;}
.h2{height:55.080000px;}
.h1a{height:55.599258px;}
.h15{height:61.159184px;}
.hc{height:77.469696px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h18{height:260.742000px;}
.h22{height:320.936040px;}
.h13{height:328.409400px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:457.143000px;}
.w4{width:544.452150px;}
.w6{width:569.295756px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x8{left:-210.653850px;}
.xf{left:-189.246000px;}
.x0{left:0.000000px;}
.x43{left:2.120796px;}
.xa{left:4.473150px;}
.x10{left:6.324000px;}
.x11{left:38.183894px;}
.xb{left:39.519150px;}
.x5{left:53.574000px;}
.x48{left:62.541000px;}
.x31{left:67.872000px;}
.x30{left:69.175500px;}
.x32{left:70.281000px;}
.x2e{left:73.327500px;}
.x2d{left:74.631000px;}
.x42{left:77.236500px;}
.x67{left:84.220500px;}
.x49{left:85.848000px;}
.x5d{left:92.365500px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x2c{left:130.696500px;}
.x45{left:142.933373px;}
.x5e{left:144.102000px;}
.x41{left:155.575500px;}
.x4a{left:163.650000px;}
.x2f{left:166.219500px;}
.x4b{left:170.512500px;}
.x5f{left:198.228000px;}
.x4{left:203.484001px;}
.x60{left:204.739500px;}
.x68{left:206.427000px;}
.x4c{left:209.107500px;}
.x61{left:211.309500px;}
.x62{left:217.821000px;}
.x4d{left:219.015000px;}
.x4e{left:231.340500px;}
.x2b{left:232.507500px;}
.x4f{left:240.523500px;}
.x63{left:243.492000px;}
.x6{left:249.591000px;}
.x64{left:255.204000px;}
.xd{left:256.357500px;}
.x65{left:264.076500px;}
.x33{left:270.888000px;}
.x7{left:281.479500px;}
.x34{left:286.647000px;}
.x19{left:288.802500px;}
.x25{left:292.879500px;}
.x1d{left:294.834000px;}
.x50{left:296.086500px;}
.x6a{left:297.150000px;}
.x2a{left:300.243000px;}
.x29{left:301.546500px;}
.x16{left:304.488000px;}
.xe{left:306.510000px;}
.x46{left:311.986500px;}
.x18{left:315.696000px;}
.x6b{left:319.032000px;}
.x17{left:320.764500px;}
.x6c{left:325.890000px;}
.x24{left:332.194500px;}
.x27{left:335.397000px;}
.x26{left:337.453500px;}
.x1b{left:340.395000px;}
.x15{left:345.177000px;}
.x22{left:346.839000px;}
.x23{left:348.351000px;}
.x20{left:349.701000px;}
.x6d{left:351.478500px;}
.x1f{left:352.690500px;}
.x1e{left:355.680000px;}
.x1c{left:358.680000px;}
.x6e{left:362.587500px;}
.x1a{left:363.982500px;}
.x21{left:367.156500px;}
.x47{left:376.275000px;}
.x37{left:379.060500px;}
.x38{left:385.485000px;}
.xc{left:388.329000px;}
.x51{left:392.209500px;}
.x6f{left:399.253500px;}
.x52{left:401.788500px;}
.x28{left:411.114000px;}
.x53{left:417.108000px;}
.x70{left:418.671000px;}
.x71{left:429.780000px;}
.x12{left:450.021782px;}
.x3{left:454.959000px;}
.x66{left:459.153000px;}
.x72{left:465.865500px;}
.x73{left:472.725000px;}
.x3b{left:493.683000px;}
.x74{left:501.081000px;}
.x3c{left:509.442000px;}
.x35{left:534.679500px;}
.x9{left:537.390150px;}
.x36{left:546.970500px;}
.x3d{left:563.506500px;}
.x44{left:567.500796px;}
.x75{left:574.126500px;}
.x3e{left:579.265500px;}
.x76{left:580.986000px;}
.x54{left:603.535500px;}
.x77{left:609.447000px;}
.x55{left:613.443000px;}
.x56{left:620.781000px;}
.x57{left:630.688500px;}
.x3f{left:658.293000px;}
.x39{left:670.065000px;}
.x40{left:674.052000px;}
.x3a{left:680.233500px;}
.x58{left:692.848500px;}
.x59{left:699.105000px;}
.x5a{left:737.734500px;}
.x78{left:743.391000px;}
.x79{left:750.117000px;}
.x5b{left:751.648500px;}
.x13{left:761.736000px;}
.x69{left:774.060000px;}
.x7a{left:792.337500px;}
.x7b{left:799.063500px;}
.x14{left:806.941500px;}
.x7c{left:826.101000px;}
.x5c{left:832.309500px;}
@media print{
.v1{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.285333pt;}
.v3{vertical-align:21.253333pt;}
.lsbe{letter-spacing:-0.277033pt;}
.lsa4{letter-spacing:-0.269338pt;}
.lsc1{letter-spacing:-0.261642pt;}
.lsd2{letter-spacing:-0.246252pt;}
.lsb9{letter-spacing:-0.223165pt;}
.lsd1{letter-spacing:-0.219318pt;}
.lsd0{letter-spacing:-0.215470pt;}
.lsce{letter-spacing:-0.207775pt;}
.ls5b{letter-spacing:-0.203072pt;}
.lscd{letter-spacing:-0.196232pt;}
.lsc5{letter-spacing:-0.180841pt;}
.lsb8{letter-spacing:-0.173146pt;}
.ls28{letter-spacing:-0.170474pt;}
.lsc7{letter-spacing:-0.165450pt;}
.ls24{letter-spacing:-0.164595pt;}
.lsc4{letter-spacing:-0.161603pt;}
.lsc3{letter-spacing:-0.153907pt;}
.lsa9{letter-spacing:-0.146212pt;}
.lsb0{letter-spacing:-0.142364pt;}
.lsb6{letter-spacing:-0.134669pt;}
.lscf{letter-spacing:-0.130821pt;}
.ls27{letter-spacing:-0.129325pt;}
.lsad{letter-spacing:-0.123126pt;}
.lsbb{letter-spacing:-0.119278pt;}
.ls2c{letter-spacing:-0.117568pt;}
.lsc9{letter-spacing:-0.115430pt;}
.ls57{letter-spacing:-0.112224pt;}
.lsbf{letter-spacing:-0.111583pt;}
.lsba{letter-spacing:-0.107735pt;}
.ls5d{letter-spacing:-0.106880pt;}
.lsc8{letter-spacing:-0.103887pt;}
.ls4f{letter-spacing:-0.101536pt;}
.lsc2{letter-spacing:-0.100040pt;}
.ls5c{letter-spacing:-0.096192pt;}
.ls2b{letter-spacing:-0.094054pt;}
.ls59{letter-spacing:-0.090848pt;}
.ls55{letter-spacing:-0.085504pt;}
.lsca{letter-spacing:-0.084649pt;}
.lsb7{letter-spacing:-0.080801pt;}
.ls56{letter-spacing:-0.080160pt;}
.lsc0{letter-spacing:-0.076954pt;}
.lsb2{letter-spacing:-0.073106pt;}
.ls21{letter-spacing:-0.070541pt;}
.lsd3{letter-spacing:-0.069258pt;}
.lsa5{letter-spacing:-0.065411pt;}
.ls1f{letter-spacing:-0.064662pt;}
.lsb1{letter-spacing:-0.061563pt;}
.ls2d{letter-spacing:-0.058784pt;}
.lsa6{letter-spacing:-0.057715pt;}
.lsb5{letter-spacing:-0.053868pt;}
.lsc6{letter-spacing:-0.050020pt;}
.lsa0{letter-spacing:-0.049029pt;}
.ls29{letter-spacing:-0.047027pt;}
.lsbd{letter-spacing:-0.046172pt;}
.ls5f{letter-spacing:-0.042752pt;}
.lscb{letter-spacing:-0.042324pt;}
.ls26{letter-spacing:-0.041149pt;}
.lsaa{letter-spacing:-0.038477pt;}
.ls2a{letter-spacing:-0.035270pt;}
.lsaf{letter-spacing:-0.034629pt;}
.ls54{letter-spacing:-0.033600pt;}
.ls58{letter-spacing:-0.032064pt;}
.lsac{letter-spacing:-0.030781pt;}
.ls25{letter-spacing:-0.029392pt;}
.ls1d{letter-spacing:-0.028090pt;}
.lsb4{letter-spacing:-0.026934pt;}
.ls51{letter-spacing:-0.026720pt;}
.ls4c{letter-spacing:-0.025536pt;}
.ls23{letter-spacing:-0.023514pt;}
.lsb3{letter-spacing:-0.023086pt;}
.ls52{letter-spacing:-0.021376pt;}
.lsa7{letter-spacing:-0.019238pt;}
.ls9e{letter-spacing:-0.018386pt;}
.ls2e{letter-spacing:-0.017635pt;}
.ls5e{letter-spacing:-0.016032pt;}
.lsbc{letter-spacing:-0.015391pt;}
.ls22{letter-spacing:-0.011757pt;}
.lsae{letter-spacing:-0.011543pt;}
.ls50{letter-spacing:-0.010688pt;}
.ls53{letter-spacing:-0.009600pt;}
.lsa8{letter-spacing:-0.007695pt;}
.ls20{letter-spacing:-0.005878pt;}
.ls4e{letter-spacing:-0.005344pt;}
.ls1e{letter-spacing:-0.004682pt;}
.ls4d{letter-spacing:-0.004256pt;}
.lsa3{letter-spacing:-0.003848pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd7{letter-spacing:0.000260pt;}
.ls66{letter-spacing:0.000387pt;}
.lsdc{letter-spacing:0.000441pt;}
.lsde{letter-spacing:0.000600pt;}
.lsdf{letter-spacing:0.000711pt;}
.lsda{letter-spacing:0.001408pt;}
.lsd{letter-spacing:0.002473pt;}
.lsd9{letter-spacing:0.002525pt;}
.ls76{letter-spacing:0.003848pt;}
.lsdd{letter-spacing:0.003924pt;}
.lsc{letter-spacing:0.004761pt;}
.ls3c{letter-spacing:0.005344pt;}
.ls16{letter-spacing:0.005878pt;}
.ls5{letter-spacing:0.006772pt;}
.ls71{letter-spacing:0.007695pt;}
.ls42{letter-spacing:0.010688pt;}
.ls97{letter-spacing:0.011543pt;}
.ls7d{letter-spacing:0.015391pt;}
.ls4b{letter-spacing:0.016032pt;}
.ls18{letter-spacing:0.017635pt;}
.ls7a{letter-spacing:0.019238pt;}
.ls13{letter-spacing:0.021120pt;}
.ls49{letter-spacing:0.021376pt;}
.ls6e{letter-spacing:0.023086pt;}
.ls14{letter-spacing:0.023514pt;}
.ls47{letter-spacing:0.026720pt;}
.ls84{letter-spacing:0.026934pt;}
.ls3f{letter-spacing:0.028800pt;}
.ls1b{letter-spacing:0.029392pt;}
.ls7b{letter-spacing:0.030781pt;}
.ls48{letter-spacing:0.032064pt;}
.ls3d{letter-spacing:0.033600pt;}
.ls77{letter-spacing:0.034629pt;}
.ls17{letter-spacing:0.035270pt;}
.ls11{letter-spacing:0.036960pt;}
.ls45{letter-spacing:0.037408pt;}
.ls79{letter-spacing:0.038477pt;}
.ls70{letter-spacing:0.042324pt;}
.ls44{letter-spacing:0.042752pt;}
.ls82{letter-spacing:0.046172pt;}
.ls12{letter-spacing:0.047520pt;}
.ls41{letter-spacing:0.048000pt;}
.ls81{letter-spacing:0.050020pt;}
.ls3e{letter-spacing:0.052800pt;}
.ls1a{letter-spacing:0.052906pt;}
.ls78{letter-spacing:0.053868pt;}
.ls40{letter-spacing:0.057600pt;}
.ls7c{letter-spacing:0.057715pt;}
.ls15{letter-spacing:0.058784pt;}
.ls6f{letter-spacing:0.061563pt;}
.ls46{letter-spacing:0.064128pt;}
.ls6a{letter-spacing:0.064351pt;}
.ls19{letter-spacing:0.064662pt;}
.ls90{letter-spacing:0.065411pt;}
.ls8d{letter-spacing:0.069258pt;}
.ls5a{letter-spacing:0.069472pt;}
.ls2f{letter-spacing:0.070541pt;}
.ls73{letter-spacing:0.076954pt;}
.ls3b{letter-spacing:0.080160pt;}
.ls85{letter-spacing:0.080801pt;}
.ls9b{letter-spacing:0.088497pt;}
.ls3a{letter-spacing:0.090848pt;}
.ls69{letter-spacing:0.091930pt;}
.ls30{letter-spacing:0.094054pt;}
.ls99{letter-spacing:0.096192pt;}
.lsa2{letter-spacing:0.098058pt;}
.ls4a{letter-spacing:0.106880pt;}
.lscc{letter-spacing:0.107735pt;}
.ls83{letter-spacing:0.111583pt;}
.ls93{letter-spacing:0.115430pt;}
.ls68{letter-spacing:0.122573pt;}
.ls43{letter-spacing:0.122912pt;}
.ls75{letter-spacing:0.123126pt;}
.lsab{letter-spacing:0.126973pt;}
.ls39{letter-spacing:0.157472pt;}
.ls38{letter-spacing:0.170240pt;}
.ls10{letter-spacing:0.173219pt;}
.lsf{letter-spacing:0.187264pt;}
.ls9f{letter-spacing:0.260467pt;}
.lsa1{letter-spacing:0.275789pt;}
.ls74{letter-spacing:0.292424pt;}
.ls60{letter-spacing:0.509060pt;}
.ls63{letter-spacing:0.514393pt;}
.ls72{letter-spacing:0.523284pt;}
.ls61{letter-spacing:0.528533pt;}
.ls62{letter-spacing:0.533867pt;}
.lse0{letter-spacing:0.597094pt;}
.ls64{letter-spacing:0.660800pt;}
.ls1{letter-spacing:0.717312pt;}
.ls8f{letter-spacing:0.754145pt;}
.ls3{letter-spacing:0.797008pt;}
.ls6{letter-spacing:0.799363pt;}
.ls91{letter-spacing:0.985006pt;}
.ls88{letter-spacing:1.212019pt;}
.ls8a{letter-spacing:1.215867pt;}
.ls89{letter-spacing:1.442880pt;}
.ls36{letter-spacing:1.859685pt;}
.lsd8{letter-spacing:2.104115pt;}
.ls87{letter-spacing:2.366323pt;}
.ls86{letter-spacing:2.597184pt;}
.ls80{letter-spacing:3.058906pt;}
.ls7e{letter-spacing:3.243398pt;}
.ls7f{letter-spacing:3.289766pt;}
.ls9a{letter-spacing:3.516780pt;}
.ls98{letter-spacing:3.520627pt;}
.ls92{letter-spacing:3.747640pt;}
.ls8b{letter-spacing:3.978501pt;}
.ls8c{letter-spacing:4.209362pt;}
.ls9c{letter-spacing:4.210690pt;}
.ls8e{letter-spacing:4.230075pt;}
.ls94{letter-spacing:4.440223pt;}
.ls95{letter-spacing:4.671084pt;}
.ls96{letter-spacing:4.698730pt;}
.ls9d{letter-spacing:4.901944pt;}
.ls6c{letter-spacing:7.550484pt;}
.ls6d{letter-spacing:7.553549pt;}
.ls2{letter-spacing:10.626533pt;}
.ls67{letter-spacing:10.627330pt;}
.lsdb{letter-spacing:11.742040pt;}
.lsd6{letter-spacing:12.077255pt;}
.lsd5{letter-spacing:12.373094pt;}
.lsd4{letter-spacing:12.964663pt;}
.ls34{letter-spacing:13.017797pt;}
.ls4{letter-spacing:13.124065pt;}
.lsa{letter-spacing:13.283467pt;}
.ls32{letter-spacing:13.336601pt;}
.lsb{letter-spacing:13.389734pt;}
.ls31{letter-spacing:13.496002pt;}
.ls37{letter-spacing:13.549136pt;}
.ls9{letter-spacing:14.877483pt;}
.ls65{letter-spacing:15.963733pt;}
.ls33{letter-spacing:16.896570pt;}
.ls35{letter-spacing:17.002837pt;}
.ls8{letter-spacing:19.128192pt;}
.ls7{letter-spacing:19.234460pt;}
.lse{letter-spacing:19.925200pt;}
.ls1c{letter-spacing:20.403405pt;}
.ls6b{letter-spacing:1346.958628pt;}
.ws12c{word-spacing:-38.476800pt;}
.ws123{word-spacing:-30.643200pt;}
.ws4a{word-spacing:-14.080475pt;}
.ws1a7{word-spacing:-14.059315pt;}
.wsbc{word-spacing:-13.440160pt;}
.ws2a{word-spacing:-13.283467pt;}
.ws190{word-spacing:-11.955200pt;}
.ws61{word-spacing:-11.891264pt;}
.ws62{word-spacing:-11.704000pt;}
.wsba{word-spacing:-10.810240pt;}
.wsbb{word-spacing:-10.640000pt;}
.wsb{word-spacing:-10.626800pt;}
.wsa{word-spacing:-9.298400pt;}
.ws103{word-spacing:-3.294300pt;}
.ws19a{word-spacing:-2.869248pt;}
.wsda{word-spacing:-2.773536pt;}
.wsd9{word-spacing:-2.714752pt;}
.ws7a{word-spacing:-2.368995pt;}
.ws43{word-spacing:-2.337890pt;}
.ws7b{word-spacing:-2.304333pt;}
.ws18a{word-spacing:-2.104115pt;}
.ws4e{word-spacing:-1.965953pt;}
.ws11a{word-spacing:-1.912819pt;}
.ws11{word-spacing:-1.865011pt;}
.wsf1{word-spacing:-1.827648pt;}
.ws17c{word-spacing:-1.806551pt;}
.ws99{word-spacing:-1.734128pt;}
.wsf2{word-spacing:-1.726112pt;}
.ws180{word-spacing:-1.700284pt;}
.wsa0{word-spacing:-1.698858pt;}
.ws9a{word-spacing:-1.669466pt;}
.ws11e{word-spacing:-1.647150pt;}
.ws98{word-spacing:-1.598925pt;}
.wsea{word-spacing:-1.549760pt;}
.ws3c{word-spacing:-1.487748pt;}
.ws19d{word-spacing:-1.482445pt;}
.ws1aa{word-spacing:-1.386803pt;}
.ws1bf{word-spacing:-1.338982pt;}
.ws11b{word-spacing:-1.328347pt;}
.ws8c{word-spacing:-1.281491pt;}
.wsdb{word-spacing:-1.223776pt;}
.wse9{word-spacing:-1.207744pt;}
.wsec{word-spacing:-1.197056pt;}
.ws8b{word-spacing:-1.187437pt;}
.ws102{word-spacing:-1.168945pt;}
.ws17a{word-spacing:-1.115811pt;}
.wseb{word-spacing:-1.084832pt;}
.ws1f{word-spacing:-1.062677pt;}
.ws185{word-spacing:-1.052058pt;}
.ws7c{word-spacing:-1.022842pt;}
.ws10f{word-spacing:-1.009543pt;}
.ws45{word-spacing:-0.903276pt;}
.wsf4{word-spacing:-0.881760pt;}
.ws1bd{word-spacing:-0.860774pt;}
.ws52{word-spacing:-0.850142pt;}
.wsf3{word-spacing:-0.844352pt;}
.ws65{word-spacing:-0.797008pt;}
.wsf0{word-spacing:-0.780224pt;}
.ws10{word-spacing:-0.765133pt;}
.ws48{word-spacing:-0.743874pt;}
.ws37{word-spacing:-0.690740pt;}
.wsef{word-spacing:-0.673344pt;}
.wsd{word-spacing:-0.669491pt;}
.ws33{word-spacing:-0.637606pt;}
.ws18{word-spacing:-0.621670pt;}
.wsd7{word-spacing:-0.593184pt;}
.ws38{word-spacing:-0.584473pt;}
.ws4d{word-spacing:-0.531339pt;}
.ws17{word-spacing:-0.526029pt;}
.ws8e{word-spacing:-0.523178pt;}
.ws1bc{word-spacing:-0.478208pt;}
.ws49{word-spacing:-0.478205pt;}
.wsab{word-spacing:-0.425071pt;}
.wse{word-spacing:-0.382566pt;}
.ws67{word-spacing:-0.371937pt;}
.wse8{word-spacing:-0.342016pt;}
.ws9e{word-spacing:-0.329190pt;}
.ws46{word-spacing:-0.318803pt;}
.ws129{word-spacing:-0.306432pt;}
.wse7{word-spacing:-0.293920pt;}
.ws124{word-spacing:-0.291110pt;}
.wse3{word-spacing:-0.277888pt;}
.ws70{word-spacing:-0.271533pt;}
.ws27{word-spacing:-0.265669pt;}
.wsfb{word-spacing:-0.261856pt;}
.wsc2{word-spacing:-0.246848pt;}
.ws9b{word-spacing:-0.241014pt;}
.ws1c0{word-spacing:-0.239104pt;}
.ws80{word-spacing:-0.229258pt;}
.ws91{word-spacing:-0.217501pt;}
.ws39{word-spacing:-0.212535pt;}
.ws90{word-spacing:-0.199866pt;}
.wsbd{word-spacing:-0.191283pt;}
.ws138{word-spacing:-0.165450pt;}
.ws136{word-spacing:-0.161603pt;}
.ws24{word-spacing:-0.159402pt;}
.ws165{word-spacing:-0.153907pt;}
.ws125{word-spacing:-0.153216pt;}
.ws13c{word-spacing:-0.150060pt;}
.ws16c{word-spacing:-0.146212pt;}
.ws192{word-spacing:-0.143462pt;}
.ws141{word-spacing:-0.134669pt;}
.ws12a{word-spacing:-0.128701pt;}
.ws170{word-spacing:-0.126973pt;}
.ws156{word-spacing:-0.119278pt;}
.ws137{word-spacing:-0.115430pt;}
.ws15f{word-spacing:-0.107735pt;}
.ws3a{word-spacing:-0.106268pt;}
.ws163{word-spacing:-0.103887pt;}
.ws153{word-spacing:-0.100040pt;}
.ws146{word-spacing:-0.096192pt;}
.ws198{word-spacing:-0.095642pt;}
.ws127{word-spacing:-0.094994pt;}
.ws13e{word-spacing:-0.092344pt;}
.ws14e{word-spacing:-0.088497pt;}
.ws150{word-spacing:-0.084649pt;}
.ws131{word-spacing:-0.080801pt;}
.ws71{word-spacing:-0.079587pt;}
.ws140{word-spacing:-0.076954pt;}
.ws13d{word-spacing:-0.073106pt;}
.wsc3{word-spacing:-0.072352pt;}
.ws145{word-spacing:-0.069258pt;}
.ws155{word-spacing:-0.065411pt;}
.ws12d{word-spacing:-0.061563pt;}
.ws143{word-spacing:-0.057715pt;}
.ws6f{word-spacing:-0.056179pt;}
.ws14c{word-spacing:-0.053868pt;}
.ws2b{word-spacing:-0.053134pt;}
.wsc1{word-spacing:-0.051072pt;}
.ws169{word-spacing:-0.050020pt;}
.ws187{word-spacing:-0.047821pt;}
.ws135{word-spacing:-0.046172pt;}
.ws139{word-spacing:-0.042324pt;}
.ws14d{word-spacing:-0.038477pt;}
.wsd3{word-spacing:-0.037408pt;}
.ws12b{word-spacing:-0.034629pt;}
.ws133{word-spacing:-0.030781pt;}
.ws126{word-spacing:-0.030643pt;}
.ws197{word-spacing:-0.027138pt;}
.ws13f{word-spacing:-0.026934pt;}
.ws158{word-spacing:-0.023086pt;}
.ws132{word-spacing:-0.019238pt;}
.ws149{word-spacing:-0.015391pt;}
.ws122{word-spacing:-0.012257pt;}
.ws1b9{word-spacing:-0.011571pt;}
.ws14a{word-spacing:-0.011543pt;}
.ws1cc{word-spacing:-0.009830pt;}
.ws18e{word-spacing:-0.009455pt;}
.ws19f{word-spacing:-0.009190pt;}
.ws1b1{word-spacing:-0.009045pt;}
.ws196{word-spacing:-0.009020pt;}
.ws13a{word-spacing:-0.007695pt;}
.ws199{word-spacing:-0.006417pt;}
.ws1b0{word-spacing:-0.004267pt;}
.ws142{word-spacing:-0.003848pt;}
.ws195{word-spacing:-0.003430pt;}
.ws1ae{word-spacing:-0.003157pt;}
.ws1c9{word-spacing:-0.003081pt;}
.ws1cd{word-spacing:-0.002935pt;}
.ws1b5{word-spacing:-0.001638pt;}
.ws0{word-spacing:0.000000pt;}
.ws2e{word-spacing:0.003199pt;}
.ws16b{word-spacing:0.003848pt;}
.ws159{word-spacing:0.007695pt;}
.ws164{word-spacing:0.011543pt;}
.ws14b{word-spacing:0.015391pt;}
.ws128{word-spacing:0.018386pt;}
.ws130{word-spacing:0.019238pt;}
.ws147{word-spacing:0.023086pt;}
.ws12f{word-spacing:0.026934pt;}
.ws174{word-spacing:0.030781pt;}
.ws148{word-spacing:0.034629pt;}
.ws85{word-spacing:0.035270pt;}
.ws15c{word-spacing:0.038477pt;}
.ws9d{word-spacing:0.041149pt;}
.ws14f{word-spacing:0.042324pt;}
.ws16a{word-spacing:0.046172pt;}
.ws1a{word-spacing:0.047821pt;}
.ws28{word-spacing:0.053134pt;}
.ws15e{word-spacing:0.061563pt;}
.ws167{word-spacing:0.065411pt;}
.ws154{word-spacing:0.069258pt;}
.wsfa{word-spacing:0.069472pt;}
.ws15b{word-spacing:0.073106pt;}
.wsd2{word-spacing:0.074816pt;}
.ws168{word-spacing:0.076954pt;}
.wsca{word-spacing:0.080160pt;}
.ws157{word-spacing:0.080801pt;}
.ws13b{word-spacing:0.084649pt;}
.ws9c{word-spacing:0.088176pt;}
.ws16f{word-spacing:0.092344pt;}
.ws19e{word-spacing:0.095642pt;}
.wsc8{word-spacing:0.096192pt;}
.ws144{word-spacing:0.103887pt;}
.ws20{word-spacing:0.106268pt;}
.ws134{word-spacing:0.107735pt;}
.wsa1{word-spacing:0.111690pt;}
.wsc9{word-spacing:0.112224pt;}
.wsd1{word-spacing:0.115200pt;}
.ws160{word-spacing:0.115430pt;}
.ws7e{word-spacing:0.117568pt;}
.ws161{word-spacing:0.123126pt;}
.ws166{word-spacing:0.126973pt;}
.ws151{word-spacing:0.134669pt;}
.ws162{word-spacing:0.142364pt;}
.ws188{word-spacing:0.143462pt;}
.wsfc{word-spacing:0.144288pt;}
.ws16d{word-spacing:0.157755pt;}
.ws75{word-spacing:0.158400pt;}
.ws35{word-spacing:0.159402pt;}
.ws16e{word-spacing:0.169298pt;}
.ws171{word-spacing:0.176993pt;}
.ws172{word-spacing:0.180841pt;}
.ws152{word-spacing:0.184689pt;}
.wsc7{word-spacing:0.187040pt;}
.wsbe{word-spacing:0.191283pt;}
.ws173{word-spacing:0.207775pt;}
.ws8f{word-spacing:0.211622pt;}
.ws2f{word-spacing:0.212535pt;}
.ws15d{word-spacing:0.223165pt;}
.ws12e{word-spacing:0.230861pt;}
.ws1b3{word-spacing:0.236553pt;}
.ws15a{word-spacing:0.238556pt;}
.ws1a3{word-spacing:0.239104pt;}
.ws7f{word-spacing:0.258650pt;}
.ws23{word-spacing:0.265669pt;}
.ws13{word-spacing:0.286925pt;}
.ws56{word-spacing:0.318803pt;}
.ws58{word-spacing:0.371937pt;}
.wsc{word-spacing:0.406307pt;}
.wsb4{word-spacing:0.425071pt;}
.ws189{word-spacing:0.478208pt;}
.ws5b{word-spacing:0.531339pt;}
.ws5c{word-spacing:0.584473pt;}
.ws1b2{word-spacing:0.621670pt;}
.ws1e{word-spacing:0.637606pt;}
.wsd8{word-spacing:0.662656pt;}
.ws14{word-spacing:0.669491pt;}
.ws1ca{word-spacing:0.717312pt;}
.wsb0{word-spacing:0.743874pt;}
.ws1a9{word-spacing:0.761956pt;}
.ws194{word-spacing:0.765133pt;}
.ws17d{word-spacing:0.797008pt;}
.ws89{word-spacing:0.846490pt;}
.wsb2{word-spacing:0.850142pt;}
.ws1be{word-spacing:0.860774pt;}
.ws119{word-spacing:0.903276pt;}
.ws1a2{word-spacing:0.908595pt;}
.wsb9{word-spacing:0.956410pt;}
.wsc5{word-spacing:0.956576pt;}
.wsfd{word-spacing:0.988640pt;}
.wsc6{word-spacing:1.052768pt;}
.ws60{word-spacing:1.062677pt;}
.ws6a{word-spacing:1.115811pt;}
.ws76{word-spacing:1.134531pt;}
.ws68{word-spacing:1.168945pt;}
.ws16{word-spacing:1.195520pt;}
.ws77{word-spacing:1.216829pt;}
.ws9{word-spacing:1.227389pt;}
.ws8d{word-spacing:1.246221pt;}
.wsa2{word-spacing:1.275213pt;}
.ws63{word-spacing:1.291162pt;}
.ws88{word-spacing:1.322640pt;}
.wsbf{word-spacing:1.328347pt;}
.ws64{word-spacing:1.338982pt;}
.wsdd{word-spacing:1.378752pt;}
.ws54{word-spacing:1.381481pt;}
.wsf9{word-spacing:1.384096pt;}
.wsf7{word-spacing:1.389440pt;}
.ws1d{word-spacing:1.434614pt;}
.ws8a{word-spacing:1.469600pt;}
.wsdc{word-spacing:1.480288pt;}
.wsad{word-spacing:1.487748pt;}
.wsa5{word-spacing:1.540882pt;}
.ws1b7{word-spacing:1.578086pt;}
.ws3d{word-spacing:1.594016pt;}
.ws1b8{word-spacing:1.625907pt;}
.ws4b{word-spacing:1.647150pt;}
.wse0{word-spacing:1.651296pt;}
.wse2{word-spacing:1.661984pt;}
.ws1ba{word-spacing:1.673728pt;}
.wsed{word-spacing:1.683360pt;}
.ws59{word-spacing:1.700284pt;}
.wsee{word-spacing:1.710080pt;}
.wse1{word-spacing:1.715424pt;}
.wsf8{word-spacing:1.726112pt;}
.ws1c5{word-spacing:1.769370pt;}
.wse5{word-spacing:1.774208pt;}
.wse4{word-spacing:1.800928pt;}
.ws5d{word-spacing:1.806551pt;}
.ws1c8{word-spacing:1.960653pt;}
.wsd4{word-spacing:1.961248pt;}
.ws25{word-spacing:1.965953pt;}
.ws55{word-spacing:2.072221pt;}
.ws1c3{word-spacing:2.104115pt;}
.ws177{word-spacing:2.125355pt;}
.ws12{word-spacing:2.199757pt;}
.ws18c{word-spacing:2.231616pt;}
.ws106{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.ws2{word-spacing:2.234265pt;}
.ws32{word-spacing:2.284756pt;}
.wsaa{word-spacing:2.337890pt;}
.wscc{word-spacing:2.352000pt;}
.wscb{word-spacing:2.371200pt;}
.wsaf{word-spacing:2.391024pt;}
.ws191{word-spacing:2.391040pt;}
.wscd{word-spacing:2.414400pt;}
.ws1b4{word-spacing:2.438861pt;}
.wsa3{word-spacing:2.444158pt;}
.ws1ad{word-spacing:2.534502pt;}
.ws42{word-spacing:2.550426pt;}
.ws110{word-spacing:2.550432pt;}
.ws7d{word-spacing:2.562982pt;}
.ws66{word-spacing:2.603559pt;}
.ws183{word-spacing:2.656693pt;}
.ws193{word-spacing:2.677965pt;}
.ws44{word-spacing:2.709827pt;}
.ws1af{word-spacing:2.725786pt;}
.ws53{word-spacing:2.762961pt;}
.ws1c6{word-spacing:2.773606pt;}
.ws2c{word-spacing:2.816095pt;}
.ws15{word-spacing:2.821427pt;}
.ws1bb{word-spacing:2.861978pt;}
.ws2d{word-spacing:2.869229pt;}
.ws18f{word-spacing:2.869248pt;}
.wse6{word-spacing:2.896448pt;}
.ws1ab{word-spacing:2.907122pt;}
.ws1ac{word-spacing:2.917069pt;}
.ws26{word-spacing:2.922363pt;}
.ws184{word-spacing:2.963971pt;}
.ws19{word-spacing:2.975129pt;}
.wsa6{word-spacing:2.975497pt;}
.ws18d{word-spacing:3.012710pt;}
.wsb7{word-spacing:3.028630pt;}
.wsa4{word-spacing:3.081764pt;}
.ws1ce{word-spacing:3.108352pt;}
.ws1c{word-spacing:3.134898pt;}
.ws1a4{word-spacing:3.156173pt;}
.ws1b{word-spacing:3.188032pt;}
.ws1a5{word-spacing:3.203994pt;}
.ws29{word-spacing:3.241166pt;}
.wsb1{word-spacing:3.294300pt;}
.wsd0{word-spacing:3.307200pt;}
.wscf{word-spacing:3.336000pt;}
.ws4c{word-spacing:3.347434pt;}
.wsce{word-spacing:3.398400pt;}
.ws5a{word-spacing:3.400567pt;}
.ws3f{word-spacing:3.453701pt;}
.ws181{word-spacing:3.506835pt;}
.ws40{word-spacing:3.613103pt;}
.wsde{word-spacing:3.617888pt;}
.wsdf{word-spacing:3.633920pt;}
.ws34{word-spacing:3.666237pt;}
.ws57{word-spacing:3.719371pt;}
.ws74{word-spacing:4.007520pt;}
.ws73{word-spacing:4.018080pt;}
.wsf{word-spacing:4.064768pt;}
.ws17b{word-spacing:4.091308pt;}
.wsa7{word-spacing:4.144442pt;}
.wsac{word-spacing:4.197575pt;}
.wsa9{word-spacing:4.250709pt;}
.ws94{word-spacing:4.285354pt;}
.ws93{word-spacing:4.302989pt;}
.ws47{word-spacing:4.303843pt;}
.ws182{word-spacing:4.356977pt;}
.ws22{word-spacing:4.410111pt;}
.ws1cb{word-spacing:4.447334pt;}
.ws30{word-spacing:4.569513pt;}
.ws31{word-spacing:4.622646pt;}
.ws92{word-spacing:4.673328pt;}
.ws69{word-spacing:4.675780pt;}
.ws78{word-spacing:4.679206pt;}
.ws21{word-spacing:4.728914pt;}
.ws79{word-spacing:4.743869pt;}
.ws17e{word-spacing:4.835182pt;}
.ws7{word-spacing:4.872362pt;}
.ws11c{word-spacing:4.888316pt;}
.wsd5{word-spacing:4.889760pt;}
.ws11d{word-spacing:4.908215pt;}
.ws4f{word-spacing:4.941450pt;}
.wsd6{word-spacing:4.969920pt;}
.wsc0{word-spacing:4.994583pt;}
.ws9f{word-spacing:5.002518pt;}
.ws96{word-spacing:5.073059pt;}
.ws95{word-spacing:5.090694pt;}
.ws1c2{word-spacing:5.116826pt;}
.ws176{word-spacing:5.153985pt;}
.ws1a0{word-spacing:5.164646pt;}
.ws5e{word-spacing:5.207119pt;}
.ws1a6{word-spacing:5.451571pt;}
.ws41{word-spacing:5.525922pt;}
.ws186{word-spacing:5.595034pt;}
.ws178{word-spacing:5.738458pt;}
.ws51{word-spacing:5.844725pt;}
.wsb8{word-spacing:5.897859pt;}
.ws50{word-spacing:5.950993pt;}
.ws81{word-spacing:6.101779pt;}
.ws17f{word-spacing:6.110395pt;}
.ws82{word-spacing:6.119414pt;}
.ws105{word-spacing:6.216662pt;}
.ws1a1{word-spacing:6.216704pt;}
.ws175{word-spacing:6.264525pt;}
.wsb3{word-spacing:6.269796pt;}
.ws1b6{word-spacing:6.407987pt;}
.wsb5{word-spacing:6.429198pt;}
.ws1c1{word-spacing:6.455808pt;}
.wsb6{word-spacing:6.482332pt;}
.ws104{word-spacing:6.535466pt;}
.ws1a8{word-spacing:6.551450pt;}
.ws5f{word-spacing:6.641733pt;}
.ws6b{word-spacing:6.694867pt;}
.ws97{word-spacing:6.766038pt;}
.ws36{word-spacing:6.907403pt;}
.ws6e{word-spacing:6.960537pt;}
.ws1c4{word-spacing:7.220941pt;}
.ws179{word-spacing:7.438741pt;}
.ws3b{word-spacing:7.491875pt;}
.wsf6{word-spacing:8.053408pt;}
.ws84{word-spacing:8.206246pt;}
.ws83{word-spacing:8.323814pt;}
.wsf5{word-spacing:8.422144pt;}
.ws3e{word-spacing:8.448285pt;}
.ws86{word-spacing:9.593549pt;}
.ws87{word-spacing:9.622941pt;}
.wsc4{word-spacing:10.329312pt;}
.ws6{word-spacing:10.525789pt;}
.ws72{word-spacing:11.362243pt;}
.ws19b{word-spacing:11.716096pt;}
.ws5{word-spacing:11.827565pt;}
.ws3{word-spacing:13.761632pt;}
.ws8{word-spacing:14.282342pt;}
.wsfe{word-spacing:14.482240pt;}
.ws6c{word-spacing:16.346473pt;}
.wsae{word-spacing:16.466956pt;}
.wsa8{word-spacing:16.858915pt;}
.ws19c{word-spacing:17.215488pt;}
.ws1c7{word-spacing:19.941274pt;}
.ws4{word-spacing:26.011518pt;}
.ws6d{word-spacing:44.848760pt;}
.ws10d{word-spacing:75.322758pt;}
.ws10c{word-spacing:75.857923pt;}
.ws10e{word-spacing:93.048261pt;}
.ws10b{word-spacing:93.090768pt;}
.ws18b{word-spacing:126.049110pt;}
.ws109{word-spacing:133.217565pt;}
.ws120{word-spacing:149.582837pt;}
.ws113{word-spacing:149.597109pt;}
.ws11f{word-spacing:151.495661pt;}
.ws121{word-spacing:161.697389pt;}
.ws116{word-spacing:169.220000pt;}
.ws111{word-spacing:171.431538pt;}
.ws117{word-spacing:205.649834pt;}
.ws115{word-spacing:206.152910pt;}
.ws112{word-spacing:223.375336pt;}
.ws114{word-spacing:246.020000pt;}
.ws118{word-spacing:280.972592pt;}
.ws107{word-spacing:305.711782pt;}
.ws108{word-spacing:312.810485pt;}
.wsff{word-spacing:492.913491pt;}
.ws101{word-spacing:503.540291pt;}
.ws100{word-spacing:508.853691pt;}
.ws10a{word-spacing:1312.154757pt;}
._b{margin-left:-6.073242pt;}
._e{margin-left:-4.356985pt;}
._1{margin-left:-2.720142pt;}
._4{margin-left:-1.301776pt;}
._13{width:1.317757pt;}
._85{width:2.922361pt;}
._86{width:9.748849pt;}
._0{width:10.860531pt;}
._14{width:11.875415pt;}
._6{width:13.177232pt;}
._7{width:14.824448pt;}
._a{width:16.450355pt;}
._9{width:17.837158pt;}
._18{width:19.200880pt;}
._15{width:20.137743pt;}
._c{width:21.519360pt;}
._2{width:22.502128pt;}
._8{width:23.623475pt;}
._12{width:25.334265pt;}
._d{width:26.407532pt;}
._3{width:27.783619pt;}
._5{width:29.648896pt;}
._19{width:30.923910pt;}
._11{width:32.305398pt;}
._68{width:34.107256pt;}
._16{width:35.164030pt;}
._1a{width:36.981171pt;}
._47{width:86.508652pt;}
._5f{width:102.102294pt;}
._43{width:103.717568pt;}
._4c{width:110.391198pt;}
._60{width:117.447394pt;}
._45{width:120.252869pt;}
._42{width:122.080678pt;}
._49{width:123.015837pt;}
._40{width:124.163531pt;}
._4b{width:127.904165pt;}
._62{width:130.199554pt;}
._3c{width:133.217565pt;}
._3d{width:134.407766pt;}
._61{width:135.853011pt;}
._3b{width:136.788170pt;}
._4d{width:137.978371pt;}
._3e{width:139.126066pt;}
._6b{width:141.558842pt;}
._6c{width:143.917230pt;}
._3f{width:145.034566pt;}
._63{width:146.967037pt;}
._6a{width:151.824275pt;}
._4f{width:170.241336pt;}
._4e{width:173.471883pt;}
._50{width:177.680096pt;}
._5a{width:178.891164pt;}
._55{width:180.036343pt;}
._5b{width:183.779492pt;}
._5d{width:185.773007pt;}
._65{width:195.618134pt;}
._53{width:204.162082pt;}
._57{width:214.831389pt;}
._52{width:222.802354pt;}
._5c{width:224.229006pt;}
._59{width:228.136142pt;}
._54{width:234.002136pt;}
._64{width:253.703610pt;}
._66{width:272.386138pt;}
._58{width:274.407129pt;}
._56{width:291.026410pt;}
._51{width:292.172374pt;}
._4a{width:302.948814pt;}
._33{width:327.347947pt;}
._37{width:339.972586pt;}
._36{width:341.800395pt;}
._38{width:342.735554pt;}
._35{width:343.883248pt;}
._34{width:346.433680pt;}
._39{width:347.623882pt;}
._67{width:387.623157pt;}
._1d{width:396.677190pt;}
._21{width:399.185115pt;}
._2e{width:424.078387pt;}
._20{width:494.783808pt;}
._48{width:502.520118pt;}
._1f{width:503.540291pt;}
._1e{width:512.041731pt;}
._2d{width:514.167091pt;}
._28{width:524.793891pt;}
._2f{width:535.420691pt;}
._1c{width:550.043168pt;}
._2c{width:552.678614pt;}
._2a{width:555.951669pt;}
._31{width:564.835674pt;}
._22{width:582.603683pt;}
._30{width:607.852960pt;}
._2b{width:610.913478pt;}
._26{width:615.716792pt;}
._25{width:626.343592pt;}
._72{width:632.221822pt;}
._32{width:634.802525pt;}
._24{width:636.927885pt;}
._27{width:645.344310pt;}
._23{width:647.639699pt;}
._29{width:678.223626pt;}
._70{width:692.805187pt;}
._46{width:701.793872pt;}
._78{width:730.854240pt;}
._f{width:783.363589pt;}
._7d{width:849.092694pt;}
._3a{width:887.210278pt;}
._44{width:901.067626pt;}
._7a{width:903.581318pt;}
._79{width:982.431750pt;}
._76{width:985.072496pt;}
._69{width:1099.262181pt;}
._41{width:1100.383886pt;}
._7b{width:1126.482563pt;}
._75{width:1133.623734pt;}
._6d{width:1148.910304pt;}
._6f{width:1176.321987pt;}
._80{width:1191.385395pt;}
._6e{width:1197.857082pt;}
._71{width:1228.247823pt;}
._74{width:1237.830705pt;}
._7c{width:1311.187545pt;}
._7f{width:1348.814401pt;}
._77{width:1423.352382pt;}
._73{width:1484.102597pt;}
._81{width:1505.325070pt;}
._84{width:1589.815862pt;}
._82{width:1651.185302pt;}
._83{width:1654.681501pt;}
._1b{width:1871.343523pt;}
._7e{width:1984.020304pt;}
._17{width:2058.609651pt;}
._5e{width:2234.664000pt;}
._10{width:2255.917333pt;}
.fs13{font-size:30.643200pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs14{font-size:38.476800pt;}
.fs12{font-size:40.381867pt;}
.fs8{font-size:42.507200pt;}
.fsd{font-size:42.560000pt;}
.fs10{font-size:44.292800pt;}
.fsa{font-size:46.816000pt;}
.fs9{font-size:47.820800pt;}
.fsf{font-size:48.000000pt;}
.fsc{font-size:52.800000pt;}
.fs6{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fse{font-size:53.440000pt;}
.fs11{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fsb{font-size:58.784000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:95.641600pt;}
.yc1{bottom:-783.639560pt;}
.ye4{bottom:-674.944855pt;}
.ye3{bottom:-656.201577pt;}
.ye2{bottom:-637.370122pt;}
.y163{bottom:-630.627600pt;}
.ye1{bottom:-618.538668pt;}
.ye0{bottom:-599.795390pt;}
.ydf{bottom:-580.963935pt;}
.y187{bottom:-567.495008pt;}
.yde{bottom:-562.220657pt;}
.y186{bottom:-550.375504pt;}
.ydd{bottom:-543.389202pt;}
.y185{bottom:-533.336160pt;}
.ydc{bottom:-524.557748pt;}
.y184{bottom:-516.216656pt;}
.ydb{bottom:-505.814470pt;}
.y183{bottom:-499.097152pt;}
.yda{bottom:-486.983015pt;}
.y182{bottom:-482.057808pt;}
.yd9{bottom:-468.239737pt;}
.y181{bottom:-464.938304pt;}
.yd8{bottom:-449.408282pt;}
.y180{bottom:-447.898960pt;}
.y17f{bottom:-430.779456pt;}
.yd7{bottom:-430.576828pt;}
.y217{bottom:-417.082272pt;}
.y17e{bottom:-413.659952pt;}
.yd6{bottom:-411.832080pt;}
.y17d{bottom:-396.620608pt;}
.yd5{bottom:-393.000626pt;}
.y17c{bottom:-379.501104pt;}
.y236{bottom:-374.285115pt;}
.yd4{bottom:-374.169171pt;}
.y235{bottom:-361.957056pt;}
.y17b{bottom:-358.460440pt;}
.yd3{bottom:-355.425893pt;}
.y234{bottom:-349.688728pt;}
.y233{bottom:-337.362685pt;}
.yd2{bottom:-336.594438pt;}
.y17a{bottom:-325.341000pt;}
.y232{bottom:-325.036643pt;}
.yd1{bottom:-317.851160pt;}
.y231{bottom:-312.768315pt;}
.y179{bottom:-308.221496pt;}
.y230{bottom:-300.441575pt;}
.yd0{bottom:-299.019706pt;}
.y178{bottom:-291.182152pt;}
.y22f{bottom:-288.172285pt;}
.ycf{bottom:-280.188251pt;}
.y22e{bottom:-275.846243pt;}
.y177{bottom:-274.062648pt;}
.y22d{bottom:-263.520200pt;}
.yce{bottom:-261.443503pt;}
.y176{bottom:-256.943144pt;}
.y22c{bottom:-251.250685pt;}
.ycd{bottom:-242.612049pt;}
.y175{bottom:-239.903800pt;}
.y22b{bottom:-238.924643pt;}
.y22a{bottom:-226.656315pt;}
.ycc{bottom:-223.868770pt;}
.y174{bottom:-222.784296pt;}
.y229{bottom:-214.328160pt;}
.y173{bottom:-205.744952pt;}
.y228{bottom:-202.002117pt;}
.ycb{bottom:-200.637334pt;}
.y227{bottom:-189.733789pt;}
.y172{bottom:-188.625448pt;}
.y226{bottom:-177.407747pt;}
.y171{bottom:-171.505944pt;}
.y225{bottom:-165.081704pt;}
.yca{bottom:-164.205950pt;}
.y170{bottom:-154.466600pt;}
.y224{bottom:-152.811928pt;}
.yc9{bottom:-145.462671pt;}
.y223{bottom:-140.485885pt;}
.y16f{bottom:-137.347096pt;}
.y222{bottom:-128.217558pt;}
.yc8{bottom:-126.631217pt;}
.y16e{bottom:-120.306416pt;}
.y221{bottom:-115.891515pt;}
.yc7{bottom:-107.886469pt;}
.y220{bottom:-103.565132pt;}
.y16d{bottom:-99.186928pt;}
.y21f{bottom:-91.296804pt;}
.yc6{bottom:-89.055014pt;}
.y21e{bottom:-78.970762pt;}
.y16c{bottom:-78.147600pt;}
.yc5{bottom:-70.223560pt;}
.y21d{bottom:-66.699905pt;}
.y21c{bottom:-54.373862pt;}
.y16b{bottom:-45.348000pt;}
.y21b{bottom:-42.047820pt;}
.yc4{bottom:-34.232000pt;}
.y16a{bottom:-29.907600pt;}
.y21a{bottom:-29.779492pt;}
.y219{bottom:-17.453449pt;}
.yc3{bottom:-17.247560pt;}
.y169{bottom:-14.547600pt;}
.y218{bottom:-2.074272pt;}
.y0{bottom:0.000000pt;}
.yc2{bottom:4.664440pt;}
.y168{bottom:5.372472pt;}
.y5d{bottom:28.346667pt;}
.y4{bottom:86.333337pt;}
.y238{bottom:89.266667pt;}
.y20c{bottom:92.108000pt;}
.y30{bottom:93.018667pt;}
.y1df{bottom:98.846667pt;}
.y256{bottom:102.322667pt;}
.y2d5{bottom:103.518667pt;}
.y5c{bottom:104.354667pt;}
.y94{bottom:106.308000pt;}
.y237{bottom:106.361333pt;}
.y2a0{bottom:107.484000pt;}
.y20b{bottom:108.844000pt;}
.y2f{bottom:108.920000pt;}
.y1de{bottom:115.584000pt;}
.y2d4{bottom:118.861333pt;}
.y255{bottom:119.060000pt;}
.y134{bottom:121.053333pt;}
.y5b{bottom:121.092000pt;}
.y29f{bottom:122.826667pt;}
.y93{bottom:123.045333pt;}
.y1f{bottom:123.790666pt;}
.y2e{bottom:124.820000pt;}
.y20a{bottom:125.581333pt;}
.y214{bottom:126.298667pt;}
.y15f{bottom:129.022667pt;}
.y104{bottom:129.420000pt;}
.y1dd{bottom:132.321333pt;}
.y2d3{bottom:134.202667pt;}
.y254{bottom:135.797333pt;}
.y133{bottom:137.790667pt;}
.y5a{bottom:137.828000pt;}
.y29e{bottom:138.169333pt;}
.ybd{bottom:139.384000pt;}
.y92{bottom:139.782667pt;}
.y2d{bottom:140.720000pt;}
.y209{bottom:142.318667pt;}
.y260{bottom:143.369333pt;}
.y103{bottom:146.157333pt;}
.y1dc{bottom:149.058667pt;}
.y2d2{bottom:149.545333pt;}
.y253{bottom:152.534667pt;}
.y1aa{bottom:152.549333pt;}
.y29d{bottom:153.510667pt;}
.y132{bottom:154.528000pt;}
.y59{bottom:154.565333pt;}
.ybc{bottom:156.121333pt;}
.y91{bottom:156.520000pt;}
.y2c{bottom:156.621333pt;}
.y25f{bottom:158.990667pt;}
.y208{bottom:159.056000pt;}
.y15e{bottom:161.700000pt;}
.y2d1{bottom:164.888000pt;}
.y1db{bottom:165.796000pt;}
.y29c{bottom:168.853333pt;}
.y252{bottom:169.272000pt;}
.y1a9{bottom:169.286667pt;}
.y131{bottom:171.264000pt;}
.y58{bottom:171.302667pt;}
.y2b{bottom:172.521333pt;}
.ybb{bottom:172.858667pt;}
.y90{bottom:173.257333pt;}
.y25e{bottom:174.612000pt;}
.y16{bottom:175.052000pt;}
.y207{bottom:175.793333pt;}
.y102{bottom:178.836000pt;}
.y2d0{bottom:180.230667pt;}
.y1da{bottom:182.533333pt;}
.y251{bottom:186.009333pt;}
.y1a8{bottom:186.024000pt;}
.y1e{bottom:186.238666pt;}
.y15{bottom:186.252002pt;}
.y130{bottom:188.001333pt;}
.y57{bottom:188.040000pt;}
.y29b{bottom:188.181333pt;}
.y2a{bottom:188.421333pt;}
.yba{bottom:189.596000pt;}
.y8f{bottom:189.994667pt;}
.y25d{bottom:190.233333pt;}
.y206{bottom:192.530667pt;}
.y15d{bottom:194.378667pt;}
.y101{bottom:195.573333pt;}
.y1d{bottom:197.438668pt;}
.y14{bottom:197.452004pt;}
.y1d9{bottom:199.270667pt;}
.y250{bottom:202.746667pt;}
.y1a7{bottom:202.761333pt;}
.y29{bottom:204.322667pt;}
.y12f{bottom:204.738667pt;}
.y56{bottom:204.777333pt;}
.y25c{bottom:205.854667pt;}
.yb9{bottom:206.333333pt;}
.y8e{bottom:206.732000pt;}
.y1c{bottom:208.638670pt;}
.y13{bottom:208.651996pt;}
.y2cf{bottom:210.916000pt;}
.y15c{bottom:211.116000pt;}
.y1d8{bottom:216.008000pt;}
.y24f{bottom:219.484000pt;}
.y1a6{bottom:219.498667pt;}
.y12e{bottom:221.476000pt;}
.y55{bottom:221.514667pt;}
.yb8{bottom:223.070667pt;}
.y8d{bottom:223.469333pt;}
.y2ce{bottom:226.258667pt;}
.y29a{bottom:227.264000pt;}
.y15b{bottom:227.853333pt;}
.y100{bottom:228.250667pt;}
.y1b{bottom:231.038664pt;}
.y12{bottom:231.052000pt;}
.y1d7{bottom:232.745333pt;}
.y205{bottom:233.938667pt;}
.y24e{bottom:236.221333pt;}
.y1a5{bottom:236.236000pt;}
.y25b{bottom:237.097333pt;}
.y299{bottom:237.890667pt;}
.y54{bottom:238.252000pt;}
.yb7{bottom:239.808000pt;}
.y8c{bottom:240.206667pt;}
.y2cd{bottom:241.601333pt;}
.y1a{bottom:242.238666pt;}
.y11{bottom:242.252002pt;}
.y15a{bottom:244.590667pt;}
.yff{bottom:244.988000pt;}
.y204{bottom:246.558667pt;}
.y167{bottom:247.372840pt;}
.y298{bottom:248.517333pt;}
.y1d6{bottom:249.482667pt;}
.y25a{bottom:252.720000pt;}
.y24d{bottom:252.958667pt;}
.y1a4{bottom:252.973333pt;}
.y19{bottom:253.438668pt;}
.y10{bottom:253.451999pt;}
.y12d{bottom:254.154667pt;}
.y53{bottom:254.989333pt;}
.yb6{bottom:256.545333pt;}
.y8b{bottom:256.944000pt;}
.y297{bottom:259.144000pt;}
.y203{bottom:259.177333pt;}
.y159{bottom:261.326667pt;}
.yfe{bottom:261.725333pt;}
.y28{bottom:264.148000pt;}
.y1d5{bottom:266.220000pt;}
.y24c{bottom:269.696000pt;}
.y1a3{bottom:269.710667pt;}
.y296{bottom:269.770667pt;}
.y52{bottom:271.726667pt;}
.y202{bottom:271.797333pt;}
.y2cc{bottom:272.285333pt;}
.yb5{bottom:273.282667pt;}
.y8a{bottom:273.681333pt;}
.y18{bottom:275.838667pt;}
.yf{bottom:275.852001pt;}
.y259{bottom:276.310667pt;}
.y158{bottom:278.064000pt;}
.yfd{bottom:278.462667pt;}
.y27{bottom:280.048000pt;}
.y295{bottom:280.397333pt;}
.y166{bottom:280.492280pt;}
.y201{bottom:284.416000pt;}
.y24b{bottom:286.433333pt;}
.y1a2{bottom:286.448000pt;}
.y12c{bottom:286.832000pt;}
.y1d4{bottom:286.942667pt;}
.y17{bottom:287.038667pt;}
.ye{bottom:287.052000pt;}
.y2cb{bottom:287.628000pt;}
.y51{bottom:288.464000pt;}
.yb4{bottom:290.020000pt;}
.y89{bottom:290.417333pt;}
.y294{bottom:291.024000pt;}
.y258{bottom:291.932000pt;}
.y157{bottom:294.801333pt;}
.yfc{bottom:295.200000pt;}
.y26{bottom:295.948000pt;}
.y200{bottom:297.036000pt;}
.y293{bottom:301.650667pt;}
.y2ca{bottom:302.970667pt;}
.y24a{bottom:303.170667pt;}
.y1a1{bottom:303.185333pt;}
.y12b{bottom:303.569333pt;}
.y1d3{bottom:304.874667pt;}
.y50{bottom:305.201333pt;}
.yb3{bottom:306.757333pt;}
.y88{bottom:307.154667pt;}
.yd{bottom:309.452000pt;}
.y1ff{bottom:309.654667pt;}
.y216{bottom:310.060214pt;}
.y25{bottom:311.849333pt;}
.yfb{bottom:311.936000pt;}
.y292{bottom:312.278667pt;}
.y165{bottom:313.611720pt;}
.y215{bottom:316.223328pt;}
.y2c9{bottom:318.313333pt;}
.y249{bottom:319.908000pt;}
.y1a0{bottom:319.922667pt;}
.y12a{bottom:320.306667pt;}
.y4f{bottom:321.938667pt;}
.y1fe{bottom:322.274667pt;}
.yb2{bottom:323.494667pt;}
.y87{bottom:323.892000pt;}
.yc0{bottom:327.272572pt;}
.y156{bottom:327.480000pt;}
.yfa{bottom:328.673333pt;}
.y291{bottom:329.306667pt;}
.y164{bottom:330.652400pt;}
.y2c8{bottom:333.656000pt;}
.y1d2{bottom:334.762667pt;}
.y1fd{bottom:334.893333pt;}
.y24{bottom:335.720000pt;}
.y248{bottom:336.645333pt;}
.y19f{bottom:336.660000pt;}
.ybf{bottom:336.688440pt;}
.y129{bottom:337.044000pt;}
.y4e{bottom:338.676000pt;}
.y290{bottom:339.933333pt;}
.yb1{bottom:340.232000pt;}
.y86{bottom:340.629333pt;}
.yc{bottom:343.809333pt;}
.yf9{bottom:345.410667pt;}
.y2c7{bottom:348.998667pt;}
.y28f{bottom:350.561333pt;}
.y1d1{bottom:351.500000pt;}
.y23{bottom:351.620000pt;}
.y247{bottom:353.382667pt;}
.y19e{bottom:353.397333pt;}
.y128{bottom:353.780000pt;}
.y1fc{bottom:353.914667pt;}
.y4d{bottom:355.413333pt;}
.yb0{bottom:356.968000pt;}
.y85{bottom:357.366667pt;}
.y155{bottom:360.157333pt;}
.y28e{bottom:361.188000pt;}
.yf8{bottom:362.148000pt;}
.yb{bottom:362.706666pt;}
.y2c6{bottom:364.341333pt;}
.y22{bottom:367.520000pt;}
.y1d0{bottom:368.237333pt;}
.y246{bottom:370.118667pt;}
.y19d{bottom:370.134667pt;}
.y127{bottom:370.517333pt;}
.y28d{bottom:371.814667pt;}
.y4c{bottom:372.150667pt;}
.yaf{bottom:373.705333pt;}
.y84{bottom:374.104000pt;}
.y154{bottom:376.894667pt;}
.yf7{bottom:378.885333pt;}
.y162{bottom:379.292520pt;}
.y2c5{bottom:379.684000pt;}
.y28c{bottom:382.441333pt;}
.y1fb{bottom:383.284000pt;}
.y21{bottom:383.421333pt;}
.y1cf{bottom:384.974667pt;}
.y245{bottom:386.856000pt;}
.y19c{bottom:386.872000pt;}
.y126{bottom:387.254667pt;}
.y161{bottom:387.852400pt;}
.y4b{bottom:388.888000pt;}
.yae{bottom:390.442667pt;}
.y83{bottom:390.841333pt;}
.y28b{bottom:393.068000pt;}
.y153{bottom:393.632000pt;}
.y2c4{bottom:395.025333pt;}
.yf6{bottom:395.622667pt;}
.y20{bottom:399.321333pt;}
.y1ce{bottom:401.712000pt;}
.y244{bottom:403.593333pt;}
.y19b{bottom:403.609333pt;}
.y125{bottom:403.992000pt;}
.y4a{bottom:405.625333pt;}
.yad{bottom:407.180000pt;}
.y82{bottom:407.578667pt;}
.y28a{bottom:410.097333pt;}
.y2c3{bottom:410.368000pt;}
.y152{bottom:410.369333pt;}
.yf5{bottom:412.360000pt;}
.y1fa{bottom:415.204000pt;}
.y1cd{bottom:418.449333pt;}
.y243{bottom:420.330667pt;}
.y289{bottom:420.724000pt;}
.y124{bottom:420.729333pt;}
.y2d8{bottom:421.660000pt;}
.y49{bottom:422.362667pt;}
.yac{bottom:423.917333pt;}
.y81{bottom:424.316000pt;}
.y19a{bottom:424.330667pt;}
.y2c2{bottom:425.710667pt;}
.y213{bottom:425.922667pt;}
.y151{bottom:427.106667pt;}
.yf4{bottom:429.097333pt;}
.y288{bottom:431.350667pt;}
.y1f9{bottom:431.941333pt;}
.y2d7{bottom:437.002667pt;}
.y242{bottom:437.068000pt;}
.y123{bottom:437.466667pt;}
.y48{bottom:439.100000pt;}
.y1cc{bottom:439.172000pt;}
.yab{bottom:440.654667pt;}
.y80{bottom:441.053333pt;}
.y287{bottom:441.977333pt;}
.y150{bottom:443.842667pt;}
.yf3{bottom:445.834667pt;}
.y1f8{bottom:448.678667pt;}
.y2d6{bottom:452.344000pt;}
.y286{bottom:452.604000pt;}
.y241{bottom:453.805333pt;}
.y122{bottom:454.204000pt;}
.y199{bottom:454.218667pt;}
.y47{bottom:455.837333pt;}
.y2c1{bottom:456.396000pt;}
.yaa{bottom:457.392000pt;}
.y7f{bottom:457.790667pt;}
.y14f{bottom:460.580000pt;}
.yf2{bottom:462.572000pt;}
.ya{bottom:462.990669pt;}
.y285{bottom:463.230667pt;}
.y1f7{bottom:465.416000pt;}
.y212{bottom:468.366667pt;}
.y1cb{bottom:469.060000pt;}
.y240{bottom:470.542667pt;}
.y121{bottom:470.941333pt;}
.y198{bottom:470.956000pt;}
.y2c0{bottom:471.738667pt;}
.y284{bottom:473.857333pt;}
.ya9{bottom:474.129333pt;}
.y7e{bottom:474.528000pt;}
.y46{bottom:476.560000pt;}
.y14e{bottom:477.317333pt;}
.y9{bottom:478.990666pt;}
.yf1{bottom:479.309333pt;}
.y211{bottom:480.986667pt;}
.y1f6{bottom:482.153333pt;}
.y283{bottom:484.484000pt;}
.y1ca{bottom:485.797333pt;}
.y2bf{bottom:487.081333pt;}
.y23f{bottom:487.280000pt;}
.y120{bottom:487.678667pt;}
.y197{bottom:487.693333pt;}
.ya8{bottom:490.866667pt;}
.y7d{bottom:491.265333pt;}
.y210{bottom:493.605333pt;}
.y14d{bottom:494.054667pt;}
.y8{bottom:494.990666pt;}
.yf0{bottom:496.046667pt;}
.y1f5{bottom:498.889333pt;}
.y282{bottom:501.513333pt;}
.y2be{bottom:502.424000pt;}
.y1c9{bottom:502.534667pt;}
.y23e{bottom:504.017333pt;}
.y11f{bottom:504.416000pt;}
.y196{bottom:504.430667pt;}
.ya7{bottom:507.604000pt;}
.y7c{bottom:508.002667pt;}
.y14c{bottom:510.792000pt;}
.y281{bottom:512.140000pt;}
.y20f{bottom:512.626667pt;}
.yef{bottom:512.784000pt;}
.y1f4{bottom:515.626667pt;}
.y2bd{bottom:517.766667pt;}
.y1c8{bottom:519.272000pt;}
.y23d{bottom:520.754667pt;}
.y195{bottom:521.168000pt;}
.y280{bottom:522.766667pt;}
.ya6{bottom:524.341333pt;}
.y7b{bottom:524.740000pt;}
.y11e{bottom:525.138667pt;}
.y14b{bottom:527.529333pt;}
.yee{bottom:529.521333pt;}
.y2bc{bottom:533.108000pt;}
.y27f{bottom:533.393333pt;}
.y1c7{bottom:536.009333pt;}
.y1f3{bottom:536.349333pt;}
.y23c{bottom:537.492000pt;}
.y194{bottom:537.905333pt;}
.ya5{bottom:541.078667pt;}
.y7a{bottom:541.477333pt;}
.y20e{bottom:541.996000pt;}
.y45{bottom:543.360000pt;}
.y27e{bottom:544.021333pt;}
.y14a{bottom:544.266667pt;}
.yed{bottom:546.258667pt;}
.y2bb{bottom:548.450667pt;}
.y1c6{bottom:552.746667pt;}
.y23b{bottom:554.229333pt;}
.y193{bottom:554.642667pt;}
.y27d{bottom:554.648000pt;}
.y11d{bottom:555.026667pt;}
.ya4{bottom:557.816000pt;}
.y79{bottom:558.214667pt;}
.y44{bottom:560.654667pt;}
.y149{bottom:561.004000pt;}
.yec{bottom:562.996000pt;}
.y2ba{bottom:563.793333pt;}
.y23a{bottom:570.966667pt;}
.y192{bottom:571.380000pt;}
.y27c{bottom:571.676000pt;}
.y11c{bottom:571.764000pt;}
.y1c5{bottom:573.469333pt;}
.y7{bottom:573.786667pt;}
.ya3{bottom:574.553333pt;}
.y78{bottom:574.952000pt;}
.y1f2{bottom:574.968000pt;}
.y2b9{bottom:579.136000pt;}
.yeb{bottom:579.733333pt;}
.y148{bottom:581.726667pt;}
.y27b{bottom:582.302667pt;}
.y1f1{bottom:587.588000pt;}
.y239{bottom:587.704000pt;}
.y191{bottom:588.117333pt;}
.ya2{bottom:591.290667pt;}
.y77{bottom:591.689333pt;}
.y6{bottom:592.685334pt;}
.y27a{bottom:592.930667pt;}
.y43{bottom:593.889333pt;}
.y2b8{bottom:594.478667pt;}
.yea{bottom:596.470667pt;}
.y1f0{bottom:600.206667pt;}
.y279{bottom:603.557333pt;}
.y11b{bottom:604.441333pt;}
.y190{bottom:604.854667pt;}
.ya1{bottom:608.028000pt;}
.y76{bottom:608.426667pt;}
.y2b7{bottom:609.821333pt;}
.y1c4{bottom:610.492000pt;}
.y42{bottom:611.185333pt;}
.y147{bottom:611.614667pt;}
.y1ef{bottom:612.826667pt;}
.ye9{bottom:613.208000pt;}
.y278{bottom:614.184000pt;}
.y11a{bottom:621.178667pt;}
.y18f{bottom:621.592000pt;}
.y1c3{bottom:623.112000pt;}
.ya0{bottom:624.765333pt;}
.y277{bottom:624.810667pt;}
.y75{bottom:625.164000pt;}
.y1ee{bottom:625.445333pt;}
.y41{bottom:628.480000pt;}
.ye8{bottom:629.945333pt;}
.y1c2{bottom:635.730667pt;}
.y119{bottom:637.916000pt;}
.y1ed{bottom:638.065333pt;}
.y18e{bottom:638.329333pt;}
.y2b6{bottom:640.506667pt;}
.y9f{bottom:641.502667pt;}
.y276{bottom:641.840000pt;}
.y74{bottom:641.901333pt;}
.y146{bottom:644.292000pt;}
.y5{bottom:645.598667pt;}
.y40{bottom:645.776000pt;}
.y1c1{bottom:648.350667pt;}
.ye7{bottom:650.668000pt;}
.y1ec{bottom:650.684000pt;}
.y275{bottom:652.466667pt;}
.y118{bottom:654.653333pt;}
.y18d{bottom:655.066667pt;}
.y2b5{bottom:655.848000pt;}
.y9e{bottom:658.240000pt;}
.y73{bottom:658.638667pt;}
.y1c0{bottom:660.969333pt;}
.y145{bottom:661.029333pt;}
.y3f{bottom:663.070667pt;}
.y274{bottom:663.093333pt;}
.y3{bottom:668.977329pt;}
.y1eb{bottom:669.705333pt;}
.y2b4{bottom:671.190667pt;}
.y117{bottom:671.390667pt;}
.y1bf{bottom:673.589333pt;}
.y273{bottom:673.720000pt;}
.y9d{bottom:674.977333pt;}
.y72{bottom:675.376000pt;}
.y18c{bottom:675.789333pt;}
.ye6{bottom:677.714667pt;}
.y144{bottom:677.766667pt;}
.y257{bottom:678.962667pt;}
.y3e{bottom:680.365333pt;}
.y272{bottom:684.346667pt;}
.y1be{bottom:686.208000pt;}
.y2b3{bottom:686.533333pt;}
.y116{bottom:688.128000pt;}
.y1ea{bottom:688.726667pt;}
.y9c{bottom:691.714667pt;}
.y71{bottom:692.113333pt;}
.y18b{bottom:693.721333pt;}
.y143{bottom:694.504000pt;}
.ye5{bottom:694.809333pt;}
.y271{bottom:694.973333pt;}
.y3d{bottom:697.661333pt;}
.y1bd{bottom:698.828000pt;}
.y2b2{bottom:701.876000pt;}
.y115{bottom:704.865333pt;}
.y270{bottom:705.600000pt;}
.y9b{bottom:708.452000pt;}
.y70{bottom:708.850667pt;}
.y142{bottom:711.241333pt;}
.ybe{bottom:714.746667pt;}
.y3c{bottom:714.956000pt;}
.y2b1{bottom:717.218667pt;}
.y1bc{bottom:717.849333pt;}
.y1e9{bottom:718.094667pt;}
.y18a{bottom:720.768000pt;}
.y114{bottom:721.602667pt;}
.y26f{bottom:722.629333pt;}
.y9a{bottom:725.189333pt;}
.y6f{bottom:725.588000pt;}
.y20d{bottom:730.409333pt;}
.y3b{bottom:732.252000pt;}
.y2b0{bottom:732.561333pt;}
.y26e{bottom:733.256000pt;}
.y189{bottom:737.864000pt;}
.y113{bottom:738.340000pt;}
.y99{bottom:741.926667pt;}
.y6e{bottom:742.324000pt;}
.y26d{bottom:743.882667pt;}
.y141{bottom:743.918667pt;}
.y1bb{bottom:744.560000pt;}
.y2af{bottom:747.904000pt;}
.y3a{bottom:749.546667pt;}
.y26c{bottom:754.509333pt;}
.y188{bottom:754.960000pt;}
.y112{bottom:755.077333pt;}
.y1e8{bottom:756.328000pt;}
.y98{bottom:758.664000pt;}
.y6d{bottom:759.061333pt;}
.y2ae{bottom:763.246667pt;}
.y26b{bottom:765.136000pt;}
.y39{bottom:766.841333pt;}
.y1e7{bottom:768.948000pt;}
.y111{bottom:771.814667pt;}
.y160{bottom:774.897333pt;}
.y97{bottom:775.401333pt;}
.y26a{bottom:775.762667pt;}
.y6c{bottom:775.798667pt;}
.y140{bottom:776.596000pt;}
.y2ad{bottom:778.589333pt;}
.y1e6{bottom:781.566667pt;}
.y2{bottom:781.661334pt;}
.y38{bottom:784.137333pt;}
.y1ba{bottom:784.916000pt;}
.y110{bottom:788.552000pt;}
.y96{bottom:792.138667pt;}
.y6b{bottom:792.536000pt;}
.y269{bottom:792.792000pt;}
.y13f{bottom:793.333333pt;}
.y2ac{bottom:793.930667pt;}
.y1e5{bottom:794.186667pt;}
.y1b9{bottom:797.536000pt;}
.y37{bottom:801.432000pt;}
.y10f{bottom:805.289333pt;}
.y1e4{bottom:806.805333pt;}
.y6a{bottom:809.273333pt;}
.y13e{bottom:810.070667pt;}
.y1b8{bottom:810.154667pt;}
.y95{bottom:812.860000pt;}
.y36{bottom:818.726667pt;}
.y1e3{bottom:819.425333pt;}
.y268{bottom:820.765333pt;}
.y10e{bottom:822.025333pt;}
.y1b7{bottom:822.774667pt;}
.y2ab{bottom:824.616000pt;}
.y69{bottom:826.010667pt;}
.y13d{bottom:826.808000pt;}
.y1e2{bottom:832.044000pt;}
.y1b6{bottom:835.393333pt;}
.y10d{bottom:838.762667pt;}
.y2aa{bottom:839.958667pt;}
.y68{bottom:842.748000pt;}
.y13c{bottom:843.545333pt;}
.y1b5{bottom:848.013333pt;}
.y267{bottom:851.037333pt;}
.y1e1{bottom:851.065333pt;}
.y35{bottom:853.025333pt;}
.y2a9{bottom:855.301333pt;}
.y10c{bottom:855.500000pt;}
.y1{bottom:859.312000pt;}
.y67{bottom:859.485333pt;}
.y13b{bottom:860.282667pt;}
.y1b4{bottom:860.632000pt;}
.y34{bottom:867.372000pt;}
.y2a8{bottom:870.644000pt;}
.y10b{bottom:872.237333pt;}
.y1b3{bottom:873.252000pt;}
.y66{bottom:876.222667pt;}
.y13a{bottom:877.020000pt;}
.y1e0{bottom:877.777333pt;}
.y266{bottom:883.714667pt;}
.y1b2{bottom:885.870667pt;}
.y2a7{bottom:885.986667pt;}
.y10a{bottom:888.974667pt;}
.y65{bottom:892.960000pt;}
.y139{bottom:893.757333pt;}
.y1b1{bottom:898.490667pt;}
.y2a6{bottom:901.329333pt;}
.y109{bottom:905.712000pt;}
.y265{bottom:907.306667pt;}
.y64{bottom:909.697333pt;}
.y138{bottom:910.494667pt;}
.y33{bottom:910.941333pt;}
.y1b0{bottom:911.109333pt;}
.y2a5{bottom:916.670667pt;}
.y108{bottom:922.449333pt;}
.y264{bottom:922.928000pt;}
.y1af{bottom:923.729333pt;}
.y63{bottom:926.434667pt;}
.y137{bottom:927.232000pt;}
.y2a4{bottom:932.013333pt;}
.y1ae{bottom:936.348000pt;}
.y107{bottom:939.186667pt;}
.y62{bottom:943.172000pt;}
.y136{bottom:943.969333pt;}
.y32{bottom:946.425333pt;}
.y263{bottom:946.520000pt;}
.y2a3{bottom:947.356000pt;}
.y1ad{bottom:948.968000pt;}
.y106{bottom:955.924000pt;}
.y61{bottom:959.909333pt;}
.y135{bottom:960.706667pt;}
.y262{bottom:962.141333pt;}
.y2a2{bottom:962.698667pt;}
.y1ac{bottom:967.989333pt;}
.y31{bottom:971.530667pt;}
.y105{bottom:972.661333pt;}
.y60{bottom:976.646667pt;}
.y261{bottom:977.762667pt;}
.y2a1{bottom:978.041333pt;}
.y5f{bottom:993.384000pt;}
.y1ab{bottom:994.700000pt;}
.y5e{bottom:1046.810667pt;}
.h24{height:21.575925pt;}
.h27{height:26.779392pt;}
.h9{height:27.076941pt;}
.h25{height:27.091575pt;}
.ha{height:27.300102pt;}
.h1f{height:28.291958pt;}
.h23{height:28.338975pt;}
.h7{height:28.560000pt;}
.h20{height:29.397999pt;}
.h1e{height:30.605184pt;}
.he{height:30.945242pt;}
.h12{height:31.200285pt;}
.h2b{height:32.709427pt;}
.h2c{height:33.091994pt;}
.hf{height:34.813542pt;}
.h29{height:35.100467pt;}
.h26{height:35.583525pt;}
.hd{height:38.256384pt;}
.h10{height:38.681455pt;}
.h1d{height:38.775312pt;}
.hb{height:39.000258pt;}
.h1b{height:39.349375pt;}
.h19{height:39.359687pt;}
.h6{height:40.800000pt;}
.h17{height:42.652844pt;}
.h3{height:42.840000pt;}
.h14{height:43.295656pt;}
.h2a{height:43.660390pt;}
.h1c{height:44.390625pt;}
.h28{height:48.330274pt;}
.h11{height:48.511220pt;}
.h21{height:48.683332pt;}
.h16{height:48.829687pt;}
.h2{height:48.960000pt;}
.h1a{height:49.421563pt;}
.h15{height:54.363719pt;}
.hc{height:68.861952pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h18{height:231.770667pt;}
.h22{height:285.276480pt;}
.h13{height:291.919467pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:406.349333pt;}
.w4{width:483.957467pt;}
.w6{width:506.040672pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x8{left:-187.247867pt;}
.xf{left:-168.218667pt;}
.x0{left:0.000000pt;}
.x43{left:1.885152pt;}
.xa{left:3.976133pt;}
.x10{left:5.621333pt;}
.x11{left:33.941239pt;}
.xb{left:35.128133pt;}
.x5{left:47.621333pt;}
.x48{left:55.592000pt;}
.x31{left:60.330667pt;}
.x30{left:61.489333pt;}
.x32{left:62.472000pt;}
.x2e{left:65.180000pt;}
.x2d{left:66.338667pt;}
.x42{left:68.654667pt;}
.x67{left:74.862667pt;}
.x49{left:76.309333pt;}
.x5d{left:82.102667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x2c{left:116.174667pt;}
.x45{left:127.051887pt;}
.x5e{left:128.090667pt;}
.x41{left:138.289333pt;}
.x4a{left:145.466667pt;}
.x2f{left:147.750667pt;}
.x4b{left:151.566667pt;}
.x5f{left:176.202667pt;}
.x4{left:180.874667pt;}
.x60{left:181.990667pt;}
.x68{left:183.490667pt;}
.x4c{left:185.873333pt;}
.x61{left:187.830667pt;}
.x62{left:193.618667pt;}
.x4d{left:194.680000pt;}
.x4e{left:205.636000pt;}
.x2b{left:206.673333pt;}
.x4f{left:213.798667pt;}
.x63{left:216.437333pt;}
.x6{left:221.858667pt;}
.x64{left:226.848000pt;}
.xd{left:227.873333pt;}
.x65{left:234.734667pt;}
.x33{left:240.789333pt;}
.x7{left:250.204000pt;}
.x34{left:254.797333pt;}
.x19{left:256.713333pt;}
.x25{left:260.337333pt;}
.x1d{left:262.074667pt;}
.x50{left:263.188000pt;}
.x6a{left:264.133333pt;}
.x2a{left:266.882667pt;}
.x29{left:268.041333pt;}
.x16{left:270.656000pt;}
.xe{left:272.453333pt;}
.x46{left:277.321333pt;}
.x18{left:280.618667pt;}
.x6b{left:283.584000pt;}
.x17{left:285.124000pt;}
.x6c{left:289.680000pt;}
.x24{left:295.284000pt;}
.x27{left:298.130667pt;}
.x26{left:299.958667pt;}
.x1b{left:302.573333pt;}
.x15{left:306.824000pt;}
.x22{left:308.301333pt;}
.x23{left:309.645333pt;}
.x20{left:310.845333pt;}
.x6d{left:312.425333pt;}
.x1f{left:313.502667pt;}
.x1e{left:316.160000pt;}
.x1c{left:318.826667pt;}
.x6e{left:322.300000pt;}
.x1a{left:323.540000pt;}
.x21{left:326.361333pt;}
.x47{left:334.466667pt;}
.x37{left:336.942667pt;}
.x38{left:342.653333pt;}
.xc{left:345.181333pt;}
.x51{left:348.630667pt;}
.x6f{left:354.892000pt;}
.x52{left:357.145333pt;}
.x28{left:365.434667pt;}
.x53{left:370.762667pt;}
.x70{left:372.152000pt;}
.x71{left:382.026667pt;}
.x12{left:400.019362pt;}
.x3{left:404.408000pt;}
.x66{left:408.136000pt;}
.x72{left:414.102667pt;}
.x73{left:420.200000pt;}
.x3b{left:438.829333pt;}
.x74{left:445.405333pt;}
.x3c{left:452.837333pt;}
.x35{left:475.270667pt;}
.x9{left:477.680133pt;}
.x36{left:486.196000pt;}
.x3d{left:500.894667pt;}
.x44{left:504.445152pt;}
.x75{left:510.334667pt;}
.x3e{left:514.902667pt;}
.x76{left:516.432000pt;}
.x54{left:536.476000pt;}
.x77{left:541.730667pt;}
.x55{left:545.282667pt;}
.x56{left:551.805333pt;}
.x57{left:560.612000pt;}
.x3f{left:585.149333pt;}
.x39{left:595.613333pt;}
.x40{left:599.157333pt;}
.x3a{left:604.652000pt;}
.x58{left:615.865333pt;}
.x59{left:621.426667pt;}
.x5a{left:655.764000pt;}
.x78{left:660.792000pt;}
.x79{left:666.770667pt;}
.x5b{left:668.132000pt;}
.x13{left:677.098667pt;}
.x69{left:688.053333pt;}
.x7a{left:704.300000pt;}
.x7b{left:710.278667pt;}
.x14{left:717.281333pt;}
.x7c{left:734.312000pt;}
.x5c{left:739.830667pt;}
}




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