
    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_638f306e2c0a5be4ecf6efa4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691000;font-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_193aa4a3938857b759b724ba.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-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_5952afab8c28ae28eb4fa147.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;font-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_f88b3b53d8451d39b95b622e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_bce6157bab085c20d6aaf244.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.897000;font-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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.736000;font-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_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.660000;font-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_37e018c9111f89f364364fc6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.885000;font-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_6bdcdd71c992d7869d3d3c6a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.869000;font-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_61247596070170fc8c63b7aa.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000488;font-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_98d6a56557d279b99ed07ee1.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_3b801cbe6056c49683e8f223.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.008301;font-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_a8e48b85cee3e06f6137f01e.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_a76606743eb40f1b1f818f3f.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_a9856ee4252d4901d0f26ce4.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_43db0be81dd976f07bc7d82d.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000488;font-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_40c592debf2636285044edcc.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_9739b20767f7108df70d753c.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.008301;font-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_a8e48b85cee3e06f6137f01e.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_19ff48006f1c978bf2d46296.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.726074;font-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_3e65244dc712499b573f4032.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.743000;font-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_5e90337a08463c0f2979804b.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.000488;font-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_588ce199ff62b4ab71b26097.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_4dbd4a5de6ce194b956a0540.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.008301;font-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_a8e48b85cee3e06f6137f01e.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_2de8624b2b9afac2cb771c27.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.000488;font-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_5d9a57e97cacdbeada58aa0f.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_bae6a883ff3d16958fb25d02.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.008301;font-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_a8e48b85cee3e06f6137f01e.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_38d689bbe34f3ef2ba60a87f.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.009000;font-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_dd925b3e5acffef8efe5bbe9.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.000488;font-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_db76d7713336285bcb81da9d.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_c1d75cca3e8fbebaca390fb5.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.008301;font-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_a8e48b85cee3e06f6137f01e.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_a21046b6ae933d29ed756022.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.726074;font-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_c28c3bbbd3123ffa86a3b355.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.000488;font-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_25ce766372489993bce5d384.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_fa05511f12af4cab0148c28d.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.008301;font-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_a8e48b85cee3e06f6137f01e.woff2')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_f5689e3ef88fa78bc102de76.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.726074;font-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_e86dbcaf535d8895642e60a5.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.000488;font-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_88c24f3af315d58923130c65.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_09caa34370ea28a778faf1aa.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.008301;font-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_a8e48b85cee3e06f6137f01e.woff2')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_2bab8b5caae48ea22e0d1d30.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.726074;font-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_e86dbcaf535d8895642e60a5.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.000488;font-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_88c24f3af315d58923130c65.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_09caa34370ea28a778faf1aa.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.008301;font-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_a8e48b85cee3e06f6137f01e.woff2')format("woff");}.ff31{font-family:ff31;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:ff32;src:url('chunks/assets/font_2bab8b5caae48ea22e0d1d30.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.726074;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls5c{letter-spacing:-1.279354px;}
.lse4{letter-spacing:-0.475200px;}
.lsdd{letter-spacing:-0.351000px;}
.lscf{letter-spacing:-0.275400px;}
.lsc2{letter-spacing:-0.259200px;}
.lsf7{letter-spacing:-0.239879px;}
.ls36{letter-spacing:-0.234468px;}
.ls60{letter-spacing:-0.228456px;}
.ls31{letter-spacing:-0.226800px;}
.lsc3{letter-spacing:-0.221400px;}
.lsf2{letter-spacing:-0.205610px;}
.lsc8{letter-spacing:-0.168336px;}
.lscc{letter-spacing:-0.156312px;}
.lsc6{letter-spacing:-0.144288px;}
.lse2{letter-spacing:-0.138276px;}
.ls5b{letter-spacing:-0.137074px;}
.lsc5{letter-spacing:-0.132264px;}
.lse0{letter-spacing:-0.126252px;}
.ls5d{letter-spacing:-0.125651px;}
.ls3c{letter-spacing:-0.120240px;}
.lsf1{letter-spacing:-0.119939px;}
.ls3a{letter-spacing:-0.114228px;}
.lsf4{letter-spacing:-0.112860px;}
.lsf9{letter-spacing:-0.108517px;}
.ls87{letter-spacing:-0.105811px;}
.lsc7{letter-spacing:-0.102204px;}
.ls5e{letter-spacing:-0.097094px;}
.lsca{letter-spacing:-0.096192px;}
.ls2d{letter-spacing:-0.086184px;}
.lsf3{letter-spacing:-0.085671px;}
.ls81{letter-spacing:-0.085536px;}
.ls35{letter-spacing:-0.084168px;}
.ls50{letter-spacing:-0.081875px;}
.ls88{letter-spacing:-0.079358px;}
.lsc4{letter-spacing:-0.078156px;}
.ls7e{letter-spacing:-0.075842px;}
.lsa9{letter-spacing:-0.075816px;}
.ls64{letter-spacing:-0.074248px;}
.lsf6{letter-spacing:-0.068537px;}
.lsa2{letter-spacing:-0.067224px;}
.ls53{letter-spacing:-0.061560px;}
.lsde{letter-spacing:-0.060120px;}
.ls61{letter-spacing:-0.057114px;}
.ls39{letter-spacing:-0.054108px;}
.ls32{letter-spacing:-0.054000px;}
.ls62{letter-spacing:-0.051403px;}
.lscd{letter-spacing:-0.048600px;}
.lse1{letter-spacing:-0.048096px;}
.ls85{letter-spacing:-0.047520px;}
.lsab{letter-spacing:-0.042120px;}
.ls38{letter-spacing:-0.042084px;}
.ls5f{letter-spacing:-0.039980px;}
.ls3b{letter-spacing:-0.036072px;}
.ls65{letter-spacing:-0.034268px;}
.ls84{letter-spacing:-0.033264px;}
.lsa5{letter-spacing:-0.032826px;}
.lse3{letter-spacing:-0.032400px;}
.lsdf{letter-spacing:-0.030060px;}
.ls5a{letter-spacing:-0.028557px;}
.ls33{letter-spacing:-0.027000px;}
.lsae{letter-spacing:-0.025272px;}
.lsf8{letter-spacing:-0.022846px;}
.lsa4{letter-spacing:-0.018757px;}
.ls63{letter-spacing:-0.017134px;}
.lsac{letter-spacing:-0.016848px;}
.ls52{letter-spacing:-0.015390px;}
.ls83{letter-spacing:-0.014256px;}
.lsa7{letter-spacing:-0.014068px;}
.lsaa{letter-spacing:-0.012636px;}
.lscb{letter-spacing:-0.012024px;}
.ls58{letter-spacing:-0.011423px;}
.lsd0{letter-spacing:-0.010800px;}
.ls55{letter-spacing:-0.010260px;}
.ls80{letter-spacing:-0.009504px;}
.lsa8{letter-spacing:-0.008424px;}
.ls34{letter-spacing:-0.006012px;}
.ls59{letter-spacing:-0.005711px;}
.ls2f{letter-spacing:-0.005400px;}
.ls89{letter-spacing:-0.005291px;}
.lsf5{letter-spacing:-0.005130px;}
.ls2e{letter-spacing:-0.004788px;}
.lsa6{letter-spacing:-0.004689px;}
.ls51{letter-spacing:-0.004549px;}
.ls7f{letter-spacing:-0.004213px;}
.lsad{letter-spacing:-0.004212px;}
.lsa3{letter-spacing:-0.003735px;}
.ls8{letter-spacing:0.000000px;}
.lsaf{letter-spacing:0.000154px;}
.lsb{letter-spacing:0.000273px;}
.ls10c{letter-spacing:0.000447px;}
.lsd9{letter-spacing:0.000676px;}
.ls10b{letter-spacing:0.000800px;}
.ls114{letter-spacing:0.000819px;}
.ls115{letter-spacing:0.001021px;}
.ls2{letter-spacing:0.001331px;}
.lsfc{letter-spacing:0.001518px;}
.ls109{letter-spacing:0.001771px;}
.lsa{letter-spacing:0.001960px;}
.ls28{letter-spacing:0.001979px;}
.lsf0{letter-spacing:0.001996px;}
.lse{letter-spacing:0.002239px;}
.lsfd{letter-spacing:0.002394px;}
.ls110{letter-spacing:0.002573px;}
.ls111{letter-spacing:0.002818px;}
.ls25{letter-spacing:0.003291px;}
.ls7{letter-spacing:0.003488px;}
.lsc{letter-spacing:0.003494px;}
.ls6e{letter-spacing:0.004752px;}
.ls113{letter-spacing:0.004800px;}
.lsed{letter-spacing:0.005130px;}
.ls1b{letter-spacing:0.005400px;}
.ls5{letter-spacing:0.005415px;}
.ls4b{letter-spacing:0.005711px;}
.lsba{letter-spacing:0.006012px;}
.ls9f{letter-spacing:0.008424px;}
.ls70{letter-spacing:0.009504px;}
.ls41{letter-spacing:0.010260px;}
.ls16{letter-spacing:0.010800px;}
.ls1d{letter-spacing:0.012024px;}
.ls9d{letter-spacing:0.012636px;}
.ls99{letter-spacing:0.014068px;}
.ls6b{letter-spacing:0.014256px;}
.ls56{letter-spacing:0.015390px;}
.ls13{letter-spacing:0.016200px;}
.ls9e{letter-spacing:0.016848px;}
.lsef{letter-spacing:0.017134px;}
.ls1f{letter-spacing:0.018036px;}
.ls9b{letter-spacing:0.018757px;}
.ls6c{letter-spacing:0.019008px;}
.ls45{letter-spacing:0.020520px;}
.lsb9{letter-spacing:0.021600px;}
.lse9{letter-spacing:0.022846px;}
.ls96{letter-spacing:0.023447px;}
.ls71{letter-spacing:0.023760px;}
.ls23{letter-spacing:0.024048px;}
.ls42{letter-spacing:0.025650px;}
.ls14{letter-spacing:0.027000px;}
.ls93{letter-spacing:0.028136px;}
.ls72{letter-spacing:0.028512px;}
.lsbc{letter-spacing:0.030060px;}
.ls44{letter-spacing:0.030780px;}
.lsc0{letter-spacing:0.032400px;}
.ls9a{letter-spacing:0.032826px;}
.ls78{letter-spacing:0.033264px;}
.ls4e{letter-spacing:0.034268px;}
.ls3f{letter-spacing:0.035910px;}
.lsd7{letter-spacing:0.036072px;}
.ls7c{letter-spacing:0.037034px;}
.ls95{letter-spacing:0.037515px;}
.lsb6{letter-spacing:0.037800px;}
.ls6d{letter-spacing:0.038016px;}
.ls21{letter-spacing:0.042084px;}
.lsa1{letter-spacing:0.042120px;}
.ls94{letter-spacing:0.042204px;}
.lsbd{letter-spacing:0.043200px;}
.lsee{letter-spacing:0.045691px;}
.ls76{letter-spacing:0.047520px;}
.ls1e{letter-spacing:0.048096px;}
.lsd8{letter-spacing:0.048600px;}
.ls49{letter-spacing:0.051300px;}
.ls4c{letter-spacing:0.051403px;}
.lsbb{letter-spacing:0.054108px;}
.ls9c{letter-spacing:0.056272px;}
.ls40{letter-spacing:0.056430px;}
.ls4f{letter-spacing:0.057114px;}
.ls7b{letter-spacing:0.058196px;}
.lsbf{letter-spacing:0.059400px;}
.ls24{letter-spacing:0.059776px;}
.ls20{letter-spacing:0.060120px;}
.ls6f{letter-spacing:0.061776px;}
.lsea{letter-spacing:0.062825px;}
.lsa0{letter-spacing:0.063180px;}
.ls7a{letter-spacing:0.063487px;}
.ls1a{letter-spacing:0.064800px;}
.ls92{letter-spacing:0.065651px;}
.ls22{letter-spacing:0.066132px;}
.ls73{letter-spacing:0.066528px;}
.lsec{letter-spacing:0.066690px;}
.ls8f{letter-spacing:0.067224px;}
.ls4d{letter-spacing:0.068537px;}
.lsbe{letter-spacing:0.070200px;}
.ls79{letter-spacing:0.074068px;}
.lsd5{letter-spacing:0.075600px;}
.ls68{letter-spacing:0.075842px;}
.ls4a{letter-spacing:0.076950px;}
.ls37{letter-spacing:0.078156px;}
.lseb{letter-spacing:0.079960px;}
.ls3d{letter-spacing:0.081875px;}
.ls57{letter-spacing:0.085671px;}
.ls10{letter-spacing:0.086184px;}
.lsb8{letter-spacing:0.086400px;}
.ls1c{letter-spacing:0.096192px;}
.lsd6{letter-spacing:0.114228px;}
.lse5{letter-spacing:0.118800px;}
.ls74{letter-spacing:0.123552px;}
.lsb7{letter-spacing:0.129600px;}
.ls75{letter-spacing:0.133056px;}
.ls46{letter-spacing:0.133380px;}
.ls18{letter-spacing:0.140400px;}
.ls98{letter-spacing:0.140681px;}
.ls91{letter-spacing:0.141916px;}
.ls47{letter-spacing:0.143640px;}
.ls90{letter-spacing:0.149386px;}
.ls97{letter-spacing:0.150060px;}
.ls19{letter-spacing:0.156600px;}
.ls86{letter-spacing:0.156816px;}
.ls6a{letter-spacing:0.160111px;}
.ls69{letter-spacing:0.168538px;}
.ls3e{letter-spacing:0.172847px;}
.ls12{letter-spacing:0.181944px;}
.ls30{letter-spacing:0.183600px;}
.ls11{letter-spacing:0.191520px;}
.lsc9{letter-spacing:0.192384px;}
.ls9{letter-spacing:1.275394px;}
.ls1{letter-spacing:1.861130px;}
.ls17{letter-spacing:1.987200px;}
.ls77{letter-spacing:2.067120px;}
.ls15{letter-spacing:2.168235px;}
.ls54{letter-spacing:2.231550px;}
.lsfa{letter-spacing:2.484459px;}
.ls43{letter-spacing:5.309550px;}
.ls82{letter-spacing:5.868720px;}
.lsce{letter-spacing:6.669000px;}
.ls48{letter-spacing:8.387550px;}
.ls67{letter-spacing:10.348899px;}
.ls66{letter-spacing:10.348935px;}
.lsb4{letter-spacing:11.634613px;}
.lsb5{letter-spacing:11.634649px;}
.ls105{letter-spacing:11.946318px;}
.ls6{letter-spacing:11.954850px;}
.ls10e{letter-spacing:12.405502px;}
.ls104{letter-spacing:13.385894px;}
.ls102{letter-spacing:13.418663px;}
.ls7d{letter-spacing:13.430154px;}
.lsff{letter-spacing:13.448400px;}
.lsfe{letter-spacing:13.454400px;}
.ls100{letter-spacing:13.562521px;}
.ls106{letter-spacing:13.597459px;}
.ls112{letter-spacing:13.616932px;}
.lsd3{letter-spacing:13.667266px;}
.lsc1{letter-spacing:13.689035px;}
.ls8c{letter-spacing:13.705343px;}
.ls8b{letter-spacing:13.707818px;}
.ls10d{letter-spacing:13.708937px;}
.ls8e{letter-spacing:13.770363px;}
.ls8d{letter-spacing:13.772540px;}
.lsd2{letter-spacing:13.899920px;}
.ls29{letter-spacing:13.915619px;}
.lse6{letter-spacing:14.010124px;}
.lse7{letter-spacing:14.016246px;}
.ls4{letter-spacing:14.340736px;}
.ls3{letter-spacing:14.346858px;}
.ls108{letter-spacing:14.662165px;}
.lsfb{letter-spacing:14.664991px;}
.lse8{letter-spacing:14.824792px;}
.ls2a{letter-spacing:14.940124px;}
.ls2b{letter-spacing:14.944200px;}
.lsf{letter-spacing:14.944692px;}
.ls2c{letter-spacing:14.946124px;}
.lsb1{letter-spacing:14.986172px;}
.ls8a{letter-spacing:14.996096px;}
.lsdb{letter-spacing:15.103241px;}
.lsda{letter-spacing:15.109314px;}
.lsd1{letter-spacing:15.204001px;}
.lsd4{letter-spacing:15.210124px;}
.ls27{letter-spacing:15.312876px;}
.ls26{letter-spacing:15.318992px;}
.ls101{letter-spacing:15.397459px;}
.ls10f{letter-spacing:16.815106px;}
.lsb3{letter-spacing:17.080712px;}
.lsb2{letter-spacing:17.927771px;}
.lsd{letter-spacing:17.931598px;}
.lsdc{letter-spacing:18.745418px;}
.ls107{letter-spacing:19.409224px;}
.ls10a{letter-spacing:19.668047px;}
.ls103{letter-spacing:22.344518px;}
.lsb0{letter-spacing:23.321888px;}
.ls0{letter-spacing:32.009510px;}
.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;}
}
.ws0{word-spacing:-117.622397px;}
.ws116{word-spacing:-60.120000px;}
.ws73{word-spacing:-51.300000px;}
.ws13{word-spacing:-17.394700px;}
.ws3{word-spacing:-15.655334px;}
.ws2c{word-spacing:-14.943900px;}
.ws20{word-spacing:-13.915795px;}
.ws36{word-spacing:-13.500000px;}
.wsb6{word-spacing:-13.449600px;}
.ws17b{word-spacing:-12.850650px;}
.ws17c{word-spacing:-12.840390px;}
.ws72{word-spacing:-12.825000px;}
.ws35{word-spacing:-12.161520px;}
.ws1e{word-spacing:-11.955150px;}
.wse3{word-spacing:-11.723400px;}
.ws71{word-spacing:-11.553444px;}
.wsb0{word-spacing:-10.702138px;}
.wse2{word-spacing:-9.485986px;}
.ws1ad{word-spacing:-5.140702px;}
.wsae{word-spacing:-4.602721px;}
.ws3d{word-spacing:-4.303843px;}
.wsdc{word-spacing:-4.244068px;}
.ws1c5{word-spacing:-4.088678px;}
.ws30{word-spacing:-3.706087px;}
.ws130{word-spacing:-3.571128px;}
.ws1d8{word-spacing:-3.496896px;}
.ws144{word-spacing:-3.488400px;}
.ws145{word-spacing:-3.477600px;}
.ws184{word-spacing:-3.443098px;}
.ws1fc{word-spacing:-3.389299px;}
.ws114{word-spacing:-3.347434px;}
.ws115{word-spacing:-3.287658px;}
.ws15c{word-spacing:-3.186360px;}
.wsab{word-spacing:-3.168107px;}
.ws146{word-spacing:-3.083400px;}
.ws142{word-spacing:-3.029400px;}
.ws143{word-spacing:-3.002400px;}
.ws88{word-spacing:-2.939490px;}
.ws1c0{word-spacing:-2.929004px;}
.ws86{word-spacing:-2.924100px;}
.ws87{word-spacing:-2.903580px;}
.ws7c{word-spacing:-2.809453px;}
.ws124{word-spacing:-2.807604px;}
.ws125{word-spacing:-2.705400px;}
.ws1ae{word-spacing:-2.689902px;}
.ws118{word-spacing:-2.528525px;}
.wsaf{word-spacing:-2.510575px;}
.ws56{word-spacing:-2.488968px;}
.ws55{word-spacing:-2.470932px;}
.ws3b{word-spacing:-2.391024px;}
.ws1ac{word-spacing:-2.271473px;}
.ws1fe{word-spacing:-2.205734px;}
.wsf7{word-spacing:-2.185242px;}
.ws2f{word-spacing:-2.151922px;}
.ws67{word-spacing:-2.020032px;}
.ws66{word-spacing:-2.008008px;}
.ws14f{word-spacing:-1.990541px;}
.ws6d{word-spacing:-1.972595px;}
.ws1cf{word-spacing:-1.936742px;}
.ws3e{word-spacing:-1.912819px;}
.ws5{word-spacing:-1.908367px;}
.ws182{word-spacing:-1.882944px;}
.wsac{word-spacing:-1.853044px;}
.wsb5{word-spacing:-1.829146px;}
.ws40{word-spacing:-1.793268px;}
.ws3a{word-spacing:-1.775347px;}
.ws5a{word-spacing:-1.755504px;}
.ws1ff{word-spacing:-1.721549px;}
.ws15a{word-spacing:-1.713420px;}
.ws15b{word-spacing:-1.701396px;}
.ws1bb{word-spacing:-1.673717px;}
.wsb3{word-spacing:-1.667750px;}
.ws159{word-spacing:-1.653300px;}
.ws183{word-spacing:-1.613952px;}
.wse7{word-spacing:-1.560154px;}
.wse8{word-spacing:-1.506355px;}
.ws34{word-spacing:-1.494390px;}
.ws39{word-spacing:-1.452557px;}
.ws60{word-spacing:-1.424844px;}
.ws177{word-spacing:-1.406808px;}
.ws1ed{word-spacing:-1.398758px;}
.ws4{word-spacing:-1.322630px;}
.wsde{word-spacing:-1.315063px;}
.ws168{word-spacing:-1.290600px;}
.wsdd{word-spacing:-1.255288px;}
.ws195{word-spacing:-1.226070px;}
.wsdf{word-spacing:-1.195512px;}
.ws1e1{word-spacing:-1.183565px;}
.ws196{word-spacing:-1.174770px;}
.wsf9{word-spacing:-1.083242px;}
.ws6e{word-spacing:-1.075961px;}
.wsf8{word-spacing:-1.045727px;}
.ws57{word-spacing:-1.034064px;}
.wseb{word-spacing:-1.022170px;}
.ws15{word-spacing:-1.016185px;}
.ws61{word-spacing:-1.010016px;}
.ws18d{word-spacing:-0.999495px;}
.ws17a{word-spacing:-0.956410px;}
.wsea{word-spacing:-0.914573px;}
.ws167{word-spacing:-0.912600px;}
.ws27{word-spacing:-0.896634px;}
.ws169{word-spacing:-0.864000px;}
.ws201{word-spacing:-0.860774px;}
.ws21{word-spacing:-0.836858px;}
.wsa1{word-spacing:-0.811019px;}
.wsa0{word-spacing:-0.799596px;}
.ws1ba{word-spacing:-0.777083px;}
.wse0{word-spacing:-0.729080px;}
.wse9{word-spacing:-0.699379px;}
.wsb4{word-spacing:-0.645581px;}
.wsc{word-spacing:-0.601041px;}
.ws94{word-spacing:-0.599697px;}
.wsb{word-spacing:-0.597756px;}
.ws95{word-spacing:-0.582563px;}
.wsee{word-spacing:-0.468936px;}
.wsef{word-spacing:-0.454868px;}
.ws1ee{word-spacing:-0.430387px;}
.ws50{word-spacing:-0.360720px;}
.ws12{word-spacing:-0.358654px;}
.ws93{word-spacing:-0.336973px;}
.ws18f{word-spacing:-0.331261px;}
.ws12b{word-spacing:-0.324648px;}
.ws1cc{word-spacing:-0.322790px;}
.ws9{word-spacing:-0.298878px;}
.ws11f{word-spacing:-0.288576px;}
.ws12a{word-spacing:-0.282564px;}
.ws166{word-spacing:-0.270540px;}
.ws1ca{word-spacing:-0.268992px;}
.ws26{word-spacing:-0.249849px;}
.ws16{word-spacing:-0.239102px;}
.wsfa{word-spacing:-0.225089px;}
.ws38{word-spacing:-0.215194px;}
.wsa3{word-spacing:-0.211322px;}
.wsbf{word-spacing:-0.190080px;}
.ws8{word-spacing:-0.179327px;}
.ws7a{word-spacing:-0.161395px;}
.wsc0{word-spacing:-0.156816px;}
.ws7{word-spacing:-0.119551px;}
.ws117{word-spacing:-0.107597px;}
.ws43{word-spacing:-0.081396px;}
.ws7f{word-spacing:-0.077326px;}
.wsb8{word-spacing:-0.071628px;}
.wsec{word-spacing:-0.063489px;}
.wse{word-spacing:-0.059776px;}
.ws16a{word-spacing:-0.059400px;}
.ws78{word-spacing:-0.053798px;}
.ws2{word-spacing:-0.015245px;}
.ws1dc{word-spacing:-0.009139px;}
.ws1cd{word-spacing:-0.002794px;}
.ws1fa{word-spacing:-0.002045px;}
.ws1{word-spacing:0.000000px;}
.ws1d{word-spacing:0.001867px;}
.ws1ab{word-spacing:0.005711px;}
.wscf{word-spacing:0.010581px;}
.wsfb{word-spacing:0.018757px;}
.wsf4{word-spacing:0.037515px;}
.wsd9{word-spacing:0.046302px;}
.ws137{word-spacing:0.048096px;}
.ws37{word-spacing:0.053798px;}
.ws28{word-spacing:0.059776px;}
.ws153{word-spacing:0.084168px;}
.wsfc{word-spacing:0.089098px;}
.ws120{word-spacing:0.090180px;}
.ws5e{word-spacing:0.096192px;}
.ws90{word-spacing:0.097470px;}
.ws6c{word-spacing:0.102204px;}
.ws14e{word-spacing:0.107597px;}
.ws151{word-spacing:0.108000px;}
.ws152{word-spacing:0.113400px;}
.ws2a{word-spacing:0.119551px;}
.ws8c{word-spacing:0.123120px;}
.ws8d{word-spacing:0.138510px;}
.ws140{word-spacing:0.140400px;}
.ws199{word-spacing:0.143640px;}
.ws92{word-spacing:0.148770px;}
.ws1a1{word-spacing:0.159030px;}
.ws1e4{word-spacing:0.161395px;}
.ws11e{word-spacing:0.162000px;}
.ws13f{word-spacing:0.167400px;}
.ws19a{word-spacing:0.169290px;}
.wsce{word-spacing:0.171072px;}
.ws91{word-spacing:0.174420px;}
.ws4f{word-spacing:0.178200px;}
.wsa{word-spacing:0.179327px;}
.ws141{word-spacing:0.183600px;}
.wsa2{word-spacing:0.188476px;}
.ws7b{word-spacing:0.215194px;}
.ws10{word-spacing:0.239102px;}
.ws1eb{word-spacing:0.249141px;}
.ws138{word-spacing:0.252504px;}
.ws79{word-spacing:0.268992px;}
.ws6{word-spacing:0.298878px;}
.wsf3{word-spacing:0.314187px;}
.ws1cb{word-spacing:0.322790px;}
.ws5f{word-spacing:0.330660px;}
.ws1a{word-spacing:0.358654px;}
.ws1e2{word-spacing:0.376589px;}
.ws1b1{word-spacing:0.418429px;}
.ws163{word-spacing:0.420840px;}
.ws164{word-spacing:0.456912px;}
.wsa9{word-spacing:0.468335px;}
.ws134{word-spacing:0.468936px;}
.ws19b{word-spacing:0.518130px;}
.ws13a{word-spacing:0.518400px;}
.ws135{word-spacing:0.535068px;}
.ws2e{word-spacing:0.597756px;}
.ws131{word-spacing:0.625248px;}
.ws19c{word-spacing:0.630990px;}
.ws17d{word-spacing:0.645581px;}
.ws70{word-spacing:0.657532px;}
.ws1d3{word-spacing:0.699379px;}
.ws132{word-spacing:0.721440px;}
.ws5d{word-spacing:0.751500px;}
.ws1f8{word-spacing:0.753178px;}
.ws158{word-spacing:0.763524px;}
.ws191{word-spacing:0.805410px;}
.ws204{word-spacing:0.806976px;}
.ws1b{word-spacing:0.836858px;}
.ws190{word-spacing:0.846450px;}
.ws157{word-spacing:0.847692px;}
.ws192{word-spacing:0.851580px;}
.ws139{word-spacing:0.869400px;}
.ws193{word-spacing:0.872100px;}
.ws13b{word-spacing:0.880200px;}
.ws13c{word-spacing:0.896400px;}
.ws133{word-spacing:0.913824px;}
.wsb7{word-spacing:0.914573px;}
.ws33{word-spacing:0.956410px;}
.wsa4{word-spacing:1.005206px;}
.ws18e{word-spacing:1.056609px;}
.ws3c{word-spacing:1.075961px;}
.ws1c4{word-spacing:1.075968px;}
.ws136{word-spacing:1.130256px;}
.ws31{word-spacing:1.135736px;}
.ws126{word-spacing:1.160316px;}
.wsa5{word-spacing:1.176548px;}
.ws11b{word-spacing:1.177200px;}
.ws1df{word-spacing:1.237363px;}
.ws1c1{word-spacing:1.255288px;}
.ws127{word-spacing:1.310616px;}
.ws1c2{word-spacing:1.315063px;}
.ws128{word-spacing:1.322640px;}
.wsd2{word-spacing:1.354383px;}
.ws41{word-spacing:1.374839px;}
.ws1c3{word-spacing:1.398758px;}
.ws9d{word-spacing:1.405004px;}
.wsaa{word-spacing:1.410716px;}
.ws1a5{word-spacing:1.416427px;}
.ws162{word-spacing:1.424844px;}
.ws1b0{word-spacing:1.434614px;}
.ws48{word-spacing:1.441800px;}
.ws9c{word-spacing:1.462118px;}
.wsad{word-spacing:1.494390px;}
.ws11a{word-spacing:1.495800px;}
.ws17e{word-spacing:1.506355px;}
.ws8e{word-spacing:1.513350px;}
.ws8f{word-spacing:1.528740px;}
.ws1a2{word-spacing:1.530655px;}
.ws25{word-spacing:1.554166px;}
.wse5{word-spacing:1.560154px;}
.ws1a6{word-spacing:1.570635px;}
.ws119{word-spacing:1.587600px;}
.ws24{word-spacing:1.613941px;}
.wse4{word-spacing:1.613952px;}
.wsd3{word-spacing:1.671817px;}
.ws200{word-spacing:1.721549px;}
.ws1ec{word-spacing:1.775347px;}
.ws129{word-spacing:1.797588px;}
.ws194{word-spacing:1.821150px;}
.ws12c{word-spacing:1.839672px;}
.ws11d{word-spacing:1.846800px;}
.ws1bf{word-spacing:1.853044px;}
.ws11c{word-spacing:1.884600px;}
.wscb{word-spacing:1.910304px;}
.ws1ce{word-spacing:1.936742px;}
.ws46{word-spacing:1.960200px;}
.ws45{word-spacing:1.971000px;}
.ws47{word-spacing:1.992600px;}
.wscc{word-spacing:2.019600px;}
.ws161{word-spacing:2.032056px;}
.wsdb{word-spacing:2.032370px;}
.wscd{word-spacing:2.033856px;}
.wsc9{word-spacing:2.038608px;}
.wsca{word-spacing:2.114640px;}
.ws113{word-spacing:2.151922px;}
.ws1be{word-spacing:2.211697px;}
.ws49{word-spacing:2.214000px;}
.ws89{word-spacing:2.241810px;}
.ws1e0{word-spacing:2.313331px;}
.wsc3{word-spacing:2.318976px;}
.wsc4{word-spacing:2.356992px;}
.ws1d7{word-spacing:2.367130px;}
.wse1{word-spacing:2.391024px;}
.ws2d{word-spacing:2.450800px;}
.ws1a8{word-spacing:2.461613px;}
.ws9e{word-spacing:2.495882px;}
.wsda{word-spacing:2.510575px;}
.ws9f{word-spacing:2.513016px;}
.wsd5{word-spacing:2.560631px;}
.ws1fb{word-spacing:2.582323px;}
.ws1ef{word-spacing:2.636122px;}
.ws1bd{word-spacing:2.689902px;}
.ws1b4{word-spacing:2.749678px;}
.ws1b5{word-spacing:2.809453px;}
.wsd{word-spacing:2.869229px;}
.ws5b{word-spacing:2.915820px;}
.ws112{word-spacing:2.929004px;}
.ws5c{word-spacing:2.933856px;}
.ws106{word-spacing:2.935764px;}
.ws107{word-spacing:2.944188px;}
.ws108{word-spacing:2.952612px;}
.ws111{word-spacing:2.988780px;}
.ws1de{word-spacing:3.012710px;}
.ws3f{word-spacing:3.048556px;}
.ws9a{word-spacing:3.101290px;}
.ws18{word-spacing:3.108331px;}
.ws1d1{word-spacing:3.120307px;}
.ws17{word-spacing:3.168107px;}
.ws105{word-spacing:3.217968px;}
.ws1fd{word-spacing:3.227904px;}
.ws197{word-spacing:3.237030px;}
.ws104{word-spacing:3.239028px;}
.ws103{word-spacing:3.243240px;}
.ws198{word-spacing:3.257550px;}
.ws15e{word-spacing:3.306600px;}
.ws76{word-spacing:3.335501px;}
.ws17f{word-spacing:3.347434px;}
.ws160{word-spacing:3.384756px;}
.ws77{word-spacing:3.389299px;}
.ws14a{word-spacing:3.396600px;}
.ws14c{word-spacing:3.402000px;}
.ws180{word-spacing:3.407209px;}
.ws15f{word-spacing:3.414816px;}
.ws14b{word-spacing:3.429000px;}
.ws149{word-spacing:3.439800px;}
.ws15d{word-spacing:3.462912px;}
.ws10d{word-spacing:3.474900px;}
.ws10f{word-spacing:3.508596px;}
.ws19{word-spacing:3.526760px;}
.ws10e{word-spacing:3.542292px;}
.wse6{word-spacing:3.712090px;}
.ws23{word-spacing:3.765863px;}
.ws54{word-spacing:3.781548px;}
.ws1aa{word-spacing:3.820927px;}
.ws22{word-spacing:3.825638px;}
.ws42{word-spacing:3.885414px;}
.ws1a9{word-spacing:3.923732px;}
.ws32{word-spacing:3.945190px;}
.wsd1{word-spacing:3.967920px;}
.ws186{word-spacing:3.975134px;}
.wsd0{word-spacing:3.994373px;}
.ws150{word-spacing:4.004965px;}
.ws12e{word-spacing:4.028040px;}
.ws187{word-spacing:4.060805px;}
.ws100{word-spacing:4.089852px;}
.ws102{word-spacing:4.094064px;}
.ws101{word-spacing:4.119336px;}
.ws2b{word-spacing:4.124516px;}
.ws1c7{word-spacing:4.142477px;}
.wsd4{word-spacing:4.142508px;}
.wsd6{word-spacing:4.168961px;}
.ws1d9{word-spacing:4.196275px;}
.ws188{word-spacing:4.215013px;}
.ws181{word-spacing:4.244068px;}
.ws1f5{word-spacing:4.250074px;}
.ws10b{word-spacing:4.296240px;}
.ws29{word-spacing:4.303843px;}
.ws189{word-spacing:4.334953px;}
.ws11{word-spacing:4.363619px;}
.ws7d{word-spacing:4.423394px;}
.ws16c{word-spacing:4.509000px;}
.ws16b{word-spacing:4.514400px;}
.ws12d{word-spacing:4.521024px;}
.ws12f{word-spacing:4.587156px;}
.ws1b2{word-spacing:4.602721px;}
.ws109{word-spacing:4.628988px;}
.ws10a{word-spacing:4.645836px;}
.ws10c{word-spacing:4.650048px;}
.ws178{word-spacing:4.719420px;}
.ws1da{word-spacing:4.734259px;}
.ws147{word-spacing:4.865400px;}
.wsa7{word-spacing:4.888958px;}
.ws1e9{word-spacing:4.895654px;}
.wsa6{word-spacing:4.900381px;}
.ws1e8{word-spacing:4.949453px;}
.wsa8{word-spacing:4.957495px;}
.wsf6{word-spacing:4.989479px;}
.wsf5{word-spacing:5.106713px;}
.ws51{word-spacing:5.128236px;}
.ws52{word-spacing:5.140260px;}
.ws14{word-spacing:5.140702px;}
.ws148{word-spacing:5.140800px;}
.ws7e{word-spacing:5.200477px;}
.ws1e3{word-spacing:5.218445px;}
.wsc1{word-spacing:5.246208px;}
.ws1b8{word-spacing:5.260253px;}
.wsc2{word-spacing:5.265216px;}
.ws1e7{word-spacing:5.272243px;}
.ws85{word-spacing:5.278770px;}
.ws83{word-spacing:5.324940px;}
.ws1f4{word-spacing:5.369366px;}
.ws1dd{word-spacing:5.369530px;}
.ws203{word-spacing:5.370182px;}
.ws84{word-spacing:5.371110px;}
.ws1f7{word-spacing:5.372323px;}
.ws1c9{word-spacing:5.374310px;}
.ws1d2{word-spacing:5.375530px;}
.ws1f9{word-spacing:5.378285px;}
.ws1c6{word-spacing:5.378822px;}
.ws1d0{word-spacing:5.379840px;}
.ws1e6{word-spacing:5.379907px;}
.ws205{word-spacing:5.384333px;}
.ws202{word-spacing:5.433638px;}
.ws1af{word-spacing:5.439580px;}
.ws6a{word-spacing:5.458896px;}
.ws1bc{word-spacing:5.499355px;}
.wsf0{word-spacing:5.627232px;}
.wsf2{word-spacing:5.664747px;}
.wsf1{word-spacing:5.711640px;}
.wsbd{word-spacing:5.849712px;}
.wsbe{word-spacing:5.854464px;}
.ws69{word-spacing:5.891760px;}
.ws6f{word-spacing:5.917784px;}
.ws68{word-spacing:5.969916px;}
.ws1db{word-spacing:5.971622px;}
.wsf{word-spacing:5.977560px;}
.ws1f6{word-spacing:6.079219px;}
.ws1b3{word-spacing:6.156887px;}
.ws1ea{word-spacing:6.240614px;}
.ws1c{word-spacing:6.276438px;}
.ws1b7{word-spacing:6.336214px;}
.ws4d{word-spacing:6.604200px;}
.ws13d{word-spacing:6.631200px;}
.ws4e{word-spacing:6.652800px;}
.ws14d{word-spacing:6.663600px;}
.ws13e{word-spacing:6.717600px;}
.wsd8{word-spacing:6.754643px;}
.wsb2{word-spacing:6.778598px;}
.ws18c{word-spacing:6.870814px;}
.ws99{word-spacing:6.882237px;}
.ws185{word-spacing:6.910794px;}
.ws170{word-spacing:6.912000px;}
.ws58{word-spacing:6.919812px;}
.ws59{word-spacing:6.925824px;}
.ws98{word-spacing:6.933640px;}
.ws16f{word-spacing:6.960600px;}
.ws16e{word-spacing:7.009200px;}
.ws18b{word-spacing:7.019311px;}
.ws171{word-spacing:7.025400px;}
.ws16d{word-spacing:7.036200px;}
.ws1d5{word-spacing:7.047590px;}
.wsed{word-spacing:7.095816px;}
.ws1d4{word-spacing:7.101389px;}
.wsb1{word-spacing:7.155187px;}
.ws1b6{word-spacing:7.412174px;}
.ws1c8{word-spacing:7.800768px;}
.ws1f2{word-spacing:7.908365px;}
.wsb9{word-spacing:8.005536px;}
.wsc8{word-spacing:8.021376px;}
.wsc7{word-spacing:8.064144px;}
.ws179{word-spacing:8.152272px;}
.ws96{word-spacing:8.310087px;}
.ws97{word-spacing:8.315798px;}
.ws8b{word-spacing:8.356770px;}
.ws110{word-spacing:8.368584px;}
.ws8a{word-spacing:8.397810px;}
.ws4b{word-spacing:8.402400px;}
.ws4c{word-spacing:8.494200px;}
.ws4a{word-spacing:8.521200px;}
.ws1b9{word-spacing:8.547911px;}
.ws80{word-spacing:8.642340px;}
.ws75{word-spacing:8.661542px;}
.wsfd{word-spacing:8.840988px;}
.wsfe{word-spacing:8.862048px;}
.ws1d6{word-spacing:8.876736px;}
.wsff{word-spacing:8.929440px;}
.ws165{word-spacing:9.048060px;}
.ws74{word-spacing:9.091930px;}
.ws44{word-spacing:9.097200px;}
.wsc5{word-spacing:9.328176px;}
.wsc6{word-spacing:9.351936px;}
.ws1e5{word-spacing:9.629914px;}
.wsba{word-spacing:9.974448px;}
.wsbb{word-spacing:9.998208px;}
.wsbc{word-spacing:10.074240px;}
.ws175{word-spacing:10.243800px;}
.ws176{word-spacing:10.303200px;}
.ws19d{word-spacing:10.413900px;}
.ws19e{word-spacing:10.444680px;}
.wsd7{word-spacing:10.938935px;}
.ws174{word-spacing:11.302200px;}
.ws172{word-spacing:11.329200px;}
.ws18a{word-spacing:11.348552px;}
.ws173{word-spacing:11.350800px;}
.ws1f0{word-spacing:13.718592px;}
.ws82{word-spacing:14.492250px;}
.ws81{word-spacing:14.512770px;}
.ws19f{word-spacing:14.543550px;}
.ws1a0{word-spacing:14.548680px;}
.ws53{word-spacing:14.867676px;}
.ws1a7{word-spacing:15.814867px;}
.ws62{word-spacing:16.977888px;}
.ws64{word-spacing:17.356644px;}
.ws63{word-spacing:17.386704px;}
.ws65{word-spacing:17.422776px;}
.ws1f1{word-spacing:18.022464px;}
.ws156{word-spacing:18.114156px;}
.ws123{word-spacing:18.408744px;}
.ws155{word-spacing:18.468864px;}
.ws154{word-spacing:18.522972px;}
.ws1a4{word-spacing:18.933291px;}
.ws1a3{word-spacing:19.150324px;}
.ws9b{word-spacing:19.898518px;}
.ws121{word-spacing:20.567052px;}
.ws122{word-spacing:20.621160px;}
.ws1f3{word-spacing:29.589120px;}
.ws6b{word-spacing:31.550976px;}
.ws1f{word-spacing:1035.315990px;}
._13{margin-left:-7.711052px;}
._2{margin-left:-6.635092px;}
._3{margin-left:-4.949453px;}
._1{margin-left:-3.287658px;}
._1d{margin-left:-2.282101px;}
._0{margin-left:-1.279388px;}
._6{width:1.091170px;}
._15{width:2.157446px;}
._18{width:4.363619px;}
._12{width:10.652083px;}
._1b{width:11.835569px;}
._7{width:13.795798px;}
._f{width:15.649120px;}
._22{width:16.762662px;}
._4{width:17.861069px;}
._5{width:19.797811px;}
._8{width:21.041011px;}
._21{width:22.714728px;}
._10{width:24.950526px;}
._d{width:26.121937px;}
._24{width:28.034756px;}
._9{width:30.007351px;}
._1e{width:31.274759px;}
._c{width:32.876580px;}
._e{width:34.251419px;}
._17{width:35.446931px;}
._23{width:37.957506px;}
._a{width:39.655323px;}
._1a{width:41.687694px;}
._25{width:42.715930px;}
._16{width:44.383680px;}
._26{width:61.868160px;}
._1c{width:1302.100909px;}
._19{width:1469.036923px;}
._1f{width:1561.880568px;}
._14{width:1584.800963px;}
._11{width:1668.268970px;}
._20{width:2050.677634px;}
._b{width:2074.587634px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(144,38,54);}
.fsc{font-size:36.000000px;}
.fs15{font-size:37.346400px;}
.fs19{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fs16{font-size:42.120000px;}
.fs11{font-size:42.134400px;}
.fs7{font-size:45.429600px;}
.fsd{font-size:45.486000px;}
.fs17{font-size:46.893600px;}
.fs4{font-size:47.236800px;}
.fs12{font-size:47.520000px;}
.fs6{font-size:47.820600px;}
.fs8{font-size:47.880000px;}
.fse{font-size:51.300000px;}
.fs14{font-size:52.905600px;}
.fs3{font-size:53.798400px;}
.fs9{font-size:54.000000px;}
.fs18{font-size:56.160000px;}
.fs10{font-size:57.114000px;}
.fs1{font-size:59.775600px;}
.fsb{font-size:60.120000px;}
.fs13{font-size:63.360000px;}
.fsf{font-size:68.400000px;}
.fsa{font-size:72.000000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y61{bottom:-925.532550px;}
.y171{bottom:-612.146798px;}
.y18b{bottom:-576.578798px;}
.ya9{bottom:-555.230872px;}
.y7c{bottom:-525.392046px;}
.yc2{bottom:-523.166739px;}
.y7b{bottom:-505.142127px;}
.yc1{bottom:-503.929316px;}
.y7a{bottom:-484.982388px;}
.yc0{bottom:-484.691893px;}
.ybf{bottom:-465.454470px;}
.y79{bottom:-464.732469px;}
.ybe{bottom:-446.217047px;}
.y78{bottom:-444.482550px;}
.y76{bottom:-444.480789px;}
.y77{bottom:-440.702550px;}
.y75{bottom:-424.230870px;}
.ybd{bottom:-418.515329px;}
.y74{bottom:-403.980951px;}
.y73{bottom:-383.731032px;}
.ybc{bottom:-382.177975px;}
.y72{bottom:-363.481113px;}
.ybb{bottom:-362.940552px;}
.yba{bottom:-343.703129px;}
.y71{bottom:-343.321374px;}
.y18a{bottom:-329.996165px;}
.yb9{bottom:-324.465706px;}
.y70{bottom:-323.071455px;}
.ydd{bottom:-318.412644px;}
.y189{bottom:-310.758742px;}
.yb8{bottom:-305.228283px;}
.y6f{bottom:-302.821536px;}
.yed{bottom:-297.661698px;}
.y188{bottom:-291.521319px;}
.yb7{bottom:-285.990860px;}
.y6e{bottom:-282.571617px;}
.yec{bottom:-279.841769px;}
.y148{bottom:-273.541050px;}
.y187{bottom:-272.283896px;}
.yb6{bottom:-266.839107px;}
.y6d{bottom:-262.321698px;}
.yeb{bottom:-262.021840px;}
.y186{bottom:-253.132144px;}
.y160{bottom:-251.490708px;}
.yb5{bottom:-247.601684px;}
.yea{bottom:-244.201911px;}
.y6c{bottom:-242.071779px;}
.y185{bottom:-233.894721px;}
.y15f{bottom:-231.240789px;}
.yb4{bottom:-228.364261px;}
.ye9{bottom:-226.381983px;}
.y6b{bottom:-221.821860px;}
.y184{bottom:-214.657298px;}
.y15e{bottom:-211.081050px;}
.y6a{bottom:-201.662121px;}
.ye8{bottom:-200.721444px;}
.yb3{bottom:-200.576873px;}
.y121{bottom:-197.231550px;}
.y69{bottom:-181.412202px;}
.y183{bottom:-178.749435px;}
.y13b{bottom:-173.653350px;}
.y15d{bottom:-173.283300px;}
.ye7{bottom:-167.459820px;}
.yb2{bottom:-164.669010px;}
.y68{bottom:-161.162283px;}
.y182{bottom:-160.195507px;}
.y105{bottom:-156.525759px;}
.y13a{bottom:-154.213350px;}
.y15c{bottom:-153.752850px;}
.ye6{bottom:-150.273024px;}
.yb1{bottom:-146.115082px;}
.y181{bottom:-141.727508px;}
.y139{bottom:-134.682900px;}
.y15b{bottom:-134.222400px;}
.ye5{bottom:-133.086228px;}
.y67{bottom:-131.912400px;}
.yb0{bottom:-127.647082px;}
.y180{bottom:-123.173580px;}
.ye4{bottom:-115.979028px;}
.y138{bottom:-115.152450px;}
.y15a{bottom:-114.782400px;}
.y115{bottom:-113.564763px;}
.yaf{bottom:-109.093155px;}
.y17f{bottom:-104.619653px;}
.ye3{bottom:-98.792232px;}
.y114{bottom:-98.331012px;}
.y137{bottom:-95.712450px;}
.y159{bottom:-95.251950px;}
.y66{bottom:-94.203900px;}
.yae{bottom:-90.539227px;}
.y17e{bottom:-86.151652px;}
.y113{bottom:-83.097261px;}
.ye2{bottom:-81.605436px;}
.y136{bottom:-76.182000px;}
.y158{bottom:-75.721500px;}
.y65{bottom:-74.673450px;}
.yad{bottom:-72.071227px;}
.y112{bottom:-67.934061px;}
.y17d{bottom:-67.597725px;}
.ye1{bottom:-64.498236px;}
.y135{bottom:-56.651550px;}
.y157{bottom:-56.281500px;}
.y64{bottom:-55.143000px;}
.yac{bottom:-53.517300px;}
.y111{bottom:-52.700310px;}
.y17c{bottom:-49.043797px;}
.ye0{bottom:-47.311440px;}
.y19d{bottom:-38.787787px;}
.y110{bottom:-37.466559px;}
.y134{bottom:-37.211550px;}
.y156{bottom:-36.751050px;}
.y63{bottom:-35.612550px;}
.yab{bottom:-34.963372px;}
.y17b{bottom:-30.575798px;}
.ydf{bottom:-30.124644px;}
.y10f{bottom:-22.303359px;}
.yaa{bottom:-11.707373px;}
.y155{bottom:-5.521050px;}
.y17a{bottom:-4.669298px;}
.y133{bottom:-3.641550px;}
.y62{bottom:-3.302400px;}
.y1b7{bottom:-3.219787px;}
.y10e{bottom:-1.734759px;}
.yde{bottom:-1.137444px;}
.y0{bottom:0.000000px;}
.yf{bottom:3.425340px;}
.y2{bottom:13.800505px;}
.ye{bottom:14.151273px;}
.y2f{bottom:63.780000px;}
.y2e{bottom:108.612000px;}
.y255{bottom:108.957000px;}
.yf5{bottom:110.100000px;}
.y1df{bottom:114.156000px;}
.y145{bottom:114.667500px;}
.y258{bottom:114.897000px;}
.y1ef{bottom:115.321500px;}
.y16e{bottom:118.386000px;}
.y11d{bottom:118.438500px;}
.ya5{bottom:124.485000px;}
.y254{bottom:128.325000px;}
.y2d{bottom:128.875500px;}
.yf4{bottom:129.331500px;}
.y1ee{bottom:130.519500px;}
.y144{bottom:133.900500px;}
.y257{bottom:134.263500px;}
.y1de{bottom:134.419500px;}
.y1bc{bottom:135.831000px;}
.y11c{bottom:137.671500px;}
.yd1{bottom:138.363000px;}
.y16d{bottom:138.651000px;}
.y221{bottom:141.996000px;}
.ya4{bottom:144.750000px;}
.y253{bottom:147.691500px;}
.yf3{bottom:148.564500px;}
.y2c{bottom:149.139000px;}
.y143{bottom:153.133500px;}
.y256{bottom:153.631500px;}
.y1dd{bottom:154.683000px;}
.y1bb{bottom:155.064000px;}
.y11b{bottom:156.904500px;}
.yd0{bottom:158.626500px;}
.y16c{bottom:158.914500px;}
.y220{bottom:161.364000px;}
.y1ed{bottom:163.650000px;}
.ya3{bottom:165.013500px;}
.y5e{bottom:166.101000px;}
.y252{bottom:167.059500px;}
.yf2{bottom:167.797500px;}
.y2b{bottom:169.404000px;}
.y142{bottom:172.365000px;}
.y1ba{bottom:174.297000px;}
.y1dc{bottom:174.948000px;}
.y11a{bottom:176.137500px;}
.ycf{bottom:178.890000px;}
.y16b{bottom:179.178000px;}
.y21f{bottom:180.730500px;}
.y60{bottom:181.557450px;}
.y1ec{bottom:183.913500px;}
.ya2{bottom:185.278500px;}
.y5d{bottom:186.364500px;}
.y251{bottom:186.427500px;}
.yf1{bottom:187.030500px;}
.y2a{bottom:189.667500px;}
.y141{bottom:191.598000px;}
.y1b9{bottom:193.530000px;}
.y1db{bottom:195.211500px;}
.y119{bottom:195.370500px;}
.yce{bottom:199.155000px;}
.y16a{bottom:199.443000px;}
.y21e{bottom:200.098500px;}
.y1eb{bottom:204.178500px;}
.ya1{bottom:205.542000px;}
.y250{bottom:205.794000px;}
.yf0{bottom:206.263500px;}
.y5c{bottom:206.629500px;}
.y29{bottom:209.932500px;}
.y140{bottom:210.831000px;}
.y1b8{bottom:212.763000px;}
.y118{bottom:214.603500px;}
.y1da{bottom:215.476500px;}
.ycd{bottom:219.418500px;}
.y21d{bottom:219.466500px;}
.y169{bottom:219.706500px;}
.y1ea{bottom:224.442000px;}
.y24f{bottom:225.162000px;}
.yef{bottom:225.496500px;}
.y5b{bottom:226.893000px;}
.y13f{bottom:230.064000px;}
.y28{bottom:230.196000px;}
.y117{bottom:233.836500px;}
.ya0{bottom:234.772500px;}
.y19b{bottom:235.192215px;}
.y1d9{bottom:235.740000px;}
.y21c{bottom:238.833000px;}
.ycc{bottom:239.683500px;}
.y1b6{bottom:243.362845px;}
.y24e{bottom:244.528500px;}
.y1e9{bottom:244.707000px;}
.yee{bottom:244.729500px;}
.y5a{bottom:247.158000px;}
.y13e{bottom:249.297000px;}
.y27{bottom:250.459500px;}
.y116{bottom:253.069500px;}
.y168{bottom:254.707500px;}
.y1d8{bottom:256.003500px;}
.y21b{bottom:258.201000px;}
.y1b5{bottom:262.600268px;}
.y24d{bottom:263.896500px;}
.y1e8{bottom:264.970500px;}
.ydb{bottom:267.159000px;}
.y59{bottom:267.421500px;}
.y13d{bottom:268.530000px;}
.ycb{bottom:268.912500px;}
.y179{bottom:269.529912px;}
.y9f{bottom:269.592000px;}
.y26{bottom:270.724500px;}
.y167{bottom:273.940500px;}
.y103{bottom:275.499000px;}
.y1d7{bottom:276.268500px;}
.y21a{bottom:277.567500px;}
.y1b4{bottom:281.837691px;}
.y24c{bottom:283.264500px;}
.y1e7{bottom:285.234000px;}
.y58{bottom:287.685000px;}
.y13c{bottom:287.763000px;}
.y178{bottom:288.767335px;}
.y9e{bottom:289.855500px;}
.y25{bottom:290.988000px;}
.y166{bottom:293.172000px;}
.y1d6{bottom:296.532000px;}
.y219{bottom:296.935500px;}
.yca{bottom:300.537000px;}
.y1b3{bottom:301.075114px;}
.y24b{bottom:302.631000px;}
.y1e6{bottom:305.499000px;}
.y57{bottom:307.950000px;}
.y177{bottom:308.004758px;}
.y9d{bottom:310.120500px;}
.y11f{bottom:310.192500px;}
.y24{bottom:311.253000px;}
.y165{bottom:312.405000px;}
.y218{bottom:316.303500px;}
.y1d5{bottom:316.797000px;}
.yc9{bottom:319.768500px;}
.y1b2{bottom:320.226866px;}
.y24a{bottom:321.999000px;}
.y1e5{bottom:325.762500px;}
.y176{bottom:327.242181px;}
.y56{bottom:328.213500px;}
.y9c{bottom:330.384000px;}
.y23{bottom:331.516500px;}
.y164{bottom:331.638000px;}
.y217{bottom:335.670000px;}
.y1d4{bottom:337.060500px;}
.yc8{bottom:339.001500px;}
.y1b1{bottom:339.464289px;}
.y249{bottom:341.367000px;}
.y1e4{bottom:346.027500px;}
.y175{bottom:346.479604px;}
.y55{bottom:348.478500px;}
.y9b{bottom:350.649000px;}
.y163{bottom:350.871000px;}
.y22{bottom:351.780000px;}
.y216{bottom:355.038000px;}
.y1d3{bottom:357.324000px;}
.yc7{bottom:358.234500px;}
.y1b0{bottom:358.701712px;}
.y248{bottom:360.733500px;}
.y174{bottom:365.717027px;}
.y1e3{bottom:366.291000px;}
.y162{bottom:370.104000px;}
.y9a{bottom:370.912500px;}
.y215{bottom:374.404500px;}
.yc6{bottom:377.467500px;}
.y1d2{bottom:377.589000px;}
.y54{bottom:377.709000px;}
.y247{bottom:380.101500px;}
.y21{bottom:381.010500px;}
.y173{bottom:384.868779px;}
.y1e2{bottom:386.554500px;}
.y161{bottom:389.337000px;}
.y99{bottom:391.176000px;}
.y214{bottom:393.772500px;}
.y1af{bottom:394.609575px;}
.yc5{bottom:396.700500px;}
.y1d1{bottom:397.852500px;}
.y246{bottom:399.468000px;}
.y172{bottom:404.106203px;}
.y1e1{bottom:406.819500px;}
.y98{bottom:411.441000px;}
.y146{bottom:411.766500px;}
.y53{bottom:412.528500px;}
.y213{bottom:413.140500px;}
.y1ae{bottom:413.163503px;}
.yc4{bottom:415.933500px;}
.y1d0{bottom:418.117500px;}
.y245{bottom:418.836000px;}
.y1e0{bottom:427.083000px;}
.y1ad{bottom:431.631503px;}
.y97{bottom:431.704500px;}
.y212{bottom:432.507000px;}
.yc3{bottom:435.166500px;}
.y244{bottom:438.204000px;}
.y1cf{bottom:438.381000px;}
.y170{bottom:439.588702px;}
.y52{bottom:447.348000px;}
.y1ac{bottom:450.185430px;}
.y211{bottom:451.875000px;}
.y20{bottom:457.426500px;}
.y243{bottom:457.570500px;}
.ya7{bottom:457.596000px;}
.y1ce{bottom:458.644500px;}
.y96{bottom:460.935000px;}
.y19a{bottom:464.338500px;}
.y51{bottom:467.611500px;}
.y1ab{bottom:468.739358px;}
.y210{bottom:471.241500px;}
.y242{bottom:476.938500px;}
.y1f{bottom:477.691500px;}
.y1cd{bottom:478.909500px;}
.y199{bottom:484.603500px;}
.y1aa{bottom:487.207358px;}
.y50{bottom:487.875000px;}
.y20f{bottom:490.609500px;}
.y95{bottom:495.754500px;}
.y241{bottom:496.305000px;}
.ya8{bottom:496.504628px;}
.y1cc{bottom:499.173000px;}
.y198{bottom:504.867000px;}
.y1a9{bottom:505.761285px;}
.y4f{bottom:508.140000px;}
.y20e{bottom:509.977500px;}
.y240{bottom:515.673000px;}
.y1e{bottom:515.887500px;}
.y94{bottom:516.019500px;}
.y1cb{bottom:519.438000px;}
.y132{bottom:523.219980px;}
.y1a8{bottom:524.315213px;}
.y197{bottom:525.130500px;}
.y4e{bottom:528.403500px;}
.y20d{bottom:529.344000px;}
.y23f{bottom:535.041000px;}
.y1d{bottom:536.152500px;}
.y93{bottom:536.283000px;}
.y1ca{bottom:539.701500px;}
.y1a7{bottom:542.783212px;}
.y131{bottom:543.469899px;}
.y196{bottom:545.395500px;}
.y154{bottom:548.069895px;}
.y4d{bottom:548.667000px;}
.y20c{bottom:548.712000px;}
.y23e{bottom:554.407500px;}
.y1c{bottom:556.416000px;}
.y91{bottom:556.546500px;}
.y1c9{bottom:559.965000px;}
.y92{bottom:561.972000px;}
.y130{bottom:563.719818px;}
.y195{bottom:565.659000px;}
.y10d{bottom:567.377224px;}
.y20b{bottom:568.078500px;}
.y153{bottom:568.319814px;}
.y1a6{bottom:568.689713px;}
.y4c{bottom:568.932000px;}
.y23d{bottom:573.775500px;}
.y1b{bottom:576.679500px;}
.y8f{bottom:576.811500px;}
.y1c8{bottom:580.230000px;}
.y90{bottom:582.235500px;}
.y10c{bottom:583.172160px;}
.y12f{bottom:583.969737px;}
.y20a{bottom:587.446500px;}
.y152{bottom:588.569733px;}
.y4b{bottom:589.195500px;}
.y23c{bottom:593.142000px;}
.y1a{bottom:596.944500px;}
.y8e{bottom:597.075000px;}
.y10b{bottom:598.967097px;}
.y1c7{bottom:600.493500px;}
.y194{bottom:600.660000px;}
.y12e{bottom:604.129476px;}
.y209{bottom:606.814500px;}
.y151{bottom:608.819652px;}
.y4a{bottom:609.460500px;}
.y23b{bottom:612.510000px;}
.y10a{bottom:614.762034px;}
.y19{bottom:617.208000px;}
.y8d{bottom:617.340000px;}
.y193{bottom:619.893000px;}
.y1c6{bottom:620.758500px;}
.y12d{bottom:624.379395px;}
.y208{bottom:626.181000px;}
.y150{bottom:629.069571px;}
.y49{bottom:629.724000px;}
.y109{bottom:630.556971px;}
.y23a{bottom:631.878000px;}
.y18{bottom:637.473000px;}
.y8c{bottom:637.603500px;}
.y192{bottom:639.126000px;}
.y1c5{bottom:641.022000px;}
.y12c{bottom:644.629314px;}
.y207{bottom:645.549000px;}
.y108{bottom:646.351908px;}
.y14f{bottom:649.319490px;}
.y48{bottom:649.987500px;}
.y239{bottom:651.244500px;}
.ydc{bottom:655.826556px;}
.y17{bottom:657.736500px;}
.y8b{bottom:657.867000px;}
.y191{bottom:658.359000px;}
.y1c4{bottom:661.285500px;}
.y107{bottom:662.076504px;}
.y12b{bottom:664.879233px;}
.y206{bottom:664.915500px;}
.y14e{bottom:669.479229px;}
.y47{bottom:670.252500px;}
.y238{bottom:670.612500px;}
.y190{bottom:677.590500px;}
.y106{bottom:677.871441px;}
.y16{bottom:678.000000px;}
.y8a{bottom:678.132000px;}
.y1c3{bottom:681.550500px;}
.y205{bottom:684.283500px;}
.y12a{bottom:685.129152px;}
.y14d{bottom:689.729148px;}
.y237{bottom:689.979000px;}
.y46{bottom:690.516000px;}
.y18f{bottom:696.823500px;}
.y15{bottom:698.265000px;}
.y89{bottom:698.395500px;}
.y1c2{bottom:701.814000px;}
.y204{bottom:703.651500px;}
.y129{bottom:705.379071px;}
.y104{bottom:707.004441px;}
.y236{bottom:709.347000px;}
.y14c{bottom:709.979067px;}
.y45{bottom:710.781000px;}
.y18e{bottom:716.056500px;}
.y14{bottom:718.528500px;}
.y88{bottom:718.660500px;}
.y1c1{bottom:722.077500px;}
.y203{bottom:723.018000px;}
.y128{bottom:725.628990px;}
.y235{bottom:728.715000px;}
.y44{bottom:731.044500px;}
.y18d{bottom:735.289500px;}
.y13{bottom:738.793500px;}
.y87{bottom:738.924000px;}
.y14b{bottom:739.228950px;}
.y1c0{bottom:742.342500px;}
.y202{bottom:742.386000px;}
.y127{bottom:745.788729px;}
.y234{bottom:748.081500px;}
.y43{bottom:751.308000px;}
.y18c{bottom:754.522500px;}
.y12{bottom:759.057000px;}
.y86{bottom:759.187500px;}
.y201{bottom:761.752500px;}
.y1bf{bottom:762.606000px;}
.y126{bottom:766.038648px;}
.y233{bottom:767.449500px;}
.y42{bottom:771.573000px;}
.y14a{bottom:776.938500px;}
.y16f{bottom:776.952000px;}
.y11{bottom:779.320500px;}
.y85{bottom:779.452500px;}
.y200{bottom:781.120500px;}
.y1be{bottom:782.871000px;}
.y125{bottom:786.288567px;}
.y232{bottom:786.816000px;}
.y41{bottom:791.836500px;}
.y149{bottom:796.468950px;}
.y10{bottom:799.585500px;}
.y84{bottom:799.716000px;}
.y1ff{bottom:800.488500px;}
.y1bd{bottom:803.134500px;}
.y231{bottom:806.184000px;}
.y40{bottom:812.101500px;}
.y124{bottom:815.538450px;}
.y1fe{bottom:819.855000px;}
.y83{bottom:819.981000px;}
.y11e{bottom:823.398000px;}
.y230{bottom:825.552000px;}
.y3f{bottom:832.365000px;}
.y147{bottom:833.548950px;}
.yd{bottom:834.591055px;}
.yc{bottom:835.359000px;}
.y1fd{bottom:839.223000px;}
.y82{bottom:840.244500px;}
.y1a5{bottom:842.888922px;}
.y102{bottom:843.663000px;}
.y22f{bottom:844.918500px;}
.y3e{bottom:852.628500px;}
.y123{bottom:853.248000px;}
.y1fc{bottom:858.589500px;}
.y1a4{bottom:862.126345px;}
.y101{bottom:863.926500px;}
.y22e{bottom:864.286500px;}
.y81{bottom:869.475000px;}
.y122{bottom:872.778450px;}
.y3d{bottom:872.893500px;}
.yb{bottom:874.363500px;}
.y1fb{bottom:877.957500px;}
.y1a3{bottom:881.363768px;}
.y22d{bottom:883.653000px;}
.y100{bottom:884.191500px;}
.ya{bottom:892.521000px;}
.y3c{bottom:893.157000px;}
.y1fa{bottom:897.325500px;}
.y1a2{bottom:900.601191px;}
.y80{bottom:901.098000px;}
.y22c{bottom:903.021000px;}
.yff{bottom:904.455000px;}
.y120{bottom:909.858450px;}
.yda{bottom:910.164000px;}
.y9{bottom:910.678500px;}
.y3b{bottom:913.422000px;}
.y1a1{bottom:919.838614px;}
.y7f{bottom:920.331000px;}
.y22b{bottom:922.389000px;}
.yfe{bottom:924.718500px;}
.y1f9{bottom:925.659000px;}
.yd9{bottom:930.427500px;}
.y3a{bottom:933.685500px;}
.y8{bottom:937.375500px;}
.y1a0{bottom:939.076037px;}
.y7e{bottom:939.564000px;}
.y22a{bottom:941.755500px;}
.yfd{bottom:944.983500px;}
.yd8{bottom:950.692500px;}
.y39{bottom:953.949000px;}
.y19f{bottom:958.227789px;}
.y7d{bottom:958.797000px;}
.y229{bottom:961.123500px;}
.y1f8{bottom:965.110500px;}
.yfc{bottom:965.247000px;}
.yd7{bottom:970.956000px;}
.y38{bottom:974.214000px;}
.y19e{bottom:977.465213px;}
.y7{bottom:980.055000px;}
.y228{bottom:980.490000px;}
.y5f{bottom:981.226500px;}
.yfb{bottom:985.512000px;}
.y1f7{bottom:989.275500px;}
.yd6{bottom:991.219500px;}
.y37{bottom:994.477500px;}
.y227{bottom:999.858000px;}
.y1f6{bottom:1004.473500px;}
.yfa{bottom:1005.775500px;}
.y6{bottom:1010.451000px;}
.yd5{bottom:1011.484500px;}
.y19c{bottom:1012.947713px;}
.y36{bottom:1014.742500px;}
.y226{bottom:1019.226000px;}
.y1f5{bottom:1019.671500px;}
.yf9{bottom:1026.039000px;}
.yd4{bottom:1031.748000px;}
.y1f4{bottom:1034.869500px;}
.y35{bottom:1035.006000px;}
.y225{bottom:1038.592500px;}
.y5{bottom:1040.848500px;}
.yf8{bottom:1046.304000px;}
.y1f2{bottom:1050.067500px;}
.yd3{bottom:1052.013000px;}
.y1f3{bottom:1054.950000px;}
.y34{bottom:1055.269500px;}
.y224{bottom:1057.960500px;}
.yf7{bottom:1066.567500px;}
.y4{bottom:1071.244500px;}
.y33{bottom:1075.534500px;}
.y1f1{bottom:1076.700000px;}
.y223{bottom:1077.327000px;}
.yd2{bottom:1081.243500px;}
.yf6{bottom:1086.832500px;}
.y32{bottom:1095.798000px;}
.y222{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y1f0{bottom:1100.865000px;}
.y31{bottom:1116.063000px;}
.ya6{bottom:1121.487000px;}
.y1{bottom:1137.954000px;}
.y30{bottom:1168.366500px;}
.h8{height:25.508090px;}
.h17{height:26.173828px;}
.h2f{height:27.262143px;}
.h1b{height:27.439478px;}
.h19{height:27.855430px;}
.h30{height:28.073145px;}
.h3b{height:29.499174px;}
.h34{height:30.623379px;}
.h33{height:30.746777px;}
.h27{height:30.757289px;}
.h28{height:31.672266px;}
.h1a{height:32.027868px;}
.h36{height:32.494234px;}
.ha{height:33.112997px;}
.h1e{height:33.203892px;}
.h31{height:34.094029px;}
.h1f{height:34.191650px;}
.h9{height:34.199443px;}
.h25{height:34.538573px;}
.h2b{height:34.549453px;}
.h2a{height:34.688672px;}
.hf{height:34.951465px;}
.hc{height:35.052500px;}
.h10{height:35.991211px;}
.h1c{height:36.104462px;}
.h22{height:37.297705px;}
.h21{height:37.447998px;}
.h3c{height:37.927872px;}
.h2c{height:38.077566px;}
.h2d{height:38.465058px;}
.h18{height:38.896243px;}
.h7{height:39.165235px;}
.h14{height:39.260742px;}
.h13{height:39.418945px;}
.h37{height:39.434227px;}
.h32{height:40.831172px;}
.h23{height:41.106463px;}
.h24{height:41.524778px;}
.h6{height:43.217759px;}
.h15{height:43.269961px;}
.hb{height:43.516637px;}
.h16{height:43.710293px;}
.h4{height:43.815515px;}
.h29{height:46.065938px;}
.h12{height:47.988281px;}
.h20{height:49.730273px;}
.h2{height:51.025140px;}
.h11{height:52.347656px;}
.hd{height:54.768749px;}
.h5{height:77.792486px;}
.h3{height:102.503837px;}
.he{height:149.781000px;}
.h3a{height:205.499535px;}
.h39{height:234.406800px;}
.h1d{height:472.708125px;}
.h35{height:490.650000px;}
.h38{height:509.569500px;}
.h2e{height:544.518000px;}
.h26{height:619.354560px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:166.304160px;}
.wb{width:292.371525px;}
.w7{width:392.622750px;}
.wa{width:432.491775px;}
.w6{width:446.756640px;}
.w8{width:494.433000px;}
.w9{width:503.893500px;}
.w4{width:544.467000px;}
.w5{width:602.118503px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xb3{left:-170.093700px;}
.xb5{left:-139.826700px;}
.xa7{left:-99.472125px;}
.x90{left:-86.970000px;}
.x9e{left:-82.555500px;}
.x85{left:-68.208360px;}
.x8b{left:-62.779860px;}
.x54{left:-58.590000px;}
.x91{left:-55.109604px;}
.x9f{left:-50.695104px;}
.x87{left:-40.171560px;}
.x8c{left:-37.929060px;}
.x55{left:-26.730000px;}
.x79{left:-12.523897px;}
.x0{left:0.000000px;}
.x7a{left:17.743103px;}
.x6{left:29.274117px;}
.x2{left:57.652455px;}
.x56{left:108.630000px;}
.x1{left:114.802500px;}
.x4{left:122.110500px;}
.x3{left:123.307500px;}
.x78{left:145.399072px;}
.x9{left:146.692500px;}
.x5c{left:150.637500px;}
.x5d{left:156.609000px;}
.xdc{left:160.243500px;}
.x3a{left:165.630000px;}
.x63{left:170.263500px;}
.x53{left:174.223500px;}
.x43{left:176.229000px;}
.xd1{left:177.720000px;}
.xdd{left:178.999500px;}
.x3b{left:180.574500px;}
.x65{left:182.311500px;}
.x64{left:185.208000px;}
.x7{left:188.992500px;}
.x44{left:191.172000px;}
.xd2{left:192.663000px;}
.x9d{left:194.511000px;}
.xde{left:197.754000px;}
.x8f{left:199.240500px;}
.xac{left:202.317000px;}
.x8{left:203.865000px;}
.x38{left:204.912000px;}
.xd4{left:207.019500px;}
.x14{left:211.717500px;}
.x7b{left:213.576000px;}
.xad{left:214.672500px;}
.x39{left:219.855000px;}
.x84{left:223.077000px;}
.x75{left:225.763500px;}
.x60{left:227.701500px;}
.xa6{left:230.212500px;}
.x70{left:233.166000px;}
.x5e{left:235.326000px;}
.xa0{left:237.138000px;}
.x15{left:241.285500px;}
.xc7{left:242.484000px;}
.x5f{left:243.544500px;}
.xa1{left:245.356500px;}
.x16{left:248.757000px;}
.x8a{left:250.146000px;}
.x17{left:252.418500px;}
.xc9{left:253.447500px;}
.xdf{left:256.191000px;}
.x93{left:258.360000px;}
.xe0{left:260.002500px;}
.xc8{left:261.205500px;}
.x7c{left:264.564000px;}
.xdb{left:266.050500px;}
.x18{left:267.363000px;}
.x24{left:271.912500px;}
.xe1{left:274.945500px;}
.x61{left:276.048000px;}
.xca{left:279.675000px;}
.xa{left:282.310500px;}
.xcb{left:283.485000px;}
.x62{left:285.277500px;}
.x25{left:286.857000px;}
.xb{left:289.783500px;}
.xaa{left:293.769000px;}
.xb6{left:296.736300px;}
.xcc{left:298.429500px;}
.xb2{left:300.271500px;}
.xcd{left:302.239500px;}
.x26{left:305.611500px;}
.x94{left:308.290500px;}
.x1b{left:313.779000px;}
.x95{left:316.507500px;}
.x6a{left:318.664500px;}
.x71{left:323.353500px;}
.xa2{left:324.777000px;}
.x1c{left:328.723500px;}
.x72{left:330.826500px;}
.x1d{left:332.383500px;}
.x6b{left:333.607500px;}
.x6c{left:337.384500px;}
.x45{left:344.253000px;}
.x19{left:347.610000px;}
.x6d{left:352.329000px;}
.x1e{left:354.651000px;}
.x46{left:359.197500px;}
.x1a{left:362.553000px;}
.x2e{left:364.737000px;}
.xa9{left:367.357875px;}
.x1f{left:369.594000px;}
.xb4{left:371.548800px;}
.x4c{left:373.410000px;}
.x47{left:377.811000px;}
.x2f{left:379.681500px;}
.xa3{left:384.628500px;}
.x30{left:387.190500px;}
.xa4{left:392.847000px;}
.x20{left:394.476000px;}
.xa5{left:398.265000px;}
.x7e{left:400.875000px;}
.x31{left:402.133500px;}
.x82{left:405.741000px;}
.x7f{left:406.846500px;}
.x21{left:409.419000px;}
.x22{left:413.230500px;}
.x83{left:414.972000px;}
.x8d{left:417.903000px;}
.x8e{left:424.426500px;}
.xd9{left:426.192000px;}
.x23{left:428.173500px;}
.xd8{left:433.645500px;}
.xc{left:436.675500px;}
.xda{left:441.135000px;}
.xa8{left:442.170375px;}
.xd{left:444.148500px;}
.x86{left:448.334040px;}
.xb0{left:449.602500px;}
.xb1{left:464.545500px;}
.xce{left:466.104000px;}
.x96{left:470.932500px;}
.x73{left:472.785000px;}
.xd3{left:477.945000px;}
.x97{left:479.149500px;}
.x74{left:487.729500px;}
.x92{left:493.350000px;}
.x4f{left:497.305500px;}
.x99{left:499.006500px;}
.x50{left:504.777000px;}
.xab{left:508.606500px;}
.x9a{left:511.366500px;}
.x4a{left:517.792500px;}
.x27{left:526.707000px;}
.x4b{left:532.737000px;}
.x67{left:534.202500px;}
.x68{left:537.864000px;}
.x28{left:541.651500px;}
.x29{left:545.428500px;}
.x4d{left:549.982500px;}
.x69{left:552.807000px;}
.x3d{left:553.935000px;}
.x4e{left:557.455500px;}
.x2a{left:560.371500px;}
.x3e{left:561.408000px;}
.xcf{left:562.854000px;}
.x2b{left:564.148500px;}
.x3f{left:565.180500px;}
.xd5{left:568.747500px;}
.x57{left:572.310000px;}
.x3c{left:575.907000px;}
.xd0{left:577.797000px;}
.x2c{left:579.093000px;}
.x40{left:580.125000px;}
.x34{left:582.310500px;}
.x41{left:583.897500px;}
.x51{left:588.093000px;}
.x32{left:591.211500px;}
.x52{left:595.566000px;}
.x35{left:597.255000px;}
.x42{left:598.842000px;}
.x36{left:601.065000px;}
.xc1{left:602.422500px;}
.xb9{left:604.999500px;}
.x33{left:606.156000px;}
.xba{left:612.471000px;}
.x37{left:616.009500px;}
.xc2{left:617.365500px;}
.x9b{left:619.720500px;}
.xe9{left:622.198500px;}
.x9c{left:628.719000px;}
.x66{left:630.073500px;}
.xbb{left:631.075500px;}
.x80{left:633.256500px;}
.xbc{left:634.737000px;}
.xc3{left:639.204000px;}
.x81{left:640.788000px;}
.x98{left:642.499500px;}
.x7d{left:645.016500px;}
.x58{left:646.966500px;}
.xbd{left:649.681500px;}
.x10{left:651.808500px;}
.x59{left:653.691000px;}
.xe4{left:655.795500px;}
.xc4{left:657.958500px;}
.x11{left:659.281500px;}
.xc5{left:661.770000px;}
.x12{left:666.603000px;}
.xbe{left:668.286000px;}
.xae{left:671.142000px;}
.x13{left:674.076000px;}
.xc6{left:676.714500px;}
.xe5{left:678.511500px;}
.xaf{left:683.497500px;}
.xd6{left:685.240500px;}
.xe2{left:686.869500px;}
.xea{left:693.007500px;}
.x5a{left:698.347500px;}
.xd7{left:700.185000px;}
.x5{left:701.339982px;}
.xeb{left:703.663500px;}
.xe6{left:705.411000px;}
.x5b{left:706.566000px;}
.xb7{left:708.213000px;}
.xe8{left:712.416000px;}
.xb8{left:720.582000px;}
.x76{left:722.946000px;}
.xbf{left:728.809500px;}
.x77{left:736.695000px;}
.xc0{left:743.754000px;}
.x48{left:745.363500px;}
.xe3{left:749.478000px;}
.x49{left:752.835000px;}
.x2d{left:756.288000px;}
.x88{left:758.200500px;}
.x6e{left:761.040000px;}
.xe{left:764.367000px;}
.x6f{left:767.727000px;}
.xf{left:771.838500px;}
.x89{left:773.143500px;}
.xe7{left:776.449500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls5c{letter-spacing:-1.137203pt;}
.lse4{letter-spacing:-0.422400pt;}
.lsdd{letter-spacing:-0.312000pt;}
.lscf{letter-spacing:-0.244800pt;}
.lsc2{letter-spacing:-0.230400pt;}
.lsf7{letter-spacing:-0.213226pt;}
.ls36{letter-spacing:-0.208416pt;}
.ls60{letter-spacing:-0.203072pt;}
.ls31{letter-spacing:-0.201600pt;}
.lsc3{letter-spacing:-0.196800pt;}
.lsf2{letter-spacing:-0.182765pt;}
.lsc8{letter-spacing:-0.149632pt;}
.lscc{letter-spacing:-0.138944pt;}
.lsc6{letter-spacing:-0.128256pt;}
.lse2{letter-spacing:-0.122912pt;}
.ls5b{letter-spacing:-0.121843pt;}
.lsc5{letter-spacing:-0.117568pt;}
.lse0{letter-spacing:-0.112224pt;}
.ls5d{letter-spacing:-0.111690pt;}
.ls3c{letter-spacing:-0.106880pt;}
.lsf1{letter-spacing:-0.106613pt;}
.ls3a{letter-spacing:-0.101536pt;}
.lsf4{letter-spacing:-0.100320pt;}
.lsf9{letter-spacing:-0.096459pt;}
.ls87{letter-spacing:-0.094054pt;}
.lsc7{letter-spacing:-0.090848pt;}
.ls5e{letter-spacing:-0.086306pt;}
.lsca{letter-spacing:-0.085504pt;}
.ls2d{letter-spacing:-0.076608pt;}
.lsf3{letter-spacing:-0.076152pt;}
.ls81{letter-spacing:-0.076032pt;}
.ls35{letter-spacing:-0.074816pt;}
.ls50{letter-spacing:-0.072778pt;}
.ls88{letter-spacing:-0.070541pt;}
.lsc4{letter-spacing:-0.069472pt;}
.ls7e{letter-spacing:-0.067415pt;}
.lsa9{letter-spacing:-0.067392pt;}
.ls64{letter-spacing:-0.065998pt;}
.lsf6{letter-spacing:-0.060922pt;}
.lsa2{letter-spacing:-0.059754pt;}
.ls53{letter-spacing:-0.054720pt;}
.lsde{letter-spacing:-0.053440pt;}
.ls61{letter-spacing:-0.050768pt;}
.ls39{letter-spacing:-0.048096pt;}
.ls32{letter-spacing:-0.048000pt;}
.ls62{letter-spacing:-0.045691pt;}
.lscd{letter-spacing:-0.043200pt;}
.lse1{letter-spacing:-0.042752pt;}
.ls85{letter-spacing:-0.042240pt;}
.lsab{letter-spacing:-0.037440pt;}
.ls38{letter-spacing:-0.037408pt;}
.ls5f{letter-spacing:-0.035538pt;}
.ls3b{letter-spacing:-0.032064pt;}
.ls65{letter-spacing:-0.030461pt;}
.ls84{letter-spacing:-0.029568pt;}
.lsa5{letter-spacing:-0.029178pt;}
.lse3{letter-spacing:-0.028800pt;}
.lsdf{letter-spacing:-0.026720pt;}
.ls5a{letter-spacing:-0.025384pt;}
.ls33{letter-spacing:-0.024000pt;}
.lsae{letter-spacing:-0.022464pt;}
.lsf8{letter-spacing:-0.020307pt;}
.lsa4{letter-spacing:-0.016673pt;}
.ls63{letter-spacing:-0.015230pt;}
.lsac{letter-spacing:-0.014976pt;}
.ls52{letter-spacing:-0.013680pt;}
.ls83{letter-spacing:-0.012672pt;}
.lsa7{letter-spacing:-0.012505pt;}
.lsaa{letter-spacing:-0.011232pt;}
.lscb{letter-spacing:-0.010688pt;}
.ls58{letter-spacing:-0.010154pt;}
.lsd0{letter-spacing:-0.009600pt;}
.ls55{letter-spacing:-0.009120pt;}
.ls80{letter-spacing:-0.008448pt;}
.lsa8{letter-spacing:-0.007488pt;}
.ls34{letter-spacing:-0.005344pt;}
.ls59{letter-spacing:-0.005077pt;}
.ls2f{letter-spacing:-0.004800pt;}
.ls89{letter-spacing:-0.004703pt;}
.lsf5{letter-spacing:-0.004560pt;}
.ls2e{letter-spacing:-0.004256pt;}
.lsa6{letter-spacing:-0.004168pt;}
.ls51{letter-spacing:-0.004043pt;}
.ls7f{letter-spacing:-0.003745pt;}
.lsad{letter-spacing:-0.003744pt;}
.lsa3{letter-spacing:-0.003320pt;}
.ls8{letter-spacing:0.000000pt;}
.lsaf{letter-spacing:0.000137pt;}
.lsb{letter-spacing:0.000243pt;}
.ls10c{letter-spacing:0.000397pt;}
.lsd9{letter-spacing:0.000600pt;}
.ls10b{letter-spacing:0.000711pt;}
.ls114{letter-spacing:0.000728pt;}
.ls115{letter-spacing:0.000907pt;}
.ls2{letter-spacing:0.001183pt;}
.lsfc{letter-spacing:0.001349pt;}
.ls109{letter-spacing:0.001574pt;}
.lsa{letter-spacing:0.001743pt;}
.ls28{letter-spacing:0.001759pt;}
.lsf0{letter-spacing:0.001774pt;}
.lse{letter-spacing:0.001990pt;}
.lsfd{letter-spacing:0.002128pt;}
.ls110{letter-spacing:0.002287pt;}
.ls111{letter-spacing:0.002505pt;}
.ls25{letter-spacing:0.002925pt;}
.ls7{letter-spacing:0.003100pt;}
.lsc{letter-spacing:0.003106pt;}
.ls6e{letter-spacing:0.004224pt;}
.ls113{letter-spacing:0.004267pt;}
.lsed{letter-spacing:0.004560pt;}
.ls1b{letter-spacing:0.004800pt;}
.ls5{letter-spacing:0.004813pt;}
.ls4b{letter-spacing:0.005077pt;}
.lsba{letter-spacing:0.005344pt;}
.ls9f{letter-spacing:0.007488pt;}
.ls70{letter-spacing:0.008448pt;}
.ls41{letter-spacing:0.009120pt;}
.ls16{letter-spacing:0.009600pt;}
.ls1d{letter-spacing:0.010688pt;}
.ls9d{letter-spacing:0.011232pt;}
.ls99{letter-spacing:0.012505pt;}
.ls6b{letter-spacing:0.012672pt;}
.ls56{letter-spacing:0.013680pt;}
.ls13{letter-spacing:0.014400pt;}
.ls9e{letter-spacing:0.014976pt;}
.lsef{letter-spacing:0.015230pt;}
.ls1f{letter-spacing:0.016032pt;}
.ls9b{letter-spacing:0.016673pt;}
.ls6c{letter-spacing:0.016896pt;}
.ls45{letter-spacing:0.018240pt;}
.lsb9{letter-spacing:0.019200pt;}
.lse9{letter-spacing:0.020307pt;}
.ls96{letter-spacing:0.020842pt;}
.ls71{letter-spacing:0.021120pt;}
.ls23{letter-spacing:0.021376pt;}
.ls42{letter-spacing:0.022800pt;}
.ls14{letter-spacing:0.024000pt;}
.ls93{letter-spacing:0.025010pt;}
.ls72{letter-spacing:0.025344pt;}
.lsbc{letter-spacing:0.026720pt;}
.ls44{letter-spacing:0.027360pt;}
.lsc0{letter-spacing:0.028800pt;}
.ls9a{letter-spacing:0.029178pt;}
.ls78{letter-spacing:0.029568pt;}
.ls4e{letter-spacing:0.030461pt;}
.ls3f{letter-spacing:0.031920pt;}
.lsd7{letter-spacing:0.032064pt;}
.ls7c{letter-spacing:0.032919pt;}
.ls95{letter-spacing:0.033347pt;}
.lsb6{letter-spacing:0.033600pt;}
.ls6d{letter-spacing:0.033792pt;}
.ls21{letter-spacing:0.037408pt;}
.lsa1{letter-spacing:0.037440pt;}
.ls94{letter-spacing:0.037515pt;}
.lsbd{letter-spacing:0.038400pt;}
.lsee{letter-spacing:0.040614pt;}
.ls76{letter-spacing:0.042240pt;}
.ls1e{letter-spacing:0.042752pt;}
.lsd8{letter-spacing:0.043200pt;}
.ls49{letter-spacing:0.045600pt;}
.ls4c{letter-spacing:0.045691pt;}
.lsbb{letter-spacing:0.048096pt;}
.ls9c{letter-spacing:0.050020pt;}
.ls40{letter-spacing:0.050160pt;}
.ls4f{letter-spacing:0.050768pt;}
.ls7b{letter-spacing:0.051730pt;}
.lsbf{letter-spacing:0.052800pt;}
.ls24{letter-spacing:0.053134pt;}
.ls20{letter-spacing:0.053440pt;}
.ls6f{letter-spacing:0.054912pt;}
.lsea{letter-spacing:0.055845pt;}
.lsa0{letter-spacing:0.056160pt;}
.ls7a{letter-spacing:0.056433pt;}
.ls1a{letter-spacing:0.057600pt;}
.ls92{letter-spacing:0.058356pt;}
.ls22{letter-spacing:0.058784pt;}
.ls73{letter-spacing:0.059136pt;}
.lsec{letter-spacing:0.059280pt;}
.ls8f{letter-spacing:0.059754pt;}
.ls4d{letter-spacing:0.060922pt;}
.lsbe{letter-spacing:0.062400pt;}
.ls79{letter-spacing:0.065838pt;}
.lsd5{letter-spacing:0.067200pt;}
.ls68{letter-spacing:0.067415pt;}
.ls4a{letter-spacing:0.068400pt;}
.ls37{letter-spacing:0.069472pt;}
.lseb{letter-spacing:0.071075pt;}
.ls3d{letter-spacing:0.072778pt;}
.ls57{letter-spacing:0.076152pt;}
.ls10{letter-spacing:0.076608pt;}
.lsb8{letter-spacing:0.076800pt;}
.ls1c{letter-spacing:0.085504pt;}
.lsd6{letter-spacing:0.101536pt;}
.lse5{letter-spacing:0.105600pt;}
.ls74{letter-spacing:0.109824pt;}
.lsb7{letter-spacing:0.115200pt;}
.ls75{letter-spacing:0.118272pt;}
.ls46{letter-spacing:0.118560pt;}
.ls18{letter-spacing:0.124800pt;}
.ls98{letter-spacing:0.125050pt;}
.ls91{letter-spacing:0.126148pt;}
.ls47{letter-spacing:0.127680pt;}
.ls90{letter-spacing:0.132787pt;}
.ls97{letter-spacing:0.133386pt;}
.ls19{letter-spacing:0.139200pt;}
.ls86{letter-spacing:0.139392pt;}
.ls6a{letter-spacing:0.142321pt;}
.ls69{letter-spacing:0.149811pt;}
.ls3e{letter-spacing:0.153642pt;}
.ls12{letter-spacing:0.161728pt;}
.ls30{letter-spacing:0.163200pt;}
.ls11{letter-spacing:0.170240pt;}
.lsc9{letter-spacing:0.171008pt;}
.ls9{letter-spacing:1.133683pt;}
.ls1{letter-spacing:1.654338pt;}
.ls17{letter-spacing:1.766400pt;}
.ls77{letter-spacing:1.837440pt;}
.ls15{letter-spacing:1.927320pt;}
.ls54{letter-spacing:1.983600pt;}
.lsfa{letter-spacing:2.208408pt;}
.ls43{letter-spacing:4.719600pt;}
.ls82{letter-spacing:5.216640pt;}
.lsce{letter-spacing:5.928000pt;}
.ls48{letter-spacing:7.455600pt;}
.ls67{letter-spacing:9.199021pt;}
.ls66{letter-spacing:9.199053pt;}
.lsb4{letter-spacing:10.341879pt;}
.lsb5{letter-spacing:10.341910pt;}
.ls105{letter-spacing:10.618950pt;}
.ls6{letter-spacing:10.626533pt;}
.ls10e{letter-spacing:11.027113pt;}
.ls104{letter-spacing:11.898572pt;}
.ls102{letter-spacing:11.927701pt;}
.ls7d{letter-spacing:11.937915pt;}
.lsff{letter-spacing:11.954133pt;}
.lsfe{letter-spacing:11.959467pt;}
.ls100{letter-spacing:12.055574pt;}
.ls106{letter-spacing:12.086630pt;}
.ls112{letter-spacing:12.103940pt;}
.lsd3{letter-spacing:12.148681pt;}
.lsc1{letter-spacing:12.168031pt;}
.ls8c{letter-spacing:12.182527pt;}
.ls8b{letter-spacing:12.184727pt;}
.ls10d{letter-spacing:12.185721pt;}
.ls8e{letter-spacing:12.240323pt;}
.ls8d{letter-spacing:12.242257pt;}
.lsd2{letter-spacing:12.355484pt;}
.ls29{letter-spacing:12.369439pt;}
.lse6{letter-spacing:12.453443pt;}
.lse7{letter-spacing:12.458885pt;}
.ls4{letter-spacing:12.747321pt;}
.ls3{letter-spacing:12.752763pt;}
.ls108{letter-spacing:13.033035pt;}
.lsfb{letter-spacing:13.035547pt;}
.lse8{letter-spacing:13.177593pt;}
.ls2a{letter-spacing:13.280110pt;}
.ls2b{letter-spacing:13.283733pt;}
.lsf{letter-spacing:13.284171pt;}
.ls2c{letter-spacing:13.285443pt;}
.lsb1{letter-spacing:13.321041pt;}
.ls8a{letter-spacing:13.329863pt;}
.lsdb{letter-spacing:13.425103pt;}
.lsda{letter-spacing:13.430501pt;}
.lsd1{letter-spacing:13.514668pt;}
.lsd4{letter-spacing:13.520110pt;}
.ls27{letter-spacing:13.611445pt;}
.ls26{letter-spacing:13.616882pt;}
.ls101{letter-spacing:13.686630pt;}
.ls10f{letter-spacing:14.946761pt;}
.lsb3{letter-spacing:15.182855pt;}
.lsb2{letter-spacing:15.935796pt;}
.lsd{letter-spacing:15.939198pt;}
.lsdc{letter-spacing:16.662594pt;}
.ls107{letter-spacing:17.252643pt;}
.ls10a{letter-spacing:17.482708pt;}
.ls103{letter-spacing:19.861793pt;}
.lsb0{letter-spacing:20.730567pt;}
.ls0{letter-spacing:28.452898pt;}
.ws0{word-spacing:-104.553242pt;}
.ws116{word-spacing:-53.440000pt;}
.ws73{word-spacing:-45.600000pt;}
.ws13{word-spacing:-15.461955pt;}
.ws3{word-spacing:-13.915853pt;}
.ws2c{word-spacing:-13.283467pt;}
.ws20{word-spacing:-12.369595pt;}
.ws36{word-spacing:-12.000000pt;}
.wsb6{word-spacing:-11.955200pt;}
.ws17b{word-spacing:-11.422800pt;}
.ws17c{word-spacing:-11.413680pt;}
.ws72{word-spacing:-11.400000pt;}
.ws35{word-spacing:-10.810240pt;}
.ws1e{word-spacing:-10.626800pt;}
.wse3{word-spacing:-10.420800pt;}
.ws71{word-spacing:-10.269728pt;}
.wsb0{word-spacing:-9.513011pt;}
.wse2{word-spacing:-8.431987pt;}
.ws1ad{word-spacing:-4.569513pt;}
.wsae{word-spacing:-4.091308pt;}
.ws3d{word-spacing:-3.825638pt;}
.wsdc{word-spacing:-3.772505pt;}
.ws1c5{word-spacing:-3.634381pt;}
.ws30{word-spacing:-3.294300pt;}
.ws130{word-spacing:-3.174336pt;}
.ws1d8{word-spacing:-3.108352pt;}
.ws144{word-spacing:-3.100800pt;}
.ws145{word-spacing:-3.091200pt;}
.ws184{word-spacing:-3.060531pt;}
.ws1fc{word-spacing:-3.012710pt;}
.ws114{word-spacing:-2.975497pt;}
.ws115{word-spacing:-2.922363pt;}
.ws15c{word-spacing:-2.832320pt;}
.wsab{word-spacing:-2.816095pt;}
.ws146{word-spacing:-2.740800pt;}
.ws142{word-spacing:-2.692800pt;}
.ws143{word-spacing:-2.668800pt;}
.ws88{word-spacing:-2.612880pt;}
.ws1c0{word-spacing:-2.603559pt;}
.ws86{word-spacing:-2.599200pt;}
.ws87{word-spacing:-2.580960pt;}
.ws7c{word-spacing:-2.497292pt;}
.ws124{word-spacing:-2.495648pt;}
.ws125{word-spacing:-2.404800pt;}
.ws1ae{word-spacing:-2.391024pt;}
.ws118{word-spacing:-2.247578pt;}
.wsaf{word-spacing:-2.231622pt;}
.ws56{word-spacing:-2.212416pt;}
.ws55{word-spacing:-2.196384pt;}
.ws3b{word-spacing:-2.125355pt;}
.ws1ac{word-spacing:-2.019087pt;}
.ws1fe{word-spacing:-1.960653pt;}
.wsf7{word-spacing:-1.942437pt;}
.ws2f{word-spacing:-1.912819pt;}
.ws67{word-spacing:-1.795584pt;}
.ws66{word-spacing:-1.784896pt;}
.ws14f{word-spacing:-1.769370pt;}
.ws6d{word-spacing:-1.753418pt;}
.ws1cf{word-spacing:-1.721549pt;}
.ws3e{word-spacing:-1.700284pt;}
.ws5{word-spacing:-1.696326pt;}
.ws182{word-spacing:-1.673728pt;}
.wsac{word-spacing:-1.647150pt;}
.wsb5{word-spacing:-1.625907pt;}
.ws40{word-spacing:-1.594016pt;}
.ws3a{word-spacing:-1.578086pt;}
.ws5a{word-spacing:-1.560448pt;}
.ws1ff{word-spacing:-1.530266pt;}
.ws15a{word-spacing:-1.523040pt;}
.ws15b{word-spacing:-1.512352pt;}
.ws1bb{word-spacing:-1.487748pt;}
.wsb3{word-spacing:-1.482445pt;}
.ws159{word-spacing:-1.469600pt;}
.ws183{word-spacing:-1.434624pt;}
.wse7{word-spacing:-1.386803pt;}
.wse8{word-spacing:-1.338982pt;}
.ws34{word-spacing:-1.328347pt;}
.ws39{word-spacing:-1.291162pt;}
.ws60{word-spacing:-1.266528pt;}
.ws177{word-spacing:-1.250496pt;}
.ws1ed{word-spacing:-1.243341pt;}
.ws4{word-spacing:-1.175671pt;}
.wsde{word-spacing:-1.168945pt;}
.ws168{word-spacing:-1.147200pt;}
.wsdd{word-spacing:-1.115811pt;}
.ws195{word-spacing:-1.089840pt;}
.wsdf{word-spacing:-1.062677pt;}
.ws1e1{word-spacing:-1.052058pt;}
.ws196{word-spacing:-1.044240pt;}
.wsf9{word-spacing:-0.962882pt;}
.ws6e{word-spacing:-0.956410pt;}
.wsf8{word-spacing:-0.929535pt;}
.ws57{word-spacing:-0.919168pt;}
.wseb{word-spacing:-0.908595pt;}
.ws15{word-spacing:-0.903276pt;}
.ws61{word-spacing:-0.897792pt;}
.ws18d{word-spacing:-0.888440pt;}
.ws17a{word-spacing:-0.850142pt;}
.wsea{word-spacing:-0.812954pt;}
.ws167{word-spacing:-0.811200pt;}
.ws27{word-spacing:-0.797008pt;}
.ws169{word-spacing:-0.768000pt;}
.ws201{word-spacing:-0.765133pt;}
.ws21{word-spacing:-0.743874pt;}
.wsa1{word-spacing:-0.720906pt;}
.wsa0{word-spacing:-0.710752pt;}
.ws1ba{word-spacing:-0.690740pt;}
.wse0{word-spacing:-0.648071pt;}
.wse9{word-spacing:-0.621670pt;}
.wsb4{word-spacing:-0.573850pt;}
.wsc{word-spacing:-0.534258pt;}
.ws94{word-spacing:-0.533064pt;}
.wsb{word-spacing:-0.531339pt;}
.ws95{word-spacing:-0.517834pt;}
.wsee{word-spacing:-0.416832pt;}
.wsef{word-spacing:-0.404327pt;}
.ws1ee{word-spacing:-0.382566pt;}
.ws50{word-spacing:-0.320640pt;}
.ws12{word-spacing:-0.318803pt;}
.ws93{word-spacing:-0.299531pt;}
.ws18f{word-spacing:-0.294454pt;}
.ws12b{word-spacing:-0.288576pt;}
.ws1cc{word-spacing:-0.286925pt;}
.ws9{word-spacing:-0.265669pt;}
.ws11f{word-spacing:-0.256512pt;}
.ws12a{word-spacing:-0.251168pt;}
.ws166{word-spacing:-0.240480pt;}
.ws1ca{word-spacing:-0.239104pt;}
.ws26{word-spacing:-0.222088pt;}
.ws16{word-spacing:-0.212535pt;}
.wsfa{word-spacing:-0.200079pt;}
.ws38{word-spacing:-0.191283pt;}
.wsa3{word-spacing:-0.187842pt;}
.wsbf{word-spacing:-0.168960pt;}
.ws8{word-spacing:-0.159402pt;}
.ws7a{word-spacing:-0.143462pt;}
.wsc0{word-spacing:-0.139392pt;}
.ws7{word-spacing:-0.106268pt;}
.ws117{word-spacing:-0.095642pt;}
.ws43{word-spacing:-0.072352pt;}
.ws7f{word-spacing:-0.068734pt;}
.wsb8{word-spacing:-0.063670pt;}
.wsec{word-spacing:-0.056435pt;}
.wse{word-spacing:-0.053134pt;}
.ws16a{word-spacing:-0.052800pt;}
.ws78{word-spacing:-0.047821pt;}
.ws2{word-spacing:-0.013551pt;}
.ws1dc{word-spacing:-0.008124pt;}
.ws1cd{word-spacing:-0.002483pt;}
.ws1fa{word-spacing:-0.001818pt;}
.ws1{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.001660pt;}
.ws1ab{word-spacing:0.005077pt;}
.wscf{word-spacing:0.009405pt;}
.wsfb{word-spacing:0.016673pt;}
.wsf4{word-spacing:0.033347pt;}
.wsd9{word-spacing:0.041157pt;}
.ws137{word-spacing:0.042752pt;}
.ws37{word-spacing:0.047821pt;}
.ws28{word-spacing:0.053134pt;}
.ws153{word-spacing:0.074816pt;}
.wsfc{word-spacing:0.079198pt;}
.ws120{word-spacing:0.080160pt;}
.ws5e{word-spacing:0.085504pt;}
.ws90{word-spacing:0.086640pt;}
.ws6c{word-spacing:0.090848pt;}
.ws14e{word-spacing:0.095642pt;}
.ws151{word-spacing:0.096000pt;}
.ws152{word-spacing:0.100800pt;}
.ws2a{word-spacing:0.106268pt;}
.ws8c{word-spacing:0.109440pt;}
.ws8d{word-spacing:0.123120pt;}
.ws140{word-spacing:0.124800pt;}
.ws199{word-spacing:0.127680pt;}
.ws92{word-spacing:0.132240pt;}
.ws1a1{word-spacing:0.141360pt;}
.ws1e4{word-spacing:0.143462pt;}
.ws11e{word-spacing:0.144000pt;}
.ws13f{word-spacing:0.148800pt;}
.ws19a{word-spacing:0.150480pt;}
.wsce{word-spacing:0.152064pt;}
.ws91{word-spacing:0.155040pt;}
.ws4f{word-spacing:0.158400pt;}
.wsa{word-spacing:0.159402pt;}
.ws141{word-spacing:0.163200pt;}
.wsa2{word-spacing:0.167534pt;}
.ws7b{word-spacing:0.191283pt;}
.ws10{word-spacing:0.212535pt;}
.ws1eb{word-spacing:0.221459pt;}
.ws138{word-spacing:0.224448pt;}
.ws79{word-spacing:0.239104pt;}
.ws6{word-spacing:0.265669pt;}
.wsf3{word-spacing:0.279277pt;}
.ws1cb{word-spacing:0.286925pt;}
.ws5f{word-spacing:0.293920pt;}
.ws1a{word-spacing:0.318803pt;}
.ws1e2{word-spacing:0.334746pt;}
.ws1b1{word-spacing:0.371937pt;}
.ws163{word-spacing:0.374080pt;}
.ws164{word-spacing:0.406144pt;}
.wsa9{word-spacing:0.416298pt;}
.ws134{word-spacing:0.416832pt;}
.ws19b{word-spacing:0.460560pt;}
.ws13a{word-spacing:0.460800pt;}
.ws135{word-spacing:0.475616pt;}
.ws2e{word-spacing:0.531339pt;}
.ws131{word-spacing:0.555776pt;}
.ws19c{word-spacing:0.560880pt;}
.ws17d{word-spacing:0.573850pt;}
.ws70{word-spacing:0.584473pt;}
.ws1d3{word-spacing:0.621670pt;}
.ws132{word-spacing:0.641280pt;}
.ws5d{word-spacing:0.668000pt;}
.ws1f8{word-spacing:0.669491pt;}
.ws158{word-spacing:0.678688pt;}
.ws191{word-spacing:0.715920pt;}
.ws204{word-spacing:0.717312pt;}
.ws1b{word-spacing:0.743874pt;}
.ws190{word-spacing:0.752400pt;}
.ws157{word-spacing:0.753504pt;}
.ws192{word-spacing:0.756960pt;}
.ws139{word-spacing:0.772800pt;}
.ws193{word-spacing:0.775200pt;}
.ws13b{word-spacing:0.782400pt;}
.ws13c{word-spacing:0.796800pt;}
.ws133{word-spacing:0.812288pt;}
.wsb7{word-spacing:0.812954pt;}
.ws33{word-spacing:0.850142pt;}
.wsa4{word-spacing:0.893517pt;}
.ws18e{word-spacing:0.939208pt;}
.ws3c{word-spacing:0.956410pt;}
.ws1c4{word-spacing:0.956416pt;}
.ws136{word-spacing:1.004672pt;}
.ws31{word-spacing:1.009543pt;}
.ws126{word-spacing:1.031392pt;}
.wsa5{word-spacing:1.045821pt;}
.ws11b{word-spacing:1.046400pt;}
.ws1df{word-spacing:1.099878pt;}
.ws1c1{word-spacing:1.115811pt;}
.ws127{word-spacing:1.164992pt;}
.ws1c2{word-spacing:1.168945pt;}
.ws128{word-spacing:1.175680pt;}
.wsd2{word-spacing:1.203896pt;}
.ws41{word-spacing:1.222079pt;}
.ws1c3{word-spacing:1.243341pt;}
.ws9d{word-spacing:1.248893pt;}
.wsaa{word-spacing:1.253970pt;}
.ws1a5{word-spacing:1.259046pt;}
.ws162{word-spacing:1.266528pt;}
.ws1b0{word-spacing:1.275213pt;}
.ws48{word-spacing:1.281600pt;}
.ws9c{word-spacing:1.299661pt;}
.wsad{word-spacing:1.328347pt;}
.ws11a{word-spacing:1.329600pt;}
.ws17e{word-spacing:1.338982pt;}
.ws8e{word-spacing:1.345200pt;}
.ws8f{word-spacing:1.358880pt;}
.ws1a2{word-spacing:1.360582pt;}
.ws25{word-spacing:1.381481pt;}
.wse5{word-spacing:1.386803pt;}
.ws1a6{word-spacing:1.396120pt;}
.ws119{word-spacing:1.411200pt;}
.ws24{word-spacing:1.434614pt;}
.wse4{word-spacing:1.434624pt;}
.wsd3{word-spacing:1.486060pt;}
.ws200{word-spacing:1.530266pt;}
.ws1ec{word-spacing:1.578086pt;}
.ws129{word-spacing:1.597856pt;}
.ws194{word-spacing:1.618800pt;}
.ws12c{word-spacing:1.635264pt;}
.ws11d{word-spacing:1.641600pt;}
.ws1bf{word-spacing:1.647150pt;}
.ws11c{word-spacing:1.675200pt;}
.wscb{word-spacing:1.698048pt;}
.ws1ce{word-spacing:1.721549pt;}
.ws46{word-spacing:1.742400pt;}
.ws45{word-spacing:1.752000pt;}
.ws47{word-spacing:1.771200pt;}
.wscc{word-spacing:1.795200pt;}
.ws161{word-spacing:1.806272pt;}
.wsdb{word-spacing:1.806551pt;}
.wscd{word-spacing:1.807872pt;}
.wsc9{word-spacing:1.812096pt;}
.wsca{word-spacing:1.879680pt;}
.ws113{word-spacing:1.912819pt;}
.ws1be{word-spacing:1.965953pt;}
.ws49{word-spacing:1.968000pt;}
.ws89{word-spacing:1.992720pt;}
.ws1e0{word-spacing:2.056294pt;}
.wsc3{word-spacing:2.061312pt;}
.wsc4{word-spacing:2.095104pt;}
.ws1d7{word-spacing:2.104115pt;}
.wse1{word-spacing:2.125355pt;}
.ws2d{word-spacing:2.178489pt;}
.ws1a8{word-spacing:2.188101pt;}
.ws9e{word-spacing:2.218562pt;}
.wsda{word-spacing:2.231622pt;}
.ws9f{word-spacing:2.233792pt;}
.wsd5{word-spacing:2.276116pt;}
.ws1fb{word-spacing:2.295398pt;}
.ws1ef{word-spacing:2.343219pt;}
.ws1bd{word-spacing:2.391024pt;}
.ws1b4{word-spacing:2.444158pt;}
.ws1b5{word-spacing:2.497292pt;}
.wsd{word-spacing:2.550426pt;}
.ws5b{word-spacing:2.591840pt;}
.ws112{word-spacing:2.603559pt;}
.ws5c{word-spacing:2.607872pt;}
.ws106{word-spacing:2.609568pt;}
.ws107{word-spacing:2.617056pt;}
.ws108{word-spacing:2.624544pt;}
.ws111{word-spacing:2.656693pt;}
.ws1de{word-spacing:2.677965pt;}
.ws3f{word-spacing:2.709827pt;}
.ws9a{word-spacing:2.756702pt;}
.ws18{word-spacing:2.762961pt;}
.ws1d1{word-spacing:2.773606pt;}
.ws17{word-spacing:2.816095pt;}
.ws105{word-spacing:2.860416pt;}
.ws1fd{word-spacing:2.869248pt;}
.ws197{word-spacing:2.877360pt;}
.ws104{word-spacing:2.879136pt;}
.ws103{word-spacing:2.882880pt;}
.ws198{word-spacing:2.895600pt;}
.ws15e{word-spacing:2.939200pt;}
.ws76{word-spacing:2.964890pt;}
.ws17f{word-spacing:2.975497pt;}
.ws160{word-spacing:3.008672pt;}
.ws77{word-spacing:3.012710pt;}
.ws14a{word-spacing:3.019200pt;}
.ws14c{word-spacing:3.024000pt;}
.ws180{word-spacing:3.028630pt;}
.ws15f{word-spacing:3.035392pt;}
.ws14b{word-spacing:3.048000pt;}
.ws149{word-spacing:3.057600pt;}
.ws15d{word-spacing:3.078144pt;}
.ws10d{word-spacing:3.088800pt;}
.ws10f{word-spacing:3.118752pt;}
.ws19{word-spacing:3.134898pt;}
.ws10e{word-spacing:3.148704pt;}
.wse6{word-spacing:3.299635pt;}
.ws23{word-spacing:3.347434pt;}
.ws54{word-spacing:3.361376pt;}
.ws1aa{word-spacing:3.396379pt;}
.ws22{word-spacing:3.400567pt;}
.ws42{word-spacing:3.453701pt;}
.ws1a9{word-spacing:3.487762pt;}
.ws32{word-spacing:3.506835pt;}
.wsd1{word-spacing:3.527040pt;}
.ws186{word-spacing:3.533453pt;}
.wsd0{word-spacing:3.550554pt;}
.ws150{word-spacing:3.559969pt;}
.ws12e{word-spacing:3.580480pt;}
.ws187{word-spacing:3.609605pt;}
.ws100{word-spacing:3.635424pt;}
.ws102{word-spacing:3.639168pt;}
.ws101{word-spacing:3.661632pt;}
.ws2b{word-spacing:3.666237pt;}
.ws1c7{word-spacing:3.682202pt;}
.wsd4{word-spacing:3.682230pt;}
.wsd6{word-spacing:3.705743pt;}
.ws1d9{word-spacing:3.730022pt;}
.ws188{word-spacing:3.746678pt;}
.ws181{word-spacing:3.772505pt;}
.ws1f5{word-spacing:3.777843pt;}
.ws10b{word-spacing:3.818880pt;}
.ws29{word-spacing:3.825638pt;}
.ws189{word-spacing:3.853291pt;}
.ws11{word-spacing:3.878772pt;}
.ws7d{word-spacing:3.931906pt;}
.ws16c{word-spacing:4.008000pt;}
.ws16b{word-spacing:4.012800pt;}
.ws12d{word-spacing:4.018688pt;}
.ws12f{word-spacing:4.077472pt;}
.ws1b2{word-spacing:4.091308pt;}
.ws109{word-spacing:4.114656pt;}
.ws10a{word-spacing:4.129632pt;}
.ws10c{word-spacing:4.133376pt;}
.ws178{word-spacing:4.195040pt;}
.ws1da{word-spacing:4.208230pt;}
.ws147{word-spacing:4.324800pt;}
.wsa7{word-spacing:4.345741pt;}
.ws1e9{word-spacing:4.351693pt;}
.wsa6{word-spacing:4.355894pt;}
.ws1e8{word-spacing:4.399514pt;}
.wsa8{word-spacing:4.406662pt;}
.wsf6{word-spacing:4.435092pt;}
.wsf5{word-spacing:4.539300pt;}
.ws51{word-spacing:4.558432pt;}
.ws52{word-spacing:4.569120pt;}
.ws14{word-spacing:4.569513pt;}
.ws148{word-spacing:4.569600pt;}
.ws7e{word-spacing:4.622646pt;}
.ws1e3{word-spacing:4.638618pt;}
.wsc1{word-spacing:4.663296pt;}
.ws1b8{word-spacing:4.675780pt;}
.wsc2{word-spacing:4.680192pt;}
.ws1e7{word-spacing:4.686438pt;}
.ws85{word-spacing:4.692240pt;}
.ws83{word-spacing:4.733280pt;}
.ws1f4{word-spacing:4.772770pt;}
.ws1dd{word-spacing:4.772915pt;}
.ws203{word-spacing:4.773495pt;}
.ws84{word-spacing:4.774320pt;}
.ws1f7{word-spacing:4.775398pt;}
.ws1c9{word-spacing:4.777165pt;}
.ws1d2{word-spacing:4.778249pt;}
.ws1f9{word-spacing:4.780698pt;}
.ws1c6{word-spacing:4.781175pt;}
.ws1d0{word-spacing:4.782080pt;}
.ws1e6{word-spacing:4.782140pt;}
.ws205{word-spacing:4.786074pt;}
.ws202{word-spacing:4.829901pt;}
.ws1af{word-spacing:4.835182pt;}
.ws6a{word-spacing:4.852352pt;}
.ws1bc{word-spacing:4.888316pt;}
.wsf0{word-spacing:5.001984pt;}
.wsf2{word-spacing:5.035331pt;}
.wsf1{word-spacing:5.077014pt;}
.wsbd{word-spacing:5.199744pt;}
.wsbe{word-spacing:5.203968pt;}
.ws69{word-spacing:5.237120pt;}
.ws6f{word-spacing:5.260253pt;}
.ws68{word-spacing:5.306592pt;}
.ws1db{word-spacing:5.308109pt;}
.wsf{word-spacing:5.313387pt;}
.ws1f6{word-spacing:5.403750pt;}
.ws1b3{word-spacing:5.472788pt;}
.ws1ea{word-spacing:5.547213pt;}
.ws1c{word-spacing:5.579056pt;}
.ws1b7{word-spacing:5.632190pt;}
.ws4d{word-spacing:5.870400pt;}
.ws13d{word-spacing:5.894400pt;}
.ws4e{word-spacing:5.913600pt;}
.ws14d{word-spacing:5.923200pt;}
.ws13e{word-spacing:5.971200pt;}
.wsd8{word-spacing:6.004127pt;}
.wsb2{word-spacing:6.025421pt;}
.ws18c{word-spacing:6.107390pt;}
.ws99{word-spacing:6.117544pt;}
.ws185{word-spacing:6.142928pt;}
.ws170{word-spacing:6.144000pt;}
.ws58{word-spacing:6.150944pt;}
.ws59{word-spacing:6.156288pt;}
.ws98{word-spacing:6.163235pt;}
.ws16f{word-spacing:6.187200pt;}
.ws16e{word-spacing:6.230400pt;}
.ws18b{word-spacing:6.239387pt;}
.ws171{word-spacing:6.244800pt;}
.ws16d{word-spacing:6.254400pt;}
.ws1d5{word-spacing:6.264525pt;}
.wsed{word-spacing:6.307392pt;}
.ws1d4{word-spacing:6.312346pt;}
.wsb1{word-spacing:6.360166pt;}
.ws1b6{word-spacing:6.588599pt;}
.ws1c8{word-spacing:6.934016pt;}
.ws1f2{word-spacing:7.029658pt;}
.wsb9{word-spacing:7.116032pt;}
.wsc8{word-spacing:7.130112pt;}
.wsc7{word-spacing:7.168128pt;}
.ws179{word-spacing:7.246464pt;}
.ws96{word-spacing:7.386744pt;}
.ws97{word-spacing:7.391821pt;}
.ws8b{word-spacing:7.428240pt;}
.ws110{word-spacing:7.438741pt;}
.ws8a{word-spacing:7.464720pt;}
.ws4b{word-spacing:7.468800pt;}
.ws4c{word-spacing:7.550400pt;}
.ws4a{word-spacing:7.574400pt;}
.ws1b9{word-spacing:7.598143pt;}
.ws80{word-spacing:7.682080pt;}
.ws75{word-spacing:7.699149pt;}
.wsfd{word-spacing:7.858656pt;}
.wsfe{word-spacing:7.877376pt;}
.ws1d6{word-spacing:7.890432pt;}
.wsff{word-spacing:7.937280pt;}
.ws165{word-spacing:8.042720pt;}
.ws74{word-spacing:8.081715pt;}
.ws44{word-spacing:8.086400pt;}
.wsc5{word-spacing:8.291712pt;}
.wsc6{word-spacing:8.312832pt;}
.ws1e5{word-spacing:8.559923pt;}
.wsba{word-spacing:8.866176pt;}
.wsbb{word-spacing:8.887296pt;}
.wsbc{word-spacing:8.954880pt;}
.ws175{word-spacing:9.105600pt;}
.ws176{word-spacing:9.158400pt;}
.ws19d{word-spacing:9.256800pt;}
.ws19e{word-spacing:9.284160pt;}
.wsd7{word-spacing:9.723498pt;}
.ws174{word-spacing:10.046400pt;}
.ws172{word-spacing:10.070400pt;}
.ws18a{word-spacing:10.087602pt;}
.ws173{word-spacing:10.089600pt;}
.ws1f0{word-spacing:12.194304pt;}
.ws82{word-spacing:12.882000pt;}
.ws81{word-spacing:12.900240pt;}
.ws19f{word-spacing:12.927600pt;}
.ws1a0{word-spacing:12.932160pt;}
.ws53{word-spacing:13.215712pt;}
.ws1a7{word-spacing:14.057659pt;}
.ws62{word-spacing:15.091456pt;}
.ws64{word-spacing:15.428128pt;}
.ws63{word-spacing:15.454848pt;}
.ws65{word-spacing:15.486912pt;}
.ws1f1{word-spacing:16.019968pt;}
.ws156{word-spacing:16.101472pt;}
.ws123{word-spacing:16.363328pt;}
.ws155{word-spacing:16.416768pt;}
.ws154{word-spacing:16.464864pt;}
.ws1a4{word-spacing:16.829592pt;}
.ws1a3{word-spacing:17.022510pt;}
.ws9b{word-spacing:17.687571pt;}
.ws121{word-spacing:18.281824pt;}
.ws122{word-spacing:18.329920pt;}
.ws1f3{word-spacing:26.301440pt;}
.ws6b{word-spacing:28.045312pt;}
.ws1f{word-spacing:920.280880pt;}
._13{margin-left:-6.854269pt;}
._2{margin-left:-5.897859pt;}
._3{margin-left:-4.399514pt;}
._1{margin-left:-2.922363pt;}
._1d{margin-left:-2.028534pt;}
._0{margin-left:-1.137234pt;}
._6{width:0.969929pt;}
._15{width:1.917730pt;}
._18{width:3.878772pt;}
._12{width:9.468518pt;}
._1b{width:10.520506pt;}
._7{width:12.262932pt;}
._f{width:13.910329pt;}
._22{width:14.900144pt;}
._4{width:15.876506pt;}
._5{width:17.598054pt;}
._8{width:18.703121pt;}
._21{width:20.190869pt;}
._10{width:22.178245pt;}
._d{width:23.219500pt;}
._24{width:24.919783pt;}
._9{width:26.673201pt;}
._1e{width:27.799786pt;}
._c{width:29.223627pt;}
._e{width:30.445706pt;}
._17{width:31.508383pt;}
._23{width:33.740005pt;}
._a{width:35.249176pt;}
._1a{width:37.055728pt;}
._25{width:37.969715pt;}
._16{width:39.452160pt;}
._26{width:54.993920pt;}
._1c{width:1157.423030pt;}
._19{width:1305.810598pt;}
._1f{width:1388.338282pt;}
._14{width:1408.711967pt;}
._11{width:1482.905751pt;}
._20{width:1822.824563pt;}
._b{width:1844.077897pt;}
.fsc{font-size:32.000000pt;}
.fs15{font-size:33.196800pt;}
.fs19{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fs16{font-size:37.440000pt;}
.fs11{font-size:37.452800pt;}
.fs7{font-size:40.381867pt;}
.fsd{font-size:40.432000pt;}
.fs17{font-size:41.683200pt;}
.fs4{font-size:41.988267pt;}
.fs12{font-size:42.240000pt;}
.fs6{font-size:42.507200pt;}
.fs8{font-size:42.560000pt;}
.fse{font-size:45.600000pt;}
.fs14{font-size:47.027200pt;}
.fs3{font-size:47.820800pt;}
.fs9{font-size:48.000000pt;}
.fs18{font-size:49.920000pt;}
.fs10{font-size:50.768000pt;}
.fs1{font-size:53.133867pt;}
.fsb{font-size:53.440000pt;}
.fs13{font-size:56.320000pt;}
.fsf{font-size:60.800000pt;}
.fsa{font-size:64.000000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y61{bottom:-822.695600pt;}
.y171{bottom:-544.130487pt;}
.y18b{bottom:-512.514487pt;}
.ya9{bottom:-493.538553pt;}
.y7c{bottom:-467.015152pt;}
.yc2{bottom:-465.037102pt;}
.y7b{bottom:-449.015224pt;}
.yc1{bottom:-447.937170pt;}
.y7a{bottom:-431.095456pt;}
.yc0{bottom:-430.837239pt;}
.ybf{bottom:-413.737307pt;}
.y79{bottom:-413.095528pt;}
.ybe{bottom:-396.637375pt;}
.y78{bottom:-395.095600pt;}
.y76{bottom:-395.094035pt;}
.y77{bottom:-391.735600pt;}
.y75{bottom:-377.094107pt;}
.ybd{bottom:-372.013626pt;}
.y74{bottom:-359.094179pt;}
.y73{bottom:-341.094251pt;}
.ybc{bottom:-339.713755pt;}
.y72{bottom:-323.094323pt;}
.ybb{bottom:-322.613824pt;}
.yba{bottom:-305.513892pt;}
.y71{bottom:-305.174555pt;}
.y18a{bottom:-293.329924pt;}
.yb9{bottom:-288.413961pt;}
.y70{bottom:-287.174627pt;}
.ydd{bottom:-283.033461pt;}
.y189{bottom:-276.229993pt;}
.yb8{bottom:-271.314029pt;}
.y6f{bottom:-269.174699pt;}
.yed{bottom:-264.588176pt;}
.y188{bottom:-259.130061pt;}
.yb7{bottom:-254.214097pt;}
.y6e{bottom:-251.174771pt;}
.yec{bottom:-248.748239pt;}
.y148{bottom:-243.147600pt;}
.y187{bottom:-242.030129pt;}
.yb6{bottom:-237.190318pt;}
.y6d{bottom:-233.174843pt;}
.yeb{bottom:-232.908302pt;}
.y186{bottom:-225.006350pt;}
.y160{bottom:-223.547296pt;}
.yb5{bottom:-220.090386pt;}
.yea{bottom:-217.068366pt;}
.y6c{bottom:-215.174915pt;}
.y185{bottom:-207.906418pt;}
.y15f{bottom:-205.547368pt;}
.yb4{bottom:-202.990455pt;}
.ye9{bottom:-201.228429pt;}
.y6b{bottom:-197.174987pt;}
.y184{bottom:-190.806487pt;}
.y15e{bottom:-187.627600pt;}
.y6a{bottom:-179.255219pt;}
.ye8{bottom:-178.419061pt;}
.yb3{bottom:-178.290553pt;}
.y121{bottom:-175.316933pt;}
.y69{bottom:-161.255291pt;}
.y183{bottom:-158.888387pt;}
.y13b{bottom:-154.358533pt;}
.y15d{bottom:-154.029600pt;}
.ye7{bottom:-148.853173pt;}
.yb2{bottom:-146.372453pt;}
.y68{bottom:-143.255363pt;}
.y182{bottom:-142.396007pt;}
.y105{bottom:-139.134008pt;}
.y13a{bottom:-137.078533pt;}
.y15c{bottom:-136.669200pt;}
.ye6{bottom:-133.576021pt;}
.yb1{bottom:-129.880073pt;}
.y181{bottom:-125.980007pt;}
.y139{bottom:-119.718133pt;}
.y15b{bottom:-119.308800pt;}
.ye5{bottom:-118.298869pt;}
.y67{bottom:-117.255467pt;}
.yb0{bottom:-113.464073pt;}
.y180{bottom:-109.487627pt;}
.ye4{bottom:-103.092469pt;}
.y138{bottom:-102.357733pt;}
.y15a{bottom:-102.028800pt;}
.y115{bottom:-100.946456pt;}
.yaf{bottom:-96.971693pt;}
.y17f{bottom:-92.995247pt;}
.ye3{bottom:-87.815317pt;}
.y114{bottom:-87.405344pt;}
.y137{bottom:-85.077733pt;}
.y159{bottom:-84.668400pt;}
.y66{bottom:-83.736800pt;}
.yae{bottom:-80.479313pt;}
.y17e{bottom:-76.579247pt;}
.y113{bottom:-73.864232pt;}
.ye2{bottom:-72.538165pt;}
.y136{bottom:-67.717333pt;}
.y158{bottom:-67.308000pt;}
.y65{bottom:-66.376400pt;}
.yad{bottom:-64.063313pt;}
.y112{bottom:-60.385832pt;}
.y17d{bottom:-60.086867pt;}
.ye1{bottom:-57.331765pt;}
.y135{bottom:-50.356933pt;}
.y157{bottom:-50.028000pt;}
.y64{bottom:-49.016000pt;}
.yac{bottom:-47.570933pt;}
.y111{bottom:-46.844720pt;}
.y17c{bottom:-43.594487pt;}
.ye0{bottom:-42.054613pt;}
.y19d{bottom:-34.478033pt;}
.y110{bottom:-33.303608pt;}
.y134{bottom:-33.076933pt;}
.y156{bottom:-32.667600pt;}
.y63{bottom:-31.655600pt;}
.yab{bottom:-31.078553pt;}
.y17b{bottom:-27.178487pt;}
.ydf{bottom:-26.777461pt;}
.y10f{bottom:-19.825208pt;}
.yaa{bottom:-10.406553pt;}
.y155{bottom:-4.907600pt;}
.y17a{bottom:-4.150487pt;}
.y133{bottom:-3.236933pt;}
.y62{bottom:-2.935467pt;}
.y1b7{bottom:-2.862033pt;}
.y10e{bottom:-1.542008pt;}
.yde{bottom:-1.011061pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:3.044747pt;}
.y2{bottom:12.267116pt;}
.ye{bottom:12.578910pt;}
.y2f{bottom:56.693333pt;}
.y2e{bottom:96.544000pt;}
.y255{bottom:96.850667pt;}
.yf5{bottom:97.866667pt;}
.y1df{bottom:101.472000pt;}
.y145{bottom:101.926667pt;}
.y258{bottom:102.130667pt;}
.y1ef{bottom:102.508000pt;}
.y16e{bottom:105.232000pt;}
.y11d{bottom:105.278667pt;}
.ya5{bottom:110.653333pt;}
.y254{bottom:114.066667pt;}
.y2d{bottom:114.556000pt;}
.yf4{bottom:114.961333pt;}
.y1ee{bottom:116.017333pt;}
.y144{bottom:119.022667pt;}
.y257{bottom:119.345333pt;}
.y1de{bottom:119.484000pt;}
.y1bc{bottom:120.738667pt;}
.y11c{bottom:122.374667pt;}
.yd1{bottom:122.989333pt;}
.y16d{bottom:123.245333pt;}
.y221{bottom:126.218667pt;}
.ya4{bottom:128.666667pt;}
.y253{bottom:131.281333pt;}
.yf3{bottom:132.057333pt;}
.y2c{bottom:132.568000pt;}
.y143{bottom:136.118667pt;}
.y256{bottom:136.561333pt;}
.y1dd{bottom:137.496000pt;}
.y1bb{bottom:137.834667pt;}
.y11b{bottom:139.470667pt;}
.yd0{bottom:141.001333pt;}
.y16c{bottom:141.257333pt;}
.y220{bottom:143.434667pt;}
.y1ed{bottom:145.466667pt;}
.ya3{bottom:146.678667pt;}
.y5e{bottom:147.645333pt;}
.y252{bottom:148.497333pt;}
.yf2{bottom:149.153333pt;}
.y2b{bottom:150.581333pt;}
.y142{bottom:153.213333pt;}
.y1ba{bottom:154.930667pt;}
.y1dc{bottom:155.509333pt;}
.y11a{bottom:156.566667pt;}
.ycf{bottom:159.013333pt;}
.y16b{bottom:159.269333pt;}
.y21f{bottom:160.649333pt;}
.y60{bottom:161.384400pt;}
.y1ec{bottom:163.478667pt;}
.ya2{bottom:164.692000pt;}
.y5d{bottom:165.657333pt;}
.y251{bottom:165.713333pt;}
.yf1{bottom:166.249333pt;}
.y2a{bottom:168.593333pt;}
.y141{bottom:170.309333pt;}
.y1b9{bottom:172.026667pt;}
.y1db{bottom:173.521333pt;}
.y119{bottom:173.662667pt;}
.yce{bottom:177.026667pt;}
.y16a{bottom:177.282667pt;}
.y21e{bottom:177.865333pt;}
.y1eb{bottom:181.492000pt;}
.ya1{bottom:182.704000pt;}
.y250{bottom:182.928000pt;}
.yf0{bottom:183.345333pt;}
.y5c{bottom:183.670667pt;}
.y29{bottom:186.606667pt;}
.y140{bottom:187.405333pt;}
.y1b8{bottom:189.122667pt;}
.y118{bottom:190.758667pt;}
.y1da{bottom:191.534667pt;}
.ycd{bottom:195.038667pt;}
.y21d{bottom:195.081333pt;}
.y169{bottom:195.294667pt;}
.y1ea{bottom:199.504000pt;}
.y24f{bottom:200.144000pt;}
.yef{bottom:200.441333pt;}
.y5b{bottom:201.682667pt;}
.y13f{bottom:204.501333pt;}
.y28{bottom:204.618667pt;}
.y117{bottom:207.854667pt;}
.ya0{bottom:208.686667pt;}
.y19b{bottom:209.059747pt;}
.y1d9{bottom:209.546667pt;}
.y21c{bottom:212.296000pt;}
.ycc{bottom:213.052000pt;}
.y1b6{bottom:216.322529pt;}
.y24e{bottom:217.358667pt;}
.y1e9{bottom:217.517333pt;}
.yee{bottom:217.537333pt;}
.y5a{bottom:219.696000pt;}
.y13e{bottom:221.597333pt;}
.y27{bottom:222.630667pt;}
.y116{bottom:224.950667pt;}
.y168{bottom:226.406667pt;}
.y1d8{bottom:227.558667pt;}
.y21b{bottom:229.512000pt;}
.y1b5{bottom:233.422461pt;}
.y24d{bottom:234.574667pt;}
.y1e8{bottom:235.529333pt;}
.ydb{bottom:237.474667pt;}
.y59{bottom:237.708000pt;}
.y13d{bottom:238.693333pt;}
.ycb{bottom:239.033333pt;}
.y179{bottom:239.582144pt;}
.y9f{bottom:239.637333pt;}
.y26{bottom:240.644000pt;}
.y167{bottom:243.502667pt;}
.y103{bottom:244.888000pt;}
.y1d7{bottom:245.572000pt;}
.y21a{bottom:246.726667pt;}
.y1b4{bottom:250.522392pt;}
.y24c{bottom:251.790667pt;}
.y1e7{bottom:253.541333pt;}
.y58{bottom:255.720000pt;}
.y13c{bottom:255.789333pt;}
.y178{bottom:256.682076pt;}
.y9e{bottom:257.649333pt;}
.y25{bottom:258.656000pt;}
.y166{bottom:260.597333pt;}
.y1d6{bottom:263.584000pt;}
.y219{bottom:263.942667pt;}
.yca{bottom:267.144000pt;}
.y1b3{bottom:267.622324pt;}
.y24b{bottom:269.005333pt;}
.y1e6{bottom:271.554667pt;}
.y57{bottom:273.733333pt;}
.y177{bottom:273.782007pt;}
.y9d{bottom:275.662667pt;}
.y11f{bottom:275.726667pt;}
.y24{bottom:276.669333pt;}
.y165{bottom:277.693333pt;}
.y218{bottom:281.158667pt;}
.y1d5{bottom:281.597333pt;}
.yc9{bottom:284.238667pt;}
.y1b2{bottom:284.646103pt;}
.y24a{bottom:286.221333pt;}
.y1e5{bottom:289.566667pt;}
.y176{bottom:290.881939pt;}
.y56{bottom:291.745333pt;}
.y9c{bottom:293.674667pt;}
.y23{bottom:294.681333pt;}
.y164{bottom:294.789333pt;}
.y217{bottom:298.373333pt;}
.y1d4{bottom:299.609333pt;}
.yc8{bottom:301.334667pt;}
.y1b1{bottom:301.746035pt;}
.y249{bottom:303.437333pt;}
.y1e4{bottom:307.580000pt;}
.y175{bottom:307.981871pt;}
.y55{bottom:309.758667pt;}
.y9b{bottom:311.688000pt;}
.y163{bottom:311.885333pt;}
.y22{bottom:312.693333pt;}
.y216{bottom:315.589333pt;}
.y1d3{bottom:317.621333pt;}
.yc7{bottom:318.430667pt;}
.y1b0{bottom:318.845967pt;}
.y248{bottom:320.652000pt;}
.y174{bottom:325.081802pt;}
.y1e3{bottom:325.592000pt;}
.y162{bottom:328.981333pt;}
.y9a{bottom:329.700000pt;}
.y215{bottom:332.804000pt;}
.yc6{bottom:335.526667pt;}
.y1d2{bottom:335.634667pt;}
.y54{bottom:335.741333pt;}
.y247{bottom:337.868000pt;}
.y21{bottom:338.676000pt;}
.y173{bottom:342.105582pt;}
.y1e2{bottom:343.604000pt;}
.y161{bottom:346.077333pt;}
.y99{bottom:347.712000pt;}
.y214{bottom:350.020000pt;}
.y1af{bottom:350.764067pt;}
.yc5{bottom:352.622667pt;}
.y1d1{bottom:353.646667pt;}
.y246{bottom:355.082667pt;}
.y172{bottom:359.205513pt;}
.y1e1{bottom:361.617333pt;}
.y98{bottom:365.725333pt;}
.y146{bottom:366.014667pt;}
.y53{bottom:366.692000pt;}
.y213{bottom:367.236000pt;}
.y1ae{bottom:367.256447pt;}
.yc4{bottom:369.718667pt;}
.y1d0{bottom:371.660000pt;}
.y245{bottom:372.298667pt;}
.y1e0{bottom:379.629333pt;}
.y1ad{bottom:383.672447pt;}
.y97{bottom:383.737333pt;}
.y212{bottom:384.450667pt;}
.yc3{bottom:386.814667pt;}
.y244{bottom:389.514667pt;}
.y1cf{bottom:389.672000pt;}
.y170{bottom:390.745513pt;}
.y52{bottom:397.642667pt;}
.y1ac{bottom:400.164827pt;}
.y211{bottom:401.666667pt;}
.y20{bottom:406.601333pt;}
.y243{bottom:406.729333pt;}
.ya7{bottom:406.752000pt;}
.y1ce{bottom:407.684000pt;}
.y96{bottom:409.720000pt;}
.y19a{bottom:412.745333pt;}
.y51{bottom:415.654667pt;}
.y1ab{bottom:416.657207pt;}
.y210{bottom:418.881333pt;}
.y242{bottom:423.945333pt;}
.y1f{bottom:424.614667pt;}
.y1cd{bottom:425.697333pt;}
.y199{bottom:430.758667pt;}
.y1aa{bottom:433.073207pt;}
.y50{bottom:433.666667pt;}
.y20f{bottom:436.097333pt;}
.y95{bottom:440.670667pt;}
.y241{bottom:441.160000pt;}
.ya8{bottom:441.337447pt;}
.y1cc{bottom:443.709333pt;}
.y198{bottom:448.770667pt;}
.y1a9{bottom:449.565587pt;}
.y4f{bottom:451.680000pt;}
.y20e{bottom:453.313333pt;}
.y240{bottom:458.376000pt;}
.y1e{bottom:458.566667pt;}
.y94{bottom:458.684000pt;}
.y1cb{bottom:461.722667pt;}
.y132{bottom:465.084427pt;}
.y1a8{bottom:466.057967pt;}
.y197{bottom:466.782667pt;}
.y4e{bottom:469.692000pt;}
.y20d{bottom:470.528000pt;}
.y23f{bottom:475.592000pt;}
.y1d{bottom:476.580000pt;}
.y93{bottom:476.696000pt;}
.y1ca{bottom:479.734667pt;}
.y1a7{bottom:482.473967pt;}
.y131{bottom:483.084355pt;}
.y196{bottom:484.796000pt;}
.y154{bottom:487.173240pt;}
.y4d{bottom:487.704000pt;}
.y20c{bottom:487.744000pt;}
.y23e{bottom:492.806667pt;}
.y1c{bottom:494.592000pt;}
.y91{bottom:494.708000pt;}
.y1c9{bottom:497.746667pt;}
.y92{bottom:499.530667pt;}
.y130{bottom:501.084283pt;}
.y195{bottom:502.808000pt;}
.y10d{bottom:504.335310pt;}
.y20b{bottom:504.958667pt;}
.y153{bottom:505.173168pt;}
.y1a6{bottom:505.501967pt;}
.y4c{bottom:505.717333pt;}
.y23d{bottom:510.022667pt;}
.y1b{bottom:512.604000pt;}
.y8f{bottom:512.721333pt;}
.y1c8{bottom:515.760000pt;}
.y90{bottom:517.542667pt;}
.y10c{bottom:518.375254pt;}
.y12f{bottom:519.084211pt;}
.y20a{bottom:522.174667pt;}
.y152{bottom:523.173096pt;}
.y4b{bottom:523.729333pt;}
.y23c{bottom:527.237333pt;}
.y1a{bottom:530.617333pt;}
.y8e{bottom:530.733333pt;}
.y10b{bottom:532.415198pt;}
.y1c7{bottom:533.772000pt;}
.y194{bottom:533.920000pt;}
.y12e{bottom:537.003979pt;}
.y209{bottom:539.390667pt;}
.y151{bottom:541.173024pt;}
.y4a{bottom:541.742667pt;}
.y23b{bottom:544.453333pt;}
.y10a{bottom:546.455141pt;}
.y19{bottom:548.629333pt;}
.y8d{bottom:548.746667pt;}
.y193{bottom:551.016000pt;}
.y1c6{bottom:551.785333pt;}
.y12d{bottom:555.003907pt;}
.y208{bottom:556.605333pt;}
.y150{bottom:559.172952pt;}
.y49{bottom:559.754667pt;}
.y109{bottom:560.495085pt;}
.y23a{bottom:561.669333pt;}
.y18{bottom:566.642667pt;}
.y8c{bottom:566.758667pt;}
.y192{bottom:568.112000pt;}
.y1c5{bottom:569.797333pt;}
.y12c{bottom:573.003835pt;}
.y207{bottom:573.821333pt;}
.y108{bottom:574.535029pt;}
.y14f{bottom:577.172880pt;}
.y48{bottom:577.766667pt;}
.y239{bottom:578.884000pt;}
.ydc{bottom:582.956939pt;}
.y17{bottom:584.654667pt;}
.y8b{bottom:584.770667pt;}
.y191{bottom:585.208000pt;}
.y1c4{bottom:587.809333pt;}
.y107{bottom:588.512448pt;}
.y12b{bottom:591.003763pt;}
.y206{bottom:591.036000pt;}
.y14e{bottom:595.092648pt;}
.y47{bottom:595.780000pt;}
.y238{bottom:596.100000pt;}
.y190{bottom:602.302667pt;}
.y106{bottom:602.552392pt;}
.y16{bottom:602.666667pt;}
.y8a{bottom:602.784000pt;}
.y1c3{bottom:605.822667pt;}
.y205{bottom:608.252000pt;}
.y12a{bottom:609.003691pt;}
.y14d{bottom:613.092576pt;}
.y237{bottom:613.314667pt;}
.y46{bottom:613.792000pt;}
.y18f{bottom:619.398667pt;}
.y15{bottom:620.680000pt;}
.y89{bottom:620.796000pt;}
.y1c2{bottom:623.834667pt;}
.y204{bottom:625.468000pt;}
.y129{bottom:627.003619pt;}
.y104{bottom:628.448392pt;}
.y236{bottom:630.530667pt;}
.y14c{bottom:631.092504pt;}
.y45{bottom:631.805333pt;}
.y18e{bottom:636.494667pt;}
.y14{bottom:638.692000pt;}
.y88{bottom:638.809333pt;}
.y1c1{bottom:641.846667pt;}
.y203{bottom:642.682667pt;}
.y128{bottom:645.003547pt;}
.y235{bottom:647.746667pt;}
.y44{bottom:649.817333pt;}
.y18d{bottom:653.590667pt;}
.y13{bottom:656.705333pt;}
.y87{bottom:656.821333pt;}
.y14b{bottom:657.092400pt;}
.y1c0{bottom:659.860000pt;}
.y202{bottom:659.898667pt;}
.y127{bottom:662.923315pt;}
.y234{bottom:664.961333pt;}
.y43{bottom:667.829333pt;}
.y18c{bottom:670.686667pt;}
.y12{bottom:674.717333pt;}
.y86{bottom:674.833333pt;}
.y201{bottom:677.113333pt;}
.y1bf{bottom:677.872000pt;}
.y126{bottom:680.923243pt;}
.y233{bottom:682.177333pt;}
.y42{bottom:685.842667pt;}
.y14a{bottom:690.612000pt;}
.y16f{bottom:690.624000pt;}
.y11{bottom:692.729333pt;}
.y85{bottom:692.846667pt;}
.y200{bottom:694.329333pt;}
.y1be{bottom:695.885333pt;}
.y125{bottom:698.923171pt;}
.y232{bottom:699.392000pt;}
.y41{bottom:703.854667pt;}
.y149{bottom:707.972400pt;}
.y10{bottom:710.742667pt;}
.y84{bottom:710.858667pt;}
.y1ff{bottom:711.545333pt;}
.y1bd{bottom:713.897333pt;}
.y231{bottom:716.608000pt;}
.y40{bottom:721.868000pt;}
.y124{bottom:724.923067pt;}
.y1fe{bottom:728.760000pt;}
.y83{bottom:728.872000pt;}
.y11e{bottom:731.909333pt;}
.y230{bottom:733.824000pt;}
.y3f{bottom:739.880000pt;}
.y147{bottom:740.932400pt;}
.yd{bottom:741.858715pt;}
.yc{bottom:742.541333pt;}
.y1fd{bottom:745.976000pt;}
.y82{bottom:746.884000pt;}
.y1a5{bottom:749.234597pt;}
.y102{bottom:749.922667pt;}
.y22f{bottom:751.038667pt;}
.y3e{bottom:757.892000pt;}
.y123{bottom:758.442667pt;}
.y1fc{bottom:763.190667pt;}
.y1a4{bottom:766.334529pt;}
.y101{bottom:767.934667pt;}
.y22e{bottom:768.254667pt;}
.y81{bottom:772.866667pt;}
.y122{bottom:775.803067pt;}
.y3d{bottom:775.905333pt;}
.yb{bottom:777.212000pt;}
.y1fb{bottom:780.406667pt;}
.y1a3{bottom:783.434461pt;}
.y22d{bottom:785.469333pt;}
.y100{bottom:785.948000pt;}
.ya{bottom:793.352000pt;}
.y3c{bottom:793.917333pt;}
.y1fa{bottom:797.622667pt;}
.y1a2{bottom:800.534392pt;}
.y80{bottom:800.976000pt;}
.y22c{bottom:802.685333pt;}
.yff{bottom:803.960000pt;}
.y120{bottom:808.763067pt;}
.yda{bottom:809.034667pt;}
.y9{bottom:809.492000pt;}
.y3b{bottom:811.930667pt;}
.y1a1{bottom:817.634324pt;}
.y7f{bottom:818.072000pt;}
.y22b{bottom:819.901333pt;}
.yfe{bottom:821.972000pt;}
.y1f9{bottom:822.808000pt;}
.yd9{bottom:827.046667pt;}
.y3a{bottom:829.942667pt;}
.y8{bottom:833.222667pt;}
.y1a0{bottom:834.734255pt;}
.y7e{bottom:835.168000pt;}
.y22a{bottom:837.116000pt;}
.yfd{bottom:839.985333pt;}
.yd8{bottom:845.060000pt;}
.y39{bottom:847.954667pt;}
.y19f{bottom:851.758035pt;}
.y7d{bottom:852.264000pt;}
.y229{bottom:854.332000pt;}
.y1f8{bottom:857.876000pt;}
.yfc{bottom:857.997333pt;}
.yd7{bottom:863.072000pt;}
.y38{bottom:865.968000pt;}
.y19e{bottom:868.857967pt;}
.y7{bottom:871.160000pt;}
.y228{bottom:871.546667pt;}
.y5f{bottom:872.201333pt;}
.yfb{bottom:876.010667pt;}
.y1f7{bottom:879.356000pt;}
.yd6{bottom:881.084000pt;}
.y37{bottom:883.980000pt;}
.y227{bottom:888.762667pt;}
.y1f6{bottom:892.865333pt;}
.yfa{bottom:894.022667pt;}
.y6{bottom:898.178667pt;}
.yd5{bottom:899.097333pt;}
.y19c{bottom:900.397967pt;}
.y36{bottom:901.993333pt;}
.y226{bottom:905.978667pt;}
.y1f5{bottom:906.374667pt;}
.yf9{bottom:912.034667pt;}
.yd4{bottom:917.109333pt;}
.y1f4{bottom:919.884000pt;}
.y35{bottom:920.005333pt;}
.y225{bottom:923.193333pt;}
.y5{bottom:925.198667pt;}
.yf8{bottom:930.048000pt;}
.y1f2{bottom:933.393333pt;}
.yd3{bottom:935.122667pt;}
.y1f3{bottom:937.733333pt;}
.y34{bottom:938.017333pt;}
.y224{bottom:940.409333pt;}
.yf7{bottom:948.060000pt;}
.y4{bottom:952.217333pt;}
.y33{bottom:956.030667pt;}
.y1f1{bottom:957.066667pt;}
.y223{bottom:957.624000pt;}
.yd2{bottom:961.105333pt;}
.yf6{bottom:966.073333pt;}
.y32{bottom:974.042667pt;}
.y222{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y1f0{bottom:978.546667pt;}
.y31{bottom:992.056000pt;}
.ya6{bottom:996.877333pt;}
.y1{bottom:1011.514667pt;}
.y30{bottom:1038.548000pt;}
.h8{height:22.673858pt;}
.h17{height:23.265625pt;}
.h2f{height:24.233016pt;}
.h1b{height:24.390647pt;}
.h19{height:24.760382pt;}
.h30{height:24.953906pt;}
.h3b{height:26.221488pt;}
.h34{height:27.220781pt;}
.h33{height:27.330469pt;}
.h27{height:27.339813pt;}
.h28{height:28.153125pt;}
.h1a{height:28.469216pt;}
.h36{height:28.883763pt;}
.ha{height:29.433775pt;}
.h1e{height:29.514570pt;}
.h31{height:30.305803pt;}
.h1f{height:30.392578pt;}
.h9{height:30.399505pt;}
.h25{height:30.700954pt;}
.h2b{height:30.710625pt;}
.h2a{height:30.834375pt;}
.hf{height:31.067969pt;}
.hc{height:31.157778pt;}
.h10{height:31.992188pt;}
.h1c{height:32.092855pt;}
.h22{height:33.153516pt;}
.h21{height:33.287109pt;}
.h3c{height:33.713664pt;}
.h2c{height:33.846725pt;}
.h2d{height:34.191163pt;}
.h18{height:34.574438pt;}
.h7{height:34.813542pt;}
.h14{height:34.898438pt;}
.h13{height:35.039062pt;}
.h37{height:35.052646pt;}
.h32{height:36.294375pt;}
.h23{height:36.539078pt;}
.h24{height:36.910914pt;}
.h6{height:38.415786pt;}
.h15{height:38.462187pt;}
.hb{height:38.681455pt;}
.h16{height:38.853594pt;}
.h4{height:38.947124pt;}
.h29{height:40.947500pt;}
.h12{height:42.656250pt;}
.h20{height:44.204687pt;}
.h2{height:45.355680pt;}
.h11{height:46.531250pt;}
.hd{height:48.683332pt;}
.h5{height:69.148877pt;}
.h3{height:91.114522pt;}
.he{height:133.138667pt;}
.h3a{height:182.666253pt;}
.h39{height:208.361600pt;}
.h1d{height:420.185000pt;}
.h35{height:436.133333pt;}
.h38{height:452.950667pt;}
.h2e{height:484.016000pt;}
.h26{height:550.537387pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:147.825920pt;}
.wb{width:259.885800pt;}
.w7{width:348.998000pt;}
.wa{width:384.437133pt;}
.w6{width:397.117013pt;}
.w8{width:439.496000pt;}
.w9{width:447.905333pt;}
.w4{width:483.970667pt;}
.w5{width:535.216447pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xb3{left:-151.194400pt;}
.xb5{left:-124.290400pt;}
.xa7{left:-88.419667pt;}
.x90{left:-77.306667pt;}
.x9e{left:-73.382667pt;}
.x85{left:-60.629653pt;}
.x8b{left:-55.804320pt;}
.x54{left:-52.080000pt;}
.x91{left:-48.986314pt;}
.x9f{left:-45.062314pt;}
.x87{left:-35.708053pt;}
.x8c{left:-33.714720pt;}
.x55{left:-23.760000pt;}
.x79{left:-11.132353pt;}
.x0{left:0.000000pt;}
.x7a{left:15.771647pt;}
.x6{left:26.021437pt;}
.x2{left:51.246627pt;}
.x56{left:96.560000pt;}
.x1{left:102.046667pt;}
.x4{left:108.542667pt;}
.x3{left:109.606667pt;}
.x78{left:129.243620pt;}
.x9{left:130.393333pt;}
.x5c{left:133.900000pt;}
.x5d{left:139.208000pt;}
.xdc{left:142.438667pt;}
.x3a{left:147.226667pt;}
.x63{left:151.345333pt;}
.x53{left:154.865333pt;}
.x43{left:156.648000pt;}
.xd1{left:157.973333pt;}
.xdd{left:159.110667pt;}
.x3b{left:160.510667pt;}
.x65{left:162.054667pt;}
.x64{left:164.629333pt;}
.x7{left:167.993333pt;}
.x44{left:169.930667pt;}
.xd2{left:171.256000pt;}
.x9d{left:172.898667pt;}
.xde{left:175.781333pt;}
.x8f{left:177.102667pt;}
.xac{left:179.837333pt;}
.x8{left:181.213333pt;}
.x38{left:182.144000pt;}
.xd4{left:184.017333pt;}
.x14{left:188.193333pt;}
.x7b{left:189.845333pt;}
.xad{left:190.820000pt;}
.x39{left:195.426667pt;}
.x84{left:198.290667pt;}
.x75{left:200.678667pt;}
.x60{left:202.401333pt;}
.xa6{left:204.633333pt;}
.x70{left:207.258667pt;}
.x5e{left:209.178667pt;}
.xa0{left:210.789333pt;}
.x15{left:214.476000pt;}
.xc7{left:215.541333pt;}
.x5f{left:216.484000pt;}
.xa1{left:218.094667pt;}
.x16{left:221.117333pt;}
.x8a{left:222.352000pt;}
.x17{left:224.372000pt;}
.xc9{left:225.286667pt;}
.xdf{left:227.725333pt;}
.x93{left:229.653333pt;}
.xe0{left:231.113333pt;}
.xc8{left:232.182667pt;}
.x7c{left:235.168000pt;}
.xdb{left:236.489333pt;}
.x18{left:237.656000pt;}
.x24{left:241.700000pt;}
.xe1{left:244.396000pt;}
.x61{left:245.376000pt;}
.xca{left:248.600000pt;}
.xa{left:250.942667pt;}
.xcb{left:251.986667pt;}
.x62{left:253.580000pt;}
.x25{left:254.984000pt;}
.xb{left:257.585333pt;}
.xaa{left:261.128000pt;}
.xb6{left:263.765600pt;}
.xcc{left:265.270667pt;}
.xb2{left:266.908000pt;}
.xcd{left:268.657333pt;}
.x26{left:271.654667pt;}
.x94{left:274.036000pt;}
.x1b{left:278.914667pt;}
.x95{left:281.340000pt;}
.x6a{left:283.257333pt;}
.x71{left:287.425333pt;}
.xa2{left:288.690667pt;}
.x1c{left:292.198667pt;}
.x72{left:294.068000pt;}
.x1d{left:295.452000pt;}
.x6b{left:296.540000pt;}
.x6c{left:299.897333pt;}
.x45{left:306.002667pt;}
.x19{left:308.986667pt;}
.x6d{left:313.181333pt;}
.x1e{left:315.245333pt;}
.x46{left:319.286667pt;}
.x1a{left:322.269333pt;}
.x2e{left:324.210667pt;}
.xa9{left:326.540333pt;}
.x1f{left:328.528000pt;}
.xb4{left:330.265600pt;}
.x4c{left:331.920000pt;}
.x47{left:335.832000pt;}
.x2f{left:337.494667pt;}
.xa3{left:341.892000pt;}
.x30{left:344.169333pt;}
.xa4{left:349.197333pt;}
.x20{left:350.645333pt;}
.xa5{left:354.013333pt;}
.x7e{left:356.333333pt;}
.x31{left:357.452000pt;}
.x82{left:360.658667pt;}
.x7f{left:361.641333pt;}
.x21{left:363.928000pt;}
.x22{left:367.316000pt;}
.x83{left:368.864000pt;}
.x8d{left:371.469333pt;}
.x8e{left:377.268000pt;}
.xd9{left:378.837333pt;}
.x23{left:380.598667pt;}
.xd8{left:385.462667pt;}
.xc{left:388.156000pt;}
.xda{left:392.120000pt;}
.xa8{left:393.040333pt;}
.xd{left:394.798667pt;}
.x86{left:398.519147pt;}
.xb0{left:399.646667pt;}
.xb1{left:412.929333pt;}
.xce{left:414.314667pt;}
.x96{left:418.606667pt;}
.x73{left:420.253333pt;}
.xd3{left:424.840000pt;}
.x97{left:425.910667pt;}
.x74{left:433.537333pt;}
.x92{left:438.533333pt;}
.x4f{left:442.049333pt;}
.x99{left:443.561333pt;}
.x50{left:448.690667pt;}
.xab{left:452.094667pt;}
.x9a{left:454.548000pt;}
.x4a{left:460.260000pt;}
.x27{left:468.184000pt;}
.x4b{left:473.544000pt;}
.x67{left:474.846667pt;}
.x68{left:478.101333pt;}
.x28{left:481.468000pt;}
.x29{left:484.825333pt;}
.x4d{left:488.873333pt;}
.x69{left:491.384000pt;}
.x3d{left:492.386667pt;}
.x4e{left:495.516000pt;}
.x2a{left:498.108000pt;}
.x3e{left:499.029333pt;}
.xcf{left:500.314667pt;}
.x2b{left:501.465333pt;}
.x3f{left:502.382667pt;}
.xd5{left:505.553333pt;}
.x57{left:508.720000pt;}
.x3c{left:511.917333pt;}
.xd0{left:513.597333pt;}
.x2c{left:514.749333pt;}
.x40{left:515.666667pt;}
.x34{left:517.609333pt;}
.x41{left:519.020000pt;}
.x51{left:522.749333pt;}
.x32{left:525.521333pt;}
.x52{left:529.392000pt;}
.x35{left:530.893333pt;}
.x42{left:532.304000pt;}
.x36{left:534.280000pt;}
.xc1{left:535.486667pt;}
.xb9{left:537.777333pt;}
.x33{left:538.805333pt;}
.xba{left:544.418667pt;}
.x37{left:547.564000pt;}
.xc2{left:548.769333pt;}
.x9b{left:550.862667pt;}
.xe9{left:553.065333pt;}
.x9c{left:558.861333pt;}
.x66{left:560.065333pt;}
.xbb{left:560.956000pt;}
.x80{left:562.894667pt;}
.xbc{left:564.210667pt;}
.xc3{left:568.181333pt;}
.x81{left:569.589333pt;}
.x98{left:571.110667pt;}
.x7d{left:573.348000pt;}
.x58{left:575.081333pt;}
.xbd{left:577.494667pt;}
.x10{left:579.385333pt;}
.x59{left:581.058667pt;}
.xe4{left:582.929333pt;}
.xc4{left:584.852000pt;}
.x11{left:586.028000pt;}
.xc5{left:588.240000pt;}
.x12{left:592.536000pt;}
.xbe{left:594.032000pt;}
.xae{left:596.570667pt;}
.x13{left:599.178667pt;}
.xc6{left:601.524000pt;}
.xe5{left:603.121333pt;}
.xaf{left:607.553333pt;}
.xd6{left:609.102667pt;}
.xe2{left:610.550667pt;}
.xea{left:616.006667pt;}
.x5a{left:620.753333pt;}
.xd7{left:622.386667pt;}
.x5{left:623.413317pt;}
.xeb{left:625.478667pt;}
.xe6{left:627.032000pt;}
.x5b{left:628.058667pt;}
.xb7{left:629.522667pt;}
.xe8{left:633.258667pt;}
.xb8{left:640.517333pt;}
.x76{left:642.618667pt;}
.xbf{left:647.830667pt;}
.x77{left:654.840000pt;}
.xc0{left:661.114667pt;}
.x48{left:662.545333pt;}
.xe3{left:666.202667pt;}
.x49{left:669.186667pt;}
.x2d{left:672.256000pt;}
.x88{left:673.956000pt;}
.x6e{left:676.480000pt;}
.xe{left:679.437333pt;}
.x6f{left:682.424000pt;}
.xf{left:686.078667pt;}
.x89{left:687.238667pt;}
.xe7{left:690.177333pt;}
}




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