
    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_5c57349ab27f93b81a1dcfc8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_ff8d6a95cb28f3fb2a2057eb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_dbc0ad9317290f8678827328.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_596497cf941c074c82b8ebac.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.925293;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_aeb8cfa3e063a19b1f525391.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e6c7b87a62266102798b897d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_8c2c28c598f2cb0fe4a0af6f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893555;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_289f9eb9783051d64666c7af.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.046387;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_f5bac2f61ef579b758801ca4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.985352;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_cafc87eb099642afd6792118.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_21d72aa9d03bf671018a43b7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.693359;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_4685c43299e3d0c4483d4502.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.691406;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_fe136f4802495faecdc5d70e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893555;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_f5d90182fce37b7ebe67ba34.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.893555;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_8c9442edb398346d340d4d10.woff2')format("woff");}.fff{font-family:fff;line-height:0.910645;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_7ab2282b351e95b6ec378116.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_0d540bd7b0b926ec58cb2043.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.706055;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_0fe984b0577eea62ad128690.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.893555;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_66c5f9ab3487f8745703306d.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.056641;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_d4849b6118b74ae08b42002e.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.910645;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_ec1cb0eec57ead49990c54f7.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.706055;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_2ea27d7a247b33b2eefc752f.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.893555;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_e8143d37a8a67b6d3d094315.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.893555;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_a4707b70e6c8279be04132c1.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.910645;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_f7ccae1b1c5803939e65109f.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.706055;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_3281e53213517c10dea49a24.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.897949;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_b3294cbcc9b51f0a5ae74cac.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_66b650a46a323e66b5064671.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.893555;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_093917648dc25c2351ae971b.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.893555;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_c5286059aba7701723271049.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.910645;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_649254de9aa9e1d7cd70fb26.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.678223;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_a42e2f468d1f02b7c51ecb39.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.860352;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_e2ec65b2c27f42a3192a21b8.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.893555;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_d3f0cadf23da7fab13a47e0a.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.893555;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_469f5ef6f064406e926a7523.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.910645;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_1a03b870ab2d24fe35f54d87.woff2')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_ee5fd771a5b878e0f6b22e21.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.893555;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_afd0bcb9b3a5d09cd908b0b8.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.893555;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:ff27;src:url('chunks/assets/font_d5bd8b2e08944bdd0966481a.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.910645;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:ff28;src:url('chunks/assets/font_816668526d7517237bab0d32.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.897949;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:ff29;src:url('chunks/assets/font_89fde385a405415baa04f006.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_7a6589fac7b31476c18bc14c.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_6dae5d2de31ee015a1336e37.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_4685c43299e3d0c4483d4502.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.691406;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:ff2d;src:url('chunks/assets/font_3b0784e57870c69291003b6d.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.893555;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:ff2e;src:url('chunks/assets/font_bde7fec9d437af1f7f7659d6.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.893555;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:ff2f;src:url('chunks/assets/font_2c82a45d43fdbaa499e30531.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.910645;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:ff30;src:url('chunks/assets/font_ac2acf1c3ee5e787b552689b.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_b1ee4ad5529438872943fa73.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.897949;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:ff32;src:url('chunks/assets/font_cd65b8e788f8c4d0fed49a45.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_5186e50faee52d5fdf300399.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.893555;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:ff34;src:url('chunks/assets/font_d6fec235c87e19a822b047d1.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.893555;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:ff35;src:url('chunks/assets/font_f441d7afb2fe672ad249856b.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.910645;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:ff36;src:url('chunks/assets/font_1aabdc1d9048af41c19acd0d.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_cde6b03c71e4d26a9097bba7.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.706055;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:ff38;src:url('chunks/assets/font_4685c43299e3d0c4483d4502.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.691406;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:ff39;src:url('chunks/assets/font_641c7fb546439cf138138d4a.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.893555;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:ff3a;src:url('chunks/assets/font_18f91a363d58318779161784.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.893555;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:ff3b;src:url('chunks/assets/font_06f28b51abb8ea178a629354.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.910645;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:ff3c;src:url('chunks/assets/font_cbadbfab465d580757991860.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.709473;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:ff3d;src:url('chunks/assets/font_313f13f265d2a65f5c373e3e.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.893555;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:ff3e;src:url('chunks/assets/font_c5ec6377a23914090ffe9be0.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.692871;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:ff3f;src:url('chunks/assets/font_57040c380da84a8285a3186d.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.093262;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:ff40;src:url('chunks/assets/font_284b08ea122da080847420f6.woff2')format("woff");}.ff40{font-family:ff40;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:ff41;src:url('chunks/assets/font_b115af3c345cc92a3986e746.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_7fac7d3f98080338d7a52d07.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.689453;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:ff43;src:url('chunks/assets/font_5e0499185f08f02121c4848d.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.893555;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:ff44;src:url('chunks/assets/font_a6a0e09d8829e02fd621151a.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.910645;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:ff45;src:url('chunks/assets/font_bdf2b6b2d7ec5e4e10832feb.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.908203;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:ff46;src:url('chunks/assets/font_7add262d488838769017288f.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_663a777b1085f6700bd7039a.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.156934,-0.195382,0.193106,0.158777,0,0);-ms-transform:matrix(0.156934,-0.195382,0.193106,0.158777,0,0);-webkit-transform:matrix(0.156934,-0.195382,0.193106,0.158777,0,0);}
.m4{transform:matrix(0.237402,-0.070215,0.069425,0.240167,0,0);-ms-transform:matrix(0.237402,-0.070215,0.069425,0.240167,0,0);-webkit-transform:matrix(0.237402,-0.070215,0.069425,0.240167,0,0);}
.m2{transform:matrix(0.247093,-0.000431,0.000431,0.250000,0,0);-ms-transform:matrix(0.247093,-0.000431,0.000431,0.250000,0,0);-webkit-transform:matrix(0.247093,-0.000431,0.000431,0.250000,0,0);}
.m1{transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247601,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);}
.m7{transform:matrix(0.255931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255931,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-33.120000px;}
.v3{vertical-align:-27.360000px;}
.v10{vertical-align:-21.600000px;}
.ve{vertical-align:-8.629920px;}
.v6{vertical-align:-4.196759px;}
.v8{vertical-align:-1.502697px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.021170px;}
.v9{vertical-align:2.179326px;}
.v7{vertical-align:5.479448px;}
.vf{vertical-align:21.584760px;}
.v4{vertical-align:27.360000px;}
.vd{vertical-align:28.797984px;}
.vb{vertical-align:31.681584px;}
.v1{vertical-align:33.120000px;}
.vc{vertical-align:34.561296px;}
.va{vertical-align:104.789254px;}
.ls7c{letter-spacing:-5.141646px;}
.ls70{letter-spacing:-1.883376px;}
.ls6c{letter-spacing:-1.718064px;}
.ls127{letter-spacing:-1.378080px;}
.ls6e{letter-spacing:-0.980064px;}
.ls7b{letter-spacing:-0.961446px;}
.ls6f{letter-spacing:-0.732096px;}
.lscd{letter-spacing:-0.692640px;}
.ls6b{letter-spacing:-0.667152px;}
.ls11d{letter-spacing:-0.665280px;}
.ls6d{letter-spacing:-0.655344px;}
.lsae{letter-spacing:-0.649440px;}
.lsa9{letter-spacing:-0.570240px;}
.lsa7{letter-spacing:-0.527472px;}
.lsd7{letter-spacing:-0.519552px;}
.lsbc{letter-spacing:-0.508464px;}
.ls102{letter-spacing:-0.506160px;}
.lse7{letter-spacing:-0.495504px;}
.ls1e{letter-spacing:-0.484848px;}
.lsa1{letter-spacing:-0.484704px;}
.ls67{letter-spacing:-0.484128px;}
.ls11c{letter-spacing:-0.479952px;}
.lsdf{letter-spacing:-0.470448px;}
.lsc8{letter-spacing:-0.466416px;}
.lscb{letter-spacing:-0.460512px;}
.lsde{letter-spacing:-0.458208px;}
.lsef{letter-spacing:-0.452880px;}
.ls8d{letter-spacing:-0.448704px;}
.lsb8{letter-spacing:-0.447552px;}
.ls62{letter-spacing:-0.446688px;}
.ls92{letter-spacing:-0.442800px;}
.lsd6{letter-spacing:-0.436896px;}
.lsfb{letter-spacing:-0.430992px;}
.ls14{letter-spacing:-0.426240px;}
.ls85{letter-spacing:-0.425088px;}
.ls65{letter-spacing:-0.419184px;}
.ls2a{letter-spacing:-0.413280px;}
.ls7a{letter-spacing:-0.407376px;}
.lsba{letter-spacing:-0.399168px;}
.lsaa{letter-spacing:-0.395568px;}
.ls101{letter-spacing:-0.394272px;}
.ls93{letter-spacing:-0.389664px;}
.ls124{letter-spacing:-0.384912px;}
.ls89{letter-spacing:-0.383760px;}
.ls71{letter-spacing:-0.371952px;}
.ls30{letter-spacing:-0.366048px;}
.ls103{letter-spacing:-0.362304px;}
.ls41{letter-spacing:-0.361152px;}
.ls29{letter-spacing:-0.360144px;}
.lsac{letter-spacing:-0.354240px;}
.ls91{letter-spacing:-0.348336px;}
.ls80{letter-spacing:-0.342144px;}
.ls66{letter-spacing:-0.336528px;}
.ls63{letter-spacing:-0.332640px;}
.ls105{letter-spacing:-0.324720px;}
.ls31{letter-spacing:-0.318816px;}
.ls104{letter-spacing:-0.312912px;}
.ls49{letter-spacing:-0.307008px;}
.ls68{letter-spacing:-0.301104px;}
.ls28{letter-spacing:-0.295200px;}
.ls44{letter-spacing:-0.289296px;}
.lsf7{letter-spacing:-0.287712px;}
.ls34{letter-spacing:-0.283392px;}
.ls48{letter-spacing:-0.277488px;}
.ls64{letter-spacing:-0.271584px;}
.ls8f{letter-spacing:-0.265680px;}
.ls2b{letter-spacing:-0.259776px;}
.ls107{letter-spacing:-0.253872px;}
.ls75{letter-spacing:-0.247968px;}
.ls78{letter-spacing:-0.242064px;}
.ls76{letter-spacing:-0.236160px;}
.ls114{letter-spacing:-0.232848px;}
.lsf1{letter-spacing:-0.230256px;}
.ls86{letter-spacing:-0.224352px;}
.ls45{letter-spacing:-0.218448px;}
.ls95{letter-spacing:-0.212544px;}
.ls4a{letter-spacing:-0.206640px;}
.lse0{letter-spacing:-0.204336px;}
.lsab{letter-spacing:-0.200736px;}
.ls12c{letter-spacing:-0.199584px;}
.ls4b{letter-spacing:-0.194832px;}
.lsa2{letter-spacing:-0.190080px;}
.ls8b{letter-spacing:-0.188928px;}
.ls108{letter-spacing:-0.183024px;}
.ls3d{letter-spacing:-0.180576px;}
.lsfd{letter-spacing:-0.177120px;}
.ls3a{letter-spacing:-0.175824px;}
.ls125{letter-spacing:-0.171072px;}
.lse2{letter-spacing:-0.166320px;}
.lsaf{letter-spacing:-0.165312px;}
.ls128{letter-spacing:-0.161568px;}
.lsd0{letter-spacing:-0.159408px;}
.ls3c{letter-spacing:-0.156816px;}
.lsf9{letter-spacing:-0.152064px;}
.lsd2{letter-spacing:-0.147600px;}
.ls39{letter-spacing:-0.147312px;}
.ls3f{letter-spacing:-0.142560px;}
.ls113{letter-spacing:-0.137808px;}
.ls122{letter-spacing:-0.133056px;}
.ls11a{letter-spacing:-0.128304px;}
.lsa3{letter-spacing:-0.123552px;}
.lsa5{letter-spacing:-0.118800px;}
.lsfc{letter-spacing:-0.118080px;}
.ls81{letter-spacing:-0.114048px;}
.ls117{letter-spacing:-0.109296px;}
.ls88{letter-spacing:-0.106272px;}
.ls126{letter-spacing:-0.104544px;}
.lse9{letter-spacing:-0.099792px;}
.ls40{letter-spacing:-0.090288px;}
.lsce{letter-spacing:-0.088560px;}
.ls129{letter-spacing:-0.085536px;}
.lse8{letter-spacing:-0.071280px;}
.ls123{letter-spacing:-0.047520px;}
.lsbb{letter-spacing:-0.028512px;}
.ls116{letter-spacing:-0.019008px;}
.lsfa{letter-spacing:-0.014256px;}
.ls1a{letter-spacing:-0.007200px;}
.ls15{letter-spacing:0.000000px;}
.ls12b{letter-spacing:0.004752px;}
.ls7d{letter-spacing:0.008778px;}
.lsd4{letter-spacing:0.011808px;}
.lsed{letter-spacing:0.014256px;}
.ls4{letter-spacing:0.043200px;}
.ls27{letter-spacing:0.047232px;}
.ls12a{letter-spacing:0.057024px;}
.lsd3{letter-spacing:0.088560px;}
.ls11e{letter-spacing:0.095040px;}
.lseb{letter-spacing:0.114048px;}
.ls3{letter-spacing:0.129600px;}
.ls8c{letter-spacing:0.129888px;}
.lsa0{letter-spacing:0.152064px;}
.ls59{letter-spacing:0.154985px;}
.ls12d{letter-spacing:0.156816px;}
.ls1{letter-spacing:0.165600px;}
.ls12e{letter-spacing:0.166320px;}
.lsa8{letter-spacing:0.190080px;}
.ls119{letter-spacing:0.194832px;}
.lsbe{letter-spacing:0.218448px;}
.ls111{letter-spacing:0.228096px;}
.ls84{letter-spacing:0.312912px;}
.ls2{letter-spacing:0.323136px;}
.ls6a{letter-spacing:0.324720px;}
.lscf{letter-spacing:0.354240px;}
.lsc5{letter-spacing:0.360144px;}
.ls19{letter-spacing:0.370656px;}
.lsc2{letter-spacing:0.377856px;}
.lsee{letter-spacing:0.425952px;}
.lsc4{letter-spacing:0.430992px;}
.ls50{letter-spacing:0.472320px;}
.ls109{letter-spacing:0.495936px;}
.lsc1{letter-spacing:0.501840px;}
.ls1b{letter-spacing:0.522144px;}
.lsb3{letter-spacing:0.525456px;}
.lsc3{letter-spacing:0.531360px;}
.ls69{letter-spacing:0.543168px;}
.lsad{letter-spacing:0.549072px;}
.lsd1{letter-spacing:0.554976px;}
.ls121{letter-spacing:0.560736px;}
.ls35{letter-spacing:0.560880px;}
.ls7{letter-spacing:0.564768px;}
.ls110{letter-spacing:0.570240px;}
.ls77{letter-spacing:0.578592px;}
.lsec{letter-spacing:0.579744px;}
.ls94{letter-spacing:0.584496px;}
.ls53{letter-spacing:0.587000px;}
.ls11b{letter-spacing:0.589248px;}
.ls7f{letter-spacing:0.590400px;}
.ls118{letter-spacing:0.594000px;}
.ls47{letter-spacing:0.596304px;}
.lsb7{letter-spacing:0.596736px;}
.ls13{letter-spacing:0.602208px;}
.ls115{letter-spacing:0.603504px;}
.lsb{letter-spacing:0.608112px;}
.ls16{letter-spacing:0.608256px;}
.ls10c{letter-spacing:0.613008px;}
.ls37{letter-spacing:0.614016px;}
.ls11f{letter-spacing:0.617760px;}
.ls99{letter-spacing:0.618048px;}
.ls43{letter-spacing:0.619920px;}
.lsea{letter-spacing:0.622512px;}
.ls32{letter-spacing:0.625824px;}
.ls10b{letter-spacing:0.627264px;}
.ls12{letter-spacing:0.631728px;}
.ls38{letter-spacing:0.632016px;}
.lsa4{letter-spacing:0.636768px;}
.ls2f{letter-spacing:0.637632px;}
.ls100{letter-spacing:0.639360px;}
.ls112{letter-spacing:0.641520px;}
.ls4d{letter-spacing:0.643536px;}
.ls9d{letter-spacing:0.646272px;}
.ls60{letter-spacing:0.647319px;}
.ls33{letter-spacing:0.649440px;}
.ls9a{letter-spacing:0.651024px;}
.ls6{letter-spacing:0.655344px;}
.ls9f{letter-spacing:0.655776px;}
.lsd{letter-spacing:0.660528px;}
.ls1f{letter-spacing:0.660672px;}
.ls2e{letter-spacing:0.661248px;}
.ls3b{letter-spacing:0.665280px;}
.ls11{letter-spacing:0.667152px;}
.ls9b{letter-spacing:0.670032px;}
.lsdb{letter-spacing:0.671328px;}
.ls36{letter-spacing:0.673056px;}
.lsc{letter-spacing:0.674784px;}
.ls25{letter-spacing:0.678960px;}
.ls3e{letter-spacing:0.679536px;}
.lsf2{letter-spacing:0.681984px;}
.ls18{letter-spacing:0.684288px;}
.ls10{letter-spacing:0.684864px;}
.lsda{letter-spacing:0.689040px;}
.lsa{letter-spacing:0.690768px;}
.ls9e{letter-spacing:0.692640px;}
.lsb2{letter-spacing:0.693792px;}
.lse{letter-spacing:0.696672px;}
.lsdc{letter-spacing:0.697968px;}
.ls9c{letter-spacing:0.698544px;}
.lsf{letter-spacing:0.702576px;}
.ls97{letter-spacing:0.703296px;}
.ls4c{letter-spacing:0.707616px;}
.lsb1{letter-spacing:0.708048px;}
.ls9{letter-spacing:0.708480px;}
.lsb6{letter-spacing:0.708624px;}
.lse5{letter-spacing:0.709920px;}
.ls0{letter-spacing:0.712800px;}
.ls72{letter-spacing:0.713952px;}
.ls46{letter-spacing:0.714384px;}
.ls17{letter-spacing:0.717552px;}
.ls74{letter-spacing:0.719280px;}
.ls5{letter-spacing:0.720000px;}
.ls52{letter-spacing:0.720288px;}
.lse3{letter-spacing:0.722304px;}
.lse6{letter-spacing:0.724608px;}
.ls4f{letter-spacing:0.726192px;}
.lsa6{letter-spacing:0.729936px;}
.ls4e{letter-spacing:0.732096px;}
.lsdd{letter-spacing:0.735264px;}
.ls26{letter-spacing:0.738000px;}
.ls106{letter-spacing:0.738720px;}
.ls10f{letter-spacing:0.741312px;}
.ls2c{letter-spacing:0.743904px;}
.ls1d{letter-spacing:0.745920px;}
.ls82{letter-spacing:0.749808px;}
.ls73{letter-spacing:0.751248px;}
.ls2d{letter-spacing:0.755712px;}
.ls20{letter-spacing:0.756576px;}
.lsb9{letter-spacing:0.761904px;}
.ls22{letter-spacing:0.767232px;}
.ls42{letter-spacing:0.767520px;}
.ls1c{letter-spacing:0.772560px;}
.ls23{letter-spacing:0.777888px;}
.lsf6{letter-spacing:0.779328px;}
.ls21{letter-spacing:0.783216px;}
.lsc0{letter-spacing:0.785232px;}
.lsf0{letter-spacing:0.793872px;}
.ls24{letter-spacing:0.799200px;}
.ls8e{letter-spacing:0.814752px;}
.lsbf{letter-spacing:0.820656px;}
.ls83{letter-spacing:0.826560px;}
.ls10a{letter-spacing:0.832464px;}
.ls56{letter-spacing:0.837094px;}
.lsfe{letter-spacing:0.838368px;}
.ls87{letter-spacing:0.879696px;}
.lsca{letter-spacing:0.897408px;}
.ls5d{letter-spacing:0.924369px;}
.ls79{letter-spacing:0.944640px;}
.lsf4{letter-spacing:1.003680px;}
.lsb5{letter-spacing:1.056816px;}
.ls8{letter-spacing:1.081584px;}
.ls96{letter-spacing:1.127664px;}
.lsbd{letter-spacing:1.133568px;}
.lsd5{letter-spacing:1.239840px;}
.lsf8{letter-spacing:1.289376px;}
.lsf5{letter-spacing:1.363824px;}
.lsff{letter-spacing:1.369728px;}
.ls5f{letter-spacing:1.406100px;}
.lsc9{letter-spacing:1.523232px;}
.ls8a{letter-spacing:1.700352px;}
.ls51{letter-spacing:1.948320px;}
.ls5c{letter-spacing:1.978209px;}
.ls98{letter-spacing:2.003328px;}
.lsb0{letter-spacing:2.056608px;}
.ls90{letter-spacing:2.090016px;}
.ls57{letter-spacing:2.114270px;}
.ls5b{letter-spacing:2.135545px;}
.lsc6{letter-spacing:2.137248px;}
.lsf3{letter-spacing:2.149056px;}
.lsb4{letter-spacing:2.160864px;}
.ls5a{letter-spacing:2.177964px;}
.lsc7{letter-spacing:2.184480px;}
.ls55{letter-spacing:2.234652px;}
.ls54{letter-spacing:2.279583px;}
.lscc{letter-spacing:2.538720px;}
.ls58{letter-spacing:2.760446px;}
.ls5e{letter-spacing:3.843754px;}
.ls10d{letter-spacing:3.958416px;}
.ls7e{letter-spacing:6.842736px;}
.ls120{letter-spacing:6.947424px;}
.ls10e{letter-spacing:8.277984px;}
.ls61{letter-spacing:63.994786px;}
.lsd9{letter-spacing:242.998272px;}
.lse4{letter-spacing:247.341600px;}
.lse1{letter-spacing:286.198704px;}
.lsd8{letter-spacing:467.639568px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsba{word-spacing:-59.040000px;}
.ws1d8{word-spacing:-53.280000px;}
.ws27f{word-spacing:-47.520000px;}
.ws65{word-spacing:-20.828164px;}
.ws67{word-spacing:-18.621448px;}
.wsb5{word-spacing:-16.460352px;}
.ws66{word-spacing:-16.297229px;}
.ws69{word-spacing:-16.282679px;}
.ws68{word-spacing:-16.183765px;}
.wsb9{word-spacing:-15.574752px;}
.wsb8{word-spacing:-15.515712px;}
.ws209{word-spacing:-15.480288px;}
.ws207{word-spacing:-15.468480px;}
.ws3{word-spacing:-15.438960px;}
.wsb7{word-spacing:-14.889888px;}
.wsb6{word-spacing:-14.807232px;}
.ws64{word-spacing:-14.760000px;}
.ws206{word-spacing:-14.609376px;}
.wsb4{word-spacing:-14.376240px;}
.ws2{word-spacing:-13.842144px;}
.ws205{word-spacing:-13.032288px;}
.ws1{word-spacing:-12.597552px;}
.ws0{word-spacing:-12.592800px;}
.ws27e{word-spacing:-12.108096px;}
.ws113{word-spacing:-11.880000px;}
.ws4{word-spacing:-11.789712px;}
.ws303{word-spacing:-11.732688px;}
.ws1bf{word-spacing:-11.699424px;}
.ws18f{word-spacing:-11.447420px;}
.ws18e{word-spacing:-11.424571px;}
.ws1d9{word-spacing:-11.149920px;}
.ws5{word-spacing:-10.427616px;}
.ws208{word-spacing:-9.720000px;}
.ws280{word-spacing:-7.839360px;}
.ws225{word-spacing:-2.479680px;}
.wsa0{word-spacing:-2.379312px;}
.ws10f{word-spacing:-1.422864px;}
.ws24c{word-spacing:-1.304784px;}
.ws348{word-spacing:-1.268784px;}
.ws33e{word-spacing:-1.221264px;}
.ws1a4{word-spacing:-1.151280px;}
.ws353{word-spacing:-1.140480px;}
.ws27c{word-spacing:-1.127664px;}
.wsca{word-spacing:-1.121760px;}
.ws191{word-spacing:-1.118880px;}
.ws1f3{word-spacing:-1.113552px;}
.ws340{word-spacing:-1.107216px;}
.ws21{word-spacing:-1.102896px;}
.ws115{word-spacing:-1.086912px;}
.wsa{word-spacing:-1.083456px;}
.ws14b{word-spacing:-1.081584px;}
.ws122{word-spacing:-1.076256px;}
.ws218{word-spacing:-1.074528px;}
.ws2f6{word-spacing:-1.073952px;}
.ws169{word-spacing:-1.068624px;}
.ws14e{word-spacing:-1.059696px;}
.wsaa{word-spacing:-1.056816px;}
.ws128{word-spacing:-1.050192px;}
.ws9{word-spacing:-1.045440px;}
.ws1fb{word-spacing:-1.045008px;}
.ws1ef{word-spacing:-1.044000px;}
.ws28c{word-spacing:-1.040688px;}
.ws219{word-spacing:-1.039104px;}
.wsa4{word-spacing:-1.038960px;}
.ws119{word-spacing:-1.035936px;}
.ws20d{word-spacing:-1.033632px;}
.ws279{word-spacing:-1.033200px;}
.ws1c4{word-spacing:-1.031184px;}
.ws20f{word-spacing:-1.026432px;}
.ws29e{word-spacing:-1.021680px;}
.ws54{word-spacing:-1.021392px;}
.ws213{word-spacing:-1.018944px;}
.wsb{word-spacing:-1.016928px;}
.ws3c{word-spacing:-1.012176px;}
.ws287{word-spacing:-1.009584px;}
.ws210{word-spacing:-1.007424px;}
.wsf5{word-spacing:-1.003680px;}
.ws293{word-spacing:-1.002672px;}
.wsbb{word-spacing:-0.997920px;}
.ws16{word-spacing:-0.997776px;}
.ws2e8{word-spacing:-0.993168px;}
.ws217{word-spacing:-0.991872px;}
.ws308{word-spacing:-0.988416px;}
.wsaf{word-spacing:-0.985968px;}
.ws2dc{word-spacing:-0.983664px;}
.ws249{word-spacing:-0.980064px;}
.ws315{word-spacing:-0.978912px;}
.wsc4{word-spacing:-0.974160px;}
.ws36{word-spacing:-0.968256px;}
.ws2bc{word-spacing:-0.964656px;}
.ws93{word-spacing:-0.962352px;}
.ws107{word-spacing:-0.956448px;}
.ws1df{word-spacing:-0.955152px;}
.ws62{word-spacing:-0.950544px;}
.ws8{word-spacing:-0.940896px;}
.ws18b{word-spacing:-0.938736px;}
.wsd0{word-spacing:-0.921024px;}
.ws13e{word-spacing:-0.915120px;}
.wsef{word-spacing:-0.909216px;}
.ws38{word-spacing:-0.903312px;}
.ws15f{word-spacing:-0.897408px;}
.ws35d{word-spacing:-0.893376px;}
.ws166{word-spacing:-0.885600px;}
.ws224{word-spacing:-0.873792px;}
.ws1ac{word-spacing:-0.867888px;}
.ws94{word-spacing:-0.838368px;}
.wsf6{word-spacing:-0.785232px;}
.ws275{word-spacing:-0.767520px;}
.ws175{word-spacing:-0.655344px;}
.ws195{word-spacing:-0.649440px;}
.ws95{word-spacing:-0.619920px;}
.wscb{word-spacing:-0.608112px;}
.ws2d6{word-spacing:-0.560736px;}
.ws2c0{word-spacing:-0.527472px;}
.ws124{word-spacing:-0.522720px;}
.ws117{word-spacing:-0.484704px;}
.ws184{word-spacing:-0.460512px;}
.ws3d{word-spacing:-0.394416px;}
.ws23{word-spacing:-0.342432px;}
.ws212{word-spacing:-0.318384px;}
.ws14d{word-spacing:-0.304128px;}
.ws305{word-spacing:-0.289872px;}
.ws35c{word-spacing:-0.270864px;}
.ws1de{word-spacing:-0.261360px;}
.ws1e0{word-spacing:-0.242352px;}
.ws342{word-spacing:-0.228096px;}
.wsbd{word-spacing:-0.218592px;}
.ws14f{word-spacing:-0.190080px;}
.ws211{word-spacing:-0.185328px;}
.ws20e{word-spacing:-0.180576px;}
.ws238{word-spacing:-0.177120px;}
.ws321{word-spacing:-0.171072px;}
.ws1ce{word-spacing:-0.166320px;}
.ws1ca{word-spacing:-0.156816px;}
.ws118{word-spacing:-0.142560px;}
.ws333{word-spacing:-0.133056px;}
.ws1cd{word-spacing:-0.128304px;}
.ws265{word-spacing:-0.112176px;}
.ws335{word-spacing:-0.099792px;}
.ws24f{word-spacing:-0.064944px;}
.ws25c{word-spacing:-0.047232px;}
.wsc{word-spacing:-0.007200px;}
.ws7{word-spacing:0.000000px;}
.wsbc{word-spacing:0.009504px;}
.ws241{word-spacing:0.041328px;}
.ws14c{word-spacing:0.066528px;}
.ws2d{word-spacing:0.070848px;}
.ws9f{word-spacing:0.076752px;}
.ws6{word-spacing:0.106560px;}
.ws6a{word-spacing:0.114048px;}
.ws74{word-spacing:0.118080px;}
.ws1c5{word-spacing:0.137808px;}
.ws1c3{word-spacing:0.138528px;}
.ws9b{word-spacing:0.171216px;}
.wsd3{word-spacing:0.183024px;}
.ws86{word-spacing:0.188928px;}
.ws1b9{word-spacing:0.224352px;}
.ws168{word-spacing:0.277488px;}
.ws1a{word-spacing:0.282384px;}
.ws1f{word-spacing:0.287712px;}
.ws19{word-spacing:0.309024px;}
.ws282{word-spacing:0.312912px;}
.ws277{word-spacing:0.318816px;}
.ws22{word-spacing:0.324720px;}
.ws20a{word-spacing:0.325008px;}
.ws1f1{word-spacing:0.330336px;}
.ws18c{word-spacing:0.330624px;}
.ws121{word-spacing:0.335664px;}
.ws256{word-spacing:0.336528px;}
.ws110{word-spacing:0.348336px;}
.ws33{word-spacing:0.354240px;}
.ws61{word-spacing:0.360144px;}
.ws155{word-spacing:0.366048px;}
.ws2f{word-spacing:0.371952px;}
.ws78{word-spacing:0.377856px;}
.ws2dd{word-spacing:0.380160px;}
.wsff{word-spacing:0.383760px;}
.ws1a6{word-spacing:0.389664px;}
.ws2d1{word-spacing:0.394416px;}
.ws70{word-spacing:0.395568px;}
.ws2c4{word-spacing:0.399168px;}
.ws2a{word-spacing:0.401472px;}
.ws18{word-spacing:0.404928px;}
.wsab{word-spacing:0.407376px;}
.ws25b{word-spacing:0.413280px;}
.ws2e5{word-spacing:0.413424px;}
.ws28e{word-spacing:0.418176px;}
.ws6f{word-spacing:0.419184px;}
.ws194{word-spacing:0.425088px;}
.ws28f{word-spacing:0.427680px;}
.ws90{word-spacing:0.430992px;}
.ws31{word-spacing:0.436896px;}
.wse{word-spacing:0.437184px;}
.ws2b1{word-spacing:0.441936px;}
.ws101{word-spacing:0.442800px;}
.ws298{word-spacing:0.446688px;}
.ws16a{word-spacing:0.448704px;}
.ws2e2{word-spacing:0.451440px;}
.ws221{word-spacing:0.454608px;}
.ws2b3{word-spacing:0.456192px;}
.ws60{word-spacing:0.460512px;}
.ws330{word-spacing:0.460944px;}
.ws2e3{word-spacing:0.465696px;}
.ws2e4{word-spacing:0.470448px;}
.ws1f8{word-spacing:0.472320px;}
.ws27a{word-spacing:0.484128px;}
.ws1fa{word-spacing:0.501840px;}
.wsf{word-spacing:0.590400px;}
.ws10{word-spacing:0.676800px;}
.ws11{word-spacing:0.727200px;}
.ws319{word-spacing:0.864864px;}
.ws34b{word-spacing:0.936144px;}
.ws220{word-spacing:1.180800px;}
.ws350{word-spacing:1.207008px;}
.ws2b2{word-spacing:1.211760px;}
.ws34a{word-spacing:1.221264px;}
.ws358{word-spacing:1.226016px;}
.ws314{word-spacing:1.235520px;}
.ws318{word-spacing:1.240272px;}
.ws2bf{word-spacing:1.249776px;}
.ws344{word-spacing:1.254528px;}
.ws1d7{word-spacing:1.273536px;}
.ws183{word-spacing:1.322496px;}
.ws2a1{word-spacing:1.325808px;}
.ws73{word-spacing:1.334304px;}
.wsd1{word-spacing:1.340208px;}
.ws25a{word-spacing:1.346112px;}
.ws4e{word-spacing:1.352016px;}
.ws92{word-spacing:1.363824px;}
.ws26e{word-spacing:1.387440px;}
.ws268{word-spacing:1.411056px;}
.wscf{word-spacing:1.434672px;}
.wsc5{word-spacing:1.446480px;}
.ws1ff{word-spacing:1.458288px;}
.ws230{word-spacing:1.481904px;}
.ws1f0{word-spacing:1.491840px;}
.ws1f7{word-spacing:1.511424px;}
.ws1dd{word-spacing:1.513152px;}
.ws20b{word-spacing:1.550448px;}
.ws123{word-spacing:1.593072px;}
.ws216{word-spacing:1.641312px;}
.ws1f2{word-spacing:1.720944px;}
.ws96{word-spacing:1.729872px;}
.ws17{word-spacing:1.731600px;}
.ws1d{word-spacing:1.736928px;}
.ws23e{word-spacing:1.747584px;}
.wsa3{word-spacing:1.752912px;}
.ws21f{word-spacing:1.771200px;}
.ws17b{word-spacing:1.783008px;}
.wsbe{word-spacing:1.788912px;}
.ws9a{word-spacing:1.794816px;}
.ws23a{word-spacing:1.800720px;}
.ws2f0{word-spacing:1.805760px;}
.ws1c1{word-spacing:1.806192px;}
.ws7a{word-spacing:1.806624px;}
.wse7{word-spacing:1.812528px;}
.ws247{word-spacing:1.818432px;}
.ws20c{word-spacing:1.822176px;}
.ws27d{word-spacing:1.824336px;}
.ws33a{word-spacing:1.824768px;}
.ws352{word-spacing:1.829520px;}
.ws15{word-spacing:1.830240px;}
.ws14{word-spacing:1.836144px;}
.wsc3{word-spacing:1.842048px;}
.ws29{word-spacing:1.847952px;}
.ws28d{word-spacing:1.853280px;}
.ws13a{word-spacing:1.853856px;}
.ws307{word-spacing:1.858032px;}
.ws196{word-spacing:1.859760px;}
.ws1a0{word-spacing:1.865664px;}
.ws336{word-spacing:1.867536px;}
.ws5a{word-spacing:1.871568px;}
.ws341{word-spacing:1.877040px;}
.wse2{word-spacing:1.877472px;}
.ws81{word-spacing:1.883376px;}
.ws2ea{word-spacing:1.886544px;}
.ws104{word-spacing:1.889280px;}
.ws189{word-spacing:1.895184px;}
.ws296{word-spacing:1.896048px;}
.wsd9{word-spacing:1.901088px;}
.ws2ad{word-spacing:1.905552px;}
.ws5d{word-spacing:1.906992px;}
.ws248{word-spacing:1.912896px;}
.wsda{word-spacing:1.918800px;}
.ws5e{word-spacing:1.936512px;}
.ws109{word-spacing:1.948320px;}
.ws22a{word-spacing:1.977840px;}
.ws21c{word-spacing:1.983744px;}
.ws223{word-spacing:1.989648px;}
.ws2eb{word-spacing:2.290464px;}
.ws351{word-spacing:2.352240px;}
.ws2ac{word-spacing:2.627856px;}
.ws2d0{word-spacing:2.646864px;}
.ws346{word-spacing:2.651616px;}
.ws339{word-spacing:2.661120px;}
.ws2d8{word-spacing:2.665872px;}
.ws2b9{word-spacing:2.670624px;}
.ws2ef{word-spacing:2.675376px;}
.ws2bb{word-spacing:2.699136px;}
.ws22f{word-spacing:2.715840px;}
.ws2ec{word-spacing:2.722896px;}
.ws285{word-spacing:2.727648px;}
.ws5c{word-spacing:2.733552px;}
.ws246{word-spacing:2.745360px;}
.ws10a{word-spacing:2.763072px;}
.ws24e{word-spacing:2.786688px;}
.ws24{word-spacing:2.798496px;}
.ws4a{word-spacing:2.828016px;}
.wsac{word-spacing:2.833920px;}
.ws271{word-spacing:2.845728px;}
.ws84{word-spacing:2.875248px;}
.ws23f{word-spacing:2.898432px;}
.ws1f9{word-spacing:2.910672px;}
.ws283{word-spacing:2.928384px;}
.ws190{word-spacing:2.930400px;}
.ws215{word-spacing:2.946096px;}
.ws76{word-spacing:2.957904px;}
.ws1dc{word-spacing:2.999664px;}
.ws1f4{word-spacing:3.058272px;}
.ws20{word-spacing:3.143520px;}
.ws45{word-spacing:3.188160px;}
.ws130{word-spacing:3.199968px;}
.ws97{word-spacing:3.205872px;}
.ws1b1{word-spacing:3.217680px;}
.ws2db{word-spacing:3.231360px;}
.ws4c{word-spacing:3.241296px;}
.ws327{word-spacing:3.245616px;}
.ws80{word-spacing:3.247200px;}
.ws5b{word-spacing:3.253104px;}
.ws2cf{word-spacing:3.255120px;}
.wsf8{word-spacing:3.259008px;}
.ws297{word-spacing:3.259872px;}
.ws42{word-spacing:3.264624px;}
.ws56{word-spacing:3.264912px;}
.ws3b{word-spacing:3.269376px;}
.ws71{word-spacing:3.270816px;}
.ws1c0{word-spacing:3.271392px;}
.ws1a5{word-spacing:3.276720px;}
.ws3e{word-spacing:3.278880px;}
.wse9{word-spacing:3.282624px;}
.ws2c6{word-spacing:3.283632px;}
.ws72{word-spacing:3.288528px;}
.ws2ca{word-spacing:3.293136px;}
.ws29a{word-spacing:3.297888px;}
.ws2c{word-spacing:3.300336px;}
.ws232{word-spacing:3.306240px;}
.wsc2{word-spacing:3.312144px;}
.ws108{word-spacing:3.318048px;}
.ws289{word-spacing:3.321648px;}
.wse4{word-spacing:3.335760px;}
.ws2b4{word-spacing:3.335904px;}
.wse1{word-spacing:3.341664px;}
.ws2b5{word-spacing:3.350160px;}
.ws164{word-spacing:3.365280px;}
.ws28a{word-spacing:3.373920px;}
.ws1a3{word-spacing:3.400704px;}
.ws174{word-spacing:3.430224px;}
.ws2be{word-spacing:3.716064px;}
.ws2da{word-spacing:3.792096px;}
.ws32f{word-spacing:3.939408px;}
.ws2a7{word-spacing:3.963168px;}
.ws299{word-spacing:4.034448px;}
.ws193{word-spacing:4.044240px;}
.ws288{word-spacing:4.067712px;}
.ws359{word-spacing:4.072464px;}
.ws29f{word-spacing:4.081968px;}
.ws43{word-spacing:4.086720px;}
.ws3a{word-spacing:4.091472px;}
.ws2e7{word-spacing:4.096224px;}
.ws3f{word-spacing:4.100976px;}
.ws2b6{word-spacing:4.124736px;}
.ws35a{word-spacing:4.134240px;}
.ws201{word-spacing:4.185936px;}
.wsa6{word-spacing:4.203648px;}
.ws15d{word-spacing:4.239072px;}
.ws269{word-spacing:4.250880px;}
.ws55{word-spacing:4.262688px;}
.ws25d{word-spacing:4.268592px;}
.ws259{word-spacing:4.280400px;}
.wsf9{word-spacing:4.304016px;}
.wsc7{word-spacing:4.321728px;}
.ws21e{word-spacing:4.386672px;}
.ws14a{word-spacing:4.390272px;}
.wsee{word-spacing:4.404384px;}
.ws240{word-spacing:4.448880px;}
.ws1c{word-spacing:4.614048px;}
.ws9e{word-spacing:4.616928px;}
.ws1bb{word-spacing:4.628736px;}
.ws19a{word-spacing:4.634640px;}
.ws13c{word-spacing:4.640544px;}
.ws1c2{word-spacing:4.646016px;}
.wsf2{word-spacing:4.646448px;}
.ws8b{word-spacing:4.652352px;}
.ws1db{word-spacing:4.656672px;}
.ws21b{word-spacing:4.658256px;}
.ws7c{word-spacing:4.664160px;}
.ws4d{word-spacing:4.670064px;}
.ws1da{word-spacing:4.672656px;}
.ws2e{word-spacing:4.675968px;}
.ws120{word-spacing:4.677984px;}
.wsf3{word-spacing:4.681872px;}
.ws6b{word-spacing:4.687776px;}
.ws49{word-spacing:4.693680px;}
.ws1a9{word-spacing:4.699584px;}
.ws2cc{word-spacing:4.704480px;}
.ws139{word-spacing:4.705488px;}
.ws13f{word-spacing:4.711392px;}
.ws89{word-spacing:4.717296px;}
.ws2c9{word-spacing:4.718736px;}
.ws19f{word-spacing:4.723200px;}
.ws35b{word-spacing:4.723488px;}
.ws337{word-spacing:4.728240px;}
.ws6c{word-spacing:4.729104px;}
.ws2b{word-spacing:4.735008px;}
.ws349{word-spacing:4.737744px;}
.wsdf{word-spacing:4.740912px;}
.ws131{word-spacing:4.746816px;}
.ws33b{word-spacing:4.752000px;}
.ws1b2{word-spacing:4.752720px;}
.ws2fb{word-spacing:4.766256px;}
.ws334{word-spacing:4.771008px;}
.ws29d{word-spacing:4.775760px;}
.ws26a{word-spacing:4.782240px;}
.ws39{word-spacing:4.785264px;}
.ws1af{word-spacing:4.788144px;}
.ws2cd{word-spacing:4.794768px;}
.ws2e6{word-spacing:4.809024px;}
.ws35{word-spacing:4.811760px;}
.ws197{word-spacing:4.823568px;}
.ws26b{word-spacing:4.876704px;}
.ws2c8{word-spacing:5.189184px;}
.ws1ae{word-spacing:5.284080px;}
.ws357{word-spacing:5.531328px;}
.ws2ce{word-spacing:5.545584px;}
.ws338{word-spacing:5.555088px;}
.ws2bd{word-spacing:5.564592px;}
.ws2c7{word-spacing:5.597856px;}
.wsa9{word-spacing:5.614704px;}
.ws27b{word-spacing:5.632416px;}
.ws15e{word-spacing:5.638320px;}
.wsbf{word-spacing:5.644224px;}
.ws171{word-spacing:5.650128px;}
.wsad{word-spacing:5.673744px;}
.ws105{word-spacing:5.762304px;}
.ws141{word-spacing:5.791824px;}
.ws1b3{word-spacing:5.809536px;}
.ws273{word-spacing:5.815440px;}
.ws17e{word-spacing:6.081120px;}
.ws148{word-spacing:6.089904px;}
.ws11f{word-spacing:6.105888px;}
.ws147{word-spacing:6.111216px;}
.wse6{word-spacing:6.116544px;}
.ws83{word-spacing:6.122448px;}
.ws149{word-spacing:6.127200px;}
.wsa5{word-spacing:6.128352px;}
.ws2f2{word-spacing:6.130080px;}
.ws23b{word-spacing:6.134256px;}
.wse0{word-spacing:6.140160px;}
.ws2c5{word-spacing:6.144336px;}
.wscc{word-spacing:6.146064px;}
.ws347{word-spacing:6.149088px;}
.ws15c{word-spacing:6.151968px;}
.ws5f{word-spacing:6.157872px;}
.ws355{word-spacing:6.158592px;}
.ws30e{word-spacing:6.163344px;}
.ws91{word-spacing:6.163776px;}
.ws40{word-spacing:6.168096px;}
.ws44{word-spacing:6.169680px;}
.wsc1{word-spacing:6.175584px;}
.ws34c{word-spacing:6.177600px;}
.wsea{word-spacing:6.181488px;}
.ws2d9{word-spacing:6.187104px;}
.wsae{word-spacing:6.187392px;}
.ws28{word-spacing:6.193296px;}
.ws30c{word-spacing:6.196608px;}
.ws1f6{word-spacing:6.199200px;}
.ws2f8{word-spacing:6.201360px;}
.ws16b{word-spacing:6.205104px;}
.ws354{word-spacing:6.206112px;}
.ws173{word-spacing:6.211008px;}
.ws2a3{word-spacing:6.215616px;}
.ws6e{word-spacing:6.216912px;}
.ws1aa{word-spacing:6.222816px;}
.ws47{word-spacing:6.228720px;}
.ws2a2{word-spacing:6.239376px;}
.ws243{word-spacing:6.240528px;}
.ws258{word-spacing:6.246432px;}
.ws300{word-spacing:6.263136px;}
.ws180{word-spacing:6.270048px;}
.ws172{word-spacing:6.317280px;}
.ws31e{word-spacing:6.614784px;}
.ws31f{word-spacing:6.857136px;}
.wseb{word-spacing:6.954912px;}
.ws226{word-spacing:6.966720px;}
.ws304{word-spacing:6.975936px;}
.ws2f1{word-spacing:6.980688px;}
.ws2ee{word-spacing:6.990192px;}
.ws331{word-spacing:6.994944px;}
.ws328{word-spacing:7.004448px;}
.ws28b{word-spacing:7.009200px;}
.ws31d{word-spacing:7.013952px;}
.ws2f7{word-spacing:7.018704px;}
.ws41{word-spacing:7.023456px;}
.ws356{word-spacing:7.032960px;}
.ws58{word-spacing:7.055280px;}
.ws4b{word-spacing:7.067088px;}
.ws163{word-spacing:7.072992px;}
.ws17c{word-spacing:7.096608px;}
.ws264{word-spacing:7.102512px;}
.ws34{word-spacing:7.132032px;}
.ws30{word-spacing:7.167456px;}
.ws17a{word-spacing:7.208784px;}
.ws133{word-spacing:7.214688px;}
.ws1f5{word-spacing:7.232400px;}
.ws21a{word-spacing:7.238304px;}
.ws270{word-spacing:7.261920px;}
.wsce{word-spacing:7.273728px;}
.ws187{word-spacing:7.368192px;}
.ws22b{word-spacing:7.427232px;}
.ws1e{word-spacing:7.485840px;}
.ws276{word-spacing:7.503984px;}
.ws332{word-spacing:7.508160px;}
.ws177{word-spacing:7.509888px;}
.wsde{word-spacing:7.521696px;}
.ws63{word-spacing:7.527600px;}
.ws9d{word-spacing:7.533504px;}
.wsa2{word-spacing:7.544448px;}
.ws156{word-spacing:7.545312px;}
.ws263{word-spacing:7.551216px;}
.ws157{word-spacing:7.557120px;}
.ws12{word-spacing:7.568928px;}
.ws59{word-spacing:7.574832px;}
.ws51{word-spacing:7.580736px;}
.ws162{word-spacing:7.586640px;}
.ws159{word-spacing:7.592544px;}
.ws142{word-spacing:7.598448px;}
.ws2a0{word-spacing:7.603200px;}
.ws6d{word-spacing:7.604352px;}
.ws302{word-spacing:7.607952px;}
.ws13{word-spacing:7.610256px;}
.ws2b0{word-spacing:7.612704px;}
.wsd4{word-spacing:7.616160px;}
.ws2f5{word-spacing:7.617456px;}
.ws1a1{word-spacing:7.627968px;}
.ws1b6{word-spacing:7.633872px;}
.ws310{word-spacing:7.636464px;}
.ws23c{word-spacing:7.639776px;}
.ws1bc{word-spacing:7.645680px;}
.ws2af{word-spacing:7.645968px;}
.ws311{word-spacing:7.650720px;}
.ws52{word-spacing:7.669296px;}
.ws2ed{word-spacing:7.679232px;}
.ws284{word-spacing:7.681104px;}
.ws234{word-spacing:7.793280px;}
.ws29b{word-spacing:8.040384px;}
.ws34e{word-spacing:8.078400px;}
.ws2ae{word-spacing:8.116416px;}
.ws325{word-spacing:8.211456px;}
.ws326{word-spacing:8.268480px;}
.ws324{word-spacing:8.354016px;}
.ws313{word-spacing:8.373024px;}
.ws22d{word-spacing:8.383680px;}
.ws29c{word-spacing:8.387280px;}
.ws301{word-spacing:8.392032px;}
.ws2b8{word-spacing:8.406288px;}
.ws323{word-spacing:8.415792px;}
.ws2f3{word-spacing:8.420544px;}
.ws16f{word-spacing:8.430912px;}
.ws2ab{word-spacing:8.449056px;}
.wse3{word-spacing:8.454528px;}
.ws257{word-spacing:8.466336px;}
.ws158{word-spacing:8.489952px;}
.wsfa{word-spacing:8.507664px;}
.ws53{word-spacing:8.543088px;}
.ws1a7{word-spacing:8.548992px;}
.ws50{word-spacing:8.554896px;}
.ws179{word-spacing:8.560800px;}
.ws132{word-spacing:8.572608px;}
.wsdc{word-spacing:8.584416px;}
.ws13b{word-spacing:8.619840px;}
.ws13d{word-spacing:8.637552px;}
.ws134{word-spacing:8.661168px;}
.wsb2{word-spacing:8.672976px;}
.wsa1{word-spacing:8.684640px;}
.ws254{word-spacing:8.690688px;}
.ws188{word-spacing:8.726112px;}
.ws178{word-spacing:8.732016px;}
.wsb0{word-spacing:8.796960px;}
.ws1b{word-spacing:8.908416px;}
.ws2f4{word-spacing:8.933760px;}
.ws1fc{word-spacing:9.021312px;}
.ws136{word-spacing:9.027216px;}
.ws2d3{word-spacing:9.028800px;}
.ws146{word-spacing:9.033120px;}
.wsdb{word-spacing:9.039024px;}
.ws2a9{word-spacing:9.043056px;}
.ws48{word-spacing:9.044928px;}
.ws26c{word-spacing:9.050832px;}
.ws316{word-spacing:9.052560px;}
.ws57{word-spacing:9.056736px;}
.ws34d{word-spacing:9.066816px;}
.ws182{word-spacing:9.068544px;}
.ws32c{word-spacing:9.071568px;}
.wsf1{word-spacing:9.074448px;}
.ws343{word-spacing:9.076320px;}
.ws1b4{word-spacing:9.080352px;}
.ws24b{word-spacing:9.086256px;}
.ws32{word-spacing:9.092160px;}
.ws185{word-spacing:9.098064px;}
.ws312{word-spacing:9.104832px;}
.wsfd{word-spacing:9.115776px;}
.ws22e{word-spacing:9.198432px;}
.ws1fd{word-spacing:9.210240px;}
.ws2a5{word-spacing:9.513504px;}
.ws2a6{word-spacing:9.627552px;}
.ws22c{word-spacing:9.729792px;}
.ws345{word-spacing:9.846144px;}
.ws2d4{word-spacing:9.855648px;}
.ws317{word-spacing:9.893664px;}
.ws30d{word-spacing:9.907920px;}
.ws30f{word-spacing:9.912672px;}
.ws2d2{word-spacing:9.917424px;}
.ws227{word-spacing:9.918720px;}
.ws2a4{word-spacing:9.922176px;}
.ws135{word-spacing:9.942336px;}
.ws10e{word-spacing:9.954144px;}
.ws274{word-spacing:9.960048px;}
.ws255{word-spacing:10.024992px;}
.ws46{word-spacing:10.107648px;}
.ws18d{word-spacing:10.113552px;}
.ws25e{word-spacing:10.131264px;}
.ws192{word-spacing:10.137168px;}
.wsfc{word-spacing:10.154880px;}
.wsfe{word-spacing:10.184400px;}
.ws278{word-spacing:10.426464px;}
.ws228{word-spacing:10.438272px;}
.ws114{word-spacing:10.442880px;}
.ws7d{word-spacing:10.450080px;}
.ws2c2{word-spacing:10.454400px;}
.ws7e{word-spacing:10.455984px;}
.ws239{word-spacing:10.461888px;}
.ws16c{word-spacing:10.467792px;}
.ws88{word-spacing:10.473696px;}
.ws137{word-spacing:10.479600px;}
.wse5{word-spacing:10.485504px;}
.ws229{word-spacing:10.491408px;}
.ws2c3{word-spacing:10.492416px;}
.ws8d{word-spacing:10.497312px;}
.ws290{word-spacing:10.501920px;}
.ws236{word-spacing:10.503216px;}
.ws7f{word-spacing:10.509120px;}
.ws18a{word-spacing:10.515024px;}
.ws291{word-spacing:10.516176px;}
.ws267{word-spacing:10.520928px;}
.ws161{word-spacing:10.526832px;}
.ws106{word-spacing:10.538640px;}
.ws2fe{word-spacing:10.544688px;}
.ws1ba{word-spacing:10.550448px;}
.ws102{word-spacing:10.556352px;}
.ws32e{word-spacing:10.939104px;}
.ws2ff{word-spacing:11.015136px;}
.ws2fc{word-spacing:11.072160px;}
.ws32b{word-spacing:11.286000px;}
.ws33f{word-spacing:11.295504px;}
.ws2fd{word-spacing:11.324016px;}
.ws32d{word-spacing:11.338272px;}
.ws2c1{word-spacing:11.347776px;}
.ws98{word-spacing:11.459664px;}
.ws272{word-spacing:11.571840px;}
.ws26f{word-spacing:11.583648px;}
.ws281{word-spacing:11.819808px;}
.wsb3{word-spacing:11.837520px;}
.ws202{word-spacing:11.861136px;}
.ws237{word-spacing:11.867040px;}
.ws167{word-spacing:11.872944px;}
.wsdd{word-spacing:11.884752px;}
.wsed{word-spacing:11.890656px;}
.wse8{word-spacing:11.896560px;}
.ws15b{word-spacing:11.902464px;}
.ws2de{word-spacing:11.903760px;}
.wsec{word-spacing:11.908368px;}
.ws16e{word-spacing:11.914272px;}
.wsc9{word-spacing:11.920176px;}
.ws2e0{word-spacing:11.922768px;}
.wsd5{word-spacing:11.926080px;}
.wsd6{word-spacing:11.931984px;}
.ws294{word-spacing:11.932272px;}
.ws34f{word-spacing:11.937024px;}
.ws1b7{word-spacing:11.937888px;}
.ws2e1{word-spacing:11.941776px;}
.ws79{word-spacing:11.943792px;}
.ws37{word-spacing:11.961504px;}
.ws33c{word-spacing:11.965536px;}
.ws2df{word-spacing:11.970288px;}
.ws306{word-spacing:11.975040px;}
.ws2a8{word-spacing:11.984544px;}
.wsa8{word-spacing:11.996928px;}
.ws244{word-spacing:12.014640px;}
.ws2b7{word-spacing:12.706848px;}
.ws1a8{word-spacing:12.723120px;}
.wsa7{word-spacing:12.811680px;}
.ws253{word-spacing:12.841200px;}
.ws85{word-spacing:12.912048px;}
.ws15a{word-spacing:12.947472px;}
.ws143{word-spacing:13.024224px;}
.ws214{word-spacing:13.313520px;}
.ws10b{word-spacing:13.319424px;}
.ws31c{word-spacing:13.324608px;}
.ws181{word-spacing:13.331232px;}
.ws10d{word-spacing:13.337136px;}
.ws19d{word-spacing:13.348944px;}
.ws2e9{word-spacing:13.362624px;}
.ws186{word-spacing:13.372560px;}
.ws1a2{word-spacing:13.378464px;}
.ws4f{word-spacing:13.384368px;}
.ws112{word-spacing:13.390272px;}
.wscd{word-spacing:13.396176px;}
.ws1ab{word-spacing:13.402080px;}
.ws16d{word-spacing:13.413888px;}
.ws8a{word-spacing:13.419792px;}
.ws251{word-spacing:13.431600px;}
.ws199{word-spacing:13.490640px;}
.ws140{word-spacing:13.502448px;}
.ws242{word-spacing:13.549680px;}
.ws2d5{word-spacing:14.146704px;}
.ws2d7{word-spacing:14.156208px;}
.ws2ba{word-spacing:14.170464px;}
.ws31b{word-spacing:14.194224px;}
.ws24a{word-spacing:14.370336px;}
.wsc8{word-spacing:14.458896px;}
.ws222{word-spacing:14.464800px;}
.wsc6{word-spacing:14.470704px;}
.ws165{word-spacing:14.647824px;}
.ws27{word-spacing:14.712768px;}
.ws25{word-spacing:14.724576px;}
.ws19b{word-spacing:14.760000px;}
.ws7b{word-spacing:14.765904px;}
.ws233{word-spacing:14.771808px;}
.ws8f{word-spacing:14.777712px;}
.ws26{word-spacing:14.783616px;}
.wsc0{word-spacing:14.789520px;}
.ws82{word-spacing:14.807232px;}
.wsfb{word-spacing:14.819040px;}
.ws231{word-spacing:15.775488px;}
.ws1ad{word-spacing:15.787296px;}
.ws111{word-spacing:15.852240px;}
.ws25f{word-spacing:16.253712px;}
.ws8c{word-spacing:16.259616px;}
.ws87{word-spacing:16.265520px;}
.ws10c{word-spacing:16.271424px;}
.ws138{word-spacing:16.277328px;}
.ws261{word-spacing:16.283232px;}
.ws160{word-spacing:16.306848px;}
.ws292{word-spacing:17.059680px;}
.ws75{word-spacing:17.139312px;}
.ws286{word-spacing:17.334144px;}
.ws260{word-spacing:17.363664px;}
.ws21d{word-spacing:17.664768px;}
.ws2fa{word-spacing:17.672688px;}
.wsb1{word-spacing:17.682480px;}
.ws170{word-spacing:17.712000px;}
.ws262{word-spacing:17.717904px;}
.ws1b5{word-spacing:17.723808px;}
.ws2f9{word-spacing:18.518544px;}
.ws19c{word-spacing:18.520848px;}
.wsd2{word-spacing:18.585792px;}
.wsf0{word-spacing:18.627120px;}
.ws17f{word-spacing:18.827856px;}
.ws1fe{word-spacing:19.064016px;}
.ws250{word-spacing:19.081728px;}
.ws9c{word-spacing:19.087632px;}
.ws17d{word-spacing:19.099440px;}
.ws266{word-spacing:19.164384px;}
.ws295{word-spacing:19.164816px;}
.ws100{word-spacing:19.176192px;}
.ws2aa{word-spacing:19.939392px;}
.ws26d{word-spacing:20.067696px;}
.wsf4{word-spacing:20.085408px;}
.ws252{word-spacing:20.091312px;}
.ws1b8{word-spacing:20.185776px;}
.ws176{word-spacing:20.534112px;}
.wsf7{word-spacing:20.545920px;}
.ws200{word-spacing:20.569536px;}
.ws245{word-spacing:20.575440px;}
.ws198{word-spacing:20.593152px;}
.ws309{word-spacing:21.973248px;}
.ws30b{word-spacing:22.006512px;}
.ws30a{word-spacing:22.044528px;}
.wsd8{word-spacing:23.427072px;}
.ws77{word-spacing:23.450688px;}
.ws203{word-spacing:23.474304px;}
.ws144{word-spacing:23.497920px;}
.ws8e{word-spacing:23.527440px;}
.ws24d{word-spacing:24.359904px;}
.ws19e{word-spacing:24.395328px;}
.ws32a{word-spacing:24.890976px;}
.ws1b0{word-spacing:24.891264px;}
.wsd7{word-spacing:24.897168px;}
.ws329{word-spacing:24.924240px;}
.ws1bd{word-spacing:24.944400px;}
.ws1be{word-spacing:24.950304px;}
.ws2cb{word-spacing:26.326080px;}
.ws31a{word-spacing:29.243808px;}
.ws322{word-spacing:30.678912px;}
.ws145{word-spacing:32.129568px;}
.ws103{word-spacing:35.040240px;}
.ws204{word-spacing:37.821024px;}
.ws235{word-spacing:39.243888px;}
.wsd{word-spacing:42.112224px;}
.ws320{word-spacing:55.935792px;}
.ws99{word-spacing:63.651024px;}
.ws33d{word-spacing:68.081904px;}
.ws23d{word-spacing:72.093168px;}
.ws116{word-spacing:117.065520px;}
.ws11b{word-spacing:134.320032px;}
.ws11d{word-spacing:134.362800px;}
.ws11e{word-spacing:135.118368px;}
.ws11a{word-spacing:135.123120px;}
.ws11c{word-spacing:135.180144px;}
.ws1e2{word-spacing:194.755968px;}
.ws1e3{word-spacing:194.760720px;}
.ws1cf{word-spacing:194.765472px;}
.ws1cb{word-spacing:200.524896px;}
.ws1d4{word-spacing:200.534400px;}
.ws1d3{word-spacing:200.543904px;}
.ws1d2{word-spacing:200.548656px;}
.ws1d5{word-spacing:200.553408px;}
.ws1d1{word-spacing:200.558160px;}
.ws1cc{word-spacing:200.562912px;}
.ws1d0{word-spacing:201.974256px;}
.ws1e6{word-spacing:206.284320px;}
.ws1e5{word-spacing:207.719424px;}
.ws1eb{word-spacing:207.724176px;}
.ws1ed{word-spacing:210.603888px;}
.ws1c6{word-spacing:213.488352px;}
.ws1c8{word-spacing:213.507360px;}
.ws1c7{word-spacing:213.516864px;}
.ws1d6{word-spacing:213.521616px;}
.ws1e8{word-spacing:222.122736px;}
.ws1e9{word-spacing:222.127488px;}
.ws1e4{word-spacing:226.447056px;}
.ws1ee{word-spacing:227.877408px;}
.ws1ec{word-spacing:243.715824px;}
.ws1e1{word-spacing:248.044896px;}
.ws1ea{word-spacing:255.244176px;}
.ws126{word-spacing:274.679856px;}
.ws150{word-spacing:304.208784px;}
.ws153{word-spacing:304.213536px;}
.ws152{word-spacing:304.218288px;}
.ws151{word-spacing:304.223040px;}
.ws154{word-spacing:304.227792px;}
.ws125{word-spacing:310.681008px;}
.ws127{word-spacing:342.928080px;}
.ws1e7{word-spacing:466.708176px;}
.ws12c{word-spacing:553.341888px;}
.ws129{word-spacing:553.389408px;}
.ws12f{word-spacing:553.394160px;}
.ws1c9{word-spacing:592.218000px;}
.ws12b{word-spacing:628.238160px;}
.ws12a{word-spacing:639.771264px;}
.ws12e{word-spacing:693.003168px;}
.ws12d{word-spacing:760.681152px;}
._7b{margin-left:-392.733792px;}
._7e{margin-left:-389.849328px;}
._7d{margin-left:-379.770336px;}
._7c{margin-left:-378.330480px;}
._7a{margin-left:-372.718368px;}
._7f{margin-left:-348.093504px;}
._44{margin-left:-342.240336px;}
._40{margin-left:-310.999392px;}
._41{margin-left:-309.003552px;}
._69{margin-left:-306.033552px;}
._5d{margin-left:-304.883568px;}
._42{margin-left:-275.151600px;}
._43{margin-left:-273.349296px;}
._ab{margin-left:-243.121824px;}
._53{margin-left:-220.316976px;}
._76{margin-left:-214.543296px;}
._52{margin-left:-207.358272px;}
._87{margin-left:-201.579840px;}
._51{margin-left:-195.112368px;}
._56{margin-left:-152.638992px;}
._55{margin-left:-139.680288px;}
._30{margin-left:-134.714448px;}
._54{margin-left:-125.875584px;}
._1f{margin-left:-118.244016px;}
._4c{margin-left:-99.359568px;}
._4f{margin-left:-87.835968px;}
._10{margin-left:-83.804115px;}
._4e{margin-left:-74.877264px;}
._4b{margin-left:-73.442160px;}
._c8{margin-left:-70.532064px;}
._b{margin-left:-64.936512px;}
._4d{margin-left:-62.213184px;}
._4a{margin-left:-61.181856px;}
._b1{margin-left:-52.941024px;}
._ae{margin-left:-49.122864px;}
._8{margin-left:-42.815520px;}
._59{margin-left:-33.662016px;}
._6e{margin-left:-26.092800px;}
._58{margin-left:-23.838624px;}
._a1{margin-left:-22.519584px;}
._c{margin-left:-20.073600px;}
._6d{margin-left:-18.383904px;}
._a3{margin-left:-15.824160px;}
._d{margin-left:-14.405760px;}
._ad{margin-left:-13.353120px;}
._1c{margin-left:-12.352608px;}
._1d{margin-left:-9.867456px;}
._e{margin-left:-8.560800px;}
._11{margin-left:-7.056222px;}
._f{margin-left:-5.667840px;}
._12{margin-left:-4.637177px;}
._9{margin-left:-2.756304px;}
._3{margin-left:-1.425600px;}
._0{width:1.054944px;}
._1{width:2.077920px;}
._2{width:3.335328px;}
._1b{width:4.517712px;}
._1a{width:6.384960px;}
._14{width:7.616160px;}
._16{width:9.056736px;}
._15{width:10.497312px;}
._18{width:12.147264px;}
._17{width:13.378464px;}
._a6{width:14.833440px;}
._b0{width:16.204320px;}
._9b{width:18.063936px;}
._19{width:19.134864px;}
._91{width:22.125744px;}
._a8{width:24.095952px;}
._92{width:25.328160px;}
._1e{width:30.263040px;}
._3e{width:35.154720px;}
._9e{width:36.988438px;}
._6f{width:38.109456px;}
._a5{width:40.198608px;}
._78{width:41.319150px;}
._79{width:42.655680px;}
._9d{width:44.028000px;}
._b2{width:46.855008px;}
._6b{width:48.037968px;}
._a7{width:52.245936px;}
._60{width:54.462672px;}
._8a{width:55.702944px;}
._cf{width:58.373568px;}
._5f{width:60.478704px;}
._d6{width:63.543744px;}
._ce{width:65.064384px;}
._d5{width:66.356928px;}
._d7{width:67.858560px;}
._d0{width:69.094080px;}
._d3{width:70.633728px;}
._d4{width:72.030816px;}
._65{width:73.437408px;}
._cd{width:75.024576px;}
._d2{width:76.393152px;}
._d1{width:77.890032px;}
._63{width:78.935616px;}
._5e{width:85.236624px;}
._49{width:87.717168px;}
._cb{width:89.480160px;}
._62{width:91.552320px;}
._66{width:94.346208px;}
._6c{width:96.247008px;}
._ca{width:98.770320px;}
._cc{width:101.060784px;}
._61{width:103.446432px;}
._57{width:105.570432px;}
._7{width:113.173632px;}
._6a{width:131.763456px;}
._24{width:136.244592px;}
._22{width:144.717696px;}
._64{width:151.574688px;}
._68{width:153.147456px;}
._74{width:177.644016px;}
._75{width:179.083872px;}
._73{width:192.004560px;}
._82{width:200.524896px;}
._8e{width:202.278384px;}
._85{width:203.409360px;}
._81{width:207.914256px;}
._a2{width:211.064832px;}
._84{width:213.645168px;}
._83{width:214.928208px;}
._67{width:222.003936px;}
._aa{width:223.782336px;}
._86{width:226.603872px;}
._97{width:227.958192px;}
._21{width:231.256080px;}
._72{width:233.646336px;}
._8f{width:245.241216px;}
._ac{width:248.410944px;}
._77{width:256.627008px;}
._9a{width:258.751152px;}
._3a{width:261.977760px;}
._33{width:264.933504px;}
._38{width:269.956368px;}
._88{width:278.695296px;}
._2f{width:281.494224px;}
._34{width:298.610928px;}
._23{width:300.473712px;}
._37{width:304.807536px;}
._2e{width:307.155024px;}
._5c{width:308.328768px;}
._25{width:318.132144px;}
._5b{width:319.709808px;}
._9c{width:321.235344px;}
._5a{width:328.695840px;}
._3c{width:330.249744px;}
._94{width:332.150688px;}
._20{width:338.903136px;}
._3b{width:341.911152px;}
._93{width:343.868976px;}
._35{width:350.697600px;}
._26{width:355.078944px;}
._31{width:363.290400px;}
._a0{width:365.107392px;}
._39{width:372.010320px;}
._8c{width:374.723712px;}
._8b{width:385.358832px;}
._27{width:386.651232px;}
._95{width:391.925952px;}
._2d{width:393.247008px;}
._36{width:397.181664px;}
._2a{width:400.251456px;}
._a9{width:402.770304px;}
._8d{width:403.891488px;}
._29{width:415.429488px;}
._a4{width:424.125504px;}
._2b{width:433.914624px;}
._99{width:438.457536px;}
._70{width:447.372576px;}
._80{width:450.038160px;}
._98{width:451.468512px;}
._89{width:462.987360px;}
._32{width:465.890976px;}
._28{width:468.927360px;}
._96{width:484.152768px;}
._2c{width:486.025056px;}
._3d{width:487.217952px;}
._3f{width:515.325888px;}
._af{width:523.665648px;}
._90{width:531.829584px;}
._48{width:541.414368px;}
._47{width:554.373072px;}
._46{width:567.331776px;}
._45{width:579.111984px;}
._50{width:588.221568px;}
._c7{width:640.787904px;}
._c5{width:671.861520px;}
._b5{width:689.130288px;}
._b9{width:710.500032px;}
._c0{width:712.177488px;}
._c2{width:722.037888px;}
._71{width:786.593808px;}
._c4{width:824.267808px;}
._b7{width:835.282800px;}
._d8{width:837.255168px;}
._bc{width:859.836384px;}
._b6{width:911.975328px;}
._a{width:938.897568px;}
._9f{width:954.138528px;}
._4{width:990.692208px;}
._ba{width:991.837440px;}
._b8{width:1058.935824px;}
._5{width:1061.777376px;}
._bf{width:1078.585344px;}
._bd{width:1094.585184px;}
._b4{width:1116.116496px;}
._bb{width:1118.012544px;}
._c3{width:1129.122720px;}
._be{width:1158.252480px;}
._c1{width:1163.337120px;}
._6{width:1179.332352px;}
._c6{width:1361.367648px;}
._c9{width:1403.997264px;}
._b3{width:1415.491776px;}
._13{width:1599.108624px;}
.fc3{color:transparent;}
.fc2{color:rgb(32,27,24);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs15{font-size:11.520000px;}
.fse{font-size:28.800000px;}
.fs14{font-size:34.623648px;}
.fs13{font-size:38.657664px;}
.fs4{font-size:38.880000px;}
.fs12{font-size:41.760000px;}
.fsd{font-size:46.149408px;}
.fs11{font-size:46.507104px;}
.fs1{font-size:47.520000px;}
.fsf{font-size:50.551201px;}
.fs10{font-size:50.652303px;}
.fs0{font-size:53.280000px;}
.fs9{font-size:58.214984px;}
.fsb{font-size:58.570787px;}
.fs7{font-size:58.623125px;}
.fs5{font-size:59.040000px;}
.fs8{font-size:66.983624px;}
.fs2{font-size:72.000000px;}
.fsa{font-size:75.343925px;}
.fs6{font-size:79.524125px;}
.fs3{font-size:95.040000px;}
.fsc{font-size:200.954755px;}
.y0{bottom:0.000000px;}
.y257{bottom:9.276184px;}
.y24a{bottom:30.104579px;}
.y248{bottom:33.087306px;}
.y246{bottom:38.749311px;}
.y255{bottom:38.749334px;}
.y252{bottom:41.504511px;}
.y244{bottom:42.692384px;}
.y24e{bottom:46.054288px;}
.y24c{bottom:46.433419px;}
.y251{bottom:47.368669px;}
.y254{bottom:57.706901px;}
.y287{bottom:60.120000px;}
.y4{bottom:65.160114px;}
.y250{bottom:65.820759px;}
.y3a4{bottom:80.279034px;}
.y3{bottom:80.639754px;}
.yad{bottom:81.694080px;}
.y1bb{bottom:82.062654px;}
.y8f{bottom:82.488600px;}
.y22c{bottom:83.146680px;}
.y209{bottom:83.161440px;}
.y3dd{bottom:83.509170px;}
.y36f{bottom:84.119910px;}
.y346{bottom:84.178950px;}
.y2b5{bottom:84.268950px;}
.y110{bottom:84.963852px;}
.y317{bottom:85.313778px;}
.y149{bottom:86.389206px;}
.y2c5{bottom:86.438670px;}
.y2f6{bottom:87.832662px;}
.y1dd{bottom:88.895058px;}
.y467{bottom:89.284110px;}
.y178{bottom:91.428378px;}
.y260{bottom:94.206531px;}
.y22e{bottom:94.686831px;}
.y3a3{bottom:96.839754px;}
.yac{bottom:98.254800px;}
.y1ba{bottom:98.263230px;}
.y8e{bottom:99.049320px;}
.y22b{bottom:99.707400px;}
.y18a{bottom:99.717594px;}
.y208{bottom:99.722160px;}
.y3dc{bottom:100.068414px;}
.y285{bottom:100.080150px;}
.y36e{bottom:100.326390px;}
.y345{bottom:100.385430px;}
.y2b4{bottom:101.183910px;}
.y54{bottom:101.523282px;}
.y316{bottom:101.874498px;}
.y10f{bottom:101.883240px;}
.y35{bottom:102.600870px;}
.y466{bottom:102.603966px;}
.y148{bottom:102.949926px;}
.y2c4{bottom:103.722630px;}
.y2f5{bottom:104.033238px;}
.y4f4{bottom:104.400330px;}
.y41a{bottom:105.127128px;}
.y1dc{bottom:105.455778px;}
.y177{bottom:107.987622px;}
.y230{bottom:111.798129px;}
.y3a2{bottom:113.759142px;}
.yab{bottom:114.815520px;}
.y1b9{bottom:114.823950px;}
.y465{bottom:115.563858px;}
.y25f{bottom:115.821360px;}
.y22a{bottom:116.268120px;}
.y189{bottom:116.278314px;}
.y34{bottom:116.640654px;}
.y36d{bottom:116.887110px;}
.y344{bottom:116.946150px;}
.y4f3{bottom:118.080150px;}
.y53{bottom:118.082526px;}
.y2b3{bottom:118.098870px;}
.y315{bottom:118.435218px;}
.y10e{bottom:118.443960px;}
.y419{bottom:118.446984px;}
.y147{bottom:119.510646px;}
.y2f4{bottom:120.592482px;}
.y2c3{bottom:121.006590px;}
.y1db{bottom:121.656354px;}
.y8d{bottom:123.167160px;}
.y207{bottom:123.840000px;}
.y176{bottom:124.188198px;}
.y3db{bottom:125.268162px;}
.y284{bottom:126.360150px;}
.y232{bottom:128.881055px;}
.y464{bottom:128.883714px;}
.y33{bottom:130.320474px;}
.y3a1{bottom:130.678530px;}
.yaa{bottom:131.376240px;}
.y1b8{bottom:131.384670px;}
.y418{bottom:131.766840px;}
.y229{bottom:132.828840px;}
.y36c{bottom:133.447830px;}
.y343{bottom:133.506870px;}
.y188{bottom:133.557846px;}
.y2b2{bottom:134.659590px;}
.y314{bottom:134.995938px;}
.y10d{bottom:135.363348px;}
.y2f3{bottom:137.151726px;}
.y25d{bottom:137.433017px;}
.y1da{bottom:138.215598px;}
.y2c2{bottom:138.290550px;}
.y4f2{bottom:139.320150px;}
.y8c{bottom:139.727880px;}
.y206{bottom:140.046480px;}
.y175{bottom:140.748918px;}
.y52{bottom:142.201842px;}
.y463{bottom:142.203570px;}
.y146{bottom:143.629962px;}
.y32{bottom:144.000294px;}
.y4f1{bottom:144.360150px;}
.y417{bottom:144.726732px;}
.y234{bottom:145.974480px;}
.y3a0{bottom:147.237774px;}
.ya9{bottom:147.936960px;}
.y1b7{bottom:147.945390px;}
.y228{bottom:149.035320px;}
.y36b{bottom:150.008550px;}
.y342{bottom:150.067590px;}
.y187{bottom:150.477234px;}
.y313{bottom:151.556658px;}
.y2b1{bottom:151.574550px;}
.y10c{bottom:152.282736px;}
.y283{bottom:152.640150px;}
.y2f2{bottom:153.712446px;}
.y462{bottom:155.163462px;}
.y3da{bottom:155.508450px;}
.y2c1{bottom:155.574510px;}
.y8b{bottom:156.288600px;}
.y205{bottom:156.607200px;}
.y174{bottom:157.309638px;}
.y31{bottom:158.040078px;}
.y416{bottom:158.046588px;}
.y51{bottom:158.402418px;}
.y25b{bottom:159.013047px;}
.y145{bottom:159.830538px;}
.y1d9{bottom:162.336390px;}
.y236{bottom:163.088929px;}
.ya8{bottom:164.143440px;}
.y39f{bottom:164.157162px;}
.y1b6{bottom:164.504634px;}
.y227{bottom:165.596040px;}
.y36a{bottom:166.569270px;}
.y341{bottom:166.628310px;}
.y186{bottom:167.396622px;}
.y4f0{bottom:167.400150px;}
.y312{bottom:168.117378px;}
.y461{bottom:168.483318px;}
.y10b{bottom:168.841980px;}
.y2f1{bottom:170.273166px;}
.y415{bottom:171.366444px;}
.y3d9{bottom:172.067694px;}
.y8a{bottom:172.495080px;}
.y2c0{bottom:172.858470px;}
.y204{bottom:173.167920px;}
.y173{bottom:173.870358px;}
.y50{bottom:174.961662px;}
.y2b0{bottom:176.046630px;}
.y144{bottom:176.391258px;}
.y282{bottom:178.560150px;}
.y1d8{bottom:178.897110px;}
.y30{bottom:179.280330px;}
.y238{bottom:180.171877px;}
.y259{bottom:180.624704px;}
.y1b5{bottom:181.063878px;}
.y39e{bottom:181.076550px;}
.y460{bottom:181.803174px;}
.y226{bottom:182.156760px;}
.y369{bottom:183.129990px;}
.y185{bottom:184.316010px;}
.y311{bottom:184.317954px;}
.y414{bottom:184.326336px;}
.y10a{bottom:185.761368px;}
.y2f0{bottom:186.832410px;}
.ya7{bottom:188.261280px;}
.y89{bottom:189.055800px;}
.y203{bottom:189.728640px;}
.y2bf{bottom:190.142430px;}
.y340{bottom:190.391910px;}
.y172{bottom:190.431078px;}
.y4f{bottom:191.520906px;}
.y4ef{bottom:192.240150px;}
.y2af{bottom:192.607350px;}
.y143{bottom:192.951978px;}
.y2f{bottom:192.960150px;}
.y45f{bottom:194.763066px;}
.y1d7{bottom:195.816498px;}
.y23a{bottom:197.254675px;}
.y1b4{bottom:197.264454px;}
.y3d8{bottom:197.267442px;}
.y39d{bottom:197.637270px;}
.y413{bottom:197.646192px;}
.y225{bottom:198.717480px;}
.y368{bottom:199.336470px;}
.y310{bottom:200.878674px;}
.y184{bottom:201.235398px;}
.y109{bottom:202.680756px;}
.y2ef{bottom:203.032986px;}
.ya6{bottom:204.822000px;}
.y281{bottom:204.840150px;}
.y88{bottom:205.616520px;}
.y202{bottom:206.289360px;}
.y33f{bottom:206.952630px;}
.y171{bottom:206.991798px;}
.y2e{bottom:207.000150px;}
.y2be{bottom:207.426390px;}
.y4e{bottom:208.079460px;}
.y45e{bottom:208.082922px;}
.y4ee{bottom:208.089114px;}
.y142{bottom:209.512698px;}
.y2ae{bottom:209.522310px;}
.y412{bottom:210.966048px;}
.y1d6{bottom:212.735886px;}
.y23c{bottom:214.369251px;}
.y367{bottom:215.897190px;}
.y30f{bottom:217.439394px;}
.y183{bottom:218.154786px;}
.y108{bottom:219.240000px;}
.y2ee{bottom:219.593706px;}
.ya5{bottom:221.382720px;}
.y1b3{bottom:221.383770px;}
.y4aa{bottom:221.400654px;}
.y45d{bottom:221.402778px;}
.y4ed{bottom:221.408970px;}
.y39c{bottom:222.116730px;}
.y224{bottom:222.835320px;}
.y170{bottom:223.192374px;}
.y33e{bottom:223.513350px;}
.y411{bottom:223.925940px;}
.y4d{bottom:224.638704px;}
.y141{bottom:226.073418px;}
.y2ad{bottom:226.437270px;}
.y3d7{bottom:227.507730px;}
.y1d5{bottom:229.655274px;}
.y201{bottom:230.052960px;}
.y280{bottom:231.120150px;}
.y87{bottom:231.180840px;}
.y23e{bottom:231.462699px;}
.y2bd{bottom:231.898470px;}
.y2d{bottom:232.207920px;}
.y30e{bottom:234.000114px;}
.y4a9{bottom:234.360546px;}
.y45c{bottom:234.362670px;}
.y4ec{bottom:234.368862px;}
.y182{bottom:235.074174px;}
.y2ed{bottom:236.154426px;}
.y107{bottom:236.159388px;}
.y410{bottom:237.245796px;}
.ya4{bottom:237.943440px;}
.y1b2{bottom:237.944490px;}
.y39b{bottom:238.677450px;}
.y223{bottom:239.041800px;}
.y16f{bottom:239.753094px;}
.y366{bottom:240.015030px;}
.y33d{bottom:240.074070px;}
.y4c{bottom:241.197948px;}
.y140{bottom:242.634138px;}
.y2ac{bottom:242.997990px;}
.y3d6{bottom:244.068450px;}
.y200{bottom:246.613680px;}
.y1d4{bottom:246.934806px;}
.y4a8{bottom:247.680402px;}
.y45b{bottom:247.682526px;}
.y4eb{bottom:247.688718px;}
.y240{bottom:248.545475px;}
.y2bc{bottom:248.813430px;}
.y40f{bottom:250.565652px;}
.y181{bottom:251.993562px;}
.y2ec{bottom:252.715146px;}
.ya3{bottom:254.149920px;}
.y1b1{bottom:254.505210px;}
.y39a{bottom:255.596838px;}
.y222{bottom:255.602520px;}
.y2c{bottom:255.968568px;}
.y16e{bottom:256.313814px;}
.y86{bottom:256.376160px;}
.y365{bottom:256.575750px;}
.y33c{bottom:256.634790px;}
.y27f{bottom:257.040150px;}
.y4b{bottom:257.398524px;}
.y13f{bottom:258.834714px;}
.y30d{bottom:259.199862px;}
.y106{bottom:260.278704px;}
.y3d5{bottom:260.629170px;}
.y4a7{bottom:261.000258px;}
.y45a{bottom:261.002382px;}
.y4ea{bottom:261.008574px;}
.y1ff{bottom:263.174400px;}
.y40e{bottom:263.525544px;}
.y1d3{bottom:263.854194px;}
.y242{bottom:265.659923px;}
.y2bb{bottom:265.728390px;}
.y2ab{bottom:267.470070px;}
.y180{bottom:268.912950px;}
.y2eb{bottom:269.275866px;}
.ya2{bottom:270.710640px;}
.y1b0{bottom:271.065930px;}
.y221{bottom:272.163240px;}
.y399{bottom:272.516226px;}
.y16d{bottom:272.874534px;}
.y2b{bottom:272.887956px;}
.y364{bottom:273.136470px;}
.y33b{bottom:273.195510px;}
.y4a{bottom:273.957768px;}
.y459{bottom:273.962274px;}
.y4e9{bottom:273.968466px;}
.y4a6{bottom:273.968676px;}
.y13e{bottom:275.395434px;}
.y3d4{bottom:276.829746px;}
.y40d{bottom:276.845400px;}
.y105{bottom:277.199568px;}
.y1fe{bottom:279.735120px;}
.y1d2{bottom:280.773582px;}
.y2ba{bottom:282.289110px;}
.y27e{bottom:283.320150px;}
.y2aa{bottom:284.030790px;}
.y17f{bottom:285.832338px;}
.y2ea{bottom:285.836586px;}
.ya1{bottom:287.271360px;}
.y458{bottom:287.282130px;}
.y4e8{bottom:287.288322px;}
.y4a5{bottom:287.288532px;}
.y220{bottom:288.723960px;}
.y398{bottom:289.076946px;}
.y363{bottom:289.342950px;}
.y33a{bottom:289.401990px;}
.y16c{bottom:289.435254px;}
.y30c{bottom:289.441842px;}
.y2a{bottom:289.448676px;}
.y40c{bottom:290.165256px;}
.y49{bottom:290.517012px;}
.y85{bottom:290.944080px;}
.y3d3{bottom:293.390466px;}
.y104{bottom:294.120432px;}
.y1af{bottom:294.826578px;}
.y1fd{bottom:296.295840px;}
.y2b9{bottom:299.204070px;}
.y13d{bottom:299.514750px;}
.y2a9{bottom:300.591510px;}
.y457{bottom:300.601986px;}
.y4e7{bottom:300.608178px;}
.y4a4{bottom:300.608388px;}
.y17e{bottom:302.751726px;}
.y40b{bottom:303.125148px;}
.y1d1{bottom:305.253042px;}
.y21f{bottom:305.284680px;}
.y362{bottom:305.903670px;}
.y339{bottom:305.962710px;}
.y16b{bottom:305.995974px;}
.y397{bottom:305.996334px;}
.y30b{bottom:306.001086px;}
.y29{bottom:306.368064px;}
.y48{bottom:307.076256px;}
.y84{bottom:307.504800px;}
.y2e9{bottom:309.597234px;}
.y27d{bottom:309.600150px;}
.y3d2{bottom:309.951186px;}
.y103{bottom:310.681152px;}
.y1ae{bottom:311.387298px;}
.ya0{bottom:311.389200px;}
.y1fc{bottom:312.856560px;}
.y456{bottom:313.561878px;}
.y4e6{bottom:313.568070px;}
.y4a3{bottom:313.568280px;}
.y13c{bottom:316.075470px;}
.y2b8{bottom:316.119030px;}
.y40a{bottom:316.445004px;}
.y2a8{bottom:316.797990px;}
.y17d{bottom:319.671114px;}
.y1d0{bottom:321.813762px;}
.y21e{bottom:321.845400px;}
.y16a{bottom:322.196550px;}
.y361{bottom:322.464390px;}
.y338{bottom:322.523430px;}
.y30a{bottom:322.560330px;}
.y396{bottom:322.915722px;}
.y28{bottom:323.287452px;}
.y47{bottom:323.635500px;}
.y83{bottom:324.065520px;}
.y2e8{bottom:326.156478px;}
.y3d1{bottom:326.511906px;}
.y455{bottom:326.881734px;}
.y4e5{bottom:326.887926px;}
.y4a2{bottom:326.888136px;}
.y102{bottom:327.600540px;}
.y1ad{bottom:327.948018px;}
.y9f{bottom:327.949920px;}
.y1fb{bottom:329.063040px;}
.y409{bottom:329.764860px;}
.y13b{bottom:332.636190px;}
.y2b7{bottom:332.679750px;}
.y2a7{bottom:333.358710px;}
.y27c{bottom:335.880150px;}
.y17c{bottom:336.950646px;}
.y21d{bottom:338.051880px;}
.y1cf{bottom:338.374482px;}
.y169{bottom:338.757270px;}
.y360{bottom:339.025110px;}
.y337{bottom:339.084150px;}
.y309{bottom:339.119574px;}
.y395{bottom:339.476442px;}
.y27{bottom:339.846696px;}
.y46{bottom:340.194744px;}
.y454{bottom:340.201590px;}
.y4e4{bottom:340.207782px;}
.y4a1{bottom:340.207992px;}
.y82{bottom:340.980480px;}
.y2e7{bottom:342.717198px;}
.y408{bottom:342.724752px;}
.y3d0{bottom:343.072626px;}
.y9e{bottom:344.156400px;}
.y1fa{bottom:345.623760px;}
.y13a{bottom:348.836766px;}
.y2b6{bottom:349.594710px;}
.y2a6{bottom:349.919430px;}
.y1ac{bottom:352.067334px;}
.y101{bottom:352.080000px;}
.y453{bottom:353.161482px;}
.y4e3{bottom:353.167674px;}
.y4a0{bottom:353.167884px;}
.y17b{bottom:353.870034px;}
.y21c{bottom:354.612600px;}
.y1ce{bottom:354.935202px;}
.y308{bottom:355.317480px;}
.y168{bottom:355.317990px;}
.y35f{bottom:355.585830px;}
.y336{bottom:355.644870px;}
.y407{bottom:356.044608px;}
.y394{bottom:356.395830px;}
.y26{bottom:356.766084px;}
.y81{bottom:357.541200px;}
.y2e6{bottom:359.277918px;}
.y3cf{bottom:359.633346px;}
.y9d{bottom:360.717120px;}
.y27b{bottom:361.800150px;}
.y1f9{bottom:362.184480px;}
.y45{bottom:363.955392px;}
.y139{bottom:365.397486px;}
.y2a5{bottom:366.480150px;}
.y452{bottom:366.481338px;}
.y4e2{bottom:366.487530px;}
.y49f{bottom:366.487740px;}
.y1ab{bottom:368.267910px;}
.y100{bottom:368.640720px;}
.y406{bottom:369.364464px;}
.y17a{bottom:370.789422px;}
.y21b{bottom:371.173320px;}
.y1cd{bottom:371.495922px;}
.y307{bottom:371.878200px;}
.y167{bottom:371.878710px;}
.y35e{bottom:372.146550px;}
.y335{bottom:372.205590px;}
.y393{bottom:373.315218px;}
.y25{bottom:373.685472px;}
.y80{bottom:374.101920px;}
.y3ce{bottom:375.833922px;}
.y2e5{bottom:375.838638px;}
.y9c{bottom:377.277840px;}
.y1f8{bottom:378.745200px;}
.y451{bottom:379.801194px;}
.y4e1{bottom:379.807386px;}
.y49e{bottom:379.807596px;}
.y44{bottom:380.516112px;}
.y138{bottom:381.958206px;}
.y405{bottom:382.324356px;}
.y2a4{bottom:383.046120px;}
.y1aa{bottom:384.828630px;}
.yff{bottom:384.841296px;}
.y179{bottom:387.708810px;}
.y21a{bottom:387.734040px;}
.y1cc{bottom:388.055166px;}
.y27a{bottom:388.080150px;}
.y35d{bottom:388.353030px;}
.y334{bottom:388.412070px;}
.y306{bottom:388.438920px;}
.y166{bottom:388.439430px;}
.y392{bottom:389.874462px;}
.y24{bottom:390.244716px;}
.y7f{bottom:391.016880px;}
.y2e4{bottom:392.037738px;}
.y3cd{bottom:392.393166px;}
.y450{bottom:392.761086px;}
.y4e0{bottom:392.767278px;}
.y49d{bottom:392.767488px;}
.y9b{bottom:393.838560px;}
.y404{bottom:395.644212px;}
.y43{bottom:397.076832px;}
.y137{bottom:398.518926px;}
.y2a3{bottom:399.602880px;}
.y1a9{bottom:401.389350px;}
.yfe{bottom:401.400540px;}
.y1f7{bottom:402.863040px;}
.y1cb{bottom:404.255742px;}
.y219{bottom:404.294760px;}
.y35c{bottom:404.913750px;}
.y333{bottom:404.972790px;}
.y305{bottom:404.999640px;}
.y165{bottom:405.000150px;}
.y44f{bottom:406.080942px;}
.y4df{bottom:406.087134px;}
.y49c{bottom:406.087344px;}
.y391{bottom:406.793850px;}
.y23{bottom:407.164104px;}
.y7e{bottom:407.577600px;}
.y2e3{bottom:408.598458px;}
.y3cc{bottom:408.952410px;}
.y403{bottom:408.964068px;}
.y9a{bottom:410.399280px;}
.y42{bottom:413.637552px;}
.y279{bottom:414.360150px;}
.y136{bottom:415.078170px;}
.y2a2{bottom:415.800000px;}
.y1a8{bottom:417.950070px;}
.y1f6{bottom:419.054760px;}
.y44e{bottom:419.400798px;}
.y4de{bottom:419.406990px;}
.y49b{bottom:419.407200px;}
.y1ca{bottom:420.816462px;}
.y218{bottom:420.855480px;}
.y35b{bottom:421.474470px;}
.y304{bottom:421.558884px;}
.y402{bottom:421.923960px;}
.y390{bottom:423.713238px;}
.y22{bottom:424.083492px;}
.y7d{bottom:424.138320px;}
.y2e2{bottom:425.159178px;}
.yfd{bottom:425.519856px;}
.y99{bottom:426.960000px;}
.y164{bottom:428.400150px;}
.y332{bottom:429.090630px;}
.y41{bottom:430.198272px;}
.y135{bottom:431.637414px;}
.y44d{bottom:432.360690px;}
.y4dd{bottom:432.366882px;}
.y49a{bottom:432.367092px;}
.y1a7{bottom:434.510790px;}
.y3cb{bottom:434.512302px;}
.y401{bottom:435.243816px;}
.y1f5{bottom:435.615480px;}
.y2a1{bottom:436.677270px;}
.y217{bottom:437.047200px;}
.y1c9{bottom:437.377182px;}
.y35a{bottom:438.035190px;}
.y303{bottom:438.118128px;}
.y38f{bottom:440.273958px;}
.y278{bottom:440.280150px;}
.y21{bottom:440.642736px;}
.y7c{bottom:440.699040px;}
.y2c6{bottom:441.285750px;}
.y2e1{bottom:441.718422px;}
.yfc{bottom:442.080576px;}
.y98{bottom:443.166630px;}
.y331{bottom:445.651350px;}
.y44c{bottom:445.680546px;}
.y4dc{bottom:445.686738px;}
.y499{bottom:445.686948px;}
.y40{bottom:446.398848px;}
.y134{bottom:447.837990px;}
.y400{bottom:448.563672px;}
.y1a6{bottom:451.071510px;}
.y1f4{bottom:452.176200px;}
.y216{bottom:453.607920px;}
.y1c8{bottom:453.937902px;}
.y302{bottom:454.318704px;}
.y163{bottom:454.320150px;}
.y359{bottom:454.595910px;}
.y7b{bottom:457.614000px;}
.y2e0{bottom:458.279142px;}
.yfb{bottom:458.639820px;}
.y44b{bottom:459.000402px;}
.y4db{bottom:459.006594px;}
.y498{bottom:459.006804px;}
.y97{bottom:459.723390px;}
.y3ff{bottom:461.523564px;}
.y330{bottom:462.212070px;}
.y3f{bottom:462.959568px;}
.y3ca{bottom:464.392446px;}
.y133{bottom:464.398710px;}
.y38e{bottom:464.753418px;}
.y20{bottom:465.122196px;}
.y277{bottom:466.560000px;}
.y1a5{bottom:467.272086px;}
.y1f3{bottom:468.736920px;}
.y215{bottom:470.168640px;}
.y1c7{bottom:470.498622px;}
.y301{bottom:470.877948px;}
.y358{bottom:471.156630px;}
.y44a{bottom:471.960294px;}
.y4da{bottom:471.966486px;}
.y497{bottom:471.966696px;}
.y7a{bottom:474.174720px;}
.y2df{bottom:474.839862px;}
.yfa{bottom:474.840396px;}
.y3fe{bottom:474.843420px;}
.y96{bottom:476.280150px;}
.y32f{bottom:478.418550px;}
.y3e{bottom:479.520288px;}
.y162{bottom:480.240150px;}
.y3c9{bottom:480.951690px;}
.y132{bottom:480.959430px;}
.y38d{bottom:481.314138px;}
.y1f{bottom:482.041584px;}
.y1a4{bottom:483.832806px;}
.y449{bottom:485.283960px;}
.y4d9{bottom:485.286342px;}
.y496{bottom:485.286552px;}
.y1f2{bottom:485.297640px;}
.y1c6{bottom:487.059342px;}
.y357{bottom:487.363110px;}
.y3fd{bottom:488.163276px;}
.y79{bottom:490.735440px;}
.y2de{bottom:491.038962px;}
.yf9{bottom:491.399640px;}
.y276{bottom:492.840150px;}
.y32e{bottom:494.979270px;}
.y300{bottom:494.998740px;}
.y214{bottom:495.732960px;}
.y3d{bottom:496.081008px;}
.y95{bottom:497.200320px;}
.y3c8{bottom:497.510934px;}
.y131{bottom:497.520150px;}
.y38c{bottom:497.874858px;}
.y1e{bottom:498.602304px;}
.y448{bottom:498.603816px;}
.y4d8{bottom:498.606198px;}
.y495{bottom:498.606408px;}
.y3fc{bottom:501.123168px;}
.y1f1{bottom:501.858360px;}
.y1c5{bottom:503.259918px;}
.y356{bottom:503.923830px;}
.y161{bottom:505.800000px;}
.y78{bottom:507.296160px;}
.y2dd{bottom:507.599682px;}
.yf8{bottom:507.958884px;}
.y1a3{bottom:509.032554px;}
.y32d{bottom:511.539990px;}
.y2ff{bottom:511.559460px;}
.y447{bottom:511.563708px;}
.y4d7{bottom:511.566090px;}
.y494{bottom:511.566300px;}
.y3c{bottom:512.641728px;}
.y3c7{bottom:514.070178px;}
.y38b{bottom:514.435578px;}
.y3fb{bottom:514.443024px;}
.y1d{bottom:515.521692px;}
.y1f0{bottom:518.050080px;}
.y275{bottom:518.760150px;}
.y1c4{bottom:519.820638px;}
.y130{bottom:521.647308px;}
.y2dc{bottom:524.160402px;}
.y77{bottom:524.211120px;}
.y446{bottom:524.883564px;}
.y4d6{bottom:524.885946px;}
.y493{bottom:524.886156px;}
.y213{bottom:525.607200px;}
.y3fa{bottom:527.762880px;}
.yd8{bottom:527.992844px;}
.y32c{bottom:528.100710px;}
.y2fe{bottom:528.120180px;}
.y3b{bottom:529.202448px;}
.y355{bottom:529.488150px;}
.y3c6{bottom:530.629422px;}
.y38a{bottom:530.636154px;}
.y160{bottom:531.720000px;}
.yf7{bottom:532.079676px;}
.y1c{bottom:532.441080px;}
.y1ef{bottom:534.610800px;}
.y1c3{bottom:536.381358px;}
.yb7{bottom:537.189150px;}
.y12f{bottom:537.847884px;}
.y445{bottom:538.203420px;}
.y4d5{bottom:538.205802px;}
.y492{bottom:538.206012px;}
.y2db{bottom:540.721122px;}
.y3f9{bottom:540.722772px;}
.y76{bottom:540.771840px;}
.y212{bottom:542.167920px;}
.y1a2{bottom:543.953238px;}
.y2fd{bottom:544.320756px;}
.y32b{bottom:544.661430px;}
.y274{bottom:545.040000px;}
.y3a{bottom:545.403024px;}
.y3c5{bottom:546.829998px;}
.y389{bottom:547.196874px;}
.yf6{bottom:548.638920px;}
.y1b{bottom:549.001800px;}
.y444{bottom:551.163312px;}
.y4d4{bottom:551.165694px;}
.y491{bottom:551.165904px;}
.y1ee{bottom:551.171520px;}
.y3f8{bottom:554.042628px;}
.y12e{bottom:554.407128px;}
.y2da{bottom:557.281842px;}
.y15f{bottom:557.640000px;}
.y211{bottom:558.728640px;}
.y354{bottom:559.362390px;}
.y1a1{bottom:560.513958px;}
.y2fc{bottom:560.880000px;}
.y32a{bottom:561.222150px;}
.y1c2{bottom:561.941250px;}
.y39{bottom:561.962268px;}
.yb5{bottom:562.242039px;}
.y3c4{bottom:563.390718px;}
.y388{bottom:563.757594px;}
.y443{bottom:564.483168px;}
.y4d3{bottom:564.485550px;}
.y490{bottom:564.485760px;}
.yf5{bottom:564.839496px;}
.y75{bottom:564.889680px;}
.yb3{bottom:565.702200px;}
.y1a{bottom:565.921188px;}
.y3f7{bottom:567.362484px;}
.y1ed{bottom:567.732240px;}
.yb6{bottom:569.145900px;}
.y12d{bottom:570.966372px;}
.y273{bottom:571.320150px;}
.y210{bottom:575.289360px;}
.y353{bottom:575.923110px;}
.y1a0{bottom:577.074678px;}
.y329{bottom:577.428630px;}
.y2fb{bottom:577.432194px;}
.y442{bottom:577.803024px;}
.y4d2{bottom:577.805406px;}
.y48f{bottom:577.805616px;}
.y38{bottom:578.521512px;}
.yc9{bottom:578.824728px;}
.y3c3{bottom:579.951438px;}
.y387{bottom:580.318314px;}
.y3f6{bottom:580.322376px;}
.yf4{bottom:581.400216px;}
.y2d9{bottom:581.401158px;}
.y74{bottom:581.804640px;}
.y19{bottom:582.840576px;}
.y15e{bottom:583.560000px;}
.y1ec{bottom:584.292960px;}
.y1c1{bottom:587.140998px;}
.y12c{bottom:587.525616px;}
.y441{bottom:590.762916px;}
.y4d1{bottom:590.765298px;}
.y48e{bottom:590.765508px;}
.y20f{bottom:591.850080px;}
.y352{bottom:592.483830px;}
.y19f{bottom:593.275254px;}
.yc8{bottom:593.503500px;}
.y3f5{bottom:593.642232px;}
.y328{bottom:593.989350px;}
.y2fa{bottom:593.992914px;}
.y37{bottom:595.080756px;}
.y3c2{bottom:596.512158px;}
.y386{bottom:596.879034px;}
.y272{bottom:597.600150px;}
.yf3{bottom:597.960936px;}
.y2d8{bottom:598.322022px;}
.y73{bottom:598.719600px;}
.y1eb{bottom:600.853680px;}
.y440{bottom:604.082772px;}
.y12b{bottom:604.084860px;}
.y4d0{bottom:604.085154px;}
.y48d{bottom:604.085364px;}
.y3f4{bottom:606.962088px;}
.y20e{bottom:608.041800px;}
.y351{bottom:609.044550px;}
.y15d{bottom:609.480000px;}
.y19e{bottom:609.835974px;}
.y327{bottom:610.550070px;}
.y18{bottom:611.280144px;}
.y36{bottom:611.640000px;}
.y3c1{bottom:613.072878px;}
.y385{bottom:613.439754px;}
.yf2{bottom:614.521656px;}
.y72{bottom:615.280320px;}
.y2d7{bottom:615.601554px;}
.y1ea{bottom:617.045400px;}
.y43f{bottom:617.402628px;}
.y4cf{bottom:617.405010px;}
.y48c{bottom:617.405220px;}
.y2f9{bottom:618.112230px;}
.y3f3{bottom:619.921980px;}
.y12a{bottom:620.644104px;}
.y271{bottom:623.520150px;}
.y20d{bottom:624.602520px;}
.y350{bottom:625.605270px;}
.y1c0{bottom:626.380458px;}
.y19d{bottom:626.396694px;}
.y326{bottom:627.110790px;}
.y43e{bottom:630.362520px;}
.y4ce{bottom:630.364902px;}
.y48b{bottom:630.365112px;}
.yf1{bottom:631.082376px;}
.y71{bottom:632.195280px;}
.y2d6{bottom:632.881086px;}
.y3f2{bottom:633.241836px;}
.y1e9{bottom:633.606120px;}
.y2f8{bottom:634.312806px;}
.y15c{bottom:635.400000px;}
.yb4{bottom:636.029885px;}
.y3c0{bottom:636.833526px;}
.y129{bottom:636.844680px;}
.y384{bottom:638.639502px;}
.y20c{bottom:641.163240px;}
.y34f{bottom:642.165990px;}
.y1bf{bottom:642.941178px;}
.y19c{bottom:642.957414px;}
.y325{bottom:643.671510px;}
.y43d{bottom:643.682376px;}
.y4cd{bottom:643.684758px;}
.y48a{bottom:643.684968px;}
.y3f1{bottom:646.561692px;}
.y70{bottom:649.110240px;}
.y270{bottom:649.800000px;}
.yaf{bottom:649.830644px;}
.y2d5{bottom:650.160618px;}
.y1e8{bottom:650.166840px;}
.y2f7{bottom:650.872050px;}
.y3bf{bottom:653.392770px;}
.yf0{bottom:654.843024px;}
.y17{bottom:655.200000px;}
.y43c{bottom:657.002232px;}
.y4cc{bottom:657.004614px;}
.y489{bottom:657.004824px;}
.y20b{bottom:657.723960px;}
.y34e{bottom:658.372470px;}
.y1be{bottom:659.501898px;}
.y19b{bottom:659.518134px;}
.y3f0{bottom:659.521584px;}
.y324{bottom:660.232230px;}
.y128{bottom:662.044428px;}
.y2a0{bottom:665.280150px;}
.y6f{bottom:665.670960px;}
.y1e7{bottom:666.727560px;}
.y2d4{bottom:667.440150px;}
.y15b{bottom:668.520150px;}
.y3be{bottom:669.952014px;}
.y43b{bottom:669.962124px;}
.y4cb{bottom:669.964506px;}
.y488{bottom:669.964716px;}
.yef{bottom:671.762412px;}
.y3ef{bottom:672.841440px;}
.y383{bottom:673.200042px;}
.y20a{bottom:674.284680px;}
.y34d{bottom:674.933190px;}
.y1bd{bottom:676.062618px;}
.y19a{bottom:676.078854px;}
.y26f{bottom:676.080150px;}
.y16{bottom:680.397558px;}
.y29f{bottom:680.400000px;}
.y6e{bottom:682.585920px;}
.y2d3{bottom:683.280150px;}
.y43a{bottom:683.281980px;}
.y4ca{bottom:683.284362px;}
.y487{bottom:683.284572px;}
.y323{bottom:685.427550px;}
.yae{bottom:685.688400px;}
.y3ee{bottom:686.161296px;}
.y3bd{bottom:686.511258px;}
.yc7{bottom:687.121650px;}
.yee{bottom:688.681800px;}
.y382{bottom:690.119430px;}
.y1e6{bottom:690.845400px;}
.yd2{bottom:691.387456px;}
.y1bc{bottom:692.263194px;}
.y199{bottom:692.279430px;}
.y439{bottom:696.601836px;}
.y4c9{bottom:696.604218px;}
.y486{bottom:696.604428px;}
.y15{bottom:696.958314px;}
.y127{bottom:696.965112px;}
.y34c{bottom:699.051030px;}
.y3ed{bottom:699.121188px;}
.y6d{bottom:699.500880px;}
.yd1{bottom:700.353985px;}
.yb2{bottom:701.543899px;}
.y322{bottom:701.988270px;}
.y26e{bottom:702.000150px;}
.y3bc{bottom:703.070502px;}
.y29e{bottom:704.520150px;}
.yed{bottom:705.241044px;}
.y381{bottom:706.686048px;}
.y1e5{bottom:707.037120px;}
.y2d2{bottom:707.400000px;}
.y198{bottom:708.840150px;}
.y438{bottom:709.561728px;}
.y4c8{bottom:709.564110px;}
.y485{bottom:709.564320px;}
.yc4{bottom:711.986700px;}
.y3ec{bottom:712.441044px;}
.y15a{bottom:712.799142px;}
.y14{bottom:713.519070px;}
.y126{bottom:713.524356px;}
.y34b{bottom:715.611750px;}
.y6c{bottom:716.061600px;}
.y3bb{bottom:719.629746px;}
.yec{bottom:722.160432px;}
.y437{bottom:722.881584px;}
.y4c7{bottom:722.883966px;}
.y484{bottom:722.884176px;}
.y1e4{bottom:723.597840px;}
.y380{bottom:723.605436px;}
.y3eb{bottom:725.760900px;}
.y159{bottom:728.279646px;}
.y26d{bottom:728.280150px;}
.ybe{bottom:728.907991px;}
.y13{bottom:730.079826px;}
.y125{bottom:730.083600px;}
.y29d{bottom:731.160150px;}
.y34a{bottom:732.172470px;}
.y321{bottom:732.231510px;}
.y197{bottom:732.240000px;}
.y6b{bottom:732.976560px;}
.y2d1{bottom:733.320000px;}
.yc6{bottom:734.058156px;}
.y3ba{bottom:735.830322px;}
.y436{bottom:736.201440px;}
.y4c6{bottom:736.203822px;}
.y483{bottom:736.204032px;}
.y3ea{bottom:738.720792px;}
.yc0{bottom:738.947000px;}
.yeb{bottom:739.079820px;}
.y1e3{bottom:740.158560px;}
.y37f{bottom:740.524824px;}
.y158{bottom:743.760150px;}
.y12{bottom:746.640582px;}
.y124{bottom:746.642844px;}
.yc3{bottom:747.024300px;}
.y349{bottom:748.378950px;}
.y320{bottom:748.437990px;}
.y435{bottom:749.161332px;}
.y4c5{bottom:749.163714px;}
.y482{bottom:749.163924px;}
.y6a{bottom:749.891520px;}
.y3e9{bottom:752.040648px;}
.y3b9{bottom:752.391042px;}
.y26c{bottom:754.560000px;}
.yea{bottom:755.639064px;}
.ybf{bottom:755.721150px;}
.y1e2{bottom:756.719280px;}
.y37e{bottom:757.085544px;}
.y29c{bottom:757.800000px;}
.y196{bottom:758.880000px;}
.y2d0{bottom:759.240000px;}
.y157{bottom:759.960000px;}
.y434{bottom:762.481188px;}
.y4c4{bottom:762.483570px;}
.y481{bottom:762.483780px;}
.y11{bottom:763.201338px;}
.y348{bottom:764.939670px;}
.yb1{bottom:764.987839px;}
.y31f{bottom:764.998710px;}
.y3e8{bottom:765.360504px;}
.y69{bottom:766.452240px;}
.y3b8{bottom:768.951762px;}
.y123{bottom:770.403492px;}
.ye9{bottom:772.559928px;}
.y1e1{bottom:773.280000px;}
.y37d{bottom:774.004932px;}
.y433{bottom:775.801044px;}
.y4c3{bottom:775.803426px;}
.y480{bottom:775.803636px;}
.yd0{bottom:778.278139px;}
.y3e7{bottom:778.320396px;}
.y10{bottom:779.401122px;}
.y26b{bottom:780.840150px;}
.y347{bottom:781.500390px;}
.y31e{bottom:781.559430px;}
.y156{bottom:782.640150px;}
.y68{bottom:783.367200px;}
.y29b{bottom:784.440000px;}
.y2cf{bottom:785.160150px;}
.y3b7{bottom:785.512482px;}
.y195{bottom:785.520300px;}
.y122{bottom:786.964212px;}
.y432{bottom:788.760936px;}
.y4c2{bottom:788.763318px;}
.y47f{bottom:788.763528px;}
.yc5{bottom:789.215895px;}
.ye8{bottom:789.480792px;}
.y1e0{bottom:789.842880px;}
.ycf{bottom:790.689152px;}
.y37c{bottom:790.924320px;}
.y3e6{bottom:791.640252px;}
.yd3{bottom:794.821280px;}
.yf{bottom:795.960546px;}
.y31d{bottom:798.120150px;}
.y67{bottom:800.282160px;}
.y3b6{bottom:802.073202px;}
.y431{bottom:802.080792px;}
.y4c1{bottom:802.083174px;}
.y47e{bottom:802.083384px;}
.yd4{bottom:803.794079px;}
.y3e5{bottom:804.960108px;}
.y1df{bottom:806.040000px;}
.y26a{bottom:806.760000px;}
.y37b{bottom:807.485040px;}
.y155{bottom:808.560000px;}
.ycc{bottom:808.613850px;}
.y29a{bottom:811.080000px;}
.y121{bottom:811.083528px;}
.y194{bottom:812.160150px;}
.ye{bottom:812.519970px;}
.y31c{bottom:814.689150px;}
.ye7{bottom:815.040684px;}
.y430{bottom:815.400648px;}
.y4c0{bottom:815.403030px;}
.y47d{bottom:815.403240px;}
.y66{bottom:816.842880px;}
.y3e4{bottom:817.920000px;}
.y3b5{bottom:818.633922px;}
.yca{bottom:820.623171px;}
.ybd{bottom:820.638300px;}
.y1de{bottom:826.920000px;}
.y120{bottom:827.644248px;}
.y42f{bottom:828.360540px;}
.y4bf{bottom:828.362922px;}
.y47c{bottom:828.363132px;}
.yd{bottom:829.079394px;}
.y256{bottom:830.219649px;}
.y249{bottom:830.220404px;}
.y247{bottom:830.220427px;}
.y243{bottom:830.220450px;}
.y245{bottom:830.220473px;}
.y24d{bottom:830.220496px;}
.y24b{bottom:830.220564px;}
.y253{bottom:830.220633px;}
.y24f{bottom:830.220724px;}
.y22d{bottom:830.220953px;}
.y22f{bottom:830.221205px;}
.y25e{bottom:830.221274px;}
.y231{bottom:830.221480px;}
.y25c{bottom:830.221617px;}
.y233{bottom:830.221755px;}
.y25a{bottom:830.221938px;}
.y235{bottom:830.222006px;}
.y237{bottom:830.222258px;}
.y258{bottom:830.222281px;}
.y239{bottom:830.222510px;}
.y23b{bottom:830.222784px;}
.y23d{bottom:830.223036px;}
.y23f{bottom:830.223311px;}
.y241{bottom:830.223563px;}
.y261{bottom:830.231100px;}
.y31b{bottom:831.245910px;}
.y37a{bottom:831.964500px;}
.yce{bottom:832.748235px;}
.y269{bottom:833.040000px;}
.y65{bottom:833.757840px;}
.y154{bottom:834.480150px;}
.y3b4{bottom:834.834498px;}
.yd6{bottom:835.806051px;}
.y2ce{bottom:837.000150px;}
.y299{bottom:837.720000px;}
.y193{bottom:838.800150px;}
.y3e3{bottom:840.596148px;}
.y42e{bottom:841.680396px;}
.y4be{bottom:841.682778px;}
.y47b{bottom:841.682988px;}
.y11f{bottom:843.844824px;}
.yc{bottom:845.640150px;}
.y31a{bottom:847.443030px;}
.y379{bottom:848.883888px;}
.ye6{bottom:849.601224px;}
.y64{bottom:850.672800px;}
.yc2{bottom:850.707847px;}
.y3b3{bottom:851.395218px;}
.ybc{bottom:852.356925px;}
.yd5{bottom:854.819691px;}
.y42d{bottom:855.000252px;}
.y4bd{bottom:855.002634px;}
.y47a{bottom:855.002844px;}
.y268{bottom:859.320150px;}
.y153{bottom:860.400000px;}
.y11e{bottom:860.405544px;}
.ycd{bottom:861.709705px;}
.y2cd{bottom:862.560000px;}
.y319{bottom:863.640150px;}
.yc1{bottom:864.345750px;}
.y298{bottom:864.360300px;}
.y192{bottom:865.440000px;}
.y378{bottom:865.443132px;}
.ye5{bottom:866.522088px;}
.y63{bottom:867.233520px;}
.y3b2{bottom:867.955938px;}
.y42c{bottom:867.960144px;}
.y4bc{bottom:867.962526px;}
.y479{bottom:867.962736px;}
.yb0{bottom:870.504447px;}
.y3e2{bottom:875.516832px;}
.y11d{bottom:876.966264px;}
.yd7{bottom:879.240419px;}
.yb{bottom:880.200618px;}
.y42b{bottom:881.280000px;}
.y4bb{bottom:881.282382px;}
.y478{bottom:881.282592px;}
.y377{bottom:882.362520px;}
.ybb{bottom:882.693682px;}
.ye4{bottom:883.081332px;}
.y318{bottom:883.800150px;}
.y62{bottom:884.148480px;}
.y3b1{bottom:884.516658px;}
.y267{bottom:885.240000px;}
.y152{bottom:886.320150px;}
.y370{bottom:888.331050px;}
.y2cc{bottom:888.480150px;}
.y297{bottom:891.000150px;}
.y3e1{bottom:892.077552px;}
.y191{bottom:892.080000px;}
.y4ba{bottom:894.602238px;}
.y477{bottom:894.602448px;}
.y42a{bottom:894.608964px;}
.yba{bottom:895.792338px;}
.ya{bottom:897.480612px;}
.y376{bottom:899.281908px;}
.ye3{bottom:900.000720px;}
.y3b0{bottom:901.077378px;}
.y11c{bottom:901.085580px;}
.y4b9{bottom:907.562130px;}
.y476{bottom:907.562340px;}
.y429{bottom:907.568856px;}
.y61{bottom:908.620560px;}
.y3e0{bottom:908.638272px;}
.y266{bottom:911.520300px;}
.y151{bottom:912.240000px;}
.ycb{bottom:912.354600px;}
.y2cb{bottom:914.400000px;}
.y375{bottom:915.842628px;}
.ye2{bottom:916.920108px;}
.y3af{bottom:917.638098px;}
.y11b{bottom:917.646300px;}
.y190{bottom:918.720000px;}
.y28e{bottom:920.520300px;}
.y4b8{bottom:920.881986px;}
.y475{bottom:920.882196px;}
.y428{bottom:920.888712px;}
.y9{bottom:921.240000px;}
.y293{bottom:921.969660px;}
.y60{bottom:924.827040px;}
.y3df{bottom:924.838848px;}
.y291{bottom:927.006780px;}
.y290{bottom:929.881740px;}
.y28f{bottom:931.319220px;}
.y374{bottom:932.763492px;}
.yb8{bottom:933.031650px;}
.ye1{bottom:933.480828px;}
.y296{bottom:933.837780px;}
.y11a{bottom:933.846876px;}
.y4b7{bottom:934.201842px;}
.y474{bottom:934.202052px;}
.y427{bottom:934.208568px;}
.y295{bottom:935.999940px;}
.y292{bottom:936.011820px;}
.y265{bottom:937.800150px;}
.y150{bottom:938.160150px;}
.yb9{bottom:938.559964px;}
.y2ca{bottom:940.320150px;}
.y5f{bottom:941.387760px;}
.y3ae{bottom:941.397270px;}
.y3de{bottom:941.399568px;}
.y294{bottom:945.004980px;}
.y18f{bottom:945.360300px;}
.y4b6{bottom:947.161734px;}
.y473{bottom:947.161944px;}
.y426{bottom:947.168460px;}
.y373{bottom:949.684356px;}
.y119{bottom:950.406120px;}
.y5e{bottom:957.948480px;}
.y3ad{bottom:957.957990px;}
.ye0{bottom:957.960288px;}
.y4b5{bottom:960.481590px;}
.y472{bottom:960.481800px;}
.y425{bottom:960.488316px;}
.y28d{bottom:960.842880px;}
.y14f{bottom:963.720000px;}
.y264{bottom:964.080000px;}
.y2c9{bottom:966.240000px;}
.y372{bottom:966.243600px;}
.y8{bottom:967.680150px;}
.y18e{bottom:972.000150px;}
.y4b4{bottom:973.801446px;}
.y471{bottom:973.801656px;}
.y424{bottom:973.808172px;}
.y5d{bottom:974.509200px;}
.y3ac{bottom:974.518710px;}
.ydf{bottom:974.521008px;}
.y118{bottom:974.525436px;}
.y28c{bottom:977.760000px;}
.y371{bottom:983.162988px;}
.y4b3{bottom:986.761338px;}
.y470{bottom:986.761548px;}
.y423{bottom:986.768064px;}
.y14e{bottom:990.000150px;}
.y5c{bottom:991.069920px;}
.y3ab{bottom:991.079430px;}
.yde{bottom:991.081728px;}
.y117{bottom:991.086156px;}
.y263{bottom:993.240000px;}
.y2c8{bottom:999.360150px;}
.y4b2{bottom:1000.081194px;}
.y46f{bottom:1000.081404px;}
.y422{bottom:1000.087920px;}
.y18d{bottom:1001.520504px;}
.y5b{bottom:1007.630640px;}
.y3aa{bottom:1007.640978px;}
.ydd{bottom:1007.642448px;}
.y116{bottom:1007.646876px;}
.y4b1{bottom:1013.401050px;}
.y46e{bottom:1013.401260px;}
.y421{bottom:1013.407776px;}
.y28b{bottom:1016.640150px;}
.y94{bottom:1016.678520px;}
.y14d{bottom:1018.439676px;}
.y18c{bottom:1018.440000px;}
.y262{bottom:1019.160150px;}
.y7{bottom:1021.679070px;}
.y5a{bottom:1023.837120px;}
.y3a9{bottom:1023.841554px;}
.ydc{bottom:1023.843024px;}
.y115{bottom:1023.847452px;}
.y4b0{bottom:1026.360942px;}
.y46d{bottom:1026.361152px;}
.y420{bottom:1026.367668px;}
.y14c{bottom:1027.080000px;}
.y288{bottom:1029.240150px;}
.y93{bottom:1032.885000px;}
.y4af{bottom:1039.680798px;}
.y46c{bottom:1039.681008px;}
.y41f{bottom:1039.687524px;}
.y59{bottom:1040.397840px;}
.y3a8{bottom:1040.400798px;}
.ydb{bottom:1040.402268px;}
.y114{bottom:1040.406696px;}
.y2c7{bottom:1043.638848px;}
.y6{bottom:1046.520150px;}
.y92{bottom:1049.445720px;}
.y4ae{bottom:1053.000654px;}
.y46b{bottom:1053.000864px;}
.y41e{bottom:1053.007380px;}
.y58{bottom:1056.958560px;}
.y3a7{bottom:1056.960042px;}
.yda{bottom:1056.961512px;}
.y28a{bottom:1056.965910px;}
.y113{bottom:1056.965940px;}
.y18b{bottom:1059.478992px;}
.y4ad{bottom:1065.960546px;}
.y46a{bottom:1065.960756px;}
.y41d{bottom:1065.967272px;}
.y5{bottom:1072.440000px;}
.y289{bottom:1072.803390px;}
.y57{bottom:1073.519280px;}
.y3a6{bottom:1073.519286px;}
.yd9{bottom:1073.520756px;}
.y112{bottom:1073.525184px;}
.y91{bottom:1073.563560px;}
.y14b{bottom:1074.959496px;}
.y4ac{bottom:1079.280402px;}
.y469{bottom:1079.280612px;}
.y41c{bottom:1079.287128px;}
.y286{bottom:1089.360150px;}
.y3a5{bottom:1090.078530px;}
.y56{bottom:1090.080000px;}
.y111{bottom:1090.084428px;}
.y90{bottom:1090.124280px;}
.y14a{bottom:1090.440000px;}
.y4ab{bottom:1092.600258px;}
.y468{bottom:1092.600468px;}
.y41b{bottom:1092.606984px;}
.y2{bottom:1098.360150px;}
.y55{bottom:1121.040000px;}
.y1{bottom:1121.400000px;}
.h34{height:8.004375px;}
.h2d{height:23.617791px;}
.h2a{height:26.369510px;}
.h6{height:26.995781px;}
.h29{height:29.015859px;}
.h1a{height:31.479845px;}
.h26{height:31.723840px;}
.h1b{height:32.205937px;}
.hc{height:32.994844px;}
.h2{height:33.018047px;}
.h24{height:34.482435px;}
.h25{height:34.551400px;}
.h28{height:35.537344px;}
.h1{height:36.109687px;}
.h9{height:37.020234px;}
.h2c{height:39.314391px;}
.he{height:39.468516px;}
.h1c{height:39.955781px;}
.h32{height:39.984609px;}
.hb{height:40.013438px;}
.h8{height:40.993594px;}
.ha{height:41.022422px;}
.h2b{height:41.033102px;}
.h22{height:41.140502px;}
.h30{height:41.696016px;}
.h10{height:44.252578px;}
.h1d{height:44.798906px;}
.h33{height:46.855073px;}
.hf{height:49.036641px;}
.h20{height:49.642031px;}
.h12{height:50.264750px;}
.h31{height:51.804141px;}
.h3{height:52.417969px;}
.h2e{height:54.351174px;}
.h7{height:54.353933px;}
.h2f{height:54.371454px;}
.hd{height:54.377526px;}
.h13{height:61.142087px;}
.h17{height:61.713971px;}
.h15{height:63.020268px;}
.h4{height:64.411875px;}
.h5{height:66.138047px;}
.h21{height:66.767233px;}
.h11{height:68.185724px;}
.h14{height:69.861827px;}
.h1e{height:71.637365px;}
.h1f{height:74.517077px;}
.h16{height:78.581359px;}
.h18{height:136.684557px;}
.h19{height:241.473811px;}
.h23{height:282.341802px;}
.h27{height:1100.880000px;}
.h0{height:1188.000000px;}
.w1{width:507.052512px;}
.w2{width:864.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x34{left:6.976333px;}
.x33{left:13.371467px;}
.x32{left:19.791754px;}
.x52{left:27.000000px;}
.x49{left:49.820598px;}
.x35{left:61.826982px;}
.x36{left:76.007319px;}
.x37{left:90.187587px;}
.x1{left:95.760000px;}
.x2e{left:104.760000px;}
.x4{left:116.999640px;}
.x38{left:118.548042px;}
.x2b{left:120.240000px;}
.x2d{left:124.560000px;}
.x39{left:132.724133px;}
.x62{left:138.239316px;}
.x3a{left:146.910724px;}
.x3{left:159.480000px;}
.x3b{left:161.086838px;}
.x3c{left:175.273429px;}
.x4f{left:182.880000px;}
.x4a{left:191.619052px;}
.x3d{left:203.625484px;}
.x31{left:218.069092px;}
.x3e{left:231.988188px;}
.x3f{left:246.174779px;}
.x40{left:260.350893px;}
.x30{left:268.200288px;}
.x41{left:274.526834px;}
.x56{left:280.080000px;}
.x2f{left:285.479748px;}
.x42{left:288.713425px;}
.x43{left:302.889539px;}
.x44{left:317.076130px;}
.x4b{left:333.400684px;}
.x45{left:345.428162px;}
.x57{left:350.278920px;}
.x46{left:359.614776px;}
.x4c{left:375.939516px;}
.x55{left:386.280000px;}
.x47{left:387.945981px;}
.x48{left:402.132572px;}
.x58{left:420.477840px;}
.x4d{left:431.748512px;}
.x50{left:443.880000px;}
.x51{left:449.280000px;}
.x60{left:468.487650px;}
.x5f{left:469.793160px;}
.x59{left:490.676760px;}
.x53{left:493.200000px;}
.x6{left:496.080360px;}
.x18{left:509.117576px;}
.x5{left:517.320000px;}
.x54{left:528.480000px;}
.x63{left:538.559676px;}
.x10{left:543.337650px;}
.x1d{left:554.781877px;}
.x5a{left:561.232080px;}
.xf{left:589.083441px;}
.x1f{left:591.887100px;}
.x28{left:599.601851px;}
.x20{left:614.146095px;}
.x2c{left:615.600360px;}
.x29{left:616.850248px;}
.x9{left:618.437074px;}
.x61{left:623.465250px;}
.x19{left:627.206250px;}
.x5b{left:631.431000px;}
.x13{left:633.947625px;}
.xd{left:639.595350px;}
.x25{left:641.038700px;}
.xb{left:652.578551px;}
.x26{left:654.000562px;}
.xe{left:659.391911px;}
.x8{left:668.947950px;}
.x1b{left:670.093800px;}
.x24{left:673.116443px;}
.x23{left:677.205694px;}
.x1e{left:679.542600px;}
.x1a{left:682.457850px;}
.x21{left:689.506500px;}
.x5c{left:701.629920px;}
.x12{left:702.694350px;}
.xa{left:705.134569px;}
.x22{left:709.984775px;}
.x27{left:717.479498px;}
.x11{left:721.396350px;}
.x4e{left:725.154150px;}
.x1c{left:729.910072px;}
.x14{left:731.939881px;}
.x17{left:734.391000px;}
.x16{left:743.904994px;}
.x2{left:750.240000px;}
.x15{left:756.131431px;}
.xc{left:763.338484px;}
.x5d{left:771.828840px;}
.x2a{left:830.968352px;}
.x5e{left:838.071720px;}
.x7{left:862.217280px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v3{vertical-align:-24.320000pt;}
.v10{vertical-align:-19.200000pt;}
.ve{vertical-align:-7.671040pt;}
.v6{vertical-align:-3.730452pt;}
.v8{vertical-align:-1.335731pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:0.907707pt;}
.v9{vertical-align:1.937179pt;}
.v7{vertical-align:4.870620pt;}
.vf{vertical-align:19.186453pt;}
.v4{vertical-align:24.320000pt;}
.vd{vertical-align:25.598208pt;}
.vb{vertical-align:28.161408pt;}
.v1{vertical-align:29.440000pt;}
.vc{vertical-align:30.721152pt;}
.va{vertical-align:93.146003pt;}
.ls7c{letter-spacing:-4.570352pt;}
.ls70{letter-spacing:-1.674112pt;}
.ls6c{letter-spacing:-1.527168pt;}
.ls127{letter-spacing:-1.224960pt;}
.ls6e{letter-spacing:-0.871168pt;}
.ls7b{letter-spacing:-0.854619pt;}
.ls6f{letter-spacing:-0.650752pt;}
.lscd{letter-spacing:-0.615680pt;}
.ls6b{letter-spacing:-0.593024pt;}
.ls11d{letter-spacing:-0.591360pt;}
.ls6d{letter-spacing:-0.582528pt;}
.lsae{letter-spacing:-0.577280pt;}
.lsa9{letter-spacing:-0.506880pt;}
.lsa7{letter-spacing:-0.468864pt;}
.lsd7{letter-spacing:-0.461824pt;}
.lsbc{letter-spacing:-0.451968pt;}
.ls102{letter-spacing:-0.449920pt;}
.lse7{letter-spacing:-0.440448pt;}
.ls1e{letter-spacing:-0.430976pt;}
.lsa1{letter-spacing:-0.430848pt;}
.ls67{letter-spacing:-0.430336pt;}
.ls11c{letter-spacing:-0.426624pt;}
.lsdf{letter-spacing:-0.418176pt;}
.lsc8{letter-spacing:-0.414592pt;}
.lscb{letter-spacing:-0.409344pt;}
.lsde{letter-spacing:-0.407296pt;}
.lsef{letter-spacing:-0.402560pt;}
.ls8d{letter-spacing:-0.398848pt;}
.lsb8{letter-spacing:-0.397824pt;}
.ls62{letter-spacing:-0.397056pt;}
.ls92{letter-spacing:-0.393600pt;}
.lsd6{letter-spacing:-0.388352pt;}
.lsfb{letter-spacing:-0.383104pt;}
.ls14{letter-spacing:-0.378880pt;}
.ls85{letter-spacing:-0.377856pt;}
.ls65{letter-spacing:-0.372608pt;}
.ls2a{letter-spacing:-0.367360pt;}
.ls7a{letter-spacing:-0.362112pt;}
.lsba{letter-spacing:-0.354816pt;}
.lsaa{letter-spacing:-0.351616pt;}
.ls101{letter-spacing:-0.350464pt;}
.ls93{letter-spacing:-0.346368pt;}
.ls124{letter-spacing:-0.342144pt;}
.ls89{letter-spacing:-0.341120pt;}
.ls71{letter-spacing:-0.330624pt;}
.ls30{letter-spacing:-0.325376pt;}
.ls103{letter-spacing:-0.322048pt;}
.ls41{letter-spacing:-0.321024pt;}
.ls29{letter-spacing:-0.320128pt;}
.lsac{letter-spacing:-0.314880pt;}
.ls91{letter-spacing:-0.309632pt;}
.ls80{letter-spacing:-0.304128pt;}
.ls66{letter-spacing:-0.299136pt;}
.ls63{letter-spacing:-0.295680pt;}
.ls105{letter-spacing:-0.288640pt;}
.ls31{letter-spacing:-0.283392pt;}
.ls104{letter-spacing:-0.278144pt;}
.ls49{letter-spacing:-0.272896pt;}
.ls68{letter-spacing:-0.267648pt;}
.ls28{letter-spacing:-0.262400pt;}
.ls44{letter-spacing:-0.257152pt;}
.lsf7{letter-spacing:-0.255744pt;}
.ls34{letter-spacing:-0.251904pt;}
.ls48{letter-spacing:-0.246656pt;}
.ls64{letter-spacing:-0.241408pt;}
.ls8f{letter-spacing:-0.236160pt;}
.ls2b{letter-spacing:-0.230912pt;}
.ls107{letter-spacing:-0.225664pt;}
.ls75{letter-spacing:-0.220416pt;}
.ls78{letter-spacing:-0.215168pt;}
.ls76{letter-spacing:-0.209920pt;}
.ls114{letter-spacing:-0.206976pt;}
.lsf1{letter-spacing:-0.204672pt;}
.ls86{letter-spacing:-0.199424pt;}
.ls45{letter-spacing:-0.194176pt;}
.ls95{letter-spacing:-0.188928pt;}
.ls4a{letter-spacing:-0.183680pt;}
.lse0{letter-spacing:-0.181632pt;}
.lsab{letter-spacing:-0.178432pt;}
.ls12c{letter-spacing:-0.177408pt;}
.ls4b{letter-spacing:-0.173184pt;}
.lsa2{letter-spacing:-0.168960pt;}
.ls8b{letter-spacing:-0.167936pt;}
.ls108{letter-spacing:-0.162688pt;}
.ls3d{letter-spacing:-0.160512pt;}
.lsfd{letter-spacing:-0.157440pt;}
.ls3a{letter-spacing:-0.156288pt;}
.ls125{letter-spacing:-0.152064pt;}
.lse2{letter-spacing:-0.147840pt;}
.lsaf{letter-spacing:-0.146944pt;}
.ls128{letter-spacing:-0.143616pt;}
.lsd0{letter-spacing:-0.141696pt;}
.ls3c{letter-spacing:-0.139392pt;}
.lsf9{letter-spacing:-0.135168pt;}
.lsd2{letter-spacing:-0.131200pt;}
.ls39{letter-spacing:-0.130944pt;}
.ls3f{letter-spacing:-0.126720pt;}
.ls113{letter-spacing:-0.122496pt;}
.ls122{letter-spacing:-0.118272pt;}
.ls11a{letter-spacing:-0.114048pt;}
.lsa3{letter-spacing:-0.109824pt;}
.lsa5{letter-spacing:-0.105600pt;}
.lsfc{letter-spacing:-0.104960pt;}
.ls81{letter-spacing:-0.101376pt;}
.ls117{letter-spacing:-0.097152pt;}
.ls88{letter-spacing:-0.094464pt;}
.ls126{letter-spacing:-0.092928pt;}
.lse9{letter-spacing:-0.088704pt;}
.ls40{letter-spacing:-0.080256pt;}
.lsce{letter-spacing:-0.078720pt;}
.ls129{letter-spacing:-0.076032pt;}
.lse8{letter-spacing:-0.063360pt;}
.ls123{letter-spacing:-0.042240pt;}
.lsbb{letter-spacing:-0.025344pt;}
.ls116{letter-spacing:-0.016896pt;}
.lsfa{letter-spacing:-0.012672pt;}
.ls1a{letter-spacing:-0.006400pt;}
.ls15{letter-spacing:0.000000pt;}
.ls12b{letter-spacing:0.004224pt;}
.ls7d{letter-spacing:0.007803pt;}
.lsd4{letter-spacing:0.010496pt;}
.lsed{letter-spacing:0.012672pt;}
.ls4{letter-spacing:0.038400pt;}
.ls27{letter-spacing:0.041984pt;}
.ls12a{letter-spacing:0.050688pt;}
.lsd3{letter-spacing:0.078720pt;}
.ls11e{letter-spacing:0.084480pt;}
.lseb{letter-spacing:0.101376pt;}
.ls3{letter-spacing:0.115200pt;}
.ls8c{letter-spacing:0.115456pt;}
.lsa0{letter-spacing:0.135168pt;}
.ls59{letter-spacing:0.137765pt;}
.ls12d{letter-spacing:0.139392pt;}
.ls1{letter-spacing:0.147200pt;}
.ls12e{letter-spacing:0.147840pt;}
.lsa8{letter-spacing:0.168960pt;}
.ls119{letter-spacing:0.173184pt;}
.lsbe{letter-spacing:0.194176pt;}
.ls111{letter-spacing:0.202752pt;}
.ls84{letter-spacing:0.278144pt;}
.ls2{letter-spacing:0.287232pt;}
.ls6a{letter-spacing:0.288640pt;}
.lscf{letter-spacing:0.314880pt;}
.lsc5{letter-spacing:0.320128pt;}
.ls19{letter-spacing:0.329472pt;}
.lsc2{letter-spacing:0.335872pt;}
.lsee{letter-spacing:0.378624pt;}
.lsc4{letter-spacing:0.383104pt;}
.ls50{letter-spacing:0.419840pt;}
.ls109{letter-spacing:0.440832pt;}
.lsc1{letter-spacing:0.446080pt;}
.ls1b{letter-spacing:0.464128pt;}
.lsb3{letter-spacing:0.467072pt;}
.lsc3{letter-spacing:0.472320pt;}
.ls69{letter-spacing:0.482816pt;}
.lsad{letter-spacing:0.488064pt;}
.lsd1{letter-spacing:0.493312pt;}
.ls121{letter-spacing:0.498432pt;}
.ls35{letter-spacing:0.498560pt;}
.ls7{letter-spacing:0.502016pt;}
.ls110{letter-spacing:0.506880pt;}
.ls77{letter-spacing:0.514304pt;}
.lsec{letter-spacing:0.515328pt;}
.ls94{letter-spacing:0.519552pt;}
.ls53{letter-spacing:0.521778pt;}
.ls11b{letter-spacing:0.523776pt;}
.ls7f{letter-spacing:0.524800pt;}
.ls118{letter-spacing:0.528000pt;}
.ls47{letter-spacing:0.530048pt;}
.lsb7{letter-spacing:0.530432pt;}
.ls13{letter-spacing:0.535296pt;}
.ls115{letter-spacing:0.536448pt;}
.lsb{letter-spacing:0.540544pt;}
.ls16{letter-spacing:0.540672pt;}
.ls10c{letter-spacing:0.544896pt;}
.ls37{letter-spacing:0.545792pt;}
.ls11f{letter-spacing:0.549120pt;}
.ls99{letter-spacing:0.549376pt;}
.ls43{letter-spacing:0.551040pt;}
.lsea{letter-spacing:0.553344pt;}
.ls32{letter-spacing:0.556288pt;}
.ls10b{letter-spacing:0.557568pt;}
.ls12{letter-spacing:0.561536pt;}
.ls38{letter-spacing:0.561792pt;}
.lsa4{letter-spacing:0.566016pt;}
.ls2f{letter-spacing:0.566784pt;}
.ls100{letter-spacing:0.568320pt;}
.ls112{letter-spacing:0.570240pt;}
.ls4d{letter-spacing:0.572032pt;}
.ls9d{letter-spacing:0.574464pt;}
.ls60{letter-spacing:0.575395pt;}
.ls33{letter-spacing:0.577280pt;}
.ls9a{letter-spacing:0.578688pt;}
.ls6{letter-spacing:0.582528pt;}
.ls9f{letter-spacing:0.582912pt;}
.lsd{letter-spacing:0.587136pt;}
.ls1f{letter-spacing:0.587264pt;}
.ls2e{letter-spacing:0.587776pt;}
.ls3b{letter-spacing:0.591360pt;}
.ls11{letter-spacing:0.593024pt;}
.ls9b{letter-spacing:0.595584pt;}
.lsdb{letter-spacing:0.596736pt;}
.ls36{letter-spacing:0.598272pt;}
.lsc{letter-spacing:0.599808pt;}
.ls25{letter-spacing:0.603520pt;}
.ls3e{letter-spacing:0.604032pt;}
.lsf2{letter-spacing:0.606208pt;}
.ls18{letter-spacing:0.608256pt;}
.ls10{letter-spacing:0.608768pt;}
.lsda{letter-spacing:0.612480pt;}
.lsa{letter-spacing:0.614016pt;}
.ls9e{letter-spacing:0.615680pt;}
.lsb2{letter-spacing:0.616704pt;}
.lse{letter-spacing:0.619264pt;}
.lsdc{letter-spacing:0.620416pt;}
.ls9c{letter-spacing:0.620928pt;}
.lsf{letter-spacing:0.624512pt;}
.ls97{letter-spacing:0.625152pt;}
.ls4c{letter-spacing:0.628992pt;}
.lsb1{letter-spacing:0.629376pt;}
.ls9{letter-spacing:0.629760pt;}
.lsb6{letter-spacing:0.629888pt;}
.lse5{letter-spacing:0.631040pt;}
.ls0{letter-spacing:0.633600pt;}
.ls72{letter-spacing:0.634624pt;}
.ls46{letter-spacing:0.635008pt;}
.ls17{letter-spacing:0.637824pt;}
.ls74{letter-spacing:0.639360pt;}
.ls5{letter-spacing:0.640000pt;}
.ls52{letter-spacing:0.640256pt;}
.lse3{letter-spacing:0.642048pt;}
.lse6{letter-spacing:0.644096pt;}
.ls4f{letter-spacing:0.645504pt;}
.lsa6{letter-spacing:0.648832pt;}
.ls4e{letter-spacing:0.650752pt;}
.lsdd{letter-spacing:0.653568pt;}
.ls26{letter-spacing:0.656000pt;}
.ls106{letter-spacing:0.656640pt;}
.ls10f{letter-spacing:0.658944pt;}
.ls2c{letter-spacing:0.661248pt;}
.ls1d{letter-spacing:0.663040pt;}
.ls82{letter-spacing:0.666496pt;}
.ls73{letter-spacing:0.667776pt;}
.ls2d{letter-spacing:0.671744pt;}
.ls20{letter-spacing:0.672512pt;}
.lsb9{letter-spacing:0.677248pt;}
.ls22{letter-spacing:0.681984pt;}
.ls42{letter-spacing:0.682240pt;}
.ls1c{letter-spacing:0.686720pt;}
.ls23{letter-spacing:0.691456pt;}
.lsf6{letter-spacing:0.692736pt;}
.ls21{letter-spacing:0.696192pt;}
.lsc0{letter-spacing:0.697984pt;}
.lsf0{letter-spacing:0.705664pt;}
.ls24{letter-spacing:0.710400pt;}
.ls8e{letter-spacing:0.724224pt;}
.lsbf{letter-spacing:0.729472pt;}
.ls83{letter-spacing:0.734720pt;}
.ls10a{letter-spacing:0.739968pt;}
.ls56{letter-spacing:0.744083pt;}
.lsfe{letter-spacing:0.745216pt;}
.ls87{letter-spacing:0.781952pt;}
.lsca{letter-spacing:0.797696pt;}
.ls5d{letter-spacing:0.821662pt;}
.ls79{letter-spacing:0.839680pt;}
.lsf4{letter-spacing:0.892160pt;}
.lsb5{letter-spacing:0.939392pt;}
.ls8{letter-spacing:0.961408pt;}
.ls96{letter-spacing:1.002368pt;}
.lsbd{letter-spacing:1.007616pt;}
.lsd5{letter-spacing:1.102080pt;}
.lsf8{letter-spacing:1.146112pt;}
.lsf5{letter-spacing:1.212288pt;}
.lsff{letter-spacing:1.217536pt;}
.ls5f{letter-spacing:1.249867pt;}
.lsc9{letter-spacing:1.353984pt;}
.ls8a{letter-spacing:1.511424pt;}
.ls51{letter-spacing:1.731840pt;}
.ls5c{letter-spacing:1.758408pt;}
.ls98{letter-spacing:1.780736pt;}
.lsb0{letter-spacing:1.828096pt;}
.ls90{letter-spacing:1.857792pt;}
.ls57{letter-spacing:1.879351pt;}
.ls5b{letter-spacing:1.898262pt;}
.lsc6{letter-spacing:1.899776pt;}
.lsf3{letter-spacing:1.910272pt;}
.lsb4{letter-spacing:1.920768pt;}
.ls5a{letter-spacing:1.935968pt;}
.lsc7{letter-spacing:1.941760pt;}
.ls55{letter-spacing:1.986357pt;}
.ls54{letter-spacing:2.026296pt;}
.lscc{letter-spacing:2.256640pt;}
.ls58{letter-spacing:2.453730pt;}
.ls5e{letter-spacing:3.416670pt;}
.ls10d{letter-spacing:3.518592pt;}
.ls7e{letter-spacing:6.082432pt;}
.ls120{letter-spacing:6.175488pt;}
.ls10e{letter-spacing:7.358208pt;}
.ls61{letter-spacing:56.884254pt;}
.lsd9{letter-spacing:215.998464pt;}
.lse4{letter-spacing:219.859200pt;}
.lse1{letter-spacing:254.398848pt;}
.lsd8{letter-spacing:415.679616pt;}
.wsba{word-spacing:-52.480000pt;}
.ws1d8{word-spacing:-47.360000pt;}
.ws27f{word-spacing:-42.240000pt;}
.ws65{word-spacing:-18.513924pt;}
.ws67{word-spacing:-16.552398pt;}
.wsb5{word-spacing:-14.631424pt;}
.ws66{word-spacing:-14.486426pt;}
.ws69{word-spacing:-14.473492pt;}
.ws68{word-spacing:-14.385569pt;}
.wsb9{word-spacing:-13.844224pt;}
.wsb8{word-spacing:-13.791744pt;}
.ws209{word-spacing:-13.760256pt;}
.ws207{word-spacing:-13.749760pt;}
.ws3{word-spacing:-13.723520pt;}
.wsb7{word-spacing:-13.235456pt;}
.wsb6{word-spacing:-13.161984pt;}
.ws64{word-spacing:-13.120000pt;}
.ws206{word-spacing:-12.986112pt;}
.wsb4{word-spacing:-12.778880pt;}
.ws2{word-spacing:-12.304128pt;}
.ws205{word-spacing:-11.584256pt;}
.ws1{word-spacing:-11.197824pt;}
.ws0{word-spacing:-11.193600pt;}
.ws27e{word-spacing:-10.762752pt;}
.ws113{word-spacing:-10.560000pt;}
.ws4{word-spacing:-10.479744pt;}
.ws303{word-spacing:-10.429056pt;}
.ws1bf{word-spacing:-10.399488pt;}
.ws18f{word-spacing:-10.175485pt;}
.ws18e{word-spacing:-10.155175pt;}
.ws1d9{word-spacing:-9.911040pt;}
.ws5{word-spacing:-9.268992pt;}
.ws208{word-spacing:-8.640000pt;}
.ws280{word-spacing:-6.968320pt;}
.ws225{word-spacing:-2.204160pt;}
.wsa0{word-spacing:-2.114944pt;}
.ws10f{word-spacing:-1.264768pt;}
.ws24c{word-spacing:-1.159808pt;}
.ws348{word-spacing:-1.127808pt;}
.ws33e{word-spacing:-1.085568pt;}
.ws1a4{word-spacing:-1.023360pt;}
.ws353{word-spacing:-1.013760pt;}
.ws27c{word-spacing:-1.002368pt;}
.wsca{word-spacing:-0.997120pt;}
.ws191{word-spacing:-0.994560pt;}
.ws1f3{word-spacing:-0.989824pt;}
.ws340{word-spacing:-0.984192pt;}
.ws21{word-spacing:-0.980352pt;}
.ws115{word-spacing:-0.966144pt;}
.wsa{word-spacing:-0.963072pt;}
.ws14b{word-spacing:-0.961408pt;}
.ws122{word-spacing:-0.956672pt;}
.ws218{word-spacing:-0.955136pt;}
.ws2f6{word-spacing:-0.954624pt;}
.ws169{word-spacing:-0.949888pt;}
.ws14e{word-spacing:-0.941952pt;}
.wsaa{word-spacing:-0.939392pt;}
.ws128{word-spacing:-0.933504pt;}
.ws9{word-spacing:-0.929280pt;}
.ws1fb{word-spacing:-0.928896pt;}
.ws1ef{word-spacing:-0.928000pt;}
.ws28c{word-spacing:-0.925056pt;}
.ws219{word-spacing:-0.923648pt;}
.wsa4{word-spacing:-0.923520pt;}
.ws119{word-spacing:-0.920832pt;}
.ws20d{word-spacing:-0.918784pt;}
.ws279{word-spacing:-0.918400pt;}
.ws1c4{word-spacing:-0.916608pt;}
.ws20f{word-spacing:-0.912384pt;}
.ws29e{word-spacing:-0.908160pt;}
.ws54{word-spacing:-0.907904pt;}
.ws213{word-spacing:-0.905728pt;}
.wsb{word-spacing:-0.903936pt;}
.ws3c{word-spacing:-0.899712pt;}
.ws287{word-spacing:-0.897408pt;}
.ws210{word-spacing:-0.895488pt;}
.wsf5{word-spacing:-0.892160pt;}
.ws293{word-spacing:-0.891264pt;}
.wsbb{word-spacing:-0.887040pt;}
.ws16{word-spacing:-0.886912pt;}
.ws2e8{word-spacing:-0.882816pt;}
.ws217{word-spacing:-0.881664pt;}
.ws308{word-spacing:-0.878592pt;}
.wsaf{word-spacing:-0.876416pt;}
.ws2dc{word-spacing:-0.874368pt;}
.ws249{word-spacing:-0.871168pt;}
.ws315{word-spacing:-0.870144pt;}
.wsc4{word-spacing:-0.865920pt;}
.ws36{word-spacing:-0.860672pt;}
.ws2bc{word-spacing:-0.857472pt;}
.ws93{word-spacing:-0.855424pt;}
.ws107{word-spacing:-0.850176pt;}
.ws1df{word-spacing:-0.849024pt;}
.ws62{word-spacing:-0.844928pt;}
.ws8{word-spacing:-0.836352pt;}
.ws18b{word-spacing:-0.834432pt;}
.wsd0{word-spacing:-0.818688pt;}
.ws13e{word-spacing:-0.813440pt;}
.wsef{word-spacing:-0.808192pt;}
.ws38{word-spacing:-0.802944pt;}
.ws15f{word-spacing:-0.797696pt;}
.ws35d{word-spacing:-0.794112pt;}
.ws166{word-spacing:-0.787200pt;}
.ws224{word-spacing:-0.776704pt;}
.ws1ac{word-spacing:-0.771456pt;}
.ws94{word-spacing:-0.745216pt;}
.wsf6{word-spacing:-0.697984pt;}
.ws275{word-spacing:-0.682240pt;}
.ws175{word-spacing:-0.582528pt;}
.ws195{word-spacing:-0.577280pt;}
.ws95{word-spacing:-0.551040pt;}
.wscb{word-spacing:-0.540544pt;}
.ws2d6{word-spacing:-0.498432pt;}
.ws2c0{word-spacing:-0.468864pt;}
.ws124{word-spacing:-0.464640pt;}
.ws117{word-spacing:-0.430848pt;}
.ws184{word-spacing:-0.409344pt;}
.ws3d{word-spacing:-0.350592pt;}
.ws23{word-spacing:-0.304384pt;}
.ws212{word-spacing:-0.283008pt;}
.ws14d{word-spacing:-0.270336pt;}
.ws305{word-spacing:-0.257664pt;}
.ws35c{word-spacing:-0.240768pt;}
.ws1de{word-spacing:-0.232320pt;}
.ws1e0{word-spacing:-0.215424pt;}
.ws342{word-spacing:-0.202752pt;}
.wsbd{word-spacing:-0.194304pt;}
.ws14f{word-spacing:-0.168960pt;}
.ws211{word-spacing:-0.164736pt;}
.ws20e{word-spacing:-0.160512pt;}
.ws238{word-spacing:-0.157440pt;}
.ws321{word-spacing:-0.152064pt;}
.ws1ce{word-spacing:-0.147840pt;}
.ws1ca{word-spacing:-0.139392pt;}
.ws118{word-spacing:-0.126720pt;}
.ws333{word-spacing:-0.118272pt;}
.ws1cd{word-spacing:-0.114048pt;}
.ws265{word-spacing:-0.099712pt;}
.ws335{word-spacing:-0.088704pt;}
.ws24f{word-spacing:-0.057728pt;}
.ws25c{word-spacing:-0.041984pt;}
.wsc{word-spacing:-0.006400pt;}
.ws7{word-spacing:0.000000pt;}
.wsbc{word-spacing:0.008448pt;}
.ws241{word-spacing:0.036736pt;}
.ws14c{word-spacing:0.059136pt;}
.ws2d{word-spacing:0.062976pt;}
.ws9f{word-spacing:0.068224pt;}
.ws6{word-spacing:0.094720pt;}
.ws6a{word-spacing:0.101376pt;}
.ws74{word-spacing:0.104960pt;}
.ws1c5{word-spacing:0.122496pt;}
.ws1c3{word-spacing:0.123136pt;}
.ws9b{word-spacing:0.152192pt;}
.wsd3{word-spacing:0.162688pt;}
.ws86{word-spacing:0.167936pt;}
.ws1b9{word-spacing:0.199424pt;}
.ws168{word-spacing:0.246656pt;}
.ws1a{word-spacing:0.251008pt;}
.ws1f{word-spacing:0.255744pt;}
.ws19{word-spacing:0.274688pt;}
.ws282{word-spacing:0.278144pt;}
.ws277{word-spacing:0.283392pt;}
.ws22{word-spacing:0.288640pt;}
.ws20a{word-spacing:0.288896pt;}
.ws1f1{word-spacing:0.293632pt;}
.ws18c{word-spacing:0.293888pt;}
.ws121{word-spacing:0.298368pt;}
.ws256{word-spacing:0.299136pt;}
.ws110{word-spacing:0.309632pt;}
.ws33{word-spacing:0.314880pt;}
.ws61{word-spacing:0.320128pt;}
.ws155{word-spacing:0.325376pt;}
.ws2f{word-spacing:0.330624pt;}
.ws78{word-spacing:0.335872pt;}
.ws2dd{word-spacing:0.337920pt;}
.wsff{word-spacing:0.341120pt;}
.ws1a6{word-spacing:0.346368pt;}
.ws2d1{word-spacing:0.350592pt;}
.ws70{word-spacing:0.351616pt;}
.ws2c4{word-spacing:0.354816pt;}
.ws2a{word-spacing:0.356864pt;}
.ws18{word-spacing:0.359936pt;}
.wsab{word-spacing:0.362112pt;}
.ws25b{word-spacing:0.367360pt;}
.ws2e5{word-spacing:0.367488pt;}
.ws28e{word-spacing:0.371712pt;}
.ws6f{word-spacing:0.372608pt;}
.ws194{word-spacing:0.377856pt;}
.ws28f{word-spacing:0.380160pt;}
.ws90{word-spacing:0.383104pt;}
.ws31{word-spacing:0.388352pt;}
.wse{word-spacing:0.388608pt;}
.ws2b1{word-spacing:0.392832pt;}
.ws101{word-spacing:0.393600pt;}
.ws298{word-spacing:0.397056pt;}
.ws16a{word-spacing:0.398848pt;}
.ws2e2{word-spacing:0.401280pt;}
.ws221{word-spacing:0.404096pt;}
.ws2b3{word-spacing:0.405504pt;}
.ws60{word-spacing:0.409344pt;}
.ws330{word-spacing:0.409728pt;}
.ws2e3{word-spacing:0.413952pt;}
.ws2e4{word-spacing:0.418176pt;}
.ws1f8{word-spacing:0.419840pt;}
.ws27a{word-spacing:0.430336pt;}
.ws1fa{word-spacing:0.446080pt;}
.wsf{word-spacing:0.524800pt;}
.ws10{word-spacing:0.601600pt;}
.ws11{word-spacing:0.646400pt;}
.ws319{word-spacing:0.768768pt;}
.ws34b{word-spacing:0.832128pt;}
.ws220{word-spacing:1.049600pt;}
.ws350{word-spacing:1.072896pt;}
.ws2b2{word-spacing:1.077120pt;}
.ws34a{word-spacing:1.085568pt;}
.ws358{word-spacing:1.089792pt;}
.ws314{word-spacing:1.098240pt;}
.ws318{word-spacing:1.102464pt;}
.ws2bf{word-spacing:1.110912pt;}
.ws344{word-spacing:1.115136pt;}
.ws1d7{word-spacing:1.132032pt;}
.ws183{word-spacing:1.175552pt;}
.ws2a1{word-spacing:1.178496pt;}
.ws73{word-spacing:1.186048pt;}
.wsd1{word-spacing:1.191296pt;}
.ws25a{word-spacing:1.196544pt;}
.ws4e{word-spacing:1.201792pt;}
.ws92{word-spacing:1.212288pt;}
.ws26e{word-spacing:1.233280pt;}
.ws268{word-spacing:1.254272pt;}
.wscf{word-spacing:1.275264pt;}
.wsc5{word-spacing:1.285760pt;}
.ws1ff{word-spacing:1.296256pt;}
.ws230{word-spacing:1.317248pt;}
.ws1f0{word-spacing:1.326080pt;}
.ws1f7{word-spacing:1.343488pt;}
.ws1dd{word-spacing:1.345024pt;}
.ws20b{word-spacing:1.378176pt;}
.ws123{word-spacing:1.416064pt;}
.ws216{word-spacing:1.458944pt;}
.ws1f2{word-spacing:1.529728pt;}
.ws96{word-spacing:1.537664pt;}
.ws17{word-spacing:1.539200pt;}
.ws1d{word-spacing:1.543936pt;}
.ws23e{word-spacing:1.553408pt;}
.wsa3{word-spacing:1.558144pt;}
.ws21f{word-spacing:1.574400pt;}
.ws17b{word-spacing:1.584896pt;}
.wsbe{word-spacing:1.590144pt;}
.ws9a{word-spacing:1.595392pt;}
.ws23a{word-spacing:1.600640pt;}
.ws2f0{word-spacing:1.605120pt;}
.ws1c1{word-spacing:1.605504pt;}
.ws7a{word-spacing:1.605888pt;}
.wse7{word-spacing:1.611136pt;}
.ws247{word-spacing:1.616384pt;}
.ws20c{word-spacing:1.619712pt;}
.ws27d{word-spacing:1.621632pt;}
.ws33a{word-spacing:1.622016pt;}
.ws352{word-spacing:1.626240pt;}
.ws15{word-spacing:1.626880pt;}
.ws14{word-spacing:1.632128pt;}
.wsc3{word-spacing:1.637376pt;}
.ws29{word-spacing:1.642624pt;}
.ws28d{word-spacing:1.647360pt;}
.ws13a{word-spacing:1.647872pt;}
.ws307{word-spacing:1.651584pt;}
.ws196{word-spacing:1.653120pt;}
.ws1a0{word-spacing:1.658368pt;}
.ws336{word-spacing:1.660032pt;}
.ws5a{word-spacing:1.663616pt;}
.ws341{word-spacing:1.668480pt;}
.wse2{word-spacing:1.668864pt;}
.ws81{word-spacing:1.674112pt;}
.ws2ea{word-spacing:1.676928pt;}
.ws104{word-spacing:1.679360pt;}
.ws189{word-spacing:1.684608pt;}
.ws296{word-spacing:1.685376pt;}
.wsd9{word-spacing:1.689856pt;}
.ws2ad{word-spacing:1.693824pt;}
.ws5d{word-spacing:1.695104pt;}
.ws248{word-spacing:1.700352pt;}
.wsda{word-spacing:1.705600pt;}
.ws5e{word-spacing:1.721344pt;}
.ws109{word-spacing:1.731840pt;}
.ws22a{word-spacing:1.758080pt;}
.ws21c{word-spacing:1.763328pt;}
.ws223{word-spacing:1.768576pt;}
.ws2eb{word-spacing:2.035968pt;}
.ws351{word-spacing:2.090880pt;}
.ws2ac{word-spacing:2.335872pt;}
.ws2d0{word-spacing:2.352768pt;}
.ws346{word-spacing:2.356992pt;}
.ws339{word-spacing:2.365440pt;}
.ws2d8{word-spacing:2.369664pt;}
.ws2b9{word-spacing:2.373888pt;}
.ws2ef{word-spacing:2.378112pt;}
.ws2bb{word-spacing:2.399232pt;}
.ws22f{word-spacing:2.414080pt;}
.ws2ec{word-spacing:2.420352pt;}
.ws285{word-spacing:2.424576pt;}
.ws5c{word-spacing:2.429824pt;}
.ws246{word-spacing:2.440320pt;}
.ws10a{word-spacing:2.456064pt;}
.ws24e{word-spacing:2.477056pt;}
.ws24{word-spacing:2.487552pt;}
.ws4a{word-spacing:2.513792pt;}
.wsac{word-spacing:2.519040pt;}
.ws271{word-spacing:2.529536pt;}
.ws84{word-spacing:2.555776pt;}
.ws23f{word-spacing:2.576384pt;}
.ws1f9{word-spacing:2.587264pt;}
.ws283{word-spacing:2.603008pt;}
.ws190{word-spacing:2.604800pt;}
.ws215{word-spacing:2.618752pt;}
.ws76{word-spacing:2.629248pt;}
.ws1dc{word-spacing:2.666368pt;}
.ws1f4{word-spacing:2.718464pt;}
.ws20{word-spacing:2.794240pt;}
.ws45{word-spacing:2.833920pt;}
.ws130{word-spacing:2.844416pt;}
.ws97{word-spacing:2.849664pt;}
.ws1b1{word-spacing:2.860160pt;}
.ws2db{word-spacing:2.872320pt;}
.ws4c{word-spacing:2.881152pt;}
.ws327{word-spacing:2.884992pt;}
.ws80{word-spacing:2.886400pt;}
.ws5b{word-spacing:2.891648pt;}
.ws2cf{word-spacing:2.893440pt;}
.wsf8{word-spacing:2.896896pt;}
.ws297{word-spacing:2.897664pt;}
.ws42{word-spacing:2.901888pt;}
.ws56{word-spacing:2.902144pt;}
.ws3b{word-spacing:2.906112pt;}
.ws71{word-spacing:2.907392pt;}
.ws1c0{word-spacing:2.907904pt;}
.ws1a5{word-spacing:2.912640pt;}
.ws3e{word-spacing:2.914560pt;}
.wse9{word-spacing:2.917888pt;}
.ws2c6{word-spacing:2.918784pt;}
.ws72{word-spacing:2.923136pt;}
.ws2ca{word-spacing:2.927232pt;}
.ws29a{word-spacing:2.931456pt;}
.ws2c{word-spacing:2.933632pt;}
.ws232{word-spacing:2.938880pt;}
.wsc2{word-spacing:2.944128pt;}
.ws108{word-spacing:2.949376pt;}
.ws289{word-spacing:2.952576pt;}
.wse4{word-spacing:2.965120pt;}
.ws2b4{word-spacing:2.965248pt;}
.wse1{word-spacing:2.970368pt;}
.ws2b5{word-spacing:2.977920pt;}
.ws164{word-spacing:2.991360pt;}
.ws28a{word-spacing:2.999040pt;}
.ws1a3{word-spacing:3.022848pt;}
.ws174{word-spacing:3.049088pt;}
.ws2be{word-spacing:3.303168pt;}
.ws2da{word-spacing:3.370752pt;}
.ws32f{word-spacing:3.501696pt;}
.ws2a7{word-spacing:3.522816pt;}
.ws299{word-spacing:3.586176pt;}
.ws193{word-spacing:3.594880pt;}
.ws288{word-spacing:3.615744pt;}
.ws359{word-spacing:3.619968pt;}
.ws29f{word-spacing:3.628416pt;}
.ws43{word-spacing:3.632640pt;}
.ws3a{word-spacing:3.636864pt;}
.ws2e7{word-spacing:3.641088pt;}
.ws3f{word-spacing:3.645312pt;}
.ws2b6{word-spacing:3.666432pt;}
.ws35a{word-spacing:3.674880pt;}
.ws201{word-spacing:3.720832pt;}
.wsa6{word-spacing:3.736576pt;}
.ws15d{word-spacing:3.768064pt;}
.ws269{word-spacing:3.778560pt;}
.ws55{word-spacing:3.789056pt;}
.ws25d{word-spacing:3.794304pt;}
.ws259{word-spacing:3.804800pt;}
.wsf9{word-spacing:3.825792pt;}
.wsc7{word-spacing:3.841536pt;}
.ws21e{word-spacing:3.899264pt;}
.ws14a{word-spacing:3.902464pt;}
.wsee{word-spacing:3.915008pt;}
.ws240{word-spacing:3.954560pt;}
.ws1c{word-spacing:4.101376pt;}
.ws9e{word-spacing:4.103936pt;}
.ws1bb{word-spacing:4.114432pt;}
.ws19a{word-spacing:4.119680pt;}
.ws13c{word-spacing:4.124928pt;}
.ws1c2{word-spacing:4.129792pt;}
.wsf2{word-spacing:4.130176pt;}
.ws8b{word-spacing:4.135424pt;}
.ws1db{word-spacing:4.139264pt;}
.ws21b{word-spacing:4.140672pt;}
.ws7c{word-spacing:4.145920pt;}
.ws4d{word-spacing:4.151168pt;}
.ws1da{word-spacing:4.153472pt;}
.ws2e{word-spacing:4.156416pt;}
.ws120{word-spacing:4.158208pt;}
.wsf3{word-spacing:4.161664pt;}
.ws6b{word-spacing:4.166912pt;}
.ws49{word-spacing:4.172160pt;}
.ws1a9{word-spacing:4.177408pt;}
.ws2cc{word-spacing:4.181760pt;}
.ws139{word-spacing:4.182656pt;}
.ws13f{word-spacing:4.187904pt;}
.ws89{word-spacing:4.193152pt;}
.ws2c9{word-spacing:4.194432pt;}
.ws19f{word-spacing:4.198400pt;}
.ws35b{word-spacing:4.198656pt;}
.ws337{word-spacing:4.202880pt;}
.ws6c{word-spacing:4.203648pt;}
.ws2b{word-spacing:4.208896pt;}
.ws349{word-spacing:4.211328pt;}
.wsdf{word-spacing:4.214144pt;}
.ws131{word-spacing:4.219392pt;}
.ws33b{word-spacing:4.224000pt;}
.ws1b2{word-spacing:4.224640pt;}
.ws2fb{word-spacing:4.236672pt;}
.ws334{word-spacing:4.240896pt;}
.ws29d{word-spacing:4.245120pt;}
.ws26a{word-spacing:4.250880pt;}
.ws39{word-spacing:4.253568pt;}
.ws1af{word-spacing:4.256128pt;}
.ws2cd{word-spacing:4.262016pt;}
.ws2e6{word-spacing:4.274688pt;}
.ws35{word-spacing:4.277120pt;}
.ws197{word-spacing:4.287616pt;}
.ws26b{word-spacing:4.334848pt;}
.ws2c8{word-spacing:4.612608pt;}
.ws1ae{word-spacing:4.696960pt;}
.ws357{word-spacing:4.916736pt;}
.ws2ce{word-spacing:4.929408pt;}
.ws338{word-spacing:4.937856pt;}
.ws2bd{word-spacing:4.946304pt;}
.ws2c7{word-spacing:4.975872pt;}
.wsa9{word-spacing:4.990848pt;}
.ws27b{word-spacing:5.006592pt;}
.ws15e{word-spacing:5.011840pt;}
.wsbf{word-spacing:5.017088pt;}
.ws171{word-spacing:5.022336pt;}
.wsad{word-spacing:5.043328pt;}
.ws105{word-spacing:5.122048pt;}
.ws141{word-spacing:5.148288pt;}
.ws1b3{word-spacing:5.164032pt;}
.ws273{word-spacing:5.169280pt;}
.ws17e{word-spacing:5.405440pt;}
.ws148{word-spacing:5.413248pt;}
.ws11f{word-spacing:5.427456pt;}
.ws147{word-spacing:5.432192pt;}
.wse6{word-spacing:5.436928pt;}
.ws83{word-spacing:5.442176pt;}
.ws149{word-spacing:5.446400pt;}
.wsa5{word-spacing:5.447424pt;}
.ws2f2{word-spacing:5.448960pt;}
.ws23b{word-spacing:5.452672pt;}
.wse0{word-spacing:5.457920pt;}
.ws2c5{word-spacing:5.461632pt;}
.wscc{word-spacing:5.463168pt;}
.ws347{word-spacing:5.465856pt;}
.ws15c{word-spacing:5.468416pt;}
.ws5f{word-spacing:5.473664pt;}
.ws355{word-spacing:5.474304pt;}
.ws30e{word-spacing:5.478528pt;}
.ws91{word-spacing:5.478912pt;}
.ws40{word-spacing:5.482752pt;}
.ws44{word-spacing:5.484160pt;}
.wsc1{word-spacing:5.489408pt;}
.ws34c{word-spacing:5.491200pt;}
.wsea{word-spacing:5.494656pt;}
.ws2d9{word-spacing:5.499648pt;}
.wsae{word-spacing:5.499904pt;}
.ws28{word-spacing:5.505152pt;}
.ws30c{word-spacing:5.508096pt;}
.ws1f6{word-spacing:5.510400pt;}
.ws2f8{word-spacing:5.512320pt;}
.ws16b{word-spacing:5.515648pt;}
.ws354{word-spacing:5.516544pt;}
.ws173{word-spacing:5.520896pt;}
.ws2a3{word-spacing:5.524992pt;}
.ws6e{word-spacing:5.526144pt;}
.ws1aa{word-spacing:5.531392pt;}
.ws47{word-spacing:5.536640pt;}
.ws2a2{word-spacing:5.546112pt;}
.ws243{word-spacing:5.547136pt;}
.ws258{word-spacing:5.552384pt;}
.ws300{word-spacing:5.567232pt;}
.ws180{word-spacing:5.573376pt;}
.ws172{word-spacing:5.615360pt;}
.ws31e{word-spacing:5.879808pt;}
.ws31f{word-spacing:6.095232pt;}
.wseb{word-spacing:6.182144pt;}
.ws226{word-spacing:6.192640pt;}
.ws304{word-spacing:6.200832pt;}
.ws2f1{word-spacing:6.205056pt;}
.ws2ee{word-spacing:6.213504pt;}
.ws331{word-spacing:6.217728pt;}
.ws328{word-spacing:6.226176pt;}
.ws28b{word-spacing:6.230400pt;}
.ws31d{word-spacing:6.234624pt;}
.ws2f7{word-spacing:6.238848pt;}
.ws41{word-spacing:6.243072pt;}
.ws356{word-spacing:6.251520pt;}
.ws58{word-spacing:6.271360pt;}
.ws4b{word-spacing:6.281856pt;}
.ws163{word-spacing:6.287104pt;}
.ws17c{word-spacing:6.308096pt;}
.ws264{word-spacing:6.313344pt;}
.ws34{word-spacing:6.339584pt;}
.ws30{word-spacing:6.371072pt;}
.ws17a{word-spacing:6.407808pt;}
.ws133{word-spacing:6.413056pt;}
.ws1f5{word-spacing:6.428800pt;}
.ws21a{word-spacing:6.434048pt;}
.ws270{word-spacing:6.455040pt;}
.wsce{word-spacing:6.465536pt;}
.ws187{word-spacing:6.549504pt;}
.ws22b{word-spacing:6.601984pt;}
.ws1e{word-spacing:6.654080pt;}
.ws276{word-spacing:6.670208pt;}
.ws332{word-spacing:6.673920pt;}
.ws177{word-spacing:6.675456pt;}
.wsde{word-spacing:6.685952pt;}
.ws63{word-spacing:6.691200pt;}
.ws9d{word-spacing:6.696448pt;}
.wsa2{word-spacing:6.706176pt;}
.ws156{word-spacing:6.706944pt;}
.ws263{word-spacing:6.712192pt;}
.ws157{word-spacing:6.717440pt;}
.ws12{word-spacing:6.727936pt;}
.ws59{word-spacing:6.733184pt;}
.ws51{word-spacing:6.738432pt;}
.ws162{word-spacing:6.743680pt;}
.ws159{word-spacing:6.748928pt;}
.ws142{word-spacing:6.754176pt;}
.ws2a0{word-spacing:6.758400pt;}
.ws6d{word-spacing:6.759424pt;}
.ws302{word-spacing:6.762624pt;}
.ws13{word-spacing:6.764672pt;}
.ws2b0{word-spacing:6.766848pt;}
.wsd4{word-spacing:6.769920pt;}
.ws2f5{word-spacing:6.771072pt;}
.ws1a1{word-spacing:6.780416pt;}
.ws1b6{word-spacing:6.785664pt;}
.ws310{word-spacing:6.787968pt;}
.ws23c{word-spacing:6.790912pt;}
.ws1bc{word-spacing:6.796160pt;}
.ws2af{word-spacing:6.796416pt;}
.ws311{word-spacing:6.800640pt;}
.ws52{word-spacing:6.817152pt;}
.ws2ed{word-spacing:6.825984pt;}
.ws284{word-spacing:6.827648pt;}
.ws234{word-spacing:6.927360pt;}
.ws29b{word-spacing:7.147008pt;}
.ws34e{word-spacing:7.180800pt;}
.ws2ae{word-spacing:7.214592pt;}
.ws325{word-spacing:7.299072pt;}
.ws326{word-spacing:7.349760pt;}
.ws324{word-spacing:7.425792pt;}
.ws313{word-spacing:7.442688pt;}
.ws22d{word-spacing:7.452160pt;}
.ws29c{word-spacing:7.455360pt;}
.ws301{word-spacing:7.459584pt;}
.ws2b8{word-spacing:7.472256pt;}
.ws323{word-spacing:7.480704pt;}
.ws2f3{word-spacing:7.484928pt;}
.ws16f{word-spacing:7.494144pt;}
.ws2ab{word-spacing:7.510272pt;}
.wse3{word-spacing:7.515136pt;}
.ws257{word-spacing:7.525632pt;}
.ws158{word-spacing:7.546624pt;}
.wsfa{word-spacing:7.562368pt;}
.ws53{word-spacing:7.593856pt;}
.ws1a7{word-spacing:7.599104pt;}
.ws50{word-spacing:7.604352pt;}
.ws179{word-spacing:7.609600pt;}
.ws132{word-spacing:7.620096pt;}
.wsdc{word-spacing:7.630592pt;}
.ws13b{word-spacing:7.662080pt;}
.ws13d{word-spacing:7.677824pt;}
.ws134{word-spacing:7.698816pt;}
.wsb2{word-spacing:7.709312pt;}
.wsa1{word-spacing:7.719680pt;}
.ws254{word-spacing:7.725056pt;}
.ws188{word-spacing:7.756544pt;}
.ws178{word-spacing:7.761792pt;}
.wsb0{word-spacing:7.819520pt;}
.ws1b{word-spacing:7.918592pt;}
.ws2f4{word-spacing:7.941120pt;}
.ws1fc{word-spacing:8.018944pt;}
.ws136{word-spacing:8.024192pt;}
.ws2d3{word-spacing:8.025600pt;}
.ws146{word-spacing:8.029440pt;}
.wsdb{word-spacing:8.034688pt;}
.ws2a9{word-spacing:8.038272pt;}
.ws48{word-spacing:8.039936pt;}
.ws26c{word-spacing:8.045184pt;}
.ws316{word-spacing:8.046720pt;}
.ws57{word-spacing:8.050432pt;}
.ws34d{word-spacing:8.059392pt;}
.ws182{word-spacing:8.060928pt;}
.ws32c{word-spacing:8.063616pt;}
.wsf1{word-spacing:8.066176pt;}
.ws343{word-spacing:8.067840pt;}
.ws1b4{word-spacing:8.071424pt;}
.ws24b{word-spacing:8.076672pt;}
.ws32{word-spacing:8.081920pt;}
.ws185{word-spacing:8.087168pt;}
.ws312{word-spacing:8.093184pt;}
.wsfd{word-spacing:8.102912pt;}
.ws22e{word-spacing:8.176384pt;}
.ws1fd{word-spacing:8.186880pt;}
.ws2a5{word-spacing:8.456448pt;}
.ws2a6{word-spacing:8.557824pt;}
.ws22c{word-spacing:8.648704pt;}
.ws345{word-spacing:8.752128pt;}
.ws2d4{word-spacing:8.760576pt;}
.ws317{word-spacing:8.794368pt;}
.ws30d{word-spacing:8.807040pt;}
.ws30f{word-spacing:8.811264pt;}
.ws2d2{word-spacing:8.815488pt;}
.ws227{word-spacing:8.816640pt;}
.ws2a4{word-spacing:8.819712pt;}
.ws135{word-spacing:8.837632pt;}
.ws10e{word-spacing:8.848128pt;}
.ws274{word-spacing:8.853376pt;}
.ws255{word-spacing:8.911104pt;}
.ws46{word-spacing:8.984576pt;}
.ws18d{word-spacing:8.989824pt;}
.ws25e{word-spacing:9.005568pt;}
.ws192{word-spacing:9.010816pt;}
.wsfc{word-spacing:9.026560pt;}
.wsfe{word-spacing:9.052800pt;}
.ws278{word-spacing:9.267968pt;}
.ws228{word-spacing:9.278464pt;}
.ws114{word-spacing:9.282560pt;}
.ws7d{word-spacing:9.288960pt;}
.ws2c2{word-spacing:9.292800pt;}
.ws7e{word-spacing:9.294208pt;}
.ws239{word-spacing:9.299456pt;}
.ws16c{word-spacing:9.304704pt;}
.ws88{word-spacing:9.309952pt;}
.ws137{word-spacing:9.315200pt;}
.wse5{word-spacing:9.320448pt;}
.ws229{word-spacing:9.325696pt;}
.ws2c3{word-spacing:9.326592pt;}
.ws8d{word-spacing:9.330944pt;}
.ws290{word-spacing:9.335040pt;}
.ws236{word-spacing:9.336192pt;}
.ws7f{word-spacing:9.341440pt;}
.ws18a{word-spacing:9.346688pt;}
.ws291{word-spacing:9.347712pt;}
.ws267{word-spacing:9.351936pt;}
.ws161{word-spacing:9.357184pt;}
.ws106{word-spacing:9.367680pt;}
.ws2fe{word-spacing:9.373056pt;}
.ws1ba{word-spacing:9.378176pt;}
.ws102{word-spacing:9.383424pt;}
.ws32e{word-spacing:9.723648pt;}
.ws2ff{word-spacing:9.791232pt;}
.ws2fc{word-spacing:9.841920pt;}
.ws32b{word-spacing:10.032000pt;}
.ws33f{word-spacing:10.040448pt;}
.ws2fd{word-spacing:10.065792pt;}
.ws32d{word-spacing:10.078464pt;}
.ws2c1{word-spacing:10.086912pt;}
.ws98{word-spacing:10.186368pt;}
.ws272{word-spacing:10.286080pt;}
.ws26f{word-spacing:10.296576pt;}
.ws281{word-spacing:10.506496pt;}
.wsb3{word-spacing:10.522240pt;}
.ws202{word-spacing:10.543232pt;}
.ws237{word-spacing:10.548480pt;}
.ws167{word-spacing:10.553728pt;}
.wsdd{word-spacing:10.564224pt;}
.wsed{word-spacing:10.569472pt;}
.wse8{word-spacing:10.574720pt;}
.ws15b{word-spacing:10.579968pt;}
.ws2de{word-spacing:10.581120pt;}
.wsec{word-spacing:10.585216pt;}
.ws16e{word-spacing:10.590464pt;}
.wsc9{word-spacing:10.595712pt;}
.ws2e0{word-spacing:10.598016pt;}
.wsd5{word-spacing:10.600960pt;}
.wsd6{word-spacing:10.606208pt;}
.ws294{word-spacing:10.606464pt;}
.ws34f{word-spacing:10.610688pt;}
.ws1b7{word-spacing:10.611456pt;}
.ws2e1{word-spacing:10.614912pt;}
.ws79{word-spacing:10.616704pt;}
.ws37{word-spacing:10.632448pt;}
.ws33c{word-spacing:10.636032pt;}
.ws2df{word-spacing:10.640256pt;}
.ws306{word-spacing:10.644480pt;}
.ws2a8{word-spacing:10.652928pt;}
.wsa8{word-spacing:10.663936pt;}
.ws244{word-spacing:10.679680pt;}
.ws2b7{word-spacing:11.294976pt;}
.ws1a8{word-spacing:11.309440pt;}
.wsa7{word-spacing:11.388160pt;}
.ws253{word-spacing:11.414400pt;}
.ws85{word-spacing:11.477376pt;}
.ws15a{word-spacing:11.508864pt;}
.ws143{word-spacing:11.577088pt;}
.ws214{word-spacing:11.834240pt;}
.ws10b{word-spacing:11.839488pt;}
.ws31c{word-spacing:11.844096pt;}
.ws181{word-spacing:11.849984pt;}
.ws10d{word-spacing:11.855232pt;}
.ws19d{word-spacing:11.865728pt;}
.ws2e9{word-spacing:11.877888pt;}
.ws186{word-spacing:11.886720pt;}
.ws1a2{word-spacing:11.891968pt;}
.ws4f{word-spacing:11.897216pt;}
.ws112{word-spacing:11.902464pt;}
.wscd{word-spacing:11.907712pt;}
.ws1ab{word-spacing:11.912960pt;}
.ws16d{word-spacing:11.923456pt;}
.ws8a{word-spacing:11.928704pt;}
.ws251{word-spacing:11.939200pt;}
.ws199{word-spacing:11.991680pt;}
.ws140{word-spacing:12.002176pt;}
.ws242{word-spacing:12.044160pt;}
.ws2d5{word-spacing:12.574848pt;}
.ws2d7{word-spacing:12.583296pt;}
.ws2ba{word-spacing:12.595968pt;}
.ws31b{word-spacing:12.617088pt;}
.ws24a{word-spacing:12.773632pt;}
.wsc8{word-spacing:12.852352pt;}
.ws222{word-spacing:12.857600pt;}
.wsc6{word-spacing:12.862848pt;}
.ws165{word-spacing:13.020288pt;}
.ws27{word-spacing:13.078016pt;}
.ws25{word-spacing:13.088512pt;}
.ws19b{word-spacing:13.120000pt;}
.ws7b{word-spacing:13.125248pt;}
.ws233{word-spacing:13.130496pt;}
.ws8f{word-spacing:13.135744pt;}
.ws26{word-spacing:13.140992pt;}
.wsc0{word-spacing:13.146240pt;}
.ws82{word-spacing:13.161984pt;}
.wsfb{word-spacing:13.172480pt;}
.ws231{word-spacing:14.022656pt;}
.ws1ad{word-spacing:14.033152pt;}
.ws111{word-spacing:14.090880pt;}
.ws25f{word-spacing:14.447744pt;}
.ws8c{word-spacing:14.452992pt;}
.ws87{word-spacing:14.458240pt;}
.ws10c{word-spacing:14.463488pt;}
.ws138{word-spacing:14.468736pt;}
.ws261{word-spacing:14.473984pt;}
.ws160{word-spacing:14.494976pt;}
.ws292{word-spacing:15.164160pt;}
.ws75{word-spacing:15.234944pt;}
.ws286{word-spacing:15.408128pt;}
.ws260{word-spacing:15.434368pt;}
.ws21d{word-spacing:15.702016pt;}
.ws2fa{word-spacing:15.709056pt;}
.wsb1{word-spacing:15.717760pt;}
.ws170{word-spacing:15.744000pt;}
.ws262{word-spacing:15.749248pt;}
.ws1b5{word-spacing:15.754496pt;}
.ws2f9{word-spacing:16.460928pt;}
.ws19c{word-spacing:16.462976pt;}
.wsd2{word-spacing:16.520704pt;}
.wsf0{word-spacing:16.557440pt;}
.ws17f{word-spacing:16.735872pt;}
.ws1fe{word-spacing:16.945792pt;}
.ws250{word-spacing:16.961536pt;}
.ws9c{word-spacing:16.966784pt;}
.ws17d{word-spacing:16.977280pt;}
.ws266{word-spacing:17.035008pt;}
.ws295{word-spacing:17.035392pt;}
.ws100{word-spacing:17.045504pt;}
.ws2aa{word-spacing:17.723904pt;}
.ws26d{word-spacing:17.837952pt;}
.wsf4{word-spacing:17.853696pt;}
.ws252{word-spacing:17.858944pt;}
.ws1b8{word-spacing:17.942912pt;}
.ws176{word-spacing:18.252544pt;}
.wsf7{word-spacing:18.263040pt;}
.ws200{word-spacing:18.284032pt;}
.ws245{word-spacing:18.289280pt;}
.ws198{word-spacing:18.305024pt;}
.ws309{word-spacing:19.531776pt;}
.ws30b{word-spacing:19.561344pt;}
.ws30a{word-spacing:19.595136pt;}
.wsd8{word-spacing:20.824064pt;}
.ws77{word-spacing:20.845056pt;}
.ws203{word-spacing:20.866048pt;}
.ws144{word-spacing:20.887040pt;}
.ws8e{word-spacing:20.913280pt;}
.ws24d{word-spacing:21.653248pt;}
.ws19e{word-spacing:21.684736pt;}
.ws32a{word-spacing:22.125312pt;}
.ws1b0{word-spacing:22.125568pt;}
.wsd7{word-spacing:22.130816pt;}
.ws329{word-spacing:22.154880pt;}
.ws1bd{word-spacing:22.172800pt;}
.ws1be{word-spacing:22.178048pt;}
.ws2cb{word-spacing:23.400960pt;}
.ws31a{word-spacing:25.994496pt;}
.ws322{word-spacing:27.270144pt;}
.ws145{word-spacing:28.559616pt;}
.ws103{word-spacing:31.146880pt;}
.ws204{word-spacing:33.618688pt;}
.ws235{word-spacing:34.883456pt;}
.wsd{word-spacing:37.433088pt;}
.ws320{word-spacing:49.720704pt;}
.ws99{word-spacing:56.578688pt;}
.ws33d{word-spacing:60.517248pt;}
.ws23d{word-spacing:64.082816pt;}
.ws116{word-spacing:104.058240pt;}
.ws11b{word-spacing:119.395584pt;}
.ws11d{word-spacing:119.433600pt;}
.ws11e{word-spacing:120.105216pt;}
.ws11a{word-spacing:120.109440pt;}
.ws11c{word-spacing:120.160128pt;}
.ws1e2{word-spacing:173.116416pt;}
.ws1e3{word-spacing:173.120640pt;}
.ws1cf{word-spacing:173.124864pt;}
.ws1cb{word-spacing:178.244352pt;}
.ws1d4{word-spacing:178.252800pt;}
.ws1d3{word-spacing:178.261248pt;}
.ws1d2{word-spacing:178.265472pt;}
.ws1d5{word-spacing:178.269696pt;}
.ws1d1{word-spacing:178.273920pt;}
.ws1cc{word-spacing:178.278144pt;}
.ws1d0{word-spacing:179.532672pt;}
.ws1e6{word-spacing:183.363840pt;}
.ws1e5{word-spacing:184.639488pt;}
.ws1eb{word-spacing:184.643712pt;}
.ws1ed{word-spacing:187.203456pt;}
.ws1c6{word-spacing:189.767424pt;}
.ws1c8{word-spacing:189.784320pt;}
.ws1c7{word-spacing:189.792768pt;}
.ws1d6{word-spacing:189.796992pt;}
.ws1e8{word-spacing:197.442432pt;}
.ws1e9{word-spacing:197.446656pt;}
.ws1e4{word-spacing:201.286272pt;}
.ws1ee{word-spacing:202.557696pt;}
.ws1ec{word-spacing:216.636288pt;}
.ws1e1{word-spacing:220.484352pt;}
.ws1ea{word-spacing:226.883712pt;}
.ws126{word-spacing:244.159872pt;}
.ws150{word-spacing:270.407808pt;}
.ws153{word-spacing:270.412032pt;}
.ws152{word-spacing:270.416256pt;}
.ws151{word-spacing:270.420480pt;}
.ws154{word-spacing:270.424704pt;}
.ws125{word-spacing:276.160896pt;}
.ws127{word-spacing:304.824960pt;}
.ws1e7{word-spacing:414.851712pt;}
.ws12c{word-spacing:491.859456pt;}
.ws129{word-spacing:491.901696pt;}
.ws12f{word-spacing:491.905920pt;}
.ws1c9{word-spacing:526.416000pt;}
.ws12b{word-spacing:558.433920pt;}
.ws12a{word-spacing:568.685568pt;}
.ws12e{word-spacing:616.002816pt;}
.ws12d{word-spacing:676.161024pt;}
._7b{margin-left:-349.096704pt;}
._7e{margin-left:-346.532736pt;}
._7d{margin-left:-337.573632pt;}
._7c{margin-left:-336.293760pt;}
._7a{margin-left:-331.305216pt;}
._7f{margin-left:-309.416448pt;}
._44{margin-left:-304.213632pt;}
._40{margin-left:-276.443904pt;}
._41{margin-left:-274.669824pt;}
._69{margin-left:-272.029824pt;}
._5d{margin-left:-271.007616pt;}
._42{margin-left:-244.579200pt;}
._43{margin-left:-242.977152pt;}
._ab{margin-left:-216.108288pt;}
._53{margin-left:-195.837312pt;}
._76{margin-left:-190.705152pt;}
._52{margin-left:-184.318464pt;}
._87{margin-left:-179.182080pt;}
._51{margin-left:-173.433216pt;}
._56{margin-left:-135.679104pt;}
._55{margin-left:-124.160256pt;}
._30{margin-left:-119.746176pt;}
._54{margin-left:-111.889408pt;}
._1f{margin-left:-105.105792pt;}
._4c{margin-left:-88.319616pt;}
._4f{margin-left:-78.076416pt;}
._10{margin-left:-74.492546pt;}
._4e{margin-left:-66.557568pt;}
._4b{margin-left:-65.281920pt;}
._c8{margin-left:-62.695168pt;}
._b{margin-left:-57.721344pt;}
._4d{margin-left:-55.300608pt;}
._4a{margin-left:-54.383872pt;}
._b1{margin-left:-47.058688pt;}
._ae{margin-left:-43.664768pt;}
._8{margin-left:-38.058240pt;}
._59{margin-left:-29.921792pt;}
._6e{margin-left:-23.193600pt;}
._58{margin-left:-21.189888pt;}
._a1{margin-left:-20.017408pt;}
._c{margin-left:-17.843200pt;}
._6d{margin-left:-16.341248pt;}
._a3{margin-left:-14.065920pt;}
._d{margin-left:-12.805120pt;}
._ad{margin-left:-11.869440pt;}
._1c{margin-left:-10.980096pt;}
._1d{margin-left:-8.771072pt;}
._e{margin-left:-7.609600pt;}
._11{margin-left:-6.272197pt;}
._f{margin-left:-5.038080pt;}
._12{margin-left:-4.121935pt;}
._9{margin-left:-2.450048pt;}
._3{margin-left:-1.267200pt;}
._0{width:0.937728pt;}
._1{width:1.847040pt;}
._2{width:2.964736pt;}
._1b{width:4.015744pt;}
._1a{width:5.675520pt;}
._14{width:6.769920pt;}
._16{width:8.050432pt;}
._15{width:9.330944pt;}
._18{width:10.797568pt;}
._17{width:11.891968pt;}
._a6{width:13.185280pt;}
._b0{width:14.403840pt;}
._9b{width:16.056832pt;}
._19{width:17.008768pt;}
._91{width:19.667328pt;}
._a8{width:21.418624pt;}
._92{width:22.513920pt;}
._1e{width:26.900480pt;}
._3e{width:31.248640pt;}
._9e{width:32.878612pt;}
._6f{width:33.875072pt;}
._a5{width:35.732096pt;}
._78{width:36.728133pt;}
._79{width:37.916160pt;}
._9d{width:39.136000pt;}
._b2{width:41.648896pt;}
._6b{width:42.700416pt;}
._a7{width:46.440832pt;}
._60{width:48.411264pt;}
._8a{width:49.513728pt;}
._cf{width:51.887616pt;}
._5f{width:53.758848pt;}
._d6{width:56.483328pt;}
._ce{width:57.835008pt;}
._d5{width:58.983936pt;}
._d7{width:60.318720pt;}
._d0{width:61.416960pt;}
._d3{width:62.785536pt;}
._d4{width:64.027392pt;}
._65{width:65.277696pt;}
._cd{width:66.688512pt;}
._d2{width:67.905024pt;}
._d1{width:69.235584pt;}
._63{width:70.164992pt;}
._5e{width:75.765888pt;}
._49{width:77.970816pt;}
._cb{width:79.537920pt;}
._62{width:81.379840pt;}
._66{width:83.863296pt;}
._6c{width:85.552896pt;}
._ca{width:87.795840pt;}
._cc{width:89.831808pt;}
._61{width:91.952384pt;}
._57{width:93.840384pt;}
._7{width:100.598784pt;}
._6a{width:117.123072pt;}
._24{width:121.106304pt;}
._22{width:128.637952pt;}
._64{width:134.733056pt;}
._68{width:136.131072pt;}
._74{width:157.905792pt;}
._75{width:159.185664pt;}
._73{width:170.670720pt;}
._82{width:178.244352pt;}
._8e{width:179.803008pt;}
._85{width:180.808320pt;}
._81{width:184.812672pt;}
._a2{width:187.613184pt;}
._84{width:189.906816pt;}
._83{width:191.047296pt;}
._67{width:197.336832pt;}
._aa{width:198.917632pt;}
._86{width:201.425664pt;}
._97{width:202.629504pt;}
._21{width:205.560960pt;}
._72{width:207.685632pt;}
._8f{width:217.992192pt;}
._ac{width:220.809728pt;}
._77{width:228.112896pt;}
._9a{width:230.001024pt;}
._3a{width:232.869120pt;}
._33{width:235.496448pt;}
._38{width:239.961216pt;}
._88{width:247.729152pt;}
._2f{width:250.217088pt;}
._34{width:265.431936pt;}
._23{width:267.087744pt;}
._37{width:270.940032pt;}
._2e{width:273.026688pt;}
._5c{width:274.070016pt;}
._25{width:282.784128pt;}
._5b{width:284.186496pt;}
._9c{width:285.542528pt;}
._5a{width:292.174080pt;}
._3c{width:293.555328pt;}
._94{width:295.245056pt;}
._20{width:301.247232pt;}
._3b{width:303.921024pt;}
._93{width:305.661312pt;}
._35{width:311.731200pt;}
._26{width:315.625728pt;}
._31{width:322.924800pt;}
._a0{width:324.539904pt;}
._39{width:330.675840pt;}
._8c{width:333.087744pt;}
._8b{width:342.541184pt;}
._27{width:343.689984pt;}
._95{width:348.378624pt;}
._2d{width:349.552896pt;}
._36{width:353.050368pt;}
._2a{width:355.779072pt;}
._a9{width:358.018048pt;}
._8d{width:359.014656pt;}
._29{width:369.270656pt;}
._a4{width:377.000448pt;}
._2b{width:385.701888pt;}
._99{width:389.740032pt;}
._70{width:397.664512pt;}
._80{width:400.033920pt;}
._98{width:401.305344pt;}
._89{width:411.544320pt;}
._32{width:414.125312pt;}
._28{width:416.824320pt;}
._96{width:430.358016pt;}
._2c{width:432.022272pt;}
._3d{width:433.082624pt;}
._3f{width:458.067456pt;}
._af{width:465.480576pt;}
._90{width:472.737408pt;}
._48{width:481.257216pt;}
._47{width:492.776064pt;}
._46{width:504.294912pt;}
._45{width:514.766208pt;}
._50{width:522.863616pt;}
._c7{width:569.589248pt;}
._c5{width:597.210240pt;}
._b5{width:612.560256pt;}
._b9{width:631.555584pt;}
._c0{width:633.046656pt;}
._c2{width:641.811456pt;}
._71{width:699.194496pt;}
._c4{width:732.682496pt;}
._b7{width:742.473600pt;}
._d8{width:744.226816pt;}
._bc{width:764.299008pt;}
._b6{width:810.644736pt;}
._a{width:834.575616pt;}
._9f{width:848.123136pt;}
._4{width:880.615296pt;}
._ba{width:881.633280pt;}
._b8{width:941.276288pt;}
._5{width:943.802112pt;}
._bf{width:958.742528pt;}
._bd{width:972.964608pt;}
._b4{width:992.103552pt;}
._bb{width:993.788928pt;}
._c3{width:1003.664640pt;}
._be{width:1029.557760pt;}
._c1{width:1034.077440pt;}
._6{width:1048.295424pt;}
._c6{width:1210.104576pt;}
._c9{width:1247.997568pt;}
._b3{width:1258.214912pt;}
._13{width:1421.429888pt;}
.fs15{font-size:10.240000pt;}
.fse{font-size:25.600000pt;}
.fs14{font-size:30.776576pt;}
.fs13{font-size:34.362368pt;}
.fs4{font-size:34.560000pt;}
.fs12{font-size:37.120000pt;}
.fsd{font-size:41.021696pt;}
.fs11{font-size:41.339648pt;}
.fs1{font-size:42.240000pt;}
.fsf{font-size:44.934400pt;}
.fs10{font-size:45.024269pt;}
.fs0{font-size:47.360000pt;}
.fs9{font-size:51.746652pt;}
.fsb{font-size:52.062922pt;}
.fs7{font-size:52.109444pt;}
.fs5{font-size:52.480000pt;}
.fs8{font-size:59.540999pt;}
.fs2{font-size:64.000000pt;}
.fsa{font-size:66.972378pt;}
.fs6{font-size:70.688111pt;}
.fs3{font-size:84.480000pt;}
.fsc{font-size:178.626449pt;}
.y0{bottom:0.000000pt;}
.y257{bottom:8.245497pt;}
.y24a{bottom:26.759626pt;}
.y248{bottom:29.410939pt;}
.y246{bottom:34.443832pt;}
.y255{bottom:34.443852pt;}
.y252{bottom:36.892898pt;}
.y244{bottom:37.948786pt;}
.y24e{bottom:40.937145pt;}
.y24c{bottom:41.274150pt;}
.y251{bottom:42.105484pt;}
.y254{bottom:51.295023pt;}
.y287{bottom:53.440000pt;}
.y4{bottom:57.920101pt;}
.y250{bottom:58.507342pt;}
.y3a4{bottom:71.359141pt;}
.y3{bottom:71.679781pt;}
.yad{bottom:72.616960pt;}
.y1bb{bottom:72.944581pt;}
.y8f{bottom:73.323200pt;}
.y22c{bottom:73.908160pt;}
.y209{bottom:73.921280pt;}
.y3dd{bottom:74.230373pt;}
.y36f{bottom:74.773253pt;}
.y346{bottom:74.825733pt;}
.y2b5{bottom:74.905733pt;}
.y110{bottom:75.523424pt;}
.y317{bottom:75.834469pt;}
.y149{bottom:76.790405pt;}
.y2c5{bottom:76.834373pt;}
.y2f6{bottom:78.073477pt;}
.y1dd{bottom:79.017829pt;}
.y467{bottom:79.363653pt;}
.y178{bottom:81.269669pt;}
.y260{bottom:83.739138pt;}
.y22e{bottom:84.166072pt;}
.y3a3{bottom:86.079781pt;}
.yac{bottom:87.337600pt;}
.y1ba{bottom:87.345093pt;}
.y8e{bottom:88.043840pt;}
.y22b{bottom:88.628800pt;}
.y18a{bottom:88.637861pt;}
.y208{bottom:88.641920pt;}
.y3dc{bottom:88.949701pt;}
.y285{bottom:88.960133pt;}
.y36e{bottom:89.179013pt;}
.y345{bottom:89.231493pt;}
.y2b4{bottom:89.941253pt;}
.y54{bottom:90.242917pt;}
.y316{bottom:90.555109pt;}
.y10f{bottom:90.562880pt;}
.y35{bottom:91.200773pt;}
.y466{bottom:91.203525pt;}
.y148{bottom:91.511045pt;}
.y2c4{bottom:92.197893pt;}
.y2f5{bottom:92.473989pt;}
.y4f4{bottom:92.800293pt;}
.y41a{bottom:93.446336pt;}
.y1dc{bottom:93.738469pt;}
.y177{bottom:95.988997pt;}
.y230{bottom:99.376115pt;}
.y3a2{bottom:101.119237pt;}
.yab{bottom:102.058240pt;}
.y1b9{bottom:102.065733pt;}
.y465{bottom:102.723429pt;}
.y25f{bottom:102.952320pt;}
.y22a{bottom:103.349440pt;}
.y189{bottom:103.358501pt;}
.y34{bottom:103.680581pt;}
.y36d{bottom:103.899653pt;}
.y344{bottom:103.952133pt;}
.y4f3{bottom:104.960133pt;}
.y53{bottom:104.962245pt;}
.y2b3{bottom:104.976773pt;}
.y315{bottom:105.275749pt;}
.y10e{bottom:105.283520pt;}
.y419{bottom:105.286208pt;}
.y147{bottom:106.231685pt;}
.y2f4{bottom:107.193317pt;}
.y2c3{bottom:107.561413pt;}
.y1db{bottom:108.138981pt;}
.y8d{bottom:109.481920pt;}
.y207{bottom:110.080000pt;}
.y176{bottom:110.389509pt;}
.y3db{bottom:111.349477pt;}
.y284{bottom:112.320133pt;}
.y232{bottom:114.560937pt;}
.y464{bottom:114.563301pt;}
.y33{bottom:115.840421pt;}
.y3a1{bottom:116.158693pt;}
.yaa{bottom:116.778880pt;}
.y1b8{bottom:116.786373pt;}
.y418{bottom:117.126080pt;}
.y229{bottom:118.070080pt;}
.y36c{bottom:118.620293pt;}
.y343{bottom:118.672773pt;}
.y188{bottom:118.718085pt;}
.y2b2{bottom:119.697413pt;}
.y314{bottom:119.996389pt;}
.y10d{bottom:120.322976pt;}
.y2f3{bottom:121.912645pt;}
.y25d{bottom:122.162682pt;}
.y1da{bottom:122.858309pt;}
.y2c2{bottom:122.924933pt;}
.y4f2{bottom:123.840133pt;}
.y8c{bottom:124.202560pt;}
.y206{bottom:124.485760pt;}
.y175{bottom:125.110149pt;}
.y52{bottom:126.401637pt;}
.y463{bottom:126.403173pt;}
.y146{bottom:127.671077pt;}
.y32{bottom:128.000261pt;}
.y4f1{bottom:128.320133pt;}
.y417{bottom:128.645984pt;}
.y234{bottom:129.755093pt;}
.y3a0{bottom:130.878021pt;}
.ya9{bottom:131.499520pt;}
.y1b7{bottom:131.507013pt;}
.y228{bottom:132.475840pt;}
.y36b{bottom:133.340933pt;}
.y342{bottom:133.393413pt;}
.y187{bottom:133.757541pt;}
.y313{bottom:134.717029pt;}
.y2b1{bottom:134.732933pt;}
.y10c{bottom:135.362432pt;}
.y283{bottom:135.680133pt;}
.y2f2{bottom:136.633285pt;}
.y462{bottom:137.923077pt;}
.y3da{bottom:138.229733pt;}
.y2c1{bottom:138.288453pt;}
.y8b{bottom:138.923200pt;}
.y205{bottom:139.206400pt;}
.y174{bottom:139.830789pt;}
.y31{bottom:140.480069pt;}
.y416{bottom:140.485856pt;}
.y51{bottom:140.802149pt;}
.y25b{bottom:141.344931pt;}
.y145{bottom:142.071589pt;}
.y1d9{bottom:144.299013pt;}
.y236{bottom:144.967936pt;}
.ya8{bottom:145.905280pt;}
.y39f{bottom:145.917477pt;}
.y1b6{bottom:146.226341pt;}
.y227{bottom:147.196480pt;}
.y36a{bottom:148.061573pt;}
.y341{bottom:148.114053pt;}
.y186{bottom:148.796997pt;}
.y4f0{bottom:148.800133pt;}
.y312{bottom:149.437669pt;}
.y461{bottom:149.762949pt;}
.y10b{bottom:150.081760pt;}
.y2f1{bottom:151.353925pt;}
.y415{bottom:152.325728pt;}
.y3d9{bottom:152.949061pt;}
.y8a{bottom:153.328960pt;}
.y2c0{bottom:153.651973pt;}
.y204{bottom:153.927040pt;}
.y173{bottom:154.551429pt;}
.y50{bottom:155.521477pt;}
.y2b0{bottom:156.485893pt;}
.y144{bottom:156.792229pt;}
.y282{bottom:158.720133pt;}
.y1d8{bottom:159.019653pt;}
.y30{bottom:159.360293pt;}
.y238{bottom:160.152779pt;}
.y259{bottom:160.555292pt;}
.y1b5{bottom:160.945669pt;}
.y39e{bottom:160.956933pt;}
.y460{bottom:161.602821pt;}
.y226{bottom:161.917120pt;}
.y369{bottom:162.782213pt;}
.y185{bottom:163.836453pt;}
.y311{bottom:163.838181pt;}
.y414{bottom:163.845632pt;}
.y10a{bottom:165.121216pt;}
.y2f0{bottom:166.073253pt;}
.ya7{bottom:167.343360pt;}
.y89{bottom:168.049600pt;}
.y203{bottom:168.647680pt;}
.y2bf{bottom:169.015493pt;}
.y340{bottom:169.237253pt;}
.y172{bottom:169.272069pt;}
.y4f{bottom:170.240805pt;}
.y4ef{bottom:170.880133pt;}
.y2af{bottom:171.206533pt;}
.y143{bottom:171.512869pt;}
.y2f{bottom:171.520133pt;}
.y45f{bottom:173.122725pt;}
.y1d7{bottom:174.059109pt;}
.y23a{bottom:175.337489pt;}
.y1b4{bottom:175.346181pt;}
.y3d8{bottom:175.348837pt;}
.y39d{bottom:175.677573pt;}
.y413{bottom:175.685504pt;}
.y225{bottom:176.637760pt;}
.y368{bottom:177.187973pt;}
.y310{bottom:178.558821pt;}
.y184{bottom:178.875909pt;}
.y109{bottom:180.160672pt;}
.y2ef{bottom:180.473765pt;}
.ya6{bottom:182.064000pt;}
.y281{bottom:182.080133pt;}
.y88{bottom:182.770240pt;}
.y202{bottom:183.368320pt;}
.y33f{bottom:183.957893pt;}
.y171{bottom:183.992709pt;}
.y2e{bottom:184.000133pt;}
.y2be{bottom:184.379013pt;}
.y4e{bottom:184.959520pt;}
.y45e{bottom:184.962597pt;}
.y4ee{bottom:184.968101pt;}
.y142{bottom:186.233509pt;}
.y2ae{bottom:186.242053pt;}
.y412{bottom:187.525376pt;}
.y1d6{bottom:189.098565pt;}
.y23c{bottom:190.550445pt;}
.y367{bottom:191.908613pt;}
.y30f{bottom:193.279461pt;}
.y183{bottom:193.915365pt;}
.y108{bottom:194.880000pt;}
.y2ee{bottom:195.194405pt;}
.ya5{bottom:196.784640pt;}
.y1b3{bottom:196.785573pt;}
.y4aa{bottom:196.800581pt;}
.y45d{bottom:196.802469pt;}
.y4ed{bottom:196.807973pt;}
.y39c{bottom:197.437093pt;}
.y224{bottom:198.075840pt;}
.y170{bottom:198.393221pt;}
.y33e{bottom:198.678533pt;}
.y411{bottom:199.045280pt;}
.y4d{bottom:199.678848pt;}
.y141{bottom:200.954149pt;}
.y2ad{bottom:201.277573pt;}
.y3d7{bottom:202.229093pt;}
.y1d5{bottom:204.138021pt;}
.y201{bottom:204.491520pt;}
.y280{bottom:205.440133pt;}
.y87{bottom:205.494080pt;}
.y23e{bottom:205.744621pt;}
.y2bd{bottom:206.131973pt;}
.y2d{bottom:206.407040pt;}
.y30e{bottom:208.000101pt;}
.y4a9{bottom:208.320485pt;}
.y45c{bottom:208.322373pt;}
.y4ec{bottom:208.327877pt;}
.y182{bottom:208.954821pt;}
.y2ed{bottom:209.915045pt;}
.y107{bottom:209.919456pt;}
.y410{bottom:210.885152pt;}
.ya4{bottom:211.505280pt;}
.y1b2{bottom:211.506213pt;}
.y39b{bottom:212.157733pt;}
.y223{bottom:212.481600pt;}
.y16f{bottom:213.113861pt;}
.y366{bottom:213.346693pt;}
.y33d{bottom:213.399173pt;}
.y4c{bottom:214.398176pt;}
.y140{bottom:215.674789pt;}
.y2ac{bottom:215.998213pt;}
.y3d6{bottom:216.949733pt;}
.y200{bottom:219.212160pt;}
.y1d4{bottom:219.497605pt;}
.y4a8{bottom:220.160357pt;}
.y45b{bottom:220.162245pt;}
.y4eb{bottom:220.167749pt;}
.y240{bottom:220.929311pt;}
.y2bc{bottom:221.167493pt;}
.y40f{bottom:222.725024pt;}
.y181{bottom:223.994277pt;}
.y2ec{bottom:224.635685pt;}
.ya3{bottom:225.911040pt;}
.y1b1{bottom:226.226853pt;}
.y39a{bottom:227.197189pt;}
.y222{bottom:227.202240pt;}
.y2c{bottom:227.527616pt;}
.y16e{bottom:227.834501pt;}
.y86{bottom:227.889920pt;}
.y365{bottom:228.067333pt;}
.y33c{bottom:228.119813pt;}
.y27f{bottom:228.480133pt;}
.y4b{bottom:228.798688pt;}
.y13f{bottom:230.075301pt;}
.y30d{bottom:230.399877pt;}
.y106{bottom:231.358848pt;}
.y3d5{bottom:231.670373pt;}
.y4a7{bottom:232.000229pt;}
.y45a{bottom:232.002117pt;}
.y4ea{bottom:232.007621pt;}
.y1ff{bottom:233.932800pt;}
.y40e{bottom:234.244928pt;}
.y1d3{bottom:234.537061pt;}
.y242{bottom:236.142154pt;}
.y2bb{bottom:236.203013pt;}
.y2ab{bottom:237.751173pt;}
.y180{bottom:239.033733pt;}
.y2eb{bottom:239.356325pt;}
.ya2{bottom:240.631680pt;}
.y1b0{bottom:240.947493pt;}
.y221{bottom:241.922880pt;}
.y399{bottom:242.236645pt;}
.y16d{bottom:242.555141pt;}
.y2b{bottom:242.567072pt;}
.y364{bottom:242.787973pt;}
.y33b{bottom:242.840453pt;}
.y4a{bottom:243.518016pt;}
.y459{bottom:243.522021pt;}
.y4e9{bottom:243.527525pt;}
.y4a6{bottom:243.527712pt;}
.y13e{bottom:244.795941pt;}
.y3d4{bottom:246.070885pt;}
.y40d{bottom:246.084800pt;}
.y105{bottom:246.399616pt;}
.y1fe{bottom:248.653440pt;}
.y1d2{bottom:249.576517pt;}
.y2ba{bottom:250.923653pt;}
.y27e{bottom:251.840133pt;}
.y2aa{bottom:252.471813pt;}
.y17f{bottom:254.073189pt;}
.y2ea{bottom:254.076965pt;}
.ya1{bottom:255.352320pt;}
.y458{bottom:255.361893pt;}
.y4e8{bottom:255.367397pt;}
.y4a5{bottom:255.367584pt;}
.y220{bottom:256.643520pt;}
.y398{bottom:256.957285pt;}
.y363{bottom:257.193733pt;}
.y33a{bottom:257.246213pt;}
.y16c{bottom:257.275781pt;}
.y30c{bottom:257.281637pt;}
.y2a{bottom:257.287712pt;}
.y40c{bottom:257.924672pt;}
.y49{bottom:258.237344pt;}
.y85{bottom:258.616960pt;}
.y3d3{bottom:260.791525pt;}
.y104{bottom:261.440384pt;}
.y1af{bottom:262.068069pt;}
.y1fd{bottom:263.374080pt;}
.y2b9{bottom:265.959173pt;}
.y13d{bottom:266.235333pt;}
.y2a9{bottom:267.192453pt;}
.y457{bottom:267.201765pt;}
.y4e7{bottom:267.207269pt;}
.y4a4{bottom:267.207456pt;}
.y17e{bottom:269.112645pt;}
.y40b{bottom:269.444576pt;}
.y1d1{bottom:271.336037pt;}
.y21f{bottom:271.364160pt;}
.y362{bottom:271.914373pt;}
.y339{bottom:271.966853pt;}
.y16b{bottom:271.996421pt;}
.y397{bottom:271.996741pt;}
.y30b{bottom:272.000965pt;}
.y29{bottom:272.327168pt;}
.y48{bottom:272.956672pt;}
.y84{bottom:273.337600pt;}
.y2e9{bottom:275.197541pt;}
.y27d{bottom:275.200133pt;}
.y3d2{bottom:275.512165pt;}
.y103{bottom:276.161024pt;}
.y1ae{bottom:276.788709pt;}
.ya0{bottom:276.790400pt;}
.y1fc{bottom:278.094720pt;}
.y456{bottom:278.721669pt;}
.y4e6{bottom:278.727173pt;}
.y4a3{bottom:278.727360pt;}
.y13c{bottom:280.955973pt;}
.y2b8{bottom:280.994693pt;}
.y40a{bottom:281.284448pt;}
.y2a8{bottom:281.598213pt;}
.y17d{bottom:284.152101pt;}
.y1d0{bottom:286.056677pt;}
.y21e{bottom:286.084800pt;}
.y16a{bottom:286.396933pt;}
.y361{bottom:286.635013pt;}
.y338{bottom:286.687493pt;}
.y30a{bottom:286.720293pt;}
.y396{bottom:287.036197pt;}
.y28{bottom:287.366624pt;}
.y47{bottom:287.676000pt;}
.y83{bottom:288.058240pt;}
.y2e8{bottom:289.916869pt;}
.y3d1{bottom:290.232805pt;}
.y455{bottom:290.561541pt;}
.y4e5{bottom:290.567045pt;}
.y4a2{bottom:290.567232pt;}
.y102{bottom:291.200480pt;}
.y1ad{bottom:291.509349pt;}
.y9f{bottom:291.511040pt;}
.y1fb{bottom:292.500480pt;}
.y409{bottom:293.124320pt;}
.y13b{bottom:295.676613pt;}
.y2b7{bottom:295.715333pt;}
.y2a7{bottom:296.318853pt;}
.y27c{bottom:298.560133pt;}
.y17c{bottom:299.511685pt;}
.y21d{bottom:300.490560pt;}
.y1cf{bottom:300.777317pt;}
.y169{bottom:301.117573pt;}
.y360{bottom:301.355653pt;}
.y337{bottom:301.408133pt;}
.y309{bottom:301.439621pt;}
.y395{bottom:301.756837pt;}
.y27{bottom:302.085952pt;}
.y46{bottom:302.395328pt;}
.y454{bottom:302.401413pt;}
.y4e4{bottom:302.406917pt;}
.y4a1{bottom:302.407104pt;}
.y82{bottom:303.093760pt;}
.y2e7{bottom:304.637509pt;}
.y408{bottom:304.644224pt;}
.y3d0{bottom:304.953445pt;}
.y9e{bottom:305.916800pt;}
.y1fa{bottom:307.221120pt;}
.y13a{bottom:310.077125pt;}
.y2b6{bottom:310.750853pt;}
.y2a6{bottom:311.039493pt;}
.y1ac{bottom:312.948741pt;}
.y101{bottom:312.960000pt;}
.y453{bottom:313.921317pt;}
.y4e3{bottom:313.926821pt;}
.y4a0{bottom:313.927008pt;}
.y17b{bottom:314.551141pt;}
.y21c{bottom:315.211200pt;}
.y1ce{bottom:315.497957pt;}
.y308{bottom:315.837760pt;}
.y168{bottom:315.838213pt;}
.y35f{bottom:316.076293pt;}
.y336{bottom:316.128773pt;}
.y407{bottom:316.484096pt;}
.y394{bottom:316.796293pt;}
.y26{bottom:317.125408pt;}
.y81{bottom:317.814400pt;}
.y2e6{bottom:319.358149pt;}
.y3cf{bottom:319.674085pt;}
.y9d{bottom:320.637440pt;}
.y27b{bottom:321.600133pt;}
.y1f9{bottom:321.941760pt;}
.y45{bottom:323.515904pt;}
.y139{bottom:324.797765pt;}
.y2a5{bottom:325.760133pt;}
.y452{bottom:325.761189pt;}
.y4e2{bottom:325.766693pt;}
.y49f{bottom:325.766880pt;}
.y1ab{bottom:327.349253pt;}
.y100{bottom:327.680640pt;}
.y406{bottom:328.323968pt;}
.y17a{bottom:329.590597pt;}
.y21b{bottom:329.931840pt;}
.y1cd{bottom:330.218597pt;}
.y307{bottom:330.558400pt;}
.y167{bottom:330.558853pt;}
.y35e{bottom:330.796933pt;}
.y335{bottom:330.849413pt;}
.y393{bottom:331.835749pt;}
.y25{bottom:332.164864pt;}
.y80{bottom:332.535040pt;}
.y3ce{bottom:334.074597pt;}
.y2e5{bottom:334.078789pt;}
.y9c{bottom:335.358080pt;}
.y1f8{bottom:336.662400pt;}
.y451{bottom:337.601061pt;}
.y4e1{bottom:337.606565pt;}
.y49e{bottom:337.606752pt;}
.y44{bottom:338.236544pt;}
.y138{bottom:339.518405pt;}
.y405{bottom:339.843872pt;}
.y2a4{bottom:340.485440pt;}
.y1aa{bottom:342.069893pt;}
.yff{bottom:342.081152pt;}
.y179{bottom:344.630053pt;}
.y21a{bottom:344.652480pt;}
.y1cc{bottom:344.937925pt;}
.y27a{bottom:344.960133pt;}
.y35d{bottom:345.202693pt;}
.y334{bottom:345.255173pt;}
.y306{bottom:345.279040pt;}
.y166{bottom:345.279493pt;}
.y392{bottom:346.555077pt;}
.y24{bottom:346.884192pt;}
.y7f{bottom:347.570560pt;}
.y2e4{bottom:348.477989pt;}
.y3cd{bottom:348.793925pt;}
.y450{bottom:349.120965pt;}
.y4e0{bottom:349.126469pt;}
.y49d{bottom:349.126656pt;}
.y9b{bottom:350.078720pt;}
.y404{bottom:351.683744pt;}
.y43{bottom:352.957184pt;}
.y137{bottom:354.239045pt;}
.y2a3{bottom:355.202560pt;}
.y1a9{bottom:356.790533pt;}
.yfe{bottom:356.800480pt;}
.y1f7{bottom:358.100480pt;}
.y1cb{bottom:359.338437pt;}
.y219{bottom:359.373120pt;}
.y35c{bottom:359.923333pt;}
.y333{bottom:359.975813pt;}
.y305{bottom:359.999680pt;}
.y165{bottom:360.000133pt;}
.y44f{bottom:360.960837pt;}
.y4df{bottom:360.966341pt;}
.y49c{bottom:360.966528pt;}
.y391{bottom:361.594533pt;}
.y23{bottom:361.923648pt;}
.y7e{bottom:362.291200pt;}
.y2e3{bottom:363.198629pt;}
.y3cc{bottom:363.513253pt;}
.y403{bottom:363.523616pt;}
.y9a{bottom:364.799360pt;}
.y42{bottom:367.677824pt;}
.y279{bottom:368.320133pt;}
.y136{bottom:368.958373pt;}
.y2a2{bottom:369.600000pt;}
.y1a8{bottom:371.511173pt;}
.y1f6{bottom:372.493120pt;}
.y44e{bottom:372.800709pt;}
.y4de{bottom:372.806213pt;}
.y49b{bottom:372.806400pt;}
.y1ca{bottom:374.059077pt;}
.y218{bottom:374.093760pt;}
.y35b{bottom:374.643973pt;}
.y304{bottom:374.719008pt;}
.y402{bottom:375.043520pt;}
.y390{bottom:376.633989pt;}
.y22{bottom:376.963104pt;}
.y7d{bottom:377.011840pt;}
.y2e2{bottom:377.919269pt;}
.yfd{bottom:378.239872pt;}
.y99{bottom:379.520000pt;}
.y164{bottom:380.800133pt;}
.y332{bottom:381.413893pt;}
.y41{bottom:382.398464pt;}
.y135{bottom:383.677701pt;}
.y44d{bottom:384.320613pt;}
.y4dd{bottom:384.326117pt;}
.y49a{bottom:384.326304pt;}
.y1a7{bottom:386.231813pt;}
.y3cb{bottom:386.233157pt;}
.y401{bottom:386.883392pt;}
.y1f5{bottom:387.213760pt;}
.y2a1{bottom:388.157573pt;}
.y217{bottom:388.486400pt;}
.y1c9{bottom:388.779717pt;}
.y35a{bottom:389.364613pt;}
.y303{bottom:389.438336pt;}
.y38f{bottom:391.354629pt;}
.y278{bottom:391.360133pt;}
.y21{bottom:391.682432pt;}
.y7c{bottom:391.732480pt;}
.y2c6{bottom:392.254000pt;}
.y2e1{bottom:392.638597pt;}
.yfc{bottom:392.960512pt;}
.y98{bottom:393.925893pt;}
.y331{bottom:396.134533pt;}
.y44c{bottom:396.160485pt;}
.y4dc{bottom:396.165989pt;}
.y499{bottom:396.166176pt;}
.y40{bottom:396.798976pt;}
.y134{bottom:398.078213pt;}
.y400{bottom:398.723264pt;}
.y1a6{bottom:400.952453pt;}
.y1f4{bottom:401.934400pt;}
.y216{bottom:403.207040pt;}
.y1c8{bottom:403.500357pt;}
.y302{bottom:403.838848pt;}
.y163{bottom:403.840133pt;}
.y359{bottom:404.085253pt;}
.y7b{bottom:406.768000pt;}
.y2e0{bottom:407.359237pt;}
.yfb{bottom:407.679840pt;}
.y44b{bottom:408.000357pt;}
.y4db{bottom:408.005861pt;}
.y498{bottom:408.006048pt;}
.y97{bottom:408.643013pt;}
.y3ff{bottom:410.243168pt;}
.y330{bottom:410.855173pt;}
.y3f{bottom:411.519616pt;}
.y3ca{bottom:412.793285pt;}
.y133{bottom:412.798853pt;}
.y38e{bottom:413.114149pt;}
.y20{bottom:413.441952pt;}
.y277{bottom:414.720000pt;}
.y1a5{bottom:415.352965pt;}
.y1f3{bottom:416.655040pt;}
.y215{bottom:417.927680pt;}
.y1c7{bottom:418.220997pt;}
.y301{bottom:418.558176pt;}
.y358{bottom:418.805893pt;}
.y44a{bottom:419.520261pt;}
.y4da{bottom:419.525765pt;}
.y497{bottom:419.525952pt;}
.y7a{bottom:421.488640pt;}
.y2df{bottom:422.079877pt;}
.yfa{bottom:422.080352pt;}
.y3fe{bottom:422.083040pt;}
.y96{bottom:423.360133pt;}
.y32f{bottom:425.260933pt;}
.y3e{bottom:426.240256pt;}
.y162{bottom:426.880133pt;}
.y3c9{bottom:427.512613pt;}
.y132{bottom:427.519493pt;}
.y38d{bottom:427.834789pt;}
.y1f{bottom:428.481408pt;}
.y1a4{bottom:430.073605pt;}
.y449{bottom:431.363520pt;}
.y4d9{bottom:431.365637pt;}
.y496{bottom:431.365824pt;}
.y1f2{bottom:431.375680pt;}
.y1c6{bottom:432.941637pt;}
.y357{bottom:433.211653pt;}
.y3fd{bottom:433.922912pt;}
.y79{bottom:436.209280pt;}
.y2de{bottom:436.479077pt;}
.yf9{bottom:436.799680pt;}
.y276{bottom:438.080133pt;}
.y32e{bottom:439.981573pt;}
.y300{bottom:439.998880pt;}
.y214{bottom:440.651520pt;}
.y3d{bottom:440.960896pt;}
.y95{bottom:441.955840pt;}
.y3c8{bottom:442.231941pt;}
.y131{bottom:442.240133pt;}
.y38c{bottom:442.555429pt;}
.y1e{bottom:443.202048pt;}
.y448{bottom:443.203392pt;}
.y4d8{bottom:443.205509pt;}
.y495{bottom:443.205696pt;}
.y3fc{bottom:445.442816pt;}
.y1f1{bottom:446.096320pt;}
.y1c5{bottom:447.342149pt;}
.y356{bottom:447.932293pt;}
.y161{bottom:449.600000pt;}
.y78{bottom:450.929920pt;}
.y2dd{bottom:451.199717pt;}
.yf8{bottom:451.519008pt;}
.y1a3{bottom:452.473381pt;}
.y32d{bottom:454.702213pt;}
.y2ff{bottom:454.719520pt;}
.y447{bottom:454.723296pt;}
.y4d7{bottom:454.725413pt;}
.y494{bottom:454.725600pt;}
.y3c{bottom:455.681536pt;}
.y3c7{bottom:456.951269pt;}
.y38b{bottom:457.276069pt;}
.y3fb{bottom:457.282688pt;}
.y1d{bottom:458.241504pt;}
.y1f0{bottom:460.488960pt;}
.y275{bottom:461.120133pt;}
.y1c4{bottom:462.062789pt;}
.y130{bottom:463.686496pt;}
.y2dc{bottom:465.920357pt;}
.y77{bottom:465.965440pt;}
.y446{bottom:466.563168pt;}
.y4d6{bottom:466.565285pt;}
.y493{bottom:466.565472pt;}
.y213{bottom:467.206400pt;}
.y3fa{bottom:469.122560pt;}
.yd8{bottom:469.326972pt;}
.y32c{bottom:469.422853pt;}
.y2fe{bottom:469.440160pt;}
.y3b{bottom:470.402176pt;}
.y355{bottom:470.656133pt;}
.y3c6{bottom:471.670597pt;}
.y38a{bottom:471.676581pt;}
.y160{bottom:472.640000pt;}
.yf7{bottom:472.959712pt;}
.y1c{bottom:473.280960pt;}
.y1ef{bottom:475.209600pt;}
.y1c3{bottom:476.783429pt;}
.yb7{bottom:477.501467pt;}
.y12f{bottom:478.087008pt;}
.y445{bottom:478.403040pt;}
.y4d5{bottom:478.405157pt;}
.y492{bottom:478.405344pt;}
.y2db{bottom:480.640997pt;}
.y3f9{bottom:480.642464pt;}
.y76{bottom:480.686080pt;}
.y212{bottom:481.927040pt;}
.y1a2{bottom:483.513989pt;}
.y2fd{bottom:483.840672pt;}
.y32b{bottom:484.143493pt;}
.y274{bottom:484.480000pt;}
.y3a{bottom:484.802688pt;}
.y3c5{bottom:486.071109pt;}
.y389{bottom:486.397221pt;}
.yf6{bottom:487.679040pt;}
.y1b{bottom:488.001600pt;}
.y444{bottom:489.922944pt;}
.y4d4{bottom:489.925061pt;}
.y491{bottom:489.925248pt;}
.y1ee{bottom:489.930240pt;}
.y3f8{bottom:492.482336pt;}
.y12e{bottom:492.806336pt;}
.y2da{bottom:495.361637pt;}
.y15f{bottom:495.680000pt;}
.y211{bottom:496.647680pt;}
.y354{bottom:497.211013pt;}
.y1a1{bottom:498.234629pt;}
.y2fc{bottom:498.560000pt;}
.y32a{bottom:498.864133pt;}
.y1c2{bottom:499.503333pt;}
.y39{bottom:499.522016pt;}
.yb5{bottom:499.770702pt;}
.y3c4{bottom:500.791749pt;}
.y388{bottom:501.117861pt;}
.y443{bottom:501.762816pt;}
.y4d3{bottom:501.764933pt;}
.y490{bottom:501.765120pt;}
.yf5{bottom:502.079552pt;}
.y75{bottom:502.124160pt;}
.yb3{bottom:502.846400pt;}
.y1a{bottom:503.041056pt;}
.y3f7{bottom:504.322208pt;}
.y1ed{bottom:504.650880pt;}
.yb6{bottom:505.907467pt;}
.y12d{bottom:507.525664pt;}
.y273{bottom:507.840133pt;}
.y210{bottom:511.368320pt;}
.y353{bottom:511.931653pt;}
.y1a0{bottom:512.955269pt;}
.y329{bottom:513.269893pt;}
.y2fb{bottom:513.273061pt;}
.y442{bottom:513.602688pt;}
.y4d2{bottom:513.604805pt;}
.y48f{bottom:513.604992pt;}
.y38{bottom:514.241344pt;}
.yc9{bottom:514.510869pt;}
.y3c3{bottom:515.512389pt;}
.y387{bottom:515.838501pt;}
.y3f6{bottom:515.842112pt;}
.yf4{bottom:516.800192pt;}
.y2d9{bottom:516.801029pt;}
.y74{bottom:517.159680pt;}
.y19{bottom:518.080512pt;}
.y15e{bottom:518.720000pt;}
.y1ec{bottom:519.371520pt;}
.y1c1{bottom:521.903109pt;}
.y12c{bottom:522.244992pt;}
.y441{bottom:525.122592pt;}
.y4d1{bottom:525.124709pt;}
.y48e{bottom:525.124896pt;}
.y20f{bottom:526.088960pt;}
.y352{bottom:526.652293pt;}
.y19f{bottom:527.355781pt;}
.yc8{bottom:527.558667pt;}
.y3f5{bottom:527.681984pt;}
.y328{bottom:527.990533pt;}
.y2fa{bottom:527.993701pt;}
.y37{bottom:528.960672pt;}
.y3c2{bottom:530.233029pt;}
.y386{bottom:530.559141pt;}
.y272{bottom:531.200133pt;}
.yf3{bottom:531.520832pt;}
.y2d8{bottom:531.841797pt;}
.y73{bottom:532.195200pt;}
.y1eb{bottom:534.092160pt;}
.y440{bottom:536.962464pt;}
.y12b{bottom:536.964320pt;}
.y4d0{bottom:536.964581pt;}
.y48d{bottom:536.964768pt;}
.y3f4{bottom:539.521856pt;}
.y20e{bottom:540.481600pt;}
.y351{bottom:541.372933pt;}
.y15d{bottom:541.760000pt;}
.y19e{bottom:542.076421pt;}
.y327{bottom:542.711173pt;}
.y18{bottom:543.360128pt;}
.y36{bottom:543.680000pt;}
.y3c1{bottom:544.953669pt;}
.y385{bottom:545.279781pt;}
.yf2{bottom:546.241472pt;}
.y72{bottom:546.915840pt;}
.y2d7{bottom:547.201381pt;}
.y1ea{bottom:548.484800pt;}
.y43f{bottom:548.802336pt;}
.y4cf{bottom:548.804453pt;}
.y48c{bottom:548.804640pt;}
.y2f9{bottom:549.433093pt;}
.y3f3{bottom:551.041760pt;}
.y12a{bottom:551.683648pt;}
.y271{bottom:554.240133pt;}
.y20d{bottom:555.202240pt;}
.y350{bottom:556.093573pt;}
.y1c0{bottom:556.782629pt;}
.y19d{bottom:556.797061pt;}
.y326{bottom:557.431813pt;}
.y43e{bottom:560.322240pt;}
.y4ce{bottom:560.324357pt;}
.y48b{bottom:560.324544pt;}
.yf1{bottom:560.962112pt;}
.y71{bottom:561.951360pt;}
.y2d6{bottom:562.560965pt;}
.y3f2{bottom:562.881632pt;}
.y1e9{bottom:563.205440pt;}
.y2f8{bottom:563.833605pt;}
.y15c{bottom:564.800000pt;}
.yb4{bottom:565.359898pt;}
.y3c0{bottom:566.074245pt;}
.y129{bottom:566.084160pt;}
.y384{bottom:567.679557pt;}
.y20c{bottom:569.922880pt;}
.y34f{bottom:570.814213pt;}
.y1bf{bottom:571.503269pt;}
.y19c{bottom:571.517701pt;}
.y325{bottom:572.152453pt;}
.y43d{bottom:572.162112pt;}
.y4cd{bottom:572.164229pt;}
.y48a{bottom:572.164416pt;}
.y3f1{bottom:574.721504pt;}
.y70{bottom:576.986880pt;}
.y270{bottom:577.600000pt;}
.yaf{bottom:577.627239pt;}
.y2d5{bottom:577.920549pt;}
.y1e8{bottom:577.926080pt;}
.y2f7{bottom:578.552933pt;}
.y3bf{bottom:580.793573pt;}
.yf0{bottom:582.082688pt;}
.y17{bottom:582.400000pt;}
.y43c{bottom:584.001984pt;}
.y4cc{bottom:584.004101pt;}
.y489{bottom:584.004288pt;}
.y20b{bottom:584.643520pt;}
.y34e{bottom:585.219973pt;}
.y1be{bottom:586.223909pt;}
.y19b{bottom:586.238341pt;}
.y3f0{bottom:586.241408pt;}
.y324{bottom:586.873093pt;}
.y128{bottom:588.483936pt;}
.y2a0{bottom:591.360133pt;}
.y6f{bottom:591.707520pt;}
.y1e7{bottom:592.646720pt;}
.y2d4{bottom:593.280133pt;}
.y15b{bottom:594.240133pt;}
.y3be{bottom:595.512901pt;}
.y43b{bottom:595.521888pt;}
.y4cb{bottom:595.524005pt;}
.y488{bottom:595.524192pt;}
.yef{bottom:597.122144pt;}
.y3ef{bottom:598.081280pt;}
.y383{bottom:598.400037pt;}
.y20a{bottom:599.364160pt;}
.y34d{bottom:599.940613pt;}
.y1bd{bottom:600.944549pt;}
.y19a{bottom:600.958981pt;}
.y26f{bottom:600.960133pt;}
.y16{bottom:604.797829pt;}
.y29f{bottom:604.800000pt;}
.y6e{bottom:606.743040pt;}
.y2d3{bottom:607.360133pt;}
.y43a{bottom:607.361760pt;}
.y4ca{bottom:607.363877pt;}
.y487{bottom:607.364064pt;}
.y323{bottom:609.268933pt;}
.yae{bottom:609.500800pt;}
.y3ee{bottom:609.921152pt;}
.y3bd{bottom:610.232229pt;}
.yc7{bottom:610.774800pt;}
.yee{bottom:612.161600pt;}
.y382{bottom:613.439493pt;}
.y1e6{bottom:614.084800pt;}
.yd2{bottom:614.566628pt;}
.y1bc{bottom:615.345061pt;}
.y199{bottom:615.359493pt;}
.y439{bottom:619.201632pt;}
.y4c9{bottom:619.203749pt;}
.y486{bottom:619.203936pt;}
.y15{bottom:619.518501pt;}
.y127{bottom:619.524544pt;}
.y34c{bottom:621.378693pt;}
.y3ed{bottom:621.441056pt;}
.y6d{bottom:621.778560pt;}
.yd1{bottom:622.536876pt;}
.yb2{bottom:623.594577pt;}
.y322{bottom:623.989573pt;}
.y26e{bottom:624.000133pt;}
.y3bc{bottom:624.951557pt;}
.y29e{bottom:626.240133pt;}
.yed{bottom:626.880928pt;}
.y381{bottom:628.165376pt;}
.y1e5{bottom:628.477440pt;}
.y2d2{bottom:628.800000pt;}
.y198{bottom:630.080133pt;}
.y438{bottom:630.721536pt;}
.y4c8{bottom:630.723653pt;}
.y485{bottom:630.723840pt;}
.yc4{bottom:632.877067pt;}
.y3ec{bottom:633.280928pt;}
.y15a{bottom:633.599237pt;}
.y14{bottom:634.239173pt;}
.y126{bottom:634.243872pt;}
.y34b{bottom:636.099333pt;}
.y6c{bottom:636.499200pt;}
.y3bb{bottom:639.670885pt;}
.yec{bottom:641.920384pt;}
.y437{bottom:642.561408pt;}
.y4c7{bottom:642.563525pt;}
.y484{bottom:642.563712pt;}
.y1e4{bottom:643.198080pt;}
.y380{bottom:643.204832pt;}
.y3eb{bottom:645.120800pt;}
.y159{bottom:647.359685pt;}
.y26d{bottom:647.360133pt;}
.ybe{bottom:647.918214pt;}
.y13{bottom:648.959845pt;}
.y125{bottom:648.963200pt;}
.y29d{bottom:649.920133pt;}
.y34a{bottom:650.819973pt;}
.y321{bottom:650.872453pt;}
.y197{bottom:650.880000pt;}
.y6b{bottom:651.534720pt;}
.y2d1{bottom:651.840000pt;}
.yc6{bottom:652.496139pt;}
.y3ba{bottom:654.071397pt;}
.y436{bottom:654.401280pt;}
.y4c6{bottom:654.403397pt;}
.y483{bottom:654.403584pt;}
.y3ea{bottom:656.640704pt;}
.yc0{bottom:656.841778pt;}
.yeb{bottom:656.959840pt;}
.y1e3{bottom:657.918720pt;}
.y37f{bottom:658.244288pt;}
.y158{bottom:661.120133pt;}
.y12{bottom:663.680517pt;}
.y124{bottom:663.682528pt;}
.yc3{bottom:664.021600pt;}
.y349{bottom:665.225733pt;}
.y320{bottom:665.278213pt;}
.y435{bottom:665.921184pt;}
.y4c5{bottom:665.923301pt;}
.y482{bottom:665.923488pt;}
.y6a{bottom:666.570240pt;}
.y3e9{bottom:668.480576pt;}
.y3b9{bottom:668.792037pt;}
.y26c{bottom:670.720000pt;}
.yea{bottom:671.679168pt;}
.ybf{bottom:671.752133pt;}
.y1e2{bottom:672.639360pt;}
.y37e{bottom:672.964928pt;}
.y29c{bottom:673.600000pt;}
.y196{bottom:674.560000pt;}
.y2d0{bottom:674.880000pt;}
.y157{bottom:675.520000pt;}
.y434{bottom:677.761056pt;}
.y4c4{bottom:677.763173pt;}
.y481{bottom:677.763360pt;}
.y11{bottom:678.401189pt;}
.y348{bottom:679.946373pt;}
.yb1{bottom:679.989190pt;}
.y31f{bottom:679.998853pt;}
.y3e8{bottom:680.320448pt;}
.y69{bottom:681.290880pt;}
.y3b8{bottom:683.512677pt;}
.y123{bottom:684.803104pt;}
.ye9{bottom:686.719936pt;}
.y1e1{bottom:687.360000pt;}
.y37d{bottom:688.004384pt;}
.y433{bottom:689.600928pt;}
.y4c3{bottom:689.603045pt;}
.y480{bottom:689.603232pt;}
.yd0{bottom:691.802790pt;}
.y3e7{bottom:691.840352pt;}
.y10{bottom:692.800997pt;}
.y26b{bottom:694.080133pt;}
.y347{bottom:694.667013pt;}
.y31e{bottom:694.719493pt;}
.y156{bottom:695.680133pt;}
.y68{bottom:696.326400pt;}
.y29b{bottom:697.280000pt;}
.y2cf{bottom:697.920133pt;}
.y3b7{bottom:698.233317pt;}
.y195{bottom:698.240267pt;}
.y122{bottom:699.523744pt;}
.y432{bottom:701.120832pt;}
.y4c2{bottom:701.122949pt;}
.y47f{bottom:701.123136pt;}
.yc5{bottom:701.525240pt;}
.ye8{bottom:701.760704pt;}
.y1e0{bottom:702.082560pt;}
.ycf{bottom:702.834802pt;}
.y37c{bottom:703.043840pt;}
.y3e6{bottom:703.680224pt;}
.yd3{bottom:706.507805pt;}
.yf{bottom:707.520485pt;}
.y31d{bottom:709.440133pt;}
.y67{bottom:711.361920pt;}
.y3b6{bottom:712.953957pt;}
.y431{bottom:712.960704pt;}
.y4c1{bottom:712.962821pt;}
.y47e{bottom:712.963008pt;}
.yd4{bottom:714.483626pt;}
.y3e5{bottom:715.520096pt;}
.y1df{bottom:716.480000pt;}
.y26a{bottom:717.120000pt;}
.y37b{bottom:717.764480pt;}
.y155{bottom:718.720000pt;}
.ycc{bottom:718.767867pt;}
.y29a{bottom:720.960000pt;}
.y121{bottom:720.963136pt;}
.y194{bottom:721.920133pt;}
.ye{bottom:722.239973pt;}
.y31c{bottom:724.168133pt;}
.ye7{bottom:724.480608pt;}
.y430{bottom:724.800576pt;}
.y4c0{bottom:724.802693pt;}
.y47d{bottom:724.802880pt;}
.y66{bottom:726.082560pt;}
.y3e4{bottom:727.040000pt;}
.y3b5{bottom:727.674597pt;}
.yca{bottom:729.442819pt;}
.ybd{bottom:729.456267pt;}
.y1de{bottom:735.040000pt;}
.y120{bottom:735.683776pt;}
.y42f{bottom:736.320480pt;}
.y4bf{bottom:736.322597pt;}
.y47c{bottom:736.322784pt;}
.yd{bottom:736.959461pt;}
.y256{bottom:737.973021pt;}
.y249{bottom:737.973693pt;}
.y247{bottom:737.973713pt;}
.y243{bottom:737.973733pt;}
.y245{bottom:737.973754pt;}
.y24d{bottom:737.973774pt;}
.y24b{bottom:737.973835pt;}
.y253{bottom:737.973896pt;}
.y24f{bottom:737.973977pt;}
.y22d{bottom:737.974181pt;}
.y22f{bottom:737.974405pt;}
.y25e{bottom:737.974466pt;}
.y231{bottom:737.974649pt;}
.y25c{bottom:737.974771pt;}
.y233{bottom:737.974893pt;}
.y25a{bottom:737.975056pt;}
.y235{bottom:737.975117pt;}
.y237{bottom:737.975341pt;}
.y258{bottom:737.975361pt;}
.y239{bottom:737.975564pt;}
.y23b{bottom:737.975808pt;}
.y23d{bottom:737.976032pt;}
.y23f{bottom:737.976276pt;}
.y241{bottom:737.976500pt;}
.y261{bottom:737.983200pt;}
.y31b{bottom:738.885253pt;}
.y37a{bottom:739.524000pt;}
.yce{bottom:740.220653pt;}
.y269{bottom:740.480000pt;}
.y65{bottom:741.118080pt;}
.y154{bottom:741.760133pt;}
.y3b4{bottom:742.075109pt;}
.yd6{bottom:742.938712pt;}
.y2ce{bottom:744.000133pt;}
.y299{bottom:744.640000pt;}
.y193{bottom:745.600133pt;}
.y3e3{bottom:747.196576pt;}
.y42e{bottom:748.160352pt;}
.y4be{bottom:748.162469pt;}
.y47b{bottom:748.162656pt;}
.y11f{bottom:750.084288pt;}
.yc{bottom:751.680133pt;}
.y31a{bottom:753.282693pt;}
.y379{bottom:754.563456pt;}
.ye6{bottom:755.201088pt;}
.y64{bottom:756.153600pt;}
.yc2{bottom:756.184753pt;}
.y3b3{bottom:756.795749pt;}
.ybc{bottom:757.650600pt;}
.yd5{bottom:759.839725pt;}
.y42d{bottom:760.000224pt;}
.y4bd{bottom:760.002341pt;}
.y47a{bottom:760.002528pt;}
.y268{bottom:763.840133pt;}
.y153{bottom:764.800000pt;}
.y11e{bottom:764.804928pt;}
.ycd{bottom:765.964183pt;}
.y2cd{bottom:766.720000pt;}
.y319{bottom:767.680133pt;}
.yc1{bottom:768.307333pt;}
.y298{bottom:768.320267pt;}
.y192{bottom:769.280000pt;}
.y378{bottom:769.282784pt;}
.ye5{bottom:770.241856pt;}
.y63{bottom:770.874240pt;}
.y3b2{bottom:771.516389pt;}
.y42c{bottom:771.520128pt;}
.y4bc{bottom:771.522245pt;}
.y479{bottom:771.522432pt;}
.yb0{bottom:773.781731pt;}
.y3e2{bottom:778.237184pt;}
.y11d{bottom:779.525568pt;}
.yd7{bottom:781.547039pt;}
.yb{bottom:782.400549pt;}
.y42b{bottom:783.360000pt;}
.y4bb{bottom:783.362117pt;}
.y478{bottom:783.362304pt;}
.y377{bottom:784.322240pt;}
.ybb{bottom:784.616606pt;}
.ye4{bottom:784.961184pt;}
.y318{bottom:785.600133pt;}
.y62{bottom:785.909760pt;}
.y3b1{bottom:786.237029pt;}
.y267{bottom:786.880000pt;}
.y152{bottom:787.840133pt;}
.y370{bottom:789.627600pt;}
.y2cc{bottom:789.760133pt;}
.y297{bottom:792.000133pt;}
.y3e1{bottom:792.957824pt;}
.y191{bottom:792.960000pt;}
.y4ba{bottom:795.201989pt;}
.y477{bottom:795.202176pt;}
.y42a{bottom:795.207968pt;}
.yba{bottom:796.259856pt;}
.ya{bottom:797.760544pt;}
.y376{bottom:799.361696pt;}
.ye3{bottom:800.000640pt;}
.y3b0{bottom:800.957669pt;}
.y11c{bottom:800.964960pt;}
.y4b9{bottom:806.721893pt;}
.y476{bottom:806.722080pt;}
.y429{bottom:806.727872pt;}
.y61{bottom:807.662720pt;}
.y3e0{bottom:807.678464pt;}
.y266{bottom:810.240267pt;}
.y151{bottom:810.880000pt;}
.ycb{bottom:810.981867pt;}
.y2cb{bottom:812.800000pt;}
.y375{bottom:814.082336pt;}
.ye2{bottom:815.040096pt;}
.y3af{bottom:815.678309pt;}
.y11b{bottom:815.685600pt;}
.y190{bottom:816.640000pt;}
.y28e{bottom:818.240267pt;}
.y4b8{bottom:818.561765pt;}
.y475{bottom:818.561952pt;}
.y428{bottom:818.567744pt;}
.y9{bottom:818.880000pt;}
.y293{bottom:819.528587pt;}
.y60{bottom:822.068480pt;}
.y3df{bottom:822.078976pt;}
.y291{bottom:824.006027pt;}
.y290{bottom:826.561547pt;}
.y28f{bottom:827.839307pt;}
.y374{bottom:829.123104pt;}
.yb8{bottom:829.361467pt;}
.ye1{bottom:829.760736pt;}
.y296{bottom:830.078027pt;}
.y11a{bottom:830.086112pt;}
.y4b7{bottom:830.401637pt;}
.y474{bottom:830.401824pt;}
.y427{bottom:830.407616pt;}
.y295{bottom:831.999947pt;}
.y292{bottom:832.010507pt;}
.y265{bottom:833.600133pt;}
.y150{bottom:833.920133pt;}
.yb9{bottom:834.275524pt;}
.y2ca{bottom:835.840133pt;}
.y5f{bottom:836.789120pt;}
.y3ae{bottom:836.797573pt;}
.y3de{bottom:836.799616pt;}
.y294{bottom:840.004427pt;}
.y18f{bottom:840.320267pt;}
.y4b6{bottom:841.921541pt;}
.y473{bottom:841.921728pt;}
.y426{bottom:841.927520pt;}
.y373{bottom:844.163872pt;}
.y119{bottom:844.805440pt;}
.y5e{bottom:851.509760pt;}
.y3ad{bottom:851.518213pt;}
.ye0{bottom:851.520256pt;}
.y4b5{bottom:853.761413pt;}
.y472{bottom:853.761600pt;}
.y425{bottom:853.767392pt;}
.y28d{bottom:854.082560pt;}
.y14f{bottom:856.640000pt;}
.y264{bottom:856.960000pt;}
.y2c9{bottom:858.880000pt;}
.y372{bottom:858.883200pt;}
.y8{bottom:860.160133pt;}
.y18e{bottom:864.000133pt;}
.y4b4{bottom:865.601285pt;}
.y471{bottom:865.601472pt;}
.y424{bottom:865.607264pt;}
.y5d{bottom:866.230400pt;}
.y3ac{bottom:866.238853pt;}
.ydf{bottom:866.240896pt;}
.y118{bottom:866.244832pt;}
.y28c{bottom:869.120000pt;}
.y371{bottom:873.922656pt;}
.y4b3{bottom:877.121189pt;}
.y470{bottom:877.121376pt;}
.y423{bottom:877.127168pt;}
.y14e{bottom:880.000133pt;}
.y5c{bottom:880.951040pt;}
.y3ab{bottom:880.959493pt;}
.yde{bottom:880.961536pt;}
.y117{bottom:880.965472pt;}
.y263{bottom:882.880000pt;}
.y2c8{bottom:888.320133pt;}
.y4b2{bottom:888.961061pt;}
.y46f{bottom:888.961248pt;}
.y422{bottom:888.967040pt;}
.y18d{bottom:890.240448pt;}
.y5b{bottom:895.671680pt;}
.y3aa{bottom:895.680869pt;}
.ydd{bottom:895.682176pt;}
.y116{bottom:895.686112pt;}
.y4b1{bottom:900.800933pt;}
.y46e{bottom:900.801120pt;}
.y421{bottom:900.806912pt;}
.y28b{bottom:903.680133pt;}
.y94{bottom:903.714240pt;}
.y14d{bottom:905.279712pt;}
.y18c{bottom:905.280000pt;}
.y262{bottom:905.920133pt;}
.y7{bottom:908.159173pt;}
.y5a{bottom:910.077440pt;}
.y3a9{bottom:910.081381pt;}
.ydc{bottom:910.082688pt;}
.y115{bottom:910.086624pt;}
.y4b0{bottom:912.320837pt;}
.y46d{bottom:912.321024pt;}
.y420{bottom:912.326816pt;}
.y14c{bottom:912.960000pt;}
.y288{bottom:914.880133pt;}
.y93{bottom:918.120000pt;}
.y4af{bottom:924.160709pt;}
.y46c{bottom:924.160896pt;}
.y41f{bottom:924.166688pt;}
.y59{bottom:924.798080pt;}
.y3a8{bottom:924.800709pt;}
.ydb{bottom:924.802016pt;}
.y114{bottom:924.805952pt;}
.y2c7{bottom:927.678976pt;}
.y6{bottom:930.240133pt;}
.y92{bottom:932.840640pt;}
.y4ae{bottom:936.000581pt;}
.y46b{bottom:936.000768pt;}
.y41e{bottom:936.006560pt;}
.y58{bottom:939.518720pt;}
.y3a7{bottom:939.520037pt;}
.yda{bottom:939.521344pt;}
.y28a{bottom:939.525253pt;}
.y113{bottom:939.525280pt;}
.y18b{bottom:941.759104pt;}
.y4ad{bottom:947.520485pt;}
.y46a{bottom:947.520672pt;}
.y41d{bottom:947.526464pt;}
.y5{bottom:953.280000pt;}
.y289{bottom:953.603013pt;}
.y57{bottom:954.239360pt;}
.y3a6{bottom:954.239365pt;}
.yd9{bottom:954.240672pt;}
.y112{bottom:954.244608pt;}
.y91{bottom:954.278720pt;}
.y14b{bottom:955.519552pt;}
.y4ac{bottom:959.360357pt;}
.y469{bottom:959.360544pt;}
.y41c{bottom:959.366336pt;}
.y286{bottom:968.320133pt;}
.y3a5{bottom:968.958693pt;}
.y56{bottom:968.960000pt;}
.y111{bottom:968.963936pt;}
.y90{bottom:968.999360pt;}
.y14a{bottom:969.280000pt;}
.y4ab{bottom:971.200229pt;}
.y468{bottom:971.200416pt;}
.y41b{bottom:971.206208pt;}
.y2{bottom:976.320133pt;}
.y55{bottom:996.480000pt;}
.y1{bottom:996.800000pt;}
.h34{height:7.115000pt;}
.h2d{height:20.993592pt;}
.h2a{height:23.439564pt;}
.h6{height:23.996250pt;}
.h29{height:25.791875pt;}
.h1a{height:27.982085pt;}
.h26{height:28.198969pt;}
.h1b{height:28.627500pt;}
.hc{height:29.328750pt;}
.h2{height:29.349375pt;}
.h24{height:30.651053pt;}
.h25{height:30.712356pt;}
.h28{height:31.588750pt;}
.h1{height:32.097500pt;}
.h9{height:32.906875pt;}
.h2c{height:34.946125pt;}
.he{height:35.083125pt;}
.h1c{height:35.516250pt;}
.h32{height:35.541875pt;}
.hb{height:35.567500pt;}
.h8{height:36.438750pt;}
.ha{height:36.464375pt;}
.h2b{height:36.473868pt;}
.h22{height:36.569335pt;}
.h30{height:37.063125pt;}
.h10{height:39.335625pt;}
.h1d{height:39.821250pt;}
.h33{height:41.648953pt;}
.hf{height:43.588125pt;}
.h20{height:44.126250pt;}
.h12{height:44.679777pt;}
.h31{height:46.048125pt;}
.h3{height:46.593750pt;}
.h2e{height:48.312154pt;}
.h7{height:48.314607pt;}
.h2f{height:48.330181pt;}
.hd{height:48.335578pt;}
.h13{height:54.348522pt;}
.h17{height:54.856863pt;}
.h15{height:56.018016pt;}
.h4{height:57.255000pt;}
.h5{height:58.789375pt;}
.h21{height:59.348652pt;}
.h11{height:60.609533pt;}
.h14{height:62.099402pt;}
.h1e{height:63.677658pt;}
.h1f{height:66.237402pt;}
.h16{height:69.850097pt;}
.h18{height:121.497384pt;}
.h19{height:214.643387pt;}
.h23{height:250.970491pt;}
.h27{height:978.560000pt;}
.h0{height:1056.000000pt;}
.w1{width:450.713344pt;}
.w2{width:768.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x34{left:6.201185pt;}
.x33{left:11.885748pt;}
.x32{left:17.592670pt;}
.x52{left:24.000000pt;}
.x49{left:44.284976pt;}
.x35{left:54.957317pt;}
.x36{left:67.562061pt;}
.x37{left:80.166744pt;}
.x1{left:85.120000pt;}
.x2e{left:93.120000pt;}
.x4{left:103.999680pt;}
.x38{left:105.376037pt;}
.x2b{left:106.880000pt;}
.x2d{left:110.720000pt;}
.x39{left:117.977007pt;}
.x62{left:122.879392pt;}
.x3a{left:130.587310pt;}
.x3{left:141.760000pt;}
.x3b{left:143.188300pt;}
.x3c{left:155.798603pt;}
.x4f{left:162.560000pt;}
.x4a{left:170.328046pt;}
.x3d{left:181.000430pt;}
.x31{left:193.839193pt;}
.x3e{left:206.211723pt;}
.x3f{left:218.822026pt;}
.x40{left:231.423016pt;}
.x30{left:238.400256pt;}
.x41{left:244.023853pt;}
.x56{left:248.960000pt;}
.x2f{left:253.759776pt;}
.x42{left:256.634156pt;}
.x43{left:269.235146pt;}
.x44{left:281.845449pt;}
.x4b{left:296.356164pt;}
.x45{left:307.047255pt;}
.x57{left:311.359040pt;}
.x46{left:319.657579pt;}
.x4c{left:334.168459pt;}
.x55{left:343.360000pt;}
.x47{left:344.840872pt;}
.x48{left:357.451175pt;}
.x58{left:373.758080pt;}
.x4d{left:383.776455pt;}
.x50{left:394.560000pt;}
.x51{left:399.360000pt;}
.x60{left:416.433467pt;}
.x5f{left:417.593920pt;}
.x59{left:436.157120pt;}
.x53{left:438.400000pt;}
.x6{left:440.960320pt;}
.x18{left:452.548956pt;}
.x5{left:459.840000pt;}
.x54{left:469.760000pt;}
.x63{left:478.719712pt;}
.x10{left:482.966800pt;}
.x1d{left:493.139446pt;}
.x5a{left:498.872960pt;}
.xf{left:523.629726pt;}
.x1f{left:526.121867pt;}
.x28{left:532.979423pt;}
.x20{left:545.907640pt;}
.x2c{left:547.200320pt;}
.x29{left:548.311332pt;}
.x9{left:549.721844pt;}
.x61{left:554.191333pt;}
.x19{left:557.516667pt;}
.x5b{left:561.272000pt;}
.x13{left:563.509000pt;}
.xd{left:568.529200pt;}
.x25{left:569.812178pt;}
.xb{left:580.069823pt;}
.x26{left:581.333833pt;}
.xe{left:586.126143pt;}
.x8{left:594.620400pt;}
.x1b{left:595.638933pt;}
.x24{left:598.325727pt;}
.x23{left:601.960617pt;}
.x1e{left:604.037867pt;}
.x1a{left:606.629200pt;}
.x21{left:612.894667pt;}
.x5c{left:623.671040pt;}
.x12{left:624.617200pt;}
.xa{left:626.786283pt;}
.x22{left:631.097578pt;}
.x27{left:637.759554pt;}
.x11{left:641.241200pt;}
.x4e{left:644.581467pt;}
.x1c{left:648.808953pt;}
.x14{left:650.613227pt;}
.x17{left:652.792000pt;}
.x16{left:661.248884pt;}
.x2{left:666.880000pt;}
.x15{left:672.116828pt;}
.xc{left:678.523097pt;}
.x5d{left:686.070080pt;}
.x2a{left:738.638535pt;}
.x5e{left:744.952640pt;}
.x7{left:766.415360pt;}
}




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