
    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_6ca0263a0ce60933c6cb79b5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;font-style:normal;font-weight: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_94bc97c1701ebb74e38f0b09.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.904000;font-style:normal;font-weight: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_a78d038a5b4515747062e00f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.898000;font-style:normal;font-weight: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_3e191e48608791aa63cedeab.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_810f80b9a6e65e56a1ffb1fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.898000;font-style:normal;font-weight: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_d1f0b14e1f9fd9be2b3d9609.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.664000;font-style:normal;font-weight: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_c9ede09cf003123436d01f60.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1d8d80910bf1cf2a8913bafe.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.969000;font-style:normal;font-weight: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_dfbab30fc48be1910c0ce0b7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.465000;font-style:normal;font-weight: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_a95356f1b07cf2531f1cfa6a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ada9c7bbb86ad5f609894d3b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f3e7f59a777b8c014418b472.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.906000;font-style:normal;font-weight: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_ad0bae96a9cd3c4cc97c05a1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.043000;font-style:normal;font-weight: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_25b126db9daca2453e4cba9e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.699000;font-style:normal;font-weight: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_c7f1477918e9dcf236e3c356.woff2')format("woff");}.fff{font-family:fff;line-height:0.910000;font-style:normal;font-weight: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_5ded21a10309e68214669c5b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.482000;font-style:normal;font-weight: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_7d1217153bd3ff15d174fa20.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.476000;font-style:normal;font-weight: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_d6f7099d62735229c2d12bab.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.927000;font-style:normal;font-weight: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_a005b35ad102550e8cb6bfd9.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.902000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_c793205c20d20624aa5ba658.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_ccc7c95707484cfb81e77e67.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.999000;font-style:normal;font-weight: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_c2c71753d25275b65735007f.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.910000;font-style:normal;font-weight: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_ef310175e9d66e1a517c609e.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_cf0b0be7114c828b2490863a.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_03f579fa9d50c9d23b8a7329.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.906000;font-style:normal;font-weight: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_c98491e20e8df457eae22e38.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.910000;font-style:normal;font-weight: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_6af68e8444de1b5f9d81f70f.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.999000;font-style:normal;font-weight: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_e0f9cf2e8a16d43b1605cbea.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.451000;font-style:normal;font-weight: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_307693b2742734acf793c526.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_ef310175e9d66e1a517c609e.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_d92b7f5701769ec67531d7a5.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.902000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_487671be69107d80ef47a1ba.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.999000;font-style:normal;font-weight: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_e8402ea0558e29505daed5d1.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.910000;font-style:normal;font-weight: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_e0f9cf2e8a16d43b1605cbea.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.451000;font-style:normal;font-weight: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_cf0b0be7114c828b2490863a.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_ef310175e9d66e1a517c609e.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_a005b35ad102550e8cb6bfd9.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.902000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_c793205c20d20624aa5ba658.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_5ff94c71454093c8c53a3d7a.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.999000;font-style:normal;font-weight: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_254d9750221a7065775a7d07.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.910000;font-style:normal;font-weight: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_734b4fdbfdc81c680efc3e7f.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_cf0b0be7114c828b2490863a.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_03f579fa9d50c9d23b8a7329.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.906000;font-style:normal;font-weight: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_c98491e20e8df457eae22e38.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.910000;font-style:normal;font-weight: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_6af68e8444de1b5f9d81f70f.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.999000;font-style:normal;font-weight: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_e0f9cf2e8a16d43b1605cbea.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.451000;font-style:normal;font-weight: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_307693b2742734acf793c526.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_734b4fdbfdc81c680efc3e7f.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_d92b7f5701769ec67531d7a5.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.902000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_7371eb9f48cf8fc01c2ee2e1.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.999000;font-style:normal;font-weight: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_c98491e20e8df457eae22e38.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.910000;font-style:normal;font-weight: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_e0f9cf2e8a16d43b1605cbea.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.451000;font-style:normal;font-weight: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_cf0b0be7114c828b2490863a.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_734b4fdbfdc81c680efc3e7f.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-16.398013px;}
.v1{vertical-align:-8.713147px;}
.v9{vertical-align:-5.805005px;}
.v6{vertical-align:-1.344001px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:8.754007px;}
.v8{vertical-align:9.883148px;}
.v7{vertical-align:18.654015px;}
.v4{vertical-align:21.099377px;}
.v2{vertical-align:22.212018px;}
.v5{vertical-align:24.440660px;}
.lse{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.003150px;}
.ls43{letter-spacing:0.004590px;}
.ls28{letter-spacing:0.007914px;}
.ls59{letter-spacing:0.017498px;}
.ls5b{letter-spacing:0.018005px;}
.ls48{letter-spacing:0.022541px;}
.ls57{letter-spacing:0.023138px;}
.ls53{letter-spacing:0.024005px;}
.ls68{letter-spacing:0.024605px;}
.ls32{letter-spacing:0.028181px;}
.ls4a{letter-spacing:0.028718px;}
.ls3e{letter-spacing:0.030420px;}
.ls56{letter-spacing:0.033453px;}
.ls39{letter-spacing:0.034544px;}
.ls55{letter-spacing:0.034601px;}
.ls4c{letter-spacing:0.037575px;}
.ls62{letter-spacing:0.038001px;}
.ls5e{letter-spacing:0.039495px;}
.ls64{letter-spacing:0.039831px;}
.ls4e{letter-spacing:0.039861px;}
.ls37{letter-spacing:0.040124px;}
.ls1{letter-spacing:0.040210px;}
.ls66{letter-spacing:0.040241px;}
.ls13{letter-spacing:0.041321px;}
.ls6b{letter-spacing:0.041361px;}
.ls69{letter-spacing:0.042101px;}
.ls41{letter-spacing:0.044411px;}
.ls67{letter-spacing:0.045453px;}
.ls7{letter-spacing:0.045790px;}
.ls49{letter-spacing:0.046124px;}
.ls17{letter-spacing:0.046961px;}
.ls5d{letter-spacing:0.048101px;}
.ls2d{letter-spacing:0.048471px;}
.ls58{letter-spacing:0.051704px;}
.ls15{letter-spacing:0.052541px;}
.ls31{letter-spacing:0.054111px;}
.ls1f{letter-spacing:0.058589px;}
.ls72{letter-spacing:0.059691px;}
.ls75{letter-spacing:0.816171px;}
.ls2a{letter-spacing:2.109752px;}
.ls2b{letter-spacing:2.554546px;}
.ls26{letter-spacing:2.560126px;}
.ls2{letter-spacing:2.902642px;}
.ls3{letter-spacing:2.903033px;}
.ls12{letter-spacing:2.904152px;}
.ls76{letter-spacing:2.909792px;}
.ls38{letter-spacing:2.920626px;}
.ls3a{letter-spacing:2.926206px;}
.ls5c{letter-spacing:2.927456px;}
.ls54{letter-spacing:2.933456px;}
.ls30{letter-spacing:2.937885px;}
.lsc{letter-spacing:2.939941px;}
.ls2c{letter-spacing:2.943525px;}
.ls5{letter-spacing:3.353440px;}
.ls0{letter-spacing:3.359080px;}
.ls9{letter-spacing:3.364660px;}
.ls2f{letter-spacing:5.418825px;}
.lsa{letter-spacing:5.773043px;}
.ls51{letter-spacing:6.374986px;}
.ls6c{letter-spacing:6.380626px;}
.ls45{letter-spacing:6.386266px;}
.ls3d{letter-spacing:8.093031px;}
.ls2e{letter-spacing:8.309750px;}
.ls3c{letter-spacing:10.371919px;}
.ls40{letter-spacing:10.377559px;}
.ls10{letter-spacing:10.657929px;}
.ls1d{letter-spacing:11.343159px;}
.ls1e{letter-spacing:11.401340px;}
.ls6f{letter-spacing:11.547794px;}
.ls44{letter-spacing:11.553434px;}
.ls19{letter-spacing:12.906880px;}
.ls1c{letter-spacing:12.912520px;}
.ls14{letter-spacing:12.953841px;}
.ls16{letter-spacing:12.959421px;}
.ls18{letter-spacing:12.965061px;}
.lsb{letter-spacing:15.577197px;}
.ls3b{letter-spacing:15.835636px;}
.ls3f{letter-spacing:15.841216px;}
.ls1a{letter-spacing:16.144153px;}
.ls24{letter-spacing:16.187964px;}
.ls34{letter-spacing:16.286780px;}
.ls11{letter-spacing:16.291843px;}
.ls60{letter-spacing:17.874125px;}
.ls65{letter-spacing:18.296196px;}
.ls52{letter-spacing:18.299256px;}
.ls5a{letter-spacing:18.304836px;}
.ls50{letter-spacing:18.308196px;}
.ls5f{letter-spacing:18.309876px;}
.ls4f{letter-spacing:18.338395px;}
.ls23{letter-spacing:19.064358px;}
.ls42{letter-spacing:19.645666px;}
.lsd{letter-spacing:21.077833px;}
.ls36{letter-spacing:22.106695px;}
.ls25{letter-spacing:23.260642px;}
.ls73{letter-spacing:23.302210px;}
.ls4{letter-spacing:23.323057px;}
.ls35{letter-spacing:23.859903px;}
.ls4b{letter-spacing:24.033730px;}
.ls33{letter-spacing:24.039370px;}
.ls70{letter-spacing:25.123201px;}
.ls71{letter-spacing:25.205371px;}
.ls21{letter-spacing:27.010773px;}
.ls8{letter-spacing:27.422839px;}
.ls6{letter-spacing:27.453680px;}
.ls6d{letter-spacing:27.571633px;}
.ls22{letter-spacing:29.105006px;}
.ls29{letter-spacing:29.414766px;}
.ls20{letter-spacing:29.881227px;}
.ls46{letter-spacing:31.447216px;}
.ls6a{letter-spacing:32.262026px;}
.ls27{letter-spacing:34.275070px;}
.ls4d{letter-spacing:34.650028px;}
.ls63{letter-spacing:34.662028px;}
.ls61{letter-spacing:37.029672px;}
.ls6e{letter-spacing:37.033926px;}
.ls74{letter-spacing:37.039056px;}
.ls47{letter-spacing:37.046406px;}
.lsf{letter-spacing:129.410624px;}
.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;}
}
.ws9a{word-spacing:-26.150271px;}
.ws26{word-spacing:-20.338906px;}
.wsd1{word-spacing:-17.433494px;}
.ws10{word-spacing:-11.622294px;}
.ws1{word-spacing:-8.682204px;}
.wsf5{word-spacing:-7.808369px;}
.ws122{word-spacing:-4.826435px;}
.wsc8{word-spacing:-4.823645px;}
.wsa7{word-spacing:-4.823238px;}
.ws20{word-spacing:-4.823122px;}
.ws3d{word-spacing:-4.822948px;}
.ws65{word-spacing:-4.393246px;}
.wsd{word-spacing:-4.375595px;}
.ws4{word-spacing:-4.373000px;}
.ws66{word-spacing:-4.341154px;}
.ws68{word-spacing:-3.858462px;}
.wsbb{word-spacing:-1.367055px;}
.wsba{word-spacing:-1.329867px;}
.ws13c{word-spacing:-0.883434px;}
.wsab{word-spacing:-0.871670px;}
.ws1f{word-spacing:-0.755970px;}
.ws16a{word-spacing:-0.557731px;}
.ws16b{word-spacing:-0.553314px;}
.ws139{word-spacing:-0.371913px;}
.wsb9{word-spacing:-0.348610px;}
.ws1e{word-spacing:-0.058111px;}
.ws57{word-spacing:-0.057821px;}
.ws0{word-spacing:0.000000px;}
.ws10a{word-spacing:0.058111px;}
.wsa6{word-spacing:0.174160px;}
.ws4e{word-spacing:0.290905px;}
.ws72{word-spacing:0.348668px;}
.wsad{word-spacing:0.406895px;}
.ws144{word-spacing:0.416264px;}
.ws8b{word-spacing:0.581113px;}
.ws49{word-spacing:0.742255px;}
.ws9f{word-spacing:0.743594px;}
.ws31{word-spacing:0.755447px;}
.ws60{word-spacing:0.871844px;}
.ws47{word-spacing:1.019287px;}
.ws15a{word-spacing:1.022762px;}
.ws48{word-spacing:1.050786px;}
.wsbc{word-spacing:1.219756px;}
.ws62{word-spacing:1.278449px;}
.ws5e{word-spacing:1.378007px;}
.ws11a{word-spacing:1.452783px;}
.wsae{word-spacing:1.569180px;}
.ws98{word-spacing:1.743339px;}
.ws51{word-spacing:1.975959px;}
.ws52{word-spacing:1.976133px;}
.ws3b{word-spacing:2.092007px;}
.ws116{word-spacing:2.266341px;}
.wsea{word-spacing:2.266399px;}
.ws23{word-spacing:2.440210px;}
.ws58{word-spacing:2.550040px;}
.ws39{word-spacing:2.615067px;}
.ws56{word-spacing:2.672713px;}
.ws3f{word-spacing:2.780510px;}
.ws63{word-spacing:2.882422px;}
.ws54{word-spacing:2.919408px;}
.ws21{word-spacing:2.963677px;}
.ws42{word-spacing:3.021788px;}
.wsfa{word-spacing:3.079144px;}
.ws146{word-spacing:3.114682px;}
.wsb5{word-spacing:3.138185px;}
.wsfe{word-spacing:3.254233px;}
.ws25{word-spacing:3.269232px;}
.wsfd{word-spacing:3.269547px;}
.ws41{word-spacing:3.544615px;}
.ws130{word-spacing:3.544790px;}
.ws46{word-spacing:3.602785px;}
.ws4a{word-spacing:3.660257px;}
.wseb{word-spacing:3.660896px;}
.ws13a{word-spacing:3.672784px;}
.ws13b{word-spacing:3.674551px;}
.ws168{word-spacing:3.677201px;}
.ws167{word-spacing:3.686410px;}
.ws14c{word-spacing:3.715694px;}
.ws14d{word-spacing:3.719227px;}
.wsd3{word-spacing:3.835346px;}
.wse0{word-spacing:3.949070px;}
.ws166{word-spacing:4.044419px;}
.ws94{word-spacing:4.123753px;}
.ws95{word-spacing:4.125845px;}
.ws5f{word-spacing:4.242125px;}
.wsc5{word-spacing:4.242300px;}
.ws14a{word-spacing:4.276772px;}
.ws5d{word-spacing:4.300295px;}
.ws12d{word-spacing:4.416343px;}
.ws30{word-spacing:4.474512px;}
.ws15c{word-spacing:4.509543px;}
.ws15d{word-spacing:4.509869px;}
.wsa1{word-spacing:4.640829px;}
.ws13e{word-spacing:4.641836px;}
.ws13f{word-spacing:4.644362px;}
.ws138{word-spacing:4.645245px;}
.ws159{word-spacing:4.645385px;}
.ws14f{word-spacing:4.645756px;}
.wsa0{word-spacing:4.646828px;}
.ws113{word-spacing:4.648406px;}
.ws3a{word-spacing:4.648732px;}
.ws115{word-spacing:4.648825px;}
.wsf1{word-spacing:4.648918px;}
.wsd2{word-spacing:4.649011px;}
.ws16c{word-spacing:4.649104px;}
.ws67{word-spacing:4.649336px;}
.ws149{word-spacing:4.649987px;}
.wsf7{word-spacing:4.700832px;}
.wsf6{word-spacing:4.706104px;}
.wsf8{word-spacing:4.706999px;}
.ws5b{word-spacing:4.707016px;}
.wsf0{word-spacing:4.707140px;}
.ws9e{word-spacing:4.707328px;}
.ws9d{word-spacing:4.707658px;}
.wsee{word-spacing:4.711706px;}
.wsef{word-spacing:4.712082px;}
.ws70{word-spacing:4.823180px;}
.wsb8{word-spacing:4.823238px;}
.wse3{word-spacing:4.879665px;}
.ws163{word-spacing:4.927713px;}
.ws7c{word-spacing:4.935916px;}
.ws7e{word-spacing:4.939984px;}
.ws10c{word-spacing:5.055103px;}
.wsc1{word-spacing:5.109611px;}
.wsc0{word-spacing:5.111877px;}
.ws114{word-spacing:5.219635px;}
.wsf4{word-spacing:5.225635px;}
.wsed{word-spacing:5.225740px;}
.wscf{word-spacing:5.228740px;}
.ws9b{word-spacing:5.228878px;}
.ws9c{word-spacing:5.230054px;}
.wsd0{word-spacing:5.230106px;}
.wsf3{word-spacing:5.234278px;}
.wsec{word-spacing:5.234367px;}
.wsb3{word-spacing:5.346356px;}
.wsa9{word-spacing:5.636797px;}
.ws105{word-spacing:5.694908px;}
.ws7f{word-spacing:5.753019px;}
.ws35{word-spacing:5.758672px;}
.ws69{word-spacing:5.779295px;}
.ws34{word-spacing:5.793119px;}
.wsbd{word-spacing:5.805320px;}
.ws119{word-spacing:5.806307px;}
.ws55{word-spacing:5.806598px;}
.ws103{word-spacing:5.807121px;}
.wsb7{word-spacing:5.807295px;}
.ws129{word-spacing:5.807528px;}
.ws132{word-spacing:5.808167px;}
.ws11d{word-spacing:5.809562px;}
.wsd8{word-spacing:5.809968px;}
.wsc2{word-spacing:5.810259px;}
.ws27{word-spacing:5.810608px;}
.ws2b{word-spacing:5.810724px;}
.wsa8{word-spacing:5.810782px;}
.ws4b{word-spacing:5.810956px;}
.ws11f{word-spacing:5.811073px;}
.ws1c{word-spacing:5.811131px;}
.ws73{word-spacing:5.811247px;}
.ws8c{word-spacing:5.811305px;}
.ws53{word-spacing:5.811479px;}
.wse4{word-spacing:5.811654px;}
.ws124{word-spacing:5.813130px;}
.ws7{word-spacing:5.857608px;}
.ws50{word-spacing:5.869300px;}
.ws29{word-spacing:5.927411px;}
.ws24{word-spacing:5.982152px;}
.ws165{word-spacing:6.041966px;}
.wse6{word-spacing:6.043692px;}
.ws164{word-spacing:6.090129px;}
.ws32{word-spacing:6.101687px;}
.wsc6{word-spacing:6.160089px;}
.wse7{word-spacing:6.217968px;}
.wscc{word-spacing:6.449600px;}
.wsca{word-spacing:6.450297px;}
.ws64{word-spacing:6.536731px;}
.wse{word-spacing:6.537515px;}
.wsc{word-spacing:6.537568px;}
.ws140{word-spacing:6.647952px;}
.ws22{word-spacing:6.682800px;}
.ws40{word-spacing:6.798674px;}
.ws5c{word-spacing:6.799023px;}
.ws1d{word-spacing:6.915304px;}
.ws3{word-spacing:6.969550px;}
.ws2{word-spacing:6.973386px;}
.ws150{word-spacing:7.019680px;}
.ws87{word-spacing:7.031468px;}
.wse9{word-spacing:7.089579px;}
.ws6d{word-spacing:7.322025px;}
.ws44{word-spacing:7.388520px;}
.ws43{word-spacing:7.397993px;}
.ws12{word-spacing:7.496300px;}
.wsdf{word-spacing:7.554354px;}
.ws6c{word-spacing:7.612697px;}
.ws6b{word-spacing:7.728804px;}
.ws6f{word-spacing:7.786915px;}
.ws61{word-spacing:8.077472px;}
.ws15{word-spacing:8.193694px;}
.ws82{word-spacing:8.368028px;}
.wsb{word-spacing:8.368087px;}
.wsde{word-spacing:8.426081px;}
.ws71{word-spacing:8.542246px;}
.ws123{word-spacing:8.716173px;}
.ws10b{word-spacing:9.063446px;}
.ws80{word-spacing:9.185364px;}
.wsaf{word-spacing:9.588540px;}
.ws7b{word-spacing:9.652172px;}
.ws79{word-spacing:9.652230px;}
.ws15b{word-spacing:9.669749px;}
.wsa4{word-spacing:9.937033px;}
.ws133{word-spacing:9.994941px;}
.ws45{word-spacing:9.995145px;}
.wse8{word-spacing:10.111367px;}
.ws155{word-spacing:10.133106px;}
.ws154{word-spacing:10.159106px;}
.wsac{word-spacing:10.169479px;}
.ws8a{word-spacing:10.341023px;}
.ws90{word-spacing:10.343813px;}
.ws9{word-spacing:10.355507px;}
.ws2c{word-spacing:10.460151px;}
.wsc4{word-spacing:10.576258px;}
.ws121{word-spacing:10.634369px;}
.wsd4{word-spacing:10.688819px;}
.ws1a{word-spacing:10.689052px;}
.ws106{word-spacing:10.692597px;}
.ws1b{word-spacing:10.695212px;}
.wsd7{word-spacing:10.750708px;}
.ws12c{word-spacing:11.099260px;}
.ws12a{word-spacing:11.157371px;}
.wsda{word-spacing:11.331705px;}
.ws91{word-spacing:11.447927px;}
.ws83{word-spacing:11.621099px;}
.ws84{word-spacing:11.680314px;}
.wsa{word-spacing:11.819922px;}
.ws96{word-spacing:11.912818px;}
.wsfc{word-spacing:11.913050px;}
.ws97{word-spacing:11.913515px;}
.wsb2{word-spacing:12.029215px;}
.ws4f{word-spacing:12.203607px;}
.ws89{word-spacing:12.552042px;}
.ws81{word-spacing:12.784371px;}
.ws76{word-spacing:12.852039px;}
.ws74{word-spacing:12.857439px;}
.ws14{word-spacing:12.900710px;}
.ws75{word-spacing:12.906270px;}
.ws7a{word-spacing:12.908700px;}
.ws77{word-spacing:12.914100px;}
.ws11b{word-spacing:12.958008px;}
.ws88{word-spacing:12.958240px;}
.ws11c{word-spacing:12.959112px;}
.ws142{word-spacing:12.967784px;}
.ws141{word-spacing:12.970248px;}
.ws17{word-spacing:13.073184px;}
.ws18{word-spacing:13.073824px;}
.ws16{word-spacing:13.083436px;}
.wsc7{word-spacing:13.365542px;}
.wsaa{word-spacing:13.539934px;}
.ws147{word-spacing:13.802730px;}
.ws148{word-spacing:13.804496px;}
.ws6e{word-spacing:14.295498px;}
.ws120{word-spacing:14.643991px;}
.ws14e{word-spacing:14.830048px;}
.ws136{word-spacing:14.920004px;}
.ws137{word-spacing:14.969562px;}
.ws135{word-spacing:14.973467px;}
.ws5a{word-spacing:14.992543px;}
.ws109{word-spacing:14.992891px;}
.ws2d{word-spacing:15.109463px;}
.ws117{word-spacing:15.446442px;}
.wsc3{word-spacing:15.515719px;}
.wse5{word-spacing:15.748164px;}
.ws78{word-spacing:16.131903px;}
.wsbe{word-spacing:16.143147px;}
.wsb4{word-spacing:16.152386px;}
.ws19{word-spacing:16.270759px;}
.ws153{word-spacing:16.503797px;}
.ws125{word-spacing:16.620008px;}
.ws8{word-spacing:16.788369px;}
.ws93{word-spacing:16.793993px;}
.wsb1{word-spacing:16.794168px;}
.ws92{word-spacing:16.795969px;}
.wsc9{word-spacing:16.851988px;}
.ws11{word-spacing:16.964666px;}
.ws156{word-spacing:17.014992px;}
.wsfb{word-spacing:17.026032px;}
.ws102{word-spacing:17.143068px;}
.ws13{word-spacing:17.200830px;}
.ws13d{word-spacing:17.200996px;}
.wsf{word-spacing:17.433276px;}
.ws33{word-spacing:17.433392px;}
.wsa5{word-spacing:17.665837px;}
.wsb6{word-spacing:17.782234px;}
.ws37{word-spacing:17.840404px;}
.ws2a{word-spacing:17.896655px;}
.wsb0{word-spacing:17.897876px;}
.ws28{word-spacing:18.014447px;}
.ws110{word-spacing:18.014621px;}
.wsa2{word-spacing:18.479395px;}
.ws111{word-spacing:19.060160px;}
.ws7d{word-spacing:19.484105px;}
.ws36{word-spacing:19.583452px;}
.ws118{word-spacing:19.693864px;}
.ws12b{word-spacing:19.757844px;}
.ws4d{word-spacing:19.978807px;}
.ws59{word-spacing:19.987558px;}
.ws11e{word-spacing:20.326584px;}
.wsd9{word-spacing:20.570821px;}
.ws15f{word-spacing:20.734173px;}
.ws10f{word-spacing:20.859460px;}
.ws10e{word-spacing:20.867105px;}
.wsff{word-spacing:20.972835px;}
.ws101{word-spacing:20.977601px;}
.wscb{word-spacing:20.984785px;}
.wscd{word-spacing:21.094114px;}
.ws169{word-spacing:21.478046px;}
.ws38{word-spacing:21.501765px;}
.ws151{word-spacing:21.606411px;}
.ws152{word-spacing:21.617653px;}
.wsd5{word-spacing:21.966248px;}
.ws128{word-spacing:22.024592px;}
.ws85{word-spacing:22.140408px;}
.ws86{word-spacing:22.198519px;}
.ws3c{word-spacing:22.547129px;}
.ws14b{word-spacing:23.012282px;}
.wse1{word-spacing:23.070072px;}
.ws6{word-spacing:23.744446px;}
.ws3e{word-spacing:24.115785px;}
.ws5{word-spacing:24.319752px;}
.ws157{word-spacing:24.402541px;}
.ws158{word-spacing:24.403424px;}
.ws104{word-spacing:24.406342px;}
.wsa3{word-spacing:24.639078px;}
.wsf9{word-spacing:24.925102px;}
.ws127{word-spacing:25.047600px;}
.ws126{word-spacing:25.510805px;}
.wsdb{word-spacing:26.150204px;}
.ws143{word-spacing:26.545320px;}
.ws145{word-spacing:27.288868px;}
.ws112{word-spacing:27.602231px;}
.wsdd{word-spacing:27.777030px;}
.ws2f{word-spacing:27.893427px;}
.ws12e{word-spacing:28.241921px;}
.ws160{word-spacing:28.543239px;}
.ws161{word-spacing:28.543425px;}
.ws2e{word-spacing:28.765097px;}
.ws134{word-spacing:28.916454px;}
.ws162{word-spacing:29.334624px;}
.ws12f{word-spacing:30.043139px;}
.wsdc{word-spacing:30.392213px;}
.wse2{word-spacing:30.566373px;}
.ws8f{word-spacing:31.147777px;}
.ws15e{word-spacing:31.752108px;}
.ws108{word-spacing:32.484569px;}
.ws100{word-spacing:35.519797px;}
.wsd6{word-spacing:36.524376px;}
.ws6a{word-spacing:37.650083px;}
.ws8d{word-spacing:38.353230px;}
.ws10d{word-spacing:38.640242px;}
.ws107{word-spacing:38.643612px;}
.ws131{word-spacing:39.283127px;}
.ws99{word-spacing:41.809053px;}
.wsce{word-spacing:45.848224px;}
.wsf2{word-spacing:45.853977px;}
.ws8e{word-spacing:69.970081px;}
.ws4c{word-spacing:111.504755px;}
.wsbf{word-spacing:389.205204px;}
._a{margin-left:-6.450297px;}
._3{margin-left:-5.230293px;}
._0{margin-left:-3.661571px;}
._28{margin-left:-2.580931px;}
._1{margin-left:-1.568702px;}
._b{width:1.877952px;}
._6{width:2.905141px;}
._20{width:5.392799px;}
._15{width:7.066401px;}
._5{width:8.734190px;}
._7{width:10.617456px;}
._1e{width:12.988897px;}
._8{width:16.268725px;}
._10{width:18.188839px;}
._9{width:20.337272px;}
._d{width:22.141454px;}
._2f{width:23.245801px;}
._f{width:24.638490px;}
._2{width:26.150271px;}
._14{width:28.951321px;}
._29{width:31.379641px;}
._c{width:32.542796px;}
._27{width:34.634048px;}
._4{width:35.771599px;}
._1f{width:37.133125px;}
._2e{width:38.634940px;}
._e{width:39.673981px;}
._2d{width:46.226109px;}
._13{width:51.362950px;}
._30{width:52.766025px;}
._17{width:55.909384px;}
._1b{width:62.185030px;}
._2a{width:65.395029px;}
._16{width:66.683557px;}
._23{width:67.961939px;}
._2c{width:72.023599px;}
._21{width:80.211563px;}
._22{width:81.857356px;}
._18{width:82.948450px;}
._2b{width:85.067877px;}
._19{width:90.113834px;}
._25{width:92.872457px;}
._11{width:97.498469px;}
._26{width:109.912292px;}
._24{width:116.407686px;}
._12{width:137.758581px;}
._1a{width:153.722571px;}
._1c{width:185.678725px;}
._1d{width:269.034196px;}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:31.380325px;}
.fs7{font-size:34.866988px;}
.fs5{font-size:40.677813px;}
.fs4{font-size:46.489177px;}
.fs8{font-size:47.070458px;}
.fs2{font-size:52.300542px;}
.fs3{font-size:58.111306px;}
.fs6{font-size:58.329467px;}
.fs1{font-size:69.733856px;}
.fs0{font-size:104.601084px;}
.y0{bottom:0.000000px;}
.y5f{bottom:7.097142px;}
.y143{bottom:7.672596px;}
.y9d{bottom:7.672683px;}
.ydb{bottom:7.673838px;}
.y104{bottom:7.673976px;}
.y15f{bottom:7.675736px;}
.y116{bottom:7.675938px;}
.y5e{bottom:26.783307px;}
.yd4{bottom:26.855853px;}
.y13c{bottom:26.856111px;}
.y99{bottom:26.856198px;}
.y10f{bottom:26.857953px;}
.yfd{bottom:26.858991px;}
.y159{bottom:26.860751px;}
.y14b{bottom:36.487961px;}
.yfe{bottom:36.488999px;}
.y110{bottom:36.642656px;}
.y15a{bottom:36.646849px;}
.y117{bottom:39.195463px;}
.yd5{bottom:44.199167px;}
.y160{bottom:44.421265px;}
.y5d{bottom:46.469473px;}
.ya1{bottom:48.625716px;}
.y9a{bottom:49.309866px;}
.y1{bottom:54.000000px;}
.y9e{bottom:54.471220px;}
.y105{bottom:54.558013px;}
.y151{bottom:54.561475px;}
.y147{bottom:54.649633px;}
.ydf{bottom:54.653876px;}
.y13d{bottom:58.876487px;}
.y111{bottom:61.408126px;}
.y15b{bottom:61.409469px;}
.ya0{bottom:64.131228px;}
.yff{bottom:64.553571px;}
.y14c{bottom:64.555383px;}
.y148{bottom:68.242652px;}
.ye0{bottom:68.243886px;}
.y149{bottom:68.540777px;}
.ye1{bottom:68.542012px;}
.yd6{bottom:72.009189px;}
.y13e{bottom:78.201152px;}
.y9f{bottom:79.971241px;}
.y5c{bottom:82.520280px;}
.y14d{bottom:83.837899px;}
.y100{bottom:83.838937px;}
.y15c{bottom:83.839137px;}
.y112{bottom:83.992594px;}
.y101{bottom:95.180356px;}
.y14e{bottom:95.180728px;}
.y9b{bottom:97.565355px;}
.y13f{bottom:98.065818px;}
.yd7{bottom:99.820562px;}
.y113{bottom:101.816808px;}
.yd2{bottom:113.411984px;}
.y5b{bottom:115.147335px;}
.y34{bottom:115.608781px;}
.y97{bottom:115.886836px;}
.y114{bottom:119.641023px;}
.y10d{bottom:120.678140px;}
.y14a{bottom:120.679640px;}
.ycf{bottom:130.845538px;}
.yd1{bottom:130.846648px;}
.yd0{bottom:131.248836px;}
.y5a{bottom:132.580649px;}
.y33{bottom:133.042095px;}
.y93{bottom:133.319850px;}
.y96{bottom:133.320150px;}
.yd8{bottom:133.668989px;}
.y94{bottom:133.724850px;}
.y95{bottom:133.725150px;}
.y15d{bottom:133.748377px;}
.y140{bottom:134.271197px;}
.y11e{bottom:134.763540px;}
.y10c{bottom:134.764577px;}
.y167{bottom:134.766337px;}
.y102{bottom:140.550292px;}
.y14f{bottom:140.550664px;}
.y9c{bottom:145.819493px;}
.ycd{bottom:148.278852px;}
.yce{bottom:148.682447px;}
.y11d{bottom:149.931552px;}
.y10b{bottom:149.932589px;}
.y157{bottom:149.933052px;}
.y166{bottom:149.935850px;}
.y59{bottom:150.015313px;}
.y32{bottom:150.474059px;}
.y90{bottom:150.753014px;}
.y92{bottom:150.753164px;}
.y91{bottom:151.158164px;}
.y144{bottom:153.738212px;}
.ydc{bottom:153.742455px;}
.y145{bottom:157.173680px;}
.ydd{bottom:157.175122px;}
.y146{bottom:157.471805px;}
.yde{bottom:157.474654px;}
.y118{bottom:162.204559px;}
.y161{bottom:162.205484px;}
.y119{bottom:162.501278px;}
.y162{bottom:162.503610px;}
.y10a{bottom:165.100602px;}
.y165{bottom:165.103862px;}
.y11c{bottom:165.104064px;}
.y156{bottom:165.105564px;}
.ycc{bottom:165.712166px;}
.yd9{bottom:167.042215px;}
.y106{bottom:167.410798px;}
.y152{bottom:167.412668px;}
.y57{bottom:167.448627px;}
.y141{bottom:167.644424px;}
.y107{bottom:167.710331px;}
.y153{bottom:167.710793px;}
.y58{bottom:167.852222px;}
.y31{bottom:167.907373px;}
.y8f{bottom:168.186328px;}
.y109{bottom:180.270114px;}
.y11b{bottom:180.272076px;}
.y164{bottom:180.273374px;}
.y155{bottom:180.273576px;}
.ycb{bottom:183.144130px;}
.y15e{bottom:183.656267px;}
.y56{bottom:184.883291px;}
.y8d{bottom:185.618292px;}
.y8e{bottom:186.021887px;}
.yfc{bottom:186.880680px;}
.y13b{bottom:186.883560px;}
.y30{bottom:189.916590px;}
.y115{bottom:190.936530px;}
.y11a{bottom:195.440088px;}
.y108{bottom:195.441126px;}
.y154{bottom:195.441588px;}
.y163{bottom:195.442886px;}
.y103{bottom:197.264437px;}
.y150{bottom:197.266160px;}
.y185{bottom:200.190353px;}
.yda{bottom:200.413942px;}
.yca{bottom:200.577444px;}
.y142{bottom:201.017650px;}
.y55{bottom:202.315255px;}
.y8c{bottom:203.052956px;}
.y2f{bottom:217.157062px;}
.y184{bottom:217.625017px;}
.yc9{bottom:218.012108px;}
.y54{bottom:219.748569px;}
.y8b{bottom:220.486270px;}
.y2e{bottom:234.590376px;}
.y183{bottom:235.058331px;}
.yc8{bottom:235.446772px;}
.y53{bottom:237.181883px;}
.y8a{bottom:237.919584px;}
.y1c1{bottom:248.536787px;}
.y2d{bottom:252.025040px;}
.y182{bottom:252.490295px;}
.yc7{bottom:252.880086px;}
.y52{bottom:254.615197px;}
.y89{bottom:255.352897px;}
.y1c0{bottom:261.612117px;}
.y2c{bottom:269.458354px;}
.y181{bottom:269.923609px;}
.yc6{bottom:270.313399px;}
.y51{bottom:272.049861px;}
.y88{bottom:272.784861px;}
.y1bf{bottom:274.687448px;}
.y2b{bottom:286.890318px;}
.y180{bottom:287.356923px;}
.y1be{bottom:287.761368px;}
.y50{bottom:289.484525px;}
.y87{bottom:294.796929px;}
.yc4{bottom:297.552521px;}
.yc5{bottom:297.956116px;}
.y1bd{bottom:300.836699px;}
.y2a{bottom:304.323632px;}
.y17f{bottom:304.791587px;}
.y4f{bottom:306.916489px;}
.y1bc{bottom:313.912029px;}
.y29{bottom:321.758296px;}
.y86{bottom:322.036051px;}
.y17e{bottom:322.224901px;}
.y4d{bottom:324.349803px;}
.y4e{bottom:324.753398px;}
.yc2{bottom:324.792993px;}
.yc3{bottom:325.196588px;}
.y1bb{bottom:326.985950px;}
.y28{bottom:339.192960px;}
.y85{bottom:339.469365px;}
.y17d{bottom:339.656865px;}
.y1ba{bottom:340.064085px;}
.y4c{bottom:341.783117px;}
.yc0{bottom:342.226307px;}
.yc1{bottom:342.629902px;}
.y1b9{bottom:353.138006px;}
.y27{bottom:356.626274px;}
.y84{bottom:356.902679px;}
.y17c{bottom:357.091529px;}
.y4b{bottom:359.216431px;}
.ybf{bottom:359.658271px;}
.y1b8{bottom:366.211926px;}
.y26{bottom:374.058237px;}
.y83{bottom:374.335993px;}
.y17b{bottom:374.524843px;}
.y179{bottom:374.525143px;}
.y17a{bottom:374.928438px;}
.y4a{bottom:376.651095px;}
.ybe{bottom:377.091585px;}
.y1b7{bottom:379.288652px;}
.y13a{bottom:386.263852px;}
.yfb{bottom:386.264602px;}
.y25{bottom:391.491551px;}
.y82{bottom:391.770657px;}
.y177{bottom:391.958457px;}
.y178{bottom:392.362052px;}
.y1b6{bottom:392.362572px;}
.y49{bottom:394.083058px;}
.ybd{bottom:394.524899px;}
.y139{bottom:403.697166px;}
.yfa{bottom:403.697916px;}
.y1b5{bottom:405.436493px;}
.y24{bottom:408.924865px;}
.y81{bottom:409.202621px;}
.y175{bottom:409.393121px;}
.y176{bottom:409.795309px;}
.y48{bottom:411.516372px;}
.ybc{bottom:411.959563px;}
.y1b4{bottom:418.513218px;}
.y138{bottom:421.130480px;}
.yf9{bottom:421.132580px;}
.y22{bottom:426.358179px;}
.y80{bottom:426.637285px;}
.y23{bottom:426.763180px;}
.y174{bottom:426.826435px;}
.ybb{bottom:429.392877px;}
.y1b3{bottom:431.587138px;}
.y137{bottom:438.563794px;}
.yf8{bottom:438.564544px;}
.y21{bottom:443.792843px;}
.y7f{bottom:444.070598px;}
.y173{bottom:444.258399px;}
.y171{bottom:444.259149px;}
.y1b2{bottom:444.662469px;}
.y172{bottom:444.663399px;}
.yba{bottom:446.824841px;}
.y47{bottom:451.761405px;}
.y136{bottom:455.997108px;}
.yf7{bottom:455.997858px;}
.y1b1{bottom:457.739194px;}
.y20{bottom:461.224807px;}
.y7e{bottom:461.503912px;}
.y16f{bottom:461.692463px;}
.y170{bottom:462.097463px;}
.yb9{bottom:464.259505px;}
.y1b0{bottom:470.813115px;}
.yf6{bottom:473.431172px;}
.y46{bottom:473.880422px;}
.y135{bottom:478.006326px;}
.y1f{bottom:478.659471px;}
.y7d{bottom:478.937226px;}
.y16e{bottom:479.127127px;}
.yb8{bottom:481.692819px;}
.y1af{bottom:483.888445px;}
.yf5{bottom:490.865836px;}
.y1e{bottom:496.092785px;}
.y7c{bottom:496.369190px;}
.y16d{bottom:496.560440px;}
.y1ae{bottom:496.963776px;}
.yb7{bottom:499.126133px;}
.y45{bottom:500.694144px;}
.y134{bottom:505.246797px;}
.y1ad{bottom:510.037696px;}
.yf4{bottom:512.875053px;}
.y1d{bottom:513.526099px;}
.y7b{bottom:513.802504px;}
.y16c{bottom:513.995104px;}
.yb6{bottom:516.560796px;}
.y133{bottom:522.680111px;}
.y1ac{bottom:523.114422px;}
.y44{bottom:526.552364px;}
.y1c{bottom:530.959413px;}
.y7a{bottom:531.238668px;}
.y16a{bottom:531.427068px;}
.y16b{bottom:531.830663px;}
.yb5{bottom:533.994110px;}
.y1ab{bottom:536.188342px;}
.y132{bottom:540.114775px;}
.yf3{bottom:540.115525px;}
.y42{bottom:543.985678px;}
.y43{bottom:544.390679px;}
.y1b{bottom:548.394077px;}
.y79{bottom:548.671982px;}
.y169{bottom:548.860382px;}
.y1aa{bottom:549.262263px;}
.yb4{bottom:551.426074px;}
.y131{bottom:557.546739px;}
.yf2{bottom:557.547489px;}
.y40{bottom:561.417642px;}
.y41{bottom:561.822643px;}
.y1a9{bottom:562.338988px;}
.y1a{bottom:565.826041px;}
.y78{bottom:566.105296px;}
.yb3{bottom:568.859388px;}
.y130{bottom:574.980053px;}
.yf1{bottom:574.980803px;}
.y1a8{bottom:575.412909px;}
.y3e{bottom:578.852306px;}
.y3f{bottom:579.255901px;}
.y19{bottom:583.259355px;}
.y77{bottom:583.538610px;}
.yb2{bottom:586.292702px;}
.y1a7{bottom:588.489634px;}
.y12f{bottom:592.413367px;}
.yf0{bottom:592.414117px;}
.y168{bottom:595.832020px;}
.y3d{bottom:596.286970px;}
.y18{bottom:600.692669px;}
.y1a6{bottom:601.564964px;}
.yb1{bottom:603.727366px;}
.y12e{bottom:609.848031px;}
.yef{bottom:609.848781px;}
.y76{bottom:610.777732px;}
.y3c{bottom:613.720284px;}
.y1a5{bottom:614.638885px;}
.y17{bottom:618.127333px;}
.yb0{bottom:625.736584px;}
.y12d{bottom:627.281345px;}
.yee{bottom:627.282095px;}
.y1a4{bottom:627.714215px;}
.y3b{bottom:631.153598px;}
.y75{bottom:632.570349px;}
.y16{bottom:635.561997px;}
.y1a3{bottom:640.789546px;}
.y12c{bottom:644.714659px;}
.yed{bottom:644.716759px;}
.y3a{bottom:648.586912px;}
.yaf{bottom:652.977056px;}
.y15{bottom:652.993961px;}
.y1a2{bottom:653.863466px;}
.y74{bottom:654.361617px;}
.y158{bottom:662.032800px;}
.y12b{bottom:662.147973px;}
.yec{bottom:662.148723px;}
.y39{bottom:666.018876px;}
.y1a1{bottom:666.938797px;}
.yae{bottom:670.409020px;}
.y14{bottom:670.427275px;}
.y12a{bottom:679.581287px;}
.yeb{bottom:679.582037px;}
.y1a0{bottom:680.014127px;}
.y73{bottom:681.600738px;}
.y38{bottom:683.453540px;}
.yad{bottom:687.842333px;}
.y13{bottom:687.860588px;}
.y19f{bottom:693.090853px;}
.y127{bottom:697.013701px;}
.y129{bottom:697.014601px;}
.yea{bottom:697.015351px;}
.y128{bottom:697.419601px;}
.y72{bottom:699.035402px;}
.y37{bottom:700.886854px;}
.yac{bottom:705.275647px;}
.y12{bottom:705.293902px;}
.y19e{bottom:706.164773px;}
.y125{bottom:714.447015px;}
.ye9{bottom:714.448665px;}
.y126{bottom:714.852015px;}
.y71{bottom:716.468716px;}
.y36{bottom:718.320168px;}
.y19d{bottom:719.240104px;}
.yab{bottom:722.710311px;}
.y11{bottom:722.727216px;}
.y124{bottom:731.878979px;}
.ye8{bottom:731.881979px;}
.y19c{bottom:732.315434px;}
.y70{bottom:733.900680px;}
.yaa{bottom:740.144975px;}
.y10{bottom:744.737934px;}
.y19b{bottom:745.390765px;}
.y123{bottom:749.315143px;}
.ye7{bottom:749.316643px;}
.y6f{bottom:751.335344px;}
.y35{bottom:754.832147px;}
.ya9{bottom:757.578289px;}
.y19a{bottom:758.464685px;}
.y122{bottom:766.748457px;}
.ye5{bottom:766.749957px;}
.ye6{bottom:767.153551px;}
.y6e{bottom:768.768658px;}
.y199{bottom:771.540015px;}
.ya8{bottom:775.010253px;}
.yf{bottom:776.015809px;}
.y121{bottom:784.181771px;}
.ye4{bottom:784.183271px;}
.y198{bottom:784.615346px;}
.y6d{bottom:786.201972px;}
.ye{bottom:790.543786px;}
.ya7{bottom:792.443567px;}
.y197{bottom:797.690676px;}
.y120{bottom:801.615084px;}
.ye3{bottom:801.616584px;}
.y6c{bottom:803.635286px;}
.yd{bottom:805.070367px;}
.ya6{bottom:809.876881px;}
.y196{bottom:810.764597px;}
.yc{bottom:819.599754px;}
.y6b{bottom:821.068600px;}
.y195{bottom:823.841322px;}
.ya5{bottom:827.311545px;}
.yb{bottom:834.127731px;}
.y194{bottom:836.916653px;}
.y6a{bottom:838.501914px;}
.ya4{bottom:844.746209px;}
.y11f{bottom:848.585222px;}
.ye2{bottom:848.586722px;}
.ya{bottom:848.654312px;}
.y193{bottom:849.990573px;}
.y69{bottom:860.511132px;}
.y192{bottom:863.065904px;}
.y9{bottom:863.182289px;}
.y191{bottom:876.141234px;}
.y8{bottom:877.711675px;}
.y190{bottom:889.215155px;}
.ya3{bottom:891.716347px;}
.y7{bottom:892.238257px;}
.y18f{bottom:902.290485px;}
.y68{bottom:903.257266px;}
.ya2{bottom:904.790267px;}
.y10e{bottom:914.788800px;}
.yd3{bottom:914.792400px;}
.y18e{bottom:915.365815px;}
.y67{bottom:923.345282px;}
.y18d{bottom:928.439736px;}
.y6{bottom:929.240587px;}
.y66{bottom:946.760601px;}
.y18c{bottom:950.014403px;}
.y5{bottom:952.260955px;}
.y65{bottom:962.583813px;}
.y98{bottom:970.995600px;}
.y18b{bottom:974.829073px;}
.y4{bottom:975.279823px;}
.y64{bottom:985.996132px;}
.y18a{bottom:992.262387px;}
.y63{bottom:1001.817845px;}
.y189{bottom:1009.695701px;}
.y3{bottom:1024.145363px;}
.y62{bottom:1025.230988px;}
.y188{bottom:1027.129015px;}
.y61{bottom:1039.760375px;}
.y187{bottom:1044.562329px;}
.y2{bottom:1054.655387px;}
.y186{bottom:1066.573046px;}
.y60{bottom:1066.574396px;}
.hd{height:23.988488px;}
.h1e{height:30.467199px;}
.h25{height:30.471399px;}
.h8{height:31.984554px;}
.h22{height:32.196193px;}
.h18{height:32.384475px;}
.h17{height:34.093135px;}
.h15{height:35.407467px;}
.h1c{height:35.773571px;}
.h9{height:35.982773px;}
.h5{height:36.191975px;}
.h4{height:36.558079px;}
.h16{height:36.871882px;}
.h1d{height:39.225406px;}
.h11{height:39.864356px;}
.h6{height:39.980579px;}
.h7{height:40.968471px;}
.hb{height:41.530580px;}
.he{height:43.583480px;}
.h12{height:43.584080px;}
.h13{height:43.584680px;}
.h23{height:43.587080px;}
.h1a{height:43.587920px;}
.hc{height:46.200505px;}
.h21{height:47.147914px;}
.h1f{height:47.148514px;}
.h3{height:47.976893px;}
.hf{height:48.109444px;}
.h10{height:51.450727px;}
.h19{height:53.034617px;}
.ha{height:59.256720px;}
.h2{height:71.965546px;}
.h14{height:161.782200px;}
.h24{height:217.984320px;}
.h1b{height:217.985760px;}
.h20{height:217.987200px;}
.h26{height:217.988280px;}
.h1{height:1155.240000px;}
.h0{height:1263.000000px;}
.w3{width:339.149520px;}
.w4{width:352.788840px;}
.w2{width:756.896400px;}
.w1{width:892.440000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x3d{left:12.459487px;}
.x2c{left:13.709787px;}
.x2a{left:26.512898px;}
.x3a{left:27.662449px;}
.x40{left:28.854930px;}
.x3b{left:34.382919px;}
.x41{left:35.391185px;}
.x49{left:38.660562px;}
.x45{left:41.101829px;}
.x29{left:44.095312px;}
.x4c{left:45.198433px;}
.x39{left:51.965318px;}
.x7{left:66.145853px;}
.x17{left:67.304520px;}
.x38{left:70.735680px;}
.x43{left:73.821209px;}
.x4b{left:84.898118px;}
.x6{left:87.937120px;}
.x1f{left:89.461422px;}
.x22{left:91.077088px;}
.x20{left:92.730974px;}
.x42{left:96.574454px;}
.x18{left:106.707685px;}
.x3e{left:111.019289px;}
.x19{left:116.474103px;}
.xa{left:119.629555px;}
.x4f{left:123.948332px;}
.x21{left:144.587081px;}
.x2b{left:146.162893px;}
.x3c{left:154.030500px;}
.x5{left:162.580330px;}
.x1{left:167.292134px;}
.x3{left:179.856144px;}
.x24{left:183.974645px;}
.x8{left:192.985504px;}
.x1e{left:203.440663px;}
.x9{left:223.546631px;}
.x2d{left:228.766460px;}
.x4{left:245.865497px;}
.x25{left:249.819677px;}
.x1b{left:258.014756px;}
.x1a{left:263.911171px;}
.x23{left:266.218773px;}
.x2{left:276.969822px;}
.x4e{left:292.052017px;}
.x26{left:322.217140px;}
.x4d{left:327.338543px;}
.x3f{left:339.415694px;}
.x1d{left:344.168810px;}
.x1c{left:350.799281px;}
.x27{left:391.688730px;}
.xc{left:459.241207px;}
.xb{left:462.606370px;}
.x44{left:463.831200px;}
.x52{left:465.051347px;}
.x28{left:470.649600px;}
.x14{left:473.364379px;}
.x46{left:478.219883px;}
.xd{left:481.032475px;}
.x13{left:484.393999px;}
.x53{left:485.868063px;}
.x4a{left:514.992412px;}
.xe{left:525.685103px;}
.x2e{left:550.742263px;}
.x32{left:572.838619px;}
.x50{left:579.411813px;}
.x48{left:587.860915px;}
.x51{left:602.089056px;}
.x47{left:605.226867px;}
.x15{left:606.752623px;}
.x30{left:609.410927px;}
.x33{left:611.464116px;}
.x10{left:622.425825px;}
.x34{left:642.501486px;}
.xf{left:650.143972px;}
.x16{left:665.023354px;}
.x36{left:677.000468px;}
.x2f{left:689.184908px;}
.x35{left:692.012780px;}
.x31{left:695.491800px;}
.x11{left:702.248906px;}
.x37{left:748.985471px;}
.x12{left:759.057271px;}
@media print{
.v3{vertical-align:-14.576012pt;}
.v1{vertical-align:-7.745020pt;}
.v9{vertical-align:-5.160004pt;}
.v6{vertical-align:-1.194668pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:7.781340pt;}
.v8{vertical-align:8.785020pt;}
.v7{vertical-align:16.581347pt;}
.v4{vertical-align:18.755002pt;}
.v2{vertical-align:19.744016pt;}
.v5{vertical-align:21.725031pt;}
.lse{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.002800pt;}
.ls43{letter-spacing:0.004080pt;}
.ls28{letter-spacing:0.007035pt;}
.ls59{letter-spacing:0.015553pt;}
.ls5b{letter-spacing:0.016004pt;}
.ls48{letter-spacing:0.020036pt;}
.ls57{letter-spacing:0.020567pt;}
.ls53{letter-spacing:0.021337pt;}
.ls68{letter-spacing:0.021871pt;}
.ls32{letter-spacing:0.025049pt;}
.ls4a{letter-spacing:0.025527pt;}
.ls3e{letter-spacing:0.027040pt;}
.ls56{letter-spacing:0.029736pt;}
.ls39{letter-spacing:0.030706pt;}
.ls55{letter-spacing:0.030756pt;}
.ls4c{letter-spacing:0.033400pt;}
.ls62{letter-spacing:0.033779pt;}
.ls5e{letter-spacing:0.035107pt;}
.ls64{letter-spacing:0.035405pt;}
.ls4e{letter-spacing:0.035432pt;}
.ls37{letter-spacing:0.035666pt;}
.ls1{letter-spacing:0.035743pt;}
.ls66{letter-spacing:0.035769pt;}
.ls13{letter-spacing:0.036730pt;}
.ls6b{letter-spacing:0.036765pt;}
.ls69{letter-spacing:0.037423pt;}
.ls41{letter-spacing:0.039476pt;}
.ls67{letter-spacing:0.040403pt;}
.ls7{letter-spacing:0.040703pt;}
.ls49{letter-spacing:0.040999pt;}
.ls17{letter-spacing:0.041743pt;}
.ls5d{letter-spacing:0.042756pt;}
.ls2d{letter-spacing:0.043085pt;}
.ls58{letter-spacing:0.045959pt;}
.ls15{letter-spacing:0.046703pt;}
.ls31{letter-spacing:0.048099pt;}
.ls1f{letter-spacing:0.052079pt;}
.ls72{letter-spacing:0.053059pt;}
.ls75{letter-spacing:0.725485pt;}
.ls2a{letter-spacing:1.875335pt;}
.ls2b{letter-spacing:2.270708pt;}
.ls26{letter-spacing:2.275668pt;}
.ls2{letter-spacing:2.580126pt;}
.ls3{letter-spacing:2.580473pt;}
.ls12{letter-spacing:2.581468pt;}
.ls76{letter-spacing:2.586482pt;}
.ls38{letter-spacing:2.596112pt;}
.ls3a{letter-spacing:2.601072pt;}
.ls5c{letter-spacing:2.602183pt;}
.ls54{letter-spacing:2.607517pt;}
.ls30{letter-spacing:2.611454pt;}
.lsc{letter-spacing:2.613281pt;}
.ls2c{letter-spacing:2.616467pt;}
.ls5{letter-spacing:2.980836pt;}
.ls0{letter-spacing:2.985849pt;}
.ls9{letter-spacing:2.990809pt;}
.ls2f{letter-spacing:4.816734pt;}
.lsa{letter-spacing:5.131594pt;}
.ls51{letter-spacing:5.666654pt;}
.ls6c{letter-spacing:5.671667pt;}
.ls45{letter-spacing:5.676681pt;}
.ls3d{letter-spacing:7.193805pt;}
.ls2e{letter-spacing:7.386444pt;}
.ls3c{letter-spacing:9.219484pt;}
.ls40{letter-spacing:9.224497pt;}
.ls10{letter-spacing:9.473714pt;}
.ls1d{letter-spacing:10.082808pt;}
.ls1e{letter-spacing:10.134525pt;}
.ls6f{letter-spacing:10.264706pt;}
.ls44{letter-spacing:10.269719pt;}
.ls19{letter-spacing:11.472783pt;}
.ls1c{letter-spacing:11.477796pt;}
.ls14{letter-spacing:11.514526pt;}
.ls16{letter-spacing:11.519486pt;}
.ls18{letter-spacing:11.524499pt;}
.lsb{letter-spacing:13.846398pt;}
.ls3b{letter-spacing:14.076121pt;}
.ls3f{letter-spacing:14.081081pt;}
.ls1a{letter-spacing:14.350358pt;}
.ls24{letter-spacing:14.389301pt;}
.ls34{letter-spacing:14.477138pt;}
.ls11{letter-spacing:14.481639pt;}
.ls60{letter-spacing:15.888111pt;}
.ls65{letter-spacing:16.263285pt;}
.ls52{letter-spacing:16.266005pt;}
.ls5a{letter-spacing:16.270965pt;}
.ls50{letter-spacing:16.273952pt;}
.ls5f{letter-spacing:16.275445pt;}
.ls4f{letter-spacing:16.300796pt;}
.ls23{letter-spacing:16.946096pt;}
.ls42{letter-spacing:17.462814pt;}
.lsd{letter-spacing:18.735852pt;}
.ls36{letter-spacing:19.650396pt;}
.ls25{letter-spacing:20.676126pt;}
.ls73{letter-spacing:20.713075pt;}
.ls4{letter-spacing:20.731606pt;}
.ls35{letter-spacing:21.208803pt;}
.ls4b{letter-spacing:21.363316pt;}
.ls33{letter-spacing:21.368329pt;}
.ls70{letter-spacing:22.331734pt;}
.ls71{letter-spacing:22.404774pt;}
.ls21{letter-spacing:24.009576pt;}
.ls8{letter-spacing:24.375856pt;}
.ls6{letter-spacing:24.403271pt;}
.ls6d{letter-spacing:24.508118pt;}
.ls22{letter-spacing:25.871117pt;}
.ls29{letter-spacing:26.146459pt;}
.ls20{letter-spacing:26.561091pt;}
.ls46{letter-spacing:27.953081pt;}
.ls6a{letter-spacing:28.677356pt;}
.ls27{letter-spacing:30.466729pt;}
.ls4d{letter-spacing:30.800025pt;}
.ls63{letter-spacing:30.810691pt;}
.ls61{letter-spacing:32.915264pt;}
.ls6e{letter-spacing:32.919045pt;}
.ls74{letter-spacing:32.923605pt;}
.ls47{letter-spacing:32.930138pt;}
.lsf{letter-spacing:115.031665pt;}
.ws9a{word-spacing:-23.244685pt;}
.ws26{word-spacing:-18.079028pt;}
.wsd1{word-spacing:-15.496439pt;}
.ws10{word-spacing:-10.330928pt;}
.ws1{word-spacing:-7.717514pt;}
.wsf5{word-spacing:-6.940773pt;}
.ws122{word-spacing:-4.290164pt;}
.wsc8{word-spacing:-4.287685pt;}
.wsa7{word-spacing:-4.287323pt;}
.ws20{word-spacing:-4.287220pt;}
.ws3d{word-spacing:-4.287065pt;}
.ws65{word-spacing:-3.905107pt;}
.wsd{word-spacing:-3.889418pt;}
.ws4{word-spacing:-3.887111pt;}
.ws66{word-spacing:-3.858804pt;}
.ws68{word-spacing:-3.429744pt;}
.wsbb{word-spacing:-1.215160pt;}
.wsba{word-spacing:-1.182104pt;}
.ws13c{word-spacing:-0.785275pt;}
.wsab{word-spacing:-0.774817pt;}
.ws1f{word-spacing:-0.671973pt;}
.ws16a{word-spacing:-0.495761pt;}
.ws16b{word-spacing:-0.491835pt;}
.ws139{word-spacing:-0.330590pt;}
.wsb9{word-spacing:-0.309875pt;}
.ws1e{word-spacing:-0.051654pt;}
.ws57{word-spacing:-0.051396pt;}
.ws0{word-spacing:0.000000pt;}
.ws10a{word-spacing:0.051654pt;}
.wsa6{word-spacing:0.154809pt;}
.ws4e{word-spacing:0.258582pt;}
.ws72{word-spacing:0.309927pt;}
.wsad{word-spacing:0.361685pt;}
.ws144{word-spacing:0.370013pt;}
.ws8b{word-spacing:0.516545pt;}
.ws49{word-spacing:0.659782pt;}
.ws9f{word-spacing:0.660973pt;}
.ws31{word-spacing:0.671508pt;}
.ws60{word-spacing:0.774972pt;}
.ws47{word-spacing:0.906033pt;}
.ws15a{word-spacing:0.909122pt;}
.ws48{word-spacing:0.934032pt;}
.wsbc{word-spacing:1.084228pt;}
.ws62{word-spacing:1.136399pt;}
.ws5e{word-spacing:1.224895pt;}
.ws11a{word-spacing:1.291362pt;}
.wsae{word-spacing:1.394826pt;}
.ws98{word-spacing:1.549635pt;}
.ws51{word-spacing:1.756408pt;}
.ws52{word-spacing:1.756563pt;}
.ws3b{word-spacing:1.859562pt;}
.ws116{word-spacing:2.014525pt;}
.wsea{word-spacing:2.014577pt;}
.ws23{word-spacing:2.169076pt;}
.ws58{word-spacing:2.266703pt;}
.ws39{word-spacing:2.324504pt;}
.ws56{word-spacing:2.375745pt;}
.ws3f{word-spacing:2.471564pt;}
.ws63{word-spacing:2.562153pt;}
.ws54{word-spacing:2.595029pt;}
.ws21{word-spacing:2.634379pt;}
.ws42{word-spacing:2.686034pt;}
.wsfa{word-spacing:2.737017pt;}
.ws146{word-spacing:2.768606pt;}
.wsb5{word-spacing:2.789498pt;}
.wsfe{word-spacing:2.892652pt;}
.ws25{word-spacing:2.905984pt;}
.wsfd{word-spacing:2.906264pt;}
.ws41{word-spacing:3.150769pt;}
.ws130{word-spacing:3.150924pt;}
.ws46{word-spacing:3.202475pt;}
.ws4a{word-spacing:3.253562pt;}
.wseb{word-spacing:3.254130pt;}
.ws13a{word-spacing:3.264697pt;}
.ws13b{word-spacing:3.266268pt;}
.ws168{word-spacing:3.268623pt;}
.ws167{word-spacing:3.276809pt;}
.ws14c{word-spacing:3.302839pt;}
.ws14d{word-spacing:3.305980pt;}
.wsd3{word-spacing:3.409197pt;}
.wse0{word-spacing:3.510284pt;}
.ws166{word-spacing:3.595039pt;}
.ws94{word-spacing:3.665558pt;}
.ws95{word-spacing:3.667417pt;}
.ws5f{word-spacing:3.770778pt;}
.wsc5{word-spacing:3.770933pt;}
.ws14a{word-spacing:3.801575pt;}
.ws5d{word-spacing:3.822484pt;}
.ws12d{word-spacing:3.925638pt;}
.ws30{word-spacing:3.977344pt;}
.ws15c{word-spacing:4.008483pt;}
.ws15d{word-spacing:4.008772pt;}
.wsa1{word-spacing:4.125181pt;}
.ws13e{word-spacing:4.126077pt;}
.ws13f{word-spacing:4.128322pt;}
.ws138{word-spacing:4.129107pt;}
.ws159{word-spacing:4.129231pt;}
.ws14f{word-spacing:4.129561pt;}
.wsa0{word-spacing:4.130514pt;}
.ws113{word-spacing:4.131917pt;}
.ws3a{word-spacing:4.132206pt;}
.ws115{word-spacing:4.132289pt;}
.wsf1{word-spacing:4.132371pt;}
.wsd2{word-spacing:4.132454pt;}
.ws16c{word-spacing:4.132537pt;}
.ws67{word-spacing:4.132743pt;}
.ws149{word-spacing:4.133322pt;}
.wsf7{word-spacing:4.178518pt;}
.wsf6{word-spacing:4.183204pt;}
.wsf8{word-spacing:4.183999pt;}
.ws5b{word-spacing:4.184014pt;}
.wsf0{word-spacing:4.184124pt;}
.ws9e{word-spacing:4.184292pt;}
.ws9d{word-spacing:4.184585pt;}
.wsee{word-spacing:4.188183pt;}
.wsef{word-spacing:4.188518pt;}
.ws70{word-spacing:4.287271pt;}
.wsb8{word-spacing:4.287323pt;}
.wse3{word-spacing:4.337480pt;}
.ws163{word-spacing:4.380190pt;}
.ws7c{word-spacing:4.387481pt;}
.ws7e{word-spacing:4.391097pt;}
.ws10c{word-spacing:4.493424pt;}
.wsc1{word-spacing:4.541876pt;}
.wsc0{word-spacing:4.543891pt;}
.ws114{word-spacing:4.639676pt;}
.wsf4{word-spacing:4.645009pt;}
.wsed{word-spacing:4.645102pt;}
.wscf{word-spacing:4.647769pt;}
.ws9b{word-spacing:4.647892pt;}
.ws9c{word-spacing:4.648937pt;}
.wsd0{word-spacing:4.648984pt;}
.wsf3{word-spacing:4.652692pt;}
.wsec{word-spacing:4.652771pt;}
.wsb3{word-spacing:4.752317pt;}
.wsa9{word-spacing:5.010486pt;}
.ws105{word-spacing:5.062140pt;}
.ws7f{word-spacing:5.113795pt;}
.ws35{word-spacing:5.118819pt;}
.ws69{word-spacing:5.137151pt;}
.ws34{word-spacing:5.149439pt;}
.wsbd{word-spacing:5.160284pt;}
.ws119{word-spacing:5.161162pt;}
.ws55{word-spacing:5.161420pt;}
.ws103{word-spacing:5.161885pt;}
.wsb7{word-spacing:5.162040pt;}
.ws129{word-spacing:5.162247pt;}
.ws132{word-spacing:5.162815pt;}
.ws11d{word-spacing:5.164055pt;}
.wsd8{word-spacing:5.164416pt;}
.wsc2{word-spacing:5.164675pt;}
.ws27{word-spacing:5.164985pt;}
.ws2b{word-spacing:5.165088pt;}
.wsa8{word-spacing:5.165140pt;}
.ws4b{word-spacing:5.165295pt;}
.ws11f{word-spacing:5.165398pt;}
.ws1c{word-spacing:5.165449pt;}
.ws73{word-spacing:5.165553pt;}
.ws8c{word-spacing:5.165604pt;}
.ws53{word-spacing:5.165759pt;}
.wse4{word-spacing:5.165914pt;}
.ws124{word-spacing:5.167227pt;}
.ws7{word-spacing:5.206763pt;}
.ws50{word-spacing:5.217156pt;}
.ws29{word-spacing:5.268810pt;}
.ws24{word-spacing:5.317469pt;}
.ws165{word-spacing:5.370636pt;}
.wse6{word-spacing:5.372171pt;}
.ws164{word-spacing:5.413448pt;}
.ws32{word-spacing:5.423722pt;}
.wsc6{word-spacing:5.475635pt;}
.wse7{word-spacing:5.527083pt;}
.wscc{word-spacing:5.732977pt;}
.wsca{word-spacing:5.733597pt;}
.ws64{word-spacing:5.810427pt;}
.wse{word-spacing:5.811125pt;}
.wsc{word-spacing:5.811171pt;}
.ws140{word-spacing:5.909291pt;}
.ws22{word-spacing:5.940267pt;}
.ws40{word-spacing:6.043266pt;}
.ws5c{word-spacing:6.043576pt;}
.ws1d{word-spacing:6.146937pt;}
.ws3{word-spacing:6.195156pt;}
.ws2{word-spacing:6.198565pt;}
.ws150{word-spacing:6.239715pt;}
.ws87{word-spacing:6.250194pt;}
.wse9{word-spacing:6.301848pt;}
.ws6d{word-spacing:6.508466pt;}
.ws44{word-spacing:6.567573pt;}
.ws43{word-spacing:6.575993pt;}
.ws12{word-spacing:6.663378pt;}
.wsdf{word-spacing:6.714981pt;}
.ws6c{word-spacing:6.766842pt;}
.ws6b{word-spacing:6.870048pt;}
.ws6f{word-spacing:6.921702pt;}
.ws61{word-spacing:7.179975pt;}
.ws15{word-spacing:7.283284pt;}
.ws82{word-spacing:7.438247pt;}
.wsb{word-spacing:7.438299pt;}
.wsde{word-spacing:7.489850pt;}
.ws71{word-spacing:7.593107pt;}
.ws123{word-spacing:7.747709pt;}
.ws10b{word-spacing:8.056397pt;}
.ws80{word-spacing:8.164768pt;}
.wsaf{word-spacing:8.523147pt;}
.ws7b{word-spacing:8.579708pt;}
.ws79{word-spacing:8.579760pt;}
.ws15b{word-spacing:8.595332pt;}
.wsa4{word-spacing:8.832919pt;}
.ws133{word-spacing:8.884392pt;}
.ws45{word-spacing:8.884573pt;}
.wse8{word-spacing:8.987882pt;}
.ws155{word-spacing:9.007206pt;}
.ws154{word-spacing:9.030316pt;}
.wsac{word-spacing:9.039537pt;}
.ws8a{word-spacing:9.192021pt;}
.ws90{word-spacing:9.194500pt;}
.ws9{word-spacing:9.204895pt;}
.ws2c{word-spacing:9.297912pt;}
.wsc4{word-spacing:9.401118pt;}
.ws121{word-spacing:9.452773pt;}
.wsd4{word-spacing:9.501173pt;}
.ws1a{word-spacing:9.501379pt;}
.ws106{word-spacing:9.504530pt;}
.ws1b{word-spacing:9.506855pt;}
.wsd7{word-spacing:9.556185pt;}
.ws12c{word-spacing:9.866008pt;}
.ws12a{word-spacing:9.917663pt;}
.wsda{word-spacing:10.072626pt;}
.ws91{word-spacing:10.175935pt;}
.ws83{word-spacing:10.329866pt;}
.ws84{word-spacing:10.382502pt;}
.wsa{word-spacing:10.506598pt;}
.ws96{word-spacing:10.589171pt;}
.wsfc{word-spacing:10.589378pt;}
.ws97{word-spacing:10.589791pt;}
.wsb2{word-spacing:10.692635pt;}
.ws4f{word-spacing:10.847650pt;}
.ws89{word-spacing:11.157371pt;}
.ws81{word-spacing:11.363886pt;}
.ws76{word-spacing:11.424035pt;}
.ws74{word-spacing:11.428835pt;}
.ws14{word-spacing:11.467298pt;}
.ws75{word-spacing:11.472240pt;}
.ws7a{word-spacing:11.474400pt;}
.ws77{word-spacing:11.479200pt;}
.ws11b{word-spacing:11.518229pt;}
.ws88{word-spacing:11.518436pt;}
.ws11c{word-spacing:11.519211pt;}
.ws142{word-spacing:11.526919pt;}
.ws141{word-spacing:11.529109pt;}
.ws17{word-spacing:11.620608pt;}
.ws18{word-spacing:11.621177pt;}
.ws16{word-spacing:11.629721pt;}
.wsc7{word-spacing:11.880482pt;}
.wsaa{word-spacing:12.035497pt;}
.ws147{word-spacing:12.269093pt;}
.ws148{word-spacing:12.270663pt;}
.ws6e{word-spacing:12.707109pt;}
.ws120{word-spacing:13.016881pt;}
.ws14e{word-spacing:13.182264pt;}
.ws136{word-spacing:13.262226pt;}
.ws137{word-spacing:13.306277pt;}
.ws135{word-spacing:13.309748pt;}
.ws5a{word-spacing:13.326705pt;}
.ws109{word-spacing:13.327015pt;}
.ws2d{word-spacing:13.430634pt;}
.ws117{word-spacing:13.730170pt;}
.wsc3{word-spacing:13.791750pt;}
.wse5{word-spacing:13.998368pt;}
.ws78{word-spacing:14.339469pt;}
.wsbe{word-spacing:14.349464pt;}
.wsb4{word-spacing:14.357677pt;}
.ws19{word-spacing:14.462897pt;}
.ws153{word-spacing:14.670042pt;}
.ws125{word-spacing:14.773340pt;}
.ws8{word-spacing:14.922995pt;}
.ws93{word-spacing:14.927994pt;}
.wsb1{word-spacing:14.928149pt;}
.ws92{word-spacing:14.929750pt;}
.wsc9{word-spacing:14.979545pt;}
.ws11{word-spacing:15.079703pt;}
.ws156{word-spacing:15.124438pt;}
.wsfb{word-spacing:15.134250pt;}
.ws102{word-spacing:15.238283pt;}
.ws13{word-spacing:15.289627pt;}
.ws13d{word-spacing:15.289774pt;}
.wsf{word-spacing:15.496245pt;}
.ws33{word-spacing:15.496348pt;}
.wsa5{word-spacing:15.702966pt;}
.wsb6{word-spacing:15.806430pt;}
.ws37{word-spacing:15.858136pt;}
.ws2a{word-spacing:15.908138pt;}
.wsb0{word-spacing:15.909223pt;}
.ws28{word-spacing:16.012842pt;}
.ws110{word-spacing:16.012997pt;}
.wsa2{word-spacing:16.426129pt;}
.ws111{word-spacing:16.942364pt;}
.ws7d{word-spacing:17.319205pt;}
.ws36{word-spacing:17.407513pt;}
.ws118{word-spacing:17.505657pt;}
.ws12b{word-spacing:17.562528pt;}
.ws4d{word-spacing:17.758940pt;}
.ws59{word-spacing:17.766718pt;}
.ws11e{word-spacing:18.068075pt;}
.wsd9{word-spacing:18.285175pt;}
.ws15f{word-spacing:18.430376pt;}
.ws10f{word-spacing:18.541742pt;}
.ws10e{word-spacing:18.548537pt;}
.wsff{word-spacing:18.642520pt;}
.ws101{word-spacing:18.646756pt;}
.wscb{word-spacing:18.653142pt;}
.wscd{word-spacing:18.750323pt;}
.ws169{word-spacing:19.091597pt;}
.ws38{word-spacing:19.112680pt;}
.ws151{word-spacing:19.205698pt;}
.ws152{word-spacing:19.215692pt;}
.wsd5{word-spacing:19.525554pt;}
.ws128{word-spacing:19.577415pt;}
.ws85{word-spacing:19.680362pt;}
.ws86{word-spacing:19.732017pt;}
.ws3c{word-spacing:20.041892pt;}
.ws14b{word-spacing:20.455362pt;}
.wse1{word-spacing:20.506731pt;}
.ws6{word-spacing:21.106174pt;}
.ws3e{word-spacing:21.436254pt;}
.ws5{word-spacing:21.617557pt;}
.ws157{word-spacing:21.691148pt;}
.ws158{word-spacing:21.691933pt;}
.ws104{word-spacing:21.694526pt;}
.wsa3{word-spacing:21.901402pt;}
.wsf9{word-spacing:22.155646pt;}
.ws127{word-spacing:22.264534pt;}
.ws126{word-spacing:22.676271pt;}
.wsdb{word-spacing:23.244626pt;}
.ws143{word-spacing:23.595840pt;}
.ws145{word-spacing:24.256772pt;}
.ws112{word-spacing:24.535317pt;}
.wsdd{word-spacing:24.690693pt;}
.ws2f{word-spacing:24.794157pt;}
.ws12e{word-spacing:25.103929pt;}
.ws160{word-spacing:25.371768pt;}
.ws161{word-spacing:25.371933pt;}
.ws2e{word-spacing:25.568975pt;}
.ws134{word-spacing:25.703515pt;}
.ws162{word-spacing:26.075222pt;}
.ws12f{word-spacing:26.705012pt;}
.wsdc{word-spacing:27.015301pt;}
.wse2{word-spacing:27.170109pt;}
.ws8f{word-spacing:27.686912pt;}
.ws15e{word-spacing:28.224096pt;}
.ws108{word-spacing:28.875172pt;}
.ws100{word-spacing:31.573153pt;}
.wsd6{word-spacing:32.466112pt;}
.ws6a{word-spacing:33.466740pt;}
.ws8d{word-spacing:34.091760pt;}
.ws10d{word-spacing:34.346881pt;}
.ws107{word-spacing:34.349877pt;}
.ws131{word-spacing:34.918335pt;}
.ws99{word-spacing:37.163603pt;}
.wsce{word-spacing:40.753977pt;}
.wsf2{word-spacing:40.759091pt;}
.ws8e{word-spacing:62.195627pt;}
.ws4c{word-spacing:99.115338pt;}
.wsbf{word-spacing:345.960182pt;}
._a{margin-left:-5.733597pt;}
._3{margin-left:-4.649149pt;}
._0{margin-left:-3.254730pt;}
._28{margin-left:-2.294161pt;}
._1{margin-left:-1.394402pt;}
._b{width:1.669291pt;}
._6{width:2.582348pt;}
._20{width:4.793599pt;}
._15{width:6.281246pt;}
._5{width:7.763725pt;}
._7{width:9.437738pt;}
._1e{width:11.545686pt;}
._8{width:14.461089pt;}
._10{width:16.167857pt;}
._9{width:18.077575pt;}
._d{width:19.681292pt;}
._2f{width:20.662934pt;}
._f{width:21.900880pt;}
._2{width:23.244685pt;}
._14{width:25.734508pt;}
._29{width:27.893014pt;}
._c{width:28.926930pt;}
._27{width:30.785821pt;}
._4{width:31.796977pt;}
._1f{width:33.007222pt;}
._2e{width:34.342169pt;}
._e{width:35.265761pt;}
._2d{width:41.089875pt;}
._13{width:45.655956pt;}
._30{width:46.903133pt;}
._17{width:49.697230pt;}
._1b{width:55.275583pt;}
._2a{width:58.128914pt;}
._16{width:59.274273pt;}
._23{width:60.410613pt;}
._2c{width:64.020977pt;}
._21{width:71.299167pt;}
._22{width:72.762094pt;}
._18{width:73.731956pt;}
._2b{width:75.615891pt;}
._19{width:80.101185pt;}
._25{width:82.553295pt;}
._11{width:86.665306pt;}
._26{width:97.699815pt;}
._24{width:103.473498pt;}
._12{width:122.452072pt;}
._1a{width:136.642286pt;}
._1c{width:165.047756pt;}
._1d{width:239.141508pt;}
.fs9{font-size:27.893622pt;}
.fs7{font-size:30.992878pt;}
.fs5{font-size:36.158056pt;}
.fs4{font-size:41.323713pt;}
.fs8{font-size:41.840407pt;}
.fs2{font-size:46.489371pt;}
.fs3{font-size:51.654495pt;}
.fs6{font-size:51.848415pt;}
.fs1{font-size:61.985650pt;}
.fs0{font-size:92.978741pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:6.308570pt;}
.y143{bottom:6.820085pt;}
.y9d{bottom:6.820163pt;}
.ydb{bottom:6.821189pt;}
.y104{bottom:6.821312pt;}
.y15f{bottom:6.822876pt;}
.y116{bottom:6.823056pt;}
.y5e{bottom:23.807384pt;}
.yd4{bottom:23.871870pt;}
.y13c{bottom:23.872099pt;}
.y99{bottom:23.872176pt;}
.y10f{bottom:23.873736pt;}
.yfd{bottom:23.874659pt;}
.y159{bottom:23.876223pt;}
.y14b{bottom:32.433743pt;}
.yfe{bottom:32.434666pt;}
.y110{bottom:32.571250pt;}
.y15a{bottom:32.574977pt;}
.y117{bottom:34.840412pt;}
.yd5{bottom:39.288149pt;}
.y160{bottom:39.485569pt;}
.y5d{bottom:41.306198pt;}
.ya1{bottom:43.222858pt;}
.y9a{bottom:43.830992pt;}
.y1{bottom:48.000000pt;}
.y9e{bottom:48.418863pt;}
.y105{bottom:48.496012pt;}
.y151{bottom:48.499089pt;}
.y147{bottom:48.577452pt;}
.ydf{bottom:48.581223pt;}
.y13d{bottom:52.334655pt;}
.y111{bottom:54.585001pt;}
.y15b{bottom:54.586194pt;}
.ya0{bottom:57.005536pt;}
.yff{bottom:57.380952pt;}
.y14c{bottom:57.382563pt;}
.y148{bottom:60.660135pt;}
.ye0{bottom:60.661232pt;}
.y149{bottom:60.925135pt;}
.ye1{bottom:60.926233pt;}
.yd6{bottom:64.008168pt;}
.y13e{bottom:69.512135pt;}
.y9f{bottom:71.085547pt;}
.y5c{bottom:73.351360pt;}
.y14d{bottom:74.522577pt;}
.y100{bottom:74.523499pt;}
.y15c{bottom:74.523677pt;}
.y112{bottom:74.660084pt;}
.y101{bottom:84.604761pt;}
.y14e{bottom:84.605092pt;}
.y9b{bottom:86.724760pt;}
.y13f{bottom:87.169616pt;}
.yd7{bottom:88.729388pt;}
.y113{bottom:90.503830pt;}
.yd2{bottom:100.810652pt;}
.y5b{bottom:102.353187pt;}
.y34{bottom:102.763361pt;}
.y97{bottom:103.010521pt;}
.y114{bottom:106.347576pt;}
.y10d{bottom:107.269458pt;}
.y14a{bottom:107.270791pt;}
.ycf{bottom:116.307145pt;}
.yd1{bottom:116.308131pt;}
.yd0{bottom:116.665632pt;}
.y5a{bottom:117.849466pt;}
.y33{bottom:118.259640pt;}
.y93{bottom:118.506533pt;}
.y96{bottom:118.506800pt;}
.yd8{bottom:118.816879pt;}
.y94{bottom:118.866533pt;}
.y95{bottom:118.866800pt;}
.y15d{bottom:118.887446pt;}
.y140{bottom:119.352175pt;}
.y11e{bottom:119.789813pt;}
.y10c{bottom:119.790735pt;}
.y167{bottom:119.792300pt;}
.y102{bottom:124.933593pt;}
.y14f{bottom:124.933924pt;}
.y9c{bottom:129.617328pt;}
.ycd{bottom:131.803424pt;}
.yce{bottom:132.162175pt;}
.y11d{bottom:133.272490pt;}
.y10b{bottom:133.273413pt;}
.y157{bottom:133.273824pt;}
.y166{bottom:133.276311pt;}
.y59{bottom:133.346945pt;}
.y32{bottom:133.754719pt;}
.y90{bottom:134.002679pt;}
.y92{bottom:134.002812pt;}
.y91{bottom:134.362813pt;}
.y144{bottom:136.656189pt;}
.ydc{bottom:136.659960pt;}
.y145{bottom:139.709938pt;}
.ydd{bottom:139.711220pt;}
.y146{bottom:139.974938pt;}
.yde{bottom:139.977471pt;}
.y118{bottom:144.181830pt;}
.y161{bottom:144.182653pt;}
.y119{bottom:144.445581pt;}
.y162{bottom:144.447653pt;}
.y10a{bottom:146.756090pt;}
.y165{bottom:146.758988pt;}
.y11c{bottom:146.759168pt;}
.y156{bottom:146.760501pt;}
.ycc{bottom:147.299703pt;}
.yd9{bottom:148.481969pt;}
.y106{bottom:148.809599pt;}
.y152{bottom:148.811260pt;}
.y57{bottom:148.843224pt;}
.y141{bottom:149.017265pt;}
.y107{bottom:149.075849pt;}
.y153{bottom:149.076260pt;}
.y58{bottom:149.201975pt;}
.y31{bottom:149.250998pt;}
.y8f{bottom:149.498958pt;}
.y109{bottom:160.240101pt;}
.y11b{bottom:160.241845pt;}
.y164{bottom:160.242999pt;}
.y155{bottom:160.243179pt;}
.ycb{bottom:162.794782pt;}
.y15e{bottom:163.250015pt;}
.y56{bottom:164.340703pt;}
.y8d{bottom:164.994037pt;}
.y8e{bottom:165.352788pt;}
.yfc{bottom:166.116160pt;}
.y13b{bottom:166.118720pt;}
.y30{bottom:168.814747pt;}
.y115{bottom:169.721360pt;}
.y11a{bottom:173.724523pt;}
.y108{bottom:173.725445pt;}
.y154{bottom:173.725856pt;}
.y163{bottom:173.727010pt;}
.y103{bottom:175.346167pt;}
.y150{bottom:175.347697pt;}
.y185{bottom:177.946981pt;}
.yda{bottom:178.145726pt;}
.yca{bottom:178.291061pt;}
.y142{bottom:178.682356pt;}
.y55{bottom:179.835782pt;}
.y8c{bottom:180.491516pt;}
.y2f{bottom:193.028499pt;}
.y184{bottom:193.444460pt;}
.yc9{bottom:193.788540pt;}
.y54{bottom:195.332061pt;}
.y8b{bottom:195.987795pt;}
.y2e{bottom:208.524779pt;}
.y183{bottom:208.940739pt;}
.yc8{bottom:209.286019pt;}
.y53{bottom:210.828340pt;}
.y8a{bottom:211.484074pt;}
.y1c1{bottom:220.921588pt;}
.y2d{bottom:224.022258pt;}
.y182{bottom:224.435818pt;}
.yc7{bottom:224.782298pt;}
.y52{bottom:226.324619pt;}
.y89{bottom:226.980353pt;}
.y1c0{bottom:232.544104pt;}
.y2c{bottom:239.518537pt;}
.y181{bottom:239.932097pt;}
.yc6{bottom:240.278577pt;}
.y51{bottom:241.822099pt;}
.y88{bottom:242.475432pt;}
.y1bf{bottom:244.166620pt;}
.y2b{bottom:255.013616pt;}
.y180{bottom:255.428376pt;}
.y1be{bottom:255.787883pt;}
.y50{bottom:257.319578pt;}
.y87{bottom:262.041715pt;}
.yc4{bottom:264.491130pt;}
.yc5{bottom:264.849881pt;}
.y1bd{bottom:267.410399pt;}
.y2a{bottom:270.509895pt;}
.y17f{bottom:270.925855pt;}
.y4f{bottom:272.814657pt;}
.y1bc{bottom:279.032915pt;}
.y29{bottom:286.007374pt;}
.y86{bottom:286.254267pt;}
.y17e{bottom:286.422134pt;}
.y4d{bottom:288.310936pt;}
.y4e{bottom:288.669687pt;}
.yc2{bottom:288.704883pt;}
.yc3{bottom:289.063634pt;}
.y1bb{bottom:290.654178pt;}
.y28{bottom:301.504853pt;}
.y85{bottom:301.750546pt;}
.y17d{bottom:301.917213pt;}
.y1ba{bottom:302.279187pt;}
.y4c{bottom:303.807215pt;}
.yc0{bottom:304.201162pt;}
.yc1{bottom:304.559913pt;}
.y1b9{bottom:313.900450pt;}
.y27{bottom:317.001132pt;}
.y84{bottom:317.246826pt;}
.y17c{bottom:317.414692pt;}
.y4b{bottom:319.303494pt;}
.ybf{bottom:319.696241pt;}
.y1b8{bottom:325.521712pt;}
.y26{bottom:332.496211pt;}
.y83{bottom:332.743105pt;}
.y17b{bottom:332.910971pt;}
.y179{bottom:332.911238pt;}
.y17a{bottom:333.269722pt;}
.y4a{bottom:334.800973pt;}
.ybe{bottom:335.192520pt;}
.y1b7{bottom:337.145468pt;}
.y13a{bottom:343.345646pt;}
.yfb{bottom:343.346313pt;}
.y25{bottom:347.992490pt;}
.y82{bottom:348.240584pt;}
.y177{bottom:348.407517pt;}
.y178{bottom:348.766268pt;}
.y1b6{bottom:348.766731pt;}
.y49{bottom:350.296052pt;}
.ybd{bottom:350.688799pt;}
.y139{bottom:358.841925pt;}
.yfa{bottom:358.842592pt;}
.y1b5{bottom:360.387993pt;}
.y24{bottom:363.488769pt;}
.y81{bottom:363.735663pt;}
.y175{bottom:363.904996pt;}
.y176{bottom:364.262496pt;}
.y48{bottom:365.792331pt;}
.ybc{bottom:366.186278pt;}
.y1b4{bottom:372.011749pt;}
.y138{bottom:374.338205pt;}
.yf9{bottom:374.340071pt;}
.y22{bottom:378.985048pt;}
.y80{bottom:379.233142pt;}
.y23{bottom:379.345049pt;}
.y174{bottom:379.401275pt;}
.ybb{bottom:381.682557pt;}
.y1b3{bottom:383.633012pt;}
.y137{bottom:389.834484pt;}
.yf8{bottom:389.835150pt;}
.y21{bottom:394.482527pt;}
.y7f{bottom:394.729421pt;}
.y173{bottom:394.896354pt;}
.y171{bottom:394.897021pt;}
.y1b2{bottom:395.255528pt;}
.y172{bottom:395.256355pt;}
.yba{bottom:397.177636pt;}
.y47{bottom:401.565693pt;}
.y136{bottom:405.330763pt;}
.yf7{bottom:405.331429pt;}
.y1b1{bottom:406.879284pt;}
.y20{bottom:409.977606pt;}
.y7e{bottom:410.225700pt;}
.y16f{bottom:410.393300pt;}
.y170{bottom:410.753300pt;}
.yb9{bottom:412.675115pt;}
.y1b0{bottom:418.500547pt;}
.yf6{bottom:420.827708pt;}
.y46{bottom:421.227042pt;}
.y135{bottom:424.894512pt;}
.y1f{bottom:425.475085pt;}
.y7d{bottom:425.721979pt;}
.y16e{bottom:425.890779pt;}
.yb8{bottom:428.171394pt;}
.y1af{bottom:430.123062pt;}
.yf5{bottom:436.325187pt;}
.y1e{bottom:440.971365pt;}
.y7c{bottom:441.217058pt;}
.y16d{bottom:441.387058pt;}
.y1ae{bottom:441.745578pt;}
.yb7{bottom:443.667673pt;}
.y45{bottom:445.061461pt;}
.y134{bottom:449.108264pt;}
.y1ad{bottom:453.366841pt;}
.yf4{bottom:455.888936pt;}
.y1d{bottom:456.467644pt;}
.y7b{bottom:456.713337pt;}
.y16c{bottom:456.884537pt;}
.yb6{bottom:459.165152pt;}
.y133{bottom:464.604543pt;}
.y1ac{bottom:464.990597pt;}
.y44{bottom:468.046546pt;}
.y1c{bottom:471.963923pt;}
.y7a{bottom:472.212150pt;}
.y16a{bottom:472.379616pt;}
.y16b{bottom:472.738367pt;}
.yb5{bottom:474.661431pt;}
.y1ab{bottom:476.611860pt;}
.y132{bottom:480.102022pt;}
.yf3{bottom:480.102689pt;}
.y42{bottom:483.542825pt;}
.y43{bottom:483.902826pt;}
.y1b{bottom:487.461402pt;}
.y79{bottom:487.708429pt;}
.y169{bottom:487.875895pt;}
.y1aa{bottom:488.233122pt;}
.yb4{bottom:490.156511pt;}
.y131{bottom:495.597102pt;}
.yf2{bottom:495.597768pt;}
.y40{bottom:499.037904pt;}
.y41{bottom:499.397905pt;}
.y1a9{bottom:499.856878pt;}
.y1a{bottom:502.956481pt;}
.y78{bottom:503.204708pt;}
.yb3{bottom:505.652790pt;}
.y130{bottom:511.093381pt;}
.yf1{bottom:511.094047pt;}
.y1a8{bottom:511.478141pt;}
.y3e{bottom:514.535383pt;}
.y3f{bottom:514.894134pt;}
.y19{bottom:518.452760pt;}
.y77{bottom:518.700987pt;}
.yb2{bottom:521.149069pt;}
.y1a7{bottom:523.101897pt;}
.y12f{bottom:526.589660pt;}
.yf0{bottom:526.590326pt;}
.y168{bottom:529.628462pt;}
.y3d{bottom:530.032862pt;}
.y18{bottom:533.949039pt;}
.y1a6{bottom:534.724413pt;}
.yb1{bottom:536.646548pt;}
.y12e{bottom:542.087139pt;}
.yef{bottom:542.087805pt;}
.y76{bottom:542.913539pt;}
.y3c{bottom:545.529141pt;}
.y1a5{bottom:546.345675pt;}
.y17{bottom:549.446518pt;}
.yb0{bottom:556.210297pt;}
.y12d{bottom:557.583418pt;}
.yee{bottom:557.584084pt;}
.y1a4{bottom:557.968191pt;}
.y3b{bottom:561.025421pt;}
.y75{bottom:562.284755pt;}
.y16{bottom:564.943997pt;}
.y1a3{bottom:569.590707pt;}
.y12c{bottom:573.079697pt;}
.yed{bottom:573.081564pt;}
.y3a{bottom:576.521700pt;}
.yaf{bottom:580.424049pt;}
.y15{bottom:580.439076pt;}
.y1a2{bottom:581.211970pt;}
.y74{bottom:581.654770pt;}
.y158{bottom:588.473600pt;}
.y12b{bottom:588.575976pt;}
.yec{bottom:588.576643pt;}
.y39{bottom:592.016779pt;}
.y1a1{bottom:592.834486pt;}
.yae{bottom:595.919128pt;}
.y14{bottom:595.935355pt;}
.y12a{bottom:604.072255pt;}
.yeb{bottom:604.072922pt;}
.y1a0{bottom:604.457002pt;}
.y73{bottom:605.867323pt;}
.y38{bottom:607.514258pt;}
.yad{bottom:611.415408pt;}
.y13{bottom:611.431634pt;}
.y19f{bottom:616.080758pt;}
.y127{bottom:619.567734pt;}
.y129{bottom:619.568534pt;}
.yea{bottom:619.569201pt;}
.y128{bottom:619.928534pt;}
.y72{bottom:621.364802pt;}
.y37{bottom:623.010537pt;}
.yac{bottom:626.911687pt;}
.y12{bottom:626.927913pt;}
.y19e{bottom:627.702021pt;}
.y125{bottom:635.064013pt;}
.ye9{bottom:635.065480pt;}
.y126{bottom:635.424013pt;}
.y71{bottom:636.861081pt;}
.y36{bottom:638.506816pt;}
.y19d{bottom:639.324537pt;}
.yab{bottom:642.409166pt;}
.y11{bottom:642.424192pt;}
.y124{bottom:650.559092pt;}
.ye8{bottom:650.561759pt;}
.y19c{bottom:650.947052pt;}
.y70{bottom:652.356160pt;}
.yaa{bottom:657.906645pt;}
.y10{bottom:661.989275pt;}
.y19b{bottom:662.569568pt;}
.y123{bottom:666.057905pt;}
.ye7{bottom:666.059238pt;}
.y6f{bottom:667.853639pt;}
.y35{bottom:670.961909pt;}
.ya9{bottom:673.402924pt;}
.y19a{bottom:674.190831pt;}
.y122{bottom:681.554184pt;}
.ye5{bottom:681.555517pt;}
.ye6{bottom:681.914268pt;}
.y6e{bottom:683.349918pt;}
.y199{bottom:685.813347pt;}
.ya8{bottom:688.898003pt;}
.yf{bottom:689.791830pt;}
.y121{bottom:697.050463pt;}
.ye4{bottom:697.051796pt;}
.y198{bottom:697.435863pt;}
.y6d{bottom:698.846197pt;}
.ye{bottom:702.705587pt;}
.ya7{bottom:704.394282pt;}
.y197{bottom:709.058379pt;}
.y120{bottom:712.546742pt;}
.ye3{bottom:712.548075pt;}
.y6c{bottom:714.342477pt;}
.yd{bottom:715.618104pt;}
.ya6{bottom:719.890561pt;}
.y196{bottom:720.679642pt;}
.yc{bottom:728.533115pt;}
.y6b{bottom:729.838756pt;}
.y195{bottom:732.303398pt;}
.ya5{bottom:735.388040pt;}
.yb{bottom:741.446872pt;}
.y194{bottom:743.925914pt;}
.y6a{bottom:745.335035pt;}
.ya4{bottom:750.885519pt;}
.y11f{bottom:754.297975pt;}
.ye2{bottom:754.299309pt;}
.ya{bottom:754.359389pt;}
.y193{bottom:755.547176pt;}
.y69{bottom:764.898784pt;}
.y192{bottom:767.169692pt;}
.y9{bottom:767.273146pt;}
.y191{bottom:778.792208pt;}
.y8{bottom:780.188156pt;}
.y190{bottom:790.413471pt;}
.ya3{bottom:792.636753pt;}
.y7{bottom:793.100673pt;}
.y18f{bottom:802.035987pt;}
.y68{bottom:802.895347pt;}
.ya2{bottom:804.258015pt;}
.y10e{bottom:813.145600pt;}
.yd3{bottom:813.148800pt;}
.y18e{bottom:813.658503pt;}
.y67{bottom:820.751362pt;}
.y18d{bottom:825.279765pt;}
.y6{bottom:825.991633pt;}
.y66{bottom:841.564978pt;}
.y18c{bottom:844.457247pt;}
.y5{bottom:846.454182pt;}
.y65{bottom:855.630056pt;}
.y98{bottom:863.107200pt;}
.y18b{bottom:866.514732pt;}
.y4{bottom:866.915399pt;}
.y64{bottom:876.441006pt;}
.y18a{bottom:882.011011pt;}
.y63{bottom:890.504751pt;}
.y189{bottom:897.507290pt;}
.y3{bottom:910.351433pt;}
.y62{bottom:911.316434pt;}
.y188{bottom:913.003569pt;}
.y61{bottom:924.231444pt;}
.y187{bottom:928.499848pt;}
.y2{bottom:937.471455pt;}
.y186{bottom:948.064930pt;}
.y60{bottom:948.066130pt;}
.hd{height:21.323100pt;}
.h1e{height:27.081955pt;}
.h25{height:27.085688pt;}
.h8{height:28.430715pt;}
.h22{height:28.618838pt;}
.h18{height:28.786200pt;}
.h17{height:30.305009pt;}
.h15{height:31.473304pt;}
.h1c{height:31.798729pt;}
.h9{height:31.984687pt;}
.h5{height:32.170644pt;}
.h4{height:32.496070pt;}
.h16{height:32.775006pt;}
.h1d{height:34.867028pt;}
.h11{height:35.434983pt;}
.h6{height:35.538292pt;}
.h7{height:36.416419pt;}
.hb{height:36.916071pt;}
.he{height:38.740871pt;}
.h12{height:38.741404pt;}
.h13{height:38.741938pt;}
.h23{height:38.744071pt;}
.h1a{height:38.744818pt;}
.hc{height:41.067116pt;}
.h21{height:41.909257pt;}
.h1f{height:41.909790pt;}
.h3{height:42.646127pt;}
.hf{height:42.763951pt;}
.h10{height:45.733980pt;}
.h19{height:47.141882pt;}
.ha{height:52.672640pt;}
.h2{height:63.969374pt;}
.h14{height:143.806400pt;}
.h24{height:193.763840pt;}
.h1b{height:193.765120pt;}
.h20{height:193.766400pt;}
.h26{height:193.767360pt;}
.h1{height:1026.880000pt;}
.h0{height:1122.666667pt;}
.w3{width:301.466240pt;}
.w4{width:313.590080pt;}
.w2{width:672.796800pt;}
.w1{width:793.280000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x3d{left:11.075099pt;}
.x2c{left:12.186478pt;}
.x2a{left:23.567020pt;}
.x3a{left:24.588843pt;}
.x40{left:25.648827pt;}
.x3b{left:30.562595pt;}
.x41{left:31.458831pt;}
.x49{left:34.364944pt;}
.x45{left:36.534959pt;}
.x29{left:39.195833pt;}
.x4c{left:40.176385pt;}
.x39{left:46.191394pt;}
.x7{left:58.796314pt;}
.x17{left:59.826240pt;}
.x38{left:62.876160pt;}
.x43{left:65.618852pt;}
.x4b{left:75.464994pt;}
.x6{left:78.166329pt;}
.x1f{left:79.521264pt;}
.x22{left:80.957411pt;}
.x20{left:82.427533pt;}
.x42{left:85.843959pt;}
.x18{left:94.851276pt;}
.x3e{left:98.683812pt;}
.x19{left:103.532536pt;}
.xa{left:106.337382pt;}
.x4f{left:110.176295pt;}
.x21{left:128.521849pt;}
.x2b{left:129.922572pt;}
.x3c{left:136.916000pt;}
.x5{left:144.515849pt;}
.x1{left:148.704119pt;}
.x3{left:159.872128pt;}
.x24{left:163.533017pt;}
.x8{left:171.542671pt;}
.x1e{left:180.836145pt;}
.x9{left:198.708116pt;}
.x2d{left:203.347964pt;}
.x4{left:218.547108pt;}
.x25{left:222.061935pt;}
.x1b{left:229.346450pt;}
.x1a{left:234.587708pt;}
.x23{left:236.638909pt;}
.x2{left:246.195397pt;}
.x4e{left:259.601793pt;}
.x26{left:286.415236pt;}
.x4d{left:290.967594pt;}
.x3f{left:301.702839pt;}
.x1d{left:305.927831pt;}
.x1c{left:311.821583pt;}
.x27{left:348.167760pt;}
.xc{left:408.214407pt;}
.xb{left:411.205662pt;}
.x44{left:412.294400pt;}
.x52{left:413.378975pt;}
.x28{left:418.355200pt;}
.x14{left:420.768337pt;}
.x46{left:425.084340pt;}
.xd{left:427.584422pt;}
.x13{left:430.572443pt;}
.x53{left:431.882723pt;}
.x4a{left:457.771033pt;}
.xe{left:467.275647pt;}
.x2e{left:489.548678pt;}
.x32{left:509.189883pt;}
.x50{left:515.032723pt;}
.x48{left:522.543035pt;}
.x51{left:535.190272pt;}
.x47{left:537.979437pt;}
.x15{left:539.335665pt;}
.x30{left:541.698601pt;}
.x33{left:543.523659pt;}
.x10{left:553.267400pt;}
.x34{left:571.112432pt;}
.xf{left:577.905753pt;}
.x16{left:591.131870pt;}
.x36{left:601.778193pt;}
.x2f{left:612.608807pt;}
.x35{left:615.122471pt;}
.x31{left:618.214933pt;}
.x11{left:624.221250pt;}
.x37{left:665.764863pt;}
.x12{left:674.717574pt;}
}




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