
    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_ae961a043238ebc1ac2d3afe.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_8eb43563ff1c1540ea9b8976.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.961426;font-style:normal;font-weight: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_047d7c6a4245b090e2203455.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.951172;font-style:normal;font-weight: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_0a6647408acfa13313db40c5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.677734;font-style:normal;font-weight: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_e080f38505155c9ddf36ba1e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.731445;font-style:normal;font-weight: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_67cb04f6d8028a455ec8defa.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_48f4b2cc5dc6595e4bb39dc9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.905000;font-style:normal;font-weight: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_6b1c24c8938ccb10286c8360.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.905000;font-style:normal;font-weight: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_ae5f9c02d3fe70e8253e3fec.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_120a2bbc33177d28285b9817.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_c2482e4eed03f53ca6fa19a4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.901000;font-style:normal;font-weight: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_bb7c7e699aeeeff72e7d3392.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_9b1203b5a990f38db86d597b.woff2')format("woff");}.fff{font-family:fff;line-height:0.901000;font-style:normal;font-weight: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_9f42f9b18614997da533ecfb.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_b18877eb642cf3b9ba3b8c42.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_b18877eb642cf3b9ba3b8c42.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_aa8aaa7e618782d14d9bb64a.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_330e2660051ea5c649596e4d.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.684000;font-style:normal;font-weight: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_248ba4797af56407f2030582.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_85cac74cfe5af781c09a2f71.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_d8f6cc30b28b0c814027d9d1.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_35535a71ceda68c9139bcbe5.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_b3a2b20fc28b8fa6a4a1e714.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.951172;font-style:normal;font-weight: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_ade5120753d46380a40d8931.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_e96421e3d7e17af2aca2c352.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_51b5bbba8abbea047a328f5e.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_6fdd9e8242067916d5703be4.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_85cac74cfe5af781c09a2f71.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_d8f6cc30b28b0c814027d9d1.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_8d31196874b2597fd68c5aba.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.911000;font-style:normal;font-weight: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_eb78aa6ed742842e2433fdfa.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_7c8159d994d4835f8838de21.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.012000;font-style:normal;font-weight: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_6e7304e5feb047f92e7e1063.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.198000;font-style:normal;font-weight: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_cd08b5ca6ff39016c9d3fa8c.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.667000;font-style:normal;font-weight: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_21a60c8dd1553a4b53313fb6.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.100050;font-style:normal;font-weight: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_bf4833f35f4cd382f831b17b.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.666000;font-style:normal;font-weight: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_d48f90dd1b9f3011bd5d1e87.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.994000;font-style:normal;font-weight: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_00d270d65f98dd3fae4c8375.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_1a86a922a5351046575c5497.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.736595;font-style:normal;font-weight: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_fd902c4d5ddad7c76cd9fb94.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.003922;font-style:normal;font-weight: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_981bb6478de20bb1267f713b.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.666000;font-style:normal;font-weight: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_98403ee28ac06701f2a04b4a.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_74665ee33f9ba8c0f22214ea.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.925000;font-style:normal;font-weight: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_6a528ddcefcd64743820f70b.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.887000;font-style:normal;font-weight: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_3524c88ba461d27408304476.woff2')format("woff");}.ff2f{font-family:ff2f;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:ff30;src:url('chunks/assets/font_932d69b228718d0ff9c88e76.woff2')format("woff");}.ff30{font-family:ff30;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:ff31;src:url('chunks/assets/font_942ee5f7712514e23252f122.woff2')format("woff");}.ff31{font-family:ff31;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:ff32;src:url('chunks/assets/font_c620e7887d1ab3c6e0a22936.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.932000;font-style:normal;font-weight: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_8304a21bb7bf7ad6daa052a5.woff2')format("woff");}.ff33{font-family:ff33;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:ff34;src:url('chunks/assets/font_ec126506f202c1732f8167a5.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.701000;font-style:normal;font-weight: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_d2c166a60e25c659578c6f2b.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.719069;font-style:normal;font-weight: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_dc0d7dfa0b4af7f8997cee44.woff2')format("woff");}.ff36{font-family:ff36;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:ff37;src:url('chunks/assets/font_6c20a66af6d9cc21f1d1661c.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_c26ac60ac90a342351dfa02d.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_e4625d8b6212be59fbc29d9e.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_f8aa575b6f2d1905d07ec51d.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_0b3698f48e2da8a2c21314c7.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.907000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.226193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226193,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);}
.v3{vertical-align:-23.754000px;}
.v5{vertical-align:-21.690000px;}
.v6{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:26.034000px;}
.v2{vertical-align:31.236000px;}
.v1{vertical-align:44.988000px;}
.v7{vertical-align:68.142000px;}
.ls12{letter-spacing:-0.864000px;}
.ls2a{letter-spacing:-0.508583px;}
.ls1c{letter-spacing:-0.490018px;}
.ls48{letter-spacing:-0.483203px;}
.ls4a{letter-spacing:-0.449883px;}
.ls13{letter-spacing:-0.396000px;}
.ls7{letter-spacing:-0.331200px;}
.ls24{letter-spacing:-0.294730px;}
.ls4{letter-spacing:-0.288000px;}
.ls14{letter-spacing:-0.264000px;}
.ls4b{letter-spacing:-0.252729px;}
.ls22{letter-spacing:-0.224556px;}
.ls49{letter-spacing:-0.177665px;}
.ls26{letter-spacing:-0.168417px;}
.ls11{letter-spacing:-0.132000px;}
.ls20{letter-spacing:-0.130804px;}
.lse{letter-spacing:-0.125280px;}
.ls21{letter-spacing:-0.112278px;}
.ls9{letter-spacing:-0.108000px;}
.ls25{letter-spacing:-0.084209px;}
.ls8{letter-spacing:-0.077760px;}
.ls10{letter-spacing:-0.041760px;}
.ls4e{letter-spacing:-0.032440px;}
.ls46{letter-spacing:-0.030554px;}
.ls47{letter-spacing:-0.029171px;}
.ls45{letter-spacing:-0.017603px;}
.ls4d{letter-spacing:-0.015088px;}
.ls4c{letter-spacing:-0.008802px;}
.ls0{letter-spacing:0.000000px;}
.ls6d{letter-spacing:0.000179px;}
.ls58{letter-spacing:0.000346px;}
.ls79{letter-spacing:0.000693px;}
.ls43{letter-spacing:0.001132px;}
.ls59{letter-spacing:0.001139px;}
.ls6a{letter-spacing:0.001200px;}
.ls50{letter-spacing:0.001505px;}
.ls2e{letter-spacing:0.002515px;}
.ls73{letter-spacing:0.002759px;}
.ls52{letter-spacing:0.003056px;}
.ls87{letter-spacing:0.004800px;}
.ls75{letter-spacing:0.006346px;}
.ls2f{letter-spacing:0.007544px;}
.ls3c{letter-spacing:0.017352px;}
.ls3b{letter-spacing:0.021375px;}
.ls30{letter-spacing:0.042750px;}
.ls44{letter-spacing:0.045391px;}
.ls3e{letter-spacing:0.047151px;}
.ls42{letter-spacing:0.048911px;}
.ls39{letter-spacing:0.050043px;}
.ls2c{letter-spacing:0.059096px;}
.ls41{letter-spacing:0.070664px;}
.ls3d{letter-spacing:0.071544px;}
.ls36{letter-spacing:0.072172px;}
.ls32{letter-spacing:0.077705px;}
.ls2d{letter-spacing:0.077956px;}
.lsf{letter-spacing:0.083520px;}
.ls38{letter-spacing:0.105493px;}
.ls4f{letter-spacing:0.124227px;}
.lsd{letter-spacing:0.132000px;}
.ls1d{letter-spacing:0.170045px;}
.lsb{letter-spacing:0.208800px;}
.ls40{letter-spacing:0.213877px;}
.ls1f{letter-spacing:0.224556px;}
.lsc{letter-spacing:0.268080px;}
.ls23{letter-spacing:0.294730px;}
.ls3a{letter-spacing:0.302647px;}
.ls1b{letter-spacing:0.305771px;}
.ls28{letter-spacing:0.317356px;}
.ls1a{letter-spacing:0.343012px;}
.ls27{letter-spacing:0.356008px;}
.ls3f{letter-spacing:0.402355px;}
.lsa{letter-spacing:0.542880px;}
.ls7f{letter-spacing:0.565473px;}
.ls65{letter-spacing:0.592737px;}
.ls6{letter-spacing:0.841680px;}
.ls2{letter-spacing:1.082160px;}
.ls5{letter-spacing:1.322640px;}
.ls3{letter-spacing:1.563120px;}
.ls1{letter-spacing:1.803600px;}
.ls76{letter-spacing:2.570657px;}
.ls57{letter-spacing:2.576657px;}
.ls15{letter-spacing:2.988479px;}
.ls16{letter-spacing:2.989895px;}
.ls17{letter-spacing:2.991649px;}
.ls19{letter-spacing:2.992894px;}
.ls68{letter-spacing:5.520587px;}
.ls74{letter-spacing:5.526587px;}
.ls31{letter-spacing:8.255826px;}
.ls77{letter-spacing:8.508587px;}
.ls35{letter-spacing:11.110033px;}
.ls37{letter-spacing:11.663271px;}
.ls33{letter-spacing:12.216510px;}
.ls34{letter-spacing:12.769748px;}
.ls63{letter-spacing:13.405473px;}
.ls54{letter-spacing:15.935518px;}
.ls56{letter-spacing:15.937473px;}
.ls5b{letter-spacing:15.941518px;}
.ls64{letter-spacing:15.943473px;}
.ls86{letter-spacing:16.387473px;}
.ls82{letter-spacing:16.393809px;}
.ls7c{letter-spacing:16.399809px;}
.ls7d{letter-spacing:16.740301px;}
.ls7e{letter-spacing:16.743848px;}
.ls5a{letter-spacing:18.924266px;}
.ls53{letter-spacing:18.926915px;}
.ls6e{letter-spacing:18.927537px;}
.ls55{letter-spacing:18.929236px;}
.ls6c{letter-spacing:18.930266px;}
.ls5c{letter-spacing:18.933537px;}
.ls85{letter-spacing:19.379236px;}
.ls7b{letter-spacing:19.919518px;}
.ls51{letter-spacing:19.925518px;}
.ls69{letter-spacing:20.466587px;}
.ls83{letter-spacing:21.041724px;}
.ls61{letter-spacing:21.924266px;}
.ls71{letter-spacing:24.450587px;}
.ls6b{letter-spacing:24.456587px;}
.ls62{letter-spacing:26.397537px;}
.ls80{letter-spacing:27.821724px;}
.ls29{letter-spacing:27.846479px;}
.ls7a{letter-spacing:27.933894px;}
.ls81{letter-spacing:29.225724px;}
.ls60{letter-spacing:29.754301px;}
.ls5d{letter-spacing:32.202301px;}
.ls84{letter-spacing:32.616587px;}
.ls78{letter-spacing:33.612587px;}
.ls18{letter-spacing:33.876479px;}
.ls5f{letter-spacing:33.885848px;}
.ls2b{letter-spacing:34.434479px;}
.ls72{letter-spacing:36.402587px;}
.ls5e{letter-spacing:36.875236px;}
.ls70{letter-spacing:59.771518px;}
.ls67{letter-spacing:59.777518px;}
.ls1e{letter-spacing:87.015636px;}
.ls6f{letter-spacing:683.426915px;}
.ls88{letter-spacing:794.582915px;}
.ls89{letter-spacing:836.126915px;}
.ls66{letter-spacing:847.520915px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws193{word-spacing:-71.731200px;}
.ws15e{word-spacing:-50.809387px;}
.ws132{word-spacing:-45.664082px;}
.ws46{word-spacing:-40.341627px;}
.wsf2{word-spacing:-35.858427px;}
.ws1cf{word-spacing:-35.112422px;}
.ws1{word-spacing:-34.749360px;}
.ws2{word-spacing:-34.268400px;}
.ws177{word-spacing:-33.739624px;}
.ws133{word-spacing:-33.211407px;}
.ws143{word-spacing:-32.255543px;}
.ws12b{word-spacing:-30.936074px;}
.ws155{word-spacing:-29.723543px;}
.ws1f9{word-spacing:-29.717543px;}
.ws186{word-spacing:-27.843314px;}
.wsed{word-spacing:-25.823995px;}
.ws167{word-spacing:-24.695531px;}
.ws134{word-spacing:-22.279711px;}
.ws151{word-spacing:-22.207980px;}
.ws4{word-spacing:-21.617280px;}
.ws14a{word-spacing:-21.548052px;}
.ws5{word-spacing:-21.539520px;}
.ws14f{word-spacing:-20.701624px;}
.ws166{word-spacing:-20.570390px;}
.ws15a{word-spacing:-20.561543px;}
.ws15b{word-spacing:-20.558162px;}
.ws1f5{word-spacing:-20.342968px;}
.ws12d{word-spacing:-20.328622px;}
.wse2{word-spacing:-20.041697px;}
.ws59{word-spacing:-19.475021px;}
.wsa4{word-spacing:-19.403290px;}
.ws149{word-spacing:-19.331558px;}
.ws141{word-spacing:-19.259827px;}
.ws185{word-spacing:-19.227740px;}
.ws183{word-spacing:-19.197967px;}
.ws39{word-spacing:-19.166535px;}
.ws5b{word-spacing:-19.116365px;}
.wsa3{word-spacing:-18.972902px;}
.ws1c3{word-spacing:-18.829440px;}
.ws194{word-spacing:-18.757709px;}
.ws14b{word-spacing:-18.685978px;}
.wsc5{word-spacing:-18.644278px;}
.ws1a2{word-spacing:-18.614246px;}
.ws11{word-spacing:-18.546720px;}
.ws1a8{word-spacing:-18.540986px;}
.ws10{word-spacing:-18.414720px;}
.ws181{word-spacing:-18.399053px;}
.wsf{word-spacing:-18.282720px;}
.wsb3{word-spacing:-18.183859px;}
.ws3{word-spacing:-18.083520px;}
.ws12{word-spacing:-18.018720px;}
.ws18d{word-spacing:-17.968666px;}
.ws17d{word-spacing:-17.896934px;}
.wsaf{word-spacing:-17.825203px;}
.ws11e{word-spacing:-17.753472px;}
.ws12e{word-spacing:-17.681741px;}
.ws1c4{word-spacing:-17.610010px;}
.ws75{word-spacing:-17.466547px;}
.ws1a0{word-spacing:-17.394816px;}
.ws1a1{word-spacing:-17.251354px;}
.wsdb{word-spacing:-17.179622px;}
.ws47{word-spacing:-17.162196px;}
.ws74{word-spacing:-17.107891px;}
.ws8a{word-spacing:-17.036160px;}
.wsc4{word-spacing:-16.892698px;}
.ws17c{word-spacing:-16.820966px;}
.ws142{word-spacing:-16.749235px;}
.wsfd{word-spacing:-16.742062px;}
.wsb1{word-spacing:-16.605773px;}
.ws8b{word-spacing:-16.534042px;}
.ws1c5{word-spacing:-16.247117px;}
.ws13d{word-spacing:-16.175386px;}
.wsa7{word-spacing:-16.103654px;}
.ws5e{word-spacing:-16.031923px;}
.ws1c0{word-spacing:-15.960192px;}
.wsc2{word-spacing:-15.744998px;}
.wsc8{word-spacing:-15.673267px;}
.ws1a3{word-spacing:-15.601536px;}
.wsbd{word-spacing:-15.529805px;}
.wsb6{word-spacing:-15.458074px;}
.wsd0{word-spacing:-15.386342px;}
.wsfb{word-spacing:-15.314611px;}
.wse0{word-spacing:-15.242880px;}
.ws8c{word-spacing:-15.171149px;}
.ws48{word-spacing:-15.067649px;}
.ws1bf{word-spacing:-15.027686px;}
.ws1c1{word-spacing:-14.955955px;}
.ws6{word-spacing:-14.904000px;}
.ws18b{word-spacing:-14.884224px;}
.ws6a{word-spacing:-14.812493px;}
.ws12f{word-spacing:-14.740762px;}
.ws1b2{word-spacing:-14.669030px;}
.wsd1{word-spacing:-14.597299px;}
.wsfe{word-spacing:-14.525568px;}
.ws1b5{word-spacing:-14.512582px;}
.wsb2{word-spacing:-14.453837px;}
.wsa6{word-spacing:-14.382106px;}
.ws184{word-spacing:-14.340882px;}
.ws18c{word-spacing:-14.310374px;}
.ws19a{word-spacing:-14.305943px;}
.ws180{word-spacing:-14.280882px;}
.ws179{word-spacing:-14.238643px;}
.ws1aa{word-spacing:-14.166912px;}
.ws62{word-spacing:-14.095181px;}
.ws53{word-spacing:-13.954921px;}
.wsfc{word-spacing:-13.951718px;}
.ws6f{word-spacing:-13.879987px;}
.wsfa{word-spacing:-13.808256px;}
.ws63{word-spacing:-13.736525px;}
.ws3f{word-spacing:-13.693102px;}
.ws60{word-spacing:-13.664794px;}
.ws84{word-spacing:-13.593062px;}
.wscf{word-spacing:-13.521331px;}
.ws182{word-spacing:-13.479345px;}
.wsa5{word-spacing:-13.449600px;}
.ws44{word-spacing:-13.442427px;}
.ws172{word-spacing:-13.383757px;}
.ws11f{word-spacing:-13.377869px;}
.ws11d{word-spacing:-13.306138px;}
.ws19f{word-spacing:-13.234406px;}
.ws19b{word-spacing:-13.191368px;}
.ws9b{word-spacing:-13.162675px;}
.wsf1{word-spacing:-13.155502px;}
.ws1e6{word-spacing:-13.119636px;}
.ws66{word-spacing:-13.090944px;}
.wsff{word-spacing:-13.070578px;}
.wsdf{word-spacing:-13.019213px;}
.wsbb{word-spacing:-12.947482px;}
.wsba{word-spacing:-12.804019px;}
.wse8{word-spacing:-12.796846px;}
.ws61{word-spacing:-12.732288px;}
.ws5f{word-spacing:-12.660557px;}
.wse3{word-spacing:-12.593452px;}
.ws1c6{word-spacing:-12.588826px;}
.ws9d{word-spacing:-12.445363px;}
.ws1fe{word-spacing:-12.402324px;}
.ws7f{word-spacing:-12.373632px;}
.ws16e{word-spacing:-12.301901px;}
.wsae{word-spacing:-12.230170px;}
.ws100{word-spacing:-12.205987px;}
.ws9c{word-spacing:-12.158438px;}
.wse{word-spacing:-12.152160px;}
.ws10d{word-spacing:-12.086707px;}
.wse1{word-spacing:-12.014976px;}
.ws19c{word-spacing:-11.943245px;}
.ws83{word-spacing:-11.871514px;}
.wse4{word-spacing:-11.760422px;}
.ws190{word-spacing:-11.756744px;}
.ws45{word-spacing:-11.728051px;}
.ws174{word-spacing:-11.685012px;}
.ws7c{word-spacing:-11.656320px;}
.ws10a{word-spacing:-11.590489px;}
.wsa1{word-spacing:-11.584589px;}
.ws89{word-spacing:-11.512858px;}
.ws80{word-spacing:-11.441126px;}
.wsf9{word-spacing:-11.369395px;}
.ws175{word-spacing:-11.326356px;}
.wsad{word-spacing:-11.297664px;}
.ws1f2{word-spacing:-11.254625px;}
.ws73{word-spacing:-11.225933px;}
.wse9{word-spacing:-11.154202px;}
.wsc9{word-spacing:-11.082470px;}
.ws1a6{word-spacing:-11.010739px;}
.wsb5{word-spacing:-10.939008px;}
.ws1d6{word-spacing:-10.895969px;}
.ws107{word-spacing:-10.867277px;}
.wsef{word-spacing:-10.820815px;}
.ws43{word-spacing:-10.813100px;}
.wsd2{word-spacing:-10.795546px;}
.ws1e9{word-spacing:-10.766615px;}
.ws192{word-spacing:-10.760268px;}
.ws1ff{word-spacing:-10.757789px;}
.wsf3{word-spacing:-10.752507px;}
.ws69{word-spacing:-10.723814px;}
.wsda{word-spacing:-10.652083px;}
.ws109{word-spacing:-10.640057px;}
.wsac{word-spacing:-10.580352px;}
.wsb8{word-spacing:-10.508621px;}
.ws3b{word-spacing:-10.485827px;}
.ws67{word-spacing:-10.436890px;}
.ws42{word-spacing:-10.420372px;}
.wsb0{word-spacing:-10.365158px;}
.ws131{word-spacing:-10.300634px;}
.ws189{word-spacing:-10.299345px;}
.ws106{word-spacing:-10.293427px;}
.ws17f{word-spacing:-10.293345px;}
.ws1b9{word-spacing:-10.290882px;}
.wsee{word-spacing:-10.231355px;}
.ws1b1{word-spacing:-10.221696px;}
.ws1a7{word-spacing:-10.174301px;}
.wsbe{word-spacing:-10.149965px;}
.wsc0{word-spacing:-10.078234px;}
.wsd8{word-spacing:-10.006502px;}
.ws7b{word-spacing:-9.976548px;}
.ws95{word-spacing:-9.934771px;}
.ws79{word-spacing:-9.916772px;}
.wsbc{word-spacing:-9.863040px;}
.wsb9{word-spacing:-9.791309px;}
.ws6d{word-spacing:-9.719578px;}
.ws8e{word-spacing:-9.647846px;}
.ws10f{word-spacing:-9.576115px;}
.ws7a{word-spacing:-9.558118px;}
.ws145{word-spacing:-9.504384px;}
.ws114{word-spacing:-9.457852px;}
.wsab{word-spacing:-9.432653px;}
.ws1a4{word-spacing:-9.289190px;}
.ws1be{word-spacing:-9.217459px;}
.ws5a{word-spacing:-9.145728px;}
.ws1b0{word-spacing:-9.102689px;}
.ws94{word-spacing:-9.073997px;}
.ws49{word-spacing:-9.045826px;}
.ws118{word-spacing:-9.030958px;}
.wsd5{word-spacing:-9.002266px;}
.ws4a{word-spacing:-8.980371px;}
.wsdc{word-spacing:-8.930534px;}
.ws1b3{word-spacing:-8.887496px;}
.wsb4{word-spacing:-8.858803px;}
.ws82{word-spacing:-8.787072px;}
.ws50{word-spacing:-8.718553px;}
.wsb7{word-spacing:-8.715341px;}
.ws113{word-spacing:-8.671144px;}
.ws57{word-spacing:-8.643610px;}
.ws98{word-spacing:-8.571878px;}
.wsbf{word-spacing:-8.500147px;}
.ws71{word-spacing:-8.428416px;}
.ws7e{word-spacing:-8.356685px;}
.ws105{word-spacing:-8.284954px;}
.ws11a{word-spacing:-8.243055px;}
.ws160{word-spacing:-8.213222px;}
.ws1e4{word-spacing:-8.206049px;}
.ws72{word-spacing:-8.141491px;}
.ws1d1{word-spacing:-7.998029px;}
.ws1e7{word-spacing:-7.990856px;}
.ws1b6{word-spacing:-7.926298px;}
.ws144{word-spacing:-7.854566px;}
.ws5c{word-spacing:-7.782835px;}
.ws65{word-spacing:-7.711104px;}
.ws7d{word-spacing:-7.639373px;}
.wsa0{word-spacing:-7.567642px;}
.ws169{word-spacing:-7.495910px;}
.ws16a{word-spacing:-7.424179px;}
.wsc1{word-spacing:-7.352448px;}
.ws3c{word-spacing:-7.344006px;}
.ws78{word-spacing:-7.286646px;}
.wsd9{word-spacing:-7.280717px;}
.ws8f{word-spacing:-7.208986px;}
.ws187{word-spacing:-7.165947px;}
.ws1b4{word-spacing:-7.137254px;}
.ws81{word-spacing:-7.065523px;}
.ws70{word-spacing:-6.993792px;}
.ws8d{word-spacing:-6.922061px;}
.ws17b{word-spacing:-6.850330px;}
.wsa2{word-spacing:-6.778598px;}
.ws16c{word-spacing:-6.706867px;}
.ws4b{word-spacing:-6.689460px;}
.ws110{word-spacing:-6.635136px;}
.ws1cd{word-spacing:-6.592097px;}
.wscd{word-spacing:-6.563405px;}
.ws68{word-spacing:-6.419942px;}
.ws58{word-spacing:-6.276480px;}
.ws10c{word-spacing:-6.204749px;}
.ws199{word-spacing:-6.133018px;}
.wsc3{word-spacing:-6.061286px;}
.wsdd{word-spacing:-5.989555px;}
.ws3d{word-spacing:-5.969460px;}
.ws1b7{word-spacing:-5.917824px;}
.ws1df{word-spacing:-5.858365px;}
.ws1dc{word-spacing:-5.854464px;}
.ws64{word-spacing:-5.846093px;}
.ws1c9{word-spacing:-5.841994px;}
.ws9a{word-spacing:-5.774362px;}
.ws117{word-spacing:-5.731323px;}
.ws6b{word-spacing:-5.702630px;}
.wsce{word-spacing:-5.559168px;}
.ws93{word-spacing:-5.487437px;}
.ws9e{word-spacing:-5.415706px;}
.ws119{word-spacing:-5.372667px;}
.wsca{word-spacing:-5.343974px;}
.ws140{word-spacing:-5.272243px;}
.ws16d{word-spacing:-5.128781px;}
.ws6e{word-spacing:-5.057050px;}
.ws17a{word-spacing:-4.985318px;}
.ws86{word-spacing:-4.913587px;}
.ws1ac{word-spacing:-4.698394px;}
.ws77{word-spacing:-4.656519px;}
.ws99{word-spacing:-4.626662px;}
.ws76{word-spacing:-4.596744px;}
.ws12c{word-spacing:-4.483200px;}
.ws96{word-spacing:-4.411469px;}
.wsd7{word-spacing:-4.339738px;}
.ws13e{word-spacing:-4.268006px;}
.ws9f{word-spacing:-4.196275px;}
.wsd3{word-spacing:-4.124544px;}
.ws4c{word-spacing:-4.071276px;}
.wsd6{word-spacing:-4.052813px;}
.ws40{word-spacing:-4.005822px;}
.ws10e{word-spacing:-3.981082px;}
.ws3e{word-spacing:-3.940367px;}
.ws1ad{word-spacing:-3.909350px;}
.ws41{word-spacing:-3.874912px;}
.ws5d{word-spacing:-3.837619px;}
.ws195{word-spacing:-3.765888px;}
.ws90{word-spacing:-3.694157px;}
.wscb{word-spacing:-3.622426px;}
.ws51{word-spacing:-3.613094px;}
.wsde{word-spacing:-3.550694px;}
.ws97{word-spacing:-3.478963px;}
.ws1af{word-spacing:-3.335501px;}
.ws196{word-spacing:-3.256596px;}
.ws91{word-spacing:-3.192038px;}
.ws1a9{word-spacing:-3.120307px;}
.wscc{word-spacing:-2.905114px;}
.ws197{word-spacing:-2.833382px;}
.ws198{word-spacing:-2.761651px;}
.ws4e{word-spacing:-2.500366px;}
.ws85{word-spacing:-2.402995px;}
.ws87{word-spacing:-2.331264px;}
.wsa8{word-spacing:-2.259533px;}
.ws111{word-spacing:-2.187802px;}
.wsd4{word-spacing:-2.116070px;}
.ws13f{word-spacing:-2.044339px;}
.ws147{word-spacing:-2.037166px;}
.ws108{word-spacing:-1.972608px;}
.ws6c{word-spacing:-1.900877px;}
.ws1ab{word-spacing:-1.829146px;}
.ws10b{word-spacing:-1.824795px;}
.wse7{word-spacing:-1.758183px;}
.ws148{word-spacing:-1.757414px;}
.wsaa{word-spacing:-1.685683px;}
.ws8{word-spacing:-1.563120px;}
.ws1c2{word-spacing:-1.398758px;}
.ws104{word-spacing:-1.327027px;}
.wsa{word-spacing:-1.322640px;}
.ws126{word-spacing:-1.301368px;}
.ws13a{word-spacing:-1.255296px;}
.ws139{word-spacing:-1.245926px;}
.ws88{word-spacing:-1.183565px;}
.ws19d{word-spacing:-1.176392px;}
.ws19e{word-spacing:-1.111834px;}
.wsa9{word-spacing:-1.040102px;}
.ws1d{word-spacing:-0.978000px;}
.ws16b{word-spacing:-0.968371px;}
.ws1bb{word-spacing:-0.949213px;}
.ws1bd{word-spacing:-0.896640px;}
.ws92{word-spacing:-0.824909px;}
.ws2d{word-spacing:-0.762000px;}
.ws1de{word-spacing:-0.753178px;}
.ws32{word-spacing:-0.582000px;}
.ws1a{word-spacing:-0.570000px;}
.ws2e{word-spacing:-0.504000px;}
.ws1ae{word-spacing:-0.394522px;}
.ws9{word-spacing:-0.360720px;}
.ws146{word-spacing:-0.322790px;}
.wsf7{word-spacing:-0.294730px;}
.ws15{word-spacing:-0.292320px;}
.ws21{word-spacing:-0.282000px;}
.ws16{word-spacing:-0.276000px;}
.ws30{word-spacing:-0.264000px;}
.ws23{word-spacing:-0.240000px;}
.ws18{word-spacing:-0.234000px;}
.ws14{word-spacing:-0.167040px;}
.ws34{word-spacing:-0.150000px;}
.ws1c{word-spacing:-0.126000px;}
.ws2a{word-spacing:-0.120000px;}
.ws2b{word-spacing:-0.102000px;}
.ws29{word-spacing:-0.084000px;}
.ws137{word-spacing:-0.071731px;}
.ws15d{word-spacing:-0.047821px;}
.ws0{word-spacing:0.000000px;}
.ws2f{word-spacing:0.024000px;}
.ws13{word-spacing:0.041760px;}
.wsd{word-spacing:0.108000px;}
.ws36{word-spacing:0.114000px;}
.ws35{word-spacing:0.132000px;}
.ws1e{word-spacing:0.138000px;}
.ws24{word-spacing:0.150000px;}
.ws19{word-spacing:0.156000px;}
.ws26{word-spacing:0.162000px;}
.ws22{word-spacing:0.180000px;}
.ws20{word-spacing:0.186000px;}
.ws2c{word-spacing:0.198000px;}
.wsc{word-spacing:0.216000px;}
.ws31{word-spacing:0.252000px;}
.ws37{word-spacing:0.264000px;}
.ws28{word-spacing:0.294000px;}
.wsf8{word-spacing:0.294730px;}
.ws33{word-spacing:0.432000px;}
.ws17{word-spacing:0.462000px;}
.ws38{word-spacing:0.558000px;}
.ws7{word-spacing:0.576000px;}
.ws1f{word-spacing:0.594000px;}
.ws125{word-spacing:0.595989px;}
.wsf6{word-spacing:0.654021px;}
.wsb{word-spacing:0.662400px;}
.ws1b{word-spacing:0.858000px;}
.ws27{word-spacing:0.864000px;}
.wseb{word-spacing:0.898226px;}
.ws25{word-spacing:0.900000px;}
.ws124{word-spacing:1.077558px;}
.wsec{word-spacing:1.122782px;}
.wsea{word-spacing:1.235061px;}
.ws138{word-spacing:1.981366px;}
.ws1e1{word-spacing:2.044339px;}
.ws122{word-spacing:2.235586px;}
.ws120{word-spacing:2.811457px;}
.ws123{word-spacing:3.161003px;}
.ws127{word-spacing:3.345835px;}
.ws121{word-spacing:3.445166px;}
.ws1ba{word-spacing:4.505118px;}
.ws55{word-spacing:4.634186px;}
.ws150{word-spacing:11.877610px;}
.ws14e{word-spacing:11.883610px;}
.wse5{word-spacing:14.783831px;}
.ws101{word-spacing:15.343943px;}
.ws15f{word-spacing:15.852595px;}
.ws1ce{word-spacing:17.861069px;}
.ws168{word-spacing:18.873745px;}
.ws135{word-spacing:18.875840px;}
.ws136{word-spacing:18.879745px;}
.ws171{word-spacing:18.951551px;}
.ws176{word-spacing:19.869542px;}
.ws52{word-spacing:20.421835px;}
.ws13c{word-spacing:22.599745px;}
.ws11c{word-spacing:22.850207px;}
.ws11b{word-spacing:22.850300px;}
.ws1c7{word-spacing:23.312640px;}
.ws1d4{word-spacing:23.456102px;}
.ws1d7{word-spacing:24.316877px;}
.ws1c8{word-spacing:24.603802px;}
.ws191{word-spacing:25.019887px;}
.ws1da{word-spacing:25.392845px;}
.ws18a{word-spacing:25.775840px;}
.ws1f4{word-spacing:26.033338px;}
.ws1d5{word-spacing:26.110157px;}
.ws1db{word-spacing:26.397082px;}
.ws130{word-spacing:26.725020px;}
.ws1a5{word-spacing:26.999840px;}
.ws1cc{word-spacing:27.114394px;}
.ws3a{word-spacing:27.200395px;}
.ws4f{word-spacing:27.294568px;}
.ws1cb{word-spacing:27.329587px;}
.ws1dd{word-spacing:27.616512px;}
.ws178{word-spacing:28.031840px;}
.ws1d8{word-spacing:28.549018px;}
.wse6{word-spacing:29.435357px;}
.ws115{word-spacing:29.530481px;}
.ws15c{word-spacing:29.551366px;}
.ws1d0{word-spacing:30.198835px;}
.ws1d9{word-spacing:30.428003px;}
.ws102{word-spacing:30.550569px;}
.ws14c{word-spacing:30.759745px;}
.ws1b8{word-spacing:31.165020px;}
.ws1d3{word-spacing:31.274803px;}
.wsc7{word-spacing:31.504255px;}
.wsc6{word-spacing:31.934641px;}
.ws1ca{word-spacing:32.207309px;}
.ws13b{word-spacing:32.687840px;}
.ws1d2{word-spacing:32.852890px;}
.ws4d{word-spacing:34.494574px;}
.ws1bc{word-spacing:37.109840px;}
.ws1e0{word-spacing:37.141941px;}
.ws54{word-spacing:42.676399px;}
.ws116{word-spacing:43.702798px;}
.ws56{word-spacing:55.726250px;}
.ws188{word-spacing:66.457020px;}
.ws112{word-spacing:72.799432px;}
.ws103{word-spacing:94.598843px;}
.ws1ec{word-spacing:104.476493px;}
.ws173{word-spacing:107.632319px;}
.ws170{word-spacing:121.713196px;}
.ws163{word-spacing:131.157610px;}
.wsf0{word-spacing:141.857007px;}
.ws16f{word-spacing:149.554099px;}
.ws1ed{word-spacing:155.190451px;}
.ws1f7{word-spacing:162.507034px;}
.wsf5{word-spacing:168.592336px;}
.ws18f{word-spacing:171.159509px;}
.ws128{word-spacing:178.103581px;}
.ws1ee{word-spacing:180.583296px;}
.ws1fa{word-spacing:203.465549px;}
.ws18e{word-spacing:208.244477px;}
.ws1f1{word-spacing:209.777894px;}
.ws129{word-spacing:215.219117px;}
.ws1f8{word-spacing:224.984909px;}
.ws1fc{word-spacing:244.424064px;}
.ws1f0{word-spacing:244.926182px;}
.wsf4{word-spacing:247.293231px;}
.ws12a{word-spacing:278.046321px;}
.ws1fd{word-spacing:279.500621px;}
.ws162{word-spacing:282.011213px;}
.ws1ea{word-spacing:315.151027px;}
.ws153{word-spacing:317.087770px;}
.ws1e3{word-spacing:334.661914px;}
.ws164{word-spacing:337.100774px;}
.ws165{word-spacing:348.577766px;}
.ws156{word-spacing:352.236058px;}
.ws154{word-spacing:356.109542px;}
.ws1f3{word-spacing:384.873754px;}
.ws1ef{word-spacing:385.770394px;}
.ws1e8{word-spacing:387.312614px;}
.ws159{word-spacing:410.696986px;}
.ws17e{word-spacing:411.169020px;}
.ws158{word-spacing:445.845274px;}
.ws1fb{word-spacing:455.493120px;}
.ws1e5{word-spacing:477.550464px;}
.ws161{word-spacing:505.620457px;}
.ws14d{word-spacing:516.070118px;}
.ws157{word-spacing:586.689485px;}
.ws1eb{word-spacing:628.482457px;}
.ws1f6{word-spacing:658.320457px;}
.ws152{word-spacing:704.826457px;}
.ws1e2{word-spacing:722.382457px;}
._56{margin-left:-2463.480172px;}
._4{margin-left:-9.546075px;}
._10{margin-left:-7.914529px;}
._7{margin-left:-6.800099px;}
._e{margin-left:-5.769048px;}
._1{margin-left:-4.448880px;}
._5{margin-left:-2.975400px;}
._2{margin-left:-1.214424px;}
._0{width:1.008000px;}
._3{width:2.044080px;}
._6{width:3.347325px;}
._16{width:4.467979px;}
._2b{width:6.181002px;}
._45{width:7.460045px;}
._42{width:9.688908px;}
._3f{width:12.107522px;}
._c{width:17.287890px;}
._22{width:19.152230px;}
._18{width:20.762981px;}
._19{width:22.541043px;}
._1e{width:24.036593px;}
._14{width:25.397169px;}
._11{width:27.279183px;}
._1b{width:29.221387px;}
._9{width:30.305480px;}
._b{width:31.936077px;}
._d{width:33.877729px;}
._1f{width:35.933568px;}
._1d{width:37.589414px;}
._8{width:39.800159px;}
._12{width:41.293274px;}
._17{width:42.895258px;}
._1a{width:43.898309px;}
._f{width:45.954897px;}
._15{width:48.106765px;}
._a{width:49.483678px;}
._20{width:51.143102px;}
._25{width:52.708656px;}
._60{width:53.720477px;}
._23{width:55.644040px;}
._24{width:56.739379px;}
._2e{width:57.788345px;}
._61{width:58.964232px;}
._13{width:60.223197px;}
._1c{width:61.243483px;}
._39{width:62.416041px;}
._21{width:63.693542px;}
._41{width:71.069231px;}
._2f{width:72.076355px;}
._44{width:74.951045px;}
._3a{width:76.704050px;}
._3d{width:86.075133px;}
._27{width:94.684920px;}
._26{width:111.452500px;}
._2c{width:119.874421px;}
._32{width:122.171157px;}
._5a{width:127.999213px;}
._5b{width:129.901224px;}
._59{width:132.802826px;}
._35{width:136.517012px;}
._74{width:148.793431px;}
._62{width:160.187431px;}
._57{width:169.920998px;}
._69{width:171.617431px;}
._58{width:175.735238px;}
._48{width:177.743431px;}
._33{width:186.843199px;}
._5f{width:187.916825px;}
._5e{width:191.512428px;}
._40{width:198.507433px;}
._65{width:212.855431px;}
._5c{width:236.946310px;}
._5d{width:245.000935px;}
._6a{width:261.603686px;}
._75{width:277.456282px;}
._28{width:280.023010px;}
._29{width:288.199299px;}
._2a{width:294.206388px;}
._68{width:296.818510px;}
._73{width:298.975642px;}
._7a{width:318.272880px;}
._7b{width:353.563085px;}
._51{width:354.633857px;}
._71{width:361.166592px;}
._46{width:372.208001px;}
._53{width:375.826227px;}
._52{width:388.120762px;}
._64{width:389.782145px;}
._47{width:393.589094px;}
._70{width:396.314880px;}
._49{width:407.218022px;}
._66{width:436.556083px;}
._50{width:448.248269px;}
._31{width:454.930406px;}
._72{width:458.936218px;}
._67{width:466.467994px;}
._55{width:481.533091px;}
._4f{width:483.396557px;}
._6d{width:486.982227px;}
._6f{width:495.377213px;}
._6c{width:502.046669px;}
._6b{width:519.160843px;}
._77{width:528.520227px;}
._4c{width:539.920227px;}
._4e{width:548.314838px;}
._43{width:553.549670px;}
._54{width:555.453331px;}
._76{width:560.698843px;}
._63{width:564.710530px;}
._4a{width:572.098843px;}
._4b{width:589.128346px;}
._30{width:620.111174px;}
._6e{width:666.609331px;}
._78{width:708.147331px;}
._79{width:717.902774px;}
._4d{width:719.547331px;}
._2d{width:733.374017px;}
._36{width:770.851048px;}
._34{width:821.854076px;}
._37{width:866.800567px;}
._38{width:912.118403px;}
._3e{width:1101.869220px;}
._3b{width:1262.666325px;}
._3c{width:1288.691970px;}
.fc16{color:rgb(10,11,11);}
.fc15{color:rgb(28,7,7);}
.fc14{color:rgb(29,29,30);}
.fc13{color:rgb(41,41,42);}
.fc12{color:rgb(9,10,10);}
.fc10{color:rgb(11,11,11);}
.fce{color:rgb(10,10,10);}
.fcd{color:rgb(5,5,5);}
.fc0{color:rgb(0,0,0);}
.fc11{color:rgb(13,14,14);}
.fc9{color:rgb(28,28,28);}
.fc2{color:rgb(0,60,103);}
.fcf{color:rgb(11,7,7);}
.fc3{color:rgb(127,152,152);}
.fc4{color:rgb(111,111,110);}
.fc6{color:transparent;}
.fc7{color:rgb(0,0,255);}
.fca{color:rgb(28,28,29);}
.fc5{color:rgb(89,89,89);}
.fc8{color:rgb(42,42,43);}
.fcb{color:rgb(18,15,15);}
.fc1{color:rgb(255,255,255);}
.fcc{color:rgb(8,9,9);}
.fs21{font-size:16.345680px;}
.fs25{font-size:20.960891px;}
.fs20{font-size:25.775880px;}
.fs26{font-size:29.476310px;}
.fs23{font-size:30.176640px;}
.fs1f{font-size:33.948720px;}
.fs1e{font-size:34.577400px;}
.fs24{font-size:34.920413px;}
.fs22{font-size:35.206080px;}
.fsa{font-size:41.760000px;}
.fs12{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs18{font-size:42.104340px;}
.fs10{font-size:47.820600px;}
.fs14{font-size:49.001760px;}
.fs19{font-size:49.106924px;}
.fs1b{font-size:50.858280px;}
.fs9{font-size:54.000000px;}
.fs1d{font-size:57.846192px;}
.fsd{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs13{font-size:60.108826px;}
.fs1a{font-size:62.386157px;}
.fs1{font-size:63.000000px;}
.fse{font-size:65.454600px;}
.fs7{font-size:66.240000px;}
.fsf{font-size:71.731200px;}
.fs0{font-size:72.000000px;}
.fs15{font-size:76.442746px;}
.fs8{font-size:77.760000px;}
.fs1c{font-size:79.338917px;}
.fsc{font-size:86.077200px;}
.fs2{font-size:102.000000px;}
.fs11{font-size:103.292400px;}
.fs17{font-size:112.278240px;}
.fs6{font-size:120.240000px;}
.fsb{font-size:123.975000px;}
.fs16{font-size:130.804150px;}
.fs5{font-size:144.000000px;}
.y11f{bottom:-357.528001px;}
.y132{bottom:-345.621993px;}
.y12c{bottom:-330.682373px;}
.y12d{bottom:-286.016089px;}
.y12e{bottom:-241.349804px;}
.y12f{bottom:-196.683520px;}
.y130{bottom:-152.017235px;}
.y131{bottom:-107.350951px;}
.y133{bottom:-81.442048px;}
.y11e{bottom:-35.428273px;}
.y11d{bottom:-7.791206px;}
.ye8{bottom:-6.469539px;}
.y0{bottom:0.000000px;}
.y12a{bottom:4.142689px;}
.yfb{bottom:5.001855px;}
.y10d{bottom:5.401870px;}
.y23{bottom:7.560000px;}
.y161{bottom:10.555537px;}
.y167{bottom:12.221539px;}
.y172{bottom:12.256117px;}
.y1d4{bottom:12.997913px;}
.y1f9{bottom:18.278351px;}
.y120{bottom:19.044165px;}
.yf5{bottom:19.396122px;}
.y1d8{bottom:19.916218px;}
.y1d2{bottom:22.343187px;}
.y114{bottom:23.763375px;}
.y160{bottom:24.716554px;}
.y10c{bottom:25.575463px;}
.y1f7{bottom:28.007235px;}
.y10b{bottom:30.838505px;}
.y16b{bottom:34.712566px;}
.y1d9{bottom:38.429824px;}
.y15f{bottom:38.880715px;}
.y121{bottom:43.863006px;}
.y177{bottom:49.881817px;}
.y113{bottom:51.112529px;}
.y15e{bottom:53.041732px;}
.y170{bottom:53.695559px;}
.y184{bottom:57.730500px;}
.yb9{bottom:57.732000px;}
.y166{bottom:60.922235px;}
.y91{bottom:61.467000px;}
.yf6{bottom:62.431917px;}
.y176{bottom:63.389260px;}
.y5{bottom:66.525004px;}
.y15d{bottom:67.205892px;}
.y16f{bottom:67.812568px;}
.y122{bottom:68.681847px;}
.y102{bottom:71.224169px;}
.y1d5{bottom:78.679966px;}
.y15c{bottom:81.366909px;}
.y111{bottom:81.477196px;}
.y175{bottom:83.724509px;}
.y165{bottom:83.762180px;}
.y1d3{bottom:88.872360px;}
.y164{bottom:91.608106px;}
.y171{bottom:91.642684px;}
.y123{bottom:93.500687px;}
.y4{bottom:97.125005px;}
.yb8{bottom:102.562500px;}
.y1b8{bottom:102.564000px;}
.yf7{bottom:105.467713px;}
.y119{bottom:106.050000px;}
.y68{bottom:106.299000px;}
.ye5{bottom:109.234500px;}
.y103{bottom:113.002201px;}
.y16a{bottom:113.998544px;}
.y173{bottom:114.033122px;}
.y124{bottom:118.319528px;}
.y163{bottom:119.826408px;}
.y162{bottom:121.530131px;}
.y90{bottom:124.231500px;}
.y143{bottom:125.919000px;}
.y118{bottom:127.717500px;}
.yb7{bottom:129.454500px;}
.y169{bottom:136.665602px;}
.y67{bottom:137.460000px;}
.y21{bottom:139.264499px;}
.y8f{bottom:142.164000px;}
.y125{bottom:143.138369px;}
.yf8{bottom:148.503509px;}
.y117{bottom:149.386500px;}
.y1f8{bottom:150.537146px;}
.y142{bottom:152.515500px;}
.y104{bottom:154.780232px;}
.yb6{bottom:156.345000px;}
.y66{bottom:159.198000px;}
.y8e{bottom:160.098000px;}
.y1e2{bottom:167.923500px;}
.y126{bottom:167.957209px;}
.y1b7{bottom:170.136000px;}
.y116{bottom:171.055500px;}
.y267{bottom:171.420000px;}
.y65{bottom:174.997500px;}
.y112{bottom:176.535861px;}
.y8d{bottom:178.030500px;}
.y141{bottom:179.406000px;}
.yb5{bottom:183.235500px;}
.yf9{bottom:191.539305px;}
.y115{bottom:192.724500px;}
.y127{bottom:192.776050px;}
.y105{bottom:196.558263px;}
.y18{bottom:196.933500px;}
.y1b6{bottom:197.028000px;}
.y158{bottom:198.223500px;}
.y266{bottom:198.312000px;}
.y8c{bottom:201.385500px;}
.y217{bottom:203.868000px;}
.y64{bottom:206.158500px;}
.y140{bottom:206.298000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.yb4{bottom:210.126000px;}
.y1ce{bottom:210.127500px;}
.y235{bottom:210.216000px;}
.y205{bottom:212.796000px;}
.y110{bottom:214.393500px;}
.y128{bottom:217.594891px;}
.y168{bottom:221.465104px;}
.y63{bottom:221.958000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y1b5{bottom:223.918500px;}
.y1e1{bottom:228.615000px;}
.y8b{bottom:231.160500px;}
.y13f{bottom:233.188500px;}
.yfa{bottom:234.575100px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y183{bottom:237.016500px;}
.yb3{bottom:237.018000px;}
.y234{bottom:237.108000px;}
.y106{bottom:238.336295px;}
.y204{bottom:239.686500px;}
.y265{bottom:240.277500px;}
.y129{bottom:242.413731px;}
.y216{bottom:244.668000px;}
.y1e0{bottom:250.284000px;}
.y1cd{bottom:250.344000px;}
.y1b4{bottom:250.809000px;}
.y62{bottom:253.119000px;}
.y8a{bottom:258.052500px;}
.y2a9{bottom:258.144000px;}
.yfc{bottom:259.538230px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y13e{bottom:260.079000px;}
.yb2{bottom:263.908500px;}
.y233{bottom:263.998500px;}
.y203{bottom:266.577000px;}
.y264{bottom:267.168000px;}
.y12b{bottom:268.284491px;}
.y61{bottom:268.918500px;}
.y28a{bottom:268.978500px;}
.y1ca{bottom:271.498500px;}
.y1df{bottom:271.953000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y2a8{bottom:279.813000px;}
.y107{bottom:280.114326px;}
.y89{bottom:284.943000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y13d{bottom:286.969500px;}
.y1cc{bottom:288.534000px;}
.y32{bottom:289.620000px;}
.y2af{bottom:290.646000px;}
.y289{bottom:290.647500px;}
.yb1{bottom:290.799000px;}
.y232{bottom:290.889000px;}
.y202{bottom:293.467500px;}
.y1de{bottom:293.622000px;}
.y1cb{bottom:293.914500px;}
.y263{bottom:294.060000px;}
.y60{bottom:294.141000px;}
.y198{bottom:295.497000px;}
.y2a7{bottom:301.480500px;}
.ye7{bottom:303.872328px;}
.y1b3{bottom:304.818000px;}
.y1f4{bottom:306.258000px;}
.y1f1{bottom:306.789000px;}
.y157{bottom:307.455000px;}
.y15b{bottom:307.800471px;}
.y16e{bottom:307.830019px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y88{bottom:311.833500px;}
.y288{bottom:312.315000px;}
.y182{bottom:313.053000px;}
.y1c9{bottom:313.507500px;}
.y13c{bottom:313.861500px;}
.y1c6{bottom:314.038500px;}
.y1dd{bottom:315.291000px;}
.yb0{bottom:317.689500px;}
.y231{bottom:317.779500px;}
.y5f{bottom:319.362000px;}
.y201{bottom:320.359500px;}
.y215{bottom:321.214500px;}
.y108{bottom:321.892358px;}
.y197{bottom:322.389000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y2a6{bottom:323.149500px;}
.y1b0{bottom:325.972500px;}
.y1f0{bottom:327.412500px;}
.y156{bottom:329.124000px;}
.ye6{bottom:330.500537px;}
.y287{bottom:333.984000px;}
.y1c5{bottom:334.662000px;}
.y262{bottom:336.025500px;}
.y1dc{bottom:336.960000px;}
.y87{bottom:338.724000px;}
.y13b{bottom:340.752000px;}
.yf3{bottom:341.998800px;}
.y1b2{bottom:343.008000px;}
.y1f3{bottom:344.448000px;}
.yaf{bottom:344.581500px;}
.y5e{bottom:344.584500px;}
.y230{bottom:344.670000px;}
.y2a5{bottom:344.818500px;}
.y24a{bottom:345.126000px;}
.y214{bottom:348.106500px;}
.yf{bottom:348.133500px;}
.y1b1{bottom:348.388500px;}
.y196{bottom:349.279500px;}
.ye2{bottom:349.806000px;}
.y1f2{bottom:349.828500px;}
.y155{bottom:350.793000px;}
.y1c8{bottom:351.697500px;}
.y286{bottom:355.653000px;}
.ye9{bottom:356.356316px;}
.y1c7{bottom:357.078000px;}
.yd8{bottom:357.469500px;}
.y1db{bottom:358.627500px;}
.y200{bottom:360.303000px;}
.y181{bottom:362.199000px;}
.y261{bottom:362.916000px;}
.y109{bottom:363.670389px;}
.y86{bottom:365.614500px;}
.y2a4{bottom:366.487500px;}
.y13a{bottom:367.642500px;}
.y1af{bottom:368.878500px;}
.y5d{bottom:369.805500px;}
.yae{bottom:371.472000px;}
.y22f{bottom:371.562000px;}
.y249{bottom:372.016500px;}
.y154{bottom:372.462000px;}
.y213{bottom:374.997000px;}
.y195{bottom:376.170000px;}
.ye1{bottom:376.698000px;}
.y28{bottom:377.100000px;}
.y285{bottom:377.322000px;}
.ye4{bottom:377.433000px;}
.yea{bottom:380.269175px;}
.y1da{bottom:380.296500px;}
.ye{bottom:386.785499px;}
.y299{bottom:388.156500px;}
.y180{bottom:389.089500px;}
.yd7{bottom:390.852000px;}
.y85{bottom:392.506500px;}
.y16d{bottom:392.934000px;}
.y139{bottom:394.533000px;}
.y5c{bottom:395.028000px;}
.yad{bottom:398.362500px;}
.y22e{bottom:398.452500px;}
.y248{bottom:398.907000px;}
.y284{bottom:398.991000px;}
.ye3{bottom:399.102000px;}
.y212{bottom:401.887500px;}
.y194{bottom:403.060500px;}
.ye0{bottom:403.588500px;}
.yeb{bottom:404.182034px;}
.y260{bottom:404.883000px;}
.y10a{bottom:405.448420px;}
.y153{bottom:407.927474px;}
.yd{bottom:408.044999px;}
.y298{bottom:409.825500px;}
.y1ef{bottom:411.996000px;}
.y17f{bottom:415.980000px;}
.y1d7{bottom:416.853000px;}
.y84{bottom:419.397000px;}
.y283{bottom:420.658500px;}
.y138{bottom:421.425000px;}
.yac{bottom:425.253000px;}
.y22d{bottom:425.343000px;}
.y152{bottom:425.400796px;}
.y247{bottom:425.797500px;}
.y5b{bottom:426.187500px;}
.yec{bottom:428.094893px;}
.y211{bottom:428.778000px;}
.y193{bottom:429.951000px;}
.ydf{bottom:430.479000px;}
.y297{bottom:431.493000px;}
.y25f{bottom:431.773500px;}
.y1ee{bottom:438.886500px;}
.y101{bottom:440.957817px;}
.y282{bottom:442.327500px;}
.y151{bottom:442.875327px;}
.yd6{bottom:443.298000px;}
.y83{bottom:446.287500px;}
.y1ff{bottom:446.343000px;}
.y137{bottom:448.315500px;}
.yed{bottom:452.007751px;}
.yab{bottom:452.145000px;}
.y246{bottom:452.689500px;}
.y296{bottom:453.162000px;}
.y17e{bottom:455.590500px;}
.y210{bottom:455.670000px;}
.y192{bottom:456.843000px;}
.yc4{bottom:457.369500px;}
.y150{bottom:460.349859px;}
.y281{bottom:463.996500px;}
.y1ed{bottom:467.808000px;}
.y1fe{bottom:468.012000px;}
.y82{bottom:473.178000px;}
.y25e{bottom:473.740500px;}
.y22c{bottom:474.489000px;}
.y295{bottom:474.831000px;}
.y5a{bottom:474.910500px;}
.y136{bottom:475.206000px;}
.yee{bottom:475.920610px;}
.y1c4{bottom:477.486000px;}
.y14f{bottom:477.824391px;}
.yaa{bottom:479.035500px;}
.y245{bottom:479.580000px;}
.y20f{bottom:482.560500px;}
.y191{bottom:483.733500px;}
.yc3{bottom:484.260000px;}
.y280{bottom:485.665500px;}
.y1fd{bottom:489.679500px;}
.y1ec{bottom:494.698500px;}
.y14e{bottom:495.298922px;}
.y294{bottom:496.500000px;}
.y1ae{bottom:496.912500px;}
.y1c3{bottom:499.155000px;}
.yef{bottom:499.833469px;}
.y81{bottom:500.070000px;}
.y25d{bottom:500.631000px;}
.y59{bottom:501.801000px;}
.y135{bottom:502.096500px;}
.yc{bottom:502.864502px;}
.ya9{bottom:505.926000px;}
.y244{bottom:506.470500px;}
.y27f{bottom:507.334500px;}
.y20e{bottom:509.451000px;}
.yc2{bottom:511.152000px;}
.y1fc{bottom:511.348500px;}
.y29{bottom:512.460000px;}
.y14d{bottom:512.772244px;}
.yd5{bottom:515.088000px;}
.y17d{bottom:517.518000px;}
.y293{bottom:518.169000px;}
.y1ad{bottom:518.581500px;}
.y1c2{bottom:520.822500px;}
.yb{bottom:520.864502px;}
.y1eb{bottom:521.589000px;}
.yf0{bottom:523.746328px;}
.y80{bottom:526.960500px;}
.y27e{bottom:529.003500px;}
.y100{bottom:529.118106px;}
.y14c{bottom:530.246776px;}
.y21d{bottom:532.816500px;}
.y1fb{bottom:533.017500px;}
.y243{bottom:533.361000px;}
.y20d{bottom:536.341500px;}
.ya8{bottom:538.042500px;}
.ya{bottom:538.864499px;}
.y1ac{bottom:540.250500px;}
.y134{bottom:540.567000px;}
.yd4{bottom:541.978500px;}
.y190{bottom:542.214000px;}
.y1c1{bottom:542.491500px;}
.y25c{bottom:542.598000px;}
.y58{bottom:543.393000px;}
.y17c{bottom:544.408500px;}
.yf1{bottom:547.659187px;}
.y14b{bottom:547.721308px;}
.y1ea{bottom:548.481000px;}
.y22b{bottom:550.614000px;}
.y7f{bottom:553.851000px;}
.y1fa{bottom:554.686500px;}
.y9{bottom:556.864499px;}
.y21c{bottom:559.707000px;}
.y242{bottom:560.251500px;}
.y1ab{bottom:561.919500px;}
.y20c{bottom:563.232000px;}
.y1c0{bottom:564.160500px;}
.ya7{bottom:564.933000px;}
.y14a{bottom:565.195839px;}
.y57{bottom:568.615500px;}
.yd3{bottom:568.870500px;}
.y18f{bottom:569.104500px;}
.y25b{bottom:569.488500px;}
.y17b{bottom:571.300500px;}
.yf2{bottom:571.572046px;}
.y2ae{bottom:574.056000px;}
.y1e9{bottom:575.371500px;}
.y22a{bottom:577.506000px;}
.y7e{bottom:580.741500px;}
.y149{bottom:582.670371px;}
.y1f6{bottom:583.026000px;}
.y1aa{bottom:583.588500px;}
.y292{bottom:584.890500px;}
.y1bf{bottom:585.829500px;}
.y21b{bottom:586.599000px;}
.y241{bottom:587.143500px;}
.y10f{bottom:589.302000px;}
.y20b{bottom:590.124000px;}
.ya6{bottom:591.823500px;}
.y56{bottom:593.838000px;}
.y27d{bottom:595.725000px;}
.yd2{bottom:595.761000px;}
.y18e{bottom:595.995000px;}
.y25a{bottom:596.379000px;}
.yf4{bottom:596.498424px;}
.y17a{bottom:598.191000px;}
.y148{bottom:600.144903px;}
.y1e8{bottom:602.262000px;}
.y229{bottom:604.396500px;}
.y1a9{bottom:605.256000px;}
.y11c{bottom:605.625000px;}
.y291{bottom:606.558000px;}
.y1be{bottom:607.498500px;}
.y7d{bottom:607.633500px;}
.y10e{bottom:610.971000px;}
.y21a{bottom:613.489500px;}
.y240{bottom:614.034000px;}
.y20a{bottom:617.014500px;}
.y27c{bottom:617.392500px;}
.y147{bottom:617.618225px;}
.ya5{bottom:618.715500px;}
.y55{bottom:619.059000px;}
.yd1{bottom:622.651500px;}
.y18d{bottom:622.885500px;}
.y1a8{bottom:626.925000px;}
.y290{bottom:628.227000px;}
.y1bd{bottom:629.167500px;}
.y1e7{bottom:631.183500px;}
.y228{bottom:631.287000px;}
.y146{bottom:635.092756px;}
.y7c{bottom:635.278500px;}
.y259{bottom:638.346000px;}
.y27b{bottom:639.061500px;}
.y219{bottom:640.380000px;}
.y23f{bottom:640.924500px;}
.y209{bottom:643.905000px;}
.y179{bottom:643.975500px;}
.y54{bottom:644.281500px;}
.y8{bottom:645.510000px;}
.ya4{bottom:645.606000px;}
.y1a7{bottom:648.594000px;}
.yd0{bottom:649.542000px;}
.y18c{bottom:649.777500px;}
.y2a3{bottom:649.896000px;}
.y1bc{bottom:650.835000px;}
.y1e6{bottom:658.074000px;}
.y227{bottom:658.177500px;}
.y145{bottom:659.810642px;}
.y27a{bottom:660.730500px;}
.y7b{bottom:662.169000px;}
.y258{bottom:665.236500px;}
.y7{bottom:666.771000px;}
.y218{bottom:667.270500px;}
.y23e{bottom:667.815000px;}
.yff{bottom:668.343117px;}
.y53{bottom:669.502500px;}
.y1a6{bottom:670.263000px;}
.y208{bottom:670.795500px;}
.y2a2{bottom:671.565000px;}
.ya3{bottom:672.496500px;}
.y1bb{bottom:672.504000px;}
.ycf{bottom:676.434000px;}
.y18b{bottom:676.668000px;}
.y1d6{bottom:679.561500px;}
.y279{bottom:682.399500px;}
.y178{bottom:684.775500px;}
.y1e5{bottom:684.964500px;}
.y226{bottom:685.069500px;}
.y7a{bottom:689.061000px;}
.y30{bottom:689.940000px;}
.y1a5{bottom:691.932000px;}
.y257{bottom:692.127000px;}
.y23d{bottom:694.707000px;}
.y52{bottom:694.725000px;}
.y207{bottom:697.687500px;}
.y144{bottom:698.665500px;}
.ya2{bottom:699.387000px;}
.y28f{bottom:703.545000px;}
.y18a{bottom:703.558500px;}
.yce{bottom:703.968000px;}
.yde{bottom:704.613000px;}
.y4b{bottom:704.967000px;}
.y2f{bottom:708.475500px;}
.y1d1{bottom:708.552000px;}
.y1e4{bottom:711.855000px;}
.y225{bottom:711.960000px;}
.y1a4{bottom:713.601000px;}
.y79{bottom:715.951500px;}
.y51{bottom:719.946000px;}
.y23c{bottom:721.597500px;}
.y4a{bottom:723.862500px;}
.y206{bottom:724.578000px;}
.y28e{bottom:725.214000px;}
.ya1{bottom:726.279000px;}
.y6{bottom:726.298500px;}
.y2e{bottom:727.200000px;}
.y189{bottom:730.449000px;}
.ycd{bottom:730.860000px;}
.ydd{bottom:731.503500px;}
.y16c{bottom:733.788000px;}
.y256{bottom:734.094000px;}
.y2ad{bottom:736.048500px;}
.y224{bottom:738.850500px;}
.y1ba{bottom:739.225500px;}
.y78{bottom:742.842000px;}
.y50{bottom:745.168500px;}
.y2d{bottom:745.735500px;}
.y2a1{bottom:746.883000px;}
.y3{bottom:752.599495px;}
.ya0{bottom:753.169500px;}
.y188{bottom:757.339500px;}
.y278{bottom:757.716000px;}
.ycc{bottom:757.750500px;}
.ydc{bottom:758.395500px;}
.y1a3{bottom:760.894500px;}
.y255{bottom:760.984500px;}
.y1e3{bottom:761.001000px;}
.y49{bottom:761.835000px;}
.y174{bottom:762.723000px;}
.y15a{bottom:762.780000px;}
.y2c{bottom:764.460000px;}
.y223{bottom:765.741000px;}
.y23b{bottom:767.349000px;}
.y2a0{bottom:768.550500px;}
.y77{bottom:769.732500px;}
.y4f{bottom:776.778000px;}
.y271{bottom:779.292000px;}
.y277{bottom:779.385000px;}
.y9f{bottom:780.060000px;}
.y48{bottom:780.822000px;}
.y1a2{bottom:782.563500px;}
.y187{bottom:784.231500px;}
.ycb{bottom:784.641000px;}
.ydb{bottom:785.286000px;}
.y254{bottom:787.875000px;}
.y27{bottom:789.252660px;}
.y28d{bottom:790.818000px;}
.y222{bottom:792.633000px;}
.y76{bottom:796.623000px;}
.y47{bottom:799.809000px;}
.y2ac{bottom:801.054000px;}
.y1a1{bottom:804.232500px;}
.y270{bottom:806.182500px;}
.y9e{bottom:806.950500px;}
.y186{bottom:811.122000px;}
.yca{bottom:811.531500px;}
.y29f{bottom:811.888500px;}
.yda{bottom:812.176500px;}
.y46{bottom:818.796000px;}
.y221{bottom:819.523500px;}
.y276{bottom:822.723000px;}
.y2b{bottom:822.960000px;}
.y75{bottom:823.515000px;}
.y26{bottom:823.821660px;}
.y1a0{bottom:825.901500px;}
.y253{bottom:829.842000px;}
.y26f{bottom:833.073000px;}
.y29e{bottom:833.557500px;}
.y9d{bottom:833.842500px;}
.y45{bottom:837.783000px;}
.y185{bottom:838.012500px;}
.yc9{bottom:838.423500px;}
.y23a{bottom:838.522500px;}
.yd9{bottom:839.067000px;}
.y275{bottom:844.392000px;}
.y220{bottom:846.414000px;}
.y19f{bottom:847.569000px;}
.y31{bottom:849.600000px;}
.y74{bottom:850.405500px;}
.y28c{bottom:853.282500px;}
.y252{bottom:856.732500px;}
.y25{bottom:858.390660px;}
.y9c{bottom:860.733000px;}
.yc8{bottom:865.314000px;}
.y239{bottom:865.414500px;}
.yc1{bottom:865.957500px;}
.y2a{bottom:866.880000px;}
.y26e{bottom:874.908000px;}
.y28b{bottom:874.951500px;}
.y44{bottom:875.572500px;}
.y73{bottom:877.296000px;}
.y2{bottom:879.369000px;}
.y11b{bottom:884.209500px;}
.y9b{bottom:887.623500px;}
.y2ab{bottom:888.327000px;}
.y21f{bottom:891.241500px;}
.yc7{bottom:892.204500px;}
.y238{bottom:892.305000px;}
.y24{bottom:892.779300px;}
.yc0{bottom:892.849500px;}
.y251{bottom:898.698000px;}
.y29d{bottom:899.161500px;}
.y1b9{bottom:901.218000px;}
.y26d{bottom:901.798500px;}
.y72{bottom:904.186500px;}
.y11a{bottom:905.878500px;}
.y4e{bottom:908.919000px;}
.y274{bottom:909.996000px;}
.y43{bottom:913.545000px;}
.y9a{bottom:914.514000px;}
.yc6{bottom:919.095000px;}
.y237{bottom:919.195500px;}
.ybf{bottom:919.740000px;}
.y29c{bottom:920.830500px;}
.y19e{bottom:922.887000px;}
.y250{bottom:925.590000px;}
.y26c{bottom:928.690500px;}
.y71{bottom:931.078500px;}
.y273{bottom:931.663500px;}
.y21e{bottom:932.041500px;}
.y42{bottom:932.622000px;}
.y99{bottom:941.404500px;}
.y19d{bottom:944.556000px;}
.yc5{bottom:945.987000px;}
.y236{bottom:946.086000px;}
.ybe{bottom:946.630500px;}
.y1f5{bottom:957.934500px;}
.y70{bottom:957.969000px;}
.y19c{bottom:966.225000px;}
.y1{bottom:966.726000px;}
.y24f{bottom:967.555500px;}
.y98{bottom:968.296500px;}
.y41{bottom:970.411500px;}
.y26b{bottom:970.524000px;}
.y1d0{bottom:971.260500px;}
.y2aa{bottom:972.460500px;}
.ybd{bottom:973.521000px;}
.y29b{bottom:983.295000px;}
.y6f{bottom:984.859500px;}
.y19b{bottom:987.892500px;}
.y40{bottom:989.398500px;}
.y272{bottom:994.129500px;}
.y24e{bottom:994.446000px;}
.y4d{bottom:995.031000px;}
.y97{bottom:995.187000px;}
.y26a{bottom:997.416000px;}
.ybc{bottom:1000.413000px;}
.y29a{bottom:1004.964000px;}
.y3f{bottom:1008.385500px;}
.y6e{bottom:1011.750000px;}
.y1cf{bottom:1018.014000px;}
.y96{bottom:1022.077500px;}
.ybb{bottom:1027.303500px;}
.y3e{bottom:1027.372500px;}
.y39{bottom:1031.228280px;}
.y24d{bottom:1036.413000px;}
.y6d{bottom:1038.642000px;}
.y269{bottom:1039.249500px;}
.y4c{bottom:1041.394500px;}
.y38{bottom:1043.286480px;}
.y3d{bottom:1046.359500px;}
.y95{bottom:1048.968000px;}
.y22{bottom:1052.100000px;}
.y19a{bottom:1053.496500px;}
.yba{bottom:1054.194000px;}
.y37{bottom:1055.344680px;}
.y24c{bottom:1063.303500px;}
.y6c{bottom:1065.532500px;}
.y268{bottom:1066.141500px;}
.y36{bottom:1067.402880px;}
.y199{bottom:1075.165500px;}
.y35{bottom:1079.638560px;}
.y94{bottom:1081.084500px;}
.y3c{bottom:1084.332000px;}
.y24b{bottom:1090.194000px;}
.y6b{bottom:1092.423000px;}
.y159{bottom:1103.634000px;}
.y93{bottom:1107.976500px;}
.y34{bottom:1108.620000px;}
.yfe{bottom:1115.962500px;}
.y3b{bottom:1122.304500px;}
.y33{bottom:1124.280000px;}
.y92{bottom:1134.867000px;}
.yfd{bottom:1137.631500px;}
.y6a{bottom:1138.602000px;}
.y3a{bottom:1141.200000px;}
.y69{bottom:1196.659500px;}
.h3e{height:0.000000px;}
.h37{height:10.886223px;}
.h44{height:15.260102px;}
.h36{height:20.002083px;}
.h45{height:21.459559px;}
.h39{height:22.197793px;}
.h35{height:22.609848px;}
.h43{height:25.423015px;}
.h33{height:27.212414px;}
.h38{height:27.214300px;}
.h1e{height:27.825462px;}
.h28{height:29.234556px;}
.h11{height:30.932578px;}
.h12{height:31.360781px;}
.h3d{height:31.800699px;}
.h7{height:32.130000px;}
.h41{height:33.187496px;}
.h1b{height:33.713523px;}
.h23{height:34.023683px;}
.h2b{height:34.096702px;}
.h3f{height:34.191729px;}
.h34{height:34.369936px;}
.h2e{height:35.312732px;}
.h3a{height:35.751183px;}
.hf{height:39.999023px;}
.h22{height:40.062767px;}
.h2d{height:41.580617px;}
.h31{height:43.442490px;}
.h1f{height:44.891476px;}
.h18{height:45.883675px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h13{height:49.065469px;}
.h19{height:49.156405px;}
.hd{height:49.744687px;}
.h47{height:50.929152px;}
.h24{height:53.076945px;}
.h3b{height:53.798400px;}
.h1a{height:53.870131px;}
.h2{height:55.080000px;}
.h2f{height:55.087861px;}
.he{height:57.598594px;}
.h46{height:57.828699px;}
.h3c{height:57.834699px;}
.h30{height:59.741523px;}
.h1d{height:59.747523px;}
.h20{height:60.426194px;}
.h40{height:68.142000px;}
.h1c{height:72.511265px;}
.h17{height:76.127476px;}
.h5{height:78.030000px;}
.h27{height:83.167036px;}
.h15{height:87.030450px;}
.hb{height:89.064492px;}
.h26{height:95.228998px;}
.h9{height:97.200000px;}
.h16{height:105.414194px;}
.ha{height:108.140625px;}
.h4{height:119.055004px;}
.h21{height:246.755168px;}
.h42{height:251.350560px;}
.h2c{height:257.140876px;}
.h10{height:299.700000px;}
.h32{height:329.491188px;}
.h2a{height:353.462400px;}
.h29{height:421.705257px;}
.h25{height:426.176504px;}
.hc{height:528.120000px;}
.h0{height:1262.833500px;}
.h14{height:1262.835000px;}
.h1{height:1263.000000px;}
.h8{height:1263.060000px;}
.w7{width:162.000000px;}
.w6{width:214.920000px;}
.we{width:345.607020px;}
.w9{width:432.008772px;}
.wc{width:432.028515px;}
.wd{width:485.972783px;}
.wb{width:486.010800px;}
.wa{width:486.020923px;}
.w5{width:540.000000px;}
.w2{width:637.794021px;}
.w3{width:892.440000px;}
.w4{width:892.500000px;}
.w0{width:892.912500px;}
.w8{width:892.914000px;}
.w1{width:893.250000px;}
.x28{left:-131.995936px;}
.x29{left:-123.575068px;}
.x42{left:-6.229150px;}
.x1f{left:-5.001719px;}
.x0{left:0.000000px;}
.x22{left:3.849088px;}
.x2a{left:6.338224px;}
.x44{left:9.314270px;}
.x6{left:10.800000px;}
.x72{left:16.660667px;}
.x4c{left:17.914237px;}
.x21{left:19.162138px;}
.x41{left:23.429108px;}
.x5d{left:24.659820px;}
.x71{left:26.265942px;}
.x5a{left:28.595510px;}
.x51{left:30.132632px;}
.x2b{left:34.811284px;}
.x40{left:36.936551px;}
.x23{left:39.216109px;}
.x25{left:47.166644px;}
.x73{left:50.710419px;}
.x2c{left:53.895076px;}
.x78{left:71.311663px;}
.x2d{left:72.674547px;}
.x24{left:86.086973px;}
.x5{left:87.120000px;}
.x45{left:88.310600px;}
.x26{left:89.533974px;}
.x2e{left:91.452264px;}
.x1{left:102.045000px;}
.x55{left:105.250462px;}
.x2{left:106.297500px;}
.x2f{left:109.609760px;}
.x54{left:112.329399px;}
.x52{left:116.635857px;}
.x48{left:118.249083px;}
.x56{left:123.909685px;}
.x17{left:126.489000px;}
.x13{left:127.558500px;}
.x7a{left:131.055000px;}
.xc{left:132.150000px;}
.x6f{left:134.698500px;}
.x5c{left:137.946000px;}
.x79{left:145.114500px;}
.x30{left:147.166832px;}
.x15{left:150.649500px;}
.x14{left:152.061000px;}
.x1a{left:153.897000px;}
.x67{left:157.530000px;}
.xd{left:159.037500px;}
.x66{left:163.237500px;}
.x31{left:166.250624px;}
.x68{left:167.635500px;}
.x53{left:168.989184px;}
.xb{left:172.215000px;}
.x1c{left:181.464000px;}
.x32{left:185.033019px;}
.x70{left:187.906500px;}
.x27{left:192.826500px;}
.x3f{left:194.728011px;}
.x12{left:195.862500px;}
.x4{left:203.484001px;}
.x80{left:207.376500px;}
.x4b{left:214.086000px;}
.x57{left:216.605407px;}
.x58{left:219.459614px;}
.x33{left:222.284015px;}
.xe{left:228.735000px;}
.x6d{left:232.135500px;}
.x4d{left:234.389350px;}
.x4e{left:237.222454px;}
.x4f{left:239.394229px;}
.x1d{left:241.086272px;}
.x5e{left:242.818237px;}
.x62{left:248.832000px;}
.x34{left:259.841086px;}
.x50{left:261.676255px;}
.x64{left:265.477500px;}
.x75{left:266.635500px;}
.x4a{left:270.369000px;}
.x35{left:278.924879px;}
.x6e{left:280.146000px;}
.x76{left:286.084500px;}
.x63{left:296.592000px;}
.x36{left:297.699204px;}
.x59{left:304.032000px;}
.x60{left:309.526500px;}
.x69{left:315.204000px;}
.x37{left:316.477038px;}
.x46{left:322.524000px;}
.x38{left:334.634534px;}
.x61{left:340.677000px;}
.x82{left:345.775500px;}
.x39{left:353.413070px;}
.x65{left:356.599500px;}
.x5f{left:360.670500px;}
.x7e{left:365.794500px;}
.x3a{left:372.191606px;}
.x83{left:374.076000px;}
.xf{left:380.911500px;}
.x7f{left:383.710500px;}
.x3b{left:391.275398px;}
.x81{left:394.069500px;}
.x7d{left:403.704000px;}
.x6b{left:408.465000px;}
.x3c{left:410.057676px;}
.x11{left:421.354500px;}
.x49{left:427.050000px;}
.x16{left:428.301000px;}
.x1e{left:429.810499px;}
.x18{left:431.437500px;}
.x6a{left:439.828500px;}
.x20{left:444.176508px;}
.x3d{left:446.993006px;}
.x5b{left:448.309500px;}
.x77{left:451.018500px;}
.x1b{left:452.698500px;}
.x3{left:454.959000px;}
.x43{left:459.967003px;}
.x3e{left:465.771542px;}
.x7b{left:491.611500px;}
.x6c{left:499.587000px;}
.x74{left:517.948500px;}
.x7c{left:522.762000px;}
.x47{left:523.945871px;}
.x10{left:567.345000px;}
.x7{left:644.040000px;}
.x8{left:654.840000px;}
.x19{left:670.810500px;}
.x9{left:708.120000px;}
.xa{left:718.920000px;}
@media print{
.v3{vertical-align:-21.114667pt;}
.v5{vertical-align:-19.280000pt;}
.v6{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:23.141333pt;}
.v2{vertical-align:27.765333pt;}
.v1{vertical-align:39.989333pt;}
.v7{vertical-align:60.570667pt;}
.ls12{letter-spacing:-0.768000pt;}
.ls2a{letter-spacing:-0.452074pt;}
.ls1c{letter-spacing:-0.435571pt;}
.ls48{letter-spacing:-0.429514pt;}
.ls4a{letter-spacing:-0.399896pt;}
.ls13{letter-spacing:-0.352000pt;}
.ls7{letter-spacing:-0.294400pt;}
.ls24{letter-spacing:-0.261983pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls14{letter-spacing:-0.234667pt;}
.ls4b{letter-spacing:-0.224648pt;}
.ls22{letter-spacing:-0.199606pt;}
.ls49{letter-spacing:-0.157924pt;}
.ls26{letter-spacing:-0.149704pt;}
.ls11{letter-spacing:-0.117333pt;}
.ls20{letter-spacing:-0.116270pt;}
.lse{letter-spacing:-0.111360pt;}
.ls21{letter-spacing:-0.099803pt;}
.ls9{letter-spacing:-0.096000pt;}
.ls25{letter-spacing:-0.074852pt;}
.ls8{letter-spacing:-0.069120pt;}
.ls10{letter-spacing:-0.037120pt;}
.ls4e{letter-spacing:-0.028835pt;}
.ls46{letter-spacing:-0.027159pt;}
.ls47{letter-spacing:-0.025930pt;}
.ls45{letter-spacing:-0.015647pt;}
.ls4d{letter-spacing:-0.013412pt;}
.ls4c{letter-spacing:-0.007824pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6d{letter-spacing:0.000159pt;}
.ls58{letter-spacing:0.000307pt;}
.ls79{letter-spacing:0.000616pt;}
.ls43{letter-spacing:0.001006pt;}
.ls59{letter-spacing:0.001012pt;}
.ls6a{letter-spacing:0.001067pt;}
.ls50{letter-spacing:0.001338pt;}
.ls2e{letter-spacing:0.002235pt;}
.ls73{letter-spacing:0.002452pt;}
.ls52{letter-spacing:0.002717pt;}
.ls87{letter-spacing:0.004267pt;}
.ls75{letter-spacing:0.005641pt;}
.ls2f{letter-spacing:0.006706pt;}
.ls3c{letter-spacing:0.015424pt;}
.ls3b{letter-spacing:0.019000pt;}
.ls30{letter-spacing:0.038000pt;}
.ls44{letter-spacing:0.040347pt;}
.ls3e{letter-spacing:0.041912pt;}
.ls42{letter-spacing:0.043477pt;}
.ls39{letter-spacing:0.044483pt;}
.ls2c{letter-spacing:0.052530pt;}
.ls41{letter-spacing:0.062812pt;}
.ls3d{letter-spacing:0.063594pt;}
.ls36{letter-spacing:0.064153pt;}
.ls32{letter-spacing:0.069071pt;}
.ls2d{letter-spacing:0.069295pt;}
.lsf{letter-spacing:0.074240pt;}
.ls38{letter-spacing:0.093771pt;}
.ls4f{letter-spacing:0.110424pt;}
.lsd{letter-spacing:0.117333pt;}
.ls1d{letter-spacing:0.151151pt;}
.lsb{letter-spacing:0.185600pt;}
.ls40{letter-spacing:0.190113pt;}
.ls1f{letter-spacing:0.199606pt;}
.lsc{letter-spacing:0.238293pt;}
.ls23{letter-spacing:0.261983pt;}
.ls3a{letter-spacing:0.269019pt;}
.ls1b{letter-spacing:0.271796pt;}
.ls28{letter-spacing:0.282094pt;}
.ls1a{letter-spacing:0.304900pt;}
.ls27{letter-spacing:0.316452pt;}
.ls3f{letter-spacing:0.357649pt;}
.lsa{letter-spacing:0.482560pt;}
.ls7f{letter-spacing:0.502642pt;}
.ls65{letter-spacing:0.526877pt;}
.ls6{letter-spacing:0.748160pt;}
.ls2{letter-spacing:0.961920pt;}
.ls5{letter-spacing:1.175680pt;}
.ls3{letter-spacing:1.389440pt;}
.ls1{letter-spacing:1.603200pt;}
.ls76{letter-spacing:2.285029pt;}
.ls57{letter-spacing:2.290362pt;}
.ls15{letter-spacing:2.656426pt;}
.ls16{letter-spacing:2.657684pt;}
.ls17{letter-spacing:2.659243pt;}
.ls19{letter-spacing:2.660350pt;}
.ls68{letter-spacing:4.907189pt;}
.ls74{letter-spacing:4.912522pt;}
.ls31{letter-spacing:7.338512pt;}
.ls77{letter-spacing:7.563189pt;}
.ls35{letter-spacing:9.875585pt;}
.ls37{letter-spacing:10.367352pt;}
.ls33{letter-spacing:10.859120pt;}
.ls34{letter-spacing:11.350887pt;}
.ls63{letter-spacing:11.915976pt;}
.ls54{letter-spacing:14.164905pt;}
.ls56{letter-spacing:14.166642pt;}
.ls5b{letter-spacing:14.170238pt;}
.ls64{letter-spacing:14.171976pt;}
.ls86{letter-spacing:14.566642pt;}
.ls82{letter-spacing:14.572274pt;}
.ls7c{letter-spacing:14.577608pt;}
.ls7d{letter-spacing:14.880268pt;}
.ls7e{letter-spacing:14.883420pt;}
.ls5a{letter-spacing:16.821570pt;}
.ls53{letter-spacing:16.823925pt;}
.ls6e{letter-spacing:16.824478pt;}
.ls55{letter-spacing:16.825987pt;}
.ls6c{letter-spacing:16.826903pt;}
.ls5c{letter-spacing:16.829811pt;}
.ls85{letter-spacing:17.225987pt;}
.ls7b{letter-spacing:17.706238pt;}
.ls51{letter-spacing:17.711572pt;}
.ls69{letter-spacing:18.192522pt;}
.ls83{letter-spacing:18.703754pt;}
.ls61{letter-spacing:19.488237pt;}
.ls71{letter-spacing:21.733855pt;}
.ls6b{letter-spacing:21.739189pt;}
.ls62{letter-spacing:23.464478pt;}
.ls80{letter-spacing:24.730421pt;}
.ls29{letter-spacing:24.752426pt;}
.ls7a{letter-spacing:24.830128pt;}
.ls81{letter-spacing:25.978421pt;}
.ls60{letter-spacing:26.448268pt;}
.ls5d{letter-spacing:28.624268pt;}
.ls84{letter-spacing:28.992522pt;}
.ls78{letter-spacing:29.877855pt;}
.ls18{letter-spacing:30.112426pt;}
.ls5f{letter-spacing:30.120753pt;}
.ls2b{letter-spacing:30.608426pt;}
.ls72{letter-spacing:32.357855pt;}
.ls5e{letter-spacing:32.777987pt;}
.ls70{letter-spacing:53.130238pt;}
.ls67{letter-spacing:53.135572pt;}
.ls1e{letter-spacing:77.347232pt;}
.ls6f{letter-spacing:607.490591pt;}
.ls88{letter-spacing:706.295925pt;}
.ls89{letter-spacing:743.223925pt;}
.ls66{letter-spacing:753.351925pt;}
.ws193{word-spacing:-63.761067pt;}
.ws15e{word-spacing:-45.163900pt;}
.ws132{word-spacing:-40.590295pt;}
.ws46{word-spacing:-35.859224pt;}
.wsf2{word-spacing:-31.874157pt;}
.ws1cf{word-spacing:-31.211042pt;}
.ws1{word-spacing:-30.888320pt;}
.ws2{word-spacing:-30.460800pt;}
.ws177{word-spacing:-29.990777pt;}
.ws133{word-spacing:-29.521250pt;}
.ws143{word-spacing:-28.671594pt;}
.ws12b{word-spacing:-27.498732pt;}
.ws155{word-spacing:-26.420927pt;}
.ws1f9{word-spacing:-26.415594pt;}
.ws186{word-spacing:-24.749612pt;}
.wsed{word-spacing:-22.954662pt;}
.ws167{word-spacing:-21.951583pt;}
.ws134{word-spacing:-19.804187pt;}
.ws151{word-spacing:-19.740426pt;}
.ws4{word-spacing:-19.215360pt;}
.ws14a{word-spacing:-19.153824pt;}
.ws5{word-spacing:-19.146240pt;}
.ws14f{word-spacing:-18.401444pt;}
.ws166{word-spacing:-18.284791pt;}
.ws15a{word-spacing:-18.276927pt;}
.ws15b{word-spacing:-18.273922pt;}
.ws1f5{word-spacing:-18.082639pt;}
.ws12d{word-spacing:-18.069886pt;}
.wse2{word-spacing:-17.814842pt;}
.ws59{word-spacing:-17.311130pt;}
.wsa4{word-spacing:-17.247369pt;}
.ws149{word-spacing:-17.183607pt;}
.ws141{word-spacing:-17.119846pt;}
.ws185{word-spacing:-17.091325pt;}
.ws183{word-spacing:-17.064859pt;}
.ws39{word-spacing:-17.036920pt;}
.ws5b{word-spacing:-16.992324pt;}
.wsa3{word-spacing:-16.864802pt;}
.ws1c3{word-spacing:-16.737280pt;}
.ws194{word-spacing:-16.673519pt;}
.ws14b{word-spacing:-16.609758pt;}
.wsc5{word-spacing:-16.572692pt;}
.ws1a2{word-spacing:-16.545997pt;}
.ws11{word-spacing:-16.485973pt;}
.ws1a8{word-spacing:-16.480876pt;}
.ws10{word-spacing:-16.368640pt;}
.ws181{word-spacing:-16.354714pt;}
.wsf{word-spacing:-16.251307pt;}
.wsb3{word-spacing:-16.163430pt;}
.ws3{word-spacing:-16.074240pt;}
.ws12{word-spacing:-16.016640pt;}
.ws18d{word-spacing:-15.972147pt;}
.ws17d{word-spacing:-15.908386pt;}
.wsaf{word-spacing:-15.844625pt;}
.ws11e{word-spacing:-15.780864pt;}
.ws12e{word-spacing:-15.717103pt;}
.ws1c4{word-spacing:-15.653342pt;}
.ws75{word-spacing:-15.525820pt;}
.ws1a0{word-spacing:-15.462059pt;}
.ws1a1{word-spacing:-15.334537pt;}
.wsdb{word-spacing:-15.270775pt;}
.ws47{word-spacing:-15.255285pt;}
.ws74{word-spacing:-15.207014pt;}
.ws8a{word-spacing:-15.143253pt;}
.wsc4{word-spacing:-15.015731pt;}
.ws17c{word-spacing:-14.951970pt;}
.ws142{word-spacing:-14.888209pt;}
.wsfd{word-spacing:-14.881833pt;}
.wsb1{word-spacing:-14.760687pt;}
.ws8b{word-spacing:-14.696926pt;}
.ws1c5{word-spacing:-14.441882pt;}
.ws13d{word-spacing:-14.378121pt;}
.wsa7{word-spacing:-14.314359pt;}
.ws5e{word-spacing:-14.250598pt;}
.ws1c0{word-spacing:-14.186837pt;}
.wsc2{word-spacing:-13.995554pt;}
.wsc8{word-spacing:-13.931793pt;}
.ws1a3{word-spacing:-13.868032pt;}
.wsbd{word-spacing:-13.804271pt;}
.wsb6{word-spacing:-13.740510pt;}
.wsd0{word-spacing:-13.676749pt;}
.wsfb{word-spacing:-13.612988pt;}
.wse0{word-spacing:-13.549227pt;}
.ws8c{word-spacing:-13.485466pt;}
.ws48{word-spacing:-13.393466pt;}
.ws1bf{word-spacing:-13.357943pt;}
.ws1c1{word-spacing:-13.294182pt;}
.ws6{word-spacing:-13.248000pt;}
.ws18b{word-spacing:-13.230421pt;}
.ws6a{word-spacing:-13.166660pt;}
.ws12f{word-spacing:-13.102899pt;}
.ws1b2{word-spacing:-13.039138pt;}
.wsd1{word-spacing:-12.975377pt;}
.wsfe{word-spacing:-12.911616pt;}
.ws1b5{word-spacing:-12.900073pt;}
.wsb2{word-spacing:-12.847855pt;}
.wsa6{word-spacing:-12.784094pt;}
.ws184{word-spacing:-12.747451pt;}
.ws18c{word-spacing:-12.720333pt;}
.ws19a{word-spacing:-12.716394pt;}
.ws180{word-spacing:-12.694117pt;}
.ws179{word-spacing:-12.656572pt;}
.ws1aa{word-spacing:-12.592811pt;}
.ws62{word-spacing:-12.529050pt;}
.ws53{word-spacing:-12.404374pt;}
.wsfc{word-spacing:-12.401527pt;}
.ws6f{word-spacing:-12.337766pt;}
.wsfa{word-spacing:-12.274005pt;}
.ws63{word-spacing:-12.210244pt;}
.ws3f{word-spacing:-12.171647pt;}
.ws60{word-spacing:-12.146483pt;}
.ws84{word-spacing:-12.082722pt;}
.wscf{word-spacing:-12.018961pt;}
.ws182{word-spacing:-11.981640pt;}
.wsa5{word-spacing:-11.955200pt;}
.ws44{word-spacing:-11.948824pt;}
.ws172{word-spacing:-11.896673pt;}
.ws11f{word-spacing:-11.891439pt;}
.ws11d{word-spacing:-11.827678pt;}
.ws19f{word-spacing:-11.763917pt;}
.ws19b{word-spacing:-11.725660pt;}
.ws9b{word-spacing:-11.700156pt;}
.wsf1{word-spacing:-11.693780pt;}
.ws1e6{word-spacing:-11.661899pt;}
.ws66{word-spacing:-11.636395pt;}
.wsff{word-spacing:-11.618292pt;}
.wsdf{word-spacing:-11.572634pt;}
.wsbb{word-spacing:-11.508873pt;}
.wsba{word-spacing:-11.381350pt;}
.wse8{word-spacing:-11.374974pt;}
.ws61{word-spacing:-11.317589pt;}
.ws5f{word-spacing:-11.253828pt;}
.wse3{word-spacing:-11.194180pt;}
.ws1c6{word-spacing:-11.190067pt;}
.ws9d{word-spacing:-11.062545pt;}
.ws1fe{word-spacing:-11.024288pt;}
.ws7f{word-spacing:-10.998784pt;}
.ws16e{word-spacing:-10.935023pt;}
.wsae{word-spacing:-10.871262pt;}
.ws100{word-spacing:-10.849766pt;}
.ws9c{word-spacing:-10.807501pt;}
.wse{word-spacing:-10.801920pt;}
.ws10d{word-spacing:-10.743740pt;}
.wse1{word-spacing:-10.679979pt;}
.ws19c{word-spacing:-10.616218pt;}
.ws83{word-spacing:-10.552457pt;}
.wse4{word-spacing:-10.453709pt;}
.ws190{word-spacing:-10.450439pt;}
.ws45{word-spacing:-10.424934pt;}
.ws174{word-spacing:-10.386678pt;}
.ws7c{word-spacing:-10.361173pt;}
.ws10a{word-spacing:-10.302657pt;}
.wsa1{word-spacing:-10.297412pt;}
.ws89{word-spacing:-10.233651pt;}
.ws80{word-spacing:-10.169890pt;}
.wsf9{word-spacing:-10.106129pt;}
.ws175{word-spacing:-10.067872pt;}
.wsad{word-spacing:-10.042368pt;}
.ws1f2{word-spacing:-10.004111pt;}
.ws73{word-spacing:-9.978607pt;}
.wse9{word-spacing:-9.914846pt;}
.wsc9{word-spacing:-9.851085pt;}
.ws1a6{word-spacing:-9.787324pt;}
.wsb5{word-spacing:-9.723563pt;}
.ws1d6{word-spacing:-9.685306pt;}
.ws107{word-spacing:-9.659802pt;}
.wsef{word-spacing:-9.618503pt;}
.ws43{word-spacing:-9.611644pt;}
.wsd2{word-spacing:-9.596041pt;}
.ws1e9{word-spacing:-9.570324pt;}
.ws192{word-spacing:-9.564682pt;}
.ws1ff{word-spacing:-9.562479pt;}
.wsf3{word-spacing:-9.557784pt;}
.ws69{word-spacing:-9.532279pt;}
.wsda{word-spacing:-9.468518pt;}
.ws109{word-spacing:-9.457828pt;}
.wsac{word-spacing:-9.404757pt;}
.wsb8{word-spacing:-9.340996pt;}
.ws3b{word-spacing:-9.320735pt;}
.ws67{word-spacing:-9.277235pt;}
.ws42{word-spacing:-9.262553pt;}
.wsb0{word-spacing:-9.213474pt;}
.ws131{word-spacing:-9.156119pt;}
.ws189{word-spacing:-9.154973pt;}
.ws106{word-spacing:-9.149713pt;}
.ws17f{word-spacing:-9.149640pt;}
.ws1b9{word-spacing:-9.147451pt;}
.wsee{word-spacing:-9.094537pt;}
.ws1b1{word-spacing:-9.085952pt;}
.ws1a7{word-spacing:-9.043823pt;}
.wsbe{word-spacing:-9.022191pt;}
.wsc0{word-spacing:-8.958430pt;}
.wsd8{word-spacing:-8.894669pt;}
.ws7b{word-spacing:-8.868042pt;}
.ws95{word-spacing:-8.830908pt;}
.ws79{word-spacing:-8.814908pt;}
.wsbc{word-spacing:-8.767147pt;}
.wsb9{word-spacing:-8.703386pt;}
.ws6d{word-spacing:-8.639625pt;}
.ws8e{word-spacing:-8.575863pt;}
.ws10f{word-spacing:-8.512102pt;}
.ws7a{word-spacing:-8.496105pt;}
.ws145{word-spacing:-8.448341pt;}
.ws114{word-spacing:-8.406980pt;}
.wsab{word-spacing:-8.384580pt;}
.ws1a4{word-spacing:-8.257058pt;}
.ws1be{word-spacing:-8.193297pt;}
.ws5a{word-spacing:-8.129536pt;}
.ws1b0{word-spacing:-8.091279pt;}
.ws94{word-spacing:-8.065775pt;}
.ws49{word-spacing:-8.040734pt;}
.ws118{word-spacing:-8.027518pt;}
.wsd5{word-spacing:-8.002014pt;}
.ws4a{word-spacing:-7.982552pt;}
.wsdc{word-spacing:-7.938253pt;}
.ws1b3{word-spacing:-7.899996pt;}
.wsb4{word-spacing:-7.874492pt;}
.ws82{word-spacing:-7.810731pt;}
.ws50{word-spacing:-7.749825pt;}
.wsb7{word-spacing:-7.746970pt;}
.ws113{word-spacing:-7.707684pt;}
.ws57{word-spacing:-7.683209pt;}
.ws98{word-spacing:-7.619447pt;}
.wsbf{word-spacing:-7.555686pt;}
.ws71{word-spacing:-7.491925pt;}
.ws7e{word-spacing:-7.428164pt;}
.ws105{word-spacing:-7.364403pt;}
.ws11a{word-spacing:-7.327160pt;}
.ws160{word-spacing:-7.300642pt;}
.ws1e4{word-spacing:-7.294266pt;}
.ws72{word-spacing:-7.236881pt;}
.ws1d1{word-spacing:-7.109359pt;}
.ws1e7{word-spacing:-7.102983pt;}
.ws1b6{word-spacing:-7.045598pt;}
.ws144{word-spacing:-6.981837pt;}
.ws5c{word-spacing:-6.918076pt;}
.ws65{word-spacing:-6.854315pt;}
.ws7d{word-spacing:-6.790554pt;}
.wsa0{word-spacing:-6.726793pt;}
.ws169{word-spacing:-6.663031pt;}
.ws16a{word-spacing:-6.599270pt;}
.wsc1{word-spacing:-6.535509pt;}
.ws3c{word-spacing:-6.528005pt;}
.ws78{word-spacing:-6.477018pt;}
.wsd9{word-spacing:-6.471748pt;}
.ws8f{word-spacing:-6.407987pt;}
.ws187{word-spacing:-6.369731pt;}
.ws1b4{word-spacing:-6.344226pt;}
.ws81{word-spacing:-6.280465pt;}
.ws70{word-spacing:-6.216704pt;}
.ws8d{word-spacing:-6.152943pt;}
.ws17b{word-spacing:-6.089182pt;}
.wsa2{word-spacing:-6.025421pt;}
.ws16c{word-spacing:-5.961660pt;}
.ws4b{word-spacing:-5.946187pt;}
.ws110{word-spacing:-5.897899pt;}
.ws1cd{word-spacing:-5.859642pt;}
.wscd{word-spacing:-5.834138pt;}
.ws68{word-spacing:-5.706615pt;}
.ws58{word-spacing:-5.579093pt;}
.ws10c{word-spacing:-5.515332pt;}
.ws199{word-spacing:-5.451571pt;}
.wsc3{word-spacing:-5.387810pt;}
.wsdd{word-spacing:-5.324049pt;}
.ws3d{word-spacing:-5.306186pt;}
.ws1b7{word-spacing:-5.260288pt;}
.ws1df{word-spacing:-5.207436pt;}
.ws1dc{word-spacing:-5.203968pt;}
.ws64{word-spacing:-5.196527pt;}
.ws1c9{word-spacing:-5.192883pt;}
.ws9a{word-spacing:-5.132766pt;}
.ws117{word-spacing:-5.094509pt;}
.ws6b{word-spacing:-5.069005pt;}
.wsce{word-spacing:-4.941483pt;}
.ws93{word-spacing:-4.877722pt;}
.ws9e{word-spacing:-4.813961pt;}
.ws119{word-spacing:-4.775704pt;}
.wsca{word-spacing:-4.750199pt;}
.ws140{word-spacing:-4.686438pt;}
.ws16d{word-spacing:-4.558916pt;}
.ws6e{word-spacing:-4.495155pt;}
.ws17a{word-spacing:-4.431394pt;}
.ws86{word-spacing:-4.367633pt;}
.ws1ac{word-spacing:-4.176350pt;}
.ws77{word-spacing:-4.139128pt;}
.ws99{word-spacing:-4.112589pt;}
.ws76{word-spacing:-4.085994pt;}
.ws12c{word-spacing:-3.985067pt;}
.ws96{word-spacing:-3.921306pt;}
.wsd7{word-spacing:-3.857545pt;}
.ws13e{word-spacing:-3.793783pt;}
.ws9f{word-spacing:-3.730022pt;}
.wsd3{word-spacing:-3.666261pt;}
.ws4c{word-spacing:-3.618912pt;}
.wsd6{word-spacing:-3.602500pt;}
.ws40{word-spacing:-3.560730pt;}
.ws10e{word-spacing:-3.538739pt;}
.ws3e{word-spacing:-3.502548pt;}
.ws1ad{word-spacing:-3.474978pt;}
.ws41{word-spacing:-3.444367pt;}
.ws5d{word-spacing:-3.411217pt;}
.ws195{word-spacing:-3.347456pt;}
.ws90{word-spacing:-3.283695pt;}
.wscb{word-spacing:-3.219934pt;}
.ws51{word-spacing:-3.211639pt;}
.wsde{word-spacing:-3.156173pt;}
.ws97{word-spacing:-3.092412pt;}
.ws1af{word-spacing:-2.964890pt;}
.ws196{word-spacing:-2.894752pt;}
.ws91{word-spacing:-2.837367pt;}
.ws1a9{word-spacing:-2.773606pt;}
.wscc{word-spacing:-2.582323pt;}
.ws197{word-spacing:-2.518562pt;}
.ws198{word-spacing:-2.454801pt;}
.ws4e{word-spacing:-2.222547pt;}
.ws85{word-spacing:-2.135996pt;}
.ws87{word-spacing:-2.072235pt;}
.wsa8{word-spacing:-2.008474pt;}
.ws111{word-spacing:-1.944713pt;}
.wsd4{word-spacing:-1.880951pt;}
.ws13f{word-spacing:-1.817190pt;}
.ws147{word-spacing:-1.810814pt;}
.ws108{word-spacing:-1.753429pt;}
.ws6c{word-spacing:-1.689668pt;}
.ws1ab{word-spacing:-1.625907pt;}
.ws10b{word-spacing:-1.622040pt;}
.wse7{word-spacing:-1.562829pt;}
.ws148{word-spacing:-1.562146pt;}
.wsaa{word-spacing:-1.498385pt;}
.ws8{word-spacing:-1.389440pt;}
.ws1c2{word-spacing:-1.243341pt;}
.ws104{word-spacing:-1.179580pt;}
.wsa{word-spacing:-1.175680pt;}
.ws126{word-spacing:-1.156771pt;}
.ws13a{word-spacing:-1.115819pt;}
.ws139{word-spacing:-1.107490pt;}
.ws88{word-spacing:-1.052058pt;}
.ws19d{word-spacing:-1.045681pt;}
.ws19e{word-spacing:-0.988297pt;}
.wsa9{word-spacing:-0.924535pt;}
.ws1d{word-spacing:-0.869333pt;}
.ws16b{word-spacing:-0.860774pt;}
.ws1bb{word-spacing:-0.843745pt;}
.ws1bd{word-spacing:-0.797013pt;}
.ws92{word-spacing:-0.733252pt;}
.ws2d{word-spacing:-0.677333pt;}
.ws1de{word-spacing:-0.669491pt;}
.ws32{word-spacing:-0.517333pt;}
.ws1a{word-spacing:-0.506667pt;}
.ws2e{word-spacing:-0.448000pt;}
.ws1ae{word-spacing:-0.350686pt;}
.ws9{word-spacing:-0.320640pt;}
.ws146{word-spacing:-0.286925pt;}
.wsf7{word-spacing:-0.261983pt;}
.ws15{word-spacing:-0.259840pt;}
.ws21{word-spacing:-0.250667pt;}
.ws16{word-spacing:-0.245333pt;}
.ws30{word-spacing:-0.234667pt;}
.ws23{word-spacing:-0.213333pt;}
.ws18{word-spacing:-0.208000pt;}
.ws14{word-spacing:-0.148480pt;}
.ws34{word-spacing:-0.133333pt;}
.ws1c{word-spacing:-0.112000pt;}
.ws2a{word-spacing:-0.106667pt;}
.ws2b{word-spacing:-0.090667pt;}
.ws29{word-spacing:-0.074667pt;}
.ws137{word-spacing:-0.063761pt;}
.ws15d{word-spacing:-0.042507pt;}
.ws0{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.021333pt;}
.ws13{word-spacing:0.037120pt;}
.wsd{word-spacing:0.096000pt;}
.ws36{word-spacing:0.101333pt;}
.ws35{word-spacing:0.117333pt;}
.ws1e{word-spacing:0.122667pt;}
.ws24{word-spacing:0.133333pt;}
.ws19{word-spacing:0.138667pt;}
.ws26{word-spacing:0.144000pt;}
.ws22{word-spacing:0.160000pt;}
.ws20{word-spacing:0.165333pt;}
.ws2c{word-spacing:0.176000pt;}
.wsc{word-spacing:0.192000pt;}
.ws31{word-spacing:0.224000pt;}
.ws37{word-spacing:0.234667pt;}
.ws28{word-spacing:0.261333pt;}
.wsf8{word-spacing:0.261983pt;}
.ws33{word-spacing:0.384000pt;}
.ws17{word-spacing:0.410667pt;}
.ws38{word-spacing:0.496000pt;}
.ws7{word-spacing:0.512000pt;}
.ws1f{word-spacing:0.528000pt;}
.ws125{word-spacing:0.529768pt;}
.wsf6{word-spacing:0.581352pt;}
.wsb{word-spacing:0.588800pt;}
.ws1b{word-spacing:0.762667pt;}
.ws27{word-spacing:0.768000pt;}
.wseb{word-spacing:0.798423pt;}
.ws25{word-spacing:0.800000pt;}
.ws124{word-spacing:0.957829pt;}
.wsec{word-spacing:0.998029pt;}
.wsea{word-spacing:1.097832pt;}
.ws138{word-spacing:1.761215pt;}
.ws1e1{word-spacing:1.817190pt;}
.ws122{word-spacing:1.987188pt;}
.ws120{word-spacing:2.499073pt;}
.ws123{word-spacing:2.809780pt;}
.ws127{word-spacing:2.974076pt;}
.ws121{word-spacing:3.062370pt;}
.ws1ba{word-spacing:4.004549pt;}
.ws55{word-spacing:4.119276pt;}
.ws150{word-spacing:10.557875pt;}
.ws14e{word-spacing:10.563209pt;}
.wse5{word-spacing:13.141183pt;}
.ws101{word-spacing:13.639061pt;}
.ws15f{word-spacing:14.091196pt;}
.ws1ce{word-spacing:15.876506pt;}
.ws168{word-spacing:16.776662pt;}
.ws135{word-spacing:16.778525pt;}
.ws136{word-spacing:16.781996pt;}
.ws171{word-spacing:16.845823pt;}
.ws176{word-spacing:17.661815pt;}
.ws52{word-spacing:18.152742pt;}
.ws13c{word-spacing:20.088662pt;}
.ws11c{word-spacing:20.311295pt;}
.ws11b{word-spacing:20.311378pt;}
.ws1c7{word-spacing:20.722347pt;}
.ws1d4{word-spacing:20.849869pt;}
.ws1d7{word-spacing:21.615002pt;}
.ws1c8{word-spacing:21.870046pt;}
.ws191{word-spacing:22.239899pt;}
.ws1da{word-spacing:22.571418pt;}
.ws18a{word-spacing:22.911858pt;}
.ws1f4{word-spacing:23.140745pt;}
.ws1d5{word-spacing:23.209028pt;}
.ws1db{word-spacing:23.464073pt;}
.ws130{word-spacing:23.755573pt;}
.ws1a5{word-spacing:23.999858pt;}
.ws1cc{word-spacing:24.101683pt;}
.ws3a{word-spacing:24.178129pt;}
.ws4f{word-spacing:24.261838pt;}
.ws1cb{word-spacing:24.292966pt;}
.ws1dd{word-spacing:24.548011pt;}
.ws178{word-spacing:24.917191pt;}
.ws1d8{word-spacing:25.376905pt;}
.wse6{word-spacing:26.164762pt;}
.ws115{word-spacing:26.249316pt;}
.ws15c{word-spacing:26.267881pt;}
.ws1d0{word-spacing:26.843409pt;}
.ws1d9{word-spacing:27.047113pt;}
.ws102{word-spacing:27.156061pt;}
.ws14c{word-spacing:27.341996pt;}
.ws1b8{word-spacing:27.702240pt;}
.ws1d3{word-spacing:27.799825pt;}
.wsc7{word-spacing:28.003782pt;}
.wsc6{word-spacing:28.386348pt;}
.ws1ca{word-spacing:28.628719pt;}
.ws13b{word-spacing:29.055858pt;}
.ws1d2{word-spacing:29.202569pt;}
.ws4d{word-spacing:30.661844pt;}
.ws1bc{word-spacing:32.986525pt;}
.ws1e0{word-spacing:33.015059pt;}
.ws54{word-spacing:37.934577pt;}
.ws116{word-spacing:38.846931pt;}
.ws56{word-spacing:49.534444pt;}
.ws188{word-spacing:59.072906pt;}
.ws112{word-spacing:64.710606pt;}
.ws103{word-spacing:84.087860pt;}
.ws1ec{word-spacing:92.867994pt;}
.ws173{word-spacing:95.673173pt;}
.ws170{word-spacing:108.189508pt;}
.ws163{word-spacing:116.584542pt;}
.wsf0{word-spacing:126.095117pt;}
.ws16f{word-spacing:132.936977pt;}
.ws1ed{word-spacing:137.947068pt;}
.ws1f7{word-spacing:144.450697pt;}
.wsf5{word-spacing:149.859854pt;}
.ws18f{word-spacing:152.141786pt;}
.ws128{word-spacing:158.314294pt;}
.ws1ee{word-spacing:160.518485pt;}
.ws1fa{word-spacing:180.858266pt;}
.ws18e{word-spacing:185.106202pt;}
.ws1f1{word-spacing:186.469239pt;}
.ws129{word-spacing:191.305882pt;}
.ws1f8{word-spacing:199.986586pt;}
.ws1fc{word-spacing:217.265835pt;}
.ws1f0{word-spacing:217.712162pt;}
.wsf4{word-spacing:219.816205pt;}
.ws12a{word-spacing:247.152285pt;}
.ws1fd{word-spacing:248.444996pt;}
.ws162{word-spacing:250.676634pt;}
.ws1ea{word-spacing:280.134246pt;}
.ws153{word-spacing:281.855795pt;}
.ws1e3{word-spacing:297.477257pt;}
.ws164{word-spacing:299.645133pt;}
.ws165{word-spacing:309.846903pt;}
.ws156{word-spacing:313.098718pt;}
.ws154{word-spacing:316.541815pt;}
.ws1f3{word-spacing:342.110003pt;}
.ws1ef{word-spacing:342.907017pt;}
.ws1e8{word-spacing:344.277879pt;}
.ws159{word-spacing:365.063987pt;}
.ws17e{word-spacing:365.483573pt;}
.ws158{word-spacing:396.306910pt;}
.ws1fb{word-spacing:404.882773pt;}
.ws1e5{word-spacing:424.489301pt;}
.ws161{word-spacing:449.440406pt;}
.ws14d{word-spacing:458.728994pt;}
.ws157{word-spacing:521.501764pt;}
.ws1eb{word-spacing:558.651073pt;}
.ws1f6{word-spacing:585.173740pt;}
.ws152{word-spacing:626.512406pt;}
.ws1e2{word-spacing:642.117740pt;}
._56{margin-left:-2189.760152pt;}
._4{margin-left:-8.485400pt;}
._10{margin-left:-7.035137pt;}
._7{margin-left:-6.044532pt;}
._e{margin-left:-5.128043pt;}
._1{margin-left:-3.954560pt;}
._5{margin-left:-2.644800pt;}
._2{margin-left:-1.079488pt;}
._0{width:0.896000pt;}
._3{width:1.816960pt;}
._6{width:2.975400pt;}
._16{width:3.971537pt;}
._2b{width:5.494224pt;}
._45{width:6.631151pt;}
._42{width:8.612363pt;}
._3f{width:10.762242pt;}
._c{width:15.367013pt;}
._22{width:17.024205pt;}
._18{width:18.455983pt;}
._19{width:20.036483pt;}
._1e{width:21.365861pt;}
._14{width:22.575262pt;}
._11{width:24.248162pt;}
._1b{width:25.974566pt;}
._9{width:26.938204pt;}
._b{width:28.387624pt;}
._d{width:30.113537pt;}
._1f{width:31.940949pt;}
._1d{width:33.412813pt;}
._8{width:35.377919pt;}
._12{width:36.705133pt;}
._17{width:38.129118pt;}
._1a{width:39.020719pt;}
._f{width:40.848797pt;}
._15{width:42.761569pt;}
._a{width:43.985491pt;}
._20{width:45.460535pt;}
._25{width:46.852139pt;}
._60{width:47.751535pt;}
._23{width:49.461369pt;}
._24{width:50.435004pt;}
._2e{width:51.367418pt;}
._61{width:52.412651pt;}
._13{width:53.531730pt;}
._1c{width:54.438652pt;}
._39{width:55.480925pt;}
._21{width:56.616482pt;}
._41{width:63.172650pt;}
._2f{width:64.067871pt;}
._44{width:66.623151pt;}
._3a{width:68.181378pt;}
._3d{width:76.511229pt;}
._27{width:84.164373pt;}
._26{width:99.068889pt;}
._2c{width:106.555041pt;}
._32{width:108.596584pt;}
._5a{width:113.777078pt;}
._5b{width:115.467755pt;}
._59{width:118.046956pt;}
._35{width:121.348455pt;}
._74{width:132.260828pt;}
._62{width:142.388828pt;}
._57{width:151.040887pt;}
._69{width:152.548828pt;}
._58{width:156.209100pt;}
._48{width:157.994161pt;}
._33{width:166.082843pt;}
._5f{width:167.037178pt;}
._5e{width:170.233269pt;}
._40{width:176.451052pt;}
._65{width:189.204828pt;}
._5c{width:210.618942pt;}
._5d{width:217.778608pt;}
._6a{width:232.536610pt;}
._75{width:246.627806pt;}
._28{width:248.909342pt;}
._29{width:256.177155pt;}
._2a{width:261.516790pt;}
._68{width:263.838675pt;}
._73{width:265.756126pt;}
._7a{width:282.909227pt;}
._7b{width:314.278298pt;}
._51{width:315.230095pt;}
._71{width:321.036971pt;}
._46{width:330.851556pt;}
._53{width:334.067757pt;}
._52{width:344.996233pt;}
._64{width:346.473018pt;}
._47{width:349.856973pt;}
._70{width:352.279893pt;}
._49{width:361.971575pt;}
._66{width:388.049852pt;}
._50{width:398.442906pt;}
._31{width:404.382583pt;}
._72{width:407.943305pt;}
._67{width:414.638217pt;}
._55{width:428.029414pt;}
._4f{width:429.685828pt;}
._6d{width:432.873091pt;}
._6f{width:440.335300pt;}
._6c{width:446.263706pt;}
._6b{width:461.476305pt;}
._77{width:469.795757pt;}
._4c{width:479.929091pt;}
._4e{width:487.390967pt;}
._43{width:492.044151pt;}
._54{width:493.736294pt;}
._76{width:498.398972pt;}
._63{width:501.964915pt;}
._4a{width:508.532305pt;}
._4b{width:523.669641pt;}
._30{width:551.209933pt;}
._6e{width:592.541628pt;}
._78{width:629.464294pt;}
._79{width:638.135799pt;}
._4d{width:639.597628pt;}
._2d{width:651.888015pt;}
._36{width:685.200931pt;}
._34{width:730.536956pt;}
._37{width:770.489393pt;}
._38{width:810.771914pt;}
._3e{width:979.439307pt;}
._3b{width:1122.370066pt;}
._3c{width:1145.503973pt;}
.fs21{font-size:14.529493pt;}
.fs25{font-size:18.631903pt;}
.fs20{font-size:22.911893pt;}
.fs26{font-size:26.201164pt;}
.fs23{font-size:26.823680pt;}
.fs1f{font-size:30.176640pt;}
.fs1e{font-size:30.735467pt;}
.fs24{font-size:31.040367pt;}
.fs22{font-size:31.294293pt;}
.fsa{font-size:37.120000pt;}
.fs12{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs18{font-size:37.426080pt;}
.fs10{font-size:42.507200pt;}
.fs14{font-size:43.557120pt;}
.fs19{font-size:43.650599pt;}
.fs1b{font-size:45.207360pt;}
.fs9{font-size:48.000000pt;}
.fs1d{font-size:51.418837pt;}
.fsd{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs13{font-size:53.430067pt;}
.fs1a{font-size:55.454362pt;}
.fs1{font-size:56.000000pt;}
.fse{font-size:58.181867pt;}
.fs7{font-size:58.880000pt;}
.fsf{font-size:63.761067pt;}
.fs0{font-size:64.000000pt;}
.fs15{font-size:67.949107pt;}
.fs8{font-size:69.120000pt;}
.fs1c{font-size:70.523482pt;}
.fsc{font-size:76.513067pt;}
.fs2{font-size:90.666667pt;}
.fs11{font-size:91.815467pt;}
.fs17{font-size:99.802880pt;}
.fs6{font-size:106.880000pt;}
.fsb{font-size:110.200000pt;}
.fs16{font-size:116.270355pt;}
.fs5{font-size:128.000000pt;}
.y11f{bottom:-317.802668pt;}
.y132{bottom:-307.219549pt;}
.y12c{bottom:-293.939887pt;}
.y12d{bottom:-254.236523pt;}
.y12e{bottom:-214.533159pt;}
.y12f{bottom:-174.829795pt;}
.y130{bottom:-135.126432pt;}
.y131{bottom:-95.423068pt;}
.y133{bottom:-72.392932pt;}
.y11e{bottom:-31.491799pt;}
.y11d{bottom:-6.925516pt;}
.ye8{bottom:-5.750701pt;}
.y0{bottom:0.000000pt;}
.y12a{bottom:3.682391pt;}
.yfb{bottom:4.446093pt;}
.y10d{bottom:4.801662pt;}
.y23{bottom:6.720000pt;}
.y161{bottom:9.382700pt;}
.y167{bottom:10.863590pt;}
.y172{bottom:10.894326pt;}
.y1d4{bottom:11.553701pt;}
.y1f9{bottom:16.247423pt;}
.y120{bottom:16.928147pt;}
.yf5{bottom:17.240997pt;}
.y1d8{bottom:17.703305pt;}
.y1d2{bottom:19.860610pt;}
.y114{bottom:21.123000pt;}
.y160{bottom:21.970270pt;}
.y10c{bottom:22.733745pt;}
.y1f7{bottom:24.895320pt;}
.y10b{bottom:27.412005pt;}
.y16b{bottom:30.855614pt;}
.y1d9{bottom:34.159843pt;}
.y15f{bottom:34.560635pt;}
.y121{bottom:38.989339pt;}
.y177{bottom:44.339393pt;}
.y113{bottom:45.433359pt;}
.y15e{bottom:47.148206pt;}
.y170{bottom:47.729386pt;}
.y184{bottom:51.316000pt;}
.yb9{bottom:51.317333pt;}
.y166{bottom:54.153098pt;}
.y91{bottom:54.637333pt;}
.yf6{bottom:55.495038pt;}
.y176{bottom:56.346008pt;}
.y5{bottom:59.133337pt;}
.y15d{bottom:59.738571pt;}
.y16f{bottom:60.277838pt;}
.y122{bottom:61.050530pt;}
.y102{bottom:63.310373pt;}
.y1d5{bottom:69.937748pt;}
.y15c{bottom:72.326141pt;}
.y111{bottom:72.424174pt;}
.y175{bottom:74.421786pt;}
.y165{bottom:74.455271pt;}
.y1d3{bottom:78.997653pt;}
.y164{bottom:81.429428pt;}
.y171{bottom:81.460163pt;}
.y123{bottom:83.111722pt;}
.y4{bottom:86.333337pt;}
.yb8{bottom:91.166667pt;}
.y1b8{bottom:91.168000pt;}
.yf7{bottom:93.749078pt;}
.y119{bottom:94.266667pt;}
.y68{bottom:94.488000pt;}
.ye5{bottom:97.097333pt;}
.y103{bottom:100.446401pt;}
.y16a{bottom:101.332039pt;}
.y173{bottom:101.362775pt;}
.y124{bottom:105.172914pt;}
.y163{bottom:106.512363pt;}
.y162{bottom:108.026783pt;}
.y90{bottom:110.428000pt;}
.y143{bottom:111.928000pt;}
.y118{bottom:113.526667pt;}
.yb7{bottom:115.070667pt;}
.y169{bottom:121.480535pt;}
.y67{bottom:122.186667pt;}
.y21{bottom:123.790666pt;}
.y8f{bottom:126.368000pt;}
.y125{bottom:127.234106pt;}
.yf8{bottom:132.003119pt;}
.y117{bottom:132.788000pt;}
.y1f8{bottom:133.810797pt;}
.y142{bottom:135.569333pt;}
.y104{bottom:137.582429pt;}
.yb6{bottom:138.973333pt;}
.y66{bottom:141.509333pt;}
.y8e{bottom:142.309333pt;}
.y1e2{bottom:149.265333pt;}
.y126{bottom:149.295297pt;}
.y1b7{bottom:151.232000pt;}
.y116{bottom:152.049333pt;}
.y267{bottom:152.373333pt;}
.y65{bottom:155.553333pt;}
.y112{bottom:156.920765pt;}
.y8d{bottom:158.249333pt;}
.y141{bottom:159.472000pt;}
.yb5{bottom:162.876000pt;}
.yf9{bottom:170.257160pt;}
.y115{bottom:171.310667pt;}
.y127{bottom:171.356489pt;}
.y105{bottom:174.718456pt;}
.y18{bottom:175.052000pt;}
.y1b6{bottom:175.136000pt;}
.y158{bottom:176.198667pt;}
.y266{bottom:176.277333pt;}
.y8c{bottom:179.009333pt;}
.y217{bottom:181.216000pt;}
.y64{bottom:183.252000pt;}
.y140{bottom:183.376000pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.yb4{bottom:186.778667pt;}
.y1ce{bottom:186.780000pt;}
.y235{bottom:186.858667pt;}
.y205{bottom:189.152000pt;}
.y110{bottom:190.572000pt;}
.y128{bottom:193.417681pt;}
.y168{bottom:196.857870pt;}
.y63{bottom:197.296000pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y1b5{bottom:199.038667pt;}
.y1e1{bottom:203.213333pt;}
.y8b{bottom:205.476000pt;}
.y13f{bottom:207.278667pt;}
.yfa{bottom:208.511200pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y183{bottom:210.681333pt;}
.yb3{bottom:210.682667pt;}
.y234{bottom:210.762667pt;}
.y106{bottom:211.854484pt;}
.y204{bottom:213.054667pt;}
.y265{bottom:213.580000pt;}
.y129{bottom:215.478872pt;}
.y216{bottom:217.482667pt;}
.y1e0{bottom:222.474667pt;}
.y1cd{bottom:222.528000pt;}
.y1b4{bottom:222.941333pt;}
.y62{bottom:224.994667pt;}
.y8a{bottom:229.380000pt;}
.y2a9{bottom:229.461333pt;}
.yfc{bottom:230.700649pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y13e{bottom:231.181333pt;}
.yb2{bottom:234.585333pt;}
.y233{bottom:234.665333pt;}
.y203{bottom:236.957333pt;}
.y264{bottom:237.482667pt;}
.y12b{bottom:238.475103pt;}
.y61{bottom:239.038667pt;}
.y28a{bottom:239.092000pt;}
.y1ca{bottom:241.332000pt;}
.y1df{bottom:241.736000pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y2a8{bottom:248.722667pt;}
.y107{bottom:248.990512pt;}
.y89{bottom:253.282667pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y13d{bottom:255.084000pt;}
.y1cc{bottom:256.474667pt;}
.y32{bottom:257.440000pt;}
.y2af{bottom:258.352000pt;}
.y289{bottom:258.353333pt;}
.yb1{bottom:258.488000pt;}
.y232{bottom:258.568000pt;}
.y202{bottom:260.860000pt;}
.y1de{bottom:260.997333pt;}
.y1cb{bottom:261.257333pt;}
.y263{bottom:261.386667pt;}
.y60{bottom:261.458667pt;}
.y198{bottom:262.664000pt;}
.y2a7{bottom:267.982667pt;}
.ye7{bottom:270.108736pt;}
.y1b3{bottom:270.949333pt;}
.y1f4{bottom:272.229333pt;}
.y1f1{bottom:272.701333pt;}
.y157{bottom:273.293333pt;}
.y15b{bottom:273.600418pt;}
.y16e{bottom:273.626683pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y88{bottom:277.185333pt;}
.y288{bottom:277.613333pt;}
.y182{bottom:278.269333pt;}
.y1c9{bottom:278.673333pt;}
.y13c{bottom:278.988000pt;}
.y1c6{bottom:279.145333pt;}
.y1dd{bottom:280.258667pt;}
.yb0{bottom:282.390667pt;}
.y231{bottom:282.470667pt;}
.y5f{bottom:283.877333pt;}
.y201{bottom:284.764000pt;}
.y215{bottom:285.524000pt;}
.y108{bottom:286.126540pt;}
.y197{bottom:286.568000pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y2a6{bottom:287.244000pt;}
.y1b0{bottom:289.753333pt;}
.y1f0{bottom:291.033333pt;}
.y156{bottom:292.554667pt;}
.ye6{bottom:293.778255pt;}
.y287{bottom:296.874667pt;}
.y1c5{bottom:297.477333pt;}
.y262{bottom:298.689333pt;}
.y1dc{bottom:299.520000pt;}
.y87{bottom:301.088000pt;}
.y13b{bottom:302.890667pt;}
.yf3{bottom:303.998934pt;}
.y1b2{bottom:304.896000pt;}
.y1f3{bottom:306.176000pt;}
.yaf{bottom:306.294667pt;}
.y5e{bottom:306.297333pt;}
.y230{bottom:306.373333pt;}
.y2a5{bottom:306.505333pt;}
.y24a{bottom:306.778667pt;}
.y214{bottom:309.428000pt;}
.yf{bottom:309.452000pt;}
.y1b1{bottom:309.678667pt;}
.y196{bottom:310.470667pt;}
.ye2{bottom:310.938667pt;}
.y1f2{bottom:310.958667pt;}
.y155{bottom:311.816000pt;}
.y1c8{bottom:312.620000pt;}
.y286{bottom:316.136000pt;}
.ye9{bottom:316.761170pt;}
.y1c7{bottom:317.402667pt;}
.yd8{bottom:317.750667pt;}
.y1db{bottom:318.780000pt;}
.y200{bottom:320.269333pt;}
.y181{bottom:321.954667pt;}
.y261{bottom:322.592000pt;}
.y109{bottom:323.262568pt;}
.y86{bottom:324.990667pt;}
.y2a4{bottom:325.766667pt;}
.y13a{bottom:326.793333pt;}
.y1af{bottom:327.892000pt;}
.y5d{bottom:328.716000pt;}
.yae{bottom:330.197333pt;}
.y22f{bottom:330.277333pt;}
.y249{bottom:330.681333pt;}
.y154{bottom:331.077333pt;}
.y213{bottom:333.330667pt;}
.y195{bottom:334.373333pt;}
.ye1{bottom:334.842667pt;}
.y28{bottom:335.200000pt;}
.y285{bottom:335.397333pt;}
.ye4{bottom:335.496000pt;}
.yea{bottom:338.017044pt;}
.y1da{bottom:338.041333pt;}
.ye{bottom:343.809333pt;}
.y299{bottom:345.028000pt;}
.y180{bottom:345.857333pt;}
.yd7{bottom:347.424000pt;}
.y85{bottom:348.894667pt;}
.y16d{bottom:349.274667pt;}
.y139{bottom:350.696000pt;}
.y5c{bottom:351.136000pt;}
.yad{bottom:354.100000pt;}
.y22e{bottom:354.180000pt;}
.y248{bottom:354.584000pt;}
.y284{bottom:354.658667pt;}
.ye3{bottom:354.757333pt;}
.y212{bottom:357.233333pt;}
.y194{bottom:358.276000pt;}
.ye0{bottom:358.745333pt;}
.yeb{bottom:359.272919pt;}
.y260{bottom:359.896000pt;}
.y10a{bottom:360.398596pt;}
.y153{bottom:362.602199pt;}
.yd{bottom:362.706666pt;}
.y298{bottom:364.289333pt;}
.y1ef{bottom:366.218667pt;}
.y17f{bottom:369.760000pt;}
.y1d7{bottom:370.536000pt;}
.y84{bottom:372.797333pt;}
.y283{bottom:373.918667pt;}
.y138{bottom:374.600000pt;}
.yac{bottom:378.002667pt;}
.y22d{bottom:378.082667pt;}
.y152{bottom:378.134041pt;}
.y247{bottom:378.486667pt;}
.y5b{bottom:378.833333pt;}
.yec{bottom:380.528793pt;}
.y211{bottom:381.136000pt;}
.y193{bottom:382.178667pt;}
.ydf{bottom:382.648000pt;}
.y297{bottom:383.549333pt;}
.y25f{bottom:383.798667pt;}
.y1ee{bottom:390.121333pt;}
.y101{bottom:391.962504pt;}
.y282{bottom:393.180000pt;}
.y151{bottom:393.666958pt;}
.yd6{bottom:394.042667pt;}
.y83{bottom:396.700000pt;}
.y1ff{bottom:396.749333pt;}
.y137{bottom:398.502667pt;}
.yed{bottom:401.784668pt;}
.yab{bottom:401.906667pt;}
.y246{bottom:402.390667pt;}
.y296{bottom:402.810667pt;}
.y17e{bottom:404.969333pt;}
.y210{bottom:405.040000pt;}
.y192{bottom:406.082667pt;}
.yc4{bottom:406.550667pt;}
.y150{bottom:409.199875pt;}
.y281{bottom:412.441333pt;}
.y1ed{bottom:415.829333pt;}
.y1fe{bottom:416.010667pt;}
.y82{bottom:420.602667pt;}
.y25e{bottom:421.102667pt;}
.y22c{bottom:421.768000pt;}
.y295{bottom:422.072000pt;}
.y5a{bottom:422.142667pt;}
.y136{bottom:422.405333pt;}
.yee{bottom:423.040543pt;}
.y1c4{bottom:424.432000pt;}
.y14f{bottom:424.732792pt;}
.yaa{bottom:425.809333pt;}
.y245{bottom:426.293333pt;}
.y20f{bottom:428.942667pt;}
.y191{bottom:429.985333pt;}
.yc3{bottom:430.453333pt;}
.y280{bottom:431.702667pt;}
.y1fd{bottom:435.270667pt;}
.y1ec{bottom:439.732000pt;}
.y14e{bottom:440.265709pt;}
.y294{bottom:441.333333pt;}
.y1ae{bottom:441.700000pt;}
.y1c3{bottom:443.693333pt;}
.yef{bottom:444.296417pt;}
.y81{bottom:444.506667pt;}
.y25d{bottom:445.005333pt;}
.y59{bottom:446.045333pt;}
.y135{bottom:446.308000pt;}
.yc{bottom:446.990669pt;}
.ya9{bottom:449.712000pt;}
.y244{bottom:450.196000pt;}
.y27f{bottom:450.964000pt;}
.y20e{bottom:452.845333pt;}
.yc2{bottom:454.357333pt;}
.y1fc{bottom:454.532000pt;}
.y29{bottom:455.520000pt;}
.y14d{bottom:455.797551pt;}
.yd5{bottom:457.856000pt;}
.y17d{bottom:460.016000pt;}
.y293{bottom:460.594667pt;}
.y1ad{bottom:460.961333pt;}
.y1c2{bottom:462.953333pt;}
.yb{bottom:462.990669pt;}
.y1eb{bottom:463.634667pt;}
.yf0{bottom:465.552292pt;}
.y80{bottom:468.409333pt;}
.y27e{bottom:470.225333pt;}
.y100{bottom:470.327206pt;}
.y14c{bottom:471.330468pt;}
.y21d{bottom:473.614667pt;}
.y1fb{bottom:473.793333pt;}
.y243{bottom:474.098667pt;}
.y20d{bottom:476.748000pt;}
.ya8{bottom:478.260000pt;}
.ya{bottom:478.990666pt;}
.y1ac{bottom:480.222667pt;}
.y134{bottom:480.504000pt;}
.yd4{bottom:481.758667pt;}
.y190{bottom:481.968000pt;}
.y1c1{bottom:482.214667pt;}
.y25c{bottom:482.309333pt;}
.y58{bottom:483.016000pt;}
.y17c{bottom:483.918667pt;}
.yf1{bottom:486.808166pt;}
.y14b{bottom:486.863385pt;}
.y1ea{bottom:487.538667pt;}
.y22b{bottom:489.434667pt;}
.y7f{bottom:492.312000pt;}
.y1fa{bottom:493.054667pt;}
.y9{bottom:494.990666pt;}
.y21c{bottom:497.517333pt;}
.y242{bottom:498.001333pt;}
.y1ab{bottom:499.484000pt;}
.y20c{bottom:500.650667pt;}
.y1c0{bottom:501.476000pt;}
.ya7{bottom:502.162667pt;}
.y14a{bottom:502.396302pt;}
.y57{bottom:505.436000pt;}
.yd3{bottom:505.662667pt;}
.y18f{bottom:505.870667pt;}
.y25b{bottom:506.212000pt;}
.y17b{bottom:507.822667pt;}
.yf2{bottom:508.064041pt;}
.y2ae{bottom:510.272000pt;}
.y1e9{bottom:511.441333pt;}
.y22a{bottom:513.338667pt;}
.y7e{bottom:516.214667pt;}
.y149{bottom:517.929219pt;}
.y1f6{bottom:518.245333pt;}
.y1aa{bottom:518.745333pt;}
.y292{bottom:519.902667pt;}
.y1bf{bottom:520.737333pt;}
.y21b{bottom:521.421333pt;}
.y241{bottom:521.905333pt;}
.y10f{bottom:523.824000pt;}
.y20b{bottom:524.554667pt;}
.ya6{bottom:526.065333pt;}
.y56{bottom:527.856000pt;}
.y27d{bottom:529.533333pt;}
.yd2{bottom:529.565333pt;}
.y18e{bottom:529.773333pt;}
.y25a{bottom:530.114667pt;}
.yf4{bottom:530.220822pt;}
.y17a{bottom:531.725333pt;}
.y148{bottom:533.462136pt;}
.y1e8{bottom:535.344000pt;}
.y229{bottom:537.241333pt;}
.y1a9{bottom:538.005333pt;}
.y11c{bottom:538.333333pt;}
.y291{bottom:539.162667pt;}
.y1be{bottom:539.998667pt;}
.y7d{bottom:540.118667pt;}
.y10e{bottom:543.085333pt;}
.y21a{bottom:545.324000pt;}
.y240{bottom:545.808000pt;}
.y20a{bottom:548.457333pt;}
.y27c{bottom:548.793333pt;}
.y147{bottom:548.993978pt;}
.ya5{bottom:549.969333pt;}
.y55{bottom:550.274667pt;}
.yd1{bottom:553.468000pt;}
.y18d{bottom:553.676000pt;}
.y1a8{bottom:557.266667pt;}
.y290{bottom:558.424000pt;}
.y1bd{bottom:559.260000pt;}
.y1e7{bottom:561.052000pt;}
.y228{bottom:561.144000pt;}
.y146{bottom:564.526895pt;}
.y7c{bottom:564.692000pt;}
.y259{bottom:567.418667pt;}
.y27b{bottom:568.054667pt;}
.y219{bottom:569.226667pt;}
.y23f{bottom:569.710667pt;}
.y209{bottom:572.360000pt;}
.y179{bottom:572.422667pt;}
.y54{bottom:572.694667pt;}
.y8{bottom:573.786667pt;}
.ya4{bottom:573.872000pt;}
.y1a7{bottom:576.528000pt;}
.yd0{bottom:577.370667pt;}
.y18c{bottom:577.580000pt;}
.y2a3{bottom:577.685333pt;}
.y1bc{bottom:578.520000pt;}
.y1e6{bottom:584.954667pt;}
.y227{bottom:585.046667pt;}
.y145{bottom:586.498349pt;}
.y27a{bottom:587.316000pt;}
.y7b{bottom:588.594667pt;}
.y258{bottom:591.321333pt;}
.y7{bottom:592.685334pt;}
.y218{bottom:593.129333pt;}
.y23e{bottom:593.613333pt;}
.yff{bottom:594.082771pt;}
.y53{bottom:595.113333pt;}
.y1a6{bottom:595.789333pt;}
.y208{bottom:596.262667pt;}
.y2a2{bottom:596.946667pt;}
.ya3{bottom:597.774667pt;}
.y1bb{bottom:597.781333pt;}
.ycf{bottom:601.274667pt;}
.y18b{bottom:601.482667pt;}
.y1d6{bottom:604.054667pt;}
.y279{bottom:606.577333pt;}
.y178{bottom:608.689333pt;}
.y1e5{bottom:608.857333pt;}
.y226{bottom:608.950667pt;}
.y7a{bottom:612.498667pt;}
.y30{bottom:613.280000pt;}
.y1a5{bottom:615.050667pt;}
.y257{bottom:615.224000pt;}
.y23d{bottom:617.517333pt;}
.y52{bottom:617.533333pt;}
.y207{bottom:620.166667pt;}
.y144{bottom:621.036000pt;}
.ya2{bottom:621.677333pt;}
.y28f{bottom:625.373333pt;}
.y18a{bottom:625.385333pt;}
.yce{bottom:625.749333pt;}
.yde{bottom:626.322667pt;}
.y4b{bottom:626.637333pt;}
.y2f{bottom:629.756000pt;}
.y1d1{bottom:629.824000pt;}
.y1e4{bottom:632.760000pt;}
.y225{bottom:632.853333pt;}
.y1a4{bottom:634.312000pt;}
.y79{bottom:636.401333pt;}
.y51{bottom:639.952000pt;}
.y23c{bottom:641.420000pt;}
.y4a{bottom:643.433333pt;}
.y206{bottom:644.069333pt;}
.y28e{bottom:644.634667pt;}
.ya1{bottom:645.581333pt;}
.y6{bottom:645.598667pt;}
.y2e{bottom:646.400000pt;}
.y189{bottom:649.288000pt;}
.ycd{bottom:649.653333pt;}
.ydd{bottom:650.225333pt;}
.y16c{bottom:652.256000pt;}
.y256{bottom:652.528000pt;}
.y2ad{bottom:654.265333pt;}
.y224{bottom:656.756000pt;}
.y1ba{bottom:657.089333pt;}
.y78{bottom:660.304000pt;}
.y50{bottom:662.372000pt;}
.y2d{bottom:662.876000pt;}
.y2a1{bottom:663.896000pt;}
.y3{bottom:668.977329pt;}
.ya0{bottom:669.484000pt;}
.y188{bottom:673.190667pt;}
.y278{bottom:673.525333pt;}
.ycc{bottom:673.556000pt;}
.ydc{bottom:674.129333pt;}
.y1a3{bottom:676.350667pt;}
.y255{bottom:676.430667pt;}
.y1e3{bottom:676.445333pt;}
.y49{bottom:677.186667pt;}
.y174{bottom:677.976000pt;}
.y15a{bottom:678.026667pt;}
.y2c{bottom:679.520000pt;}
.y223{bottom:680.658667pt;}
.y23b{bottom:682.088000pt;}
.y2a0{bottom:683.156000pt;}
.y77{bottom:684.206667pt;}
.y4f{bottom:690.469333pt;}
.y271{bottom:692.704000pt;}
.y277{bottom:692.786667pt;}
.y9f{bottom:693.386667pt;}
.y48{bottom:694.064000pt;}
.y1a2{bottom:695.612000pt;}
.y187{bottom:697.094667pt;}
.ycb{bottom:697.458667pt;}
.ydb{bottom:698.032000pt;}
.y254{bottom:700.333333pt;}
.y27{bottom:701.557920pt;}
.y28d{bottom:702.949333pt;}
.y222{bottom:704.562667pt;}
.y76{bottom:708.109333pt;}
.y47{bottom:710.941333pt;}
.y2ac{bottom:712.048000pt;}
.y1a1{bottom:714.873333pt;}
.y270{bottom:716.606667pt;}
.y9e{bottom:717.289333pt;}
.y186{bottom:720.997333pt;}
.yca{bottom:721.361333pt;}
.y29f{bottom:721.678667pt;}
.yda{bottom:721.934667pt;}
.y46{bottom:727.818667pt;}
.y221{bottom:728.465333pt;}
.y276{bottom:731.309333pt;}
.y2b{bottom:731.520000pt;}
.y75{bottom:732.013333pt;}
.y26{bottom:732.285920pt;}
.y1a0{bottom:734.134667pt;}
.y253{bottom:737.637333pt;}
.y26f{bottom:740.509333pt;}
.y29e{bottom:740.940000pt;}
.y9d{bottom:741.193333pt;}
.y45{bottom:744.696000pt;}
.y185{bottom:744.900000pt;}
.yc9{bottom:745.265333pt;}
.y23a{bottom:745.353333pt;}
.yd9{bottom:745.837333pt;}
.y275{bottom:750.570667pt;}
.y220{bottom:752.368000pt;}
.y19f{bottom:753.394667pt;}
.y31{bottom:755.200000pt;}
.y74{bottom:755.916000pt;}
.y28c{bottom:758.473333pt;}
.y252{bottom:761.540000pt;}
.y25{bottom:763.013920pt;}
.y9c{bottom:765.096000pt;}
.yc8{bottom:769.168000pt;}
.y239{bottom:769.257333pt;}
.yc1{bottom:769.740000pt;}
.y2a{bottom:770.560000pt;}
.y26e{bottom:777.696000pt;}
.y28b{bottom:777.734667pt;}
.y44{bottom:778.286667pt;}
.y73{bottom:779.818667pt;}
.y2{bottom:781.661334pt;}
.y11b{bottom:785.964000pt;}
.y9b{bottom:788.998667pt;}
.y2ab{bottom:789.624000pt;}
.y21f{bottom:792.214667pt;}
.yc7{bottom:793.070667pt;}
.y238{bottom:793.160000pt;}
.y24{bottom:793.581600pt;}
.yc0{bottom:793.644000pt;}
.y251{bottom:798.842667pt;}
.y29d{bottom:799.254667pt;}
.y1b9{bottom:801.082667pt;}
.y26d{bottom:801.598667pt;}
.y72{bottom:803.721333pt;}
.y11a{bottom:805.225333pt;}
.y4e{bottom:807.928000pt;}
.y274{bottom:808.885333pt;}
.y43{bottom:812.040000pt;}
.y9a{bottom:812.901333pt;}
.yc6{bottom:816.973333pt;}
.y237{bottom:817.062667pt;}
.ybf{bottom:817.546667pt;}
.y29c{bottom:818.516000pt;}
.y19e{bottom:820.344000pt;}
.y250{bottom:822.746667pt;}
.y26c{bottom:825.502667pt;}
.y71{bottom:827.625333pt;}
.y273{bottom:828.145333pt;}
.y21e{bottom:828.481333pt;}
.y42{bottom:828.997333pt;}
.y99{bottom:836.804000pt;}
.y19d{bottom:839.605333pt;}
.yc5{bottom:840.877333pt;}
.y236{bottom:840.965333pt;}
.ybe{bottom:841.449333pt;}
.y1f5{bottom:851.497333pt;}
.y70{bottom:851.528000pt;}
.y19c{bottom:858.866667pt;}
.y1{bottom:859.312000pt;}
.y24f{bottom:860.049333pt;}
.y98{bottom:860.708000pt;}
.y41{bottom:862.588000pt;}
.y26b{bottom:862.688000pt;}
.y1d0{bottom:863.342667pt;}
.y2aa{bottom:864.409333pt;}
.ybd{bottom:865.352000pt;}
.y29b{bottom:874.040000pt;}
.y6f{bottom:875.430667pt;}
.y19b{bottom:878.126667pt;}
.y40{bottom:879.465333pt;}
.y272{bottom:883.670667pt;}
.y24e{bottom:883.952000pt;}
.y4d{bottom:884.472000pt;}
.y97{bottom:884.610667pt;}
.y26a{bottom:886.592000pt;}
.ybc{bottom:889.256000pt;}
.y29a{bottom:893.301333pt;}
.y3f{bottom:896.342667pt;}
.y6e{bottom:899.333333pt;}
.y1cf{bottom:904.901333pt;}
.y96{bottom:908.513333pt;}
.ybb{bottom:913.158667pt;}
.y3e{bottom:913.220000pt;}
.y39{bottom:916.647360pt;}
.y24d{bottom:921.256000pt;}
.y6d{bottom:923.237333pt;}
.y269{bottom:923.777333pt;}
.y4c{bottom:925.684000pt;}
.y38{bottom:927.365760pt;}
.y3d{bottom:930.097333pt;}
.y95{bottom:932.416000pt;}
.y22{bottom:935.200000pt;}
.y19a{bottom:936.441333pt;}
.yba{bottom:937.061333pt;}
.y37{bottom:938.084160pt;}
.y24c{bottom:945.158667pt;}
.y6c{bottom:947.140000pt;}
.y268{bottom:947.681333pt;}
.y36{bottom:948.802560pt;}
.y199{bottom:955.702667pt;}
.y35{bottom:959.678720pt;}
.y94{bottom:960.964000pt;}
.y3c{bottom:963.850667pt;}
.y24b{bottom:969.061333pt;}
.y6b{bottom:971.042667pt;}
.y159{bottom:981.008000pt;}
.y93{bottom:984.868000pt;}
.y34{bottom:985.440000pt;}
.yfe{bottom:991.966667pt;}
.y3b{bottom:997.604000pt;}
.y33{bottom:999.360000pt;}
.y92{bottom:1008.770667pt;}
.yfd{bottom:1011.228000pt;}
.y6a{bottom:1012.090667pt;}
.y3a{bottom:1014.400000pt;}
.y69{bottom:1063.697333pt;}
.h3e{height:0.000000pt;}
.h37{height:9.676643pt;}
.h44{height:13.564535pt;}
.h36{height:17.779629pt;}
.h45{height:19.075164pt;}
.h39{height:19.731371pt;}
.h35{height:20.097642pt;}
.h43{height:22.598236pt;}
.h33{height:24.188812pt;}
.h38{height:24.190489pt;}
.h1e{height:24.733744pt;}
.h28{height:25.986272pt;}
.h11{height:27.495625pt;}
.h12{height:27.876250pt;}
.h3d{height:28.267288pt;}
.h7{height:28.560000pt;}
.h41{height:29.499997pt;}
.h1b{height:29.967576pt;}
.h23{height:30.243274pt;}
.h2b{height:30.308180pt;}
.h3f{height:30.392648pt;}
.h34{height:30.551054pt;}
.h2e{height:31.389095pt;}
.h3a{height:31.778830pt;}
.hf{height:35.554688pt;}
.h22{height:35.611348pt;}
.h2d{height:36.960549pt;}
.h31{height:38.615547pt;}
.h1f{height:39.903534pt;}
.h18{height:40.785489pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h13{height:43.613750pt;}
.h19{height:43.694582pt;}
.hd{height:44.217500pt;}
.h47{height:45.270357pt;}
.h24{height:47.179507pt;}
.h3b{height:47.820800pt;}
.h1a{height:47.884561pt;}
.h2{height:48.960000pt;}
.h2f{height:48.966988pt;}
.he{height:51.198750pt;}
.h46{height:51.403288pt;}
.h3c{height:51.408621pt;}
.h30{height:53.103576pt;}
.h1d{height:53.108909pt;}
.h20{height:53.712173pt;}
.h40{height:60.570667pt;}
.h1c{height:64.454458pt;}
.h17{height:67.668867pt;}
.h5{height:69.360000pt;}
.h27{height:73.926254pt;}
.h15{height:77.360400pt;}
.hb{height:79.168437pt;}
.h26{height:84.647998pt;}
.h9{height:86.400000pt;}
.h16{height:93.701506pt;}
.ha{height:96.125000pt;}
.h4{height:105.826671pt;}
.h21{height:219.337927pt;}
.h42{height:223.422720pt;}
.h2c{height:228.569668pt;}
.h10{height:266.400000pt;}
.h32{height:292.881056pt;}
.h2a{height:314.188800pt;}
.h29{height:374.849117pt;}
.h25{height:378.823559pt;}
.hc{height:469.440000pt;}
.h0{height:1122.518667pt;}
.h14{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.h8{height:1122.720000pt;}
.w7{width:144.000000pt;}
.w6{width:191.040000pt;}
.we{width:307.206240pt;}
.w9{width:384.007797pt;}
.wc{width:384.025347pt;}
.wd{width:431.975807pt;}
.wb{width:432.009600pt;}
.wa{width:432.018598pt;}
.w5{width:480.000000pt;}
.w2{width:566.928019pt;}
.w3{width:793.280000pt;}
.w4{width:793.333333pt;}
.w0{width:793.700000pt;}
.w8{width:793.701333pt;}
.w1{width:794.000000pt;}
.x28{left:-117.329721pt;}
.x29{left:-109.844505pt;}
.x42{left:-5.537023pt;}
.x1f{left:-4.445972pt;}
.x0{left:0.000000pt;}
.x22{left:3.421412pt;}
.x2a{left:5.633977pt;}
.x44{left:8.279351pt;}
.x6{left:9.600000pt;}
.x72{left:14.809482pt;}
.x4c{left:15.923766pt;}
.x21{left:17.033012pt;}
.x41{left:20.825874pt;}
.x5d{left:21.919840pt;}
.x71{left:23.347504pt;}
.x5a{left:25.418231pt;}
.x51{left:26.784562pt;}
.x2b{left:30.943363pt;}
.x40{left:32.832490pt;}
.x23{left:34.858763pt;}
.x25{left:41.925906pt;}
.x73{left:45.075928pt;}
.x2c{left:47.906734pt;}
.x78{left:63.388145pt;}
.x2d{left:64.599597pt;}
.x24{left:76.521753pt;}
.x5{left:77.440000pt;}
.x45{left:78.498311pt;}
.x26{left:79.585755pt;}
.x2e{left:81.290901pt;}
.x1{left:90.706667pt;}
.x55{left:93.555966pt;}
.x2{left:94.486667pt;}
.x2f{left:97.430898pt;}
.x54{left:99.848355pt;}
.x52{left:103.676317pt;}
.x48{left:105.110296pt;}
.x56{left:110.141942pt;}
.x17{left:112.434667pt;}
.x13{left:113.385333pt;}
.x7a{left:116.493333pt;}
.xc{left:117.466667pt;}
.x6f{left:119.732000pt;}
.x5c{left:122.618667pt;}
.x79{left:128.990667pt;}
.x30{left:130.814962pt;}
.x15{left:133.910667pt;}
.x14{left:135.165333pt;}
.x1a{left:136.797333pt;}
.x67{left:140.026667pt;}
.xd{left:141.366667pt;}
.x66{left:145.100000pt;}
.x31{left:147.778332pt;}
.x68{left:149.009333pt;}
.x53{left:150.212608pt;}
.xb{left:153.080000pt;}
.x1c{left:161.301333pt;}
.x32{left:164.473795pt;}
.x70{left:167.028000pt;}
.x27{left:171.401333pt;}
.x3f{left:173.091566pt;}
.x12{left:174.100000pt;}
.x4{left:180.874667pt;}
.x80{left:184.334667pt;}
.x4b{left:190.298667pt;}
.x57{left:192.538140pt;}
.x58{left:195.075213pt;}
.x33{left:197.585791pt;}
.xe{left:203.320000pt;}
.x6d{left:206.342667pt;}
.x4d{left:208.346089pt;}
.x4e{left:210.864404pt;}
.x4f{left:212.794871pt;}
.x1d{left:214.298909pt;}
.x5e{left:215.838433pt;}
.x62{left:221.184000pt;}
.x34{left:230.969855pt;}
.x50{left:232.601116pt;}
.x64{left:235.980000pt;}
.x75{left:237.009333pt;}
.x4a{left:240.328000pt;}
.x35{left:247.933225pt;}
.x6e{left:249.018667pt;}
.x76{left:254.297333pt;}
.x63{left:263.637333pt;}
.x36{left:264.621514pt;}
.x59{left:270.250667pt;}
.x60{left:275.134667pt;}
.x69{left:280.181333pt;}
.x37{left:281.312922pt;}
.x46{left:286.688000pt;}
.x38{left:297.452919pt;}
.x61{left:302.824000pt;}
.x82{left:307.356000pt;}
.x39{left:314.144951pt;}
.x65{left:316.977333pt;}
.x5f{left:320.596000pt;}
.x7e{left:325.150667pt;}
.x3a{left:330.836983pt;}
.x83{left:332.512000pt;}
.xf{left:338.588000pt;}
.x7f{left:341.076000pt;}
.x3b{left:347.800354pt;}
.x81{left:350.284000pt;}
.x7d{left:358.848000pt;}
.x6b{left:363.080000pt;}
.x3c{left:364.495712pt;}
.x11{left:374.537333pt;}
.x49{left:379.600000pt;}
.x16{left:380.712000pt;}
.x1e{left:382.053777pt;}
.x18{left:383.500000pt;}
.x6a{left:390.958667pt;}
.x20{left:394.823563pt;}
.x3d{left:397.327117pt;}
.x5b{left:398.497333pt;}
.x77{left:400.905333pt;}
.x1b{left:402.398667pt;}
.x3{left:404.408000pt;}
.x43{left:408.859558pt;}
.x3e{left:414.019149pt;}
.x7b{left:436.988000pt;}
.x6c{left:444.077333pt;}
.x74{left:460.398667pt;}
.x7c{left:464.677333pt;}
.x47{left:465.729663pt;}
.x10{left:504.306667pt;}
.x7{left:572.480000pt;}
.x8{left:582.080000pt;}
.x19{left:596.276000pt;}
.x9{left:629.440000pt;}
.xa{left:639.040000pt;}
}




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