
    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_8526ac1d72b2fca60fe8df1a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.137000;font-style:normal;font-weight: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_f4388a21003731c0f2bd8f13.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.102000;font-style:normal;font-weight: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_f53b4a6d3a21b7bd7a244124.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.099000;font-style:normal;font-weight: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_8526ac1d72b2fca60fe8df1a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.137000;font-style:normal;font-weight: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_97de96a4cc5e5b3db6d12f00.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.102000;font-style:normal;font-weight: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_f53b4a6d3a21b7bd7a244124.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.099000;font-style:normal;font-weight: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_8526ac1d72b2fca60fe8df1a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.137000;font-style:normal;font-weight: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_6f2599a039d37cd6bfce4c15.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.102000;font-style:normal;font-weight: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_f53b4a6d3a21b7bd7a244124.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.099000;font-style:normal;font-weight: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_8526ac1d72b2fca60fe8df1a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.137000;font-style:normal;font-weight: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_6f2599a039d37cd6bfce4c15.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.102000;font-style:normal;font-weight: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_f53b4a6d3a21b7bd7a244124.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.099000;font-style:normal;font-weight: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_8526ac1d72b2fca60fe8df1a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.137000;font-style:normal;font-weight: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_97de96a4cc5e5b3db6d12f00.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.102000;font-style:normal;font-weight: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_f53b4a6d3a21b7bd7a244124.woff2')format("woff");}.fff{font-family:fff;line-height:1.099000;font-style:normal;font-weight: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_8526ac1d72b2fca60fe8df1a.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.137000;font-style:normal;font-weight: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_6f2599a039d37cd6bfce4c15.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.102000;font-style:normal;font-weight: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_f53b4a6d3a21b7bd7a244124.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.099000;font-style:normal;font-weight: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_8526ac1d72b2fca60fe8df1a.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.137000;font-style:normal;font-weight: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_f4388a21003731c0f2bd8f13.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.102000;font-style:normal;font-weight: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_c01f62099f5f35bdcced8c7c.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.099000;font-style:normal;font-weight: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_8526ac1d72b2fca60fe8df1a.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.137000;font-style:normal;font-weight: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_f4388a21003731c0f2bd8f13.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.102000;font-style:normal;font-weight: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_f53b4a6d3a21b7bd7a244124.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.099000;font-style:normal;font-weight: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_8526ac1d72b2fca60fe8df1a.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.137000;font-style:normal;font-weight: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_6f2599a039d37cd6bfce4c15.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.102000;font-style:normal;font-weight: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_f53b4a6d3a21b7bd7a244124.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.099000;font-style:normal;font-weight: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_8526ac1d72b2fca60fe8df1a.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.137000;font-style:normal;font-weight: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_6f2599a039d37cd6bfce4c15.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.102000;font-style:normal;font-weight: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_f53b4a6d3a21b7bd7a244124.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.099000;font-style:normal;font-weight: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_8526ac1d72b2fca60fe8df1a.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.137000;font-style:normal;font-weight: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_6f2599a039d37cd6bfce4c15.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.102000;font-style:normal;font-weight: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_f53b4a6d3a21b7bd7a244124.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.099000;font-style:normal;font-weight: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_8526ac1d72b2fca60fe8df1a.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.137000;font-style:normal;font-weight: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_6f2599a039d37cd6bfce4c15.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.102000;font-style:normal;font-weight: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_c01f62099f5f35bdcced8c7c.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.099000;font-style:normal;font-weight: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_8526ac1d72b2fca60fe8df1a.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.137000;font-style:normal;font-weight: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_6f2599a039d37cd6bfce4c15.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.102000;font-style:normal;font-weight: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_f53b4a6d3a21b7bd7a244124.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.099000;font-style:normal;font-weight: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_8526ac1d72b2fca60fe8df1a.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.137000;font-style:normal;font-weight: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_f53b4a6d3a21b7bd7a244124.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.099000;font-style:normal;font-weight: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_6f2599a039d37cd6bfce4c15.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.102000;font-style:normal;font-weight: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_8526ac1d72b2fca60fe8df1a.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.137000;font-style:normal;font-weight: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_6f2599a039d37cd6bfce4c15.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.102000;font-style:normal;font-weight: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_f53b4a6d3a21b7bd7a244124.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.099000;font-style:normal;font-weight: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_8526ac1d72b2fca60fe8df1a.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.137000;font-style:normal;font-weight: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_6f2599a039d37cd6bfce4c15.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.102000;font-style:normal;font-weight: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_f53b4a6d3a21b7bd7a244124.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.099000;font-style:normal;font-weight: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_8526ac1d72b2fca60fe8df1a.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.137000;font-style:normal;font-weight: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_6f2599a039d37cd6bfce4c15.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.102000;font-style:normal;font-weight: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_f53b4a6d3a21b7bd7a244124.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.099000;font-style:normal;font-weight: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_8526ac1d72b2fca60fe8df1a.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.137000;font-style:normal;font-weight: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_6f2599a039d37cd6bfce4c15.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.102000;font-style:normal;font-weight: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_f53b4a6d3a21b7bd7a244124.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.099000;font-style:normal;font-weight: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_8526ac1d72b2fca60fe8df1a.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.137000;font-style:normal;font-weight: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_6f2599a039d37cd6bfce4c15.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.102000;font-style:normal;font-weight: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_c01f62099f5f35bdcced8c7c.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.099000;font-style:normal;font-weight: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_8526ac1d72b2fca60fe8df1a.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:1.137000;font-style:normal;font-weight: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_6f2599a039d37cd6bfce4c15.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.102000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_f53b4a6d3a21b7bd7a244124.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.099000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_8526ac1d72b2fca60fe8df1a.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:1.137000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_6f2599a039d37cd6bfce4c15.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:1.102000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_f53b4a6d3a21b7bd7a244124.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.099000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_8526ac1d72b2fca60fe8df1a.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.137000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_6f2599a039d37cd6bfce4c15.woff2')format("woff");}.ff41{font-family:ff41;line-height:1.102000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_f53b4a6d3a21b7bd7a244124.woff2')format("woff");}.ff42{font-family:ff42;line-height:1.099000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url('chunks/assets/font_8526ac1d72b2fca60fe8df1a.woff2')format("woff");}.ff43{font-family:ff43;line-height:1.137000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_6f2599a039d37cd6bfce4c15.woff2')format("woff");}.ff44{font-family:ff44;line-height:1.102000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_f53b4a6d3a21b7bd7a244124.woff2')format("woff");}.ff45{font-family:ff45;line-height:1.099000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46;src:url('chunks/assets/font_8526ac1d72b2fca60fe8df1a.woff2')format("woff");}.ff46{font-family:ff46;line-height:1.137000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_f4388a21003731c0f2bd8f13.woff2')format("woff");}.ff47{font-family:ff47;line-height:1.102000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48;src:url('chunks/assets/font_c01f62099f5f35bdcced8c7c.woff2')format("woff");}.ff48{font-family:ff48;line-height:1.099000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url('chunks/assets/font_8526ac1d72b2fca60fe8df1a.woff2')format("woff");}.ff49{font-family:ff49;line-height:1.137000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a;src:url('chunks/assets/font_f4388a21003731c0f2bd8f13.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:1.102000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b;src:url('chunks/assets/font_c01f62099f5f35bdcced8c7c.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:1.099000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4c;src:url('chunks/assets/font_0dbc34ecb87cda45e58e4aae.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:1.137000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d;src:url('chunks/assets/font_f4388a21003731c0f2bd8f13.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:1.102000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e;src:url('chunks/assets/font_f53b4a6d3a21b7bd7a244124.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:1.099000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-22.177860px;}
.v2{vertical-align:-19.980060px;}
.v5{vertical-align:-17.978940px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:16.998540px;}
.v1{vertical-align:22.168558px;}
.ls29{letter-spacing:-6.973000px;}
.lsf3{letter-spacing:-6.750000px;}
.lsca{letter-spacing:-6.480000px;}
.ls82{letter-spacing:-6.318000px;}
.ls1b{letter-spacing:-6.264000px;}
.lsd7{letter-spacing:-6.210540px;}
.lsf5{letter-spacing:-5.616000px;}
.lsf1{letter-spacing:-4.265460px;}
.ls6c{letter-spacing:-4.195804px;}
.ls41{letter-spacing:-3.996004px;}
.ls4e{letter-spacing:-3.796869px;}
.ls9c{letter-spacing:-3.729603px;}
.lsa{letter-spacing:-3.662337px;}
.ls111{letter-spacing:-3.618000px;}
.ls3f{letter-spacing:-3.596403px;}
.ls3d{letter-spacing:-3.529137px;}
.lsd5{letter-spacing:-3.463203px;}
.ls9d{letter-spacing:-3.395937px;}
.ls37{letter-spacing:-3.330003px;}
.ls11f{letter-spacing:-3.294000px;}
.ls40{letter-spacing:-3.263403px;}
.lsef{letter-spacing:-3.240000px;}
.ls99{letter-spacing:-3.196803px;}
.lsee{letter-spacing:-3.186540px;}
.ls91{letter-spacing:-3.130203px;}
.ls90{letter-spacing:-3.064269px;}
.ls55{letter-spacing:-2.997003px;}
.ls88{letter-spacing:-2.863803px;}
.lse8{letter-spacing:-2.861460px;}
.ls24{letter-spacing:-2.808000px;}
.ls53{letter-spacing:-2.797869px;}
.ls61{letter-spacing:-2.730602px;}
.ls25{letter-spacing:-2.700000px;}
.ls34{letter-spacing:-2.663336px;}
.ls95{letter-spacing:-2.646000px;}
.lse{letter-spacing:-2.597402px;}
.ls8d{letter-spacing:-2.592000px;}
.lsab{letter-spacing:-2.530136px;}
.ls101{letter-spacing:-2.484540px;}
.lse3{letter-spacing:-2.464202px;}
.ls57{letter-spacing:-2.397602px;}
.ls7{letter-spacing:-2.331002px;}
.ls89{letter-spacing:-2.264402px;}
.ls67{letter-spacing:-2.214000px;}
.ls6f{letter-spacing:-2.197802px;}
.ls3a{letter-spacing:-2.159460px;}
.ls6e{letter-spacing:-2.131202px;}
.lsf2{letter-spacing:-2.106000px;}
.lsb8{letter-spacing:-2.065268px;}
.ls7d{letter-spacing:-1.998002px;}
.ls102{letter-spacing:-1.944000px;}
.ls70{letter-spacing:-1.932068px;}
.lsea{letter-spacing:-1.890000px;}
.ls87{letter-spacing:-1.864802px;}
.ls9e{letter-spacing:-1.797536px;}
.lsa6{letter-spacing:-1.731602px;}
.ls43{letter-spacing:-1.674540px;}
.lsa5{letter-spacing:-1.664335px;}
.ls52{letter-spacing:-1.598401px;}
.lscf{letter-spacing:-1.531135px;}
.ls13{letter-spacing:-1.465201px;}
.lsb1{letter-spacing:-1.404000px;}
.ls56{letter-spacing:-1.398601px;}
.ls10f{letter-spacing:-1.349460px;}
.ls85{letter-spacing:-1.332001px;}
.lsff{letter-spacing:-1.296000px;}
.ls8f{letter-spacing:-1.265401px;}
.ls81{letter-spacing:-1.241460px;}
.ls35{letter-spacing:-1.199467px;}
.ls21{letter-spacing:-1.188000px;}
.ls3b{letter-spacing:-1.134000px;}
.lsb7{letter-spacing:-1.132201px;}
.ls18{letter-spacing:-1.066267px;}
.ls11e{letter-spacing:-1.026000px;}
.lsf{letter-spacing:-0.999001px;}
.lsd9{letter-spacing:-0.972540px;}
.ls5d{letter-spacing:-0.933067px;}
.lsfd{letter-spacing:-0.918000px;}
.lse6{letter-spacing:-0.865801px;}
.lsaf{letter-spacing:-0.864540px;}
.ls4f{letter-spacing:-0.798535px;}
.lsf6{letter-spacing:-0.756540px;}
.ls3e{letter-spacing:-0.732601px;}
.lse7{letter-spacing:-0.702000px;}
.ls72{letter-spacing:-0.665335px;}
.ls100{letter-spacing:-0.647460px;}
.lsc{letter-spacing:-0.599401px;}
.lsb0{letter-spacing:-0.594000px;}
.ls23{letter-spacing:-0.539460px;}
.ls15{letter-spacing:-0.532800px;}
.ls66{letter-spacing:-0.486000px;}
.ls51{letter-spacing:-0.466200px;}
.ls93{letter-spacing:-0.432000px;}
.ls4b{letter-spacing:-0.399600px;}
.ls45{letter-spacing:-0.378000px;}
.ls5e{letter-spacing:-0.333000px;}
.lsda{letter-spacing:-0.324000px;}
.ls22{letter-spacing:-0.270000px;}
.ls12{letter-spacing:-0.266400px;}
.lsad{letter-spacing:-0.244860px;}
.ls76{letter-spacing:-0.216000px;}
.ls64{letter-spacing:-0.209880px;}
.ls49{letter-spacing:-0.200466px;}
.ls86{letter-spacing:-0.194139px;}
.ls94{letter-spacing:-0.162540px;}
.lsc3{letter-spacing:-0.139920px;}
.ls120{letter-spacing:-0.135450px;}
.ls32{letter-spacing:-0.133200px;}
.ls75{letter-spacing:-0.108000px;}
.ls8b{letter-spacing:-0.105290px;}
.ls10{letter-spacing:-0.067266px;}
.ls80{letter-spacing:-0.054540px;}
.lsb{letter-spacing:0.000000px;}
.ls92{letter-spacing:0.039216px;}
.ls8c{letter-spacing:0.054540px;}
.ls8{letter-spacing:0.067266px;}
.ls39{letter-spacing:0.108000px;}
.ls5f{letter-spacing:0.116872px;}
.ls50{letter-spacing:0.133200px;}
.ls1d{letter-spacing:0.162540px;}
.ls19{letter-spacing:0.174900px;}
.ls6{letter-spacing:0.200466px;}
.ls68{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.249996px;}
.ls42{letter-spacing:0.266400px;}
.ls2{letter-spacing:0.270000px;}
.ls10b{letter-spacing:0.271795px;}
.lsbb{letter-spacing:0.279840px;}
.ls5{letter-spacing:0.299796px;}
.ls118{letter-spacing:0.310622px;}
.ls11b{letter-spacing:0.314820px;}
.ls27{letter-spacing:0.324000px;}
.ls2f{letter-spacing:0.333000px;}
.lsa0{letter-spacing:0.349450px;}
.lsc7{letter-spacing:0.378000px;}
.ls74{letter-spacing:0.384780px;}
.ls36{letter-spacing:0.399600px;}
.lsd2{letter-spacing:0.419410px;}
.lsc4{letter-spacing:0.432000px;}
.ls79{letter-spacing:0.449550px;}
.lsbc{letter-spacing:0.454740px;}
.lsaa{letter-spacing:0.465545px;}
.lsd{letter-spacing:0.466200px;}
.ls7b{letter-spacing:0.468600px;}
.ls69{letter-spacing:0.486000px;}
.ls119{letter-spacing:0.490070px;}
.ls9f{letter-spacing:0.504761px;}
.lsdc{letter-spacing:0.523140px;}
.ls54{letter-spacing:0.532800px;}
.ls44{letter-spacing:0.539460px;}
.ls65{letter-spacing:0.560030px;}
.ls1a{letter-spacing:0.594000px;}
.lsae{letter-spacing:0.594660px;}
.ls58{letter-spacing:0.599401px;}
.lsac{letter-spacing:0.621633px;}
.lsf4{letter-spacing:0.664620px;}
.ls33{letter-spacing:0.665335px;}
.lsa7{letter-spacing:0.675000px;}
.lsba{letter-spacing:0.702000px;}
.ls9{letter-spacing:0.732601px;}
.ls10d{letter-spacing:0.737728px;}
.ls47{letter-spacing:0.756540px;}
.lsfe{letter-spacing:0.769560px;}
.lsb6{letter-spacing:0.776556px;}
.ls17{letter-spacing:0.798535px;}
.ls28{letter-spacing:0.810000px;}
.lsd3{letter-spacing:0.839520px;}
.lsd0{letter-spacing:0.854212px;}
.lsf0{letter-spacing:0.864540px;}
.ls4d{letter-spacing:0.865801px;}
.ls10e{letter-spacing:0.874150px;}
.ls124{letter-spacing:0.900000px;}
.ls7f{letter-spacing:0.918000px;}
.ls9b{letter-spacing:0.931867px;}
.ls14{letter-spacing:0.933067px;}
.lsc5{letter-spacing:0.944110px;}
.ls71{letter-spacing:0.970307px;}
.lsc6{letter-spacing:0.972540px;}
.ls77{letter-spacing:0.979440px;}
.ls11{letter-spacing:0.999001px;}
.lsfc{letter-spacing:1.009523px;}
.lsa1{letter-spacing:1.014770px;}
.lsa3{letter-spacing:1.026000px;}
.ls3c{letter-spacing:1.058305px;}
.ls103{letter-spacing:1.065601px;}
.ls2e{letter-spacing:1.066267px;}
.ls1{letter-spacing:1.077200px;}
.ls1e{letter-spacing:1.080000px;}
.ls116{letter-spacing:1.087178px;}
.ls63{letter-spacing:1.126394px;}
.ls30{letter-spacing:1.132201px;}
.ls3{letter-spacing:1.134000px;}
.ls5a{letter-spacing:1.170505px;}
.lscb{letter-spacing:1.188000px;}
.ls31{letter-spacing:1.199467px;}
.ls7c{letter-spacing:1.204050px;}
.ls11a{letter-spacing:1.224300px;}
.lsd1{letter-spacing:1.241460px;}
.ls0{letter-spacing:1.262269px;}
.lsfb{letter-spacing:1.265401px;}
.ls2c{letter-spacing:1.288352px;}
.ls38{letter-spacing:1.296000px;}
.lsf8{letter-spacing:1.312920px;}
.ls117{letter-spacing:1.320145px;}
.ls10c{letter-spacing:1.332001px;}
.lsb9{letter-spacing:1.349460px;}
.ls59{letter-spacing:1.398601px;}
.ls78{letter-spacing:1.404000px;}
.lsc9{letter-spacing:1.457460px;}
.ls4c{letter-spacing:1.465201px;}
.lse1{letter-spacing:1.477800px;}
.ls48{letter-spacing:1.488806px;}
.lse9{letter-spacing:1.512000px;}
.lsc2{letter-spacing:1.514284px;}
.ls73{letter-spacing:1.531135px;}
.lsa2{letter-spacing:1.566540px;}
.ls16{letter-spacing:1.598401px;}
.lsd6{letter-spacing:1.620000px;}
.lse4{letter-spacing:1.664335px;}
.lsb2{letter-spacing:1.665000px;}
.ls46{letter-spacing:1.674540px;}
.ls110{letter-spacing:1.728000px;}
.ls2d{letter-spacing:1.731602px;}
.lsd8{letter-spacing:1.782000px;}
.ls98{letter-spacing:1.786740px;}
.ls4a{letter-spacing:1.797536px;}
.lsbd{letter-spacing:1.832940px;}
.lsed{letter-spacing:1.836000px;}
.lsa4{letter-spacing:1.864802px;}
.ls2a{letter-spacing:1.901140px;}
.ls20{letter-spacing:1.998000px;}
.ls6d{letter-spacing:1.998002px;}
.lse5{letter-spacing:2.065268px;}
.ls1f{letter-spacing:2.106000px;}
.ls8a{letter-spacing:2.131202px;}
.ls2b{letter-spacing:2.167382px;}
.ls121{letter-spacing:2.197802px;}
.ls26{letter-spacing:2.268540px;}
.lsec{letter-spacing:2.376540px;}
.ls7e{letter-spacing:2.378290px;}
.ls123{letter-spacing:2.397602px;}
.lsb5{letter-spacing:2.464202px;}
.ls125{letter-spacing:2.474550px;}
.ls9a{letter-spacing:2.530136px;}
.ls60{letter-spacing:2.663336px;}
.ls105{letter-spacing:2.700000px;}
.ls1c{letter-spacing:2.861460px;}
.ls83{letter-spacing:3.132000px;}
.ls107{letter-spacing:3.240000px;}
.ls108{letter-spacing:3.326399px;}
.lseb{letter-spacing:3.402000px;}
.ls106{letter-spacing:3.752460px;}
.lsc8{letter-spacing:4.104000px;}
.lsdf{letter-spacing:4.194060px;}
.lsd4{letter-spacing:4.564800px;}
.ls122{letter-spacing:4.595404px;}
.ls11c{letter-spacing:4.921800px;}
.ls11d{letter-spacing:4.921920px;}
.lsc1{letter-spacing:5.061605px;}
.lsbe{letter-spacing:5.080245px;}
.lsf7{letter-spacing:5.452200px;}
.lsa9{letter-spacing:5.507400px;}
.lsce{letter-spacing:5.542860px;}
.ls109{letter-spacing:5.885460px;}
.lsde{letter-spacing:5.965800px;}
.lscc{letter-spacing:6.533400px;}
.lsfa{letter-spacing:7.194000px;}
.lsc0{letter-spacing:7.383000px;}
.lsdb{letter-spacing:7.869000px;}
.lse2{letter-spacing:7.974000px;}
.ls62{letter-spacing:7.992007px;}
.ls115{letter-spacing:8.178600px;}
.lsb4{letter-spacing:8.208480px;}
.ls7a{letter-spacing:8.282400px;}
.lsdd{letter-spacing:8.503200px;}
.ls113{letter-spacing:8.551200px;}
.ls8e{letter-spacing:8.820600px;}
.lsf9{letter-spacing:8.942460px;}
.lse0{letter-spacing:9.138000px;}
.ls10a{letter-spacing:9.258000px;}
.ls5b{letter-spacing:9.712020px;}
.lsbf{letter-spacing:10.254660px;}
.ls97{letter-spacing:10.272660px;}
.lsa8{letter-spacing:10.332060px;}
.lscd{letter-spacing:10.458000px;}
.ls112{letter-spacing:11.073600px;}
.ls6a{letter-spacing:11.146200px;}
.ls96{letter-spacing:11.497260px;}
.lsb3{letter-spacing:11.776790px;}
.ls114{letter-spacing:11.842800px;}
.ls6b{letter-spacing:11.950740px;}
.ls104{letter-spacing:12.440520px;}
.ls84{letter-spacing:14.190530px;}
.ls5c{letter-spacing:15.028630px;}
.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;}
}
.wsb{word-spacing:-26.195812px;}
.wsc{word-spacing:-25.150011px;}
.wsbb{word-spacing:-19.180817px;}
.ws4a{word-spacing:-19.113551px;}
.ws29{word-spacing:-19.047617px;}
.ws71{word-spacing:-18.847151px;}
.ws4b{word-spacing:-18.781217px;}
.ws11d{word-spacing:-18.515483px;}
.wse6{word-spacing:-18.448217px;}
.ws8b{word-spacing:-18.382283px;}
.ws2{word-spacing:-18.315016px;}
.ws8c{word-spacing:-18.181816px;}
.wsa5{word-spacing:-18.115216px;}
.ws3{word-spacing:-18.114550px;}
.ws96{word-spacing:-18.049282px;}
.ws2a{word-spacing:-17.981350px;}
.ws97{word-spacing:-17.848816px;}
.ws1{word-spacing:-17.782216px;}
.ws49{word-spacing:-17.781550px;}
.wsb4{word-spacing:-17.715616px;}
.wsba{word-spacing:-17.649016px;}
.wsa6{word-spacing:-17.449216px;}
.ws89{word-spacing:-17.316682px;}
.ws3c{word-spacing:-17.315350px;}
.ws3b{word-spacing:-17.182815px;}
.wsa8{word-spacing:-17.116215px;}
.ws8d{word-spacing:-17.115549px;}
.ws7e{word-spacing:-16.983015px;}
.wsfc{word-spacing:-16.902000px;}
.ws98{word-spacing:-16.849815px;}
.ws6e{word-spacing:-16.782549px;}
.wse5{word-spacing:-16.716615px;}
.ws2b{word-spacing:-16.650015px;}
.ws84{word-spacing:-16.632000px;}
.ws11c{word-spacing:-16.516815px;}
.ws5{word-spacing:-16.361460px;}
.wsa9{word-spacing:-16.250415px;}
.ws6f{word-spacing:-16.050614px;}
.ws110{word-spacing:-16.049948px;}
.wsd5{word-spacing:-15.984014px;}
.ws99{word-spacing:-15.851480px;}
.wsf9{word-spacing:-15.784214px;}
.ws0{word-spacing:-15.651014px;}
.ws6{word-spacing:-15.606000px;}
.ws5e{word-spacing:-15.584414px;}
.ws7{word-spacing:-15.498000px;}
.wsfd{word-spacing:-15.336000px;}
.wsc6{word-spacing:-15.318680px;}
.wsed{word-spacing:-15.318014px;}
.wsf0{word-spacing:-15.282000px;}
.ws123{word-spacing:-15.228000px;}
.ws133{word-spacing:-15.174540px;}
.wsad{word-spacing:-15.066540px;}
.ws124{word-spacing:-15.066000px;}
.wsdc{word-spacing:-14.957460px;}
.ws114{word-spacing:-14.796540px;}
.ws9c{word-spacing:-14.796000px;}
.wse9{word-spacing:-14.741460px;}
.wsde{word-spacing:-14.688000px;}
.wsf1{word-spacing:-14.634000px;}
.ws9b{word-spacing:-14.580000px;}
.wsae{word-spacing:-14.526000px;}
.wsda{word-spacing:-14.472540px;}
.ws82{word-spacing:-14.418000px;}
.wsfe{word-spacing:-14.364540px;}
.wsa{word-spacing:-14.310000px;}
.ws115{word-spacing:-14.256540px;}
.wsc9{word-spacing:-14.202000px;}
.wsff{word-spacing:-14.094000px;}
.wsd3{word-spacing:-13.986000px;}
.wsd8{word-spacing:-13.932000px;}
.wsdb{word-spacing:-13.878000px;}
.ws9{word-spacing:-13.824000px;}
.wse8{word-spacing:-13.770000px;}
.wsd4{word-spacing:-13.716000px;}
.wsf2{word-spacing:-13.662540px;}
.ws2c{word-spacing:-13.608000px;}
.ws117{word-spacing:-13.554000px;}
.wsdd{word-spacing:-13.500000px;}
.wsbf{word-spacing:-13.445460px;}
.wsc8{word-spacing:-13.392000px;}
.wsc2{word-spacing:-13.365000px;}
.ws121{word-spacing:-13.337460px;}
.wsf3{word-spacing:-13.230000px;}
.wsef{word-spacing:-13.122000px;}
.ws122{word-spacing:-13.014000px;}
.wsc1{word-spacing:-12.906000px;}
.ws134{word-spacing:-12.780000px;}
.wsf4{word-spacing:-12.635460px;}
.ws112{word-spacing:-12.582000px;}
.ws2d{word-spacing:-12.366000px;}
.ws8{word-spacing:-12.312000px;}
.ws85{word-spacing:-12.149550px;}
.ws116{word-spacing:-11.556000px;}
.ws100{word-spacing:-11.394000px;}
.wsd6{word-spacing:-11.221234px;}
.ws81{word-spacing:-11.123290px;}
.ws12b{word-spacing:-11.027095px;}
.ws80{word-spacing:-10.911000px;}
.ws120{word-spacing:-10.908000px;}
.ws9d{word-spacing:-10.854000px;}
.ws60{word-spacing:-10.833344px;}
.ws12a{word-spacing:-10.794128px;}
.ws111{word-spacing:-10.716473px;}
.ws70{word-spacing:-10.677257px;}
.wsa7{word-spacing:-10.638817px;}
.wse7{word-spacing:-10.561162px;}
.wsc7{word-spacing:-10.483506px;}
.ws11e{word-spacing:-10.444678px;}
.wsbd{word-spacing:-10.328583px;}
.wsaa{word-spacing:-10.211711px;}
.wsbc{word-spacing:-10.172495px;}
.ws12c{word-spacing:-10.017572px;}
.ws12e{word-spacing:-9.969300px;}
.ws5f{word-spacing:-9.823822px;}
.wsac{word-spacing:-9.759770px;}
.ws9a{word-spacing:-9.746166px;}
.ws72{word-spacing:-9.724440px;}
.ws3d{word-spacing:-9.706950px;}
.wsd9{word-spacing:-9.689110px;}
.ws11f{word-spacing:-9.619150px;}
.wseb{word-spacing:-9.584520px;}
.ws113{word-spacing:-9.514560px;}
.ws8a{word-spacing:-9.512811px;}
.ws102{word-spacing:-9.409620px;}
.wsc0{word-spacing:-9.339660px;}
.ws62{word-spacing:-9.305030px;}
.ws12d{word-spacing:-9.235070px;}
.wscb{word-spacing:-9.199740px;}
.wsea{word-spacing:-9.164410px;}
.wsab{word-spacing:-9.094450px;}
.ws12f{word-spacing:-9.059820px;}
.wsca{word-spacing:-9.024840px;}
.ws63{word-spacing:-8.745000px;}
.ws8e{word-spacing:-8.639710px;}
.wsd7{word-spacing:-8.605080px;}
.ws61{word-spacing:-8.535120px;}
.wsbe{word-spacing:-8.500140px;}
.ws68{word-spacing:-7.992007px;}
.wsee{word-spacing:-7.289460px;}
.ws4{word-spacing:-7.236000px;}
.ws83{word-spacing:-7.182000px;}
.ws101{word-spacing:-6.750000px;}
.wsdf{word-spacing:-5.061605px;}
.ws13c{word-spacing:-4.595404px;}
.wse0{word-spacing:-4.104000px;}
.ws66{word-spacing:-2.663336px;}
.wsb0{word-spacing:-2.530136px;}
.ws141{word-spacing:-2.474550px;}
.wscc{word-spacing:-2.464202px;}
.ws13e{word-spacing:-2.397602px;}
.ws10a{word-spacing:-2.376540px;}
.ws25{word-spacing:-2.268540px;}
.ws139{word-spacing:-2.264402px;}
.wsfb{word-spacing:-2.131868px;}
.ws93{word-spacing:-2.131202px;}
.ws7d{word-spacing:-2.106000px;}
.ws13d{word-spacing:-2.065268px;}
.ws74{word-spacing:-1.998002px;}
.wsb5{word-spacing:-1.931402px;}
.wsa1{word-spacing:-1.797536px;}
.ws132{word-spacing:-1.782000px;}
.ws13b{word-spacing:-1.731602px;}
.ws130{word-spacing:-1.728000px;}
.ws13f{word-spacing:-1.710000px;}
.ws47{word-spacing:-1.674540px;}
.ws104{word-spacing:-1.664335px;}
.wsf6{word-spacing:-1.620000px;}
.ws19{word-spacing:-1.598401px;}
.ws108{word-spacing:-1.512000px;}
.ws4f{word-spacing:-1.465201px;}
.ws135{word-spacing:-1.457460px;}
.ws7c{word-spacing:-1.404000px;}
.ws5d{word-spacing:-1.398601px;}
.wsd1{word-spacing:-1.349460px;}
.ws126{word-spacing:-1.332001px;}
.ws39{word-spacing:-1.296000px;}
.ws13a{word-spacing:-1.266067px;}
.ws118{word-spacing:-1.265401px;}
.ws32{word-spacing:-1.199467px;}
.ws1f{word-spacing:-1.134000px;}
.wsfa{word-spacing:-1.132867px;}
.ws31{word-spacing:-1.132201px;}
.ws20{word-spacing:-1.080000px;}
.ws2e{word-spacing:-1.066267px;}
.ws69{word-spacing:-0.999001px;}
.wse1{word-spacing:-0.972540px;}
.ws140{word-spacing:-0.945000px;}
.ws17{word-spacing:-0.933067px;}
.ws50{word-spacing:-0.865801px;}
.wsa4{word-spacing:-0.810000px;}
.ws57{word-spacing:-0.798535px;}
.ws48{word-spacing:-0.756540px;}
.wse{word-spacing:-0.732601px;}
.ws131{word-spacing:-0.702000px;}
.wsb9{word-spacing:-0.675000px;}
.ws34{word-spacing:-0.665335px;}
.ws5c{word-spacing:-0.599401px;}
.ws1c{word-spacing:-0.594000px;}
.ws45{word-spacing:-0.539460px;}
.ws58{word-spacing:-0.532800px;}
.ws7f{word-spacing:-0.494550px;}
.ws6d{word-spacing:-0.486000px;}
.ws30{word-spacing:-0.466200px;}
.wsb8{word-spacing:-0.449550px;}
.wse4{word-spacing:-0.432000px;}
.ws37{word-spacing:-0.399600px;}
.ws79{word-spacing:-0.384780px;}
.wse2{word-spacing:-0.378000px;}
.ws2f{word-spacing:-0.333000px;}
.wscf{word-spacing:-0.324000px;}
.ws26{word-spacing:-0.299796px;}
.ws125{word-spacing:-0.271795px;}
.ws1e{word-spacing:-0.270000px;}
.ws43{word-spacing:-0.266400px;}
.ws6c{word-spacing:-0.216000px;}
.ws28{word-spacing:-0.200466px;}
.ws1b{word-spacing:-0.174900px;}
.ws1d{word-spacing:-0.162540px;}
.ws53{word-spacing:-0.133200px;}
.wsd0{word-spacing:-0.108000px;}
.wsd{word-spacing:-0.067266px;}
.ws94{word-spacing:-0.054540px;}
.ws10{word-spacing:0.000000px;}
.ws87{word-spacing:0.054540px;}
.ws14{word-spacing:0.067266px;}
.ws7a{word-spacing:0.108000px;}
.ws33{word-spacing:0.133200px;}
.ws138{word-spacing:0.135450px;}
.wsa3{word-spacing:0.162540px;}
.ws4d{word-spacing:0.200466px;}
.ws7b{word-spacing:0.216000px;}
.ws15{word-spacing:0.266400px;}
.ws21{word-spacing:0.270000px;}
.wsf8{word-spacing:0.324000px;}
.ws65{word-spacing:0.333000px;}
.ws46{word-spacing:0.378000px;}
.ws4c{word-spacing:0.399600px;}
.wsa2{word-spacing:0.432000px;}
.ws54{word-spacing:0.466200px;}
.ws6a{word-spacing:0.486000px;}
.ws18{word-spacing:0.532800px;}
.ws22{word-spacing:0.539460px;}
.ws127{word-spacing:0.594000px;}
.ws11{word-spacing:0.599401px;}
.ws11a{word-spacing:0.647460px;}
.ws78{word-spacing:0.665335px;}
.ws106{word-spacing:0.702000px;}
.ws3f{word-spacing:0.732601px;}
.ws10f{word-spacing:0.756540px;}
.ws52{word-spacing:0.798535px;}
.wsc4{word-spacing:0.864540px;}
.ws105{word-spacing:0.865801px;}
.ws64{word-spacing:0.933067px;}
.wsf7{word-spacing:0.972540px;}
.ws13{word-spacing:0.999001px;}
.ws136{word-spacing:1.026000px;}
.ws1a{word-spacing:1.066267px;}
.wscd{word-spacing:1.132201px;}
.wsd2{word-spacing:1.134000px;}
.ws36{word-spacing:1.199467px;}
.ws88{word-spacing:1.241460px;}
.ws9e{word-spacing:1.265401px;}
.ws119{word-spacing:1.296000px;}
.ws8f{word-spacing:1.332001px;}
.ws128{word-spacing:1.349460px;}
.ws5a{word-spacing:1.398601px;}
.wsc5{word-spacing:1.404000px;}
.ws16{word-spacing:1.465201px;}
.wsec{word-spacing:1.531135px;}
.ws55{word-spacing:1.598401px;}
.wsb6{word-spacing:1.664335px;}
.ws44{word-spacing:1.674540px;}
.wsb7{word-spacing:1.731602px;}
.wsb3{word-spacing:1.797536px;}
.ws90{word-spacing:1.864802px;}
.ws109{word-spacing:1.890000px;}
.ws77{word-spacing:1.932068px;}
.ws86{word-spacing:1.998002px;}
.wsce{word-spacing:2.065268px;}
.ws75{word-spacing:2.131202px;}
.ws3a{word-spacing:2.159460px;}
.ws76{word-spacing:2.197802px;}
.ws6b{word-spacing:2.214000px;}
.ws92{word-spacing:2.264402px;}
.ws4e{word-spacing:2.331002px;}
.ws5b{word-spacing:2.397602px;}
.ws103{word-spacing:2.464202px;}
.ws11b{word-spacing:2.484540px;}
.wsc3{word-spacing:2.530136px;}
.ws95{word-spacing:2.592000px;}
.ws12{word-spacing:2.597402px;}
.ws35{word-spacing:2.663336px;}
.ws24{word-spacing:2.700000px;}
.ws67{word-spacing:2.730602px;}
.ws56{word-spacing:2.797869px;}
.ws23{word-spacing:2.808000px;}
.ws107{word-spacing:2.861460px;}
.ws91{word-spacing:2.863803px;}
.ws59{word-spacing:2.997003px;}
.ws9f{word-spacing:3.064269px;}
.wsa0{word-spacing:3.130203px;}
.ws10b{word-spacing:3.186540px;}
.wsaf{word-spacing:3.196803px;}
.ws10c{word-spacing:3.240000px;}
.ws41{word-spacing:3.263403px;}
.ws137{word-spacing:3.294000px;}
.ws38{word-spacing:3.330003px;}
.wsb2{word-spacing:3.395937px;}
.wsf5{word-spacing:3.463203px;}
.ws3e{word-spacing:3.529137px;}
.ws40{word-spacing:3.596403px;}
.ws129{word-spacing:3.618000px;}
.wsf{word-spacing:3.662337px;}
.wsb1{word-spacing:3.729603px;}
.ws51{word-spacing:3.796869px;}
.ws42{word-spacing:3.996004px;}
.ws73{word-spacing:4.195804px;}
.ws10d{word-spacing:4.265460px;}
.ws10e{word-spacing:5.616000px;}
.wse3{word-spacing:6.480000px;}
.ws27{word-spacing:6.973000px;}
._13{margin-left:-17.455876px;}
._11{margin-left:-15.835590px;}
._a{margin-left:-13.503780px;}
._14{margin-left:-8.504908px;}
._d{margin-left:-7.194455px;}
._c{margin-left:-5.425900px;}
._7{margin-left:-3.812171px;}
._5{margin-left:-2.763904px;}
._4{margin-left:-1.658341px;}
._1{width:1.218781px;}
._0{width:2.364302px;}
._6{width:3.643023px;}
._3{width:5.454545px;}
._2{width:6.473525px;}
._e{width:7.507160px;}
._9{width:8.701193px;}
._f{width:9.717613px;}
._15{width:10.961704px;}
._12{width:12.905160px;}
._b{width:15.038340px;}
._10{width:16.473180px;}
._8{width:18.396420px;}
._16{width:24.390539px;}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:34.980000px;}
.fs5{font-size:36.729060px;}
.fs1{font-size:38.827800px;}
.fs6{font-size:45.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:66.600060px;}
.fs4{font-size:99.600060px;}
.y0{bottom:0.000000px;}
.y9d{bottom:134.820761px;}
.y22{bottom:134.820786px;}
.y1{bottom:134.820830px;}
.ycd{bottom:134.820853px;}
.y53{bottom:134.820855px;}
.y19f{bottom:134.820878px;}
.y1e9{bottom:134.820967px;}
.yf3{bottom:134.820969px;}
.yc1{bottom:174.307436px;}
.y210{bottom:174.312277px;}
.y1d{bottom:174.316775px;}
.yf1{bottom:174.316798px;}
.y9b{bottom:174.321410px;}
.y19e{bottom:174.329739px;}
.y145{bottom:174.330611px;}
.y52{bottom:174.330621px;}
.ycb{bottom:174.330680px;}
.y231{bottom:174.330703px;}
.y221{bottom:174.330713px;}
.y47{bottom:174.330771px;}
.y123{bottom:174.330804px;}
.y1c6{bottom:174.330863px;}
.y118{bottom:174.330954px;}
.y134{bottom:178.570738px;}
.y77{bottom:179.325840px;}
.yc0{bottom:190.062071px;}
.y20f{bottom:190.066912px;}
.y1c{bottom:190.071410px;}
.yf0{bottom:190.071433px;}
.y9a{bottom:190.076045px;}
.y19d{bottom:190.079739px;}
.y51{bottom:190.080621px;}
.yca{bottom:190.080680px;}
.y230{bottom:190.080703px;}
.y220{bottom:190.080713px;}
.y18c{bottom:190.080771px;}
.y122{bottom:190.080804px;}
.y1c5{bottom:190.080863px;}
.y117{bottom:190.080954px;}
.y144{bottom:195.075611px;}
.y46{bottom:195.075771px;}
.y1d2{bottom:195.075863px;}
.y133{bottom:198.070738px;}
.ybf{bottom:205.816706px;}
.y20e{bottom:205.821547px;}
.y1b{bottom:205.826045px;}
.yef{bottom:205.826068px;}
.y19c{bottom:205.829739px;}
.y50{bottom:205.830621px;}
.yc9{bottom:205.830680px;}
.y22f{bottom:205.830703px;}
.y21f{bottom:205.830713px;}
.y143{bottom:205.830746px;}
.y18b{bottom:205.830771px;}
.y121{bottom:205.830804px;}
.y1c4{bottom:205.830863px;}
.y45{bottom:205.830906px;}
.y116{bottom:205.830954px;}
.y168{bottom:210.825680px;}
.y132{bottom:217.570738px;}
.y76{bottom:217.570740px;}
.y167{bottom:221.566910px;}
.ybe{bottom:221.571341px;}
.y20d{bottom:221.576182px;}
.y19b{bottom:221.579739px;}
.y4f{bottom:221.580621px;}
.y16e{bottom:221.580680px;}
.y22e{bottom:221.580703px;}
.y21e{bottom:221.580713px;}
.y18a{bottom:221.580771px;}
.y120{bottom:221.580804px;}
.y1c3{bottom:221.580863px;}
.y44{bottom:221.580906px;}
.y115{bottom:221.580954px;}
.y1a{bottom:226.575680px;}
.yee{bottom:226.575703px;}
.y142{bottom:226.575761px;}
.y131{bottom:237.070738px;}
.y75{bottom:237.070740px;}
.y19{bottom:237.303005px;}
.y166{bottom:237.321545px;}
.ybd{bottom:237.325976px;}
.y4e{bottom:237.330621px;}
.y16d{bottom:237.330680px;}
.y22d{bottom:237.330703px;}
.y21d{bottom:237.330713px;}
.y189{bottom:237.330771px;}
.y1c2{bottom:237.330863px;}
.y114{bottom:237.330954px;}
.y19a{bottom:242.324754px;}
.y11f{bottom:242.325804px;}
.y20c{bottom:242.325817px;}
.y99{bottom:242.325830px;}
.y43{bottom:242.325921px;}
.y1e8{bottom:242.325954px;}
.yc3{bottom:248.739911px;}
.y20b{bottom:252.983617px;}
.y18{bottom:253.057640px;}
.y165{bottom:253.076180px;}
.y98{bottom:253.076345px;}
.y199{bottom:253.079904px;}
.y4d{bottom:253.080621px;}
.y16c{bottom:253.080680px;}
.y22c{bottom:253.080703px;}
.y21c{bottom:253.080713px;}
.y188{bottom:253.080771px;}
.y1c1{bottom:253.080863px;}
.y113{bottom:253.080954px;}
.y42{bottom:253.081071px;}
.y1e7{bottom:253.081089px;}
.y130{bottom:256.570738px;}
.y74{bottom:256.570740px;}
.ybc{bottom:258.075611px;}
.y11e{bottom:258.076104px;}
.y20a{bottom:268.738252px;}
.y17{bottom:268.812275px;}
.ybb{bottom:268.821476px;}
.y198{bottom:268.829904px;}
.y4c{bottom:268.830621px;}
.y16b{bottom:268.830680px;}
.y22b{bottom:268.830703px;}
.y21b{bottom:268.830713px;}
.y187{bottom:268.830771px;}
.y1c0{bottom:268.830863px;}
.y112{bottom:268.830954px;}
.y41{bottom:268.831071px;}
.y1e6{bottom:268.831089px;}
.y164{bottom:273.825830px;}
.y97{bottom:273.825980px;}
.y234{bottom:274.251746px;}
.y141{bottom:276.070646px;}
.yc8{bottom:276.070715px;}
.y12f{bottom:276.070738px;}
.y73{bottom:276.070740px;}
.yed{bottom:276.103931px;}
.y235{bottom:278.104295px;}
.y209{bottom:284.492887px;}
.y163{bottom:284.553170px;}
.y16{bottom:284.566910px;}
.yba{bottom:284.576111px;}
.y197{bottom:284.579904px;}
.y4b{bottom:284.580621px;}
.y16a{bottom:284.580680px;}
.y22a{bottom:284.580703px;}
.y21a{bottom:284.580713px;}
.y186{bottom:284.580771px;}
.y1bf{bottom:284.580863px;}
.y111{bottom:284.580954px;}
.y40{bottom:284.581071px;}
.y1e5{bottom:284.581089px;}
.y140{bottom:295.570646px;}
.yc7{bottom:295.570715px;}
.y12e{bottom:295.570738px;}
.y72{bottom:295.570740px;}
.y11d{bottom:295.570854px;}
.yec{bottom:295.601265px;}
.y208{bottom:300.247522px;}
.y162{bottom:300.307805px;}
.y15{bottom:300.321545px;}
.y196{bottom:300.329904px;}
.y229{bottom:300.330703px;}
.y219{bottom:300.330713px;}
.y185{bottom:300.330771px;}
.y1be{bottom:300.330863px;}
.y110{bottom:300.330954px;}
.y3f{bottom:300.331071px;}
.y1e4{bottom:300.331089px;}
.y4a{bottom:305.325621px;}
.yb9{bottom:305.325761px;}
.y13f{bottom:315.070646px;}
.yc6{bottom:315.070715px;}
.y12d{bottom:315.070738px;}
.y71{bottom:315.070740px;}
.y11c{bottom:315.070854px;}
.y96{bottom:315.073383px;}
.yeb{bottom:315.098599px;}
.y207{bottom:316.002157px;}
.y161{bottom:316.062440px;}
.y14{bottom:316.076180px;}
.y228{bottom:316.080703px;}
.y218{bottom:316.080713px;}
.y184{bottom:316.080771px;}
.y1bd{bottom:316.080863px;}
.y1e3{bottom:316.081089px;}
.y195{bottom:321.074904px;}
.y49{bottom:321.075921px;}
.y10f{bottom:321.075954px;}
.y3e{bottom:321.076071px;}
.y206{bottom:331.756792px;}
.y160{bottom:331.817075px;}
.y194{bottom:331.830069px;}
.y227{bottom:331.830703px;}
.y217{bottom:331.830713px;}
.y183{bottom:331.830771px;}
.y1bc{bottom:331.830863px;}
.y1e2{bottom:331.831089px;}
.y13e{bottom:334.570646px;}
.yc5{bottom:334.570715px;}
.y95{bottom:334.570717px;}
.y12c{bottom:334.570738px;}
.y70{bottom:334.570740px;}
.y11b{bottom:334.570854px;}
.yea{bottom:334.595933px;}
.y13{bottom:336.825830px;}
.y205{bottom:347.511427px;}
.y15f{bottom:347.571710px;}
.y193{bottom:347.580069px;}
.y226{bottom:347.580703px;}
.y182{bottom:347.580771px;}
.y1bb{bottom:347.580863px;}
.y1e1{bottom:347.581089px;}
.y216{bottom:352.575713px;}
.y13d{bottom:354.070646px;}
.yc4{bottom:354.070715px;}
.y12b{bottom:354.070738px;}
.y6f{bottom:354.070740px;}
.y11a{bottom:354.070854px;}
.yb8{bottom:354.072665px;}
.y94{bottom:354.091231px;}
.ye9{bottom:354.093267px;}
.y204{bottom:363.266062px;}
.y15e{bottom:363.326345px;}
.y192{bottom:363.330069px;}
.y225{bottom:363.330703px;}
.y181{bottom:363.330771px;}
.y1ba{bottom:363.330863px;}
.y215{bottom:363.330998px;}
.y1e0{bottom:363.331089px;}
.yb7{bottom:373.569999px;}
.y13c{bottom:373.570646px;}
.y3d{bottom:373.570671px;}
.y169{bottom:373.570715px;}
.y12a{bottom:373.570738px;}
.y6e{bottom:373.570740px;}
.y10e{bottom:373.570854px;}
.y12{bottom:373.575723px;}
.y93{bottom:373.588565px;}
.ye8{bottom:373.590601px;}
.y203{bottom:379.020697px;}
.y191{bottom:379.080069px;}
.y224{bottom:379.080703px;}
.y180{bottom:379.080771px;}
.y1b9{bottom:379.080863px;}
.y15d{bottom:379.080980px;}
.y1df{bottom:379.081089px;}
.y214{bottom:384.076013px;}
.y13b{bottom:393.070646px;}
.y3c{bottom:393.070671px;}
.y129{bottom:393.070738px;}
.y6d{bottom:393.070740px;}
.y10d{bottom:393.070854px;}
.y11{bottom:393.073057px;}
.yb6{bottom:393.083817px;}
.y92{bottom:393.085899px;}
.ye7{bottom:393.087935px;}
.y202{bottom:394.775332px;}
.y190{bottom:394.830069px;}
.y17f{bottom:394.830771px;}
.y1b8{bottom:394.830863px;}
.y1de{bottom:394.831089px;}
.y213{bottom:399.826163px;}
.y201{bottom:410.529967px;}
.y18f{bottom:410.580069px;}
.y17e{bottom:410.580771px;}
.y1b7{bottom:410.580863px;}
.y1dd{bottom:410.581089px;}
.y10{bottom:412.570391px;}
.y3b{bottom:412.570671px;}
.y128{bottom:412.570738px;}
.y6c{bottom:412.570740px;}
.y10c{bottom:412.570854px;}
.yb5{bottom:412.581151px;}
.y91{bottom:412.583233px;}
.ye6{bottom:412.585269px;}
.ycc{bottom:416.358830px;}
.y200{bottom:426.284602px;}
.y18e{bottom:426.330069px;}
.y17d{bottom:426.330771px;}
.y1b6{bottom:426.330863px;}
.y1dc{bottom:426.331089px;}
.y13a{bottom:432.070646px;}
.y3a{bottom:432.070671px;}
.y127{bottom:432.070738px;}
.y6b{bottom:432.070740px;}
.y10b{bottom:432.070854px;}
.y15c{bottom:432.078391px;}
.yb4{bottom:432.078485px;}
.y90{bottom:432.080567px;}
.yf{bottom:432.081379px;}
.ye5{bottom:432.082604px;}
.y16f{bottom:438.410030px;}
.y1ff{bottom:442.039237px;}
.y18d{bottom:442.080069px;}
.y17c{bottom:442.080771px;}
.y1d1{bottom:442.080863px;}
.y1db{bottom:442.081089px;}
.y39{bottom:451.570671px;}
.y126{bottom:451.570738px;}
.y6a{bottom:451.570740px;}
.y212{bottom:451.570763px;}
.y10a{bottom:451.570854px;}
.y15b{bottom:451.575725px;}
.yb3{bottom:451.575819px;}
.y8f{bottom:451.577901px;}
.ye{bottom:451.578713px;}
.ye4{bottom:451.579938px;}
.y1fe{bottom:457.793872px;}
.y17b{bottom:457.830771px;}
.y1d0{bottom:457.830863px;}
.y1da{bottom:457.831089px;}
.y139{bottom:471.070646px;}
.y38{bottom:471.070671px;}
.y125{bottom:471.070738px;}
.y69{bottom:471.070740px;}
.y1b5{bottom:471.070763px;}
.y109{bottom:471.070854px;}
.y15a{bottom:471.073059px;}
.yb2{bottom:471.073153px;}
.y8e{bottom:471.075235px;}
.yd{bottom:471.076047px;}
.ye3{bottom:471.077272px;}
.y1fd{bottom:473.548507px;}
.y17a{bottom:473.580771px;}
.y1cf{bottom:473.580863px;}
.y1d9{bottom:473.581089px;}
.y1fc{bottom:489.303142px;}
.y179{bottom:489.330771px;}
.y1ce{bottom:489.330863px;}
.y1d8{bottom:489.331089px;}
.y159{bottom:490.570393px;}
.yb1{bottom:490.570487px;}
.y138{bottom:490.570646px;}
.y37{bottom:490.570671px;}
.y124{bottom:490.570738px;}
.y68{bottom:490.570740px;}
.y1b4{bottom:490.570763px;}
.y108{bottom:490.570854px;}
.y8d{bottom:490.572569px;}
.yc{bottom:490.573381px;}
.ye2{bottom:490.574606px;}
.y1fb{bottom:505.057777px;}
.y178{bottom:505.080771px;}
.y1cd{bottom:505.080863px;}
.y1d7{bottom:505.081089px;}
.y8c{bottom:510.069904px;}
.y137{bottom:510.070646px;}
.y36{bottom:510.070671px;}
.y223{bottom:510.070738px;}
.y67{bottom:510.070740px;}
.y1b3{bottom:510.070763px;}
.y107{bottom:510.070854px;}
.ye1{bottom:510.071940px;}
.yb{bottom:510.073040px;}
.y158{bottom:510.073222px;}
.yb0{bottom:510.075980px;}
.y1fa{bottom:520.812412px;}
.y177{bottom:520.830771px;}
.y1cc{bottom:520.830863px;}
.y1d6{bottom:520.831089px;}
.ye0{bottom:529.569274px;}
.ya{bottom:529.570374px;}
.y157{bottom:529.570556px;}
.y136{bottom:529.570646px;}
.y35{bottom:529.570671px;}
.y222{bottom:529.570738px;}
.y66{bottom:529.570740px;}
.y1b2{bottom:529.570763px;}
.y106{bottom:529.570854px;}
.y8b{bottom:529.572732px;}
.yaf{bottom:529.573314px;}
.y1f9{bottom:536.567047px;}
.y176{bottom:536.580771px;}
.y1cb{bottom:536.580863px;}
.y1d5{bottom:541.576104px;}
.y8a{bottom:549.070066px;}
.y9{bottom:549.070372px;}
.yae{bottom:549.070648px;}
.y34{bottom:549.070671px;}
.y65{bottom:549.070740px;}
.y1b1{bottom:549.070763px;}
.y105{bottom:549.070854px;}
.y156{bottom:549.076049px;}
.ydf{bottom:549.099575px;}
.y135{bottom:550.629703px;}
.y1f8{bottom:552.321682px;}
.y175{bottom:552.330771px;}
.y1ca{bottom:552.330863px;}
.y1d4{bottom:552.331254px;}
.y1f7{bottom:568.076317px;}
.y1c9{bottom:568.080863px;}
.y1d3{bottom:568.081254px;}
.y33{bottom:568.570671px;}
.y64{bottom:568.570740px;}
.y1b0{bottom:568.570763px;}
.y104{bottom:568.570854px;}
.y8{bottom:568.573201px;}
.y155{bottom:568.573383px;}
.yad{bottom:568.578644px;}
.y89{bottom:568.592042px;}
.yde{bottom:568.596909px;}
.y174{bottom:573.075621px;}
.y173{bottom:583.830771px;}
.y7{bottom:588.070535px;}
.y32{bottom:588.070671px;}
.y154{bottom:588.070717px;}
.y63{bottom:588.070740px;}
.y1af{bottom:588.070763px;}
.y103{bottom:588.070854px;}
.yac{bottom:588.075978px;}
.y88{bottom:588.089376px;}
.ydd{bottom:588.094243px;}
.y1c8{bottom:588.825863px;}
.y1f6{bottom:588.825967px;}
.y146{bottom:589.220546px;}
.y233{bottom:592.605688px;}
.y232{bottom:592.605853px;}
.y172{bottom:599.580771px;}
.y31{bottom:607.570671px;}
.y62{bottom:607.570740px;}
.y1ae{bottom:607.570763px;}
.y102{bottom:607.570854px;}
.y153{bottom:607.572864px;}
.yab{bottom:607.573312px;}
.y6{bottom:607.573364px;}
.y87{bottom:607.586710px;}
.ydc{bottom:607.591577px;}
.y171{bottom:615.330771px;}
.y152{bottom:627.070198px;}
.y30{bottom:627.070671px;}
.y5{bottom:627.070698px;}
.y61{bottom:627.070740px;}
.y1ad{bottom:627.070763px;}
.y101{bottom:627.070854px;}
.yaa{bottom:627.072960px;}
.y86{bottom:627.084044px;}
.ydb{bottom:627.088911px;}
.y170{bottom:636.075771px;}
.y151{bottom:646.570196px;}
.ya9{bottom:646.570294px;}
.y2f{bottom:646.570671px;}
.y60{bottom:646.570740px;}
.y1ac{bottom:646.570763px;}
.y100{bottom:646.570854px;}
.y4{bottom:646.575358px;}
.y1f5{bottom:646.578689px;}
.y85{bottom:646.581379px;}
.yda{bottom:646.586245px;}
.y2e{bottom:666.070671px;}
.y5f{bottom:666.070740px;}
.y1ab{bottom:666.070763px;}
.yff{bottom:666.070854px;}
.y3{bottom:666.072692px;}
.y150{bottom:666.073025px;}
.y1f4{bottom:666.076023px;}
.y84{bottom:666.078713px;}
.yd9{bottom:666.083579px;}
.ya8{bottom:666.098264px;}
.y14f{bottom:685.570359px;}
.y2d{bottom:685.570671px;}
.y5e{bottom:685.570740px;}
.y1aa{bottom:685.570763px;}
.yfe{bottom:685.570854px;}
.y1f3{bottom:685.573357px;}
.y83{bottom:685.576047px;}
.yd8{bottom:685.580913px;}
.ya7{bottom:685.595598px;}
.y2{bottom:705.067027px;}
.y14e{bottom:705.070357px;}
.y2c{bottom:705.070671px;}
.y1f2{bottom:705.070691px;}
.y5d{bottom:705.070740px;}
.y1a9{bottom:705.070763px;}
.yfd{bottom:705.070854px;}
.y82{bottom:705.073381px;}
.yd7{bottom:705.078247px;}
.ya6{bottom:705.092932px;}
.y81{bottom:724.570390px;}
.y2b{bottom:724.570671px;}
.y5c{bottom:724.570740px;}
.y1a8{bottom:724.570763px;}
.yfc{bottom:724.570854px;}
.y1f1{bottom:724.573520px;}
.yd6{bottom:724.575582px;}
.y14d{bottom:724.581344px;}
.ya5{bottom:724.590266px;}
.y2a{bottom:744.070671px;}
.y5b{bottom:744.070740px;}
.y1a7{bottom:744.070763px;}
.yfb{bottom:744.070854px;}
.yd5{bottom:744.072916px;}
.y14c{bottom:744.078678px;}
.y80{bottom:744.078713px;}
.ya4{bottom:744.087600px;}
.y21{bottom:747.964280px;}
.yd4{bottom:763.570250px;}
.y29{bottom:763.570671px;}
.y5a{bottom:763.570740px;}
.y1a6{bottom:763.570763px;}
.yfa{bottom:763.570854px;}
.y14b{bottom:763.576012px;}
.y7f{bottom:763.576047px;}
.y1f0{bottom:763.590968px;}
.y28{bottom:783.070671px;}
.y59{bottom:783.070740px;}
.y1a5{bottom:783.070763px;}
.yf9{bottom:783.070854px;}
.y14a{bottom:783.073346px;}
.y7e{bottom:783.073381px;}
.ya3{bottom:783.081936px;}
.yd3{bottom:783.084067px;}
.y1ef{bottom:783.088302px;}
.y20{bottom:784.494796px;}
.y27{bottom:802.570671px;}
.y149{bottom:802.570680px;}
.y58{bottom:802.570740px;}
.y1a4{bottom:802.570763px;}
.yf8{bottom:802.570854px;}
.y7d{bottom:802.573344px;}
.yd2{bottom:802.581401px;}
.y1ee{bottom:802.585636px;}
.y1f{bottom:812.233413px;}
.y26{bottom:822.070671px;}
.y7c{bottom:822.070678px;}
.y57{bottom:822.070740px;}
.y1a3{bottom:822.070763px;}
.yf7{bottom:822.070854px;}
.y148{bottom:822.073509px;}
.ya2{bottom:822.076271px;}
.yd1{bottom:822.078735px;}
.y1ed{bottom:822.082970px;}
.y1e{bottom:839.972030px;}
.y25{bottom:841.570671px;}
.y56{bottom:841.570740px;}
.y1a2{bottom:841.570763px;}
.y147{bottom:841.570843px;}
.yf6{bottom:841.570854px;}
.ya1{bottom:841.573605px;}
.yd0{bottom:841.576069px;}
.y7b{bottom:841.580167px;}
.y1ec{bottom:841.580304px;}
.y24{bottom:861.070671px;}
.y55{bottom:861.070740px;}
.y1a1{bottom:861.070763px;}
.yf5{bottom:861.070854px;}
.ya0{bottom:861.070939px;}
.ycf{bottom:861.073404px;}
.y7a{bottom:861.077501px;}
.y1eb{bottom:861.077638px;}
.y23{bottom:880.570671px;}
.y54{bottom:880.570740px;}
.y1a0{bottom:880.570763px;}
.yf4{bottom:880.570854px;}
.y9f{bottom:880.570937px;}
.y9e{bottom:880.574766px;}
.y79{bottom:880.574835px;}
.yce{bottom:880.574858px;}
.y1ea{bottom:880.574973px;}
.yc2{bottom:922.794161px;}
.y9c{bottom:922.794230px;}
.yf2{bottom:922.794253px;}
.y48{bottom:922.794321px;}
.y211{bottom:922.794367px;}
.y78{bottom:922.794390px;}
.y1c7{bottom:922.794413px;}
.y119{bottom:922.794504px;}
.h4{height:28.613640px;}
.h9{height:36.810000px;}
.hb{height:43.848000px;}
.h5{height:44.172000px;}
.h8{height:48.041851px;}
.ha{height:54.470251px;}
.h3{height:54.478849px;}
.h7{height:54.480150px;}
.h2{height:57.942052px;}
.h6{height:81.472849px;}
.h0{height:1020.472590px;}
.h1{height:1020.750000px;}
.w1{width:688.500000px;}
.w0{width:688.818090px;}
.w2{width:688.819590px;}
.x0{left:0.000000px;}
.x1c{left:46.322950px;}
.x1d{left:58.322950px;}
.x1e{left:80.793070px;}
.x3{left:81.844562px;}
.xd{left:82.913374px;}
.x20{left:106.299238px;}
.x15{left:108.425422px;}
.x4{left:109.913466px;}
.xf{left:110.976289px;}
.x1f{left:119.049417px;}
.x5{left:120.104346px;}
.xe{left:121.181089px;}
.x1b{left:170.078785px;}
.xb{left:171.141667px;}
.x12{left:172.204763px;}
.x6{left:175.835331px;}
.x8{left:196.455096px;}
.x18{left:197.716417px;}
.xc{left:199.204717px;}
.x14{left:200.267663px;}
.x10{left:207.656839px;}
.xa{left:209.409367px;}
.x13{left:210.472448px;}
.x2{left:221.105288px;}
.x7{left:249.837926px;}
.x17{left:257.885489px;}
.x21{left:284.534422px;}
.x1{left:285.657396px;}
.x11{left:373.007378px;}
.x9{left:374.364967px;}
.x16{left:605.905434px;}
.x22{left:614.551288px;}
.x23{left:626.551288px;}
.x19{left:638.551288px;}
.x1a{left:650.551288px;}
@media print{
.v3{vertical-align:-19.713653pt;}
.v2{vertical-align:-17.760053pt;}
.v5{vertical-align:-15.981280pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.109813pt;}
.v1{vertical-align:19.705385pt;}
.ls29{letter-spacing:-6.198222pt;}
.lsf3{letter-spacing:-6.000000pt;}
.lsca{letter-spacing:-5.760000pt;}
.ls82{letter-spacing:-5.616000pt;}
.ls1b{letter-spacing:-5.568000pt;}
.lsd7{letter-spacing:-5.520480pt;}
.lsf5{letter-spacing:-4.992000pt;}
.lsf1{letter-spacing:-3.791520pt;}
.ls6c{letter-spacing:-3.729603pt;}
.ls41{letter-spacing:-3.552003pt;}
.ls4e{letter-spacing:-3.374995pt;}
.ls9c{letter-spacing:-3.315203pt;}
.lsa{letter-spacing:-3.255411pt;}
.ls111{letter-spacing:-3.216000pt;}
.ls3f{letter-spacing:-3.196803pt;}
.ls3d{letter-spacing:-3.137011pt;}
.lsd5{letter-spacing:-3.078403pt;}
.ls9d{letter-spacing:-3.018611pt;}
.ls37{letter-spacing:-2.960003pt;}
.ls11f{letter-spacing:-2.928000pt;}
.ls40{letter-spacing:-2.900803pt;}
.lsef{letter-spacing:-2.880000pt;}
.ls99{letter-spacing:-2.841603pt;}
.lsee{letter-spacing:-2.832480pt;}
.ls91{letter-spacing:-2.782403pt;}
.ls90{letter-spacing:-2.723794pt;}
.ls55{letter-spacing:-2.664002pt;}
.ls88{letter-spacing:-2.545602pt;}
.lse8{letter-spacing:-2.543520pt;}
.ls24{letter-spacing:-2.496000pt;}
.ls53{letter-spacing:-2.486994pt;}
.ls61{letter-spacing:-2.427202pt;}
.ls25{letter-spacing:-2.400000pt;}
.ls34{letter-spacing:-2.367410pt;}
.ls95{letter-spacing:-2.352000pt;}
.lse{letter-spacing:-2.308802pt;}
.ls8d{letter-spacing:-2.304000pt;}
.lsab{letter-spacing:-2.249010pt;}
.ls101{letter-spacing:-2.208480pt;}
.lse3{letter-spacing:-2.190402pt;}
.ls57{letter-spacing:-2.131202pt;}
.ls7{letter-spacing:-2.072002pt;}
.ls89{letter-spacing:-2.012802pt;}
.ls67{letter-spacing:-1.968000pt;}
.ls6f{letter-spacing:-1.953602pt;}
.ls3a{letter-spacing:-1.919520pt;}
.ls6e{letter-spacing:-1.894402pt;}
.lsf2{letter-spacing:-1.872000pt;}
.lsb8{letter-spacing:-1.835794pt;}
.ls7d{letter-spacing:-1.776002pt;}
.ls102{letter-spacing:-1.728000pt;}
.ls70{letter-spacing:-1.717394pt;}
.lsea{letter-spacing:-1.680000pt;}
.ls87{letter-spacing:-1.657601pt;}
.ls9e{letter-spacing:-1.597809pt;}
.lsa6{letter-spacing:-1.539201pt;}
.ls43{letter-spacing:-1.488480pt;}
.lsa5{letter-spacing:-1.479409pt;}
.ls52{letter-spacing:-1.420801pt;}
.lscf{letter-spacing:-1.361009pt;}
.ls13{letter-spacing:-1.302401pt;}
.lsb1{letter-spacing:-1.248000pt;}
.ls56{letter-spacing:-1.243201pt;}
.ls10f{letter-spacing:-1.199520pt;}
.ls85{letter-spacing:-1.184001pt;}
.lsff{letter-spacing:-1.152000pt;}
.ls8f{letter-spacing:-1.124801pt;}
.ls81{letter-spacing:-1.103520pt;}
.ls35{letter-spacing:-1.066193pt;}
.ls21{letter-spacing:-1.056000pt;}
.ls3b{letter-spacing:-1.008000pt;}
.lsb7{letter-spacing:-1.006401pt;}
.ls18{letter-spacing:-0.947793pt;}
.ls11e{letter-spacing:-0.912000pt;}
.lsf{letter-spacing:-0.888001pt;}
.lsd9{letter-spacing:-0.864480pt;}
.ls5d{letter-spacing:-0.829393pt;}
.lsfd{letter-spacing:-0.816000pt;}
.lse6{letter-spacing:-0.769601pt;}
.lsaf{letter-spacing:-0.768480pt;}
.ls4f{letter-spacing:-0.709809pt;}
.lsf6{letter-spacing:-0.672480pt;}
.ls3e{letter-spacing:-0.651201pt;}
.lse7{letter-spacing:-0.624000pt;}
.ls72{letter-spacing:-0.591409pt;}
.ls100{letter-spacing:-0.575520pt;}
.lsc{letter-spacing:-0.532800pt;}
.lsb0{letter-spacing:-0.528000pt;}
.ls23{letter-spacing:-0.479520pt;}
.ls15{letter-spacing:-0.473600pt;}
.ls66{letter-spacing:-0.432000pt;}
.ls51{letter-spacing:-0.414400pt;}
.ls93{letter-spacing:-0.384000pt;}
.ls4b{letter-spacing:-0.355200pt;}
.ls45{letter-spacing:-0.336000pt;}
.ls5e{letter-spacing:-0.296000pt;}
.lsda{letter-spacing:-0.288000pt;}
.ls22{letter-spacing:-0.240000pt;}
.ls12{letter-spacing:-0.236800pt;}
.lsad{letter-spacing:-0.217653pt;}
.ls76{letter-spacing:-0.192000pt;}
.ls64{letter-spacing:-0.186560pt;}
.ls49{letter-spacing:-0.178192pt;}
.ls86{letter-spacing:-0.172568pt;}
.ls94{letter-spacing:-0.144480pt;}
.lsc3{letter-spacing:-0.124373pt;}
.ls120{letter-spacing:-0.120400pt;}
.ls32{letter-spacing:-0.118400pt;}
.ls75{letter-spacing:-0.096000pt;}
.ls8b{letter-spacing:-0.093591pt;}
.ls10{letter-spacing:-0.059792pt;}
.ls80{letter-spacing:-0.048480pt;}
.lsb{letter-spacing:0.000000pt;}
.ls92{letter-spacing:0.034859pt;}
.ls8c{letter-spacing:0.048480pt;}
.ls8{letter-spacing:0.059792pt;}
.ls39{letter-spacing:0.096000pt;}
.ls5f{letter-spacing:0.103886pt;}
.ls50{letter-spacing:0.118400pt;}
.ls1d{letter-spacing:0.144480pt;}
.ls19{letter-spacing:0.155467pt;}
.ls6{letter-spacing:0.178192pt;}
.ls68{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.222219pt;}
.ls42{letter-spacing:0.236800pt;}
.ls2{letter-spacing:0.240000pt;}
.ls10b{letter-spacing:0.241595pt;}
.lsbb{letter-spacing:0.248747pt;}
.ls5{letter-spacing:0.266485pt;}
.ls118{letter-spacing:0.276109pt;}
.ls11b{letter-spacing:0.279840pt;}
.ls27{letter-spacing:0.288000pt;}
.ls2f{letter-spacing:0.296000pt;}
.lsa0{letter-spacing:0.310622pt;}
.lsc7{letter-spacing:0.336000pt;}
.ls74{letter-spacing:0.342027pt;}
.ls36{letter-spacing:0.355200pt;}
.lsd2{letter-spacing:0.372809pt;}
.lsc4{letter-spacing:0.384000pt;}
.ls79{letter-spacing:0.399600pt;}
.lsbc{letter-spacing:0.404213pt;}
.lsaa{letter-spacing:0.413818pt;}
.lsd{letter-spacing:0.414400pt;}
.ls7b{letter-spacing:0.416533pt;}
.ls69{letter-spacing:0.432000pt;}
.ls119{letter-spacing:0.435618pt;}
.ls9f{letter-spacing:0.448677pt;}
.lsdc{letter-spacing:0.465013pt;}
.ls54{letter-spacing:0.473600pt;}
.ls44{letter-spacing:0.479520pt;}
.ls65{letter-spacing:0.497804pt;}
.ls1a{letter-spacing:0.528000pt;}
.lsae{letter-spacing:0.528587pt;}
.ls58{letter-spacing:0.532800pt;}
.lsac{letter-spacing:0.552563pt;}
.lsf4{letter-spacing:0.590773pt;}
.ls33{letter-spacing:0.591409pt;}
.lsa7{letter-spacing:0.600000pt;}
.lsba{letter-spacing:0.624000pt;}
.ls9{letter-spacing:0.651201pt;}
.ls10d{letter-spacing:0.655758pt;}
.ls47{letter-spacing:0.672480pt;}
.lsfe{letter-spacing:0.684053pt;}
.lsb6{letter-spacing:0.690272pt;}
.ls17{letter-spacing:0.709809pt;}
.ls28{letter-spacing:0.720000pt;}
.lsd3{letter-spacing:0.746240pt;}
.lsd0{letter-spacing:0.759299pt;}
.lsf0{letter-spacing:0.768480pt;}
.ls4d{letter-spacing:0.769601pt;}
.ls10e{letter-spacing:0.777022pt;}
.ls124{letter-spacing:0.800000pt;}
.ls7f{letter-spacing:0.816000pt;}
.ls9b{letter-spacing:0.828326pt;}
.ls14{letter-spacing:0.829393pt;}
.lsc5{letter-spacing:0.839209pt;}
.ls71{letter-spacing:0.862495pt;}
.lsc6{letter-spacing:0.864480pt;}
.ls77{letter-spacing:0.870613pt;}
.ls11{letter-spacing:0.888001pt;}
.lsfc{letter-spacing:0.897354pt;}
.lsa1{letter-spacing:0.902018pt;}
.lsa3{letter-spacing:0.912000pt;}
.ls3c{letter-spacing:0.940715pt;}
.ls103{letter-spacing:0.947201pt;}
.ls2e{letter-spacing:0.947793pt;}
.ls1{letter-spacing:0.957511pt;}
.ls1e{letter-spacing:0.960000pt;}
.ls116{letter-spacing:0.966381pt;}
.ls63{letter-spacing:1.001240pt;}
.ls30{letter-spacing:1.006401pt;}
.ls3{letter-spacing:1.008000pt;}
.ls5a{letter-spacing:1.040449pt;}
.lscb{letter-spacing:1.056000pt;}
.ls31{letter-spacing:1.066193pt;}
.ls7c{letter-spacing:1.070267pt;}
.ls11a{letter-spacing:1.088267pt;}
.lsd1{letter-spacing:1.103520pt;}
.ls0{letter-spacing:1.122017pt;}
.lsfb{letter-spacing:1.124801pt;}
.ls2c{letter-spacing:1.145202pt;}
.ls38{letter-spacing:1.152000pt;}
.lsf8{letter-spacing:1.167040pt;}
.ls117{letter-spacing:1.173462pt;}
.ls10c{letter-spacing:1.184001pt;}
.lsb9{letter-spacing:1.199520pt;}
.ls59{letter-spacing:1.243201pt;}
.ls78{letter-spacing:1.248000pt;}
.lsc9{letter-spacing:1.295520pt;}
.ls4c{letter-spacing:1.302401pt;}
.lse1{letter-spacing:1.313600pt;}
.ls48{letter-spacing:1.323383pt;}
.lse9{letter-spacing:1.344000pt;}
.lsc2{letter-spacing:1.346030pt;}
.ls73{letter-spacing:1.361009pt;}
.lsa2{letter-spacing:1.392480pt;}
.ls16{letter-spacing:1.420801pt;}
.lsd6{letter-spacing:1.440000pt;}
.lse4{letter-spacing:1.479409pt;}
.lsb2{letter-spacing:1.480000pt;}
.ls46{letter-spacing:1.488480pt;}
.ls110{letter-spacing:1.536000pt;}
.ls2d{letter-spacing:1.539201pt;}
.lsd8{letter-spacing:1.584000pt;}
.ls98{letter-spacing:1.588213pt;}
.ls4a{letter-spacing:1.597809pt;}
.lsbd{letter-spacing:1.629280pt;}
.lsed{letter-spacing:1.632000pt;}
.lsa4{letter-spacing:1.657601pt;}
.ls2a{letter-spacing:1.689902pt;}
.ls20{letter-spacing:1.776000pt;}
.ls6d{letter-spacing:1.776002pt;}
.lse5{letter-spacing:1.835794pt;}
.ls1f{letter-spacing:1.872000pt;}
.ls8a{letter-spacing:1.894402pt;}
.ls2b{letter-spacing:1.926562pt;}
.ls121{letter-spacing:1.953602pt;}
.ls26{letter-spacing:2.016480pt;}
.lsec{letter-spacing:2.112480pt;}
.ls7e{letter-spacing:2.114036pt;}
.ls123{letter-spacing:2.131202pt;}
.lsb5{letter-spacing:2.190402pt;}
.ls125{letter-spacing:2.199600pt;}
.ls9a{letter-spacing:2.249010pt;}
.ls60{letter-spacing:2.367410pt;}
.ls105{letter-spacing:2.400000pt;}
.ls1c{letter-spacing:2.543520pt;}
.ls83{letter-spacing:2.784000pt;}
.ls107{letter-spacing:2.880000pt;}
.ls108{letter-spacing:2.956799pt;}
.lseb{letter-spacing:3.024000pt;}
.ls106{letter-spacing:3.335520pt;}
.lsc8{letter-spacing:3.648000pt;}
.lsdf{letter-spacing:3.728053pt;}
.lsd4{letter-spacing:4.057600pt;}
.ls122{letter-spacing:4.084804pt;}
.ls11c{letter-spacing:4.374933pt;}
.ls11d{letter-spacing:4.375040pt;}
.lsc1{letter-spacing:4.499204pt;}
.lsbe{letter-spacing:4.515773pt;}
.lsf7{letter-spacing:4.846400pt;}
.lsa9{letter-spacing:4.895467pt;}
.lsce{letter-spacing:4.926987pt;}
.ls109{letter-spacing:5.231520pt;}
.lsde{letter-spacing:5.302933pt;}
.lscc{letter-spacing:5.807467pt;}
.lsfa{letter-spacing:6.394667pt;}
.lsc0{letter-spacing:6.562667pt;}
.lsdb{letter-spacing:6.994667pt;}
.lse2{letter-spacing:7.088000pt;}
.ls62{letter-spacing:7.104006pt;}
.ls115{letter-spacing:7.269867pt;}
.lsb4{letter-spacing:7.296427pt;}
.ls7a{letter-spacing:7.362133pt;}
.lsdd{letter-spacing:7.558400pt;}
.ls113{letter-spacing:7.601067pt;}
.ls8e{letter-spacing:7.840533pt;}
.lsf9{letter-spacing:7.948853pt;}
.lse0{letter-spacing:8.122667pt;}
.ls10a{letter-spacing:8.229333pt;}
.ls5b{letter-spacing:8.632907pt;}
.lsbf{letter-spacing:9.115253pt;}
.ls97{letter-spacing:9.131253pt;}
.lsa8{letter-spacing:9.184053pt;}
.lscd{letter-spacing:9.296000pt;}
.ls112{letter-spacing:9.843200pt;}
.ls6a{letter-spacing:9.907733pt;}
.ls96{letter-spacing:10.219787pt;}
.lsb3{letter-spacing:10.468258pt;}
.ls114{letter-spacing:10.526933pt;}
.ls6b{letter-spacing:10.622880pt;}
.ls104{letter-spacing:11.058240pt;}
.ls84{letter-spacing:12.613804pt;}
.ls5c{letter-spacing:13.358782pt;}
.wsb{word-spacing:-23.285166pt;}
.wsc{word-spacing:-22.355565pt;}
.wsbb{word-spacing:-17.049615pt;}
.ws4a{word-spacing:-16.989823pt;}
.ws29{word-spacing:-16.931215pt;}
.ws71{word-spacing:-16.753023pt;}
.ws4b{word-spacing:-16.694415pt;}
.ws11d{word-spacing:-16.458207pt;}
.wse6{word-spacing:-16.398415pt;}
.ws8b{word-spacing:-16.339807pt;}
.ws2{word-spacing:-16.280015pt;}
.ws8c{word-spacing:-16.161615pt;}
.wsa5{word-spacing:-16.102415pt;}
.ws3{word-spacing:-16.101823pt;}
.ws96{word-spacing:-16.043806pt;}
.ws2a{word-spacing:-15.983422pt;}
.ws97{word-spacing:-15.865614pt;}
.ws1{word-spacing:-15.806414pt;}
.ws49{word-spacing:-15.805822pt;}
.wsb4{word-spacing:-15.747214pt;}
.wsba{word-spacing:-15.688014pt;}
.wsa6{word-spacing:-15.510414pt;}
.ws89{word-spacing:-15.392606pt;}
.ws3c{word-spacing:-15.391422pt;}
.ws3b{word-spacing:-15.273614pt;}
.wsa8{word-spacing:-15.214414pt;}
.ws8d{word-spacing:-15.213822pt;}
.ws7e{word-spacing:-15.096014pt;}
.wsfc{word-spacing:-15.024000pt;}
.ws98{word-spacing:-14.977613pt;}
.ws6e{word-spacing:-14.917821pt;}
.wse5{word-spacing:-14.859213pt;}
.ws2b{word-spacing:-14.800013pt;}
.ws84{word-spacing:-14.784000pt;}
.ws11c{word-spacing:-14.681613pt;}
.ws5{word-spacing:-14.543520pt;}
.wsa9{word-spacing:-14.444813pt;}
.ws6f{word-spacing:-14.267213pt;}
.ws110{word-spacing:-14.266621pt;}
.wsd5{word-spacing:-14.208013pt;}
.ws99{word-spacing:-14.090205pt;}
.wsf9{word-spacing:-14.030413pt;}
.ws0{word-spacing:-13.912013pt;}
.ws6{word-spacing:-13.872000pt;}
.ws5e{word-spacing:-13.852812pt;}
.ws7{word-spacing:-13.776000pt;}
.wsfd{word-spacing:-13.632000pt;}
.wsc6{word-spacing:-13.616604pt;}
.wsed{word-spacing:-13.616012pt;}
.wsf0{word-spacing:-13.584000pt;}
.ws123{word-spacing:-13.536000pt;}
.ws133{word-spacing:-13.488480pt;}
.wsad{word-spacing:-13.392480pt;}
.ws124{word-spacing:-13.392000pt;}
.wsdc{word-spacing:-13.295520pt;}
.ws114{word-spacing:-13.152480pt;}
.ws9c{word-spacing:-13.152000pt;}
.wse9{word-spacing:-13.103520pt;}
.wsde{word-spacing:-13.056000pt;}
.wsf1{word-spacing:-13.008000pt;}
.ws9b{word-spacing:-12.960000pt;}
.wsae{word-spacing:-12.912000pt;}
.wsda{word-spacing:-12.864480pt;}
.ws82{word-spacing:-12.816000pt;}
.wsfe{word-spacing:-12.768480pt;}
.wsa{word-spacing:-12.720000pt;}
.ws115{word-spacing:-12.672480pt;}
.wsc9{word-spacing:-12.624000pt;}
.wsff{word-spacing:-12.528000pt;}
.wsd3{word-spacing:-12.432000pt;}
.wsd8{word-spacing:-12.384000pt;}
.wsdb{word-spacing:-12.336000pt;}
.ws9{word-spacing:-12.288000pt;}
.wse8{word-spacing:-12.240000pt;}
.wsd4{word-spacing:-12.192000pt;}
.wsf2{word-spacing:-12.144480pt;}
.ws2c{word-spacing:-12.096000pt;}
.ws117{word-spacing:-12.048000pt;}
.wsdd{word-spacing:-12.000000pt;}
.wsbf{word-spacing:-11.951520pt;}
.wsc8{word-spacing:-11.904000pt;}
.wsc2{word-spacing:-11.880000pt;}
.ws121{word-spacing:-11.855520pt;}
.wsf3{word-spacing:-11.760000pt;}
.wsef{word-spacing:-11.664000pt;}
.ws122{word-spacing:-11.568000pt;}
.wsc1{word-spacing:-11.472000pt;}
.ws134{word-spacing:-11.360000pt;}
.wsf4{word-spacing:-11.231520pt;}
.ws112{word-spacing:-11.184000pt;}
.ws2d{word-spacing:-10.992000pt;}
.ws8{word-spacing:-10.944000pt;}
.ws85{word-spacing:-10.799600pt;}
.ws116{word-spacing:-10.272000pt;}
.ws100{word-spacing:-10.128000pt;}
.wsd6{word-spacing:-9.974430pt;}
.ws81{word-spacing:-9.887369pt;}
.ws12b{word-spacing:-9.801862pt;}
.ws80{word-spacing:-9.698667pt;}
.ws120{word-spacing:-9.696000pt;}
.ws9d{word-spacing:-9.648000pt;}
.ws60{word-spacing:-9.629640pt;}
.ws12a{word-spacing:-9.594781pt;}
.ws111{word-spacing:-9.525754pt;}
.ws70{word-spacing:-9.490895pt;}
.wsa7{word-spacing:-9.456726pt;}
.wse7{word-spacing:-9.387699pt;}
.wsc7{word-spacing:-9.318672pt;}
.ws11e{word-spacing:-9.284158pt;}
.wsbd{word-spacing:-9.180963pt;}
.wsaa{word-spacing:-9.077077pt;}
.wsbc{word-spacing:-9.042218pt;}
.ws12c{word-spacing:-8.904509pt;}
.ws12e{word-spacing:-8.861600pt;}
.ws5f{word-spacing:-8.732286pt;}
.wsac{word-spacing:-8.675351pt;}
.ws9a{word-spacing:-8.663259pt;}
.ws72{word-spacing:-8.643947pt;}
.ws3d{word-spacing:-8.628400pt;}
.wsd9{word-spacing:-8.612542pt;}
.ws11f{word-spacing:-8.550356pt;}
.wseb{word-spacing:-8.519573pt;}
.ws113{word-spacing:-8.457387pt;}
.ws8a{word-spacing:-8.455832pt;}
.ws102{word-spacing:-8.364107pt;}
.wsc0{word-spacing:-8.301920pt;}
.ws62{word-spacing:-8.271138pt;}
.ws12d{word-spacing:-8.208951pt;}
.wscb{word-spacing:-8.177547pt;}
.wsea{word-spacing:-8.146142pt;}
.wsab{word-spacing:-8.083956pt;}
.ws12f{word-spacing:-8.053173pt;}
.wsca{word-spacing:-8.022080pt;}
.ws63{word-spacing:-7.773333pt;}
.ws8e{word-spacing:-7.679742pt;}
.wsd7{word-spacing:-7.648960pt;}
.ws61{word-spacing:-7.586773pt;}
.wsbe{word-spacing:-7.555680pt;}
.ws68{word-spacing:-7.104006pt;}
.wsee{word-spacing:-6.479520pt;}
.ws4{word-spacing:-6.432000pt;}
.ws83{word-spacing:-6.384000pt;}
.ws101{word-spacing:-6.000000pt;}
.wsdf{word-spacing:-4.499204pt;}
.ws13c{word-spacing:-4.084804pt;}
.wse0{word-spacing:-3.648000pt;}
.ws66{word-spacing:-2.367410pt;}
.wsb0{word-spacing:-2.249010pt;}
.ws141{word-spacing:-2.199600pt;}
.wscc{word-spacing:-2.190402pt;}
.ws13e{word-spacing:-2.131202pt;}
.ws10a{word-spacing:-2.112480pt;}
.ws25{word-spacing:-2.016480pt;}
.ws139{word-spacing:-2.012802pt;}
.wsfb{word-spacing:-1.894994pt;}
.ws93{word-spacing:-1.894402pt;}
.ws7d{word-spacing:-1.872000pt;}
.ws13d{word-spacing:-1.835794pt;}
.ws74{word-spacing:-1.776002pt;}
.wsb5{word-spacing:-1.716802pt;}
.wsa1{word-spacing:-1.597809pt;}
.ws132{word-spacing:-1.584000pt;}
.ws13b{word-spacing:-1.539201pt;}
.ws130{word-spacing:-1.536000pt;}
.ws13f{word-spacing:-1.520000pt;}
.ws47{word-spacing:-1.488480pt;}
.ws104{word-spacing:-1.479409pt;}
.wsf6{word-spacing:-1.440000pt;}
.ws19{word-spacing:-1.420801pt;}
.ws108{word-spacing:-1.344000pt;}
.ws4f{word-spacing:-1.302401pt;}
.ws135{word-spacing:-1.295520pt;}
.ws7c{word-spacing:-1.248000pt;}
.ws5d{word-spacing:-1.243201pt;}
.wsd1{word-spacing:-1.199520pt;}
.ws126{word-spacing:-1.184001pt;}
.ws39{word-spacing:-1.152000pt;}
.ws13a{word-spacing:-1.125393pt;}
.ws118{word-spacing:-1.124801pt;}
.ws32{word-spacing:-1.066193pt;}
.ws1f{word-spacing:-1.008000pt;}
.wsfa{word-spacing:-1.006993pt;}
.ws31{word-spacing:-1.006401pt;}
.ws20{word-spacing:-0.960000pt;}
.ws2e{word-spacing:-0.947793pt;}
.ws69{word-spacing:-0.888001pt;}
.wse1{word-spacing:-0.864480pt;}
.ws140{word-spacing:-0.840000pt;}
.ws17{word-spacing:-0.829393pt;}
.ws50{word-spacing:-0.769601pt;}
.wsa4{word-spacing:-0.720000pt;}
.ws57{word-spacing:-0.709809pt;}
.ws48{word-spacing:-0.672480pt;}
.wse{word-spacing:-0.651201pt;}
.ws131{word-spacing:-0.624000pt;}
.wsb9{word-spacing:-0.600000pt;}
.ws34{word-spacing:-0.591409pt;}
.ws5c{word-spacing:-0.532800pt;}
.ws1c{word-spacing:-0.528000pt;}
.ws45{word-spacing:-0.479520pt;}
.ws58{word-spacing:-0.473600pt;}
.ws7f{word-spacing:-0.439600pt;}
.ws6d{word-spacing:-0.432000pt;}
.ws30{word-spacing:-0.414400pt;}
.wsb8{word-spacing:-0.399600pt;}
.wse4{word-spacing:-0.384000pt;}
.ws37{word-spacing:-0.355200pt;}
.ws79{word-spacing:-0.342027pt;}
.wse2{word-spacing:-0.336000pt;}
.ws2f{word-spacing:-0.296000pt;}
.wscf{word-spacing:-0.288000pt;}
.ws26{word-spacing:-0.266485pt;}
.ws125{word-spacing:-0.241595pt;}
.ws1e{word-spacing:-0.240000pt;}
.ws43{word-spacing:-0.236800pt;}
.ws6c{word-spacing:-0.192000pt;}
.ws28{word-spacing:-0.178192pt;}
.ws1b{word-spacing:-0.155467pt;}
.ws1d{word-spacing:-0.144480pt;}
.ws53{word-spacing:-0.118400pt;}
.wsd0{word-spacing:-0.096000pt;}
.wsd{word-spacing:-0.059792pt;}
.ws94{word-spacing:-0.048480pt;}
.ws10{word-spacing:0.000000pt;}
.ws87{word-spacing:0.048480pt;}
.ws14{word-spacing:0.059792pt;}
.ws7a{word-spacing:0.096000pt;}
.ws33{word-spacing:0.118400pt;}
.ws138{word-spacing:0.120400pt;}
.wsa3{word-spacing:0.144480pt;}
.ws4d{word-spacing:0.178192pt;}
.ws7b{word-spacing:0.192000pt;}
.ws15{word-spacing:0.236800pt;}
.ws21{word-spacing:0.240000pt;}
.wsf8{word-spacing:0.288000pt;}
.ws65{word-spacing:0.296000pt;}
.ws46{word-spacing:0.336000pt;}
.ws4c{word-spacing:0.355200pt;}
.wsa2{word-spacing:0.384000pt;}
.ws54{word-spacing:0.414400pt;}
.ws6a{word-spacing:0.432000pt;}
.ws18{word-spacing:0.473600pt;}
.ws22{word-spacing:0.479520pt;}
.ws127{word-spacing:0.528000pt;}
.ws11{word-spacing:0.532800pt;}
.ws11a{word-spacing:0.575520pt;}
.ws78{word-spacing:0.591409pt;}
.ws106{word-spacing:0.624000pt;}
.ws3f{word-spacing:0.651201pt;}
.ws10f{word-spacing:0.672480pt;}
.ws52{word-spacing:0.709809pt;}
.wsc4{word-spacing:0.768480pt;}
.ws105{word-spacing:0.769601pt;}
.ws64{word-spacing:0.829393pt;}
.wsf7{word-spacing:0.864480pt;}
.ws13{word-spacing:0.888001pt;}
.ws136{word-spacing:0.912000pt;}
.ws1a{word-spacing:0.947793pt;}
.wscd{word-spacing:1.006401pt;}
.wsd2{word-spacing:1.008000pt;}
.ws36{word-spacing:1.066193pt;}
.ws88{word-spacing:1.103520pt;}
.ws9e{word-spacing:1.124801pt;}
.ws119{word-spacing:1.152000pt;}
.ws8f{word-spacing:1.184001pt;}
.ws128{word-spacing:1.199520pt;}
.ws5a{word-spacing:1.243201pt;}
.wsc5{word-spacing:1.248000pt;}
.ws16{word-spacing:1.302401pt;}
.wsec{word-spacing:1.361009pt;}
.ws55{word-spacing:1.420801pt;}
.wsb6{word-spacing:1.479409pt;}
.ws44{word-spacing:1.488480pt;}
.wsb7{word-spacing:1.539201pt;}
.wsb3{word-spacing:1.597809pt;}
.ws90{word-spacing:1.657601pt;}
.ws109{word-spacing:1.680000pt;}
.ws77{word-spacing:1.717394pt;}
.ws86{word-spacing:1.776002pt;}
.wsce{word-spacing:1.835794pt;}
.ws75{word-spacing:1.894402pt;}
.ws3a{word-spacing:1.919520pt;}
.ws76{word-spacing:1.953602pt;}
.ws6b{word-spacing:1.968000pt;}
.ws92{word-spacing:2.012802pt;}
.ws4e{word-spacing:2.072002pt;}
.ws5b{word-spacing:2.131202pt;}
.ws103{word-spacing:2.190402pt;}
.ws11b{word-spacing:2.208480pt;}
.wsc3{word-spacing:2.249010pt;}
.ws95{word-spacing:2.304000pt;}
.ws12{word-spacing:2.308802pt;}
.ws35{word-spacing:2.367410pt;}
.ws24{word-spacing:2.400000pt;}
.ws67{word-spacing:2.427202pt;}
.ws56{word-spacing:2.486994pt;}
.ws23{word-spacing:2.496000pt;}
.ws107{word-spacing:2.543520pt;}
.ws91{word-spacing:2.545602pt;}
.ws59{word-spacing:2.664002pt;}
.ws9f{word-spacing:2.723794pt;}
.wsa0{word-spacing:2.782403pt;}
.ws10b{word-spacing:2.832480pt;}
.wsaf{word-spacing:2.841603pt;}
.ws10c{word-spacing:2.880000pt;}
.ws41{word-spacing:2.900803pt;}
.ws137{word-spacing:2.928000pt;}
.ws38{word-spacing:2.960003pt;}
.wsb2{word-spacing:3.018611pt;}
.wsf5{word-spacing:3.078403pt;}
.ws3e{word-spacing:3.137011pt;}
.ws40{word-spacing:3.196803pt;}
.ws129{word-spacing:3.216000pt;}
.wsf{word-spacing:3.255411pt;}
.wsb1{word-spacing:3.315203pt;}
.ws51{word-spacing:3.374995pt;}
.ws42{word-spacing:3.552003pt;}
.ws73{word-spacing:3.729603pt;}
.ws10d{word-spacing:3.791520pt;}
.ws10e{word-spacing:4.992000pt;}
.wse3{word-spacing:5.760000pt;}
.ws27{word-spacing:6.198222pt;}
._13{margin-left:-15.516334pt;}
._11{margin-left:-14.076080pt;}
._a{margin-left:-12.003360pt;}
._14{margin-left:-7.559918pt;}
._d{margin-left:-6.395071pt;}
._c{margin-left:-4.823022pt;}
._7{margin-left:-3.388596pt;}
._5{margin-left:-2.456804pt;}
._4{margin-left:-1.474081pt;}
._1{width:1.083361pt;}
._0{width:2.101602pt;}
._6{width:3.238242pt;}
._3{width:4.848484pt;}
._2{width:5.754245pt;}
._e{width:6.673031pt;}
._9{width:7.734393pt;}
._f{width:8.637878pt;}
._15{width:9.743737pt;}
._12{width:11.471253pt;}
._b{width:13.367413pt;}
._10{width:14.642827pt;}
._8{width:16.352373pt;}
._16{width:21.680479pt;}
.fs2{font-size:31.093333pt;}
.fs5{font-size:32.648053pt;}
.fs1{font-size:34.513600pt;}
.fs6{font-size:40.000000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:59.200053pt;}
.fs4{font-size:88.533387pt;}
.y0{bottom:0.000000pt;}
.y9d{bottom:119.840677pt;}
.y22{bottom:119.840699pt;}
.y1{bottom:119.840738pt;}
.ycd{bottom:119.840758pt;}
.y53{bottom:119.840760pt;}
.y19f{bottom:119.840780pt;}
.y1e9{bottom:119.840860pt;}
.yf3{bottom:119.840862pt;}
.yc1{bottom:154.939943pt;}
.y210{bottom:154.944246pt;}
.y1d{bottom:154.948244pt;}
.yf1{bottom:154.948265pt;}
.y9b{bottom:154.952364pt;}
.y19e{bottom:154.959768pt;}
.y145{bottom:154.960543pt;}
.y52{bottom:154.960552pt;}
.ycb{bottom:154.960604pt;}
.y231{bottom:154.960625pt;}
.y221{bottom:154.960634pt;}
.y47{bottom:154.960686pt;}
.y123{bottom:154.960715pt;}
.y1c6{bottom:154.960767pt;}
.y118{bottom:154.960848pt;}
.y134{bottom:158.729545pt;}
.y77{bottom:159.400747pt;}
.yc0{bottom:168.944063pt;}
.y20f{bottom:168.948366pt;}
.y1c{bottom:168.952364pt;}
.yf0{bottom:168.952385pt;}
.y9a{bottom:168.956484pt;}
.y19d{bottom:168.959768pt;}
.y51{bottom:168.960552pt;}
.yca{bottom:168.960604pt;}
.y230{bottom:168.960625pt;}
.y220{bottom:168.960634pt;}
.y18c{bottom:168.960686pt;}
.y122{bottom:168.960715pt;}
.y1c5{bottom:168.960767pt;}
.y117{bottom:168.960848pt;}
.y144{bottom:173.400543pt;}
.y46{bottom:173.400686pt;}
.y1d2{bottom:173.400767pt;}
.y133{bottom:176.062878pt;}
.ybf{bottom:182.948183pt;}
.y20e{bottom:182.952486pt;}
.y1b{bottom:182.956484pt;}
.yef{bottom:182.956505pt;}
.y19c{bottom:182.959768pt;}
.y50{bottom:182.960552pt;}
.yc9{bottom:182.960604pt;}
.y22f{bottom:182.960625pt;}
.y21f{bottom:182.960634pt;}
.y143{bottom:182.960663pt;}
.y18b{bottom:182.960686pt;}
.y121{bottom:182.960715pt;}
.y1c4{bottom:182.960767pt;}
.y45{bottom:182.960806pt;}
.y116{bottom:182.960848pt;}
.y168{bottom:187.400604pt;}
.y132{bottom:193.396211pt;}
.y76{bottom:193.396213pt;}
.y167{bottom:196.948364pt;}
.ybe{bottom:196.952303pt;}
.y20d{bottom:196.956606pt;}
.y19b{bottom:196.959768pt;}
.y4f{bottom:196.960552pt;}
.y16e{bottom:196.960604pt;}
.y22e{bottom:196.960625pt;}
.y21e{bottom:196.960634pt;}
.y18a{bottom:196.960686pt;}
.y120{bottom:196.960715pt;}
.y1c3{bottom:196.960767pt;}
.y44{bottom:196.960806pt;}
.y115{bottom:196.960848pt;}
.y1a{bottom:201.400604pt;}
.yee{bottom:201.400625pt;}
.y142{bottom:201.400677pt;}
.y131{bottom:210.729545pt;}
.y75{bottom:210.729547pt;}
.y19{bottom:210.936004pt;}
.y166{bottom:210.952484pt;}
.ybd{bottom:210.956423pt;}
.y4e{bottom:210.960552pt;}
.y16d{bottom:210.960604pt;}
.y22d{bottom:210.960625pt;}
.y21d{bottom:210.960634pt;}
.y189{bottom:210.960686pt;}
.y1c2{bottom:210.960767pt;}
.y114{bottom:210.960848pt;}
.y19a{bottom:215.399782pt;}
.y11f{bottom:215.400715pt;}
.y20c{bottom:215.400726pt;}
.y99{bottom:215.400738pt;}
.y43{bottom:215.400819pt;}
.y1e8{bottom:215.400848pt;}
.yc3{bottom:221.102143pt;}
.y20b{bottom:224.874326pt;}
.y18{bottom:224.940124pt;}
.y165{bottom:224.956604pt;}
.y98{bottom:224.956751pt;}
.y199{bottom:224.959915pt;}
.y4d{bottom:224.960552pt;}
.y16c{bottom:224.960604pt;}
.y22c{bottom:224.960625pt;}
.y21c{bottom:224.960634pt;}
.y188{bottom:224.960686pt;}
.y1c1{bottom:224.960767pt;}
.y113{bottom:224.960848pt;}
.y42{bottom:224.960952pt;}
.y1e7{bottom:224.960968pt;}
.y130{bottom:228.062878pt;}
.y74{bottom:228.062880pt;}
.ybc{bottom:229.400543pt;}
.y11e{bottom:229.400982pt;}
.y20a{bottom:238.878446pt;}
.y17{bottom:238.944244pt;}
.ybb{bottom:238.952423pt;}
.y198{bottom:238.959915pt;}
.y4c{bottom:238.960552pt;}
.y16b{bottom:238.960604pt;}
.y22b{bottom:238.960625pt;}
.y21b{bottom:238.960634pt;}
.y187{bottom:238.960686pt;}
.y1c0{bottom:238.960767pt;}
.y112{bottom:238.960848pt;}
.y41{bottom:238.960952pt;}
.y1e6{bottom:238.960968pt;}
.y164{bottom:243.400738pt;}
.y97{bottom:243.400871pt;}
.y234{bottom:243.779330pt;}
.y141{bottom:245.396130pt;}
.yc8{bottom:245.396191pt;}
.y12f{bottom:245.396211pt;}
.y73{bottom:245.396213pt;}
.yed{bottom:245.425716pt;}
.y235{bottom:247.203818pt;}
.y209{bottom:252.882566pt;}
.y163{bottom:252.936151pt;}
.y16{bottom:252.948364pt;}
.yba{bottom:252.956543pt;}
.y197{bottom:252.959915pt;}
.y4b{bottom:252.960552pt;}
.y16a{bottom:252.960604pt;}
.y22a{bottom:252.960625pt;}
.y21a{bottom:252.960634pt;}
.y186{bottom:252.960686pt;}
.y1bf{bottom:252.960767pt;}
.y111{bottom:252.960848pt;}
.y40{bottom:252.960952pt;}
.y1e5{bottom:252.960968pt;}
.y140{bottom:262.729463pt;}
.yc7{bottom:262.729524pt;}
.y12e{bottom:262.729545pt;}
.y72{bottom:262.729547pt;}
.y11d{bottom:262.729648pt;}
.yec{bottom:262.756680pt;}
.y208{bottom:266.886686pt;}
.y162{bottom:266.940271pt;}
.y15{bottom:266.952484pt;}
.y196{bottom:266.959915pt;}
.y229{bottom:266.960625pt;}
.y219{bottom:266.960634pt;}
.y185{bottom:266.960686pt;}
.y1be{bottom:266.960767pt;}
.y110{bottom:266.960848pt;}
.y3f{bottom:266.960952pt;}
.y1e4{bottom:266.960968pt;}
.y4a{bottom:271.400552pt;}
.yb9{bottom:271.400677pt;}
.y13f{bottom:280.062797pt;}
.yc6{bottom:280.062858pt;}
.y12d{bottom:280.062878pt;}
.y71{bottom:280.062880pt;}
.y11c{bottom:280.062982pt;}
.y96{bottom:280.065229pt;}
.yeb{bottom:280.087644pt;}
.y207{bottom:280.890806pt;}
.y161{bottom:280.944391pt;}
.y14{bottom:280.956604pt;}
.y228{bottom:280.960625pt;}
.y218{bottom:280.960634pt;}
.y184{bottom:280.960686pt;}
.y1bd{bottom:280.960767pt;}
.y1e3{bottom:280.960968pt;}
.y195{bottom:285.399915pt;}
.y49{bottom:285.400819pt;}
.y10f{bottom:285.400848pt;}
.y3e{bottom:285.400952pt;}
.y206{bottom:294.894926pt;}
.y160{bottom:294.948511pt;}
.y194{bottom:294.960062pt;}
.y227{bottom:294.960625pt;}
.y217{bottom:294.960634pt;}
.y183{bottom:294.960686pt;}
.y1bc{bottom:294.960767pt;}
.y1e2{bottom:294.960968pt;}
.y13e{bottom:297.396130pt;}
.yc5{bottom:297.396191pt;}
.y95{bottom:297.396193pt;}
.y12c{bottom:297.396211pt;}
.y70{bottom:297.396213pt;}
.y11b{bottom:297.396315pt;}
.yea{bottom:297.418607pt;}
.y13{bottom:299.400738pt;}
.y205{bottom:308.899046pt;}
.y15f{bottom:308.952631pt;}
.y193{bottom:308.960062pt;}
.y226{bottom:308.960625pt;}
.y182{bottom:308.960686pt;}
.y1bb{bottom:308.960767pt;}
.y1e1{bottom:308.960968pt;}
.y216{bottom:313.400634pt;}
.y13d{bottom:314.729463pt;}
.yc4{bottom:314.729524pt;}
.y12b{bottom:314.729545pt;}
.y6f{bottom:314.729547pt;}
.y11a{bottom:314.729648pt;}
.yb8{bottom:314.731258pt;}
.y94{bottom:314.747761pt;}
.ye9{bottom:314.749571pt;}
.y204{bottom:322.903166pt;}
.y15e{bottom:322.956751pt;}
.y192{bottom:322.960062pt;}
.y225{bottom:322.960625pt;}
.y181{bottom:322.960686pt;}
.y1ba{bottom:322.960767pt;}
.y215{bottom:322.960887pt;}
.y1e0{bottom:322.960968pt;}
.yb7{bottom:332.062222pt;}
.y13c{bottom:332.062797pt;}
.y3d{bottom:332.062819pt;}
.y169{bottom:332.062858pt;}
.y12a{bottom:332.062878pt;}
.y6e{bottom:332.062880pt;}
.y10e{bottom:332.062982pt;}
.y12{bottom:332.067310pt;}
.y93{bottom:332.078725pt;}
.ye8{bottom:332.080535pt;}
.y203{bottom:336.907286pt;}
.y191{bottom:336.960062pt;}
.y224{bottom:336.960625pt;}
.y180{bottom:336.960686pt;}
.y1b9{bottom:336.960767pt;}
.y15d{bottom:336.960871pt;}
.y1df{bottom:336.960968pt;}
.y214{bottom:341.400900pt;}
.y13b{bottom:349.396130pt;}
.y3c{bottom:349.396152pt;}
.y129{bottom:349.396211pt;}
.y6d{bottom:349.396213pt;}
.y10d{bottom:349.396315pt;}
.y11{bottom:349.398273pt;}
.yb6{bottom:349.407837pt;}
.y92{bottom:349.409688pt;}
.ye7{bottom:349.411498pt;}
.y202{bottom:350.911406pt;}
.y190{bottom:350.960062pt;}
.y17f{bottom:350.960686pt;}
.y1b8{bottom:350.960767pt;}
.y1de{bottom:350.960968pt;}
.y213{bottom:355.401034pt;}
.y201{bottom:364.915526pt;}
.y18f{bottom:364.960062pt;}
.y17e{bottom:364.960686pt;}
.y1b7{bottom:364.960767pt;}
.y1dd{bottom:364.960968pt;}
.y10{bottom:366.729237pt;}
.y3b{bottom:366.729486pt;}
.y128{bottom:366.729545pt;}
.y6c{bottom:366.729547pt;}
.y10c{bottom:366.729648pt;}
.yb5{bottom:366.738801pt;}
.y91{bottom:366.740652pt;}
.ye6{bottom:366.742462pt;}
.ycc{bottom:370.096738pt;}
.y200{bottom:378.919646pt;}
.y18e{bottom:378.960062pt;}
.y17d{bottom:378.960686pt;}
.y1b6{bottom:378.960767pt;}
.y1dc{bottom:378.960968pt;}
.y13a{bottom:384.062797pt;}
.y3a{bottom:384.062819pt;}
.y127{bottom:384.062878pt;}
.y6b{bottom:384.062880pt;}
.y10b{bottom:384.062982pt;}
.y15c{bottom:384.069681pt;}
.yb4{bottom:384.069765pt;}
.y90{bottom:384.071615pt;}
.yf{bottom:384.072336pt;}
.ye5{bottom:384.073425pt;}
.y16f{bottom:389.697804pt;}
.y1ff{bottom:392.923766pt;}
.y18d{bottom:392.960062pt;}
.y17c{bottom:392.960686pt;}
.y1d1{bottom:392.960767pt;}
.y1db{bottom:392.960968pt;}
.y39{bottom:401.396152pt;}
.y126{bottom:401.396211pt;}
.y6a{bottom:401.396213pt;}
.y212{bottom:401.396234pt;}
.y10a{bottom:401.396315pt;}
.y15b{bottom:401.400645pt;}
.yb3{bottom:401.400728pt;}
.y8f{bottom:401.402579pt;}
.ye{bottom:401.403300pt;}
.ye4{bottom:401.404389pt;}
.y1fe{bottom:406.927886pt;}
.y17b{bottom:406.960686pt;}
.y1d0{bottom:406.960767pt;}
.y1da{bottom:406.960968pt;}
.y139{bottom:418.729463pt;}
.y38{bottom:418.729486pt;}
.y125{bottom:418.729545pt;}
.y69{bottom:418.729547pt;}
.y1b5{bottom:418.729567pt;}
.y109{bottom:418.729648pt;}
.y15a{bottom:418.731608pt;}
.yb2{bottom:418.731692pt;}
.y8e{bottom:418.733543pt;}
.yd{bottom:418.734264pt;}
.ye3{bottom:418.735353pt;}
.y1fd{bottom:420.932006pt;}
.y17a{bottom:420.960686pt;}
.y1cf{bottom:420.960767pt;}
.y1d9{bottom:420.960968pt;}
.y1fc{bottom:434.936126pt;}
.y179{bottom:434.960686pt;}
.y1ce{bottom:434.960767pt;}
.y1d8{bottom:434.960968pt;}
.y159{bottom:436.062572pt;}
.yb1{bottom:436.062655pt;}
.y138{bottom:436.062797pt;}
.y37{bottom:436.062819pt;}
.y124{bottom:436.062878pt;}
.y68{bottom:436.062880pt;}
.y1b4{bottom:436.062900pt;}
.y108{bottom:436.062982pt;}
.y8d{bottom:436.064506pt;}
.yc{bottom:436.065227pt;}
.ye2{bottom:436.066316pt;}
.y1fb{bottom:448.940246pt;}
.y178{bottom:448.960686pt;}
.y1cd{bottom:448.960767pt;}
.y1d7{bottom:448.960968pt;}
.y8c{bottom:453.395470pt;}
.y137{bottom:453.396130pt;}
.y36{bottom:453.396152pt;}
.y223{bottom:453.396211pt;}
.y67{bottom:453.396213pt;}
.y1b3{bottom:453.396234pt;}
.y107{bottom:453.396315pt;}
.ye1{bottom:453.397280pt;}
.yb{bottom:453.398258pt;}
.y158{bottom:453.398420pt;}
.yb0{bottom:453.400871pt;}
.y1fa{bottom:462.944366pt;}
.y177{bottom:462.960686pt;}
.y1cc{bottom:462.960767pt;}
.y1d6{bottom:462.960968pt;}
.ye0{bottom:470.728243pt;}
.ya{bottom:470.729222pt;}
.y157{bottom:470.729383pt;}
.y136{bottom:470.729463pt;}
.y35{bottom:470.729486pt;}
.y222{bottom:470.729545pt;}
.y66{bottom:470.729547pt;}
.y1b2{bottom:470.729567pt;}
.y106{bottom:470.729648pt;}
.y8b{bottom:470.731317pt;}
.yaf{bottom:470.731835pt;}
.y1f9{bottom:476.948486pt;}
.y176{bottom:476.960686pt;}
.y1cb{bottom:476.960767pt;}
.y1d5{bottom:481.400982pt;}
.y8a{bottom:488.062281pt;}
.y9{bottom:488.062553pt;}
.yae{bottom:488.062798pt;}
.y34{bottom:488.062819pt;}
.y65{bottom:488.062880pt;}
.y1b1{bottom:488.062900pt;}
.y105{bottom:488.062982pt;}
.y156{bottom:488.067599pt;}
.ydf{bottom:488.088511pt;}
.y135{bottom:489.448625pt;}
.y1f8{bottom:490.952606pt;}
.y175{bottom:490.960686pt;}
.y1ca{bottom:490.960767pt;}
.y1d4{bottom:490.961115pt;}
.y1f7{bottom:504.956726pt;}
.y1c9{bottom:504.960767pt;}
.y1d3{bottom:504.961115pt;}
.y33{bottom:505.396152pt;}
.y64{bottom:505.396213pt;}
.y1b0{bottom:505.396234pt;}
.y104{bottom:505.396315pt;}
.y8{bottom:505.398401pt;}
.y155{bottom:505.398562pt;}
.yad{bottom:505.403239pt;}
.y89{bottom:505.415149pt;}
.yde{bottom:505.419475pt;}
.y174{bottom:509.400552pt;}
.y173{bottom:518.960686pt;}
.y7{bottom:522.729365pt;}
.y32{bottom:522.729486pt;}
.y154{bottom:522.729526pt;}
.y63{bottom:522.729547pt;}
.y1af{bottom:522.729567pt;}
.y103{bottom:522.729648pt;}
.yac{bottom:522.734203pt;}
.y88{bottom:522.746112pt;}
.ydd{bottom:522.750438pt;}
.y1c8{bottom:523.400767pt;}
.y1f6{bottom:523.400860pt;}
.y146{bottom:523.751597pt;}
.y233{bottom:526.760611pt;}
.y232{bottom:526.760758pt;}
.y172{bottom:532.960686pt;}
.y31{bottom:540.062819pt;}
.y62{bottom:540.062880pt;}
.y1ae{bottom:540.062900pt;}
.y102{bottom:540.062982pt;}
.y153{bottom:540.064768pt;}
.yab{bottom:540.065166pt;}
.y6{bottom:540.065212pt;}
.y87{bottom:540.077076pt;}
.ydc{bottom:540.081402pt;}
.y171{bottom:546.960686pt;}
.y152{bottom:557.395732pt;}
.y30{bottom:557.396152pt;}
.y5{bottom:557.396176pt;}
.y61{bottom:557.396213pt;}
.y1ad{bottom:557.396234pt;}
.y101{bottom:557.396315pt;}
.yaa{bottom:557.398187pt;}
.y86{bottom:557.408040pt;}
.ydb{bottom:557.412366pt;}
.y170{bottom:565.400686pt;}
.y151{bottom:574.729063pt;}
.ya9{bottom:574.729150pt;}
.y2f{bottom:574.729486pt;}
.y60{bottom:574.729547pt;}
.y1ac{bottom:574.729567pt;}
.y100{bottom:574.729648pt;}
.y4{bottom:574.733651pt;}
.y1f5{bottom:574.736613pt;}
.y85{bottom:574.739003pt;}
.yda{bottom:574.743329pt;}
.y2e{bottom:592.062819pt;}
.y5f{bottom:592.062880pt;}
.y1ab{bottom:592.062900pt;}
.yff{bottom:592.062982pt;}
.y3{bottom:592.064615pt;}
.y150{bottom:592.064911pt;}
.y1f4{bottom:592.067576pt;}
.y84{bottom:592.069967pt;}
.yd9{bottom:592.074293pt;}
.ya8{bottom:592.087346pt;}
.y14f{bottom:609.395875pt;}
.y2d{bottom:609.396152pt;}
.y5e{bottom:609.396213pt;}
.y1aa{bottom:609.396234pt;}
.yfe{bottom:609.396315pt;}
.y1f3{bottom:609.398540pt;}
.y83{bottom:609.400930pt;}
.yd8{bottom:609.405256pt;}
.ya7{bottom:609.418310pt;}
.y2{bottom:626.726246pt;}
.y14e{bottom:626.729206pt;}
.y2c{bottom:626.729486pt;}
.y1f2{bottom:626.729504pt;}
.y5d{bottom:626.729547pt;}
.y1a9{bottom:626.729567pt;}
.yfd{bottom:626.729648pt;}
.y82{bottom:626.731894pt;}
.yd7{bottom:626.736220pt;}
.ya6{bottom:626.749273pt;}
.y81{bottom:644.062568pt;}
.y2b{bottom:644.062819pt;}
.y5c{bottom:644.062880pt;}
.y1a8{bottom:644.062900pt;}
.yfc{bottom:644.062982pt;}
.y1f1{bottom:644.065351pt;}
.yd6{bottom:644.067184pt;}
.y14d{bottom:644.072306pt;}
.ya5{bottom:644.080237pt;}
.y2a{bottom:661.396152pt;}
.y5b{bottom:661.396213pt;}
.y1a7{bottom:661.396234pt;}
.yfb{bottom:661.396315pt;}
.yd5{bottom:661.398147pt;}
.y14c{bottom:661.403269pt;}
.y80{bottom:661.403300pt;}
.ya4{bottom:661.411200pt;}
.y21{bottom:664.857138pt;}
.yd4{bottom:678.729111pt;}
.y29{bottom:678.729486pt;}
.y5a{bottom:678.729547pt;}
.y1a6{bottom:678.729567pt;}
.yfa{bottom:678.729648pt;}
.y14b{bottom:678.734233pt;}
.y7f{bottom:678.734264pt;}
.y1f0{bottom:678.747527pt;}
.y28{bottom:696.062819pt;}
.y59{bottom:696.062880pt;}
.y1a5{bottom:696.062900pt;}
.yf9{bottom:696.062982pt;}
.y14a{bottom:696.065197pt;}
.y7e{bottom:696.065227pt;}
.ya3{bottom:696.072832pt;}
.yd3{bottom:696.074726pt;}
.y1ef{bottom:696.078491pt;}
.y20{bottom:697.328708pt;}
.y27{bottom:713.396152pt;}
.y149{bottom:713.396160pt;}
.y58{bottom:713.396213pt;}
.y1a4{bottom:713.396234pt;}
.yf8{bottom:713.396315pt;}
.y7d{bottom:713.398528pt;}
.yd2{bottom:713.405690pt;}
.y1ee{bottom:713.409454pt;}
.y1f{bottom:721.985256pt;}
.y26{bottom:730.729486pt;}
.y7c{bottom:730.729492pt;}
.y57{bottom:730.729547pt;}
.y1a3{bottom:730.729567pt;}
.yf7{bottom:730.729648pt;}
.y148{bottom:730.732008pt;}
.ya2{bottom:730.734463pt;}
.yd1{bottom:730.736654pt;}
.y1ed{bottom:730.740418pt;}
.y1e{bottom:746.641804pt;}
.y25{bottom:748.062819pt;}
.y56{bottom:748.062880pt;}
.y1a2{bottom:748.062900pt;}
.y147{bottom:748.062972pt;}
.yf6{bottom:748.062982pt;}
.ya1{bottom:748.065427pt;}
.yd0{bottom:748.067617pt;}
.y7b{bottom:748.071260pt;}
.y1ec{bottom:748.071382pt;}
.y24{bottom:765.396152pt;}
.y55{bottom:765.396213pt;}
.y1a1{bottom:765.396234pt;}
.yf5{bottom:765.396315pt;}
.ya0{bottom:765.396390pt;}
.ycf{bottom:765.398581pt;}
.y7a{bottom:765.402223pt;}
.y1eb{bottom:765.402345pt;}
.y23{bottom:782.729486pt;}
.y54{bottom:782.729547pt;}
.y1a0{bottom:782.729567pt;}
.yf4{bottom:782.729648pt;}
.y9f{bottom:782.729722pt;}
.y9e{bottom:782.733126pt;}
.y79{bottom:782.733187pt;}
.yce{bottom:782.733207pt;}
.y1ea{bottom:782.733309pt;}
.yc2{bottom:820.261477pt;}
.y9c{bottom:820.261538pt;}
.yf2{bottom:820.261558pt;}
.y48{bottom:820.261619pt;}
.y211{bottom:820.261660pt;}
.y78{bottom:820.261680pt;}
.y1c7{bottom:820.261700pt;}
.y119{bottom:820.261782pt;}
.h4{height:25.434347pt;}
.h9{height:32.720000pt;}
.hb{height:38.976000pt;}
.h5{height:39.264000pt;}
.h8{height:42.703868pt;}
.ha{height:48.418001pt;}
.h3{height:48.425644pt;}
.h7{height:48.426800pt;}
.h2{height:51.504046pt;}
.h6{height:72.420310pt;}
.h0{height:907.086747pt;}
.h1{height:907.333333pt;}
.w1{width:612.000000pt;}
.w0{width:612.282747pt;}
.w2{width:612.284080pt;}
.x0{left:0.000000pt;}
.x1c{left:41.175956pt;}
.x1d{left:51.842622pt;}
.x1e{left:71.816062pt;}
.x3{left:72.750722pt;}
.xd{left:73.700777pt;}
.x20{left:94.488212pt;}
.x15{left:96.378153pt;}
.x4{left:97.700858pt;}
.xf{left:98.645590pt;}
.x1f{left:105.821704pt;}
.x5{left:106.759418pt;}
.xe{left:107.716524pt;}
.x1b{left:151.181142pt;}
.xb{left:152.125926pt;}
.x12{left:153.070900pt;}
.x6{left:156.298072pt;}
.x8{left:174.626752pt;}
.x18{left:175.747926pt;}
.xc{left:177.070860pt;}
.x14{left:178.015700pt;}
.x10{left:184.583857pt;}
.xa{left:186.141660pt;}
.x13{left:187.086620pt;}
.x2{left:196.538033pt;}
.x7{left:222.078157pt;}
.x17{left:229.231546pt;}
.x21{left:252.919486pt;}
.x1{left:253.917685pt;}
.x11{left:331.562114pt;}
.x9{left:332.768860pt;}
.x16{left:538.582608pt;}
.x22{left:546.267812pt;}
.x23{left:556.934479pt;}
.x19{left:567.601145pt;}
.x1a{left:578.267812pt;}
}




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