
    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_781b5ef9be804155986f06d2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936000;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_77d5a8126edbeaf0760a753d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1d3401a8016063c7fc831c88.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_05655ba16a8a3fb1d3a72e8e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958000;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_cb034c7efe63c9b244903456.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c5b82abb4fe7b4ec85c36b16.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.964000;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_6f950b13fa1b5f5fb1b454fc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.919000;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_ab060dd2dad89d0531524c41.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.945000;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_5e7d1881f4c116b1be3f7ae9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.719000;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_aeb0b60a92d65c57b5907ccc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065430;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_1da974dc9f2cceebb918a730.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.065430;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_d828b4df6c87c686a564fb44.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.865723;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_dd0442e65e0966815e979c3f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.782227;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_32a387cdf4c640747ad48273.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.880371;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_86b80cbaff7db4fdc1129bc5.woff2')format("woff");}.fff{font-family:fff;line-height:0.871094;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_67b80a6d15e239717642c4fe.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.782227;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_4a47afb34d5b4aef09443da3.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.065430;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_37270597265815f5c7beda1e.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.044922;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_5b8db11a00b7442413e849eb.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.812500;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_56c3f68bb69823cd6e2b5e0a.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.958000;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_13cc4d03d277f77ddf4341a9.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.065430;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_8ab02bbe3f30beecc6ec9386.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_f231a589fe1c1ce5cf304a68.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.027832;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_43d6d094af0424e041642fca.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.860840;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_76358fb13c101507d196e675.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_451d8f45cdc055114484a47a.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.905273;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_8e44430231cf91fb0a1a922e.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.905273;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_523b254b30209fa57b847b99.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_38492ed630532dc9c6b54a51.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.664000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_5c8bba1ef9e150bc91f0ae73.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.259000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_9eaab410dd562da85064a7e7.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_44fae3a10b21a65bf39ce35a.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.973000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_836091575c26e47a5afa069f.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.843000;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:ff22;src:url('chunks/assets/font_6d701ce0be38920d3ccb4e0e.woff2')format("woff");}.ff22{font-family:ff22;line-height:2.441000;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:ff23;src:url('chunks/assets/font_d1c8529a3a1b0fd4a1ffa62c.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.871094;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:ff24;src:url('chunks/assets/font_184eec4f34faa86742185d7b.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.060547;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:ff25;src:url('chunks/assets/font_7ac9da30195791f209ee4322.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.052734;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:ff26;src:url('chunks/assets/font_2ea6dff17234d78bff20944b.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.060547;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;}
.m1{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);}
.m27{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);}
.m1a{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);}
.m15{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);}
.m7{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);}
.m1e{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);}
.m5{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);}
.m3{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);}
.m23{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);}
.m1f{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);}
.m14{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);}
.m8{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);}
.m19{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);}
.md{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);}
.m16{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);}
.m12{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);}
.m28{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);}
.me{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);}
.m6{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);}
.m1b{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);}
.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);}
.mf{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);}
.m1d{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);}
.m10{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);}
.m1c{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);}
.m21{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);}
.m26{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);}
.mb{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);}
.m18{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);}
.ma{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);}
.m9{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);}
.m24{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);}
.mc{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);}
.m2{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);}
.m17{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);}
.m11{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);}
.m22{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);}
.m20{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);}
.m29{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);}
.m25{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);}
.m4{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);}
.m13{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v17{vertical-align:-32.256457px;}
.v15{vertical-align:-26.422039px;}
.v6{vertical-align:-23.025139px;}
.v7{vertical-align:-21.380486px;}
.v2{vertical-align:-15.840000px;}
.v10{vertical-align:-10.998000px;}
.vf{vertical-align:-9.666000px;}
.v8{vertical-align:-8.070000px;}
.v3{vertical-align:-2.408400px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.644653px;}
.v9{vertical-align:8.070000px;}
.vb{vertical-align:12.684000px;}
.v4{vertical-align:16.446528px;}
.vd{vertical-align:18.486000px;}
.v14{vertical-align:24.961113px;}
.v1{vertical-align:26.040000px;}
.ve{vertical-align:27.558000px;}
.v16{vertical-align:32.256457px;}
.va{vertical-align:35.622000px;}
.v13{vertical-align:36.906000px;}
.vc{vertical-align:40.236000px;}
.v11{vertical-align:75.918000px;}
.v12{vertical-align:112.824000px;}
.lsb5{letter-spacing:-1.168841px;}
.ls27{letter-spacing:-1.011862px;}
.ls24{letter-spacing:-0.894118px;}
.ls55{letter-spacing:-0.885714px;}
.ls56{letter-spacing:-0.855562px;}
.ls29{letter-spacing:-0.835246px;}
.ls52{letter-spacing:-0.825410px;}
.ls54{letter-spacing:-0.625653px;}
.lsa6{letter-spacing:-0.563169px;}
.ls53{letter-spacing:-0.557811px;}
.lsa7{letter-spacing:-0.495872px;}
.lsad{letter-spacing:-0.223142px;}
.lsac{letter-spacing:-0.212517px;}
.ls5c{letter-spacing:-0.209693px;}
.ls61{letter-spacing:-0.205582px;}
.ls1e{letter-spacing:-0.200700px;}
.ls77{letter-spacing:-0.188450px;}
.ls1b{letter-spacing:-0.167250px;}
.ls4b{letter-spacing:-0.163437px;}
.ls64{letter-spacing:-0.161724px;}
.ls16{letter-spacing:-0.156546px;}
.lsaa{letter-spacing:-0.155846px;}
.ls5d{letter-spacing:-0.154186px;}
.lsb1{letter-spacing:-0.152557px;}
.ls17{letter-spacing:-0.150525px;}
.ls74{letter-spacing:-0.139795px;}
.ls5e{letter-spacing:-0.137054px;}
.ls1a{letter-spacing:-0.133800px;}
.ls5b{letter-spacing:-0.132600px;}
.ls50{letter-spacing:-0.129516px;}
.ls62{letter-spacing:-0.126433px;}
.ls70{letter-spacing:-0.111014px;}
.ls11{letter-spacing:-0.108378px;}
.ls1c{letter-spacing:-0.100350px;}
.ls23{letter-spacing:-0.096336px;}
.ls58{letter-spacing:-0.095595px;}
.ls21{letter-spacing:-0.093326px;}
.lsae{letter-spacing:-0.081971px;}
.ls4f{letter-spacing:-0.080177px;}
.lsb2{letter-spacing:-0.075899px;}
.ls51{letter-spacing:-0.074009px;}
.ls1f{letter-spacing:-0.072252px;}
.ls6f{letter-spacing:-0.070926px;}
.ls20{letter-spacing:-0.069242px;}
.ls65{letter-spacing:-0.065786px;}
.ls60{letter-spacing:-0.061674px;}
.ls68{letter-spacing:-0.057563px;}
.ls6a{letter-spacing:-0.054822px;}
.ls4e{letter-spacing:-0.052423px;}
.lsb4{letter-spacing:-0.050599px;}
.ls5a{letter-spacing:-0.038375px;}
.ls26{letter-spacing:-0.033450px;}
.ls12{letter-spacing:-0.033116px;}
.ls14{letter-spacing:-0.027095px;}
.ls6d{letter-spacing:-0.021586px;}
.ls25{letter-spacing:-0.016725px;}
.ls6c{letter-spacing:-0.009251px;}
.ls15{letter-spacing:-0.009032px;}
.ls4c{letter-spacing:-0.006167px;}
.ls13{letter-spacing:-0.006021px;}
.ls4{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.000345px;}
.ls5{letter-spacing:0.000367px;}
.ls63{letter-spacing:0.002741px;}
.ls2d{letter-spacing:0.003084px;}
.ls28{letter-spacing:0.004683px;}
.ls3f{letter-spacing:0.004858px;}
.ls78{letter-spacing:0.018502px;}
.lsd{letter-spacing:0.020070px;}
.lsa3{letter-spacing:0.020240px;}
.lsa2{letter-spacing:0.021252px;}
.ls72{letter-spacing:0.046598px;}
.lsf{letter-spacing:0.050175px;}
.ls6b{letter-spacing:0.054822px;}
.ls19{letter-spacing:0.057200px;}
.lsa4{letter-spacing:0.058190px;}
.ls59{letter-spacing:0.061674px;}
.lsa8{letter-spacing:0.063755px;}
.ls1d{letter-spacing:0.066900px;}
.ls75{letter-spacing:0.068527px;}
.lsab{letter-spacing:0.070839px;}
.lsa9{letter-spacing:0.074381px;}
.ls73{letter-spacing:0.079492px;}
.ls4d{letter-spacing:0.102791px;}
.ls5f{letter-spacing:0.109644px;}
.ls57{letter-spacing:0.111014px;}
.lsb3{letter-spacing:0.113848px;}
.lsb0{letter-spacing:0.120679px;}
.ls66{letter-spacing:0.123349px;}
.ls22{letter-spacing:0.129452px;}
.ls32{letter-spacing:0.133978px;}
.ls69{letter-spacing:0.134313px;}
.ls9b{letter-spacing:0.134582px;}
.ls9c{letter-spacing:0.134842px;}
.ls76{letter-spacing:0.137054px;}
.ls4a{letter-spacing:0.139978px;}
.ls9d{letter-spacing:0.140842px;}
.lsaf{letter-spacing:0.143449px;}
.lse{letter-spacing:0.150527px;}
.ls6e{letter-spacing:0.160354px;}
.ls10{letter-spacing:0.160562px;}
.ls8{letter-spacing:0.163905px;}
.lsc{letter-spacing:0.164574px;}
.ls71{letter-spacing:0.178856px;}
.lsa{letter-spacing:0.183975px;}
.ls18{letter-spacing:0.189662px;}
.ls9{letter-spacing:0.200702px;}
.ls67{letter-spacing:0.203526px;}
.ls39{letter-spacing:0.433145px;}
.ls37{letter-spacing:0.439145px;}
.ls47{letter-spacing:0.805133px;}
.ls7d{letter-spacing:1.075133px;}
.ls30{letter-spacing:1.212826px;}
.ls41{letter-spacing:1.375167px;}
.ls83{letter-spacing:1.375183px;}
.ls2f{letter-spacing:1.428826px;}
.ls31{letter-spacing:1.434826px;}
.ls45{letter-spacing:1.744997px;}
.ls7c{letter-spacing:2.149133px;}
.ls8c{letter-spacing:2.152320px;}
.ls7f{letter-spacing:2.418365px;}
.ls8d{letter-spacing:2.420467px;}
.ls8e{letter-spacing:2.426467px;}
.ls40{letter-spacing:2.958826px;}
.ls0{letter-spacing:2.990943px;}
.ls49{letter-spacing:4.036858px;}
.ls94{letter-spacing:4.064582px;}
.ls8a{letter-spacing:4.164365px;}
.ls81{letter-spacing:4.170365px;}
.ls36{letter-spacing:4.447687px;}
.ls44{letter-spacing:4.557344px;}
.ls87{letter-spacing:4.731377px;}
.ls84{letter-spacing:4.737377px;}
.ls35{letter-spacing:4.843133px;}
.ls88{letter-spacing:5.143183px;}
.ls38{letter-spacing:5.257687px;}
.ls90{letter-spacing:5.381846px;}
.ls42{letter-spacing:5.858821px;}
.ls3c{letter-spacing:6.061687px;}
.ls79{letter-spacing:6.067687px;}
.ls95{letter-spacing:6.098390px;}
.ls96{letter-spacing:6.479165px;}
.lsb{letter-spacing:6.616410px;}
.ls8b{letter-spacing:6.885377px;}
.ls48{letter-spacing:7.417694px;}
.ls3b{letter-spacing:7.550467px;}
.ls7a{letter-spacing:7.556467px;}
.ls93{letter-spacing:7.774598px;}
.ls2e{letter-spacing:7.876861px;}
.ls7{letter-spacing:8.707035px;}
.ls1{letter-spacing:10.459254px;}
.ls98{letter-spacing:11.654390px;}
.ls86{letter-spacing:11.949744px;}
.ls3{letter-spacing:13.448438px;}
.lsb6{letter-spacing:13.448861px;}
.ls2{letter-spacing:13.450762px;}
.ls9f{letter-spacing:13.540110px;}
.lsa0{letter-spacing:13.557745px;}
.lsa5{letter-spacing:13.670234px;}
.lsb7{letter-spacing:13.765167px;}
.ls46{letter-spacing:13.944644px;}
.ls89{letter-spacing:14.095181px;}
.ls8f{letter-spacing:14.705846px;}
.ls7b{letter-spacing:14.939347px;}
.ls91{letter-spacing:16.679376px;}
.ls85{letter-spacing:17.629133px;}
.ls34{letter-spacing:17.633347px;}
.ls6{letter-spacing:19.127107px;}
.ls7e{letter-spacing:19.513687px;}
.ls9e{letter-spacing:19.519687px;}
.ls92{letter-spacing:20.084582px;}
.ls33{letter-spacing:21.007687px;}
.ls9a{letter-spacing:22.030195px;}
.ls3a{letter-spacing:23.374195px;}
.ls3e{letter-spacing:25.985347px;}
.ls3d{letter-spacing:27.087888px;}
.ls99{letter-spacing:30.068582px;}
.ls80{letter-spacing:31.717183px;}
.ls2c{letter-spacing:32.027563px;}
.ls43{letter-spacing:32.671154px;}
.ls82{letter-spacing:33.459377px;}
.ls2b{letter-spacing:41.859840px;}
.ls97{letter-spacing:45.373670px;}
.lsa1{letter-spacing:233.736803px;}
.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;}
}
.ws11f{word-spacing:-69.184742px;}
.wsf7{word-spacing:-55.089562px;}
.ws11e{word-spacing:-40.994381px;}
.ws135{word-spacing:-40.158086px;}
.ws120{word-spacing:-38.412058px;}
.ws133{word-spacing:-37.981670px;}
.wsf6{word-spacing:-34.269581px;}
.ws11b{word-spacing:-30.396096px;}
.ws13a{word-spacing:-28.028966px;}
.wsf8{word-spacing:-26.693251px;}
.wsfd{word-spacing:-26.146022px;}
.wsfc{word-spacing:-26.092224px;}
.ws11c{word-spacing:-25.554240px;}
.ws107{word-spacing:-23.886490px;}
.ws106{word-spacing:-22.057344px;}
.ws1{word-spacing:-14.943900px;}
.ws4a{word-spacing:-13.449600px;}
.ws24{word-spacing:-11.955150px;}
.wsf9{word-spacing:-10.909050px;}
.ws195{word-spacing:-10.807964px;}
.ws239{word-spacing:-10.460700px;}
.ws83{word-spacing:-10.129663px;}
.ws7b{word-spacing:-10.070791px;}
.ws81{word-spacing:-9.953047px;}
.ws7c{word-spacing:-9.884473px;}
.ws7d{word-spacing:-9.867748px;}
.wscb{word-spacing:-9.422488px;}
.wsbc{word-spacing:-9.268302px;}
.wse7{word-spacing:-9.234039px;}
.wsbf{word-spacing:-9.216907px;}
.wsdb{word-spacing:-9.180246px;}
.wsb1{word-spacing:-9.137074px;}
.wsaf{word-spacing:-9.059981px;}
.ws6c{word-spacing:-8.971290px;}
.ws70{word-spacing:-8.968279px;}
.ws6d{word-spacing:-8.962258px;}
.ws6b{word-spacing:-8.938174px;}
.wsb2{word-spacing:-8.864678px;}
.wsc7{word-spacing:-8.683767px;}
.wsac{word-spacing:-8.668689px;}
.wsde{word-spacing:-8.659097px;}
.wsd3{word-spacing:-8.640595px;}
.wsc6{word-spacing:-8.603590px;}
.wse9{word-spacing:-8.591255px;}
.wsb3{word-spacing:-8.566927px;}
.wsab{word-spacing:-8.565899px;}
.wsce{word-spacing:-8.470990px;}
.wscf{word-spacing:-8.458655px;}
.wsd9{word-spacing:-8.409315px;}
.wsb7{word-spacing:-8.384646px;}
.wsca{word-spacing:-8.353808px;}
.wsbb{word-spacing:-8.270548px;}
.ws1c2{word-spacing:-8.068548px;}
.ws1b9{word-spacing:-8.026045px;}
.ws1bc{word-spacing:-8.004793px;}
.ws1ba{word-spacing:-7.792276px;}
.ws1bb{word-spacing:-7.781651px;}
.wsc8{word-spacing:-7.672305px;}
.wsbe{word-spacing:-7.647635px;}
.wscd{word-spacing:-7.592813px;}
.ws75{word-spacing:-7.559699px;}
.wsc2{word-spacing:-7.540732px;}
.ws1b8{word-spacing:-7.508921px;}
.wsb8{word-spacing:-7.499616px;}
.wsc4{word-spacing:-7.472205px;}
.ws1b5{word-spacing:-7.441624px;}
.wse3{word-spacing:-7.398196px;}
.ws89{word-spacing:-4.303872px;}
.wsee{word-spacing:-4.250074px;}
.wsf5{word-spacing:-4.142477px;}
.wsf4{word-spacing:-4.122711px;}
.ws1ef{word-spacing:-4.034880px;}
.ws223{word-spacing:-3.981082px;}
.ws134{word-spacing:-3.765888px;}
.ws132{word-spacing:-3.712090px;}
.ws144{word-spacing:-3.658291px;}
.ws2af{word-spacing:-3.640324px;}
.ws149{word-spacing:-3.604493px;}
.ws20e{word-spacing:-3.550694px;}
.ws38{word-spacing:-3.496896px;}
.ws285{word-spacing:-3.472952px;}
.ws2f{word-spacing:-3.443098px;}
.ws61{word-spacing:-3.389299px;}
.ws236{word-spacing:-3.347424px;}
.ws218{word-spacing:-3.335501px;}
.ws2d0{word-spacing:-3.305581px;}
.ws8d{word-spacing:-3.281702px;}
.ws2b7{word-spacing:-3.263738px;}
.ws208{word-spacing:-3.174106px;}
.ws154{word-spacing:-3.120307px;}
.ws13f{word-spacing:-3.066509px;}
.ws140{word-spacing:-3.012710px;}
.ws15a{word-spacing:-2.958912px;}
.wsf0{word-spacing:-2.905114px;}
.ws14{word-spacing:-2.851315px;}
.ws50{word-spacing:-2.797517px;}
.ws51{word-spacing:-2.792580px;}
.ws210{word-spacing:-2.780615px;}
.ws180{word-spacing:-2.748855px;}
.ws10c{word-spacing:-2.743718px;}
.ws277{word-spacing:-2.719782px;}
.ws158{word-spacing:-2.689920px;}
.ws8a{word-spacing:-2.636122px;}
.ws2ad{word-spacing:-2.636096px;}
.ws110{word-spacing:-2.528525px;}
.ws3a{word-spacing:-2.474726px;}
.ws148{word-spacing:-2.420928px;}
.ws20{word-spacing:-2.391030px;}
.ws28f{word-spacing:-2.385040px;}
.ws172{word-spacing:-2.367130px;}
.ws8c{word-spacing:-2.259533px;}
.ws243{word-spacing:-2.175826px;}
.wsa6{word-spacing:-2.151936px;}
.ws1f{word-spacing:-2.151927px;}
.ws58{word-spacing:-2.098526px;}
.ws59{word-spacing:-2.098138px;}
.ws2bf{word-spacing:-2.092140px;}
.ws12e{word-spacing:-2.044339px;}
.ws12f{word-spacing:-1.995409px;}
.ws130{word-spacing:-1.994170px;}
.wsa2{word-spacing:-1.990541px;}
.ws2bd{word-spacing:-1.966612px;}
.ws9{word-spacing:-1.936742px;}
.ws166{word-spacing:-1.882944px;}
.ws26b{word-spacing:-1.882926px;}
.ws86{word-spacing:-1.829146px;}
.ws276{word-spacing:-1.799240px;}
.ws39{word-spacing:-1.775347px;}
.ws138{word-spacing:-1.721549px;}
.ws2a7{word-spacing:-1.673712px;}
.ws13e{word-spacing:-1.667750px;}
.ws2a5{word-spacing:-1.657216px;}
.ws2ba{word-spacing:-1.631869px;}
.ws15b{word-spacing:-1.560154px;}
.wsa5{word-spacing:-1.506355px;}
.ws259{word-spacing:-1.506341px;}
.ws7{word-spacing:-1.452557px;}
.ws101{word-spacing:-1.398758px;}
.ws2b9{word-spacing:-1.380812px;}
.ws64{word-spacing:-1.344960px;}
.ws284{word-spacing:-1.297127px;}
.ws10b{word-spacing:-1.291162px;}
.ws17f{word-spacing:-1.237363px;}
.ws268{word-spacing:-1.213441px;}
.ws1c9{word-spacing:-1.203296px;}
.ws108{word-spacing:-1.183565px;}
.ws25a{word-spacing:-1.171598px;}
.ws1b1{word-spacing:-1.129766px;}
.ws2b8{word-spacing:-1.129756px;}
.ws23f{word-spacing:-1.087913px;}
.ws11a{word-spacing:-1.075968px;}
.wsa3{word-spacing:-1.022170px;}
.wsa9{word-spacing:-0.968371px;}
.ws116{word-spacing:-0.914573px;}
.ws15c{word-spacing:-0.860774px;}
.ws15d{word-spacing:-0.838956px;}
.ws3e{word-spacing:-0.806976px;}
.ws2d2{word-spacing:-0.795013px;}
.ws8{word-spacing:-0.753178px;}
.ws8b{word-spacing:-0.699379px;}
.ws95{word-spacing:-0.591782px;}
.ws27e{word-spacing:-0.585799px;}
.ws2a8{word-spacing:-0.543956px;}
.ws5a{word-spacing:-0.537984px;}
.ws3d{word-spacing:-0.484186px;}
.ws19{word-spacing:-0.460271px;}
.ws12{word-spacing:-0.430387px;}
.ws1ac{word-spacing:-0.376589px;}
.ws1aa{word-spacing:-0.352048px;}
.wsdc{word-spacing:-0.342979px;}
.ws1fe{word-spacing:-0.329396px;}
.ws4{word-spacing:-0.322790px;}
.ws274{word-spacing:-0.292900px;}
.ws2{word-spacing:-0.268992px;}
.ws251{word-spacing:-0.260751px;}
.ws235{word-spacing:-0.251057px;}
.ws1b4{word-spacing:-0.244896px;}
.wse6{word-spacing:-0.239824px;}
.wsd2{word-spacing:-0.236419px;}
.ws76{word-spacing:-0.234147px;}
.ws1cf{word-spacing:-0.224788px;}
.ws1e3{word-spacing:-0.216395px;}
.ws3c{word-spacing:-0.215194px;}
.ws228{word-spacing:-0.209214px;}
.ws79{word-spacing:-0.204714px;}
.ws167{word-spacing:-0.194049px;}
.ws1b6{word-spacing:-0.179114px;}
.wsd7{word-spacing:-0.174744px;}
.wsaa{word-spacing:-0.171314px;}
.ws23e{word-spacing:-0.167371px;}
.ws1be{word-spacing:-0.166218px;}
.ws2e{word-spacing:-0.161395px;}
.ws78{word-spacing:-0.159557px;}
.wsd1{word-spacing:-0.158298px;}
.ws1c0{word-spacing:-0.143449px;}
.ws1c5{word-spacing:-0.139148px;}
.wse5{word-spacing:-0.137031px;}
.wsb6{word-spacing:-0.133628px;}
.ws129{word-spacing:-0.125783px;}
.ws255{word-spacing:-0.125528px;}
.wsc9{word-spacing:-0.122664px;}
.wsb4{word-spacing:-0.122321px;}
.ws87{word-spacing:-0.110962px;}
.wsf{word-spacing:-0.107597px;}
.ws7f{word-spacing:-0.100350px;}
.ws115{word-spacing:-0.092082px;}
.ws2ab{word-spacing:-0.086509px;}
.ws23b{word-spacing:-0.083686px;}
.ws2a1{word-spacing:-0.069292px;}
.ws1d{word-spacing:-0.065455px;}
.wsb{word-spacing:-0.053798px;}
.ws1f3{word-spacing:-0.051603px;}
.ws82{word-spacing:-0.051513px;}
.ws1d4{word-spacing:-0.044746px;}
.ws184{word-spacing:-0.043232px;}
.ws22f{word-spacing:-0.041843px;}
.ws1bf{word-spacing:-0.022770px;}
.ws220{word-spacing:-0.019796px;}
.ws2ce{word-spacing:-0.008637px;}
.wsb0{word-spacing:-0.007881px;}
.wsa8{word-spacing:-0.005510px;}
.ws1f9{word-spacing:-0.000192px;}
.ws0{word-spacing:0.000000px;}
.ws1a8{word-spacing:0.000278px;}
.wsa7{word-spacing:0.000682px;}
.ws163{word-spacing:0.002189px;}
.ws23d{word-spacing:0.007284px;}
.wse2{word-spacing:0.013370px;}
.ws202{word-spacing:0.022395px;}
.ws28b{word-spacing:0.032492px;}
.ws280{word-spacing:0.041843px;}
.ws21{word-spacing:0.042713px;}
.wse1{word-spacing:0.044548px;}
.ws18{word-spacing:0.053798px;}
.ws7a{word-spacing:0.056196px;}
.ws1bd{word-spacing:0.059201px;}
.wse4{word-spacing:0.059276px;}
.ws77{word-spacing:0.063221px;}
.ws73{word-spacing:0.066900px;}
.wsd5{word-spacing:0.070926px;}
.ws40{word-spacing:0.082294px;}
.ws254{word-spacing:0.083686px;}
.wsc0{word-spacing:0.093814px;}
.ws71{word-spacing:0.100350px;}
.wsd0{word-spacing:0.104504px;}
.ws6{word-spacing:0.107597px;}
.ws6f{word-spacing:0.117075px;}
.ws42{word-spacing:0.120870px;}
.wsda{word-spacing:0.121978px;}
.ws241{word-spacing:0.125528px;}
.ws6e{word-spacing:0.126441px;}
.ws1c3{word-spacing:0.129787px;}
.ws72{word-spacing:0.133800px;}
.ws2c0{word-spacing:0.144329px;}
.wsbd{word-spacing:0.153860px;}
.wscc{word-spacing:0.154202px;}
.wsad{word-spacing:0.158640px;}
.wsd{word-spacing:0.161395px;}
.ws1db{word-spacing:0.161940px;}
.wsae{word-spacing:0.166178px;}
.ws74{word-spacing:0.167250px;}
.ws25d{word-spacing:0.167371px;}
.ws275{word-spacing:0.209214px;}
.wse0{word-spacing:0.210388px;}
.ws3{word-spacing:0.215194px;}
.ws65{word-spacing:0.216917px;}
.ws14f{word-spacing:0.219525px;}
.ws200{word-spacing:0.228185px;}
.ws152{word-spacing:0.228622px;}
.ws205{word-spacing:0.231745px;}
.ws1b7{word-spacing:0.247446px;}
.ws229{word-spacing:0.251057px;}
.wse8{word-spacing:0.264515px;}
.wsdf{word-spacing:0.266913px;}
.ws29{word-spacing:0.268992px;}
.ws7e{word-spacing:0.284329px;}
.ws2c4{word-spacing:0.292900px;}
.ws41{word-spacing:0.322790px;}
.ws55{word-spacing:0.376589px;}
.ws292{word-spacing:0.418428px;}
.wsb9{word-spacing:0.427952px;}
.ws147{word-spacing:0.430387px;}
.ws117{word-spacing:0.484186px;}
.ws2c{word-spacing:0.537984px;}
.wsdd{word-spacing:0.579055px;}
.ws2b{word-spacing:0.591782px;}
.ws2a{word-spacing:0.645581px;}
.ws63{word-spacing:0.699379px;}
.ws23a{word-spacing:0.711328px;}
.ws294{word-spacing:0.753170px;}
.ws33{word-spacing:0.753178px;}
.ws2c7{word-spacing:0.795013px;}
.ws32{word-spacing:0.806976px;}
.ws161{word-spacing:0.853359px;}
.ws4d{word-spacing:0.860774px;}
.ws267{word-spacing:0.878699px;}
.ws217{word-spacing:0.914573px;}
.ws25f{word-spacing:0.920542px;}
.ws1ee{word-spacing:0.968371px;}
.wsf1{word-spacing:1.022170px;}
.ws1c1{word-spacing:1.032744px;}
.ws1b3{word-spacing:1.038820px;}
.ws260{word-spacing:1.046070px;}
.ws34{word-spacing:1.075968px;}
.ws1fb{word-spacing:1.091943px;}
.ws1ce{word-spacing:1.104576px;}
.ws2b5{word-spacing:1.129756px;}
.wsc{word-spacing:1.129766px;}
.ws1c7{word-spacing:1.141012px;}
.ws2d{word-spacing:1.183565px;}
.ws27f{word-spacing:1.213441px;}
.ws10d{word-spacing:1.237363px;}
.ws105{word-spacing:1.291162px;}
.ws29b{word-spacing:1.297127px;}
.ws221{word-spacing:1.336195px;}
.ws1af{word-spacing:1.341928px;}
.ws124{word-spacing:1.344960px;}
.ws10{word-spacing:1.398758px;}
.ws245{word-spacing:1.422655px;}
.ws1ae{word-spacing:1.436749px;}
.ws56{word-spacing:1.452557px;}
.ws146{word-spacing:1.506355px;}
.ws36{word-spacing:1.560154px;}
.ws37{word-spacing:1.613952px;}
.ws28{word-spacing:1.667750px;}
.ws247{word-spacing:1.673712px;}
.ws27c{word-spacing:1.715555px;}
.ws9d{word-spacing:1.755259px;}
.ws296{word-spacing:1.757398px;}
.ws5e{word-spacing:1.775347px;}
.ws125{word-spacing:1.829146px;}
.ws232{word-spacing:1.841083px;}
.ws2c5{word-spacing:1.882926px;}
.ws122{word-spacing:1.882944px;}
.ws16f{word-spacing:1.936742px;}
.ws26c{word-spacing:1.943683px;}
.ws29c{word-spacing:1.966612px;}
.ws121{word-spacing:1.990541px;}
.ws24d{word-spacing:2.008454px;}
.ws16d{word-spacing:2.020788px;}
.ws12b{word-spacing:2.044339px;}
.ws298{word-spacing:2.050297px;}
.ws10e{word-spacing:2.098138px;}
.ws160{word-spacing:2.151936px;}
.ws249{word-spacing:2.175826px;}
.ws44{word-spacing:2.205734px;}
.ws170{word-spacing:2.219697px;}
.ws282{word-spacing:2.259511px;}
.ws1e0{word-spacing:2.259533px;}
.ws1de{word-spacing:2.287914px;}
.ws1d7{word-spacing:2.313331px;}
.ws127{word-spacing:2.367130px;}
.ws261{word-spacing:2.385040px;}
.ws4f{word-spacing:2.420928px;}
.wsef{word-spacing:2.474726px;}
.ws2a0{word-spacing:2.510568px;}
.ws29f{word-spacing:2.552411px;}
.ws231{word-spacing:2.636096px;}
.ws113{word-spacing:2.636122px;}
.ws13b{word-spacing:2.684554px;}
.ws2c3{word-spacing:2.719782px;}
.ws119{word-spacing:2.797517px;}
.ws1ed{word-spacing:2.851315px;}
.ws4c{word-spacing:2.958912px;}
.ws28a{word-spacing:2.970839px;}
.ws288{word-spacing:2.998488px;}
.ws67{word-spacing:3.012710px;}
.ws88{word-spacing:3.066509px;}
.ws244{word-spacing:3.096367px;}
.ws131{word-spacing:3.120307px;}
.ws145{word-spacing:3.174106px;}
.ws269{word-spacing:3.178417px;}
.ws2d1{word-spacing:3.180053px;}
.ws69{word-spacing:3.227904px;}
.ws24e{word-spacing:3.261313px;}
.ws35{word-spacing:3.335501px;}
.ws28c{word-spacing:3.389267px;}
.ws12d{word-spacing:3.389299px;}
.ws242{word-spacing:3.431110px;}
.wsfb{word-spacing:3.443098px;}
.ws27a{word-spacing:3.472952px;}
.wse{word-spacing:3.496896px;}
.ws2c8{word-spacing:3.533045px;}
.ws1dd{word-spacing:3.604493px;}
.ws2b6{word-spacing:3.640324px;}
.ws176{word-spacing:3.658291px;}
.ws5{word-spacing:3.712090px;}
.wsa{word-spacing:3.765888px;}
.ws2a2{word-spacing:3.849538px;}
.ws92{word-spacing:3.873485px;}
.ws109{word-spacing:3.927283px;}
.ws273{word-spacing:3.933223px;}
.ws26{word-spacing:3.981082px;}
.wsfe{word-spacing:4.034880px;}
.ws14a{word-spacing:4.088678px;}
.ws139{word-spacing:4.142477px;}
.ws1fd{word-spacing:4.196275px;}
.ws264{word-spacing:4.226123px;}
.ws126{word-spacing:4.250074px;}
.ws30{word-spacing:4.303872px;}
.ws230{word-spacing:4.393494px;}
.ws8e{word-spacing:4.411469px;}
.ws90{word-spacing:4.419102px;}
.ws118{word-spacing:4.465267px;}
.ws2cb{word-spacing:4.519022px;}
.ws100{word-spacing:4.519066px;}
.ws21e{word-spacing:4.572864px;}
.ws5f{word-spacing:4.626662px;}
.ws123{word-spacing:4.680461px;}
.ws98{word-spacing:4.734259px;}
.ws1e1{word-spacing:4.788058px;}
.ws224{word-spacing:4.841856px;}
.ws293{word-spacing:4.853765px;}
.ws2c1{word-spacing:4.895608px;}
.ws295{word-spacing:4.999009px;}
.ws27{word-spacing:5.003251px;}
.ws142{word-spacing:5.057050px;}
.ws22a{word-spacing:5.062979px;}
.ws1ec{word-spacing:5.110848px;}
.ws102{word-spacing:5.164646px;}
.ws104{word-spacing:5.218445px;}
.wsed{word-spacing:5.326042px;}
.ws11d{word-spacing:5.379840px;}
.wsfa{word-spacing:5.528591px;}
.ws10a{word-spacing:5.595034px;}
.ws45{word-spacing:5.648832px;}
.ws22e{word-spacing:5.732464px;}
.ws9a{word-spacing:5.810227px;}
.ws26f{word-spacing:5.899835px;}
.ws31{word-spacing:5.917824px;}
.ws222{word-spacing:5.971622px;}
.ws1b2{word-spacing:6.025421px;}
.ws128{word-spacing:6.079219px;}
.ws26e{word-spacing:6.318263px;}
.ws5d{word-spacing:6.455808px;}
.ws155{word-spacing:6.886195px;}
.ws272{word-spacing:6.987748px;}
.ws10f{word-spacing:7.028591px;}
.ws1a9{word-spacing:7.119312px;}
.ws2ae{word-spacing:7.196962px;}
.ws1ea{word-spacing:7.214893px;}
.wsd6{word-spacing:7.298489px;}
.ws22b{word-spacing:7.322490px;}
.ws12c{word-spacing:7.328591px;}
.ws1da{word-spacing:7.487726px;}
.ws17b{word-spacing:7.494484px;}
.ws1c4{word-spacing:7.728795px;}
.ws2a3{word-spacing:7.782761px;}
.ws16b{word-spacing:7.816719px;}
.ws25b{word-spacing:7.908289px;}
.ws2be{word-spacing:8.452246px;}
.ws23{word-spacing:8.655529px;}
.ws2a6{word-spacing:8.745145px;}
.ws2aa{word-spacing:8.912516px;}
.wsff{word-spacing:8.930534px;}
.ws28e{word-spacing:8.996202px;}
.wsf3{word-spacing:9.253325px;}
.ws187{word-spacing:9.568611px;}
.ws2a4{word-spacing:9.749372px;}
.ws143{word-spacing:9.767803px;}
.ws21d{word-spacing:9.791309px;}
.ws27d{word-spacing:9.833058px;}
.ws20f{word-spacing:9.853518px;}
.ws2a9{word-spacing:9.874901px;}
.ws219{word-spacing:10.031069px;}
.ws237{word-spacing:10.084115px;}
.ws99{word-spacing:10.163163px;}
.ws250{word-spacing:10.167800px;}
.ws21c{word-spacing:10.194039px;}
.ws234{word-spacing:10.209643px;}
.ws240{word-spacing:10.251486px;}
.ws256{word-spacing:10.293329px;}
.ws257{word-spacing:10.335172px;}
.ws265{word-spacing:10.377014px;}
.ws1a{word-spacing:10.418857px;}
.ws2ac{word-spacing:10.419685px;}
.ws93{word-spacing:10.437855px;}
.ws159{word-spacing:10.440618px;}
.ws281{word-spacing:10.460700px;}
.ws28d{word-spacing:10.502543px;}
.ws248{word-spacing:10.525294px;}
.ws23c{word-spacing:10.544386px;}
.ws15{word-spacing:10.572380px;}
.ws25e{word-spacing:10.586228px;}
.ws52{word-spacing:10.606579px;}
.ws29d{word-spacing:10.628071px;}
.ws181{word-spacing:10.667803px;}
.ws287{word-spacing:10.669914px;}
.ws29e{word-spacing:10.720143px;}
.ws185{word-spacing:10.764732px;}
.ws2cf{word-spacing:10.837285px;}
.ws2bc{word-spacing:10.920971px;}
.ws20a{word-spacing:10.973926px;}
.ws1e6{word-spacing:11.022066px;}
.ws173{word-spacing:11.022905px;}
.ws60{word-spacing:11.104965px;}
.ws1d2{word-spacing:11.141690px;}
.ws2cd{word-spacing:11.172028px;}
.ws1f6{word-spacing:11.255558px;}
.ws266{word-spacing:11.297556px;}
.ws1e5{word-spacing:11.316783px;}
.ws290{word-spacing:11.464927px;}
.ws157{word-spacing:11.668299px;}
.ws20d{word-spacing:11.728051px;}
.ws246{word-spacing:11.841512px;}
.ws14b{word-spacing:11.889446px;}
.ws1e{word-spacing:11.907329px;}
.ws22{word-spacing:11.955150px;}
.ws2b3{word-spacing:11.967041px;}
.ws2d3{word-spacing:12.004993px;}
.ws2bb{word-spacing:12.050726px;}
.ws291{word-spacing:12.069172px;}
.ws27b{word-spacing:12.134412px;}
.ws226{word-spacing:12.161681px;}
.ws297{word-spacing:12.176255px;}
.ws233{word-spacing:12.218098px;}
.ws2c6{word-spacing:12.301783px;}
.ws26d{word-spacing:12.385469px;}
.ws24b{word-spacing:12.469154px;}
.ws1f8{word-spacing:12.547395px;}
.ws15e{word-spacing:12.588826px;}
.ws25c{word-spacing:12.592415px;}
.ws24a{word-spacing:12.594683px;}
.ws283{word-spacing:12.678368px;}
.ws29a{word-spacing:12.720211px;}
.ws262{word-spacing:12.803897px;}
.ws2b1{word-spacing:12.845740px;}
.ws1f4{word-spacing:12.849199px;}
.ws169{word-spacing:12.896375px;}
.ws13{word-spacing:12.975967px;}
.ws1ab{word-spacing:13.050254px;}
.ws1ff{word-spacing:13.061741px;}
.ws111{word-spacing:13.073011px;}
.ws1fa{word-spacing:13.074142px;}
.ws174{word-spacing:13.109541px;}
.wsf2{word-spacing:13.126810px;}
.ws5c{word-spacing:13.153518px;}
.ws165{word-spacing:13.164572px;}
.ws168{word-spacing:13.180608px;}
.ws1e4{word-spacing:13.192137px;}
.ws1e7{word-spacing:13.193860px;}
.ws136{word-spacing:13.216320px;}
.ws21a{word-spacing:13.226147px;}
.ws1eb{word-spacing:13.229398px;}
.ws112{word-spacing:13.234406px;}
.ws156{word-spacing:13.236447px;}
.ws4b{word-spacing:13.242687px;}
.ws1cc{word-spacing:13.247167px;}
.ws204{word-spacing:13.250097px;}
.ws91{word-spacing:13.288205px;}
.ws17e{word-spacing:13.296152px;}
.ws206{word-spacing:13.296216px;}
.ws16{word-spacing:13.312845px;}
.wsec{word-spacing:13.342003px;}
.ws49{word-spacing:13.350749px;}
.ws84{word-spacing:13.354361px;}
.ws207{word-spacing:13.371802px;}
.ws179{word-spacing:13.372941px;}
.ws164{word-spacing:13.373592px;}
.ws21f{word-spacing:13.374329px;}
.ws1c8{word-spacing:13.389446px;}
.ws289{word-spacing:13.389696px;}
.ws14d{word-spacing:13.392874px;}
.ws182{word-spacing:13.395446px;}
.ws1c{word-spacing:13.395802px;}
.ws215{word-spacing:13.397558px;}
.ws17c{word-spacing:13.409387px;}
.ws203{word-spacing:13.412929px;}
.ws14c{word-spacing:13.419542px;}
.ws53{word-spacing:13.424163px;}
.ws1cd{word-spacing:13.440929px;}
.wsa4{word-spacing:13.441617px;}
.ws94{word-spacing:13.449600px;}
.ws17{word-spacing:13.450422px;}
.ws1f0{word-spacing:13.453518px;}
.ws54{word-spacing:13.459640px;}
.ws43{word-spacing:13.465762px;}
.ws141{word-spacing:13.472426px;}
.ws177{word-spacing:13.473802px;}
.ws175{word-spacing:13.482831px;}
.ws1ca{word-spacing:13.484575px;}
.ws47{word-spacing:13.503398px;}
.ws227{word-spacing:13.505558px;}
.ws209{word-spacing:13.514087px;}
.ws9c{word-spacing:13.528228px;}
.ws13d{word-spacing:13.529741px;}
.ws178{word-spacing:13.531316px;}
.ws17d{word-spacing:13.547918px;}
.ws1dc{word-spacing:13.556367px;}
.ws16c{word-spacing:13.584827px;}
.ws1d1{word-spacing:13.585475px;}
.ws1d0{word-spacing:13.587176px;}
.ws26a{word-spacing:13.598910px;}
.ws212{word-spacing:13.603119px;}
.ws1cb{word-spacing:13.608500px;}
.ws14e{word-spacing:13.610995px;}
.ws66{word-spacing:13.614442px;}
.ws150{word-spacing:13.623176px;}
.ws11{word-spacing:13.630938px;}
.ws153{word-spacing:13.637911px;}
.ws151{word-spacing:13.641302px;}
.ws211{word-spacing:13.660299px;}
.ws24f{word-spacing:13.682596px;}
.ws16a{word-spacing:13.703571px;}
.ws17a{word-spacing:13.708500px;}
.ws48{word-spacing:13.718592px;}
.ws1e8{word-spacing:13.772390px;}
.ws201{word-spacing:13.841844px;}
.ws1e9{word-spacing:13.879987px;}
.ws279{word-spacing:13.891810px;}
.ws2c9{word-spacing:13.975495px;}
.ws238{word-spacing:14.059181px;}
.ws137{word-spacing:14.202778px;}
.ws162{word-spacing:14.243794px;}
.ws4e{word-spacing:14.267323px;}
.ws216{word-spacing:14.307744px;}
.ws278{word-spacing:14.310238px;}
.ws97{word-spacing:14.388209px;}
.ws1fc{word-spacing:14.496735px;}
.ws57{word-spacing:14.514382px;}
.ws1d6{word-spacing:14.584970px;}
.ws263{word-spacing:14.644980px;}
.ws13c{word-spacing:14.662832px;}
.ws1b0{word-spacing:14.737911px;}
.ws85{word-spacing:14.771761px;}
.ws96{word-spacing:14.848358px;}
.wsa0{word-spacing:14.871317px;}
.ws2cc{word-spacing:14.937880px;}
.ws1ad{word-spacing:14.952446px;}
.ws214{word-spacing:15.015174px;}
.ws286{word-spacing:15.063408px;}
.ws9e{word-spacing:15.171149px;}
.wsd8{word-spacing:15.305550px;}
.ws2c2{word-spacing:15.314465px;}
.ws299{word-spacing:15.398150px;}
.ws16e{word-spacing:15.402617px;}
.ws2b0{word-spacing:15.523679px;}
.ws15f{word-spacing:15.549462px;}
.ws3b{word-spacing:15.564210px;}
.ws1d9{word-spacing:15.598077px;}
.ws171{word-spacing:15.614382px;}
.ws1df{word-spacing:15.679088px;}
.ws1d8{word-spacing:15.714382px;}
.ws12a{word-spacing:15.735421px;}
.wsa1{word-spacing:16.115364px;}
.ws22d{word-spacing:16.151321px;}
.ws21b{word-spacing:16.267323px;}
.ws1b{word-spacing:16.298195px;}
.ws270{word-spacing:16.318692px;}
.ws68{word-spacing:16.402617px;}
.wseb{word-spacing:16.408512px;}
.ws3f{word-spacing:16.547368px;}
.ws2ca{word-spacing:16.552114px;}
.ws114{word-spacing:16.695712px;}
.ws1f1{word-spacing:16.767323px;}
.ws1f7{word-spacing:17.014382px;}
.ws62{word-spacing:17.373205px;}
.ws271{word-spacing:17.406605px;}
.ws213{word-spacing:17.449676px;}
.ws9b{word-spacing:17.672809px;}
.ws22c{word-spacing:17.741347px;}
.ws8f{word-spacing:17.807270px;}
.ws9f{word-spacing:18.146098px;}
.ws1e2{word-spacing:18.184970px;}
.ws225{word-spacing:18.249676px;}
.ws103{word-spacing:18.614246px;}
.ws46{word-spacing:19.044634px;}
.ws5b{word-spacing:19.326147px;}
.ws258{word-spacing:20.921400px;}
.wsc1{word-spacing:21.824200px;}
.ws2b4{word-spacing:22.804326px;}
.ws252{word-spacing:24.478038px;}
.ws24c{word-spacing:25.105680px;}
.ws2b2{word-spacing:26.863078px;}
.ws1a7{word-spacing:52.007923px;}
.ws1a2{word-spacing:52.032640px;}
.ws80{word-spacing:52.260287px;}
.ws1f5{word-spacing:54.389783px;}
.ws1a5{word-spacing:57.325441px;}
.ws18c{word-spacing:57.328072px;}
.ws19f{word-spacing:62.085551px;}
.wsc3{word-spacing:62.236346px;}
.ws186{word-spacing:64.891016px;}
.ws25{word-spacing:65.389145px;}
.ws253{word-spacing:80.756604px;}
.wsd4{word-spacing:82.743853px;}
.ws196{word-spacing:84.085960px;}
.ws19a{word-spacing:88.625305px;}
.ws18e{word-spacing:99.415611px;}
.ws192{word-spacing:103.799687px;}
.ws19b{word-spacing:104.170753px;}
.ws1a0{word-spacing:104.707556px;}
.ws19e{word-spacing:112.359594px;}
.ws193{word-spacing:117.529936px;}
.ws188{word-spacing:127.706903px;}
.ws19d{word-spacing:127.709603px;}
.ws1d5{word-spacing:131.149773px;}
.ws19c{word-spacing:132.462408px;}
.ws191{word-spacing:137.761319px;}
.ws18a{word-spacing:142.518358px;}
.ws18b{word-spacing:144.913182px;}
.ws190{word-spacing:147.809717px;}
.ws194{word-spacing:147.814230px;}
.ws1f2{word-spacing:148.099369px;}
.ws20c{word-spacing:152.909865px;}
.wsba{word-spacing:164.253874px;}
.wsb5{word-spacing:164.484810px;}
.wsc5{word-spacing:173.171352px;}
.ws1a4{word-spacing:173.189447px;}
.ws199{word-spacing:191.257732px;}
.ws198{word-spacing:201.287523px;}
.ws1a3{word-spacing:201.313875px;}
.ws1a1{word-spacing:201.330755px;}
.ws183{word-spacing:201.382596px;}
.ws189{word-spacing:211.360545px;}
.ws18f{word-spacing:211.361965px;}
.ws1c6{word-spacing:213.107148px;}
.ws197{word-spacing:213.590758px;}
.ws18d{word-spacing:223.638848px;}
.ws20b{word-spacing:252.838576px;}
.ws1d3{word-spacing:262.418765px;}
.ws1a6{word-spacing:342.292357px;}
.wsea{word-spacing:548.035660px;}
.ws6a{word-spacing:684.129435px;}
._13{margin-left:-1593.238207px;}
._11{margin-left:-433.126147px;}
._1d{margin-left:-15.362880px;}
._1{margin-left:-8.263392px;}
._0{margin-left:-5.887667px;}
._5{margin-left:-4.303872px;}
._3{margin-left:-2.479018px;}
._4{margin-left:-1.195512px;}
._2{width:1.446094px;}
._17{width:2.686973px;}
._7{width:3.907483px;}
._1c{width:6.083482px;}
._14{width:7.465499px;}
._16{width:9.413429px;}
._1b{width:11.239776px;}
._8{width:12.588826px;}
._1e{width:14.310374px;}
._e{width:16.063279px;}
._10{width:18.106698px;}
._f{width:19.636416px;}
._19{width:20.751301px;}
._1a{width:21.924764px;}
._12{width:23.638168px;}
._74{width:25.074130px;}
._7b{width:26.146262px;}
._d{width:27.754024px;}
._b{width:29.904302px;}
._75{width:31.047358px;}
._79{width:32.215079px;}
._73{width:33.976354px;}
._76{width:36.615106px;}
._77{width:37.993262px;}
._78{width:44.447346px;}
._7a{width:46.484382px;}
._20{width:47.663783px;}
._67{width:49.488632px;}
._15{width:52.722432px;}
._18{width:54.282586px;}
._5e{width:57.795978px;}
._57{width:59.573498px;}
._59{width:61.468096px;}
._58{width:63.160420px;}
._23{width:64.233064px;}
._9{width:65.454600px;}
._4e{width:68.136352px;}
._62{width:70.204803px;}
._61{width:71.386668px;}
._4f{width:72.845678px;}
._5c{width:75.888781px;}
._4b{width:78.186255px;}
._25{width:80.757171px;}
._64{width:84.237070px;}
._6c{width:91.389284px;}
._6a{width:93.794398px;}
._71{width:97.858790px;}
._40{width:100.168211px;}
._5f{width:102.231226px;}
._21{width:103.713223px;}
._43{width:104.750788px;}
._33{width:107.352252px;}
._36{width:114.978717px;}
._68{width:118.697004px;}
._3d{width:119.977959px;}
._55{width:121.350316px;}
._72{width:122.416998px;}
._56{width:132.375944px;}
._48{width:137.866390px;}
._5a{width:138.952873px;}
._60{width:139.966953px;}
._5b{width:142.090642px;}
._41{width:145.648124px;}
._50{width:148.587890px;}
._5d{width:150.855367px;}
._3c{width:153.326322px;}
._2d{width:155.722473px;}
._2c{width:158.619185px;}
._26{width:161.816838px;}
._32{width:163.371680px;}
._39{width:165.795673px;}
._31{width:168.344848px;}
._2b{width:170.099873px;}
._27{width:173.446207px;}
._28{width:175.823959px;}
._6d{width:181.436884px;}
._6b{width:193.108438px;}
._6e{width:195.354056px;}
._65{width:201.370584px;}
._35{width:202.370950px;}
._69{width:204.727121px;}
._66{width:208.401143px;}
._42{width:211.444378px;}
._46{width:216.419799px;}
._63{width:218.366871px;}
._34{width:220.151987px;}
._4c{width:221.172850px;}
._30{width:222.174750px;}
._37{width:225.806095px;}
._2e{width:229.496857px;}
._3a{width:231.948467px;}
._2f{width:233.736803px;}
._2a{width:236.564717px;}
._29{width:239.538157px;}
._6f{width:244.384839px;}
._54{width:257.575400px;}
._49{width:275.389555px;}
._51{width:278.611833px;}
._4d{width:284.079158px;}
._22{width:285.845115px;}
._47{width:316.893950px;}
._4a{width:327.593526px;}
._3b{width:337.211109px;}
._52{width:344.497182px;}
._70{width:348.451283px;}
._38{width:371.318413px;}
._45{width:384.115043px;}
._3f{width:430.678383px;}
._3e{width:432.318563px;}
._44{width:460.099165px;}
._1f{width:498.722694px;}
._53{width:527.731269px;}
._a{width:584.512762px;}
._24{width:846.956557px;}
._6{width:890.456627px;}
._c{width:982.346554px;}
.fcb{color:rgb(163,21,21);}
.fca{color:rgb(0,0,255);}
.fc7{color:rgb(46,117,182);}
.fc5{color:transparent;}
.fc3{color:rgb(206,57,20);}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(84,130,53);}
.fc9{color:rgb(127,127,127);}
.fc8{color:rgb(38,38,38);}
.fc6{color:rgb(255,255,255);}
.fc4{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs16{font-size:22.769640px;}
.fs17{font-size:25.299596px;}
.fs11{font-size:27.410877px;}
.fs18{font-size:27.829558px;}
.fs9{font-size:30.105000px;}
.fse{font-size:30.837240px;}
.fs6{font-size:32.877000px;}
.fsa{font-size:33.449995px;}
.fsf{font-size:34.263595px;}
.fs15{font-size:35.419438px;}
.fsc{font-size:36.794997px;}
.fs10{font-size:37.689957px;}
.fs14{font-size:38.428156px;}
.fsb{font-size:40.140000px;}
.fs7{font-size:41.842800px;}
.fs13{font-size:43.231856px;}
.fs12{font-size:43.636200px;}
.fs1c{font-size:44.040860px;}
.fs1a{font-size:44.265324px;}
.fs19{font-size:44.745743px;}
.fsd{font-size:46.829997px;}
.fs8{font-size:47.820600px;}
.fs1b{font-size:51.603209px;}
.fs3{font-size:52.602600px;}
.fs5{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y125{bottom:3.570267px;}
.y12c{bottom:4.598175px;}
.y284{bottom:4.629827px;}
.y286{bottom:6.451398px;}
.y9d{bottom:7.794686px;}
.y10f{bottom:8.298644px;}
.yff{bottom:9.737715px;}
.y124{bottom:10.354460px;}
.y285{bottom:12.826897px;}
.y283{bottom:15.407456px;}
.y9c{bottom:16.023386px;}
.y129{bottom:18.372142px;}
.y133{bottom:20.222377px;}
.yfe{bottom:20.839122px;}
.y126{bottom:21.455866px;}
.y128{bottom:24.539590px;}
.y9b{bottom:25.255586px;}
.y127{bottom:26.595406px;}
.y12a{bottom:27.006570px;}
.y287{bottom:28.462050px;}
.y288{bottom:30.587216px;}
.yfd{bottom:31.734946px;}
.y132{bottom:39.341466px;}
.y12d{bottom:41.397282px;}
.y9a{bottom:43.719986px;}
.y134{bottom:44.892169px;}
.y280{bottom:46.677762px;}
.y282{bottom:50.169107px;}
.y99{bottom:52.149386px;}
.yf5{bottom:53.937759px;}
.y281{bottom:56.544606px;}
.y12b{bottom:57.227065px;}
.y27f{bottom:57.455392px;}
.yfc{bottom:60.310789px;}
.y10d{bottom:61.955442px;}
.yf4{bottom:64.216839px;}
.yfb{bottom:70.589869px;}
.y122{bottom:73.056848px;}
.yf3{bottom:74.495919px;}
.y12e{bottom:78.813133px;}
.yfa{bottom:80.868949px;}
.y10e{bottom:81.485694px;}
.yf2{bottom:84.774999px;}
.y115{bottom:87.858723px;}
.yf9{bottom:91.148029px;}
.yf1{bottom:95.054079px;}
.y10c{bottom:99.782456px;}
.y10b{bottom:100.810364px;}
.yf8{bottom:101.427109px;}
.y113{bottom:104.305251px;}
.y12f{bottom:104.716414px;}
.yf0{bottom:106.566649px;}
.y87{bottom:109.750286px;}
.yf7{bottom:112.528515px;}
.y86{bottom:118.982486px;}
.y15a{bottom:123.807000px;}
.y11d{bottom:124.246666px;}
.y341{bottom:125.359500px;}
.y159{bottom:126.978000px;}
.y31{bottom:126.979500px;}
.y111{bottom:130.208533px;}
.y112{bottom:130.619696px;}
.y340{bottom:134.824500px;}
.y11e{bottom:137.403889px;}
.y85{bottom:137.446886px;}
.y110{bottom:138.637378px;}
.y30{bottom:138.934500px;}
.y11c{bottom:139.665286px;}
.y51{bottom:143.416500px;}
.y105{bottom:145.010408px;}
.y131{bottom:145.215990px;}
.y84{bottom:145.876286px;}
.y33f{bottom:146.779500px;}
.y2f4{bottom:147.526500px;}
.y158{bottom:150.132000px;}
.y2f{bottom:150.889500px;}
.y10a{bottom:152.000182px;}
.y11f{bottom:156.317396px;}
.y11b{bottom:156.522978px;}
.y33e{bottom:158.734500px;}
.y50{bottom:159.855000px;}
.y385{bottom:162.844500px;}
.y120{bottom:163.923915px;}
.y2e{bottom:164.040000px;}
.ycf{bottom:164.053500px;}
.yef{bottom:164.335078px;}
.y83{bottom:165.745586px;}
.y109{bottom:168.446710px;}
.y33d{bottom:170.689500px;}
.y1dc{bottom:172.366500px;}
.y11a{bottom:173.791832px;}
.y157{bottom:173.992500px;}
.yee{bottom:174.614158px;}
.y384{bottom:174.799500px;}
.y156{bottom:175.443000px;}
.y4f{bottom:176.293500px;}
.y108{bottom:177.081138px;}
.y2d{bottom:177.190500px;}
.y102{bottom:178.520209px;}
.y89{bottom:178.590386px;}
.y155{bottom:178.614000px;}
.y2f3{bottom:179.085000px;}
.y2f6{bottom:180.403500px;}
.yce{bottom:180.492000px;}
.y1db{bottom:181.593000px;}
.y33c{bottom:182.644500px;}
.y91{bottom:184.410686px;}
.yed{bottom:184.893238px;}
.y98{bottom:185.012786px;}
.y383{bottom:186.754500px;}
.y121{bottom:187.154636px;}
.y17b{bottom:188.694000px;}
.y3c8{bottom:189.244500px;}
.y104{bottom:189.416034px;}
.y4e{bottom:192.732000px;}
.y119{bottom:193.322084px;}
.y90{bottom:194.445686px;}
.y33b{bottom:194.599500px;}
.y97{bottom:195.047786px;}
.yec{bottom:195.172318px;}
.yab{bottom:195.449186px;}
.y2f2{bottom:195.523500px;}
.y1aa{bottom:195.819000px;}
.y107{bottom:196.611390px;}
.ya8{bottom:196.653386px;}
.ycd{bottom:196.929000px;}
.y382{bottom:198.709500px;}
.yaa{bottom:200.065286px;}
.y118{bottom:200.311858px;}
.y3c7{bottom:201.199500px;}
.y101{bottom:204.012327px;}
.y8f{bottom:204.480686px;}
.y96{bottom:205.082786px;}
.y17a{bottom:205.132500px;}
.yeb{bottom:205.451398px;}
.y33a{bottom:206.556000px;}
.ya7{bottom:206.688386px;}
.y4d{bottom:209.170500px;}
.y117{bottom:210.385357px;}
.y381{bottom:210.664500px;}
.y2f1{bottom:211.962000px;}
.y1a9{bottom:212.256000px;}
.ya2{bottom:212.508686px;}
.y3c6{bottom:213.154500px;}
.ycc{bottom:213.367500px;}
.y114{bottom:214.085826px;}
.y8e{bottom:214.515686px;}
.y100{bottom:214.908152px;}
.y95{bottom:215.117795px;}
.y123{bottom:215.319315px;}
.yea{bottom:216.552805px;}
.ya6{bottom:216.723395px;}
.y339{bottom:218.511000px;}
.y116{bottom:218.814202px;}
.y154{bottom:219.166500px;}
.y2c3{bottom:219.915000px;}
.y1da{bottom:220.339500px;}
.y179{bottom:221.571000px;}
.ya1{bottom:222.543695px;}
.y380{bottom:222.619500px;}
.y8d{bottom:224.550695px;}
.y3c5{bottom:225.109500px;}
.y94{bottom:225.152795px;}
.y4c{bottom:225.609000px;}
.ya5{bottom:226.758395px;}
.y2f0{bottom:228.400500px;}
.y1a8{bottom:228.694500px;}
.ycb{bottom:229.806000px;}
.y106{bottom:229.915609px;}
.y338{bottom:230.466000px;}
.y130{bottom:230.532354px;}
.y103{bottom:230.737935px;}
.yf6{bottom:231.354680px;}
.y37f{bottom:234.576000px;}
.y8c{bottom:234.585695px;}
.y93{bottom:235.187795px;}
.y153{bottom:235.603500px;}
.y2c2{bottom:236.353500px;}
.y1d9{bottom:236.778000px;}
.ya4{bottom:236.793395px;}
.y3c4{bottom:237.064500px;}
.y178{bottom:238.009500px;}
.ya0{bottom:239.201795px;}
.y2c{bottom:241.234500px;}
.y4b{bottom:242.047500px;}
.y337{bottom:242.421000px;}
.y8b{bottom:244.620695px;}
.y2ef{bottom:244.839000px;}
.y1a7{bottom:245.133000px;}
.y92{bottom:245.222795px;}
.ye8{bottom:246.157500px;}
.yca{bottom:246.244500px;}
.y37e{bottom:246.531000px;}
.y88{bottom:246.627695px;}
.ya3{bottom:246.828395px;}
.y3c3{bottom:249.019500px;}
.y9f{bottom:249.236795px;}
.y152{bottom:252.042000px;}
.y2c1{bottom:252.792000px;}
.y1d8{bottom:253.216500px;}
.y336{bottom:254.376000px;}
.y177{bottom:254.448000px;}
.y4a{bottom:258.486000px;}
.y3c2{bottom:260.976000px;}
.y2ee{bottom:261.277500px;}
.y1a6{bottom:261.571500px;}
.y21f{bottom:262.594500px;}
.yc9{bottom:262.683000px;}
.yac{bottom:264.088595px;}
.y8a{bottom:264.289295px;}
.ya9{bottom:264.891395px;}
.y335{bottom:266.331000px;}
.y9e{bottom:267.701195px;}
.y151{bottom:268.480500px;}
.y2c0{bottom:269.230500px;}
.y1d7{bottom:269.655000px;}
.y37d{bottom:270.441000px;}
.y176{bottom:270.886500px;}
.y2b{bottom:271.570500px;}
.y3c1{bottom:272.931000px;}
.y49{bottom:274.924500px;}
.y2ed{bottom:277.716000px;}
.y1a5{bottom:278.010000px;}
.y334{bottom:278.286000px;}
.y28e{bottom:279.033000px;}
.yc8{bottom:279.121500px;}
.y37c{bottom:282.396000px;}
.ye7{bottom:283.276500px;}
.y3c0{bottom:284.886000px;}
.y2bf{bottom:285.669000px;}
.y1d6{bottom:286.093500px;}
.y175{bottom:287.325000px;}
.y2a{bottom:288.009000px;}
.y333{bottom:290.241000px;}
.y48{bottom:291.363000px;}
.y2ec{bottom:294.154500px;}
.y37b{bottom:294.351000px;}
.y1a4{bottom:294.448500px;}
.y21e{bottom:294.700500px;}
.yc7{bottom:295.560000px;}
.y3bf{bottom:296.841000px;}
.y150{bottom:297.523500px;}
.ye6{bottom:299.715000px;}
.y2be{bottom:302.107500px;}
.y332{bottom:302.196000px;}
.y1d5{bottom:302.530500px;}
.y174{bottom:303.763500px;}
.y29{bottom:304.447500px;}
.y37a{bottom:306.306000px;}
.y47{bottom:307.800000px;}
.y3be{bottom:308.796000px;}
.y2eb{bottom:310.593000px;}
.y2aa{bottom:310.762500px;}
.y1a3{bottom:310.887000px;}
.y21d{bottom:311.139000px;}
.yc6{bottom:311.998500px;}
.y14f{bottom:313.962000px;}
.y331{bottom:314.152500px;}
.ye5{bottom:316.153500px;}
.y28d{bottom:317.283000px;}
.y379{bottom:318.261000px;}
.y2bd{bottom:318.546000px;}
.y1d4{bottom:318.969000px;}
.y173{bottom:320.202000px;}
.y3bd{bottom:320.751000px;}
.y28{bottom:320.886000px;}
.y46{bottom:324.238500px;}
.y330{bottom:326.107500px;}
.y2ea{bottom:327.030000px;}
.y2a9{bottom:327.201000px;}
.y1a2{bottom:327.325500px;}
.y21c{bottom:327.577500px;}
.yc5{bottom:328.437000px;}
.y378{bottom:330.216000px;}
.y14e{bottom:330.400500px;}
.y3bc{bottom:332.706000px;}
.y28c{bottom:333.721500px;}
.y2bc{bottom:334.984500px;}
.y1d3{bottom:335.407500px;}
.y172{bottom:336.640500px;}
.ye4{bottom:336.702000px;}
.y27{bottom:337.324500px;}
.y32f{bottom:338.062500px;}
.y45{bottom:340.677000px;}
.y377{bottom:342.172500px;}
.y2e9{bottom:343.468500px;}
.y2a8{bottom:343.639500px;}
.y1a1{bottom:343.764000px;}
.y21b{bottom:344.014500px;}
.y3bb{bottom:344.661000px;}
.yc4{bottom:344.875500px;}
.y14d{bottom:346.839000px;}
.y32e{bottom:350.017500px;}
.y28b{bottom:350.158500px;}
.y2bb{bottom:351.423000px;}
.y1d2{bottom:351.846000px;}
.y171{bottom:353.077500px;}
.y26{bottom:353.763000px;}
.y376{bottom:354.127500px;}
.y3ba{bottom:356.616000px;}
.y44{bottom:357.115500px;}
.y2e8{bottom:359.907000px;}
.y2a7{bottom:360.078000px;}
.y1a0{bottom:360.202500px;}
.y21a{bottom:360.453000px;}
.yc3{bottom:361.314000px;}
.y32d{bottom:361.972500px;}
.y14c{bottom:363.277500px;}
.y375{bottom:366.082500px;}
.y28a{bottom:366.597000px;}
.y2ba{bottom:367.860000px;}
.y1d1{bottom:368.284500px;}
.y3b9{bottom:368.572500px;}
.y170{bottom:369.516000px;}
.y25{bottom:370.201500px;}
.y43{bottom:373.554000px;}
.ye3{bottom:373.821000px;}
.y32c{bottom:373.927500px;}
.y2e7{bottom:376.345500px;}
.y2a6{bottom:376.516500px;}
.y19f{bottom:376.641000px;}
.y219{bottom:376.891500px;}
.yc2{bottom:377.751000px;}
.y374{bottom:378.037500px;}
.y14b{bottom:379.716000px;}
.y3b8{bottom:380.527500px;}
.y1d0{bottom:384.723000px;}
.y32b{bottom:385.882500px;}
.y16f{bottom:385.954500px;}
.y24{bottom:386.640000px;}
.y42{bottom:389.992500px;}
.ye2{bottom:390.259500px;}
.y3b7{bottom:392.482500px;}
.y2e6{bottom:392.784000px;}
.y2a5{bottom:392.955000px;}
.y19e{bottom:393.078000px;}
.y218{bottom:393.330000px;}
.yc1{bottom:394.189500px;}
.y2b9{bottom:395.044500px;}
.y14a{bottom:396.154500px;}
.y32a{bottom:397.837500px;}
.y1cf{bottom:401.161500px;}
.y373{bottom:401.947500px;}
.y16e{bottom:402.393000px;}
.y23{bottom:403.078500px;}
.y3b6{bottom:404.437500px;}
.y41{bottom:406.431000px;}
.ye1{bottom:406.698000px;}
.y2e5{bottom:409.222500px;}
.y2a4{bottom:409.392000px;}
.y19d{bottom:409.516500px;}
.y217{bottom:409.768500px;}
.y329{bottom:409.794000px;}
.yc0{bottom:410.628000px;}
.y2b8{bottom:411.481500px;}
.y149{bottom:412.593000px;}
.y372{bottom:413.902500px;}
.y1fb{bottom:414.082500px;}
.y252{bottom:415.210500px;}
.y3b5{bottom:416.392500px;}
.y1ce{bottom:417.600000px;}
.y16d{bottom:418.831500px;}
.y22{bottom:419.515500px;}
.y328{bottom:421.749000px;}
.y40{bottom:422.869500px;}
.ye0{bottom:423.136500px;}
.y2a3{bottom:425.830500px;}
.y371{bottom:425.857500px;}
.y19c{bottom:425.955000px;}
.y216{bottom:426.207000px;}
.ybf{bottom:427.066500px;}
.y2b7{bottom:427.920000px;}
.y3b4{bottom:428.347500px;}
.y1fa{bottom:430.521000px;}
.y251{bottom:431.649000px;}
.y148{bottom:433.140000px;}
.y327{bottom:433.704000px;}
.y1cd{bottom:434.038500px;}
.y289{bottom:434.860500px;}
.y27d{bottom:435.589500px;}
.y21{bottom:435.954000px;}
.y370{bottom:437.812500px;}
.y3f{bottom:439.308000px;}
.ydf{bottom:439.575000px;}
.y3b3{bottom:440.302500px;}
.y2a2{bottom:442.269000px;}
.y19b{bottom:442.393500px;}
.y215{bottom:442.645500px;}
.ybe{bottom:443.505000px;}
.y2e4{bottom:443.756689px;}
.y2b6{bottom:444.358500px;}
.y326{bottom:445.659000px;}
.y1f9{bottom:446.959500px;}
.y16c{bottom:447.670500px;}
.y250{bottom:448.087500px;}
.y36f{bottom:449.769000px;}
.y1cc{bottom:450.477000px;}
.y27c{bottom:452.028000px;}
.y3b2{bottom:452.257500px;}
.y20{bottom:452.392500px;}
.y3e{bottom:455.746500px;}
.y2e3{bottom:457.519976px;}
.y325{bottom:457.614000px;}
.y2a1{bottom:458.707500px;}
.y214{bottom:459.084000px;}
.ybd{bottom:459.943500px;}
.y2b5{bottom:460.797000px;}
.y36e{bottom:461.724000px;}
.y1f8{bottom:463.398000px;}
.yde{bottom:464.053500px;}
.y16b{bottom:464.109000px;}
.y3b1{bottom:464.212500px;}
.y27e{bottom:464.301000px;}
.y24f{bottom:464.526000px;}
.y1cb{bottom:466.915500px;}
.y19a{bottom:467.269500px;}
.y27b{bottom:468.465000px;}
.y1f{bottom:468.831000px;}
.y147{bottom:468.883500px;}
.y324{bottom:469.569000px;}
.y2e2{bottom:471.283262px;}
.y3d{bottom:472.185000px;}
.y36d{bottom:473.679000px;}
.y2a0{bottom:475.146000px;}
.y213{bottom:475.522500px;}
.y3b0{bottom:476.169000px;}
.ybc{bottom:476.382000px;}
.ydd{bottom:480.492000px;}
.y16a{bottom:480.547500px;}
.y24e{bottom:480.964500px;}
.y323{bottom:481.524000px;}
.y1ca{bottom:483.352500px;}
.y199{bottom:483.706500px;}
.y27a{bottom:484.903500px;}
.y2e1{bottom:485.045168px;}
.y1e{bottom:485.269500px;}
.y146{bottom:485.322000px;}
.y36c{bottom:485.634000px;}
.y3af{bottom:488.124000px;}
.y3c{bottom:488.622000px;}
.y29f{bottom:491.584500px;}
.y212{bottom:491.961000px;}
.ybb{bottom:492.820500px;}
.y1f7{bottom:493.015500px;}
.y322{bottom:493.479000px;}
.ydc{bottom:496.929000px;}
.y169{bottom:496.986000px;}
.y24d{bottom:497.401500px;}
.y36b{bottom:497.589000px;}
.y2e0{bottom:498.808454px;}
.y1c9{bottom:499.791000px;}
.y3ae{bottom:500.079000px;}
.y198{bottom:500.145000px;}
.y279{bottom:501.342000px;}
.y1d{bottom:501.708000px;}
.y145{bottom:501.760500px;}
.y3b{bottom:505.060500px;}
.y321{bottom:505.434000px;}
.y2b4{bottom:506.445276px;}
.y29e{bottom:508.023000px;}
.y211{bottom:508.398000px;}
.y22d{bottom:509.170500px;}
.yba{bottom:509.259000px;}
.y1f6{bottom:509.454000px;}
.y1f5{bottom:509.535000px;}
.y36a{bottom:509.544000px;}
.y3ad{bottom:512.034000px;}
.ydb{bottom:513.367500px;}
.y168{bottom:513.424500px;}
.y24c{bottom:513.840000px;}
.y1c8{bottom:516.229500px;}
.y197{bottom:516.583500px;}
.y320{bottom:517.390500px;}
.y278{bottom:517.780500px;}
.y1c{bottom:518.146500px;}
.y144{bottom:518.199000px;}
.y2df{bottom:518.807561px;}
.y73{bottom:521.499000px;}
.y3ac{bottom:523.989000px;}
.y29d{bottom:524.461500px;}
.y210{bottom:524.836500px;}
.y2b3{bottom:525.542053px;}
.y3a{bottom:525.609000px;}
.yb9{bottom:525.697500px;}
.y1f4{bottom:525.892500px;}
.y31f{bottom:529.345500px;}
.yda{bottom:529.806000px;}
.y167{bottom:529.863000px;}
.y24b{bottom:530.278500px;}
.y1c7{bottom:532.668000px;}
.y196{bottom:533.022000px;}
.y369{bottom:533.454000px;}
.y1b{bottom:534.585000px;}
.y143{bottom:534.637500px;}
.y3ab{bottom:535.944000px;}
.y72{bottom:537.937500px;}
.y2b2{bottom:539.067650px;}
.y29c{bottom:540.900000px;}
.y20f{bottom:541.275000px;}
.y31e{bottom:541.300500px;}
.yb8{bottom:542.134500px;}
.y1f2{bottom:542.331000px;}
.y1f3{bottom:542.412000px;}
.y368{bottom:545.409000px;}
.yd9{bottom:546.244500px;}
.y166{bottom:546.301500px;}
.y24a{bottom:546.717000px;}
.y3aa{bottom:547.899000px;}
.y1c6{bottom:549.106500px;}
.y195{bottom:549.460500px;}
.y1a{bottom:551.023500px;}
.y142{bottom:551.076000px;}
.y2b1{bottom:552.593248px;}
.y31d{bottom:553.255500px;}
.y71{bottom:554.376000px;}
.y2de{bottom:555.790500px;}
.y29b{bottom:557.338500px;}
.y367{bottom:557.365500px;}
.y20e{bottom:557.713500px;}
.y81{bottom:558.486000px;}
.yb7{bottom:558.573000px;}
.y1f1{bottom:558.769500px;}
.y3a9{bottom:559.854000px;}
.y277{bottom:560.598000px;}
.yd8{bottom:562.683000px;}
.y165{bottom:562.738500px;}
.y39{bottom:562.875000px;}
.y249{bottom:563.155500px;}
.y31c{bottom:565.210500px;}
.y1c5{bottom:565.545000px;}
.y2b0{bottom:566.118846px;}
.y19{bottom:567.462000px;}
.y141{bottom:567.513000px;}
.y194{bottom:568.984500px;}
.y366{bottom:569.320500px;}
.y70{bottom:570.814500px;}
.y3a8{bottom:571.809000px;}
.y29a{bottom:573.777000px;}
.yb6{bottom:575.011500px;}
.y1f0{bottom:575.208000px;}
.y276{bottom:575.991918px;}
.y31b{bottom:577.165500px;}
.y38{bottom:577.819500px;}
.y20d{bottom:578.262000px;}
.y22c{bottom:579.033000px;}
.yd7{bottom:579.121500px;}
.y164{bottom:579.177000px;}
.y248{bottom:579.594000px;}
.y2af{bottom:579.643210px;}
.y365{bottom:581.275500px;}
.y3a7{bottom:583.765500px;}
.y18{bottom:583.900500px;}
.y140{bottom:583.951500px;}
.y2dd{bottom:584.461500px;}
.y193{bottom:585.423000px;}
.y6f{bottom:587.253000px;}
.y31a{bottom:589.120500px;}
.y299{bottom:590.214000px;}
.y2f5{bottom:591.363000px;}
.yb5{bottom:591.450000px;}
.y1ef{bottom:591.646500px;}
.y37{bottom:592.762500px;}
.y80{bottom:592.801500px;}
.y2ae{bottom:593.168807px;}
.y364{bottom:593.230500px;}
.y275{bottom:594.642840px;}
.y1c4{bottom:594.666000px;}
.y22b{bottom:595.471500px;}
.yd6{bottom:595.560000px;}
.y163{bottom:595.615500px;}
.y3a6{bottom:595.720500px;}
.y247{bottom:596.032500px;}
.y17{bottom:600.337500px;}
.y13f{bottom:600.390000px;}
.y2dc{bottom:600.900000px;}
.y319{bottom:601.075500px;}
.y192{bottom:601.861500px;}
.y6e{bottom:603.691500px;}
.y363{bottom:605.185500px;}
.y298{bottom:606.652500px;}
.y2ad{bottom:606.694405px;}
.y3a5{bottom:607.675500px;}
.y36{bottom:607.707000px;}
.y274{bottom:607.852654px;}
.yb4{bottom:607.888500px;}
.y1ee{bottom:608.085000px;}
.y7f{bottom:609.240000px;}
.y20c{bottom:610.366500px;}
.y1c3{bottom:611.104500px;}
.y22a{bottom:611.910000px;}
.yd5{bottom:611.998500px;}
.y162{bottom:612.054000px;}
.y246{bottom:612.471000px;}
.y318{bottom:613.030500px;}
.y273{bottom:614.456958px;}
.y16{bottom:616.776000px;}
.y13e{bottom:616.828500px;}
.y362{bottom:617.140500px;}
.y2db{bottom:617.338500px;}
.y191{bottom:618.300000px;}
.y3a4{bottom:619.630500px;}
.y6d{bottom:620.130000px;}
.y35{bottom:622.651500px;}
.y297{bottom:623.091000px;}
.yb3{bottom:624.327000px;}
.y1ed{bottom:624.523500px;}
.y317{bottom:624.987000px;}
.y2ac{bottom:625.791182px;}
.y20b{bottom:626.805000px;}
.y1c2{bottom:627.541500px;}
.y229{bottom:628.348500px;}
.yd4{bottom:628.437000px;}
.y161{bottom:628.492500px;}
.y245{bottom:628.909500px;}
.y361{bottom:629.095500px;}
.y7e{bottom:629.788500px;}
.y3a3{bottom:631.585500px;}
.y15{bottom:633.214500px;}
.y13d{bottom:633.267000px;}
.y2da{bottom:633.775500px;}
.y272{bottom:634.272282px;}
.y190{bottom:634.738500px;}
.y6c{bottom:636.568500px;}
.y316{bottom:636.942000px;}
.y34{bottom:637.594500px;}
.yb2{bottom:640.765500px;}
.y1ec{bottom:640.960500px;}
.y360{bottom:641.050500px;}
.y20a{bottom:643.243500px;}
.y3a2{bottom:643.540500px;}
.y1c1{bottom:643.980000px;}
.y228{bottom:644.787000px;}
.yd3{bottom:644.875500px;}
.y160{bottom:644.931000px;}
.y244{bottom:645.348000px;}
.y271{bottom:647.482096px;}
.y315{bottom:648.897000px;}
.y14{bottom:649.653000px;}
.y13c{bottom:649.705500px;}
.y2d9{bottom:650.214000px;}
.y18f{bottom:651.177000px;}
.y6b{bottom:653.005500px;}
.y270{bottom:654.086401px;}
.y3a1{bottom:655.495500px;}
.y2d2{bottom:657.115500px;}
.yb1{bottom:657.204000px;}
.y1eb{bottom:657.399000px;}
.y296{bottom:659.281500px;}
.y209{bottom:659.682000px;}
.y1c0{bottom:660.418500px;}
.y314{bottom:660.852000px;}
.y227{bottom:661.225500px;}
.yd2{bottom:661.314000px;}
.y15f{bottom:661.369500px;}
.y33{bottom:661.458000px;}
.y243{bottom:661.786500px;}
.y2ab{bottom:662.130000px;}
.y7d{bottom:664.104000px;}
.y35f{bottom:664.962000px;}
.y13{bottom:666.091500px;}
.y13b{bottom:666.144000px;}
.y2d8{bottom:666.652500px;}
.y3a0{bottom:667.450500px;}
.y18e{bottom:667.615500px;}
.y6a{bottom:669.444000px;}
.y313{bottom:672.807000px;}
.yb0{bottom:673.642500px;}
.y1ea{bottom:673.837500px;}
.y26f{bottom:673.900520px;}
.y295{bottom:674.910208px;}
.y208{bottom:676.120500px;}
.y1bf{bottom:676.857000px;}
.y35e{bottom:676.917000px;}
.y226{bottom:677.664000px;}
.yd1{bottom:677.751000px;}
.y15e{bottom:677.808000px;}
.y242{bottom:678.223500px;}
.y39f{bottom:679.405500px;}
.y7c{bottom:680.542500px;}
.y32{bottom:682.006500px;}
.y12{bottom:682.530000px;}
.y13a{bottom:682.582500px;}
.y2d7{bottom:683.091000px;}
.y18d{bottom:684.054000px;}
.y312{bottom:684.762000px;}
.y69{bottom:685.882500px;}
.y26e{bottom:687.110334px;}
.y294{bottom:688.582601px;}
.y35d{bottom:688.872000px;}
.y2d1{bottom:689.038500px;}
.yaf{bottom:690.081000px;}
.y1e9{bottom:690.276000px;}
.y39e{bottom:691.362000px;}
.y207{bottom:692.559000px;}
.y1be{bottom:693.295500px;}
.y225{bottom:694.102500px;}
.yd0{bottom:694.189500px;}
.y241{bottom:694.662000px;}
.y311{bottom:696.717000px;}
.y7b{bottom:696.981000px;}
.y11{bottom:698.968500px;}
.y139{bottom:699.021000px;}
.y2d6{bottom:699.529500px;}
.y26d{bottom:700.320148px;}
.y18c{bottom:700.492500px;}
.y35c{bottom:700.827000px;}
.y293{bottom:702.254995px;}
.y68{bottom:702.321000px;}
.y39d{bottom:703.317000px;}
.y2d0{bottom:705.477000px;}
.y1e8{bottom:706.714500px;}
.y15d{bottom:707.065500px;}
.y310{bottom:708.672000px;}
.y206{bottom:708.997500px;}
.y1bd{bottom:709.734000px;}
.y224{bottom:710.541000px;}
.yae{bottom:710.628000px;}
.y240{bottom:711.100500px;}
.y35b{bottom:712.782000px;}
.y7a{bottom:713.419500px;}
.y26c{bottom:713.529962px;}
.y39c{bottom:715.272000px;}
.y10{bottom:715.407000px;}
.y138{bottom:715.459500px;}
.y292{bottom:715.927389px;}
.y2d5{bottom:715.968000px;}
.y18b{bottom:716.931000px;}
.y67{bottom:718.759500px;}
.y30f{bottom:720.627000px;}
.y2cf{bottom:721.915500px;}
.y1e7{bottom:723.153000px;}
.y35a{bottom:724.737000px;}
.y205{bottom:725.434500px;}
.y26b{bottom:726.739776px;}
.y223{bottom:726.979500px;}
.y39b{bottom:727.227000px;}
.y23f{bottom:727.539000px;}
.y291{bottom:729.599782px;}
.y79{bottom:729.858000px;}
.y1bc{bottom:730.282500px;}
.y15c{bottom:730.404000px;}
.y137{bottom:731.896500px;}
.y2d4{bottom:732.406500px;}
.y30e{bottom:732.583500px;}
.y18a{bottom:733.368000px;}
.y66{bottom:735.198000px;}
.yf{bottom:735.954000px;}
.y359{bottom:736.692000px;}
.y39a{bottom:739.182000px;}
.y1e6{bottom:739.591500px;}
.y26a{bottom:739.949591px;}
.y2ce{bottom:742.464000px;}
.y222{bottom:743.416500px;}
.y15b{bottom:743.713500px;}
.y23e{bottom:743.977500px;}
.y30d{bottom:744.538500px;}
.y204{bottom:745.086000px;}
.y78{bottom:746.295000px;}
.y136{bottom:748.335000px;}
.y358{bottom:748.647000px;}
.y290{bottom:748.903820px;}
.y189{bottom:749.806500px;}
.y399{bottom:751.137000px;}
.y65{bottom:751.636500px;}
.yad{bottom:752.920500px;}
.y2d3{bottom:752.955000px;}
.y269{bottom:753.159405px;}
.y30c{bottom:756.493500px;}
.y221{bottom:759.855000px;}
.y23d{bottom:760.416000px;}
.y357{bottom:760.602000px;}
.y203{bottom:761.524500px;}
.y77{bottom:762.733500px;}
.y398{bottom:763.092000px;}
.ye{bottom:765.931500px;}
.y188{bottom:766.245000px;}
.y268{bottom:766.369219px;}
.y1bb{bottom:766.501500px;}
.y64{bottom:768.075000px;}
.y30b{bottom:768.448500px;}
.y1e5{bottom:769.210500px;}
.y356{bottom:772.558500px;}
.y397{bottom:775.047000px;}
.y23c{bottom:776.854500px;}
.y202{bottom:777.963000px;}
.y76{bottom:779.172000px;}
.y267{bottom:779.579033px;}
.y1ba{bottom:779.809500px;}
.y220{bottom:780.403500px;}
.y1b9{bottom:781.260000px;}
.y82{bottom:782.359500px;}
.y187{bottom:782.683500px;}
.yd{bottom:783.864000px;}
.y1b8{bottom:784.432500px;}
.y63{bottom:784.513500px;}
.y28f{bottom:785.388000px;}
.y1e4{bottom:785.647500px;}
.y396{bottom:787.002000px;}
.y135{bottom:790.627500px;}
.y30a{bottom:792.358500px;}
.y266{bottom:792.788847px;}
.y23b{bottom:793.293000px;}
.y201{bottom:794.401500px;}
.y75{bottom:795.610500px;}
.y355{bottom:796.468500px;}
.y2cd{bottom:798.179074px;}
.y395{bottom:798.958500px;}
.y186{bottom:799.122000px;}
.y62{bottom:800.952000px;}
.yc{bottom:801.798000px;}
.y1e3{bottom:802.086000px;}
.y1b7{bottom:803.707500px;}
.y309{bottom:804.313500px;}
.y264{bottom:805.998662px;}
.y354{bottom:808.423500px;}
.y23a{bottom:809.731500px;}
.y200{bottom:810.840000px;}
.y394{bottom:810.913500px;}
.y74{bottom:812.049000px;}
.y2cc{bottom:814.304065px;}
.y185{bottom:815.560500px;}
.y308{bottom:816.268500px;}
.y61{bottom:817.390500px;}
.y265{bottom:819.207271px;}
.yb{bottom:819.730500px;}
.ye9{bottom:820.066500px;}
.y1b6{bottom:820.146000px;}
.y353{bottom:820.378500px;}
.y393{bottom:822.868500px;}
.y239{bottom:826.170000px;}
.y1e2{bottom:826.176000px;}
.y1ff{bottom:827.278500px;}
.y307{bottom:828.223500px;}
.y2cb{bottom:830.430675px;}
.y184{bottom:831.999000px;}
.y352{bottom:832.333500px;}
.y263{bottom:832.417085px;}
.y60{bottom:833.827500px;}
.y392{bottom:834.823500px;}
.y1b5{bottom:836.584500px;}
.ya{bottom:837.663000px;}
.y306{bottom:840.180000px;}
.y238{bottom:842.607000px;}
.y1e1{bottom:842.614500px;}
.y351{bottom:844.288500px;}
.y262{bottom:845.626899px;}
.y2ca{bottom:846.555666px;}
.y391{bottom:846.778500px;}
.y1fe{bottom:846.928500px;}
.y183{bottom:848.437500px;}
.y5f{bottom:850.266000px;}
.y305{bottom:852.135000px;}
.y1b4{bottom:853.021500px;}
.y9{bottom:855.595500px;}
.y350{bottom:856.243500px;}
.y390{bottom:858.733500px;}
.y261{bottom:858.836713px;}
.y237{bottom:859.045500px;}
.y1e0{bottom:859.053000px;}
.y2c9{bottom:862.682276px;}
.y1fd{bottom:863.367000px;}
.y304{bottom:864.090000px;}
.y1b3{bottom:866.580000px;}
.y5e{bottom:866.704500px;}
.y182{bottom:867.961500px;}
.y34f{bottom:868.198500px;}
.y38f{bottom:870.688500px;}
.y1b2{bottom:871.201500px;}
.y260{bottom:872.046527px;}
.y1df{bottom:875.491500px;}
.y303{bottom:876.045000px;}
.y236{bottom:879.594000px;}
.y34e{bottom:880.155000px;}
.y38e{bottom:882.643500px;}
.y5d{bottom:883.143000px;}
.y1fc{bottom:883.915500px;}
.y181{bottom:884.400000px;}
.y25f{bottom:885.256342px;}
.y2c8{bottom:886.115472px;}
.y302{bottom:888.000000px;}
.y8{bottom:889.375500px;}
.y1b1{bottom:890.476500px;}
.y1de{bottom:891.930000px;}
.y34d{bottom:892.110000px;}
.y2c6{bottom:893.124227px;}
.y38d{bottom:894.598500px;}
.y25e{bottom:898.466156px;}
.y5c{bottom:899.581500px;}
.y301{bottom:899.955000px;}
.y180{bottom:900.838500px;}
.y2c5{bottom:901.186722px;}
.y34c{bottom:904.065000px;}
.y38c{bottom:906.555000px;}
.y1b0{bottom:906.915000px;}
.y7{bottom:907.308000px;}
.y1dd{bottom:908.368500px;}
.y2c7{bottom:909.250837px;}
.y25d{bottom:911.675970px;}
.y235{bottom:911.910000px;}
.y5b{bottom:916.020000px;}
.y17f{bottom:917.277000px;}
.y38b{bottom:918.510000px;}
.y1af{bottom:923.353500px;}
.y300{bottom:923.865000px;}
.y25c{bottom:924.885784px;}
.y6{bottom:925.240500px;}
.y34b{bottom:927.975000px;}
.y234{bottom:928.348500px;}
.y38a{bottom:930.465000px;}
.y5a{bottom:932.458500px;}
.y17e{bottom:933.715500px;}
.y2ff{bottom:935.820000px;}
.y25b{bottom:938.095598px;}
.y1ae{bottom:939.792000px;}
.y34a{bottom:939.930000px;}
.y389{bottom:942.420000px;}
.y5{bottom:943.173000px;}
.y233{bottom:944.787000px;}
.y2fe{bottom:947.776500px;}
.y2c4{bottom:948.657000px;}
.y59{bottom:948.897000px;}
.y25a{bottom:951.304207px;}
.y349{bottom:951.885000px;}
.y17d{bottom:953.154000px;}
.y388{bottom:954.375000px;}
.y17c{bottom:956.326500px;}
.y2fd{bottom:959.731500px;}
.y4{bottom:961.105500px;}
.y232{bottom:961.225500px;}
.y348{bottom:963.840000px;}
.y259{bottom:964.514021px;}
.y58{bottom:965.335500px;}
.y387{bottom:966.330000px;}
.y1ad{bottom:967.789500px;}
.y2fc{bottom:971.686500px;}
.y347{bottom:975.795000px;}
.y1ab{bottom:977.016000px;}
.y231{bottom:977.664000px;}
.y258{bottom:977.723836px;}
.y386{bottom:978.285000px;}
.y3{bottom:979.039500px;}
.y57{bottom:981.774000px;}
.y2fb{bottom:983.641500px;}
.y1ac{bottom:986.121000px;}
.y346{bottom:987.751500px;}
.y230{bottom:994.102500px;}
.y2fa{bottom:995.596500px;}
.y257{bottom:996.510966px;}
.y56{bottom:998.211000px;}
.y345{bottom:999.706500px;}
.y255{bottom:1003.627559px;}
.y2f9{bottom:1007.551500px;}
.y254{bottom:1008.334588px;}
.y22f{bottom:1010.541000px;}
.y344{bottom:1011.661500px;}
.y55{bottom:1014.649500px;}
.y2{bottom:1014.675000px;}
.y256{bottom:1014.940098px;}
.y2f8{bottom:1019.506500px;}
.y343{bottom:1023.616500px;}
.y22e{bottom:1026.979500px;}
.y54{bottom:1031.088000px;}
.y2f7{bottom:1031.461500px;}
.y342{bottom:1035.571500px;}
.y1{bottom:1044.562500px;}
.y53{bottom:1047.526500px;}
.y253{bottom:1050.964500px;}
.y52{bottom:1086.979500px;}
.h21{height:18.456836px;}
.h36{height:18.489215px;}
.h37{height:20.222382px;}
.h22{height:20.763942px;}
.h20{height:21.586269px;}
.h14{height:23.176534px;}
.h13{height:23.486861px;}
.h1d{height:23.790445px;}
.h7{height:24.164595px;}
.h11{height:24.416213px;}
.h10{height:24.445613px;}
.h35{height:24.541105px;}
.h1c{height:25.040200px;}
.h19{height:25.219013px;}
.h12{height:25.724483px;}
.h1f{height:26.169492px;}
.h17{height:26.443135px;}
.h1e{height:27.270341px;}
.h31{height:27.668272px;}
.hc{height:29.624702px;}
.h16{height:29.877969px;}
.h9{height:30.377873px;}
.h8{height:30.754458px;}
.h15{height:30.869385px;}
.h30{height:31.126937px;}
.h40{height:31.709419px;}
.h32{height:31.775414px;}
.h3a{height:31.871033px;}
.h2a{height:32.072607px;}
.h38{height:32.216935px;}
.h41{height:32.370032px;}
.h3b{height:32.535013px;}
.h39{height:32.888121px;}
.ha{height:34.430832px;}
.h23{height:34.903364px;}
.hb{height:35.148141px;}
.h2c{height:36.044928px;}
.h3e{height:37.154311px;}
.h18{height:37.431985px;}
.h24{height:37.551283px;}
.h3f{height:37.928359px;}
.hd{height:37.981670px;}
.he{height:38.573453px;}
.h1a{height:38.734848px;}
.h3c{height:39.057638px;}
.h6{height:39.541824px;}
.h3{height:43.935066px;}
.h5{height:47.127312px;}
.h29{height:52.225824px;}
.h2b{height:52.231824px;}
.h2{height:52.722432px;}
.h2f{height:56.088049px;}
.h27{height:57.059453px;}
.h33{height:58.197454px;}
.h25{height:58.839155px;}
.h28{height:58.845155px;}
.h4{height:64.702911px;}
.h34{height:68.424033px;}
.h3d{height:69.410768px;}
.h26{height:71.523155px;}
.h1{height:72.098095px;}
.h2d{height:78.930710px;}
.h2e{height:115.836710px;}
.h1b{height:242.404691px;}
.hf{height:280.114481px;}
.h0{height:1188.000000px;}
.w3{width:360.367502px;}
.w1{width:703.635217px;}
.w2{width:741.473812px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x10c{left:1.813602px;}
.x8e{left:4.520739px;}
.x6b{left:6.941745px;}
.x69{left:19.123030px;}
.x8f{left:24.088356px;}
.x91{left:27.993353px;}
.x93{left:35.734399px;}
.x6e{left:40.426416px;}
.x90{left:42.545455px;}
.x94{left:49.045859px;}
.x10d{left:77.191040px;}
.xc5{left:79.621500px;}
.x19{left:80.697000px;}
.xf5{left:82.093500px;}
.x92{left:84.557939px;}
.x52{left:85.581000px;}
.x83{left:88.264414px;}
.x82{left:93.360000px;}
.x66{left:94.402590px;}
.x50{left:95.641500px;}
.x53{left:98.089500px;}
.xad{left:102.801000px;}
.x11e{left:103.851000px;}
.xf6{left:105.516000px;}
.x65{left:107.181585px;}
.x51{left:109.596000px;}
.x7d{left:111.084000px;}
.xf7{left:117.537000px;}
.xc4{left:118.872000px;}
.x70{left:120.871500px;}
.x5{left:122.754000px;}
.x1{left:124.189500px;}
.x4{left:127.132500px;}
.x7e{left:129.940500px;}
.xc8{left:137.701500px;}
.x7f{left:142.449000px;}
.x10f{left:144.907500px;}
.xac{left:146.094000px;}
.x8{left:147.418500px;}
.x6{left:152.784000px;}
.xeb{left:155.326500px;}
.x87{left:158.969142px;}
.x7{left:160.098000px;}
.xaa{left:161.842500px;}
.x6f{left:167.791555px;}
.x8c{left:169.566873px;}
.x3{left:173.425500px;}
.xa9{left:174.507000px;}
.x8a{left:175.557264px;}
.x58{left:177.006000px;}
.x13{left:178.626000px;}
.x89{left:179.923474px;}
.xf8{left:183.789000px;}
.xc2{left:186.171000px;}
.x59{left:189.514500px;}
.x86{left:191.227464px;}
.xc3{left:195.747000px;}
.xf9{left:196.884000px;}
.xc6{left:197.989500px;}
.xee{left:207.234000px;}
.x116{left:214.830000px;}
.x88{left:216.153205px;}
.xef{left:217.405500px;}
.x54{left:228.700500px;}
.x8d{left:230.685340px;}
.x8b{left:232.738244px;}
.xc1{left:235.044000px;}
.xf1{left:240.126000px;}
.x55{left:241.207500px;}
.x10b{left:243.723625px;}
.x2{left:246.811500px;}
.x96{left:252.880187px;}
.xf2{left:254.224500px;}
.xc9{left:255.481500px;}
.xa8{left:257.425500px;}
.x115{left:265.758873px;}
.x114{left:266.759199px;}
.xa4{left:268.368276px;}
.xfa{left:270.144000px;}
.x5a{left:274.759500px;}
.xe9{left:278.623500px;}
.x4c{left:281.349000px;}
.x5b{left:287.268000px;}
.xf3{left:288.318000px;}
.xea{left:289.569000px;}
.x4d{left:293.857500px;}
.x4e{left:300.712500px;}
.x80{left:301.827000px;}
.xf4{left:303.144000px;}
.x5e{left:305.869500px;}
.x71{left:309.637500px;}
.x4f{left:313.221000px;}
.x81{left:314.335500px;}
.x6a{left:316.004742px;}
.x72{left:322.144500px;}
.x73{left:328.432500px;}
.x74{left:340.939500px;}
.xc7{left:343.104000px;}
.x109{left:344.708370px;}
.x75{left:347.227500px;}
.xa3{left:349.414368px;}
.xed{left:350.914500px;}
.xf0{left:353.160000px;}
.x56{left:357.799500px;}
.x76{left:359.736000px;}
.x117{left:362.142000px;}
.x9b{left:363.174201px;}
.x97{left:364.745188px;}
.x77{left:366.022500px;}
.xb{left:368.977500px;}
.x57{left:370.306500px;}
.xa{left:373.356000px;}
.x9a{left:374.852778px;}
.x99{left:375.978509px;}
.x107{left:377.017500px;}
.x78{left:378.531000px;}
.x118{left:382.219500px;}
.x79{left:384.817500px;}
.xe{left:386.902500px;}
.xec{left:388.615500px;}
.x7a{left:397.326000px;}
.xc{left:399.007500px;}
.x7b{left:403.612500px;}
.xca{left:405.222000px;}
.xd{left:406.323000px;}
.x10a{left:407.913938px;}
.x9{left:412.081500px;}
.x7c{left:416.121000px;}
.x108{left:417.448500px;}
.xa0{left:420.359293px;}
.x5c{left:422.136000px;}
.xa7{left:425.452149px;}
.x14{left:428.194500px;}
.x106{left:430.468500px;}
.xab{left:432.415500px;}
.x5d{left:434.644500px;}
.x98{left:436.269168px;}
.x9d{left:455.751536px;}
.x9e{left:472.433284px;}
.xe3{left:475.857000px;}
.x1a{left:476.932500px;}
.x10e{left:481.716000px;}
.xe4{left:485.056500px;}
.xa5{left:486.353128px;}
.xa2{left:488.231373px;}
.x1f{left:489.441000px;}
.x45{left:491.877000px;}
.xa1{left:493.602450px;}
.x9c{left:495.032783px;}
.x20{left:496.306500px;}
.xae{left:499.036500px;}
.x112{left:500.975727px;}
.xbc{left:502.893000px;}
.xb7{left:504.078000px;}
.xd3{left:506.019000px;}
.x21{left:508.815000px;}
.x113{left:510.189030px;}
.xfb{left:512.079000px;}
.xd0{left:513.964500px;}
.x22{left:515.680500px;}
.xbd{left:517.510500px;}
.xb8{left:518.829000px;}
.xe1{left:520.845000px;}
.x111{left:523.012500px;}
.xff{left:525.355500px;}
.x11d{left:526.644000px;}
.x23{left:528.187500px;}
.x3f{left:530.374500px;}
.xcb{left:533.157000px;}
.x100{left:537.862500px;}
.x5f{left:539.520000px;}
.xb9{left:541.279500px;}
.x40{left:542.883000px;}
.xd2{left:544.434000px;}
.x60{left:545.773500px;}
.xb6{left:546.852000px;}
.x103{left:548.073000px;}
.x61{left:552.090000px;}
.x101{left:557.815500px;}
.x85{left:558.976113px;}
.xd1{left:561.115500px;}
.xfd{left:562.525500px;}
.x24{left:564.114000px;}
.xce{left:568.635000px;}
.x62{left:570.913500px;}
.xe2{left:572.760000px;}
.x68{left:574.085458px;}
.x25{left:576.622500px;}
.x6d{left:577.804763px;}
.x6c{left:581.123756px;}
.x26{left:583.236000px;}
.x63{left:589.738500px;}
.xdd{left:590.908500px;}
.xb4{left:593.688000px;}
.x27{left:595.743000px;}
.xd8{left:599.920500px;}
.x28{left:602.356500px;}
.x104{left:604.140000px;}
.x64{left:608.562000px;}
.x67{left:610.239807px;}
.x95{left:611.955177px;}
.x84{left:613.398702px;}
.x17{left:614.454000px;}
.x105{left:616.648500px;}
.x16{left:618.834000px;}
.x29{left:621.477000px;}
.x12{left:626.320500px;}
.x9f{left:628.967140px;}
.xbe{left:632.746500px;}
.x2a{left:633.985500px;}
.xb5{left:635.412000px;}
.x2b{left:640.597500px;}
.x18{left:644.484000px;}
.x10{left:647.451000px;}
.xb2{left:648.804000px;}
.x11{left:651.897000px;}
.x2c{left:653.106000px;}
.xa6{left:654.356125px;}
.xf{left:656.316000px;}
.x15{left:658.078500px;}
.x2d{left:659.718000px;}
.xfc{left:661.257000px;}
.xd4{left:662.580000px;}
.xdc{left:664.098000px;}
.xe6{left:667.185000px;}
.xcf{left:668.703000px;}
.x2e{left:672.226500px;}
.x46{left:675.429000px;}
.x2f{left:678.840000px;}
.xe8{left:680.001000px;}
.xe7{left:681.162000px;}
.xba{left:686.775000px;}
.x47{left:687.936000px;}
.x110{left:689.476500px;}
.x30{left:691.347000px;}
.x48{left:694.584000px;}
.xe0{left:696.364500px;}
.x31{left:697.960500px;}
.xda{left:700.482000px;}
.x49{left:707.092500px;}
.xdb{left:709.134000px;}
.x32{left:710.467500px;}
.x4a{left:713.739000px;}
.xb0{left:716.289000px;}
.x33{left:717.985500px;}
.xde{left:720.835500px;}
.xcc{left:723.775500px;}
.x4b{left:726.247500px;}
.x34{left:730.494000px;}
.xb1{left:732.349500px;}
.x119{left:736.509000px;}
.xd5{left:739.368000px;}
.xaf{left:742.279500px;}
.x11a{left:749.017500px;}
.xd6{left:751.786500px;}
.xb3{left:754.600500px;}
.x11b{left:759.232500px;}
.x3b{left:763.296000px;}
.xdf{left:765.609000px;}
.xbb{left:766.954500px;}
.x3c{left:769.549500px;}
.xd7{left:770.857500px;}
.x3d{left:775.872000px;}
.xfe{left:779.325000px;}
.xcd{left:784.015500px;}
.x35{left:787.005000px;}
.x3e{left:788.380500px;}
.x11c{left:791.070000px;}
.x36{left:793.258500px;}
.xd9{left:796.578000px;}
.x37{left:799.857000px;}
.x41{left:801.216000px;}
.xbf{left:803.350500px;}
.x1b{left:804.468000px;}
.xe5{left:810.255000px;}
.x38{left:812.365500px;}
.x42{left:813.724500px;}
.x1c{left:816.976500px;}
.x39{left:818.964000px;}
.x43{left:820.021500px;}
.x1d{left:823.312500px;}
.x102{left:824.626500px;}
.xc0{left:825.867000px;}
.x3a{left:831.472500px;}
.x44{left:832.528500px;}
.x1e{left:835.819500px;}
@media print{
.v17{vertical-align:-28.672406pt;}
.v15{vertical-align:-23.486257pt;}
.v6{vertical-align:-20.466790pt;}
.v7{vertical-align:-19.004877pt;}
.v2{vertical-align:-14.080000pt;}
.v10{vertical-align:-9.776000pt;}
.vf{vertical-align:-8.592000pt;}
.v8{vertical-align:-7.173333pt;}
.v3{vertical-align:-2.140800pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.461914pt;}
.v9{vertical-align:7.173333pt;}
.vb{vertical-align:11.274667pt;}
.v4{vertical-align:14.619136pt;}
.vd{vertical-align:16.432000pt;}
.v14{vertical-align:22.187656pt;}
.v1{vertical-align:23.146667pt;}
.ve{vertical-align:24.496000pt;}
.v16{vertical-align:28.672406pt;}
.va{vertical-align:31.664000pt;}
.v13{vertical-align:32.805333pt;}
.vc{vertical-align:35.765333pt;}
.v11{vertical-align:67.482667pt;}
.v12{vertical-align:100.288000pt;}
.lsb5{letter-spacing:-1.038970pt;}
.ls27{letter-spacing:-0.899433pt;}
.ls24{letter-spacing:-0.794772pt;}
.ls55{letter-spacing:-0.787301pt;}
.ls56{letter-spacing:-0.760500pt;}
.ls29{letter-spacing:-0.742441pt;}
.ls52{letter-spacing:-0.733698pt;}
.ls54{letter-spacing:-0.556136pt;}
.lsa6{letter-spacing:-0.500595pt;}
.ls53{letter-spacing:-0.495832pt;}
.lsa7{letter-spacing:-0.440775pt;}
.lsad{letter-spacing:-0.198349pt;}
.lsac{letter-spacing:-0.188904pt;}
.ls5c{letter-spacing:-0.186394pt;}
.ls61{letter-spacing:-0.182739pt;}
.ls1e{letter-spacing:-0.178400pt;}
.ls77{letter-spacing:-0.167511pt;}
.ls1b{letter-spacing:-0.148667pt;}
.ls4b{letter-spacing:-0.145278pt;}
.ls64{letter-spacing:-0.143755pt;}
.ls16{letter-spacing:-0.139152pt;}
.lsaa{letter-spacing:-0.138529pt;}
.ls5d{letter-spacing:-0.137054pt;}
.lsb1{letter-spacing:-0.135606pt;}
.ls17{letter-spacing:-0.133800pt;}
.ls74{letter-spacing:-0.124263pt;}
.ls5e{letter-spacing:-0.121826pt;}
.ls1a{letter-spacing:-0.118933pt;}
.ls5b{letter-spacing:-0.117867pt;}
.ls50{letter-spacing:-0.115126pt;}
.ls62{letter-spacing:-0.112385pt;}
.ls70{letter-spacing:-0.098679pt;}
.ls11{letter-spacing:-0.096336pt;}
.ls1c{letter-spacing:-0.089200pt;}
.ls23{letter-spacing:-0.085632pt;}
.ls58{letter-spacing:-0.084974pt;}
.ls21{letter-spacing:-0.082956pt;}
.lsae{letter-spacing:-0.072863pt;}
.ls4f{letter-spacing:-0.071268pt;}
.lsb2{letter-spacing:-0.067466pt;}
.ls51{letter-spacing:-0.065786pt;}
.ls1f{letter-spacing:-0.064224pt;}
.ls6f{letter-spacing:-0.063045pt;}
.ls20{letter-spacing:-0.061548pt;}
.ls65{letter-spacing:-0.058477pt;}
.ls60{letter-spacing:-0.054822pt;}
.ls68{letter-spacing:-0.051167pt;}
.ls6a{letter-spacing:-0.048730pt;}
.ls4e{letter-spacing:-0.046598pt;}
.lsb4{letter-spacing:-0.044977pt;}
.ls5a{letter-spacing:-0.034111pt;}
.ls26{letter-spacing:-0.029733pt;}
.ls12{letter-spacing:-0.029436pt;}
.ls14{letter-spacing:-0.024084pt;}
.ls6d{letter-spacing:-0.019188pt;}
.ls25{letter-spacing:-0.014867pt;}
.ls6c{letter-spacing:-0.008223pt;}
.ls15{letter-spacing:-0.008028pt;}
.ls4c{letter-spacing:-0.005482pt;}
.ls13{letter-spacing:-0.005352pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.000307pt;}
.ls5{letter-spacing:0.000327pt;}
.ls63{letter-spacing:0.002437pt;}
.ls2d{letter-spacing:0.002741pt;}
.ls28{letter-spacing:0.004163pt;}
.ls3f{letter-spacing:0.004318pt;}
.ls78{letter-spacing:0.016447pt;}
.lsd{letter-spacing:0.017840pt;}
.lsa3{letter-spacing:0.017991pt;}
.lsa2{letter-spacing:0.018890pt;}
.ls72{letter-spacing:0.041421pt;}
.lsf{letter-spacing:0.044600pt;}
.ls6b{letter-spacing:0.048730pt;}
.ls19{letter-spacing:0.050844pt;}
.lsa4{letter-spacing:0.051724pt;}
.ls59{letter-spacing:0.054822pt;}
.lsa8{letter-spacing:0.056671pt;}
.ls1d{letter-spacing:0.059467pt;}
.ls75{letter-spacing:0.060913pt;}
.lsab{letter-spacing:0.062968pt;}
.lsa9{letter-spacing:0.066116pt;}
.ls73{letter-spacing:0.070659pt;}
.ls4d{letter-spacing:0.091370pt;}
.ls5f{letter-spacing:0.097461pt;}
.ls57{letter-spacing:0.098679pt;}
.lsb3{letter-spacing:0.101198pt;}
.lsb0{letter-spacing:0.107270pt;}
.ls66{letter-spacing:0.109644pt;}
.ls22{letter-spacing:0.115068pt;}
.ls32{letter-spacing:0.119091pt;}
.ls69{letter-spacing:0.119390pt;}
.ls9b{letter-spacing:0.119629pt;}
.ls9c{letter-spacing:0.119859pt;}
.ls76{letter-spacing:0.121826pt;}
.ls4a{letter-spacing:0.124425pt;}
.ls9d{letter-spacing:0.125193pt;}
.lsaf{letter-spacing:0.127510pt;}
.lse{letter-spacing:0.133802pt;}
.ls6e{letter-spacing:0.142537pt;}
.ls10{letter-spacing:0.142722pt;}
.ls8{letter-spacing:0.145693pt;}
.lsc{letter-spacing:0.146288pt;}
.ls71{letter-spacing:0.158983pt;}
.lsa{letter-spacing:0.163533pt;}
.ls18{letter-spacing:0.168588pt;}
.ls9{letter-spacing:0.178402pt;}
.ls67{letter-spacing:0.180912pt;}
.ls39{letter-spacing:0.385018pt;}
.ls37{letter-spacing:0.390351pt;}
.ls47{letter-spacing:0.715674pt;}
.ls7d{letter-spacing:0.955674pt;}
.ls30{letter-spacing:1.078067pt;}
.ls41{letter-spacing:1.222371pt;}
.ls83{letter-spacing:1.222385pt;}
.ls2f{letter-spacing:1.270067pt;}
.ls31{letter-spacing:1.275401pt;}
.ls45{letter-spacing:1.551108pt;}
.ls7c{letter-spacing:1.910340pt;}
.ls8c{letter-spacing:1.913173pt;}
.ls7f{letter-spacing:2.149658pt;}
.ls8d{letter-spacing:2.151526pt;}
.ls8e{letter-spacing:2.156860pt;}
.ls40{letter-spacing:2.630067pt;}
.ls0{letter-spacing:2.658616pt;}
.ls49{letter-spacing:3.588318pt;}
.ls94{letter-spacing:3.612962pt;}
.ls8a{letter-spacing:3.701658pt;}
.ls81{letter-spacing:3.706991pt;}
.ls36{letter-spacing:3.953499pt;}
.ls44{letter-spacing:4.050973pt;}
.ls87{letter-spacing:4.205668pt;}
.ls84{letter-spacing:4.211002pt;}
.ls35{letter-spacing:4.305007pt;}
.ls88{letter-spacing:4.571718pt;}
.ls38{letter-spacing:4.673499pt;}
.ls90{letter-spacing:4.783863pt;}
.ls42{letter-spacing:5.207841pt;}
.ls3c{letter-spacing:5.388166pt;}
.ls79{letter-spacing:5.393499pt;}
.ls95{letter-spacing:5.420791pt;}
.ls96{letter-spacing:5.759258pt;}
.lsb{letter-spacing:5.881253pt;}
.ls8b{letter-spacing:6.120335pt;}
.ls48{letter-spacing:6.593506pt;}
.ls3b{letter-spacing:6.711526pt;}
.ls7a{letter-spacing:6.716860pt;}
.ls93{letter-spacing:6.910754pt;}
.ls2e{letter-spacing:7.001654pt;}
.ls7{letter-spacing:7.739587pt;}
.ls1{letter-spacing:9.297115pt;}
.ls98{letter-spacing:10.359458pt;}
.ls86{letter-spacing:10.621995pt;}
.ls3{letter-spacing:11.954167pt;}
.lsb6{letter-spacing:11.954543pt;}
.ls2{letter-spacing:11.956233pt;}
.ls9f{letter-spacing:12.035653pt;}
.lsa0{letter-spacing:12.051329pt;}
.lsa5{letter-spacing:12.151319pt;}
.lsb7{letter-spacing:12.235704pt;}
.ls46{letter-spacing:12.395239pt;}
.ls89{letter-spacing:12.529050pt;}
.ls8f{letter-spacing:13.071863pt;}
.ls7b{letter-spacing:13.279420pt;}
.ls91{letter-spacing:14.826112pt;}
.ls85{letter-spacing:15.670340pt;}
.ls34{letter-spacing:15.674086pt;}
.ls6{letter-spacing:17.001873pt;}
.ls7e{letter-spacing:17.345499pt;}
.ls9e{letter-spacing:17.350833pt;}
.ls92{letter-spacing:17.852962pt;}
.ls33{letter-spacing:18.673499pt;}
.ls9a{letter-spacing:19.582396pt;}
.ls3a{letter-spacing:20.777062pt;}
.ls3e{letter-spacing:23.098086pt;}
.ls3d{letter-spacing:24.078123pt;}
.ls99{letter-spacing:26.727629pt;}
.ls80{letter-spacing:28.193052pt;}
.ls2c{letter-spacing:28.468945pt;}
.ls43{letter-spacing:29.041026pt;}
.ls82{letter-spacing:29.741668pt;}
.ls2b{letter-spacing:37.208747pt;}
.ls97{letter-spacing:40.332151pt;}
.lsa1{letter-spacing:207.766047pt;}
.ws11f{word-spacing:-61.497549pt;}
.wsf7{word-spacing:-48.968499pt;}
.ws11e{word-spacing:-36.439450pt;}
.ws135{word-spacing:-35.696077pt;}
.ws120{word-spacing:-34.144051pt;}
.ws133{word-spacing:-33.761485pt;}
.wsf6{word-spacing:-30.461850pt;}
.ws11b{word-spacing:-27.018752pt;}
.ws13a{word-spacing:-24.914637pt;}
.wsf8{word-spacing:-23.727334pt;}
.wsfd{word-spacing:-23.240909pt;}
.wsfc{word-spacing:-23.193088pt;}
.ws11c{word-spacing:-22.714880pt;}
.ws107{word-spacing:-21.232435pt;}
.ws106{word-spacing:-19.606528pt;}
.ws1{word-spacing:-13.283467pt;}
.ws4a{word-spacing:-11.955200pt;}
.ws24{word-spacing:-10.626800pt;}
.wsf9{word-spacing:-9.696933pt;}
.ws195{word-spacing:-9.607079pt;}
.ws239{word-spacing:-9.298400pt;}
.ws83{word-spacing:-9.004145pt;}
.ws7b{word-spacing:-8.951814pt;}
.ws81{word-spacing:-8.847153pt;}
.ws7c{word-spacing:-8.786199pt;}
.ws7d{word-spacing:-8.771332pt;}
.wscb{word-spacing:-8.375545pt;}
.wsbc{word-spacing:-8.238491pt;}
.wse7{word-spacing:-8.208034pt;}
.wsbf{word-spacing:-8.192806pt;}
.wsdb{word-spacing:-8.160219pt;}
.wsb1{word-spacing:-8.121844pt;}
.wsaf{word-spacing:-8.053317pt;}
.ws6c{word-spacing:-7.974480pt;}
.ws70{word-spacing:-7.971804pt;}
.ws6d{word-spacing:-7.966452pt;}
.ws6b{word-spacing:-7.945044pt;}
.wsb2{word-spacing:-7.879714pt;}
.wsc7{word-spacing:-7.718904pt;}
.wsac{word-spacing:-7.705502pt;}
.wsde{word-spacing:-7.696975pt;}
.wsd3{word-spacing:-7.680529pt;}
.wsc6{word-spacing:-7.647636pt;}
.wse9{word-spacing:-7.636671pt;}
.wsb3{word-spacing:-7.615046pt;}
.wsab{word-spacing:-7.614132pt;}
.wsce{word-spacing:-7.529769pt;}
.wscf{word-spacing:-7.518804pt;}
.wsd9{word-spacing:-7.474947pt;}
.wsb7{word-spacing:-7.453018pt;}
.wsca{word-spacing:-7.425607pt;}
.wsbb{word-spacing:-7.351598pt;}
.ws1c2{word-spacing:-7.172043pt;}
.ws1b9{word-spacing:-7.134262pt;}
.ws1bc{word-spacing:-7.115372pt;}
.ws1ba{word-spacing:-6.926468pt;}
.ws1bb{word-spacing:-6.917023pt;}
.wsc8{word-spacing:-6.819826pt;}
.wsbe{word-spacing:-6.797898pt;}
.wscd{word-spacing:-6.749167pt;}
.ws75{word-spacing:-6.719732pt;}
.wsc2{word-spacing:-6.702873pt;}
.ws1b8{word-spacing:-6.674596pt;}
.wsb8{word-spacing:-6.666325pt;}
.wsc4{word-spacing:-6.641960pt;}
.ws1b5{word-spacing:-6.614777pt;}
.wse3{word-spacing:-6.576174pt;}
.ws89{word-spacing:-3.825664pt;}
.wsee{word-spacing:-3.777843pt;}
.wsf5{word-spacing:-3.682202pt;}
.wsf4{word-spacing:-3.664632pt;}
.ws1ef{word-spacing:-3.586560pt;}
.ws223{word-spacing:-3.538739pt;}
.ws134{word-spacing:-3.347456pt;}
.ws132{word-spacing:-3.299635pt;}
.ws144{word-spacing:-3.251814pt;}
.ws2af{word-spacing:-3.235843pt;}
.ws149{word-spacing:-3.203994pt;}
.ws20e{word-spacing:-3.156173pt;}
.ws38{word-spacing:-3.108352pt;}
.ws285{word-spacing:-3.087069pt;}
.ws2f{word-spacing:-3.060531pt;}
.ws61{word-spacing:-3.012710pt;}
.ws236{word-spacing:-2.975488pt;}
.ws218{word-spacing:-2.964890pt;}
.ws2d0{word-spacing:-2.938294pt;}
.ws8d{word-spacing:-2.917069pt;}
.ws2b7{word-spacing:-2.901101pt;}
.ws208{word-spacing:-2.821427pt;}
.ws154{word-spacing:-2.773606pt;}
.ws13f{word-spacing:-2.725786pt;}
.ws140{word-spacing:-2.677965pt;}
.ws15a{word-spacing:-2.630144pt;}
.wsf0{word-spacing:-2.582323pt;}
.ws14{word-spacing:-2.534502pt;}
.ws50{word-spacing:-2.486682pt;}
.ws51{word-spacing:-2.482294pt;}
.ws210{word-spacing:-2.471657pt;}
.ws180{word-spacing:-2.443427pt;}
.ws10c{word-spacing:-2.438861pt;}
.ws277{word-spacing:-2.417584pt;}
.ws158{word-spacing:-2.391040pt;}
.ws8a{word-spacing:-2.343219pt;}
.ws2ad{word-spacing:-2.343197pt;}
.ws110{word-spacing:-2.247578pt;}
.ws3a{word-spacing:-2.199757pt;}
.ws148{word-spacing:-2.151936pt;}
.ws20{word-spacing:-2.125360pt;}
.ws28f{word-spacing:-2.120035pt;}
.ws172{word-spacing:-2.104115pt;}
.ws8c{word-spacing:-2.008474pt;}
.ws243{word-spacing:-1.934067pt;}
.wsa6{word-spacing:-1.912832pt;}
.ws1f{word-spacing:-1.912824pt;}
.ws58{word-spacing:-1.865356pt;}
.ws59{word-spacing:-1.865011pt;}
.ws2bf{word-spacing:-1.859680pt;}
.ws12e{word-spacing:-1.817190pt;}
.ws12f{word-spacing:-1.773697pt;}
.ws130{word-spacing:-1.772595pt;}
.wsa2{word-spacing:-1.769370pt;}
.ws2bd{word-spacing:-1.748099pt;}
.ws9{word-spacing:-1.721549pt;}
.ws166{word-spacing:-1.673728pt;}
.ws26b{word-spacing:-1.673712pt;}
.ws86{word-spacing:-1.625907pt;}
.ws276{word-spacing:-1.599325pt;}
.ws39{word-spacing:-1.578086pt;}
.ws138{word-spacing:-1.530266pt;}
.ws2a7{word-spacing:-1.487744pt;}
.ws13e{word-spacing:-1.482445pt;}
.ws2a5{word-spacing:-1.473081pt;}
.ws2ba{word-spacing:-1.450550pt;}
.ws15b{word-spacing:-1.386803pt;}
.wsa5{word-spacing:-1.338982pt;}
.ws259{word-spacing:-1.338970pt;}
.ws7{word-spacing:-1.291162pt;}
.ws101{word-spacing:-1.243341pt;}
.ws2b9{word-spacing:-1.227389pt;}
.ws64{word-spacing:-1.195520pt;}
.ws284{word-spacing:-1.153002pt;}
.ws10b{word-spacing:-1.147699pt;}
.ws17f{word-spacing:-1.099878pt;}
.ws268{word-spacing:-1.078614pt;}
.ws1c9{word-spacing:-1.069597pt;}
.ws108{word-spacing:-1.052058pt;}
.ws25a{word-spacing:-1.041421pt;}
.ws1b1{word-spacing:-1.004237pt;}
.ws2b8{word-spacing:-1.004227pt;}
.ws23f{word-spacing:-0.967034pt;}
.ws11a{word-spacing:-0.956416pt;}
.wsa3{word-spacing:-0.908595pt;}
.wsa9{word-spacing:-0.860774pt;}
.ws116{word-spacing:-0.812954pt;}
.ws15c{word-spacing:-0.765133pt;}
.ws15d{word-spacing:-0.745738pt;}
.ws3e{word-spacing:-0.717312pt;}
.ws2d2{word-spacing:-0.706678pt;}
.ws8{word-spacing:-0.669491pt;}
.ws8b{word-spacing:-0.621670pt;}
.ws95{word-spacing:-0.526029pt;}
.ws27e{word-spacing:-0.520710pt;}
.ws2a8{word-spacing:-0.483517pt;}
.ws5a{word-spacing:-0.478208pt;}
.ws3d{word-spacing:-0.430387pt;}
.ws19{word-spacing:-0.409130pt;}
.ws12{word-spacing:-0.382566pt;}
.ws1ac{word-spacing:-0.334746pt;}
.ws1aa{word-spacing:-0.312931pt;}
.wsdc{word-spacing:-0.304870pt;}
.ws1fe{word-spacing:-0.292797pt;}
.ws4{word-spacing:-0.286925pt;}
.ws274{word-spacing:-0.260355pt;}
.ws2{word-spacing:-0.239104pt;}
.ws251{word-spacing:-0.231779pt;}
.ws235{word-spacing:-0.223162pt;}
.ws1b4{word-spacing:-0.217685pt;}
.wse6{word-spacing:-0.213177pt;}
.wsd2{word-spacing:-0.210150pt;}
.ws76{word-spacing:-0.208131pt;}
.ws1cf{word-spacing:-0.199811pt;}
.ws1e3{word-spacing:-0.192351pt;}
.ws3c{word-spacing:-0.191283pt;}
.ws228{word-spacing:-0.185968pt;}
.ws79{word-spacing:-0.181968pt;}
.ws167{word-spacing:-0.172488pt;}
.ws1b6{word-spacing:-0.159213pt;}
.wsd7{word-spacing:-0.155328pt;}
.wsaa{word-spacing:-0.152279pt;}
.ws23e{word-spacing:-0.148774pt;}
.ws1be{word-spacing:-0.147750pt;}
.ws2e{word-spacing:-0.143462pt;}
.ws78{word-spacing:-0.141828pt;}
.wsd1{word-spacing:-0.140709pt;}
.ws1c0{word-spacing:-0.127510pt;}
.ws1c5{word-spacing:-0.123687pt;}
.wse5{word-spacing:-0.121806pt;}
.wsb6{word-spacing:-0.118780pt;}
.ws129{word-spacing:-0.111807pt;}
.ws255{word-spacing:-0.111581pt;}
.wsc9{word-spacing:-0.109034pt;}
.wsb4{word-spacing:-0.108730pt;}
.ws87{word-spacing:-0.098633pt;}
.wsf{word-spacing:-0.095642pt;}
.ws7f{word-spacing:-0.089200pt;}
.ws115{word-spacing:-0.081850pt;}
.ws2ab{word-spacing:-0.076897pt;}
.ws23b{word-spacing:-0.074387pt;}
.ws2a1{word-spacing:-0.061593pt;}
.ws1d{word-spacing:-0.058182pt;}
.wsb{word-spacing:-0.047821pt;}
.ws1f3{word-spacing:-0.045870pt;}
.ws82{word-spacing:-0.045789pt;}
.ws1d4{word-spacing:-0.039774pt;}
.ws184{word-spacing:-0.038428pt;}
.ws22f{word-spacing:-0.037194pt;}
.ws1bf{word-spacing:-0.020240pt;}
.ws220{word-spacing:-0.017596pt;}
.ws2ce{word-spacing:-0.007677pt;}
.wsb0{word-spacing:-0.007005pt;}
.wsa8{word-spacing:-0.004898pt;}
.ws1f9{word-spacing:-0.000171pt;}
.ws0{word-spacing:0.000000pt;}
.ws1a8{word-spacing:0.000247pt;}
.wsa7{word-spacing:0.000606pt;}
.ws163{word-spacing:0.001946pt;}
.ws23d{word-spacing:0.006474pt;}
.wse2{word-spacing:0.011885pt;}
.ws202{word-spacing:0.019907pt;}
.ws28b{word-spacing:0.028882pt;}
.ws280{word-spacing:0.037194pt;}
.ws21{word-spacing:0.037967pt;}
.wse1{word-spacing:0.039598pt;}
.ws18{word-spacing:0.047821pt;}
.ws7a{word-spacing:0.049952pt;}
.ws1bd{word-spacing:0.052623pt;}
.wse4{word-spacing:0.052690pt;}
.ws77{word-spacing:0.056196pt;}
.ws73{word-spacing:0.059467pt;}
.wsd5{word-spacing:0.063045pt;}
.ws40{word-spacing:0.073151pt;}
.ws254{word-spacing:0.074387pt;}
.wsc0{word-spacing:0.083390pt;}
.ws71{word-spacing:0.089200pt;}
.wsd0{word-spacing:0.092892pt;}
.ws6{word-spacing:0.095642pt;}
.ws6f{word-spacing:0.104067pt;}
.ws42{word-spacing:0.107440pt;}
.wsda{word-spacing:0.108425pt;}
.ws241{word-spacing:0.111581pt;}
.ws6e{word-spacing:0.112392pt;}
.ws1c3{word-spacing:0.115366pt;}
.ws72{word-spacing:0.118933pt;}
.ws2c0{word-spacing:0.128293pt;}
.wsbd{word-spacing:0.136764pt;}
.wscc{word-spacing:0.137069pt;}
.wsad{word-spacing:0.141014pt;}
.wsd{word-spacing:0.143462pt;}
.ws1db{word-spacing:0.143947pt;}
.wsae{word-spacing:0.147714pt;}
.ws74{word-spacing:0.148667pt;}
.ws25d{word-spacing:0.148774pt;}
.ws275{word-spacing:0.185968pt;}
.wse0{word-spacing:0.187012pt;}
.ws3{word-spacing:0.191283pt;}
.ws65{word-spacing:0.192815pt;}
.ws14f{word-spacing:0.195134pt;}
.ws200{word-spacing:0.202831pt;}
.ws152{word-spacing:0.203220pt;}
.ws205{word-spacing:0.205995pt;}
.ws1b7{word-spacing:0.219952pt;}
.ws229{word-spacing:0.223162pt;}
.wse8{word-spacing:0.235124pt;}
.wsdf{word-spacing:0.237256pt;}
.ws29{word-spacing:0.239104pt;}
.ws7e{word-spacing:0.252737pt;}
.ws2c4{word-spacing:0.260355pt;}
.ws41{word-spacing:0.286925pt;}
.ws55{word-spacing:0.334746pt;}
.ws292{word-spacing:0.371936pt;}
.wsb9{word-spacing:0.380402pt;}
.ws147{word-spacing:0.382566pt;}
.ws117{word-spacing:0.430387pt;}
.ws2c{word-spacing:0.478208pt;}
.wsdd{word-spacing:0.514715pt;}
.ws2b{word-spacing:0.526029pt;}
.ws2a{word-spacing:0.573850pt;}
.ws63{word-spacing:0.621670pt;}
.ws23a{word-spacing:0.632291pt;}
.ws294{word-spacing:0.669485pt;}
.ws33{word-spacing:0.669491pt;}
.ws2c7{word-spacing:0.706678pt;}
.ws32{word-spacing:0.717312pt;}
.ws161{word-spacing:0.758541pt;}
.ws4d{word-spacing:0.765133pt;}
.ws267{word-spacing:0.781066pt;}
.ws217{word-spacing:0.812954pt;}
.ws25f{word-spacing:0.818259pt;}
.ws1ee{word-spacing:0.860774pt;}
.wsf1{word-spacing:0.908595pt;}
.ws1c1{word-spacing:0.917995pt;}
.ws1b3{word-spacing:0.923395pt;}
.ws260{word-spacing:0.929840pt;}
.ws34{word-spacing:0.956416pt;}
.ws1fb{word-spacing:0.970616pt;}
.ws1ce{word-spacing:0.981846pt;}
.ws2b5{word-spacing:1.004227pt;}
.wsc{word-spacing:1.004237pt;}
.ws1c7{word-spacing:1.014233pt;}
.ws2d{word-spacing:1.052058pt;}
.ws27f{word-spacing:1.078614pt;}
.ws10d{word-spacing:1.099878pt;}
.ws105{word-spacing:1.147699pt;}
.ws29b{word-spacing:1.153002pt;}
.ws221{word-spacing:1.187729pt;}
.ws1af{word-spacing:1.192825pt;}
.ws124{word-spacing:1.195520pt;}
.ws10{word-spacing:1.243341pt;}
.ws245{word-spacing:1.264582pt;}
.ws1ae{word-spacing:1.277110pt;}
.ws56{word-spacing:1.291162pt;}
.ws146{word-spacing:1.338982pt;}
.ws36{word-spacing:1.386803pt;}
.ws37{word-spacing:1.434624pt;}
.ws28{word-spacing:1.482445pt;}
.ws247{word-spacing:1.487744pt;}
.ws27c{word-spacing:1.524938pt;}
.ws9d{word-spacing:1.560230pt;}
.ws296{word-spacing:1.562131pt;}
.ws5e{word-spacing:1.578086pt;}
.ws125{word-spacing:1.625907pt;}
.ws232{word-spacing:1.636518pt;}
.ws2c5{word-spacing:1.673712pt;}
.ws122{word-spacing:1.673728pt;}
.ws16f{word-spacing:1.721549pt;}
.ws26c{word-spacing:1.727718pt;}
.ws29c{word-spacing:1.748099pt;}
.ws121{word-spacing:1.769370pt;}
.ws24d{word-spacing:1.785293pt;}
.ws16d{word-spacing:1.796256pt;}
.ws12b{word-spacing:1.817190pt;}
.ws298{word-spacing:1.822486pt;}
.ws10e{word-spacing:1.865011pt;}
.ws160{word-spacing:1.912832pt;}
.ws249{word-spacing:1.934067pt;}
.ws44{word-spacing:1.960653pt;}
.ws170{word-spacing:1.973064pt;}
.ws282{word-spacing:2.008454pt;}
.ws1e0{word-spacing:2.008474pt;}
.ws1de{word-spacing:2.033701pt;}
.ws1d7{word-spacing:2.056294pt;}
.ws127{word-spacing:2.104115pt;}
.ws261{word-spacing:2.120035pt;}
.ws4f{word-spacing:2.151936pt;}
.wsef{word-spacing:2.199757pt;}
.ws2a0{word-spacing:2.231616pt;}
.ws29f{word-spacing:2.268810pt;}
.ws231{word-spacing:2.343197pt;}
.ws113{word-spacing:2.343219pt;}
.ws13b{word-spacing:2.386270pt;}
.ws2c3{word-spacing:2.417584pt;}
.ws119{word-spacing:2.486682pt;}
.ws1ed{word-spacing:2.534502pt;}
.ws4c{word-spacing:2.630144pt;}
.ws28a{word-spacing:2.640746pt;}
.ws288{word-spacing:2.665323pt;}
.ws67{word-spacing:2.677965pt;}
.ws88{word-spacing:2.725786pt;}
.ws244{word-spacing:2.752326pt;}
.ws131{word-spacing:2.773606pt;}
.ws145{word-spacing:2.821427pt;}
.ws269{word-spacing:2.825260pt;}
.ws2d1{word-spacing:2.826714pt;}
.ws69{word-spacing:2.869248pt;}
.ws24e{word-spacing:2.898945pt;}
.ws35{word-spacing:2.964890pt;}
.ws28c{word-spacing:3.012682pt;}
.ws12d{word-spacing:3.012710pt;}
.ws242{word-spacing:3.049875pt;}
.wsfb{word-spacing:3.060531pt;}
.ws27a{word-spacing:3.087069pt;}
.wse{word-spacing:3.108352pt;}
.ws2c8{word-spacing:3.140485pt;}
.ws1dd{word-spacing:3.203994pt;}
.ws2b6{word-spacing:3.235843pt;}
.ws176{word-spacing:3.251814pt;}
.ws5{word-spacing:3.299635pt;}
.wsa{word-spacing:3.347456pt;}
.ws2a2{word-spacing:3.421811pt;}
.ws92{word-spacing:3.443098pt;}
.ws109{word-spacing:3.490918pt;}
.ws273{word-spacing:3.496198pt;}
.ws26{word-spacing:3.538739pt;}
.wsfe{word-spacing:3.586560pt;}
.ws14a{word-spacing:3.634381pt;}
.ws139{word-spacing:3.682202pt;}
.ws1fd{word-spacing:3.730022pt;}
.ws264{word-spacing:3.756554pt;}
.ws126{word-spacing:3.777843pt;}
.ws30{word-spacing:3.825664pt;}
.ws230{word-spacing:3.905328pt;}
.ws8e{word-spacing:3.921306pt;}
.ws90{word-spacing:3.928091pt;}
.ws118{word-spacing:3.969126pt;}
.ws2cb{word-spacing:4.016909pt;}
.ws100{word-spacing:4.016947pt;}
.ws21e{word-spacing:4.064768pt;}
.ws5f{word-spacing:4.112589pt;}
.ws123{word-spacing:4.160410pt;}
.ws98{word-spacing:4.208230pt;}
.ws1e1{word-spacing:4.256051pt;}
.ws224{word-spacing:4.303872pt;}
.ws293{word-spacing:4.314458pt;}
.ws2c1{word-spacing:4.351651pt;}
.ws295{word-spacing:4.443564pt;}
.ws27{word-spacing:4.447334pt;}
.ws142{word-spacing:4.495155pt;}
.ws22a{word-spacing:4.500426pt;}
.ws1ec{word-spacing:4.542976pt;}
.ws102{word-spacing:4.590797pt;}
.ws104{word-spacing:4.638618pt;}
.wsed{word-spacing:4.734259pt;}
.ws11d{word-spacing:4.782080pt;}
.wsfa{word-spacing:4.914303pt;}
.ws10a{word-spacing:4.973363pt;}
.ws45{word-spacing:5.021184pt;}
.ws22e{word-spacing:5.095523pt;}
.ws9a{word-spacing:5.164646pt;}
.ws26f{word-spacing:5.244298pt;}
.ws31{word-spacing:5.260288pt;}
.ws222{word-spacing:5.308109pt;}
.ws1b2{word-spacing:5.355930pt;}
.ws128{word-spacing:5.403750pt;}
.ws26e{word-spacing:5.616234pt;}
.ws5d{word-spacing:5.738496pt;}
.ws155{word-spacing:6.121062pt;}
.ws272{word-spacing:6.211331pt;}
.ws10f{word-spacing:6.247637pt;}
.ws1a9{word-spacing:6.328277pt;}
.ws2ae{word-spacing:6.397299pt;}
.ws1ea{word-spacing:6.413238pt;}
.wsd6{word-spacing:6.487546pt;}
.ws22b{word-spacing:6.508880pt;}
.ws12c{word-spacing:6.514303pt;}
.ws1da{word-spacing:6.655757pt;}
.ws17b{word-spacing:6.661763pt;}
.ws1c4{word-spacing:6.870040pt;}
.ws2a3{word-spacing:6.918010pt;}
.ws16b{word-spacing:6.948194pt;}
.ws25b{word-spacing:7.029590pt;}
.ws2be{word-spacing:7.513107pt;}
.ws23{word-spacing:7.693803pt;}
.ws2a6{word-spacing:7.773462pt;}
.ws2aa{word-spacing:7.922237pt;}
.wsff{word-spacing:7.938253pt;}
.ws28e{word-spacing:7.996624pt;}
.wsf3{word-spacing:8.225178pt;}
.ws187{word-spacing:8.505432pt;}
.ws2a4{word-spacing:8.666109pt;}
.ws143{word-spacing:8.682492pt;}
.ws21d{word-spacing:8.703386pt;}
.ws27d{word-spacing:8.740496pt;}
.ws20f{word-spacing:8.758682pt;}
.ws2a9{word-spacing:8.777690pt;}
.ws219{word-spacing:8.916505pt;}
.ws237{word-spacing:8.963658pt;}
.ws99{word-spacing:9.033922pt;}
.ws250{word-spacing:9.038045pt;}
.ws21c{word-spacing:9.061368pt;}
.ws234{word-spacing:9.075238pt;}
.ws240{word-spacing:9.112432pt;}
.ws256{word-spacing:9.149626pt;}
.ws257{word-spacing:9.186819pt;}
.ws265{word-spacing:9.224013pt;}
.ws1a{word-spacing:9.261206pt;}
.ws2ac{word-spacing:9.261942pt;}
.ws93{word-spacing:9.278094pt;}
.ws159{word-spacing:9.280549pt;}
.ws281{word-spacing:9.298400pt;}
.ws28d{word-spacing:9.335594pt;}
.ws248{word-spacing:9.355816pt;}
.ws23c{word-spacing:9.372787pt;}
.ws15{word-spacing:9.397672pt;}
.ws25e{word-spacing:9.409981pt;}
.ws52{word-spacing:9.428070pt;}
.ws29d{word-spacing:9.447174pt;}
.ws181{word-spacing:9.482492pt;}
.ws287{word-spacing:9.484368pt;}
.ws29e{word-spacing:9.529016pt;}
.ws185{word-spacing:9.568651pt;}
.ws2cf{word-spacing:9.633142pt;}
.ws2bc{word-spacing:9.707530pt;}
.ws20a{word-spacing:9.754601pt;}
.ws1e6{word-spacing:9.797392pt;}
.ws173{word-spacing:9.798138pt;}
.ws60{word-spacing:9.871080pt;}
.ws1d2{word-spacing:9.903725pt;}
.ws2cd{word-spacing:9.930691pt;}
.ws1f6{word-spacing:10.004941pt;}
.ws266{word-spacing:10.042272pt;}
.ws1e5{word-spacing:10.059363pt;}
.ws290{word-spacing:10.191046pt;}
.ws157{word-spacing:10.371821pt;}
.ws20d{word-spacing:10.424934pt;}
.ws246{word-spacing:10.525789pt;}
.ws14b{word-spacing:10.568397pt;}
.ws1e{word-spacing:10.584293pt;}
.ws22{word-spacing:10.626800pt;}
.ws2b3{word-spacing:10.637370pt;}
.ws2d3{word-spacing:10.671105pt;}
.ws2bb{word-spacing:10.711757pt;}
.ws291{word-spacing:10.728153pt;}
.ws27b{word-spacing:10.786144pt;}
.ws226{word-spacing:10.810383pt;}
.ws297{word-spacing:10.823338pt;}
.ws233{word-spacing:10.860531pt;}
.ws2c6{word-spacing:10.934918pt;}
.ws26d{word-spacing:11.009306pt;}
.ws24b{word-spacing:11.083693pt;}
.ws1f8{word-spacing:11.153240pt;}
.ws15e{word-spacing:11.190067pt;}
.ws25c{word-spacing:11.193257pt;}
.ws24a{word-spacing:11.195274pt;}
.ws283{word-spacing:11.269661pt;}
.ws29a{word-spacing:11.306854pt;}
.ws262{word-spacing:11.381242pt;}
.ws2b1{word-spacing:11.418435pt;}
.ws1f4{word-spacing:11.421510pt;}
.ws169{word-spacing:11.463444pt;}
.ws13{word-spacing:11.534193pt;}
.ws1ab{word-spacing:11.600226pt;}
.ws1ff{word-spacing:11.610436pt;}
.ws111{word-spacing:11.620454pt;}
.ws1fa{word-spacing:11.621460pt;}
.ws174{word-spacing:11.652925pt;}
.wsf2{word-spacing:11.668275pt;}
.ws5c{word-spacing:11.692016pt;}
.ws165{word-spacing:11.701842pt;}
.ws168{word-spacing:11.716096pt;}
.ws1e4{word-spacing:11.726344pt;}
.ws1e7{word-spacing:11.727876pt;}
.ws136{word-spacing:11.747840pt;}
.ws21a{word-spacing:11.756575pt;}
.ws1eb{word-spacing:11.759465pt;}
.ws112{word-spacing:11.763917pt;}
.ws156{word-spacing:11.765731pt;}
.ws4b{word-spacing:11.771277pt;}
.ws1cc{word-spacing:11.775260pt;}
.ws204{word-spacing:11.777864pt;}
.ws91{word-spacing:11.811738pt;}
.ws17e{word-spacing:11.818802pt;}
.ws206{word-spacing:11.818859pt;}
.ws16{word-spacing:11.833640pt;}
.wsec{word-spacing:11.859558pt;}
.ws49{word-spacing:11.867332pt;}
.ws84{word-spacing:11.870543pt;}
.ws207{word-spacing:11.886046pt;}
.ws179{word-spacing:11.887059pt;}
.ws164{word-spacing:11.887637pt;}
.ws21f{word-spacing:11.888293pt;}
.ws1c8{word-spacing:11.901730pt;}
.ws289{word-spacing:11.901952pt;}
.ws14d{word-spacing:11.904777pt;}
.ws182{word-spacing:11.907063pt;}
.ws1c{word-spacing:11.907379pt;}
.ws215{word-spacing:11.908941pt;}
.ws17c{word-spacing:11.919455pt;}
.ws203{word-spacing:11.922603pt;}
.ws14c{word-spacing:11.928482pt;}
.ws53{word-spacing:11.932589pt;}
.ws1cd{word-spacing:11.947493pt;}
.wsa4{word-spacing:11.948104pt;}
.ws94{word-spacing:11.955200pt;}
.ws17{word-spacing:11.955931pt;}
.ws1f0{word-spacing:11.958682pt;}
.ws54{word-spacing:11.964124pt;}
.ws43{word-spacing:11.969567pt;}
.ws141{word-spacing:11.975490pt;}
.ws177{word-spacing:11.976713pt;}
.ws175{word-spacing:11.984739pt;}
.ws1ca{word-spacing:11.986289pt;}
.ws47{word-spacing:12.003021pt;}
.ws227{word-spacing:12.004941pt;}
.ws209{word-spacing:12.012522pt;}
.ws9c{word-spacing:12.025092pt;}
.ws13d{word-spacing:12.026436pt;}
.ws178{word-spacing:12.027836pt;}
.ws17d{word-spacing:12.042594pt;}
.ws1dc{word-spacing:12.050104pt;}
.ws16c{word-spacing:12.075402pt;}
.ws1d1{word-spacing:12.075977pt;}
.ws1d0{word-spacing:12.077489pt;}
.ws26a{word-spacing:12.087920pt;}
.ws212{word-spacing:12.091662pt;}
.ws1cb{word-spacing:12.096444pt;}
.ws14e{word-spacing:12.098662pt;}
.ws66{word-spacing:12.101726pt;}
.ws150{word-spacing:12.109489pt;}
.ws11{word-spacing:12.116390pt;}
.ws153{word-spacing:12.122588pt;}
.ws151{word-spacing:12.125601pt;}
.ws211{word-spacing:12.142488pt;}
.ws24f{word-spacing:12.162307pt;}
.ws16a{word-spacing:12.180952pt;}
.ws17a{word-spacing:12.185333pt;}
.ws48{word-spacing:12.194304pt;}
.ws1e8{word-spacing:12.242125pt;}
.ws201{word-spacing:12.303861pt;}
.ws1e9{word-spacing:12.337766pt;}
.ws279{word-spacing:12.348275pt;}
.ws2c9{word-spacing:12.422662pt;}
.ws238{word-spacing:12.497050pt;}
.ws137{word-spacing:12.624691pt;}
.ws162{word-spacing:12.661150pt;}
.ws4e{word-spacing:12.682065pt;}
.ws216{word-spacing:12.717995pt;}
.ws278{word-spacing:12.720211pt;}
.ws97{word-spacing:12.789519pt;}
.ws1fc{word-spacing:12.885987pt;}
.ws57{word-spacing:12.901673pt;}
.ws1d6{word-spacing:12.964418pt;}
.ws263{word-spacing:13.017760pt;}
.ws13c{word-spacing:13.033628pt;}
.ws1b0{word-spacing:13.100366pt;}
.ws85{word-spacing:13.130454pt;}
.ws96{word-spacing:13.198541pt;}
.wsa0{word-spacing:13.218948pt;}
.ws2cc{word-spacing:13.278115pt;}
.ws1ad{word-spacing:13.291064pt;}
.ws214{word-spacing:13.346821pt;}
.ws286{word-spacing:13.389696pt;}
.ws9e{word-spacing:13.485466pt;}
.wsd8{word-spacing:13.604933pt;}
.ws2c2{word-spacing:13.612858pt;}
.ws299{word-spacing:13.687245pt;}
.ws16e{word-spacing:13.691215pt;}
.ws2b0{word-spacing:13.798826pt;}
.ws15f{word-spacing:13.821744pt;}
.ws3b{word-spacing:13.834853pt;}
.ws1d9{word-spacing:13.864957pt;}
.ws171{word-spacing:13.879451pt;}
.ws1df{word-spacing:13.936967pt;}
.ws1d8{word-spacing:13.968339pt;}
.ws12a{word-spacing:13.987041pt;}
.wsa1{word-spacing:14.324768pt;}
.ws22d{word-spacing:14.356730pt;}
.ws21b{word-spacing:14.459843pt;}
.ws1b{word-spacing:14.487285pt;}
.ws270{word-spacing:14.505504pt;}
.ws68{word-spacing:14.580104pt;}
.wseb{word-spacing:14.585344pt;}
.ws3f{word-spacing:14.708772pt;}
.ws2ca{word-spacing:14.712990pt;}
.ws114{word-spacing:14.840633pt;}
.ws1f1{word-spacing:14.904287pt;}
.ws1f7{word-spacing:15.123895pt;}
.ws62{word-spacing:15.442849pt;}
.ws271{word-spacing:15.472538pt;}
.ws213{word-spacing:15.510823pt;}
.ws9b{word-spacing:15.709163pt;}
.ws22c{word-spacing:15.770086pt;}
.ws8f{word-spacing:15.828685pt;}
.ws9f{word-spacing:16.129865pt;}
.ws1e2{word-spacing:16.164418pt;}
.ws225{word-spacing:16.221934pt;}
.ws103{word-spacing:16.545997pt;}
.ws46{word-spacing:16.928563pt;}
.ws5b{word-spacing:17.178797pt;}
.ws258{word-spacing:18.596800pt;}
.wsc1{word-spacing:19.399289pt;}
.ws2b4{word-spacing:20.270512pt;}
.ws252{word-spacing:21.758256pt;}
.ws24c{word-spacing:22.316160pt;}
.ws2b2{word-spacing:23.878291pt;}
.ws1a7{word-spacing:46.229265pt;}
.ws1a2{word-spacing:46.251236pt;}
.ws80{word-spacing:46.453588pt;}
.ws1f5{word-spacing:48.346474pt;}
.ws1a5{word-spacing:50.955948pt;}
.ws18c{word-spacing:50.958286pt;}
.ws19f{word-spacing:55.187157pt;}
.wsc3{word-spacing:55.321196pt;}
.ws186{word-spacing:57.680903pt;}
.ws25{word-spacing:58.123685pt;}
.ws253{word-spacing:71.783648pt;}
.wsd4{word-spacing:73.550091pt;}
.ws196{word-spacing:74.743076pt;}
.ws19a{word-spacing:78.778049pt;}
.ws18e{word-spacing:88.369432pt;}
.ws192{word-spacing:92.266388pt;}
.ws19b{word-spacing:92.596225pt;}
.ws1a0{word-spacing:93.073383pt;}
.ws19e{word-spacing:99.875195pt;}
.ws193{word-spacing:104.471054pt;}
.ws188{word-spacing:113.517247pt;}
.ws19d{word-spacing:113.519648pt;}
.ws1d5{word-spacing:116.577576pt;}
.ws19c{word-spacing:117.744362pt;}
.ws191{word-spacing:122.454505pt;}
.ws18a{word-spacing:126.682985pt;}
.ws18b{word-spacing:128.811717pt;}
.ws190{word-spacing:131.386415pt;}
.ws194{word-spacing:131.390426pt;}
.ws1f2{word-spacing:131.643884pt;}
.ws20c{word-spacing:135.919880pt;}
.wsba{word-spacing:146.003443pt;}
.wsb5{word-spacing:146.208720pt;}
.wsc5{word-spacing:153.930091pt;}
.ws1a4{word-spacing:153.946175pt;}
.ws199{word-spacing:170.006873pt;}
.ws198{word-spacing:178.922242pt;}
.ws1a3{word-spacing:178.945667pt;}
.ws1a1{word-spacing:178.960671pt;}
.ws183{word-spacing:179.006752pt;}
.ws189{word-spacing:187.876040pt;}
.ws18f{word-spacing:187.877302pt;}
.ws1c6{word-spacing:189.428576pt;}
.ws197{word-spacing:189.858452pt;}
.ws18d{word-spacing:198.790087pt;}
.ws20b{word-spacing:224.745401pt;}
.ws1d3{word-spacing:233.261124pt;}
.ws1a6{word-spacing:304.259873pt;}
.wsea{word-spacing:487.142809pt;}
.ws6a{word-spacing:608.115053pt;}
._13{margin-left:-1416.211739pt;}
._11{margin-left:-385.001019pt;}
._1d{margin-left:-13.655893pt;}
._1{margin-left:-7.345237pt;}
._0{margin-left:-5.233482pt;}
._5{margin-left:-3.825664pt;}
._3{margin-left:-2.203571pt;}
._4{margin-left:-1.062677pt;}
._2{width:1.285417pt;}
._17{width:2.388420pt;}
._7{width:3.473318pt;}
._1c{width:5.407539pt;}
._14{width:6.635999pt;}
._16{width:8.367493pt;}
._1b{width:9.990912pt;}
._8{width:11.190067pt;}
._1e{width:12.720333pt;}
._e{width:14.278470pt;}
._10{width:16.094843pt;}
._f{width:17.454592pt;}
._19{width:18.445601pt;}
._1a{width:19.488679pt;}
._12{width:21.011705pt;}
._74{width:22.288115pt;}
._7b{width:23.241122pt;}
._d{width:24.670244pt;}
._b{width:26.581601pt;}
._75{width:27.597651pt;}
._79{width:28.635626pt;}
._73{width:30.201203pt;}
._76{width:32.546761pt;}
._77{width:33.771789pt;}
._78{width:39.508752pt;}
._7a{width:41.319451pt;}
._20{width:42.367807pt;}
._67{width:43.989895pt;}
._15{width:46.864384pt;}
._18{width:48.251187pt;}
._5e{width:51.374202pt;}
._57{width:52.954220pt;}
._59{width:54.638307pt;}
._58{width:56.142595pt;}
._23{width:57.096057pt;}
._9{width:58.181867pt;}
._4e{width:60.565647pt;}
._62{width:62.404269pt;}
._61{width:63.454816pt;}
._4f{width:64.751714pt;}
._5c{width:67.456694pt;}
._4b{width:69.498893pt;}
._25{width:71.784152pt;}
._64{width:74.877396pt;}
._6c{width:81.234919pt;}
._6a{width:83.372798pt;}
._71{width:86.985591pt;}
._40{width:89.038410pt;}
._5f{width:90.872201pt;}
._21{width:92.189532pt;}
._43{width:93.111811pt;}
._33{width:95.424224pt;}
._36{width:102.203304pt;}
._68{width:105.508448pt;}
._3d{width:106.647075pt;}
._55{width:107.866948pt;}
._72{width:108.815110pt;}
._56{width:117.667506pt;}
._48{width:122.547902pt;}
._5a{width:123.513665pt;}
._60{width:124.415069pt;}
._5b{width:126.302793pt;}
._41{width:129.464999pt;}
._50{width:132.078124pt;}
._5d{width:134.093660pt;}
._3c{width:136.290064pt;}
._2d{width:138.419976pt;}
._2c{width:140.994831pt;}
._26{width:143.837189pt;}
._32{width:145.219272pt;}
._39{width:147.373932pt;}
._31{width:149.639865pt;}
._2b{width:151.199887pt;}
._27{width:154.174406pt;}
._28{width:156.287964pt;}
._6d{width:161.277231pt;}
._6b{width:171.651945pt;}
._6e{width:173.648050pt;}
._65{width:178.996075pt;}
._35{width:179.885289pt;}
._69{width:181.979663pt;}
._66{width:185.245461pt;}
._42{width:187.950559pt;}
._46{width:192.373154pt;}
._63{width:194.103885pt;}
._34{width:195.690655pt;}
._4c{width:196.598089pt;}
._30{width:197.488667pt;}
._37{width:200.716529pt;}
._2e{width:203.997206pt;}
._3a{width:206.176415pt;}
._2f{width:207.766047pt;}
._2a{width:210.279749pt;}
._29{width:212.922806pt;}
._6f{width:217.230968pt;}
._54{width:228.955911pt;}
._49{width:244.790716pt;}
._51{width:247.654962pt;}
._4d{width:252.514807pt;}
._22{width:254.084546pt;}
._47{width:281.683511pt;}
._4a{width:291.194245pt;}
._3b{width:299.743208pt;}
._52{width:306.219717pt;}
._70{width:309.734473pt;}
._38{width:330.060812pt;}
._45{width:341.435594pt;}
._3f{width:382.825229pt;}
._3e{width:384.283167pt;}
._44{width:408.977036pt;}
._1f{width:443.309061pt;}
._53{width:469.094462pt;}
._a{width:519.566899pt;}
._24{width:752.850273pt;}
._6{width:791.517002pt;}
._c{width:873.196937pt;}
.fs16{font-size:20.239680pt;}
.fs17{font-size:22.488530pt;}
.fs11{font-size:24.365224pt;}
.fs18{font-size:24.737385pt;}
.fs9{font-size:26.760000pt;}
.fse{font-size:27.410880pt;}
.fs6{font-size:29.224000pt;}
.fsa{font-size:29.733329pt;}
.fsf{font-size:30.456528pt;}
.fs15{font-size:31.483945pt;}
.fsc{font-size:32.706664pt;}
.fs10{font-size:33.502184pt;}
.fs14{font-size:34.158361pt;}
.fsb{font-size:35.680000pt;}
.fs7{font-size:37.193600pt;}
.fs13{font-size:38.428317pt;}
.fs12{font-size:38.787733pt;}
.fs1c{font-size:39.147431pt;}
.fs1a{font-size:39.346954pt;}
.fs19{font-size:39.773994pt;}
.fsd{font-size:41.626664pt;}
.fs8{font-size:42.507200pt;}
.fs1b{font-size:45.869520pt;}
.fs3{font-size:46.757867pt;}
.fs5{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y125{bottom:3.173571pt;}
.y12c{bottom:4.087267pt;}
.y284{bottom:4.115402pt;}
.y286{bottom:5.734576pt;}
.y9d{bottom:6.928610pt;}
.y10f{bottom:7.376572pt;}
.yff{bottom:8.655747pt;}
.y124{bottom:9.203964pt;}
.y285{bottom:11.401686pt;}
.y283{bottom:13.695517pt;}
.y9c{bottom:14.243010pt;}
.y129{bottom:16.330793pt;}
.y133{bottom:17.975446pt;}
.yfe{bottom:18.523664pt;}
.y126{bottom:19.071881pt;}
.y128{bottom:21.812969pt;}
.y9b{bottom:22.449410pt;}
.y127{bottom:23.640361pt;}
.y12a{bottom:24.005840pt;}
.y287{bottom:25.299600pt;}
.y288{bottom:27.188637pt;}
.yfd{bottom:28.208841pt;}
.y132{bottom:34.970192pt;}
.y12d{bottom:36.797584pt;}
.y9a{bottom:38.862210pt;}
.y134{bottom:39.904150pt;}
.y280{bottom:41.491344pt;}
.y282{bottom:44.594762pt;}
.y99{bottom:46.355010pt;}
.yf5{bottom:47.944675pt;}
.y281{bottom:50.261872pt;}
.y12b{bottom:50.868502pt;}
.y27f{bottom:51.071459pt;}
.yfc{bottom:53.609590pt;}
.y10d{bottom:55.071504pt;}
.yf4{bottom:57.081635pt;}
.yfb{bottom:62.746550pt;}
.y122{bottom:64.939420pt;}
.yf3{bottom:66.218595pt;}
.y12e{bottom:70.056118pt;}
.yfa{bottom:71.883510pt;}
.y10e{bottom:72.431728pt;}
.yf2{bottom:75.355555pt;}
.y115{bottom:78.096643pt;}
.yf9{bottom:81.020470pt;}
.yf1{bottom:84.492515pt;}
.y10c{bottom:88.695516pt;}
.y10b{bottom:89.609212pt;}
.yf8{bottom:90.157430pt;}
.y113{bottom:92.715779pt;}
.y12f{bottom:93.081257pt;}
.yf0{bottom:94.725910pt;}
.y87{bottom:97.555810pt;}
.yf7{bottom:100.025347pt;}
.y86{bottom:105.762210pt;}
.y15a{bottom:110.050667pt;}
.y11d{bottom:110.441481pt;}
.y341{bottom:111.430667pt;}
.y159{bottom:112.869333pt;}
.y31{bottom:112.870667pt;}
.y111{bottom:115.740918pt;}
.y112{bottom:116.106396pt;}
.y340{bottom:119.844000pt;}
.y11e{bottom:122.136790pt;}
.y85{bottom:122.175010pt;}
.y110{bottom:123.233225pt;}
.y30{bottom:123.497333pt;}
.y11c{bottom:124.146921pt;}
.y51{bottom:127.481333pt;}
.y105{bottom:128.898140pt;}
.y131{bottom:129.080880pt;}
.y84{bottom:129.667810pt;}
.y33f{bottom:130.470667pt;}
.y2f4{bottom:131.134667pt;}
.y158{bottom:133.450667pt;}
.y2f{bottom:134.124000pt;}
.y10a{bottom:135.111273pt;}
.y11f{bottom:138.948796pt;}
.y11b{bottom:139.131536pt;}
.y33e{bottom:141.097333pt;}
.y50{bottom:142.093333pt;}
.y385{bottom:144.750667pt;}
.y120{bottom:145.710147pt;}
.y2e{bottom:145.813333pt;}
.ycf{bottom:145.825333pt;}
.yef{bottom:146.075625pt;}
.y83{bottom:147.329410pt;}
.y109{bottom:149.730409pt;}
.y33d{bottom:151.724000pt;}
.y1dc{bottom:153.214667pt;}
.y11a{bottom:154.481628pt;}
.y157{bottom:154.660000pt;}
.yee{bottom:155.212585pt;}
.y384{bottom:155.377333pt;}
.y156{bottom:155.949333pt;}
.y4f{bottom:156.705333pt;}
.y108{bottom:157.405456pt;}
.y2d{bottom:157.502667pt;}
.y102{bottom:158.684630pt;}
.y89{bottom:158.747010pt;}
.y155{bottom:158.768000pt;}
.y2f3{bottom:159.186667pt;}
.y2f6{bottom:160.358667pt;}
.yce{bottom:160.437333pt;}
.y1db{bottom:161.416000pt;}
.y33c{bottom:162.350667pt;}
.y91{bottom:163.920610pt;}
.yed{bottom:164.349545pt;}
.y98{bottom:164.455810pt;}
.y383{bottom:166.004000pt;}
.y121{bottom:166.359676pt;}
.y17b{bottom:167.728000pt;}
.y3c8{bottom:168.217333pt;}
.y104{bottom:168.369808pt;}
.y4e{bottom:171.317333pt;}
.y119{bottom:171.841852pt;}
.y90{bottom:172.840610pt;}
.y33b{bottom:172.977333pt;}
.y97{bottom:173.375810pt;}
.yec{bottom:173.486505pt;}
.yab{bottom:173.732610pt;}
.y2f2{bottom:173.798667pt;}
.y1aa{bottom:174.061333pt;}
.y107{bottom:174.765680pt;}
.ya8{bottom:174.803010pt;}
.ycd{bottom:175.048000pt;}
.y382{bottom:176.630667pt;}
.yaa{bottom:177.835810pt;}
.y118{bottom:178.054985pt;}
.y3c7{bottom:178.844000pt;}
.y101{bottom:181.344291pt;}
.y8f{bottom:181.760610pt;}
.y96{bottom:182.295810pt;}
.y17a{bottom:182.340000pt;}
.yeb{bottom:182.623465pt;}
.y33a{bottom:183.605333pt;}
.ya7{bottom:183.723010pt;}
.y4d{bottom:185.929333pt;}
.y117{bottom:187.009206pt;}
.y381{bottom:187.257333pt;}
.y2f1{bottom:188.410667pt;}
.y1a9{bottom:188.672000pt;}
.ya2{bottom:188.896610pt;}
.y3c6{bottom:189.470667pt;}
.ycc{bottom:189.660000pt;}
.y114{bottom:190.298512pt;}
.y8e{bottom:190.680610pt;}
.y100{bottom:191.029468pt;}
.y95{bottom:191.215817pt;}
.y123{bottom:191.394947pt;}
.yea{bottom:192.491382pt;}
.ya6{bottom:192.643017pt;}
.y339{bottom:194.232000pt;}
.y116{bottom:194.501513pt;}
.y154{bottom:194.814667pt;}
.y2c3{bottom:195.480000pt;}
.y1da{bottom:195.857333pt;}
.y179{bottom:196.952000pt;}
.ya1{bottom:197.816617pt;}
.y380{bottom:197.884000pt;}
.y8d{bottom:199.600617pt;}
.y3c5{bottom:200.097333pt;}
.y94{bottom:200.135817pt;}
.y4c{bottom:200.541333pt;}
.ya5{bottom:201.563017pt;}
.y2f0{bottom:203.022667pt;}
.y1a8{bottom:203.284000pt;}
.ycb{bottom:204.272000pt;}
.y106{bottom:204.369430pt;}
.y338{bottom:204.858667pt;}
.y130{bottom:204.917648pt;}
.y103{bottom:205.100387pt;}
.yf6{bottom:205.648604pt;}
.y37f{bottom:208.512000pt;}
.y8c{bottom:208.520617pt;}
.y93{bottom:209.055817pt;}
.y153{bottom:209.425333pt;}
.y2c2{bottom:210.092000pt;}
.y1d9{bottom:210.469333pt;}
.ya4{bottom:210.483017pt;}
.y3c4{bottom:210.724000pt;}
.y178{bottom:211.564000pt;}
.ya0{bottom:212.623817pt;}
.y2c{bottom:214.430667pt;}
.y4b{bottom:215.153333pt;}
.y337{bottom:215.485333pt;}
.y8b{bottom:217.440617pt;}
.y2ef{bottom:217.634667pt;}
.y1a7{bottom:217.896000pt;}
.y92{bottom:217.975817pt;}
.ye8{bottom:218.806667pt;}
.yca{bottom:218.884000pt;}
.y37e{bottom:219.138667pt;}
.y88{bottom:219.224617pt;}
.ya3{bottom:219.403017pt;}
.y3c3{bottom:221.350667pt;}
.y9f{bottom:221.543817pt;}
.y152{bottom:224.037333pt;}
.y2c1{bottom:224.704000pt;}
.y1d8{bottom:225.081333pt;}
.y336{bottom:226.112000pt;}
.y177{bottom:226.176000pt;}
.y4a{bottom:229.765333pt;}
.y3c2{bottom:231.978667pt;}
.y2ee{bottom:232.246667pt;}
.y1a6{bottom:232.508000pt;}
.y21f{bottom:233.417333pt;}
.yc9{bottom:233.496000pt;}
.yac{bottom:234.745417pt;}
.y8a{bottom:234.923817pt;}
.ya9{bottom:235.459017pt;}
.y335{bottom:236.738667pt;}
.y9e{bottom:237.956617pt;}
.y151{bottom:238.649333pt;}
.y2c0{bottom:239.316000pt;}
.y1d7{bottom:239.693333pt;}
.y37d{bottom:240.392000pt;}
.y176{bottom:240.788000pt;}
.y2b{bottom:241.396000pt;}
.y3c1{bottom:242.605333pt;}
.y49{bottom:244.377333pt;}
.y2ed{bottom:246.858667pt;}
.y1a5{bottom:247.120000pt;}
.y334{bottom:247.365333pt;}
.y28e{bottom:248.029333pt;}
.yc8{bottom:248.108000pt;}
.y37c{bottom:251.018667pt;}
.ye7{bottom:251.801333pt;}
.y3c0{bottom:253.232000pt;}
.y2bf{bottom:253.928000pt;}
.y1d6{bottom:254.305333pt;}
.y175{bottom:255.400000pt;}
.y2a{bottom:256.008000pt;}
.y333{bottom:257.992000pt;}
.y48{bottom:258.989333pt;}
.y2ec{bottom:261.470667pt;}
.y37b{bottom:261.645333pt;}
.y1a4{bottom:261.732000pt;}
.y21e{bottom:261.956000pt;}
.yc7{bottom:262.720000pt;}
.y3bf{bottom:263.858667pt;}
.y150{bottom:264.465333pt;}
.ye6{bottom:266.413333pt;}
.y2be{bottom:268.540000pt;}
.y332{bottom:268.618667pt;}
.y1d5{bottom:268.916000pt;}
.y174{bottom:270.012000pt;}
.y29{bottom:270.620000pt;}
.y37a{bottom:272.272000pt;}
.y47{bottom:273.600000pt;}
.y3be{bottom:274.485333pt;}
.y2eb{bottom:276.082667pt;}
.y2aa{bottom:276.233333pt;}
.y1a3{bottom:276.344000pt;}
.y21d{bottom:276.568000pt;}
.yc6{bottom:277.332000pt;}
.y14f{bottom:279.077333pt;}
.y331{bottom:279.246667pt;}
.ye5{bottom:281.025333pt;}
.y28d{bottom:282.029333pt;}
.y379{bottom:282.898667pt;}
.y2bd{bottom:283.152000pt;}
.y1d4{bottom:283.528000pt;}
.y173{bottom:284.624000pt;}
.y3bd{bottom:285.112000pt;}
.y28{bottom:285.232000pt;}
.y46{bottom:288.212000pt;}
.y330{bottom:289.873333pt;}
.y2ea{bottom:290.693333pt;}
.y2a9{bottom:290.845333pt;}
.y1a2{bottom:290.956000pt;}
.y21c{bottom:291.180000pt;}
.yc5{bottom:291.944000pt;}
.y378{bottom:293.525333pt;}
.y14e{bottom:293.689333pt;}
.y3bc{bottom:295.738667pt;}
.y28c{bottom:296.641333pt;}
.y2bc{bottom:297.764000pt;}
.y1d3{bottom:298.140000pt;}
.y172{bottom:299.236000pt;}
.ye4{bottom:299.290667pt;}
.y27{bottom:299.844000pt;}
.y32f{bottom:300.500000pt;}
.y45{bottom:302.824000pt;}
.y377{bottom:304.153333pt;}
.y2e9{bottom:305.305333pt;}
.y2a8{bottom:305.457333pt;}
.y1a1{bottom:305.568000pt;}
.y21b{bottom:305.790667pt;}
.y3bb{bottom:306.365333pt;}
.yc4{bottom:306.556000pt;}
.y14d{bottom:308.301333pt;}
.y32e{bottom:311.126667pt;}
.y28b{bottom:311.252000pt;}
.y2bb{bottom:312.376000pt;}
.y1d2{bottom:312.752000pt;}
.y171{bottom:313.846667pt;}
.y26{bottom:314.456000pt;}
.y376{bottom:314.780000pt;}
.y3ba{bottom:316.992000pt;}
.y44{bottom:317.436000pt;}
.y2e8{bottom:319.917333pt;}
.y2a7{bottom:320.069333pt;}
.y1a0{bottom:320.180000pt;}
.y21a{bottom:320.402667pt;}
.yc3{bottom:321.168000pt;}
.y32d{bottom:321.753333pt;}
.y14c{bottom:322.913333pt;}
.y375{bottom:325.406667pt;}
.y28a{bottom:325.864000pt;}
.y2ba{bottom:326.986667pt;}
.y1d1{bottom:327.364000pt;}
.y3b9{bottom:327.620000pt;}
.y170{bottom:328.458667pt;}
.y25{bottom:329.068000pt;}
.y43{bottom:332.048000pt;}
.ye3{bottom:332.285333pt;}
.y32c{bottom:332.380000pt;}
.y2e7{bottom:334.529333pt;}
.y2a6{bottom:334.681333pt;}
.y19f{bottom:334.792000pt;}
.y219{bottom:335.014667pt;}
.yc2{bottom:335.778667pt;}
.y374{bottom:336.033333pt;}
.y14b{bottom:337.525333pt;}
.y3b8{bottom:338.246667pt;}
.y1d0{bottom:341.976000pt;}
.y32b{bottom:343.006667pt;}
.y16f{bottom:343.070667pt;}
.y24{bottom:343.680000pt;}
.y42{bottom:346.660000pt;}
.ye2{bottom:346.897333pt;}
.y3b7{bottom:348.873333pt;}
.y2e6{bottom:349.141333pt;}
.y2a5{bottom:349.293333pt;}
.y19e{bottom:349.402667pt;}
.y218{bottom:349.626667pt;}
.yc1{bottom:350.390667pt;}
.y2b9{bottom:351.150667pt;}
.y14a{bottom:352.137333pt;}
.y32a{bottom:353.633333pt;}
.y1cf{bottom:356.588000pt;}
.y373{bottom:357.286667pt;}
.y16e{bottom:357.682667pt;}
.y23{bottom:358.292000pt;}
.y3b6{bottom:359.500000pt;}
.y41{bottom:361.272000pt;}
.ye1{bottom:361.509333pt;}
.y2e5{bottom:363.753333pt;}
.y2a4{bottom:363.904000pt;}
.y19d{bottom:364.014667pt;}
.y217{bottom:364.238667pt;}
.y329{bottom:364.261333pt;}
.yc0{bottom:365.002667pt;}
.y2b8{bottom:365.761333pt;}
.y149{bottom:366.749333pt;}
.y372{bottom:367.913333pt;}
.y1fb{bottom:368.073333pt;}
.y252{bottom:369.076000pt;}
.y3b5{bottom:370.126667pt;}
.y1ce{bottom:371.200000pt;}
.y16d{bottom:372.294667pt;}
.y22{bottom:372.902667pt;}
.y328{bottom:374.888000pt;}
.y40{bottom:375.884000pt;}
.ye0{bottom:376.121333pt;}
.y2a3{bottom:378.516000pt;}
.y371{bottom:378.540000pt;}
.y19c{bottom:378.626667pt;}
.y216{bottom:378.850667pt;}
.ybf{bottom:379.614667pt;}
.y2b7{bottom:380.373333pt;}
.y3b4{bottom:380.753333pt;}
.y1fa{bottom:382.685333pt;}
.y251{bottom:383.688000pt;}
.y148{bottom:385.013333pt;}
.y327{bottom:385.514667pt;}
.y1cd{bottom:385.812000pt;}
.y289{bottom:386.542667pt;}
.y27d{bottom:387.190667pt;}
.y21{bottom:387.514667pt;}
.y370{bottom:389.166667pt;}
.y3f{bottom:390.496000pt;}
.ydf{bottom:390.733333pt;}
.y3b3{bottom:391.380000pt;}
.y2a2{bottom:393.128000pt;}
.y19b{bottom:393.238667pt;}
.y215{bottom:393.462667pt;}
.ybe{bottom:394.226667pt;}
.y2e4{bottom:394.450390pt;}
.y2b6{bottom:394.985333pt;}
.y326{bottom:396.141333pt;}
.y1f9{bottom:397.297333pt;}
.y16c{bottom:397.929333pt;}
.y250{bottom:398.300000pt;}
.y36f{bottom:399.794667pt;}
.y1cc{bottom:400.424000pt;}
.y27c{bottom:401.802667pt;}
.y3b2{bottom:402.006667pt;}
.y20{bottom:402.126667pt;}
.y3e{bottom:405.108000pt;}
.y2e3{bottom:406.684423pt;}
.y325{bottom:406.768000pt;}
.y2a1{bottom:407.740000pt;}
.y214{bottom:408.074667pt;}
.ybd{bottom:408.838667pt;}
.y2b5{bottom:409.597333pt;}
.y36e{bottom:410.421333pt;}
.y1f8{bottom:411.909333pt;}
.yde{bottom:412.492000pt;}
.y16b{bottom:412.541333pt;}
.y3b1{bottom:412.633333pt;}
.y27e{bottom:412.712000pt;}
.y24f{bottom:412.912000pt;}
.y1cb{bottom:415.036000pt;}
.y19a{bottom:415.350667pt;}
.y27b{bottom:416.413333pt;}
.y1f{bottom:416.738667pt;}
.y147{bottom:416.785333pt;}
.y324{bottom:417.394667pt;}
.y2e2{bottom:418.918455pt;}
.y3d{bottom:419.720000pt;}
.y36d{bottom:421.048000pt;}
.y2a0{bottom:422.352000pt;}
.y213{bottom:422.686667pt;}
.y3b0{bottom:423.261333pt;}
.ybc{bottom:423.450667pt;}
.ydd{bottom:427.104000pt;}
.y16a{bottom:427.153333pt;}
.y24e{bottom:427.524000pt;}
.y323{bottom:428.021333pt;}
.y1ca{bottom:429.646667pt;}
.y199{bottom:429.961333pt;}
.y27a{bottom:431.025333pt;}
.y2e1{bottom:431.151260pt;}
.y1e{bottom:431.350667pt;}
.y146{bottom:431.397333pt;}
.y36c{bottom:431.674667pt;}
.y3af{bottom:433.888000pt;}
.y3c{bottom:434.330667pt;}
.y29f{bottom:436.964000pt;}
.y212{bottom:437.298667pt;}
.ybb{bottom:438.062667pt;}
.y1f7{bottom:438.236000pt;}
.y322{bottom:438.648000pt;}
.ydc{bottom:441.714667pt;}
.y169{bottom:441.765333pt;}
.y24d{bottom:442.134667pt;}
.y36b{bottom:442.301333pt;}
.y2e0{bottom:443.385293pt;}
.y1c9{bottom:444.258667pt;}
.y3ae{bottom:444.514667pt;}
.y198{bottom:444.573333pt;}
.y279{bottom:445.637333pt;}
.y1d{bottom:445.962667pt;}
.y145{bottom:446.009333pt;}
.y3b{bottom:448.942667pt;}
.y321{bottom:449.274667pt;}
.y2b4{bottom:450.173579pt;}
.y29e{bottom:451.576000pt;}
.y211{bottom:451.909333pt;}
.y22d{bottom:452.596000pt;}
.yba{bottom:452.674667pt;}
.y1f6{bottom:452.848000pt;}
.y1f5{bottom:452.920000pt;}
.y36a{bottom:452.928000pt;}
.y3ad{bottom:455.141333pt;}
.ydb{bottom:456.326667pt;}
.y168{bottom:456.377333pt;}
.y24c{bottom:456.746667pt;}
.y1c8{bottom:458.870667pt;}
.y197{bottom:459.185333pt;}
.y320{bottom:459.902667pt;}
.y278{bottom:460.249333pt;}
.y1c{bottom:460.574667pt;}
.y144{bottom:460.621333pt;}
.y2df{bottom:461.162277pt;}
.y73{bottom:463.554667pt;}
.y3ac{bottom:465.768000pt;}
.y29d{bottom:466.188000pt;}
.y210{bottom:466.521333pt;}
.y2b3{bottom:467.148491pt;}
.y3a{bottom:467.208000pt;}
.yb9{bottom:467.286667pt;}
.y1f4{bottom:467.460000pt;}
.y31f{bottom:470.529333pt;}
.yda{bottom:470.938667pt;}
.y167{bottom:470.989333pt;}
.y24b{bottom:471.358667pt;}
.y1c7{bottom:473.482667pt;}
.y196{bottom:473.797333pt;}
.y369{bottom:474.181333pt;}
.y1b{bottom:475.186667pt;}
.y143{bottom:475.233333pt;}
.y3ab{bottom:476.394667pt;}
.y72{bottom:478.166667pt;}
.y2b2{bottom:479.171245pt;}
.y29c{bottom:480.800000pt;}
.y20f{bottom:481.133333pt;}
.y31e{bottom:481.156000pt;}
.yb8{bottom:481.897333pt;}
.y1f2{bottom:482.072000pt;}
.y1f3{bottom:482.144000pt;}
.y368{bottom:484.808000pt;}
.yd9{bottom:485.550667pt;}
.y166{bottom:485.601333pt;}
.y24a{bottom:485.970667pt;}
.y3aa{bottom:487.021333pt;}
.y1c6{bottom:488.094667pt;}
.y195{bottom:488.409333pt;}
.y1a{bottom:489.798667pt;}
.y142{bottom:489.845333pt;}
.y2b1{bottom:491.193998pt;}
.y31d{bottom:491.782667pt;}
.y71{bottom:492.778667pt;}
.y2de{bottom:494.036000pt;}
.y29b{bottom:495.412000pt;}
.y367{bottom:495.436000pt;}
.y20e{bottom:495.745333pt;}
.y81{bottom:496.432000pt;}
.yb7{bottom:496.509333pt;}
.y1f1{bottom:496.684000pt;}
.y3a9{bottom:497.648000pt;}
.y277{bottom:498.309333pt;}
.yd8{bottom:500.162667pt;}
.y165{bottom:500.212000pt;}
.y39{bottom:500.333333pt;}
.y249{bottom:500.582667pt;}
.y31c{bottom:502.409333pt;}
.y1c5{bottom:502.706667pt;}
.y2b0{bottom:503.216752pt;}
.y19{bottom:504.410667pt;}
.y141{bottom:504.456000pt;}
.y194{bottom:505.764000pt;}
.y366{bottom:506.062667pt;}
.y70{bottom:507.390667pt;}
.y3a8{bottom:508.274667pt;}
.y29a{bottom:510.024000pt;}
.yb6{bottom:511.121333pt;}
.y1f0{bottom:511.296000pt;}
.y276{bottom:511.992816pt;}
.y31b{bottom:513.036000pt;}
.y38{bottom:513.617333pt;}
.y20d{bottom:514.010667pt;}
.y22c{bottom:514.696000pt;}
.yd7{bottom:514.774667pt;}
.y164{bottom:514.824000pt;}
.y248{bottom:515.194667pt;}
.y2af{bottom:515.238409pt;}
.y365{bottom:516.689333pt;}
.y3a7{bottom:518.902667pt;}
.y18{bottom:519.022667pt;}
.y140{bottom:519.068000pt;}
.y2dd{bottom:519.521333pt;}
.y193{bottom:520.376000pt;}
.y6f{bottom:522.002667pt;}
.y31a{bottom:523.662667pt;}
.y299{bottom:524.634667pt;}
.y2f5{bottom:525.656000pt;}
.yb5{bottom:525.733333pt;}
.y1ef{bottom:525.908000pt;}
.y37{bottom:526.900000pt;}
.y80{bottom:526.934667pt;}
.y2ae{bottom:527.261162pt;}
.y364{bottom:527.316000pt;}
.y275{bottom:528.571413pt;}
.y1c4{bottom:528.592000pt;}
.y22b{bottom:529.308000pt;}
.yd6{bottom:529.386667pt;}
.y163{bottom:529.436000pt;}
.y3a6{bottom:529.529333pt;}
.y247{bottom:529.806667pt;}
.y17{bottom:533.633333pt;}
.y13f{bottom:533.680000pt;}
.y2dc{bottom:534.133333pt;}
.y319{bottom:534.289333pt;}
.y192{bottom:534.988000pt;}
.y6e{bottom:536.614667pt;}
.y363{bottom:537.942667pt;}
.y298{bottom:539.246667pt;}
.y2ad{bottom:539.283916pt;}
.y3a5{bottom:540.156000pt;}
.y36{bottom:540.184000pt;}
.y274{bottom:540.313470pt;}
.yb4{bottom:540.345333pt;}
.y1ee{bottom:540.520000pt;}
.y7f{bottom:541.546667pt;}
.y20c{bottom:542.548000pt;}
.y1c3{bottom:543.204000pt;}
.y22a{bottom:543.920000pt;}
.yd5{bottom:543.998667pt;}
.y162{bottom:544.048000pt;}
.y246{bottom:544.418667pt;}
.y318{bottom:544.916000pt;}
.y273{bottom:546.183963pt;}
.y16{bottom:548.245333pt;}
.y13e{bottom:548.292000pt;}
.y362{bottom:548.569333pt;}
.y2db{bottom:548.745333pt;}
.y191{bottom:549.600000pt;}
.y3a4{bottom:550.782667pt;}
.y6d{bottom:551.226667pt;}
.y35{bottom:553.468000pt;}
.y297{bottom:553.858667pt;}
.yb3{bottom:554.957333pt;}
.y1ed{bottom:555.132000pt;}
.y317{bottom:555.544000pt;}
.y2ac{bottom:556.258828pt;}
.y20b{bottom:557.160000pt;}
.y1c2{bottom:557.814667pt;}
.y229{bottom:558.532000pt;}
.yd4{bottom:558.610667pt;}
.y161{bottom:558.660000pt;}
.y245{bottom:559.030667pt;}
.y361{bottom:559.196000pt;}
.y7e{bottom:559.812000pt;}
.y3a3{bottom:561.409333pt;}
.y15{bottom:562.857333pt;}
.y13d{bottom:562.904000pt;}
.y2da{bottom:563.356000pt;}
.y272{bottom:563.797584pt;}
.y190{bottom:564.212000pt;}
.y6c{bottom:565.838667pt;}
.y316{bottom:566.170667pt;}
.y34{bottom:566.750667pt;}
.yb2{bottom:569.569333pt;}
.y1ec{bottom:569.742667pt;}
.y360{bottom:569.822667pt;}
.y20a{bottom:571.772000pt;}
.y3a2{bottom:572.036000pt;}
.y1c1{bottom:572.426667pt;}
.y228{bottom:573.144000pt;}
.yd3{bottom:573.222667pt;}
.y160{bottom:573.272000pt;}
.y244{bottom:573.642667pt;}
.y271{bottom:575.539641pt;}
.y315{bottom:576.797333pt;}
.y14{bottom:577.469333pt;}
.y13c{bottom:577.516000pt;}
.y2d9{bottom:577.968000pt;}
.y18f{bottom:578.824000pt;}
.y6b{bottom:580.449333pt;}
.y270{bottom:581.410134pt;}
.y3a1{bottom:582.662667pt;}
.y2d2{bottom:584.102667pt;}
.yb1{bottom:584.181333pt;}
.y1eb{bottom:584.354667pt;}
.y296{bottom:586.028000pt;}
.y209{bottom:586.384000pt;}
.y1c0{bottom:587.038667pt;}
.y314{bottom:587.424000pt;}
.y227{bottom:587.756000pt;}
.yd2{bottom:587.834667pt;}
.y15f{bottom:587.884000pt;}
.y33{bottom:587.962667pt;}
.y243{bottom:588.254667pt;}
.y2ab{bottom:588.560000pt;}
.y7d{bottom:590.314667pt;}
.y35f{bottom:591.077333pt;}
.y13{bottom:592.081333pt;}
.y13b{bottom:592.128000pt;}
.y2d8{bottom:592.580000pt;}
.y3a0{bottom:593.289333pt;}
.y18e{bottom:593.436000pt;}
.y6a{bottom:595.061333pt;}
.y313{bottom:598.050667pt;}
.yb0{bottom:598.793333pt;}
.y1ea{bottom:598.966667pt;}
.y26f{bottom:599.022684pt;}
.y295{bottom:599.920185pt;}
.y208{bottom:600.996000pt;}
.y1bf{bottom:601.650667pt;}
.y35e{bottom:601.704000pt;}
.y226{bottom:602.368000pt;}
.yd1{bottom:602.445333pt;}
.y15e{bottom:602.496000pt;}
.y242{bottom:602.865333pt;}
.y39f{bottom:603.916000pt;}
.y7c{bottom:604.926667pt;}
.y32{bottom:606.228000pt;}
.y12{bottom:606.693333pt;}
.y13a{bottom:606.740000pt;}
.y2d7{bottom:607.192000pt;}
.y18d{bottom:608.048000pt;}
.y312{bottom:608.677333pt;}
.y69{bottom:609.673333pt;}
.y26e{bottom:610.764741pt;}
.y294{bottom:612.073423pt;}
.y35d{bottom:612.330667pt;}
.y2d1{bottom:612.478667pt;}
.yaf{bottom:613.405333pt;}
.y1e9{bottom:613.578667pt;}
.y39e{bottom:614.544000pt;}
.y207{bottom:615.608000pt;}
.y1be{bottom:616.262667pt;}
.y225{bottom:616.980000pt;}
.yd0{bottom:617.057333pt;}
.y241{bottom:617.477333pt;}
.y311{bottom:619.304000pt;}
.y7b{bottom:619.538667pt;}
.y11{bottom:621.305333pt;}
.y139{bottom:621.352000pt;}
.y2d6{bottom:621.804000pt;}
.y26d{bottom:622.506798pt;}
.y18c{bottom:622.660000pt;}
.y35c{bottom:622.957333pt;}
.y293{bottom:624.226662pt;}
.y68{bottom:624.285333pt;}
.y39d{bottom:625.170667pt;}
.y2d0{bottom:627.090667pt;}
.y1e8{bottom:628.190667pt;}
.y15d{bottom:628.502667pt;}
.y310{bottom:629.930667pt;}
.y206{bottom:630.220000pt;}
.y1bd{bottom:630.874667pt;}
.y224{bottom:631.592000pt;}
.yae{bottom:631.669333pt;}
.y240{bottom:632.089333pt;}
.y35b{bottom:633.584000pt;}
.y7a{bottom:634.150667pt;}
.y26c{bottom:634.248855pt;}
.y39c{bottom:635.797333pt;}
.y10{bottom:635.917333pt;}
.y138{bottom:635.964000pt;}
.y292{bottom:636.379901pt;}
.y2d5{bottom:636.416000pt;}
.y18b{bottom:637.272000pt;}
.y67{bottom:638.897333pt;}
.y30f{bottom:640.557333pt;}
.y2cf{bottom:641.702667pt;}
.y1e7{bottom:642.802667pt;}
.y35a{bottom:644.210667pt;}
.y205{bottom:644.830667pt;}
.y26b{bottom:645.990912pt;}
.y223{bottom:646.204000pt;}
.y39b{bottom:646.424000pt;}
.y23f{bottom:646.701333pt;}
.y291{bottom:648.533140pt;}
.y79{bottom:648.762667pt;}
.y1bc{bottom:649.140000pt;}
.y15c{bottom:649.248000pt;}
.y137{bottom:650.574667pt;}
.y2d4{bottom:651.028000pt;}
.y30e{bottom:651.185333pt;}
.y18a{bottom:651.882667pt;}
.y66{bottom:653.509333pt;}
.yf{bottom:654.181333pt;}
.y359{bottom:654.837333pt;}
.y39a{bottom:657.050667pt;}
.y1e6{bottom:657.414667pt;}
.y26a{bottom:657.732969pt;}
.y2ce{bottom:659.968000pt;}
.y222{bottom:660.814667pt;}
.y15b{bottom:661.078667pt;}
.y23e{bottom:661.313333pt;}
.y30d{bottom:661.812000pt;}
.y204{bottom:662.298667pt;}
.y78{bottom:663.373333pt;}
.y136{bottom:665.186667pt;}
.y358{bottom:665.464000pt;}
.y290{bottom:665.692284pt;}
.y189{bottom:666.494667pt;}
.y399{bottom:667.677333pt;}
.y65{bottom:668.121333pt;}
.yad{bottom:669.262667pt;}
.y2d3{bottom:669.293333pt;}
.y269{bottom:669.475027pt;}
.y30c{bottom:672.438667pt;}
.y221{bottom:675.426667pt;}
.y23d{bottom:675.925333pt;}
.y357{bottom:676.090667pt;}
.y203{bottom:676.910667pt;}
.y77{bottom:677.985333pt;}
.y398{bottom:678.304000pt;}
.ye{bottom:680.828000pt;}
.y188{bottom:681.106667pt;}
.y268{bottom:681.217084pt;}
.y1bb{bottom:681.334667pt;}
.y64{bottom:682.733333pt;}
.y30b{bottom:683.065333pt;}
.y1e5{bottom:683.742667pt;}
.y356{bottom:686.718667pt;}
.y397{bottom:688.930667pt;}
.y23c{bottom:690.537333pt;}
.y202{bottom:691.522667pt;}
.y76{bottom:692.597333pt;}
.y267{bottom:692.959141pt;}
.y1ba{bottom:693.164000pt;}
.y220{bottom:693.692000pt;}
.y1b9{bottom:694.453333pt;}
.y82{bottom:695.430667pt;}
.y187{bottom:695.718667pt;}
.yd{bottom:696.768000pt;}
.y1b8{bottom:697.273333pt;}
.y63{bottom:697.345333pt;}
.y28f{bottom:698.122667pt;}
.y1e4{bottom:698.353333pt;}
.y396{bottom:699.557333pt;}
.y135{bottom:702.780000pt;}
.y30a{bottom:704.318667pt;}
.y266{bottom:704.701198pt;}
.y23b{bottom:705.149333pt;}
.y201{bottom:706.134667pt;}
.y75{bottom:707.209333pt;}
.y355{bottom:707.972000pt;}
.y2cd{bottom:709.492510pt;}
.y395{bottom:710.185333pt;}
.y186{bottom:710.330667pt;}
.y62{bottom:711.957333pt;}
.yc{bottom:712.709333pt;}
.y1e3{bottom:712.965333pt;}
.y1b7{bottom:714.406667pt;}
.y309{bottom:714.945333pt;}
.y264{bottom:716.443255pt;}
.y354{bottom:718.598667pt;}
.y23a{bottom:719.761333pt;}
.y200{bottom:720.746667pt;}
.y394{bottom:720.812000pt;}
.y74{bottom:721.821333pt;}
.y2cc{bottom:723.825835pt;}
.y185{bottom:724.942667pt;}
.y308{bottom:725.572000pt;}
.y61{bottom:726.569333pt;}
.y265{bottom:728.184240pt;}
.yb{bottom:728.649333pt;}
.ye9{bottom:728.948000pt;}
.y1b6{bottom:729.018667pt;}
.y353{bottom:729.225333pt;}
.y393{bottom:731.438667pt;}
.y239{bottom:734.373333pt;}
.y1e2{bottom:734.378667pt;}
.y1ff{bottom:735.358667pt;}
.y307{bottom:736.198667pt;}
.y2cb{bottom:738.160600pt;}
.y184{bottom:739.554667pt;}
.y352{bottom:739.852000pt;}
.y263{bottom:739.926298pt;}
.y60{bottom:741.180000pt;}
.y392{bottom:742.065333pt;}
.y1b5{bottom:743.630667pt;}
.ya{bottom:744.589333pt;}
.y306{bottom:746.826667pt;}
.y238{bottom:748.984000pt;}
.y1e1{bottom:748.990667pt;}
.y351{bottom:750.478667pt;}
.y262{bottom:751.668355pt;}
.y2ca{bottom:752.493925pt;}
.y391{bottom:752.692000pt;}
.y1fe{bottom:752.825333pt;}
.y183{bottom:754.166667pt;}
.y5f{bottom:755.792000pt;}
.y305{bottom:757.453333pt;}
.y1b4{bottom:758.241333pt;}
.y9{bottom:760.529333pt;}
.y350{bottom:761.105333pt;}
.y390{bottom:763.318667pt;}
.y261{bottom:763.410412pt;}
.y237{bottom:763.596000pt;}
.y1e0{bottom:763.602667pt;}
.y2c9{bottom:766.828690pt;}
.y1fd{bottom:767.437333pt;}
.y304{bottom:768.080000pt;}
.y1b3{bottom:770.293333pt;}
.y5e{bottom:770.404000pt;}
.y182{bottom:771.521333pt;}
.y34f{bottom:771.732000pt;}
.y38f{bottom:773.945333pt;}
.y1b2{bottom:774.401333pt;}
.y260{bottom:775.152469pt;}
.y1df{bottom:778.214667pt;}
.y303{bottom:778.706667pt;}
.y236{bottom:781.861333pt;}
.y34e{bottom:782.360000pt;}
.y38e{bottom:784.572000pt;}
.y5d{bottom:785.016000pt;}
.y1fc{bottom:785.702667pt;}
.y181{bottom:786.133333pt;}
.y25f{bottom:786.894526pt;}
.y2c8{bottom:787.658197pt;}
.y302{bottom:789.333333pt;}
.y8{bottom:790.556000pt;}
.y1b1{bottom:791.534667pt;}
.y1de{bottom:792.826667pt;}
.y34d{bottom:792.986667pt;}
.y2c6{bottom:793.888201pt;}
.y38d{bottom:795.198667pt;}
.y25e{bottom:798.636583pt;}
.y5c{bottom:799.628000pt;}
.y301{bottom:799.960000pt;}
.y180{bottom:800.745333pt;}
.y2c5{bottom:801.054864pt;}
.y34c{bottom:803.613333pt;}
.y38c{bottom:805.826667pt;}
.y1b0{bottom:806.146667pt;}
.y7{bottom:806.496000pt;}
.y1dd{bottom:807.438667pt;}
.y2c7{bottom:808.222966pt;}
.y25d{bottom:810.378640pt;}
.y235{bottom:810.586667pt;}
.y5b{bottom:814.240000pt;}
.y17f{bottom:815.357333pt;}
.y38b{bottom:816.453333pt;}
.y1af{bottom:820.758667pt;}
.y300{bottom:821.213333pt;}
.y25c{bottom:822.120697pt;}
.y6{bottom:822.436000pt;}
.y34b{bottom:824.866667pt;}
.y234{bottom:825.198667pt;}
.y38a{bottom:827.080000pt;}
.y5a{bottom:828.852000pt;}
.y17e{bottom:829.969333pt;}
.y2ff{bottom:831.840000pt;}
.y25b{bottom:833.862754pt;}
.y1ae{bottom:835.370667pt;}
.y34a{bottom:835.493333pt;}
.y389{bottom:837.706667pt;}
.y5{bottom:838.376000pt;}
.y233{bottom:839.810667pt;}
.y2fe{bottom:842.468000pt;}
.y2c4{bottom:843.250667pt;}
.y59{bottom:843.464000pt;}
.y25a{bottom:845.603740pt;}
.y349{bottom:846.120000pt;}
.y17d{bottom:847.248000pt;}
.y388{bottom:848.333333pt;}
.y17c{bottom:850.068000pt;}
.y2fd{bottom:853.094667pt;}
.y4{bottom:854.316000pt;}
.y232{bottom:854.422667pt;}
.y348{bottom:856.746667pt;}
.y259{bottom:857.345797pt;}
.y58{bottom:858.076000pt;}
.y387{bottom:858.960000pt;}
.y1ad{bottom:860.257333pt;}
.y2fc{bottom:863.721333pt;}
.y347{bottom:867.373333pt;}
.y1ab{bottom:868.458667pt;}
.y231{bottom:869.034667pt;}
.y258{bottom:869.087854pt;}
.y386{bottom:869.586667pt;}
.y3{bottom:870.257333pt;}
.y57{bottom:872.688000pt;}
.y2fb{bottom:874.348000pt;}
.y1ac{bottom:876.552000pt;}
.y346{bottom:878.001333pt;}
.y230{bottom:883.646667pt;}
.y2fa{bottom:884.974667pt;}
.y257{bottom:885.787526pt;}
.y56{bottom:887.298667pt;}
.y345{bottom:888.628000pt;}
.y255{bottom:892.113386pt;}
.y2f9{bottom:895.601333pt;}
.y254{bottom:896.297411pt;}
.y22f{bottom:898.258667pt;}
.y344{bottom:899.254667pt;}
.y55{bottom:901.910667pt;}
.y2{bottom:901.933333pt;}
.y256{bottom:902.168976pt;}
.y2f8{bottom:906.228000pt;}
.y343{bottom:909.881333pt;}
.y22e{bottom:912.870667pt;}
.y54{bottom:916.522667pt;}
.y2f7{bottom:916.854667pt;}
.y342{bottom:920.508000pt;}
.y1{bottom:928.500000pt;}
.y53{bottom:931.134667pt;}
.y253{bottom:934.190667pt;}
.y52{bottom:966.204000pt;}
.h21{height:16.406076pt;}
.h36{height:16.434857pt;}
.h37{height:17.975451pt;}
.h22{height:18.456838pt;}
.h20{height:19.187794pt;}
.h14{height:20.601364pt;}
.h13{height:20.877210pt;}
.h1d{height:21.147062pt;}
.h7{height:21.479640pt;}
.h11{height:21.703301pt;}
.h10{height:21.729434pt;}
.h35{height:21.814315pt;}
.h1c{height:22.257956pt;}
.h19{height:22.416901pt;}
.h12{height:22.866207pt;}
.h1f{height:23.261770pt;}
.h17{height:23.505009pt;}
.h1e{height:24.240303pt;}
.h31{height:24.594020pt;}
.hc{height:26.333069pt;}
.h16{height:26.558195pt;}
.h9{height:27.002554pt;}
.h8{height:27.337296pt;}
.h15{height:27.439453pt;}
.h30{height:27.668388pt;}
.h40{height:28.186150pt;}
.h32{height:28.244813pt;}
.h3a{height:28.329807pt;}
.h2a{height:28.508984pt;}
.h38{height:28.637276pt;}
.h41{height:28.773362pt;}
.h3b{height:28.920011pt;}
.h39{height:29.233886pt;}
.ha{height:30.605184pt;}
.h23{height:31.025212pt;}
.hb{height:31.242792pt;}
.h2c{height:32.039936pt;}
.h3e{height:33.026054pt;}
.h18{height:33.272876pt;}
.h24{height:33.378918pt;}
.h3f{height:33.714097pt;}
.hd{height:33.761485pt;}
.he{height:34.287514pt;}
.h1a{height:34.430976pt;}
.h3c{height:34.717901pt;}
.h6{height:35.148288pt;}
.h3{height:39.053392pt;}
.h5{height:41.890944pt;}
.h29{height:46.422955pt;}
.h2b{height:46.428288pt;}
.h2{height:46.864384pt;}
.h2f{height:49.856044pt;}
.h27{height:50.719514pt;}
.h33{height:51.731070pt;}
.h25{height:52.301471pt;}
.h28{height:52.306805pt;}
.h4{height:57.513699pt;}
.h34{height:60.821363pt;}
.h3d{height:61.698460pt;}
.h26{height:63.576138pt;}
.h1{height:64.087196pt;}
.h2d{height:70.160631pt;}
.h2e{height:102.965965pt;}
.h1b{height:215.470836pt;}
.hf{height:248.990650pt;}
.h0{height:1056.000000pt;}
.w3{width:320.326669pt;}
.w1{width:625.453526pt;}
.w2{width:659.087833pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x10c{left:1.612091pt;}
.x8e{left:4.018435pt;}
.x6b{left:6.170440pt;}
.x69{left:16.998249pt;}
.x8f{left:21.411872pt;}
.x91{left:24.882980pt;}
.x93{left:31.763910pt;}
.x6e{left:35.934592pt;}
.x90{left:37.818182pt;}
.x94{left:43.596319pt;}
.x10d{left:68.614258pt;}
.xc5{left:70.774667pt;}
.x19{left:71.730667pt;}
.xf5{left:72.972000pt;}
.x92{left:75.162613pt;}
.x52{left:76.072000pt;}
.x83{left:78.457257pt;}
.x82{left:82.986667pt;}
.x66{left:83.913413pt;}
.x50{left:85.014667pt;}
.x53{left:87.190667pt;}
.xad{left:91.378667pt;}
.x11e{left:92.312000pt;}
.xf6{left:93.792000pt;}
.x65{left:95.272520pt;}
.x51{left:97.418667pt;}
.x7d{left:98.741333pt;}
.xf7{left:104.477333pt;}
.xc4{left:105.664000pt;}
.x70{left:107.441333pt;}
.x5{left:109.114667pt;}
.x1{left:110.390667pt;}
.x4{left:113.006667pt;}
.x7e{left:115.502667pt;}
.xc8{left:122.401333pt;}
.x7f{left:126.621333pt;}
.x10f{left:128.806667pt;}
.xac{left:129.861333pt;}
.x8{left:131.038667pt;}
.x6{left:135.808000pt;}
.xeb{left:138.068000pt;}
.x87{left:141.305904pt;}
.x7{left:142.309333pt;}
.xaa{left:143.860000pt;}
.x6f{left:149.148049pt;}
.x8c{left:150.726109pt;}
.x3{left:154.156000pt;}
.xa9{left:155.117333pt;}
.x8a{left:156.050901pt;}
.x58{left:157.338667pt;}
.x13{left:158.778667pt;}
.x89{left:159.931977pt;}
.xf8{left:163.368000pt;}
.xc2{left:165.485333pt;}
.x59{left:168.457333pt;}
.x86{left:169.979968pt;}
.xc3{left:173.997333pt;}
.xf9{left:175.008000pt;}
.xc6{left:175.990667pt;}
.xee{left:184.208000pt;}
.x116{left:190.960000pt;}
.x88{left:192.136183pt;}
.xef{left:193.249333pt;}
.x54{left:203.289333pt;}
.x8d{left:205.053636pt;}
.x8b{left:206.878439pt;}
.xc1{left:208.928000pt;}
.xf1{left:213.445333pt;}
.x55{left:214.406667pt;}
.x10b{left:216.643222pt;}
.x2{left:219.388000pt;}
.x96{left:224.782388pt;}
.xf2{left:225.977333pt;}
.xc9{left:227.094667pt;}
.xa8{left:228.822667pt;}
.x115{left:236.230109pt;}
.x114{left:237.119288pt;}
.xa4{left:238.549579pt;}
.xfa{left:240.128000pt;}
.x5a{left:244.230667pt;}
.xe9{left:247.665333pt;}
.x4c{left:250.088000pt;}
.x5b{left:255.349333pt;}
.xf3{left:256.282667pt;}
.xea{left:257.394667pt;}
.x4d{left:261.206667pt;}
.x4e{left:267.300000pt;}
.x80{left:268.290667pt;}
.xf4{left:269.461333pt;}
.x5e{left:271.884000pt;}
.x71{left:275.233333pt;}
.x4f{left:278.418667pt;}
.x81{left:279.409333pt;}
.x6a{left:280.893104pt;}
.x72{left:286.350667pt;}
.x73{left:291.940000pt;}
.x74{left:303.057333pt;}
.xc7{left:304.981333pt;}
.x109{left:306.407440pt;}
.x75{left:308.646667pt;}
.xa3{left:310.590549pt;}
.xed{left:311.924000pt;}
.xf0{left:313.920000pt;}
.x56{left:318.044000pt;}
.x76{left:319.765333pt;}
.x117{left:321.904000pt;}
.x9b{left:322.821512pt;}
.x97{left:324.217944pt;}
.x77{left:325.353333pt;}
.xb{left:327.980000pt;}
.x57{left:329.161333pt;}
.xa{left:331.872000pt;}
.x9a{left:333.202470pt;}
.x99{left:334.203119pt;}
.x107{left:335.126667pt;}
.x78{left:336.472000pt;}
.x118{left:339.750667pt;}
.x79{left:342.060000pt;}
.xe{left:343.913333pt;}
.xec{left:345.436000pt;}
.x7a{left:353.178667pt;}
.xc{left:354.673333pt;}
.x7b{left:358.766667pt;}
.xca{left:360.197333pt;}
.xd{left:361.176000pt;}
.x10a{left:362.590167pt;}
.x9{left:366.294667pt;}
.x7c{left:369.885333pt;}
.x108{left:371.065333pt;}
.xa0{left:373.652705pt;}
.x5c{left:375.232000pt;}
.xa7{left:378.179688pt;}
.x14{left:380.617333pt;}
.x106{left:382.638667pt;}
.xab{left:384.369333pt;}
.x5d{left:386.350667pt;}
.x98{left:387.794816pt;}
.x9d{left:405.112477pt;}
.x9e{left:419.940697pt;}
.xe3{left:422.984000pt;}
.x1a{left:423.940000pt;}
.x10e{left:428.192000pt;}
.xe4{left:431.161333pt;}
.xa5{left:432.313892pt;}
.xa2{left:433.983443pt;}
.x1f{left:435.058667pt;}
.x45{left:437.224000pt;}
.xa1{left:438.757733pt;}
.x9c{left:440.029141pt;}
.x20{left:441.161333pt;}
.xae{left:443.588000pt;}
.x112{left:445.311757pt;}
.xbc{left:447.016000pt;}
.xb7{left:448.069333pt;}
.xd3{left:449.794667pt;}
.x21{left:452.280000pt;}
.x113{left:453.501360pt;}
.xfb{left:455.181333pt;}
.xd0{left:456.857333pt;}
.x22{left:458.382667pt;}
.xbd{left:460.009333pt;}
.xb8{left:461.181333pt;}
.xe1{left:462.973333pt;}
.x111{left:464.900000pt;}
.xff{left:466.982667pt;}
.x11d{left:468.128000pt;}
.x23{left:469.500000pt;}
.x3f{left:471.444000pt;}
.xcb{left:473.917333pt;}
.x100{left:478.100000pt;}
.x5f{left:479.573333pt;}
.xb9{left:481.137333pt;}
.x40{left:482.562667pt;}
.xd2{left:483.941333pt;}
.x60{left:485.132000pt;}
.xb6{left:486.090667pt;}
.x103{left:487.176000pt;}
.x61{left:490.746667pt;}
.x101{left:495.836000pt;}
.x85{left:496.867656pt;}
.xd1{left:498.769333pt;}
.xfd{left:500.022667pt;}
.x24{left:501.434667pt;}
.xce{left:505.453333pt;}
.x62{left:507.478667pt;}
.xe2{left:509.120000pt;}
.x68{left:510.298185pt;}
.x25{left:512.553333pt;}
.x6d{left:513.604234pt;}
.x6c{left:516.554450pt;}
.x26{left:518.432000pt;}
.x63{left:524.212000pt;}
.xdd{left:525.252000pt;}
.xb4{left:527.722667pt;}
.x27{left:529.549333pt;}
.xd8{left:533.262667pt;}
.x28{left:535.428000pt;}
.x104{left:537.013333pt;}
.x64{left:540.944000pt;}
.x67{left:542.435384pt;}
.x95{left:543.960157pt;}
.x84{left:545.243291pt;}
.x17{left:546.181333pt;}
.x105{left:548.132000pt;}
.x16{left:550.074667pt;}
.x29{left:552.424000pt;}
.x12{left:556.729333pt;}
.x9f{left:559.081902pt;}
.xbe{left:562.441333pt;}
.x2a{left:563.542667pt;}
.xb5{left:564.810667pt;}
.x2b{left:569.420000pt;}
.x18{left:572.874667pt;}
.x10{left:575.512000pt;}
.xb2{left:576.714667pt;}
.x11{left:579.464000pt;}
.x2c{left:580.538667pt;}
.xa6{left:581.649889pt;}
.xf{left:583.392000pt;}
.x15{left:584.958667pt;}
.x2d{left:586.416000pt;}
.xfc{left:587.784000pt;}
.xd4{left:588.960000pt;}
.xdc{left:590.309333pt;}
.xe6{left:593.053333pt;}
.xcf{left:594.402667pt;}
.x2e{left:597.534667pt;}
.x46{left:600.381333pt;}
.x2f{left:603.413333pt;}
.xe8{left:604.445333pt;}
.xe7{left:605.477333pt;}
.xba{left:610.466667pt;}
.x47{left:611.498667pt;}
.x110{left:612.868000pt;}
.x30{left:614.530667pt;}
.x48{left:617.408000pt;}
.xe0{left:618.990667pt;}
.x31{left:620.409333pt;}
.xda{left:622.650667pt;}
.x49{left:628.526667pt;}
.xdb{left:630.341333pt;}
.x32{left:631.526667pt;}
.x4a{left:634.434667pt;}
.xb0{left:636.701333pt;}
.x33{left:638.209333pt;}
.xde{left:640.742667pt;}
.xcc{left:643.356000pt;}
.x4b{left:645.553333pt;}
.x34{left:649.328000pt;}
.xb1{left:650.977333pt;}
.x119{left:654.674667pt;}
.xd5{left:657.216000pt;}
.xaf{left:659.804000pt;}
.x11a{left:665.793333pt;}
.xd6{left:668.254667pt;}
.xb3{left:670.756000pt;}
.x11b{left:674.873333pt;}
.x3b{left:678.485333pt;}
.xdf{left:680.541333pt;}
.xbb{left:681.737333pt;}
.x3c{left:684.044000pt;}
.xd7{left:685.206667pt;}
.x3d{left:689.664000pt;}
.xfe{left:692.733333pt;}
.xcd{left:696.902667pt;}
.x35{left:699.560000pt;}
.x3e{left:700.782667pt;}
.x11c{left:703.173333pt;}
.x36{left:705.118667pt;}
.xd9{left:708.069333pt;}
.x37{left:710.984000pt;}
.x41{left:712.192000pt;}
.xbf{left:714.089333pt;}
.x1b{left:715.082667pt;}
.xe5{left:720.226667pt;}
.x38{left:722.102667pt;}
.x42{left:723.310667pt;}
.x1c{left:726.201333pt;}
.x39{left:727.968000pt;}
.x43{left:728.908000pt;}
.x1d{left:731.833333pt;}
.x102{left:733.001333pt;}
.xc0{left:734.104000pt;}
.x3a{left:739.086667pt;}
.x44{left:740.025333pt;}
.x1e{left:742.950667pt;}
}




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