
    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_16fa05e9021469df87aa7bcc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.109000;font-style:normal;font-weight: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_2b82cf50960978f7102c841b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.926758;font-style:normal;font-weight: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_78f31ae50808d74f3149f66a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.063477;font-style:normal;font-weight: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_6b9228ad611d2860c3583f4b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.771000;font-style:normal;font-weight: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_60237ba49af8c34845b78e14.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.923828;font-style:normal;font-weight: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_60caf153746868eb4a560cbd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722000;font-style:normal;font-weight: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_2501517247c78486ab952165.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.642000;font-style:normal;font-weight: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_73a0c71b7088c6cba88bfdfd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.891113;font-style:normal;font-weight: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_60237ba49af8c34845b78e14.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.923828;font-style:normal;font-weight: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_6b9228ad611d2860c3583f4b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.771000;font-style:normal;font-weight: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_655083c8b389a1b33f760924.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.063477;font-style:normal;font-weight: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_74c2e81d63c5c36be6fdb7eb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.926758;font-style:normal;font-weight: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_d0305f64626518864eb6f40b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.891113;font-style:normal;font-weight: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_b4f3a1d208cae4283aae7983.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.113281;font-style:normal;font-weight: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_bb30b20c9c17a62a3fd26469.woff2')format("woff");}.fff{font-family:fff;line-height:1.106934;font-style:normal;font-weight: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_aeb9bfa125b23e86b6b7d29d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_4ee575699e15d37b4627c62c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_1e68dc9e21e05fd51e5e53b4.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.750000;font-style:normal;font-weight: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_16fa05e9021469df87aa7bcc.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.109000;font-style:normal;font-weight: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_2b82cf50960978f7102c841b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.926758;font-style:normal;font-weight: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_6284825451d9581377baf699.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.063477;font-style:normal;font-weight: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_6b9228ad611d2860c3583f4b.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.771000;font-style:normal;font-weight: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_b75d135ef834a9c00874e74f.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.923828;font-style:normal;font-weight: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_60caf153746868eb4a560cbd.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.722000;font-style:normal;font-weight: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_2501517247c78486ab952165.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.642000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-8.991216px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.122232px;}
.ls6b{letter-spacing:-1.115604px;}
.ls70{letter-spacing:-1.094184px;}
.ls3a{letter-spacing:-1.088172px;}
.ls4a{letter-spacing:-1.076148px;}
.ls7a{letter-spacing:-1.064124px;}
.ls6d{letter-spacing:-1.046088px;}
.ls7b{letter-spacing:-1.040076px;}
.ls7d{letter-spacing:-1.034064px;}
.ls4d{letter-spacing:-1.028052px;}
.ls6c{letter-spacing:-1.019844px;}
.ls4b{letter-spacing:-1.016028px;}
.ls49{letter-spacing:-1.010016px;}
.ls74{letter-spacing:-1.004004px;}
.ls6f{letter-spacing:-0.948024px;}
.ls7c{letter-spacing:-0.931860px;}
.ls78{letter-spacing:-0.907812px;}
.ls79{letter-spacing:-0.890568px;}
.ls73{letter-spacing:-0.865728px;}
.ls75{letter-spacing:-0.857052px;}
.ls6e{letter-spacing:-0.823536px;}
.ls76{letter-spacing:-0.809172px;}
.ls77{letter-spacing:-0.679896px;}
.ls71{letter-spacing:-0.646380px;}
.ls72{letter-spacing:-0.617652px;}
.ls5c{letter-spacing:-0.505008px;}
.ls5d{letter-spacing:-0.408816px;}
.ls35{letter-spacing:-0.360720px;}
.ls57{letter-spacing:-0.330660px;}
.ls22{letter-spacing:-0.318636px;}
.ls42{letter-spacing:-0.300600px;}
.ls14{letter-spacing:-0.282564px;}
.ls48{letter-spacing:-0.276552px;}
.ls56{letter-spacing:-0.270540px;}
.ls34{letter-spacing:-0.252504px;}
.ls23{letter-spacing:-0.246492px;}
.ls55{letter-spacing:-0.240480px;}
.ls24{letter-spacing:-0.234468px;}
.ls2a{letter-spacing:-0.228456px;}
.ls2b{letter-spacing:-0.222444px;}
.ls43{letter-spacing:-0.216432px;}
.ls58{letter-spacing:-0.210420px;}
.ls60{letter-spacing:-0.204408px;}
.ls5f{letter-spacing:-0.198396px;}
.ls41{letter-spacing:-0.162324px;}
.ls50{letter-spacing:-0.151200px;}
.ls19{letter-spacing:-0.144288px;}
.ls13{letter-spacing:-0.138276px;}
.ls15{letter-spacing:-0.132264px;}
.ls17{letter-spacing:-0.120240px;}
.ls3b{letter-spacing:-0.114228px;}
.ls52{letter-spacing:-0.113400px;}
.lse{letter-spacing:-0.108216px;}
.ls4f{letter-spacing:-0.108000px;}
.ls29{letter-spacing:-0.105336px;}
.ls51{letter-spacing:-0.091800px;}
.ls18{letter-spacing:-0.084168px;}
.ls9{letter-spacing:-0.078156px;}
.lsb{letter-spacing:-0.072144px;}
.ls8{letter-spacing:-0.066132px;}
.ls25{letter-spacing:-0.060120px;}
.lsf{letter-spacing:-0.054108px;}
.ls16{letter-spacing:-0.048096px;}
.ls3e{letter-spacing:-0.042084px;}
.ls53{letter-spacing:-0.037800px;}
.lsa{letter-spacing:-0.036072px;}
.lsd{letter-spacing:-0.030060px;}
.ls7e{letter-spacing:-0.028728px;}
.ls1a{letter-spacing:-0.024048px;}
.ls26{letter-spacing:-0.018036px;}
.lsc{letter-spacing:-0.012024px;}
.ls21{letter-spacing:-0.006012px;}
.ls2{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.004788px;}
.ls7{letter-spacing:0.006012px;}
.ls38{letter-spacing:0.009576px;}
.ls6{letter-spacing:0.012024px;}
.ls4{letter-spacing:0.018036px;}
.ls27{letter-spacing:0.019152px;}
.ls12{letter-spacing:0.021600px;}
.ls5{letter-spacing:0.024048px;}
.ls62{letter-spacing:0.028296px;}
.ls11{letter-spacing:0.030060px;}
.ls4e{letter-spacing:0.032400px;}
.ls10{letter-spacing:0.036072px;}
.ls1e{letter-spacing:0.042084px;}
.ls63{letter-spacing:0.043092px;}
.ls1d{letter-spacing:0.048096px;}
.ls68{letter-spacing:0.053712px;}
.ls1c{letter-spacing:0.054108px;}
.ls2d{letter-spacing:0.060120px;}
.ls67{letter-spacing:0.062244px;}
.ls2f{letter-spacing:0.066132px;}
.ls39{letter-spacing:0.072144px;}
.ls33{letter-spacing:0.078156px;}
.ls30{letter-spacing:0.084168px;}
.ls3f{letter-spacing:0.098640px;}
.ls32{letter-spacing:0.102204px;}
.ls65{letter-spacing:0.108000px;}
.ls37{letter-spacing:0.108216px;}
.ls6a{letter-spacing:0.114228px;}
.ls20{letter-spacing:0.126252px;}
.ls5b{letter-spacing:0.138276px;}
.ls64{letter-spacing:0.150552px;}
.ls7f{letter-spacing:0.158400px;}
.ls4c{letter-spacing:0.162324px;}
.ls3c{letter-spacing:0.204408px;}
.ls5e{letter-spacing:0.216432px;}
.ls3{letter-spacing:0.378252px;}
.ls1{letter-spacing:1.459409px;}
.ls5a{letter-spacing:2.729448px;}
.ls66{letter-spacing:3.050640px;}
.ls61{letter-spacing:3.609360px;}
.ls46{letter-spacing:7.406784px;}
.ls1f{letter-spacing:12.805560px;}
.ls31{letter-spacing:13.166280px;}
.ls3d{letter-spacing:13.887720px;}
.ls47{letter-spacing:14.248440px;}
.ls69{letter-spacing:23.049360px;}
.ls0{letter-spacing:33.025894px;}
.ls2e{letter-spacing:44.488800px;}
.ls54{letter-spacing:60.324408px;}
.ls44{letter-spacing:61.406568px;}
.ls2c{letter-spacing:63.564876px;}
.ls45{letter-spacing:64.647036px;}
.ls40{letter-spacing:66.805344px;}
.ls59{letter-spacing:191.596428px;}
.ls36{letter-spacing:196.045308px;}
.ls1b{letter-spacing:196.057332px;}
.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;}
}
.ws107{word-spacing:-60.120000px;}
.ws109{word-spacing:-16.875684px;}
.ws16e{word-spacing:-16.851636px;}
.wse7{word-spacing:-16.779492px;}
.ws7c{word-spacing:-16.773480px;}
.ws10a{word-spacing:-16.749432px;}
.ws183{word-spacing:-16.737408px;}
.ws1a{word-spacing:-16.725384px;}
.ws108{word-spacing:-16.713360px;}
.wsd7{word-spacing:-16.707348px;}
.ws7a{word-spacing:-16.701336px;}
.ws14c{word-spacing:-16.695324px;}
.ws1b{word-spacing:-16.677288px;}
.wsd6{word-spacing:-16.671276px;}
.wse6{word-spacing:-16.665264px;}
.ws7d{word-spacing:-16.653240px;}
.ws12b{word-spacing:-16.647228px;}
.ws14b{word-spacing:-16.635204px;}
.ws16f{word-spacing:-16.575084px;}
.ws184{word-spacing:-16.514964px;}
.ws7b{word-spacing:-16.352640px;}
.ws182{word-spacing:-16.304544px;}
.ws29{word-spacing:-14.038020px;}
.ws1ac{word-spacing:-13.372884px;}
.ws1a9{word-spacing:-13.353732px;}
.ws1aa{word-spacing:-13.329792px;}
.wsad{word-spacing:-13.320216px;}
.ws1ab{word-spacing:-13.315428px;}
.ws1b0{word-spacing:-13.281912px;}
.ws1a8{word-spacing:-12.692988px;}
.ws1af{word-spacing:-12.664260px;}
.ws1ae{word-spacing:-12.630744px;}
.ws1ad{word-spacing:-12.501468px;}
.ws1a7{word-spacing:-12.362616px;}
.ws1a6{word-spacing:-12.290796px;}
.ws5{word-spacing:-12.000000px;}
.ws4{word-spacing:-11.940000px;}
.ws27{word-spacing:-11.885724px;}
.ws16d{word-spacing:-10.808640px;}
.ws31{word-spacing:-10.442844px;}
.ws25{word-spacing:-9.372708px;}
.ws2f{word-spacing:-9.360684px;}
.ws1c{word-spacing:-7.563096px;}
.ws1e{word-spacing:-6.847668px;}
.ws30{word-spacing:-5.038056px;}
.ws1f{word-spacing:-2.164320px;}
.ws13a{word-spacing:-0.547092px;}
.wsce{word-spacing:-0.505008px;}
.ws176{word-spacing:-0.492984px;}
.ws32{word-spacing:-0.480960px;}
.ws23{word-spacing:-0.384768px;}
.ws2d{word-spacing:-0.366732px;}
.ws13b{word-spacing:-0.252504px;}
.ws9a{word-spacing:-0.246492px;}
.ws8c{word-spacing:-0.228456px;}
.ws142{word-spacing:-0.222444px;}
.wsde{word-spacing:-0.210420px;}
.ws59{word-spacing:-0.192384px;}
.wsc4{word-spacing:-0.186372px;}
.ws28{word-spacing:-0.180360px;}
.ws2e{word-spacing:-0.174348px;}
.wsa{word-spacing:-0.168336px;}
.ws8{word-spacing:-0.162324px;}
.wsd{word-spacing:-0.156312px;}
.ws17{word-spacing:-0.150300px;}
.ws7{word-spacing:-0.144288px;}
.ws71{word-spacing:-0.138276px;}
.ws10{word-spacing:-0.132264px;}
.ws92{word-spacing:-0.126252px;}
.ws2c{word-spacing:-0.120240px;}
.ws19{word-spacing:-0.114228px;}
.wsc{word-spacing:-0.108216px;}
.ws22{word-spacing:-0.096192px;}
.ws18{word-spacing:-0.090180px;}
.ws5a{word-spacing:-0.084168px;}
.ws9{word-spacing:-0.078156px;}
.wse{word-spacing:-0.072144px;}
.wsb{word-spacing:-0.066132px;}
.ws26{word-spacing:-0.012024px;}
.ws1{word-spacing:0.000000px;}
.ws6{word-spacing:0.019152px;}
.ws19b{word-spacing:0.060120px;}
.ws17f{word-spacing:0.078156px;}
.ws6e{word-spacing:0.084168px;}
.ws13c{word-spacing:0.086400px;}
.ws1d{word-spacing:0.138276px;}
.ws11f{word-spacing:0.150300px;}
.ws141{word-spacing:0.156600px;}
.ws136{word-spacing:0.168336px;}
.wsa2{word-spacing:0.174348px;}
.wsda{word-spacing:0.186372px;}
.wsdb{word-spacing:0.192384px;}
.ws94{word-spacing:0.204408px;}
.ws13e{word-spacing:0.210600px;}
.ws13f{word-spacing:0.226800px;}
.ws140{word-spacing:0.232200px;}
.ws13d{word-spacing:0.270000px;}
.ws60{word-spacing:0.373464px;}
.ws95{word-spacing:0.462924px;}
.ws1a4{word-spacing:0.517032px;}
.ws87{word-spacing:0.535068px;}
.ws3f{word-spacing:0.553104px;}
.ws137{word-spacing:0.577152px;}
.wsc8{word-spacing:0.655308px;}
.wsc7{word-spacing:0.691380px;}
.ws58{word-spacing:0.889776px;}
.ws16a{word-spacing:0.895788px;}
.ws63{word-spacing:0.907812px;}
.wsdd{word-spacing:0.913824px;}
.ws134{word-spacing:0.919836px;}
.ws57{word-spacing:0.925848px;}
.ws172{word-spacing:0.937872px;}
.ws62{word-spacing:0.943884px;}
.ws50{word-spacing:1.184364px;}
.ws3a{word-spacing:1.268532px;}
.ws69{word-spacing:1.286568px;}
.ws145{word-spacing:1.310616px;}
.wsc9{word-spacing:1.635264px;}
.ws10e{word-spacing:1.647288px;}
.wsb8{word-spacing:1.659312px;}
.ws6a{word-spacing:1.665324px;}
.ws167{word-spacing:1.971936px;}
.ws114{word-spacing:1.977948px;}
.ws6b{word-spacing:1.995984px;}
.ws10c{word-spacing:2.001996px;}
.wsab{word-spacing:2.008008px;}
.wsaa{word-spacing:2.020032px;}
.ws55{word-spacing:2.332656px;}
.ws72{word-spacing:2.350692px;}
.ws64{word-spacing:2.356704px;}
.ws9b{word-spacing:2.362716px;}
.wsb3{word-spacing:2.368728px;}
.ws151{word-spacing:2.374740px;}
.ws7e{word-spacing:2.380752px;}
.ws7f{word-spacing:2.386764px;}
.ws1b4{word-spacing:2.663316px;}
.wsd1{word-spacing:2.699388px;}
.wsa4{word-spacing:2.717424px;}
.ws178{word-spacing:2.723436px;}
.ws17b{word-spacing:2.729448px;}
.wsae{word-spacing:2.735460px;}
.ws4e{word-spacing:2.747484px;}
.ws1b8{word-spacing:3.024036px;}
.ws111{word-spacing:3.042072px;}
.ws17a{word-spacing:3.048084px;}
.ws175{word-spacing:3.060108px;}
.wsb0{word-spacing:3.078144px;}
.ws79{word-spacing:3.090168px;}
.ws174{word-spacing:3.102192px;}
.ws4f{word-spacing:3.108204px;}
.ws1b7{word-spacing:3.114216px;}
.ws3b{word-spacing:3.420828px;}
.ws126{word-spacing:3.426840px;}
.ws11d{word-spacing:3.438864px;}
.ws11b{word-spacing:3.444876px;}
.ws4d{word-spacing:3.450888px;}
.ws125{word-spacing:3.462912px;}
.ws11c{word-spacing:3.468924px;}
.ws1b6{word-spacing:3.541068px;}
.ws75{word-spacing:3.679344px;}
.ws1b3{word-spacing:3.739464px;}
.wse3{word-spacing:3.793572px;}
.ws61{word-spacing:3.805596px;}
.ws1b5{word-spacing:3.811608px;}
.ws18f{word-spacing:3.823632px;}
.wsf2{word-spacing:4.148280px;}
.ws99{word-spacing:4.160304px;}
.ws154{word-spacing:4.166316px;}
.ws196{word-spacing:4.184352px;}
.ws112{word-spacing:4.496976px;}
.ws80{word-spacing:4.515012px;}
.wsa3{word-spacing:4.521024px;}
.ws84{word-spacing:4.527036px;}
.ws73{word-spacing:4.539060px;}
.ws113{word-spacing:4.839660px;}
.ws1b1{word-spacing:4.863708px;}
.ws36{word-spacing:4.875732px;}
.ws96{word-spacing:4.893768px;}
.ws1b2{word-spacing:4.911804px;}
.ws193{word-spacing:5.170320px;}
.ws1a2{word-spacing:5.212404px;}
.ws192{word-spacing:5.224428px;}
.wse2{word-spacing:5.230440px;}
.ws74{word-spacing:5.242464px;}
.ws191{word-spacing:5.254488px;}
.ws163{word-spacing:5.260500px;}
.ws11{word-spacing:5.266512px;}
.ws13{word-spacing:5.284548px;}
.ws12{word-spacing:5.290560px;}
.ws100{word-spacing:5.573124px;}
.ws179{word-spacing:5.585148px;}
.ws8d{word-spacing:5.591160px;}
.ws181{word-spacing:5.597172px;}
.ws164{word-spacing:5.603184px;}
.ws8e{word-spacing:5.609196px;}
.ws194{word-spacing:5.645268px;}
.ws14{word-spacing:5.723424px;}
.wse5{word-spacing:5.945868px;}
.wsff{word-spacing:6.018012px;}
.ws130{word-spacing:6.306588px;}
.ws39{word-spacing:6.318612px;}
.ws131{word-spacing:6.324624px;}
.ws81{word-spacing:6.336648px;}
.ws9f{word-spacing:6.559092px;}
.ws68{word-spacing:6.661296px;}
.ws153{word-spacing:6.673320px;}
.ws54{word-spacing:6.679332px;}
.ws129{word-spacing:7.028028px;}
.wse0{word-spacing:7.040052px;}
.wsbc{word-spacing:7.046064px;}
.wsb5{word-spacing:7.064100px;}
.ws44{word-spacing:7.070112px;}
.wsb6{word-spacing:7.076124px;}
.ws97{word-spacing:7.376724px;}
.ws120{word-spacing:7.394760px;}
.ws185{word-spacing:7.412796px;}
.ws186{word-spacing:7.448868px;}
.ws171{word-spacing:7.466904px;}
.ws77{word-spacing:7.743456px;}
.ws3e{word-spacing:7.749468px;}
.wsaf{word-spacing:7.761492px;}
.ws170{word-spacing:7.821612px;}
.ws15a{word-spacing:7.989948px;}
.ws150{word-spacing:8.020008px;}
.ws9d{word-spacing:8.050068px;}
.ws34{word-spacing:8.080128px;}
.ws1a1{word-spacing:8.086140px;}
.ws105{word-spacing:8.092152px;}
.ws4c{word-spacing:8.110188px;}
.ws19e{word-spacing:8.116200px;}
.ws33{word-spacing:8.122212px;}
.ws4b{word-spacing:8.134236px;}
.ws177{word-spacing:8.146260px;}
.ws76{word-spacing:8.152272px;}
.ws15e{word-spacing:8.440848px;}
.wsf0{word-spacing:8.458884px;}
.ws10b{word-spacing:8.464896px;}
.ws67{word-spacing:8.470908px;}
.ws152{word-spacing:8.494956px;}
.wsef{word-spacing:8.519004px;}
.wsb7{word-spacing:8.831628px;}
.ws148{word-spacing:9.210384px;}
.wsa7{word-spacing:9.252468px;}
.ws1a3{word-spacing:9.523008px;}
.wsa8{word-spacing:9.553068px;}
.wsa1{word-spacing:9.559080px;}
.ws1b9{word-spacing:9.565092px;}
.wsa0{word-spacing:9.577116px;}
.ws8b{word-spacing:9.907776px;}
.ws91{word-spacing:9.919800px;}
.wsb2{word-spacing:9.925812px;}
.ws90{word-spacing:9.931824px;}
.ws124{word-spacing:9.943848px;}
.ws123{word-spacing:9.949860px;}
.ws98{word-spacing:10.280520px;}
.wsba{word-spacing:10.298556px;}
.ws1a0{word-spacing:10.304568px;}
.ws173{word-spacing:10.310580px;}
.ws165{word-spacing:10.983924px;}
.ws56{word-spacing:10.989936px;}
.ws53{word-spacing:11.326608px;}
.wsb1{word-spacing:11.338632px;}
.ws78{word-spacing:11.356668px;}
.ws117{word-spacing:11.374704px;}
.ws190{word-spacing:11.380716px;}
.ws11e{word-spacing:11.669292px;}
.ws118{word-spacing:11.735424px;}
.wsf6{word-spacing:12.060072px;}
.ws139{word-spacing:12.072096px;}
.wscf{word-spacing:12.096144px;}
.ws119{word-spacing:12.102156px;}
.ws168{word-spacing:12.414780px;}
.ws12d{word-spacing:12.438828px;}
.wsf7{word-spacing:12.474900px;}
.ws3{word-spacing:12.600000px;}
.ws138{word-spacing:12.709368px;}
.ws11a{word-spacing:12.733416px;}
.ws45{word-spacing:12.805560px;}
.ws93{word-spacing:13.118184px;}
.ws37{word-spacing:13.130208px;}
.ws46{word-spacing:13.136220px;}
.wsa9{word-spacing:13.148244px;}
.ws133{word-spacing:13.166280px;}
.ws121{word-spacing:13.508964px;}
.ws3d{word-spacing:13.514976px;}
.ws12a{word-spacing:13.527000px;}
.ws180{word-spacing:13.575096px;}
.wsd2{word-spacing:13.845636px;}
.ws38{word-spacing:13.851648px;}
.ws127{word-spacing:13.887720px;}
.wse4{word-spacing:13.893732px;}
.ws40{word-spacing:13.899744px;}
.ws19c{word-spacing:13.905756px;}
.ws128{word-spacing:13.911768px;}
.ws41{word-spacing:13.929804px;}
.ws103{word-spacing:14.218380px;}
.ws104{word-spacing:14.224392px;}
.wsa5{word-spacing:14.230404px;}
.ws19d{word-spacing:14.236416px;}
.ws15f{word-spacing:14.248440px;}
.ws51{word-spacing:14.278500px;}
.ws18c{word-spacing:14.579100px;}
.wsbb{word-spacing:14.597136px;}
.ws115{word-spacing:14.963868px;}
.wsbe{word-spacing:15.270480px;}
.wsc5{word-spacing:15.318576px;}
.ws116{word-spacing:15.324588px;}
.ws43{word-spacing:15.703344px;}
.ws42{word-spacing:15.721380px;}
.ws106{word-spacing:16.040016px;}
.ws147{word-spacing:16.382700px;}
.ws17c{word-spacing:16.400736px;}
.ws197{word-spacing:16.406748px;}
.ws5c{word-spacing:16.436808px;}
.ws0{word-spacing:16.594025px;}
.ws10f{word-spacing:16.755444px;}
.ws198{word-spacing:16.863660px;}
.ws35{word-spacing:17.122176px;}
.ws122{word-spacing:17.494920px;}
.ws166{word-spacing:17.837604px;}
.ws2{word-spacing:18.240000px;}
.ws199{word-spacing:18.240408px;}
.ws19a{word-spacing:18.450828px;}
.ws12e{word-spacing:18.498924px;}
.ws195{word-spacing:18.510948px;}
.ws188{word-spacing:18.547020px;}
.ws14e{word-spacing:19.286496px;}
.ws160{word-spacing:19.599120px;}
.ws9c{word-spacing:19.629180px;}
.ws14f{word-spacing:19.641204px;}
.wscc{word-spacing:19.995912px;}
.ws66{word-spacing:20.320560px;}
.wsa6{word-spacing:20.338596px;}
.wsdc{word-spacing:20.350620px;}
.ws132{word-spacing:20.356632px;}
.wsfe{word-spacing:20.386692px;}
.ws9e{word-spacing:20.717352px;}
.wsf3{word-spacing:20.735388px;}
.ws5f{word-spacing:21.078072px;}
.ws18d{word-spacing:21.084084px;}
.ws6f{word-spacing:21.408732px;}
.ws1a5{word-spacing:21.426768px;}
.ws143{word-spacing:21.432780px;}
.wsf4{word-spacing:21.438792px;}
.ws70{word-spacing:21.444804px;}
.ws135{word-spacing:21.673260px;}
.wsac{word-spacing:21.805524px;}
.ws19f{word-spacing:22.148208px;}
.wsf8{word-spacing:22.178268px;}
.ws1bf{word-spacing:22.424760px;}
.ws82{word-spacing:22.791492px;}
.ws1c0{word-spacing:22.839588px;}
.ws169{word-spacing:22.857624px;}
.ws5e{word-spacing:22.893696px;}
.ws1c1{word-spacing:23.013936px;}
.ws16c{word-spacing:23.218344px;}
.wsca{word-spacing:23.236380px;}
.ws16b{word-spacing:23.242392px;}
.wsf1{word-spacing:23.266440px;}
.ws4a{word-spacing:23.579064px;}
.ws49{word-spacing:23.615136px;}
.ws15{word-spacing:23.645196px;}
.ws16{word-spacing:23.651208px;}
.wsb4{word-spacing:23.975856px;}
.ws10d{word-spacing:24.252408px;}
.wse1{word-spacing:24.294492px;}
.ws146{word-spacing:24.318540px;}
.ws144{word-spacing:24.661224px;}
.wsc3{word-spacing:25.027956px;}
.ws12f{word-spacing:25.039980px;}
.ws1bd{word-spacing:25.346592px;}
.ws12c{word-spacing:25.382664px;}
.ws1bc{word-spacing:25.400700px;}
.ws158{word-spacing:26.074044px;}
.wse8{word-spacing:26.134164px;}
.wsd9{word-spacing:26.146188px;}
.ws187{word-spacing:26.837568px;}
.ws8a{word-spacing:26.849592px;}
.wse9{word-spacing:27.540972px;}
.wsd3{word-spacing:27.577044px;}
.wsbf{word-spacing:27.865620px;}
.wsc0{word-spacing:27.895680px;}
.ws15d{word-spacing:27.907704px;}
.ws18b{word-spacing:27.919728px;}
.wsd5{word-spacing:27.925740px;}
.wsc1{word-spacing:28.190268px;}
.ws5b{word-spacing:28.274436px;}
.ws83{word-spacing:28.280448px;}
.wsc2{word-spacing:28.304496px;}
.wsfb{word-spacing:28.623132px;}
.ws17d{word-spacing:29.735352px;}
.ws17e{word-spacing:29.813508px;}
.ws1ba{word-spacing:30.041964px;}
.ws65{word-spacing:30.102084px;}
.ws1bb{word-spacing:30.282444px;}
.ws48{word-spacing:30.805488px;}
.wsee{word-spacing:30.823524px;}
.ws159{word-spacing:31.130136px;}
.ws47{word-spacing:31.166208px;}
.wsf{word-spacing:32.603076px;}
.ws52{word-spacing:32.849568px;}
.wscd{word-spacing:32.963796px;}
.wsfa{word-spacing:33.360588px;}
.ws149{word-spacing:34.388640px;}
.ws14a{word-spacing:34.424712px;}
.wsd4{word-spacing:35.104068px;}
.ws6c{word-spacing:35.476812px;}
.wsed{word-spacing:35.849556px;}
.ws102{word-spacing:36.949752px;}
.ws101{word-spacing:37.238328px;}
.wsbd{word-spacing:37.280412px;}
.wsb9{word-spacing:38.019888px;}
.ws189{word-spacing:38.687220px;}
.ws18e{word-spacing:38.723292px;}
.ws3c{word-spacing:38.747340px;}
.ws6d{word-spacing:39.426696px;}
.ws1be{word-spacing:40.388616px;}
.ws8f{word-spacing:40.490820px;}
.ws5d{word-spacing:40.496832px;}
.ws85{word-spacing:42.011856px;}
.ws86{word-spacing:42.198228px;}
.ws18a{word-spacing:42.679188px;}
.ws155{word-spacing:43.394616px;}
.ws14d{word-spacing:43.412652px;}
.wsc6{word-spacing:44.073972px;}
.ws89{word-spacing:44.428680px;}
.ws88{word-spacing:44.434692px;}
.ws156{word-spacing:47.001816px;}
.ws157{word-spacing:47.645100px;}
.ws15c{word-spacing:48.468744px;}
.ws15b{word-spacing:52.743276px;}
.wsd0{word-spacing:58.526820px;}
.wsf5{word-spacing:58.887540px;}
.wsdf{word-spacing:60.330420px;}
.wsfc{word-spacing:65.356452px;}
.wseb{word-spacing:68.963652px;}
.wsec{word-spacing:69.138000px;}
.wsfd{word-spacing:69.276276px;}
.wscb{word-spacing:71.103924px;}
.wsea{word-spacing:72.552816px;}
.wsf9{word-spacing:99.204012px;}
.ws162{word-spacing:117.877284px;}
.ws161{word-spacing:142.424280px;}
.ws21{word-spacing:196.057332px;}
.ws110{word-spacing:196.075368px;}
.ws2b{word-spacing:196.087392px;}
.wsd8{word-spacing:196.129476px;}
.ws24{word-spacing:196.141500px;}
.ws20{word-spacing:196.189596px;}
.ws2a{word-spacing:196.195608px;}
._8{margin-left:-210.834828px;}
._e{margin-left:-204.528240px;}
._d{margin-left:-200.560320px;}
._9{margin-left:-197.638488px;}
._7{margin-left:-196.201620px;}
._1f{margin-left:-60.480720px;}
._24{margin-left:-14.558220px;}
._a{margin-left:-9.300564px;}
._1b{margin-left:-7.557084px;}
._0{margin-left:-5.007965px;}
._1{margin-left:-2.808000px;}
._2{margin-left:-1.584000px;}
._4{width:1.023312px;}
._3{width:2.112000px;}
._5{width:5.344668px;}
._6{width:6.670776px;}
._f{width:8.831628px;}
._b{width:10.268496px;}
._c{width:12.516984px;}
._21{width:13.863672px;}
._26{width:18.084096px;}
._25{width:19.253268px;}
._15{width:24.120144px;}
._18{width:27.625140px;}
._2c{width:29.819520px;}
._31{width:31.541748px;}
._10{width:35.278416px;}
._16{width:42.120072px;}
._1d{width:43.202232px;}
._11{width:47.158128px;}
._30{width:49.683168px;}
._1c{width:51.480756px;}
._20{width:53.278344px;}
._14{width:55.081944px;}
._17{width:59.037840px;}
._13{width:61.202160px;}
._12{width:62.639028px;}
._1e{width:63.721188px;}
._23{width:68.741208px;}
._22{width:72.661032px;}
._2d{width:88.202052px;}
._27{width:113.353956px;}
._29{width:164.879100px;}
._28{width:174.600504px;}
._2a{width:178.201692px;}
._1a{width:180.720720px;}
._2e{width:182.518308px;}
._2f{width:190.442124px;}
._2b{width:193.682592px;}
._19{width:197.277768px;}
.fc6{color:rgb(237,31,36);}
.fc3{color:transparent;}
.fc5{color:rgb(166,166,166);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(81,76,58);}
.fsc{font-size:6.120000px;}
.fse{font-size:38.880000px;}
.fs8{font-size:40.539000px;}
.fsf{font-size:42.120000px;}
.fsa{font-size:47.880000px;}
.fs9{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fs7{font-size:54.052200px;}
.fs1{font-size:60.000000px;}
.fsb{font-size:60.120000px;}
.fs4{font-size:66.000000px;}
.fs0{font-size:67.675200px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:90.000000px;}
.fs6{font-size:144.000000px;}
.fs5{font-size:162.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:55.275450px;}
.y2b{bottom:55.762500px;}
.y126{bottom:91.582536px;}
.y1cf{bottom:94.373445px;}
.y1b{bottom:95.525550px;}
.y178{bottom:98.242791px;}
.y1f4{bottom:99.233475px;}
.yf8{bottom:99.323319px;}
.y125{bottom:108.862527px;}
.y1a{bottom:109.169550px;}
.y1ce{bottom:111.653436px;}
.y14c{bottom:113.988426px;}
.y177{bottom:115.522782px;}
.y1f3{bottom:116.513466px;}
.yf7{bottom:116.603310px;}
.ya2{bottom:118.581969px;}
.y19d{bottom:119.031384px;}
.y19{bottom:122.813550px;}
.y124{bottom:126.142518px;}
.y1cd{bottom:128.933427px;}
.y221{bottom:129.832716px;}
.y14b{bottom:131.268417px;}
.y176{bottom:132.712593px;}
.yf6{bottom:133.793121px;}
.y1f2{bottom:133.793457px;}
.ya1{bottom:135.861960px;}
.y19c{bottom:136.311375px;}
.y18{bottom:136.457550px;}
.y123{bottom:143.332329px;}
.y1cc{bottom:146.123238px;}
.y220{bottom:147.022527px;}
.y14a{bottom:149.448705px;}
.y175{bottom:149.992584px;}
.y17{bottom:150.101550px;}
.y1f1{bottom:150.983268px;}
.yf5{bottom:151.073112px;}
.y2{bottom:152.470290px;}
.ya0{bottom:153.141951px;}
.y19b{bottom:154.581843px;}
.y122{bottom:160.612320px;}
.y1cb{bottom:163.403229px;}
.y21f{bottom:164.302518px;}
.y149{bottom:166.728696px;}
.y174{bottom:167.272575px;}
.y1f0{bottom:168.263259px;}
.yf4{bottom:168.353103px;}
.y9f{bottom:170.331762px;}
.y19a{bottom:172.762131px;}
.y1{bottom:172.772850px;}
.y121{bottom:177.892311px;}
.y1ca{bottom:180.593040px;}
.y21e{bottom:181.582509px;}
.y148{bottom:184.008687px;}
.y173{bottom:184.462386px;}
.y1ef{bottom:185.453070px;}
.yf3{bottom:185.542914px;}
.y9e{bottom:188.602230px;}
.y199{bottom:190.042122px;}
.y120{bottom:195.082122px;}
.y1c9{bottom:197.873031px;}
.y21d{bottom:198.772320px;}
.y172{bottom:201.742377px;}
.y147{bottom:202.188975px;}
.y1ee{bottom:202.733061px;}
.yf2{bottom:202.822905px;}
.y9d{bottom:205.882221px;}
.y198{bottom:207.322113px;}
.y2a{bottom:208.733550px;}
.y11f{bottom:212.362113px;}
.y1c8{bottom:215.153022px;}
.y21c{bottom:216.052311px;}
.y171{bottom:218.932188px;}
.y146{bottom:219.378786px;}
.y1ed{bottom:220.013052px;}
.yf1{bottom:220.102896px;}
.y29{bottom:222.233550px;}
.y9c{bottom:224.062509px;}
.y197{bottom:224.421744px;}
.y11e{bottom:229.642104px;}
.ye{bottom:230.433900px;}
.y1c7{bottom:232.433013px;}
.yf{bottom:232.686150px;}
.y21b{bottom:233.242122px;}
.y28{bottom:234.833550px;}
.y170{bottom:236.121999px;}
.y145{bottom:236.748957px;}
.y1ec{bottom:237.022503px;}
.yf0{bottom:237.292707px;}
.y9b{bottom:241.342500px;}
.y196{bottom:241.701735px;}
.y11d{bottom:246.831915px;}
.y27{bottom:248.333550px;}
.y21a{bottom:250.431933px;}
.y1c6{bottom:250.613301px;}
.y16f{bottom:253.492170px;}
.y144{bottom:254.028948px;}
.yef{bottom:254.572698px;}
.yc9{bottom:255.019425px;}
.y1eb{bottom:255.383151px;}
.y195{bottom:258.981726px;}
.y26{bottom:261.833550px;}
.y9a{bottom:262.224813px;}
.y11c{bottom:265.102383px;}
.y219{bottom:267.802104px;}
.y1c5{bottom:267.893292px;}
.y16e{bottom:270.772161px;}
.y143{bottom:271.218759px;}
.yee{bottom:271.852689px;}
.yc8{bottom:272.209236px;}
.y1ea{bottom:272.753322px;}
.y25{bottom:275.333550px;}
.y16{bottom:275.905350px;}
.y194{bottom:276.261717px;}
.y99{bottom:279.594984px;}
.y11b{bottom:282.382374px;}
.y218{bottom:285.082095px;}
.y1c4{bottom:285.173283px;}
.y16d{bottom:287.961972px;}
.y142{bottom:288.498750px;}
.yed{bottom:289.042500px;}
.yc7{bottom:289.489227px;}
.y1e9{bottom:289.943133px;}
.y193{bottom:293.541708px;}
.y98{bottom:296.874975px;}
.y15{bottom:297.505350px;}
.y11a{bottom:299.572185px;}
.y1c3{bottom:302.363094px;}
.y217{bottom:303.262383px;}
.y73{bottom:304.792500px;}
.y16c{bottom:305.241963px;}
.yc6{bottom:306.769218px;}
.y1e8{bottom:307.223124px;}
.yec{bottom:309.922359px;}
.y192{bottom:310.821699px;}
.y97{bottom:314.154966px;}
.ya{bottom:314.969400px;}
.y24{bottom:315.845550px;}
.y119{bottom:316.852176px;}
.y4f{bottom:317.842707px;}
.y14{bottom:319.105200px;}
.y1c2{bottom:319.552905px;}
.y216{bottom:320.542374px;}
.y16b{bottom:322.431774px;}
.yc5{bottom:323.959029px;}
.y1e7{bottom:324.503115px;}
.y72{bottom:324.774759px;}
.y141{bottom:325.039686px;}
.yeb{bottom:327.202350px;}
.y191{bottom:329.092167px;}
.y23{bottom:329.345550px;}
.y96{bottom:331.344777px;}
.y9{bottom:334.769400px;}
.y118{bottom:335.122644px;}
.y4e{bottom:335.122698px;}
.y1c1{bottom:336.832896px;}
.y215{bottom:337.822365px;}
.y16a{bottom:339.711765px;}
.yc4{bottom:341.239020px;}
.y1e6{bottom:341.692926px;}
.y71{bottom:341.964570px;}
.y22{bottom:342.845550px;}
.y140{bottom:343.219974px;}
.yea{bottom:344.482341px;}
.y190{bottom:346.281978px;}
.y95{bottom:348.624768px;}
.y117{bottom:352.402635px;}
.y4d{bottom:352.402689px;}
.y1c0{bottom:354.022707px;}
.y8{bottom:354.569400px;}
.y214{bottom:356.092833px;}
.y21{bottom:356.345550px;}
.y169{bottom:356.991756px;}
.yc3{bottom:358.519011px;}
.y1e5{bottom:358.972917px;}
.y70{bottom:359.244561px;}
.y13f{bottom:360.499965px;}
.ye9{bottom:361.852512px;}
.y18f{bottom:363.561969px;}
.y94{bottom:365.904759px;}
.y116{bottom:369.592446px;}
.y4c{bottom:369.592500px;}
.y20{bottom:369.845550px;}
.y1bf{bottom:371.302698px;}
.y213{bottom:373.282644px;}
.y168{bottom:374.181567px;}
.yc2{bottom:375.799002px;}
.y1e4{bottom:376.252908px;}
.y6f{bottom:376.434372px;}
.y13e{bottom:378.770433px;}
.ye8{bottom:379.042323px;}
.y18e{bottom:380.841960px;}
.y23f{bottom:383.094552px;}
.y93{bottom:383.094570px;}
.y1f{bottom:383.345550px;}
.y4b{bottom:386.784609px;}
.y115{bottom:386.872437px;}
.y1be{bottom:388.582689px;}
.y167{bottom:391.461558px;}
.y212{bottom:391.553112px;}
.y1e3{bottom:393.442719px;}
.y6e{bottom:393.714363px;}
.yc1{bottom:393.979290px;}
.y13d{bottom:396.050424px;}
.ye7{bottom:396.322314px;}
.y18d{bottom:399.022248px;}
.y23e{bottom:400.374543px;}
.y92{bottom:400.374561px;}
.y4a{bottom:403.974420px;}
.y114{bottom:404.062248px;}
.y1bd{bottom:405.772500px;}
.y166{bottom:408.741549px;}
.y211{bottom:408.742923px;}
.y1e2{bottom:410.722710px;}
.y6d{bottom:410.994354px;}
.y1e{bottom:411.101550px;}
.yc0{bottom:411.259281px;}
.y13c{bottom:413.330415px;}
.ye6{bottom:413.602305px;}
.y18c{bottom:416.302239px;}
.y23d{bottom:417.564354px;}
.y91{bottom:417.564372px;}
.y113{bottom:421.342239px;}
.y49{bottom:421.344591px;}
.y1bc{bottom:423.502500px;}
.y1d{bottom:424.601550px;}
.y165{bottom:425.931360px;}
.y210{bottom:426.022914px;}
.y1e1{bottom:428.002701px;}
.y6c{bottom:428.274345px;}
.ybf{bottom:428.539272px;}
.ye5{bottom:430.792116px;}
.y13b{bottom:431.510703px;}
.y18b{bottom:433.582230px;}
.y23c{bottom:434.844345px;}
.y90{bottom:434.844363px;}
.y112{bottom:438.622230px;}
.y48{bottom:438.624582px;}
.y1bb{bottom:439.792500px;}
.y164{bottom:443.211351px;}
.y20f{bottom:443.302905px;}
.y1e0{bottom:445.192512px;}
.y6b{bottom:445.464156px;}
.ybe{bottom:446.719560px;}
.y13a{bottom:448.790694px;}
.ye4{bottom:449.062584px;}
.y18a{bottom:450.862221px;}
.y23b{bottom:452.124336px;}
.y8f{bottom:452.124354px;}
.y111{bottom:455.721861px;}
.y47{bottom:455.814393px;}
.y1ba{bottom:456.082500px;}
.y163{bottom:460.491342px;}
.y20e{bottom:460.582896px;}
.y1df{bottom:462.472503px;}
.y6a{bottom:462.744147px;}
.ybd{bottom:463.999551px;}
.y139{bottom:465.980505px;}
.ye3{bottom:466.342575px;}
.y189{bottom:469.042509px;}
.y23a{bottom:469.314147px;}
.y8e{bottom:469.314165px;}
.y1b9{bottom:472.282500px;}
.y110{bottom:473.001852px;}
.y46{bottom:473.094384px;}
.y162{bottom:477.681153px;}
.y20d{bottom:477.772707px;}
.y1c{bottom:478.121550px;}
.y1de{bottom:479.662314px;}
.y69{bottom:480.024138px;}
.ybc{bottom:482.270019px;}
.y138{bottom:483.260496px;}
.ye2{bottom:483.532386px;}
.y188{bottom:486.321279px;}
.y239{bottom:486.594138px;}
.y8d{bottom:486.594156px;}
.y1b8{bottom:488.572500px;}
.y10f{bottom:490.372023px;}
.y45{bottom:490.374375px;}
.y20c{bottom:495.052698px;}
.y1dd{bottom:496.942305px;}
.y68{bottom:497.213949px;}
.y12{bottom:497.558250px;}
.ybb{bottom:499.550010px;}
.y137{bottom:500.540487px;}
.ye1{bottom:500.812377px;}
.y187{bottom:503.511090px;}
.y161{bottom:503.511711px;}
.y238{bottom:503.874129px;}
.y8c{bottom:503.874147px;}
.y1b6{bottom:504.952950px;}
.y10e{bottom:507.561834px;}
.y44{bottom:507.564186px;}
.y20b{bottom:512.332689px;}
.y1dc{bottom:514.222296px;}
.y67{bottom:514.493940px;}
.yd{bottom:516.698250px;}
.yba{bottom:517.730298px;}
.ye0{bottom:518.092368px;}
.y136{bottom:518.810955px;}
.y1b5{bottom:518.991942px;}
.y1b7{bottom:520.522500px;}
.y160{bottom:520.701522px;}
.y186{bottom:520.791081px;}
.y237{bottom:521.063940px;}
.y8b{bottom:521.063958px;}
.y10d{bottom:524.841825px;}
.y43{bottom:524.844177px;}
.y20a{bottom:529.522500px;}
.y1db{bottom:531.412107px;}
.y66{bottom:531.773931px;}
.yb9{bottom:535.010289px;}
.ydf{bottom:535.282179px;}
.y135{bottom:537.081423px;}
.y1b4{bottom:537.082050px;}
.y15f{bottom:537.981513px;}
.y185{bottom:538.071072px;}
.y236{bottom:538.343931px;}
.y8a{bottom:538.343949px;}
.y11{bottom:540.758250px;}
.y10c{bottom:542.121816px;}
.y42{bottom:542.124168px;}
.y209{bottom:547.522500px;}
.y1da{bottom:548.692098px;}
.y65{bottom:548.963742px;}
.yde{bottom:552.562170px;}
.yb8{bottom:553.280757px;}
.y134{bottom:554.181054px;}
.y1b3{bottom:554.271861px;}
.y15e{bottom:555.261504px;}
.y235{bottom:555.623922px;}
.y89{bottom:555.623940px;}
.y184{bottom:556.341540px;}
.y10b{bottom:559.311627px;}
.y41{bottom:559.313979px;}
.yc{bottom:559.898250px;}
.y1d9{bottom:565.972089px;}
.y64{bottom:566.243733px;}
.y208{bottom:567.411780px;}
.yb7{bottom:570.560748px;}
.ydd{bottom:570.832638px;}
.y133{bottom:571.551225px;}
.y1b2{bottom:571.551852px;}
.y15d{bottom:572.541495px;}
.y234{bottom:572.813733px;}
.y88{bottom:572.813751px;}
.y183{bottom:573.621531px;}
.y40{bottom:576.503790px;}
.y10a{bottom:576.591618px;}
.y63{bottom:583.523724px;}
.y207{bottom:584.691771px;}
.ydc{bottom:588.112629px;}
.yb6{bottom:588.650856px;}
.y1b1{bottom:588.831843px;}
.y15c{bottom:589.821486px;}
.y233{bottom:590.093724px;}
.y87{bottom:590.093742px;}
.y1d8{bottom:591.712467px;}
.y182{bottom:591.801819px;}
.y3f{bottom:593.783781px;}
.y109{bottom:593.871609px;}
.y62{bottom:600.713535px;}
.y206{bottom:601.881582px;}
.ydb{bottom:605.302440px;}
.y132{bottom:605.930847px;}
.yb5{bottom:606.021027px;}
.y1b0{bottom:607.012131px;}
.y15b{bottom:607.101477px;}
.y232{bottom:607.373715px;}
.y86{bottom:607.373733px;}
.y1d7{bottom:608.992458px;}
.y181{bottom:609.081810px;}
.y108{bottom:611.061420px;}
.y3e{bottom:611.063772px;}
.y61{bottom:617.993526px;}
.y205{bottom:619.251753px;}
.yda{bottom:622.582431px;}
.yb4{bottom:623.301018px;}
.y1af{bottom:624.292122px;}
.y15a{bottom:624.381468px;}
.y231{bottom:624.563526px;}
.y85{bottom:624.563544px;}
.y1d6{bottom:626.272449px;}
.y180{bottom:627.352278px;}
.y107{bottom:628.341411px;}
.y3d{bottom:628.343763px;}
.y60{bottom:635.273517px;}
.y204{bottom:636.531744px;}
.yd9{bottom:639.772242px;}
.y131{bottom:640.490829px;}
.yb3{bottom:640.581009px;}
.y1ae{bottom:641.572113px;}
.y250{bottom:641.842509px;}
.y230{bottom:641.843517px;}
.y84{bottom:641.843535px;}
.y159{bottom:642.561756px;}
.y1d5{bottom:643.552440px;}
.y17f{bottom:644.632269px;}
.y106{bottom:645.621402px;}
.y3c{bottom:645.623754px;}
.y5f{bottom:652.463328px;}
.y203{bottom:654.802212px;}
.yd8{bottom:657.052233px;}
.y130{bottom:657.770820px;}
.yb2{bottom:658.761297px;}
.y1ad{bottom:658.761924px;}
.y24f{bottom:659.122707px;}
.y22f{bottom:659.123508px;}
.y83{bottom:659.123526px;}
.y158{bottom:659.841747px;}
.y1d4{bottom:660.832431px;}
.y17e{bottom:662.812557px;}
.y3b{bottom:662.813565px;}
.y5e{bottom:669.743319px;}
.y105{bottom:671.361780px;}
.y202{bottom:672.980304px;}
.yd7{bottom:674.332224px;}
.y12f{bottom:675.050811px;}
.yb1{bottom:676.041288px;}
.y1ac{bottom:676.041915px;}
.y24e{bottom:676.312518px;}
.y22e{bottom:676.313319px;}
.y82{bottom:676.313337px;}
.y157{bottom:677.121738px;}
.y1d3{bottom:678.022242px;}
.y17d{bottom:680.092548px;}
.y3a{bottom:680.093556px;}
.y5d{bottom:687.023310px;}
.y201{bottom:690.260295px;}
.yd6{bottom:691.522035px;}
.yb0{bottom:693.321279px;}
.y24d{bottom:693.592509px;}
.y22d{bottom:693.593310px;}
.y81{bottom:693.593328px;}
.y1ab{bottom:694.312383px;}
.y156{bottom:695.121666px;}
.y1d2{bottom:695.302233px;}
.y104{bottom:697.282518px;}
.y17c{bottom:697.372539px;}
.y39{bottom:697.373547px;}
.y5c{bottom:704.213121px;}
.y200{bottom:708.530763px;}
.yd5{bottom:708.802026px;}
.yaf{bottom:710.601270px;}
.y24c{bottom:710.872500px;}
.y22c{bottom:710.873301px;}
.y80{bottom:710.873319px;}
.y12e{bottom:711.591747px;}
.y1aa{bottom:711.592374px;}
.y1d1{bottom:712.582224px;}
.y155{bottom:713.482314px;}
.y103{bottom:714.562509px;}
.y17b{bottom:714.563178px;}
.y38{bottom:714.563358px;}
.y13{bottom:718.543950px;}
.yb{bottom:718.594350px;}
.y5b{bottom:721.493112px;}
.y1ff{bottom:725.810754px;}
.yd4{bottom:726.082017px;}
.y24b{bottom:728.062707px;}
.y22b{bottom:728.063112px;}
.y7f{bottom:728.063130px;}
.yae{bottom:728.781558px;}
.y1a9{bottom:728.782185px;}
.y1d0{bottom:729.772035px;}
.y154{bottom:730.762305px;}
.y102{bottom:731.842500px;}
.y17a{bottom:731.843169px;}
.y37{bottom:731.843349px;}
.y5a{bottom:738.773103px;}
.y243{bottom:743.271828px;}
.y1fe{bottom:743.900862px;}
.yd3{bottom:744.352485px;}
.y24a{bottom:745.342698px;}
.y22a{bottom:745.343103px;}
.y7e{bottom:745.343121px;}
.yad{bottom:746.061549px;}
.y1a8{bottom:746.062176px;}
.y12d{bottom:747.052026px;}
.y153{bottom:747.952116px;}
.y101{bottom:749.032980px;}
.y36{bottom:749.033160px;}
.y59{bottom:755.962914px;}
.y242{bottom:760.551819px;}
.y1fd{bottom:761.180853px;}
.yd2{bottom:761.542296px;}
.y249{bottom:762.532509px;}
.y229{bottom:762.532914px;}
.y7d{bottom:762.532932px;}
.y1a7{bottom:763.251987px;}
.yac{bottom:763.341540px;}
.y12c{bottom:764.332017px;}
.y152{bottom:765.232107px;}
.y179{bottom:766.222791px;}
.y100{bottom:766.312971px;}
.y35{bottom:766.313151px;}
.y58{bottom:773.242905px;}
.y241{bottom:777.831810px;}
.y1fc{bottom:778.551024px;}
.yd1{bottom:778.822287px;}
.y248{bottom:779.812698px;}
.y228{bottom:779.812905px;}
.y7c{bottom:779.812923px;}
.y1a6{bottom:780.531978px;}
.yab{bottom:781.521828px;}
.y12b{bottom:781.612008px;}
.y151{bottom:782.602278px;}
.yff{bottom:783.592962px;}
.y34{bottom:783.593142px;}
.y57{bottom:790.432716px;}
.y5{bottom:794.343300px;}
.y1fb{bottom:795.740835px;}
.yd0{bottom:796.102278px;}
.y247{bottom:797.092689px;}
.y227{bottom:797.092896px;}
.y7b{bottom:797.092914px;}
.y1a5{bottom:798.712266px;}
.yaa{bottom:798.801819px;}
.y150{bottom:799.792089px;}
.y12a{bottom:799.792296px;}
.y33{bottom:800.692773px;}
.yfe{bottom:800.782773px;}
.y56{bottom:807.622527px;}
.y4{bottom:811.593300px;}
.y1fa{bottom:813.020826px;}
.ycf{bottom:813.292089px;}
.y246{bottom:814.282518px;}
.y226{bottom:814.282707px;}
.y7a{bottom:814.282725px;}
.y1a4{bottom:815.992257px;}
.ya9{bottom:816.081810px;}
.y14f{bottom:817.072080px;}
.y129{bottom:817.072287px;}
.y32{bottom:817.972764px;}
.yfd{bottom:818.062764px;}
.y55{bottom:824.992698px;}
.y3{bottom:828.843300px;}
.yce{bottom:830.572080px;}
.y1f9{bottom:831.291294px;}
.y245{bottom:831.562509px;}
.y225{bottom:831.562698px;}
.y79{bottom:831.562716px;}
.y1a3{bottom:833.272248px;}
.ya8{bottom:833.361801px;}
.y14e{bottom:834.352071px;}
.yfc{bottom:835.342755px;}
.y31{bottom:835.342935px;}
.y54{bottom:842.092329px;}
.ycd{bottom:847.852071px;}
.y1f8{bottom:848.571285px;}
.y224{bottom:848.842689px;}
.y78{bottom:848.842707px;}
.y1a2{bottom:850.552239px;}
.y14d{bottom:851.541882px;}
.ya7{bottom:851.542089px;}
.yfb{bottom:852.532566px;}
.y30{bottom:852.532746px;}
.y53{bottom:859.462500px;}
.y240{bottom:865.041882px;}
.ycc{bottom:866.032359px;}
.y223{bottom:866.032500px;}
.y77{bottom:866.032518px;}
.y1f7{bottom:866.751573px;}
.y1a1{bottom:867.832230px;}
.ya6{bottom:868.822080px;}
.y128{bottom:869.722377px;}
.yfa{bottom:869.812557px;}
.y2f{bottom:869.812737px;}
.y52{bottom:877.462500px;}
.ycb{bottom:883.312350px;}
.y76{bottom:883.312509px;}
.y1f6{bottom:884.031564px;}
.y1a0{bottom:885.022041px;}
.ya5{bottom:886.102071px;}
.y222{bottom:886.912368px;}
.y127{bottom:887.002368px;}
.yf9{bottom:887.092548px;}
.y2e{bottom:887.092728px;}
.y51{bottom:898.162500px;}
.y75{bottom:900.592500px;}
.y1f5{bottom:902.302032px;}
.y19f{bottom:903.292509px;}
.yca{bottom:904.101999px;}
.y244{bottom:904.102179px;}
.y2d{bottom:904.192359px;}
.ya4{bottom:904.282359px;}
.y7{bottom:911.771550px;}
.y251{bottom:918.772500px;}
.y50{bottom:918.862500px;}
.y19e{bottom:920.572500px;}
.y74{bottom:921.382350px;}
.y2c{bottom:921.472350px;}
.ya3{bottom:921.562350px;}
.y10{bottom:950.722350px;}
.ha{height:25.215258px;}
.he{height:36.000000px;}
.h9{height:37.998697px;}
.hd{height:42.117188px;}
.hf{height:43.227598px;}
.h3{height:43.681641px;}
.h19{height:43.769004px;}
.h14{height:45.090000px;}
.h18{height:48.410156px;}
.h17{height:48.752930px;}
.h11{height:53.896641px;}
.h1b{height:53.897205px;}
.h15{height:53.901525px;}
.h1a{height:53.905425px;}
.h13{height:54.277434px;}
.h10{height:54.278262px;}
.h16{height:54.875162px;}
.h6{height:57.911133px;}
.h12{height:63.173861px;}
.h4{height:63.175781px;}
.h1c{height:64.546875px;}
.h2{height:65.238893px;}
.h5{height:78.969727px;}
.h8{height:108.000000px;}
.h7{height:114.372000px;}
.hb{height:1020.000000px;}
.hc{height:1020.472500px;}
.h0{height:1020.473250px;}
.h1{height:1020.750000px;}
.w2{width:722.835000px;}
.w0{width:722.836500px;}
.w3{width:722.841750px;}
.w1{width:723.000000px;}
.x2{left:-560.196150px;}
.xb{left:-134.611350px;}
.xc{left:-45.646050px;}
.x0{left:0.000000px;}
.x3{left:55.713750px;}
.xd{left:106.380000px;}
.x4{left:113.406750px;}
.x11{left:121.332300px;}
.x26{left:133.379892px;}
.xe{left:154.127250px;}
.x5{left:155.739600px;}
.x24{left:159.480990px;}
.x2c{left:168.390000px;}
.x2f{left:183.897600px;}
.x27{left:187.378011px;}
.x9{left:190.410300px;}
.x28{left:191.428596px;}
.x18{left:209.886900px;}
.x25{left:212.581980px;}
.x16{left:226.122900px;}
.x15{left:228.162900px;}
.x12{left:229.449900px;}
.x14{left:231.786900px;}
.x23{left:239.220000px;}
.x17{left:241.182900px;}
.x1e{left:250.074900px;}
.x21{left:257.982900px;}
.x13{left:268.761900px;}
.xf{left:271.955250px;}
.x6{left:274.821750px;}
.x1d{left:286.494900px;}
.x20{left:290.658900px;}
.x1c{left:292.134900px;}
.x22{left:295.950900px;}
.x1{left:301.747950px;}
.xa{left:308.238300px;}
.x7{left:310.857750px;}
.x1a{left:338.670900px;}
.x1f{left:339.954900px;}
.x19{left:342.462900px;}
.x1b{left:348.738900px;}
.x2d{left:392.578587px;}
.x29{left:396.360450px;}
.x10{left:463.619700px;}
.x2a{left:475.020900px;}
.x8{left:501.732900px;}
.x2b{left:529.200450px;}
.x38{left:609.482400px;}
.x39{left:698.447700px;}
.x30{left:799.807500px;}
.x31{left:857.500500px;}
.x32{left:899.833350px;}
.x36{left:934.504050px;}
.x33{left:1018.915500px;}
.x2e{left:1045.841700px;}
.x37{left:1052.332050px;}
.x34{left:1054.951500px;}
.x35{left:1245.826650px;}
@media print{
.v2{vertical-align:-7.992192pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.441984pt;}
.ls6b{letter-spacing:-0.991648pt;}
.ls70{letter-spacing:-0.972608pt;}
.ls3a{letter-spacing:-0.967264pt;}
.ls4a{letter-spacing:-0.956576pt;}
.ls7a{letter-spacing:-0.945888pt;}
.ls6d{letter-spacing:-0.929856pt;}
.ls7b{letter-spacing:-0.924512pt;}
.ls7d{letter-spacing:-0.919168pt;}
.ls4d{letter-spacing:-0.913824pt;}
.ls6c{letter-spacing:-0.906528pt;}
.ls4b{letter-spacing:-0.903136pt;}
.ls49{letter-spacing:-0.897792pt;}
.ls74{letter-spacing:-0.892448pt;}
.ls6f{letter-spacing:-0.842688pt;}
.ls7c{letter-spacing:-0.828320pt;}
.ls78{letter-spacing:-0.806944pt;}
.ls79{letter-spacing:-0.791616pt;}
.ls73{letter-spacing:-0.769536pt;}
.ls75{letter-spacing:-0.761824pt;}
.ls6e{letter-spacing:-0.732032pt;}
.ls76{letter-spacing:-0.719264pt;}
.ls77{letter-spacing:-0.604352pt;}
.ls71{letter-spacing:-0.574560pt;}
.ls72{letter-spacing:-0.549024pt;}
.ls5c{letter-spacing:-0.448896pt;}
.ls5d{letter-spacing:-0.363392pt;}
.ls35{letter-spacing:-0.320640pt;}
.ls57{letter-spacing:-0.293920pt;}
.ls22{letter-spacing:-0.283232pt;}
.ls42{letter-spacing:-0.267200pt;}
.ls14{letter-spacing:-0.251168pt;}
.ls48{letter-spacing:-0.245824pt;}
.ls56{letter-spacing:-0.240480pt;}
.ls34{letter-spacing:-0.224448pt;}
.ls23{letter-spacing:-0.219104pt;}
.ls55{letter-spacing:-0.213760pt;}
.ls24{letter-spacing:-0.208416pt;}
.ls2a{letter-spacing:-0.203072pt;}
.ls2b{letter-spacing:-0.197728pt;}
.ls43{letter-spacing:-0.192384pt;}
.ls58{letter-spacing:-0.187040pt;}
.ls60{letter-spacing:-0.181696pt;}
.ls5f{letter-spacing:-0.176352pt;}
.ls41{letter-spacing:-0.144288pt;}
.ls50{letter-spacing:-0.134400pt;}
.ls19{letter-spacing:-0.128256pt;}
.ls13{letter-spacing:-0.122912pt;}
.ls15{letter-spacing:-0.117568pt;}
.ls17{letter-spacing:-0.106880pt;}
.ls3b{letter-spacing:-0.101536pt;}
.ls52{letter-spacing:-0.100800pt;}
.lse{letter-spacing:-0.096192pt;}
.ls4f{letter-spacing:-0.096000pt;}
.ls29{letter-spacing:-0.093632pt;}
.ls51{letter-spacing:-0.081600pt;}
.ls18{letter-spacing:-0.074816pt;}
.ls9{letter-spacing:-0.069472pt;}
.lsb{letter-spacing:-0.064128pt;}
.ls8{letter-spacing:-0.058784pt;}
.ls25{letter-spacing:-0.053440pt;}
.lsf{letter-spacing:-0.048096pt;}
.ls16{letter-spacing:-0.042752pt;}
.ls3e{letter-spacing:-0.037408pt;}
.ls53{letter-spacing:-0.033600pt;}
.lsa{letter-spacing:-0.032064pt;}
.lsd{letter-spacing:-0.026720pt;}
.ls7e{letter-spacing:-0.025536pt;}
.ls1a{letter-spacing:-0.021376pt;}
.ls26{letter-spacing:-0.016032pt;}
.lsc{letter-spacing:-0.010688pt;}
.ls21{letter-spacing:-0.005344pt;}
.ls2{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.004256pt;}
.ls7{letter-spacing:0.005344pt;}
.ls38{letter-spacing:0.008512pt;}
.ls6{letter-spacing:0.010688pt;}
.ls4{letter-spacing:0.016032pt;}
.ls27{letter-spacing:0.017024pt;}
.ls12{letter-spacing:0.019200pt;}
.ls5{letter-spacing:0.021376pt;}
.ls62{letter-spacing:0.025152pt;}
.ls11{letter-spacing:0.026720pt;}
.ls4e{letter-spacing:0.028800pt;}
.ls10{letter-spacing:0.032064pt;}
.ls1e{letter-spacing:0.037408pt;}
.ls63{letter-spacing:0.038304pt;}
.ls1d{letter-spacing:0.042752pt;}
.ls68{letter-spacing:0.047744pt;}
.ls1c{letter-spacing:0.048096pt;}
.ls2d{letter-spacing:0.053440pt;}
.ls67{letter-spacing:0.055328pt;}
.ls2f{letter-spacing:0.058784pt;}
.ls39{letter-spacing:0.064128pt;}
.ls33{letter-spacing:0.069472pt;}
.ls30{letter-spacing:0.074816pt;}
.ls3f{letter-spacing:0.087680pt;}
.ls32{letter-spacing:0.090848pt;}
.ls65{letter-spacing:0.096000pt;}
.ls37{letter-spacing:0.096192pt;}
.ls6a{letter-spacing:0.101536pt;}
.ls20{letter-spacing:0.112224pt;}
.ls5b{letter-spacing:0.122912pt;}
.ls64{letter-spacing:0.133824pt;}
.ls7f{letter-spacing:0.140800pt;}
.ls4c{letter-spacing:0.144288pt;}
.ls3c{letter-spacing:0.181696pt;}
.ls5e{letter-spacing:0.192384pt;}
.ls3{letter-spacing:0.336224pt;}
.ls1{letter-spacing:1.297253pt;}
.ls5a{letter-spacing:2.426176pt;}
.ls66{letter-spacing:2.711680pt;}
.ls61{letter-spacing:3.208320pt;}
.ls46{letter-spacing:6.583808pt;}
.ls1f{letter-spacing:11.382720pt;}
.ls31{letter-spacing:11.703360pt;}
.ls3d{letter-spacing:12.344640pt;}
.ls47{letter-spacing:12.665280pt;}
.ls69{letter-spacing:20.488320pt;}
.ls0{letter-spacing:29.356350pt;}
.ls2e{letter-spacing:39.545600pt;}
.ls54{letter-spacing:53.621696pt;}
.ls44{letter-spacing:54.583616pt;}
.ls2c{letter-spacing:56.502112pt;}
.ls45{letter-spacing:57.464032pt;}
.ls40{letter-spacing:59.382528pt;}
.ls59{letter-spacing:170.307936pt;}
.ls36{letter-spacing:174.262496pt;}
.ls1b{letter-spacing:174.273184pt;}
.ws107{word-spacing:-53.440000pt;}
.ws109{word-spacing:-15.000608pt;}
.ws16e{word-spacing:-14.979232pt;}
.wse7{word-spacing:-14.915104pt;}
.ws7c{word-spacing:-14.909760pt;}
.ws10a{word-spacing:-14.888384pt;}
.ws183{word-spacing:-14.877696pt;}
.ws1a{word-spacing:-14.867008pt;}
.ws108{word-spacing:-14.856320pt;}
.wsd7{word-spacing:-14.850976pt;}
.ws7a{word-spacing:-14.845632pt;}
.ws14c{word-spacing:-14.840288pt;}
.ws1b{word-spacing:-14.824256pt;}
.wsd6{word-spacing:-14.818912pt;}
.wse6{word-spacing:-14.813568pt;}
.ws7d{word-spacing:-14.802880pt;}
.ws12b{word-spacing:-14.797536pt;}
.ws14b{word-spacing:-14.786848pt;}
.ws16f{word-spacing:-14.733408pt;}
.ws184{word-spacing:-14.679968pt;}
.ws7b{word-spacing:-14.535680pt;}
.ws182{word-spacing:-14.492928pt;}
.ws29{word-spacing:-12.478240pt;}
.ws1ac{word-spacing:-11.887008pt;}
.ws1a9{word-spacing:-11.869984pt;}
.ws1aa{word-spacing:-11.848704pt;}
.wsad{word-spacing:-11.840192pt;}
.ws1ab{word-spacing:-11.835936pt;}
.ws1b0{word-spacing:-11.806144pt;}
.ws1a8{word-spacing:-11.282656pt;}
.ws1af{word-spacing:-11.257120pt;}
.ws1ae{word-spacing:-11.227328pt;}
.ws1ad{word-spacing:-11.112416pt;}
.ws1a7{word-spacing:-10.988992pt;}
.ws1a6{word-spacing:-10.925152pt;}
.ws5{word-spacing:-10.666667pt;}
.ws4{word-spacing:-10.613333pt;}
.ws27{word-spacing:-10.565088pt;}
.ws16d{word-spacing:-9.607680pt;}
.ws31{word-spacing:-9.282528pt;}
.ws25{word-spacing:-8.331296pt;}
.ws2f{word-spacing:-8.320608pt;}
.ws1c{word-spacing:-6.722752pt;}
.ws1e{word-spacing:-6.086816pt;}
.ws30{word-spacing:-4.478272pt;}
.ws1f{word-spacing:-1.923840pt;}
.ws13a{word-spacing:-0.486304pt;}
.wsce{word-spacing:-0.448896pt;}
.ws176{word-spacing:-0.438208pt;}
.ws32{word-spacing:-0.427520pt;}
.ws23{word-spacing:-0.342016pt;}
.ws2d{word-spacing:-0.325984pt;}
.ws13b{word-spacing:-0.224448pt;}
.ws9a{word-spacing:-0.219104pt;}
.ws8c{word-spacing:-0.203072pt;}
.ws142{word-spacing:-0.197728pt;}
.wsde{word-spacing:-0.187040pt;}
.ws59{word-spacing:-0.171008pt;}
.wsc4{word-spacing:-0.165664pt;}
.ws28{word-spacing:-0.160320pt;}
.ws2e{word-spacing:-0.154976pt;}
.wsa{word-spacing:-0.149632pt;}
.ws8{word-spacing:-0.144288pt;}
.wsd{word-spacing:-0.138944pt;}
.ws17{word-spacing:-0.133600pt;}
.ws7{word-spacing:-0.128256pt;}
.ws71{word-spacing:-0.122912pt;}
.ws10{word-spacing:-0.117568pt;}
.ws92{word-spacing:-0.112224pt;}
.ws2c{word-spacing:-0.106880pt;}
.ws19{word-spacing:-0.101536pt;}
.wsc{word-spacing:-0.096192pt;}
.ws22{word-spacing:-0.085504pt;}
.ws18{word-spacing:-0.080160pt;}
.ws5a{word-spacing:-0.074816pt;}
.ws9{word-spacing:-0.069472pt;}
.wse{word-spacing:-0.064128pt;}
.wsb{word-spacing:-0.058784pt;}
.ws26{word-spacing:-0.010688pt;}
.ws1{word-spacing:0.000000pt;}
.ws6{word-spacing:0.017024pt;}
.ws19b{word-spacing:0.053440pt;}
.ws17f{word-spacing:0.069472pt;}
.ws6e{word-spacing:0.074816pt;}
.ws13c{word-spacing:0.076800pt;}
.ws1d{word-spacing:0.122912pt;}
.ws11f{word-spacing:0.133600pt;}
.ws141{word-spacing:0.139200pt;}
.ws136{word-spacing:0.149632pt;}
.wsa2{word-spacing:0.154976pt;}
.wsda{word-spacing:0.165664pt;}
.wsdb{word-spacing:0.171008pt;}
.ws94{word-spacing:0.181696pt;}
.ws13e{word-spacing:0.187200pt;}
.ws13f{word-spacing:0.201600pt;}
.ws140{word-spacing:0.206400pt;}
.ws13d{word-spacing:0.240000pt;}
.ws60{word-spacing:0.331968pt;}
.ws95{word-spacing:0.411488pt;}
.ws1a4{word-spacing:0.459584pt;}
.ws87{word-spacing:0.475616pt;}
.ws3f{word-spacing:0.491648pt;}
.ws137{word-spacing:0.513024pt;}
.wsc8{word-spacing:0.582496pt;}
.wsc7{word-spacing:0.614560pt;}
.ws58{word-spacing:0.790912pt;}
.ws16a{word-spacing:0.796256pt;}
.ws63{word-spacing:0.806944pt;}
.wsdd{word-spacing:0.812288pt;}
.ws134{word-spacing:0.817632pt;}
.ws57{word-spacing:0.822976pt;}
.ws172{word-spacing:0.833664pt;}
.ws62{word-spacing:0.839008pt;}
.ws50{word-spacing:1.052768pt;}
.ws3a{word-spacing:1.127584pt;}
.ws69{word-spacing:1.143616pt;}
.ws145{word-spacing:1.164992pt;}
.wsc9{word-spacing:1.453568pt;}
.ws10e{word-spacing:1.464256pt;}
.wsb8{word-spacing:1.474944pt;}
.ws6a{word-spacing:1.480288pt;}
.ws167{word-spacing:1.752832pt;}
.ws114{word-spacing:1.758176pt;}
.ws6b{word-spacing:1.774208pt;}
.ws10c{word-spacing:1.779552pt;}
.wsab{word-spacing:1.784896pt;}
.wsaa{word-spacing:1.795584pt;}
.ws55{word-spacing:2.073472pt;}
.ws72{word-spacing:2.089504pt;}
.ws64{word-spacing:2.094848pt;}
.ws9b{word-spacing:2.100192pt;}
.wsb3{word-spacing:2.105536pt;}
.ws151{word-spacing:2.110880pt;}
.ws7e{word-spacing:2.116224pt;}
.ws7f{word-spacing:2.121568pt;}
.ws1b4{word-spacing:2.367392pt;}
.wsd1{word-spacing:2.399456pt;}
.wsa4{word-spacing:2.415488pt;}
.ws178{word-spacing:2.420832pt;}
.ws17b{word-spacing:2.426176pt;}
.wsae{word-spacing:2.431520pt;}
.ws4e{word-spacing:2.442208pt;}
.ws1b8{word-spacing:2.688032pt;}
.ws111{word-spacing:2.704064pt;}
.ws17a{word-spacing:2.709408pt;}
.ws175{word-spacing:2.720096pt;}
.wsb0{word-spacing:2.736128pt;}
.ws79{word-spacing:2.746816pt;}
.ws174{word-spacing:2.757504pt;}
.ws4f{word-spacing:2.762848pt;}
.ws1b7{word-spacing:2.768192pt;}
.ws3b{word-spacing:3.040736pt;}
.ws126{word-spacing:3.046080pt;}
.ws11d{word-spacing:3.056768pt;}
.ws11b{word-spacing:3.062112pt;}
.ws4d{word-spacing:3.067456pt;}
.ws125{word-spacing:3.078144pt;}
.ws11c{word-spacing:3.083488pt;}
.ws1b6{word-spacing:3.147616pt;}
.ws75{word-spacing:3.270528pt;}
.ws1b3{word-spacing:3.323968pt;}
.wse3{word-spacing:3.372064pt;}
.ws61{word-spacing:3.382752pt;}
.ws1b5{word-spacing:3.388096pt;}
.ws18f{word-spacing:3.398784pt;}
.wsf2{word-spacing:3.687360pt;}
.ws99{word-spacing:3.698048pt;}
.ws154{word-spacing:3.703392pt;}
.ws196{word-spacing:3.719424pt;}
.ws112{word-spacing:3.997312pt;}
.ws80{word-spacing:4.013344pt;}
.wsa3{word-spacing:4.018688pt;}
.ws84{word-spacing:4.024032pt;}
.ws73{word-spacing:4.034720pt;}
.ws113{word-spacing:4.301920pt;}
.ws1b1{word-spacing:4.323296pt;}
.ws36{word-spacing:4.333984pt;}
.ws96{word-spacing:4.350016pt;}
.ws1b2{word-spacing:4.366048pt;}
.ws193{word-spacing:4.595840pt;}
.ws1a2{word-spacing:4.633248pt;}
.ws192{word-spacing:4.643936pt;}
.wse2{word-spacing:4.649280pt;}
.ws74{word-spacing:4.659968pt;}
.ws191{word-spacing:4.670656pt;}
.ws163{word-spacing:4.676000pt;}
.ws11{word-spacing:4.681344pt;}
.ws13{word-spacing:4.697376pt;}
.ws12{word-spacing:4.702720pt;}
.ws100{word-spacing:4.953888pt;}
.ws179{word-spacing:4.964576pt;}
.ws8d{word-spacing:4.969920pt;}
.ws181{word-spacing:4.975264pt;}
.ws164{word-spacing:4.980608pt;}
.ws8e{word-spacing:4.985952pt;}
.ws194{word-spacing:5.018016pt;}
.ws14{word-spacing:5.087488pt;}
.wse5{word-spacing:5.285216pt;}
.wsff{word-spacing:5.349344pt;}
.ws130{word-spacing:5.605856pt;}
.ws39{word-spacing:5.616544pt;}
.ws131{word-spacing:5.621888pt;}
.ws81{word-spacing:5.632576pt;}
.ws9f{word-spacing:5.830304pt;}
.ws68{word-spacing:5.921152pt;}
.ws153{word-spacing:5.931840pt;}
.ws54{word-spacing:5.937184pt;}
.ws129{word-spacing:6.247136pt;}
.wse0{word-spacing:6.257824pt;}
.wsbc{word-spacing:6.263168pt;}
.wsb5{word-spacing:6.279200pt;}
.ws44{word-spacing:6.284544pt;}
.wsb6{word-spacing:6.289888pt;}
.ws97{word-spacing:6.557088pt;}
.ws120{word-spacing:6.573120pt;}
.ws185{word-spacing:6.589152pt;}
.ws186{word-spacing:6.621216pt;}
.ws171{word-spacing:6.637248pt;}
.ws77{word-spacing:6.883072pt;}
.ws3e{word-spacing:6.888416pt;}
.wsaf{word-spacing:6.899104pt;}
.ws170{word-spacing:6.952544pt;}
.ws15a{word-spacing:7.102176pt;}
.ws150{word-spacing:7.128896pt;}
.ws9d{word-spacing:7.155616pt;}
.ws34{word-spacing:7.182336pt;}
.ws1a1{word-spacing:7.187680pt;}
.ws105{word-spacing:7.193024pt;}
.ws4c{word-spacing:7.209056pt;}
.ws19e{word-spacing:7.214400pt;}
.ws33{word-spacing:7.219744pt;}
.ws4b{word-spacing:7.230432pt;}
.ws177{word-spacing:7.241120pt;}
.ws76{word-spacing:7.246464pt;}
.ws15e{word-spacing:7.502976pt;}
.wsf0{word-spacing:7.519008pt;}
.ws10b{word-spacing:7.524352pt;}
.ws67{word-spacing:7.529696pt;}
.ws152{word-spacing:7.551072pt;}
.wsef{word-spacing:7.572448pt;}
.wsb7{word-spacing:7.850336pt;}
.ws148{word-spacing:8.187008pt;}
.wsa7{word-spacing:8.224416pt;}
.ws1a3{word-spacing:8.464896pt;}
.wsa8{word-spacing:8.491616pt;}
.wsa1{word-spacing:8.496960pt;}
.ws1b9{word-spacing:8.502304pt;}
.wsa0{word-spacing:8.512992pt;}
.ws8b{word-spacing:8.806912pt;}
.ws91{word-spacing:8.817600pt;}
.wsb2{word-spacing:8.822944pt;}
.ws90{word-spacing:8.828288pt;}
.ws124{word-spacing:8.838976pt;}
.ws123{word-spacing:8.844320pt;}
.ws98{word-spacing:9.138240pt;}
.wsba{word-spacing:9.154272pt;}
.ws1a0{word-spacing:9.159616pt;}
.ws173{word-spacing:9.164960pt;}
.ws165{word-spacing:9.763488pt;}
.ws56{word-spacing:9.768832pt;}
.ws53{word-spacing:10.068096pt;}
.wsb1{word-spacing:10.078784pt;}
.ws78{word-spacing:10.094816pt;}
.ws117{word-spacing:10.110848pt;}
.ws190{word-spacing:10.116192pt;}
.ws11e{word-spacing:10.372704pt;}
.ws118{word-spacing:10.431488pt;}
.wsf6{word-spacing:10.720064pt;}
.ws139{word-spacing:10.730752pt;}
.wscf{word-spacing:10.752128pt;}
.ws119{word-spacing:10.757472pt;}
.ws168{word-spacing:11.035360pt;}
.ws12d{word-spacing:11.056736pt;}
.wsf7{word-spacing:11.088800pt;}
.ws3{word-spacing:11.200000pt;}
.ws138{word-spacing:11.297216pt;}
.ws11a{word-spacing:11.318592pt;}
.ws45{word-spacing:11.382720pt;}
.ws93{word-spacing:11.660608pt;}
.ws37{word-spacing:11.671296pt;}
.ws46{word-spacing:11.676640pt;}
.wsa9{word-spacing:11.687328pt;}
.ws133{word-spacing:11.703360pt;}
.ws121{word-spacing:12.007968pt;}
.ws3d{word-spacing:12.013312pt;}
.ws12a{word-spacing:12.024000pt;}
.ws180{word-spacing:12.066752pt;}
.wsd2{word-spacing:12.307232pt;}
.ws38{word-spacing:12.312576pt;}
.ws127{word-spacing:12.344640pt;}
.wse4{word-spacing:12.349984pt;}
.ws40{word-spacing:12.355328pt;}
.ws19c{word-spacing:12.360672pt;}
.ws128{word-spacing:12.366016pt;}
.ws41{word-spacing:12.382048pt;}
.ws103{word-spacing:12.638560pt;}
.ws104{word-spacing:12.643904pt;}
.wsa5{word-spacing:12.649248pt;}
.ws19d{word-spacing:12.654592pt;}
.ws15f{word-spacing:12.665280pt;}
.ws51{word-spacing:12.692000pt;}
.ws18c{word-spacing:12.959200pt;}
.wsbb{word-spacing:12.975232pt;}
.ws115{word-spacing:13.301216pt;}
.wsbe{word-spacing:13.573760pt;}
.wsc5{word-spacing:13.616512pt;}
.ws116{word-spacing:13.621856pt;}
.ws43{word-spacing:13.958528pt;}
.ws42{word-spacing:13.974560pt;}
.ws106{word-spacing:14.257792pt;}
.ws147{word-spacing:14.562400pt;}
.ws17c{word-spacing:14.578432pt;}
.ws197{word-spacing:14.583776pt;}
.ws5c{word-spacing:14.610496pt;}
.ws0{word-spacing:14.750245pt;}
.ws10f{word-spacing:14.893728pt;}
.ws198{word-spacing:14.989920pt;}
.ws35{word-spacing:15.219712pt;}
.ws122{word-spacing:15.551040pt;}
.ws166{word-spacing:15.855648pt;}
.ws2{word-spacing:16.213333pt;}
.ws199{word-spacing:16.213696pt;}
.ws19a{word-spacing:16.400736pt;}
.ws12e{word-spacing:16.443488pt;}
.ws195{word-spacing:16.454176pt;}
.ws188{word-spacing:16.486240pt;}
.ws14e{word-spacing:17.143552pt;}
.ws160{word-spacing:17.421440pt;}
.ws9c{word-spacing:17.448160pt;}
.ws14f{word-spacing:17.458848pt;}
.wscc{word-spacing:17.774144pt;}
.ws66{word-spacing:18.062720pt;}
.wsa6{word-spacing:18.078752pt;}
.wsdc{word-spacing:18.089440pt;}
.ws132{word-spacing:18.094784pt;}
.wsfe{word-spacing:18.121504pt;}
.ws9e{word-spacing:18.415424pt;}
.wsf3{word-spacing:18.431456pt;}
.ws5f{word-spacing:18.736064pt;}
.ws18d{word-spacing:18.741408pt;}
.ws6f{word-spacing:19.029984pt;}
.ws1a5{word-spacing:19.046016pt;}
.ws143{word-spacing:19.051360pt;}
.wsf4{word-spacing:19.056704pt;}
.ws70{word-spacing:19.062048pt;}
.ws135{word-spacing:19.265120pt;}
.wsac{word-spacing:19.382688pt;}
.ws19f{word-spacing:19.687296pt;}
.wsf8{word-spacing:19.714016pt;}
.ws1bf{word-spacing:19.933120pt;}
.ws82{word-spacing:20.259104pt;}
.ws1c0{word-spacing:20.301856pt;}
.ws169{word-spacing:20.317888pt;}
.ws5e{word-spacing:20.349952pt;}
.ws1c1{word-spacing:20.456832pt;}
.ws16c{word-spacing:20.638528pt;}
.wsca{word-spacing:20.654560pt;}
.ws16b{word-spacing:20.659904pt;}
.wsf1{word-spacing:20.681280pt;}
.ws4a{word-spacing:20.959168pt;}
.ws49{word-spacing:20.991232pt;}
.ws15{word-spacing:21.017952pt;}
.ws16{word-spacing:21.023296pt;}
.wsb4{word-spacing:21.311872pt;}
.ws10d{word-spacing:21.557696pt;}
.wse1{word-spacing:21.595104pt;}
.ws146{word-spacing:21.616480pt;}
.ws144{word-spacing:21.921088pt;}
.wsc3{word-spacing:22.247072pt;}
.ws12f{word-spacing:22.257760pt;}
.ws1bd{word-spacing:22.530304pt;}
.ws12c{word-spacing:22.562368pt;}
.ws1bc{word-spacing:22.578400pt;}
.ws158{word-spacing:23.176928pt;}
.wse8{word-spacing:23.230368pt;}
.wsd9{word-spacing:23.241056pt;}
.ws187{word-spacing:23.855616pt;}
.ws8a{word-spacing:23.866304pt;}
.wse9{word-spacing:24.480864pt;}
.wsd3{word-spacing:24.512928pt;}
.wsbf{word-spacing:24.769440pt;}
.wsc0{word-spacing:24.796160pt;}
.ws15d{word-spacing:24.806848pt;}
.ws18b{word-spacing:24.817536pt;}
.wsd5{word-spacing:24.822880pt;}
.wsc1{word-spacing:25.058016pt;}
.ws5b{word-spacing:25.132832pt;}
.ws83{word-spacing:25.138176pt;}
.wsc2{word-spacing:25.159552pt;}
.wsfb{word-spacing:25.442784pt;}
.ws17d{word-spacing:26.431424pt;}
.ws17e{word-spacing:26.500896pt;}
.ws1ba{word-spacing:26.703968pt;}
.ws65{word-spacing:26.757408pt;}
.ws1bb{word-spacing:26.917728pt;}
.ws48{word-spacing:27.382656pt;}
.wsee{word-spacing:27.398688pt;}
.ws159{word-spacing:27.671232pt;}
.ws47{word-spacing:27.703296pt;}
.wsf{word-spacing:28.980512pt;}
.ws52{word-spacing:29.199616pt;}
.wscd{word-spacing:29.301152pt;}
.wsfa{word-spacing:29.653856pt;}
.ws149{word-spacing:30.567680pt;}
.ws14a{word-spacing:30.599744pt;}
.wsd4{word-spacing:31.203616pt;}
.ws6c{word-spacing:31.534944pt;}
.wsed{word-spacing:31.866272pt;}
.ws102{word-spacing:32.844224pt;}
.ws101{word-spacing:33.100736pt;}
.wsbd{word-spacing:33.138144pt;}
.wsb9{word-spacing:33.795456pt;}
.ws189{word-spacing:34.388640pt;}
.ws18e{word-spacing:34.420704pt;}
.ws3c{word-spacing:34.442080pt;}
.ws6d{word-spacing:35.045952pt;}
.ws1be{word-spacing:35.900992pt;}
.ws8f{word-spacing:35.991840pt;}
.ws5d{word-spacing:35.997184pt;}
.ws85{word-spacing:37.343872pt;}
.ws86{word-spacing:37.509536pt;}
.ws18a{word-spacing:37.937056pt;}
.ws155{word-spacing:38.572992pt;}
.ws14d{word-spacing:38.589024pt;}
.wsc6{word-spacing:39.176864pt;}
.ws89{word-spacing:39.492160pt;}
.ws88{word-spacing:39.497504pt;}
.ws156{word-spacing:41.779392pt;}
.ws157{word-spacing:42.351200pt;}
.ws15c{word-spacing:43.083328pt;}
.ws15b{word-spacing:46.882912pt;}
.wsd0{word-spacing:52.023840pt;}
.wsf5{word-spacing:52.344480pt;}
.wsdf{word-spacing:53.627040pt;}
.wsfc{word-spacing:58.094624pt;}
.wseb{word-spacing:61.301024pt;}
.wsec{word-spacing:61.456000pt;}
.wsfd{word-spacing:61.578912pt;}
.wscb{word-spacing:63.203488pt;}
.wsea{word-spacing:64.491392pt;}
.wsf9{word-spacing:88.181344pt;}
.ws162{word-spacing:104.779808pt;}
.ws161{word-spacing:126.599360pt;}
.ws21{word-spacing:174.273184pt;}
.ws110{word-spacing:174.289216pt;}
.ws2b{word-spacing:174.299904pt;}
.wsd8{word-spacing:174.337312pt;}
.ws24{word-spacing:174.348000pt;}
.ws20{word-spacing:174.390752pt;}
.ws2a{word-spacing:174.396096pt;}
._8{margin-left:-187.408736pt;}
._e{margin-left:-181.802880pt;}
._d{margin-left:-178.275840pt;}
._9{margin-left:-175.678656pt;}
._7{margin-left:-174.401440pt;}
._1f{margin-left:-53.760640pt;}
._24{margin-left:-12.940640pt;}
._a{margin-left:-8.267168pt;}
._1b{margin-left:-6.717408pt;}
._0{margin-left:-4.451524pt;}
._1{margin-left:-2.496000pt;}
._2{margin-left:-1.408000pt;}
._4{width:0.909611pt;}
._3{width:1.877333pt;}
._5{width:4.750816pt;}
._6{width:5.929579pt;}
._f{width:7.850336pt;}
._b{width:9.127552pt;}
._c{width:11.126208pt;}
._21{width:12.323264pt;}
._26{width:16.074752pt;}
._25{width:17.114016pt;}
._15{width:21.440128pt;}
._18{width:24.555680pt;}
._2c{width:26.506240pt;}
._31{width:28.037109pt;}
._10{width:31.358592pt;}
._16{width:37.440064pt;}
._1d{width:38.401984pt;}
._11{width:41.918336pt;}
._30{width:44.162816pt;}
._1c{width:45.760672pt;}
._20{width:47.358528pt;}
._14{width:48.961728pt;}
._17{width:52.478080pt;}
._13{width:54.401920pt;}
._12{width:55.679136pt;}
._1e{width:56.641056pt;}
._23{width:61.103296pt;}
._22{width:64.587584pt;}
._2d{width:78.401824pt;}
._27{width:100.759072pt;}
._29{width:146.559200pt;}
._28{width:155.200448pt;}
._2a{width:158.401504pt;}
._1a{width:160.640640pt;}
._2e{width:162.238496pt;}
._2f{width:169.281888pt;}
._2b{width:172.162304pt;}
._19{width:175.358016pt;}
.fsc{font-size:5.440000pt;}
.fse{font-size:34.560000pt;}
.fs8{font-size:36.034667pt;}
.fsf{font-size:37.440000pt;}
.fsa{font-size:42.560000pt;}
.fs9{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fs7{font-size:48.046400pt;}
.fs1{font-size:53.333333pt;}
.fsb{font-size:53.440000pt;}
.fs4{font-size:58.666667pt;}
.fs0{font-size:60.155733pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:80.000000pt;}
.fs6{font-size:128.000000pt;}
.fs5{font-size:144.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:49.133733pt;}
.y2b{bottom:49.566667pt;}
.y126{bottom:81.406699pt;}
.y1cf{bottom:83.887507pt;}
.y1b{bottom:84.911600pt;}
.y178{bottom:87.326925pt;}
.y1f4{bottom:88.207533pt;}
.yf8{bottom:88.287395pt;}
.y125{bottom:96.766691pt;}
.y1a{bottom:97.039600pt;}
.y1ce{bottom:99.247499pt;}
.y14c{bottom:101.323045pt;}
.y177{bottom:102.686917pt;}
.y1f3{bottom:103.567525pt;}
.yf7{bottom:103.647387pt;}
.ya2{bottom:105.406195pt;}
.y19d{bottom:105.805675pt;}
.y19{bottom:109.167600pt;}
.y124{bottom:112.126683pt;}
.y1cd{bottom:114.607491pt;}
.y221{bottom:115.406859pt;}
.y14b{bottom:116.683037pt;}
.y176{bottom:117.966749pt;}
.yf6{bottom:118.927219pt;}
.y1f2{bottom:118.927517pt;}
.ya1{bottom:120.766187pt;}
.y19c{bottom:121.165667pt;}
.y18{bottom:121.295600pt;}
.y123{bottom:127.406515pt;}
.y1cc{bottom:129.887323pt;}
.y220{bottom:130.686691pt;}
.y14a{bottom:132.843293pt;}
.y175{bottom:133.326741pt;}
.y17{bottom:133.423600pt;}
.y1f1{bottom:134.207349pt;}
.yf5{bottom:134.287211pt;}
.y2{bottom:135.529147pt;}
.ya0{bottom:136.126179pt;}
.y19b{bottom:137.406083pt;}
.y122{bottom:142.766507pt;}
.y1cb{bottom:145.247315pt;}
.y21f{bottom:146.046683pt;}
.y149{bottom:148.203285pt;}
.y174{bottom:148.686733pt;}
.y1f0{bottom:149.567341pt;}
.yf4{bottom:149.647203pt;}
.y9f{bottom:151.406011pt;}
.y19a{bottom:153.566339pt;}
.y1{bottom:153.575867pt;}
.y121{bottom:158.126499pt;}
.y1ca{bottom:160.527147pt;}
.y21e{bottom:161.406675pt;}
.y148{bottom:163.563277pt;}
.y173{bottom:163.966565pt;}
.y1ef{bottom:164.847173pt;}
.yf3{bottom:164.927035pt;}
.y9e{bottom:167.646427pt;}
.y199{bottom:168.926331pt;}
.y120{bottom:173.406331pt;}
.y1c9{bottom:175.887139pt;}
.y21d{bottom:176.686507pt;}
.y172{bottom:179.326557pt;}
.y147{bottom:179.723533pt;}
.y1ee{bottom:180.207165pt;}
.yf2{bottom:180.287027pt;}
.y9d{bottom:183.006419pt;}
.y198{bottom:184.286323pt;}
.y2a{bottom:185.540933pt;}
.y11f{bottom:188.766323pt;}
.y1c8{bottom:191.247131pt;}
.y21c{bottom:192.046499pt;}
.y171{bottom:194.606389pt;}
.y146{bottom:195.003365pt;}
.y1ed{bottom:195.567157pt;}
.yf1{bottom:195.647019pt;}
.y29{bottom:197.540933pt;}
.y9c{bottom:199.166675pt;}
.y197{bottom:199.485995pt;}
.y11e{bottom:204.126315pt;}
.ye{bottom:204.830133pt;}
.y1c7{bottom:206.607123pt;}
.yf{bottom:206.832133pt;}
.y21b{bottom:207.326331pt;}
.y28{bottom:208.740933pt;}
.y170{bottom:209.886221pt;}
.y145{bottom:210.443517pt;}
.y1ec{bottom:210.686669pt;}
.yf0{bottom:210.926851pt;}
.y9b{bottom:214.526667pt;}
.y196{bottom:214.845987pt;}
.y11d{bottom:219.406147pt;}
.y27{bottom:220.740933pt;}
.y21a{bottom:222.606163pt;}
.y1c6{bottom:222.767379pt;}
.y16f{bottom:225.326373pt;}
.y144{bottom:225.803509pt;}
.yef{bottom:226.286843pt;}
.yc9{bottom:226.683933pt;}
.y1eb{bottom:227.007245pt;}
.y195{bottom:230.205979pt;}
.y26{bottom:232.740933pt;}
.y9a{bottom:233.088723pt;}
.y11c{bottom:235.646563pt;}
.y219{bottom:238.046315pt;}
.y1c5{bottom:238.127371pt;}
.y16e{bottom:240.686365pt;}
.y143{bottom:241.083341pt;}
.yee{bottom:241.646835pt;}
.yc8{bottom:241.963765pt;}
.y1ea{bottom:242.447397pt;}
.y25{bottom:244.740933pt;}
.y16{bottom:245.249200pt;}
.y194{bottom:245.565971pt;}
.y99{bottom:248.528875pt;}
.y11b{bottom:251.006555pt;}
.y218{bottom:253.406307pt;}
.y1c4{bottom:253.487363pt;}
.y16d{bottom:255.966197pt;}
.y142{bottom:256.443333pt;}
.yed{bottom:256.926667pt;}
.yc7{bottom:257.323757pt;}
.y1e9{bottom:257.727229pt;}
.y193{bottom:260.925963pt;}
.y98{bottom:263.888867pt;}
.y15{bottom:264.449200pt;}
.y11a{bottom:266.286387pt;}
.y1c3{bottom:268.767195pt;}
.y217{bottom:269.566563pt;}
.y73{bottom:270.926667pt;}
.y16c{bottom:271.326189pt;}
.yc6{bottom:272.683749pt;}
.y1e8{bottom:273.087221pt;}
.yec{bottom:275.486541pt;}
.y192{bottom:276.285955pt;}
.y97{bottom:279.248859pt;}
.ya{bottom:279.972800pt;}
.y24{bottom:280.751600pt;}
.y119{bottom:281.646379pt;}
.y4f{bottom:282.526851pt;}
.y14{bottom:283.649067pt;}
.y1c2{bottom:284.047027pt;}
.y216{bottom:284.926555pt;}
.y16b{bottom:286.606021pt;}
.yc5{bottom:287.963581pt;}
.y1e7{bottom:288.447213pt;}
.y72{bottom:288.688675pt;}
.y141{bottom:288.924165pt;}
.yeb{bottom:290.846533pt;}
.y191{bottom:292.526371pt;}
.y23{bottom:292.751600pt;}
.y96{bottom:294.528691pt;}
.y9{bottom:297.572800pt;}
.y118{bottom:297.886795pt;}
.y4e{bottom:297.886843pt;}
.y1c1{bottom:299.407019pt;}
.y215{bottom:300.286547pt;}
.y16a{bottom:301.966013pt;}
.yc4{bottom:303.323573pt;}
.y1e6{bottom:303.727045pt;}
.y71{bottom:303.968507pt;}
.y22{bottom:304.751600pt;}
.y140{bottom:305.084421pt;}
.yea{bottom:306.206525pt;}
.y190{bottom:307.806203pt;}
.y95{bottom:309.888683pt;}
.y117{bottom:313.246787pt;}
.y4d{bottom:313.246835pt;}
.y1c0{bottom:314.686851pt;}
.y8{bottom:315.172800pt;}
.y214{bottom:316.526963pt;}
.y21{bottom:316.751600pt;}
.y169{bottom:317.326005pt;}
.yc3{bottom:318.683565pt;}
.y1e5{bottom:319.087037pt;}
.y70{bottom:319.328499pt;}
.y13f{bottom:320.444413pt;}
.ye9{bottom:321.646677pt;}
.y18f{bottom:323.166195pt;}
.y94{bottom:325.248675pt;}
.y116{bottom:328.526619pt;}
.y4c{bottom:328.526667pt;}
.y20{bottom:328.751600pt;}
.y1bf{bottom:330.046843pt;}
.y213{bottom:331.806795pt;}
.y168{bottom:332.605837pt;}
.yc2{bottom:334.043557pt;}
.y1e4{bottom:334.447029pt;}
.y6f{bottom:334.608331pt;}
.y13e{bottom:336.684829pt;}
.ye8{bottom:336.926509pt;}
.y18e{bottom:338.526187pt;}
.y23f{bottom:340.528491pt;}
.y93{bottom:340.528507pt;}
.y1f{bottom:340.751600pt;}
.y4b{bottom:343.808541pt;}
.y115{bottom:343.886611pt;}
.y1be{bottom:345.406835pt;}
.y167{bottom:347.965829pt;}
.y212{bottom:348.047211pt;}
.y1e3{bottom:349.726861pt;}
.y6e{bottom:349.968323pt;}
.yc1{bottom:350.203813pt;}
.y13d{bottom:352.044821pt;}
.ye7{bottom:352.286501pt;}
.y18d{bottom:354.686443pt;}
.y23e{bottom:355.888483pt;}
.y92{bottom:355.888499pt;}
.y4a{bottom:359.088373pt;}
.y114{bottom:359.166443pt;}
.y1bd{bottom:360.686667pt;}
.y166{bottom:363.325821pt;}
.y211{bottom:363.327043pt;}
.y1e2{bottom:365.086853pt;}
.y6d{bottom:365.328315pt;}
.y1e{bottom:365.423600pt;}
.yc0{bottom:365.563805pt;}
.y13c{bottom:367.404813pt;}
.ye6{bottom:367.646493pt;}
.y18c{bottom:370.046435pt;}
.y23d{bottom:371.168315pt;}
.y91{bottom:371.168331pt;}
.y113{bottom:374.526435pt;}
.y49{bottom:374.528525pt;}
.y1bc{bottom:376.446667pt;}
.y1d{bottom:377.423600pt;}
.y165{bottom:378.605653pt;}
.y210{bottom:378.687035pt;}
.y1e1{bottom:380.446845pt;}
.y6c{bottom:380.688307pt;}
.ybf{bottom:380.923797pt;}
.ye5{bottom:382.926325pt;}
.y13b{bottom:383.565069pt;}
.y18b{bottom:385.406427pt;}
.y23c{bottom:386.528307pt;}
.y90{bottom:386.528323pt;}
.y112{bottom:389.886427pt;}
.y48{bottom:389.888517pt;}
.y1bb{bottom:390.926667pt;}
.y164{bottom:393.965645pt;}
.y20f{bottom:394.047027pt;}
.y1e0{bottom:395.726677pt;}
.y6b{bottom:395.968139pt;}
.ybe{bottom:397.084053pt;}
.y13a{bottom:398.925061pt;}
.ye4{bottom:399.166741pt;}
.y18a{bottom:400.766419pt;}
.y23b{bottom:401.888299pt;}
.y8f{bottom:401.888315pt;}
.y111{bottom:405.086099pt;}
.y47{bottom:405.168349pt;}
.y1ba{bottom:405.406667pt;}
.y163{bottom:409.325637pt;}
.y20e{bottom:409.407019pt;}
.y1df{bottom:411.086669pt;}
.y6a{bottom:411.328131pt;}
.ybd{bottom:412.444045pt;}
.y139{bottom:414.204893pt;}
.ye3{bottom:414.526733pt;}
.y189{bottom:416.926675pt;}
.y23a{bottom:417.168131pt;}
.y8e{bottom:417.168147pt;}
.y1b9{bottom:419.806667pt;}
.y110{bottom:420.446091pt;}
.y46{bottom:420.528341pt;}
.y162{bottom:424.605469pt;}
.y20d{bottom:424.686851pt;}
.y1c{bottom:424.996933pt;}
.y1de{bottom:426.366501pt;}
.y69{bottom:426.688123pt;}
.ybc{bottom:428.684461pt;}
.y138{bottom:429.564885pt;}
.ye2{bottom:429.806565pt;}
.y188{bottom:432.285581pt;}
.y239{bottom:432.528123pt;}
.y8d{bottom:432.528139pt;}
.y1b8{bottom:434.286667pt;}
.y10f{bottom:435.886243pt;}
.y45{bottom:435.888333pt;}
.y20c{bottom:440.046843pt;}
.y1dd{bottom:441.726493pt;}
.y68{bottom:441.967955pt;}
.y12{bottom:442.274000pt;}
.ybb{bottom:444.044453pt;}
.y137{bottom:444.924877pt;}
.ye1{bottom:445.166557pt;}
.y187{bottom:447.565413pt;}
.y161{bottom:447.565965pt;}
.y238{bottom:447.888115pt;}
.y8c{bottom:447.888131pt;}
.y1b6{bottom:448.847067pt;}
.y10e{bottom:451.166075pt;}
.y44{bottom:451.168165pt;}
.y20b{bottom:455.406835pt;}
.y1dc{bottom:457.086485pt;}
.y67{bottom:457.327947pt;}
.yd{bottom:459.287333pt;}
.yba{bottom:460.204709pt;}
.ye0{bottom:460.526549pt;}
.y136{bottom:461.165293pt;}
.y1b5{bottom:461.326171pt;}
.y1b7{bottom:462.686667pt;}
.y160{bottom:462.845797pt;}
.y186{bottom:462.925405pt;}
.y237{bottom:463.167947pt;}
.y8b{bottom:463.167963pt;}
.y10d{bottom:466.526067pt;}
.y43{bottom:466.528157pt;}
.y20a{bottom:470.686667pt;}
.y1db{bottom:472.366317pt;}
.y66{bottom:472.687939pt;}
.yb9{bottom:475.564701pt;}
.ydf{bottom:475.806381pt;}
.y135{bottom:477.405709pt;}
.y1b4{bottom:477.406267pt;}
.y15f{bottom:478.205789pt;}
.y185{bottom:478.285397pt;}
.y236{bottom:478.527939pt;}
.y8a{bottom:478.527955pt;}
.y11{bottom:480.674000pt;}
.y10c{bottom:481.886059pt;}
.y42{bottom:481.888149pt;}
.y209{bottom:486.686667pt;}
.y1da{bottom:487.726309pt;}
.y65{bottom:487.967771pt;}
.yde{bottom:491.166373pt;}
.yb8{bottom:491.805117pt;}
.y134{bottom:492.605381pt;}
.y1b3{bottom:492.686099pt;}
.y15e{bottom:493.565781pt;}
.y235{bottom:493.887931pt;}
.y89{bottom:493.887947pt;}
.y184{bottom:494.525813pt;}
.y10b{bottom:497.165891pt;}
.y41{bottom:497.167981pt;}
.yc{bottom:497.687333pt;}
.y1d9{bottom:503.086301pt;}
.y64{bottom:503.327763pt;}
.y208{bottom:504.366027pt;}
.yb7{bottom:507.165109pt;}
.ydd{bottom:507.406789pt;}
.y133{bottom:508.045533pt;}
.y1b2{bottom:508.046091pt;}
.y15d{bottom:508.925773pt;}
.y234{bottom:509.167763pt;}
.y88{bottom:509.167779pt;}
.y183{bottom:509.885805pt;}
.y40{bottom:512.447813pt;}
.y10a{bottom:512.525883pt;}
.y63{bottom:518.687755pt;}
.y207{bottom:519.726019pt;}
.ydc{bottom:522.766781pt;}
.yb6{bottom:523.245205pt;}
.y1b1{bottom:523.406083pt;}
.y15c{bottom:524.285765pt;}
.y233{bottom:524.527755pt;}
.y87{bottom:524.527771pt;}
.y1d8{bottom:525.966637pt;}
.y182{bottom:526.046061pt;}
.y3f{bottom:527.807805pt;}
.y109{bottom:527.885875pt;}
.y62{bottom:533.967587pt;}
.y206{bottom:535.005851pt;}
.ydb{bottom:538.046613pt;}
.y132{bottom:538.605197pt;}
.yb5{bottom:538.685357pt;}
.y1b0{bottom:539.566339pt;}
.y15b{bottom:539.645757pt;}
.y232{bottom:539.887747pt;}
.y86{bottom:539.887763pt;}
.y1d7{bottom:541.326629pt;}
.y181{bottom:541.406053pt;}
.y108{bottom:543.165707pt;}
.y3e{bottom:543.167797pt;}
.y61{bottom:549.327579pt;}
.y205{bottom:550.446003pt;}
.yda{bottom:553.406605pt;}
.yb4{bottom:554.045349pt;}
.y1af{bottom:554.926331pt;}
.y15a{bottom:555.005749pt;}
.y231{bottom:555.167579pt;}
.y85{bottom:555.167595pt;}
.y1d6{bottom:556.686621pt;}
.y180{bottom:557.646469pt;}
.y107{bottom:558.525699pt;}
.y3d{bottom:558.527789pt;}
.y60{bottom:564.687571pt;}
.y204{bottom:565.805995pt;}
.yd9{bottom:568.686437pt;}
.y131{bottom:569.325181pt;}
.yb3{bottom:569.405341pt;}
.y1ae{bottom:570.286323pt;}
.y250{bottom:570.526675pt;}
.y230{bottom:570.527571pt;}
.y84{bottom:570.527587pt;}
.y159{bottom:571.166005pt;}
.y1d5{bottom:572.046613pt;}
.y17f{bottom:573.006461pt;}
.y106{bottom:573.885691pt;}
.y3c{bottom:573.887781pt;}
.y5f{bottom:579.967403pt;}
.y203{bottom:582.046411pt;}
.yd8{bottom:584.046429pt;}
.y130{bottom:584.685173pt;}
.yb2{bottom:585.565597pt;}
.y1ad{bottom:585.566155pt;}
.y24f{bottom:585.886851pt;}
.y22f{bottom:585.887563pt;}
.y83{bottom:585.887579pt;}
.y158{bottom:586.525997pt;}
.y1d4{bottom:587.406605pt;}
.y17e{bottom:589.166717pt;}
.y3b{bottom:589.167613pt;}
.y5e{bottom:595.327395pt;}
.y105{bottom:596.766027pt;}
.y202{bottom:598.204715pt;}
.yd7{bottom:599.406421pt;}
.y12f{bottom:600.045165pt;}
.yb1{bottom:600.925589pt;}
.y1ac{bottom:600.926147pt;}
.y24e{bottom:601.166683pt;}
.y22e{bottom:601.167395pt;}
.y82{bottom:601.167411pt;}
.y157{bottom:601.885989pt;}
.y1d3{bottom:602.686437pt;}
.y17d{bottom:604.526709pt;}
.y3a{bottom:604.527605pt;}
.y5d{bottom:610.687387pt;}
.y201{bottom:613.564707pt;}
.yd6{bottom:614.686253pt;}
.yb0{bottom:616.285581pt;}
.y24d{bottom:616.526675pt;}
.y22d{bottom:616.527387pt;}
.y81{bottom:616.527403pt;}
.y1ab{bottom:617.166563pt;}
.y156{bottom:617.885925pt;}
.y1d2{bottom:618.046429pt;}
.y104{bottom:619.806683pt;}
.y17c{bottom:619.886701pt;}
.y39{bottom:619.887597pt;}
.y5c{bottom:625.967219pt;}
.y200{bottom:629.805123pt;}
.yd5{bottom:630.046245pt;}
.yaf{bottom:631.645573pt;}
.y24c{bottom:631.886667pt;}
.y22c{bottom:631.887379pt;}
.y80{bottom:631.887395pt;}
.y12e{bottom:632.525997pt;}
.y1aa{bottom:632.526555pt;}
.y1d1{bottom:633.406421pt;}
.y155{bottom:634.206501pt;}
.y103{bottom:635.166675pt;}
.y17b{bottom:635.167269pt;}
.y38{bottom:635.167429pt;}
.y13{bottom:638.705733pt;}
.yb{bottom:638.750533pt;}
.y5b{bottom:641.327211pt;}
.y1ff{bottom:645.165115pt;}
.yd4{bottom:645.406237pt;}
.y24b{bottom:647.166851pt;}
.y22b{bottom:647.167211pt;}
.y7f{bottom:647.167227pt;}
.yae{bottom:647.805829pt;}
.y1a9{bottom:647.806387pt;}
.y1d0{bottom:648.686253pt;}
.y154{bottom:649.566493pt;}
.y102{bottom:650.526667pt;}
.y17a{bottom:650.527261pt;}
.y37{bottom:650.527421pt;}
.y5a{bottom:656.687203pt;}
.y243{bottom:660.686069pt;}
.y1fe{bottom:661.245211pt;}
.yd3{bottom:661.646653pt;}
.y24a{bottom:662.526843pt;}
.y22a{bottom:662.527203pt;}
.y7e{bottom:662.527219pt;}
.yad{bottom:663.165821pt;}
.y1a8{bottom:663.166379pt;}
.y12d{bottom:664.046245pt;}
.y153{bottom:664.846325pt;}
.y101{bottom:665.807093pt;}
.y36{bottom:665.807253pt;}
.y59{bottom:671.967035pt;}
.y242{bottom:676.046061pt;}
.y1fd{bottom:676.605203pt;}
.yd2{bottom:676.926485pt;}
.y249{bottom:677.806675pt;}
.y229{bottom:677.807035pt;}
.y7d{bottom:677.807051pt;}
.y1a7{bottom:678.446211pt;}
.yac{bottom:678.525813pt;}
.y12c{bottom:679.406237pt;}
.y152{bottom:680.206317pt;}
.y179{bottom:681.086925pt;}
.y100{bottom:681.167085pt;}
.y35{bottom:681.167245pt;}
.y58{bottom:687.327027pt;}
.y241{bottom:691.406053pt;}
.y1fc{bottom:692.045355pt;}
.yd1{bottom:692.286477pt;}
.y248{bottom:693.166843pt;}
.y228{bottom:693.167027pt;}
.y7c{bottom:693.167043pt;}
.y1a6{bottom:693.806203pt;}
.yab{bottom:694.686069pt;}
.y12b{bottom:694.766229pt;}
.y151{bottom:695.646469pt;}
.yff{bottom:696.527077pt;}
.y34{bottom:696.527237pt;}
.y57{bottom:702.606859pt;}
.y5{bottom:706.082933pt;}
.y1fb{bottom:707.325187pt;}
.yd0{bottom:707.646469pt;}
.y247{bottom:708.526835pt;}
.y227{bottom:708.527019pt;}
.y7b{bottom:708.527035pt;}
.y1a5{bottom:709.966459pt;}
.yaa{bottom:710.046061pt;}
.y150{bottom:710.926301pt;}
.y12a{bottom:710.926485pt;}
.y33{bottom:711.726909pt;}
.yfe{bottom:711.806909pt;}
.y56{bottom:717.886691pt;}
.y4{bottom:721.416267pt;}
.y1fa{bottom:722.685179pt;}
.ycf{bottom:722.926301pt;}
.y246{bottom:723.806683pt;}
.y226{bottom:723.806851pt;}
.y7a{bottom:723.806867pt;}
.y1a4{bottom:725.326451pt;}
.ya9{bottom:725.406053pt;}
.y14f{bottom:726.286293pt;}
.y129{bottom:726.286477pt;}
.y32{bottom:727.086901pt;}
.yfd{bottom:727.166901pt;}
.y55{bottom:733.326843pt;}
.y3{bottom:736.749600pt;}
.yce{bottom:738.286293pt;}
.y1f9{bottom:738.925595pt;}
.y245{bottom:739.166675pt;}
.y225{bottom:739.166843pt;}
.y79{bottom:739.166859pt;}
.y1a3{bottom:740.686443pt;}
.ya8{bottom:740.766045pt;}
.y14e{bottom:741.646285pt;}
.yfc{bottom:742.526893pt;}
.y31{bottom:742.527053pt;}
.y54{bottom:748.526515pt;}
.ycd{bottom:753.646285pt;}
.y1f8{bottom:754.285587pt;}
.y224{bottom:754.526835pt;}
.y78{bottom:754.526851pt;}
.y1a2{bottom:756.046435pt;}
.y14d{bottom:756.926117pt;}
.ya7{bottom:756.926301pt;}
.yfb{bottom:757.806725pt;}
.y30{bottom:757.806885pt;}
.y53{bottom:763.966667pt;}
.y240{bottom:768.926117pt;}
.ycc{bottom:769.806541pt;}
.y223{bottom:769.806667pt;}
.y77{bottom:769.806683pt;}
.y1f7{bottom:770.445843pt;}
.y1a1{bottom:771.406427pt;}
.ya6{bottom:772.286293pt;}
.y128{bottom:773.086557pt;}
.yfa{bottom:773.166717pt;}
.y2f{bottom:773.166877pt;}
.y52{bottom:779.966667pt;}
.ycb{bottom:785.166533pt;}
.y76{bottom:785.166675pt;}
.y1f6{bottom:785.805835pt;}
.y1a0{bottom:786.686259pt;}
.ya5{bottom:787.646285pt;}
.y222{bottom:788.366549pt;}
.y127{bottom:788.446549pt;}
.yf9{bottom:788.526709pt;}
.y2e{bottom:788.526869pt;}
.y51{bottom:798.366667pt;}
.y75{bottom:800.526667pt;}
.y1f5{bottom:802.046251pt;}
.y19f{bottom:802.926675pt;}
.yca{bottom:803.646221pt;}
.y244{bottom:803.646381pt;}
.y2d{bottom:803.726541pt;}
.ya4{bottom:803.806541pt;}
.y7{bottom:810.463600pt;}
.y251{bottom:816.686667pt;}
.y50{bottom:816.766667pt;}
.y19e{bottom:818.286667pt;}
.y74{bottom:819.006533pt;}
.y2c{bottom:819.086533pt;}
.ya3{bottom:819.166533pt;}
.y10{bottom:845.086533pt;}
.ha{height:22.413563pt;}
.he{height:32.000000pt;}
.h9{height:33.776619pt;}
.hd{height:37.437500pt;}
.hf{height:38.424531pt;}
.h3{height:38.828125pt;}
.h19{height:38.905781pt;}
.h14{height:40.080000pt;}
.h18{height:43.031250pt;}
.h17{height:43.335938pt;}
.h11{height:47.908125pt;}
.h1b{height:47.908626pt;}
.h15{height:47.912466pt;}
.h1a{height:47.915933pt;}
.h13{height:48.246608pt;}
.h10{height:48.247344pt;}
.h16{height:48.777921pt;}
.h6{height:51.476562pt;}
.h12{height:56.154543pt;}
.h4{height:56.156250pt;}
.h1c{height:57.375000pt;}
.h2{height:57.990127pt;}
.h5{height:70.195312pt;}
.h8{height:96.000000pt;}
.h7{height:101.664000pt;}
.hb{height:906.666667pt;}
.hc{height:907.086667pt;}
.h0{height:907.087333pt;}
.h1{height:907.333333pt;}
.w2{width:642.520000pt;}
.w0{width:642.521333pt;}
.w3{width:642.526000pt;}
.w1{width:642.666667pt;}
.x2{left:-497.952133pt;}
.xb{left:-119.654533pt;}
.xc{left:-40.574267pt;}
.x0{left:0.000000pt;}
.x3{left:49.523333pt;}
.xd{left:94.560000pt;}
.x4{left:100.806000pt;}
.x11{left:107.850933pt;}
.x26{left:118.559904pt;}
.xe{left:137.002000pt;}
.x5{left:138.435200pt;}
.x24{left:141.760880pt;}
.x2c{left:149.680000pt;}
.x2f{left:163.464533pt;}
.x27{left:166.558232pt;}
.x9{left:169.253600pt;}
.x28{left:170.158752pt;}
.x18{left:186.566133pt;}
.x25{left:188.961760pt;}
.x16{left:200.998133pt;}
.x15{left:202.811467pt;}
.x12{left:203.955467pt;}
.x14{left:206.032800pt;}
.x23{left:212.640000pt;}
.x17{left:214.384800pt;}
.x1e{left:222.288800pt;}
.x21{left:229.318133pt;}
.x13{left:238.899467pt;}
.xf{left:241.738000pt;}
.x6{left:244.286000pt;}
.x1d{left:254.662133pt;}
.x20{left:258.363467pt;}
.x1c{left:259.675467pt;}
.x22{left:263.067467pt;}
.x1{left:268.220400pt;}
.xa{left:273.989600pt;}
.x7{left:276.318000pt;}
.x1a{left:301.040800pt;}
.x1f{left:302.182133pt;}
.x19{left:304.411467pt;}
.x1b{left:309.990133pt;}
.x2d{left:348.958744pt;}
.x29{left:352.320400pt;}
.x10{left:412.106400pt;}
.x2a{left:422.240800pt;}
.x8{left:445.984800pt;}
.x2b{left:470.400400pt;}
.x38{left:541.762133pt;}
.x39{left:620.842400pt;}
.x30{left:710.940000pt;}
.x31{left:762.222667pt;}
.x32{left:799.851867pt;}
.x36{left:830.670267pt;}
.x33{left:905.702667pt;}
.x2e{left:929.637067pt;}
.x37{left:935.406267pt;}
.x34{left:937.734667pt;}
.x35{left:1107.401467pt;}
}




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