
    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_bcac210d4aafba286e1df97a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7a7d4ba2c32e57ceb198978a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.957000;font-style:normal;font-weight: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_6617ef2042c9fe0f0fed85c4.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e39cb0164313917842966d80.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3f4a4134d91c571e820346c5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_187d9c81c67317f596ab79ad.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.041000;font-style:normal;font-weight: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_fd543f260d8cb7d496e038a3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.706000;font-style:normal;font-weight: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_37bc3f840a20f3ede91dd3b1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f3b9ff05aacbca10d5901407.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.882324;font-style:normal;font-weight: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_339260fc6e4a203a2ac47c75.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_04e18604f43b72912ca0f55c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.017000;font-style:normal;font-weight: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_9cb37804f4bde5f45c5716a7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.902000;font-style:normal;font-weight: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_25375a586f6c96a66aa63405.woff2')format("woff");}.fff{font-family:fff;line-height:1.112000;font-style:normal;font-weight: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_5032c9c6606627abfb293a52.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.001000;font-style:normal;font-weight: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_2974a4f7ef892a5dece93f75.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.924000;font-style:normal;font-weight: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_8edb81af11cd5afa7813c84b.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_339260fc6e4a203a2ac47c75.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_0c1dee7731a7861f93ccffd6.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.938965;font-style:normal;font-weight: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_ef7f95c2121dc8e5dbc1a588.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.017000;font-style:normal;font-weight: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_f2200ff25ae16c8075f08747.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.923000;font-style:normal;font-weight: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_b60c1850e66f41bec4393c18.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.773000;font-style:normal;font-weight: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_ab6c1d30e74b56a7e2f70555.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.001000;font-style:normal;font-weight: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_ce65bbfe19479a079484fa7c.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.002000;font-style:normal;font-weight: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_02d1372fe4511ff580e7ba6a.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.693000;font-style:normal;font-weight: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_20ee593cf94eee0b1f8df08c.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.938965;font-style:normal;font-weight: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_685a12f39eef697b46f2138e.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.693000;font-style:normal;font-weight: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_3f32be7b74c794322773448a.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_0822078f1564a523b809e9e9.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.686000;font-style:normal;font-weight: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_13fbab8826900ec89059a9d4.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.431000;font-style:normal;font-weight: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_f8399e17f023aa4508c4a256.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.723000;font-style:normal;font-weight: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_1fd8aec3026cd23c7d012c5f.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.688000;font-style:normal;font-weight: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_2aaf8fe720ca5e9363a7eed7.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.938965;font-style:normal;font-weight: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_42c8f6d646551cc796bccfcd.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.001000;font-style:normal;font-weight: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_2aaf8fe720ca5e9363a7eed7.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.938965;font-style:normal;font-weight: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_47087c25733e14e5f06765a4.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.938965;font-style:normal;font-weight: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_0f934f5ebb96dc3bafdd718d.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.895000;font-style:normal;font-weight: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_47087c25733e14e5f06765a4.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.938965;font-style:normal;font-weight: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_f659dab2d3e66bb21fba910e.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.400000;font-style:normal;font-weight: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_131b8139d4c469ffdeed4854.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.443000;font-style:normal;font-weight: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_a0397da2c1d0f5eb4a4486a5.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.930000;font-style:normal;font-weight: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_ee41dd15d05c994e6c7a6e75.woff2')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_ac0f3725aa252ab344bd7e06.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.938965;font-style:normal;font-weight: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_ac0f3725aa252ab344bd7e06.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.938965;font-style:normal;font-weight: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_9324c6736da2023fda598a05.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.938965;font-style:normal;font-weight: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_9324c6736da2023fda598a05.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.938965;font-style:normal;font-weight: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_ac0f3725aa252ab344bd7e06.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.938965;font-style:normal;font-weight: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_9324c6736da2023fda598a05.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.938965;font-style:normal;font-weight: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_9324c6736da2023fda598a05.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_9324c6736da2023fda598a05.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_8a9f137cb466b00811a91bab.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_9324c6736da2023fda598a05.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_8a9f137cb466b00811a91bab.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_9324c6736da2023fda598a05.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_ed05e092723a0fd02c834f67.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_ed05e092723a0fd02c834f67.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_a51553e68c71e3654423fe50.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_5e78dd25b60ab3ac10d92894.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_148278113a529eadb7acd558.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_5e78dd25b60ab3ac10d92894.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_5e78dd25b60ab3ac10d92894.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_5e78dd25b60ab3ac10d92894.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_5e78dd25b60ab3ac10d92894.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_617ab50366bc3687c0d7b1f5.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_617ab50366bc3687c0d7b1f5.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url('chunks/assets/font_e18390ecb4f2abe81daf24b8.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_617ab50366bc3687c0d7b1f5.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_e18390ecb4f2abe81daf24b8.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46;src:url('chunks/assets/font_617ab50366bc3687c0d7b1f5.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m5{transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.690000px;}
.v4{vertical-align:-10.764000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:17.730000px;}
.v6{vertical-align:20.822400px;}
.v1{vertical-align:24.120000px;}
.v3{vertical-align:26.028000px;}
.v7{vertical-align:29.616000px;}
.v5{vertical-align:66.324000px;}
.ls23{letter-spacing:-5.454000px;}
.ls5{letter-spacing:-0.079200px;}
.lsa{letter-spacing:-0.048060px;}
.ls4{letter-spacing:-0.038448px;}
.ls1f{letter-spacing:-0.032400px;}
.ls1d{letter-spacing:-0.027000px;}
.ls6{letter-spacing:-0.021600px;}
.ls3{letter-spacing:-0.019224px;}
.ls7{letter-spacing:-0.014400px;}
.ls1e{letter-spacing:-0.010800px;}
.ls0{letter-spacing:0.000000px;}
.ls66{letter-spacing:0.000179px;}
.ls60{letter-spacing:0.000440px;}
.lsa1{letter-spacing:0.000472px;}
.lsbb{letter-spacing:0.000538px;}
.ls69{letter-spacing:0.000764px;}
.ls5e{letter-spacing:0.000993px;}
.ls63{letter-spacing:0.001114px;}
.ls6b{letter-spacing:0.001505px;}
.ls97{letter-spacing:0.003056px;}
.lsc9{letter-spacing:0.003360px;}
.ls96{letter-spacing:0.003427px;}
.ls65{letter-spacing:0.003471px;}
.ls9e{letter-spacing:0.005053px;}
.ls8d{letter-spacing:0.005779px;}
.ls6f{letter-spacing:0.006440px;}
.ls1a{letter-spacing:0.010800px;}
.ls8{letter-spacing:0.021600px;}
.ls12{letter-spacing:0.027000px;}
.ls10{letter-spacing:0.028800px;}
.ls1{letter-spacing:0.036000px;}
.ls14{letter-spacing:0.048600px;}
.lsc{letter-spacing:0.050400px;}
.lsb{letter-spacing:0.057600px;}
.ls20{letter-spacing:0.059400px;}
.lsf{letter-spacing:0.064800px;}
.ls2{letter-spacing:0.066060px;}
.ls11{letter-spacing:0.071820px;}
.lsd{letter-spacing:0.072000px;}
.ls1c{letter-spacing:0.079200px;}
.ls13{letter-spacing:0.081000px;}
.lse{letter-spacing:0.086400px;}
.ls15{letter-spacing:0.108000px;}
.ls18{letter-spacing:0.113400px;}
.ls1b{letter-spacing:0.118800px;}
.ls19{letter-spacing:0.124200px;}
.ls16{letter-spacing:0.129600px;}
.ls9{letter-spacing:0.132120px;}
.ls17{letter-spacing:0.151200px;}
.ls98{letter-spacing:1.946534px;}
.ls9c{letter-spacing:1.952534px;}
.ls5f{letter-spacing:2.984915px;}
.ls22{letter-spacing:2.986211px;}
.ls37{letter-spacing:2.986894px;}
.ls76{letter-spacing:2.987236px;}
.ls38{letter-spacing:2.988479px;}
.ls64{letter-spacing:2.990915px;}
.lsa5{letter-spacing:2.992200px;}
.ls95{letter-spacing:4.148634px;}
.ls94{letter-spacing:5.520587px;}
.ls9a{letter-spacing:5.526587px;}
.ls25{letter-spacing:6.210000px;}
.ls24{letter-spacing:6.222000px;}
.ls26{letter-spacing:6.276000px;}
.ls27{letter-spacing:6.288000px;}
.lsac{letter-spacing:6.523690px;}
.lsa3{letter-spacing:8.013894px;}
.lsa7{letter-spacing:8.508587px;}
.ls9b{letter-spacing:8.514587px;}
.ls62{letter-spacing:9.755464px;}
.ls4d{letter-spacing:12.273848px;}
.ls4e{letter-spacing:12.277473px;}
.lsb5{letter-spacing:12.453773px;}
.ls7b{letter-spacing:13.548960px;}
.lsb2{letter-spacing:14.111236px;}
.ls57{letter-spacing:14.441821px;}
.ls9d{letter-spacing:14.657236px;}
.ls7a{letter-spacing:14.824349px;}
.lsb6{letter-spacing:15.150150px;}
.ls70{letter-spacing:15.181473px;}
.ls6d{letter-spacing:15.806227px;}
.ls6c{letter-spacing:15.809779px;}
.lscb{letter-spacing:15.905760px;}
.lsbe{letter-spacing:15.934560px;}
.ls5d{letter-spacing:15.935518px;}
.ls51{letter-spacing:15.937473px;}
.lsc7{letter-spacing:15.938400px;}
.lsc1{letter-spacing:15.938406px;}
.ls88{letter-spacing:15.939360px;}
.ls50{letter-spacing:15.939848px;}
.lsc0{letter-spacing:15.940272px;}
.ls61{letter-spacing:15.941518px;}
.ls53{letter-spacing:15.941978px;}
.lscc{letter-spacing:16.928915px;}
.ls7f{letter-spacing:17.235031px;}
.ls6e{letter-spacing:17.330287px;}
.lsa8{letter-spacing:17.574144px;}
.lsba{letter-spacing:18.220770px;}
.lsc8{letter-spacing:18.281760px;}
.ls21{letter-spacing:18.510000px;}
.ls55{letter-spacing:18.889137px;}
.ls9f{letter-spacing:18.923236px;}
.lsa0{letter-spacing:18.924960px;}
.ls5c{letter-spacing:18.926915px;}
.ls67{letter-spacing:18.928200px;}
.ls68{letter-spacing:18.929236px;}
.ls56{letter-spacing:18.936958px;}
.ls2c{letter-spacing:19.055779px;}
.ls59{letter-spacing:19.367294px;}
.lsb4{letter-spacing:19.691236px;}
.ls3c{letter-spacing:19.905275px;}
.ls7d{letter-spacing:19.917848px;}
.ls93{letter-spacing:19.919518px;}
.ls73{letter-spacing:19.921473px;}
.ls80{letter-spacing:19.923031px;}
.ls48{letter-spacing:19.923701px;}
.ls72{letter-spacing:19.923848px;}
.ls5b{letter-spacing:19.925518px;}
.ls81{letter-spacing:19.965050px;}
.ls84{letter-spacing:20.126227px;}
.ls85{letter-spacing:20.129779px;}
.ls3f{letter-spacing:20.156467px;}
.ls3e{letter-spacing:20.228198px;}
.lsb3{letter-spacing:20.405236px;}
.lsb8{letter-spacing:20.515123px;}
.ls35{letter-spacing:20.586854px;}
.ls36{letter-spacing:20.658586px;}
.ls52{letter-spacing:20.802048px;}
.lsca{letter-spacing:21.136652px;}
.ls2d{letter-spacing:21.203779px;}
.ls8a{letter-spacing:21.232435px;}
.ls8e{letter-spacing:21.410287px;}
.lsa9{letter-spacing:21.519360px;}
.ls4c{letter-spacing:21.609848px;}
.ls40{letter-spacing:21.734554px;}
.ls41{letter-spacing:21.806285px;}
.ls33{letter-spacing:21.949747px;}
.ls4f{letter-spacing:21.974287px;}
.ls83{letter-spacing:22.019779px;}
.ls34{letter-spacing:22.021478px;}
.lsb7{letter-spacing:22.093210px;}
.ls58{letter-spacing:22.164941px;}
.lsbf{letter-spacing:22.318177px;}
.lsae{letter-spacing:22.408200px;}
.lsb9{letter-spacing:22.508502px;}
.ls5a{letter-spacing:22.894055px;}
.lsad{letter-spacing:23.125690px;}
.ls8c{letter-spacing:23.183779px;}
.ls46{letter-spacing:23.384371px;}
.ls91{letter-spacing:23.403848px;}
.lsc2{letter-spacing:23.404992px;}
.ls90{letter-spacing:23.411779px;}
.ls2b{letter-spacing:23.456102px;}
.lsbc{letter-spacing:23.542177px;}
.ls39{letter-spacing:23.599565px;}
.ls30{letter-spacing:23.671296px;}
.ls31{letter-spacing:23.743027px;}
.ls74{letter-spacing:23.814758px;}
.ls54{letter-spacing:24.675533px;}
.ls89{letter-spacing:25.138177px;}
.lsaf{letter-spacing:25.321690px;}
.ls29{letter-spacing:25.392845px;}
.ls3b{letter-spacing:25.464406px;}
.ls45{letter-spacing:25.894963px;}
.ls44{letter-spacing:25.966694px;}
.lsb1{letter-spacing:26.437690px;}
.ls8f{letter-spacing:26.519779px;}
.ls7e{letter-spacing:26.684006px;}
.ls3a{letter-spacing:27.329587px;}
.ls78{letter-spacing:27.759974px;}
.ls2a{letter-spacing:27.903437px;}
.ls2e{letter-spacing:27.975168px;}
.ls2f{letter-spacing:28.046899px;}
.ls43{letter-spacing:28.118630px;}
.lsa4{letter-spacing:28.169236px;}
.lsa6{letter-spacing:28.614960px;}
.ls28{letter-spacing:28.907674px;}
.lsaa{letter-spacing:29.051136px;}
.lsb0{letter-spacing:29.131690px;}
.ls7c{letter-spacing:29.247848px;}
.ls71{letter-spacing:29.675464px;}
.lsab{letter-spacing:29.696717px;}
.ls99{letter-spacing:30.599236px;}
.ls92{letter-spacing:31.131341px;}
.ls77{letter-spacing:31.346534px;}
.ls8b{letter-spacing:32.669779px;}
.ls75{letter-spacing:32.854200px;}
.ls3d{letter-spacing:33.930479px;}
.ls82{letter-spacing:34.000589px;}
.ls32{letter-spacing:35.148479px;}
.ls42{letter-spacing:35.226479px;}
.ls79{letter-spacing:35.705464px;}
.ls4a{letter-spacing:36.216479px;}
.lsa2{letter-spacing:36.989236px;}
.ls49{letter-spacing:58.416479px;}
.ls4b{letter-spacing:59.634479px;}
.ls47{letter-spacing:61.134479px;}
.lsc5{letter-spacing:80.421787px;}
.lsc3{letter-spacing:81.223387px;}
.lsc6{letter-spacing:82.744987px;}
.lsc4{letter-spacing:101.944987px;}
.ls87{letter-spacing:102.419932px;}
.ls86{letter-spacing:104.594332px;}
.lsbd{letter-spacing:135.395932px;}
.ls6a{letter-spacing:402.133114px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(67,65,66),0 0.015em rgb(67,65,66),0.015em 0 rgb(67,65,66),0 -0.015em  rgb(67,65,66);}
.sc3{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(67,65,66);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws123{word-spacing:-45.664082px;}
.ws190{word-spacing:-43.834936px;}
.wsfe{word-spacing:-36.531266px;}
.ws9{word-spacing:-35.672400px;}
.ws3d{word-spacing:-35.112422px;}
.ws126{word-spacing:-33.211407px;}
.wsd6{word-spacing:-29.881822px;}
.ws14b{word-spacing:-28.089938px;}
.ws253{word-spacing:-28.089468px;}
.ws13e{word-spacing:-25.397521px;}
.ws1e5{word-spacing:-22.411367px;}
.ws130{word-spacing:-19.906408px;}
.ws20b{word-spacing:-19.546752px;}
.ws1f9{word-spacing:-19.475021px;}
.ws13b{word-spacing:-19.403290px;}
.ws12b{word-spacing:-19.331558px;}
.wsd8{word-spacing:-19.188096px;}
.ws140{word-spacing:-19.116365px;}
.ws2a8{word-spacing:-19.091556px;}
.ws144{word-spacing:-18.972902px;}
.ws170{word-spacing:-18.901171px;}
.wsf{word-spacing:-18.892800px;}
.ws1ea{word-spacing:-18.757709px;}
.ws238{word-spacing:-18.685978px;}
.ws78{word-spacing:-18.614246px;}
.ws64{word-spacing:-18.327322px;}
.ws1ef{word-spacing:-18.183859px;}
.wsc2{word-spacing:-18.112128px;}
.ws4c{word-spacing:-18.040397px;}
.ws8b{word-spacing:-17.968666px;}
.wsc7{word-spacing:-17.825203px;}
.ws129{word-spacing:-17.785361px;}
.ws2a7{word-spacing:-17.706738px;}
.ws1a1{word-spacing:-17.538278px;}
.ws1a0{word-spacing:-17.466547px;}
.ws1f7{word-spacing:-17.323085px;}
.wsbb{word-spacing:-17.251354px;}
.ws9a{word-spacing:-17.179622px;}
.ws141{word-spacing:-17.107891px;}
.ws13c{word-spacing:-16.677504px;}
.ws163{word-spacing:-16.605773px;}
.ws145{word-spacing:-16.534042px;}
.ws1f0{word-spacing:-16.462310px;}
.wsec{word-spacing:-16.390579px;}
.ws1a5{word-spacing:-16.318848px;}
.wsfb{word-spacing:-16.247117px;}
.ws65{word-spacing:-16.103654px;}
.ws5d{word-spacing:-16.031923px;}
.ws74{word-spacing:-15.888461px;}
.ws8a{word-spacing:-15.601536px;}
.ws57{word-spacing:-15.458074px;}
.wsdf{word-spacing:-15.386342px;}
.wsda{word-spacing:-15.314611px;}
.ws1ac{word-spacing:-15.296576px;}
.wsba{word-spacing:-15.242880px;}
.ws1ad{word-spacing:-15.236800px;}
.wsa1{word-spacing:-15.171149px;}
.ws12d{word-spacing:-15.160408px;}
.ws148{word-spacing:-15.117249px;}
.ws176{word-spacing:-15.014640px;}
.ws175{word-spacing:-15.006630px;}
.ws88{word-spacing:-14.955955px;}
.ws1f1{word-spacing:-14.937922px;}
.ws9e{word-spacing:-14.884224px;}
.wsf2{word-spacing:-14.812493px;}
.ws13f{word-spacing:-14.740762px;}
.ws8e{word-spacing:-14.669030px;}
.ws63{word-spacing:-14.597299px;}
.wse3{word-spacing:-14.579269px;}
.ws67{word-spacing:-14.525568px;}
.ws69{word-spacing:-14.453837px;}
.ws12a{word-spacing:-14.408682px;}
.ws49{word-spacing:-14.382106px;}
.ws4b{word-spacing:-14.310374px;}
.ws18f{word-spacing:-14.288316px;}
.ws192{word-spacing:-14.283011px;}
.ws128{word-spacing:-14.277971px;}
.ws125{word-spacing:-14.276682px;}
.wsf9{word-spacing:-14.238643px;}
.ws12{word-spacing:-14.196600px;}
.ws11{word-spacing:-14.169600px;}
.ws138{word-spacing:-14.166912px;}
.ws1a7{word-spacing:-14.095181px;}
.ws70{word-spacing:-13.951718px;}
.ws66{word-spacing:-13.879987px;}
.ws16f{word-spacing:-13.808256px;}
.ws43{word-spacing:-13.736525px;}
.wsfa{word-spacing:-13.664794px;}
.ws68{word-spacing:-13.593062px;}
.wsf6{word-spacing:-13.521331px;}
.wsf5{word-spacing:-13.449600px;}
.wsa0{word-spacing:-13.377869px;}
.ws9f{word-spacing:-13.306138px;}
.ws6c{word-spacing:-13.234406px;}
.wsed{word-spacing:-13.162675px;}
.ws79{word-spacing:-13.090944px;}
.ws117{word-spacing:-13.019213px;}
.wsbf{word-spacing:-12.947482px;}
.ws62{word-spacing:-12.875750px;}
.ws7a{word-spacing:-12.804019px;}
.ws196{word-spacing:-12.784230px;}
.ws198{word-spacing:-12.776867px;}
.ws199{word-spacing:-12.761472px;}
.ws197{word-spacing:-12.759483px;}
.ws1e7{word-spacing:-12.732288px;}
.ws164{word-spacing:-12.666450px;}
.wsca{word-spacing:-12.660557px;}
.ws10{word-spacing:-12.616380px;}
.ws81{word-spacing:-12.588826px;}
.ws99{word-spacing:-12.517094px;}
.ws1ab{word-spacing:-12.445363px;}
.ws71{word-spacing:-12.373632px;}
.wse2{word-spacing:-12.307796px;}
.ws1ff{word-spacing:-12.301901px;}
.ws195{word-spacing:-12.230170px;}
.ws193{word-spacing:-12.218365px;}
.ws205{word-spacing:-12.158438px;}
.wsb9{word-spacing:-12.086707px;}
.ws12e{word-spacing:-12.058858px;}
.ws18b{word-spacing:-12.014976px;}
.ws131{word-spacing:-12.009842px;}
.ws7e{word-spacing:-11.943245px;}
.ws56{word-spacing:-11.871514px;}
.ws9b{word-spacing:-11.799782px;}
.ws2e{word-spacing:-11.770228px;}
.ws24e{word-spacing:-11.728070px;}
.ws55{word-spacing:-11.728051px;}
.ws1b2{word-spacing:-11.722017px;}
.ws1b1{word-spacing:-11.710040px;}
.wsf8{word-spacing:-11.708913px;}
.ws28e{word-spacing:-11.663415px;}
.ws172{word-spacing:-11.656320px;}
.ws24d{word-spacing:-11.656053px;}
.ws28d{word-spacing:-11.615595px;}
.ws86{word-spacing:-11.584589px;}
.ws85{word-spacing:-11.512858px;}
.ws11b{word-spacing:-11.470938px;}
.ws76{word-spacing:-11.441126px;}
.ws243{word-spacing:-11.386085px;}
.ws77{word-spacing:-11.369395px;}
.ws1{word-spacing:-11.330280px;}
.ws133{word-spacing:-11.318726px;}
.ws132{word-spacing:-11.297664px;}
.ws1b9{word-spacing:-11.231835px;}
.ws19c{word-spacing:-11.225933px;}
.ws9d{word-spacing:-11.154202px;}
.ws1b8{word-spacing:-11.112284px;}
.wsb7{word-spacing:-11.082470px;}
.ws1b7{word-spacing:-11.052508px;}
.ws27c{word-spacing:-11.024115px;}
.ws59{word-spacing:-11.010739px;}
.ws96{word-spacing:-10.992733px;}
.ws6a{word-spacing:-10.939008px;}
.ws111{word-spacing:-10.907879px;}
.ws188{word-spacing:-10.899698px;}
.wse4{word-spacing:-10.873182px;}
.ws1c3{word-spacing:-10.854639px;}
.ws2a2{word-spacing:-10.854635px;}
.ws168{word-spacing:-10.850827px;}
.ws167{word-spacing:-10.849733px;}
.ws169{word-spacing:-10.848639px;}
.ws1c4{word-spacing:-10.848635px;}
.ws1bb{word-spacing:-10.844827px;}
.ws1e8{word-spacing:-10.795546px;}
.ws44{word-spacing:-10.723814px;}
.ws1b0{word-spacing:-10.693855px;}
.wsd0{word-spacing:-10.652083px;}
.ws82{word-spacing:-10.580352px;}
.ws11c{word-spacing:-10.574304px;}
.ws95{word-spacing:-10.514528px;}
.wse1{word-spacing:-10.508621px;}
.ws114{word-spacing:-10.477493px;}
.ws94{word-spacing:-10.436890px;}
.ws158{word-spacing:-10.372262px;}
.ws1a6{word-spacing:-10.365158px;}
.ws1c0{word-spacing:-10.311603px;}
.ws12f{word-spacing:-10.298682px;}
.ws5b{word-spacing:-10.293427px;}
.ws124{word-spacing:-10.292682px;}
.ws18e{word-spacing:-10.291722px;}
.ws1c2{word-spacing:-10.286211px;}
.wsb0{word-spacing:-10.275426px;}
.ws6b{word-spacing:-10.221696px;}
.ws9c{word-spacing:-10.149965px;}
.ws24b{word-spacing:-10.142749px;}
.ws80{word-spacing:-10.078234px;}
.ws20d{word-spacing:-10.006502px;}
.ws28f{word-spacing:-9.989698px;}
.ws31{word-spacing:-9.977426px;}
.ws7c{word-spacing:-9.976548px;}
.ws21e{word-spacing:-9.968844px;}
.ws19a{word-spacing:-9.934771px;}
.ws19d{word-spacing:-9.927698px;}
.ws7d{word-spacing:-9.916772px;}
.ws224{word-spacing:-9.907872px;}
.ws19e{word-spacing:-9.907450px;}
.ws58{word-spacing:-9.863040px;}
.ws22e{word-spacing:-9.801106px;}
.wsb8{word-spacing:-9.791309px;}
.ws3f{word-spacing:-9.719578px;}
.ws24c{word-spacing:-9.712364px;}
.wsc5{word-spacing:-9.647846px;}
.ws1f5{word-spacing:-9.617894px;}
.wsbe{word-spacing:-9.576115px;}
.ws15c{word-spacing:-9.504384px;}
.ws5a{word-spacing:-9.432653px;}
.ws60{word-spacing:-9.405698px;}
.wsfd{word-spacing:-9.382441px;}
.wsa9{word-spacing:-9.378792px;}
.wsf3{word-spacing:-9.360922px;}
.wsff{word-spacing:-9.325056px;}
.wsc8{word-spacing:-9.289190px;}
.wsea{word-spacing:-9.259240px;}
.wsb2{word-spacing:-9.217459px;}
.ws1f2{word-spacing:-9.199465px;}
.ws50{word-spacing:-9.145728px;}
.wsaa{word-spacing:-9.139689px;}
.ws1bf{word-spacing:-9.138517px;}
.ws1ec{word-spacing:-9.079914px;}
.ws121{word-spacing:-9.073997px;}
.ws17d{word-spacing:-9.033289px;}
.wsd7{word-spacing:-9.002266px;}
.ws166{word-spacing:-8.960362px;}
.wscc{word-spacing:-8.930534px;}
.ws242{word-spacing:-8.899414px;}
.ws122{word-spacing:-8.858803px;}
.ws2a5{word-spacing:-8.851593px;}
.ws27e{word-spacing:-8.827362px;}
.ws1bd{word-spacing:-8.803772px;}
.ws1cd{word-spacing:-8.796038px;}
.wsef{word-spacing:-8.787072px;}
.ws27f{word-spacing:-8.782530px;}
.ws1be{word-spacing:-8.755952px;}
.ws1d3{word-spacing:-8.742240px;}
.ws1a9{word-spacing:-8.715341px;}
.ws22c{word-spacing:-8.683303px;}
.ws6f{word-spacing:-8.643610px;}
.ws1ae{word-spacing:-8.601709px;}
.ws5c{word-spacing:-8.571878px;}
.ws1af{word-spacing:-8.541933px;}
.wsd1{word-spacing:-8.500147px;}
.ws236{word-spacing:-8.480065px;}
.ws16e{word-spacing:-8.469028px;}
.ws51{word-spacing:-8.428416px;}
.wsab{word-spacing:-8.422382px;}
.ws1c9{word-spacing:-8.421208px;}
.ws41{word-spacing:-8.356685px;}
.wsf0{word-spacing:-8.284954px;}
.ws1df{word-spacing:-8.244550px;}
.ws16d{word-spacing:-8.229925px;}
.ws1de{word-spacing:-8.154886px;}
.ws47{word-spacing:-8.141491px;}
.ws2d{word-spacing:-8.124010px;}
.ws108{word-spacing:-8.076879px;}
.wsdb{word-spacing:-8.069760px;}
.ws29d{word-spacing:-8.016341px;}
.ws29e{word-spacing:-8.012999px;}
.ws8c{word-spacing:-7.998029px;}
.ws241{word-spacing:-7.991004px;}
.ws10f{word-spacing:-7.990822px;}
.ws249{word-spacing:-7.986204px;}
.ws272{word-spacing:-7.981941px;}
.ws270{word-spacing:-7.981463px;}
.ws109{word-spacing:-7.981238px;}
.ws15b{word-spacing:-7.972374px;}
.ws22f{word-spacing:-7.971973px;}
.ws98{word-spacing:-7.926298px;}
.wseb{word-spacing:-7.884402px;}
.ws229{word-spacing:-7.870354px;}
.ws45{word-spacing:-7.854566px;}
.ws89{word-spacing:-7.782835px;}
.wsc3{word-spacing:-7.711104px;}
.ws1a3{word-spacing:-7.645299px;}
.ws162{word-spacing:-7.639373px;}
.ws4a{word-spacing:-7.567642px;}
.ws105{word-spacing:-7.550854px;}
.wsaf{word-spacing:-7.525748px;}
.ws54{word-spacing:-7.495910px;}
.ws1b4{word-spacing:-7.470381px;}
.ws1b6{word-spacing:-7.465972px;}
.ws87{word-spacing:-7.424179px;}
.ws107{word-spacing:-7.359572px;}
.ws73{word-spacing:-7.352448px;}
.ws194{word-spacing:-7.327722px;}
.ws17f{word-spacing:-7.321334px;}
.ws1ba{word-spacing:-7.286646px;}
.ws48{word-spacing:-7.280717px;}
.ws1e0{word-spacing:-7.258252px;}
.ws1e3{word-spacing:-7.257810px;}
.ws1e4{word-spacing:-7.254677px;}
.ws280{word-spacing:-7.253310px;}
.ws1f3{word-spacing:-7.226870px;}
.ws230{word-spacing:-7.209834px;}
.ws42{word-spacing:-7.208986px;}
.ws234{word-spacing:-7.181708px;}
.ws233{word-spacing:-7.180159px;}
.ws235{word-spacing:-7.159025px;}
.ws8d{word-spacing:-7.137254px;}
.ws1dc{word-spacing:-7.078925px;}
.ws240{word-spacing:-7.072649px;}
.ws75{word-spacing:-7.065523px;}
.ws3b{word-spacing:-6.993792px;}
.ws11d{word-spacing:-6.987768px;}
.ws228{word-spacing:-6.955788px;}
.wsa6{word-spacing:-6.922061px;}
.wsb4{word-spacing:-6.850330px;}
.ws147{word-spacing:-6.808441px;}
.ws40{word-spacing:-6.778598px;}
.ws1eb{word-spacing:-6.748665px;}
.wsb3{word-spacing:-6.706867px;}
.ws26f{word-spacing:-6.690258px;}
.ws8f{word-spacing:-6.635136px;}
.ws1c7{word-spacing:-6.604025px;}
.ws91{word-spacing:-6.603698px;}
.ws92{word-spacing:-6.563405px;}
.ws110{word-spacing:-6.508384px;}
.wsde{word-spacing:-6.491674px;}
.ws146{word-spacing:-6.449787px;}
.ws93{word-spacing:-6.419942px;}
.ws2c{word-spacing:-6.390627px;}
.ws1a4{word-spacing:-6.390012px;}
.ws4f{word-spacing:-6.348211px;}
.ws3c{word-spacing:-6.276480px;}
.ws11e{word-spacing:-6.210685px;}
.ws3e{word-spacing:-6.204749px;}
.wsbc{word-spacing:-6.133018px;}
.ws4e{word-spacing:-6.061286px;}
.wsa2{word-spacing:-5.989555px;}
.ws2a4{word-spacing:-5.982357px;}
.ws180{word-spacing:-5.934536px;}
.ws72{word-spacing:-5.917824px;}
.wsae{word-spacing:-5.911807px;}
.ws106{word-spacing:-5.877137px;}
.ws1da{word-spacing:-5.868470px;}
.ws160{word-spacing:-5.846093px;}
.ws1db{word-spacing:-5.823638px;}
.ws136{word-spacing:-5.774362px;}
.wsd5{word-spacing:-5.732480px;}
.ws120{word-spacing:-5.702630px;}
.ws290{word-spacing:-5.638035px;}
.wsa7{word-spacing:-5.630899px;}
.ws294{word-spacing:-5.602048px;}
.ws292{word-spacing:-5.600590px;}
.ws113{word-spacing:-5.599792px;}
.ws29c{word-spacing:-5.590214px;}
.ws22b{word-spacing:-5.583938px;}
.ws6e{word-spacing:-5.559168px;}
.ws11f{word-spacing:-5.553153px;}
.wscb{word-spacing:-5.487437px;}
.ws1c5{word-spacing:-5.456330px;}
.wsdc{word-spacing:-5.415706px;}
.ws165{word-spacing:-5.373826px;}
.wse9{word-spacing:-5.254275px;}
.ws134{word-spacing:-5.247698px;}
.ws10a{word-spacing:-5.200512px;}
.wsad{word-spacing:-5.194500px;}
.ws209{word-spacing:-5.128781px;}
.ws1ca{word-spacing:-5.121586px;}
.wsb5{word-spacing:-5.057050px;}
.ws19f{word-spacing:-5.043971px;}
.ws19b{word-spacing:-5.029722px;}
.ws139{word-spacing:-4.985318px;}
.ws1f4{word-spacing:-4.955397px;}
.ws26e{word-spacing:-4.873437px;}
.wsc6{word-spacing:-4.841856px;}
.wsac{word-spacing:-4.776070px;}
.ws46{word-spacing:-4.770125px;}
.ws177{word-spacing:-4.698394px;}
.ws16b{word-spacing:-4.691201px;}
.wsfc{word-spacing:-4.656519px;}
.ws16c{word-spacing:-4.643380px;}
.ws1a8{word-spacing:-4.626662px;}
.wscd{word-spacing:-4.483200px;}
.ws97{word-spacing:-4.417417px;}
.wsdd{word-spacing:-4.411469px;}
.wsa3{word-spacing:-4.339738px;}
.ws22d{word-spacing:-4.313706px;}
.ws15e{word-spacing:-4.268006px;}
.wsd2{word-spacing:-4.196275px;}
.wse6{word-spacing:-4.178314px;}
.ws116{word-spacing:-4.052813px;}
.ws27d{word-spacing:-3.985538px;}
.ws1fb{word-spacing:-3.985194px;}
.ws203{word-spacing:-3.982871px;}
.ws18a{word-spacing:-3.981082px;}
.ws201{word-spacing:-3.980527px;}
.ws1fe{word-spacing:-3.964143px;}
.ws1f6{word-spacing:-3.909350px;}
.ws157{word-spacing:-3.868677px;}
.ws183{word-spacing:-3.837619px;}
.ws13d{word-spacing:-3.765888px;}
.wsc0{word-spacing:-3.694157px;}
.ws18d{word-spacing:-3.640334px;}
.wscf{word-spacing:-3.622426px;}
.ws11a{word-spacing:-3.580558px;}
.wsa5{word-spacing:-3.550694px;}
.ws119{word-spacing:-3.520783px;}
.ws135{word-spacing:-3.478963px;}
.ws181{word-spacing:-3.407232px;}
.wsa8{word-spacing:-3.341456px;}
.ws20e{word-spacing:-3.335501px;}
.ws223{word-spacing:-3.322948px;}
.ws1ed{word-spacing:-3.281680px;}
.wsbd{word-spacing:-3.263770px;}
.ws137{word-spacing:-3.192038px;}
.wsc9{word-spacing:-3.120307px;}
.ws26d{word-spacing:-3.103674px;}
.wse8{word-spacing:-3.042578px;}
.ws5e{word-spacing:-2.976845px;}
.ws7f{word-spacing:-2.905114px;}
.ws22a{word-spacing:-2.891047px;}
.ws2a6{word-spacing:-2.824205px;}
.ws29a{word-spacing:-2.816626px;}
.ws29b{word-spacing:-2.768806px;}
.wsc1{word-spacing:-2.761651px;}
.ws15d{word-spacing:-2.689920px;}
.wsc4{word-spacing:-2.546458px;}
.ws184{word-spacing:-2.474726px;}
.ws118{word-spacing:-2.402995px;}
.ws30{word-spacing:-2.385023px;}
.ws20f{word-spacing:-2.331264px;}
.ws13a{word-spacing:-2.259533px;}
.ws7b{word-spacing:-2.205720px;}
.ws84{word-spacing:-2.187802px;}
.ws15f{word-spacing:-1.829146px;}
.ws142{word-spacing:-1.685683px;}
.ws1aa{word-spacing:-1.613952px;}
.ws2f{word-spacing:-1.488592px;}
.wsa4{word-spacing:-1.398758px;}
.ws21a{word-spacing:-1.327027px;}
.ws104{word-spacing:-1.238550px;}
.ws112{word-spacing:-1.152476px;}
.ws173{word-spacing:-1.111834px;}
.ws103{word-spacing:-1.047269px;}
.wse7{word-spacing:-1.010208px;}
.ws219{word-spacing:-0.968371px;}
.wsce{word-spacing:-0.896640px;}
.ws1e6{word-spacing:-0.824909px;}
.ws1fc{word-spacing:-0.537984px;}
.wsee{word-spacing:-0.490562px;}
.ws83{word-spacing:-0.394522px;}
.ws28{word-spacing:-0.232200px;}
.ws27{word-spacing:-0.210600px;}
.ws29{word-spacing:-0.205200px;}
.ws2b{word-spacing:-0.199800px;}
.ws1a{word-spacing:-0.194400px;}
.ws26{word-spacing:-0.189000px;}
.ws1c{word-spacing:-0.187200px;}
.ws18{word-spacing:-0.180000px;}
.ws1b{word-spacing:-0.172800px;}
.ws19{word-spacing:-0.165600px;}
.ws20{word-spacing:-0.162000px;}
.ws15{word-spacing:-0.158400px;}
.ws24{word-spacing:-0.145800px;}
.ws25{word-spacing:-0.140400px;}
.ws17{word-spacing:-0.108000px;}
.ws1f{word-spacing:-0.102600px;}
.ws2a{word-spacing:-0.091800px;}
.wsf7{word-spacing:-0.071731px;}
.ws22{word-spacing:-0.070200px;}
.ws16{word-spacing:-0.064800px;}
.wsd4{word-spacing:-0.059776px;}
.ws21{word-spacing:-0.054000px;}
.ws232{word-spacing:-0.050809px;}
.ws1e{word-spacing:-0.050400px;}
.ws23{word-spacing:-0.048600px;}
.ws15a{word-spacing:-0.047820px;}
.ws1e2{word-spacing:-0.044832px;}
.wse5{word-spacing:-0.041843px;}
.ws191{word-spacing:-0.035866px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:0.021600px;}
.ws7{word-spacing:0.036000px;}
.ws2{word-spacing:0.039636px;}
.wsc{word-spacing:0.050400px;}
.ws1d{word-spacing:0.064800px;}
.wsd{word-spacing:0.067284px;}
.ws8{word-spacing:0.086400px;}
.ws4{word-spacing:0.086508px;}
.wsa{word-spacing:0.093600px;}
.ws5{word-spacing:0.105732px;}
.ws14{word-spacing:0.115200px;}
.wse{word-spacing:0.115344px;}
.ws13{word-spacing:0.122400px;}
.wsb{word-spacing:0.172800px;}
.ws6{word-spacing:0.331200px;}
.ws187{word-spacing:2.203438px;}
.ws212{word-spacing:3.206824px;}
.ws35{word-spacing:6.126000px;}
.ws34{word-spacing:6.204000px;}
.ws33{word-spacing:6.264000px;}
.ws32{word-spacing:6.372000px;}
.ws39{word-spacing:6.714000px;}
.ws38{word-spacing:6.762000px;}
.ws37{word-spacing:6.822000px;}
.ws36{word-spacing:6.870000px;}
.ws1cc{word-spacing:7.216129px;}
.wse0{word-spacing:7.555438px;}
.ws143{word-spacing:8.209438px;}
.ws115{word-spacing:8.515438px;}
.wsd9{word-spacing:8.803438px;}
.ws1e9{word-spacing:10.615438px;}
.wsb6{word-spacing:11.010739px;}
.ws1dd{word-spacing:12.418381px;}
.ws1e1{word-spacing:12.777035px;}
.ws159{word-spacing:13.246273px;}
.ws271{word-spacing:13.246757px;}
.ws1c1{word-spacing:14.059256px;}
.ws127{word-spacing:15.852595px;}
.ws231{word-spacing:16.208154px;}
.ws1b3{word-spacing:16.557841px;}
.ws18c{word-spacing:16.771438px;}
.ws293{word-spacing:17.119732px;}
.ws291{word-spacing:17.167552px;}
.ws20c{word-spacing:17.861069px;}
.ws27b{word-spacing:18.088056px;}
.ws28c{word-spacing:19.361127px;}
.ws1cb{word-spacing:19.654267px;}
.ws12c{word-spacing:19.869542px;}
.ws1c6{word-spacing:20.371576px;}
.ws21c{word-spacing:20.515123px;}
.ws17c{word-spacing:20.661927px;}
.ws1b5{word-spacing:20.708780px;}
.ws1f8{word-spacing:21.017242px;}
.wsf1{word-spacing:21.519360px;}
.ws1d0{word-spacing:21.680755px;}
.ws24a{word-spacing:21.690423px;}
.ws1d6{word-spacing:21.734554px;}
.ws186{word-spacing:22.236672px;}
.ws1bc{word-spacing:22.368423px;}
.ws1c8{word-spacing:22.578423px;}
.ws214{word-spacing:22.667059px;}
.ws1fa{word-spacing:22.738790px;}
.ws23f{word-spacing:22.961127px;}
.ws1d9{word-spacing:23.119056px;}
.ws25a{word-spacing:23.123744px;}
.ws251{word-spacing:23.124719px;}
.ws265{word-spacing:23.125637px;}
.ws100{word-spacing:23.126139px;}
.ws101{word-spacing:23.183524px;}
.ws202{word-spacing:23.456102px;}
.ws10e{word-spacing:23.466423px;}
.ws204{word-spacing:23.599565px;}
.ws21d{word-spacing:23.743027px;}
.ws218{word-spacing:24.029952px;}
.ws208{word-spacing:24.460339px;}
.ws220{word-spacing:24.571523px;}
.ws225{word-spacing:24.632494px;}
.ws185{word-spacing:24.818995px;}
.ws17e{word-spacing:24.828423px;}
.ws5f{word-spacing:24.890726px;}
.ws174{word-spacing:25.034189px;}
.ws216{word-spacing:25.105920px;}
.ws227{word-spacing:25.523297px;}
.ws189{word-spacing:25.751501px;}
.ws161{word-spacing:26.329438px;}
.ws200{word-spacing:26.899200px;}
.ws61{word-spacing:27.114394px;}
.wsf4{word-spacing:27.186125px;}
.ws213{word-spacing:27.257856px;}
.ws1cf{word-spacing:27.464083px;}
.ws2a3{word-spacing:27.498423px;}
.ws52{word-spacing:28.046899px;}
.ws1fd{word-spacing:28.692480px;}
.ws206{word-spacing:28.835942px;}
.ws53{word-spacing:28.907674px;}
.ws6d{word-spacing:29.243414px;}
.ws207{word-spacing:29.266330px;}
.ws255{word-spacing:29.294532px;}
.ws156{word-spacing:29.426727px;}
.ws90{word-spacing:29.696717px;}
.ws4d{word-spacing:30.055373px;}
.ws16a{word-spacing:30.126423px;}
.ws26c{word-spacing:30.947810px;}
.ws20a{word-spacing:31.059610px;}
.ws217{word-spacing:31.131341px;}
.ws215{word-spacing:31.489997px;}
.ws171{word-spacing:31.504255px;}
.ws299{word-spacing:31.553127px;}
.ws1a2{word-spacing:32.623438px;}
.ws211{word-spacing:32.781158px;}
.ws210{word-spacing:33.641933px;}
.ws1ee{word-spacing:34.411438px;}
.ws21b{word-spacing:34.574438px;}
.ws102{word-spacing:35.028327px;}
.ws153{word-spacing:36.468142px;}
.ws182{word-spacing:36.978679px;}
.ws10b{word-spacing:37.081972px;}
.ws226{word-spacing:39.418088px;}
.ws25e{word-spacing:41.803785px;}
.ws14e{word-spacing:48.978063px;}
.ws267{word-spacing:50.813417px;}
.ws26a{word-spacing:51.157549px;}
.ws14f{word-spacing:52.076851px;}
.ws252{word-spacing:52.248132px;}
.ws178{word-spacing:57.356268px;}
.ws14c{word-spacing:59.728740px;}
.ws14a{word-spacing:59.733540px;}
.ws261{word-spacing:59.736518px;}
.ws246{word-spacing:60.512440px;}
.ws260{word-spacing:60.970672px;}
.ws26b{word-spacing:61.314861px;}
.ws254{word-spacing:63.323646px;}
.ws25d{word-spacing:63.610221px;}
.ws247{word-spacing:63.668613px;}
.ws152{word-spacing:64.529388px;}
.ws221{word-spacing:65.940699px;}
.ws222{word-spacing:69.294132px;}
.ws17a{word-spacing:71.496008px;}
.ws269{word-spacing:72.219106px;}
.ws266{word-spacing:73.480442px;}
.ws2a0{word-spacing:74.069640px;}
.ws264{word-spacing:74.570508px;}
.ws29f{word-spacing:74.839140px;}
.ws2a1{word-spacing:76.094640px;}
.ws268{word-spacing:81.252706px;}
.ws262{word-spacing:81.579106px;}
.ws25f{word-spacing:81.581318px;}
.ws256{word-spacing:82.489557px;}
.ws263{word-spacing:82.833689px;}
.ws245{word-spacing:85.474898px;}
.ws259{word-spacing:92.187453px;}
.ws150{word-spacing:92.648018px;}
.ws154{word-spacing:92.705403px;}
.ws276{word-spacing:92.721542px;}
.ws258{word-spacing:93.736936px;}
.ws25c{word-spacing:100.776518px;}
.ws248{word-spacing:104.182395px;}
.ws27a{word-spacing:105.848352px;}
.ws3a{word-spacing:111.349207px;}
.wsd3{word-spacing:118.839870px;}
.ws179{word-spacing:128.699940px;}
.ws1d1{word-spacing:131.617786px;}
.ws277{word-spacing:132.209568px;}
.ws257{word-spacing:132.585732px;}
.ws274{word-spacing:143.883821px;}
.ws1d2{word-spacing:147.703507px;}
.ws250{word-spacing:148.023922px;}
.ws149{word-spacing:148.827894px;}
.ws284{word-spacing:152.041452px;}
.ws1d4{word-spacing:155.020090px;}
.ws244{word-spacing:160.362271px;}
.ws14d{word-spacing:161.071140px;}
.ws17b{word-spacing:161.624740px;}
.ws21f{word-spacing:172.031144px;}
.ws1d5{word-spacing:172.558368px;}
.ws279{word-spacing:173.150150px;}
.ws278{word-spacing:184.878202px;}
.ws1d8{word-spacing:187.191533px;}
.ws155{word-spacing:192.497848px;}
.ws151{word-spacing:193.989857px;}
.ws282{word-spacing:198.121574px;}
.ws10c{word-spacing:207.880992px;}
.ws25b{word-spacing:214.702638px;}
.ws10d{word-spacing:217.681992px;}
.ws1ce{word-spacing:225.227002px;}
.ws23d{word-spacing:227.904369px;}
.ws23e{word-spacing:231.060541px;}
.ws237{word-spacing:234.171007px;}
.ws273{word-spacing:237.546835px;}
.ws23a{word-spacing:251.051940px;}
.ws1d7{word-spacing:256.322477px;}
.ws283{word-spacing:262.564884px;}
.ws296{word-spacing:264.114278px;}
.ws23c{word-spacing:271.631708px;}
.ws23b{word-spacing:272.896740px;}
.ws285{word-spacing:273.333540px;}
.ws275{word-spacing:277.519046px;}
.ws297{word-spacing:281.272381px;}
.ws287{word-spacing:287.527342px;}
.ws289{word-spacing:293.610148px;}
.ws298{word-spacing:298.487869px;}
.ws288{word-spacing:304.972370px;}
.ws28b{word-spacing:307.841618px;}
.ws24f{word-spacing:326.607060px;}
.wsb1{word-spacing:326.747975px;}
.ws239{word-spacing:327.811584px;}
.ws286{word-spacing:344.095140px;}
.ws28a{word-spacing:354.256740px;}
.ws281{word-spacing:362.414715px;}
.ws295{word-spacing:364.021494px;}
._1a{margin-left:-6.762685px;}
._3{margin-left:-5.454000px;}
._b{margin-left:-3.907012px;}
._c{margin-left:-2.490640px;}
._1{margin-left:-1.177200px;}
._0{width:1.029600px;}
._12{width:2.446119px;}
._11{width:3.907012px;}
._7{width:5.814000px;}
._88{width:6.851513px;}
._68{width:9.755443px;}
._8{width:13.416048px;}
._4{width:14.621976px;}
._9{width:16.470000px;}
._a{width:17.856000px;}
._5{width:19.656000px;}
._1f{width:21.598158px;}
._d{width:22.775956px;}
._2{width:24.462000px;}
._24{width:25.525904px;}
._1e{width:26.706820px;}
._15{width:28.368080px;}
._f{width:29.809186px;}
._e{width:31.191041px;}
._20{width:32.285504px;}
._17{width:33.931697px;}
._6{width:35.298000px;}
._13{width:37.156762px;}
._1c{width:38.518801px;}
._19{width:39.789590px;}
._14{width:41.111527px;}
._3a{width:42.405945px;}
._16{width:43.683447px;}
._22{width:45.515056px;}
._1b{width:47.406211px;}
._18{width:48.685533px;}
._21{width:50.133844px;}
._87{width:51.149119px;}
._10{width:52.206558px;}
._25{width:54.056781px;}
._23{width:55.779664px;}
._1d{width:57.537971px;}
._61{width:60.789816px;}
._3b{width:62.093856px;}
._62{width:64.558080px;}
._cb{width:66.225519px;}
._7c{width:68.192483px;}
._51{width:69.837496px;}
._52{width:73.452749px;}
._57{width:76.092457px;}
._9f{width:77.494802px;}
._46{width:78.617395px;}
._83{width:81.373091px;}
._ef{width:84.685144px;}
._54{width:85.803347px;}
._9a{width:86.900881px;}
._5d{width:88.704317px;}
._cd{width:91.238896px;}
._5e{width:92.619325px;}
._4a{width:94.684920px;}
._9c{width:96.307467px;}
._8c{width:97.432489px;}
._a0{width:98.469005px;}
._ca{width:100.708805px;}
._cc{width:102.166476px;}
._90{width:104.078385px;}
._8d{width:105.724616px;}
._93{width:107.309875px;}
._c9{width:109.982244px;}
._33{width:111.452500px;}
._55{width:113.564836px;}
._5a{width:117.122703px;}
._6c{width:119.148845px;}
._ce{width:120.276921px;}
._98{width:121.580650px;}
._d1{width:122.648699px;}
._91{width:124.930644px;}
._94{width:128.284078px;}
._ba{width:130.934810px;}
._7d{width:133.097242px;}
._bc{width:134.757966px;}
._c8{width:138.976980px;}
._7e{width:141.027126px;}
._a2{width:142.485401px;}
._53{width:145.987338px;}
._58{width:149.143511px;}
._96{width:150.871936px;}
._cf{width:152.635077px;}
._a4{width:155.675593px;}
._a7{width:156.991169px;}
._84{width:159.404659px;}
._5f{width:161.653432px;}
._c3{width:163.088056px;}
._c7{width:167.121084px;}
._4b{width:169.744712px;}
._8e{width:171.390943px;}
._4c{width:173.302579px;}
._c4{width:174.392893px;}
._3e{width:178.295071px;}
._3f{width:180.759295px;}
._4f{width:184.951726px;}
._80{width:187.164634px;}
._5b{width:189.714678px;}
._44{width:194.075935px;}
._b7{width:197.289492px;}
._77{width:198.892685px;}
._72{width:200.345242px;}
._70{width:205.075504px;}
._89{width:210.229801px;}
._c1{width:211.614096px;}
._65{width:213.414666px;}
._76{width:214.616112px;}
._79{width:216.861350px;}
._3d{width:218.008792px;}
._66{width:219.666298px;}
._41{width:222.079795px;}
._39{width:223.687656px;}
._bd{width:226.441052px;}
._d8{width:228.734082px;}
._36{width:229.819032px;}
._74{width:231.440717px;}
._34{width:233.910050px;}
._9d{width:236.447555px;}
._a1{width:238.093786px;}
._35{width:239.816974px;}
._75{width:241.017190px;}
._37{width:243.629971px;}
._4d{width:245.894554px;}
._b9{width:247.917504px;}
._38{width:249.618053px;}
._6f{width:253.390464px;}
._6d{width:254.843021px;}
._a8{width:258.134994px;}
._85{width:259.200691px;}
._2e{width:260.355564px;}
._a9{width:262.127009px;}
._d5{width:263.813164px;}
._26{width:265.300869px;}
._95{width:267.969830px;}
._4e{width:271.778500px;}
._b0{width:274.127954px;}
._6e{width:276.527105px;}
._3c{width:278.259671px;}
._78{width:281.150438px;}
._6b{width:282.656794px;}
._af{width:283.940782px;}
._82{width:285.985930px;}
._d9{width:288.359424px;}
._67{width:290.485997px;}
._86{width:293.524070px;}
._7a{width:294.755069px;}
._a5{width:296.199644px;}
._ad{width:299.721646px;}
._ac{width:303.171917px;}
._da{width:307.251054px;}
._73{width:309.018010px;}
._8f{width:311.076695px;}
._d7{width:314.896225px;}
._d3{width:315.904205px;}
._49{width:322.044396px;}
._b8{width:323.662236px;}
._e1{width:326.363527px;}
._69{width:328.001168px;}
._e3{width:329.389670px;}
._d4{width:333.662746px;}
._eb{width:335.931556px;}
._e6{width:337.423565px;}
._ea{width:339.879946px;}
._e9{width:345.560251px;}
._6a{width:346.999680px;}
._e2{width:354.352128px;}
._2a{width:357.928285px;}
._dd{width:361.410478px;}
._71{width:368.465242px;}
._8a{width:370.348186px;}
._ec{width:373.059625px;}
._c5{width:374.438928px;}
._81{width:381.328128px;}
._e8{width:382.644575px;}
._c6{width:384.422928px;}
._e7{width:388.725719px;}
._d2{width:389.832755px;}
._32{width:394.521600px;}
._dc{width:396.381006px;}
._b6{width:399.571476px;}
._b5{width:402.096415px;}
._de{width:405.799849px;}
._df{width:407.261061px;}
._b4{width:411.966628px;}
._28{width:413.286482px;}
._e0{width:429.239501px;}
._db{width:461.317693px;}
._e5{width:504.471183px;}
._ed{width:506.158434px;}
._50{width:517.051321px;}
._7b{width:521.629286px;}
._2c{width:528.196688px;}
._d6{width:533.895322px;}
._7f{width:541.373299px;}
._2b{width:553.707479px;}
._40{width:579.995751px;}
._27{width:592.006334px;}
._d0{width:600.890021px;}
._9b{width:613.617377px;}
._31{width:635.733674px;}
._8b{width:643.432451px;}
._ee{width:667.788780px;}
._e4{width:674.847130px;}
._ab{width:717.530368px;}
._45{width:738.076078px;}
._be{width:740.025272px;}
._99{width:748.172330px;}
._48{width:758.277605px;}
._a6{width:763.110352px;}
._97{width:787.142323px;}
._43{width:791.157166px;}
._a3{width:802.080346px;}
._29{width:884.876083px;}
._b1{width:891.096746px;}
._b3{width:896.548317px;}
._c0{width:899.589720px;}
._9e{width:904.878328px;}
._47{width:908.059607px;}
._2d{width:913.166868px;}
._30{width:915.867291px;}
._92{width:919.816351px;}
._ae{width:927.627878px;}
._2f{width:931.243131px;}
._bf{width:950.122783px;}
._59{width:1019.048080px;}
._b2{width:1045.381816px;}
._aa{width:1052.440166px;}
._c2{width:1067.934106px;}
._bb{width:1074.992456px;}
._60{width:1178.767550px;}
._64{width:1198.278437px;}
._5c{width:1229.357998px;}
._63{width:1347.111936px;}
._56{width:1354.170286px;}
._42{width:1741.254928px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(35,81,163);}
.fc3{color:rgb(52,49,51);}
.fc2{color:rgb(67,65,66);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:6.120000px;}
.fs1e{font-size:17.982082px;}
.fs1c{font-size:23.976000px;}
.fs22{font-size:23.976109px;}
.fs1d{font-size:30.010500px;}
.fs21{font-size:35.865600px;}
.fs18{font-size:35.964000px;}
.fs29{font-size:38.256000px;}
.fs1b{font-size:38.256480px;}
.fs14{font-size:38.361600px;}
.fs12{font-size:41.842800px;}
.fsd{font-size:41.844000px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:42.120000px;}
.fs24{font-size:44.831700px;}
.fs19{font-size:45.036000px;}
.fs17{font-size:47.820480px;}
.fs11{font-size:47.820600px;}
.fs2a{font-size:47.822400px;}
.fsa{font-size:47.880000px;}
.fs1a{font-size:47.952000px;}
.fs15{font-size:48.016800px;}
.fs26{font-size:50.809260px;}
.fs23{font-size:53.798400px;}
.fsb{font-size:54.000000px;}
.fs28{font-size:57.384000px;}
.fs16{font-size:57.384960px;}
.fs13{font-size:59.775600px;}
.fse{font-size:59.778000px;}
.fs3{font-size:60.000000px;}
.fs25{font-size:60.971520px;}
.fs1{font-size:63.000000px;}
.fsc{font-size:65.454000px;}
.fs1f{font-size:65.454600px;}
.fs27{font-size:71.730000px;}
.fs10{font-size:71.731200px;}
.fs0{font-size:72.000000px;}
.fs20{font-size:86.077200px;}
.fs7{font-size:96.120000px;}
.fs2{font-size:102.000000px;}
.fsf{font-size:103.292400px;}
.fs6{font-size:108.000000px;}
.fs5{font-size:132.120000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:4.860000px;}
.y1a2{bottom:11.570477px;}
.y21d{bottom:13.901625px;}
.yd2{bottom:22.242600px;}
.y13f{bottom:22.983750px;}
.y318{bottom:24.300000px;}
.y21b{bottom:24.561814px;}
.y21c{bottom:25.973201px;}
.y19d{bottom:26.912250px;}
.y34d{bottom:28.177875px;}
.y314{bottom:35.650125px;}
.y330{bottom:35.994375px;}
.y215{bottom:36.966375px;}
.y235{bottom:38.262375px;}
.yd1{bottom:38.880000px;}
.y3b4{bottom:40.510125px;}
.y3c7{bottom:44.772750px;}
.y1a1{bottom:49.479229px;}
.y23a{bottom:49.582125px;}
.y22d{bottom:49.774500px;}
.y13d{bottom:50.908500px;}
.ycb{bottom:57.040200px;}
.y1ac{bottom:61.565957px;}
.y1a4{bottom:61.843500px;}
.y95{bottom:63.168000px;}
.y5{bottom:66.525004px;}
.y335{bottom:67.149000px;}
.y353{bottom:67.169250px;}
.y137{bottom:67.938750px;}
.y3ae{bottom:68.839875px;}
.y216{bottom:69.892875px;}
.y1a9{bottom:70.581375px;}
.y34e{bottom:71.533125px;}
.y244{bottom:75.218625px;}
.y24a{bottom:75.643875px;}
.y3bd{bottom:75.856500px;}
.y3c2{bottom:76.990500px;}
.y3b9{bottom:77.132250px;}
.y331{bottom:77.385375px;}
.y220{bottom:78.124500px;}
.y236{bottom:79.096500px;}
.y22e{bottom:80.139375px;}
.y3b5{bottom:80.777250px;}
.y1da{bottom:80.858250px;}
.y5f{bottom:81.900000px;}
.y31b{bottom:85.029750px;}
.y19e{bottom:85.131000px;}
.y315{bottom:86.163750px;}
.y22a{bottom:91.843875px;}
.y3b2{bottom:95.497675px;}
.y1a5{bottom:96.784875px;}
.y3c8{bottom:97.048125px;}
.y4{bottom:97.125005px;}
.y23b{bottom:100.247625px;}
.y3af{bottom:102.019500px;}
.y217{bottom:102.819375px;}
.y21a{bottom:103.658425px;}
.y336{bottom:107.395875px;}
.y354{bottom:107.436375px;}
.y19a{bottom:108.000000px;}
.y135{bottom:108.292500px;}
.y16c{bottom:109.239000px;}
.yf8{bottom:109.689000px;}
.y22f{bottom:110.504250px;}
.y293{bottom:110.652000px;}
.y155{bottom:110.677500px;}
.y245{bottom:113.460750px;}
.y1aa{bottom:114.250500px;}
.y24b{bottom:114.311250px;}
.y284{bottom:114.570000px;}
.y34f{bottom:114.888375px;}
.y105{bottom:115.533000px;}
.y1ec{bottom:115.762500px;}
.y3be{bottom:116.073000px;}
.y3c3{bottom:118.341000px;}
.y3ba{bottom:118.614375px;}
.y332{bottom:118.786500px;}
.y349{bottom:118.857600px;}
.y221{bottom:119.272500px;}
.y237{bottom:119.920500px;}
.y5e{bottom:120.956400px;}
.y3b6{bottom:121.044375px;}
.yc8{bottom:121.135500px;}
.ye7{bottom:121.242000px;}
.ycc{bottom:123.411600px;}
.yb8{bottom:123.562500px;}
.y199{bottom:125.932500px;}
.y292{bottom:128.584500px;}
.y154{bottom:128.610000px;}
.y2b4{bottom:129.669000px;}
.y94{bottom:130.024500px;}
.y1c7{bottom:131.512500px;}
.y1a6{bottom:131.716125px;}
.yf7{bottom:133.044000px;}
.y348{bottom:133.203600px;}
.y212{bottom:133.483500px;}
.y172{bottom:133.500000px;}
.yc7{bottom:133.645500px;}
.y138{bottom:133.771500px;}
.y31c{bottom:134.409375px;}
.y1db{bottom:134.794125px;}
.y27d{bottom:134.890500px;}
.y134{bottom:135.183000px;}
.y3b0{bottom:135.209250px;}
.y218{bottom:135.735750px;}
.y16b{bottom:136.129500px;}
.y316{bottom:136.687500px;}
.y2d5{bottom:137.784000px;}
.y283{bottom:137.926500px;}
.y104{bottom:138.889500px;}
.y108{bottom:138.939000px;}
.y1eb{bottom:139.117500px;}
.ye6{bottom:139.176000px;}
.y21{bottom:139.264499px;}
.y31e{bottom:140.641500px;}
.y230{bottom:140.859000px;}
.yd0{bottom:141.134210px;}
.y19f{bottom:143.359875px;}
.y198{bottom:143.865000px;}
.y71{bottom:144.138000px;}
.yf6{bottom:145.554000px;}
.y291{bottom:146.517000px;}
.y153{bottom:146.542500px;}
.y22b{bottom:146.711250px;}
.yb7{bottom:146.917500px;}
.y337{bottom:147.642750px;}
.y355{bottom:147.693375px;}
.y209{bottom:149.289000px;}
.y3c9{bottom:149.313375px;}
.y282{bottom:150.436500px;}
.y1e9{bottom:150.450000px;}
.y23c{bottom:150.923250px;}
.y103{bottom:151.399500px;}
.y211{bottom:151.416000px;}
.y171{bottom:151.432500px;}
.y107{bottom:151.449000px;}
.yc6{bottom:151.578000px;}
.y246{bottom:151.713000px;}
.y24c{bottom:152.988750px;}
.y347{bottom:153.588000px;}
.y3bf{bottom:156.289500px;}
.y93{bottom:156.915000px;}
.y1ea{bottom:157.050000px;}
.y1ab{bottom:157.919625px;}
.y350{bottom:158.233500px;}
.y1c6{bottom:158.403000px;}
.y2d4{bottom:159.451500px;}
.y3c4{bottom:159.681375px;}
.y3bb{bottom:160.106625px;}
.y333{bottom:160.187625px;}
.y222{bottom:160.430625px;}
.y3ab{bottom:160.721100px;}
.y238{bottom:160.754625px;}
.y3b7{bottom:161.321625px;}
.y35f{bottom:161.392800px;}
.y27c{bottom:161.781000px;}
.y197{bottom:161.797500px;}
.y70{bottom:162.070500px;}
.y133{bottom:162.075000px;}
.y241{bottom:162.579000px;}
.y16a{bottom:163.020000px;}
.y290{bottom:164.449500px;}
.y152{bottom:164.476500px;}
.y31a{bottom:165.445500px;}
.y2b3{bottom:165.592500px;}
.ye5{bottom:165.931500px;}
.y1a7{bottom:166.657500px;}
.y3b1{bottom:168.399000px;}
.y219{bottom:168.662250px;}
.yf5{bottom:168.910500px;}
.y102{bottom:169.332000px;}
.y210{bottom:169.348500px;}
.yc5{bottom:169.510500px;}
.y346{bottom:170.923200px;}
.y231{bottom:171.223875px;}
.y281{bottom:173.791500px;}
.y2f4{bottom:174.396000px;}
.yb6{bottom:174.669000px;}
.y170{bottom:174.787500px;}
.y106{bottom:174.804000px;}
.y3aa{bottom:175.067100px;}
.y208{bottom:175.900500px;}
.y240{bottom:176.776500px;}
.y1e8{bottom:177.340500px;}
.y3cc{bottom:177.706500px;}
.y35b{bottom:178.242000px;}
.y6f{bottom:180.003000px;}
.y2d3{bottom:181.120500px;}
.y5d{bottom:181.256850px;}
.y28f{bottom:182.382000px;}
.y151{bottom:182.409000px;}
.y31d{bottom:183.789000px;}
.y92{bottom:183.805500px;}
.y196{bottom:185.154000px;}
.y1c5{bottom:185.293500px;}
.y280{bottom:186.301500px;}
.y313{bottom:187.114500px;}
.y317{bottom:187.201125px;}
.y2b2{bottom:187.261500px;}
.y101{bottom:187.264500px;}
.y20f{bottom:187.281000px;}
.y16f{bottom:187.297500px;}
.yc4{bottom:187.443000px;}
.y338{bottom:187.889625px;}
.y356{bottom:187.960500px;}
.y345{bottom:188.258400px;}
.y27b{bottom:188.673000px;}
.y1dc{bottom:188.740125px;}
.y132{bottom:188.965500px;}
.y3a9{bottom:189.413100px;}
.ycd{bottom:189.783000px;}
.y169{bottom:189.910500px;}
.y247{bottom:189.965250px;}
.y23f{bottom:190.972500px;}
.y24d{bottom:191.666250px;}
.y3cb{bottom:191.904000px;}
.y35a{bottom:192.439500px;}
.ye4{bottom:192.822000px;}
.y2f3{bottom:196.065000px;}
.y3c0{bottom:196.506000px;}
.yf4{bottom:196.662000px;}
.y18{bottom:196.933500px;}
.y195{bottom:197.664000px;}
.y6e{bottom:197.935500px;}
.y5c{bottom:199.346850px;}
.y139{bottom:199.604250px;}
.y3c5{bottom:201.031875px;}
.yb5{bottom:201.559500px;}
.y1a0{bottom:201.588750px;}
.y319{bottom:201.892500px;}
.y207{bottom:202.791000px;}
.y3a8{bottom:203.760300px;}
.y1e7{bottom:204.231000px;}
.y27f{bottom:204.234000px;}
.y23e{bottom:205.170000px;}
.y100{bottom:205.197000px;}
.y20e{bottom:205.213500px;}
.y16e{bottom:205.230000px;}
.yc3{bottom:205.375500px;}
.y344{bottom:205.593600px;}
.y28e{bottom:205.738500px;}
.y150{bottom:205.764000px;}
.y3ca{bottom:206.100000px;}
.y359{bottom:206.635500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y91{bottom:210.697500px;}
.y1c4{bottom:212.185500px;}
.y27a{bottom:215.563500px;}
.y6d{bottom:215.869500px;}
.y5b{bottom:216.447300px;}
.y168{bottom:216.802500px;}
.y2d2{bottom:217.734000px;}
.y28d{bottom:218.248500px;}
.y23d{bottom:219.366000px;}
.ye3{bottom:219.712500px;}
.y194{bottom:221.019000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y343{bottom:222.928800px;}
.yff{bottom:223.129500px;}
.y20d{bottom:223.146000px;}
.y2b1{bottom:223.186500px;}
.yc2{bottom:223.309500px;}
.yf3{bottom:223.552500px;}
.y3a7{bottom:224.144700px;}
.y27e{bottom:227.590500px;}
.yb4{bottom:228.451500px;}
.y16d{bottom:228.586500px;}
.y206{bottom:229.681500px;}
.y1e6{bottom:231.121500px;}
.y14f{bottom:232.519500px;}
.y2f2{bottom:232.677000px;}
.y131{bottom:233.610000px;}
.y5a{bottom:234.537300px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y358{bottom:235.210500px;}
.y3c6{bottom:235.387500px;}
.y28c{bottom:236.181000px;}
.y90{bottom:237.588000px;}
.y1c3{bottom:239.076000px;}
.y6c{bottom:239.224500px;}
.y2d1{bottom:239.403000px;}
.y342{bottom:240.262800px;}
.yfe{bottom:241.063500px;}
.y20c{bottom:241.080000px;}
.yc1{bottom:241.242000px;}
.y3a6{bottom:241.479900px;}
.y279{bottom:242.454000px;}
.y193{bottom:243.642000px;}
.y167{bottom:243.693000px;}
.y2b0{bottom:244.854000px;}
.ye2{bottom:246.603000px;}
.y239{bottom:247.941000px;}
.ybc{bottom:250.038000px;}
.yf2{bottom:250.443000px;}
.y59{bottom:252.627300px;}
.y28b{bottom:254.113500px;}
.y2f1{bottom:254.346000px;}
.yb3{bottom:255.342000px;}
.yce{bottom:256.170600px;}
.y205{bottom:256.572000px;}
.y357{bottom:256.878000px;}
.y3c1{bottom:257.056500px;}
.y1e5{bottom:258.013500px;}
.y341{bottom:258.076800px;}
.y3a5{bottom:258.815100px;}
.y20b{bottom:259.012500px;}
.yc0{bottom:259.174500px;}
.y14e{bottom:259.410000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y2d0{bottom:261.070500px;}
.yfd{bottom:264.418500px;}
.y8f{bottom:264.478500px;}
.y13a{bottom:265.416750px;}
.y1c2{bottom:265.966500px;}
.ybb{bottom:267.970500px;}
.y2e{bottom:268.830000px;}
.y234{bottom:269.610000px;}
.y192{bottom:270.532500px;}
.y166{bottom:270.583500px;}
.y58{bottom:270.807750px;}
.y28a{bottom:272.046000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.ye1{bottom:273.495000px;}
.y340{bottom:275.410800px;}
.y3a4{bottom:276.149100px;}
.yfc{bottom:276.928500px;}
.ybf{bottom:277.107000px;}
.yf1{bottom:277.333500px;}
.y3d{bottom:280.710000px;}
.y2af{bottom:280.779000px;}
.yb2{bottom:282.232500px;}
.y20a{bottom:282.367500px;}
.y204{bottom:283.464000px;}
.y1e4{bottom:284.904000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.yba{bottom:285.903000px;}
.y14d{bottom:286.302000px;}
.y278{bottom:288.454875px;}
.y57{bottom:288.897750px;}
.y253{bottom:289.333500px;}
.y2f0{bottom:290.959500px;}
.y8e{bottom:291.369000px;}
.y2d{bottom:291.780000px;}
.y1c1{bottom:292.857000px;}
.y33f{bottom:293.224800px;}
.y3a3{bottom:293.484300px;}
.yfb{bottom:294.861000px;}
.ybe{bottom:295.039500px;}
.y227{bottom:296.431500px;}
.y191{bottom:297.423000px;}
.y165{bottom:297.474000px;}
.y2cf{bottom:297.684000px;}
.ye0{bottom:300.385500px;}
.y130{bottom:301.426500px;}
.y277{bottom:301.905375px;}
.y2ae{bottom:302.448000px;}
.y252{bottom:303.531000px;}
.y3c{bottom:303.660000px;}
.yf0{bottom:304.225500px;}
.y1b0{bottom:304.996500px;}
.y56{bottom:305.998200px;}
.yb1{bottom:309.123000px;}
.yb9{bottom:309.259500px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y203{bottom:310.354500px;}
.y33e{bottom:310.560000px;}
.y226{bottom:310.629000px;}
.y3a2{bottom:310.819500px;}
.y1e3{bottom:311.794500px;}
.y2ef{bottom:312.627000px;}
.yfa{bottom:312.793500px;}
.y14c{bottom:313.192500px;}
.y2c{bottom:314.730000px;}
.y276{bottom:315.354750px;}
.y251{bottom:317.727000px;}
.y361{bottom:318.241200px;}
.y360{bottom:318.242400px;}
.y8d{bottom:318.259500px;}
.ybd{bottom:318.396000px;}
.y1af{bottom:319.192500px;}
.y2ce{bottom:319.353000px;}
.y1c0{bottom:319.749000px;}
.y35c{bottom:322.140000px;}
.ycf{bottom:322.542000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y55{bottom:323.098650px;}
.y190{bottom:324.313500px;}
.y164{bottom:324.366000px;}
.y225{bottom:324.825000px;}
.y3b{bottom:326.520000px;}
.ydf{bottom:327.276000px;}
.y33d{bottom:327.894000px;}
.y12f{bottom:328.318500px;}
.y3a1{bottom:328.632300px;}
.y275{bottom:328.804125px;}
.y35e{bottom:330.724800px;}
.yef{bottom:331.116000px;}
.y13b{bottom:331.249500px;}
.y250{bottom:331.924500px;}
.y2a{bottom:332.730000px;}
.y1ae{bottom:333.390000px;}
.y2ee{bottom:334.296000px;}
.yb0{bottom:336.015000px;}
.yf9{bottom:336.150000px;}
.y202{bottom:337.245000px;}
.y29{bottom:337.590000px;}
.y2ad{bottom:338.371500px;}
.y1e2{bottom:338.685000px;}
.y224{bottom:339.022500px;}
.y14b{bottom:340.083000px;}
.y54{bottom:340.199100px;}
.y274{bottom:342.253500px;}
.y3a{bottom:344.610000px;}
.y8c{bottom:345.151500px;}
.y3a0{bottom:345.967500px;}
.y24f{bottom:346.120500px;}
.y1bf{bottom:346.639500px;}
.yf{bottom:348.133500px;}
.y39{bottom:349.470000px;}
.y18f{bottom:351.204000px;}
.y163{bottom:351.256500px;}
.yde{bottom:354.166500px;}
.y12e{bottom:355.209000px;}
.y273{bottom:355.702875px;}
.y2cd{bottom:355.965000px;}
.y35d{bottom:356.541600px;}
.y53{bottom:357.209100px;}
.yee{bottom:358.006500px;}
.y2ac{bottom:360.040500px;}
.y1ad{bottom:361.963500px;}
.yaf{bottom:362.905500px;}
.y39f{bottom:363.780300px;}
.y201{bottom:364.135500px;}
.y33c{bottom:364.821000px;}
.y1e1{bottom:365.575500px;}
.y14a{bottom:366.973500px;}
.y223{bottom:367.596000px;}
.y2ed{bottom:370.909500px;}
.y8b{bottom:372.042000px;}
.y1be{bottom:373.530000px;}
.y52{bottom:374.309550px;}
.y24e{bottom:374.695500px;}
.y272{bottom:374.814375px;}
.y2cc{bottom:377.634000px;}
.y18e{bottom:378.096000px;}
.y162{bottom:378.147000px;}
.ydd{bottom:381.057000px;}
.y12d{bottom:382.099500px;}
.y1a8{bottom:383.632500px;}
.yed{bottom:384.897000px;}
.ye{bottom:386.785499px;}
.y39e{bottom:388.021500px;}
.y21f{bottom:389.265000px;}
.yae{bottom:389.796000px;}
.y200{bottom:391.027500px;}
.y271{bottom:391.066125px;}
.y51{bottom:392.399550px;}
.y1e0{bottom:392.467500px;}
.y2ec{bottom:392.578500px;}
.y149{bottom:393.865500px;}
.y2ab{bottom:395.964000px;}
.y249{bottom:396.363000px;}
.y13c{bottom:397.082250px;}
.y8a{bottom:398.932500px;}
.y1bd{bottom:400.420500px;}
.y18d{bottom:404.986500px;}
.y161{bottom:405.037500px;}
.y270{bottom:407.316750px;}
.ydc{bottom:407.949000px;}
.yd{bottom:408.044999px;}
.y12c{bottom:408.990000px;}
.y50{bottom:410.580000px;}
.yec{bottom:411.789000px;}
.y13e{bottom:412.674750px;}
.y2cb{bottom:414.246000px;}
.yad{bottom:416.686500px;}
.y2aa{bottom:417.633000px;}
.y1ff{bottom:417.918000px;}
.y33b{bottom:418.749000px;}
.y148{bottom:420.756000px;}
.y33{bottom:420.840000px;}
.y26f{bottom:423.568500px;}
.y312{bottom:424.558500px;}
.y39d{bottom:424.948500px;}
.y89{bottom:425.823000px;}
.y1bc{bottom:427.311000px;}
.y4f{bottom:427.590000px;}
.y2eb{bottom:429.190500px;}
.y18c{bottom:431.877000px;}
.y160{bottom:431.929500px;}
.y33a{bottom:432.946500px;}
.ydb{bottom:434.839500px;}
.y2ca{bottom:435.915000px;}
.yeb{bottom:438.679500px;}
.y32{bottom:438.840000px;}
.y26e{bottom:439.820250px;}
.yac{bottom:443.577000px;}
.y31{bottom:443.700000px;}
.y4e{bottom:444.690000px;}
.y1fe{bottom:444.808500px;}
.y1df{bottom:447.037500px;}
.y339{bottom:447.142500px;}
.y147{bottom:447.646500px;}
.y2ea{bottom:450.859500px;}
.y88{bottom:452.715000px;}
.y2a9{bottom:453.558000px;}
.y1bb{bottom:454.203000px;}
.y26d{bottom:456.072000px;}
.y18b{bottom:458.767500px;}
.y15f{bottom:458.820000px;}
.y12b{bottom:459.136500px;}
.y1de{bottom:461.235000px;}
.y4d{bottom:461.700000px;}
.yda{bottom:461.730000px;}
.yea{bottom:465.570000px;}
.yab{bottom:470.469000px;}
.y1fd{bottom:471.699000px;}
.y2c9{bottom:472.528500px;}
.y26c{bottom:472.771500px;}
.y12a{bottom:473.482500px;}
.y146{bottom:474.537000px;}
.y2a8{bottom:475.227000px;}
.y1dd{bottom:475.431000px;}
.y334{bottom:475.717500px;}
.y87{bottom:479.605500px;}
.y1ba{bottom:481.093500px;}
.y311{bottom:485.535150px;}
.y18a{bottom:485.659500px;}
.y15e{bottom:485.710500px;}
.y2e9{bottom:487.471500px;}
.y129{bottom:487.828500px;}
.yd9{bottom:488.620500px;}
.y352{bottom:488.718000px;}
.y3bc{bottom:488.896500px;}
.y26b{bottom:489.023250px;}
.y1d9{bottom:489.660000px;}
.ye9{bottom:492.460500px;}
.y2c8{bottom:494.197500px;}
.yaa{bottom:497.359500px;}
.y32f{bottom:497.386500px;}
.y1fc{bottom:498.591000px;}
.y4c{bottom:500.670000px;}
.y310{bottom:500.777775px;}
.y233{bottom:501.450000px;}
.y128{bottom:502.174500px;}
.yc{bottom:502.864502px;}
.y26a{bottom:505.275000px;}
.y86{bottom:506.496000px;}
.y1b9{bottom:507.984000px;}
.y2e8{bottom:509.140500px;}
.y351{bottom:510.387000px;}
.y3b8{bottom:510.565500px;}
.y2a7{bottom:511.150500px;}
.y189{bottom:512.550000px;}
.y15d{bottom:512.601000px;}
.y382{bottom:513.501000px;}
.yd8{bottom:515.512500px;}
.y30f{bottom:516.020400px;}
.y127{bottom:516.521700px;}
.y289{bottom:519.351000px;}
.yb{bottom:520.864502px;}
.y269{bottom:521.974500px;}
.y232{bottom:523.117500px;}
.ya9{bottom:524.250000px;}
.y1fb{bottom:525.481500px;}
.y145{bottom:526.176000px;}
.y381{bottom:526.950375px;}
.y2c7{bottom:530.809500px;}
.y126{bottom:530.867700px;}
.y30e{bottom:531.264300px;}
.y2a6{bottom:532.819500px;}
.y85{bottom:533.386500px;}
.y1b8{bottom:534.874500px;}
.ye8{bottom:537.106500px;}
.y268{bottom:538.226250px;}
.ya{bottom:538.864499px;}
.y188{bottom:539.440500px;}
.y15c{bottom:539.493000px;}
.y144{bottom:540.373500px;}
.y380{bottom:540.399750px;}
.yd7{bottom:542.403000px;}
.y125{bottom:545.213700px;}
.y2e7{bottom:545.754000px;}
.y288{bottom:546.243000px;}
.y30d{bottom:546.506925px;}
.ya8{bottom:551.140500px;}
.y1fa{bottom:552.372000px;}
.y2c6{bottom:552.478500px;}
.y37f{bottom:553.849125px;}
.y267{bottom:554.478000px;}
.y2a5{bottom:554.488500px;}
.y143{bottom:554.569500px;}
.y9{bottom:556.864499px;}
.y39c{bottom:558.178500px;}
.y84{bottom:560.278500px;}
.y30c{bottom:561.749550px;}
.y1b7{bottom:561.766500px;}
.y124{bottom:562.251300px;}
.y187{bottom:566.331000px;}
.y15b{bottom:566.383500px;}
.y37e{bottom:567.299625px;}
.y2e6{bottom:567.421500px;}
.y142{bottom:568.767000px;}
.yd6{bottom:569.293500px;}
.y266{bottom:570.728625px;}
.y39b{bottom:572.524500px;}
.y287{bottom:573.133500px;}
.y30b{bottom:576.992175px;}
.ya7{bottom:578.032500px;}
.y1f9{bottom:579.262500px;}
.y123{bottom:579.586500px;}
.y37d{bottom:580.749000px;}
.y141{bottom:582.963000px;}
.y6b{bottom:585.442500px;}
.y39a{bottom:586.870500px;}
.y265{bottom:586.980375px;}
.y83{bottom:587.169000px;}
.y1b6{bottom:588.657000px;}
.y2c5{bottom:589.090500px;}
.y2a4{bottom:590.412000px;}
.y30a{bottom:592.234800px;}
.y27{bottom:592.379748px;}
.y186{bottom:593.223000px;}
.y15a{bottom:593.274000px;}
.yd5{bottom:596.184000px;}
.y122{bottom:596.920500px;}
.y140{bottom:597.160500px;}
.y37c{bottom:599.859375px;}
.y286{bottom:600.024000px;}
.y399{bottom:601.216500px;}
.y264{bottom:603.232125px;}
.y38{bottom:603.539748px;}
.y2e5{bottom:604.035000px;}
.ya6{bottom:604.923000px;}
.y1f8{bottom:606.154500px;}
.y309{bottom:607.477425px;}
.y6a{bottom:607.798500px;}
.y2c4{bottom:610.759500px;}
.y136{bottom:611.388000px;}
.y2a3{bottom:612.081000px;}
.y82{bottom:614.059500px;}
.y121{bottom:614.255700px;}
.y1a3{bottom:615.472500px;}
.y1b5{bottom:615.547500px;}
.y398{bottom:615.562500px;}
.y37b{bottom:616.111125px;}
.y263{bottom:619.931625px;}
.y185{bottom:620.113500px;}
.y159{bottom:620.164500px;}
.y21e{bottom:621.105000px;}
.y308{bottom:622.721325px;}
.yd4{bottom:623.076000px;}
.y26{bottom:623.340000px;}
.y2e4{bottom:625.704000px;}
.y248{bottom:628.204500px;}
.y1f7{bottom:628.611000px;}
.y120{bottom:631.590900px;}
.ya5{bottom:631.813500px;}
.y37a{bottom:632.362875px;}
.y2c3{bottom:632.428500px;}
.y1f6{bottom:633.045000px;}
.y37{bottom:634.500000px;}
.y397{bottom:635.948100px;}
.y262{bottom:636.183375px;}
.y19c{bottom:637.141500px;}
.y81{bottom:640.950000px;}
.y1b4{bottom:642.438000px;}
.y214{bottom:642.774000px;}
.y307{bottom:644.379750px;}
.y285{bottom:644.668500px;}
.y8{bottom:645.510000px;}
.y184{bottom:647.004000px;}
.y158{bottom:647.055000px;}
.y2a2{bottom:648.004500px;}
.y379{bottom:648.614625px;}
.y11f{bottom:648.926100px;}
.y243{bottom:649.872000px;}
.yd3{bottom:649.966500px;}
.y261{bottom:652.435125px;}
.y69{bottom:652.510500px;}
.y396{bottom:653.760900px;}
.ya4{bottom:658.704000px;}
.y1f5{bottom:659.935500px;}
.y2e3{bottom:662.316000px;}
.y306{bottom:662.798400px;}
.y378{bottom:664.865250px;}
.y11e{bottom:666.261300px;}
.y7{bottom:666.771000px;}
.y80{bottom:667.842000px;}
.y2c2{bottom:669.040500px;}
.y260{bottom:669.134625px;}
.y1b3{bottom:669.330000px;}
.y2a1{bottom:669.673500px;}
.y395{bottom:671.096100px;}
.y183{bottom:673.894500px;}
.y68{bottom:674.866500px;}
.y305{bottom:681.217050px;}
.y377{bottom:681.565875px;}
.y11d{bottom:683.595300px;}
.y2e2{bottom:683.985000px;}
.y25f{bottom:685.386375px;}
.ya3{bottom:685.596000px;}
.y394{bottom:688.431300px;}
.y2a0{bottom:691.342500px;}
.y157{bottom:692.322000px;}
.y7f{bottom:694.732500px;}
.y1b2{bottom:696.220500px;}
.y67{bottom:697.222500px;}
.yca{bottom:697.786500px;}
.y376{bottom:697.816500px;}
.y304{bottom:699.634425px;}
.y11c{bottom:700.930500px;}
.y25e{bottom:701.638125px;}
.y1f3{bottom:705.198000px;}
.y2c1{bottom:705.654000px;}
.y393{bottom:705.766500px;}
.ya2{bottom:712.486500px;}
.y375{bottom:714.068250px;}
.y25d{bottom:717.889875px;}
.y303{bottom:718.053075px;}
.y11b{bottom:718.744500px;}
.y182{bottom:719.250900px;}
.y66{bottom:719.578500px;}
.y2e1{bottom:720.598500px;}
.y7e{bottom:721.623000px;}
.y392{bottom:723.100500px;}
.y156{bottom:723.696000px;}
.y6{bottom:726.298500px;}
.y1d8{bottom:727.104000px;}
.y29f{bottom:727.266000px;}
.y2c0{bottom:727.323000px;}
.y374{bottom:730.768875px;}
.y1f1{bottom:733.038000px;}
.y181{bottom:733.596900px;}
.y25c{bottom:734.141625px;}
.y1b1{bottom:734.689500px;}
.y32e{bottom:734.830500px;}
.y11a{bottom:736.078500px;}
.y302{bottom:736.980450px;}
.ya1{bottom:739.377000px;}
.y391{bottom:740.435700px;}
.y65{bottom:741.934500px;}
.y34c{bottom:742.227000px;}
.y1f4{bottom:742.233000px;}
.y2e0{bottom:742.266000px;}
.y3b3{bottom:742.405500px;}
.y1f0{bottom:743.814000px;}
.y373{bottom:747.019500px;}
.y180{bottom:747.942900px;}
.y7d{bottom:748.513500px;}
.y1d7{bottom:748.773000px;}
.y29e{bottom:748.935000px;}
.y2bf{bottom:748.992000px;}
.y25b{bottom:750.392250px;}
.y3{bottom:752.599495px;}
.y119{bottom:753.413700px;}
.y22c{bottom:754.959000px;}
.y301{bottom:755.397825px;}
.y32d{bottom:756.499500px;}
.y390{bottom:757.770900px;}
.y1f2{bottom:759.954000px;}
.y372{bottom:763.271250px;}
.y34b{bottom:763.896000px;}
.y3ad{bottom:764.074500px;}
.y64{bottom:764.290500px;}
.y1ed{bottom:764.386500px;}
.y25{bottom:765.090000px;}
.ya0{bottom:766.267500px;}
.y25a{bottom:767.092875px;}
.y17f{bottom:768.328500px;}
.y29d{bottom:770.604000px;}
.y118{bottom:770.748900px;}
.y300{bottom:773.816475px;}
.y38f{bottom:775.106100px;}
.y7c{bottom:775.404000px;}
.y36{bottom:776.250000px;}
.y229{bottom:776.626500px;}
.y2df{bottom:778.879500px;}
.y371{bottom:779.523000px;}
.y1ef{bottom:781.423500px;}
.y259{bottom:783.344625px;}
.y1d6{bottom:784.197900px;}
.y2be{bottom:785.604000px;}
.y17e{bottom:785.662500px;}
.y63{bottom:786.646500px;}
.y1ee{bottom:786.802500px;}
.y117{bottom:788.084100px;}
.y38e{bottom:792.441300px;}
.y2ff{bottom:792.742575px;}
.y9f{bottom:793.159500px;}
.y370{bottom:795.774750px;}
.y1d5{bottom:798.543900px;}
.y258{bottom:799.595250px;}
.y2de{bottom:800.548500px;}
.y7b{bottom:802.296000px;}
.y17d{bottom:802.997700px;}
.y116{bottom:805.419300px;}
.y32c{bottom:806.001000px;}
.y29c{bottom:806.529000px;}
.y2bd{bottom:807.273000px;}
.y62{bottom:809.002500px;}
.y4b{bottom:809.729850px;}
.y38d{bottom:809.775300px;}
.y2fe{bottom:811.161225px;}
.y36f{bottom:812.474250px;}
.y257{bottom:816.295875px;}
.y1d4{bottom:818.928300px;}
.y9e{bottom:820.050000px;}
.y17c{bottom:820.332900px;}
.y32b{bottom:820.347000px;}
.y2dd{bottom:822.216000px;}
.y115{bottom:822.753300px;}
.y38c{bottom:827.110500px;}
.y29b{bottom:828.196500px;}
.y36e{bottom:828.726000px;}
.y2bc{bottom:828.942000px;}
.y7a{bottom:829.186500px;}
.y2fd{bottom:829.579875px;}
.y24{bottom:830.518893px;}
.y61{bottom:831.358500px;}
.y4a{bottom:832.049850px;}
.y256{bottom:832.546500px;}
.y1d3{bottom:836.263500px;}
.y17b{bottom:837.668100px;}
.y114{bottom:840.088500px;}
.y32a{bottom:840.732600px;}
.y38b{bottom:844.445700px;}
.y36d{bottom:844.977750px;}
.y9d{bottom:846.940500px;}
.y2fc{bottom:847.998525px;}
.y29a{bottom:849.865500px;}
.y1d2{bottom:853.598700px;}
.y49{bottom:854.009850px;}
.y17a{bottom:855.003300px;}
.y255{bottom:855.272625px;}
.y79{bottom:856.077000px;}
.y113{bottom:857.423700px;}
.y329{bottom:858.067800px;}
.y2dc{bottom:858.829500px;}
.y36c{bottom:861.677250px;}
.y38a{bottom:861.780900px;}
.y60{bottom:863.413500px;}
.y2bb{bottom:865.554000px;}
.y2fb{bottom:866.417175px;}
.y1d1{bottom:870.933900px;}
.y23{bottom:871.109460px;}
.y179{bottom:872.337300px;}
.y9c{bottom:873.831000px;}
.y19b{bottom:874.585500px;}
.y112{bottom:875.236500px;}
.y328{bottom:875.401800px;}
.y48{bottom:875.879850px;}
.y36b{bottom:877.929000px;}
.y389{bottom:879.116100px;}
.y2{bottom:879.369000px;}
.y213{bottom:880.218000px;}
.y2db{bottom:880.498500px;}
.y35{bottom:882.269460px;}
.y78{bottom:882.967500px;}
.y2fa{bottom:885.343275px;}
.y299{bottom:885.790500px;}
.y2ba{bottom:887.223000px;}
.y242{bottom:887.316000px;}
.y1d0{bottom:888.269100px;}
.y254{bottom:888.541500px;}
.y178{bottom:890.151300px;}
.y111{bottom:892.571700px;}
.y327{bottom:892.737000px;}
.y36a{bottom:894.180750px;}
.y388{bottom:896.451300px;}
.y47{bottom:897.839850px;}
.y9b{bottom:900.721500px;}
.y2f9{bottom:903.761925px;}
.y1cf{bottom:905.604300px;}
.y298{bottom:907.458000px;}
.y177{bottom:907.486500px;}
.y77{bottom:909.859500px;}
.y110{bottom:909.906900px;}
.y326{bottom:910.072200px;}
.y369{bottom:910.432500px;}
.y22{bottom:911.340000px;}
.y387{bottom:913.785300px;}
.y2da{bottom:917.110500px;}
.y46{bottom:920.069850px;}
.y2f8{bottom:922.180575px;}
.y34{bottom:922.500000px;}
.y1ce{bottom:923.417100px;}
.y2b9{bottom:923.835000px;}
.y176{bottom:925.299300px;}
.y368{bottom:926.683125px;}
.y10f{bottom:927.242100px;}
.y325{bottom:927.407400px;}
.y9a{bottom:927.613500px;}
.y386{bottom:931.599300px;}
.y76{bottom:936.750000px;}
.y2d9{bottom:938.779500px;}
.y1cd{bottom:940.752300px;}
.y2f7{bottom:941.106675px;}
.y45{bottom:942.389850px;}
.y175{bottom:942.634500px;}
.y297{bottom:943.383000px;}
.y367{bottom:943.383750px;}
.y10e{bottom:944.577300px;}
.y324{bottom:945.220200px;}
.y2b8{bottom:945.504000px;}
.y99{bottom:954.504000px;}
.y385{bottom:955.839300px;}
.y1cc{bottom:958.086300px;}
.y366{bottom:959.634375px;}
.y174{bottom:959.968500px;}
.y2d8{bottom:960.448500px;}
.y10d{bottom:961.911300px;}
.y323{bottom:962.555400px;}
.y75{bottom:963.640500px;}
.y44{bottom:964.619850px;}
.y296{bottom:965.052000px;}
.y1{bottom:966.726000px;}
.y2f6{bottom:966.861675px;}
.y1cb{bottom:975.421500px;}
.y365{bottom:975.886125px;}
.y10c{bottom:979.246500px;}
.y322{bottom:980.368200px;}
.y98{bottom:981.394500px;}
.y2b7{bottom:982.117500px;}
.y43{bottom:986.579850px;}
.y74{bottom:990.531000px;}
.y364{bottom:992.586750px;}
.y384{bottom:992.766000px;}
.y1ca{bottom:993.235500px;}
.y10b{bottom:996.581700px;}
.y173{bottom:996.895500px;}
.y2d7{bottom:997.060500px;}
.y321{bottom:997.703400px;}
.y295{bottom:1000.975500px;}
.y34a{bottom:1001.340000px;}
.y3ac{bottom:1001.518500px;}
.y2f5{bottom:1001.709000px;}
.y2b6{bottom:1003.786500px;}
.y97{bottom:1008.285000px;}
.y42{bottom:1008.809850px;}
.y363{bottom:1008.837375px;}
.y1c9{bottom:1010.569500px;}
.y10a{bottom:1013.916900px;}
.y228{bottom:1014.070500px;}
.y383{bottom:1014.435000px;}
.y73{bottom:1017.423000px;}
.y2d6{bottom:1018.729500px;}
.y294{bottom:1022.644500px;}
.y1c8{bottom:1027.904700px;}
.y41{bottom:1031.039850px;}
.y109{bottom:1031.252100px;}
.y362{bottom:1031.563500px;}
.y320{bottom:1034.631000px;}
.y96{bottom:1035.177000px;}
.y2b5{bottom:1040.398500px;}
.y28{bottom:1045.890000px;}
.y40{bottom:1053.269850px;}
.y31f{bottom:1056.298500px;}
.y72{bottom:1062.067500px;}
.yc9{bottom:1064.832000px;}
.y3f{bottom:1075.499850px;}
.y3e{bottom:1097.729850px;}
.y30{bottom:1148.310000px;}
.y2f{bottom:1186.560000px;}
.h35{height:0.000000px;}
.hf{height:4.079004px;}
.h31{height:13.100228px;}
.h2f{height:17.466891px;}
.h3a{height:17.466970px;}
.h30{height:21.863118px;}
.h11{height:23.220000px;}
.he{height:23.310000px;}
.h36{height:25.643904px;}
.h28{height:26.200336px;}
.h21{height:27.947025px;}
.h1d{height:29.499174px;}
.h18{height:29.500020px;}
.h7{height:32.130000px;}
.h29{height:32.809430px;}
.h34{height:33.187496px;}
.h3d{height:34.430746px;}
.h2a{height:34.933781px;}
.h22{height:34.980989px;}
.h2b{height:35.913271px;}
.h26{height:36.726129px;}
.h44{height:36.727603px;}
.h40{height:39.021512px;}
.h14{height:40.314960px;}
.h3c{height:40.402598px;}
.h23{height:41.544042px;}
.h43{height:43.095384px;}
.h25{height:43.096105px;}
.h15{height:45.468000px;}
.h3f{height:45.789612px;}
.h16{height:45.883254px;}
.h6{height:45.900000px;}
.h1e{height:45.907661px;}
.h19{height:45.909504px;}
.h3b{height:46.374221px;}
.h10{height:47.988281px;}
.h3{height:48.195000px;}
.h32{height:49.156405px;}
.h42{height:49.465008px;}
.h24{height:49.465836px;}
.h17{height:49.992188px;}
.h3e{height:52.557450px;}
.h2c{height:53.798400px;}
.hd{height:54.504000px;}
.h2{height:55.080000px;}
.hc{height:56.004840px;}
.h12{height:56.664000px;}
.h33{height:60.426194px;}
.h13{height:60.624000px;}
.h41{height:61.831260px;}
.h1b{height:61.832294px;}
.h1c{height:61.941271px;}
.h1f{height:61.947271px;}
.h37{height:62.803496px;}
.h38{height:71.528400px;}
.h1a{height:72.511265px;}
.hb{height:72.762840px;}
.h5{height:78.030000px;}
.h39{height:79.568294px;}
.ha{height:81.756000px;}
.h9{height:100.014840px;}
.h4{height:119.055004px;}
.h2d{height:128.156294px;}
.h2e{height:216.000000px;}
.h20{height:345.600000px;}
.h27{height:432.000000px;}
.h8{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w4{width:271.800000px;}
.w8{width:324.000000px;}
.w5{width:347.310000px;}
.w6{width:518.400000px;}
.w2{width:637.794021px;}
.w7{width:648.000000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x7d{left:11.985083px;}
.x20{left:15.878997px;}
.x32{left:16.908750px;}
.x9{left:22.500000px;}
.x7e{left:23.557879px;}
.x2f{left:24.771581px;}
.x19{left:27.054000px;}
.x42{left:28.257335px;}
.x31{left:30.100248px;}
.x30{left:31.760585px;}
.x21{left:35.644252px;}
.x18{left:39.858352px;}
.x43{left:41.813852px;}
.x33{left:45.165227px;}
.x17{left:55.855136px;}
.x6{left:56.880711px;}
.x5{left:58.410000px;}
.x61{left:60.373941px;}
.x1a{left:65.313476px;}
.xd{left:68.670000px;}
.xa{left:70.200000px;}
.xe{left:71.280000px;}
.x11{left:74.160000px;}
.x44{left:88.540722px;}
.x34{left:91.304847px;}
.x1{left:102.045000px;}
.x68{left:103.891191px;}
.x2{left:106.297500px;}
.x7{left:108.990000px;}
.x45{left:111.899097px;}
.x35{left:114.379722px;}
.x2e{left:116.745000px;}
.xa2{left:119.113875px;}
.x29{left:120.279000px;}
.x8{left:122.130000px;}
.xa6{left:123.253500px;}
.x78{left:125.554500px;}
.x76{left:126.652875px;}
.x14{left:128.190000px;}
.x71{left:130.273500px;}
.xb{left:132.840000px;}
.xf{left:135.000000px;}
.x2d{left:136.080300px;}
.x36{left:137.454597px;}
.x83{left:141.981000px;}
.x79{left:143.050500px;}
.xc{left:145.980000px;}
.x69{left:150.607941px;}
.x62{left:152.653191px;}
.x13{left:154.666500px;}
.x6b{left:157.310741px;}
.x46{left:158.625972px;}
.x37{left:160.519347px;}
.x25{left:167.265000px;}
.xa8{left:168.419250px;}
.xaa{left:169.462125px;}
.x72{left:172.294500px;}
.x1e{left:178.198800px;}
.x6d{left:179.458500px;}
.x47{left:181.984357px;}
.x38{left:183.594232px;}
.x6f{left:188.002500px;}
.xac{left:189.621000px;}
.x4f{left:191.838000px;}
.xa0{left:193.933500px;}
.x8c{left:195.106500px;}
.x16{left:196.873500px;}
.x6a{left:198.746196px;}
.x63{left:200.204196px;}
.x4{left:203.484001px;}
.x48{left:205.352857px;}
.x39{left:206.658982px;}
.x4a{left:214.191000px;}
.x66{left:216.642000px;}
.x51{left:226.242000px;}
.x10{left:228.150330px;}
.x3a{left:229.733857px;}
.x27{left:230.965500px;}
.x89{left:232.159500px;}
.xa5{left:234.358800px;}
.x1f{left:238.644000px;}
.x3e{left:242.580000px;}
.x64{left:246.343821px;}
.x3b{left:252.798607px;}
.xa1{left:258.770250px;}
.x50{left:263.127000px;}
.x77{left:268.207125px;}
.x75{left:271.799250px;}
.x1b{left:274.668975px;}
.x3c{left:275.873482px;}
.x74{left:279.826500px;}
.x8d{left:288.552900px;}
.x65{left:292.483446px;}
.x15{left:295.941000px;}
.x41{left:297.000000px;}
.x3d{left:298.948357px;}
.x8e{left:305.888100px;}
.xa3{left:307.881600px;}
.x8f{left:323.223300px;}
.x22{left:330.381756px;}
.x8b{left:335.410500px;}
.x90{left:340.557300px;}
.x1c{left:343.164000px;}
.x23{left:345.246522px;}
.xa7{left:351.969000px;}
.xa4{left:353.521200px;}
.x91{left:358.371300px;}
.x49{left:368.715000px;}
.x7c{left:371.530725px;}
.x28{left:374.283000px;}
.x6c{left:376.206000px;}
.x73{left:378.073500px;}
.x7b{left:384.794550px;}
.x84{left:386.026500px;}
.x2a{left:387.481500px;}
.x80{left:390.643200px;}
.x82{left:393.102000px;}
.x2b{left:395.906700px;}
.x86{left:397.508700px;}
.x88{left:400.919100px;}
.x81{left:405.585600px;}
.x7a{left:407.283000px;}
.x87{left:408.681900px;}
.x92{left:410.854500px;}
.x55{left:412.033500px;}
.x54{left:414.219000px;}
.x53{left:415.645500px;}
.x52{left:416.973000px;}
.x12{left:426.015000px;}
.x1d{left:428.223600px;}
.x93{left:445.523700px;}
.x56{left:448.150500px;}
.x26{left:450.222000px;}
.x3{left:454.959000px;}
.x57{left:462.729000px;}
.x24{left:465.596503px;}
.x3f{left:466.653000px;}
.x4e{left:468.535200px;}
.x7f{left:471.747000px;}
.x5e{left:479.139000px;}
.x4b{left:481.018800px;}
.x4c{left:488.545200px;}
.x5b{left:492.607500px;}
.x5a{left:494.794500px;}
.x59{left:496.221000px;}
.x58{left:497.548500px;}
.x6e{left:507.397500px;}
.x85{left:508.912500px;}
.x70{left:515.490000px;}
.xa9{left:518.311500px;}
.xab{left:526.405500px;}
.x5c{left:528.726000px;}
.x94{left:532.677300px;}
.x95{left:550.490100px;}
.x67{left:563.589000px;}
.x96{left:567.825300px;}
.x8a{left:569.026500px;}
.x40{left:584.755500px;}
.x97{left:602.495700px;}
.x98{left:619.829700px;}
.x99{left:637.643700px;}
.x2c{left:648.056700px;}
.x9a{left:654.977700px;}
.x9b{left:672.312900px;}
.x5d{left:676.677000px;}
.x9c{left:692.698500px;}
.x9d{left:707.044500px;}
.x9e{left:721.390500px;}
.x4d{left:730.807200px;}
.x9f{left:735.736500px;}
.x60{left:772.759500px;}
.x5f{left:787.569000px;}
@media print{
.v2{vertical-align:-19.280000pt;}
.v4{vertical-align:-9.568000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:15.760000pt;}
.v6{vertical-align:18.508800pt;}
.v1{vertical-align:21.440000pt;}
.v3{vertical-align:23.136000pt;}
.v7{vertical-align:26.325333pt;}
.v5{vertical-align:58.954667pt;}
.ls23{letter-spacing:-4.848000pt;}
.ls5{letter-spacing:-0.070400pt;}
.lsa{letter-spacing:-0.042720pt;}
.ls4{letter-spacing:-0.034176pt;}
.ls1f{letter-spacing:-0.028800pt;}
.ls1d{letter-spacing:-0.024000pt;}
.ls6{letter-spacing:-0.019200pt;}
.ls3{letter-spacing:-0.017088pt;}
.ls7{letter-spacing:-0.012800pt;}
.ls1e{letter-spacing:-0.009600pt;}
.ls0{letter-spacing:0.000000pt;}
.ls66{letter-spacing:0.000159pt;}
.ls60{letter-spacing:0.000391pt;}
.lsa1{letter-spacing:0.000420pt;}
.lsbb{letter-spacing:0.000479pt;}
.ls69{letter-spacing:0.000679pt;}
.ls5e{letter-spacing:0.000882pt;}
.ls63{letter-spacing:0.000990pt;}
.ls6b{letter-spacing:0.001338pt;}
.ls97{letter-spacing:0.002717pt;}
.lsc9{letter-spacing:0.002987pt;}
.ls96{letter-spacing:0.003046pt;}
.ls65{letter-spacing:0.003086pt;}
.ls9e{letter-spacing:0.004492pt;}
.ls8d{letter-spacing:0.005137pt;}
.ls6f{letter-spacing:0.005724pt;}
.ls1a{letter-spacing:0.009600pt;}
.ls8{letter-spacing:0.019200pt;}
.ls12{letter-spacing:0.024000pt;}
.ls10{letter-spacing:0.025600pt;}
.ls1{letter-spacing:0.032000pt;}
.ls14{letter-spacing:0.043200pt;}
.lsc{letter-spacing:0.044800pt;}
.lsb{letter-spacing:0.051200pt;}
.ls20{letter-spacing:0.052800pt;}
.lsf{letter-spacing:0.057600pt;}
.ls2{letter-spacing:0.058720pt;}
.ls11{letter-spacing:0.063840pt;}
.lsd{letter-spacing:0.064000pt;}
.ls1c{letter-spacing:0.070400pt;}
.ls13{letter-spacing:0.072000pt;}
.lse{letter-spacing:0.076800pt;}
.ls15{letter-spacing:0.096000pt;}
.ls18{letter-spacing:0.100800pt;}
.ls1b{letter-spacing:0.105600pt;}
.ls19{letter-spacing:0.110400pt;}
.ls16{letter-spacing:0.115200pt;}
.ls9{letter-spacing:0.117440pt;}
.ls17{letter-spacing:0.134400pt;}
.ls98{letter-spacing:1.730253pt;}
.ls9c{letter-spacing:1.735586pt;}
.ls5f{letter-spacing:2.653258pt;}
.ls22{letter-spacing:2.654410pt;}
.ls37{letter-spacing:2.655017pt;}
.ls76{letter-spacing:2.655321pt;}
.ls38{letter-spacing:2.656426pt;}
.ls64{letter-spacing:2.658591pt;}
.lsa5{letter-spacing:2.659733pt;}
.ls95{letter-spacing:3.687675pt;}
.ls94{letter-spacing:4.907189pt;}
.ls9a{letter-spacing:4.912522pt;}
.ls25{letter-spacing:5.520000pt;}
.ls24{letter-spacing:5.530667pt;}
.ls26{letter-spacing:5.578667pt;}
.ls27{letter-spacing:5.589333pt;}
.lsac{letter-spacing:5.798836pt;}
.lsa3{letter-spacing:7.123461pt;}
.lsa7{letter-spacing:7.563189pt;}
.ls9b{letter-spacing:7.568522pt;}
.ls62{letter-spacing:8.671524pt;}
.ls4d{letter-spacing:10.910087pt;}
.ls4e{letter-spacing:10.913309pt;}
.lsb5{letter-spacing:11.070021pt;}
.ls7b{letter-spacing:12.043520pt;}
.lsb2{letter-spacing:12.543321pt;}
.ls57{letter-spacing:12.837174pt;}
.ls9d{letter-spacing:13.028654pt;}
.ls7a{letter-spacing:13.177199pt;}
.lsb6{letter-spacing:13.466800pt;}
.ls70{letter-spacing:13.494642pt;}
.ls6d{letter-spacing:14.049980pt;}
.ls6c{letter-spacing:14.053137pt;}
.lscb{letter-spacing:14.138453pt;}
.lsbe{letter-spacing:14.164053pt;}
.ls5d{letter-spacing:14.164905pt;}
.ls51{letter-spacing:14.166642pt;}
.lsc7{letter-spacing:14.167467pt;}
.lsc1{letter-spacing:14.167472pt;}
.ls88{letter-spacing:14.168320pt;}
.ls50{letter-spacing:14.168753pt;}
.lsc0{letter-spacing:14.169131pt;}
.ls61{letter-spacing:14.170238pt;}
.ls53{letter-spacing:14.170647pt;}
.lscc{letter-spacing:15.047925pt;}
.ls7f{letter-spacing:15.320027pt;}
.ls6e{letter-spacing:15.404699pt;}
.lsa8{letter-spacing:15.621461pt;}
.lsba{letter-spacing:16.196240pt;}
.lsc8{letter-spacing:16.250453pt;}
.ls21{letter-spacing:16.453333pt;}
.ls55{letter-spacing:16.790344pt;}
.ls9f{letter-spacing:16.820654pt;}
.lsa0{letter-spacing:16.822187pt;}
.ls5c{letter-spacing:16.823925pt;}
.ls67{letter-spacing:16.825067pt;}
.ls68{letter-spacing:16.825987pt;}
.ls56{letter-spacing:16.832851pt;}
.ls2c{letter-spacing:16.938470pt;}
.ls59{letter-spacing:17.215373pt;}
.lsb4{letter-spacing:17.503321pt;}
.ls3c{letter-spacing:17.693578pt;}
.ls7d{letter-spacing:17.704753pt;}
.ls93{letter-spacing:17.706238pt;}
.ls73{letter-spacing:17.707976pt;}
.ls80{letter-spacing:17.709361pt;}
.ls48{letter-spacing:17.709956pt;}
.ls72{letter-spacing:17.710087pt;}
.ls5b{letter-spacing:17.711572pt;}
.ls81{letter-spacing:17.746711pt;}
.ls84{letter-spacing:17.889980pt;}
.ls85{letter-spacing:17.893137pt;}
.ls3f{letter-spacing:17.916860pt;}
.ls3e{letter-spacing:17.980621pt;}
.lsb3{letter-spacing:18.137987pt;}
.lsb8{letter-spacing:18.235665pt;}
.ls35{letter-spacing:18.299426pt;}
.ls36{letter-spacing:18.363187pt;}
.ls52{letter-spacing:18.490709pt;}
.lsca{letter-spacing:18.788135pt;}
.ls2d{letter-spacing:18.847804pt;}
.ls8a{letter-spacing:18.873276pt;}
.ls8e{letter-spacing:19.031366pt;}
.lsa9{letter-spacing:19.128320pt;}
.ls4c{letter-spacing:19.208753pt;}
.ls40{letter-spacing:19.319603pt;}
.ls41{letter-spacing:19.383364pt;}
.ls33{letter-spacing:19.510886pt;}
.ls4f{letter-spacing:19.532699pt;}
.ls83{letter-spacing:19.573137pt;}
.ls34{letter-spacing:19.574647pt;}
.lsb7{letter-spacing:19.638409pt;}
.ls58{letter-spacing:19.702170pt;}
.lsbf{letter-spacing:19.838379pt;}
.lsae{letter-spacing:19.918400pt;}
.lsb9{letter-spacing:20.007557pt;}
.ls5a{letter-spacing:20.350271pt;}
.lsad{letter-spacing:20.556169pt;}
.ls8c{letter-spacing:20.607804pt;}
.ls46{letter-spacing:20.786108pt;}
.ls91{letter-spacing:20.803420pt;}
.lsc2{letter-spacing:20.804437pt;}
.ls90{letter-spacing:20.810470pt;}
.ls2b{letter-spacing:20.849869pt;}
.lsbc{letter-spacing:20.926379pt;}
.ls39{letter-spacing:20.977391pt;}
.ls30{letter-spacing:21.041152pt;}
.ls31{letter-spacing:21.104913pt;}
.ls74{letter-spacing:21.168674pt;}
.ls54{letter-spacing:21.933807pt;}
.ls89{letter-spacing:22.345046pt;}
.lsaf{letter-spacing:22.508169pt;}
.ls29{letter-spacing:22.571418pt;}
.ls3b{letter-spacing:22.635027pt;}
.ls45{letter-spacing:23.017745pt;}
.ls44{letter-spacing:23.081506pt;}
.lsb1{letter-spacing:23.500169pt;}
.ls8f{letter-spacing:23.573137pt;}
.ls7e{letter-spacing:23.719117pt;}
.ls3a{letter-spacing:24.292966pt;}
.ls78{letter-spacing:24.675533pt;}
.ls2a{letter-spacing:24.803055pt;}
.ls2e{letter-spacing:24.866816pt;}
.ls2f{letter-spacing:24.930577pt;}
.ls43{letter-spacing:24.994338pt;}
.lsa4{letter-spacing:25.039321pt;}
.lsa6{letter-spacing:25.435520pt;}
.ls28{letter-spacing:25.695710pt;}
.lsaa{letter-spacing:25.823232pt;}
.lsb0{letter-spacing:25.894836pt;}
.ls7c{letter-spacing:25.998087pt;}
.ls71{letter-spacing:26.378191pt;}
.lsab{letter-spacing:26.397082pt;}
.ls99{letter-spacing:27.199321pt;}
.ls92{letter-spacing:27.672303pt;}
.ls77{letter-spacing:27.863586pt;}
.ls8b{letter-spacing:29.039804pt;}
.ls75{letter-spacing:29.203733pt;}
.ls3d{letter-spacing:30.160426pt;}
.ls82{letter-spacing:30.222746pt;}
.ls32{letter-spacing:31.243093pt;}
.ls42{letter-spacing:31.312426pt;}
.ls79{letter-spacing:31.738191pt;}
.ls4a{letter-spacing:32.192426pt;}
.lsa2{letter-spacing:32.879321pt;}
.ls49{letter-spacing:51.925759pt;}
.ls4b{letter-spacing:53.008426pt;}
.ls47{letter-spacing:54.341759pt;}
.lsc5{letter-spacing:71.486033pt;}
.lsc3{letter-spacing:72.198566pt;}
.lsc6{letter-spacing:73.551100pt;}
.lsc4{letter-spacing:90.617766pt;}
.ls87{letter-spacing:91.039940pt;}
.ls86{letter-spacing:92.972740pt;}
.lsbd{letter-spacing:120.351940pt;}
.ls6a{letter-spacing:357.451657pt;}
.ws123{word-spacing:-40.590295pt;}
.ws190{word-spacing:-38.964388pt;}
.wsfe{word-spacing:-32.472236pt;}
.ws9{word-spacing:-31.708800pt;}
.ws3d{word-spacing:-31.211042pt;}
.ws126{word-spacing:-29.521250pt;}
.wsd6{word-spacing:-26.561620pt;}
.ws14b{word-spacing:-24.968834pt;}
.ws253{word-spacing:-24.968416pt;}
.ws13e{word-spacing:-22.575574pt;}
.ws1e5{word-spacing:-19.921215pt;}
.ws130{word-spacing:-17.694585pt;}
.ws20b{word-spacing:-17.374891pt;}
.ws1f9{word-spacing:-17.311130pt;}
.ws13b{word-spacing:-17.247369pt;}
.ws12b{word-spacing:-17.183607pt;}
.wsd8{word-spacing:-17.056085pt;}
.ws140{word-spacing:-16.992324pt;}
.ws2a8{word-spacing:-16.970272pt;}
.ws144{word-spacing:-16.864802pt;}
.ws170{word-spacing:-16.801041pt;}
.wsf{word-spacing:-16.793600pt;}
.ws1ea{word-spacing:-16.673519pt;}
.ws238{word-spacing:-16.609758pt;}
.ws78{word-spacing:-16.545997pt;}
.ws64{word-spacing:-16.290953pt;}
.ws1ef{word-spacing:-16.163430pt;}
.wsc2{word-spacing:-16.099669pt;}
.ws4c{word-spacing:-16.035908pt;}
.ws8b{word-spacing:-15.972147pt;}
.wsc7{word-spacing:-15.844625pt;}
.ws129{word-spacing:-15.809210pt;}
.ws2a7{word-spacing:-15.739323pt;}
.ws1a1{word-spacing:-15.589581pt;}
.ws1a0{word-spacing:-15.525820pt;}
.ws1f7{word-spacing:-15.398298pt;}
.wsbb{word-spacing:-15.334537pt;}
.ws9a{word-spacing:-15.270775pt;}
.ws141{word-spacing:-15.207014pt;}
.ws13c{word-spacing:-14.824448pt;}
.ws163{word-spacing:-14.760687pt;}
.ws145{word-spacing:-14.696926pt;}
.ws1f0{word-spacing:-14.633165pt;}
.wsec{word-spacing:-14.569404pt;}
.ws1a5{word-spacing:-14.505643pt;}
.wsfb{word-spacing:-14.441882pt;}
.ws65{word-spacing:-14.314359pt;}
.ws5d{word-spacing:-14.250598pt;}
.ws74{word-spacing:-14.123076pt;}
.ws8a{word-spacing:-13.868032pt;}
.ws57{word-spacing:-13.740510pt;}
.wsdf{word-spacing:-13.676749pt;}
.wsda{word-spacing:-13.612988pt;}
.ws1ac{word-spacing:-13.596956pt;}
.wsba{word-spacing:-13.549227pt;}
.ws1ad{word-spacing:-13.543823pt;}
.wsa1{word-spacing:-13.485466pt;}
.ws12d{word-spacing:-13.475919pt;}
.ws148{word-spacing:-13.437555pt;}
.ws176{word-spacing:-13.346347pt;}
.ws175{word-spacing:-13.339226pt;}
.ws88{word-spacing:-13.294182pt;}
.ws1f1{word-spacing:-13.278153pt;}
.ws9e{word-spacing:-13.230421pt;}
.wsf2{word-spacing:-13.166660pt;}
.ws13f{word-spacing:-13.102899pt;}
.ws8e{word-spacing:-13.039138pt;}
.ws63{word-spacing:-12.975377pt;}
.wse3{word-spacing:-12.959350pt;}
.ws67{word-spacing:-12.911616pt;}
.ws69{word-spacing:-12.847855pt;}
.ws12a{word-spacing:-12.807717pt;}
.ws49{word-spacing:-12.784094pt;}
.ws4b{word-spacing:-12.720333pt;}
.ws18f{word-spacing:-12.700725pt;}
.ws192{word-spacing:-12.696010pt;}
.ws128{word-spacing:-12.691530pt;}
.ws125{word-spacing:-12.690384pt;}
.wsf9{word-spacing:-12.656572pt;}
.ws12{word-spacing:-12.619200pt;}
.ws11{word-spacing:-12.595200pt;}
.ws138{word-spacing:-12.592811pt;}
.ws1a7{word-spacing:-12.529050pt;}
.ws70{word-spacing:-12.401527pt;}
.ws66{word-spacing:-12.337766pt;}
.ws16f{word-spacing:-12.274005pt;}
.ws43{word-spacing:-12.210244pt;}
.wsfa{word-spacing:-12.146483pt;}
.ws68{word-spacing:-12.082722pt;}
.wsf6{word-spacing:-12.018961pt;}
.wsf5{word-spacing:-11.955200pt;}
.wsa0{word-spacing:-11.891439pt;}
.ws9f{word-spacing:-11.827678pt;}
.ws6c{word-spacing:-11.763917pt;}
.wsed{word-spacing:-11.700156pt;}
.ws79{word-spacing:-11.636395pt;}
.ws117{word-spacing:-11.572634pt;}
.wsbf{word-spacing:-11.508873pt;}
.ws62{word-spacing:-11.445111pt;}
.ws7a{word-spacing:-11.381350pt;}
.ws196{word-spacing:-11.363760pt;}
.ws198{word-spacing:-11.357215pt;}
.ws199{word-spacing:-11.343531pt;}
.ws197{word-spacing:-11.341763pt;}
.ws1e7{word-spacing:-11.317589pt;}
.ws164{word-spacing:-11.259066pt;}
.wsca{word-spacing:-11.253828pt;}
.ws10{word-spacing:-11.214560pt;}
.ws81{word-spacing:-11.190067pt;}
.ws99{word-spacing:-11.126306pt;}
.ws1ab{word-spacing:-11.062545pt;}
.ws71{word-spacing:-10.998784pt;}
.wse2{word-spacing:-10.940263pt;}
.ws1ff{word-spacing:-10.935023pt;}
.ws195{word-spacing:-10.871262pt;}
.ws193{word-spacing:-10.860769pt;}
.ws205{word-spacing:-10.807501pt;}
.wsb9{word-spacing:-10.743740pt;}
.ws12e{word-spacing:-10.718985pt;}
.ws18b{word-spacing:-10.679979pt;}
.ws131{word-spacing:-10.675415pt;}
.ws7e{word-spacing:-10.616218pt;}
.ws56{word-spacing:-10.552457pt;}
.ws9b{word-spacing:-10.488695pt;}
.ws2e{word-spacing:-10.462425pt;}
.ws24e{word-spacing:-10.424951pt;}
.ws55{word-spacing:-10.424934pt;}
.ws1b2{word-spacing:-10.419571pt;}
.ws1b1{word-spacing:-10.408924pt;}
.wsf8{word-spacing:-10.407922pt;}
.ws28e{word-spacing:-10.367480pt;}
.ws172{word-spacing:-10.361173pt;}
.ws24d{word-spacing:-10.360936pt;}
.ws28d{word-spacing:-10.324973pt;}
.ws86{word-spacing:-10.297412pt;}
.ws85{word-spacing:-10.233651pt;}
.ws11b{word-spacing:-10.196389pt;}
.ws76{word-spacing:-10.169890pt;}
.ws243{word-spacing:-10.120964pt;}
.ws77{word-spacing:-10.106129pt;}
.ws1{word-spacing:-10.071360pt;}
.ws133{word-spacing:-10.061090pt;}
.ws132{word-spacing:-10.042368pt;}
.ws1b9{word-spacing:-9.983854pt;}
.ws19c{word-spacing:-9.978607pt;}
.ws9d{word-spacing:-9.914846pt;}
.ws1b8{word-spacing:-9.877586pt;}
.wsb7{word-spacing:-9.851085pt;}
.ws1b7{word-spacing:-9.824452pt;}
.ws27c{word-spacing:-9.799213pt;}
.ws59{word-spacing:-9.787324pt;}
.ws96{word-spacing:-9.771318pt;}
.ws6a{word-spacing:-9.723563pt;}
.ws111{word-spacing:-9.695892pt;}
.ws188{word-spacing:-9.688620pt;}
.wse4{word-spacing:-9.665050pt;}
.ws1c3{word-spacing:-9.648568pt;}
.ws2a2{word-spacing:-9.648565pt;}
.ws168{word-spacing:-9.645179pt;}
.ws167{word-spacing:-9.644207pt;}
.ws169{word-spacing:-9.643235pt;}
.ws1c4{word-spacing:-9.643231pt;}
.ws1bb{word-spacing:-9.639846pt;}
.ws1e8{word-spacing:-9.596041pt;}
.ws44{word-spacing:-9.532279pt;}
.ws1b0{word-spacing:-9.505649pt;}
.wsd0{word-spacing:-9.468518pt;}
.ws82{word-spacing:-9.404757pt;}
.ws11c{word-spacing:-9.399381pt;}
.ws95{word-spacing:-9.346247pt;}
.wse1{word-spacing:-9.340996pt;}
.ws114{word-spacing:-9.313328pt;}
.ws94{word-spacing:-9.277235pt;}
.ws158{word-spacing:-9.219789pt;}
.ws1a6{word-spacing:-9.213474pt;}
.ws1c0{word-spacing:-9.165869pt;}
.ws12f{word-spacing:-9.154384pt;}
.ws5b{word-spacing:-9.149713pt;}
.ws124{word-spacing:-9.149051pt;}
.ws18e{word-spacing:-9.148197pt;}
.ws1c2{word-spacing:-9.143299pt;}
.wsb0{word-spacing:-9.133712pt;}
.ws6b{word-spacing:-9.085952pt;}
.ws9c{word-spacing:-9.022191pt;}
.ws24b{word-spacing:-9.015777pt;}
.ws80{word-spacing:-8.958430pt;}
.ws20d{word-spacing:-8.894669pt;}
.ws28f{word-spacing:-8.879732pt;}
.ws31{word-spacing:-8.868823pt;}
.ws7c{word-spacing:-8.868042pt;}
.ws21e{word-spacing:-8.861194pt;}
.ws19a{word-spacing:-8.830908pt;}
.ws19d{word-spacing:-8.824620pt;}
.ws7d{word-spacing:-8.814908pt;}
.ws224{word-spacing:-8.806997pt;}
.ws19e{word-spacing:-8.806622pt;}
.ws58{word-spacing:-8.767147pt;}
.ws22e{word-spacing:-8.712094pt;}
.wsb8{word-spacing:-8.703386pt;}
.ws3f{word-spacing:-8.639625pt;}
.ws24c{word-spacing:-8.633212pt;}
.wsc5{word-spacing:-8.575863pt;}
.ws1f5{word-spacing:-8.549239pt;}
.wsbe{word-spacing:-8.512102pt;}
.ws15c{word-spacing:-8.448341pt;}
.ws5a{word-spacing:-8.384580pt;}
.ws60{word-spacing:-8.360620pt;}
.wsfd{word-spacing:-8.339948pt;}
.wsa9{word-spacing:-8.336704pt;}
.wsf3{word-spacing:-8.320819pt;}
.wsff{word-spacing:-8.288939pt;}
.wsc8{word-spacing:-8.257058pt;}
.wsea{word-spacing:-8.230436pt;}
.wsb2{word-spacing:-8.193297pt;}
.ws1f2{word-spacing:-8.177302pt;}
.ws50{word-spacing:-8.129536pt;}
.wsaa{word-spacing:-8.124168pt;}
.ws1bf{word-spacing:-8.123126pt;}
.ws1ec{word-spacing:-8.071034pt;}
.ws121{word-spacing:-8.065775pt;}
.ws17d{word-spacing:-8.029590pt;}
.wsd7{word-spacing:-8.002014pt;}
.ws166{word-spacing:-7.964767pt;}
.wscc{word-spacing:-7.938253pt;}
.ws242{word-spacing:-7.910590pt;}
.ws122{word-spacing:-7.874492pt;}
.ws2a5{word-spacing:-7.868083pt;}
.ws27e{word-spacing:-7.846544pt;}
.ws1bd{word-spacing:-7.825576pt;}
.ws1cd{word-spacing:-7.818701pt;}
.wsef{word-spacing:-7.810731pt;}
.ws27f{word-spacing:-7.806693pt;}
.ws1be{word-spacing:-7.783068pt;}
.ws1d3{word-spacing:-7.770880pt;}
.ws1a9{word-spacing:-7.746970pt;}
.ws22c{word-spacing:-7.718491pt;}
.ws6f{word-spacing:-7.683209pt;}
.ws1ae{word-spacing:-7.645963pt;}
.ws5c{word-spacing:-7.619447pt;}
.ws1af{word-spacing:-7.592830pt;}
.wsd1{word-spacing:-7.555686pt;}
.ws236{word-spacing:-7.537836pt;}
.ws16e{word-spacing:-7.528025pt;}
.ws51{word-spacing:-7.491925pt;}
.wsab{word-spacing:-7.486562pt;}
.ws1c9{word-spacing:-7.485518pt;}
.ws41{word-spacing:-7.428164pt;}
.wsf0{word-spacing:-7.364403pt;}
.ws1df{word-spacing:-7.328489pt;}
.ws16d{word-spacing:-7.315489pt;}
.ws1de{word-spacing:-7.248788pt;}
.ws47{word-spacing:-7.236881pt;}
.ws2d{word-spacing:-7.221342pt;}
.ws108{word-spacing:-7.179448pt;}
.wsdb{word-spacing:-7.173120pt;}
.ws29d{word-spacing:-7.125636pt;}
.ws29e{word-spacing:-7.122666pt;}
.ws8c{word-spacing:-7.109359pt;}
.ws241{word-spacing:-7.103115pt;}
.ws10f{word-spacing:-7.102953pt;}
.ws249{word-spacing:-7.098848pt;}
.ws272{word-spacing:-7.095059pt;}
.ws270{word-spacing:-7.094634pt;}
.ws109{word-spacing:-7.094434pt;}
.ws15b{word-spacing:-7.086555pt;}
.ws22f{word-spacing:-7.086198pt;}
.ws98{word-spacing:-7.045598pt;}
.wseb{word-spacing:-7.008357pt;}
.ws229{word-spacing:-6.995871pt;}
.ws45{word-spacing:-6.981837pt;}
.ws89{word-spacing:-6.918076pt;}
.wsc3{word-spacing:-6.854315pt;}
.ws1a3{word-spacing:-6.795822pt;}
.ws162{word-spacing:-6.790554pt;}
.ws4a{word-spacing:-6.726793pt;}
.ws105{word-spacing:-6.711870pt;}
.wsaf{word-spacing:-6.689554pt;}
.ws54{word-spacing:-6.663031pt;}
.ws1b4{word-spacing:-6.640339pt;}
.ws1b6{word-spacing:-6.636420pt;}
.ws87{word-spacing:-6.599270pt;}
.ws107{word-spacing:-6.541842pt;}
.ws73{word-spacing:-6.535509pt;}
.ws194{word-spacing:-6.513531pt;}
.ws17f{word-spacing:-6.507852pt;}
.ws1ba{word-spacing:-6.477018pt;}
.ws48{word-spacing:-6.471748pt;}
.ws1e0{word-spacing:-6.451780pt;}
.ws1e3{word-spacing:-6.451387pt;}
.ws1e4{word-spacing:-6.448602pt;}
.ws280{word-spacing:-6.447387pt;}
.ws1f3{word-spacing:-6.423884pt;}
.ws230{word-spacing:-6.408741pt;}
.ws42{word-spacing:-6.407987pt;}
.ws234{word-spacing:-6.383740pt;}
.ws233{word-spacing:-6.382363pt;}
.ws235{word-spacing:-6.363578pt;}
.ws8d{word-spacing:-6.344226pt;}
.ws1dc{word-spacing:-6.292378pt;}
.ws240{word-spacing:-6.286799pt;}
.ws75{word-spacing:-6.280465pt;}
.ws3b{word-spacing:-6.216704pt;}
.ws11d{word-spacing:-6.211349pt;}
.ws228{word-spacing:-6.182922pt;}
.wsa6{word-spacing:-6.152943pt;}
.wsb4{word-spacing:-6.089182pt;}
.ws147{word-spacing:-6.051947pt;}
.ws40{word-spacing:-6.025421pt;}
.ws1eb{word-spacing:-5.998814pt;}
.wsb3{word-spacing:-5.961660pt;}
.ws26f{word-spacing:-5.946896pt;}
.ws8f{word-spacing:-5.897899pt;}
.ws1c7{word-spacing:-5.870244pt;}
.ws91{word-spacing:-5.869954pt;}
.ws92{word-spacing:-5.834138pt;}
.ws110{word-spacing:-5.785230pt;}
.wsde{word-spacing:-5.770377pt;}
.ws146{word-spacing:-5.733144pt;}
.ws93{word-spacing:-5.706615pt;}
.ws2c{word-spacing:-5.680557pt;}
.ws1a4{word-spacing:-5.680010pt;}
.ws4f{word-spacing:-5.642854pt;}
.ws3c{word-spacing:-5.579093pt;}
.ws11e{word-spacing:-5.520609pt;}
.ws3e{word-spacing:-5.515332pt;}
.wsbc{word-spacing:-5.451571pt;}
.ws4e{word-spacing:-5.387810pt;}
.wsa2{word-spacing:-5.324049pt;}
.ws2a4{word-spacing:-5.317651pt;}
.ws180{word-spacing:-5.275144pt;}
.ws72{word-spacing:-5.260288pt;}
.wsae{word-spacing:-5.254939pt;}
.ws106{word-spacing:-5.224122pt;}
.ws1da{word-spacing:-5.216417pt;}
.ws160{word-spacing:-5.196527pt;}
.ws1db{word-spacing:-5.176567pt;}
.ws136{word-spacing:-5.132766pt;}
.wsd5{word-spacing:-5.095538pt;}
.ws120{word-spacing:-5.069005pt;}
.ws290{word-spacing:-5.011586pt;}
.wsa7{word-spacing:-5.005244pt;}
.ws294{word-spacing:-4.979598pt;}
.ws292{word-spacing:-4.978302pt;}
.ws113{word-spacing:-4.977593pt;}
.ws29c{word-spacing:-4.969079pt;}
.ws22b{word-spacing:-4.963500pt;}
.ws6e{word-spacing:-4.941483pt;}
.ws11f{word-spacing:-4.936136pt;}
.wscb{word-spacing:-4.877722pt;}
.ws1c5{word-spacing:-4.850072pt;}
.wsdc{word-spacing:-4.813961pt;}
.ws165{word-spacing:-4.776735pt;}
.wse9{word-spacing:-4.670467pt;}
.ws134{word-spacing:-4.664620pt;}
.ws10a{word-spacing:-4.622677pt;}
.wsad{word-spacing:-4.617333pt;}
.ws209{word-spacing:-4.558916pt;}
.ws1ca{word-spacing:-4.552521pt;}
.wsb5{word-spacing:-4.495155pt;}
.ws19f{word-spacing:-4.483530pt;}
.ws19b{word-spacing:-4.470864pt;}
.ws139{word-spacing:-4.431394pt;}
.ws1f4{word-spacing:-4.404798pt;}
.ws26e{word-spacing:-4.331944pt;}
.wsc6{word-spacing:-4.303872pt;}
.wsac{word-spacing:-4.245396pt;}
.ws46{word-spacing:-4.240111pt;}
.ws177{word-spacing:-4.176350pt;}
.ws16b{word-spacing:-4.169956pt;}
.wsfc{word-spacing:-4.139128pt;}
.ws16c{word-spacing:-4.127449pt;}
.ws1a8{word-spacing:-4.112589pt;}
.wscd{word-spacing:-3.985067pt;}
.ws97{word-spacing:-3.926593pt;}
.wsdd{word-spacing:-3.921306pt;}
.wsa3{word-spacing:-3.857545pt;}
.ws22d{word-spacing:-3.834405pt;}
.ws15e{word-spacing:-3.793783pt;}
.wsd2{word-spacing:-3.730022pt;}
.wse6{word-spacing:-3.714057pt;}
.ws116{word-spacing:-3.602500pt;}
.ws27d{word-spacing:-3.542701pt;}
.ws1fb{word-spacing:-3.542395pt;}
.ws203{word-spacing:-3.540330pt;}
.ws18a{word-spacing:-3.538739pt;}
.ws201{word-spacing:-3.538246pt;}
.ws1fe{word-spacing:-3.523683pt;}
.ws1f6{word-spacing:-3.474978pt;}
.ws157{word-spacing:-3.438824pt;}
.ws183{word-spacing:-3.411217pt;}
.ws13d{word-spacing:-3.347456pt;}
.wsc0{word-spacing:-3.283695pt;}
.ws18d{word-spacing:-3.235852pt;}
.wscf{word-spacing:-3.219934pt;}
.ws11a{word-spacing:-3.182719pt;}
.wsa5{word-spacing:-3.156173pt;}
.ws119{word-spacing:-3.129585pt;}
.ws135{word-spacing:-3.092412pt;}
.ws181{word-spacing:-3.028651pt;}
.wsa8{word-spacing:-2.970183pt;}
.ws20e{word-spacing:-2.964890pt;}
.ws223{word-spacing:-2.953731pt;}
.ws1ed{word-spacing:-2.917049pt;}
.wsbd{word-spacing:-2.901129pt;}
.ws137{word-spacing:-2.837367pt;}
.wsc9{word-spacing:-2.773606pt;}
.ws26d{word-spacing:-2.758821pt;}
.wse8{word-spacing:-2.704514pt;}
.ws5e{word-spacing:-2.646084pt;}
.ws7f{word-spacing:-2.582323pt;}
.ws22a{word-spacing:-2.569819pt;}
.ws2a6{word-spacing:-2.510404pt;}
.ws29a{word-spacing:-2.503668pt;}
.ws29b{word-spacing:-2.461161pt;}
.wsc1{word-spacing:-2.454801pt;}
.ws15d{word-spacing:-2.391040pt;}
.wsc4{word-spacing:-2.263518pt;}
.ws184{word-spacing:-2.199757pt;}
.ws118{word-spacing:-2.135996pt;}
.ws30{word-spacing:-2.120020pt;}
.ws20f{word-spacing:-2.072235pt;}
.ws13a{word-spacing:-2.008474pt;}
.ws7b{word-spacing:-1.960640pt;}
.ws84{word-spacing:-1.944713pt;}
.ws15f{word-spacing:-1.625907pt;}
.ws142{word-spacing:-1.498385pt;}
.ws1aa{word-spacing:-1.434624pt;}
.ws2f{word-spacing:-1.323193pt;}
.wsa4{word-spacing:-1.243341pt;}
.ws21a{word-spacing:-1.179580pt;}
.ws104{word-spacing:-1.100934pt;}
.ws112{word-spacing:-1.024424pt;}
.ws173{word-spacing:-0.988297pt;}
.ws103{word-spacing:-0.930905pt;}
.wse7{word-spacing:-0.897962pt;}
.ws219{word-spacing:-0.860774pt;}
.wsce{word-spacing:-0.797013pt;}
.ws1e6{word-spacing:-0.733252pt;}
.ws1fc{word-spacing:-0.478208pt;}
.wsee{word-spacing:-0.436055pt;}
.ws83{word-spacing:-0.350686pt;}
.ws28{word-spacing:-0.206400pt;}
.ws27{word-spacing:-0.187200pt;}
.ws29{word-spacing:-0.182400pt;}
.ws2b{word-spacing:-0.177600pt;}
.ws1a{word-spacing:-0.172800pt;}
.ws26{word-spacing:-0.168000pt;}
.ws1c{word-spacing:-0.166400pt;}
.ws18{word-spacing:-0.160000pt;}
.ws1b{word-spacing:-0.153600pt;}
.ws19{word-spacing:-0.147200pt;}
.ws20{word-spacing:-0.144000pt;}
.ws15{word-spacing:-0.140800pt;}
.ws24{word-spacing:-0.129600pt;}
.ws25{word-spacing:-0.124800pt;}
.ws17{word-spacing:-0.096000pt;}
.ws1f{word-spacing:-0.091200pt;}
.ws2a{word-spacing:-0.081600pt;}
.wsf7{word-spacing:-0.063761pt;}
.ws22{word-spacing:-0.062400pt;}
.ws16{word-spacing:-0.057600pt;}
.wsd4{word-spacing:-0.053134pt;}
.ws21{word-spacing:-0.048000pt;}
.ws232{word-spacing:-0.045164pt;}
.ws1e{word-spacing:-0.044800pt;}
.ws23{word-spacing:-0.043200pt;}
.ws15a{word-spacing:-0.042507pt;}
.ws1e2{word-spacing:-0.039850pt;}
.wse5{word-spacing:-0.037194pt;}
.ws191{word-spacing:-0.031881pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:0.019200pt;}
.ws7{word-spacing:0.032000pt;}
.ws2{word-spacing:0.035232pt;}
.wsc{word-spacing:0.044800pt;}
.ws1d{word-spacing:0.057600pt;}
.wsd{word-spacing:0.059808pt;}
.ws8{word-spacing:0.076800pt;}
.ws4{word-spacing:0.076896pt;}
.wsa{word-spacing:0.083200pt;}
.ws5{word-spacing:0.093984pt;}
.ws14{word-spacing:0.102400pt;}
.wse{word-spacing:0.102528pt;}
.ws13{word-spacing:0.108800pt;}
.wsb{word-spacing:0.153600pt;}
.ws6{word-spacing:0.294400pt;}
.ws187{word-spacing:1.958612pt;}
.ws212{word-spacing:2.850511pt;}
.ws35{word-spacing:5.445333pt;}
.ws34{word-spacing:5.514667pt;}
.ws33{word-spacing:5.568000pt;}
.ws32{word-spacing:5.664000pt;}
.ws39{word-spacing:5.968000pt;}
.ws38{word-spacing:6.010667pt;}
.ws37{word-spacing:6.064000pt;}
.ws36{word-spacing:6.106667pt;}
.ws1cc{word-spacing:6.414336pt;}
.wse0{word-spacing:6.715945pt;}
.ws143{word-spacing:7.297278pt;}
.ws115{word-spacing:7.569278pt;}
.wsd9{word-spacing:7.825278pt;}
.ws1e9{word-spacing:9.435945pt;}
.wsb6{word-spacing:9.787324pt;}
.ws1dd{word-spacing:11.038561pt;}
.ws1e1{word-spacing:11.357364pt;}
.ws159{word-spacing:11.774465pt;}
.ws271{word-spacing:11.774895pt;}
.ws1c1{word-spacing:12.497117pt;}
.ws127{word-spacing:14.091196pt;}
.ws231{word-spacing:14.407248pt;}
.ws1b3{word-spacing:14.718081pt;}
.ws18c{word-spacing:14.907945pt;}
.ws293{word-spacing:15.217539pt;}
.ws291{word-spacing:15.260047pt;}
.ws20c{word-spacing:15.876506pt;}
.ws27b{word-spacing:16.078272pt;}
.ws28c{word-spacing:17.209890pt;}
.ws1cb{word-spacing:17.470459pt;}
.ws12c{word-spacing:17.661815pt;}
.ws1c6{word-spacing:18.108067pt;}
.ws21c{word-spacing:18.235665pt;}
.ws17c{word-spacing:18.366157pt;}
.ws1b5{word-spacing:18.407804pt;}
.ws1f8{word-spacing:18.681993pt;}
.wsf1{word-spacing:19.128320pt;}
.ws1d0{word-spacing:19.271782pt;}
.ws24a{word-spacing:19.280376pt;}
.ws1d6{word-spacing:19.319603pt;}
.ws186{word-spacing:19.765931pt;}
.ws1bc{word-spacing:19.883042pt;}
.ws1c8{word-spacing:20.069709pt;}
.ws214{word-spacing:20.148497pt;}
.ws1fa{word-spacing:20.212258pt;}
.ws23f{word-spacing:20.409890pt;}
.ws1d9{word-spacing:20.550272pt;}
.ws25a{word-spacing:20.554439pt;}
.ws251{word-spacing:20.555306pt;}
.ws265{word-spacing:20.556122pt;}
.ws100{word-spacing:20.556568pt;}
.ws101{word-spacing:20.607577pt;}
.ws202{word-spacing:20.849869pt;}
.ws10e{word-spacing:20.859042pt;}
.ws204{word-spacing:20.977391pt;}
.ws21d{word-spacing:21.104913pt;}
.ws218{word-spacing:21.359957pt;}
.ws208{word-spacing:21.742524pt;}
.ws220{word-spacing:21.841353pt;}
.ws225{word-spacing:21.895550pt;}
.ws185{word-spacing:22.061329pt;}
.ws17e{word-spacing:22.069709pt;}
.ws5f{word-spacing:22.125090pt;}
.ws174{word-spacing:22.252612pt;}
.ws216{word-spacing:22.316373pt;}
.ws227{word-spacing:22.687375pt;}
.ws189{word-spacing:22.890223pt;}
.ws161{word-spacing:23.403945pt;}
.ws200{word-spacing:23.910400pt;}
.ws61{word-spacing:24.101683pt;}
.wsf4{word-spacing:24.165444pt;}
.ws213{word-spacing:24.229205pt;}
.ws1cf{word-spacing:24.412518pt;}
.ws2a3{word-spacing:24.443042pt;}
.ws52{word-spacing:24.930577pt;}
.ws1fd{word-spacing:25.504427pt;}
.ws206{word-spacing:25.631949pt;}
.ws53{word-spacing:25.695710pt;}
.ws6d{word-spacing:25.994146pt;}
.ws207{word-spacing:26.014515pt;}
.ws255{word-spacing:26.039584pt;}
.ws156{word-spacing:26.157090pt;}
.ws90{word-spacing:26.397082pt;}
.ws4d{word-spacing:26.715887pt;}
.ws16a{word-spacing:26.779042pt;}
.ws26c{word-spacing:27.509164pt;}
.ws20a{word-spacing:27.608542pt;}
.ws217{word-spacing:27.672303pt;}
.ws215{word-spacing:27.991108pt;}
.ws171{word-spacing:28.003782pt;}
.ws299{word-spacing:28.047224pt;}
.ws1a2{word-spacing:28.998612pt;}
.ws211{word-spacing:29.138807pt;}
.ws210{word-spacing:29.903940pt;}
.ws1ee{word-spacing:30.587945pt;}
.ws21b{word-spacing:30.732834pt;}
.ws102{word-spacing:31.136290pt;}
.ws153{word-spacing:32.416126pt;}
.ws182{word-spacing:32.869937pt;}
.ws10b{word-spacing:32.961753pt;}
.ws226{word-spacing:35.038300pt;}
.ws25e{word-spacing:37.158920pt;}
.ws14e{word-spacing:43.536056pt;}
.ws267{word-spacing:45.167482pt;}
.ws26a{word-spacing:45.473377pt;}
.ws14f{word-spacing:46.290534pt;}
.ws252{word-spacing:46.442784pt;}
.ws178{word-spacing:50.983349pt;}
.ws14c{word-spacing:53.092213pt;}
.ws14a{word-spacing:53.096480pt;}
.ws261{word-spacing:53.099127pt;}
.ws246{word-spacing:53.788836pt;}
.ws260{word-spacing:54.196153pt;}
.ws26b{word-spacing:54.502099pt;}
.ws254{word-spacing:56.287685pt;}
.ws25d{word-spacing:56.542419pt;}
.ws247{word-spacing:56.594323pt;}
.ws152{word-spacing:57.359456pt;}
.ws221{word-spacing:58.613955pt;}
.ws222{word-spacing:61.594784pt;}
.ws17a{word-spacing:63.552007pt;}
.ws269{word-spacing:64.194761pt;}
.ws266{word-spacing:65.315948pt;}
.ws2a0{word-spacing:65.839680pt;}
.ws264{word-spacing:66.284896pt;}
.ws29f{word-spacing:66.523680pt;}
.ws2a1{word-spacing:67.639680pt;}
.ws268{word-spacing:72.224627pt;}
.ws262{word-spacing:72.514761pt;}
.ws25f{word-spacing:72.516727pt;}
.ws256{word-spacing:73.324051pt;}
.ws263{word-spacing:73.629946pt;}
.ws245{word-spacing:75.977687pt;}
.ws259{word-spacing:81.944403pt;}
.ws150{word-spacing:82.353794pt;}
.ws154{word-spacing:82.404803pt;}
.ws276{word-spacing:82.419149pt;}
.ws258{word-spacing:83.321721pt;}
.ws25c{word-spacing:89.579127pt;}
.ws248{word-spacing:92.606573pt;}
.ws27a{word-spacing:94.087424pt;}
.ws3a{word-spacing:98.977073pt;}
.wsd3{word-spacing:105.635440pt;}
.ws179{word-spacing:114.399947pt;}
.ws1d1{word-spacing:116.993587pt;}
.ws277{word-spacing:117.519616pt;}
.ws257{word-spacing:117.853984pt;}
.ws274{word-spacing:127.896730pt;}
.ws1d2{word-spacing:131.292006pt;}
.ws250{word-spacing:131.576819pt;}
.ws149{word-spacing:132.291461pt;}
.ws284{word-spacing:135.147957pt;}
.ws1d4{word-spacing:137.795635pt;}
.ws244{word-spacing:142.544241pt;}
.ws14d{word-spacing:143.174347pt;}
.ws17b{word-spacing:143.666435pt;}
.ws21f{word-spacing:152.916572pt;}
.ws1d5{word-spacing:153.385216pt;}
.ws279{word-spacing:153.911245pt;}
.ws278{word-spacing:164.336179pt;}
.ws1d8{word-spacing:166.392474pt;}
.ws155{word-spacing:171.109199pt;}
.ws151{word-spacing:172.435429pt;}
.ws282{word-spacing:176.108066pt;}
.ws10c{word-spacing:184.783104pt;}
.ws25b{word-spacing:190.846789pt;}
.ws10d{word-spacing:193.495104pt;}
.ws1ce{word-spacing:200.201779pt;}
.ws23d{word-spacing:202.581661pt;}
.ws23e{word-spacing:205.387148pt;}
.ws237{word-spacing:208.152006pt;}
.ws273{word-spacing:211.152742pt;}
.ws23a{word-spacing:223.157280pt;}
.ws1d7{word-spacing:227.842202pt;}
.ws283{word-spacing:233.391008pt;}
.ws296{word-spacing:234.768247pt;}
.ws23c{word-spacing:241.450407pt;}
.ws23b{word-spacing:242.574880pt;}
.ws285{word-spacing:242.963147pt;}
.ws275{word-spacing:246.683597pt;}
.ws297{word-spacing:250.019895pt;}
.ws287{word-spacing:255.579860pt;}
.ws289{word-spacing:260.986798pt;}
.ws298{word-spacing:265.322551pt;}
.ws288{word-spacing:271.086551pt;}
.ws28b{word-spacing:273.636994pt;}
.ws24f{word-spacing:290.317387pt;}
.wsb1{word-spacing:290.442644pt;}
.ws239{word-spacing:291.388075pt;}
.ws286{word-spacing:305.862347pt;}
.ws28a{word-spacing:314.894880pt;}
.ws281{word-spacing:322.146413pt;}
.ws295{word-spacing:323.574661pt;}
._1a{margin-left:-6.011275pt;}
._3{margin-left:-4.848000pt;}
._b{margin-left:-3.472900pt;}
._c{margin-left:-2.213902pt;}
._1{margin-left:-1.046400pt;}
._0{width:0.915200pt;}
._12{width:2.174328pt;}
._11{width:3.472900pt;}
._7{width:5.168000pt;}
._88{width:6.090234pt;}
._68{width:8.671505pt;}
._8{width:11.925376pt;}
._4{width:12.997312pt;}
._9{width:14.640000pt;}
._a{width:15.872000pt;}
._5{width:17.472000pt;}
._1f{width:19.198363pt;}
._d{width:20.245294pt;}
._2{width:21.744000pt;}
._24{width:22.689693pt;}
._1e{width:23.739395pt;}
._15{width:25.216071pt;}
._f{width:26.497054pt;}
._e{width:27.725370pt;}
._20{width:28.698226pt;}
._17{width:30.161508pt;}
._6{width:31.376000pt;}
._13{width:33.028233pt;}
._1c{width:34.238934pt;}
._19{width:35.368525pt;}
._14{width:36.543579pt;}
._3a{width:37.694173pt;}
._16{width:38.829731pt;}
._22{width:40.457827pt;}
._1b{width:42.138855pt;}
._18{width:43.276029pt;}
._21{width:44.563417pt;}
._87{width:45.465883pt;}
._10{width:46.405829pt;}
._25{width:48.050472pt;}
._23{width:49.581923pt;}
._1d{width:51.144863pt;}
._61{width:54.035392pt;}
._3b{width:55.194539pt;}
._62{width:57.384960pt;}
._cb{width:58.867128pt;}
._7c{width:60.615541pt;}
._51{width:62.077775pt;}
._52{width:65.291332pt;}
._57{width:67.637740pt;}
._9f{width:68.884268pt;}
._46{width:69.882129pt;}
._83{width:72.331637pt;}
._ef{width:75.275684pt;}
._54{width:76.269642pt;}
._9a{width:77.245227pt;}
._5d{width:78.848281pt;}
._cd{width:81.101241pt;}
._5e{width:82.328289pt;}
._4a{width:84.164373pt;}
._9c{width:85.606637pt;}
._8c{width:86.606657pt;}
._a0{width:87.528004pt;}
._ca{width:89.518938pt;}
._cc{width:90.814645pt;}
._90{width:92.514120pt;}
._8d{width:93.977436pt;}
._93{width:95.386556pt;}
._c9{width:97.761994pt;}
._33{width:99.068889pt;}
._55{width:100.946521pt;}
._5a{width:104.109070pt;}
._6c{width:105.910085pt;}
._ce{width:106.912819pt;}
._98{width:108.071689pt;}
._d1{width:109.021066pt;}
._91{width:111.049462pt;}
._94{width:114.030292pt;}
._ba{width:116.386498pt;}
._7d{width:118.308659pt;}
._bc{width:119.784859pt;}
._c8{width:123.535094pt;}
._7e{width:125.357445pt;}
._a2{width:126.653690pt;}
._53{width:129.766523pt;}
._58{width:132.572010pt;}
._96{width:134.108388pt;}
._cf{width:135.675624pt;}
._a4{width:138.378305pt;}
._a7{width:139.547706pt;}
._84{width:141.693030pt;}
._5f{width:143.691940pt;}
._c3{width:144.967161pt;}
._c7{width:148.552075pt;}
._4b{width:150.884188pt;}
._8e{width:152.347505pt;}
._4c{width:154.046737pt;}
._c4{width:155.015905pt;}
._3e{width:158.484507pt;}
._3f{width:160.674929pt;}
._4f{width:164.401534pt;}
._80{width:166.368563pt;}
._5b{width:168.635269pt;}
._44{width:172.511942pt;}
._b7{width:175.368438pt;}
._77{width:176.793498pt;}
._72{width:178.084659pt;}
._70{width:182.289337pt;}
._89{width:186.870934pt;}
._c1{width:188.101419pt;}
._65{width:189.701926pt;}
._76{width:190.769877pt;}
._79{width:192.765645pt;}
._3d{width:193.785593pt;}
._66{width:195.258931pt;}
._41{width:197.404262pt;}
._39{width:198.833472pt;}
._bd{width:201.280935pt;}
._d8{width:203.319184pt;}
._36{width:204.283584pt;}
._74{width:205.725082pt;}
._34{width:207.920045pt;}
._9d{width:210.175604pt;}
._a1{width:211.638921pt;}
._35{width:213.170643pt;}
._75{width:214.237502pt;}
._37{width:216.559974pt;}
._4d{width:218.572937pt;}
._b9{width:220.371115pt;}
._38{width:221.882714pt;}
._6f{width:225.235968pt;}
._6d{width:226.527130pt;}
._a8{width:229.453328pt;}
._85{width:230.400614pt;}
._2e{width:231.427168pt;}
._a9{width:233.001786pt;}
._d5{width:234.500590pt;}
._26{width:235.822994pt;}
._95{width:238.195405pt;}
._4e{width:241.580889pt;}
._b0{width:243.669292pt;}
._6e{width:245.801871pt;}
._3c{width:247.341930pt;}
._78{width:249.911501pt;}
._6b{width:251.250483pt;}
._af{width:252.391806pt;}
._82{width:254.209715pt;}
._d9{width:256.319488pt;}
._67{width:258.209775pt;}
._86{width:260.910285pt;}
._7a{width:262.004506pt;}
._a5{width:263.288573pt;}
._ad{width:266.419241pt;}
._ac{width:269.486148pt;}
._da{width:273.112048pt;}
._73{width:274.682675pt;}
._8f{width:276.512618pt;}
._d7{width:279.907755pt;}
._d3{width:280.803738pt;}
._49{width:286.261685pt;}
._b8{width:287.699766pt;}
._e1{width:290.100913pt;}
._69{width:291.556594pt;}
._e3{width:292.790818pt;}
._d4{width:296.589107pt;}
._eb{width:298.605827pt;}
._e6{width:299.932058pt;}
._ea{width:302.115507pt;}
._e9{width:307.164668pt;}
._6a{width:308.444160pt;}
._e2{width:314.979669pt;}
._2a{width:318.158476pt;}
._dd{width:321.253758pt;}
._71{width:327.524659pt;}
._8a{width:329.198387pt;}
._ec{width:331.608556pt;}
._c5{width:332.834603pt;}
._81{width:338.958336pt;}
._e8{width:340.128511pt;}
._c6{width:341.709269pt;}
._e7{width:345.533972pt;}
._d2{width:346.518005pt;}
._32{width:350.685867pt;}
._dc{width:352.338672pt;}
._b6{width:355.174646pt;}
._b5{width:357.419035pt;}
._de{width:360.710977pt;}
._df{width:362.009832pt;}
._b4{width:366.192558pt;}
._28{width:367.365762pt;}
._e0{width:381.546223pt;}
._db{width:410.060172pt;}
._e5{width:448.418830pt;}
._ed{width:449.918608pt;}
._50{width:459.601174pt;}
._7b{width:463.670477pt;}
._2c{width:469.508167pt;}
._d6{width:474.573619pt;}
._7f{width:481.220710pt;}
._2b{width:492.184426pt;}
._40{width:515.551778pt;}
._27{width:526.227853pt;}
._d0{width:534.124463pt;}
._9b{width:545.437669pt;}
._31{width:565.096599pt;}
._8b{width:571.939956pt;}
._ee{width:593.590026pt;}
._e4{width:599.864115pt;}
._ab{width:637.804771pt;}
._45{width:656.067625pt;}
._be{width:657.800242pt;}
._99{width:665.042071pt;}
._48{width:674.024538pt;}
._a6{width:678.320313pt;}
._97{width:699.682065pt;}
._43{width:703.250814pt;}
._a3{width:712.960307pt;}
._29{width:786.556518pt;}
._b1{width:792.085996pt;}
._b3{width:796.931837pt;}
._c0{width:799.635307pt;}
._9e{width:804.336292pt;}
._47{width:807.164095pt;}
._2d{width:811.703883pt;}
._30{width:814.104259pt;}
._92{width:817.614534pt;}
._ae{width:824.558114pt;}
._2f{width:827.771672pt;}
._bf{width:844.553585pt;}
._59{width:905.820515pt;}
._b2{width:929.228281pt;}
._aa{width:935.502370pt;}
._c2{width:949.274761pt;}
._bb{width:955.548849pt;}
._60{width:1047.793378pt;}
._64{width:1065.136388pt;}
._5c{width:1092.762665pt;}
._63{width:1197.432832pt;}
._56{width:1203.706921pt;}
._42{width:1547.782158pt;}
.fs9{font-size:5.440000pt;}
.fs1e{font-size:15.984073pt;}
.fs1c{font-size:21.312000pt;}
.fs22{font-size:21.312097pt;}
.fs1d{font-size:26.676000pt;}
.fs21{font-size:31.880533pt;}
.fs18{font-size:31.968000pt;}
.fs29{font-size:34.005333pt;}
.fs1b{font-size:34.005760pt;}
.fs14{font-size:34.099200pt;}
.fs12{font-size:37.193600pt;}
.fsd{font-size:37.194667pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:37.440000pt;}
.fs24{font-size:39.850400pt;}
.fs19{font-size:40.032000pt;}
.fs17{font-size:42.507093pt;}
.fs11{font-size:42.507200pt;}
.fs2a{font-size:42.508800pt;}
.fsa{font-size:42.560000pt;}
.fs1a{font-size:42.624000pt;}
.fs15{font-size:42.681600pt;}
.fs26{font-size:45.163787pt;}
.fs23{font-size:47.820800pt;}
.fsb{font-size:48.000000pt;}
.fs28{font-size:51.008000pt;}
.fs16{font-size:51.008853pt;}
.fs13{font-size:53.133867pt;}
.fse{font-size:53.136000pt;}
.fs3{font-size:53.333333pt;}
.fs25{font-size:54.196907pt;}
.fs1{font-size:56.000000pt;}
.fsc{font-size:58.181333pt;}
.fs1f{font-size:58.181867pt;}
.fs27{font-size:63.760000pt;}
.fs10{font-size:63.761067pt;}
.fs0{font-size:64.000000pt;}
.fs20{font-size:76.513067pt;}
.fs7{font-size:85.440000pt;}
.fs2{font-size:90.666667pt;}
.fsf{font-size:91.815467pt;}
.fs6{font-size:96.000000pt;}
.fs5{font-size:117.440000pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:4.320000pt;}
.y1a2{bottom:10.284869pt;}
.y21d{bottom:12.357000pt;}
.yd2{bottom:19.771200pt;}
.y13f{bottom:20.430000pt;}
.y318{bottom:21.600000pt;}
.y21b{bottom:21.832723pt;}
.y21c{bottom:23.087290pt;}
.y19d{bottom:23.922000pt;}
.y34d{bottom:25.047000pt;}
.y314{bottom:31.689000pt;}
.y330{bottom:31.995000pt;}
.y215{bottom:32.859000pt;}
.y235{bottom:34.011000pt;}
.yd1{bottom:34.560000pt;}
.y3b4{bottom:36.009000pt;}
.y3c7{bottom:39.798000pt;}
.y1a1{bottom:43.981537pt;}
.y23a{bottom:44.073000pt;}
.y22d{bottom:44.244000pt;}
.y13d{bottom:45.252000pt;}
.ycb{bottom:50.702400pt;}
.y1ac{bottom:54.725295pt;}
.y1a4{bottom:54.972000pt;}
.y95{bottom:56.149333pt;}
.y5{bottom:59.133337pt;}
.y335{bottom:59.688000pt;}
.y353{bottom:59.706000pt;}
.y137{bottom:60.390000pt;}
.y3ae{bottom:61.191000pt;}
.y216{bottom:62.127000pt;}
.y1a9{bottom:62.739000pt;}
.y34e{bottom:63.585000pt;}
.y244{bottom:66.861000pt;}
.y24a{bottom:67.239000pt;}
.y3bd{bottom:67.428000pt;}
.y3c2{bottom:68.436000pt;}
.y3b9{bottom:68.562000pt;}
.y331{bottom:68.787000pt;}
.y220{bottom:69.444000pt;}
.y236{bottom:70.308000pt;}
.y22e{bottom:71.235000pt;}
.y3b5{bottom:71.802000pt;}
.y1da{bottom:71.874000pt;}
.y5f{bottom:72.800000pt;}
.y31b{bottom:75.582000pt;}
.y19e{bottom:75.672000pt;}
.y315{bottom:76.590000pt;}
.y22a{bottom:81.639000pt;}
.y3b2{bottom:84.886822pt;}
.y1a5{bottom:86.031000pt;}
.y3c8{bottom:86.265000pt;}
.y4{bottom:86.333337pt;}
.y23b{bottom:89.109000pt;}
.y3af{bottom:90.684000pt;}
.y217{bottom:91.395000pt;}
.y21a{bottom:92.140822pt;}
.y336{bottom:95.463000pt;}
.y354{bottom:95.499000pt;}
.y19a{bottom:96.000000pt;}
.y135{bottom:96.260000pt;}
.y16c{bottom:97.101333pt;}
.yf8{bottom:97.501333pt;}
.y22f{bottom:98.226000pt;}
.y293{bottom:98.357333pt;}
.y155{bottom:98.380000pt;}
.y245{bottom:100.854000pt;}
.y1aa{bottom:101.556000pt;}
.y24b{bottom:101.610000pt;}
.y284{bottom:101.840000pt;}
.y34f{bottom:102.123000pt;}
.y105{bottom:102.696000pt;}
.y1ec{bottom:102.900000pt;}
.y3be{bottom:103.176000pt;}
.y3c3{bottom:105.192000pt;}
.y3ba{bottom:105.435000pt;}
.y332{bottom:105.588000pt;}
.y349{bottom:105.651200pt;}
.y221{bottom:106.020000pt;}
.y237{bottom:106.596000pt;}
.y5e{bottom:107.516800pt;}
.y3b6{bottom:107.595000pt;}
.yc8{bottom:107.676000pt;}
.ye7{bottom:107.770667pt;}
.ycc{bottom:109.699200pt;}
.yb8{bottom:109.833333pt;}
.y199{bottom:111.940000pt;}
.y292{bottom:114.297333pt;}
.y154{bottom:114.320000pt;}
.y2b4{bottom:115.261333pt;}
.y94{bottom:115.577333pt;}
.y1c7{bottom:116.900000pt;}
.y1a6{bottom:117.081000pt;}
.yf7{bottom:118.261333pt;}
.y348{bottom:118.403200pt;}
.y212{bottom:118.652000pt;}
.y172{bottom:118.666667pt;}
.yc7{bottom:118.796000pt;}
.y138{bottom:118.908000pt;}
.y31c{bottom:119.475000pt;}
.y1db{bottom:119.817000pt;}
.y27d{bottom:119.902667pt;}
.y134{bottom:120.162667pt;}
.y3b0{bottom:120.186000pt;}
.y218{bottom:120.654000pt;}
.y16b{bottom:121.004000pt;}
.y316{bottom:121.500000pt;}
.y2d5{bottom:122.474667pt;}
.y283{bottom:122.601333pt;}
.y104{bottom:123.457333pt;}
.y108{bottom:123.501333pt;}
.y1eb{bottom:123.660000pt;}
.ye6{bottom:123.712000pt;}
.y21{bottom:123.790666pt;}
.y31e{bottom:125.014667pt;}
.y230{bottom:125.208000pt;}
.yd0{bottom:125.452631pt;}
.y19f{bottom:127.431000pt;}
.y198{bottom:127.880000pt;}
.y71{bottom:128.122667pt;}
.yf6{bottom:129.381333pt;}
.y291{bottom:130.237333pt;}
.y153{bottom:130.260000pt;}
.y22b{bottom:130.410000pt;}
.yb7{bottom:130.593333pt;}
.y337{bottom:131.238000pt;}
.y355{bottom:131.283000pt;}
.y209{bottom:132.701333pt;}
.y3c9{bottom:132.723000pt;}
.y282{bottom:133.721333pt;}
.y1e9{bottom:133.733333pt;}
.y23c{bottom:134.154000pt;}
.y103{bottom:134.577333pt;}
.y211{bottom:134.592000pt;}
.y171{bottom:134.606667pt;}
.y107{bottom:134.621333pt;}
.yc6{bottom:134.736000pt;}
.y246{bottom:134.856000pt;}
.y24c{bottom:135.990000pt;}
.y347{bottom:136.522667pt;}
.y3bf{bottom:138.924000pt;}
.y93{bottom:139.480000pt;}
.y1ea{bottom:139.600000pt;}
.y1ab{bottom:140.373000pt;}
.y350{bottom:140.652000pt;}
.y1c6{bottom:140.802667pt;}
.y2d4{bottom:141.734667pt;}
.y3c4{bottom:141.939000pt;}
.y3bb{bottom:142.317000pt;}
.y333{bottom:142.389000pt;}
.y222{bottom:142.605000pt;}
.y3ab{bottom:142.863200pt;}
.y238{bottom:142.893000pt;}
.y3b7{bottom:143.397000pt;}
.y35f{bottom:143.460267pt;}
.y27c{bottom:143.805333pt;}
.y197{bottom:143.820000pt;}
.y70{bottom:144.062667pt;}
.y133{bottom:144.066667pt;}
.y241{bottom:144.514667pt;}
.y16a{bottom:144.906667pt;}
.y290{bottom:146.177333pt;}
.y152{bottom:146.201333pt;}
.y31a{bottom:147.062667pt;}
.y2b3{bottom:147.193333pt;}
.ye5{bottom:147.494667pt;}
.y1a7{bottom:148.140000pt;}
.y3b1{bottom:149.688000pt;}
.y219{bottom:149.922000pt;}
.yf5{bottom:150.142667pt;}
.y102{bottom:150.517333pt;}
.y210{bottom:150.532000pt;}
.yc5{bottom:150.676000pt;}
.y346{bottom:151.931733pt;}
.y231{bottom:152.199000pt;}
.y281{bottom:154.481333pt;}
.y2f4{bottom:155.018667pt;}
.yb6{bottom:155.261333pt;}
.y170{bottom:155.366667pt;}
.y106{bottom:155.381333pt;}
.y3aa{bottom:155.615200pt;}
.y208{bottom:156.356000pt;}
.y240{bottom:157.134667pt;}
.y1e8{bottom:157.636000pt;}
.y3cc{bottom:157.961333pt;}
.y35b{bottom:158.437333pt;}
.y6f{bottom:160.002667pt;}
.y2d3{bottom:160.996000pt;}
.y5d{bottom:161.117200pt;}
.y28f{bottom:162.117333pt;}
.y151{bottom:162.141333pt;}
.y31d{bottom:163.368000pt;}
.y92{bottom:163.382667pt;}
.y196{bottom:164.581333pt;}
.y1c5{bottom:164.705333pt;}
.y280{bottom:165.601333pt;}
.y313{bottom:166.324000pt;}
.y317{bottom:166.401000pt;}
.y2b2{bottom:166.454667pt;}
.y101{bottom:166.457333pt;}
.y20f{bottom:166.472000pt;}
.y16f{bottom:166.486667pt;}
.yc4{bottom:166.616000pt;}
.y338{bottom:167.013000pt;}
.y356{bottom:167.076000pt;}
.y345{bottom:167.340800pt;}
.y27b{bottom:167.709333pt;}
.y1dc{bottom:167.769000pt;}
.y132{bottom:167.969333pt;}
.y3a9{bottom:168.367200pt;}
.ycd{bottom:168.696000pt;}
.y169{bottom:168.809333pt;}
.y247{bottom:168.858000pt;}
.y23f{bottom:169.753333pt;}
.y24d{bottom:170.370000pt;}
.y3cb{bottom:170.581333pt;}
.y35a{bottom:171.057333pt;}
.ye4{bottom:171.397333pt;}
.y2f3{bottom:174.280000pt;}
.y3c0{bottom:174.672000pt;}
.yf4{bottom:174.810667pt;}
.y18{bottom:175.052000pt;}
.y195{bottom:175.701333pt;}
.y6e{bottom:175.942667pt;}
.y5c{bottom:177.197200pt;}
.y139{bottom:177.426000pt;}
.y3c5{bottom:178.695000pt;}
.yb5{bottom:179.164000pt;}
.y1a0{bottom:179.190000pt;}
.y319{bottom:179.460000pt;}
.y207{bottom:180.258667pt;}
.y3a8{bottom:181.120267pt;}
.y1e7{bottom:181.538667pt;}
.y27f{bottom:181.541333pt;}
.y23e{bottom:182.373333pt;}
.y100{bottom:182.397333pt;}
.y20e{bottom:182.412000pt;}
.y16e{bottom:182.426667pt;}
.yc3{bottom:182.556000pt;}
.y344{bottom:182.749867pt;}
.y28e{bottom:182.878667pt;}
.y150{bottom:182.901333pt;}
.y3ca{bottom:183.200000pt;}
.y359{bottom:183.676000pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y91{bottom:187.286667pt;}
.y1c4{bottom:188.609333pt;}
.y27a{bottom:191.612000pt;}
.y6d{bottom:191.884000pt;}
.y5b{bottom:192.397600pt;}
.y168{bottom:192.713333pt;}
.y2d2{bottom:193.541333pt;}
.y28d{bottom:193.998667pt;}
.y23d{bottom:194.992000pt;}
.ye3{bottom:195.300000pt;}
.y194{bottom:196.461333pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y343{bottom:198.158933pt;}
.yff{bottom:198.337333pt;}
.y20d{bottom:198.352000pt;}
.y2b1{bottom:198.388000pt;}
.yc2{bottom:198.497333pt;}
.yf3{bottom:198.713333pt;}
.y3a7{bottom:199.239733pt;}
.y27e{bottom:202.302667pt;}
.yb4{bottom:203.068000pt;}
.y16d{bottom:203.188000pt;}
.y206{bottom:204.161333pt;}
.y1e6{bottom:205.441333pt;}
.y14f{bottom:206.684000pt;}
.y2f2{bottom:206.824000pt;}
.y131{bottom:207.653333pt;}
.y5a{bottom:208.477600pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y358{bottom:209.076000pt;}
.y3c6{bottom:209.233333pt;}
.y28c{bottom:209.938667pt;}
.y90{bottom:211.189333pt;}
.y1c3{bottom:212.512000pt;}
.y6c{bottom:212.644000pt;}
.y2d1{bottom:212.802667pt;}
.y342{bottom:213.566933pt;}
.yfe{bottom:214.278667pt;}
.y20c{bottom:214.293333pt;}
.yc1{bottom:214.437333pt;}
.y3a6{bottom:214.648800pt;}
.y279{bottom:215.514667pt;}
.y193{bottom:216.570667pt;}
.y167{bottom:216.616000pt;}
.y2b0{bottom:217.648000pt;}
.ye2{bottom:219.202667pt;}
.y239{bottom:220.392000pt;}
.ybc{bottom:222.256000pt;}
.yf2{bottom:222.616000pt;}
.y59{bottom:224.557600pt;}
.y28b{bottom:225.878667pt;}
.y2f1{bottom:226.085333pt;}
.yb3{bottom:226.970667pt;}
.yce{bottom:227.707200pt;}
.y205{bottom:228.064000pt;}
.y357{bottom:228.336000pt;}
.y3c1{bottom:228.494667pt;}
.y1e5{bottom:229.345333pt;}
.y341{bottom:229.401600pt;}
.y3a5{bottom:230.057867pt;}
.y20b{bottom:230.233333pt;}
.yc0{bottom:230.377333pt;}
.y14e{bottom:230.586667pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y2d0{bottom:232.062667pt;}
.yfd{bottom:235.038667pt;}
.y8f{bottom:235.092000pt;}
.y13a{bottom:235.926000pt;}
.y1c2{bottom:236.414667pt;}
.ybb{bottom:238.196000pt;}
.y2e{bottom:238.960000pt;}
.y234{bottom:239.653333pt;}
.y192{bottom:240.473333pt;}
.y166{bottom:240.518667pt;}
.y58{bottom:240.718000pt;}
.y28a{bottom:241.818667pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.ye1{bottom:243.106667pt;}
.y340{bottom:244.809600pt;}
.y3a4{bottom:245.465867pt;}
.yfc{bottom:246.158667pt;}
.ybf{bottom:246.317333pt;}
.yf1{bottom:246.518667pt;}
.y3d{bottom:249.520000pt;}
.y2af{bottom:249.581333pt;}
.yb2{bottom:250.873333pt;}
.y20a{bottom:250.993333pt;}
.y204{bottom:251.968000pt;}
.y1e4{bottom:253.248000pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.yba{bottom:254.136000pt;}
.y14d{bottom:254.490667pt;}
.y278{bottom:256.404333pt;}
.y57{bottom:256.798000pt;}
.y253{bottom:257.185333pt;}
.y2f0{bottom:258.630667pt;}
.y8e{bottom:258.994667pt;}
.y2d{bottom:259.360000pt;}
.y1c1{bottom:260.317333pt;}
.y33f{bottom:260.644267pt;}
.y3a3{bottom:260.874933pt;}
.yfb{bottom:262.098667pt;}
.ybe{bottom:262.257333pt;}
.y227{bottom:263.494667pt;}
.y191{bottom:264.376000pt;}
.y165{bottom:264.421333pt;}
.y2cf{bottom:264.608000pt;}
.ye0{bottom:267.009333pt;}
.y130{bottom:267.934667pt;}
.y277{bottom:268.360333pt;}
.y2ae{bottom:268.842667pt;}
.y252{bottom:269.805333pt;}
.y3c{bottom:269.920000pt;}
.yf0{bottom:270.422667pt;}
.y1b0{bottom:271.108000pt;}
.y56{bottom:271.998400pt;}
.yb1{bottom:274.776000pt;}
.yb9{bottom:274.897333pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y203{bottom:275.870667pt;}
.y33e{bottom:276.053333pt;}
.y226{bottom:276.114667pt;}
.y3a2{bottom:276.284000pt;}
.y1e3{bottom:277.150667pt;}
.y2ef{bottom:277.890667pt;}
.yfa{bottom:278.038667pt;}
.y14c{bottom:278.393333pt;}
.y2c{bottom:279.760000pt;}
.y276{bottom:280.315333pt;}
.y251{bottom:282.424000pt;}
.y361{bottom:282.881067pt;}
.y360{bottom:282.882133pt;}
.y8d{bottom:282.897333pt;}
.ybd{bottom:283.018667pt;}
.y1af{bottom:283.726667pt;}
.y2ce{bottom:283.869333pt;}
.y1c0{bottom:284.221333pt;}
.y35c{bottom:286.346667pt;}
.ycf{bottom:286.704000pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y55{bottom:287.198800pt;}
.y190{bottom:288.278667pt;}
.y164{bottom:288.325333pt;}
.y225{bottom:288.733333pt;}
.y3b{bottom:290.240000pt;}
.ydf{bottom:290.912000pt;}
.y33d{bottom:291.461333pt;}
.y12f{bottom:291.838667pt;}
.y3a1{bottom:292.117600pt;}
.y275{bottom:292.270333pt;}
.y35e{bottom:293.977600pt;}
.yef{bottom:294.325333pt;}
.y13b{bottom:294.444000pt;}
.y250{bottom:295.044000pt;}
.y2a{bottom:295.760000pt;}
.y1ae{bottom:296.346667pt;}
.y2ee{bottom:297.152000pt;}
.yb0{bottom:298.680000pt;}
.yf9{bottom:298.800000pt;}
.y202{bottom:299.773333pt;}
.y29{bottom:300.080000pt;}
.y2ad{bottom:300.774667pt;}
.y1e2{bottom:301.053333pt;}
.y224{bottom:301.353333pt;}
.y14b{bottom:302.296000pt;}
.y54{bottom:302.399200pt;}
.y274{bottom:304.225333pt;}
.y3a{bottom:306.320000pt;}
.y8c{bottom:306.801333pt;}
.y3a0{bottom:307.526667pt;}
.y24f{bottom:307.662667pt;}
.y1bf{bottom:308.124000pt;}
.yf{bottom:309.452000pt;}
.y39{bottom:310.640000pt;}
.y18f{bottom:312.181333pt;}
.y163{bottom:312.228000pt;}
.yde{bottom:314.814667pt;}
.y12e{bottom:315.741333pt;}
.y273{bottom:316.180333pt;}
.y2cd{bottom:316.413333pt;}
.y35d{bottom:316.925867pt;}
.y53{bottom:317.519200pt;}
.yee{bottom:318.228000pt;}
.y2ac{bottom:320.036000pt;}
.y1ad{bottom:321.745333pt;}
.yaf{bottom:322.582667pt;}
.y39f{bottom:323.360267pt;}
.y201{bottom:323.676000pt;}
.y33c{bottom:324.285333pt;}
.y1e1{bottom:324.956000pt;}
.y14a{bottom:326.198667pt;}
.y223{bottom:326.752000pt;}
.y2ed{bottom:329.697333pt;}
.y8b{bottom:330.704000pt;}
.y1be{bottom:332.026667pt;}
.y52{bottom:332.719600pt;}
.y24e{bottom:333.062667pt;}
.y272{bottom:333.168333pt;}
.y2cc{bottom:335.674667pt;}
.y18e{bottom:336.085333pt;}
.y162{bottom:336.130667pt;}
.ydd{bottom:338.717333pt;}
.y12d{bottom:339.644000pt;}
.y1a8{bottom:341.006667pt;}
.yed{bottom:342.130667pt;}
.ye{bottom:343.809333pt;}
.y39e{bottom:344.908000pt;}
.y21f{bottom:346.013333pt;}
.yae{bottom:346.485333pt;}
.y200{bottom:347.580000pt;}
.y271{bottom:347.614333pt;}
.y51{bottom:348.799600pt;}
.y1e0{bottom:348.860000pt;}
.y2ec{bottom:348.958667pt;}
.y149{bottom:350.102667pt;}
.y2ab{bottom:351.968000pt;}
.y249{bottom:352.322667pt;}
.y13c{bottom:352.962000pt;}
.y8a{bottom:354.606667pt;}
.y1bd{bottom:355.929333pt;}
.y18d{bottom:359.988000pt;}
.y161{bottom:360.033333pt;}
.y270{bottom:362.059333pt;}
.ydc{bottom:362.621333pt;}
.yd{bottom:362.706666pt;}
.y12c{bottom:363.546667pt;}
.y50{bottom:364.960000pt;}
.yec{bottom:366.034667pt;}
.y13e{bottom:366.822000pt;}
.y2cb{bottom:368.218667pt;}
.yad{bottom:370.388000pt;}
.y2aa{bottom:371.229333pt;}
.y1ff{bottom:371.482667pt;}
.y33b{bottom:372.221333pt;}
.y148{bottom:374.005333pt;}
.y33{bottom:374.080000pt;}
.y26f{bottom:376.505333pt;}
.y312{bottom:377.385333pt;}
.y39d{bottom:377.732000pt;}
.y89{bottom:378.509333pt;}
.y1bc{bottom:379.832000pt;}
.y4f{bottom:380.080000pt;}
.y2eb{bottom:381.502667pt;}
.y18c{bottom:383.890667pt;}
.y160{bottom:383.937333pt;}
.y33a{bottom:384.841333pt;}
.ydb{bottom:386.524000pt;}
.y2ca{bottom:387.480000pt;}
.yeb{bottom:389.937333pt;}
.y32{bottom:390.080000pt;}
.y26e{bottom:390.951333pt;}
.yac{bottom:394.290667pt;}
.y31{bottom:394.400000pt;}
.y4e{bottom:395.280000pt;}
.y1fe{bottom:395.385333pt;}
.y1df{bottom:397.366667pt;}
.y339{bottom:397.460000pt;}
.y147{bottom:397.908000pt;}
.y2ea{bottom:400.764000pt;}
.y88{bottom:402.413333pt;}
.y2a9{bottom:403.162667pt;}
.y1bb{bottom:403.736000pt;}
.y26d{bottom:405.397333pt;}
.y18b{bottom:407.793333pt;}
.y15f{bottom:407.840000pt;}
.y12b{bottom:408.121333pt;}
.y1de{bottom:409.986667pt;}
.y4d{bottom:410.400000pt;}
.yda{bottom:410.426667pt;}
.yea{bottom:413.840000pt;}
.yab{bottom:418.194667pt;}
.y1fd{bottom:419.288000pt;}
.y2c9{bottom:420.025333pt;}
.y26c{bottom:420.241333pt;}
.y12a{bottom:420.873333pt;}
.y146{bottom:421.810667pt;}
.y2a8{bottom:422.424000pt;}
.y1dd{bottom:422.605333pt;}
.y334{bottom:422.860000pt;}
.y87{bottom:426.316000pt;}
.y1ba{bottom:427.638667pt;}
.y311{bottom:431.586800pt;}
.y18a{bottom:431.697333pt;}
.y15e{bottom:431.742667pt;}
.y2e9{bottom:433.308000pt;}
.y129{bottom:433.625333pt;}
.yd9{bottom:434.329333pt;}
.y352{bottom:434.416000pt;}
.y3bc{bottom:434.574667pt;}
.y26b{bottom:434.687333pt;}
.y1d9{bottom:435.253333pt;}
.ye9{bottom:437.742667pt;}
.y2c8{bottom:439.286667pt;}
.yaa{bottom:442.097333pt;}
.y32f{bottom:442.121333pt;}
.y1fc{bottom:443.192000pt;}
.y4c{bottom:445.040000pt;}
.y310{bottom:445.135800pt;}
.y233{bottom:445.733333pt;}
.y128{bottom:446.377333pt;}
.yc{bottom:446.990669pt;}
.y26a{bottom:449.133333pt;}
.y86{bottom:450.218667pt;}
.y1b9{bottom:451.541333pt;}
.y2e8{bottom:452.569333pt;}
.y351{bottom:453.677333pt;}
.y3b8{bottom:453.836000pt;}
.y2a7{bottom:454.356000pt;}
.y189{bottom:455.600000pt;}
.y15d{bottom:455.645333pt;}
.y382{bottom:456.445333pt;}
.yd8{bottom:458.233333pt;}
.y30f{bottom:458.684800pt;}
.y127{bottom:459.130400pt;}
.y289{bottom:461.645333pt;}
.yb{bottom:462.990669pt;}
.y269{bottom:463.977333pt;}
.y232{bottom:464.993333pt;}
.ya9{bottom:466.000000pt;}
.y1fb{bottom:467.094667pt;}
.y145{bottom:467.712000pt;}
.y381{bottom:468.400333pt;}
.y2c7{bottom:471.830667pt;}
.y126{bottom:471.882400pt;}
.y30e{bottom:472.234933pt;}
.y2a6{bottom:473.617333pt;}
.y85{bottom:474.121333pt;}
.y1b8{bottom:475.444000pt;}
.ye8{bottom:477.428000pt;}
.y268{bottom:478.423333pt;}
.ya{bottom:478.990666pt;}
.y188{bottom:479.502667pt;}
.y15c{bottom:479.549333pt;}
.y144{bottom:480.332000pt;}
.y380{bottom:480.355333pt;}
.yd7{bottom:482.136000pt;}
.y125{bottom:484.634400pt;}
.y2e7{bottom:485.114667pt;}
.y288{bottom:485.549333pt;}
.y30d{bottom:485.783933pt;}
.ya8{bottom:489.902667pt;}
.y1fa{bottom:490.997333pt;}
.y2c6{bottom:491.092000pt;}
.y37f{bottom:492.310333pt;}
.y267{bottom:492.869333pt;}
.y2a5{bottom:492.878667pt;}
.y143{bottom:492.950667pt;}
.y9{bottom:494.990666pt;}
.y39c{bottom:496.158667pt;}
.y84{bottom:498.025333pt;}
.y30c{bottom:499.332933pt;}
.y1b7{bottom:499.348000pt;}
.y124{bottom:499.778933pt;}
.y187{bottom:503.405333pt;}
.y15b{bottom:503.452000pt;}
.y37e{bottom:504.266333pt;}
.y2e6{bottom:504.374667pt;}
.y142{bottom:505.570667pt;}
.yd6{bottom:506.038667pt;}
.y266{bottom:507.314333pt;}
.y39b{bottom:508.910667pt;}
.y287{bottom:509.452000pt;}
.y30b{bottom:512.881933pt;}
.ya7{bottom:513.806667pt;}
.y1f9{bottom:514.900000pt;}
.y123{bottom:515.188000pt;}
.y37d{bottom:516.221333pt;}
.y141{bottom:518.189333pt;}
.y6b{bottom:520.393333pt;}
.y39a{bottom:521.662667pt;}
.y265{bottom:521.760333pt;}
.y83{bottom:521.928000pt;}
.y1b6{bottom:523.250667pt;}
.y2c5{bottom:523.636000pt;}
.y2a4{bottom:524.810667pt;}
.y30a{bottom:526.430933pt;}
.y27{bottom:526.559776pt;}
.y186{bottom:527.309333pt;}
.y15a{bottom:527.354667pt;}
.yd5{bottom:529.941333pt;}
.y122{bottom:530.596000pt;}
.y140{bottom:530.809333pt;}
.y37c{bottom:533.208333pt;}
.y286{bottom:533.354667pt;}
.y399{bottom:534.414667pt;}
.y264{bottom:536.206333pt;}
.y38{bottom:536.479776pt;}
.y2e5{bottom:536.920000pt;}
.ya6{bottom:537.709333pt;}
.y1f8{bottom:538.804000pt;}
.y309{bottom:539.979933pt;}
.y6a{bottom:540.265333pt;}
.y2c4{bottom:542.897333pt;}
.y136{bottom:543.456000pt;}
.y2a3{bottom:544.072000pt;}
.y82{bottom:545.830667pt;}
.y121{bottom:546.005067pt;}
.y1a3{bottom:547.086667pt;}
.y1b5{bottom:547.153333pt;}
.y398{bottom:547.166667pt;}
.y37b{bottom:547.654333pt;}
.y263{bottom:551.050333pt;}
.y185{bottom:551.212000pt;}
.y159{bottom:551.257333pt;}
.y21e{bottom:552.093333pt;}
.y308{bottom:553.530067pt;}
.yd4{bottom:553.845333pt;}
.y26{bottom:554.080000pt;}
.y2e4{bottom:556.181333pt;}
.y248{bottom:558.404000pt;}
.y1f7{bottom:558.765333pt;}
.y120{bottom:561.414133pt;}
.ya5{bottom:561.612000pt;}
.y37a{bottom:562.100333pt;}
.y2c3{bottom:562.158667pt;}
.y1f6{bottom:562.706667pt;}
.y37{bottom:564.000000pt;}
.y397{bottom:565.287200pt;}
.y262{bottom:565.496333pt;}
.y19c{bottom:566.348000pt;}
.y81{bottom:569.733333pt;}
.y1b4{bottom:571.056000pt;}
.y214{bottom:571.354667pt;}
.y307{bottom:572.782000pt;}
.y285{bottom:573.038667pt;}
.y8{bottom:573.786667pt;}
.y184{bottom:575.114667pt;}
.y158{bottom:575.160000pt;}
.y2a2{bottom:576.004000pt;}
.y379{bottom:576.546333pt;}
.y11f{bottom:576.823200pt;}
.y243{bottom:577.664000pt;}
.yd3{bottom:577.748000pt;}
.y261{bottom:579.942333pt;}
.y69{bottom:580.009333pt;}
.y396{bottom:581.120800pt;}
.ya4{bottom:585.514667pt;}
.y1f5{bottom:586.609333pt;}
.y2e3{bottom:588.725333pt;}
.y306{bottom:589.154133pt;}
.y378{bottom:590.991333pt;}
.y11e{bottom:592.232267pt;}
.y7{bottom:592.685334pt;}
.y80{bottom:593.637333pt;}
.y2c2{bottom:594.702667pt;}
.y260{bottom:594.786333pt;}
.y1b3{bottom:594.960000pt;}
.y2a1{bottom:595.265333pt;}
.y395{bottom:596.529867pt;}
.y183{bottom:599.017333pt;}
.y68{bottom:599.881333pt;}
.y305{bottom:605.526267pt;}
.y377{bottom:605.836333pt;}
.y11d{bottom:607.640267pt;}
.y2e2{bottom:607.986667pt;}
.y25f{bottom:609.232333pt;}
.ya3{bottom:609.418667pt;}
.y394{bottom:611.938933pt;}
.y2a0{bottom:614.526667pt;}
.y157{bottom:615.397333pt;}
.y7f{bottom:617.540000pt;}
.y1b2{bottom:618.862667pt;}
.y67{bottom:619.753333pt;}
.yca{bottom:620.254667pt;}
.y376{bottom:620.281333pt;}
.y304{bottom:621.897267pt;}
.y11c{bottom:623.049333pt;}
.y25e{bottom:623.678333pt;}
.y1f3{bottom:626.842667pt;}
.y2c1{bottom:627.248000pt;}
.y393{bottom:627.348000pt;}
.ya2{bottom:633.321333pt;}
.y375{bottom:634.727333pt;}
.y25d{bottom:638.124333pt;}
.y303{bottom:638.269400pt;}
.y11b{bottom:638.884000pt;}
.y182{bottom:639.334133pt;}
.y66{bottom:639.625333pt;}
.y2e1{bottom:640.532000pt;}
.y7e{bottom:641.442667pt;}
.y392{bottom:642.756000pt;}
.y156{bottom:643.285333pt;}
.y6{bottom:645.598667pt;}
.y1d8{bottom:646.314667pt;}
.y29f{bottom:646.458667pt;}
.y2c0{bottom:646.509333pt;}
.y374{bottom:649.572333pt;}
.y1f1{bottom:651.589333pt;}
.y181{bottom:652.086133pt;}
.y25c{bottom:652.570333pt;}
.y1b1{bottom:653.057333pt;}
.y32e{bottom:653.182667pt;}
.y11a{bottom:654.292000pt;}
.y302{bottom:655.093733pt;}
.ya1{bottom:657.224000pt;}
.y391{bottom:658.165067pt;}
.y65{bottom:659.497333pt;}
.y34c{bottom:659.757333pt;}
.y1f4{bottom:659.762667pt;}
.y2e0{bottom:659.792000pt;}
.y3b3{bottom:659.916000pt;}
.y1f0{bottom:661.168000pt;}
.y373{bottom:664.017333pt;}
.y180{bottom:664.838133pt;}
.y7d{bottom:665.345333pt;}
.y1d7{bottom:665.576000pt;}
.y29e{bottom:665.720000pt;}
.y2bf{bottom:665.770667pt;}
.y25b{bottom:667.015333pt;}
.y3{bottom:668.977329pt;}
.y119{bottom:669.701067pt;}
.y22c{bottom:671.074667pt;}
.y301{bottom:671.464733pt;}
.y32d{bottom:672.444000pt;}
.y390{bottom:673.574133pt;}
.y1f2{bottom:675.514667pt;}
.y372{bottom:678.463333pt;}
.y34b{bottom:679.018667pt;}
.y3ad{bottom:679.177333pt;}
.y64{bottom:679.369333pt;}
.y1ed{bottom:679.454667pt;}
.y25{bottom:680.080000pt;}
.ya0{bottom:681.126667pt;}
.y25a{bottom:681.860333pt;}
.y17f{bottom:682.958667pt;}
.y29d{bottom:684.981333pt;}
.y118{bottom:685.110133pt;}
.y300{bottom:687.836867pt;}
.y38f{bottom:688.983200pt;}
.y7c{bottom:689.248000pt;}
.y36{bottom:690.000000pt;}
.y229{bottom:690.334667pt;}
.y2df{bottom:692.337333pt;}
.y371{bottom:692.909333pt;}
.y1ef{bottom:694.598667pt;}
.y259{bottom:696.306333pt;}
.y1d6{bottom:697.064800pt;}
.y2be{bottom:698.314667pt;}
.y17e{bottom:698.366667pt;}
.y63{bottom:699.241333pt;}
.y1ee{bottom:699.380000pt;}
.y117{bottom:700.519200pt;}
.y38e{bottom:704.392267pt;}
.y2ff{bottom:704.660067pt;}
.y9f{bottom:705.030667pt;}
.y370{bottom:707.355333pt;}
.y1d5{bottom:709.816800pt;}
.y258{bottom:710.751333pt;}
.y2de{bottom:711.598667pt;}
.y7b{bottom:713.152000pt;}
.y17d{bottom:713.775733pt;}
.y116{bottom:715.928267pt;}
.y32c{bottom:716.445333pt;}
.y29c{bottom:716.914667pt;}
.y2bd{bottom:717.576000pt;}
.y62{bottom:719.113333pt;}
.y4b{bottom:719.759867pt;}
.y38d{bottom:719.800267pt;}
.y2fe{bottom:721.032200pt;}
.y36f{bottom:722.199333pt;}
.y257{bottom:725.596333pt;}
.y1d4{bottom:727.936267pt;}
.y9e{bottom:728.933333pt;}
.y17c{bottom:729.184800pt;}
.y32b{bottom:729.197333pt;}
.y2dd{bottom:730.858667pt;}
.y115{bottom:731.336267pt;}
.y38c{bottom:735.209333pt;}
.y29b{bottom:736.174667pt;}
.y36e{bottom:736.645333pt;}
.y2bc{bottom:736.837333pt;}
.y7a{bottom:737.054667pt;}
.y2fd{bottom:737.404333pt;}
.y24{bottom:738.239016pt;}
.y61{bottom:738.985333pt;}
.y4a{bottom:739.599867pt;}
.y256{bottom:740.041333pt;}
.y1d3{bottom:743.345333pt;}
.y17b{bottom:744.593867pt;}
.y114{bottom:746.745333pt;}
.y32a{bottom:747.317867pt;}
.y38b{bottom:750.618400pt;}
.y36d{bottom:751.091333pt;}
.y9d{bottom:752.836000pt;}
.y2fc{bottom:753.776467pt;}
.y29a{bottom:755.436000pt;}
.y1d2{bottom:758.754400pt;}
.y49{bottom:759.119867pt;}
.y17a{bottom:760.002933pt;}
.y255{bottom:760.242333pt;}
.y79{bottom:760.957333pt;}
.y113{bottom:762.154400pt;}
.y329{bottom:762.726933pt;}
.y2dc{bottom:763.404000pt;}
.y36c{bottom:765.935333pt;}
.y38a{bottom:766.027467pt;}
.y60{bottom:767.478667pt;}
.y2bb{bottom:769.381333pt;}
.y2fb{bottom:770.148600pt;}
.y1d1{bottom:774.163467pt;}
.y23{bottom:774.319520pt;}
.y179{bottom:775.410933pt;}
.y9c{bottom:776.738667pt;}
.y19b{bottom:777.409333pt;}
.y112{bottom:777.988000pt;}
.y328{bottom:778.134933pt;}
.y48{bottom:778.559867pt;}
.y36b{bottom:780.381333pt;}
.y389{bottom:781.436533pt;}
.y2{bottom:781.661334pt;}
.y213{bottom:782.416000pt;}
.y2db{bottom:782.665333pt;}
.y35{bottom:784.239520pt;}
.y78{bottom:784.860000pt;}
.y2fa{bottom:786.971800pt;}
.y299{bottom:787.369333pt;}
.y2ba{bottom:788.642667pt;}
.y242{bottom:788.725333pt;}
.y1d0{bottom:789.572533pt;}
.y254{bottom:789.814667pt;}
.y178{bottom:791.245600pt;}
.y111{bottom:793.397067pt;}
.y327{bottom:793.544000pt;}
.y36a{bottom:794.827333pt;}
.y388{bottom:796.845600pt;}
.y47{bottom:798.079867pt;}
.y9b{bottom:800.641333pt;}
.y2f9{bottom:803.343933pt;}
.y1cf{bottom:804.981600pt;}
.y298{bottom:806.629333pt;}
.y177{bottom:806.654667pt;}
.y77{bottom:808.764000pt;}
.y110{bottom:808.806133pt;}
.y326{bottom:808.953067pt;}
.y369{bottom:809.273333pt;}
.y22{bottom:810.080000pt;}
.y387{bottom:812.253600pt;}
.y2da{bottom:815.209333pt;}
.y46{bottom:817.839867pt;}
.y2f8{bottom:819.716067pt;}
.y34{bottom:820.000000pt;}
.y1ce{bottom:820.815200pt;}
.y2b9{bottom:821.186667pt;}
.y176{bottom:822.488267pt;}
.y368{bottom:823.718333pt;}
.y10f{bottom:824.215200pt;}
.y325{bottom:824.362133pt;}
.y9a{bottom:824.545333pt;}
.y386{bottom:828.088267pt;}
.y76{bottom:832.666667pt;}
.y2d9{bottom:834.470667pt;}
.y1cd{bottom:836.224267pt;}
.y2f7{bottom:836.539267pt;}
.y45{bottom:837.679867pt;}
.y175{bottom:837.897333pt;}
.y297{bottom:838.562667pt;}
.y367{bottom:838.563333pt;}
.y10e{bottom:839.624267pt;}
.y324{bottom:840.195733pt;}
.y2b8{bottom:840.448000pt;}
.y99{bottom:848.448000pt;}
.y385{bottom:849.634933pt;}
.y1cc{bottom:851.632267pt;}
.y366{bottom:853.008333pt;}
.y174{bottom:853.305333pt;}
.y2d8{bottom:853.732000pt;}
.y10d{bottom:855.032267pt;}
.y323{bottom:855.604800pt;}
.y75{bottom:856.569333pt;}
.y44{bottom:857.439867pt;}
.y296{bottom:857.824000pt;}
.y1{bottom:859.312000pt;}
.y2f6{bottom:859.432600pt;}
.y1cb{bottom:867.041333pt;}
.y365{bottom:867.454333pt;}
.y10c{bottom:870.441333pt;}
.y322{bottom:871.438400pt;}
.y98{bottom:872.350667pt;}
.y2b7{bottom:872.993333pt;}
.y43{bottom:876.959867pt;}
.y74{bottom:880.472000pt;}
.y364{bottom:882.299333pt;}
.y384{bottom:882.458667pt;}
.y1ca{bottom:882.876000pt;}
.y10b{bottom:885.850400pt;}
.y173{bottom:886.129333pt;}
.y2d7{bottom:886.276000pt;}
.y321{bottom:886.847467pt;}
.y295{bottom:889.756000pt;}
.y34a{bottom:890.080000pt;}
.y3ac{bottom:890.238667pt;}
.y2f5{bottom:890.408000pt;}
.y2b6{bottom:892.254667pt;}
.y97{bottom:896.253333pt;}
.y42{bottom:896.719867pt;}
.y363{bottom:896.744333pt;}
.y1c9{bottom:898.284000pt;}
.y10a{bottom:901.259467pt;}
.y228{bottom:901.396000pt;}
.y383{bottom:901.720000pt;}
.y73{bottom:904.376000pt;}
.y2d6{bottom:905.537333pt;}
.y294{bottom:909.017333pt;}
.y1c8{bottom:913.693067pt;}
.y41{bottom:916.479867pt;}
.y109{bottom:916.668533pt;}
.y362{bottom:916.945333pt;}
.y320{bottom:919.672000pt;}
.y96{bottom:920.157333pt;}
.y2b5{bottom:924.798667pt;}
.y28{bottom:929.680000pt;}
.y40{bottom:936.239867pt;}
.y31f{bottom:938.932000pt;}
.y72{bottom:944.060000pt;}
.yc9{bottom:946.517333pt;}
.y3f{bottom:955.999867pt;}
.y3e{bottom:975.759867pt;}
.y30{bottom:1020.720000pt;}
.y2f{bottom:1054.720000pt;}
.h35{height:0.000000pt;}
.hf{height:3.625781pt;}
.h31{height:11.644647pt;}
.h2f{height:15.526125pt;}
.h3a{height:15.526196pt;}
.h30{height:19.433883pt;}
.h11{height:20.640000pt;}
.he{height:20.720000pt;}
.h36{height:22.794581pt;}
.h28{height:23.289188pt;}
.h21{height:24.841800pt;}
.h1d{height:26.221488pt;}
.h18{height:26.222240pt;}
.h7{height:28.560000pt;}
.h29{height:29.163938pt;}
.h34{height:29.499997pt;}
.h3d{height:30.605107pt;}
.h2a{height:31.052250pt;}
.h22{height:31.094213pt;}
.h2b{height:31.922907pt;}
.h26{height:32.645448pt;}
.h44{height:32.646758pt;}
.h40{height:34.685788pt;}
.h14{height:35.835520pt;}
.h3c{height:35.913421pt;}
.h23{height:36.928037pt;}
.h43{height:38.307008pt;}
.h25{height:38.307649pt;}
.h15{height:40.416000pt;}
.h3f{height:40.701877pt;}
.h16{height:40.785115pt;}
.h6{height:40.800000pt;}
.h1e{height:40.806810pt;}
.h19{height:40.808448pt;}
.h3b{height:41.221530pt;}
.h10{height:42.656250pt;}
.h3{height:42.840000pt;}
.h32{height:43.694582pt;}
.h42{height:43.968896pt;}
.h24{height:43.969632pt;}
.h17{height:44.437500pt;}
.h3e{height:46.717734pt;}
.h2c{height:47.820800pt;}
.hd{height:48.448000pt;}
.h2{height:48.960000pt;}
.hc{height:49.782080pt;}
.h12{height:50.368000pt;}
.h33{height:53.712173pt;}
.h13{height:53.888000pt;}
.h41{height:54.961120pt;}
.h1b{height:54.962039pt;}
.h1c{height:55.058907pt;}
.h1f{height:55.064241pt;}
.h37{height:55.825330pt;}
.h38{height:63.580800pt;}
.h1a{height:64.454458pt;}
.hb{height:64.678080pt;}
.h5{height:69.360000pt;}
.h39{height:70.727373pt;}
.ha{height:72.672000pt;}
.h9{height:88.902080pt;}
.h4{height:105.826671pt;}
.h2d{height:113.916706pt;}
.h2e{height:192.000000pt;}
.h20{height:307.200000pt;}
.h27{height:384.000000pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w4{width:241.600000pt;}
.w8{width:288.000000pt;}
.w5{width:308.720000pt;}
.w6{width:460.800000pt;}
.w2{width:566.928019pt;}
.w7{width:576.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7d{left:10.653407pt;}
.x20{left:14.114664pt;}
.x32{left:15.030000pt;}
.x9{left:20.000000pt;}
.x7e{left:20.940337pt;}
.x2f{left:22.019183pt;}
.x19{left:24.048000pt;}
.x42{left:25.117631pt;}
.x31{left:26.755776pt;}
.x30{left:28.231631pt;}
.x21{left:31.683779pt;}
.x18{left:35.429646pt;}
.x43{left:37.167869pt;}
.x33{left:40.146869pt;}
.x17{left:49.649010pt;}
.x6{left:50.560632pt;}
.x5{left:51.920000pt;}
.x61{left:53.665726pt;}
.x1a{left:58.056423pt;}
.xd{left:61.040000pt;}
.xa{left:62.400000pt;}
.xe{left:63.360000pt;}
.x11{left:65.920000pt;}
.x44{left:78.702864pt;}
.x34{left:81.159864pt;}
.x1{left:90.706667pt;}
.x68{left:92.347726pt;}
.x2{left:94.486667pt;}
.x7{left:96.880000pt;}
.x45{left:99.465864pt;}
.x35{left:101.670864pt;}
.x2e{left:103.773333pt;}
.xa2{left:105.879000pt;}
.x29{left:106.914667pt;}
.x8{left:108.560000pt;}
.xa6{left:109.558667pt;}
.x78{left:111.604000pt;}
.x76{left:112.580333pt;}
.x14{left:113.946667pt;}
.x71{left:115.798667pt;}
.xb{left:118.080000pt;}
.xf{left:120.000000pt;}
.x2d{left:120.960267pt;}
.x36{left:122.181864pt;}
.x83{left:126.205333pt;}
.x79{left:127.156000pt;}
.xc{left:129.760000pt;}
.x69{left:133.873726pt;}
.x62{left:135.691726pt;}
.x13{left:137.481333pt;}
.x6b{left:139.831770pt;}
.x46{left:141.000864pt;}
.x37{left:142.683864pt;}
.x25{left:148.680000pt;}
.xa8{left:149.706000pt;}
.xaa{left:150.633000pt;}
.x72{left:153.150667pt;}
.x1e{left:158.398933pt;}
.x6d{left:159.518667pt;}
.x47{left:161.763873pt;}
.x38{left:163.194873pt;}
.x6f{left:167.113333pt;}
.xac{left:168.552000pt;}
.x4f{left:170.522667pt;}
.xa0{left:172.385333pt;}
.x8c{left:173.428000pt;}
.x16{left:174.998667pt;}
.x6a{left:176.663285pt;}
.x63{left:177.959285pt;}
.x4{left:180.874667pt;}
.x48{left:182.535873pt;}
.x39{left:183.696873pt;}
.x4a{left:190.392000pt;}
.x66{left:192.570667pt;}
.x51{left:201.104000pt;}
.x10{left:202.800293pt;}
.x3a{left:204.207873pt;}
.x27{left:205.302667pt;}
.x89{left:206.364000pt;}
.xa5{left:208.318933pt;}
.x1f{left:212.128000pt;}
.x3e{left:215.626667pt;}
.x64{left:218.972285pt;}
.x3b{left:224.709873pt;}
.xa1{left:230.018000pt;}
.x50{left:233.890667pt;}
.x77{left:238.406333pt;}
.x75{left:241.599333pt;}
.x1b{left:244.150200pt;}
.x3c{left:245.220873pt;}
.x74{left:248.734667pt;}
.x8d{left:256.491467pt;}
.x65{left:259.985285pt;}
.x15{left:263.058667pt;}
.x41{left:264.000000pt;}
.x3d{left:265.731873pt;}
.x8e{left:271.900533pt;}
.xa3{left:273.672533pt;}
.x8f{left:287.309600pt;}
.x22{left:293.672672pt;}
.x8b{left:298.142667pt;}
.x90{left:302.717600pt;}
.x1c{left:305.034667pt;}
.x23{left:306.885797pt;}
.xa7{left:312.861333pt;}
.xa4{left:314.241067pt;}
.x91{left:318.552267pt;}
.x49{left:327.746667pt;}
.x7c{left:330.249533pt;}
.x28{left:332.696000pt;}
.x6c{left:334.405333pt;}
.x73{left:336.065333pt;}
.x7b{left:342.039600pt;}
.x84{left:343.134667pt;}
.x2a{left:344.428000pt;}
.x80{left:347.238400pt;}
.x82{left:349.424000pt;}
.x2b{left:351.917067pt;}
.x86{left:353.341067pt;}
.x88{left:356.372533pt;}
.x81{left:360.520533pt;}
.x7a{left:362.029333pt;}
.x87{left:363.272800pt;}
.x92{left:365.204000pt;}
.x55{left:366.252000pt;}
.x54{left:368.194667pt;}
.x53{left:369.462667pt;}
.x52{left:370.642667pt;}
.x12{left:378.680000pt;}
.x1d{left:380.643200pt;}
.x93{left:396.021067pt;}
.x56{left:398.356000pt;}
.x26{left:400.197333pt;}
.x3{left:404.408000pt;}
.x57{left:411.314667pt;}
.x24{left:413.863559pt;}
.x3f{left:414.802667pt;}
.x4e{left:416.475733pt;}
.x7f{left:419.330667pt;}
.x5e{left:425.901333pt;}
.x4b{left:427.572267pt;}
.x4c{left:434.262400pt;}
.x5b{left:437.873333pt;}
.x5a{left:439.817333pt;}
.x59{left:441.085333pt;}
.x58{left:442.265333pt;}
.x6e{left:451.020000pt;}
.x85{left:452.366667pt;}
.x70{left:458.213333pt;}
.xa9{left:460.721333pt;}
.xab{left:467.916000pt;}
.x5c{left:469.978667pt;}
.x94{left:473.490933pt;}
.x95{left:489.324533pt;}
.x67{left:500.968000pt;}
.x96{left:504.733600pt;}
.x8a{left:505.801333pt;}
.x40{left:519.782667pt;}
.x97{left:535.551733pt;}
.x98{left:550.959733pt;}
.x99{left:566.794400pt;}
.x2c{left:576.050400pt;}
.x9a{left:582.202400pt;}
.x9b{left:597.611467pt;}
.x5d{left:601.490667pt;}
.x9c{left:615.732000pt;}
.x9d{left:628.484000pt;}
.x9e{left:641.236000pt;}
.x4d{left:649.606400pt;}
.x9f{left:653.988000pt;}
.x60{left:686.897333pt;}
.x5f{left:700.061333pt;}
}




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