
    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_228aaff6110a7a8fad3f4439.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ec5c112541f8ad2331ecceb2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.942000;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_e4444893909b311a6e4f4dc3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;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_1df830937fa4f7ba12cf3e34.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.014000;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_c3beffc0bd76863da1362eb2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.854000;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_8a7e35fec577b2a7f219e267.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f342f562d4b56999c5eddf9e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_14c60a64c1cb2bd4a5c1fff0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7d894ea9ca5cd62ddb91dc19.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_2a3909156a25d741d0dd8588.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_21620841e5a952efacfeda62.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.735000;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_acf47601e2b5031fdd114b61.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.685000;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_f78e3284d2948038711d1ecb.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.525000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_7437154567928117175ee488.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;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_33179c5693f8e578f8211235.woff2')format("woff");}.fff{font-family:fff;line-height:1.735000;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_041ca74ec78fdfeaf825b4a7.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_08b70ba0bcca5d7464117852.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_5567cd9b8749f5ad0b0644d2.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_0b5a68312cf750e509844da2.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_33179c5693f8e578f8211235.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.735000;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_08b70ba0bcca5d7464117852.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_5567cd9b8749f5ad0b0644d2.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_041ca74ec78fdfeaf825b4a7.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_0b5a68312cf750e509844da2.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_041ca74ec78fdfeaf825b4a7.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_0b5a68312cf750e509844da2.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_33179c5693f8e578f8211235.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.735000;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_041ca74ec78fdfeaf825b4a7.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_08b70ba0bcca5d7464117852.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_5567cd9b8749f5ad0b0644d2.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_0b5a68312cf750e509844da2.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_33179c5693f8e578f8211235.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.735000;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_041ca74ec78fdfeaf825b4a7.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_08b70ba0bcca5d7464117852.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_5567cd9b8749f5ad0b0644d2.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_0b5a68312cf750e509844da2.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_041ca74ec78fdfeaf825b4a7.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_5567cd9b8749f5ad0b0644d2.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_0b5a68312cf750e509844da2.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_041ca74ec78fdfeaf825b4a7.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_5567cd9b8749f5ad0b0644d2.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_0b5a68312cf750e509844da2.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_33179c5693f8e578f8211235.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.735000;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_041ca74ec78fdfeaf825b4a7.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_08b70ba0bcca5d7464117852.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_5567cd9b8749f5ad0b0644d2.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_0b5a68312cf750e509844da2.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_33179c5693f8e578f8211235.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.735000;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_041ca74ec78fdfeaf825b4a7.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_08b70ba0bcca5d7464117852.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_5567cd9b8749f5ad0b0644d2.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_0b5a68312cf750e509844da2.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_041ca74ec78fdfeaf825b4a7.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_08b70ba0bcca5d7464117852.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_5567cd9b8749f5ad0b0644d2.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_3790a425e6b70de0e16b8369.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_ae44ad66b62663d17df07adf.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_041ca74ec78fdfeaf825b4a7.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_08b70ba0bcca5d7464117852.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_5567cd9b8749f5ad0b0644d2.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_3790a425e6b70de0e16b8369.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_ae44ad66b62663d17df07adf.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_08b70ba0bcca5d7464117852.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_0b5a68312cf750e509844da2.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_08b70ba0bcca5d7464117852.woff2')format("woff");}.ff41{font-family:ff41;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_aa8a8f634b0f5f043b71bff7.woff2')format("woff");}.ff42{font-family:ff42;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url('chunks/assets/font_57afc9a9ae824a111fb00b19.woff2')format("woff");}.ff43{font-family:ff43;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_223addd3b05e8c7c3ea5ec2b.woff2')format("woff");}.ff44{font-family:ff44;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_57afc9a9ae824a111fb00b19.woff2')format("woff");}.ff45{font-family:ff45;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46;src:url('chunks/assets/font_aa8a8f634b0f5f043b71bff7.woff2')format("woff");}.ff46{font-family:ff46;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_223addd3b05e8c7c3ea5ec2b.woff2')format("woff");}.ff47{font-family:ff47;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48;src:url('chunks/assets/font_57afc9a9ae824a111fb00b19.woff2')format("woff");}.ff48{font-family:ff48;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url('chunks/assets/font_aa8a8f634b0f5f043b71bff7.woff2')format("woff");}.ff49{font-family:ff49;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a;src:url('chunks/assets/font_83e00395219aadd18009b6f8.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b;src:url('chunks/assets/font_223addd3b05e8c7c3ea5ec2b.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4c;src:url('chunks/assets/font_57afc9a9ae824a111fb00b19.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d;src:url('chunks/assets/font_47a74c39e820895b6461965a.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e;src:url('chunks/assets/font_b91e724fc8bc68718f3a8537.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4f;src:url('chunks/assets/font_83e00395219aadd18009b6f8.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff50;src:url('chunks/assets/font_223addd3b05e8c7c3ea5ec2b.woff2')format("woff");}.ff50{font-family:ff50;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff51;src:url('chunks/assets/font_57afc9a9ae824a111fb00b19.woff2')format("woff");}.ff51{font-family:ff51;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff52;src:url('chunks/assets/font_47a74c39e820895b6461965a.woff2')format("woff");}.ff52{font-family:ff52;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff53;src:url('chunks/assets/font_b91e724fc8bc68718f3a8537.woff2')format("woff");}.ff53{font-family:ff53;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff54;src:url('chunks/assets/font_83e00395219aadd18009b6f8.woff2')format("woff");}.ff54{font-family:ff54;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff55;src:url('chunks/assets/font_223addd3b05e8c7c3ea5ec2b.woff2')format("woff");}.ff55{font-family:ff55;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff56;src:url('chunks/assets/font_ad53c2ec97c2ad6789a2e125.woff2')format("woff");}.ff56{font-family:ff56;line-height:1.735000;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:ff57;src:url('chunks/assets/font_223addd3b05e8c7c3ea5ec2b.woff2')format("woff");}.ff57{font-family:ff57;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff58;src:url('chunks/assets/font_57afc9a9ae824a111fb00b19.woff2')format("woff");}.ff58{font-family:ff58;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff59;src:url('chunks/assets/font_ad53c2ec97c2ad6789a2e125.woff2')format("woff");}.ff59{font-family:ff59;line-height:1.735000;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:ff5a;src:url('chunks/assets/font_83e00395219aadd18009b6f8.woff2')format("woff");}.ff5a{font-family:ff5a;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5b;src:url('chunks/assets/font_223addd3b05e8c7c3ea5ec2b.woff2')format("woff");}.ff5b{font-family:ff5b;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5c;src:url('chunks/assets/font_57afc9a9ae824a111fb00b19.woff2')format("woff");}.ff5c{font-family:ff5c;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5d;src:url('chunks/assets/font_aa8a8f634b0f5f043b71bff7.woff2')format("woff");}.ff5d{font-family:ff5d;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5e;src:url('chunks/assets/font_2a430df92463e2c99d807d32.woff2')format("woff");}.ff5e{font-family:ff5e;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5f;src:url('chunks/assets/font_dae469f35360b461714166b6.woff2')format("woff");}.ff5f{font-family:ff5f;line-height:0.918000;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:ff60;src:url('chunks/assets/font_234da717042d69112cb4a4af.woff2')format("woff");}.ff60{font-family:ff60;line-height:0.704000;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:ff61;src:url('chunks/assets/font_e00450af5d881fc50b7e8d3a.woff2')format("woff");}.ff61{font-family:ff61;line-height:0.665000;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:ff62;src:url('chunks/assets/font_74594c42c07bad52d92c4110.woff2')format("woff");}.ff62{font-family:ff62;line-height:0.829000;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:ff63;src:url('chunks/assets/font_fc393bfdc65b66bd4bc5ce28.woff2')format("woff");}.ff63{font-family:ff63;line-height:0.709000;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;}
.ff64{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff65;src:url('chunks/assets/font_32d4c400e7e5c700b8d26acf.woff2')format("woff");}.ff65{font-family:ff65;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff66{font-family:sans-serif;visibility:hidden;}
.ff67{font-family:sans-serif;visibility:hidden;}
.ff68{font-family:sans-serif;visibility:hidden;}
.ff69{font-family:sans-serif;visibility:hidden;}
.ff6a{font-family:sans-serif;visibility:hidden;}
.ff6b{font-family:sans-serif;visibility:hidden;}
.ff6c{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff6d;src:url('chunks/assets/font_9c33072d27f400452cff4724.woff2')format("woff");}.ff6d{font-family:ff6d;line-height:0.875977;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vb{vertical-align:-18.432000px;}
.v9{vertical-align:-14.752682px;}
.v1{vertical-align:-8.964000px;}
.v5{vertical-align:-5.802576px;}
.vc{vertical-align:-1.962000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:5.802576px;}
.v7{vertical-align:14.044255px;}
.v3{vertical-align:15.774000px;}
.va{vertical-align:17.538000px;}
.ve{vertical-align:18.744000px;}
.v2{vertical-align:21.696000px;}
.v4{vertical-align:24.678000px;}
.v8{vertical-align:32.158858px;}
.vd{vertical-align:33.684000px;}
.ls3{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000062px;}
.ls47{letter-spacing:0.000192px;}
.ls3e{letter-spacing:0.000194px;}
.ls48{letter-spacing:0.000311px;}
.ls87{letter-spacing:0.000538px;}
.ls7e{letter-spacing:0.000921px;}
.ls51{letter-spacing:0.001050px;}
.ls5a{letter-spacing:0.001610px;}
.ls27{letter-spacing:0.001690px;}
.lsa1{letter-spacing:0.001866px;}
.ls46{letter-spacing:0.001948px;}
.ls8c{letter-spacing:0.002245px;}
.ls50{letter-spacing:0.002251px;}
.ls3b{letter-spacing:0.002271px;}
.ls90{letter-spacing:0.002338px;}
.ls56{letter-spacing:0.002367px;}
.ls6d{letter-spacing:0.002685px;}
.ls3c{letter-spacing:0.002692px;}
.ls4f{letter-spacing:0.002694px;}
.ls37{letter-spacing:0.002719px;}
.ls1b{letter-spacing:0.003031px;}
.ls4a{letter-spacing:0.003143px;}
.ls1e{letter-spacing:0.003269px;}
.ls92{letter-spacing:0.004200px;}
.ls20{letter-spacing:0.004896px;}
.ls80{letter-spacing:0.005306px;}
.ls40{letter-spacing:0.006155px;}
.ls36{letter-spacing:0.007768px;}
.ls67{letter-spacing:0.008052px;}
.ls5f{letter-spacing:0.008126px;}
.ls45{letter-spacing:0.012811px;}
.ls41{letter-spacing:0.012918px;}
.ls39{letter-spacing:0.019292px;}
.ls49{letter-spacing:0.020669px;}
.ls4e{letter-spacing:0.032759px;}
.ls38{letter-spacing:0.033057px;}
.ls4b{letter-spacing:0.036608px;}
.ls43{letter-spacing:0.036941px;}
.lsbe{letter-spacing:0.054432px;}
.lsbb{letter-spacing:0.076080px;}
.lsbc{letter-spacing:0.077760px;}
.lsbd{letter-spacing:0.085536px;}
.lsba{letter-spacing:0.116640px;}
.lsc0{letter-spacing:0.132192px;}
.ls0{letter-spacing:0.139968px;}
.lsbf{letter-spacing:0.194400px;}
.ls2{letter-spacing:0.386400px;}
.lsa4{letter-spacing:0.458387px;}
.ls9b{letter-spacing:0.464387px;}
.lsae{letter-spacing:0.502322px;}
.ls83{letter-spacing:0.508322px;}
.ls1{letter-spacing:0.524160px;}
.ls4{letter-spacing:0.550368px;}
.ls5{letter-spacing:0.628992px;}
.ls6{letter-spacing:0.654480px;}
.ls7{letter-spacing:0.725760px;}
.ls44{letter-spacing:0.985361px;}
.ls3f{letter-spacing:0.989245px;}
.ls60{letter-spacing:1.390683px;}
.ls62{letter-spacing:1.577470px;}
.ls35{letter-spacing:1.880823px;}
.ls3d{letter-spacing:1.921136px;}
.ls4c{letter-spacing:1.922867px;}
.ls42{letter-spacing:1.936463px;}
.ls3a{letter-spacing:1.940347px;}
.ls7d{letter-spacing:2.138023px;}
.ls33{letter-spacing:2.144023px;}
.ls8b{letter-spacing:2.984525px;}
.ls53{letter-spacing:2.984915px;}
.ls1c{letter-spacing:2.986982px;}
.lsd{letter-spacing:2.987373px;}
.ls28{letter-spacing:2.989140px;}
.ls5c{letter-spacing:2.989289px;}
.ls8f{letter-spacing:2.990525px;}
.ls9f{letter-spacing:2.990915px;}
.ls65{letter-spacing:3.007400px;}
.ls66{letter-spacing:3.010110px;}
.ls61{letter-spacing:3.657650px;}
.ls31{letter-spacing:4.685915px;}
.ls88{letter-spacing:4.688646px;}
.ls64{letter-spacing:5.395483px;}
.ls8{letter-spacing:6.433866px;}
.ls4d{letter-spacing:6.434349px;}
.ls5e{letter-spacing:6.492843px;}
.ls99{letter-spacing:6.516305px;}
.ls1f{letter-spacing:6.517690px;}
.ls63{letter-spacing:6.708582px;}
.ls1a{letter-spacing:8.304065px;}
.ls6f{letter-spacing:8.604538px;}
.ls2b{letter-spacing:9.962338px;}
.ls74{letter-spacing:10.182538px;}
.ls73{letter-spacing:10.184685px;}
.ls6e{letter-spacing:10.484823px;}
.ls34{letter-spacing:11.106538px;}
.ls77{letter-spacing:11.880538px;}
.ls76{letter-spacing:11.885023px;}
.ls8e{letter-spacing:13.278538px;}
.ls94{letter-spacing:13.281269px;}
.ls8d{letter-spacing:13.282200px;}
.ls7a{letter-spacing:13.283023px;}
.ls7b{letter-spacing:13.284538px;}
.ls91{letter-spacing:13.286245px;}
.ls79{letter-spacing:13.760823px;}
.ls1d{letter-spacing:14.031269px;}
.ls78{letter-spacing:14.212896px;}
.ls7c{letter-spacing:14.943269px;}
.ls97{letter-spacing:14.948245px;}
.lsb{letter-spacing:15.798538px;}
.lsc{letter-spacing:15.804538px;}
.ls93{letter-spacing:16.268525px;}
.ls96{letter-spacing:16.602538px;}
.ls23{letter-spacing:16.604400px;}
.ls25{letter-spacing:16.605031px;}
.ls22{letter-spacing:16.605269px;}
.ls95{letter-spacing:16.610245px;}
.ls75{letter-spacing:16.826823px;}
.ls89{letter-spacing:16.977269px;}
.ls8a{letter-spacing:16.981084px;}
.ls69{letter-spacing:17.084023px;}
.ls21{letter-spacing:17.116200px;}
.lsab{letter-spacing:17.452878px;}
.lsa8{letter-spacing:17.528525px;}
.lsb1{letter-spacing:17.698878px;}
.ls6c{letter-spacing:17.760538px;}
.ls9d{letter-spacing:17.930525px;}
.ls7f{letter-spacing:17.935140px;}
.ls24{letter-spacing:17.935409px;}
.lsa0{letter-spacing:17.958921px;}
.ls18{letter-spacing:18.052231px;}
.lsa6{letter-spacing:18.102921px;}
.ls30{letter-spacing:18.122023px;}
.ls55{letter-spacing:18.464915px;}
.ls2d{letter-spacing:18.524338px;}
.ls2f{letter-spacing:18.524400px;}
.ls84{letter-spacing:19.346915px;}
.lsaf{letter-spacing:19.352915px;}
.lsaa{letter-spacing:19.504350px;}
.ls5b{letter-spacing:19.524532px;}
.ls58{letter-spacing:19.530532px;}
.lsb0{letter-spacing:19.582350px;}
.ls86{letter-spacing:19.637915px;}
.ls6b{letter-spacing:19.640823px;}
.ls29{letter-spacing:19.718100px;}
.lsa{letter-spacing:19.838196px;}
.ls82{letter-spacing:19.996884px;}
.ls17{letter-spacing:20.024826px;}
.lsb4{letter-spacing:20.128878px;}
.lsa7{letter-spacing:20.900525px;}
.lsb3{letter-spacing:21.214350px;}
.ls98{letter-spacing:21.293915px;}
.ls2c{letter-spacing:21.517140px;}
.lsa3{letter-spacing:21.870921px;}
.ls19{letter-spacing:21.896100px;}
.ls13{letter-spacing:22.038062px;}
.ls26{letter-spacing:22.231409px;}
.ls16{letter-spacing:22.399866px;}
.ls9a{letter-spacing:22.997249px;}
.lsad{letter-spacing:23.176878px;}
.ls2e{letter-spacing:23.213915px;}
.ls32{letter-spacing:23.250065px;}
.ls70{letter-spacing:23.660685px;}
.ls71{letter-spacing:23.662896px;}
.ls2a{letter-spacing:23.687306px;}
.ls52{letter-spacing:23.966915px;}
.lsa5{letter-spacing:24.764525px;}
.ls9c{letter-spacing:24.794525px;}
.ls15{letter-spacing:25.025373px;}
.ls14{letter-spacing:25.268196px;}
.ls59{letter-spacing:25.382915px;}
.lsb6{letter-spacing:25.828878px;}
.lsa2{letter-spacing:26.432525px;}
.lsb9{letter-spacing:26.494878px;}
.ls12{letter-spacing:29.738400px;}
.lsf{letter-spacing:29.744338px;}
.lsac{letter-spacing:30.364350px;}
.ls72{letter-spacing:32.727986px;}
.ls11{letter-spacing:32.730615px;}
.ls9e{letter-spacing:33.273972px;}
.ls54{letter-spacing:34.676915px;}
.ls6a{letter-spacing:35.865360px;}
.ls68{letter-spacing:35.870880px;}
.lse{letter-spacing:36.169866px;}
.lsb5{letter-spacing:38.320350px;}
.lsb8{letter-spacing:40.312350px;}
.ls57{letter-spacing:41.922532px;}
.ls9{letter-spacing:74.721269px;}
.ls5d{letter-spacing:84.878915px;}
.lsa9{letter-spacing:184.210841px;}
.lsb7{letter-spacing:185.529852px;}
.lsb2{letter-spacing:188.242020px;}
.ls81{letter-spacing:251.906688px;}
.ls85{letter-spacing:273.896915px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse1{word-spacing:-251.906688px;}
.ws11f{word-spacing:-188.242020px;}
.ws123{word-spacing:-185.529852px;}
.ws114{word-spacing:-184.210841px;}
.ws49{word-spacing:-59.775600px;}
.ws4c{word-spacing:-43.157983px;}
.wsbc{word-spacing:-42.637126px;}
.ws1b{word-spacing:-38.937826px;}
.wsa3{word-spacing:-35.865360px;}
.ws100{word-spacing:-33.273972px;}
.ws76{word-spacing:-28.955301px;}
.wsf3{word-spacing:-22.348660px;}
.wsf7{word-spacing:-22.342660px;}
.ws1d{word-spacing:-22.306664px;}
.wscd{word-spacing:-20.294880px;}
.ws13e{word-spacing:-16.539552px;}
.wsc5{word-spacing:-16.363650px;}
.ws0{word-spacing:-15.847488px;}
.ws3b{word-spacing:-14.943900px;}
.wsfa{word-spacing:-14.034404px;}
.ws1{word-spacing:-13.815360px;}
.wsa6{word-spacing:-10.805065px;}
.wsaa{word-spacing:-10.797298px;}
.wsb4{word-spacing:-6.472695px;}
.ws19{word-spacing:-4.981320px;}
.wsad{word-spacing:-3.700987px;}
.wse8{word-spacing:-3.407209px;}
.ws86{word-spacing:-3.168107px;}
.ws5{word-spacing:-3.108331px;}
.wsd9{word-spacing:-3.048556px;}
.wsb3{word-spacing:-3.048455px;}
.wsb1{word-spacing:-3.045711px;}
.ws13b{word-spacing:-2.749678px;}
.wse4{word-spacing:-2.552729px;}
.ws115{word-spacing:-2.356366px;}
.ws67{word-spacing:-2.271473px;}
.ws126{word-spacing:-2.211697px;}
.ws11d{word-spacing:-2.160002px;}
.ws129{word-spacing:-2.032370px;}
.ws137{word-spacing:-1.912819px;}
.ws61{word-spacing:-1.853044px;}
.wsdd{word-spacing:-1.733492px;}
.wse5{word-spacing:-1.701820px;}
.ws32{word-spacing:-1.673717px;}
.wsae{word-spacing:-1.620807px;}
.ws12a{word-spacing:-1.613941px;}
.wsa{word-spacing:-1.554166px;}
.ws2b{word-spacing:-1.504584px;}
.ws2c{word-spacing:-1.494390px;}
.ws7{word-spacing:-1.434614px;}
.wsa8{word-spacing:-1.428994px;}
.ws74{word-spacing:-1.374839px;}
.ws59{word-spacing:-1.315063px;}
.wscf{word-spacing:-1.255288px;}
.ws10b{word-spacing:-1.135736px;}
.ws104{word-spacing:-1.131079px;}
.ws103{word-spacing:-1.129852px;}
.ws105{word-spacing:-1.112728px;}
.ws87{word-spacing:-1.075961px;}
.ws13a{word-spacing:-1.049695px;}
.ws29{word-spacing:-1.016185px;}
.ws41{word-spacing:-0.956410px;}
.ws3f{word-spacing:-0.913991px;}
.ws40{word-spacing:-0.913453px;}
.ws3e{word-spacing:-0.907808px;}
.ws3d{word-spacing:-0.896634px;}
.wsd5{word-spacing:-0.836858px;}
.ws1c{word-spacing:-0.804786px;}
.ws51{word-spacing:-0.804436px;}
.ws63{word-spacing:-0.777083px;}
.ws57{word-spacing:-0.717307px;}
.ws33{word-spacing:-0.657532px;}
.ws9a{word-spacing:-0.597756px;}
.ws99{word-spacing:-0.590392px;}
.wsfe{word-spacing:-0.478205px;}
.ws110{word-spacing:-0.418429px;}
.wsd7{word-spacing:-0.402500px;}
.wsd8{word-spacing:-0.358654px;}
.wsba{word-spacing:-0.196364px;}
.ws8a{word-spacing:-0.179327px;}
.wsbb{word-spacing:-0.152288px;}
.wsbd{word-spacing:-0.130909px;}
.ws78{word-spacing:-0.119551px;}
.wsbf{word-spacing:-0.065455px;}
.wsaf{word-spacing:-0.061910px;}
.ws1a{word-spacing:-0.059776px;}
.wsc4{word-spacing:-0.047821px;}
.wsab{word-spacing:-0.038694px;}
.wsac{word-spacing:-0.038374px;}
.wsb2{word-spacing:-0.038345px;}
.wsa9{word-spacing:-0.038311px;}
.wsb0{word-spacing:-0.038269px;}
.wsa7{word-spacing:-0.027086px;}
.wsb5{word-spacing:-0.026842px;}
.ws38{word-spacing:-0.006769px;}
.ws36{word-spacing:-0.006672px;}
.wsfb{word-spacing:-0.003695px;}
.wsda{word-spacing:-0.001753px;}
.wsfc{word-spacing:-0.001687px;}
.ws4b{word-spacing:-0.000554px;}
.wsff{word-spacing:-0.000158px;}
.ws3{word-spacing:0.000000px;}
.ws37{word-spacing:0.003260px;}
.wsc{word-spacing:0.059776px;}
.ws18{word-spacing:0.119551px;}
.ws12f{word-spacing:0.179327px;}
.wsb7{word-spacing:0.196364px;}
.ws25{word-spacing:0.239102px;}
.ws121{word-spacing:0.261818px;}
.wse9{word-spacing:0.298878px;}
.wse2{word-spacing:0.327273px;}
.ws128{word-spacing:0.358654px;}
.ws8e{word-spacing:0.418429px;}
.ws111{word-spacing:0.478205px;}
.ws24{word-spacing:0.537980px;}
.ws9f{word-spacing:0.597756px;}
.ws130{word-spacing:0.657532px;}
.ws113{word-spacing:0.717307px;}
.wse0{word-spacing:0.896634px;}
.ws56{word-spacing:0.956410px;}
.ws23{word-spacing:1.016185px;}
.ws66{word-spacing:1.075961px;}
.ws6a{word-spacing:1.135736px;}
.ws93{word-spacing:1.154021px;}
.ws94{word-spacing:1.195512px;}
.ws28{word-spacing:1.255288px;}
.ws77{word-spacing:1.374839px;}
.ws50{word-spacing:1.434614px;}
.ws95{word-spacing:1.459261px;}
.ws35{word-spacing:1.494390px;}
.ws96{word-spacing:1.498094px;}
.ws30{word-spacing:1.554166px;}
.wsdf{word-spacing:1.613941px;}
.ws9c{word-spacing:1.623742px;}
.ws98{word-spacing:1.673717px;}
.wsa5{word-spacing:1.733492px;}
.ws101{word-spacing:1.767274px;}
.ws9{word-spacing:1.793268px;}
.ws7f{word-spacing:1.824133px;}
.ws80{word-spacing:1.853044px;}
.ws106{word-spacing:1.911911px;}
.ws107{word-spacing:1.963638px;}
.wsec{word-spacing:1.972595px;}
.wsf1{word-spacing:2.029850px;}
.wse6{word-spacing:2.032370px;}
.ws54{word-spacing:2.092146px;}
.ws53{word-spacing:2.118575px;}
.ws4a{word-spacing:2.151922px;}
.ws48{word-spacing:2.211697px;}
.ws102{word-spacing:2.225456px;}
.ws79{word-spacing:2.271473px;}
.ws52{word-spacing:2.331248px;}
.ws8c{word-spacing:2.391024px;}
.ws10e{word-spacing:2.450800px;}
.ws12d{word-spacing:2.510575px;}
.ws9d{word-spacing:2.570351px;}
.ws5b{word-spacing:2.664186px;}
.ws5a{word-spacing:2.689902px;}
.wsa4{word-spacing:2.749678px;}
.ws5c{word-spacing:2.809453px;}
.wsa1{word-spacing:2.840548px;}
.ws2d{word-spacing:2.869229px;}
.ws89{word-spacing:2.929004px;}
.ws8f{word-spacing:2.988780px;}
.ws44{word-spacing:3.030127px;}
.wsf{word-spacing:3.048556px;}
.ws2e{word-spacing:3.108331px;}
.ws13d{word-spacing:3.168107px;}
.ws8d{word-spacing:3.227882px;}
.ws8b{word-spacing:3.287658px;}
.ws11b{word-spacing:3.326186px;}
.ws119{word-spacing:3.338185px;}
.ws6d{word-spacing:3.347434px;}
.ws43{word-spacing:3.407209px;}
.wsa2{word-spacing:3.526760px;}
.ws83{word-spacing:3.580604px;}
.ws42{word-spacing:3.586536px;}
.ws16{word-spacing:3.646312px;}
.ws13c{word-spacing:3.706087px;}
.ws10d{word-spacing:3.765863px;}
.ws6c{word-spacing:3.825638px;}
.ws64{word-spacing:3.885414px;}
.ws117{word-spacing:3.923274px;}
.wsee{word-spacing:3.924344px;}
.wsb{word-spacing:3.945190px;}
.ws22{word-spacing:4.004965px;}
.ws2f{word-spacing:4.064741px;}
.ws10a{word-spacing:4.124516px;}
.ws82{word-spacing:4.184292px;}
.wsb6{word-spacing:4.189094px;}
.ws7d{word-spacing:4.244068px;}
.ws4d{word-spacing:4.297424px;}
.ws4e{word-spacing:4.303843px;}
.ws45{word-spacing:4.363619px;}
.ws7c{word-spacing:4.423394px;}
.ws55{word-spacing:4.483170px;}
.ws34{word-spacing:4.542946px;}
.wsb8{word-spacing:4.581822px;}
.wse{word-spacing:4.602721px;}
.wsb9{word-spacing:4.617712px;}
.ws4f{word-spacing:4.662497px;}
.ws7b{word-spacing:4.722272px;}
.ws70{word-spacing:4.751111px;}
.ws6e{word-spacing:4.782048px;}
.ws6f{word-spacing:4.793358px;}
.ws10f{word-spacing:4.841824px;}
.ws127{word-spacing:4.901599px;}
.ws133{word-spacing:4.961375px;}
.ws2a{word-spacing:5.021150px;}
.wsea{word-spacing:5.080926px;}
.ws81{word-spacing:5.140702px;}
.wsf0{word-spacing:5.200477px;}
.ws12{word-spacing:5.320028px;}
.ws7a{word-spacing:5.499355px;}
.ws39{word-spacing:5.559131px;}
.ws3a{word-spacing:5.577491px;}
.ws31{word-spacing:5.618906px;}
.ws58{word-spacing:5.678682px;}
.ws5d{word-spacing:5.738458px;}
.ws6{word-spacing:5.858009px;}
.ws65{word-spacing:5.917784px;}
.wsc2{word-spacing:5.918494px;}
.wsc3{word-spacing:5.956369px;}
.ws9e{word-spacing:5.977560px;}
.wsbe{word-spacing:6.021823px;}
.ws5f{word-spacing:6.037336px;}
.wsc1{word-spacing:6.087278px;}
.ws85{word-spacing:6.097111px;}
.ws68{word-spacing:6.156887px;}
.ws13{word-spacing:6.276438px;}
.ws20{word-spacing:6.292009px;}
.ws112{word-spacing:6.336214px;}
.ws92{word-spacing:6.395989px;}
.ws84{word-spacing:6.515540px;}
.wse3{word-spacing:6.545460px;}
.ws10{word-spacing:6.575316px;}
.ws12e{word-spacing:6.575778px;}
.ws62{word-spacing:6.635092px;}
.ws124{word-spacing:6.676369px;}
.ws8{word-spacing:6.694867px;}
.ws71{word-spacing:6.814418px;}
.ws72{word-spacing:6.874194px;}
.ws108{word-spacing:6.933970px;}
.ws134{word-spacing:6.993745px;}
.ws21{word-spacing:7.053521px;}
.ws1e{word-spacing:7.093424px;}
.ws1f{word-spacing:7.113296px;}
.ws46{word-spacing:7.232848px;}
.ws138{word-spacing:7.292623px;}
.ws109{word-spacing:7.352399px;}
.ws6b{word-spacing:7.412174px;}
.ws11{word-spacing:7.471950px;}
.wsa0{word-spacing:7.651277px;}
.ws69{word-spacing:7.711052px;}
.ws3c{word-spacing:7.770828px;}
.wseb{word-spacing:8.069706px;}
.ws12c{word-spacing:8.189257px;}
.ws88{word-spacing:8.249033px;}
.ws17{word-spacing:8.308808px;}
.ws97{word-spacing:8.368584px;}
.ws10c{word-spacing:8.488135px;}
.ws12b{word-spacing:8.547911px;}
.ws131{word-spacing:8.667462px;}
.wsd1{word-spacing:8.719850px;}
.wsd2{word-spacing:8.727238px;}
.ws135{word-spacing:8.787013px;}
.ws90{word-spacing:8.843746px;}
.ws91{word-spacing:8.846789px;}
.ws47{word-spacing:8.906564px;}
.ws7e{word-spacing:8.966340px;}
.wsf9{word-spacing:9.922750px;}
.ws26{word-spacing:10.520506px;}
.wsc0{word-spacing:10.527712px;}
.ws9b{word-spacing:11.048624px;}
.ws4{word-spacing:11.237813px;}
.ws14{word-spacing:11.949712px;}
.ws15{word-spacing:11.955120px;}
.ws132{word-spacing:12.253998px;}
.wsf4{word-spacing:13.210408px;}
.wsf6{word-spacing:13.219694px;}
.wsf5{word-spacing:13.226624px;}
.ws139{word-spacing:14.585246px;}
.wsef{word-spacing:15.063510px;}
.wsed{word-spacing:16.281679px;}
.wsf8{word-spacing:16.498066px;}
.wsf2{word-spacing:16.526753px;}
.wsfd{word-spacing:17.445474px;}
.ws5e{word-spacing:17.779550px;}
.ws60{word-spacing:17.781092px;}
.wsd3{word-spacing:17.786400px;}
.ws27{word-spacing:17.813129px;}
.wsce{word-spacing:18.511573px;}
.ws136{word-spacing:20.622582px;}
.ws116{word-spacing:21.845342px;}
.ws11e{word-spacing:22.091342px;}
.ws75{word-spacing:23.611362px;}
.wsd6{word-spacing:23.931634px;}
.ws73{word-spacing:24.209118px;}
.ws11c{word-spacing:24.213121px;}
.ws118{word-spacing:24.219121px;}
.ws120{word-spacing:25.445342px;}
.wse7{word-spacing:25.785634px;}
.wsde{word-spacing:26.043634px;}
.wsd4{word-spacing:27.348018px;}
.wsdb{word-spacing:35.804144px;}
.wsc6{word-spacing:35.805584px;}
.wsdc{word-spacing:35.807504px;}
.wsca{word-spacing:35.810144px;}
.wsc9{word-spacing:35.810624px;}
.wsc8{word-spacing:35.812304px;}
.wsc7{word-spacing:35.813504px;}
.wscc{word-spacing:35.813744px;}
.wscb{word-spacing:35.814704px;}
.ws11a{word-spacing:37.643342px;}
.ws122{word-spacing:48.251342px;}
.ws125{word-spacing:50.909342px;}
.wsd0{word-spacing:53.798400px;}
.wsd{word-spacing:64.557900px;}
.ws2{word-spacing:849.290400px;}
._29{margin-left:-251.441018px;}
._39{margin-left:-188.242020px;}
._3a{margin-left:-185.529852px;}
._38{margin-left:-184.210841px;}
._23{margin-left:-99.765097px;}
._1d{margin-left:-85.273458px;}
._25{margin-left:-37.385771px;}
._21{margin-left:-35.205715px;}
._37{margin-left:-33.273972px;}
._20{margin-left:-31.951204px;}
._10{margin-left:-29.911448px;}
._11{margin-left:-28.282769px;}
._36{margin-left:-24.087173px;}
._1f{margin-left:-21.821723px;}
._22{margin-left:-16.064323px;}
._34{margin-left:-9.669539px;}
._7{margin-left:-7.504254px;}
._b{margin-left:-6.363685px;}
._24{margin-left:-5.220177px;}
._d{margin-left:-4.168140px;}
._1e{margin-left:-2.870217px;}
._0{margin-left:-1.179360px;}
._35{width:1.206014px;}
._27{width:2.691709px;}
._26{width:4.452261px;}
._3f{width:8.349512px;}
._40{width:9.469363px;}
._2b{width:10.488202px;}
._17{width:12.237846px;}
._1c{width:14.286368px;}
._13{width:16.199188px;}
._2{width:17.514251px;}
._8{width:19.394766px;}
._f{width:20.443255px;}
._4{width:22.236523px;}
._6{width:23.818160px;}
._1{width:25.133224px;}
._15{width:27.078347px;}
._c{width:28.920647px;}
._12{width:30.485556px;}
._18{width:31.605140px;}
._14{width:32.757029px;}
._a{width:34.430746px;}
._3{width:36.207862px;}
._19{width:37.222817px;}
._5{width:38.778212px;}
._2a{width:39.927306px;}
._9{width:40.989910px;}
._e{width:43.668492px;}
._1b{width:44.891476px;}
._3b{width:47.804937px;}
._3c{width:49.087122px;}
._3d{width:59.615973px;}
._28{width:65.454600px;}
._1a{width:71.731200px;}
._2d{width:74.113422px;}
._16{width:86.077200px;}
._3e{width:87.451703px;}
._2c{width:143.461440px;}
._32{width:166.516502px;}
._30{width:177.448598px;}
._31{width:199.177776px;}
._33{width:231.971102px;}
._2f{width:432.131269px;}
._2e{width:461.062202px;}
.fcb{color:transparent;}
.fca{color:rgb(171,33,255);}
.fc7{color:rgb(64,128,128);}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(0,128,0);}
.fc3{color:rgb(181,54,3);}
.fc8{color:rgb(0,0,128);}
.fc2{color:rgb(31,138,28);}
.fc9{color:rgb(186,33,33);}
.fc1{color:rgb(0,37,178);}
.fc6{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:19.187078px;}
.fsd{font-size:26.817506px;}
.fs16{font-size:26.841666px;}
.fsf{font-size:26.861832px;}
.fsb{font-size:27.085681px;}
.fs13{font-size:30.955153px;}
.fs18{font-size:35.865600px;}
.fs14{font-size:38.268734px;}
.fsc{font-size:38.310833px;}
.fs15{font-size:38.345348px;}
.fse{font-size:38.374155px;}
.fsa{font-size:38.693941px;}
.fs9{font-size:38.839200px;}
.fs7{font-size:41.842800px;}
.fs12{font-size:43.337090px;}
.fs17{font-size:47.820600px;}
.fs19{font-size:50.952000px;}
.fs1c{font-size:56.645400px;}
.fs1e{font-size:57.051000px;}
.fs1b{font-size:57.468000px;}
.fs1d{font-size:57.885000px;}
.fs1f{font-size:59.040000px;}
.fs5{font-size:59.775600px;}
.fs1a{font-size:61.142400px;}
.fs11{font-size:61.910306px;}
.fs0{font-size:64.800000px;}
.fs8{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:77.760000px;}
.fs6{font-size:86.077200px;}
.fs3{font-size:103.292400px;}
.fs2{font-size:131.040000px;}
.y0{bottom:0.000000px;}
.y104{bottom:0.050081px;}
.y10d{bottom:0.461021px;}
.yfc{bottom:0.742800px;}
.y111{bottom:0.857181px;}
.y10a{bottom:0.884174px;}
.y118{bottom:1.329885px;}
.yf1{bottom:1.692418px;}
.y113{bottom:2.004195px;}
.y107{bottom:2.150601px;}
.yf5{bottom:2.172082px;}
.yf3{bottom:2.439020px;}
.y117{bottom:2.767460px;}
.yf0{bottom:3.143062px;}
.y10c{bottom:4.301441px;}
.y103{bottom:4.419009px;}
.y109{bottom:5.012005px;}
.y110{bottom:7.905719px;}
.y170{bottom:11.818476px;}
.y20a{bottom:13.139078px;}
.y247{bottom:13.233158px;}
.y1cd{bottom:13.329882px;}
.y22e{bottom:13.426607px;}
.y1{bottom:14.031464px;}
.y1ce{bottom:26.024474px;}
.y16f{bottom:30.507510px;}
.y209{bottom:33.916433px;}
.y246{bottom:34.159286px;}
.y22d{bottom:34.658644px;}
.y171{bottom:41.762727px;}
.y1d7{bottom:42.220001px;}
.y5{bottom:43.489186px;}
.y20b{bottom:46.429314px;}
.y248{bottom:46.761763px;}
.y1cf{bottom:46.847294px;}
.y22f{bottom:47.445350px;}
.y1d8{bottom:58.415528px;}
.y3c{bottom:63.168000px;}
.y4{bottom:63.649186px;}
.y1d0{bottom:67.670115px;}
.y1d9{bottom:74.611055px;}
.y23a{bottom:79.745180px;}
.y20c{bottom:81.549462px;}
.y172{bottom:82.378750px;}
.y230{bottom:83.334050px;}
.y216{bottom:85.939480px;}
.y251{bottom:86.554836px;}
.y1d1{bottom:88.492936px;}
.y1da{bottom:90.806583px;}
.y221{bottom:91.583790px;}
.y249{bottom:92.239560px;}
.y1d6{bottom:95.772789px;}
.y1db{bottom:107.002110px;}
.y198{bottom:108.000000px;}
.y1d2{bottom:109.315757px;}
.y9a{bottom:110.002500px;}
.y16d{bottom:112.227000px;}
.y20d{bottom:116.669610px;}
.y3b{bottom:118.968000px;}
.y231{bottom:119.222750px;}
.y147{bottom:122.706000px;}
.y173{bottom:122.994773px;}
.y1dc{bottom:123.197637px;}
.y217{bottom:125.449647px;}
.y1fb{bottom:125.652000px;}
.y241{bottom:125.760000px;}
.y197{bottom:125.932500px;}
.y252{bottom:126.347908px;}
.y25a{bottom:127.171500px;}
.y228{bottom:127.857000px;}
.y99{bottom:127.936500px;}
.y1d3{bottom:130.138577px;}
.y16c{bottom:130.159500px;}
.y100{bottom:130.596810px;}
.y6b{bottom:131.649000px;}
.yc5{bottom:134.826000px;}
.y222{bottom:136.738266px;}
.y3a{bottom:136.900500px;}
.y24a{bottom:137.717357px;}
.y1dd{bottom:139.393165px;}
.y146{bottom:140.638500px;}
.y1fa{bottom:143.584500px;}
.y196{bottom:143.865000px;}
.y1be{bottom:144.184500px;}
.y23b{bottom:144.344840px;}
.y98{bottom:145.869000px;}
.y240{bottom:146.083500px;}
.y259{bottom:147.495000px;}
.y16b{bottom:148.092000px;}
.y227{bottom:148.182000px;}
.yeb{bottom:148.387500px;}
.y287{bottom:149.548500px;}
.y6a{bottom:149.581500px;}
.y1d4{bottom:150.961398px;}
.y20e{bottom:151.789758px;}
.yc4{bottom:152.758500px;}
.y232{bottom:155.111450px;}
.y1de{bottom:155.588692px;}
.y215{bottom:156.011610px;}
.y250{bottom:157.128705px;}
.y179{bottom:157.278474px;}
.y239{bottom:159.425691px;}
.y21d{bottom:160.780002px;}
.y1f9{bottom:161.517000px;}
.y195{bottom:161.797500px;}
.y258{bottom:161.931241px;}
.y1bd{bottom:162.117000px;}
.y174{bottom:163.610796px;}
.y97{bottom:163.801500px;}
.y23f{bottom:164.298432px;}
.y218{bottom:164.959813px;}
.y16a{bottom:166.024500px;}
.y253{bottom:166.140981px;}
.yea{bottom:166.321500px;}
.y2b0{bottom:167.434500px;}
.y286{bottom:167.481000px;}
.y69{bottom:167.514000px;}
.y39{bottom:169.777500px;}
.y145{bottom:169.779000px;}
.yc3{bottom:170.691000px;}
.y1d5{bottom:171.784219px;}
.y1f8{bottom:179.449500px;}
.y194{bottom:179.731500px;}
.y1bc{bottom:180.051000px;}
.y96{bottom:181.734000px;}
.y223{bottom:181.892742px;}
.y24b{bottom:183.195154px;}
.ye9{bottom:184.254000px;}
.y2af{bottom:185.367000px;}
.y20f{bottom:186.909906px;}
.y68{bottom:187.543500px;}
.y144{bottom:187.711500px;}
.y1c0{bottom:188.241577px;}
.yc2{bottom:188.623500px;}
.y22c{bottom:188.703000px;}
.y245{bottom:190.114500px;}
.y220{bottom:190.801500px;}
.y233{bottom:191.000150px;}
.y285{bottom:191.095500px;}
.y169{bottom:194.470500px;}
.y1f7{bottom:197.383500px;}
.y193{bottom:197.664000px;}
.y1bb{bottom:197.983500px;}
.y95{bottom:199.666500px;}
.y1c1{bottom:200.936168px;}
.ye8{bottom:202.186500px;}
.y38{bottom:202.654500px;}
.y2ae{bottom:203.299500px;}
.y175{bottom:204.226819px;}
.y219{bottom:204.469980px;}
.y67{bottom:205.476000px;}
.y143{bottom:205.644000px;}
.y254{bottom:205.934053px;}
.yc1{bottom:206.556000px;}
.y23c{bottom:208.944500px;}
.y284{bottom:209.028000px;}
.y1f6{bottom:215.316000px;}
.y1c8{bottom:215.512143px;}
.y192{bottom:215.596500px;}
.y1ba{bottom:215.916000px;}
.ye7{bottom:220.119000px;}
.y37{bottom:220.587000px;}
.yfe{bottom:221.398781px;}
.y210{bottom:222.030054px;}
.y66{bottom:223.410000px;}
.yc0{bottom:224.490000px;}
.y2ad{bottom:226.869000px;}
.y234{bottom:226.888850px;}
.y224{bottom:227.047218px;}
.y94{bottom:228.112500px;}
.y24c{bottom:228.672952px;}
.y1c2{bottom:230.088117px;}
.y283{bottom:232.644000px;}
.y1f5{bottom:233.248500px;}
.y191{bottom:233.529000px;}
.y1b9{bottom:233.848500px;}
.y142{bottom:234.090000px;}
.y168{bottom:237.573000px;}
.ye6{bottom:238.051500px;}
.y36{bottom:238.519500px;}
.y65{bottom:241.342500px;}
.ybf{bottom:242.422500px;}
.y21a{bottom:243.980146px;}
.y1c9{bottom:244.664092px;}
.y176{bottom:244.842841px;}
.y255{bottom:245.727126px;}
.y2e0{bottom:245.809037px;}
.y2ac{bottom:250.437000px;}
.y282{bottom:250.576500px;}
.y1f4{bottom:251.181000px;}
.y1b8{bottom:251.781000px;}
.y123{bottom:253.792500px;}
.y167{bottom:255.505500px;}
.ye5{bottom:255.985500px;}
.y35{bottom:256.452000px;}
.y211{bottom:257.150202px;}
.y190{bottom:257.659500px;}
.y1c3{bottom:259.240066px;}
.y64{bottom:259.275000px;}
.y17c{bottom:259.305874px;}
.ybe{bottom:260.355000px;}
.y235{bottom:262.777550px;}
.y121{bottom:265.696500px;}
.y2ab{bottom:268.369500px;}
.y281{bottom:268.509000px;}
.y1f3{bottom:269.113500px;}
.y2df{bottom:269.209037px;}
.y122{bottom:269.430000px;}
.y1b7{bottom:269.713500px;}
.y1c7{bottom:270.684484px;}
.y93{bottom:271.812000px;}
.y225{bottom:272.201694px;}
.y166{bottom:273.438000px;}
.y23d{bottom:273.544160px;}
.y1ca{bottom:273.816041px;}
.ye4{bottom:273.918000px;}
.y120{bottom:274.116000px;}
.y24d{bottom:274.150749px;}
.y34{bottom:274.384500px;}
.y18f{bottom:275.592000px;}
.y63{bottom:277.207500px;}
.y141{bottom:277.789500px;}
.ybd{bottom:278.287500px;}
.y17b{bottom:281.756599px;}
.y21b{bottom:283.490313px;}
.y177{bottom:285.458864px;}
.y256{bottom:285.520198px;}
.y1f2{bottom:287.046000px;}
.y1c4{bottom:288.392015px;}
.y92{bottom:289.744500px;}
.y2de{bottom:291.889337px;}
.y2aa{bottom:291.939000px;}
.y280{bottom:292.125000px;}
.y212{bottom:292.270350px;}
.y33{bottom:292.318500px;}
.y11f{bottom:293.202000px;}
.y18e{bottom:293.524500px;}
.y62{bottom:295.140000px;}
.y140{bottom:295.722000px;}
.ybc{bottom:296.220000px;}
.y1b6{bottom:298.159500px;}
.y236{bottom:298.666250px;}
.y11e{bottom:301.623000px;}
.y165{bottom:301.884000px;}
.y1cb{bottom:302.967990px;}
.y17a{bottom:304.207324px;}
.y1f1{bottom:304.980000px;}
.y91{bottom:307.678500px;}
.ye3{bottom:307.969500px;}
.y27f{bottom:310.057500px;}
.y32{bottom:310.251000px;}
.y61{bottom:313.074000px;}
.y13f{bottom:313.656000px;}
.ybb{bottom:314.154000px;}
.y2a9{bottom:315.508500px;}
.y226{bottom:317.356170px;}
.y1c5{bottom:317.543965px;}
.y11d{bottom:317.563500px;}
.y18d{bottom:317.655000px;}
.y24e{bottom:319.628546px;}
.y11c{bottom:321.948000px;}
.y1f0{bottom:322.912500px;}
.y21c{bottom:323.000479px;}
.y257{bottom:325.313271px;}
.y178{bottom:326.074887px;}
.y213{bottom:327.390498px;}
.y31{bottom:328.183500px;}
.y60{bottom:331.006500px;}
.y90{bottom:331.588500px;}
.yba{bottom:332.086500px;}
.y1cc{bottom:332.119939px;}
.y164{bottom:332.721000px;}
.y2a8{bottom:333.441000px;}
.y27e{bottom:333.672000px;}
.y237{bottom:334.554950px;}
.ye2{bottom:334.869000px;}
.y18c{bottom:335.587500px;}
.y23e{bottom:338.143820px;}
.y1ef{bottom:340.845000px;}
.y1b5{bottom:341.859000px;}
.y11b{bottom:342.271500px;}
.y30{bottom:346.116000px;}
.y1c6{bottom:346.695914px;}
.y5f{bottom:348.939000px;}
.y8f{bottom:349.521000px;}
.yb9{bottom:350.019000px;}
.y27d{bottom:351.606000px;}
.yf7{bottom:352.465740px;}
.y18b{bottom:353.520000px;}
.y2a7{bottom:357.009000px;}
.yf9{bottom:357.320640px;}
.y1ee{bottom:358.777500px;}
.y214{bottom:362.510646px;}
.y11a{bottom:362.595000px;}
.y2f{bottom:364.048500px;}
.y24f{bottom:365.106343px;}
.y5e{bottom:366.871500px;}
.y8e{bottom:367.453500px;}
.yb8{bottom:367.951500px;}
.y27c{bottom:369.538500px;}
.y238{bottom:370.443650px;}
.y18a{bottom:371.452500px;}
.y2a6{bottom:374.943000px;}
.y163{bottom:376.420500px;}
.y1ed{bottom:376.710000px;}
.y2e{bottom:381.982500px;}
.y119{bottom:382.918500px;}
.y5d{bottom:384.804000px;}
.y8d{bottom:385.386000px;}
.yb7{bottom:385.884000px;}
.ye1{bottom:386.298000px;}
.y189{bottom:389.386500px;}
.y2a5{bottom:392.875500px;}
.y27b{bottom:393.153000px;}
.y2dd{bottom:393.769037px;}
.y162{bottom:394.353000px;}
.y1ec{bottom:394.642500px;}
.y1b4{bottom:397.152000px;}
.y2d{bottom:399.915000px;}
.y5c{bottom:402.736500px;}
.y8c{bottom:403.318500px;}
.yb6{bottom:403.816500px;}
.ye0{bottom:404.232000px;}
.y27a{bottom:411.085500px;}
.yec{bottom:412.089000px;}
.y161{bottom:412.285500px;}
.y1eb{bottom:412.576500px;}
.yee{bottom:415.093950px;}
.y2a4{bottom:416.443500px;}
.y188{bottom:417.831000px;}
.y2c{bottom:417.847500px;}
.y1b3{bottom:419.568000px;}
.y5b{bottom:420.670500px;}
.y13e{bottom:421.252500px;}
.yb5{bottom:421.750500px;}
.ydf{bottom:422.164500px;}
.y8b{bottom:427.230000px;}
.y160{bottom:430.218000px;}
.y1ea{bottom:430.509000px;}
.y279{bottom:434.701500px;}
.y2b{bottom:435.780000px;}
.y112{bottom:435.926025px;}
.y108{bottom:436.581000px;}
.y5a{bottom:438.603000px;}
.y13d{bottom:439.185000px;}
.yb4{bottom:439.683000px;}
.y2a3{bottom:440.013000px;}
.yde{bottom:440.097000px;}
.y1b2{bottom:441.984000px;}
.y8a{bottom:445.162500px;}
.y106{bottom:447.370665px;}
.y15f{bottom:448.150500px;}
.y1e9{bottom:448.441500px;}
.y278{bottom:452.634000px;}
.y2a{bottom:453.712500px;}
.y59{bottom:456.535500px;}
.y13c{bottom:457.117500px;}
.yb3{bottom:457.615500px;}
.y2a2{bottom:457.945500px;}
.ydd{bottom:458.029500px;}
.y115{bottom:459.273540px;}
.y187{bottom:461.037000px;}
.y89{bottom:463.095000px;}
.y1b1{bottom:464.400000px;}
.y15e{bottom:466.084500px;}
.y1e8{bottom:466.374000px;}
.y2ca{bottom:471.781500px;}
.yb2{bottom:475.548000px;}
.ydc{bottom:475.962000px;}
.y277{bottom:476.250000px;}
.y186{bottom:478.969500px;}
.y88{bottom:481.027500px;}
.y2a1{bottom:481.515000px;}
.y15d{bottom:484.017000px;}
.y1e7{bottom:484.306500px;}
.y13b{bottom:486.258000px;}
.y1b0{bottom:486.816000px;}
.y29{bottom:487.765500px;}
.y2c9{bottom:489.714000px;}
.y58{bottom:490.588500px;}
.y2dc{bottom:492.049037px;}
.yb1{bottom:493.480500px;}
.y10f{bottom:493.651320px;}
.ydb{bottom:493.894500px;}
.y276{bottom:494.182500px;}
.yed{bottom:496.656270px;}
.y185{bottom:496.902000px;}
.y87{bottom:498.960000px;}
.y2a0{bottom:499.447500px;}
.y15c{bottom:501.949500px;}
.y1e6{bottom:502.240500px;}
.y13a{bottom:504.190500px;}
.y1af{bottom:511.084500px;}
.yb0{bottom:511.413000px;}
.yda{bottom:511.828500px;}
.y2c8{bottom:513.624000px;}
.y2db{bottom:515.449036px;}
.y29f{bottom:517.380000px;}
.y275{bottom:517.797000px;}
.y15b{bottom:519.882000px;}
.y1e5{bottom:520.173000px;}
.y139{bottom:522.123000px;}
.y86{bottom:523.618500px;}
.y184{bottom:524.988000px;}
.y102{bottom:529.140251px;}
.yaf{bottom:529.347000px;}
.yd9{bottom:529.761000px;}
.y101{bottom:530.063070px;}
.y2c7{bottom:531.556500px;}
.y105{bottom:531.567701px;}
.y274{bottom:535.729500px;}
.y15a{bottom:537.814500px;}
.y1e4{bottom:538.105500px;}
.y2da{bottom:538.849037px;}
.y28{bottom:539.194500px;}
.y138{bottom:540.057000px;}
.y29e{bottom:540.949500px;}
.y85{bottom:541.551000px;}
.y57{bottom:542.017500px;}
.y183{bottom:542.920500px;}
.y1ae{bottom:543.961500px;}
.yae{bottom:547.279500px;}
.yd8{bottom:547.693500px;}
.y2c6{bottom:549.489000px;}
.y273{bottom:553.663500px;}
.y1e3{bottom:556.038000px;}
.y27{bottom:557.127000px;}
.y29d{bottom:558.882000px;}
.y84{bottom:559.483500px;}
.y56{bottom:559.950000px;}
.y182{bottom:560.853000px;}
.y1ad{bottom:561.894000px;}
.y2d9{bottom:562.249037px;}
.yad{bottom:565.212000px;}
.yd7{bottom:565.626000px;}
.y207{bottom:565.810500px;}
.y137{bottom:568.501500px;}
.y272{bottom:571.596000px;}
.y2c5{bottom:573.399000px;}
.y159{bottom:573.681000px;}
.y26{bottom:575.061000px;}
.y83{bottom:577.416000px;}
.y55{bottom:577.882500px;}
.y1ac{bottom:579.826500px;}
.y10b{bottom:581.014275px;}
.y10e{bottom:582.228000px;}
.y29c{bottom:582.450000px;}
.yac{bottom:583.144500px;}
.yd6{bottom:583.558500px;}
.y206{bottom:583.743000px;}
.y2d8{bottom:585.649036px;}
.y15{bottom:587.809186px;}
.y271{bottom:589.528500px;}
.y2c4{bottom:591.333000px;}
.y158{bottom:591.613500px;}
.y25{bottom:592.993500px;}
.y82{bottom:595.348500px;}
.y54{bottom:595.815000px;}
.y1ab{bottom:597.760500px;}
.y29b{bottom:600.382500px;}
.yab{bottom:601.077000px;}
.yd5{bottom:601.491000px;}
.y205{bottom:601.675500px;}
.y1e2{bottom:608.461500px;}
.y2d7{bottom:609.049037px;}
.y2c3{bottom:609.265500px;}
.y24{bottom:610.926000px;}
.y181{bottom:611.167500px;}
.y136{bottom:612.201000px;}
.y270{bottom:613.143000px;}
.y81{bottom:613.282500px;}
.y53{bottom:613.749000px;}
.y29a{bottom:618.316500px;}
.yaa{bottom:619.009500px;}
.yd4{bottom:619.425000px;}
.y204{bottom:619.608000px;}
.y21f{bottom:619.834500px;}
.y244{bottom:620.521500px;}
.y157{bottom:620.754000px;}
.yff{bottom:620.865041px;}
.y22b{bottom:621.933000px;}
.y14{bottom:625.969186px;}
.y1aa{bottom:626.205000px;}
.yfb{bottom:628.132050px;}
.yfd{bottom:628.503838px;}
.y1e1{bottom:628.785000px;}
.y23{bottom:628.858500px;}
.y135{bottom:630.135000px;}
.y26f{bottom:631.077000px;}
.y80{bottom:631.215000px;}
.y180{bottom:631.491000px;}
.y52{bottom:631.681500px;}
.y2d6{bottom:632.449036px;}
.y2c2{bottom:633.175500px;}
.ya9{bottom:636.943500px;}
.yd3{bottom:637.357500px;}
.y156{bottom:638.686500px;}
.y21e{bottom:640.159500px;}
.y243{bottom:640.845000px;}
.y299{bottom:641.884500px;}
.y22a{bottom:642.256500px;}
.y22{bottom:646.791000px;}
.y203{bottom:648.054000px;}
.y26e{bottom:649.009500px;}
.y1e0{bottom:649.108500px;}
.y7f{bottom:649.147500px;}
.y51{bottom:649.614000px;}
.y2c1{bottom:651.108000px;}
.y17f{bottom:651.814500px;}
.ya8{bottom:654.876000px;}
.yd2{bottom:655.290000px;}
.y2d5{bottom:655.849037px;}
.y155{bottom:656.619000px;}
.y298{bottom:659.817000px;}
.y13{bottom:664.129187px;}
.y21{bottom:664.723500px;}
.y134{bottom:666.000000px;}
.y50{bottom:667.546500px;}
.y2c0{bottom:669.040500px;}
.y1df{bottom:669.433500px;}
.y1a9{bottom:669.906000px;}
.y17e{bottom:672.139500px;}
.y26d{bottom:672.624000px;}
.ya7{bottom:672.808500px;}
.yd1{bottom:673.222500px;}
.y154{bottom:674.553000px;}
.y7e{bottom:677.593500px;}
.y2d4{bottom:679.249037px;}
.y20{bottom:682.657500px;}
.y208{bottom:682.779000px;}
.y297{bottom:683.386500px;}
.y242{bottom:683.466000px;}
.y133{bottom:683.932500px;}
.y229{bottom:684.877500px;}
.y4f{bottom:685.479000px;}
.y2bf{bottom:686.974500px;}
.y1a8{bottom:687.838500px;}
.y26c{bottom:690.556500px;}
.ya6{bottom:690.741000px;}
.yd0{bottom:691.155000px;}
.y17d{bottom:692.463000px;}
.y153{bottom:698.463000px;}
.y1f{bottom:700.590000px;}
.y296{bottom:701.319000px;}
.y132{bottom:701.865000px;}
.y12{bottom:702.289187px;}
.y2d3{bottom:702.649036px;}
.y1a7{bottom:705.771000px;}
.y26b{bottom:708.490500px;}
.ya5{bottom:708.673500px;}
.ycf{bottom:709.089000px;}
.y2be{bottom:710.884500px;}
.y1bf{bottom:712.053000px;}
.y4e{bottom:714.619500px;}
.y152{bottom:716.395500px;}
.y131{bottom:719.799000px;}
.y7d{bottom:721.293000px;}
.y1a6{bottom:723.703500px;}
.y295{bottom:724.888500px;}
.y2d2{bottom:726.049037px;}
.yce{bottom:727.021500px;}
.y1e{bottom:728.983500px;}
.y26a{bottom:732.105000px;}
.y2bd{bottom:734.794500px;}
.y16e{bottom:735.082500px;}
.y4d{bottom:735.541500px;}
.y130{bottom:737.731500px;}
.y7c{bottom:739.225500px;}
.y11{bottom:740.449186px;}
.y1a5{bottom:741.636000px;}
.ya4{bottom:742.726500px;}
.y294{bottom:742.821000px;}
.ycd{bottom:744.954000px;}
.y151{bottom:745.536000px;}
.yf8{bottom:749.019060px;}
.y2d1{bottom:749.449036px;}
.y269{bottom:750.037500px;}
.y2bc{bottom:752.727000px;}
.y12f{bottom:755.664000px;}
.y4c{bottom:756.463500px;}
.yfa{bottom:756.786900px;}
.y7b{bottom:757.158000px;}
.yf4{bottom:761.156310px;}
.yf6{bottom:761.641800px;}
.ycc{bottom:762.886500px;}
.y293{bottom:766.389000px;}
.y1a4{bottom:770.082000px;}
.y2d0{bottom:772.849037px;}
.y12e{bottom:773.596500px;}
.y268{bottom:773.653500px;}
.y150{bottom:774.676500px;}
.y7a{bottom:775.090500px;}
.y2bb{bottom:776.637000px;}
.y4b{bottom:777.385500px;}
.y10{bottom:778.609186px;}
.ycb{bottom:780.819000px;}
.y292{bottom:784.323000px;}
.y1d{bottom:789.394500px;}
.y12d{bottom:791.529000px;}
.y267{bottom:791.586000px;}
.y79{bottom:793.023000px;}
.y14f{bottom:794.104500px;}
.ya3{bottom:794.155500px;}
.y2cf{bottom:796.249037px;}
.y4a{bottom:798.306000px;}
.yca{bottom:798.751500px;}
.y2ba{bottom:800.548500px;}
.y1a3{bottom:807.123000px;}
.y291{bottom:807.891000px;}
.y12c{bottom:809.461500px;}
.y78{bottom:810.957000px;}
.yef{bottom:811.647270px;}
.ya2{bottom:812.089500px;}
.y14e{bottom:813.531000px;}
.y266{bottom:815.200500px;}
.yc9{bottom:816.685500px;}
.yf{bottom:816.769186px;}
.y2b9{bottom:818.481000px;}
.y49{bottom:819.228000px;}
.y2ce{bottom:819.649037px;}
.y290{bottom:825.823500px;}
.y1c{bottom:825.955500px;}
.y12b{bottom:827.395500px;}
.y77{bottom:828.889500px;}
.y114{bottom:829.172974px;}
.ya1{bottom:830.022000px;}
.y14d{bottom:832.957500px;}
.y265{bottom:833.134500px;}
.y1a2{bottom:834.022500px;}
.yc8{bottom:834.618000px;}
.y48{bottom:840.150000px;}
.y2b8{bottom:842.391000px;}
.y2cd{bottom:843.049036px;}
.y12a{bottom:845.328000px;}
.y76{bottom:846.822000px;}
.y1b{bottom:846.877500px;}
.ya0{bottom:847.954500px;}
.y28f{bottom:849.393000px;}
.y264{bottom:851.067000px;}
.y202{bottom:852.550500px;}
.ye{bottom:854.929186px;}
.y116{bottom:855.874924px;}
.y2b7{bottom:860.323500px;}
.y47{bottom:861.070500px;}
.y14c{bottom:862.099500px;}
.y129{bottom:863.260500px;}
.y75{bottom:864.754500px;}
.y9f{bottom:865.887000px;}
.y2cc{bottom:866.449036px;}
.y28e{bottom:867.325500px;}
.y1a{bottom:867.799500px;}
.yc7{bottom:868.669500px;}
.y201{bottom:870.483000px;}
.y263{bottom:874.681500px;}
.y14b{bottom:880.032000px;}
.y128{bottom:881.193000px;}
.y74{bottom:882.687000px;}
.y9e{bottom:883.819500px;}
.y2b6{bottom:884.233500px;}
.y46{bottom:884.982000px;}
.y1a1{bottom:887.043000px;}
.y200{bottom:888.415500px;}
.y19{bottom:888.720000px;}
.y2cb{bottom:889.849037px;}
.y28d{bottom:890.895000px;}
.y262{bottom:892.614000px;}
.yd{bottom:893.089186px;}
.yf2{bottom:898.112554px;}
.y127{bottom:899.125500px;}
.y73{bottom:900.619500px;}
.y9d{bottom:901.752000px;}
.y2b5{bottom:902.167500px;}
.y1ff{bottom:906.348000px;}
.y1a0{bottom:907.368000px;}
.y14a{bottom:908.478000px;}
.y28c{bottom:908.827500px;}
.y45{bottom:908.892000px;}
.y18{bottom:909.642000px;}
.y261{bottom:910.548000px;}
.y126{bottom:917.058000px;}
.yc{bottom:917.209186px;}
.y72{bottom:918.553500px;}
.y9c{bottom:919.686000px;}
.yc6{bottom:920.100000px;}
.y1fe{bottom:924.282000px;}
.y28b{bottom:926.760000px;}
.y19f{bottom:927.691500px;}
.y260{bottom:934.162500px;}
.y71{bottom:936.486000px;}
.y44{bottom:938.032500px;}
.y1fd{bottom:942.214500px;}
.y2b4{bottom:944.010000px;}
.y28a{bottom:944.692500px;}
.y19e{bottom:948.015000px;}
.y9b{bottom:948.130500px;}
.y25f{bottom:952.095000px;}
.y149{bottom:952.177500px;}
.y70{bottom:954.418500px;}
.y43{bottom:955.965000px;}
.yb{bottom:956.809186px;}
.y2b3{bottom:961.942500px;}
.y125{bottom:964.132500px;}
.y17{bottom:965.080500px;}
.y289{bottom:968.262000px;}
.y19d{bottom:968.338500px;}
.y25e{bottom:970.029000px;}
.y148{bottom:970.110000px;}
.y42{bottom:973.897500px;}
.y1fc{bottom:976.267500px;}
.y6f{bottom:981.318000px;}
.y2b2{bottom:985.852500px;}
.y288{bottom:986.194500px;}
.y124{bottom:988.042500px;}
.y19c{bottom:988.662000px;}
.y41{bottom:991.830000px;}
.y25d{bottom:993.643500px;}
.ya{bottom:996.409186px;}
.y16{bottom:997.957500px;}
.y6e{bottom:999.250500px;}
.y2b1{bottom:1003.786500px;}
.y19b{bottom:1009.584000px;}
.y40{bottom:1009.764000px;}
.y25c{bottom:1011.576000px;}
.y6d{bottom:1017.183000px;}
.y3f{bottom:1027.696500px;}
.y25b{bottom:1029.508500px;}
.y9{bottom:1032.049037px;}
.y6c{bottom:1035.115500px;}
.y19a{bottom:1045.449000px;}
.y3e{bottom:1045.629000px;}
.y8{bottom:1055.449036px;}
.y3d{bottom:1063.561500px;}
.y199{bottom:1065.774000px;}
.y7{bottom:1078.849037px;}
.y6{bottom:1102.249037px;}
.y3{bottom:1212.769186px;}
.y2{bottom:1232.929186px;}
.h30{height:8.642789px;}
.h26{height:9.177203px;}
.h1c{height:9.613663px;}
.h1e{height:9.709800px;}
.h32{height:10.584556px;}
.h19{height:10.680780px;}
.h23{height:11.555468px;}
.h20{height:11.651760px;}
.h25{height:14.390308px;}
.h2b{height:17.477446px;}
.h2d{height:19.419406px;}
.h22{height:20.314261px;}
.h28{height:21.361560px;}
.h2f{height:23.216365px;}
.h18{height:27.858782px;}
.h31{height:28.701550px;}
.h27{height:28.733125px;}
.h24{height:28.780616px;}
.h1f{height:29.020456px;}
.h1d{height:29.690895px;}
.h33{height:29.717644px;}
.h1a{height:29.987805px;}
.h2a{height:32.502818px;}
.h21{height:34.358516px;}
.h34{height:35.467946px;}
.h1b{height:35.790381px;}
.h3d{height:37.299974px;}
.h3e{height:39.930101px;}
.h4e{height:42.567840px;}
.hb{height:43.038432px;}
.h3{height:43.189453px;}
.hc{height:43.695964px;}
.he{height:43.875290px;}
.h12{height:44.831700px;}
.h13{height:45.080125px;}
.hf{height:46.326090px;}
.h2e{height:46.432730px;}
.h6{height:46.720800px;}
.h3f{height:47.127312px;}
.h41{height:47.334408px;}
.h11{height:47.847313px;}
.ha{height:47.916442px;}
.h16{height:48.068125px;}
.h35{height:49.090950px;}
.h15{height:51.646464px;}
.h9{height:52.435507px;}
.h49{height:52.623577px;}
.h4d{height:53.000379px;}
.h47{height:53.072100px;}
.h10{height:53.078100px;}
.h46{height:53.387772px;}
.h4b{height:53.775165px;}
.h2c{height:54.973625px;}
.h44{height:56.060100px;}
.h4{height:56.064960px;}
.h42{height:56.801290px;}
.h36{height:57.891908px;}
.h43{height:59.619450px;}
.h14{height:60.605700px;}
.hd{height:61.975584px;}
.h29{height:64.661675px;}
.h38{height:65.385313px;}
.h3c{height:66.591313px;}
.h37{height:75.429908px;}
.h8{height:75.506744px;}
.h3a{height:81.531313px;}
.h39{height:82.774950px;}
.h5{height:94.479840px;}
.h3b{height:104.049450px;}
.h40{height:344.919166px;}
.h45{height:367.950094px;}
.h48{height:383.460593px;}
.h4c{height:386.206299px;}
.h4a{height:391.852055px;}
.h17{height:528.213120px;}
.h7{height:1188.000000px;}
.h2{height:1234.729200px;}
.h0{height:1262.792100px;}
.h1{height:1263.000000px;}
.w12{width:5.660067px;}
.w7{width:10.735155px;}
.we{width:11.434494px;}
.wa{width:13.648095px;}
.wd{width:16.268168px;}
.w6{width:20.519400px;}
.w13{width:24.034163px;}
.w10{width:26.216460px;}
.w11{width:29.968327px;}
.wf{width:37.736167px;}
.wc{width:61.171740px;}
.wb{width:64.084680px;}
.w8{width:66.026640px;}
.w5{width:66.997620px;}
.w9{width:76.707420px;}
.w14{width:77.994716px;}
.w15{width:491.414127px;}
.w19{width:631.790797px;}
.w17{width:631.813056px;}
.w18{width:631.823820px;}
.w16{width:631.840456px;}
.w4{width:702.018540px;}
.w2{width:864.850500px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x2a{left:1.290352px;}
.x23{left:6.975520px;}
.x2b{left:11.104792px;}
.x1{left:14.031451px;}
.x30{left:16.977391px;}
.x47{left:18.844279px;}
.x4f{left:21.254181px;}
.x1b{left:28.541957px;}
.x1e{left:34.072960px;}
.x36{left:36.009590px;}
.x46{left:38.533445px;}
.x4e{left:43.461297px;}
.x44{left:53.012969px;}
.x4d{left:59.792536px;}
.x1a{left:78.629941px;}
.x59{left:82.293024px;}
.x19{left:87.085720px;}
.x60{left:90.177574px;}
.x5a{left:91.721496px;}
.x55{left:94.050393px;}
.x2{left:97.919998px;}
.x61{left:99.470201px;}
.x56{left:103.276955px;}
.x18{left:108.000000px;}
.x3c{left:109.123500px;}
.x48{left:116.967000px;}
.x3d{left:125.538000px;}
.x1f{left:137.129400px;}
.x4c{left:143.082000px;}
.x22{left:145.813845px;}
.xd{left:148.909500px;}
.x49{left:151.594500px;}
.x4a{left:152.646000px;}
.x66{left:156.381000px;}
.x29{left:161.957601px;}
.x10{left:165.519000px;}
.x42{left:167.671500px;}
.xc{left:171.325500px;}
.x25{left:182.837719px;}
.x17{left:184.909500px;}
.x11{left:189.903000px;}
.x3{left:207.885000px;}
.x43{left:213.294000px;}
.x24{left:215.238915px;}
.x3f{left:220.639500px;}
.x13{left:222.712500px;}
.x12{left:227.061000px;}
.x40{left:229.606500px;}
.x52{left:230.725041px;}
.x45{left:233.700503px;}
.x27{left:242.067499px;}
.x14{left:243.327000px;}
.x51{left:252.932157px;}
.x2c{left:262.745374px;}
.x37{left:265.441500px;}
.x50{left:269.263396px;}
.x8{left:270.706500px;}
.x26{left:278.406990px;}
.x7{left:287.502000px;}
.x41{left:301.338000px;}
.x34{left:320.073507px;}
.x38{left:324.490500px;}
.xe{left:326.470500px;}
.x39{left:329.206500px;}
.x9{left:335.263500px;}
.x4{left:336.315000px;}
.x28{left:339.093240px;}
.x1d{left:347.292195px;}
.x65{left:349.275136px;}
.x5f{left:354.160317px;}
.x5d{left:357.297876px;}
.x5{left:362.917500px;}
.x5e{left:364.183898px;}
.x5c{left:367.540808px;}
.x64{left:371.321113px;}
.x58{left:373.189631px;}
.x16{left:393.405000px;}
.x3a{left:396.006000px;}
.x35{left:406.386912px;}
.xa{left:407.425500px;}
.x5b{left:419.878344px;}
.x62{left:422.899006px;}
.x6{left:424.569000px;}
.x63{left:427.522811px;}
.x57{left:428.997299px;}
.xb{left:430.368000px;}
.x54{left:440.195901px;}
.x4b{left:450.819000px;}
.xf{left:454.909500px;}
.x2d{left:463.257308px;}
.x53{left:478.734256px;}
.x20{left:494.036809px;}
.x2e{left:503.188860px;}
.x2f{left:581.838240px;}
.x21{left:583.294710px;}
.x3e{left:627.849000px;}
.x32{left:668.287502px;}
.x15{left:695.422500px;}
.x31{left:740.107980px;}
.x33{left:743.141127px;}
.x1c{left:744.583130px;}
.x3b{left:795.547500px;}
@media print{
.vb{vertical-align:-16.384000pt;}
.v9{vertical-align:-13.113495pt;}
.v1{vertical-align:-7.968000pt;}
.v5{vertical-align:-5.157846pt;}
.vc{vertical-align:-1.744000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:5.157846pt;}
.v7{vertical-align:12.483782pt;}
.v3{vertical-align:14.021333pt;}
.va{vertical-align:15.589333pt;}
.ve{vertical-align:16.661333pt;}
.v2{vertical-align:19.285333pt;}
.v4{vertical-align:21.936000pt;}
.v8{vertical-align:28.585651pt;}
.vd{vertical-align:29.941333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000055pt;}
.ls47{letter-spacing:0.000171pt;}
.ls3e{letter-spacing:0.000173pt;}
.ls48{letter-spacing:0.000276pt;}
.ls87{letter-spacing:0.000479pt;}
.ls7e{letter-spacing:0.000818pt;}
.ls51{letter-spacing:0.000933pt;}
.ls5a{letter-spacing:0.001431pt;}
.ls27{letter-spacing:0.001503pt;}
.lsa1{letter-spacing:0.001659pt;}
.ls46{letter-spacing:0.001732pt;}
.ls8c{letter-spacing:0.001995pt;}
.ls50{letter-spacing:0.002001pt;}
.ls3b{letter-spacing:0.002019pt;}
.ls90{letter-spacing:0.002079pt;}
.ls56{letter-spacing:0.002104pt;}
.ls6d{letter-spacing:0.002387pt;}
.ls3c{letter-spacing:0.002393pt;}
.ls4f{letter-spacing:0.002395pt;}
.ls37{letter-spacing:0.002417pt;}
.ls1b{letter-spacing:0.002694pt;}
.ls4a{letter-spacing:0.002794pt;}
.ls1e{letter-spacing:0.002906pt;}
.ls92{letter-spacing:0.003733pt;}
.ls20{letter-spacing:0.004352pt;}
.ls80{letter-spacing:0.004716pt;}
.ls40{letter-spacing:0.005471pt;}
.ls36{letter-spacing:0.006905pt;}
.ls67{letter-spacing:0.007158pt;}
.ls5f{letter-spacing:0.007223pt;}
.ls45{letter-spacing:0.011388pt;}
.ls41{letter-spacing:0.011483pt;}
.ls39{letter-spacing:0.017149pt;}
.ls49{letter-spacing:0.018372pt;}
.ls4e{letter-spacing:0.029119pt;}
.ls38{letter-spacing:0.029384pt;}
.ls4b{letter-spacing:0.032540pt;}
.ls43{letter-spacing:0.032836pt;}
.lsbe{letter-spacing:0.048384pt;}
.lsbb{letter-spacing:0.067627pt;}
.lsbc{letter-spacing:0.069120pt;}
.lsbd{letter-spacing:0.076032pt;}
.lsba{letter-spacing:0.103680pt;}
.lsc0{letter-spacing:0.117504pt;}
.ls0{letter-spacing:0.124416pt;}
.lsbf{letter-spacing:0.172800pt;}
.ls2{letter-spacing:0.343467pt;}
.lsa4{letter-spacing:0.407455pt;}
.ls9b{letter-spacing:0.412788pt;}
.lsae{letter-spacing:0.446509pt;}
.ls83{letter-spacing:0.451842pt;}
.ls1{letter-spacing:0.465920pt;}
.ls4{letter-spacing:0.489216pt;}
.ls5{letter-spacing:0.559104pt;}
.ls6{letter-spacing:0.581760pt;}
.ls7{letter-spacing:0.645120pt;}
.ls44{letter-spacing:0.875876pt;}
.ls3f{letter-spacing:0.879328pt;}
.ls60{letter-spacing:1.236163pt;}
.ls62{letter-spacing:1.402196pt;}
.ls35{letter-spacing:1.671842pt;}
.ls3d{letter-spacing:1.707676pt;}
.ls4c{letter-spacing:1.709215pt;}
.ls42{letter-spacing:1.721301pt;}
.ls3a{letter-spacing:1.724753pt;}
.ls7d{letter-spacing:1.900465pt;}
.ls33{letter-spacing:1.905799pt;}
.ls8b{letter-spacing:2.652911pt;}
.ls53{letter-spacing:2.653258pt;}
.ls1c{letter-spacing:2.655095pt;}
.lsd{letter-spacing:2.655443pt;}
.ls28{letter-spacing:2.657014pt;}
.ls5c{letter-spacing:2.657146pt;}
.ls8f{letter-spacing:2.658245pt;}
.ls9f{letter-spacing:2.658591pt;}
.ls65{letter-spacing:2.673245pt;}
.ls66{letter-spacing:2.675653pt;}
.ls61{letter-spacing:3.251245pt;}
.ls31{letter-spacing:4.165258pt;}
.ls88{letter-spacing:4.167686pt;}
.ls64{letter-spacing:4.795985pt;}
.ls8{letter-spacing:5.718992pt;}
.ls4d{letter-spacing:5.719422pt;}
.ls5e{letter-spacing:5.771416pt;}
.ls99{letter-spacing:5.792271pt;}
.ls1f{letter-spacing:5.793503pt;}
.ls63{letter-spacing:5.963184pt;}
.ls1a{letter-spacing:7.381391pt;}
.ls6f{letter-spacing:7.648479pt;}
.ls2b{letter-spacing:8.855412pt;}
.ls74{letter-spacing:9.051145pt;}
.ls73{letter-spacing:9.053053pt;}
.ls6e{letter-spacing:9.319842pt;}
.ls34{letter-spacing:9.872479pt;}
.ls77{letter-spacing:10.560479pt;}
.ls76{letter-spacing:10.564465pt;}
.ls8e{letter-spacing:11.803145pt;}
.ls94{letter-spacing:11.805573pt;}
.ls8d{letter-spacing:11.806400pt;}
.ls7a{letter-spacing:11.807132pt;}
.ls7b{letter-spacing:11.808479pt;}
.ls91{letter-spacing:11.809995pt;}
.ls79{letter-spacing:12.231842pt;}
.ls1d{letter-spacing:12.472239pt;}
.ls78{letter-spacing:12.633685pt;}
.ls7c{letter-spacing:13.282906pt;}
.ls97{letter-spacing:13.287329pt;}
.lsb{letter-spacing:14.043145pt;}
.lsc{letter-spacing:14.048479pt;}
.ls93{letter-spacing:14.460911pt;}
.ls96{letter-spacing:14.757812pt;}
.ls23{letter-spacing:14.759467pt;}
.ls25{letter-spacing:14.760027pt;}
.ls22{letter-spacing:14.760239pt;}
.ls95{letter-spacing:14.764662pt;}
.ls75{letter-spacing:14.957176pt;}
.ls89{letter-spacing:15.090906pt;}
.ls8a{letter-spacing:15.094297pt;}
.ls69{letter-spacing:15.185799pt;}
.ls21{letter-spacing:15.214400pt;}
.lsab{letter-spacing:15.513670pt;}
.lsa8{letter-spacing:15.580911pt;}
.lsb1{letter-spacing:15.732336pt;}
.ls6c{letter-spacing:15.787145pt;}
.ls9d{letter-spacing:15.938245pt;}
.ls7f{letter-spacing:15.942347pt;}
.ls24{letter-spacing:15.942586pt;}
.lsa0{letter-spacing:15.963485pt;}
.ls18{letter-spacing:16.046428pt;}
.lsa6{letter-spacing:16.091485pt;}
.ls30{letter-spacing:16.108465pt;}
.ls55{letter-spacing:16.413258pt;}
.ls2d{letter-spacing:16.466079pt;}
.ls2f{letter-spacing:16.466133pt;}
.ls84{letter-spacing:17.197258pt;}
.lsaf{letter-spacing:17.202591pt;}
.lsaa{letter-spacing:17.337200pt;}
.ls5b{letter-spacing:17.355139pt;}
.ls58{letter-spacing:17.360473pt;}
.lsb0{letter-spacing:17.406533pt;}
.ls86{letter-spacing:17.455925pt;}
.ls6b{letter-spacing:17.458509pt;}
.ls29{letter-spacing:17.527200pt;}
.lsa{letter-spacing:17.633952pt;}
.ls82{letter-spacing:17.775008pt;}
.ls17{letter-spacing:17.799845pt;}
.lsb4{letter-spacing:17.892336pt;}
.lsa7{letter-spacing:18.578245pt;}
.lsb3{letter-spacing:18.857200pt;}
.ls98{letter-spacing:18.927925pt;}
.ls2c{letter-spacing:19.126347pt;}
.lsa3{letter-spacing:19.440818pt;}
.ls19{letter-spacing:19.463200pt;}
.ls13{letter-spacing:19.589388pt;}
.ls26{letter-spacing:19.761253pt;}
.ls16{letter-spacing:19.910992pt;}
.ls9a{letter-spacing:20.441999pt;}
.lsad{letter-spacing:20.601670pt;}
.ls2e{letter-spacing:20.634591pt;}
.ls32{letter-spacing:20.666724pt;}
.ls70{letter-spacing:21.031720pt;}
.ls71{letter-spacing:21.033685pt;}
.ls2a{letter-spacing:21.055383pt;}
.ls52{letter-spacing:21.303925pt;}
.lsa5{letter-spacing:22.012911pt;}
.ls9c{letter-spacing:22.039578pt;}
.ls15{letter-spacing:22.244776pt;}
.ls14{letter-spacing:22.460619pt;}
.ls59{letter-spacing:22.562591pt;}
.lsb6{letter-spacing:22.959003pt;}
.lsa2{letter-spacing:23.495578pt;}
.lsb9{letter-spacing:23.551003pt;}
.ls12{letter-spacing:26.434133pt;}
.lsf{letter-spacing:26.439412pt;}
.lsac{letter-spacing:26.990533pt;}
.ls72{letter-spacing:29.091543pt;}
.ls11{letter-spacing:29.093880pt;}
.ls9e{letter-spacing:29.576864pt;}
.ls54{letter-spacing:30.823925pt;}
.ls6a{letter-spacing:31.880320pt;}
.ls68{letter-spacing:31.885227pt;}
.lse{letter-spacing:32.150992pt;}
.lsb5{letter-spacing:34.062533pt;}
.lsb8{letter-spacing:35.833200pt;}
.ls57{letter-spacing:37.264473pt;}
.ls9{letter-spacing:66.418906pt;}
.ls5d{letter-spacing:75.447925pt;}
.lsa9{letter-spacing:163.742970pt;}
.lsb7{letter-spacing:164.915424pt;}
.lsb2{letter-spacing:167.326240pt;}
.ls81{letter-spacing:223.917056pt;}
.ls85{letter-spacing:243.463925pt;}
.wse1{word-spacing:-223.917056pt;}
.ws11f{word-spacing:-167.326240pt;}
.ws123{word-spacing:-164.915424pt;}
.ws114{word-spacing:-163.742970pt;}
.ws49{word-spacing:-53.133867pt;}
.ws4c{word-spacing:-38.362652pt;}
.wsbc{word-spacing:-37.899668pt;}
.ws1b{word-spacing:-34.611401pt;}
.wsa3{word-spacing:-31.880320pt;}
.ws100{word-spacing:-29.576864pt;}
.ws76{word-spacing:-25.738045pt;}
.wsf3{word-spacing:-19.865475pt;}
.wsf7{word-spacing:-19.860142pt;}
.ws1d{word-spacing:-19.828146pt;}
.wscd{word-spacing:-18.039893pt;}
.ws13e{word-spacing:-14.701824pt;}
.wsc5{word-spacing:-14.545467pt;}
.ws0{word-spacing:-14.086656pt;}
.ws3b{word-spacing:-13.283467pt;}
.wsfa{word-spacing:-12.475025pt;}
.ws1{word-spacing:-12.280320pt;}
.wsa6{word-spacing:-9.604503pt;}
.wsaa{word-spacing:-9.597598pt;}
.wsb4{word-spacing:-5.753506pt;}
.ws19{word-spacing:-4.427840pt;}
.wsad{word-spacing:-3.289767pt;}
.wse8{word-spacing:-3.028630pt;}
.ws86{word-spacing:-2.816095pt;}
.ws5{word-spacing:-2.762961pt;}
.wsd9{word-spacing:-2.709827pt;}
.wsb3{word-spacing:-2.709738pt;}
.wsb1{word-spacing:-2.707299pt;}
.ws13b{word-spacing:-2.444158pt;}
.wse4{word-spacing:-2.269093pt;}
.ws115{word-spacing:-2.094547pt;}
.ws67{word-spacing:-2.019087pt;}
.ws126{word-spacing:-1.965953pt;}
.ws11d{word-spacing:-1.920002pt;}
.ws129{word-spacing:-1.806551pt;}
.ws137{word-spacing:-1.700284pt;}
.ws61{word-spacing:-1.647150pt;}
.wsdd{word-spacing:-1.540882pt;}
.wse5{word-spacing:-1.512729pt;}
.ws32{word-spacing:-1.487748pt;}
.wsae{word-spacing:-1.440717pt;}
.ws12a{word-spacing:-1.434614pt;}
.wsa{word-spacing:-1.381481pt;}
.ws2b{word-spacing:-1.337408pt;}
.ws2c{word-spacing:-1.328347pt;}
.ws7{word-spacing:-1.275213pt;}
.wsa8{word-spacing:-1.270217pt;}
.ws74{word-spacing:-1.222079pt;}
.ws59{word-spacing:-1.168945pt;}
.wscf{word-spacing:-1.115811pt;}
.ws10b{word-spacing:-1.009543pt;}
.ws104{word-spacing:-1.005404pt;}
.ws103{word-spacing:-1.004313pt;}
.ws105{word-spacing:-0.989092pt;}
.ws87{word-spacing:-0.956410pt;}
.ws13a{word-spacing:-0.933062pt;}
.ws29{word-spacing:-0.903276pt;}
.ws41{word-spacing:-0.850142pt;}
.ws3f{word-spacing:-0.812436pt;}
.ws40{word-spacing:-0.811958pt;}
.ws3e{word-spacing:-0.806941pt;}
.ws3d{word-spacing:-0.797008pt;}
.wsd5{word-spacing:-0.743874pt;}
.ws1c{word-spacing:-0.715365pt;}
.ws51{word-spacing:-0.715054pt;}
.ws63{word-spacing:-0.690740pt;}
.ws57{word-spacing:-0.637606pt;}
.ws33{word-spacing:-0.584473pt;}
.ws9a{word-spacing:-0.531339pt;}
.ws99{word-spacing:-0.524793pt;}
.wsfe{word-spacing:-0.425071pt;}
.ws110{word-spacing:-0.371937pt;}
.wsd7{word-spacing:-0.357778pt;}
.wsd8{word-spacing:-0.318803pt;}
.wsba{word-spacing:-0.174546pt;}
.ws8a{word-spacing:-0.159402pt;}
.wsbb{word-spacing:-0.135367pt;}
.wsbd{word-spacing:-0.116364pt;}
.ws78{word-spacing:-0.106268pt;}
.wsbf{word-spacing:-0.058182pt;}
.wsaf{word-spacing:-0.055031pt;}
.ws1a{word-spacing:-0.053134pt;}
.wsc4{word-spacing:-0.042507pt;}
.wsab{word-spacing:-0.034395pt;}
.wsac{word-spacing:-0.034110pt;}
.wsb2{word-spacing:-0.034085pt;}
.wsa9{word-spacing:-0.034054pt;}
.wsb0{word-spacing:-0.034017pt;}
.wsa7{word-spacing:-0.024076pt;}
.wsb5{word-spacing:-0.023859pt;}
.ws38{word-spacing:-0.006017pt;}
.ws36{word-spacing:-0.005931pt;}
.wsfb{word-spacing:-0.003284pt;}
.wsda{word-spacing:-0.001558pt;}
.wsfc{word-spacing:-0.001500pt;}
.ws4b{word-spacing:-0.000493pt;}
.wsff{word-spacing:-0.000141pt;}
.ws3{word-spacing:0.000000pt;}
.ws37{word-spacing:0.002898pt;}
.wsc{word-spacing:0.053134pt;}
.ws18{word-spacing:0.106268pt;}
.ws12f{word-spacing:0.159402pt;}
.wsb7{word-spacing:0.174546pt;}
.ws25{word-spacing:0.212535pt;}
.ws121{word-spacing:0.232727pt;}
.wse9{word-spacing:0.265669pt;}
.wse2{word-spacing:0.290909pt;}
.ws128{word-spacing:0.318803pt;}
.ws8e{word-spacing:0.371937pt;}
.ws111{word-spacing:0.425071pt;}
.ws24{word-spacing:0.478205pt;}
.ws9f{word-spacing:0.531339pt;}
.ws130{word-spacing:0.584473pt;}
.ws113{word-spacing:0.637606pt;}
.wse0{word-spacing:0.797008pt;}
.ws56{word-spacing:0.850142pt;}
.ws23{word-spacing:0.903276pt;}
.ws66{word-spacing:0.956410pt;}
.ws6a{word-spacing:1.009543pt;}
.ws93{word-spacing:1.025796pt;}
.ws94{word-spacing:1.062677pt;}
.ws28{word-spacing:1.115811pt;}
.ws77{word-spacing:1.222079pt;}
.ws50{word-spacing:1.275213pt;}
.ws95{word-spacing:1.297121pt;}
.ws35{word-spacing:1.328347pt;}
.ws96{word-spacing:1.331639pt;}
.ws30{word-spacing:1.381481pt;}
.wsdf{word-spacing:1.434614pt;}
.ws9c{word-spacing:1.443326pt;}
.ws98{word-spacing:1.487748pt;}
.wsa5{word-spacing:1.540882pt;}
.ws101{word-spacing:1.570910pt;}
.ws9{word-spacing:1.594016pt;}
.ws7f{word-spacing:1.621452pt;}
.ws80{word-spacing:1.647150pt;}
.ws106{word-spacing:1.699477pt;}
.ws107{word-spacing:1.745456pt;}
.wsec{word-spacing:1.753418pt;}
.wsf1{word-spacing:1.804311pt;}
.wse6{word-spacing:1.806551pt;}
.ws54{word-spacing:1.859685pt;}
.ws53{word-spacing:1.883178pt;}
.ws4a{word-spacing:1.912819pt;}
.ws48{word-spacing:1.965953pt;}
.ws102{word-spacing:1.978183pt;}
.ws79{word-spacing:2.019087pt;}
.ws52{word-spacing:2.072221pt;}
.ws8c{word-spacing:2.125355pt;}
.ws10e{word-spacing:2.178489pt;}
.ws12d{word-spacing:2.231622pt;}
.ws9d{word-spacing:2.284756pt;}
.ws5b{word-spacing:2.368165pt;}
.ws5a{word-spacing:2.391024pt;}
.wsa4{word-spacing:2.444158pt;}
.ws5c{word-spacing:2.497292pt;}
.wsa1{word-spacing:2.524931pt;}
.ws2d{word-spacing:2.550426pt;}
.ws89{word-spacing:2.603559pt;}
.ws8f{word-spacing:2.656693pt;}
.ws44{word-spacing:2.693446pt;}
.wsf{word-spacing:2.709827pt;}
.ws2e{word-spacing:2.762961pt;}
.ws13d{word-spacing:2.816095pt;}
.ws8d{word-spacing:2.869229pt;}
.ws8b{word-spacing:2.922363pt;}
.ws11b{word-spacing:2.956610pt;}
.ws119{word-spacing:2.967275pt;}
.ws6d{word-spacing:2.975497pt;}
.ws43{word-spacing:3.028630pt;}
.wsa2{word-spacing:3.134898pt;}
.ws83{word-spacing:3.182759pt;}
.ws42{word-spacing:3.188032pt;}
.ws16{word-spacing:3.241166pt;}
.ws13c{word-spacing:3.294300pt;}
.ws10d{word-spacing:3.347434pt;}
.ws6c{word-spacing:3.400567pt;}
.ws64{word-spacing:3.453701pt;}
.ws117{word-spacing:3.487355pt;}
.wsee{word-spacing:3.488306pt;}
.wsb{word-spacing:3.506835pt;}
.ws22{word-spacing:3.559969pt;}
.ws2f{word-spacing:3.613103pt;}
.ws10a{word-spacing:3.666237pt;}
.ws82{word-spacing:3.719371pt;}
.wsb6{word-spacing:3.723639pt;}
.ws7d{word-spacing:3.772505pt;}
.ws4d{word-spacing:3.819933pt;}
.ws4e{word-spacing:3.825638pt;}
.ws45{word-spacing:3.878772pt;}
.ws7c{word-spacing:3.931906pt;}
.ws55{word-spacing:3.985040pt;}
.ws34{word-spacing:4.038174pt;}
.wsb8{word-spacing:4.072731pt;}
.wse{word-spacing:4.091308pt;}
.wsb9{word-spacing:4.104633pt;}
.ws4f{word-spacing:4.144442pt;}
.ws7b{word-spacing:4.197575pt;}
.ws70{word-spacing:4.223210pt;}
.ws6e{word-spacing:4.250709pt;}
.ws6f{word-spacing:4.260763pt;}
.ws10f{word-spacing:4.303843pt;}
.ws127{word-spacing:4.356977pt;}
.ws133{word-spacing:4.410111pt;}
.ws2a{word-spacing:4.463245pt;}
.wsea{word-spacing:4.516379pt;}
.ws81{word-spacing:4.569513pt;}
.wsf0{word-spacing:4.622646pt;}
.ws12{word-spacing:4.728914pt;}
.ws7a{word-spacing:4.888316pt;}
.ws39{word-spacing:4.941450pt;}
.ws3a{word-spacing:4.957770pt;}
.ws31{word-spacing:4.994583pt;}
.ws58{word-spacing:5.047717pt;}
.ws5d{word-spacing:5.100851pt;}
.ws6{word-spacing:5.207119pt;}
.ws65{word-spacing:5.260253pt;}
.wsc2{word-spacing:5.260883pt;}
.wsc3{word-spacing:5.294550pt;}
.ws9e{word-spacing:5.313387pt;}
.wsbe{word-spacing:5.352732pt;}
.ws5f{word-spacing:5.366521pt;}
.wsc1{word-spacing:5.410914pt;}
.ws85{word-spacing:5.419654pt;}
.ws68{word-spacing:5.472788pt;}
.ws13{word-spacing:5.579056pt;}
.ws20{word-spacing:5.592897pt;}
.ws112{word-spacing:5.632190pt;}
.ws92{word-spacing:5.685324pt;}
.ws84{word-spacing:5.791591pt;}
.wse3{word-spacing:5.818187pt;}
.ws10{word-spacing:5.844725pt;}
.ws12e{word-spacing:5.845136pt;}
.ws62{word-spacing:5.897859pt;}
.ws124{word-spacing:5.934550pt;}
.ws8{word-spacing:5.950993pt;}
.ws71{word-spacing:6.057261pt;}
.ws72{word-spacing:6.110395pt;}
.ws108{word-spacing:6.163529pt;}
.ws134{word-spacing:6.216662pt;}
.ws21{word-spacing:6.269796pt;}
.ws1e{word-spacing:6.305266pt;}
.ws1f{word-spacing:6.322930pt;}
.ws46{word-spacing:6.429198pt;}
.ws138{word-spacing:6.482332pt;}
.ws109{word-spacing:6.535466pt;}
.ws6b{word-spacing:6.588599pt;}
.ws11{word-spacing:6.641733pt;}
.wsa0{word-spacing:6.801135pt;}
.ws69{word-spacing:6.854269pt;}
.ws3c{word-spacing:6.907403pt;}
.wseb{word-spacing:7.173072pt;}
.ws12c{word-spacing:7.279340pt;}
.ws88{word-spacing:7.332474pt;}
.ws17{word-spacing:7.385607pt;}
.ws97{word-spacing:7.438741pt;}
.ws10c{word-spacing:7.545009pt;}
.ws12b{word-spacing:7.598143pt;}
.ws131{word-spacing:7.704411pt;}
.wsd1{word-spacing:7.750978pt;}
.wsd2{word-spacing:7.757545pt;}
.ws135{word-spacing:7.810678pt;}
.ws90{word-spacing:7.861107pt;}
.ws91{word-spacing:7.863812pt;}
.ws47{word-spacing:7.916946pt;}
.ws7e{word-spacing:7.970080pt;}
.wsf9{word-spacing:8.820222pt;}
.ws26{word-spacing:9.351561pt;}
.wsc0{word-spacing:9.357966pt;}
.ws9b{word-spacing:9.820999pt;}
.ws4{word-spacing:9.989167pt;}
.ws14{word-spacing:10.621966pt;}
.ws15{word-spacing:10.626773pt;}
.ws132{word-spacing:10.892443pt;}
.wsf4{word-spacing:11.742585pt;}
.wsf6{word-spacing:11.750839pt;}
.wsf5{word-spacing:11.756999pt;}
.ws139{word-spacing:12.964663pt;}
.wsef{word-spacing:13.389787pt;}
.wsed{word-spacing:14.472603pt;}
.wsf8{word-spacing:14.664947pt;}
.wsf2{word-spacing:14.690447pt;}
.wsfd{word-spacing:15.507088pt;}
.ws5e{word-spacing:15.804045pt;}
.ws60{word-spacing:15.805415pt;}
.wsd3{word-spacing:15.810133pt;}
.ws27{word-spacing:15.833892pt;}
.wsce{word-spacing:16.454732pt;}
.ws136{word-spacing:18.331184pt;}
.ws116{word-spacing:19.418082pt;}
.ws11e{word-spacing:19.636749pt;}
.ws75{word-spacing:20.987877pt;}
.wsd6{word-spacing:21.272563pt;}
.ws73{word-spacing:21.519216pt;}
.ws11c{word-spacing:21.522774pt;}
.ws118{word-spacing:21.528108pt;}
.ws120{word-spacing:22.618082pt;}
.wse7{word-spacing:22.920563pt;}
.wsde{word-spacing:23.149897pt;}
.wsd4{word-spacing:24.309349pt;}
.wsdb{word-spacing:31.825906pt;}
.wsc6{word-spacing:31.827186pt;}
.wsdc{word-spacing:31.828893pt;}
.wsca{word-spacing:31.831239pt;}
.wsc9{word-spacing:31.831666pt;}
.wsc8{word-spacing:31.833159pt;}
.wsc7{word-spacing:31.834226pt;}
.wscc{word-spacing:31.834439pt;}
.wscb{word-spacing:31.835293pt;}
.ws11a{word-spacing:33.460749pt;}
.ws122{word-spacing:42.890082pt;}
.ws125{word-spacing:45.252749pt;}
.wsd0{word-spacing:47.820800pt;}
.wsd{word-spacing:57.384800pt;}
.ws2{word-spacing:754.924800pt;}
._29{margin-left:-223.503127pt;}
._39{margin-left:-167.326240pt;}
._3a{margin-left:-164.915424pt;}
._38{margin-left:-163.742970pt;}
._23{margin-left:-88.680086pt;}
._1d{margin-left:-75.798629pt;}
._25{margin-left:-33.231796pt;}
._21{margin-left:-31.293969pt;}
._37{margin-left:-29.576864pt;}
._20{margin-left:-28.401070pt;}
._10{margin-left:-26.587954pt;}
._11{margin-left:-25.140239pt;}
._36{margin-left:-21.410821pt;}
._1f{margin-left:-19.397088pt;}
._22{margin-left:-14.279398pt;}
._34{margin-left:-8.595146pt;}
._7{margin-left:-6.670448pt;}
._b{margin-left:-5.656609pt;}
._24{margin-left:-4.640158pt;}
._d{margin-left:-3.705013pt;}
._1e{margin-left:-2.551304pt;}
._0{margin-left:-1.048320pt;}
._35{width:1.072013pt;}
._27{width:2.392630pt;}
._26{width:3.957565pt;}
._3f{width:7.421789pt;}
._40{width:8.417212pt;}
._2b{width:9.322846pt;}
._17{width:10.878085pt;}
._1c{width:12.698994pt;}
._13{width:14.399278pt;}
._2{width:15.568223pt;}
._8{width:17.239792pt;}
._f{width:18.171782pt;}
._4{width:19.765798pt;}
._6{width:21.171698pt;}
._1{width:22.340643pt;}
._15{width:24.069642pt;}
._c{width:25.707242pt;}
._12{width:27.098272pt;}
._18{width:28.093458pt;}
._14{width:29.117359pt;}
._a{width:30.605107pt;}
._3{width:32.184766pt;}
._19{width:33.086949pt;}
._5{width:34.469522pt;}
._2a{width:35.490939pt;}
._9{width:36.435475pt;}
._e{width:38.816437pt;}
._1b{width:39.903534pt;}
._3b{width:42.493277pt;}
._3c{width:43.632997pt;}
._3d{width:52.991976pt;}
._28{width:58.181867pt;}
._1a{width:63.761067pt;}
._2d{width:65.878597pt;}
._16{width:76.513067pt;}
._3e{width:77.734847pt;}
._2c{width:127.521280pt;}
._32{width:148.014669pt;}
._30{width:157.732087pt;}
._31{width:177.046912pt;}
._33{width:206.196535pt;}
._2f{width:384.116684pt;}
._2e{width:409.833069pt;}
.fs10{font-size:17.055180pt;}
.fsd{font-size:23.837783pt;}
.fs16{font-size:23.859259pt;}
.fsf{font-size:23.877184pt;}
.fsb{font-size:24.076161pt;}
.fs13{font-size:27.515692pt;}
.fs18{font-size:31.880533pt;}
.fs14{font-size:34.016652pt;}
.fsc{font-size:34.054073pt;}
.fs15{font-size:34.084753pt;}
.fse{font-size:34.110360pt;}
.fsa{font-size:34.394615pt;}
.fs9{font-size:34.523733pt;}
.fs7{font-size:37.193600pt;}
.fs12{font-size:38.521858pt;}
.fs17{font-size:42.507200pt;}
.fs19{font-size:45.290667pt;}
.fs1c{font-size:50.351467pt;}
.fs1e{font-size:50.712000pt;}
.fs1b{font-size:51.082667pt;}
.fs1d{font-size:51.453333pt;}
.fs1f{font-size:52.480000pt;}
.fs5{font-size:53.133867pt;}
.fs1a{font-size:54.348800pt;}
.fs11{font-size:55.031383pt;}
.fs0{font-size:57.600000pt;}
.fs8{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:69.120000pt;}
.fs6{font-size:76.513067pt;}
.fs3{font-size:91.815467pt;}
.fs2{font-size:116.480000pt;}
.y0{bottom:0.000000pt;}
.y104{bottom:0.044516pt;}
.y10d{bottom:0.409797pt;}
.yfc{bottom:0.660266pt;}
.y111{bottom:0.761939pt;}
.y10a{bottom:0.785933pt;}
.y118{bottom:1.182120pt;}
.yf1{bottom:1.504372pt;}
.y113{bottom:1.781506pt;}
.y107{bottom:1.911645pt;}
.yf5{bottom:1.930740pt;}
.yf3{bottom:2.168018pt;}
.y117{bottom:2.459965pt;}
.yf0{bottom:2.793833pt;}
.y10c{bottom:3.823503pt;}
.y103{bottom:3.928008pt;}
.y109{bottom:4.455115pt;}
.y110{bottom:7.027306pt;}
.y170{bottom:10.505312pt;}
.y20a{bottom:11.679180pt;}
.y247{bottom:11.762807pt;}
.y1cd{bottom:11.848784pt;}
.y22e{bottom:11.934761pt;}
.y1{bottom:12.472412pt;}
.y1ce{bottom:23.132865pt;}
.y16f{bottom:27.117787pt;}
.y209{bottom:30.147941pt;}
.y246{bottom:30.363810pt;}
.y22d{bottom:30.807683pt;}
.y171{bottom:37.122424pt;}
.y1d7{bottom:37.528890pt;}
.y5{bottom:38.657055pt;}
.y20b{bottom:41.270501pt;}
.y248{bottom:41.566012pt;}
.y1cf{bottom:41.642039pt;}
.y22f{bottom:42.173644pt;}
.y1d8{bottom:51.924914pt;}
.y3c{bottom:56.149333pt;}
.y4{bottom:56.577055pt;}
.y1d0{bottom:60.151213pt;}
.y1d9{bottom:66.320938pt;}
.y23a{bottom:70.884604pt;}
.y20c{bottom:72.488410pt;}
.y172{bottom:73.225556pt;}
.y230{bottom:74.074711pt;}
.y216{bottom:76.390649pt;}
.y251{bottom:76.937632pt;}
.y1d1{bottom:78.660387pt;}
.y1da{bottom:80.716962pt;}
.y221{bottom:81.407813pt;}
.y249{bottom:81.990720pt;}
.y1d6{bottom:85.131368pt;}
.y1db{bottom:95.112987pt;}
.y198{bottom:96.000000pt;}
.y1d2{bottom:97.169562pt;}
.y9a{bottom:97.780000pt;}
.y16d{bottom:99.757333pt;}
.y20d{bottom:103.706320pt;}
.y3b{bottom:105.749333pt;}
.y231{bottom:105.975778pt;}
.y147{bottom:109.072000pt;}
.y173{bottom:109.328687pt;}
.y1dc{bottom:109.509011pt;}
.y217{bottom:111.510797pt;}
.y1fb{bottom:111.690667pt;}
.y241{bottom:111.786667pt;}
.y197{bottom:111.940000pt;}
.y252{bottom:112.309252pt;}
.y25a{bottom:113.041333pt;}
.y228{bottom:113.650667pt;}
.y99{bottom:113.721333pt;}
.y1d3{bottom:115.678736pt;}
.y16c{bottom:115.697333pt;}
.y100{bottom:116.086053pt;}
.y6b{bottom:117.021333pt;}
.yc5{bottom:119.845333pt;}
.y222{bottom:121.545125pt;}
.y3a{bottom:121.689333pt;}
.y24a{bottom:122.415429pt;}
.y1dd{bottom:123.905035pt;}
.y146{bottom:125.012000pt;}
.y1fa{bottom:127.630667pt;}
.y196{bottom:127.880000pt;}
.y1be{bottom:128.164000pt;}
.y23b{bottom:128.306524pt;}
.y98{bottom:129.661333pt;}
.y240{bottom:129.852000pt;}
.y259{bottom:131.106667pt;}
.y16b{bottom:131.637333pt;}
.y227{bottom:131.717333pt;}
.yeb{bottom:131.900000pt;}
.y287{bottom:132.932000pt;}
.y6a{bottom:132.961333pt;}
.y1d4{bottom:134.187910pt;}
.y20e{bottom:134.924229pt;}
.yc4{bottom:135.785333pt;}
.y232{bottom:137.876844pt;}
.y1de{bottom:138.301059pt;}
.y215{bottom:138.676987pt;}
.y250{bottom:139.669960pt;}
.y179{bottom:139.803088pt;}
.y239{bottom:141.711726pt;}
.y21d{bottom:142.915557pt;}
.y1f9{bottom:143.570667pt;}
.y195{bottom:143.820000pt;}
.y258{bottom:143.938881pt;}
.y1bd{bottom:144.104000pt;}
.y174{bottom:145.431818pt;}
.y97{bottom:145.601333pt;}
.y23f{bottom:146.043051pt;}
.y218{bottom:146.630945pt;}
.y16a{bottom:147.577333pt;}
.y253{bottom:147.680872pt;}
.yea{bottom:147.841333pt;}
.y2b0{bottom:148.830667pt;}
.y286{bottom:148.872000pt;}
.y69{bottom:148.901333pt;}
.y39{bottom:150.913333pt;}
.y145{bottom:150.914667pt;}
.yc3{bottom:151.725333pt;}
.y1d5{bottom:152.697084pt;}
.y1f8{bottom:159.510667pt;}
.y194{bottom:159.761333pt;}
.y1bc{bottom:160.045333pt;}
.y96{bottom:161.541333pt;}
.y223{bottom:161.682437pt;}
.y24b{bottom:162.840137pt;}
.ye9{bottom:163.781333pt;}
.y2af{bottom:164.770667pt;}
.y20f{bottom:166.142138pt;}
.y68{bottom:166.705333pt;}
.y144{bottom:166.854667pt;}
.y1c0{bottom:167.325846pt;}
.yc2{bottom:167.665333pt;}
.y22c{bottom:167.736000pt;}
.y245{bottom:168.990667pt;}
.y220{bottom:169.601333pt;}
.y233{bottom:169.777911pt;}
.y285{bottom:169.862667pt;}
.y169{bottom:172.862667pt;}
.y1f7{bottom:175.452000pt;}
.y193{bottom:175.701333pt;}
.y1bb{bottom:175.985333pt;}
.y95{bottom:177.481333pt;}
.y1c1{bottom:178.609927pt;}
.ye8{bottom:179.721333pt;}
.y38{bottom:180.137333pt;}
.y2ae{bottom:180.710667pt;}
.y175{bottom:181.534950pt;}
.y219{bottom:181.751093pt;}
.y67{bottom:182.645333pt;}
.y143{bottom:182.794667pt;}
.y254{bottom:183.052492pt;}
.yc1{bottom:183.605333pt;}
.y23c{bottom:185.728444pt;}
.y284{bottom:185.802667pt;}
.y1f6{bottom:191.392000pt;}
.y1c8{bottom:191.566349pt;}
.y192{bottom:191.641333pt;}
.y1ba{bottom:191.925333pt;}
.ye7{bottom:195.661333pt;}
.y37{bottom:196.077333pt;}
.yfe{bottom:196.798917pt;}
.y210{bottom:197.360048pt;}
.y66{bottom:198.586667pt;}
.yc0{bottom:199.546667pt;}
.y2ad{bottom:201.661333pt;}
.y234{bottom:201.678978pt;}
.y224{bottom:201.819749pt;}
.y94{bottom:202.766667pt;}
.y24c{bottom:203.264846pt;}
.y1c2{bottom:204.522771pt;}
.y283{bottom:206.794667pt;}
.y1f5{bottom:207.332000pt;}
.y191{bottom:207.581333pt;}
.y1b9{bottom:207.865333pt;}
.y142{bottom:208.080000pt;}
.y168{bottom:211.176000pt;}
.ye6{bottom:211.601333pt;}
.y36{bottom:212.017333pt;}
.y65{bottom:214.526667pt;}
.ybf{bottom:215.486667pt;}
.y21a{bottom:216.871241pt;}
.y1c9{bottom:217.479193pt;}
.y176{bottom:217.638081pt;}
.y255{bottom:218.424112pt;}
.y2e0{bottom:218.496921pt;}
.y2ac{bottom:222.610667pt;}
.y282{bottom:222.734667pt;}
.y1f4{bottom:223.272000pt;}
.y1b8{bottom:223.805333pt;}
.y123{bottom:225.593333pt;}
.y167{bottom:227.116000pt;}
.ye5{bottom:227.542667pt;}
.y35{bottom:227.957333pt;}
.y211{bottom:228.577957pt;}
.y190{bottom:229.030667pt;}
.y1c3{bottom:230.435615pt;}
.y64{bottom:230.466667pt;}
.y17c{bottom:230.494110pt;}
.ybe{bottom:231.426667pt;}
.y235{bottom:233.580044pt;}
.y121{bottom:236.174667pt;}
.y2ab{bottom:238.550667pt;}
.y281{bottom:238.674667pt;}
.y1f3{bottom:239.212000pt;}
.y2df{bottom:239.296921pt;}
.y122{bottom:239.493333pt;}
.y1b7{bottom:239.745333pt;}
.y1c7{bottom:240.608430pt;}
.y93{bottom:241.610667pt;}
.y225{bottom:241.957061pt;}
.y166{bottom:243.056000pt;}
.y23d{bottom:243.150364pt;}
.y1ca{bottom:243.392036pt;}
.ye4{bottom:243.482667pt;}
.y120{bottom:243.658667pt;}
.y24d{bottom:243.689554pt;}
.y34{bottom:243.897333pt;}
.y18f{bottom:244.970667pt;}
.y63{bottom:246.406667pt;}
.y141{bottom:246.924000pt;}
.ybd{bottom:247.366667pt;}
.y17b{bottom:250.450310pt;}
.y21b{bottom:251.991389pt;}
.y177{bottom:253.741213pt;}
.y256{bottom:253.795732pt;}
.y1f2{bottom:255.152000pt;}
.y1c4{bottom:256.348458pt;}
.y92{bottom:257.550667pt;}
.y2de{bottom:259.457188pt;}
.y2aa{bottom:259.501333pt;}
.y280{bottom:259.666667pt;}
.y212{bottom:259.795866pt;}
.y33{bottom:259.838667pt;}
.y11f{bottom:260.624000pt;}
.y18e{bottom:260.910667pt;}
.y62{bottom:262.346667pt;}
.y140{bottom:262.864000pt;}
.ybc{bottom:263.306667pt;}
.y1b6{bottom:265.030667pt;}
.y236{bottom:265.481111pt;}
.y11e{bottom:268.109333pt;}
.y165{bottom:268.341333pt;}
.y1cb{bottom:269.304880pt;}
.y17a{bottom:270.406510pt;}
.y1f1{bottom:271.093333pt;}
.y91{bottom:273.492000pt;}
.ye3{bottom:273.750667pt;}
.y27f{bottom:275.606667pt;}
.y32{bottom:275.778667pt;}
.y61{bottom:278.288000pt;}
.y13f{bottom:278.805333pt;}
.ybb{bottom:279.248000pt;}
.y2a9{bottom:280.452000pt;}
.y226{bottom:282.094373pt;}
.y1c5{bottom:282.261302pt;}
.y11d{bottom:282.278667pt;}
.y18d{bottom:282.360000pt;}
.y24e{bottom:284.114263pt;}
.y11c{bottom:286.176000pt;}
.y1f0{bottom:287.033333pt;}
.y21c{bottom:287.111537pt;}
.y257{bottom:289.167352pt;}
.y178{bottom:289.844344pt;}
.y213{bottom:291.013776pt;}
.y31{bottom:291.718667pt;}
.y60{bottom:294.228000pt;}
.y90{bottom:294.745333pt;}
.yba{bottom:295.188000pt;}
.y1cc{bottom:295.217724pt;}
.y164{bottom:295.752000pt;}
.y2a8{bottom:296.392000pt;}
.y27e{bottom:296.597333pt;}
.y237{bottom:297.382178pt;}
.ye2{bottom:297.661333pt;}
.y18c{bottom:298.300000pt;}
.y23e{bottom:300.572284pt;}
.y1ef{bottom:302.973333pt;}
.y1b5{bottom:303.874667pt;}
.y11b{bottom:304.241333pt;}
.y30{bottom:307.658667pt;}
.y1c6{bottom:308.174145pt;}
.y5f{bottom:310.168000pt;}
.y8f{bottom:310.685333pt;}
.yb9{bottom:311.128000pt;}
.y27d{bottom:312.538667pt;}
.yf7{bottom:313.302880pt;}
.y18b{bottom:314.240000pt;}
.y2a7{bottom:317.341333pt;}
.yf9{bottom:317.618347pt;}
.y1ee{bottom:318.913333pt;}
.y214{bottom:322.231685pt;}
.y11a{bottom:322.306667pt;}
.y2f{bottom:323.598667pt;}
.y24f{bottom:324.538972pt;}
.y5e{bottom:326.108000pt;}
.y8e{bottom:326.625333pt;}
.yb8{bottom:327.068000pt;}
.y27c{bottom:328.478667pt;}
.y238{bottom:329.283244pt;}
.y18a{bottom:330.180000pt;}
.y2a6{bottom:333.282667pt;}
.y163{bottom:334.596000pt;}
.y1ed{bottom:334.853333pt;}
.y2e{bottom:339.540000pt;}
.y119{bottom:340.372000pt;}
.y5d{bottom:342.048000pt;}
.y8d{bottom:342.565333pt;}
.yb7{bottom:343.008000pt;}
.ye1{bottom:343.376000pt;}
.y189{bottom:346.121333pt;}
.y2a5{bottom:349.222667pt;}
.y27b{bottom:349.469333pt;}
.y2dd{bottom:350.016921pt;}
.y162{bottom:350.536000pt;}
.y1ec{bottom:350.793333pt;}
.y1b4{bottom:353.024000pt;}
.y2d{bottom:355.480000pt;}
.y5c{bottom:357.988000pt;}
.y8c{bottom:358.505333pt;}
.yb6{bottom:358.948000pt;}
.ye0{bottom:359.317333pt;}
.y27a{bottom:365.409333pt;}
.yec{bottom:366.301333pt;}
.y161{bottom:366.476000pt;}
.y1eb{bottom:366.734667pt;}
.yee{bottom:368.972400pt;}
.y2a4{bottom:370.172000pt;}
.y188{bottom:371.405333pt;}
.y2c{bottom:371.420000pt;}
.y1b3{bottom:372.949333pt;}
.y5b{bottom:373.929333pt;}
.y13e{bottom:374.446667pt;}
.yb5{bottom:374.889333pt;}
.ydf{bottom:375.257333pt;}
.y8b{bottom:379.760000pt;}
.y160{bottom:382.416000pt;}
.y1ea{bottom:382.674667pt;}
.y279{bottom:386.401333pt;}
.y2b{bottom:387.360000pt;}
.y112{bottom:387.489800pt;}
.y108{bottom:388.072000pt;}
.y5a{bottom:389.869333pt;}
.y13d{bottom:390.386667pt;}
.yb4{bottom:390.829333pt;}
.y2a3{bottom:391.122667pt;}
.yde{bottom:391.197333pt;}
.y1b2{bottom:392.874667pt;}
.y8a{bottom:395.700000pt;}
.y106{bottom:397.662814pt;}
.y15f{bottom:398.356000pt;}
.y1e9{bottom:398.614667pt;}
.y278{bottom:402.341333pt;}
.y2a{bottom:403.300000pt;}
.y59{bottom:405.809333pt;}
.y13c{bottom:406.326667pt;}
.yb3{bottom:406.769333pt;}
.y2a2{bottom:407.062667pt;}
.ydd{bottom:407.137333pt;}
.y115{bottom:408.243147pt;}
.y187{bottom:409.810667pt;}
.y89{bottom:411.640000pt;}
.y1b1{bottom:412.800000pt;}
.y15e{bottom:414.297333pt;}
.y1e8{bottom:414.554667pt;}
.y2ca{bottom:419.361333pt;}
.yb2{bottom:422.709333pt;}
.ydc{bottom:423.077333pt;}
.y277{bottom:423.333333pt;}
.y186{bottom:425.750667pt;}
.y88{bottom:427.580000pt;}
.y2a1{bottom:428.013333pt;}
.y15d{bottom:430.237333pt;}
.y1e7{bottom:430.494667pt;}
.y13b{bottom:432.229333pt;}
.y1b0{bottom:432.725333pt;}
.y29{bottom:433.569333pt;}
.y2c9{bottom:435.301333pt;}
.y58{bottom:436.078667pt;}
.y2dc{bottom:437.376921pt;}
.yb1{bottom:438.649333pt;}
.y10f{bottom:438.801173pt;}
.ydb{bottom:439.017333pt;}
.y276{bottom:439.273333pt;}
.yed{bottom:441.472240pt;}
.y185{bottom:441.690667pt;}
.y87{bottom:443.520000pt;}
.y2a0{bottom:443.953333pt;}
.y15c{bottom:446.177333pt;}
.y1e6{bottom:446.436000pt;}
.y13a{bottom:448.169333pt;}
.y1af{bottom:454.297333pt;}
.yb0{bottom:454.589333pt;}
.yda{bottom:454.958667pt;}
.y2c8{bottom:456.554667pt;}
.y2db{bottom:458.176921pt;}
.y29f{bottom:459.893333pt;}
.y275{bottom:460.264000pt;}
.y15b{bottom:462.117333pt;}
.y1e5{bottom:462.376000pt;}
.y139{bottom:464.109333pt;}
.y86{bottom:465.438667pt;}
.y184{bottom:466.656000pt;}
.y102{bottom:470.346889pt;}
.yaf{bottom:470.530667pt;}
.yd9{bottom:470.898667pt;}
.y101{bottom:471.167173pt;}
.y2c7{bottom:472.494667pt;}
.y105{bottom:472.504623pt;}
.y274{bottom:476.204000pt;}
.y15a{bottom:478.057333pt;}
.y1e4{bottom:478.316000pt;}
.y2da{bottom:478.976921pt;}
.y28{bottom:479.284000pt;}
.y138{bottom:480.050667pt;}
.y29e{bottom:480.844000pt;}
.y85{bottom:481.378667pt;}
.y57{bottom:481.793333pt;}
.y183{bottom:482.596000pt;}
.y1ae{bottom:483.521333pt;}
.yae{bottom:486.470667pt;}
.yd8{bottom:486.838667pt;}
.y2c6{bottom:488.434667pt;}
.y273{bottom:492.145333pt;}
.y1e3{bottom:494.256000pt;}
.y27{bottom:495.224000pt;}
.y29d{bottom:496.784000pt;}
.y84{bottom:497.318667pt;}
.y56{bottom:497.733333pt;}
.y182{bottom:498.536000pt;}
.y1ad{bottom:499.461333pt;}
.y2d9{bottom:499.776921pt;}
.yad{bottom:502.410667pt;}
.yd7{bottom:502.778667pt;}
.y207{bottom:502.942667pt;}
.y137{bottom:505.334667pt;}
.y272{bottom:508.085333pt;}
.y2c5{bottom:509.688000pt;}
.y159{bottom:509.938667pt;}
.y26{bottom:511.165333pt;}
.y83{bottom:513.258667pt;}
.y55{bottom:513.673333pt;}
.y1ac{bottom:515.401333pt;}
.y10b{bottom:516.457133pt;}
.y10e{bottom:517.536000pt;}
.y29c{bottom:517.733333pt;}
.yac{bottom:518.350667pt;}
.yd6{bottom:518.718667pt;}
.y206{bottom:518.882667pt;}
.y2d8{bottom:520.576921pt;}
.y15{bottom:522.497055pt;}
.y271{bottom:524.025333pt;}
.y2c4{bottom:525.629333pt;}
.y158{bottom:525.878667pt;}
.y25{bottom:527.105333pt;}
.y82{bottom:529.198667pt;}
.y54{bottom:529.613333pt;}
.y1ab{bottom:531.342667pt;}
.y29b{bottom:533.673333pt;}
.yab{bottom:534.290667pt;}
.yd5{bottom:534.658667pt;}
.y205{bottom:534.822667pt;}
.y1e2{bottom:540.854667pt;}
.y2d7{bottom:541.376921pt;}
.y2c3{bottom:541.569333pt;}
.y24{bottom:543.045333pt;}
.y181{bottom:543.260000pt;}
.y136{bottom:544.178667pt;}
.y270{bottom:545.016000pt;}
.y81{bottom:545.140000pt;}
.y53{bottom:545.554667pt;}
.y29a{bottom:549.614667pt;}
.yaa{bottom:550.230667pt;}
.yd4{bottom:550.600000pt;}
.y204{bottom:550.762667pt;}
.y21f{bottom:550.964000pt;}
.y244{bottom:551.574667pt;}
.y157{bottom:551.781333pt;}
.yff{bottom:551.880037pt;}
.y22b{bottom:552.829333pt;}
.y14{bottom:556.417055pt;}
.y1aa{bottom:556.626667pt;}
.yfb{bottom:558.339600pt;}
.yfd{bottom:558.670078pt;}
.y1e1{bottom:558.920000pt;}
.y23{bottom:558.985333pt;}
.y135{bottom:560.120000pt;}
.y26f{bottom:560.957333pt;}
.y80{bottom:561.080000pt;}
.y180{bottom:561.325333pt;}
.y52{bottom:561.494667pt;}
.y2d6{bottom:562.176921pt;}
.y2c2{bottom:562.822667pt;}
.ya9{bottom:566.172000pt;}
.yd3{bottom:566.540000pt;}
.y156{bottom:567.721333pt;}
.y21e{bottom:569.030667pt;}
.y243{bottom:569.640000pt;}
.y299{bottom:570.564000pt;}
.y22a{bottom:570.894667pt;}
.y22{bottom:574.925333pt;}
.y203{bottom:576.048000pt;}
.y26e{bottom:576.897333pt;}
.y1e0{bottom:576.985333pt;}
.y7f{bottom:577.020000pt;}
.y51{bottom:577.434667pt;}
.y2c1{bottom:578.762667pt;}
.y17f{bottom:579.390667pt;}
.ya8{bottom:582.112000pt;}
.yd2{bottom:582.480000pt;}
.y2d5{bottom:582.976921pt;}
.y155{bottom:583.661333pt;}
.y298{bottom:586.504000pt;}
.y13{bottom:590.337055pt;}
.y21{bottom:590.865333pt;}
.y134{bottom:592.000000pt;}
.y50{bottom:593.374667pt;}
.y2c0{bottom:594.702667pt;}
.y1df{bottom:595.052000pt;}
.y1a9{bottom:595.472000pt;}
.y17e{bottom:597.457333pt;}
.y26d{bottom:597.888000pt;}
.ya7{bottom:598.052000pt;}
.yd1{bottom:598.420000pt;}
.y154{bottom:599.602667pt;}
.y7e{bottom:602.305333pt;}
.y2d4{bottom:603.776921pt;}
.y20{bottom:606.806667pt;}
.y208{bottom:606.914667pt;}
.y297{bottom:607.454667pt;}
.y242{bottom:607.525333pt;}
.y133{bottom:607.940000pt;}
.y229{bottom:608.780000pt;}
.y4f{bottom:609.314667pt;}
.y2bf{bottom:610.644000pt;}
.y1a8{bottom:611.412000pt;}
.y26c{bottom:613.828000pt;}
.ya6{bottom:613.992000pt;}
.yd0{bottom:614.360000pt;}
.y17d{bottom:615.522667pt;}
.y153{bottom:620.856000pt;}
.y1f{bottom:622.746667pt;}
.y296{bottom:623.394667pt;}
.y132{bottom:623.880000pt;}
.y12{bottom:624.257055pt;}
.y2d3{bottom:624.576921pt;}
.y1a7{bottom:627.352000pt;}
.y26b{bottom:629.769333pt;}
.ya5{bottom:629.932000pt;}
.ycf{bottom:630.301333pt;}
.y2be{bottom:631.897333pt;}
.y1bf{bottom:632.936000pt;}
.y4e{bottom:635.217333pt;}
.y152{bottom:636.796000pt;}
.y131{bottom:639.821333pt;}
.y7d{bottom:641.149333pt;}
.y1a6{bottom:643.292000pt;}
.y295{bottom:644.345333pt;}
.y2d2{bottom:645.376921pt;}
.yce{bottom:646.241333pt;}
.y1e{bottom:647.985333pt;}
.y26a{bottom:650.760000pt;}
.y2bd{bottom:653.150667pt;}
.y16e{bottom:653.406667pt;}
.y4d{bottom:653.814667pt;}
.y130{bottom:655.761333pt;}
.y7c{bottom:657.089333pt;}
.y11{bottom:658.177055pt;}
.y1a5{bottom:659.232000pt;}
.ya4{bottom:660.201333pt;}
.y294{bottom:660.285333pt;}
.ycd{bottom:662.181333pt;}
.y151{bottom:662.698667pt;}
.yf8{bottom:665.794720pt;}
.y2d1{bottom:666.176921pt;}
.y269{bottom:666.700000pt;}
.y2bc{bottom:669.090667pt;}
.y12f{bottom:671.701333pt;}
.y4c{bottom:672.412000pt;}
.yfa{bottom:672.699467pt;}
.y7b{bottom:673.029333pt;}
.yf4{bottom:676.583387pt;}
.yf6{bottom:677.014933pt;}
.ycc{bottom:678.121333pt;}
.y293{bottom:681.234667pt;}
.y1a4{bottom:684.517333pt;}
.y2d0{bottom:686.976921pt;}
.y12e{bottom:687.641333pt;}
.y268{bottom:687.692000pt;}
.y150{bottom:688.601333pt;}
.y7a{bottom:688.969333pt;}
.y2bb{bottom:690.344000pt;}
.y4b{bottom:691.009333pt;}
.y10{bottom:692.097055pt;}
.ycb{bottom:694.061333pt;}
.y292{bottom:697.176000pt;}
.y1d{bottom:701.684000pt;}
.y12d{bottom:703.581333pt;}
.y267{bottom:703.632000pt;}
.y79{bottom:704.909333pt;}
.y14f{bottom:705.870667pt;}
.ya3{bottom:705.916000pt;}
.y2cf{bottom:707.776921pt;}
.y4a{bottom:709.605333pt;}
.yca{bottom:710.001333pt;}
.y2ba{bottom:711.598667pt;}
.y1a3{bottom:717.442667pt;}
.y291{bottom:718.125333pt;}
.y12c{bottom:719.521333pt;}
.y78{bottom:720.850667pt;}
.yef{bottom:721.464240pt;}
.ya2{bottom:721.857333pt;}
.y14e{bottom:723.138667pt;}
.y266{bottom:724.622667pt;}
.yc9{bottom:725.942667pt;}
.yf{bottom:726.017055pt;}
.y2b9{bottom:727.538667pt;}
.y49{bottom:728.202667pt;}
.y2ce{bottom:728.576921pt;}
.y290{bottom:734.065333pt;}
.y1c{bottom:734.182667pt;}
.y12b{bottom:735.462667pt;}
.y77{bottom:736.790667pt;}
.y114{bottom:737.042643pt;}
.ya1{bottom:737.797333pt;}
.y14d{bottom:740.406667pt;}
.y265{bottom:740.564000pt;}
.y1a2{bottom:741.353333pt;}
.yc8{bottom:741.882667pt;}
.y48{bottom:746.800000pt;}
.y2b8{bottom:748.792000pt;}
.y2cd{bottom:749.376921pt;}
.y12a{bottom:751.402667pt;}
.y76{bottom:752.730667pt;}
.y1b{bottom:752.780000pt;}
.ya0{bottom:753.737333pt;}
.y28f{bottom:755.016000pt;}
.y264{bottom:756.504000pt;}
.y202{bottom:757.822667pt;}
.ye{bottom:759.937055pt;}
.y116{bottom:760.777710pt;}
.y2b7{bottom:764.732000pt;}
.y47{bottom:765.396000pt;}
.y14c{bottom:766.310667pt;}
.y129{bottom:767.342667pt;}
.y75{bottom:768.670667pt;}
.y9f{bottom:769.677333pt;}
.y2cc{bottom:770.176921pt;}
.y28e{bottom:770.956000pt;}
.y1a{bottom:771.377333pt;}
.yc7{bottom:772.150667pt;}
.y201{bottom:773.762667pt;}
.y263{bottom:777.494667pt;}
.y14b{bottom:782.250667pt;}
.y128{bottom:783.282667pt;}
.y74{bottom:784.610667pt;}
.y9e{bottom:785.617333pt;}
.y2b6{bottom:785.985333pt;}
.y46{bottom:786.650667pt;}
.y1a1{bottom:788.482667pt;}
.y200{bottom:789.702667pt;}
.y19{bottom:789.973333pt;}
.y2cb{bottom:790.976921pt;}
.y28d{bottom:791.906667pt;}
.y262{bottom:793.434667pt;}
.yd{bottom:793.857055pt;}
.yf2{bottom:798.322270pt;}
.y127{bottom:799.222667pt;}
.y73{bottom:800.550667pt;}
.y9d{bottom:801.557333pt;}
.y2b5{bottom:801.926667pt;}
.y1ff{bottom:805.642667pt;}
.y1a0{bottom:806.549333pt;}
.y14a{bottom:807.536000pt;}
.y28c{bottom:807.846667pt;}
.y45{bottom:807.904000pt;}
.y18{bottom:808.570667pt;}
.y261{bottom:809.376000pt;}
.y126{bottom:815.162667pt;}
.yc{bottom:815.297055pt;}
.y72{bottom:816.492000pt;}
.y9c{bottom:817.498667pt;}
.yc6{bottom:817.866667pt;}
.y1fe{bottom:821.584000pt;}
.y28b{bottom:823.786667pt;}
.y19f{bottom:824.614667pt;}
.y260{bottom:830.366667pt;}
.y71{bottom:832.432000pt;}
.y44{bottom:833.806667pt;}
.y1fd{bottom:837.524000pt;}
.y2b4{bottom:839.120000pt;}
.y28a{bottom:839.726667pt;}
.y19e{bottom:842.680000pt;}
.y9b{bottom:842.782667pt;}
.y25f{bottom:846.306667pt;}
.y149{bottom:846.380000pt;}
.y70{bottom:848.372000pt;}
.y43{bottom:849.746667pt;}
.yb{bottom:850.497055pt;}
.y2b3{bottom:855.060000pt;}
.y125{bottom:857.006667pt;}
.y17{bottom:857.849333pt;}
.y289{bottom:860.677333pt;}
.y19d{bottom:860.745333pt;}
.y25e{bottom:862.248000pt;}
.y148{bottom:862.320000pt;}
.y42{bottom:865.686667pt;}
.y1fc{bottom:867.793333pt;}
.y6f{bottom:872.282667pt;}
.y2b2{bottom:876.313333pt;}
.y288{bottom:876.617333pt;}
.y124{bottom:878.260000pt;}
.y19c{bottom:878.810667pt;}
.y41{bottom:881.626667pt;}
.y25d{bottom:883.238667pt;}
.ya{bottom:885.697055pt;}
.y16{bottom:887.073333pt;}
.y6e{bottom:888.222667pt;}
.y2b1{bottom:892.254667pt;}
.y19b{bottom:897.408000pt;}
.y40{bottom:897.568000pt;}
.y25c{bottom:899.178667pt;}
.y6d{bottom:904.162667pt;}
.y3f{bottom:913.508000pt;}
.y25b{bottom:915.118667pt;}
.y9{bottom:917.376921pt;}
.y6c{bottom:920.102667pt;}
.y19a{bottom:929.288000pt;}
.y3e{bottom:929.448000pt;}
.y8{bottom:938.176921pt;}
.y3d{bottom:945.388000pt;}
.y199{bottom:947.354667pt;}
.y7{bottom:958.976921pt;}
.y6{bottom:979.776921pt;}
.y3{bottom:1078.017055pt;}
.y2{bottom:1095.937055pt;}
.h30{height:7.682479pt;}
.h26{height:8.157514pt;}
.h1c{height:8.545478pt;}
.h1e{height:8.630933pt;}
.h32{height:9.408494pt;}
.h19{height:9.494027pt;}
.h23{height:10.271527pt;}
.h20{height:10.357120pt;}
.h25{height:12.791385pt;}
.h2b{height:15.535507pt;}
.h2d{height:17.261694pt;}
.h22{height:18.057121pt;}
.h28{height:18.988053pt;}
.h2f{height:20.636769pt;}
.h18{height:24.763361pt;}
.h31{height:25.512489pt;}
.h27{height:25.540555pt;}
.h24{height:25.582770pt;}
.h1f{height:25.795961pt;}
.h1d{height:26.391907pt;}
.h33{height:26.415684pt;}
.h1a{height:26.655826pt;}
.h2a{height:28.891393pt;}
.h21{height:30.540903pt;}
.h34{height:31.527063pt;}
.h1b{height:31.813672pt;}
.h3d{height:33.155533pt;}
.h3e{height:35.493423pt;}
.h4e{height:37.838080pt;}
.hb{height:38.256384pt;}
.h3{height:38.390625pt;}
.hc{height:38.840857pt;}
.he{height:39.000258pt;}
.h12{height:39.850400pt;}
.h13{height:40.071222pt;}
.hf{height:41.178747pt;}
.h2e{height:41.273537pt;}
.h6{height:41.529600pt;}
.h3f{height:41.890944pt;}
.h41{height:42.075029pt;}
.h11{height:42.530945pt;}
.ha{height:42.592393pt;}
.h16{height:42.727222pt;}
.h35{height:43.636400pt;}
.h15{height:45.907968pt;}
.h9{height:46.609340pt;}
.h49{height:46.776513pt;}
.h4d{height:47.111448pt;}
.h47{height:47.175200pt;}
.h10{height:47.180533pt;}
.h46{height:47.455797pt;}
.h4b{height:47.800147pt;}
.h2c{height:48.865445pt;}
.h44{height:49.831200pt;}
.h4{height:49.835520pt;}
.h42{height:50.490035pt;}
.h36{height:51.459474pt;}
.h43{height:52.995067pt;}
.h14{height:53.871733pt;}
.hd{height:55.089408pt;}
.h29{height:57.477045pt;}
.h38{height:58.120278pt;}
.h3c{height:59.192278pt;}
.h37{height:67.048807pt;}
.h8{height:67.117106pt;}
.h3a{height:72.472278pt;}
.h39{height:73.577733pt;}
.h5{height:83.982080pt;}
.h3b{height:92.488400pt;}
.h40{height:306.594814pt;}
.h45{height:327.066750pt;}
.h48{height:340.853860pt;}
.h4c{height:343.294488pt;}
.h4a{height:348.312938pt;}
.h17{height:469.522773pt;}
.h7{height:1056.000000pt;}
.h2{height:1097.537067pt;}
.h0{height:1122.481867pt;}
.h1{height:1122.666667pt;}
.w12{width:5.031170pt;}
.w7{width:9.542360pt;}
.we{width:10.163994pt;}
.wa{width:12.131640pt;}
.wd{width:14.460594pt;}
.w6{width:18.239467pt;}
.w13{width:21.363700pt;}
.w10{width:23.303520pt;}
.w11{width:26.638513pt;}
.wf{width:33.543259pt;}
.wc{width:54.374880pt;}
.wb{width:56.964160pt;}
.w8{width:58.690347pt;}
.w5{width:59.553440pt;}
.w9{width:68.184373pt;}
.w14{width:69.328637pt;}
.w15{width:436.812557pt;}
.w19{width:561.591819pt;}
.w17{width:561.611605pt;}
.w18{width:561.621173pt;}
.w16{width:561.635961pt;}
.w4{width:624.016480pt;}
.w2{width:768.756000pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:1.146979pt;}
.x23{left:6.200463pt;}
.x2b{left:9.870927pt;}
.x1{left:12.472401pt;}
.x30{left:15.091014pt;}
.x47{left:16.750470pt;}
.x4f{left:18.892605pt;}
.x1b{left:25.370629pt;}
.x1e{left:30.287076pt;}
.x36{left:32.008524pt;}
.x46{left:34.251951pt;}
.x4e{left:38.632264pt;}
.x44{left:47.122639pt;}
.x4d{left:53.148921pt;}
.x1a{left:69.893281pt;}
.x59{left:73.149355pt;}
.x19{left:77.409529pt;}
.x60{left:80.157844pt;}
.x5a{left:81.530219pt;}
.x55{left:83.600350pt;}
.x2{left:87.039999pt;}
.x61{left:88.417957pt;}
.x56{left:91.801738pt;}
.x18{left:96.000000pt;}
.x3c{left:96.998667pt;}
.x48{left:103.970667pt;}
.x3d{left:111.589333pt;}
.x1f{left:121.892800pt;}
.x4c{left:127.184000pt;}
.x22{left:129.612307pt;}
.xd{left:132.364000pt;}
.x49{left:134.750667pt;}
.x4a{left:135.685333pt;}
.x66{left:139.005333pt;}
.x29{left:143.962312pt;}
.x10{left:147.128000pt;}
.x42{left:149.041333pt;}
.xc{left:152.289333pt;}
.x25{left:162.522417pt;}
.x17{left:164.364000pt;}
.x11{left:168.802667pt;}
.x3{left:184.786667pt;}
.x43{left:189.594667pt;}
.x24{left:191.323480pt;}
.x3f{left:196.124000pt;}
.x13{left:197.966667pt;}
.x12{left:201.832000pt;}
.x40{left:204.094667pt;}
.x52{left:205.088925pt;}
.x45{left:207.733781pt;}
.x27{left:215.171110pt;}
.x14{left:216.290667pt;}
.x51{left:224.828584pt;}
.x2c{left:233.551443pt;}
.x37{left:235.948000pt;}
.x50{left:239.345241pt;}
.x8{left:240.628000pt;}
.x26{left:247.472880pt;}
.x7{left:255.557333pt;}
.x41{left:267.856000pt;}
.x34{left:284.509784pt;}
.x38{left:288.436000pt;}
.xe{left:290.196000pt;}
.x39{left:292.628000pt;}
.x9{left:298.012000pt;}
.x4{left:298.946667pt;}
.x28{left:301.416213pt;}
.x1d{left:308.704173pt;}
.x65{left:310.466788pt;}
.x5f{left:314.809171pt;}
.x5d{left:317.598112pt;}
.x5{left:322.593333pt;}
.x5e{left:323.719020pt;}
.x5c{left:326.702940pt;}
.x64{left:330.063212pt;}
.x58{left:331.724117pt;}
.x16{left:349.693333pt;}
.x3a{left:352.005333pt;}
.x35{left:361.232810pt;}
.xa{left:362.156000pt;}
.x5b{left:373.225195pt;}
.x62{left:375.910228pt;}
.x6{left:377.394667pt;}
.x63{left:380.020277pt;}
.x57{left:381.330932pt;}
.xb{left:382.549333pt;}
.x54{left:391.285245pt;}
.x4b{left:400.728000pt;}
.xf{left:404.364000pt;}
.x2d{left:411.784273pt;}
.x53{left:425.541561pt;}
.x20{left:439.143830pt;}
.x2e{left:447.278987pt;}
.x2f{left:517.189547pt;}
.x21{left:518.484187pt;}
.x3e{left:558.088000pt;}
.x32{left:594.033335pt;}
.x15{left:618.153333pt;}
.x31{left:657.873760pt;}
.x33{left:660.569891pt;}
.x1c{left:661.851671pt;}
.x3b{left:707.153333pt;}
}




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