
    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_775c816ea630729b627b2c60.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093000;font-style:normal;font-weight: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_0d2466a2c5bb87a61414d76a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.129000;font-style:normal;font-weight: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_beac71aaa34c3f8e710b3e55.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.108000;font-style:normal;font-weight: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_e0212690bb8082f4a808a5fa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d32b9922ab8be347e7773477.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.009500;font-style:normal;font-weight: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_9baf04665dde592a210f68ca.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.780762;font-style:normal;font-weight: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_beac71aaa34c3f8e710b3e55.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.108000;font-style:normal;font-weight: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_775c816ea630729b627b2c60.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093000;font-style:normal;font-weight: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_0d2466a2c5bb87a61414d76a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.129000;font-style:normal;font-weight: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_464fbed89be14a274a4af22a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_beac71aaa34c3f8e710b3e55.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.108000;font-style:normal;font-weight: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_775c816ea630729b627b2c60.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.093000;font-style:normal;font-weight: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_464fbed89be14a274a4af22a.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_beac71aaa34c3f8e710b3e55.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.108000;font-style:normal;font-weight: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_775c816ea630729b627b2c60.woff2')format("woff");}.fff{font-family:fff;line-height:1.093000;font-style:normal;font-weight: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_0d2466a2c5bb87a61414d76a.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.129000;font-style:normal;font-weight: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_464fbed89be14a274a4af22a.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_beac71aaa34c3f8e710b3e55.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.108000;font-style:normal;font-weight: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_775c816ea630729b627b2c60.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.093000;font-style:normal;font-weight: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_0d2466a2c5bb87a61414d76a.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.129000;font-style:normal;font-weight: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_464fbed89be14a274a4af22a.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_beac71aaa34c3f8e710b3e55.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.108000;font-style:normal;font-weight: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_775c816ea630729b627b2c60.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.093000;font-style:normal;font-weight: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_0d2466a2c5bb87a61414d76a.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.129000;font-style:normal;font-weight: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_464fbed89be14a274a4af22a.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_beac71aaa34c3f8e710b3e55.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.108000;font-style:normal;font-weight: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_775c816ea630729b627b2c60.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.093000;font-style:normal;font-weight: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_0d2466a2c5bb87a61414d76a.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.129000;font-style:normal;font-weight: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_beac71aaa34c3f8e710b3e55.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.108000;font-style:normal;font-weight: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_775c816ea630729b627b2c60.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.093000;font-style:normal;font-weight: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_0d2466a2c5bb87a61414d76a.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.129000;font-style:normal;font-weight: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_464fbed89be14a274a4af22a.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_beac71aaa34c3f8e710b3e55.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.108000;font-style:normal;font-weight: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_775c816ea630729b627b2c60.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.093000;font-style:normal;font-weight: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_0d2466a2c5bb87a61414d76a.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.129000;font-style:normal;font-weight: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_beac71aaa34c3f8e710b3e55.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.108000;font-style:normal;font-weight: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_775c816ea630729b627b2c60.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.093000;font-style:normal;font-weight: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_0d2466a2c5bb87a61414d76a.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.129000;font-style:normal;font-weight: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_beac71aaa34c3f8e710b3e55.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.108000;font-style:normal;font-weight: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_775c816ea630729b627b2c60.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.093000;font-style:normal;font-weight: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_0d2466a2c5bb87a61414d76a.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.129000;font-style:normal;font-weight: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_464fbed89be14a274a4af22a.woff2')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_dcde4e7a468d3c7934eb11bc.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.944000;font-style:normal;font-weight: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_4f8673d72458200f3d60b1b7.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.973709;font-style:normal;font-weight: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_beac71aaa34c3f8e710b3e55.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.108000;font-style:normal;font-weight: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_775c816ea630729b627b2c60.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.093000;font-style:normal;font-weight: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_beac71aaa34c3f8e710b3e55.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.108000;font-style:normal;font-weight: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_775c816ea630729b627b2c60.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.093000;font-style:normal;font-weight: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_0d2466a2c5bb87a61414d76a.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.129000;font-style:normal;font-weight: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_beac71aaa34c3f8e710b3e55.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.108000;font-style:normal;font-weight: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_775c816ea630729b627b2c60.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.093000;font-style:normal;font-weight: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_0d2466a2c5bb87a61414d76a.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.129000;font-style:normal;font-weight: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_beac71aaa34c3f8e710b3e55.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.108000;font-style:normal;font-weight: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_464fbed89be14a274a4af22a.woff2')format("woff");}.ff36{font-family:ff36;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:ff37;src:url('chunks/assets/font_775c816ea630729b627b2c60.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.093000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_0d2466a2c5bb87a61414d76a.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.129000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_beac71aaa34c3f8e710b3e55.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.108000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_775c816ea630729b627b2c60.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:1.093000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_0d2466a2c5bb87a61414d76a.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.129000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_464fbed89be14a274a4af22a.woff2')format("woff");}.ff3c{font-family:ff3c;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:ff3d;src:url('chunks/assets/font_beac71aaa34c3f8e710b3e55.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:1.108000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_0d2466a2c5bb87a61414d76a.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:1.129000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_775c816ea630729b627b2c60.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.093000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_beac71aaa34c3f8e710b3e55.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.108000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_775c816ea630729b627b2c60.woff2')format("woff");}.ff41{font-family:ff41;line-height:1.093000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_0d2466a2c5bb87a61414d76a.woff2')format("woff");}.ff42{font-family:ff42;line-height:1.129000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url('chunks/assets/font_beac71aaa34c3f8e710b3e55.woff2')format("woff");}.ff43{font-family:ff43;line-height:1.108000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_775c816ea630729b627b2c60.woff2')format("woff");}.ff44{font-family:ff44;line-height:1.093000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_0d2466a2c5bb87a61414d76a.woff2')format("woff");}.ff45{font-family:ff45;line-height:1.129000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46;src:url('chunks/assets/font_beac71aaa34c3f8e710b3e55.woff2')format("woff");}.ff46{font-family:ff46;line-height:1.108000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_775c816ea630729b627b2c60.woff2')format("woff");}.ff47{font-family:ff47;line-height:1.093000;font-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.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-15.586824px;}
.v1{vertical-align:-5.195664px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.552000px;}
.v2{vertical-align:28.490568px;}
.ls66{letter-spacing:-2.313360px;}
.ls65{letter-spacing:-2.247264px;}
.ls40{letter-spacing:-1.916784px;}
.ls68{letter-spacing:-1.784592px;}
.ls64{letter-spacing:-1.718496px;}
.ls67{letter-spacing:-1.652400px;}
.ls41{letter-spacing:-1.520208px;}
.ls58{letter-spacing:-1.454112px;}
.lsd{letter-spacing:-1.388016px;}
.ls25{letter-spacing:-1.321920px;}
.ls10{letter-spacing:-1.255824px;}
.ls27{letter-spacing:-1.189728px;}
.ls5e{letter-spacing:-1.134000px;}
.ls3a{letter-spacing:-1.123632px;}
.ls5c{letter-spacing:-1.080000px;}
.ls11{letter-spacing:-1.057536px;}
.ls12{letter-spacing:-0.991440px;}
.ls2d{letter-spacing:-0.972000px;}
.ls19{letter-spacing:-0.925344px;}
.ls5b{letter-spacing:-0.918000px;}
.ls35{letter-spacing:-0.864000px;}
.ls44{letter-spacing:-0.859248px;}
.ls53{letter-spacing:-0.793152px;}
.ls13{letter-spacing:-0.727056px;}
.ls2e{letter-spacing:-0.702000px;}
.ls31{letter-spacing:-0.660960px;}
.ls2c{letter-spacing:-0.648000px;}
.ls17{letter-spacing:-0.594864px;}
.ls2f{letter-spacing:-0.594000px;}
.ls61{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.528768px;}
.ls36{letter-spacing:-0.486000px;}
.ls5f{letter-spacing:-0.470448px;}
.ls1a{letter-spacing:-0.462672px;}
.ls18{letter-spacing:-0.396576px;}
.ls2b{letter-spacing:-0.378000px;}
.ls62{letter-spacing:-0.330480px;}
.ls30{letter-spacing:-0.324000px;}
.lsa{letter-spacing:-0.300240px;}
.ls23{letter-spacing:-0.270000px;}
.ls4d{letter-spacing:-0.264384px;}
.ls22{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.198288px;}
.ls4c{letter-spacing:-0.196560px;}
.ls24{letter-spacing:-0.162000px;}
.ls3c{letter-spacing:-0.156816px;}
.ls21{letter-spacing:-0.142560px;}
.ls8{letter-spacing:-0.132192px;}
.ls37{letter-spacing:-0.108000px;}
.ls56{letter-spacing:-0.104544px;}
.ls16{letter-spacing:-0.095040px;}
.lse{letter-spacing:-0.066096px;}
.ls9{letter-spacing:-0.060048px;}
.ls5d{letter-spacing:-0.054000px;}
.ls3b{letter-spacing:-0.052272px;}
.lsb{letter-spacing:0.000000px;}
.ls3d{letter-spacing:0.000432px;}
.ls45{letter-spacing:0.009072px;}
.ls52{letter-spacing:0.033048px;}
.ls60{letter-spacing:0.040608px;}
.ls48{letter-spacing:0.050112px;}
.ls57{letter-spacing:0.052272px;}
.ls34{letter-spacing:0.054000px;}
.ls4{letter-spacing:0.060048px;}
.lsf{letter-spacing:0.066096px;}
.ls0{letter-spacing:0.071712px;}
.ls5a{letter-spacing:0.081000px;}
.ls4e{letter-spacing:0.099144px;}
.ls29{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.120096px;}
.ls1b{letter-spacing:0.132192px;}
.ls2{letter-spacing:0.150120px;}
.ls1c{letter-spacing:0.162000px;}
.ls3{letter-spacing:0.180144px;}
.ls1e{letter-spacing:0.189000px;}
.ls26{letter-spacing:0.198288px;}
.ls1d{letter-spacing:0.216000px;}
.ls49{letter-spacing:0.396576px;}
.ls5{letter-spacing:0.750000px;}
.ls6{letter-spacing:2.691000px;}
.ls28{letter-spacing:7.128000px;}
.ls38{letter-spacing:7.560000px;}
.ls4b{letter-spacing:8.856000px;}
.ls43{letter-spacing:9.716112px;}
.ls14{letter-spacing:9.980496px;}
.ls50{letter-spacing:10.152000px;}
.ls42{letter-spacing:10.178784px;}
.ls4f{letter-spacing:10.971936px;}
.ls46{letter-spacing:11.038032px;}
.ls15{letter-spacing:11.698992px;}
.ls54{letter-spacing:12.312000px;}
.ls33{letter-spacing:12.366000px;}
.ls51{letter-spacing:12.744000px;}
.ls47{letter-spacing:12.822624px;}
.ls2a{letter-spacing:13.153104px;}
.ls39{letter-spacing:13.608000px;}
.ls55{letter-spacing:14.040000px;}
.ls59{letter-spacing:14.276736px;}
.ls32{letter-spacing:15.466464px;}
.ls3f{letter-spacing:16.193520px;}
.ls63{letter-spacing:16.325712px;}
.ls1f{letter-spacing:16.632000px;}
.ls3e{letter-spacing:16.656192px;}
.ls20{letter-spacing:17.713728px;}
.ls4a{letter-spacing:61.998048px;}
.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;}
}
.ws1b{word-spacing:-18.000000px;}
.ws95{word-spacing:-15.532560px;}
.ws12f{word-spacing:-14.276736px;}
.wsaa{word-spacing:-13.662000px;}
.wsa9{word-spacing:-7.614000px;}
.ws1e{word-spacing:-1.311000px;}
.ws1d{word-spacing:-0.375000px;}
.ws41{word-spacing:-0.270000px;}
.wscf{word-spacing:-0.264384px;}
.wsc4{word-spacing:-0.243000px;}
.ws3f{word-spacing:-0.216000px;}
.wsb7{word-spacing:-0.198288px;}
.ws117{word-spacing:-0.165240px;}
.ws80{word-spacing:-0.162000px;}
.ws134{word-spacing:-0.135000px;}
.ws12{word-spacing:-0.132192px;}
.wsa6{word-spacing:-0.108000px;}
.ws123{word-spacing:-0.104544px;}
.ws63{word-spacing:-0.066096px;}
.wsc5{word-spacing:-0.054000px;}
.ws98{word-spacing:-0.039312px;}
.ws16{word-spacing:0.000000px;}
.ws139{word-spacing:0.052272px;}
.wsa8{word-spacing:0.054000px;}
.ws21{word-spacing:0.066096px;}
.wsb2{word-spacing:0.104544px;}
.wsc3{word-spacing:0.108000px;}
.ws20{word-spacing:0.132192px;}
.ws109{word-spacing:0.157248px;}
.ws3d{word-spacing:0.162000px;}
.ws1c{word-spacing:0.198288px;}
.ws3e{word-spacing:0.216000px;}
.ws8{word-spacing:0.240192px;}
.ws14f{word-spacing:0.264384px;}
.ws7d{word-spacing:0.270000px;}
.ws6d{word-spacing:0.324000px;}
.ws23{word-spacing:0.330480px;}
.ws29{word-spacing:0.396576px;}
.ws13a{word-spacing:0.418176px;}
.wsa5{word-spacing:0.432000px;}
.wsf{word-spacing:0.462672px;}
.ws14c{word-spacing:0.486000px;}
.ws22{word-spacing:0.528768px;}
.ws71{word-spacing:0.540000px;}
.ws6e{word-spacing:0.594000px;}
.ws91{word-spacing:0.594864px;}
.ws70{word-spacing:0.648000px;}
.ws1a{word-spacing:0.660960px;}
.wsf5{word-spacing:0.702000px;}
.ws11c{word-spacing:0.727056px;}
.wsd5{word-spacing:0.793152px;}
.ws99{word-spacing:0.810000px;}
.ws28{word-spacing:0.859248px;}
.ws130{word-spacing:0.864000px;}
.ws6f{word-spacing:0.918000px;}
.ws19{word-spacing:0.925344px;}
.ws18{word-spacing:0.991440px;}
.ws132{word-spacing:1.026000px;}
.wsaf{word-spacing:1.057536px;}
.ws135{word-spacing:1.080000px;}
.ws64{word-spacing:1.123632px;}
.ws17{word-spacing:1.189728px;}
.ws53{word-spacing:1.255824px;}
.ws10{word-spacing:1.321920px;}
.ws126{word-spacing:1.388016px;}
.wsbd{word-spacing:1.454112px;}
.ws165{word-spacing:1.586304px;}
.ws15b{word-spacing:1.652400px;}
.ws166{word-spacing:1.718496px;}
.wsbc{word-spacing:1.850688px;}
.ws15c{word-spacing:2.181168px;}
.ws15d{word-spacing:2.247264px;}
.ws137{word-spacing:7.506000px;}
.ws136{word-spacing:7.857000px;}
.wsf8{word-spacing:8.046000px;}
.wsfb{word-spacing:8.316000px;}
.ws131{word-spacing:8.375400px;}
.wsee{word-spacing:8.802000px;}
.wsf6{word-spacing:8.856000px;}
.ws40{word-spacing:8.910000px;}
.ws14d{word-spacing:9.018000px;}
.wsa1{word-spacing:9.234000px;}
.ws149{word-spacing:9.288000px;}
.wsc7{word-spacing:9.342000px;}
.wsc6{word-spacing:9.666000px;}
.ws13e{word-spacing:9.720000px;}
.ws9a{word-spacing:9.774000px;}
.wsae{word-spacing:9.815256px;}
.wsfd{word-spacing:10.044000px;}
.ws37{word-spacing:10.086250px;}
.ws7b{word-spacing:10.098000px;}
.ws13d{word-spacing:10.152000px;}
.ws7e{word-spacing:10.206000px;}
.wsff{word-spacing:10.260000px;}
.wsfe{word-spacing:10.427400px;}
.ws7c{word-spacing:10.530000px;}
.ws7a{word-spacing:10.535400px;}
.wsfc{word-spacing:10.557000px;}
.ws14a{word-spacing:10.578600px;}
.ws100{word-spacing:10.584000px;}
.ws81{word-spacing:10.638000px;}
.wsf9{word-spacing:10.692000px;}
.wsda{word-spacing:10.819915px;}
.wse8{word-spacing:10.932278px;}
.ws11d{word-spacing:10.945498px;}
.wsb8{word-spacing:10.952107px;}
.ws13f{word-spacing:10.962000px;}
.wsa4{word-spacing:11.016000px;}
.ws72{word-spacing:11.070000px;}
.ws14{word-spacing:11.077690px;}
.ws11f{word-spacing:11.084299px;}
.ws4d{word-spacing:11.117347px;}
.ws105{word-spacing:11.123654px;}
.wsa3{word-spacing:11.172600px;}
.ws3a{word-spacing:11.196662px;}
.wsce{word-spacing:11.209882px;}
.ws58{word-spacing:11.216491px;}
.ws146{word-spacing:11.233253px;}
.wsdc{word-spacing:11.348683px;}
.ws39{word-spacing:11.381731px;}
.wsa2{word-spacing:11.394000px;}
.wsac{word-spacing:11.448000px;}
.wsdb{word-spacing:11.500704px;}
.ws7f{word-spacing:11.502000px;}
.ws5a{word-spacing:11.507314px;}
.ws8e{word-spacing:11.513923px;}
.ws4e{word-spacing:11.540362px;}
.ws78{word-spacing:11.610000px;}
.ws156{word-spacing:11.619677px;}
.ws155{word-spacing:11.626286px;}
.ws4c{word-spacing:11.646115px;}
.ws122{word-spacing:11.661883px;}
.ws121{word-spacing:11.703701px;}
.wseb{word-spacing:11.712211px;}
.ws1f{word-spacing:11.713680px;}
.ws3b{word-spacing:11.718432px;}
.ws2b{word-spacing:11.758478px;}
.wsdd{word-spacing:11.771698px;}
.ws158{word-spacing:11.811355px;}
.wsd9{word-spacing:11.826000px;}
.ws59{word-spacing:11.870842px;}
.wsed{word-spacing:11.874600px;}
.ws154{word-spacing:11.880000px;}
.wsb6{word-spacing:11.890670px;}
.ws38{word-spacing:11.897280px;}
.ws128{word-spacing:11.943547px;}
.ws129{word-spacing:11.969986px;}
.wscc{word-spacing:11.983205px;}
.ws24{word-spacing:12.055910px;}
.ws152{word-spacing:12.062520px;}
.wsec{word-spacing:12.075739px;}
.ws161{word-spacing:12.108787px;}
.wsd8{word-spacing:12.194712px;}
.ws9d{word-spacing:12.204000px;}
.ws16b{word-spacing:12.207931px;}
.ws32{word-spacing:12.240979px;}
.wsea{word-spacing:12.247589px;}
.wsa0{word-spacing:12.258000px;}
.ws133{word-spacing:12.306600px;}
.wsc9{word-spacing:12.312000px;}
.ws157{word-spacing:12.320294px;}
.ws142{word-spacing:12.326904px;}
.ws127{word-spacing:12.359952px;}
.ws9f{word-spacing:12.366000px;}
.ws16f{word-spacing:12.412829px;}
.wsc8{word-spacing:12.420000px;}
.ws118{word-spacing:12.426048px;}
.wsbe{word-spacing:12.492144px;}
.ws119{word-spacing:12.545021px;}
.ws11b{word-spacing:12.571459px;}
.wsd1{word-spacing:12.630125px;}
.ws162{word-spacing:12.644165px;}
.wsdf{word-spacing:12.670603px;}
.ws9e{word-spacing:12.690000px;}
.wsa7{word-spacing:12.744000px;}
.wsd0{word-spacing:12.756528px;}
.ws148{word-spacing:12.789576px;}
.ws9b{word-spacing:12.798000px;}
.ws12a{word-spacing:12.809405px;}
.ws76{word-spacing:12.825000px;}
.ws82{word-spacing:12.842453px;}
.wsfa{word-spacing:12.846600px;}
.wsb1{word-spacing:12.853685px;}
.ws9c{word-spacing:12.906000px;}
.wsde{word-spacing:12.921768px;}
.wsf0{word-spacing:12.941597px;}
.ws2{word-spacing:12.948206px;}
.ws3{word-spacing:12.954816px;}
.ws75{word-spacing:12.960000px;}
.wsab{word-spacing:13.014000px;}
.wsb4{word-spacing:13.053960px;}
.ws101{word-spacing:13.062600px;}
.wsbf{word-spacing:13.065494px;}
.ws11a{word-spacing:13.073789px;}
.ws16e{word-spacing:13.080398px;}
.wsd7{word-spacing:13.100227px;}
.ws55{word-spacing:13.106837px;}
.wsad{word-spacing:13.116600px;}
.ws73{word-spacing:13.122000px;}
.ws42{word-spacing:13.170600px;}
.ws74{word-spacing:13.176000px;}
.wsb5{word-spacing:13.186152px;}
.ws84{word-spacing:13.199371px;}
.ws85{word-spacing:13.219200px;}
.ws77{word-spacing:13.230000px;}
.wsf2{word-spacing:13.239029px;}
.ws83{word-spacing:13.344782px;}
.wse0{word-spacing:13.358002px;}
.wsf4{word-spacing:13.371221px;}
.ws49{word-spacing:13.490194px;}
.wsb9{word-spacing:13.495637px;}
.ws33{word-spacing:13.536461px;}
.ws4f{word-spacing:13.543070px;}
.ws43{word-spacing:13.554000px;}
.wsf7{word-spacing:13.608000px;}
.ws54{word-spacing:13.615776px;}
.ws35{word-spacing:13.622386px;}
.ws115{word-spacing:13.655434px;}
.ws102{word-spacing:13.662000px;}
.ws120{word-spacing:13.675262px;}
.ws15e{word-spacing:13.781016px;}
.ws114{word-spacing:13.787626px;}
.ws15f{word-spacing:13.807454px;}
.ws12d{word-spacing:13.820674px;}
.ws14b{word-spacing:13.825944px;}
.ws8d{word-spacing:13.919818px;}
.wsf3{word-spacing:13.926427px;}
.ws124{word-spacing:13.972694px;}
.ws4a{word-spacing:14.052010px;}
.ws16c{word-spacing:14.085058px;}
.ws11{word-spacing:14.104886px;}
.ws125{word-spacing:14.131325px;}
.ws2e{word-spacing:14.217250px;}
.ws140{word-spacing:14.237078px;}
.ws13c{word-spacing:14.349442px;}
.ws159{word-spacing:14.356051px;}
.ws13b{word-spacing:14.369270px;}
.ws88{word-spacing:14.389099px;}
.ws56{word-spacing:14.408928px;}
.ws8b{word-spacing:14.415538px;}
.ws141{word-spacing:14.461805px;}
.ws12b{word-spacing:14.475024px;}
.ws10f{word-spacing:14.481634px;}
.ws151{word-spacing:14.541120px;}
.ws12c{word-spacing:14.627045px;}
.wscd{word-spacing:14.653483px;}
.ws12e{word-spacing:14.673312px;}
.wsa{word-spacing:14.675731px;}
.ws6{word-spacing:14.729774px;}
.ws8a{word-spacing:14.779066px;}
.ws5{word-spacing:14.789822px;}
.ws16a{word-spacing:14.805504px;}
.ws147{word-spacing:14.831942px;}
.ws5b{word-spacing:14.838552px;}
.ws9{word-spacing:14.915923px;}
.ws143{word-spacing:14.917867px;}
.wsb{word-spacing:15.048029px;}
.wsf1{word-spacing:15.083107px;}
.ws6c{word-spacing:15.102936px;}
.wsd4{word-spacing:15.129374px;}
.ws10c{word-spacing:15.215299px;}
.ws89{word-spacing:15.221909px;}
.ws57{word-spacing:15.228518px;}
.ws108{word-spacing:15.248347px;}
.wse7{word-spacing:15.261566px;}
.ws93{word-spacing:15.268176px;}
.wsc{word-spacing:15.276211px;}
.ws6b{word-spacing:15.334272px;}
.ws15{word-spacing:15.380539px;}
.ws94{word-spacing:15.400368px;}
.ws90{word-spacing:15.440026px;}
.ws107{word-spacing:15.512731px;}
.ws10b{word-spacing:15.525950px;}
.ws144{word-spacing:15.644923px;}
.wsc1{word-spacing:15.704410px;}
.ws16d{word-spacing:15.724238px;}
.ws5d{word-spacing:15.737458px;}
.ws4b{word-spacing:15.770506px;}
.wsd2{word-spacing:15.777115px;}
.ws92{word-spacing:15.796944px;}
.ws60{word-spacing:15.836602px;}
.ws153{word-spacing:15.863040px;}
.ws5f{word-spacing:15.869650px;}
.wsd6{word-spacing:15.876259px;}
.ws167{word-spacing:15.935746px;}
.ws13{word-spacing:15.948965px;}
.wse6{word-spacing:15.975403px;}
.ws15a{word-spacing:15.982013px;}
.ws96{word-spacing:16.001842px;}
.ws2f{word-spacing:16.081157px;}
.wsef{word-spacing:16.100986px;}
.ws6a{word-spacing:16.107595px;}
.ws61{word-spacing:16.114205px;}
.ws31{word-spacing:16.134034px;}
.wse3{word-spacing:16.213349px;}
.wsd{word-spacing:16.239787px;}
.ws67{word-spacing:16.246397px;}
.ws8f{word-spacing:16.259616px;}
.wsba{word-spacing:16.266226px;}
.ws27{word-spacing:16.272835px;}
.ws171{word-spacing:16.279445px;}
.wse9{word-spacing:16.292664px;}
.ws170{word-spacing:16.299274px;}
.ws62{word-spacing:16.371979px;}
.ws8c{word-spacing:16.378589px;}
.ws5c{word-spacing:16.398418px;}
.ws68{word-spacing:16.405027px;}
.ws2a{word-spacing:16.411637px;}
.ws86{word-spacing:16.424856px;}
.ws138{word-spacing:16.490952px;}
.wse{word-spacing:16.504171px;}
.ws30{word-spacing:16.510781px;}
.wsc0{word-spacing:16.524000px;}
.ws0{word-spacing:16.530610px;}
.ws163{word-spacing:16.537219px;}
.wsb3{word-spacing:16.543829px;}
.ws44{word-spacing:16.557048px;}
.ws2c{word-spacing:16.563658px;}
.ws168{word-spacing:16.590096px;}
.ws164{word-spacing:16.636363px;}
.ws25{word-spacing:16.642973px;}
.ws5e{word-spacing:16.656192px;}
.ws36{word-spacing:16.689240px;}
.ws50{word-spacing:16.695850px;}
.ws51{word-spacing:16.702459px;}
.ws145{word-spacing:16.709069px;}
.ws160{word-spacing:16.755336px;}
.ws26{word-spacing:16.788384px;}
.ws66{word-spacing:16.808213px;}
.ws169{word-spacing:16.814822px;}
.wsd3{word-spacing:16.821432px;}
.ws52{word-spacing:16.828042px;}
.ws97{word-spacing:16.847870px;}
.ws87{word-spacing:16.867699px;}
.ws46{word-spacing:16.940405px;}
.ws69{word-spacing:16.947014px;}
.wse1{word-spacing:16.953624px;}
.wsbb{word-spacing:16.960234px;}
.wse2{word-spacing:16.980062px;}
.ws110{word-spacing:16.993282px;}
.ws103{word-spacing:16.999891px;}
.ws104{word-spacing:17.046158px;}
.wse4{word-spacing:17.059378px;}
.ws45{word-spacing:17.072597px;}
.ws47{word-spacing:17.118864px;}
.wscb{word-spacing:17.125474px;}
.ws116{word-spacing:17.132083px;}
.ws34{word-spacing:17.165131px;}
.ws48{word-spacing:17.257666px;}
.ws10d{word-spacing:17.264275px;}
.ws10e{word-spacing:17.416296px;}
.wsca{word-spacing:17.429515px;}
.ws111{word-spacing:17.462563px;}
.ws106{word-spacing:17.502221px;}
.ws10a{word-spacing:17.508830px;}
.ws113{word-spacing:17.561707px;}
.ws112{word-spacing:17.667461px;}
.ws2d{word-spacing:17.859139px;}
.ws1{word-spacing:17.992541px;}
.wse5{word-spacing:18.295373px;}
.ws150{word-spacing:20.284862px;}
.ws65{word-spacing:21.315960px;}
.wsb0{word-spacing:21.560515px;}
.ws11e{word-spacing:23.179867px;}
.ws3c{word-spacing:24.894000px;}
.wsc2{word-spacing:25.866000px;}
.ws79{word-spacing:43.740000px;}
.ws14e{word-spacing:63.359626px;}
.ws7{word-spacing:197.557920px;}
.ws4{word-spacing:224.219232px;}
._18{margin-left:-16.137403px;}
._19{margin-left:-14.580648px;}
._1b{margin-left:-13.281710px;}
._c{margin-left:-8.186400px;}
._1a{margin-left:-6.994339px;}
._d{margin-left:-4.052249px;}
._b{margin-left:-2.671200px;}
._3{margin-left:-1.315051px;}
._7{width:1.248869px;}
._13{width:2.492035px;}
._1c{width:4.086941px;}
._11{width:6.480000px;}
._12{width:7.487208px;}
._1{width:8.658922px;}
._2{width:9.793829px;}
._8{width:10.849248px;}
._14{width:11.870842px;}
._9{width:13.028947px;}
._4{width:14.141304px;}
._0{width:15.984778px;}
._a{width:17.224618px;}
._f{width:19.095134px;}
._15{width:22.690757px;}
._1f{width:24.376550px;}
._1e{width:31.303066px;}
._17{width:39.312000px;}
._16{width:42.282000px;}
._1d{width:61.971610px;}
._5{width:126.316973px;}
._6{width:248.491757px;}
._10{width:486.011707px;}
._e{width:648.505440px;}
.fc2{color:transparent;}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(4,6,6);}
.fs8{font-size:39.312000px;}
.fs6{font-size:47.520000px;}
.fs9{font-size:52.272000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:60.048000px;}
.fs0{font-size:66.096000px;}
.fs5{font-size:69.000000px;}
.fs1{font-size:71.712000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:75.000000px;}
.y0{bottom:0.000000px;}
.y18{bottom:92.480250px;}
.y17{bottom:114.080250px;}
.y1{bottom:118.575150px;}
.y118{bottom:165.339150px;}
.y9b{bottom:165.447300px;}
.y46{bottom:165.879150px;}
.y74{bottom:165.879300px;}
.y5a{bottom:173.699214px;}
.y148{bottom:173.763474px;}
.y16{bottom:178.819320px;}
.y45{bottom:182.403150px;}
.y8a{bottom:182.403300px;}
.y73{bottom:182.835300px;}
.y40{bottom:193.247106px;}
.y147{bottom:193.311366px;}
.y15{bottom:198.367212px;}
.y44{bottom:199.035150px;}
.y89{bottom:199.035300px;}
.y72{bottom:199.899300px;}
.y3f{bottom:212.794998px;}
.y146{bottom:212.859258px;}
.y43{bottom:215.559150px;}
.yab{bottom:215.559300px;}
.y88{bottom:215.775300px;}
.y71{bottom:216.855300px;}
.y14{bottom:217.915104px;}
.y42{bottom:232.083150px;}
.yaa{bottom:232.083300px;}
.y87{bottom:232.299300px;}
.y3e{bottom:232.342890px;}
.y145{bottom:232.390560px;}
.y70{bottom:233.919300px;}
.y13{bottom:237.363852px;}
.y41{bottom:248.715150px;}
.y86{bottom:248.715300px;}
.y6f{bottom:250.875300px;}
.y3d{bottom:251.890782px;}
.y12{bottom:256.911744px;}
.ye8{bottom:265.239150px;}
.y85{bottom:265.239300px;}
.y6e{bottom:267.939300px;}
.y144{bottom:271.387200px;}
.y11{bottom:276.459636px;}
.ye7{bottom:281.763150px;}
.ya9{bottom:281.763300px;}
.y84{bottom:281.979300px;}
.y6d{bottom:284.895300px;}
.y199{bottom:289.515930px;}
.y3c{bottom:290.887422px;}
.y143{bottom:290.935092px;}
.y4f{bottom:290.935158px;}
.y10{bottom:296.007528px;}
.ye6{bottom:298.395150px;}
.y83{bottom:298.395300px;}
.y6c{bottom:301.959300px;}
.y198{bottom:308.634198px;}
.y3b{bottom:310.435314px;}
.y142{bottom:310.482984px;}
.y4e{bottom:310.582194px;}
.ye5{bottom:314.919150px;}
.y82{bottom:314.919300px;}
.yf{bottom:315.555420px;}
.y6b{bottom:318.915300px;}
.ye1{bottom:323.205558px;}
.y197{bottom:327.636798px;}
.y3a{bottom:329.983206px;}
.y141{bottom:330.030876px;}
.y4d{bottom:330.030942px;}
.y59{bottom:330.082350px;}
.ye4{bottom:331.443150px;}
.ya8{bottom:331.443300px;}
.y81{bottom:331.659300px;}
.ye{bottom:335.103312px;}
.y6a{bottom:335.979300px;}
.ye0{bottom:342.208158px;}
.y196{bottom:346.755066px;}
.ye3{bottom:348.075150px;}
.y80{bottom:348.075300px;}
.y39{bottom:349.531098px;}
.y140{bottom:349.578768px;}
.y4c{bottom:349.578834px;}
.y69{bottom:352.935300px;}
.yd{bottom:354.552060px;}
.ydf{bottom:361.326426px;}
.ye2{bottom:364.599150px;}
.y7f{bottom:364.599300px;}
.y149{bottom:364.707300px;}
.y174{bottom:365.792700px;}
.y195{bottom:365.873334px;}
.y58{bottom:369.078990px;}
.y13f{bottom:369.126660px;}
.y4b{bottom:369.126726px;}
.y68{bottom:370.215300px;}
.yde{bottom:380.444694px;}
.y7e{bottom:381.123300px;}
.y173{bottom:384.801132px;}
.y194{bottom:384.875934px;}
.y67{bottom:386.955300px;}
.y38{bottom:388.527738px;}
.y13e{bottom:388.575408px;}
.y1b9{bottom:392.750580px;}
.yc{bottom:393.647844px;}
.y7d{bottom:397.755300px;}
.ydd{bottom:399.447294px;}
.yf0{bottom:403.930956px;}
.y193{bottom:403.994202px;}
.y66{bottom:404.019300px;}
.y37{bottom:408.075630px;}
.y13d{bottom:408.106884px;}
.y4a{bottom:408.123366px;}
.y1b8{bottom:411.439224px;}
.ya7{bottom:414.279300px;}
.y7c{bottom:414.711300px;}
.ydc{bottom:418.565562px;}
.y65{bottom:420.975300px;}
.yef{bottom:423.032700px;}
.y192{bottom:423.112470px;}
.y36{bottom:427.623522px;}
.y49{bottom:427.671258px;}
.y154{bottom:427.671516px;}
.y1b7{bottom:430.127868px;}
.ya6{bottom:430.803300px;}
.y7b{bottom:431.775300px;}
.ydb{bottom:437.683830px;}
.y64{bottom:438.255300px;}
.yee{bottom:442.035624px;}
.y191{bottom:442.115070px;}
.y35{bottom:447.171414px;}
.y13c{bottom:447.202668px;}
.y153{bottom:447.219408px;}
.y48{bottom:447.224658px;}
.ya5{bottom:447.435300px;}
.y7a{bottom:448.731300px;}
.y1b6{bottom:448.915656px;}
.y172{bottom:448.947300px;}
.y171{bottom:450.244878px;}
.y63{bottom:454.995300px;}
.yda{bottom:456.686430px;}
.yed{bottom:461.153892px;}
.y190{bottom:461.233338px;}
.yf2{bottom:463.959300px;}
.y79{bottom:465.795300px;}
.y34{bottom:466.719306px;}
.y13b{bottom:466.750560px;}
.y152{bottom:466.758768px;}
.y57{bottom:466.818450px;}
.y1b5{bottom:467.604300px;}
.y170{bottom:469.363146px;}
.y62{bottom:472.059300px;}
.yd9{bottom:475.788174px;}
.yec{bottom:480.272160px;}
.y18f{bottom:480.351606px;}
.yf1{bottom:480.483300px;}
.y78{bottom:482.751300px;}
.y33{bottom:486.267198px;}
.y1b4{bottom:486.292944px;}
.y13a{bottom:486.298452px;}
.y16f{bottom:488.481414px;}
.y61{bottom:489.015300px;}
.yd8{bottom:494.889918px;}
.yb{bottom:496.470216px;}
.yeb{bottom:499.274760px;}
.y18e{bottom:499.354206px;}
.y77{bottom:499.815300px;}
.y47{bottom:502.299150px;}
.y1b3{bottom:505.080732px;}
.y32{bottom:505.715946px;}
.ybd{bottom:505.747092px;}
.y151{bottom:505.755408px;}
.y60{bottom:506.079300px;}
.y16e{bottom:507.484014px;}
.yd7{bottom:513.892518px;}
.y18d{bottom:518.472474px;}
.y5f{bottom:523.035300px;}
.y1b2{bottom:523.769376px;}
.y31{bottom:525.263838px;}
.ybc{bottom:525.294984px;}
.y139{bottom:525.295092px;}
.y150{bottom:525.302328px;}
.y16d{bottom:526.602282px;}
.yd6{bottom:532.994262px;}
.y131{bottom:535.235694px;}
.ya{bottom:535.681560px;}
.y10b{bottom:537.508164px;}
.y18c{bottom:537.590742px;}
.y5e{bottom:540.099300px;}
.y1b1{bottom:542.458020px;}
.y56{bottom:544.811730px;}
.ybb{bottom:544.842876px;}
.y138{bottom:544.842984px;}
.y30{bottom:544.910874px;}
.y16c{bottom:545.720550px;}
.yea{bottom:547.227408px;}
.yd5{bottom:552.112530px;}
.y130{bottom:554.783586px;}
.y10a{bottom:556.510764px;}
.y18b{bottom:556.593342px;}
.y5d{bottom:557.055300px;}
.y1b0{bottom:561.245808px;}
.y55{bottom:564.359622px;}
.yba{bottom:564.390768px;}
.y137{bottom:564.390876px;}
.y14f{bottom:564.398112px;}
.y16b{bottom:564.721920px;}
.ye9{bottom:566.775300px;}
.yd4{bottom:571.115130px;}
.y5c{bottom:574.119300px;}
.y12f{bottom:574.331478px;}
.y109{bottom:575.629032px;}
.y18a{bottom:575.810754px;}
.y1af{bottom:579.934452px;}
.y2f{bottom:583.907514px;}
.y9a{bottom:583.930734px;}
.yb9{bottom:583.938660px;}
.y136{bottom:583.938768px;}
.y14e{bottom:583.946004px;}
.y9{bottom:586.437132px;}
.yd3{bottom:590.216874px;}
.y5b{bottom:591.075300px;}
.y12e{bottom:593.780226px;}
.y108{bottom:594.756006px;}
.y189{bottom:594.813354px;}
.y1ae{bottom:598.623096px;}
.y16a{bottom:602.958456px;}
.y99{bottom:603.478626px;}
.yb8{bottom:603.486552px;}
.y135{bottom:603.486660px;}
.y14d{bottom:603.493896px;}
.y8{bottom:604.466544px;}
.yd2{bottom:609.335142px;}
.y12d{bottom:613.328118px;}
.y107{bottom:613.758606px;}
.y188{bottom:613.815954px;}
.y1ad{bottom:617.410884px;}
.y1d0{bottom:622.028382px;}
.y169{bottom:622.076724px;}
.y54{bottom:622.904154px;}
.yb7{bottom:622.918884px;}
.y98{bottom:622.927374px;}
.y134{bottom:622.935408px;}
.y14c{bottom:622.942644px;}
.yd1{bottom:628.337742px;}
.y12c{bottom:632.876010px;}
.y106{bottom:632.876874px;}
.y187{bottom:632.934222px;}
.y1ac{bottom:636.099528px;}
.y1cf{bottom:640.717026px;}
.y168{bottom:641.079324px;}
.y2e{bottom:642.452046px;}
.y97{bottom:642.475266px;}
.y133{bottom:642.490320px;}
.yb6{bottom:642.565920px;}
.y7{bottom:643.677888px;}
.yd0{bottom:647.456010px;}
.y186{bottom:652.052490px;}
.y105{bottom:652.094286px;}
.y1ab{bottom:654.788172px;}
.y1ce{bottom:659.504814px;}
.y167{bottom:660.197592px;}
.y6{bottom:661.707300px;}
.y2d{bottom:661.999938px;}
.y96{bottom:662.023158px;}
.ycf{bottom:666.574278px;}
.y12b{bottom:670.996878px;}
.y185{bottom:671.055090px;}
.y1aa{bottom:673.575960px;}
.y14b{bottom:676.827408px;}
.y1cd{bottom:678.193458px;}
.y166{bottom:679.200192px;}
.y2c{bottom:681.547830px;}
.yb5{bottom:681.562560px;}
.y95{bottom:681.571050px;}
.yce{bottom:685.576878px;}
.y12a{bottom:690.115146px;}
.y104{bottom:690.116010px;}
.y184{bottom:690.173358px;}
.y132{bottom:690.327300px;}
.y1a9{bottom:692.264604px;}
.y14a{bottom:696.375300px;}
.y1cc{bottom:696.882102px;}
.y165{bottom:698.318460px;}
.y2b{bottom:701.095722px;}
.y94{bottom:701.118942px;}
.ycd{bottom:704.695146px;}
.y129{bottom:709.233414px;}
.y183{bottom:709.390770px;}
.y1a8{bottom:710.953248px;}
.y1cb{bottom:715.669890px;}
.y164{bottom:717.436728px;}
.y2a{bottom:720.643614px;}
.y93{bottom:720.666834px;}
.ycc{bottom:723.912558px;}
.y128{bottom:728.236014px;}
.y1a7{bottom:729.741036px;}
.y1ca{bottom:734.358534px;}
.y163{bottom:736.439328px;}
.y29{bottom:740.092362px;}
.yb4{bottom:740.107092px;}
.ya4{bottom:740.115516px;}
.ycb{bottom:742.816014px;}
.y127{bottom:747.354282px;}
.y103{bottom:747.355146px;}
.y182{bottom:747.412494px;}
.y1a6{bottom:748.429680px;}
.y1c9{bottom:753.047178px;}
.y162{bottom:755.557596px;}
.y28{bottom:759.640254px;}
.yb3{bottom:759.654984px;}
.ya3{bottom:759.663408px;}
.y92{bottom:759.663474px;}
.yca{bottom:761.934282px;}
.y5{bottom:766.458768px;}
.y126{bottom:766.472550px;}
.y102{bottom:766.473414px;}
.y1a5{bottom:767.118324px;}
.y1c8{bottom:771.834966px;}
.y161{bottom:774.675864px;}
.y53{bottom:779.188146px;}
.yb2{bottom:779.202876px;}
.ya2{bottom:779.203200px;}
.y27{bottom:779.287290px;}
.yc9{bottom:781.052550px;}
.y125{bottom:785.474610px;}
.y101{bottom:785.476014px;}
.y4{bottom:786.006660px;}
.y1c7{bottom:790.523610px;}
.y160{bottom:793.678464px;}
.y52{bottom:798.736038px;}
.yb1{bottom:798.750768px;}
.yc8{bottom:800.056230px;}
.y117{bottom:804.592164px;}
.y100{bottom:804.594282px;}
.y1a4{bottom:804.594756px;}
.y181{bottom:804.651630px;}
.y1c6{bottom:809.212254px;}
.y15f{bottom:812.796732px;}
.y26{bottom:818.283930px;}
.y91{bottom:818.298984px;}
.yb0{bottom:818.397804px;}
.y116{bottom:823.710432px;}
.y124{bottom:823.711146px;}
.y180{bottom:823.769898px;}
.yff{bottom:823.811694px;}
.y3{bottom:825.003300px;}
.y1c5{bottom:828.000042px;}
.y15e{bottom:831.873612px;}
.y76{bottom:837.831822px;}
.yaf{bottom:837.846552px;}
.y90{bottom:837.846876px;}
.yc7{bottom:838.292766px;}
.y115{bottom:842.713032px;}
.y123{bottom:842.713746px;}
.yfe{bottom:842.714610px;}
.y17f{bottom:842.772498px;}
.y1c4{bottom:846.688686px;}
.y1a{bottom:856.771650px;}
.y51{bottom:857.280570px;}
.yc6{bottom:857.295366px;}
.yae{bottom:857.295582px;}
.y8f{bottom:857.295624px;}
.y122{bottom:861.832014px;}
.yfd{bottom:861.832878px;}
.y1a3{bottom:861.833892px;}
.y114{bottom:861.834756px;}
.y17e{bottom:861.874242px;}
.y2{bottom:863.019300px;}
.y1c3{bottom:865.377330px;}
.y15d{bottom:871.944312px;}
.y25{bottom:876.828462px;}
.y8e{bottom:876.843516px;}
.y75{bottom:876.927606px;}
.y121{bottom:880.950282px;}
.yfc{bottom:880.951146px;}
.y1a2{bottom:880.952160px;}
.y113{bottom:880.953024px;}
.y17d{bottom:880.992510px;}
.y1c2{bottom:884.165118px;}
.y15c{bottom:892.037496px;}
.y24{bottom:896.376354px;}
.yc5{bottom:896.383308px;}
.yad{bottom:896.391366px;}
.y8d{bottom:896.391408px;}
.y19{bottom:899.031600px;}
.y120{bottom:899.952882px;}
.yfb{bottom:899.953746px;}
.y1a1{bottom:899.954760px;}
.y112{bottom:899.955624px;}
.y17c{bottom:899.995110px;}
.y1c1{bottom:902.853762px;}
.y15b{bottom:912.130680px;}
.y23{bottom:915.924246px;}
.yc4{bottom:915.931200px;}
.ya1{bottom:915.934332px;}
.yac{bottom:915.939258px;}
.y8c{bottom:915.939516px;}
.y11f{bottom:919.070760px;}
.yfa{bottom:919.072014px;}
.y1a0{bottom:919.073028px;}
.y17b{bottom:919.113378px;}
.y1c0{bottom:921.542406px;}
.y15a{bottom:932.223864px;}
.y22{bottom:935.472138px;}
.yc3{bottom:935.479092px;}
.y8b{bottom:935.487408px;}
.yf9{bottom:938.190282px;}
.y19f{bottom:938.191296px;}
.y111{bottom:938.192160px;}
.y17a{bottom:938.215122px;}
.y1bf{bottom:940.330194px;}
.y159{bottom:952.317048px;}
.y21{bottom:955.020030px;}
.yc2{bottom:955.026984px;}
.ya0{bottom:955.030116px;}
.y11e{bottom:957.191628px;}
.yf8{bottom:957.192882px;}
.y19e{bottom:957.193896px;}
.y110{bottom:957.194760px;}
.y179{bottom:957.217722px;}
.y1be{bottom:959.018838px;}
.y158{bottom:972.294564px;}
.y20{bottom:974.468778px;}
.yc1{bottom:974.475732px;}
.y9f{bottom:974.478864px;}
.y11d{bottom:976.309896px;}
.y19d{bottom:976.312164px;}
.y10f{bottom:976.313028px;}
.yf7{bottom:976.318752px;}
.y178{bottom:976.319466px;}
.y1bd{bottom:977.707482px;}
.y157{bottom:992.387748px;}
.y1f{bottom:994.016670px;}
.yc0{bottom:994.023624px;}
.y9e{bottom:994.026756px;}
.y11c{bottom:995.428164px;}
.y19c{bottom:995.430432px;}
.y10e{bottom:995.431296px;}
.yf6{bottom:995.437020px;}
.y177{bottom:995.437734px;}
.y1bc{bottom:996.495270px;}
.y156{bottom:1012.480932px;}
.y1e{bottom:1013.564562px;}
.ybf{bottom:1013.571516px;}
.y50{bottom:1013.663706px;}
.y9d{bottom:1013.673792px;}
.y11b{bottom:1014.430764px;}
.y19b{bottom:1014.433032px;}
.y10d{bottom:1014.433896px;}
.yf5{bottom:1014.439620px;}
.y176{bottom:1014.440334px;}
.y1bb{bottom:1015.183914px;}
.y155{bottom:1032.574116px;}
.y1d{bottom:1033.112454px;}
.ybe{bottom:1033.119408px;}
.y19a{bottom:1033.542078px;}
.y11a{bottom:1033.549032px;}
.y10c{bottom:1033.552164px;}
.yf4{bottom:1033.557888px;}
.y175{bottom:1033.558602px;}
.y1ba{bottom:1033.872558px;}
.y1c{bottom:1052.660346px;}
.y119{bottom:1052.661426px;}
.y9c{bottom:1052.670432px;}
.yf3{bottom:1052.776014px;}
.y1b{bottom:1101.591300px;}
.hb{height:42.292800px;}
.ha{height:45.988770px;}
.hd{height:47.304000px;}
.hc{height:48.060000px;}
.h11{height:48.492000px;}
.hf{height:49.842000px;}
.h8{height:49.992188px;}
.h6{height:53.442720px;}
.h5{height:55.424304px;}
.h2{height:57.900096px;}
.h4{height:58.825440px;}
.h20{height:58.829328px;}
.h23{height:58.830360px;}
.h12{height:58.886520px;}
.h1b{height:59.288112px;}
.h7{height:61.006608px;}
.h15{height:61.026480px;}
.h19{height:61.034424px;}
.h16{height:61.039008px;}
.h17{height:61.066656px;}
.h9{height:63.075000px;}
.h1e{height:63.469872px;}
.h24{height:63.478080px;}
.he{height:63.478248px;}
.h1d{height:63.496824px;}
.h22{height:63.498216px;}
.h1c{height:63.498384px;}
.h13{height:63.498816px;}
.h1f{height:63.502440px;}
.h1a{height:63.531648px;}
.h14{height:63.532944px;}
.h21{height:63.533208px;}
.h25{height:63.536568px;}
.h18{height:63.565344px;}
.h10{height:63.624696px;}
.h3{height:66.190176px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:106.272000px;}
.x12{left:119.124000px;}
.x2{left:124.848000px;}
.xe{left:125.928000px;}
.x8{left:127.556640px;}
.x9{left:128.856000px;}
.x10{left:142.452000px;}
.x11{left:163.620000px;}
.xa{left:199.970400px;}
.x7{left:237.281724px;}
.xd{left:245.160000px;}
.x4{left:317.838168px;}
.x5{left:360.602280px;}
.x3{left:435.456000px;}
.xc{left:503.266650px;}
.xb{left:522.182850px;}
.x1{left:624.456000px;}
.xf{left:688.824000px;}
@media print{
.v3{vertical-align:-13.854955pt;}
.v1{vertical-align:-4.618368pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.824000pt;}
.v2{vertical-align:25.324949pt;}
.ls66{letter-spacing:-2.056320pt;}
.ls65{letter-spacing:-1.997568pt;}
.ls40{letter-spacing:-1.703808pt;}
.ls68{letter-spacing:-1.586304pt;}
.ls64{letter-spacing:-1.527552pt;}
.ls67{letter-spacing:-1.468800pt;}
.ls41{letter-spacing:-1.351296pt;}
.ls58{letter-spacing:-1.292544pt;}
.lsd{letter-spacing:-1.233792pt;}
.ls25{letter-spacing:-1.175040pt;}
.ls10{letter-spacing:-1.116288pt;}
.ls27{letter-spacing:-1.057536pt;}
.ls5e{letter-spacing:-1.008000pt;}
.ls3a{letter-spacing:-0.998784pt;}
.ls5c{letter-spacing:-0.960000pt;}
.ls11{letter-spacing:-0.940032pt;}
.ls12{letter-spacing:-0.881280pt;}
.ls2d{letter-spacing:-0.864000pt;}
.ls19{letter-spacing:-0.822528pt;}
.ls5b{letter-spacing:-0.816000pt;}
.ls35{letter-spacing:-0.768000pt;}
.ls44{letter-spacing:-0.763776pt;}
.ls53{letter-spacing:-0.705024pt;}
.ls13{letter-spacing:-0.646272pt;}
.ls2e{letter-spacing:-0.624000pt;}
.ls31{letter-spacing:-0.587520pt;}
.ls2c{letter-spacing:-0.576000pt;}
.ls17{letter-spacing:-0.528768pt;}
.ls2f{letter-spacing:-0.528000pt;}
.ls61{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.470016pt;}
.ls36{letter-spacing:-0.432000pt;}
.ls5f{letter-spacing:-0.418176pt;}
.ls1a{letter-spacing:-0.411264pt;}
.ls18{letter-spacing:-0.352512pt;}
.ls2b{letter-spacing:-0.336000pt;}
.ls62{letter-spacing:-0.293760pt;}
.ls30{letter-spacing:-0.288000pt;}
.lsa{letter-spacing:-0.266880pt;}
.ls23{letter-spacing:-0.240000pt;}
.ls4d{letter-spacing:-0.235008pt;}
.ls22{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.176256pt;}
.ls4c{letter-spacing:-0.174720pt;}
.ls24{letter-spacing:-0.144000pt;}
.ls3c{letter-spacing:-0.139392pt;}
.ls21{letter-spacing:-0.126720pt;}
.ls8{letter-spacing:-0.117504pt;}
.ls37{letter-spacing:-0.096000pt;}
.ls56{letter-spacing:-0.092928pt;}
.ls16{letter-spacing:-0.084480pt;}
.lse{letter-spacing:-0.058752pt;}
.ls9{letter-spacing:-0.053376pt;}
.ls5d{letter-spacing:-0.048000pt;}
.ls3b{letter-spacing:-0.046464pt;}
.lsb{letter-spacing:0.000000pt;}
.ls3d{letter-spacing:0.000384pt;}
.ls45{letter-spacing:0.008064pt;}
.ls52{letter-spacing:0.029376pt;}
.ls60{letter-spacing:0.036096pt;}
.ls48{letter-spacing:0.044544pt;}
.ls57{letter-spacing:0.046464pt;}
.ls34{letter-spacing:0.048000pt;}
.ls4{letter-spacing:0.053376pt;}
.lsf{letter-spacing:0.058752pt;}
.ls0{letter-spacing:0.063744pt;}
.ls5a{letter-spacing:0.072000pt;}
.ls4e{letter-spacing:0.088128pt;}
.ls29{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.106752pt;}
.ls1b{letter-spacing:0.117504pt;}
.ls2{letter-spacing:0.133440pt;}
.ls1c{letter-spacing:0.144000pt;}
.ls3{letter-spacing:0.160128pt;}
.ls1e{letter-spacing:0.168000pt;}
.ls26{letter-spacing:0.176256pt;}
.ls1d{letter-spacing:0.192000pt;}
.ls49{letter-spacing:0.352512pt;}
.ls5{letter-spacing:0.666667pt;}
.ls6{letter-spacing:2.392000pt;}
.ls28{letter-spacing:6.336000pt;}
.ls38{letter-spacing:6.720000pt;}
.ls4b{letter-spacing:7.872000pt;}
.ls43{letter-spacing:8.636544pt;}
.ls14{letter-spacing:8.871552pt;}
.ls50{letter-spacing:9.024000pt;}
.ls42{letter-spacing:9.047808pt;}
.ls4f{letter-spacing:9.752832pt;}
.ls46{letter-spacing:9.811584pt;}
.ls15{letter-spacing:10.399104pt;}
.ls54{letter-spacing:10.944000pt;}
.ls33{letter-spacing:10.992000pt;}
.ls51{letter-spacing:11.328000pt;}
.ls47{letter-spacing:11.397888pt;}
.ls2a{letter-spacing:11.691648pt;}
.ls39{letter-spacing:12.096000pt;}
.ls55{letter-spacing:12.480000pt;}
.ls59{letter-spacing:12.690432pt;}
.ls32{letter-spacing:13.747968pt;}
.ls3f{letter-spacing:14.394240pt;}
.ls63{letter-spacing:14.511744pt;}
.ls1f{letter-spacing:14.784000pt;}
.ls3e{letter-spacing:14.805504pt;}
.ls20{letter-spacing:15.745536pt;}
.ls4a{letter-spacing:55.109376pt;}
.ws1b{word-spacing:-16.000000pt;}
.ws95{word-spacing:-13.806720pt;}
.ws12f{word-spacing:-12.690432pt;}
.wsaa{word-spacing:-12.144000pt;}
.wsa9{word-spacing:-6.768000pt;}
.ws1e{word-spacing:-1.165333pt;}
.ws1d{word-spacing:-0.333333pt;}
.ws41{word-spacing:-0.240000pt;}
.wscf{word-spacing:-0.235008pt;}
.wsc4{word-spacing:-0.216000pt;}
.ws3f{word-spacing:-0.192000pt;}
.wsb7{word-spacing:-0.176256pt;}
.ws117{word-spacing:-0.146880pt;}
.ws80{word-spacing:-0.144000pt;}
.ws134{word-spacing:-0.120000pt;}
.ws12{word-spacing:-0.117504pt;}
.wsa6{word-spacing:-0.096000pt;}
.ws123{word-spacing:-0.092928pt;}
.ws63{word-spacing:-0.058752pt;}
.wsc5{word-spacing:-0.048000pt;}
.ws98{word-spacing:-0.034944pt;}
.ws16{word-spacing:0.000000pt;}
.ws139{word-spacing:0.046464pt;}
.wsa8{word-spacing:0.048000pt;}
.ws21{word-spacing:0.058752pt;}
.wsb2{word-spacing:0.092928pt;}
.wsc3{word-spacing:0.096000pt;}
.ws20{word-spacing:0.117504pt;}
.ws109{word-spacing:0.139776pt;}
.ws3d{word-spacing:0.144000pt;}
.ws1c{word-spacing:0.176256pt;}
.ws3e{word-spacing:0.192000pt;}
.ws8{word-spacing:0.213504pt;}
.ws14f{word-spacing:0.235008pt;}
.ws7d{word-spacing:0.240000pt;}
.ws6d{word-spacing:0.288000pt;}
.ws23{word-spacing:0.293760pt;}
.ws29{word-spacing:0.352512pt;}
.ws13a{word-spacing:0.371712pt;}
.wsa5{word-spacing:0.384000pt;}
.wsf{word-spacing:0.411264pt;}
.ws14c{word-spacing:0.432000pt;}
.ws22{word-spacing:0.470016pt;}
.ws71{word-spacing:0.480000pt;}
.ws6e{word-spacing:0.528000pt;}
.ws91{word-spacing:0.528768pt;}
.ws70{word-spacing:0.576000pt;}
.ws1a{word-spacing:0.587520pt;}
.wsf5{word-spacing:0.624000pt;}
.ws11c{word-spacing:0.646272pt;}
.wsd5{word-spacing:0.705024pt;}
.ws99{word-spacing:0.720000pt;}
.ws28{word-spacing:0.763776pt;}
.ws130{word-spacing:0.768000pt;}
.ws6f{word-spacing:0.816000pt;}
.ws19{word-spacing:0.822528pt;}
.ws18{word-spacing:0.881280pt;}
.ws132{word-spacing:0.912000pt;}
.wsaf{word-spacing:0.940032pt;}
.ws135{word-spacing:0.960000pt;}
.ws64{word-spacing:0.998784pt;}
.ws17{word-spacing:1.057536pt;}
.ws53{word-spacing:1.116288pt;}
.ws10{word-spacing:1.175040pt;}
.ws126{word-spacing:1.233792pt;}
.wsbd{word-spacing:1.292544pt;}
.ws165{word-spacing:1.410048pt;}
.ws15b{word-spacing:1.468800pt;}
.ws166{word-spacing:1.527552pt;}
.wsbc{word-spacing:1.645056pt;}
.ws15c{word-spacing:1.938816pt;}
.ws15d{word-spacing:1.997568pt;}
.ws137{word-spacing:6.672000pt;}
.ws136{word-spacing:6.984000pt;}
.wsf8{word-spacing:7.152000pt;}
.wsfb{word-spacing:7.392000pt;}
.ws131{word-spacing:7.444800pt;}
.wsee{word-spacing:7.824000pt;}
.wsf6{word-spacing:7.872000pt;}
.ws40{word-spacing:7.920000pt;}
.ws14d{word-spacing:8.016000pt;}
.wsa1{word-spacing:8.208000pt;}
.ws149{word-spacing:8.256000pt;}
.wsc7{word-spacing:8.304000pt;}
.wsc6{word-spacing:8.592000pt;}
.ws13e{word-spacing:8.640000pt;}
.ws9a{word-spacing:8.688000pt;}
.wsae{word-spacing:8.724672pt;}
.wsfd{word-spacing:8.928000pt;}
.ws37{word-spacing:8.965555pt;}
.ws7b{word-spacing:8.976000pt;}
.ws13d{word-spacing:9.024000pt;}
.ws7e{word-spacing:9.072000pt;}
.wsff{word-spacing:9.120000pt;}
.wsfe{word-spacing:9.268800pt;}
.ws7c{word-spacing:9.360000pt;}
.ws7a{word-spacing:9.364800pt;}
.wsfc{word-spacing:9.384000pt;}
.ws14a{word-spacing:9.403200pt;}
.ws100{word-spacing:9.408000pt;}
.ws81{word-spacing:9.456000pt;}
.wsf9{word-spacing:9.504000pt;}
.wsda{word-spacing:9.617702pt;}
.wse8{word-spacing:9.717581pt;}
.ws11d{word-spacing:9.729331pt;}
.wsb8{word-spacing:9.735206pt;}
.ws13f{word-spacing:9.744000pt;}
.wsa4{word-spacing:9.792000pt;}
.ws72{word-spacing:9.840000pt;}
.ws14{word-spacing:9.846835pt;}
.ws11f{word-spacing:9.852710pt;}
.ws4d{word-spacing:9.882086pt;}
.ws105{word-spacing:9.887693pt;}
.wsa3{word-spacing:9.931200pt;}
.ws3a{word-spacing:9.952589pt;}
.wsce{word-spacing:9.964339pt;}
.ws58{word-spacing:9.970214pt;}
.ws146{word-spacing:9.985114pt;}
.wsdc{word-spacing:10.087718pt;}
.ws39{word-spacing:10.117094pt;}
.wsa2{word-spacing:10.128000pt;}
.wsac{word-spacing:10.176000pt;}
.wsdb{word-spacing:10.222848pt;}
.ws7f{word-spacing:10.224000pt;}
.ws5a{word-spacing:10.228723pt;}
.ws8e{word-spacing:10.234598pt;}
.ws4e{word-spacing:10.258099pt;}
.ws78{word-spacing:10.320000pt;}
.ws156{word-spacing:10.328602pt;}
.ws155{word-spacing:10.334477pt;}
.ws4c{word-spacing:10.352102pt;}
.ws122{word-spacing:10.366118pt;}
.ws121{word-spacing:10.403290pt;}
.wseb{word-spacing:10.410854pt;}
.ws1f{word-spacing:10.412160pt;}
.ws3b{word-spacing:10.416384pt;}
.ws2b{word-spacing:10.451981pt;}
.wsdd{word-spacing:10.463731pt;}
.ws158{word-spacing:10.498982pt;}
.wsd9{word-spacing:10.512000pt;}
.ws59{word-spacing:10.551859pt;}
.wsed{word-spacing:10.555200pt;}
.ws154{word-spacing:10.560000pt;}
.wsb6{word-spacing:10.569485pt;}
.ws38{word-spacing:10.575360pt;}
.ws128{word-spacing:10.616486pt;}
.ws129{word-spacing:10.639987pt;}
.wscc{word-spacing:10.651738pt;}
.ws24{word-spacing:10.716365pt;}
.ws152{word-spacing:10.722240pt;}
.wsec{word-spacing:10.733990pt;}
.ws161{word-spacing:10.763366pt;}
.wsd8{word-spacing:10.839744pt;}
.ws9d{word-spacing:10.848000pt;}
.ws16b{word-spacing:10.851494pt;}
.ws32{word-spacing:10.880870pt;}
.wsea{word-spacing:10.886746pt;}
.wsa0{word-spacing:10.896000pt;}
.ws133{word-spacing:10.939200pt;}
.wsc9{word-spacing:10.944000pt;}
.ws157{word-spacing:10.951373pt;}
.ws142{word-spacing:10.957248pt;}
.ws127{word-spacing:10.986624pt;}
.ws9f{word-spacing:10.992000pt;}
.ws16f{word-spacing:11.033626pt;}
.wsc8{word-spacing:11.040000pt;}
.ws118{word-spacing:11.045376pt;}
.wsbe{word-spacing:11.104128pt;}
.ws119{word-spacing:11.151130pt;}
.ws11b{word-spacing:11.174630pt;}
.wsd1{word-spacing:11.226778pt;}
.ws162{word-spacing:11.239258pt;}
.wsdf{word-spacing:11.262758pt;}
.ws9e{word-spacing:11.280000pt;}
.wsa7{word-spacing:11.328000pt;}
.wsd0{word-spacing:11.339136pt;}
.ws148{word-spacing:11.368512pt;}
.ws9b{word-spacing:11.376000pt;}
.ws12a{word-spacing:11.386138pt;}
.ws76{word-spacing:11.400000pt;}
.ws82{word-spacing:11.415514pt;}
.wsfa{word-spacing:11.419200pt;}
.wsb1{word-spacing:11.425498pt;}
.ws9c{word-spacing:11.472000pt;}
.wsde{word-spacing:11.486016pt;}
.wsf0{word-spacing:11.503642pt;}
.ws2{word-spacing:11.509517pt;}
.ws3{word-spacing:11.515392pt;}
.ws75{word-spacing:11.520000pt;}
.wsab{word-spacing:11.568000pt;}
.wsb4{word-spacing:11.603520pt;}
.ws101{word-spacing:11.611200pt;}
.wsbf{word-spacing:11.613773pt;}
.ws11a{word-spacing:11.621146pt;}
.ws16e{word-spacing:11.627021pt;}
.wsd7{word-spacing:11.644646pt;}
.ws55{word-spacing:11.650522pt;}
.wsad{word-spacing:11.659200pt;}
.ws73{word-spacing:11.664000pt;}
.ws42{word-spacing:11.707200pt;}
.ws74{word-spacing:11.712000pt;}
.wsb5{word-spacing:11.721024pt;}
.ws84{word-spacing:11.732774pt;}
.ws85{word-spacing:11.750400pt;}
.ws77{word-spacing:11.760000pt;}
.wsf2{word-spacing:11.768026pt;}
.ws83{word-spacing:11.862029pt;}
.wse0{word-spacing:11.873779pt;}
.wsf4{word-spacing:11.885530pt;}
.ws49{word-spacing:11.991283pt;}
.wsb9{word-spacing:11.996122pt;}
.ws33{word-spacing:12.032410pt;}
.ws4f{word-spacing:12.038285pt;}
.ws43{word-spacing:12.048000pt;}
.wsf7{word-spacing:12.096000pt;}
.ws54{word-spacing:12.102912pt;}
.ws35{word-spacing:12.108787pt;}
.ws115{word-spacing:12.138163pt;}
.ws102{word-spacing:12.144000pt;}
.ws120{word-spacing:12.155789pt;}
.ws15e{word-spacing:12.249792pt;}
.ws114{word-spacing:12.255667pt;}
.ws15f{word-spacing:12.273293pt;}
.ws12d{word-spacing:12.285043pt;}
.ws14b{word-spacing:12.289728pt;}
.ws8d{word-spacing:12.373171pt;}
.wsf3{word-spacing:12.379046pt;}
.ws124{word-spacing:12.420173pt;}
.ws4a{word-spacing:12.490675pt;}
.ws16c{word-spacing:12.520051pt;}
.ws11{word-spacing:12.537677pt;}
.ws125{word-spacing:12.561178pt;}
.ws2e{word-spacing:12.637555pt;}
.ws140{word-spacing:12.655181pt;}
.ws13c{word-spacing:12.755059pt;}
.ws159{word-spacing:12.760934pt;}
.ws13b{word-spacing:12.772685pt;}
.ws88{word-spacing:12.790310pt;}
.ws56{word-spacing:12.807936pt;}
.ws8b{word-spacing:12.813811pt;}
.ws141{word-spacing:12.854938pt;}
.ws12b{word-spacing:12.866688pt;}
.ws10f{word-spacing:12.872563pt;}
.ws151{word-spacing:12.925440pt;}
.ws12c{word-spacing:13.001818pt;}
.wscd{word-spacing:13.025318pt;}
.ws12e{word-spacing:13.042944pt;}
.wsa{word-spacing:13.045094pt;}
.ws6{word-spacing:13.093133pt;}
.ws8a{word-spacing:13.136947pt;}
.ws5{word-spacing:13.146509pt;}
.ws16a{word-spacing:13.160448pt;}
.ws147{word-spacing:13.183949pt;}
.ws5b{word-spacing:13.189824pt;}
.ws9{word-spacing:13.258598pt;}
.ws143{word-spacing:13.260326pt;}
.wsb{word-spacing:13.376026pt;}
.wsf1{word-spacing:13.407206pt;}
.ws6c{word-spacing:13.424832pt;}
.wsd4{word-spacing:13.448333pt;}
.ws10c{word-spacing:13.524710pt;}
.ws89{word-spacing:13.530586pt;}
.ws57{word-spacing:13.536461pt;}
.ws108{word-spacing:13.554086pt;}
.wse7{word-spacing:13.565837pt;}
.ws93{word-spacing:13.571712pt;}
.wsc{word-spacing:13.578854pt;}
.ws6b{word-spacing:13.630464pt;}
.ws15{word-spacing:13.671590pt;}
.ws94{word-spacing:13.689216pt;}
.ws90{word-spacing:13.724467pt;}
.ws107{word-spacing:13.789094pt;}
.ws10b{word-spacing:13.800845pt;}
.ws144{word-spacing:13.906598pt;}
.wsc1{word-spacing:13.959475pt;}
.ws16d{word-spacing:13.977101pt;}
.ws5d{word-spacing:13.988851pt;}
.ws4b{word-spacing:14.018227pt;}
.wsd2{word-spacing:14.024102pt;}
.ws92{word-spacing:14.041728pt;}
.ws60{word-spacing:14.076979pt;}
.ws153{word-spacing:14.100480pt;}
.ws5f{word-spacing:14.106355pt;}
.wsd6{word-spacing:14.112230pt;}
.ws167{word-spacing:14.165107pt;}
.ws13{word-spacing:14.176858pt;}
.wse6{word-spacing:14.200358pt;}
.ws15a{word-spacing:14.206234pt;}
.ws96{word-spacing:14.223859pt;}
.ws2f{word-spacing:14.294362pt;}
.wsef{word-spacing:14.311987pt;}
.ws6a{word-spacing:14.317862pt;}
.ws61{word-spacing:14.323738pt;}
.ws31{word-spacing:14.341363pt;}
.wse3{word-spacing:14.411866pt;}
.wsd{word-spacing:14.435366pt;}
.ws67{word-spacing:14.441242pt;}
.ws8f{word-spacing:14.452992pt;}
.wsba{word-spacing:14.458867pt;}
.ws27{word-spacing:14.464742pt;}
.ws171{word-spacing:14.470618pt;}
.wse9{word-spacing:14.482368pt;}
.ws170{word-spacing:14.488243pt;}
.ws62{word-spacing:14.552870pt;}
.ws8c{word-spacing:14.558746pt;}
.ws5c{word-spacing:14.576371pt;}
.ws68{word-spacing:14.582246pt;}
.ws2a{word-spacing:14.588122pt;}
.ws86{word-spacing:14.599872pt;}
.ws138{word-spacing:14.658624pt;}
.wse{word-spacing:14.670374pt;}
.ws30{word-spacing:14.676250pt;}
.wsc0{word-spacing:14.688000pt;}
.ws0{word-spacing:14.693875pt;}
.ws163{word-spacing:14.699750pt;}
.wsb3{word-spacing:14.705626pt;}
.ws44{word-spacing:14.717376pt;}
.ws2c{word-spacing:14.723251pt;}
.ws168{word-spacing:14.746752pt;}
.ws164{word-spacing:14.787878pt;}
.ws25{word-spacing:14.793754pt;}
.ws5e{word-spacing:14.805504pt;}
.ws36{word-spacing:14.834880pt;}
.ws50{word-spacing:14.840755pt;}
.ws51{word-spacing:14.846630pt;}
.ws145{word-spacing:14.852506pt;}
.ws160{word-spacing:14.893632pt;}
.ws26{word-spacing:14.923008pt;}
.ws66{word-spacing:14.940634pt;}
.ws169{word-spacing:14.946509pt;}
.wsd3{word-spacing:14.952384pt;}
.ws52{word-spacing:14.958259pt;}
.ws97{word-spacing:14.975885pt;}
.ws87{word-spacing:14.993510pt;}
.ws46{word-spacing:15.058138pt;}
.ws69{word-spacing:15.064013pt;}
.wse1{word-spacing:15.069888pt;}
.wsbb{word-spacing:15.075763pt;}
.wse2{word-spacing:15.093389pt;}
.ws110{word-spacing:15.105139pt;}
.ws103{word-spacing:15.111014pt;}
.ws104{word-spacing:15.152141pt;}
.wse4{word-spacing:15.163891pt;}
.ws45{word-spacing:15.175642pt;}
.ws47{word-spacing:15.216768pt;}
.wscb{word-spacing:15.222643pt;}
.ws116{word-spacing:15.228518pt;}
.ws34{word-spacing:15.257894pt;}
.ws48{word-spacing:15.340147pt;}
.ws10d{word-spacing:15.346022pt;}
.ws10e{word-spacing:15.481152pt;}
.wsca{word-spacing:15.492902pt;}
.ws111{word-spacing:15.522278pt;}
.ws106{word-spacing:15.557530pt;}
.ws10a{word-spacing:15.563405pt;}
.ws113{word-spacing:15.610406pt;}
.ws112{word-spacing:15.704410pt;}
.ws2d{word-spacing:15.874790pt;}
.ws1{word-spacing:15.993370pt;}
.wse5{word-spacing:16.262554pt;}
.ws150{word-spacing:18.030989pt;}
.ws65{word-spacing:18.947520pt;}
.wsb0{word-spacing:19.164902pt;}
.ws11e{word-spacing:20.604326pt;}
.ws3c{word-spacing:22.128000pt;}
.wsc2{word-spacing:22.992000pt;}
.ws79{word-spacing:38.880000pt;}
.ws14e{word-spacing:56.319667pt;}
.ws7{word-spacing:175.607040pt;}
.ws4{word-spacing:199.305984pt;}
._18{margin-left:-14.344358pt;}
._19{margin-left:-12.960576pt;}
._1b{margin-left:-11.805965pt;}
._c{margin-left:-7.276800pt;}
._1a{margin-left:-6.217190pt;}
._d{margin-left:-3.601999pt;}
._b{margin-left:-2.374400pt;}
._3{margin-left:-1.168934pt;}
._7{width:1.110106pt;}
._13{width:2.215142pt;}
._1c{width:3.632836pt;}
._11{width:5.760000pt;}
._12{width:6.655296pt;}
._1{width:7.696819pt;}
._2{width:8.705626pt;}
._8{width:9.643776pt;}
._14{width:10.551859pt;}
._9{width:11.581286pt;}
._4{width:12.570048pt;}
._0{width:14.208691pt;}
._a{width:15.310771pt;}
._f{width:16.973453pt;}
._15{width:20.169562pt;}
._1f{width:21.668045pt;}
._1e{width:27.824947pt;}
._17{width:34.944000pt;}
._16{width:37.584000pt;}
._1d{width:55.085875pt;}
._5{width:112.281754pt;}
._6{width:220.881562pt;}
._10{width:432.010406pt;}
._e{width:576.449280pt;}
.fs8{font-size:34.944000pt;}
.fs6{font-size:42.240000pt;}
.fs9{font-size:46.464000pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.376000pt;}
.fs0{font-size:58.752000pt;}
.fs5{font-size:61.333333pt;}
.fs1{font-size:63.744000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:66.666667pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:82.204667pt;}
.y17{bottom:101.404667pt;}
.y1{bottom:105.400133pt;}
.y118{bottom:146.968133pt;}
.y9b{bottom:147.064267pt;}
.y46{bottom:147.448133pt;}
.y74{bottom:147.448267pt;}
.y5a{bottom:154.399301pt;}
.y148{bottom:154.456421pt;}
.y16{bottom:158.950507pt;}
.y45{bottom:162.136133pt;}
.y8a{bottom:162.136267pt;}
.y73{bottom:162.520267pt;}
.y40{bottom:171.775205pt;}
.y147{bottom:171.832325pt;}
.y15{bottom:176.326411pt;}
.y44{bottom:176.920133pt;}
.y89{bottom:176.920267pt;}
.y72{bottom:177.688267pt;}
.y3f{bottom:189.151109pt;}
.y146{bottom:189.208229pt;}
.y43{bottom:191.608133pt;}
.yab{bottom:191.608267pt;}
.y88{bottom:191.800267pt;}
.y71{bottom:192.760267pt;}
.y14{bottom:193.702315pt;}
.y42{bottom:206.296133pt;}
.yaa{bottom:206.296267pt;}
.y87{bottom:206.488267pt;}
.y3e{bottom:206.527013pt;}
.y145{bottom:206.569387pt;}
.y70{bottom:207.928267pt;}
.y13{bottom:210.990091pt;}
.y41{bottom:221.080133pt;}
.y86{bottom:221.080267pt;}
.y6f{bottom:223.000267pt;}
.y3d{bottom:223.902917pt;}
.y12{bottom:228.365995pt;}
.ye8{bottom:235.768133pt;}
.y85{bottom:235.768267pt;}
.y6e{bottom:238.168267pt;}
.y144{bottom:241.233067pt;}
.y11{bottom:245.741899pt;}
.ye7{bottom:250.456133pt;}
.ya9{bottom:250.456267pt;}
.y84{bottom:250.648267pt;}
.y6d{bottom:253.240267pt;}
.y199{bottom:257.347493pt;}
.y3c{bottom:258.566597pt;}
.y143{bottom:258.608971pt;}
.y4f{bottom:258.609029pt;}
.y10{bottom:263.117803pt;}
.ye6{bottom:265.240133pt;}
.y83{bottom:265.240267pt;}
.y6c{bottom:268.408267pt;}
.y198{bottom:274.341509pt;}
.y3b{bottom:275.942501pt;}
.y142{bottom:275.984875pt;}
.y4e{bottom:276.073061pt;}
.ye5{bottom:279.928133pt;}
.y82{bottom:279.928267pt;}
.yf{bottom:280.493707pt;}
.y6b{bottom:283.480267pt;}
.ye1{bottom:287.293829pt;}
.y197{bottom:291.232709pt;}
.y3a{bottom:293.318405pt;}
.y141{bottom:293.360779pt;}
.y4d{bottom:293.360837pt;}
.y59{bottom:293.406533pt;}
.ye4{bottom:294.616133pt;}
.ya8{bottom:294.616267pt;}
.y81{bottom:294.808267pt;}
.ye{bottom:297.869611pt;}
.y6a{bottom:298.648267pt;}
.ye0{bottom:304.185029pt;}
.y196{bottom:308.226725pt;}
.ye3{bottom:309.400133pt;}
.y80{bottom:309.400267pt;}
.y39{bottom:310.694309pt;}
.y140{bottom:310.736683pt;}
.y4c{bottom:310.736741pt;}
.y69{bottom:313.720267pt;}
.yd{bottom:315.157387pt;}
.ydf{bottom:321.179045pt;}
.ye2{bottom:324.088133pt;}
.y7f{bottom:324.088267pt;}
.y149{bottom:324.184267pt;}
.y174{bottom:325.149067pt;}
.y195{bottom:325.220741pt;}
.y58{bottom:328.070213pt;}
.y13f{bottom:328.112587pt;}
.y4b{bottom:328.112645pt;}
.y68{bottom:329.080267pt;}
.yde{bottom:338.173061pt;}
.y7e{bottom:338.776267pt;}
.y173{bottom:342.045451pt;}
.y194{bottom:342.111941pt;}
.y67{bottom:343.960267pt;}
.y38{bottom:345.357989pt;}
.y13e{bottom:345.400363pt;}
.y1b9{bottom:349.111627pt;}
.yc{bottom:349.909195pt;}
.y7d{bottom:353.560267pt;}
.ydd{bottom:355.064261pt;}
.yf0{bottom:359.049739pt;}
.y193{bottom:359.105957pt;}
.y66{bottom:359.128267pt;}
.y37{bottom:362.733893pt;}
.y13d{bottom:362.761675pt;}
.y4a{bottom:362.776325pt;}
.y1b8{bottom:365.723755pt;}
.ya7{bottom:368.248267pt;}
.y7c{bottom:368.632267pt;}
.ydc{bottom:372.058277pt;}
.y65{bottom:374.200267pt;}
.yef{bottom:376.029067pt;}
.y192{bottom:376.099973pt;}
.y36{bottom:380.109797pt;}
.y49{bottom:380.152229pt;}
.y154{bottom:380.152459pt;}
.y1b7{bottom:382.335883pt;}
.ya6{bottom:382.936267pt;}
.y7b{bottom:383.800267pt;}
.ydb{bottom:389.052293pt;}
.y64{bottom:389.560267pt;}
.yee{bottom:392.920555pt;}
.y191{bottom:392.991173pt;}
.y35{bottom:397.485701pt;}
.y13c{bottom:397.513483pt;}
.y153{bottom:397.528363pt;}
.y48{bottom:397.533029pt;}
.ya5{bottom:397.720267pt;}
.y7a{bottom:398.872267pt;}
.y1b6{bottom:399.036139pt;}
.y172{bottom:399.064267pt;}
.y171{bottom:400.217669pt;}
.y63{bottom:404.440267pt;}
.yda{bottom:405.943493pt;}
.yed{bottom:409.914571pt;}
.y190{bottom:409.985189pt;}
.yf2{bottom:412.408267pt;}
.y79{bottom:414.040267pt;}
.y34{bottom:414.861605pt;}
.y13b{bottom:414.889387pt;}
.y152{bottom:414.896683pt;}
.y57{bottom:414.949733pt;}
.y1b5{bottom:415.648267pt;}
.y170{bottom:417.211685pt;}
.y62{bottom:419.608267pt;}
.yd9{bottom:422.922821pt;}
.yec{bottom:426.908587pt;}
.y18f{bottom:426.979205pt;}
.yf1{bottom:427.096267pt;}
.y78{bottom:429.112267pt;}
.y33{bottom:432.237509pt;}
.y1b4{bottom:432.260395pt;}
.y13a{bottom:432.265291pt;}
.y16f{bottom:434.205701pt;}
.y61{bottom:434.680267pt;}
.yd8{bottom:439.902149pt;}
.yb{bottom:441.306859pt;}
.yeb{bottom:443.799787pt;}
.y18e{bottom:443.870405pt;}
.y77{bottom:444.280267pt;}
.y47{bottom:446.488133pt;}
.y1b3{bottom:448.960651pt;}
.y32{bottom:449.525285pt;}
.ybd{bottom:449.552971pt;}
.y151{bottom:449.560363pt;}
.y60{bottom:449.848267pt;}
.y16e{bottom:451.096901pt;}
.yd7{bottom:456.793349pt;}
.y18d{bottom:460.864421pt;}
.y5f{bottom:464.920267pt;}
.y1b2{bottom:465.572779pt;}
.y31{bottom:466.901189pt;}
.ybc{bottom:466.928875pt;}
.y139{bottom:466.928971pt;}
.y150{bottom:466.935403pt;}
.y16d{bottom:468.090917pt;}
.yd6{bottom:473.772677pt;}
.y131{bottom:475.765061pt;}
.ya{bottom:476.161387pt;}
.y10b{bottom:477.785035pt;}
.y18c{bottom:477.858437pt;}
.y5e{bottom:480.088267pt;}
.y1b1{bottom:482.184907pt;}
.y56{bottom:484.277093pt;}
.ybb{bottom:484.304779pt;}
.y138{bottom:484.304875pt;}
.y30{bottom:484.365221pt;}
.y16c{bottom:485.084933pt;}
.yea{bottom:486.424363pt;}
.yd5{bottom:490.766693pt;}
.y130{bottom:493.140965pt;}
.y10a{bottom:494.676235pt;}
.y18b{bottom:494.749637pt;}
.y5d{bottom:495.160267pt;}
.y1b0{bottom:498.885163pt;}
.y55{bottom:501.652997pt;}
.yba{bottom:501.680683pt;}
.y137{bottom:501.680779pt;}
.y14f{bottom:501.687211pt;}
.y16b{bottom:501.975040pt;}
.ye9{bottom:503.800267pt;}
.yd4{bottom:507.657893pt;}
.y5c{bottom:510.328267pt;}
.y12f{bottom:510.516869pt;}
.y109{bottom:511.670251pt;}
.y18a{bottom:511.831781pt;}
.y1af{bottom:515.497291pt;}
.y2f{bottom:519.028901pt;}
.y9a{bottom:519.049541pt;}
.yb9{bottom:519.056587pt;}
.y136{bottom:519.056683pt;}
.y14e{bottom:519.063115pt;}
.y9{bottom:521.277451pt;}
.yd3{bottom:524.637221pt;}
.y5b{bottom:525.400267pt;}
.y12e{bottom:527.804645pt;}
.y108{bottom:528.672005pt;}
.y189{bottom:528.722981pt;}
.y1ae{bottom:532.109419pt;}
.y16a{bottom:535.963072pt;}
.y99{bottom:536.425445pt;}
.yb8{bottom:536.432491pt;}
.y135{bottom:536.432587pt;}
.y14d{bottom:536.439019pt;}
.y8{bottom:537.303595pt;}
.yd2{bottom:541.631237pt;}
.y12d{bottom:545.180549pt;}
.y107{bottom:545.563205pt;}
.y188{bottom:545.614181pt;}
.y1ad{bottom:548.809675pt;}
.y1d0{bottom:552.914117pt;}
.y169{bottom:552.957088pt;}
.y54{bottom:553.692581pt;}
.yb7{bottom:553.705675pt;}
.y98{bottom:553.713221pt;}
.y134{bottom:553.720363pt;}
.y14c{bottom:553.726795pt;}
.yd1{bottom:558.522437pt;}
.y12c{bottom:562.556453pt;}
.y106{bottom:562.557221pt;}
.y187{bottom:562.608197pt;}
.y1ac{bottom:565.421803pt;}
.y1cf{bottom:569.526245pt;}
.y168{bottom:569.848288pt;}
.y2e{bottom:571.068485pt;}
.y97{bottom:571.089125pt;}
.y133{bottom:571.102507pt;}
.yb6{bottom:571.169707pt;}
.y7{bottom:572.158123pt;}
.yd0{bottom:575.516453pt;}
.y186{bottom:579.602213pt;}
.y105{bottom:579.639365pt;}
.y1ab{bottom:582.033931pt;}
.y1ce{bottom:586.226501pt;}
.y167{bottom:586.842304pt;}
.y6{bottom:588.184267pt;}
.y2d{bottom:588.444389pt;}
.y96{bottom:588.465029pt;}
.ycf{bottom:592.510469pt;}
.y12b{bottom:596.441669pt;}
.y185{bottom:596.493413pt;}
.y1aa{bottom:598.734187pt;}
.y14b{bottom:601.624363pt;}
.y1cd{bottom:602.838629pt;}
.y166{bottom:603.733504pt;}
.y2c{bottom:605.820293pt;}
.yb5{bottom:605.833387pt;}
.y95{bottom:605.840933pt;}
.yce{bottom:609.401669pt;}
.y12a{bottom:613.435685pt;}
.y104{bottom:613.436453pt;}
.y184{bottom:613.487429pt;}
.y132{bottom:613.624267pt;}
.y1a9{bottom:615.346315pt;}
.y14a{bottom:619.000267pt;}
.y1cc{bottom:619.450757pt;}
.y165{bottom:620.727520pt;}
.y2b{bottom:623.196197pt;}
.y94{bottom:623.216837pt;}
.ycd{bottom:626.395685pt;}
.y129{bottom:630.429701pt;}
.y183{bottom:630.569573pt;}
.y1a8{bottom:631.958443pt;}
.y1cb{bottom:636.151013pt;}
.y164{bottom:637.721536pt;}
.y2a{bottom:640.572101pt;}
.y93{bottom:640.592741pt;}
.ycc{bottom:643.477829pt;}
.y128{bottom:647.320901pt;}
.y1a7{bottom:648.658699pt;}
.y1ca{bottom:652.763141pt;}
.y163{bottom:654.612736pt;}
.y29{bottom:657.859877pt;}
.yb4{bottom:657.872971pt;}
.ya4{bottom:657.880459pt;}
.ycb{bottom:660.280901pt;}
.y127{bottom:664.314917pt;}
.y103{bottom:664.315685pt;}
.y182{bottom:664.366661pt;}
.y1a6{bottom:665.270827pt;}
.y1c9{bottom:669.375269pt;}
.y162{bottom:671.606752pt;}
.y28{bottom:675.235781pt;}
.yb3{bottom:675.248875pt;}
.ya3{bottom:675.256363pt;}
.y92{bottom:675.256421pt;}
.yca{bottom:677.274917pt;}
.y5{bottom:681.296683pt;}
.y126{bottom:681.308933pt;}
.y102{bottom:681.309701pt;}
.y1a5{bottom:681.882955pt;}
.y1c8{bottom:686.075525pt;}
.y161{bottom:688.600768pt;}
.y53{bottom:692.611685pt;}
.yb2{bottom:692.624779pt;}
.ya2{bottom:692.625067pt;}
.y27{bottom:692.699813pt;}
.yc9{bottom:694.268933pt;}
.y125{bottom:698.199653pt;}
.y101{bottom:698.200901pt;}
.y4{bottom:698.672587pt;}
.y1c7{bottom:702.687653pt;}
.y160{bottom:705.491968pt;}
.y52{bottom:709.987589pt;}
.yb1{bottom:710.000683pt;}
.yc8{bottom:711.161093pt;}
.y117{bottom:715.193035pt;}
.y100{bottom:715.194917pt;}
.y1a4{bottom:715.195339pt;}
.y181{bottom:715.245893pt;}
.y1c6{bottom:719.299781pt;}
.y15f{bottom:722.485984pt;}
.y26{bottom:727.363493pt;}
.y91{bottom:727.376875pt;}
.yb0{bottom:727.464715pt;}
.y116{bottom:732.187051pt;}
.y124{bottom:732.187685pt;}
.y180{bottom:732.239909pt;}
.yff{bottom:732.277061pt;}
.y3{bottom:733.336267pt;}
.y1c5{bottom:736.000037pt;}
.y15e{bottom:739.443211pt;}
.y76{bottom:744.739397pt;}
.yaf{bottom:744.752491pt;}
.y90{bottom:744.752779pt;}
.yc7{bottom:745.149125pt;}
.y115{bottom:749.078251pt;}
.y123{bottom:749.078885pt;}
.yfe{bottom:749.079653pt;}
.y17f{bottom:749.131109pt;}
.y1c4{bottom:752.612165pt;}
.y1a{bottom:761.574800pt;}
.y51{bottom:762.027173pt;}
.yc6{bottom:762.040325pt;}
.yae{bottom:762.040517pt;}
.y8f{bottom:762.040555pt;}
.y122{bottom:766.072901pt;}
.yfd{bottom:766.073669pt;}
.y1a3{bottom:766.074571pt;}
.y114{bottom:766.075339pt;}
.y17e{bottom:766.110437pt;}
.y2{bottom:767.128267pt;}
.y1c3{bottom:769.224293pt;}
.y15d{bottom:775.061611pt;}
.y25{bottom:779.403077pt;}
.y8e{bottom:779.416459pt;}
.y75{bottom:779.491205pt;}
.y121{bottom:783.066917pt;}
.yfc{bottom:783.067685pt;}
.y1a2{bottom:783.068587pt;}
.y113{bottom:783.069355pt;}
.y17d{bottom:783.104453pt;}
.y1c2{bottom:785.924549pt;}
.y15c{bottom:792.922219pt;}
.y24{bottom:796.778981pt;}
.yc5{bottom:796.785163pt;}
.yad{bottom:796.792325pt;}
.y8d{bottom:796.792363pt;}
.y19{bottom:799.139200pt;}
.y120{bottom:799.958117pt;}
.yfb{bottom:799.958885pt;}
.y1a1{bottom:799.959787pt;}
.y112{bottom:799.960555pt;}
.y17c{bottom:799.995653pt;}
.y1c1{bottom:802.536677pt;}
.y15b{bottom:810.782827pt;}
.y23{bottom:814.154885pt;}
.yc4{bottom:814.161067pt;}
.ya1{bottom:814.163851pt;}
.yac{bottom:814.168229pt;}
.y8c{bottom:814.168459pt;}
.y11f{bottom:816.951787pt;}
.yfa{bottom:816.952901pt;}
.y1a0{bottom:816.953803pt;}
.y17b{bottom:816.989669pt;}
.y1c0{bottom:819.148805pt;}
.y15a{bottom:828.643435pt;}
.y22{bottom:831.530789pt;}
.yc3{bottom:831.536971pt;}
.y8b{bottom:831.544363pt;}
.yf9{bottom:833.946917pt;}
.y19f{bottom:833.947819pt;}
.y111{bottom:833.948587pt;}
.y17a{bottom:833.968997pt;}
.y1bf{bottom:835.849061pt;}
.y159{bottom:846.504043pt;}
.y21{bottom:848.906693pt;}
.yc2{bottom:848.912875pt;}
.ya0{bottom:848.915659pt;}
.y11e{bottom:850.837003pt;}
.yf8{bottom:850.838117pt;}
.y19e{bottom:850.839019pt;}
.y110{bottom:850.839787pt;}
.y179{bottom:850.860197pt;}
.y1be{bottom:852.461189pt;}
.y158{bottom:864.261835pt;}
.y20{bottom:866.194469pt;}
.yc1{bottom:866.200651pt;}
.y9f{bottom:866.203435pt;}
.y11d{bottom:867.831019pt;}
.y19d{bottom:867.833035pt;}
.y10f{bottom:867.833803pt;}
.yf7{bottom:867.838891pt;}
.y178{bottom:867.839525pt;}
.y1bd{bottom:869.073317pt;}
.y157{bottom:882.122443pt;}
.y1f{bottom:883.570373pt;}
.yc0{bottom:883.576555pt;}
.y9e{bottom:883.579339pt;}
.y11c{bottom:884.825035pt;}
.y19c{bottom:884.827051pt;}
.y10e{bottom:884.827819pt;}
.yf6{bottom:884.832907pt;}
.y177{bottom:884.833541pt;}
.y1bc{bottom:885.773573pt;}
.y156{bottom:899.983051pt;}
.y1e{bottom:900.946277pt;}
.ybf{bottom:900.952459pt;}
.y50{bottom:901.034405pt;}
.y9d{bottom:901.043371pt;}
.y11b{bottom:901.716235pt;}
.y19b{bottom:901.718251pt;}
.y10d{bottom:901.719019pt;}
.yf5{bottom:901.724107pt;}
.y176{bottom:901.724741pt;}
.y1bb{bottom:902.385701pt;}
.y155{bottom:917.843659pt;}
.y1d{bottom:918.322181pt;}
.ybe{bottom:918.328363pt;}
.y19a{bottom:918.704069pt;}
.y11a{bottom:918.710251pt;}
.y10c{bottom:918.713035pt;}
.yf4{bottom:918.718123pt;}
.y175{bottom:918.718757pt;}
.y1ba{bottom:918.997829pt;}
.y1c{bottom:935.698085pt;}
.y119{bottom:935.699045pt;}
.y9c{bottom:935.707051pt;}
.yf3{bottom:935.800901pt;}
.y1b{bottom:979.192267pt;}
.hb{height:37.593600pt;}
.ha{height:40.878906pt;}
.hd{height:42.048000pt;}
.hc{height:42.720000pt;}
.h11{height:43.104000pt;}
.hf{height:44.304000pt;}
.h8{height:44.437500pt;}
.h6{height:47.504640pt;}
.h5{height:49.266048pt;}
.h2{height:51.466752pt;}
.h4{height:52.289280pt;}
.h20{height:52.292736pt;}
.h23{height:52.293653pt;}
.h12{height:52.343573pt;}
.h1b{height:52.700544pt;}
.h7{height:54.228096pt;}
.h15{height:54.245760pt;}
.h19{height:54.252821pt;}
.h16{height:54.256896pt;}
.h17{height:54.281472pt;}
.h9{height:56.066667pt;}
.h1e{height:56.417664pt;}
.h24{height:56.424960pt;}
.he{height:56.425109pt;}
.h1d{height:56.441621pt;}
.h22{height:56.442859pt;}
.h1c{height:56.443008pt;}
.h13{height:56.443392pt;}
.h1f{height:56.446613pt;}
.h1a{height:56.472576pt;}
.h14{height:56.473728pt;}
.h21{height:56.473963pt;}
.h25{height:56.476949pt;}
.h18{height:56.502528pt;}
.h10{height:56.555285pt;}
.h3{height:58.835712pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:94.464000pt;}
.x12{left:105.888000pt;}
.x2{left:110.976000pt;}
.xe{left:111.936000pt;}
.x8{left:113.383680pt;}
.x9{left:114.538667pt;}
.x10{left:126.624000pt;}
.x11{left:145.440000pt;}
.xa{left:177.751467pt;}
.x7{left:210.917088pt;}
.xd{left:217.920000pt;}
.x4{left:282.522816pt;}
.x5{left:320.535360pt;}
.x3{left:387.072000pt;}
.xc{left:447.348133pt;}
.xb{left:464.162533pt;}
.x1{left:555.072000pt;}
.xf{left:612.288000pt;}
}




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