
    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_7d3722665082b362c9b6fc0d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9edcf0c7ece670b5954b8515.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942000;font-style:normal;font-weight: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_89c88c7561790bf156a3d996.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941000;font-style:normal;font-weight: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_10d8f44af3ce97dab5a81605.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942000;font-style:normal;font-weight: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_270ee088d47895bfe2856833.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941000;font-style:normal;font-weight: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_8e0abe6eb6febded0815fb0b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_fcefb9c47db20675634ba37d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.943000;font-style:normal;font-weight: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_c4b65cf8489eb7efc47e9499.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.131000;font-style:normal;font-weight: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_f4d3071beeef50d75c668880.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.949000;font-style:normal;font-weight: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_2dbce4e19ed6641f49a9842e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.948000;font-style:normal;font-weight: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_dcb32d31fdde580fd7b5e4e8.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_1e7e44f4e9eb40805999a089.woff2')format("woff");}.ffe{font-family:ffe;line-height:2.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_193ba0b97571b545639d64f3.woff2')format("woff");}.fff{font-family:fff;line-height:0.575000;font-style:normal;font-weight: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_d06581f4f09b9811c6d10810.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.687000;font-style:normal;font-weight: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_4e483586c991dbbb3d589b18.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.051000;font-style:normal;font-weight: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_5c90c20df6b93ab32f9a37e1.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.351000;font-style:normal;font-weight: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_626dc174503dddc478961c85.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.031000;font-style:normal;font-weight: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_e8a85ac33ec844f6ddf158d0.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.510000;font-style:normal;font-weight: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_121cdd7842fb781c07a86fe1.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.695000;font-style:normal;font-weight: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_60480621c3a548e569e4a38e.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.696000;font-style:normal;font-weight: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_78fd9cd58cba02b1a54a5300.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.686000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_10155527e12aba814a1ca7f8.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.264000;font-style:normal;font-weight: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_90f912f5549d8d8e3c8b68f5.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.457000;font-style:normal;font-weight: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_4d34371f25440a6d6c8f27dc.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.941000;font-style:normal;font-weight: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_288908b7c15547cb2d47cf37.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.907000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_343f4c105bbffbc0396ffdba.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.279000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,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);}
.m4{transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vf{vertical-align:-28.233060px;}
.v11{vertical-align:-25.171740px;}
.ve{vertical-align:-22.790400px;}
.v6{vertical-align:-14.967060px;}
.v4{vertical-align:-13.582620px;}
.v2{vertical-align:-8.843940px;}
.v1{vertical-align:-6.463260px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:14.954760px;}
.v9{vertical-align:16.327920px;}
.vd{vertical-align:22.706880px;}
.v10{vertical-align:25.159080px;}
.v8{vertical-align:27.192120px;}
.v7{vertical-align:37.737120px;}
.vc{vertical-align:40.138920px;}
.v5{vertical-align:55.658820px;}
.v3{vertical-align:103.075380px;}
.va{vertical-align:119.072700px;}
.lsc{letter-spacing:-1.548015px;}
.ls7{letter-spacing:-1.536015px;}
.ls3{letter-spacing:-1.518015px;}
.ls5{letter-spacing:-1.506015px;}
.ls2{letter-spacing:-1.500015px;}
.lsb{letter-spacing:-1.488015px;}
.ls6{letter-spacing:-1.476015px;}
.ls8{letter-spacing:-1.458015px;}
.ls1{letter-spacing:-1.452015px;}
.lsa{letter-spacing:-1.440014px;}
.lsd{letter-spacing:-1.404014px;}
.lsf{letter-spacing:-1.398014px;}
.lse{letter-spacing:-1.380014px;}
.ls4{letter-spacing:-1.368014px;}
.ls9{letter-spacing:-1.344013px;}
.ls88{letter-spacing:-0.005880px;}
.ls0{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.000038px;}
.ls4b{letter-spacing:0.005880px;}
.ls3b{letter-spacing:0.027084px;}
.ls20{letter-spacing:0.038172px;}
.ls36{letter-spacing:0.038712px;}
.ls95{letter-spacing:0.044968px;}
.ls96{letter-spacing:0.045010px;}
.ls94{letter-spacing:0.045032px;}
.ls5b{letter-spacing:0.058790px;}
.ls19{letter-spacing:0.068027px;}
.ls18{letter-spacing:0.068147px;}
.ls45{letter-spacing:0.117582px;}
.ls16{letter-spacing:0.117626px;}
.ls46{letter-spacing:0.117642px;}
.ls40{letter-spacing:0.164620px;}
.ls29{letter-spacing:0.176365px;}
.ls34{letter-spacing:0.176391px;}
.ls6c{letter-spacing:0.176400px;}
.ls24{letter-spacing:0.176451px;}
.ls2b{letter-spacing:0.195972px;}
.ls35{letter-spacing:0.205812px;}
.ls1c{letter-spacing:0.235166px;}
.ls5a{letter-spacing:0.235207px;}
.ls69{letter-spacing:0.246995px;}
.ls1f{letter-spacing:0.288084px;}
.ls3f{letter-spacing:0.288144px;}
.ls83{letter-spacing:0.335995px;}
.ls77{letter-spacing:0.352778px;}
.ls32{letter-spacing:0.357852px;}
.ls2f{letter-spacing:0.378432px;}
.ls8f{letter-spacing:0.587994px;}
.ls13{letter-spacing:0.605634px;}
.ls10{letter-spacing:0.611514px;}
.ls8e{letter-spacing:0.617394px;}
.ls12{letter-spacing:0.623274px;}
.ls90{letter-spacing:0.629154px;}
.ls11{letter-spacing:0.635034px;}
.ls14{letter-spacing:0.646793px;}
.ls68{letter-spacing:1.581457px;}
.ls86{letter-spacing:1.804777px;}
.ls65{letter-spacing:1.984297px;}
.ls22{letter-spacing:2.441565px;}
.ls42{letter-spacing:2.441625px;}
.ls21{letter-spacing:2.904912px;}
.ls6a{letter-spacing:2.927352px;}
.ls64{letter-spacing:3.469127px;}
.ls3a{letter-spacing:5.183565px;}
.ls7d{letter-spacing:7.199622px;}
.ls2e{letter-spacing:9.937130px;}
.ls6d{letter-spacing:9.995862px;}
.ls39{letter-spacing:9.995922px;}
.ls25{letter-spacing:11.642270px;}
.ls27{letter-spacing:11.642330px;}
.ls5d{letter-spacing:13.229862px;}
.ls93{letter-spacing:13.499777px;}
.ls97{letter-spacing:13.679820px;}
.ls5c{letter-spacing:14.111869px;}
.ls84{letter-spacing:14.255815px;}
.ls85{letter-spacing:14.255875px;}
.ls30{letter-spacing:15.831192px;}
.ls7f{letter-spacing:15.898926px;}
.ls8d{letter-spacing:15.933306px;}
.ls81{letter-spacing:15.949686px;}
.ls66{letter-spacing:16.167072px;}
.ls44{letter-spacing:16.169816px;}
.ls48{letter-spacing:16.169822px;}
.ls91{letter-spacing:16.200000px;}
.ls6b{letter-spacing:16.273782px;}
.ls2d{letter-spacing:16.287402px;}
.ls1e{letter-spacing:16.287462px;}
.ls5e{letter-spacing:16.346196px;}
.ls5f{letter-spacing:16.535142px;}
.ls76{letter-spacing:16.615423px;}
.ls58{letter-spacing:16.633062px;}
.ls38{letter-spacing:16.640202px;}
.ls63{letter-spacing:16.640262px;}
.ls56{letter-spacing:16.993078px;}
.ls7b{letter-spacing:17.598157px;}
.ls7e{letter-spacing:17.649277px;}
.ls7a{letter-spacing:17.757403px;}
.ls26{letter-spacing:17.874985px;}
.ls2a{letter-spacing:18.110231px;}
.ls78{letter-spacing:18.227794px;}
.ls79{letter-spacing:18.462986px;}
.ls98{letter-spacing:18.515280px;}
.ls6f{letter-spacing:18.992226px;}
.ls57{letter-spacing:19.232592px;}
.ls37{letter-spacing:19.232712px;}
.ls1d{letter-spacing:19.388317px;}
.ls62{letter-spacing:19.521409px;}
.ls61{letter-spacing:19.756603px;}
.ls33{letter-spacing:19.756620px;}
.ls70{letter-spacing:20.462203px;}
.ls89{letter-spacing:20.550589px;}
.ls8b{letter-spacing:20.892207px;}
.ls17{letter-spacing:20.932587px;}
.ls2c{letter-spacing:21.167783px;}
.ls1b{letter-spacing:22.579009px;}
.ls59{letter-spacing:22.637760px;}
.ls72{letter-spacing:23.008205px;}
.ls75{letter-spacing:25.812906px;}
.ls54{letter-spacing:29.446740px;}
.ls49{letter-spacing:32.633682px;}
.ls67{letter-spacing:36.044022px;}
.ls15{letter-spacing:38.572405px;}
.ls31{letter-spacing:38.572422px;}
.ls3c{letter-spacing:41.002572px;}
.ls7c{letter-spacing:42.159162px;}
.ls80{letter-spacing:42.453162px;}
.ls52{letter-spacing:59.040478px;}
.ls3e{letter-spacing:62.562582px;}
.ls41{letter-spacing:66.488160px;}
.ls4f{letter-spacing:73.669768px;}
.ls50{letter-spacing:93.055930px;}
.ls74{letter-spacing:95.737183px;}
.ls51{letter-spacing:98.159718px;}
.ls53{letter-spacing:120.950366px;}
.ls4d{letter-spacing:144.223168px;}
.ls73{letter-spacing:148.803642px;}
.ls71{letter-spacing:201.188027px;}
.ls82{letter-spacing:207.635805px;}
.ls4c{letter-spacing:277.023737px;}
.ls92{letter-spacing:308.660142px;}
.ls1a{letter-spacing:324.690274px;}
.ls8c{letter-spacing:328.867889px;}
.ls87{letter-spacing:351.859602px;}
.ls4e{letter-spacing:378.297700px;}
.ls55{letter-spacing:544.700002px;}
.ls8a{letter-spacing:776.346118px;}
.ls47{letter-spacing:1067.855922px;}
.ls43{letter-spacing:1079.792262px;}
.ls6e{letter-spacing:1239.432607px;}
.ls4a{letter-spacing:1288.941642px;}
.ls60{letter-spacing:1354.385407px;}
.ls3d{letter-spacing:1356.325782px;}
.ls23{letter-spacing:1667.903742px;}
.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;}
}
.wsce{word-spacing:-776.404917px;}
.ws96{word-spacing:-544.758801px;}
.wsd7{word-spacing:-351.907601px;}
.ws9b{word-spacing:-277.071737px;}
.wsea{word-spacing:-254.948813px;}
.wsd0{word-spacing:-207.683804px;}
.ws93{word-spacing:-121.009165px;}
.ws8c{word-spacing:-98.218518px;}
.wsae{word-spacing:-95.795982px;}
.ws8b{word-spacing:-93.114730px;}
.ws8a{word-spacing:-73.728568px;}
.wsd8{word-spacing:-65.783178px;}
.ws8d{word-spacing:-59.099277px;}
.ws73{word-spacing:-45.922331px;}
.ws95{word-spacing:-29.505539px;}
.wsa7{word-spacing:-23.067005px;}
.wscd{word-spacing:-20.933366px;}
.wsc9{word-spacing:-20.591748px;}
.wsef{word-spacing:-18.577080px;}
.wsd5{word-spacing:-1.852777px;}
.wsf{word-spacing:-0.061800px;}
.ws6b{word-spacing:-0.058799px;}
.wsd2{word-spacing:-0.047999px;}
.ws9{word-spacing:-0.044999px;}
.ws7a{word-spacing:-0.041159px;}
.ws7d{word-spacing:-0.039194px;}
.ws0{word-spacing:0.000000px;}
.wsf6{word-spacing:10.799856px;}
.wsed{word-spacing:11.294849px;}
.wsec{word-spacing:11.519846px;}
.ws8{word-spacing:11.879842px;}
.ws2e{word-spacing:12.431822px;}
.ws30{word-spacing:12.473822px;}
.ws31{word-spacing:12.515821px;}
.ws2f{word-spacing:12.557797px;}
.wsf9{word-spacing:13.184824px;}
.wsf5{word-spacing:13.229824px;}
.wsf3{word-spacing:13.274823px;}
.wse{word-spacing:13.319822px;}
.wsf2{word-spacing:13.364822px;}
.wsa{word-spacing:13.409821px;}
.wsb{word-spacing:13.454821px;}
.wse7{word-spacing:13.499820px;}
.wsf4{word-spacing:13.544819px;}
.wsf8{word-spacing:13.589800px;}
.wsd{word-spacing:13.589819px;}
.wsf7{word-spacing:13.634818px;}
.wsf0{word-spacing:13.679818px;}
.wsfa{word-spacing:13.769816px;}
.wsf1{word-spacing:13.814816px;}
.wsee{word-spacing:13.859815px;}
.ws32{word-spacing:13.871827px;}
.wsd6{word-spacing:13.871828px;}
.ws9c{word-spacing:13.919826px;}
.wsc{word-spacing:13.949814px;}
.ws34{word-spacing:13.967858px;}
.ws33{word-spacing:14.207822px;}
.ws5c{word-spacing:14.255822px;}
.ws35{word-spacing:14.303821px;}
.wsb3{word-spacing:15.822000px;}
.ws9a{word-spacing:15.876000px;}
.wse8{word-spacing:15.930000px;}
.wsd4{word-spacing:15.984000px;}
.ws99{word-spacing:16.092000px;}
.wse9{word-spacing:16.254000px;}
.ws9e{word-spacing:16.670581px;}
.wsb8{word-spacing:16.725782px;}
.wsa6{word-spacing:17.051826px;}
.wsdb{word-spacing:17.110625px;}
.ws14{word-spacing:17.208172px;}
.ws27{word-spacing:17.228224px;}
.ws21{word-spacing:17.280169px;}
.wsac{word-spacing:17.287024px;}
.ws1f{word-spacing:17.304173px;}
.ws3d{word-spacing:17.345823px;}
.ws10{word-spacing:17.352174px;}
.ws1a{word-spacing:17.364174px;}
.ws1c{word-spacing:17.448174px;}
.ws65{word-spacing:17.463422px;}
.ws20{word-spacing:17.520175px;}
.ws4c{word-spacing:17.522221px;}
.ws15{word-spacing:17.526175px;}
.ws1b{word-spacing:17.580176px;}
.ws26{word-spacing:17.581021px;}
.ws19{word-spacing:17.598176px;}
.ws17{word-spacing:17.616176px;}
.ws5a{word-spacing:17.639820px;}
.ws11{word-spacing:17.640176px;}
.ws6f{word-spacing:17.698619px;}
.ws7f{word-spacing:17.698643px;}
.ws18{word-spacing:17.736177px;}
.ws79{word-spacing:17.757419px;}
.wsc5{word-spacing:17.757421px;}
.ws13{word-spacing:17.760178px;}
.ws12{word-spacing:17.778178px;}
.ws1d{word-spacing:17.808178px;}
.ws98{word-spacing:17.810338px;}
.ws23{word-spacing:17.816218px;}
.ws16{word-spacing:17.826178px;}
.ws48{word-spacing:17.875018px;}
.ws1e{word-spacing:17.928179px;}
.ws84{word-spacing:17.933817px;}
.ws81{word-spacing:17.992616px;}
.ws80{word-spacing:18.051416px;}
.ws3a{word-spacing:18.110215px;}
.ws25{word-spacing:18.169015px;}
.wsc4{word-spacing:18.227814px;}
.wsc2{word-spacing:18.286613px;}
.wsb7{word-spacing:18.463012px;}
.wsc3{word-spacing:18.463042px;}
.wsb4{word-spacing:18.521811px;}
.ws4d{word-spacing:18.540000px;}
.ws64{word-spacing:18.580610px;}
.ws7c{word-spacing:18.698209px;}
.ws7e{word-spacing:18.757009px;}
.ws77{word-spacing:18.815808px;}
.ws63{word-spacing:18.874607px;}
.ws46{word-spacing:18.933407px;}
.wsbb{word-spacing:18.992206px;}
.ws28{word-spacing:19.109805px;}
.ws4e{word-spacing:19.168604px;}
.wsc7{word-spacing:19.174484px;}
.ws5f{word-spacing:19.227404px;}
.ws7b{word-spacing:19.227425px;}
.wsa3{word-spacing:19.403802px;}
.ws2b{word-spacing:19.462601px;}
.ws82{word-spacing:19.580200px;}
.wsa9{word-spacing:19.697799px;}
.ws6{word-spacing:19.734179px;}
.ws24{word-spacing:19.756598px;}
.ws5{word-spacing:19.800180px;}
.wsa2{word-spacing:19.815398px;}
.wsa8{word-spacing:19.874165px;}
.wsaf{word-spacing:19.874197px;}
.wsb9{word-spacing:19.932997px;}
.ws7{word-spacing:19.998182px;}
.wsc6{word-spacing:20.109395px;}
.ws5b{word-spacing:20.168194px;}
.wsb1{word-spacing:20.285793px;}
.wsd9{word-spacing:20.403392px;}
.ws60{word-spacing:20.462191px;}
.wsb2{word-spacing:20.462192px;}
.wsb0{word-spacing:20.462243px;}
.wsab{word-spacing:20.520991px;}
.wse1{word-spacing:20.638589px;}
.ws37{word-spacing:20.756188px;}
.ws9f{word-spacing:20.873787px;}
.ws66{word-spacing:20.932586px;}
.ws75{word-spacing:21.167784px;}
.ws3b{word-spacing:21.226583px;}
.wsbe{word-spacing:21.285383px;}
.ws62{word-spacing:21.461781px;}
.ws36{word-spacing:21.579380px;}
.wsca{word-spacing:21.814577px;}
.wsc1{word-spacing:21.873377px;}
.ws44{word-spacing:22.226173px;}
.ws50{word-spacing:22.343772px;}
.ws5d{word-spacing:22.461371px;}
.ws78{word-spacing:22.578970px;}
.ws74{word-spacing:22.578997px;}
.ws59{word-spacing:22.755368px;}
.ws88{word-spacing:22.872967px;}
.ws3c{word-spacing:22.931766px;}
.wsde{word-spacing:22.949406px;}
.wscb{word-spacing:23.049365px;}
.wsdf{word-spacing:23.108164px;}
.wscc{word-spacing:23.166964px;}
.wsa0{word-spacing:23.225763px;}
.wse2{word-spacing:23.284562px;}
.ws67{word-spacing:23.343362px;}
.ws3f{word-spacing:23.519760px;}
.ws87{word-spacing:23.578559px;}
.ws1{word-spacing:23.634000px;}
.ws2a{word-spacing:23.872556px;}
.ws47{word-spacing:23.931356px;}
.ws58{word-spacing:23.990155px;}
.wse4{word-spacing:24.048955px;}
.wsa4{word-spacing:24.166553px;}
.ws22{word-spacing:24.225353px;}
.ws86{word-spacing:24.284152px;}
.wsbc{word-spacing:24.342952px;}
.wsbd{word-spacing:24.636949px;}
.wse0{word-spacing:24.695748px;}
.wsdd{word-spacing:24.719268px;}
.ws4f{word-spacing:24.813347px;}
.ws2c{word-spacing:25.048544px;}
.wsc8{word-spacing:25.107344px;}
.wsa5{word-spacing:25.283742px;}
.ws76{word-spacing:25.401341px;}
.wsb6{word-spacing:25.518958px;}
.ws6a{word-spacing:25.577739px;}
.ws94{word-spacing:25.754137px;}
.ws85{word-spacing:26.988925px;}
.ws42{word-spacing:27.047724px;}
.ws39{word-spacing:27.400520px;}
.ws4a{word-spacing:27.518119px;}
.ws61{word-spacing:27.694517px;}
.ws29{word-spacing:27.753317px;}
.ws5e{word-spacing:28.106113px;}
.wsdc{word-spacing:28.135513px;}
.wsa1{word-spacing:28.282511px;}
.ws38{word-spacing:28.341311px;}
.ws49{word-spacing:29.046904px;}
.ws53{word-spacing:29.576098px;}
.ws97{word-spacing:30.340490px;}
.ws51{word-spacing:30.375770px;}
.ws89{word-spacing:30.634487px;}
.wsaa{word-spacing:30.693287px;}
.ws55{word-spacing:30.716807px;}
.ws41{word-spacing:30.752086px;}
.wsb5{word-spacing:31.398880px;}
.wse3{word-spacing:31.634077px;}
.wsba{word-spacing:31.692877px;}
.ws4b{word-spacing:31.751676px;}
.ws3e{word-spacing:31.869275px;}
.ws45{word-spacing:31.928074px;}
.ws54{word-spacing:32.163272px;}
.wse5{word-spacing:32.516068px;}
.ws72{word-spacing:32.627330px;}
.ws2d{word-spacing:32.751266px;}
.ws6e{word-spacing:33.868454px;}
.ws6c{word-spacing:33.985977px;}
.ws6d{word-spacing:34.044853px;}
.wsad{word-spacing:34.574047px;}
.ws43{word-spacing:34.809245px;}
.ws40{word-spacing:35.397239px;}
.ws52{word-spacing:35.938193px;}
.wsda{word-spacing:37.278820px;}
.ws68{word-spacing:38.101991px;}
.ws69{word-spacing:38.278409px;}
.wsc0{word-spacing:38.984002px;}
.wsbf{word-spacing:39.160400px;}
.wse6{word-spacing:39.571996px;}
.ws57{word-spacing:41.394778px;}
.ws2{word-spacing:43.344181px;}
.ws4{word-spacing:43.632182px;}
.ws3{word-spacing:43.920183px;}
.ws56{word-spacing:47.080680px;}
.ws71{word-spacing:52.696670px;}
.ws91{word-spacing:58.858199px;}
.ws70{word-spacing:61.532406px;}
.ws8e{word-spacing:63.914948px;}
.ws8f{word-spacing:68.677699px;}
.ws92{word-spacing:73.440451px;}
.ws90{word-spacing:78.555998px;}
.wsd3{word-spacing:153.646079px;}
.wsd1{word-spacing:207.597405px;}
.ws9d{word-spacing:223.005212px;}
.wseb{word-spacing:308.396145px;}
.wscf{word-spacing:949.140128px;}
.ws83{word-spacing:1337.509962px;}
._48{margin-left:-782.450999px;}
._4a{margin-left:-776.238749px;}
._23{margin-left:-560.711033px;}
._24{margin-left:-544.564760px;}
._4f{margin-left:-328.891889px;}
._32{margin-left:-223.614120px;}
._34{margin-left:-171.576660px;}
._21{margin-left:-120.717550px;}
._35{margin-left:-114.855708px;}
._1f{margin-left:-98.183215px;}
._36{margin-left:-95.572544px;}
._1e{margin-left:-92.856021px;}
._1d{margin-left:-73.487457px;}
._20{margin-left:-59.163955px;}
._47{margin-left:-36.219720px;}
._22{margin-left:-29.611379px;}
._26{margin-left:-22.463719px;}
._52{margin-left:-17.922000px;}
._33{margin-left:-9.854756px;}
._46{margin-left:-6.406730px;}
._1c{margin-left:-5.171943px;}
._a{margin-left:-4.052350px;}
._49{margin-left:-2.050770px;}
._5{margin-left:-1.020010px;}
._3{width:1.349982px;}
._11{width:2.582365px;}
._1b{width:5.997547px;}
._0{width:9.048000px;}
._51{width:10.247255px;}
._53{width:12.350885px;}
._d{width:13.523770px;}
._4{width:14.714804px;}
._6{width:17.100171px;}
._31{width:18.232622px;}
._9{width:19.345003px;}
._8{width:20.932586px;}
._19{width:22.049775px;}
._e{width:23.108164px;}
._16{width:24.168958px;}
._7{width:25.406149px;}
._b{width:26.516125px;}
._f{width:28.578913px;}
._18{width:29.634898px;}
._15{width:30.964547px;}
._12{width:32.880886px;}
._c{width:34.110865px;}
._13{width:35.286853px;}
._10{width:36.984823px;}
._14{width:38.102011px;}
._3d{width:40.395188px;}
._2{width:42.480177px;}
._1a{width:66.677256px;}
._4e{width:207.645404px;}
._27{width:223.650217px;}
._2f{width:230.492989px;}
._2c{width:231.597105px;}
._29{width:246.044894px;}
._2e{width:254.396855px;}
._28{width:277.340536px;}
._2b{width:296.399482px;}
._2d{width:301.820195px;}
._4c{width:345.751739px;}
._30{width:470.922142px;}
._2a{width:478.649985px;}
._25{width:499.193788px;}
._3f{width:549.833081px;}
._40{width:550.862045px;}
._50{width:571.960850px;}
._43{width:624.013130px;}
._44{width:629.032115px;}
._41{width:659.703767px;}
._4d{width:672.231476px;}
._17{width:792.770072px;}
._45{width:798.133942px;}
._42{width:805.861905px;}
._3e{width:826.405648px;}
._4b{width:880.705044px;}
._38{width:1233.557645px;}
._3a{width:1306.708730px;}
._3b{width:1311.727655px;}
._3c{width:1480.829542px;}
._39{width:1488.557445px;}
._37{width:1509.101188px;}
._1{width:1752.660000px;}
.fc2{color:rgb(19,20,19);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:29.400000px;}
.fsa{font-size:29.995200px;}
.fs10{font-size:39.194400px;}
.fs11{font-size:41.158800px;}
.fse{font-size:41.999400px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:43.996200px;}
.fs9{font-size:44.999400px;}
.fsf{font-size:47.999400px;}
.fs13{font-size:54.000000px;}
.fs14{font-size:55.200600px;}
.fsd{font-size:58.799400px;}
.fs3{font-size:60.000000px;}
.fsc{font-size:60.000600px;}
.fsb{font-size:61.800000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:66.000600px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:78.000000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:144.000600px;}
.y0{bottom:0.000000px;}
.y6{bottom:35.925007px;}
.y5{bottom:66.525004px;}
.y55{bottom:79.511030px;}
.y174{bottom:90.309915px;}
.ye1{bottom:90.311850px;}
.ya5{bottom:90.318825px;}
.y85{bottom:90.399375px;}
.y54{bottom:91.501865px;}
.y4{bottom:97.125005px;}
.y53{bottom:103.492685px;}
.y173{bottom:103.832235px;}
.ya3{bottom:109.105500px;}
.y12e{bottom:110.826555px;}
.ye0{bottom:110.827980px;}
.ya4{bottom:111.486600px;}
.y107{bottom:111.490410px;}
.ya2{bottom:111.494385px;}
.y84{bottom:111.567165px;}
.y52{bottom:115.483520px;}
.y105{bottom:130.280250px;}
.y12d{bottom:131.826300px;}
.ydf{bottom:131.827725px;}
.y104{bottom:132.741360px;}
.y106{bottom:132.746400px;}
.ya1{bottom:132.750360px;}
.y83{bottom:132.823140px;}
.y23{bottom:139.264499px;}
.y51{bottom:139.870625px;}
.y172{bottom:140.574240px;}
.y9f{bottom:151.540200px;}
.y12c{bottom:152.826030px;}
.yde{bottom:152.827455px;}
.ya0{bottom:154.006350px;}
.y9e{bottom:154.013310px;}
.y82{bottom:154.079130px;}
.y171{bottom:154.096560px;}
.y50{bottom:161.126600px;}
.y103{bottom:167.747985px;}
.y9c{bottom:172.714950px;}
.y12b{bottom:173.741775px;}
.ydd{bottom:173.743200px;}
.y9b{bottom:175.176720px;}
.y9d{bottom:175.181100px;}
.y81{bottom:175.246905px;}
.y4f{bottom:182.294390px;}
.y170{bottom:190.917315px;}
.y12a{bottom:194.741505px;}
.ydc{bottom:194.742930px;}
.y80{bottom:196.502895px;}
.y1a{bottom:196.933500px;}
.y102{bottom:198.705870px;}
.y4e{bottom:203.550365px;}
.y16f{bottom:204.349635px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y129{bottom:214.469265px;}
.ydb{bottom:214.470690px;}
.y99{bottom:215.655450px;}
.y7f{bottom:217.670685px;}
.y101{bottom:219.873660px;}
.y151{bottom:220.758615px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y4d{bottom:224.718155px;}
.y9a{bottom:231.477150px;}
.y97{bottom:231.512610px;}
.yda{bottom:234.198435px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y7e{bottom:238.926660px;}
.y100{bottom:241.129635px;}
.y16e{bottom:241.290360px;}
.y4c{bottom:245.974130px;}
.y98{bottom:248.314950px;}
.yd9{bottom:253.927500px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y7d{bottom:260.182650px;}
.yff{bottom:262.297425px;}
.y16d{bottom:262.546350px;}
.y4b{bottom:267.141920px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y127{bottom:278.844000px;}
.y128{bottom:281.310315px;}
.y126{bottom:281.321070px;}
.y7c{bottom:281.350425px;}
.yfe{bottom:283.553400px;}
.y16c{bottom:283.714125px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y4a{bottom:288.397910px;}
.y96{bottom:295.295265px;}
.y125{bottom:302.577060px;}
.y7b{bottom:302.606415px;}
.yd8{bottom:302.674425px;}
.yfd{bottom:304.809390px;}
.y16b{bottom:304.970115px;}
.y49{bottom:309.653885px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y95{bottom:316.551240px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y124{bottom:323.744850px;}
.y7a{bottom:323.774190px;}
.yd7{bottom:323.842215px;}
.y14b{bottom:324.591405px;}
.yfc{bottom:325.977165px;}
.y16a{bottom:326.137890px;}
.y48{bottom:330.821675px;}
.y94{bottom:337.719030px;}
.y123{bottom:345.004650px;}
.y79{bottom:345.030180px;}
.yfb{bottom:347.233155px;}
.y169{bottom:347.393880px;}
.y11{bottom:348.133500px;}
.y14a{bottom:348.834630px;}
.y47{bottom:352.077650px;}
.yd6{bottom:357.681270px;}
.y93{bottom:358.975005px;}
.y78{bottom:366.286155px;}
.yfa{bottom:368.400945px;}
.y168{bottom:368.561670px;}
.y149{bottom:372.986475px;}
.y46{bottom:373.245440px;}
.y92{bottom:380.142795px;}
.y10{bottom:386.785499px;}
.y77{bottom:387.453945px;}
.yd5{bottom:388.212855px;}
.yf9{bottom:389.656920px;}
.y167{bottom:389.817645px;}
.y147{bottom:391.776300px;}
.y148{bottom:394.242465px;}
.y146{bottom:394.278900px;}
.y45{bottom:394.501430px;}
.y122{bottom:398.135070px;}
.y91{bottom:401.398770px;}
.yf{bottom:408.044999px;}
.y76{bottom:408.709935px;}
.yd4{bottom:409.380645px;}
.y166{bottom:411.073635px;}
.y145{bottom:415.534875px;}
.y44{bottom:415.757405px;}
.y121{bottom:419.391045px;}
.yf7{bottom:422.564625px;}
.y90{bottom:422.566560px;}
.yf6{bottom:428.856495px;}
.y75{bottom:429.877710px;}
.y165{bottom:432.241410px;}
.yf8{bottom:432.604620px;}
.yf4{bottom:432.668820px;}
.y19e{bottom:436.003845px;}
.y144{bottom:436.702665px;}
.y43{bottom:436.932140px;}
.y120{bottom:440.558835px;}
.yf5{bottom:440.844000px;}
.ycb{bottom:443.557800px;}
.y19d{bottom:449.526165px;}
.y74{bottom:451.133700px;}
.y164{bottom:453.497400px;}
.y143{bottom:457.958655px;}
.y11f{bottom:461.814810px;}
.y19c{bottom:462.958485px;}
.yca{bottom:463.623090px;}
.yd2{bottom:465.240075px;}
.y8d{bottom:468.906915px;}
.yf3{bottom:472.211415px;}
.y73{bottom:472.308615px;}
.yd1{bottom:474.001185px;}
.y163{bottom:474.665175px;}
.y19b{bottom:476.480805px;}
.y142{bottom:479.126430px;}
.yd0{bottom:482.762295px;}
.y11e{bottom:482.982600px;}
.yc6{bottom:483.585480px;}
.yd3{bottom:483.614895px;}
.yc9{bottom:483.688380px;}
.ye{bottom:484.864502px;}
.y8a{bottom:486.596820px;}
.y8c{bottom:488.806185px;}
.y8f{bottom:489.994770px;}
.y19a{bottom:490.003125px;}
.ycf{bottom:491.435205px;}
.yf2{bottom:493.379205px;}
.y162{bottom:495.921165px;}
.yce{bottom:500.196315px;}
.y141{bottom:500.382420px;}
.y42{bottom:502.833395px;}
.yd{bottom:502.864502px;}
.y199{bottom:503.525445px;}
.yc8{bottom:503.665485px;}
.y11d{bottom:504.238575px;}
.ycd{bottom:508.869225px;}
.y8b{bottom:509.385780px;}
.yf1{bottom:514.635195px;}
.y72{bottom:514.959285px;}
.y8e{bottom:515.763615px;}
.y198{bottom:516.957765px;}
.y161{bottom:517.177140px;}
.y41{bottom:520.773575px;}
.yc{bottom:520.864502px;}
.y140{bottom:521.638395px;}
.yc7{bottom:523.730775px;}
.y11c{bottom:525.406365px;}
.y197{bottom:530.480085px;}
.ycc{bottom:534.638070px;}
.yf0{bottom:535.891170px;}
.y71{bottom:536.127060px;}
.y160{bottom:538.344930px;}
.yb{bottom:538.864499px;}
.y13e{bottom:542.805525px;}
.y196{bottom:544.002405px;}
.y40{bottom:546.288830px;}
.y11b{bottom:546.662355px;}
.y13f{bottom:549.864435px;}
.yc5{bottom:554.512260px;}
.ya{bottom:556.864499px;}
.yef{bottom:557.058960px;}
.y70{bottom:557.383050px;}
.y195{bottom:557.524725px;}
.y15f{bottom:559.600920px;}
.y3f{bottom:564.319010px;}
.y13c{bottom:566.959875px;}
.y11a{bottom:567.918330px;}
.y194{bottom:570.957045px;}
.y13d{bottom:574.015635px;}
.yc4{bottom:575.680050px;}
.yee{bottom:578.314935px;}
.y89{bottom:578.441475px;}
.y6f{bottom:578.550825px;}
.y15e{bottom:580.768695px;}
.y3e{bottom:582.259190px;}
.y193{bottom:584.479365px;}
.y119{bottom:589.086120px;}
.y13a{bottom:591.022875px;}
.yc3{bottom:596.936025px;}
.y87{bottom:597.231450px;}
.y192{bottom:598.001685px;}
.y13b{bottom:598.081785px;}
.yed{bottom:599.482725px;}
.y88{bottom:599.697465px;}
.y6e{bottom:599.806815px;}
.y3d{bottom:600.289370px;}
.y118{bottom:610.342095px;}
.y191{bottom:611.524005px;}
.y138{bottom:615.181065px;}
.yc2{bottom:618.192015px;}
.y3c{bottom:618.319550px;}
.yec{bottom:620.738700px;}
.y6d{bottom:621.062805px;}
.y139{bottom:622.232985px;}
.y190{bottom:624.956325px;}
.y117{bottom:631.509885px;}
.y15d{bottom:633.232470px;}
.y3b{bottom:636.259730px;}
.y18f{bottom:638.478645px;}
.y137{bottom:639.244725px;}
.yc1{bottom:639.359790px;}
.yeb{bottom:641.994690px;}
.y6c{bottom:642.230580px;}
.y9{bottom:645.510000px;}
.y18e{bottom:652.000965px;}
.y116{bottom:652.765875px;}
.y3a{bottom:654.289910px;}
.y15c{bottom:654.488445px;}
.y135{bottom:660.521580px;}
.yc0{bottom:660.615780px;}
.yea{bottom:663.162480px;}
.y6b{bottom:663.486570px;}
.y18d{bottom:665.523285px;}
.y8{bottom:666.771000px;}
.y136{bottom:667.558965px;}
.y39{bottom:672.320090px;}
.y115{bottom:674.021850px;}
.y15b{bottom:675.656235px;}
.y18c{bottom:678.955605px;}
.ybf{bottom:681.783555px;}
.ye9{bottom:684.418455px;}
.y134{bottom:684.585225px;}
.y6a{bottom:684.654345px;}
.y38{bottom:690.260270px;}
.y18b{bottom:692.477925px;}
.y114{bottom:695.196765px;}
.y15a{bottom:696.912210px;}
.ybe{bottom:703.039545px;}
.ye8{bottom:705.586245px;}
.y133{bottom:705.841215px;}
.y69{bottom:705.910335px;}
.y18a{bottom:706.000245px;}
.y37{bottom:708.290450px;}
.y159{bottom:718.168200px;}
.y189{bottom:719.522565px;}
.ybd{bottom:724.295535px;}
.y7{bottom:726.298500px;}
.y36{bottom:726.320630px;}
.ye7{bottom:726.842220px;}
.y132{bottom:727.097205px;}
.y68{bottom:727.166310px;}
.y188{bottom:732.954885px;}
.y31{bottom:734.315540px;}
.y158{bottom:739.335975px;}
.y35{bottom:744.260810px;}
.ybc{bottom:745.463310px;}
.y187{bottom:746.477205px;}
.y30{bottom:747.837860px;}
.ye6{bottom:748.098210px;}
.y131{bottom:748.264980px;}
.y113{bottom:748.286925px;}
.y67{bottom:748.334100px;}
.y3{bottom:752.599495px;}
.y186{bottom:759.999525px;}
.y157{bottom:760.591965px;}
.y155{bottom:760.599090px;}
.y2f{bottom:761.360180px;}
.y34{bottom:762.290990px;}
.ybb{bottom:766.719300px;}
.y12f{bottom:767.055000px;}
.y156{bottom:767.140050px;}
.ye5{bottom:769.265985px;}
.y130{bottom:769.520970px;}
.y112{bottom:769.542900px;}
.y66{bottom:769.590090px;}
.y185{bottom:773.521845px;}
.y2e{bottom:774.792500px;}
.y33{bottom:780.321170px;}
.y154{bottom:781.762935px;}
.y184{bottom:786.954165px;}
.yba{bottom:787.887075px;}
.y2d{bottom:788.314820px;}
.ye4{bottom:790.525815px;}
.y111{bottom:790.710690px;}
.y65{bottom:790.757865px;}
.y2c{bottom:793.332185px;}
.y183{bottom:800.475495px;}
.y2b{bottom:801.834890px;}
.y153{bottom:805.999140px;}
.y32{bottom:807.278600px;}
.y110{bottom:811.966680px;}
.y64{bottom:812.013855px;}
.y2a{bottom:815.357210px;}
.yb4{bottom:821.986005px;}
.y152{bottom:830.239200px;}
.ye3{bottom:833.222655px;}
.y63{bottom:833.269830px;}
.yb2{bottom:837.798270px;}
.yb5{bottom:837.807765px;}
.y182{bottom:840.950925px;}
.yb8{bottom:851.754180px;}
.ye2{bottom:854.390445px;}
.y62{bottom:854.437620px;}
.yb3{bottom:854.645505px;}
.yb7{bottom:859.492680px;}
.yb9{bottom:862.128930px;}
.yb6{bottom:862.979370px;}
.y28{bottom:865.020275px;}
.y181{bottom:867.995565px;}
.y29{bottom:872.418650px;}
.y61{bottom:875.693595px;}
.y2{bottom:879.369000px;}
.y180{bottom:881.517885px;}
.y177{bottom:882.113070px;}
.y17f{bottom:886.450200px;}
.yb1{bottom:888.233460px;}
.y17e{bottom:894.952005px;}
.y60{bottom:896.861385px;}
.y27{bottom:901.081670px;}
.y10f{bottom:901.842315px;}
.y176{bottom:902.630325px;}
.y150{bottom:903.117915px;}
.y5f{bottom:918.117375px;}
.y17d{bottom:921.996645px;}
.yac{bottom:922.332465px;}
.y10e{bottom:922.358070px;}
.y14f{bottom:923.630055px;}
.yb0{bottom:934.072170px;}
.y17c{bottom:935.517885px;}
.yad{bottom:938.154150px;}
.yaf{bottom:938.159220px;}
.yae{bottom:938.409120px;}
.y5e{bottom:939.285150px;}
.y26{bottom:940.033820px;}
.y10d{bottom:943.357815px;}
.y14e{bottom:944.629800px;}
.yaa{bottom:952.012815px;}
.yab{bottom:954.991980px;}
.y5d{bottom:960.541140px;}
.y10c{bottom:964.357545px;}
.y14d{bottom:965.629530px;}
.y1{bottom:966.726000px;}
.y17b{bottom:977.957070px;}
.y25{bottom:979.057985px;}
.ya9{bottom:980.501130px;}
.y5c{bottom:981.797115px;}
.y10b{bottom:985.357290px;}
.y14c{bottom:986.629275px;}
.y17a{bottom:991.389390px;}
.y5b{bottom:1002.964905px;}
.y10a{bottom:1006.357020px;}
.y175{bottom:1012.560945px;}
.ya8{bottom:1014.600135px;}
.y179{bottom:1018.434030px;}
.y5a{bottom:1024.220880px;}
.y109{bottom:1026.084780px;}
.ya6{bottom:1030.421820px;}
.y178{bottom:1031.956350px;}
.y24{bottom:1036.034385px;}
.y59{bottom:1045.388670px;}
.y108{bottom:1045.813935px;}
.ya7{bottom:1047.259650px;}
.y58{bottom:1099.990340px;}
.y57{bottom:1114.954145px;}
.y86{bottom:1129.917945px;}
.y19f{bottom:1129.917963px;}
.y56{bottom:1129.917965px;}
.h1a{height:2.351976px;}
.h1c{height:8.819951px;}
.h29{height:15.681503px;}
.hf{height:21.626539px;}
.h16{height:28.219968px;}
.h18{height:29.181589px;}
.h25{height:29.798971px;}
.h13{height:30.281567px;}
.h1e{height:30.869100px;}
.hd{height:31.721260px;}
.h7{height:32.130000px;}
.he{height:32.444567px;}
.h14{height:34.607567px;}
.h21{height:34.691646px;}
.h27{height:38.934000px;}
.h28{height:39.799633px;}
.h19{height:41.688775px;}
.h15{height:42.287471px;}
.h12{height:42.570766px;}
.h11{height:43.260433px;}
.h2b{height:43.898010px;}
.h17{height:44.099550px;}
.h10{height:44.557800px;}
.h6{height:45.900000px;}
.hc{height:47.586433px;}
.h3{height:48.195000px;}
.h2d{height:53.293920px;}
.h2f{height:53.309340px;}
.h2c{height:53.575980px;}
.h2e{height:53.662140px;}
.h2{height:55.080000px;}
.h32{height:55.700040px;}
.h30{height:56.028180px;}
.h33{height:56.056020px;}
.h31{height:56.056080px;}
.ha{height:56.238000px;}
.h20{height:57.799776px;}
.h1d{height:58.010796px;}
.h1f{height:58.152576px;}
.h24{height:58.190616px;}
.h23{height:60.427470px;}
.h22{height:66.918709px;}
.h5{height:78.030000px;}
.h2a{height:99.193230px;}
.hb{height:103.824433px;}
.h1b{height:105.427356px;}
.h4{height:119.055004px;}
.h26{height:121.424676px;}
.h9{height:1190.250000px;}
.h8{height:1190.551500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:85.039395px;}
.xc{left:89.036295px;}
.x5{left:91.077180px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x12{left:176.452170px;}
.x56{left:180.453450px;}
.x11{left:188.447250px;}
.x58{left:194.486265px;}
.x1a{left:198.990495px;}
.x7{left:200.267745px;}
.x15{left:201.379365px;}
.x4{left:203.484001px;}
.x31{left:205.370115px;}
.x45{left:209.281815px;}
.x25{left:222.037815px;}
.x8{left:223.653480px;}
.x41{left:227.328510px;}
.x36{left:229.606200px;}
.x18{left:231.477150px;}
.x1b{left:235.984200px;}
.x40{left:239.308875px;}
.x17{left:243.637800px;}
.x16{left:244.913400px;}
.x2f{left:247.974750px;}
.x26{left:250.525950px;}
.x1c{left:253.247250px;}
.x27{left:258.689685px;}
.x30{left:265.152735px;}
.x10{left:266.768460px;}
.x33{left:268.380495px;}
.xe{left:271.105545px;}
.x32{left:272.125950px;}
.x28{left:278.078700px;}
.xd{left:280.800045px;}
.xf{left:283.100625px;}
.x34{left:287.858250px;}
.x48{left:293.896035px;}
.x35{left:294.916485px;}
.x3e{left:300.529065px;}
.x46{left:303.610215px;}
.x9{left:309.203160px;}
.x38{left:311.673105px;}
.x37{left:315.325950px;}
.x54{left:318.472350px;}
.xa{left:319.492830px;}
.x19{left:322.292820px;}
.x55{left:325.194840px;}
.x53{left:330.210780px;}
.x3c{left:332.503950px;}
.x3a{left:346.621740px;}
.x39{left:351.807750px;}
.x3b{left:367.625100px;}
.x2d{left:368.815665px;}
.x2e{left:376.809450px;}
.x3d{left:391.606200px;}
.x29{left:400.195215px;}
.x44{left:408.617805px;}
.x2a{left:411.335400px;}
.x42{left:417.221175px;}
.x1d{left:418.308615px;}
.x3f{left:423.836100px;}
.x43{left:426.908370px;}
.x1e{left:427.918035px;}
.x51{left:432.595185px;}
.x47{left:439.143120px;}
.x52{left:442.204650px;}
.xb{left:443.225145px;}
.x1f{left:446.796750px;}
.x13{left:452.239200px;}
.x20{left:453.429885px;}
.x3{left:454.959000px;}
.x21{left:466.185750px;}
.x14{left:467.461350px;}
.x22{left:474.349500px;}
.x57{left:522.566850px;}
.x49{left:526.393665px;}
.x4a{left:533.026650px;}
.x2b{left:590.343150px;}
.x23{left:592.894365px;}
.x2c{left:603.014100px;}
.x24{left:604.204515px;}
.x4b{left:641.451915px;}
.x4c{left:651.061200px;}
.x4d{left:669.939885px;}
.x4e{left:676.573065px;}
.x4f{left:689.329050px;}
.x50{left:704.466015px;}
@media print{
.vf{vertical-align:-25.096053pt;}
.v11{vertical-align:-22.374880pt;}
.ve{vertical-align:-20.258133pt;}
.v6{vertical-align:-13.304053pt;}
.v4{vertical-align:-12.073440pt;}
.v2{vertical-align:-7.861280pt;}
.v1{vertical-align:-5.745120pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:13.293120pt;}
.v9{vertical-align:14.513707pt;}
.vd{vertical-align:20.183893pt;}
.v10{vertical-align:22.363627pt;}
.v8{vertical-align:24.170773pt;}
.v7{vertical-align:33.544107pt;}
.vc{vertical-align:35.679040pt;}
.v5{vertical-align:49.474507pt;}
.v3{vertical-align:91.622560pt;}
.va{vertical-align:105.842400pt;}
.lsc{letter-spacing:-1.376014pt;}
.ls7{letter-spacing:-1.365347pt;}
.ls3{letter-spacing:-1.349347pt;}
.ls5{letter-spacing:-1.338680pt;}
.ls2{letter-spacing:-1.333347pt;}
.lsb{letter-spacing:-1.322680pt;}
.ls6{letter-spacing:-1.312013pt;}
.ls8{letter-spacing:-1.296013pt;}
.ls1{letter-spacing:-1.290680pt;}
.lsa{letter-spacing:-1.280013pt;}
.lsd{letter-spacing:-1.248012pt;}
.lsf{letter-spacing:-1.242679pt;}
.lse{letter-spacing:-1.226679pt;}
.ls4{letter-spacing:-1.216012pt;}
.ls9{letter-spacing:-1.194679pt;}
.ls88{letter-spacing:-0.005227pt;}
.ls0{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.000034pt;}
.ls4b{letter-spacing:0.005227pt;}
.ls3b{letter-spacing:0.024075pt;}
.ls20{letter-spacing:0.033931pt;}
.ls36{letter-spacing:0.034411pt;}
.ls95{letter-spacing:0.039972pt;}
.ls96{letter-spacing:0.040009pt;}
.ls94{letter-spacing:0.040028pt;}
.ls5b{letter-spacing:0.052258pt;}
.ls19{letter-spacing:0.060469pt;}
.ls18{letter-spacing:0.060575pt;}
.ls45{letter-spacing:0.104517pt;}
.ls16{letter-spacing:0.104556pt;}
.ls46{letter-spacing:0.104571pt;}
.ls40{letter-spacing:0.146329pt;}
.ls29{letter-spacing:0.156769pt;}
.ls34{letter-spacing:0.156792pt;}
.ls6c{letter-spacing:0.156800pt;}
.ls24{letter-spacing:0.156845pt;}
.ls2b{letter-spacing:0.174197pt;}
.ls35{letter-spacing:0.182944pt;}
.ls1c{letter-spacing:0.209036pt;}
.ls5a{letter-spacing:0.209073pt;}
.ls69{letter-spacing:0.219551pt;}
.ls1f{letter-spacing:0.256075pt;}
.ls3f{letter-spacing:0.256128pt;}
.ls83{letter-spacing:0.298662pt;}
.ls77{letter-spacing:0.313581pt;}
.ls32{letter-spacing:0.318091pt;}
.ls2f{letter-spacing:0.336384pt;}
.ls8f{letter-spacing:0.522661pt;}
.ls13{letter-spacing:0.538341pt;}
.ls10{letter-spacing:0.543568pt;}
.ls8e{letter-spacing:0.548794pt;}
.ls12{letter-spacing:0.554021pt;}
.ls90{letter-spacing:0.559248pt;}
.ls11{letter-spacing:0.564474pt;}
.ls14{letter-spacing:0.574927pt;}
.ls68{letter-spacing:1.405740pt;}
.ls86{letter-spacing:1.604247pt;}
.ls65{letter-spacing:1.763820pt;}
.ls22{letter-spacing:2.170280pt;}
.ls42{letter-spacing:2.170333pt;}
.ls21{letter-spacing:2.582144pt;}
.ls6a{letter-spacing:2.602091pt;}
.ls64{letter-spacing:3.083669pt;}
.ls3a{letter-spacing:4.607613pt;}
.ls7d{letter-spacing:6.399664pt;}
.ls2e{letter-spacing:8.833004pt;}
.ls6d{letter-spacing:8.885211pt;}
.ls39{letter-spacing:8.885264pt;}
.ls25{letter-spacing:10.348684pt;}
.ls27{letter-spacing:10.348738pt;}
.ls5d{letter-spacing:11.759877pt;}
.ls93{letter-spacing:11.999802pt;}
.ls97{letter-spacing:12.159840pt;}
.ls5c{letter-spacing:12.543883pt;}
.ls84{letter-spacing:12.671835pt;}
.ls85{letter-spacing:12.671889pt;}
.ls30{letter-spacing:14.072171pt;}
.ls7f{letter-spacing:14.132379pt;}
.ls8d{letter-spacing:14.162939pt;}
.ls81{letter-spacing:14.177499pt;}
.ls66{letter-spacing:14.370731pt;}
.ls44{letter-spacing:14.373170pt;}
.ls48{letter-spacing:14.373175pt;}
.ls91{letter-spacing:14.400000pt;}
.ls6b{letter-spacing:14.465584pt;}
.ls2d{letter-spacing:14.477691pt;}
.ls1e{letter-spacing:14.477744pt;}
.ls5e{letter-spacing:14.529952pt;}
.ls5f{letter-spacing:14.697904pt;}
.ls76{letter-spacing:14.769265pt;}
.ls58{letter-spacing:14.784944pt;}
.ls38{letter-spacing:14.791291pt;}
.ls63{letter-spacing:14.791344pt;}
.ls56{letter-spacing:15.104958pt;}
.ls7b{letter-spacing:15.642806pt;}
.ls7e{letter-spacing:15.688246pt;}
.ls7a{letter-spacing:15.784358pt;}
.ls26{letter-spacing:15.888875pt;}
.ls2a{letter-spacing:16.097983pt;}
.ls78{letter-spacing:16.202483pt;}
.ls79{letter-spacing:16.411543pt;}
.ls98{letter-spacing:16.458027pt;}
.ls6f{letter-spacing:16.881979pt;}
.ls57{letter-spacing:17.095637pt;}
.ls37{letter-spacing:17.095744pt;}
.ls1d{letter-spacing:17.234060pt;}
.ls62{letter-spacing:17.352363pt;}
.ls61{letter-spacing:17.561425pt;}
.ls33{letter-spacing:17.561440pt;}
.ls70{letter-spacing:18.188625pt;}
.ls89{letter-spacing:18.267190pt;}
.ls8b{letter-spacing:18.570851pt;}
.ls17{letter-spacing:18.606744pt;}
.ls2c{letter-spacing:18.815807pt;}
.ls1b{letter-spacing:20.070230pt;}
.ls59{letter-spacing:20.122453pt;}
.ls72{letter-spacing:20.451738pt;}
.ls75{letter-spacing:22.944805pt;}
.ls54{letter-spacing:26.174880pt;}
.ls49{letter-spacing:29.007717pt;}
.ls67{letter-spacing:32.039131pt;}
.ls15{letter-spacing:34.286582pt;}
.ls31{letter-spacing:34.286597pt;}
.ls3c{letter-spacing:36.446731pt;}
.ls7c{letter-spacing:37.474811pt;}
.ls80{letter-spacing:37.736144pt;}
.ls52{letter-spacing:52.480424pt;}
.ls3e{letter-spacing:55.611184pt;}
.ls41{letter-spacing:59.100587pt;}
.ls4f{letter-spacing:65.484238pt;}
.ls50{letter-spacing:82.716383pt;}
.ls74{letter-spacing:85.099718pt;}
.ls51{letter-spacing:87.253083pt;}
.ls53{letter-spacing:107.511436pt;}
.ls4d{letter-spacing:128.198372pt;}
.ls73{letter-spacing:132.269904pt;}
.ls71{letter-spacing:178.833802pt;}
.ls82{letter-spacing:184.565160pt;}
.ls4c{letter-spacing:246.243322pt;}
.ls92{letter-spacing:274.364570pt;}
.ls1a{letter-spacing:288.613577pt;}
.ls8c{letter-spacing:292.327013pt;}
.ls87{letter-spacing:312.764090pt;}
.ls4e{letter-spacing:336.264622pt;}
.ls55{letter-spacing:484.177779pt;}
.ls8a{letter-spacing:690.085438pt;}
.ls47{letter-spacing:949.205264pt;}
.ls43{letter-spacing:959.815344pt;}
.ls6e{letter-spacing:1101.717873pt;}
.ls4a{letter-spacing:1145.725904pt;}
.ls60{letter-spacing:1203.898140pt;}
.ls3d{letter-spacing:1205.622917pt;}
.ls23{letter-spacing:1482.581104pt;}
.wsce{word-spacing:-690.137704pt;}
.ws96{word-spacing:-484.230045pt;}
.wsd7{word-spacing:-312.806757pt;}
.ws9b{word-spacing:-246.285988pt;}
.wsea{word-spacing:-226.621167pt;}
.wsd0{word-spacing:-184.607826pt;}
.ws93{word-spacing:-107.563702pt;}
.ws8c{word-spacing:-87.305349pt;}
.wsae{word-spacing:-85.151984pt;}
.ws8b{word-spacing:-82.768649pt;}
.ws8a{word-spacing:-65.536505pt;}
.wsd8{word-spacing:-58.473936pt;}
.ws8d{word-spacing:-52.532691pt;}
.ws73{word-spacing:-40.819850pt;}
.ws95{word-spacing:-26.227146pt;}
.wsa7{word-spacing:-20.504004pt;}
.wscd{word-spacing:-18.607436pt;}
.wsc9{word-spacing:-18.303776pt;}
.wsef{word-spacing:-16.512960pt;}
.wsd5{word-spacing:-1.646913pt;}
.wsf{word-spacing:-0.054933pt;}
.ws6b{word-spacing:-0.052266pt;}
.wsd2{word-spacing:-0.042666pt;}
.ws9{word-spacing:-0.039999pt;}
.ws7a{word-spacing:-0.036586pt;}
.ws7d{word-spacing:-0.034839pt;}
.ws0{word-spacing:0.000000pt;}
.wsf6{word-spacing:9.599872pt;}
.wsed{word-spacing:10.039866pt;}
.wsec{word-spacing:10.239863pt;}
.ws8{word-spacing:10.559859pt;}
.ws2e{word-spacing:11.050509pt;}
.ws30{word-spacing:11.087842pt;}
.ws31{word-spacing:11.125174pt;}
.ws2f{word-spacing:11.162486pt;}
.wsf9{word-spacing:11.719844pt;}
.wsf5{word-spacing:11.759843pt;}
.wsf3{word-spacing:11.799843pt;}
.wse{word-spacing:11.839842pt;}
.wsf2{word-spacing:11.879842pt;}
.wsa{word-spacing:11.919841pt;}
.wsb{word-spacing:11.959841pt;}
.wse7{word-spacing:11.999840pt;}
.wsf4{word-spacing:12.039839pt;}
.wsf8{word-spacing:12.079822pt;}
.wsd{word-spacing:12.079839pt;}
.wsf7{word-spacing:12.119838pt;}
.wsf0{word-spacing:12.159838pt;}
.wsfa{word-spacing:12.239837pt;}
.wsf1{word-spacing:12.279836pt;}
.wsee{word-spacing:12.319836pt;}
.ws32{word-spacing:12.330513pt;}
.wsd6{word-spacing:12.330514pt;}
.ws9c{word-spacing:12.373179pt;}
.wsc{word-spacing:12.399835pt;}
.ws34{word-spacing:12.415874pt;}
.ws33{word-spacing:12.629175pt;}
.ws5c{word-spacing:12.671842pt;}
.ws35{word-spacing:12.714508pt;}
.wsb3{word-spacing:14.064000pt;}
.ws9a{word-spacing:14.112000pt;}
.wse8{word-spacing:14.160000pt;}
.wsd4{word-spacing:14.208000pt;}
.ws99{word-spacing:14.304000pt;}
.wse9{word-spacing:14.448000pt;}
.ws9e{word-spacing:14.818294pt;}
.wsb8{word-spacing:14.867362pt;}
.wsa6{word-spacing:15.157179pt;}
.wsdb{word-spacing:15.209445pt;}
.ws14{word-spacing:15.296153pt;}
.ws27{word-spacing:15.313977pt;}
.ws21{word-spacing:15.360150pt;}
.wsac{word-spacing:15.366243pt;}
.ws1f{word-spacing:15.381487pt;}
.ws3d{word-spacing:15.418509pt;}
.ws10{word-spacing:15.424154pt;}
.ws1a{word-spacing:15.434821pt;}
.ws1c{word-spacing:15.509488pt;}
.ws65{word-spacing:15.523042pt;}
.ws20{word-spacing:15.573489pt;}
.ws4c{word-spacing:15.575308pt;}
.ws15{word-spacing:15.578822pt;}
.ws1b{word-spacing:15.626823pt;}
.ws26{word-spacing:15.627574pt;}
.ws19{word-spacing:15.642823pt;}
.ws17{word-spacing:15.658823pt;}
.ws5a{word-spacing:15.679840pt;}
.ws11{word-spacing:15.680157pt;}
.ws6f{word-spacing:15.732106pt;}
.ws7f{word-spacing:15.732127pt;}
.ws18{word-spacing:15.765491pt;}
.ws79{word-spacing:15.784372pt;}
.wsc5{word-spacing:15.784374pt;}
.ws13{word-spacing:15.786825pt;}
.ws12{word-spacing:15.802825pt;}
.ws1d{word-spacing:15.829492pt;}
.ws98{word-spacing:15.831412pt;}
.ws23{word-spacing:15.836638pt;}
.ws16{word-spacing:15.845492pt;}
.ws48{word-spacing:15.888905pt;}
.ws1e{word-spacing:15.936159pt;}
.ws84{word-spacing:15.941171pt;}
.ws81{word-spacing:15.993437pt;}
.ws80{word-spacing:16.045703pt;}
.ws3a{word-spacing:16.097969pt;}
.ws25{word-spacing:16.150235pt;}
.wsc4{word-spacing:16.202501pt;}
.wsc2{word-spacing:16.254767pt;}
.wsb7{word-spacing:16.411566pt;}
.wsc3{word-spacing:16.411593pt;}
.wsb4{word-spacing:16.463832pt;}
.ws4d{word-spacing:16.480000pt;}
.ws64{word-spacing:16.516098pt;}
.ws7c{word-spacing:16.620630pt;}
.ws7e{word-spacing:16.672897pt;}
.ws77{word-spacing:16.725163pt;}
.ws63{word-spacing:16.777429pt;}
.ws46{word-spacing:16.829695pt;}
.wsbb{word-spacing:16.881961pt;}
.ws28{word-spacing:16.986493pt;}
.ws4e{word-spacing:17.038759pt;}
.wsc7{word-spacing:17.043986pt;}
.ws5f{word-spacing:17.091026pt;}
.ws7b{word-spacing:17.091044pt;}
.wsa3{word-spacing:17.247824pt;}
.ws2b{word-spacing:17.300090pt;}
.ws82{word-spacing:17.404622pt;}
.wsa9{word-spacing:17.509155pt;}
.ws6{word-spacing:17.541493pt;}
.ws24{word-spacing:17.561421pt;}
.ws5{word-spacing:17.600160pt;}
.wsa2{word-spacing:17.613687pt;}
.wsa8{word-spacing:17.665924pt;}
.wsaf{word-spacing:17.665953pt;}
.wsb9{word-spacing:17.718219pt;}
.ws7{word-spacing:17.776162pt;}
.wsc6{word-spacing:17.875018pt;}
.ws5b{word-spacing:17.927284pt;}
.wsb1{word-spacing:18.031816pt;}
.wsd9{word-spacing:18.136348pt;}
.ws60{word-spacing:18.188614pt;}
.wsb2{word-spacing:18.188615pt;}
.wsb0{word-spacing:18.188661pt;}
.wsab{word-spacing:18.240881pt;}
.wse1{word-spacing:18.345413pt;}
.ws37{word-spacing:18.449945pt;}
.ws9f{word-spacing:18.554477pt;}
.ws66{word-spacing:18.606743pt;}
.ws75{word-spacing:18.815808pt;}
.ws3b{word-spacing:18.868074pt;}
.wsbe{word-spacing:18.920340pt;}
.ws62{word-spacing:19.077139pt;}
.ws36{word-spacing:19.181671pt;}
.wsca{word-spacing:19.390735pt;}
.wsc1{word-spacing:19.443002pt;}
.ws44{word-spacing:19.756598pt;}
.ws50{word-spacing:19.861131pt;}
.ws5d{word-spacing:19.965663pt;}
.ws78{word-spacing:20.070195pt;}
.ws74{word-spacing:20.070220pt;}
.ws59{word-spacing:20.226994pt;}
.ws88{word-spacing:20.331526pt;}
.ws3c{word-spacing:20.383792pt;}
.wsde{word-spacing:20.399472pt;}
.wscb{word-spacing:20.488324pt;}
.wsdf{word-spacing:20.540590pt;}
.wscc{word-spacing:20.592857pt;}
.wsa0{word-spacing:20.645123pt;}
.wse2{word-spacing:20.697389pt;}
.ws67{word-spacing:20.749655pt;}
.ws3f{word-spacing:20.906453pt;}
.ws87{word-spacing:20.958719pt;}
.ws1{word-spacing:21.008000pt;}
.ws2a{word-spacing:21.220050pt;}
.ws47{word-spacing:21.272316pt;}
.ws58{word-spacing:21.324582pt;}
.wse4{word-spacing:21.376849pt;}
.wsa4{word-spacing:21.481381pt;}
.ws22{word-spacing:21.533647pt;}
.ws86{word-spacing:21.585913pt;}
.wsbc{word-spacing:21.638179pt;}
.wsbd{word-spacing:21.899510pt;}
.wse0{word-spacing:21.951776pt;}
.wsdd{word-spacing:21.972682pt;}
.ws4f{word-spacing:22.056308pt;}
.ws2c{word-spacing:22.265373pt;}
.wsc8{word-spacing:22.317639pt;}
.wsa5{word-spacing:22.474437pt;}
.ws76{word-spacing:22.578970pt;}
.wsb6{word-spacing:22.683518pt;}
.ws6a{word-spacing:22.735768pt;}
.ws94{word-spacing:22.892566pt;}
.ws85{word-spacing:23.990155pt;}
.ws42{word-spacing:24.042421pt;}
.ws39{word-spacing:24.356018pt;}
.ws4a{word-spacing:24.460550pt;}
.ws61{word-spacing:24.617349pt;}
.ws29{word-spacing:24.669615pt;}
.ws5e{word-spacing:24.983212pt;}
.wsdc{word-spacing:25.009345pt;}
.wsa1{word-spacing:25.140010pt;}
.ws38{word-spacing:25.192276pt;}
.ws49{word-spacing:25.819470pt;}
.ws53{word-spacing:26.289865pt;}
.ws97{word-spacing:26.969325pt;}
.ws51{word-spacing:27.000684pt;}
.ws89{word-spacing:27.230655pt;}
.wsaa{word-spacing:27.282922pt;}
.ws55{word-spacing:27.303828pt;}
.ws41{word-spacing:27.335188pt;}
.wsb5{word-spacing:27.910115pt;}
.wse3{word-spacing:28.119180pt;}
.wsba{word-spacing:28.171446pt;}
.ws4b{word-spacing:28.223712pt;}
.ws3e{word-spacing:28.328244pt;}
.ws45{word-spacing:28.380510pt;}
.ws54{word-spacing:28.589575pt;}
.wse5{word-spacing:28.903172pt;}
.ws72{word-spacing:29.002071pt;}
.ws2d{word-spacing:29.112236pt;}
.ws6e{word-spacing:30.105293pt;}
.ws6c{word-spacing:30.209757pt;}
.ws6d{word-spacing:30.262091pt;}
.wsad{word-spacing:30.732486pt;}
.ws43{word-spacing:30.941551pt;}
.ws40{word-spacing:31.464212pt;}
.ws52{word-spacing:31.945061pt;}
.wsda{word-spacing:33.136729pt;}
.ws68{word-spacing:33.868437pt;}
.ws69{word-spacing:34.025253pt;}
.wsc0{word-spacing:34.652446pt;}
.wsbf{word-spacing:34.809245pt;}
.wse6{word-spacing:35.175108pt;}
.ws57{word-spacing:36.795358pt;}
.ws2{word-spacing:38.528161pt;}
.ws4{word-spacing:38.784162pt;}
.ws3{word-spacing:39.040163pt;}
.ws56{word-spacing:41.849493pt;}
.ws71{word-spacing:46.841485pt;}
.ws91{word-spacing:52.318399pt;}
.ws70{word-spacing:54.695472pt;}
.ws8e{word-spacing:56.813287pt;}
.ws8f{word-spacing:61.046844pt;}
.ws92{word-spacing:65.280401pt;}
.ws90{word-spacing:69.827554pt;}
.wsd3{word-spacing:136.574293pt;}
.wsd1{word-spacing:184.531027pt;}
.ws9d{word-spacing:198.226855pt;}
.wseb{word-spacing:274.129907pt;}
.wscf{word-spacing:843.680114pt;}
.ws83{word-spacing:1188.897744pt;}
._48{margin-left:-695.511999pt;}
._4a{margin-left:-689.989999pt;}
._23{margin-left:-498.409807pt;}
._24{margin-left:-484.057564pt;}
._4f{margin-left:-292.348346pt;}
._32{margin-left:-198.768107pt;}
._34{margin-left:-152.512587pt;}
._21{margin-left:-107.304489pt;}
._35{margin-left:-102.093963pt;}
._1f{margin-left:-87.273969pt;}
._36{margin-left:-84.953373pt;}
._1e{margin-left:-82.538685pt;}
._1d{margin-left:-65.322184pt;}
._20{margin-left:-52.590182pt;}
._47{margin-left:-32.195307pt;}
._22{margin-left:-26.321226pt;}
._26{margin-left:-19.967750pt;}
._52{margin-left:-15.930667pt;}
._33{margin-left:-8.759783pt;}
._46{margin-left:-5.694871pt;}
._1c{margin-left:-4.597283pt;}
._a{margin-left:-3.602089pt;}
._49{margin-left:-1.822906pt;}
._5{margin-left:-0.906676pt;}
._3{width:1.199984pt;}
._11{width:2.295436pt;}
._1b{width:5.331153pt;}
._0{width:8.042667pt;}
._51{width:9.108671pt;}
._53{width:10.978564pt;}
._d{width:12.021129pt;}
._4{width:13.079826pt;}
._6{width:15.200152pt;}
._31{width:16.206775pt;}
._9{width:17.195558pt;}
._8{width:18.606743pt;}
._19{width:19.599800pt;}
._e{width:20.540590pt;}
._16{width:21.483518pt;}
._7{width:22.583244pt;}
._b{width:23.569889pt;}
._f{width:25.403478pt;}
._18{width:26.342131pt;}
._15{width:27.524042pt;}
._12{width:29.227454pt;}
._c{width:30.320769pt;}
._13{width:31.366091pt;}
._10{width:32.875398pt;}
._14{width:33.868454pt;}
._3d{width:35.906834pt;}
._2{width:37.760157pt;}
._1a{width:59.268672pt;}
._4e{width:184.573693pt;}
._27{width:198.800193pt;}
._2f{width:204.882657pt;}
._2c{width:205.864093pt;}
._29{width:218.706573pt;}
._2e{width:226.130538pt;}
._28{width:246.524921pt;}
._2b{width:263.466206pt;}
._2d{width:268.284618pt;}
._4c{width:307.334879pt;}
._30{width:418.597459pt;}
._2a{width:425.466653pt;}
._25{width:443.727812pt;}
._3f{width:488.740516pt;}
._40{width:489.655151pt;}
._50{width:508.409645pt;}
._43{width:554.678338pt;}
._44{width:559.139658pt;}
._41{width:586.403349pt;}
._4d{width:597.539090pt;}
._17{width:704.684509pt;}
._45{width:709.452393pt;}
._42{width:716.321693pt;}
._3e{width:734.582798pt;}
._4b{width:782.848928pt;}
._38{width:1096.495684pt;}
._3a{width:1161.518871pt;}
._3b{width:1165.980138pt;}
._3c{width:1316.292926pt;}
._39{width:1323.162173pt;}
._37{width:1341.423278pt;}
._1{width:1557.920000pt;}
.fs12{font-size:26.133333pt;}
.fsa{font-size:26.662400pt;}
.fs10{font-size:34.839467pt;}
.fs11{font-size:36.585600pt;}
.fse{font-size:37.332800pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:39.107733pt;}
.fs9{font-size:39.999467pt;}
.fsf{font-size:42.666133pt;}
.fs13{font-size:48.000000pt;}
.fs14{font-size:49.067200pt;}
.fsd{font-size:52.266133pt;}
.fs3{font-size:53.333333pt;}
.fsc{font-size:53.333867pt;}
.fsb{font-size:54.933333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:58.667200pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:69.333333pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:128.000533pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:31.933340pt;}
.y5{bottom:59.133337pt;}
.y55{bottom:70.676471pt;}
.y174{bottom:80.275480pt;}
.ye1{bottom:80.277200pt;}
.ya5{bottom:80.283400pt;}
.y85{bottom:80.355000pt;}
.y54{bottom:81.334991pt;}
.y4{bottom:86.333337pt;}
.y53{bottom:91.993498pt;}
.y173{bottom:92.295320pt;}
.ya3{bottom:96.982667pt;}
.y12e{bottom:98.512493pt;}
.ye0{bottom:98.513760pt;}
.ya4{bottom:99.099200pt;}
.y107{bottom:99.102587pt;}
.ya2{bottom:99.106120pt;}
.y84{bottom:99.170813pt;}
.y52{bottom:102.652018pt;}
.y105{bottom:115.804667pt;}
.y12d{bottom:117.178933pt;}
.ydf{bottom:117.180200pt;}
.y104{bottom:117.992320pt;}
.y106{bottom:117.996800pt;}
.ya1{bottom:118.000320pt;}
.y83{bottom:118.065013pt;}
.y23{bottom:123.790666pt;}
.y51{bottom:124.329445pt;}
.y172{bottom:124.954880pt;}
.y9f{bottom:134.702400pt;}
.y12c{bottom:135.845360pt;}
.yde{bottom:135.846627pt;}
.ya0{bottom:136.894533pt;}
.y9e{bottom:136.900720pt;}
.y82{bottom:136.959227pt;}
.y171{bottom:136.974720pt;}
.y50{bottom:143.223645pt;}
.y103{bottom:149.109320pt;}
.y9c{bottom:153.524400pt;}
.y12b{bottom:154.437133pt;}
.ydd{bottom:154.438400pt;}
.y9b{bottom:155.712640pt;}
.y9d{bottom:155.716533pt;}
.y81{bottom:155.775027pt;}
.y4f{bottom:162.039458pt;}
.y170{bottom:169.704280pt;}
.y12a{bottom:173.103560pt;}
.ydc{bottom:173.104827pt;}
.y80{bottom:174.669240pt;}
.y1a{bottom:175.052000pt;}
.y102{bottom:176.627440pt;}
.y4e{bottom:180.933658pt;}
.y16f{bottom:181.644120pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y129{bottom:190.639347pt;}
.ydb{bottom:190.640613pt;}
.y99{bottom:191.693733pt;}
.y7f{bottom:193.485053pt;}
.y101{bottom:195.443253pt;}
.y151{bottom:196.229880pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y4d{bottom:199.749471pt;}
.y9a{bottom:205.757467pt;}
.y97{bottom:205.788987pt;}
.yda{bottom:208.176387pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y7e{bottom:212.379253pt;}
.y100{bottom:214.337453pt;}
.y16e{bottom:214.480320pt;}
.y4c{bottom:218.643671pt;}
.y98{bottom:220.724400pt;}
.yd9{bottom:225.713333pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y7d{bottom:231.273467pt;}
.yff{bottom:233.153267pt;}
.y16d{bottom:233.374533pt;}
.y4b{bottom:237.459485pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y127{bottom:247.861333pt;}
.y128{bottom:250.053613pt;}
.y126{bottom:250.063173pt;}
.y7c{bottom:250.089267pt;}
.yfe{bottom:252.047467pt;}
.y16c{bottom:252.190333pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y4a{bottom:256.353698pt;}
.y96{bottom:262.484680pt;}
.y125{bottom:268.957387pt;}
.y7b{bottom:268.983480pt;}
.yd8{bottom:269.043933pt;}
.yfd{bottom:270.941680pt;}
.y16b{bottom:271.084547pt;}
.y49{bottom:275.247898pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y95{bottom:281.378880pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y124{bottom:287.773200pt;}
.y7a{bottom:287.799280pt;}
.yd7{bottom:287.859747pt;}
.y14b{bottom:288.525693pt;}
.yfc{bottom:289.757480pt;}
.y16a{bottom:289.900347pt;}
.y48{bottom:294.063711pt;}
.y94{bottom:300.194693pt;}
.y123{bottom:306.670800pt;}
.y79{bottom:306.693493pt;}
.yfb{bottom:308.651693pt;}
.y169{bottom:308.794560pt;}
.y11{bottom:309.452000pt;}
.y14a{bottom:310.075227pt;}
.y47{bottom:312.957911pt;}
.yd6{bottom:317.938907pt;}
.y93{bottom:319.088893pt;}
.y78{bottom:325.587693pt;}
.yfa{bottom:327.467507pt;}
.y168{bottom:327.610373pt;}
.y149{bottom:331.543533pt;}
.y46{bottom:331.773725pt;}
.y92{bottom:337.904707pt;}
.y10{bottom:343.809333pt;}
.y77{bottom:344.403507pt;}
.yd5{bottom:345.078093pt;}
.yf9{bottom:346.361707pt;}
.y167{bottom:346.504573pt;}
.y147{bottom:348.245600pt;}
.y148{bottom:350.437747pt;}
.y146{bottom:350.470133pt;}
.y45{bottom:350.667938pt;}
.y122{bottom:353.897840pt;}
.y91{bottom:356.798907pt;}
.yf{bottom:362.706666pt;}
.y76{bottom:363.297720pt;}
.yd4{bottom:363.893907pt;}
.y166{bottom:365.398787pt;}
.y145{bottom:369.364333pt;}
.y44{bottom:369.562138pt;}
.y121{bottom:372.792040pt;}
.yf7{bottom:375.613000pt;}
.y90{bottom:375.614720pt;}
.yf6{bottom:381.205773pt;}
.y75{bottom:382.113520pt;}
.y165{bottom:384.214587pt;}
.yf8{bottom:384.537440pt;}
.yf4{bottom:384.594507pt;}
.y19e{bottom:387.558973pt;}
.y144{bottom:388.180147pt;}
.y43{bottom:388.384125pt;}
.y120{bottom:391.607853pt;}
.yf5{bottom:391.861333pt;}
.ycb{bottom:394.273600pt;}
.y19d{bottom:399.578813pt;}
.y74{bottom:401.007733pt;}
.y164{bottom:403.108800pt;}
.y143{bottom:407.074360pt;}
.y11f{bottom:410.502053pt;}
.y19c{bottom:411.518653pt;}
.yca{bottom:412.109413pt;}
.yd2{bottom:413.546733pt;}
.y8d{bottom:416.806147pt;}
.yf3{bottom:419.743480pt;}
.y73{bottom:419.829880pt;}
.yd1{bottom:421.334387pt;}
.y163{bottom:421.924600pt;}
.y19b{bottom:423.538493pt;}
.y142{bottom:425.890160pt;}
.yd0{bottom:429.122040pt;}
.y11e{bottom:429.317867pt;}
.yc6{bottom:429.853760pt;}
.yd3{bottom:429.879907pt;}
.yc9{bottom:429.945227pt;}
.ye{bottom:430.990669pt;}
.y8a{bottom:432.530507pt;}
.y8c{bottom:434.494387pt;}
.y8f{bottom:435.550907pt;}
.y19a{bottom:435.558333pt;}
.ycf{bottom:436.831293pt;}
.yf2{bottom:438.559293pt;}
.y162{bottom:440.818813pt;}
.yce{bottom:444.618947pt;}
.y141{bottom:444.784373pt;}
.y42{bottom:446.963018pt;}
.yd{bottom:446.990669pt;}
.y199{bottom:447.578173pt;}
.yc8{bottom:447.702653pt;}
.y11d{bottom:448.212067pt;}
.ycd{bottom:452.328200pt;}
.y8b{bottom:452.787360pt;}
.yf1{bottom:457.453507pt;}
.y72{bottom:457.741587pt;}
.y8e{bottom:458.456547pt;}
.y198{bottom:459.518013pt;}
.y161{bottom:459.713013pt;}
.y41{bottom:462.909845pt;}
.yc{bottom:462.990669pt;}
.y140{bottom:463.678573pt;}
.yc7{bottom:465.538467pt;}
.y11c{bottom:467.027880pt;}
.y197{bottom:471.537853pt;}
.ycc{bottom:475.233840pt;}
.yf0{bottom:476.347707pt;}
.y71{bottom:476.557387pt;}
.y160{bottom:478.528827pt;}
.yb{bottom:478.990666pt;}
.y13e{bottom:482.493800pt;}
.y196{bottom:483.557693pt;}
.y40{bottom:485.590071pt;}
.y11b{bottom:485.922093pt;}
.y13f{bottom:488.768387pt;}
.yc5{bottom:492.899787pt;}
.ya{bottom:494.990666pt;}
.yef{bottom:495.163520pt;}
.y70{bottom:495.451600pt;}
.y195{bottom:495.577533pt;}
.y15f{bottom:497.423040pt;}
.y3f{bottom:501.616898pt;}
.y13c{bottom:503.964333pt;}
.y11a{bottom:504.816293pt;}
.y194{bottom:507.517373pt;}
.y13d{bottom:510.236120pt;}
.yc4{bottom:511.715600pt;}
.yee{bottom:514.057720pt;}
.y89{bottom:514.170200pt;}
.y6f{bottom:514.267400pt;}
.y15e{bottom:516.238840pt;}
.y3e{bottom:517.563725pt;}
.y193{bottom:519.537213pt;}
.y119{bottom:523.632107pt;}
.y13a{bottom:525.353667pt;}
.yc3{bottom:530.609800pt;}
.y87{bottom:530.872400pt;}
.y192{bottom:531.557053pt;}
.y13b{bottom:531.628253pt;}
.yed{bottom:532.873533pt;}
.y88{bottom:533.064413pt;}
.y6e{bottom:533.161613pt;}
.y3d{bottom:533.590551pt;}
.y118{bottom:542.526307pt;}
.y191{bottom:543.576893pt;}
.y138{bottom:546.827613pt;}
.yc2{bottom:549.504013pt;}
.y3c{bottom:549.617378pt;}
.yec{bottom:551.767733pt;}
.y6d{bottom:552.055827pt;}
.y139{bottom:553.095987pt;}
.y190{bottom:555.516733pt;}
.y117{bottom:561.342120pt;}
.y15d{bottom:562.873307pt;}
.y3b{bottom:565.564205pt;}
.y18f{bottom:567.536573pt;}
.y137{bottom:568.217533pt;}
.yc1{bottom:568.319813pt;}
.yeb{bottom:570.661947pt;}
.y6c{bottom:570.871627pt;}
.y9{bottom:573.786667pt;}
.y18e{bottom:579.556413pt;}
.y116{bottom:580.236333pt;}
.y3a{bottom:581.591031pt;}
.y15c{bottom:581.767507pt;}
.y135{bottom:587.130293pt;}
.yc0{bottom:587.214027pt;}
.yea{bottom:589.477760pt;}
.y6b{bottom:589.765840pt;}
.y18d{bottom:591.576253pt;}
.y8{bottom:592.685334pt;}
.y136{bottom:593.385747pt;}
.y39{bottom:597.617858pt;}
.y115{bottom:599.130533pt;}
.y15b{bottom:600.583320pt;}
.y18c{bottom:603.516093pt;}
.ybf{bottom:606.029827pt;}
.ye9{bottom:608.371960pt;}
.y134{bottom:608.520200pt;}
.y6a{bottom:608.581640pt;}
.y38{bottom:613.564685pt;}
.y18b{bottom:615.535933pt;}
.y114{bottom:617.952680pt;}
.y15a{bottom:619.477520pt;}
.ybe{bottom:624.924040pt;}
.ye8{bottom:627.187773pt;}
.y133{bottom:627.414413pt;}
.y69{bottom:627.475853pt;}
.y18a{bottom:627.555773pt;}
.y37{bottom:629.591511pt;}
.y159{bottom:638.371733pt;}
.y189{bottom:639.575613pt;}
.ybd{bottom:643.818253pt;}
.y7{bottom:645.598667pt;}
.y36{bottom:645.618338pt;}
.ye7{bottom:646.081973pt;}
.y132{bottom:646.308627pt;}
.y68{bottom:646.370053pt;}
.y188{bottom:651.515453pt;}
.y31{bottom:652.724925pt;}
.y158{bottom:657.187533pt;}
.y35{bottom:661.565165pt;}
.ybc{bottom:662.634053pt;}
.y187{bottom:663.535293pt;}
.y30{bottom:664.744765pt;}
.ye6{bottom:664.976187pt;}
.y131{bottom:665.124427pt;}
.y113{bottom:665.143933pt;}
.y67{bottom:665.185867pt;}
.y3{bottom:668.977329pt;}
.y186{bottom:675.555133pt;}
.y157{bottom:676.081747pt;}
.y155{bottom:676.088080pt;}
.y2f{bottom:676.764605pt;}
.y34{bottom:677.591991pt;}
.ybb{bottom:681.528267pt;}
.y12f{bottom:681.826667pt;}
.y156{bottom:681.902267pt;}
.ye5{bottom:683.791987pt;}
.y130{bottom:684.018640pt;}
.y112{bottom:684.038133pt;}
.y66{bottom:684.080080pt;}
.y185{bottom:687.574973pt;}
.y2e{bottom:688.704445pt;}
.y33{bottom:693.618818pt;}
.y154{bottom:694.900387pt;}
.y184{bottom:699.514813pt;}
.yba{bottom:700.344067pt;}
.y2d{bottom:700.724285pt;}
.ye4{bottom:702.689613pt;}
.y111{bottom:702.853947pt;}
.y65{bottom:702.895880pt;}
.y2c{bottom:705.184165pt;}
.y183{bottom:711.533773pt;}
.y2b{bottom:712.742125pt;}
.y153{bottom:716.443680pt;}
.y32{bottom:717.580978pt;}
.y110{bottom:721.748160pt;}
.y64{bottom:721.790093pt;}
.y2a{bottom:724.761965pt;}
.yb4{bottom:730.654227pt;}
.y152{bottom:737.990400pt;}
.ye3{bottom:740.642360pt;}
.y63{bottom:740.684293pt;}
.yb2{bottom:744.709573pt;}
.yb5{bottom:744.718013pt;}
.y182{bottom:747.511933pt;}
.yb8{bottom:757.114827pt;}
.ye2{bottom:759.458173pt;}
.y62{bottom:759.500107pt;}
.yb3{bottom:759.684893pt;}
.yb7{bottom:763.993493pt;}
.yb9{bottom:766.336827pt;}
.yb6{bottom:767.092773pt;}
.y28{bottom:768.906911pt;}
.y181{bottom:771.551613pt;}
.y29{bottom:775.483245pt;}
.y61{bottom:778.394307pt;}
.y2{bottom:781.661334pt;}
.y180{bottom:783.571453pt;}
.y177{bottom:784.100507pt;}
.y17f{bottom:787.955733pt;}
.yb1{bottom:789.540853pt;}
.y17e{bottom:795.512893pt;}
.y60{bottom:797.210120pt;}
.y27{bottom:800.961485pt;}
.y10f{bottom:801.637613pt;}
.y176{bottom:802.338067pt;}
.y150{bottom:802.771480pt;}
.y5f{bottom:816.104333pt;}
.y17d{bottom:819.552573pt;}
.yac{bottom:819.851080pt;}
.y10e{bottom:819.873840pt;}
.y14f{bottom:821.004493pt;}
.yb0{bottom:830.286373pt;}
.y17c{bottom:831.571453pt;}
.yad{bottom:833.914800pt;}
.yaf{bottom:833.919307pt;}
.yae{bottom:834.141440pt;}
.y5e{bottom:834.920133pt;}
.y26{bottom:835.585618pt;}
.y10d{bottom:838.540280pt;}
.y14e{bottom:839.670933pt;}
.yaa{bottom:846.233613pt;}
.yab{bottom:848.881760pt;}
.y5d{bottom:853.814347pt;}
.y10c{bottom:857.206707pt;}
.y14d{bottom:858.337360pt;}
.y1{bottom:859.312000pt;}
.y17b{bottom:869.295173pt;}
.y25{bottom:870.273765pt;}
.ya9{bottom:871.556560pt;}
.y5c{bottom:872.708547pt;}
.y10b{bottom:875.873147pt;}
.y14c{bottom:877.003800pt;}
.y17a{bottom:881.235013pt;}
.y5b{bottom:891.524360pt;}
.y10a{bottom:894.539573pt;}
.y175{bottom:900.054173pt;}
.ya8{bottom:901.866787pt;}
.y179{bottom:905.274693pt;}
.y5a{bottom:910.418560pt;}
.y109{bottom:912.075360pt;}
.ya6{bottom:915.930507pt;}
.y178{bottom:917.294533pt;}
.y24{bottom:920.919453pt;}
.y59{bottom:929.234373pt;}
.y108{bottom:929.612387pt;}
.ya7{bottom:930.897467pt;}
.y58{bottom:977.769191pt;}
.y57{bottom:991.070351pt;}
.y86{bottom:1004.371507pt;}
.y19f{bottom:1004.371523pt;}
.y56{bottom:1004.371525pt;}
.h1a{height:2.090645pt;}
.h1c{height:7.839957pt;}
.h29{height:13.939114pt;}
.hf{height:19.223590pt;}
.h16{height:25.084416pt;}
.h18{height:25.939190pt;}
.h25{height:26.487974pt;}
.h13{height:26.916949pt;}
.h1e{height:27.439200pt;}
.hd{height:28.196676pt;}
.h7{height:28.560000pt;}
.he{height:28.839615pt;}
.h14{height:30.762282pt;}
.h21{height:30.837019pt;}
.h27{height:34.608000pt;}
.h28{height:35.377451pt;}
.h19{height:37.056689pt;}
.h15{height:37.588863pt;}
.h12{height:37.840681pt;}
.h11{height:38.453718pt;}
.h2b{height:39.020453pt;}
.h17{height:39.199600pt;}
.h10{height:39.606933pt;}
.h6{height:40.800000pt;}
.hc{height:42.299051pt;}
.h3{height:42.840000pt;}
.h2d{height:47.372373pt;}
.h2f{height:47.386080pt;}
.h2c{height:47.623093pt;}
.h2e{height:47.699680pt;}
.h2{height:48.960000pt;}
.h32{height:49.511147pt;}
.h30{height:49.802827pt;}
.h33{height:49.827573pt;}
.h31{height:49.827627pt;}
.ha{height:49.989333pt;}
.h20{height:51.377579pt;}
.h1d{height:51.565152pt;}
.h1f{height:51.691179pt;}
.h24{height:51.724992pt;}
.h23{height:53.713307pt;}
.h22{height:59.483297pt;}
.h5{height:69.360000pt;}
.h2a{height:88.171760pt;}
.hb{height:92.288385pt;}
.h1b{height:93.713205pt;}
.h4{height:105.826671pt;}
.h26{height:107.933045pt;}
.h9{height:1058.000000pt;}
.h8{height:1058.268000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:75.590573pt;}
.xc{left:79.143373pt;}
.x5{left:80.957493pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x12{left:156.846373pt;}
.x56{left:160.403067pt;}
.x11{left:167.508667pt;}
.x58{left:172.876680pt;}
.x1a{left:176.880440pt;}
.x7{left:178.015773pt;}
.x15{left:179.003880pt;}
.x4{left:180.874667pt;}
.x31{left:182.551213pt;}
.x45{left:186.028280pt;}
.x25{left:197.366947pt;}
.x8{left:198.803093pt;}
.x41{left:202.069787pt;}
.x36{left:204.094400pt;}
.x18{left:205.757467pt;}
.x1b{left:209.763733pt;}
.x40{left:212.719000pt;}
.x17{left:216.566933pt;}
.x16{left:217.700800pt;}
.x2f{left:220.422000pt;}
.x26{left:222.689733pt;}
.x1c{left:225.108667pt;}
.x27{left:229.946387pt;}
.x30{left:235.691320pt;}
.x10{left:237.127520pt;}
.x33{left:238.560440pt;}
.xe{left:240.982707pt;}
.x32{left:241.889733pt;}
.x28{left:247.181067pt;}
.xd{left:249.600040pt;}
.xf{left:251.645000pt;}
.x34{left:255.874000pt;}
.x48{left:261.240920pt;}
.x35{left:262.147987pt;}
.x3e{left:267.136947pt;}
.x46{left:269.875747pt;}
.x9{left:274.847253pt;}
.x38{left:277.042760pt;}
.x37{left:280.289733pt;}
.x54{left:283.086533pt;}
.xa{left:283.993627pt;}
.x19{left:286.482507pt;}
.x55{left:289.062080pt;}
.x53{left:293.520693pt;}
.x3c{left:295.559067pt;}
.x3a{left:308.108213pt;}
.x39{left:312.718000pt;}
.x3b{left:326.777867pt;}
.x2d{left:327.836147pt;}
.x2e{left:334.941733pt;}
.x3d{left:348.094400pt;}
.x29{left:355.729080pt;}
.x44{left:363.215827pt;}
.x2a{left:365.631467pt;}
.x42{left:370.863267pt;}
.x1d{left:371.829880pt;}
.x3f{left:376.743200pt;}
.x43{left:379.474107pt;}
.x1e{left:380.371587pt;}
.x51{left:384.529053pt;}
.x47{left:390.349440pt;}
.x52{left:393.070800pt;}
.xb{left:393.977907pt;}
.x1f{left:397.152667pt;}
.x13{left:401.990400pt;}
.x20{left:403.048787pt;}
.x3{left:404.408000pt;}
.x21{left:414.387333pt;}
.x14{left:415.521200pt;}
.x22{left:421.644000pt;}
.x57{left:464.503867pt;}
.x49{left:467.905480pt;}
.x4a{left:473.801467pt;}
.x2b{left:524.749467pt;}
.x23{left:527.017213pt;}
.x2c{left:536.012533pt;}
.x24{left:537.070680pt;}
.x4b{left:570.179480pt;}
.x4c{left:578.721067pt;}
.x4d{left:595.502120pt;}
.x4e{left:601.398280pt;}
.x4f{left:612.736933pt;}
.x50{left:626.192013pt;}
}




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