
    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_8b96b2099135302091adb75c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_75cf519a83375df8d23ede8d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_15f77bb899e46a9cf7f96930.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.678711;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_8bf2d2521d182dfd7ca70a7a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946289;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_a114c07e7f36d6953c927087.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958496;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_c5d812c78be4cc6803003ca3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.678711;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_18c820e914ce72b2bca927fa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.934082;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_5a1e0f90e38b43e6643ac454.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.973000;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_242325a2f99e2944b6871c6f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_089c8e1c5f148e36ba5d9e6f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_345eff0d6c650a2451a025d0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.946289;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_efc3dce0d68fec589286cb4f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.958496;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_75cf519a83375df8d23ede8d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.958496;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_15f77bb899e46a9cf7f96930.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.678711;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_fe52613e479517d3673e5126.woff2')format("woff");}.fff{font-family:fff;line-height:0.946289;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_efc3dce0d68fec589286cb4f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.958496;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_75cf519a83375df8d23ede8d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.958496;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_15f77bb899e46a9cf7f96930.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.678711;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_fe52613e479517d3673e5126.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.946289;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_33cd39fa8bd336279d3b7458.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.958000;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_f7b65ae364d16d935108660b.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.947000;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_9d1cfac962f10b38f85b6e99.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.411000;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_30b26279afdd81ed5b8ff429.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.910877;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_75cf519a83375df8d23ede8d.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.958496;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_15f77bb899e46a9cf7f96930.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.678711;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_fe52613e479517d3673e5126.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.946289;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_75cf519a83375df8d23ede8d.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_15f77bb899e46a9cf7f96930.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.678711;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_fe52613e479517d3673e5126.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.946289;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_38768c3040ebd434c912cb79.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_c543f778fcb8f492c5ae94bf.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-18.360000px;}
.v4{vertical-align:-17.340000px;}
.v5{vertical-align:-10.812000px;}
.v8{vertical-align:-8.400000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:3.481920px;}
.v6{vertical-align:14.316000px;}
.v2{vertical-align:18.204000px;}
.v1{vertical-align:20.400000px;}
.v7{vertical-align:22.512000px;}
.lsba{letter-spacing:-6.255000px;}
.ls36{letter-spacing:-4.482000px;}
.ls68{letter-spacing:-2.268000px;}
.lsbe{letter-spacing:-1.755000px;}
.lsbd{letter-spacing:-1.530000px;}
.lsc0{letter-spacing:-1.350000px;}
.lsbb{letter-spacing:-1.305000px;}
.ls4a{letter-spacing:-1.260000px;}
.lsa1{letter-spacing:-1.125000px;}
.lsbf{letter-spacing:-1.035000px;}
.ls18{letter-spacing:-1.026000px;}
.ls61{letter-spacing:-0.918000px;}
.ls60{letter-spacing:-0.810000px;}
.ls80{letter-spacing:-0.803520px;}
.ls2e{letter-spacing:-0.756000px;}
.ls8c{letter-spacing:-0.749952px;}
.lsa2{letter-spacing:-0.720000px;}
.ls62{letter-spacing:-0.702000px;}
.ls67{letter-spacing:-0.672000px;}
.ls5f{letter-spacing:-0.648000px;}
.ls47{letter-spacing:-0.594000px;}
.lsa9{letter-spacing:-0.585000px;}
.ls4e{letter-spacing:-0.546000px;}
.ls1c{letter-spacing:-0.540000px;}
.ls81{letter-spacing:-0.535680px;}
.lsbc{letter-spacing:-0.495000px;}
.ls2d{letter-spacing:-0.486000px;}
.lsab{letter-spacing:-0.450000px;}
.ls30{letter-spacing:-0.432000px;}
.ls4c{letter-spacing:-0.420000px;}
.ls2b{letter-spacing:-0.378000px;}
.lsae{letter-spacing:-0.360000px;}
.ls34{letter-spacing:-0.324000px;}
.ls8b{letter-spacing:-0.321408px;}
.lsa8{letter-spacing:-0.315000px;}
.ls8e{letter-spacing:-0.300000px;}
.ls4b{letter-spacing:-0.294000px;}
.ls2c{letter-spacing:-0.270000px;}
.ls8d{letter-spacing:-0.267840px;}
.lsa4{letter-spacing:-0.225000px;}
.ls16{letter-spacing:-0.216000px;}
.ls8a{letter-spacing:-0.214272px;}
.ls3b{letter-spacing:-0.210000px;}
.ls5a{letter-spacing:-0.180000px;}
.ls33{letter-spacing:-0.175500px;}
.ls4d{letter-spacing:-0.168000px;}
.ls19{letter-spacing:-0.162000px;}
.ls26{letter-spacing:-0.140400px;}
.lsa7{letter-spacing:-0.135000px;}
.ls32{letter-spacing:-0.120000px;}
.ls1b{letter-spacing:-0.108000px;}
.ls6e{letter-spacing:-0.105300px;}
.ls1e{letter-spacing:-0.102000px;}
.lsaa{letter-spacing:-0.090000px;}
.ls6f{letter-spacing:-0.070200px;}
.ls15{letter-spacing:-0.054000px;}
.lsaf{letter-spacing:-0.045000px;}
.ls1d{letter-spacing:-0.035100px;}
.ls12{letter-spacing:0.000000px;}
.ls73{letter-spacing:0.000300px;}
.lsb6{letter-spacing:0.009000px;}
.ls2{letter-spacing:0.013200px;}
.ls40{letter-spacing:0.019200px;}
.ls59{letter-spacing:0.027000px;}
.ls5e{letter-spacing:0.035100px;}
.lsb2{letter-spacing:0.045000px;}
.ls51{letter-spacing:0.048600px;}
.lsb4{letter-spacing:0.049500px;}
.ls87{letter-spacing:0.053568px;}
.ls20{letter-spacing:0.054000px;}
.ls95{letter-spacing:0.060000px;}
.lsf{letter-spacing:0.070050px;}
.ls1a{letter-spacing:0.070200px;}
.ls9b{letter-spacing:0.090000px;}
.ls3{letter-spacing:0.092400px;}
.lse{letter-spacing:0.102000px;}
.ls2a{letter-spacing:0.105300px;}
.ls8{letter-spacing:0.108000px;}
.lsb9{letter-spacing:0.112500px;}
.lsd{letter-spacing:0.118050px;}
.lsa{letter-spacing:0.118800px;}
.ls66{letter-spacing:0.126000px;}
.lsa5{letter-spacing:0.135000px;}
.lsb{letter-spacing:0.136050px;}
.ls2f{letter-spacing:0.140400px;}
.ls7c{letter-spacing:0.156000px;}
.ls4{letter-spacing:0.162000px;}
.ls5{letter-spacing:0.162600px;}
.ls29{letter-spacing:0.175500px;}
.ls5c{letter-spacing:0.176400px;}
.ls9d{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.204000px;}
.ls46{letter-spacing:0.210600px;}
.ls72{letter-spacing:0.214272px;}
.ls9{letter-spacing:0.216000px;}
.ls91{letter-spacing:0.222000px;}
.ls98{letter-spacing:0.225000px;}
.ls9f{letter-spacing:0.240000px;}
.ls3a{letter-spacing:0.245700px;}
.ls92{letter-spacing:0.259200px;}
.lsb7{letter-spacing:0.261000px;}
.ls69{letter-spacing:0.264600px;}
.ls13{letter-spacing:0.270000px;}
.ls54{letter-spacing:0.280800px;}
.ls50{letter-spacing:0.297000px;}
.ls5b{letter-spacing:0.300000px;}
.lsb1{letter-spacing:0.315000px;}
.ls35{letter-spacing:0.315900px;}
.ls84{letter-spacing:0.321408px;}
.ls25{letter-spacing:0.324000px;}
.ls6b{letter-spacing:0.345600px;}
.ls52{letter-spacing:0.346200px;}
.ls53{letter-spacing:0.351000px;}
.ls3c{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.378000px;}
.ls6d{letter-spacing:0.386100px;}
.lsa6{letter-spacing:0.405000px;}
.ls4f{letter-spacing:0.420000px;}
.ls49{letter-spacing:0.421200px;}
.ls94{letter-spacing:0.421800px;}
.ls75{letter-spacing:0.426600px;}
.ls9a{letter-spacing:0.427500px;}
.ls83{letter-spacing:0.428544px;}
.ls22{letter-spacing:0.432000px;}
.lsa3{letter-spacing:0.450000px;}
.ls24{letter-spacing:0.456300px;}
.ls77{letter-spacing:0.464400px;}
.ls5d{letter-spacing:0.465600px;}
.ls39{letter-spacing:0.480000px;}
.ls85{letter-spacing:0.482112px;}
.ls74{letter-spacing:0.484800px;}
.ls17{letter-spacing:0.486000px;}
.ls63{letter-spacing:0.491400px;}
.ls99{letter-spacing:0.495000px;}
.ls45{letter-spacing:0.526500px;}
.ls14{letter-spacing:0.540000px;}
.ls57{letter-spacing:0.561600px;}
.ls97{letter-spacing:0.585000px;}
.ls71{letter-spacing:0.589248px;}
.ls3f{letter-spacing:0.594000px;}
.ls7e{letter-spacing:0.597600px;}
.ls7d{letter-spacing:0.598200px;}
.ls6c{letter-spacing:0.599400px;}
.ls76{letter-spacing:0.600000px;}
.lsb3{letter-spacing:0.630000px;}
.ls7b{letter-spacing:0.631800px;}
.ls86{letter-spacing:0.642816px;}
.ls6{letter-spacing:0.648000px;}
.ls93{letter-spacing:0.660000px;}
.lsb0{letter-spacing:0.675000px;}
.ls7a{letter-spacing:0.692400px;}
.ls7{letter-spacing:0.702000px;}
.ls82{letter-spacing:0.749952px;}
.ls27{letter-spacing:0.756000px;}
.ls37{letter-spacing:0.761400px;}
.lsad{letter-spacing:0.765000px;}
.ls23{letter-spacing:0.780000px;}
.ls28{letter-spacing:0.810000px;}
.ls10{letter-spacing:0.816000px;}
.ls78{letter-spacing:0.826200px;}
.lsb8{letter-spacing:0.832500px;}
.ls96{letter-spacing:0.840000px;}
.ls88{letter-spacing:0.857088px;}
.ls31{letter-spacing:0.864000px;}
.ls55{letter-spacing:0.900000px;}
.ls56{letter-spacing:0.918000px;}
.lsac{letter-spacing:0.945000px;}
.ls11{letter-spacing:0.960000px;}
.ls44{letter-spacing:0.972000px;}
.ls58{letter-spacing:1.020000px;}
.ls7f{letter-spacing:1.026000px;}
.ls6a{letter-spacing:1.080000px;}
.lsa0{letter-spacing:1.125000px;}
.ls3d{letter-spacing:1.128600px;}
.ls3e{letter-spacing:1.144800px;}
.ls48{letter-spacing:1.458000px;}
.lsb5{letter-spacing:1.566000px;}
.ls9c{letter-spacing:1.755000px;}
.ls79{letter-spacing:1.998000px;}
.ls8f{letter-spacing:2.040000px;}
.ls0{letter-spacing:2.592000px;}
.ls1f{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls90{letter-spacing:4.536000px;}
.ls9e{letter-spacing:4.620000px;}
.ls65{letter-spacing:6.120000px;}
.ls38{letter-spacing:14.742000px;}
.ls89{letter-spacing:41.729472px;}
.ls64{letter-spacing:116.332200px;}
.ls42{letter-spacing:142.888500px;}
.ls41{letter-spacing:292.238100px;}
.ls70{letter-spacing:362.655360px;}
.ls43{letter-spacing:1116.545100px;}
.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;}
}
.ws84{word-spacing:-61.020000px;}
.wsc5{word-spacing:-53.889408px;}
.ws2{word-spacing:-15.067500px;}
.ws2b{word-spacing:-13.596000px;}
.ws63{word-spacing:-13.338000px;}
.ws80{word-spacing:-13.230000px;}
.ws5d{word-spacing:-13.176000px;}
.wsb3{word-spacing:-13.068000px;}
.wsc4{word-spacing:-13.017024px;}
.ws85{word-spacing:-13.014000px;}
.wsbc{word-spacing:-12.909888px;}
.wsd5{word-spacing:-12.906000px;}
.wsca{word-spacing:-12.900000px;}
.wsb1{word-spacing:-12.852000px;}
.wsc2{word-spacing:-12.802752px;}
.ws62{word-spacing:-12.798000px;}
.wsb9{word-spacing:-12.749184px;}
.ws4e{word-spacing:-12.690000px;}
.wsc0{word-spacing:-12.642048px;}
.ws5c{word-spacing:-12.636000px;}
.wsbd{word-spacing:-12.588480px;}
.wsb2{word-spacing:-12.582000px;}
.ws7a{word-spacing:-12.474000px;}
.ws82{word-spacing:-12.420000px;}
.ws86{word-spacing:-12.393000px;}
.ws83{word-spacing:-12.366000px;}
.ws3{word-spacing:-12.360000px;}
.ws81{word-spacing:-12.312000px;}
.ws1a{word-spacing:-12.258000px;}
.wsc3{word-spacing:-12.213504px;}
.ws27{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.192000px;}
.ws56{word-spacing:-12.150000px;}
.ws8e{word-spacing:-12.096000px;}
.ws60{word-spacing:-12.042000px;}
.ws29{word-spacing:-11.988000px;}
.wsc6{word-spacing:-11.945664px;}
.ws4f{word-spacing:-11.934000px;}
.wsc8{word-spacing:-11.892096px;}
.wsc7{word-spacing:-11.838528px;}
.ws5f{word-spacing:-11.826000px;}
.ws2c{word-spacing:-11.772000px;}
.wsb6{word-spacing:-11.718000px;}
.ws87{word-spacing:-11.664000px;}
.wsbb{word-spacing:-11.624256px;}
.ws28{word-spacing:-11.610000px;}
.ws93{word-spacing:-11.556000px;}
.ws8f{word-spacing:-11.448000px;}
.wsbe{word-spacing:-11.356416px;}
.wsd4{word-spacing:-11.340000px;}
.wsff{word-spacing:-10.890000px;}
.wsdb{word-spacing:-10.800000px;}
.wsfd{word-spacing:-10.395000px;}
.ws101{word-spacing:-10.350000px;}
.wsfc{word-spacing:-10.260000px;}
.wsfa{word-spacing:-10.215000px;}
.ws8{word-spacing:-10.200000px;}
.wsf9{word-spacing:-10.170000px;}
.ws102{word-spacing:-10.125000px;}
.wsd9{word-spacing:-9.990000px;}
.ws100{word-spacing:-9.900000px;}
.ws119{word-spacing:-9.855000px;}
.wsd8{word-spacing:-9.720000px;}
.wsda{word-spacing:-9.630000px;}
.ws67{word-spacing:-9.618000px;}
.wsd7{word-spacing:-9.585000px;}
.ws5a{word-spacing:-9.534000px;}
.wsfe{word-spacing:-9.495000px;}
.ws69{word-spacing:-9.450000px;}
.ws103{word-spacing:-9.270000px;}
.ws97{word-spacing:-9.240000px;}
.ws68{word-spacing:-9.198000px;}
.ws52{word-spacing:-9.114000px;}
.wsfb{word-spacing:-9.000000px;}
.ws66{word-spacing:-8.904000px;}
.ws99{word-spacing:-8.568000px;}
.ws7f{word-spacing:-8.529300px;}
.ws5b{word-spacing:-8.494200px;}
.ws95{word-spacing:-8.459100px;}
.ws2f{word-spacing:-8.424000px;}
.ws61{word-spacing:-8.388900px;}
.wsb5{word-spacing:-8.353800px;}
.ws7b{word-spacing:-8.318700px;}
.ws2e{word-spacing:-8.283600px;}
.ws79{word-spacing:-8.248500px;}
.ws50{word-spacing:-8.213400px;}
.ws5e{word-spacing:-8.178300px;}
.ws24{word-spacing:-8.143200px;}
.ws2a{word-spacing:-8.108100px;}
.ws25{word-spacing:-8.073000px;}
.ws5{word-spacing:-8.037900px;}
.ws8d{word-spacing:-8.002800px;}
.ws4{word-spacing:-7.967700px;}
.ws6{word-spacing:-7.932600px;}
.wsb4{word-spacing:-7.897500px;}
.wsb0{word-spacing:-7.862400px;}
.ws23{word-spacing:-7.827300px;}
.ws2d{word-spacing:-7.792200px;}
.ws118{word-spacing:-6.815250px;}
.wsd6{word-spacing:-6.639750px;}
.ws7{word-spacing:-6.630000px;}
.ws9e{word-spacing:-6.251700px;}
.wsaa{word-spacing:-6.120000px;}
.ws98{word-spacing:-5.924100px;}
.ws7d{word-spacing:-5.508000px;}
.wsdc{word-spacing:-4.620000px;}
.ws75{word-spacing:-4.260000px;}
.ws1d{word-spacing:-3.519000px;}
.ws22{word-spacing:-2.760000px;}
.ws1{word-spacing:-2.640000px;}
.ws20{word-spacing:-2.499000px;}
.wsb7{word-spacing:-2.052000px;}
.wsd1{word-spacing:-2.040000px;}
.wsce{word-spacing:-1.998000px;}
.wsab{word-spacing:-1.944000px;}
.wsd0{word-spacing:-1.920000px;}
.ws18{word-spacing:-1.890000px;}
.ws40{word-spacing:-1.860000px;}
.ws13{word-spacing:-1.836000px;}
.ws41{word-spacing:-1.782000px;}
.ws4c{word-spacing:-1.728000px;}
.ws14{word-spacing:-1.620000px;}
.wsed{word-spacing:-1.575000px;}
.ws4b{word-spacing:-1.566000px;}
.ws1e{word-spacing:-1.530000px;}
.ws3a{word-spacing:-1.512000px;}
.ws113{word-spacing:-1.485000px;}
.ws36{word-spacing:-1.458000px;}
.ws1b{word-spacing:-1.404000px;}
.ws110{word-spacing:-1.395000px;}
.ws39{word-spacing:-1.350000px;}
.ws10e{word-spacing:-1.305000px;}
.ws42{word-spacing:-1.296000px;}
.wsa{word-spacing:-1.260000px;}
.ws10{word-spacing:-1.242000px;}
.wsf4{word-spacing:-1.215000px;}
.wsd{word-spacing:-1.188000px;}
.ws108{word-spacing:-1.170000px;}
.wsb{word-spacing:-1.134000px;}
.ws117{word-spacing:-1.125000px;}
.ws91{word-spacing:-1.080000px;}
.wse4{word-spacing:-1.035000px;}
.ws96{word-spacing:-1.026000px;}
.ws8c{word-spacing:-1.020000px;}
.ws10f{word-spacing:-0.990000px;}
.ws3e{word-spacing:-0.972000px;}
.ws59{word-spacing:-0.966000px;}
.ws6c{word-spacing:-0.960000px;}
.wsf6{word-spacing:-0.945000px;}
.ws58{word-spacing:-0.924000px;}
.ws57{word-spacing:-0.918000px;}
.ws88{word-spacing:-0.900000px;}
.ws17{word-spacing:-0.864000px;}
.wsea{word-spacing:-0.855000px;}
.wse1{word-spacing:-0.840000px;}
.wsf8{word-spacing:-0.810000px;}
.wsaf{word-spacing:-0.798000px;}
.ws45{word-spacing:-0.780000px;}
.wsf3{word-spacing:-0.765000px;}
.ws32{word-spacing:-0.756000px;}
.wsf7{word-spacing:-0.720000px;}
.wsac{word-spacing:-0.714000px;}
.ws94{word-spacing:-0.702000px;}
.ws76{word-spacing:-0.672000px;}
.wsdd{word-spacing:-0.660000px;}
.wsc{word-spacing:-0.648000px;}
.wscd{word-spacing:-0.600000px;}
.wse{word-spacing:-0.594000px;}
.wsee{word-spacing:-0.585000px;}
.wsad{word-spacing:-0.546000px;}
.ws34{word-spacing:-0.540000px;}
.ws1f{word-spacing:-0.510000px;}
.wse8{word-spacing:-0.495000px;}
.ws48{word-spacing:-0.486000px;}
.ws54{word-spacing:-0.480000px;}
.ws1c{word-spacing:-0.459000px;}
.wsef{word-spacing:-0.450000px;}
.ws38{word-spacing:-0.432000px;}
.ws78{word-spacing:-0.420000px;}
.wse5{word-spacing:-0.405000px;}
.ws19{word-spacing:-0.378000px;}
.ws6b{word-spacing:-0.360000px;}
.ws4d{word-spacing:-0.324000px;}
.wsf5{word-spacing:-0.315000px;}
.ws90{word-spacing:-0.300000px;}
.ws43{word-spacing:-0.270000px;}
.wse0{word-spacing:-0.240000px;}
.wse7{word-spacing:-0.225000px;}
.ws35{word-spacing:-0.216000px;}
.wscc{word-spacing:-0.214272px;}
.ws105{word-spacing:-0.180000px;}
.ws37{word-spacing:-0.162000px;}
.ws10b{word-spacing:-0.135000px;}
.ws7c{word-spacing:-0.120000px;}
.ws44{word-spacing:-0.108000px;}
.ws116{word-spacing:-0.090000px;}
.wsdf{word-spacing:-0.060000px;}
.ws26{word-spacing:-0.054000px;}
.ws115{word-spacing:-0.045000px;}
.ws9{word-spacing:0.000000px;}
.wse9{word-spacing:0.045000px;}
.wsf{word-spacing:0.054000px;}
.ws7e{word-spacing:0.108000px;}
.ws3f{word-spacing:0.120000px;}
.ws109{word-spacing:0.135000px;}
.ws6a{word-spacing:0.162000px;}
.ws8b{word-spacing:0.180000px;}
.ws49{word-spacing:0.216000px;}
.ws10c{word-spacing:0.225000px;}
.ws3d{word-spacing:0.270000px;}
.wscf{word-spacing:0.300000px;}
.ws71{word-spacing:0.324000px;}
.wseb{word-spacing:0.360000px;}
.ws73{word-spacing:0.378000px;}
.wse3{word-spacing:0.405000px;}
.wsde{word-spacing:0.420000px;}
.ws11{word-spacing:0.432000px;}
.ws15{word-spacing:0.486000px;}
.wsf2{word-spacing:0.495000px;}
.wsf1{word-spacing:0.540000px;}
.ws107{word-spacing:0.585000px;}
.ws4a{word-spacing:0.594000px;}
.ws104{word-spacing:0.630000px;}
.ws92{word-spacing:0.648000px;}
.ws114{word-spacing:0.675000px;}
.ws16{word-spacing:0.702000px;}
.wsec{word-spacing:0.720000px;}
.wscb{word-spacing:0.749952px;}
.ws30{word-spacing:0.756000px;}
.ws46{word-spacing:0.780000px;}
.ws6d{word-spacing:0.810000px;}
.ws112{word-spacing:0.855000px;}
.ws8a{word-spacing:0.864000px;}
.ws55{word-spacing:0.918000px;}
.wse6{word-spacing:0.945000px;}
.ws3c{word-spacing:0.972000px;}
.ws89{word-spacing:1.026000px;}
.ws21{word-spacing:1.071000px;}
.ws31{word-spacing:1.080000px;}
.ws12{word-spacing:1.134000px;}
.ws6f{word-spacing:1.188000px;}
.ws111{word-spacing:1.215000px;}
.ws74{word-spacing:1.260000px;}
.wsb8{word-spacing:1.296000px;}
.ws10a{word-spacing:1.305000px;}
.ws11a{word-spacing:1.350000px;}
.wsf0{word-spacing:1.395000px;}
.ws3b{word-spacing:1.404000px;}
.wsc9{word-spacing:1.446336px;}
.ws6e{word-spacing:1.458000px;}
.ws33{word-spacing:1.512000px;}
.wsc1{word-spacing:1.607040px;}
.ws70{word-spacing:1.620000px;}
.ws10d{word-spacing:1.755000px;}
.wse2{word-spacing:1.800000px;}
.ws72{word-spacing:2.430000px;}
.wsd2{word-spacing:3.780000px;}
.wsba{word-spacing:4.071168px;}
.ws47{word-spacing:4.482000px;}
.wsbf{word-spacing:4.553280px;}
.ws106{word-spacing:6.255000px;}
.wsd3{word-spacing:10.044000px;}
.wsae{word-spacing:32.382000px;}
.ws77{word-spacing:32.466000px;}
.ws9b{word-spacing:94.920000px;}
.ws9a{word-spacing:105.000000px;}
.wsa5{word-spacing:141.624000px;}
.wsa7{word-spacing:146.664000px;}
.wsa4{word-spacing:155.610000px;}
.wsa9{word-spacing:157.290000px;}
.ws9d{word-spacing:161.196000px;}
.ws9c{word-spacing:163.338000px;}
.wsa0{word-spacing:163.590000px;}
.wsa3{word-spacing:164.178000px;}
.ws9f{word-spacing:165.354000px;}
.wsa1{word-spacing:167.706000px;}
.ws64{word-spacing:244.318200px;}
.ws65{word-spacing:327.646200px;}
.wsa8{word-spacing:452.176200px;}
.wsa6{word-spacing:467.044200px;}
.wsa2{word-spacing:492.660000px;}
.ws51{word-spacing:650.496000px;}
.ws53{word-spacing:776.748000px;}
._5a{margin-left:-42.578304px;}
._10{margin-left:-13.638600px;}
._9{margin-left:-12.347400px;}
._7{margin-left:-11.016000px;}
._2{margin-left:-9.547200px;}
._11{margin-left:-7.625400px;}
._4{margin-left:-5.712600px;}
._3{margin-left:-4.502400px;}
._1{margin-left:-3.276000px;}
._0{margin-left:-1.776000px;}
._5{width:1.176600px;}
._6{width:2.839800px;}
._b{width:5.180400px;}
._a{width:7.135800px;}
._5c{width:9.672600px;}
._d{width:10.931400px;}
._c{width:12.144600px;}
._22{width:13.153800px;}
._13{width:33.432000px;}
._5b{width:46.986600px;}
._8{width:48.087600px;}
._14{width:49.164000px;}
._25{width:65.266800px;}
._51{width:98.196000px;}
._36{width:103.026000px;}
._1e{width:125.760000px;}
._1c{width:143.281800px;}
._42{width:144.858000px;}
._41{width:148.176000px;}
._3a{width:157.752000px;}
._3c{width:166.740000px;}
._43{width:168.635400px;}
._12{width:169.897200px;}
._4b{width:187.152000px;}
._3d{width:200.231400px;}
._3e{width:216.090000px;}
._28{width:233.982000px;}
._26{width:235.704000px;}
._2e{width:237.048000px;}
._3f{width:247.938000px;}
._40{width:252.054000px;}
._15{width:256.906200px;}
._4d{width:268.338000px;}
._1a{width:269.816400px;}
._44{width:272.076000px;}
._30{width:277.830000px;}
._53{width:279.930000px;}
._49{width:283.584000px;}
._1f{width:291.534000px;}
._20{width:295.986000px;}
._33{width:303.366000px;}
._38{width:304.878000px;}
._31{width:307.632000px;}
._21{width:308.700000px;}
._4f{width:317.142000px;}
._56{width:322.350000px;}
._1b{width:326.683800px;}
._19{width:331.598400px;}
._18{width:335.893200px;}
._2a{width:356.160000px;}
._2c{width:361.872000px;}
._32{width:363.510000px;}
._46{width:365.568000px;}
._24{width:366.658800px;}
._47{width:375.966000px;}
._37{width:380.358000px;}
._3b{width:386.874000px;}
._17{width:389.004000px;}
._16{width:391.902000px;}
._23{width:423.191400px;}
._1d{width:433.020000px;}
._4c{width:436.926000px;}
._48{width:465.780000px;}
._e{width:478.548000px;}
._58{width:497.346000px;}
._59{width:498.552000px;}
._f{width:509.754000px;}
._29{width:511.782000px;}
._27{width:513.000000px;}
._2f{width:514.890000px;}
._35{width:534.096000px;}
._54{width:541.601400px;}
._4e{width:546.822000px;}
._45{width:550.338000px;}
._4a{width:561.551400px;}
._50{width:579.402000px;}
._34{width:580.842000px;}
._39{width:583.374000px;}
._57{width:585.084000px;}
._55{width:598.126800px;}
._52{width:623.849400px;}
._2b{width:634.350000px;}
._2d{width:640.187400px;}
.fc3{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fsc{font-size:27.300000px;}
.fs10{font-size:29.250000px;}
.fs7{font-size:33.150000px;}
.fs6{font-size:35.100000px;}
.fs4{font-size:39.000000px;}
.fsb{font-size:42.000000px;}
.fsf{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fsd{font-size:53.568000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fse{font-size:96.000000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y1dd{bottom:4.320150px;}
.y1dc{bottom:4.746966px;}
.y1d7{bottom:24.192150px;}
.y1d2{bottom:25.056150px;}
.y1{bottom:27.197850px;}
.y2{bottom:27.253800px;}
.y2f{bottom:68.319900px;}
.y77{bottom:68.563500px;}
.y164{bottom:71.794800px;}
.y13f{bottom:72.550800px;}
.y7f{bottom:73.428000px;}
.y112{bottom:77.044800px;}
.y1cf{bottom:77.796300px;}
.y15b{bottom:78.546300px;}
.y2e{bottom:83.313900px;}
.y76{bottom:83.562000px;}
.y2a7{bottom:84.089550px;}
.y215{bottom:86.551500px;}
.y163{bottom:86.793300px;}
.y13e{bottom:87.549300px;}
.y7e{bottom:88.426500px;}
.yde{bottom:90.549300px;}
.y111{bottom:92.049300px;}
.y257{bottom:92.696250px;}
.y1ce{bottom:92.794800px;}
.y15a{bottom:93.544800px;}
.ybe{bottom:94.809000px;}
.y2a6{bottom:96.835800px;}
.y2d{bottom:98.307900px;}
.y75{bottom:98.560500px;}
.y214{bottom:101.551500px;}
.y13d{bottom:102.547800px;}
.y7d{bottom:103.429500px;}
.y256{bottom:105.442500px;}
.ydd{bottom:105.547800px;}
.y110{bottom:107.047800px;}
.y1cd{bottom:107.803800px;}
.y159{bottom:108.547800px;}
.y2a5{bottom:109.582050px;}
.ybd{bottom:109.807500px;}
.y2c{bottom:113.307900px;}
.y74{bottom:113.559000px;}
.yfc{bottom:114.388500px;}
.y213{bottom:116.553000px;}
.y13c{bottom:117.546300px;}
.y255{bottom:118.188750px;}
.y7c{bottom:118.428000px;}
.ydc{bottom:120.546300px;}
.y10f{bottom:122.046300px;}
.y2a4{bottom:122.328300px;}
.y1cc{bottom:122.802300px;}
.y158{bottom:123.546300px;}
.ybc{bottom:124.806000px;}
.y73{bottom:128.557500px;}
.yfb{bottom:129.387000px;}
.y254{bottom:130.935000px;}
.y212{bottom:131.551500px;}
.y13b{bottom:132.544800px;}
.y2b{bottom:132.636900px;}
.y7b{bottom:133.426500px;}
.y2a3{bottom:135.074550px;}
.ydb{bottom:135.544800px;}
.y10e{bottom:137.044800px;}
.y1cb{bottom:137.800800px;}
.y157{bottom:138.544800px;}
.ybb{bottom:139.804500px;}
.y2a{bottom:143.307900px;}
.y72{bottom:143.556000px;}
.y253{bottom:143.681250px;}
.y198{bottom:143.794800px;}
.yfa{bottom:144.385500px;}
.y211{bottom:146.550000px;}
.y13a{bottom:147.549300px;}
.y2a2{bottom:147.820800px;}
.y7a{bottom:148.425000px;}
.yda{bottom:150.544800px;}
.y10d{bottom:152.050800px;}
.y1ca{bottom:152.799300px;}
.y156{bottom:153.546300px;}
.yba{bottom:154.803000px;}
.y252{bottom:156.427500px;}
.y71{bottom:158.554500px;}
.y197{bottom:158.794800px;}
.yf9{bottom:159.384000px;}
.y2a1{bottom:160.567050px;}
.y139{bottom:162.547800px;}
.y29{bottom:162.636900px;}
.yd9{bottom:165.547800px;}
.y10c{bottom:167.049300px;}
.y1c9{bottom:167.797800px;}
.y155{bottom:168.544800px;}
.y251{bottom:169.173750px;}
.yb9{bottom:169.801500px;}
.y2a0{bottom:173.313300px;}
.y210{bottom:173.551500px;}
.y70{bottom:173.553000px;}
.y196{bottom:173.793300px;}
.yf8{bottom:174.382500px;}
.y138{bottom:177.546300px;}
.y79{bottom:178.654800px;}
.yd8{bottom:180.546300px;}
.y250{bottom:181.920000px;}
.y10b{bottom:182.047800px;}
.y1c8{bottom:182.796300px;}
.y154{bottom:183.546300px;}
.yb8{bottom:184.804500px;}
.y29f{bottom:186.059550px;}
.y6f{bottom:188.551500px;}
.yf7{bottom:189.381000px;}
.y137{bottom:192.544800px;}
.y78{bottom:193.653300px;}
.y24f{bottom:194.666250px;}
.yd7{bottom:195.544800px;}
.y10a{bottom:197.046300px;}
.y1c7{bottom:197.794800px;}
.y153{bottom:198.544800px;}
.y28{bottom:198.687300px;}
.y29e{bottom:198.805800px;}
.yb7{bottom:199.803000px;}
.y20f{bottom:203.551500px;}
.y6e{bottom:203.553000px;}
.y195{bottom:203.916300px;}
.y24e{bottom:207.412500px;}
.y136{bottom:207.558300px;}
.yd6{bottom:210.544800px;}
.y29d{bottom:211.552050px;}
.y109{bottom:212.044800px;}
.y1c6{bottom:212.794800px;}
.y152{bottom:213.550800px;}
.y27{bottom:213.685800px;}
.yb6{bottom:214.801500px;}
.y6d{bottom:218.551500px;}
.y24d{bottom:220.158750px;}
.yf6{bottom:220.213650px;}
.y194{bottom:221.356800px;}
.y135{bottom:222.556800px;}
.y29c{bottom:224.298300px;}
.yd5{bottom:225.549300px;}
.y108{bottom:227.044800px;}
.y1c5{bottom:227.794800px;}
.y151{bottom:228.549300px;}
.y26{bottom:228.685800px;}
.yb5{bottom:229.809000px;}
.y24c{bottom:232.905000px;}
.y20e{bottom:233.553000px;}
.y6c{bottom:233.563500px;}
.yf5{bottom:235.216650px;}
.y29b{bottom:237.044550px;}
.y134{bottom:237.555300px;}
.y193{bottom:238.797300px;}
.yd4{bottom:240.547800px;}
.y107{bottom:242.044800px;}
.y1c4{bottom:242.794800px;}
.y150{bottom:243.547800px;}
.y25{bottom:243.685800px;}
.yb4{bottom:244.807500px;}
.y24b{bottom:245.651250px;}
.y20d{bottom:248.551500px;}
.y6b{bottom:248.562000px;}
.y29a{bottom:249.790800px;}
.yf4{bottom:250.215150px;}
.y133{bottom:252.553800px;}
.y93{bottom:252.717300px;}
.yd3{bottom:255.546300px;}
.y192{bottom:256.237800px;}
.y106{bottom:257.044800px;}
.y1c3{bottom:257.797800px;}
.y24a{bottom:258.397500px;}
.y14f{bottom:258.546300px;}
.y24{bottom:258.685800px;}
.yb3{bottom:259.806000px;}
.y299{bottom:262.537050px;}
.y20c{bottom:263.553000px;}
.y6a{bottom:263.560500px;}
.yf3{bottom:265.213650px;}
.y132{bottom:267.552300px;}
.y92{bottom:267.715800px;}
.yd2{bottom:270.544800px;}
.y249{bottom:271.143750px;}
.y105{bottom:272.046300px;}
.y1c2{bottom:272.796300px;}
.y14e{bottom:273.544800px;}
.y191{bottom:273.678300px;}
.y23{bottom:273.687300px;}
.yb2{bottom:274.804500px;}
.y298{bottom:275.283300px;}
.y20b{bottom:278.551500px;}
.y69{bottom:278.559000px;}
.yf2{bottom:280.218150px;}
.y131{bottom:282.550800px;}
.y248{bottom:283.890000px;}
.yd1{bottom:285.543300px;}
.y104{bottom:287.044800px;}
.y1c1{bottom:287.794800px;}
.y297{bottom:288.029550px;}
.y14d{bottom:288.544800px;}
.y22{bottom:288.685800px;}
.yb1{bottom:289.803000px;}
.y190{bottom:291.118800px;}
.y20a{bottom:293.550000px;}
.y68{bottom:293.557500px;}
.yf1{bottom:295.216650px;}
.y247{bottom:296.636250px;}
.y130{bottom:297.549300px;}
.y91{bottom:297.891300px;}
.y296{bottom:300.775800px;}
.y103{bottom:302.043300px;}
.y1c0{bottom:302.793300px;}
.y14c{bottom:303.547800px;}
.y21{bottom:303.685800px;}
.yb0{bottom:304.801500px;}
.y67{bottom:308.556000px;}
.y18f{bottom:308.559300px;}
.y246{bottom:309.382500px;}
.yf0{bottom:310.215150px;}
.y12f{bottom:312.547800px;}
.y295{bottom:313.522050px;}
.y90{bottom:315.331800px;}
.y102{bottom:317.043300px;}
.y14b{bottom:318.546300px;}
.y20{bottom:318.687300px;}
.yaf{bottom:319.803000px;}
.y209{bottom:321.648600px;}
.y245{bottom:322.128750px;}
.y66{bottom:323.554500px;}
.yef{bottom:325.213650px;}
.y18e{bottom:325.999800px;}
.y294{bottom:326.268300px;}
.y12e{bottom:327.546300px;}
.y8f{bottom:332.772300px;}
.y14a{bottom:333.544800px;}
.y1f{bottom:333.685800px;}
.yae{bottom:334.801500px;}
.y244{bottom:334.875000px;}
.y1bf{bottom:335.793300px;}
.y208{bottom:336.647100px;}
.y65{bottom:338.553000px;}
.y293{bottom:339.014550px;}
.yee{bottom:340.216650px;}
.y12d{bottom:342.544800px;}
.y18d{bottom:343.440300px;}
.ye3{bottom:345.300450px;}
.y243{bottom:347.621250px;}
.y149{bottom:348.543300px;}
.y1e{bottom:348.687300px;}
.yad{bottom:349.800000px;}
.y8e{bottom:350.212800px;}
.y1be{bottom:350.793300px;}
.y207{bottom:351.650100px;}
.y292{bottom:351.760800px;}
.y64{bottom:353.551500px;}
.yed{bottom:355.215150px;}
.y12c{bottom:357.549300px;}
.ye2{bottom:360.303450px;}
.y242{bottom:360.367500px;}
.y18c{bottom:360.880800px;}
.y1d{bottom:363.685800px;}
.y291{bottom:364.507050px;}
.y206{bottom:366.648600px;}
.y8d{bottom:367.653300px;}
.y63{bottom:368.550000px;}
.yec{bottom:370.213650px;}
.y12b{bottom:372.547800px;}
.y241{bottom:373.113750px;}
.ye1{bottom:375.301950px;}
.y290{bottom:377.253300px;}
.yac{bottom:378.057150px;}
.y18b{bottom:378.321300px;}
.y1c{bottom:378.687300px;}
.y11c{bottom:379.165950px;}
.y205{bottom:381.647100px;}
.y1bd{bottom:383.802300px;}
.yeb{bottom:385.212150px;}
.y240{bottom:385.860000px;}
.y12a{bottom:387.546300px;}
.y28f{bottom:389.999550px;}
.ye0{bottom:390.300450px;}
.yab{bottom:393.055650px;}
.y1b{bottom:393.685800px;}
.y11b{bottom:394.164450px;}
.y18a{bottom:395.761800px;}
.y204{bottom:396.645600px;}
.y23f{bottom:398.606250px;}
.y62{bottom:398.682150px;}
.y1bc{bottom:398.800800px;}
.y162{bottom:402.244950px;}
.y129{bottom:402.544800px;}
.y28e{bottom:402.745800px;}
.ydf{bottom:405.298950px;}
.yaa{bottom:408.054150px;}
.y1a{bottom:408.685800px;}
.y11a{bottom:409.162950px;}
.y23e{bottom:411.352500px;}
.y189{bottom:413.202300px;}
.y61{bottom:413.680650px;}
.y1bb{bottom:413.799300px;}
.y28d{bottom:415.492050px;}
.yea{bottom:416.044800px;}
.y161{bottom:417.243450px;}
.y128{bottom:417.543300px;}
.ya9{bottom:423.052650px;}
.y19{bottom:423.685800px;}
.y23d{bottom:424.098750px;}
.y119{bottom:424.161450px;}
.y203{bottom:424.745550px;}
.y8c{bottom:427.633950px;}
.y28c{bottom:428.238300px;}
.y60{bottom:428.679150px;}
.y1ba{bottom:428.797800px;}
.y188{bottom:430.642800px;}
.ye9{bottom:431.044800px;}
.y160{bottom:432.241950px;}
.y127{bottom:432.543300px;}
.y23c{bottom:436.845000px;}
.ya8{bottom:438.051150px;}
.y18{bottom:438.723300px;}
.y118{bottom:439.159950px;}
.y202{bottom:439.744050px;}
.y28b{bottom:440.984550px;}
.y8b{bottom:442.632450px;}
.y5f{bottom:443.677650px;}
.y1b9{bottom:443.796300px;}
.ye8{bottom:446.044800px;}
.y15f{bottom:447.240450px;}
.y187{bottom:448.083300px;}
.y23b{bottom:449.591250px;}
.ya7{bottom:453.049650px;}
.y28a{bottom:453.730800px;}
.y117{bottom:454.158450px;}
.y201{bottom:454.742550px;}
.y8a{bottom:457.630950px;}
.y5e{bottom:458.676150px;}
.y1b8{bottom:458.794800px;}
.ye7{bottom:461.047800px;}
.y15e{bottom:462.241950px;}
.y23a{bottom:462.337500px;}
.y186{bottom:465.523800px;}
.y126{bottom:465.556800px;}
.y289{bottom:466.477050px;}
.ya6{bottom:468.048150px;}
.y116{bottom:469.156950px;}
.y200{bottom:469.747050px;}
.y89{bottom:472.629450px;}
.y5d{bottom:473.674650px;}
.y1b7{bottom:473.794800px;}
.y239{bottom:475.083750px;}
.ye6{bottom:476.046300px;}
.y15d{bottom:477.240450px;}
.y288{bottom:479.223300px;}
.y125{bottom:480.555300px;}
.y185{bottom:482.964300px;}
.ya5{bottom:483.049650px;}
.y115{bottom:484.155450px;}
.y1ff{bottom:484.745550px;}
.y17{bottom:485.973300px;}
.y88{bottom:487.627950px;}
.y238{bottom:487.830000px;}
.y5c{bottom:488.673150px;}
.y1b6{bottom:488.794800px;}
.ye5{bottom:491.044800px;}
.y287{bottom:491.969550px;}
.y15c{bottom:492.238950px;}
.y124{bottom:495.553800px;}
.ya4{bottom:498.048150px;}
.y114{bottom:499.153950px;}
.y1fe{bottom:499.744050px;}
.y184{bottom:500.404800px;}
.y237{bottom:500.576250px;}
.y16{bottom:502.470300px;}
.y87{bottom:502.626450px;}
.y5b{bottom:503.677650px;}
.y1b5{bottom:503.806800px;}
.y286{bottom:504.715800px;}
.ye4{bottom:506.043300px;}
.y123{bottom:510.552300px;}
.ya3{bottom:513.049650px;}
.y236{bottom:513.322500px;}
.y113{bottom:514.152450px;}
.y1fd{bottom:514.742550px;}
.y285{bottom:517.462050px;}
.y86{bottom:517.624950px;}
.y183{bottom:517.845300px;}
.y5a{bottom:518.676150px;}
.y1b4{bottom:518.805300px;}
.y15{bottom:518.967300px;}
.y122{bottom:525.550800px;}
.y235{bottom:526.068750px;}
.ya2{bottom:528.048150px;}
.y1fc{bottom:529.742550px;}
.y284{bottom:530.208300px;}
.y85{bottom:532.623450px;}
.y59{bottom:533.674650px;}
.y1b3{bottom:533.803800px;}
.y182{bottom:535.285800px;}
.y14{bottom:535.464300px;}
.y234{bottom:538.815000px;}
.y121{bottom:540.549300px;}
.y283{bottom:542.954550px;}
.ya1{bottom:543.049650px;}
.y1fb{bottom:544.744050px;}
.y84{bottom:547.621950px;}
.y58{bottom:548.673150px;}
.y1b2{bottom:548.802300px;}
.y233{bottom:551.561250px;}
.y13{bottom:551.961300px;}
.y181{bottom:552.726300px;}
.y2c5{bottom:553.299300px;}
.y120{bottom:555.547800px;}
.y282{bottom:555.700800px;}
.ya0{bottom:558.048150px;}
.y101{bottom:559.501950px;}
.y1fa{bottom:559.742550px;}
.y83{bottom:562.620450px;}
.y57{bottom:563.674650px;}
.y1b1{bottom:563.800800px;}
.y232{bottom:564.307500px;}
.y2c4{bottom:568.297800px;}
.y281{bottom:568.447050px;}
.y12{bottom:568.458300px;}
.y180{bottom:570.166800px;}
.y11f{bottom:570.546300px;}
.y9f{bottom:573.048150px;}
.y100{bottom:574.500450px;}
.y1f9{bottom:574.741050px;}
.y231{bottom:577.053750px;}
.y82{bottom:577.621950px;}
.y56{bottom:578.673150px;}
.y1b0{bottom:578.799300px;}
.y280{bottom:581.193300px;}
.y2c3{bottom:583.296300px;}
.y11{bottom:584.955300px;}
.y11e{bottom:585.544800px;}
.y17f{bottom:587.607300px;}
.y9e{bottom:588.054150px;}
.yff{bottom:589.501950px;}
.y230{bottom:589.803750px;}
.y81{bottom:592.620450px;}
.y55{bottom:593.673150px;}
.y1af{bottom:593.797800px;}
.y27f{bottom:593.939550px;}
.y2c2{bottom:598.294800px;}
.y11d{bottom:600.543300px;}
.y10{bottom:601.452300px;}
.y22f{bottom:602.550000px;}
.y1f8{bottom:602.841150px;}
.y9d{bottom:603.052650px;}
.yfe{bottom:604.500450px;}
.y17e{bottom:605.047800px;}
.y27e{bottom:606.685800px;}
.y80{bottom:607.618950px;}
.y54{bottom:608.673150px;}
.y1ae{bottom:608.796300px;}
.y2c1{bottom:613.293300px;}
.y22e{bottom:615.300000px;}
.y1f7{bottom:617.839650px;}
.yf{bottom:617.949300px;}
.y9c{bottom:618.051150px;}
.y27d{bottom:619.432050px;}
.yfd{bottom:619.498950px;}
.y17d{bottom:622.488300px;}
.y53{bottom:623.674650px;}
.y1ad{bottom:623.794800px;}
.y27c{bottom:632.178300px;}
.y1f6{bottom:632.838150px;}
.y9b{bottom:633.049650px;}
.ye{bottom:634.446300px;}
.y2c0{bottom:635.050800px;}
.y52{bottom:638.673150px;}
.y1ac{bottom:638.794800px;}
.y17c{bottom:639.928800px;}
.y27b{bottom:644.924550px;}
.y22d{bottom:647.000100px;}
.y1f5{bottom:647.838150px;}
.y9a{bottom:648.048150px;}
.y2bf{bottom:650.049300px;}
.yd{bottom:650.943300px;}
.y51{bottom:653.671650px;}
.y1ab{bottom:653.796300px;}
.y148{bottom:657.001950px;}
.y17b{bottom:657.358800px;}
.y27a{bottom:657.670800px;}
.y22c{bottom:662.000100px;}
.y1f4{bottom:662.838150px;}
.y17a{bottom:662.976300px;}
.y99{bottom:663.048150px;}
.yc{bottom:667.440300px;}
.y50{bottom:668.671650px;}
.y1aa{bottom:668.794800px;}
.y279{bottom:670.417050px;}
.y2be{bottom:671.797800px;}
.y147{bottom:672.000450px;}
.y22b{bottom:677.000100px;}
.y1f3{bottom:677.838150px;}
.y98{bottom:678.046650px;}
.y278{bottom:683.163300px;}
.y1a9{bottom:683.794800px;}
.yb{bottom:683.937300px;}
.y179{bottom:686.034300px;}
.y146{bottom:687.001950px;}
.y22a{bottom:691.998600px;}
.y1f2{bottom:692.838150px;}
.y97{bottom:693.046650px;}
.y2bd{bottom:693.546300px;}
.y277{bottom:695.909550px;}
.y1a8{bottom:698.796300px;}
.y4f{bottom:698.805300px;}
.ya{bottom:700.434300px;}
.y145{bottom:702.000450px;}
.y178{bottom:703.474800px;}
.y1f1{bottom:707.838150px;}
.y276{bottom:708.655800px;}
.y1a7{bottom:713.794800px;}
.y4e{bottom:713.803800px;}
.y2bc{bottom:715.294800px;}
.y144{bottom:717.004950px;}
.y177{bottom:720.915300px;}
.y96{bottom:721.296300px;}
.y275{bottom:721.402050px;}
.y1f0{bottom:722.836650px;}
.y229{bottom:723.703200px;}
.y1a6{bottom:728.794800px;}
.y4d{bottom:728.802300px;}
.y2bb{bottom:730.293300px;}
.y9{bottom:730.434300px;}
.y143{bottom:732.003450px;}
.y274{bottom:734.148300px;}
.y95{bottom:736.294800px;}
.y176{bottom:738.349800px;}
.y228{bottom:738.701700px;}
.y1a5{bottom:743.794800px;}
.y4c{bottom:743.800800px;}
.y2ba{bottom:745.293300px;}
.y273{bottom:746.894550px;}
.y142{bottom:747.001950px;}
.y8{bottom:748.434300px;}
.y1ef{bottom:750.935250px;}
.y94{bottom:751.293300px;}
.y227{bottom:753.700200px;}
.y175{bottom:755.779800px;}
.y32{bottom:757.050000px;}
.y1a4{bottom:758.797800px;}
.y4b{bottom:758.799300px;}
.y272{bottom:759.640800px;}
.y174{bottom:761.397300px;}
.y141{bottom:762.000450px;}
.y1ee{bottom:765.933750px;}
.y226{bottom:768.698700px;}
.y2b9{bottom:772.296300px;}
.y271{bottom:772.387050px;}
.y1a3{bottom:773.796300px;}
.y4a{bottom:773.797800px;}
.y140{bottom:776.998950px;}
.y31{bottom:778.050000px;}
.y1ed{bottom:780.933750px;}
.y7{bottom:781.416300px;}
.y225{bottom:783.697200px;}
.y173{bottom:784.455300px;}
.y270{bottom:785.133300px;}
.y2b8{bottom:787.294800px;}
.y1a2{bottom:788.794800px;}
.y49{bottom:788.796300px;}
.y1ec{bottom:795.935250px;}
.y26f{bottom:797.879550px;}
.y30{bottom:799.050000px;}
.yd0{bottom:801.543300px;}
.y172{bottom:801.895800px;}
.y2b7{bottom:802.293300px;}
.y48{bottom:803.794800px;}
.y26e{bottom:810.625800px;}
.y1eb{bottom:810.933750px;}
.y224{bottom:815.404950px;}
.y2b6{bottom:817.293300px;}
.y47{bottom:818.794800px;}
.y171{bottom:819.336300px;}
.y26d{bottom:823.372050px;}
.y1ea{bottom:825.933750px;}
.y6{bottom:826.422300px;}
.y223{bottom:830.403450px;}
.ycf{bottom:831.757800px;}
.y46{bottom:833.800800px;}
.y26c{bottom:836.118300px;}
.y170{bottom:836.776800px;}
.y1e9{bottom:840.935250px;}
.y2b5{bottom:844.302300px;}
.y222{bottom:845.401950px;}
.y45{bottom:848.799300px;}
.y26b{bottom:848.864550px;}
.yce{bottom:849.198300px;}
.y16f{bottom:854.217300px;}
.y1e8{bottom:855.933750px;}
.y2b4{bottom:859.300800px;}
.y221{bottom:860.400450px;}
.y26a{bottom:861.610800px;}
.y44{bottom:863.797800px;}
.ycd{bottom:866.638800px;}
.y1e7{bottom:870.932250px;}
.y5{bottom:871.428300px;}
.y16e{bottom:871.647300px;}
.ycc{bottom:872.256300px;}
.y2b3{bottom:874.299300px;}
.y269{bottom:874.357050px;}
.y220{bottom:875.398950px;}
.y16d{bottom:877.264800px;}
.y43{bottom:878.796300px;}
.y268{bottom:887.103300px;}
.y2b2{bottom:889.297800px;}
.y21f{bottom:890.397450px;}
.y42{bottom:893.794800px;}
.ycb{bottom:895.314300px;}
.y1e6{bottom:899.029200px;}
.y267{bottom:899.849550px;}
.y16c{bottom:900.322800px;}
.yca{bottom:900.931800px;}
.y2b1{bottom:904.296300px;}
.y21e{bottom:905.395950px;}
.y1a1{bottom:908.794800px;}
.y41{bottom:908.796300px;}
.y266{bottom:912.595800px;}
.y1e5{bottom:914.032200px;}
.y4{bottom:916.434300px;}
.y16b{bottom:917.763300px;}
.y2b0{bottom:919.294800px;}
.y40{bottom:923.794800px;}
.yc9{bottom:923.989800px;}
.y265{bottom:925.342050px;}
.y33{bottom:926.409600px;}
.y1e4{bottom:929.030700px;}
.yc8{bottom:929.607300px;}
.y2af{bottom:934.293300px;}
.y16a{bottom:935.203800px;}
.y21d{bottom:937.097550px;}
.y264{bottom:938.088300px;}
.y3f{bottom:938.796300px;}
.y1a0{bottom:938.800800px;}
.y1e3{bottom:944.029200px;}
.y2ae{bottom:949.293300px;}
.y263{bottom:950.834550px;}
.y21c{bottom:952.096050px;}
.y169{bottom:952.644300px;}
.yc7{bottom:952.665300px;}
.y3e{bottom:953.794800px;}
.y19f{bottom:953.799300px;}
.y1e2{bottom:959.030700px;}
.y262{bottom:963.580800px;}
.y21b{bottom:967.094550px;}
.y3d{bottom:968.794800px;}
.y19e{bottom:968.797800px;}
.y168{bottom:970.084800px;}
.yc6{bottom:970.102800px;}
.y1e1{bottom:974.029200px;}
.y2ad{bottom:976.315800px;}
.y261{bottom:976.327050px;}
.y3c{bottom:983.794800px;}
.y19d{bottom:983.796300px;}
.y167{bottom:987.525300px;}
.yc5{bottom:987.540300px;}
.y1e0{bottom:989.030700px;}
.y2ac{bottom:989.062050px;}
.y260{bottom:989.073300px;}
.y19c{bottom:998.794800px;}
.y3b{bottom:998.796300px;}
.y21a{bottom:998.797800px;}
.y2ab{bottom:1001.808300px;}
.y25f{bottom:1001.819550px;}
.y1df{bottom:1004.029200px;}
.y166{bottom:1004.965800px;}
.yc4{bottom:1004.977800px;}
.y3a{bottom:1013.794800px;}
.y219{bottom:1013.796300px;}
.y19b{bottom:1013.797800px;}
.y2aa{bottom:1014.554550px;}
.y25e{bottom:1014.565800px;}
.y1de{bottom:1019.027700px;}
.y165{bottom:1022.406300px;}
.yc3{bottom:1022.415300px;}
.y2a9{bottom:1027.300800px;}
.y25d{bottom:1027.312050px;}
.y218{bottom:1028.794800px;}
.y19a{bottom:1028.796300px;}
.y39{bottom:1028.797800px;}
.yc2{bottom:1039.846800px;}
.y2a8{bottom:1040.047050px;}
.y25c{bottom:1040.058300px;}
.y199{bottom:1043.794800px;}
.y38{bottom:1043.796300px;}
.y217{bottom:1043.797800px;}
.y1d1{bottom:1052.233500px;}
.y25b{bottom:1052.804550px;}
.yc1{bottom:1057.287300px;}
.y1d3{bottom:1057.849800px;}
.y37{bottom:1058.794800px;}
.y216{bottom:1058.796300px;}
.y1d6{bottom:1059.148824px;}
.y1da{bottom:1060.863000px;}
.y1d5{bottom:1063.902984px;}
.y25a{bottom:1065.550800px;}
.y1d9{bottom:1065.617160px;}
.y1db{bottom:1067.773272px;}
.y1d0{bottom:1067.785650px;}
.y1d4{bottom:1069.514232px;}
.y1d8{bottom:1070.371320px;}
.y36{bottom:1073.794800px;}
.yc0{bottom:1074.727800px;}
.y259{bottom:1078.297050px;}
.y35{bottom:1088.793300px;}
.y258{bottom:1091.043300px;}
.ybf{bottom:1092.168300px;}
.y34{bottom:1139.853000px;}
.y3{bottom:1140.126900px;}
.hc{height:23.842749px;}
.h1d{height:29.904000px;}
.h18{height:29.988000px;}
.h19{height:30.072000px;}
.h29{height:30.096000px;}
.h1a{height:31.500000px;}
.h31{height:32.220000px;}
.h21{height:33.609600px;}
.h1f{height:33.729600px;}
.h33{height:33.750000px;}
.h1e{height:33.753600px;}
.h28{height:33.772200px;}
.h3{height:34.523438px;}
.h34{height:36.198000px;}
.h32{height:36.228000px;}
.he{height:36.681152px;}
.h2b{height:36.720000px;}
.h2d{height:38.354688px;}
.h1b{height:38.556000px;}
.ha{height:38.664000px;}
.h7{height:38.838867px;}
.h2a{height:40.176000px;}
.h24{height:40.476000px;}
.h23{height:40.482000px;}
.h15{height:40.488000px;}
.h25{height:40.494000px;}
.h12{height:40.500000px;}
.hd{height:41.158749px;}
.h2{height:43.154297px;}
.h8{height:43.335600px;}
.h2e{height:43.339200px;}
.h27{height:43.431600px;}
.h26{height:43.437600px;}
.h16{height:43.449600px;}
.h13{height:43.461600px;}
.h22{height:43.467600px;}
.h17{height:43.473000px;}
.h11{height:43.473600px;}
.h1c{height:43.479000px;}
.hb{height:43.479600px;}
.h30{height:43.485000px;}
.h9{height:43.485600px;}
.h10{height:43.491600px;}
.h2c{height:43.657920px;}
.h4{height:44.233154px;}
.h14{height:47.469727px;}
.h6{height:48.450293px;}
.h2f{height:50.718000px;}
.h20{height:52.584000px;}
.hf{height:77.677734px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w2{width:599.184000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:61.191450px;}
.x6{left:87.951150px;}
.x7{left:94.503150px;}
.x8{left:96.459150px;}
.x9{left:140.952750px;}
.x4{left:233.456400px;}
.xa{left:238.143900px;}
.x12{left:241.919700px;}
.x17{left:248.831700px;}
.x5{left:251.452500px;}
.x18{left:300.685524px;}
.x16{left:336.366588px;}
.x14{left:339.119700px;}
.xe{left:346.485450px;}
.xf{left:372.178950px;}
.x10{left:400.208100px;}
.x11{left:460.346700px;}
.x13{left:475.034700px;}
.x1a{left:583.199700px;}
.x3{left:584.586600px;}
.xc{left:666.777900px;}
.x15{left:673.322700px;}
.x19{left:679.370700px;}
.xd{left:816.003600px;}
.x1b{left:817.278150px;}
.xb{left:824.207400px;}
.x1{left:825.232800px;}
@media print{
.v3{vertical-align:-16.320000pt;}
.v4{vertical-align:-15.413333pt;}
.v5{vertical-align:-9.610667pt;}
.v8{vertical-align:-7.466667pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:3.095040pt;}
.v6{vertical-align:12.725333pt;}
.v2{vertical-align:16.181333pt;}
.v1{vertical-align:18.133333pt;}
.v7{vertical-align:20.010667pt;}
.lsba{letter-spacing:-5.560000pt;}
.ls36{letter-spacing:-3.984000pt;}
.ls68{letter-spacing:-2.016000pt;}
.lsbe{letter-spacing:-1.560000pt;}
.lsbd{letter-spacing:-1.360000pt;}
.lsc0{letter-spacing:-1.200000pt;}
.lsbb{letter-spacing:-1.160000pt;}
.ls4a{letter-spacing:-1.120000pt;}
.lsa1{letter-spacing:-1.000000pt;}
.lsbf{letter-spacing:-0.920000pt;}
.ls18{letter-spacing:-0.912000pt;}
.ls61{letter-spacing:-0.816000pt;}
.ls60{letter-spacing:-0.720000pt;}
.ls80{letter-spacing:-0.714240pt;}
.ls2e{letter-spacing:-0.672000pt;}
.ls8c{letter-spacing:-0.666624pt;}
.lsa2{letter-spacing:-0.640000pt;}
.ls62{letter-spacing:-0.624000pt;}
.ls67{letter-spacing:-0.597333pt;}
.ls5f{letter-spacing:-0.576000pt;}
.ls47{letter-spacing:-0.528000pt;}
.lsa9{letter-spacing:-0.520000pt;}
.ls4e{letter-spacing:-0.485333pt;}
.ls1c{letter-spacing:-0.480000pt;}
.ls81{letter-spacing:-0.476160pt;}
.lsbc{letter-spacing:-0.440000pt;}
.ls2d{letter-spacing:-0.432000pt;}
.lsab{letter-spacing:-0.400000pt;}
.ls30{letter-spacing:-0.384000pt;}
.ls4c{letter-spacing:-0.373333pt;}
.ls2b{letter-spacing:-0.336000pt;}
.lsae{letter-spacing:-0.320000pt;}
.ls34{letter-spacing:-0.288000pt;}
.ls8b{letter-spacing:-0.285696pt;}
.lsa8{letter-spacing:-0.280000pt;}
.ls8e{letter-spacing:-0.266667pt;}
.ls4b{letter-spacing:-0.261333pt;}
.ls2c{letter-spacing:-0.240000pt;}
.ls8d{letter-spacing:-0.238080pt;}
.lsa4{letter-spacing:-0.200000pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls8a{letter-spacing:-0.190464pt;}
.ls3b{letter-spacing:-0.186667pt;}
.ls5a{letter-spacing:-0.160000pt;}
.ls33{letter-spacing:-0.156000pt;}
.ls4d{letter-spacing:-0.149333pt;}
.ls19{letter-spacing:-0.144000pt;}
.ls26{letter-spacing:-0.124800pt;}
.lsa7{letter-spacing:-0.120000pt;}
.ls32{letter-spacing:-0.106667pt;}
.ls1b{letter-spacing:-0.096000pt;}
.ls6e{letter-spacing:-0.093600pt;}
.ls1e{letter-spacing:-0.090667pt;}
.lsaa{letter-spacing:-0.080000pt;}
.ls6f{letter-spacing:-0.062400pt;}
.ls15{letter-spacing:-0.048000pt;}
.lsaf{letter-spacing:-0.040000pt;}
.ls1d{letter-spacing:-0.031200pt;}
.ls12{letter-spacing:0.000000pt;}
.ls73{letter-spacing:0.000267pt;}
.lsb6{letter-spacing:0.008000pt;}
.ls2{letter-spacing:0.011733pt;}
.ls40{letter-spacing:0.017067pt;}
.ls59{letter-spacing:0.024000pt;}
.ls5e{letter-spacing:0.031200pt;}
.lsb2{letter-spacing:0.040000pt;}
.ls51{letter-spacing:0.043200pt;}
.lsb4{letter-spacing:0.044000pt;}
.ls87{letter-spacing:0.047616pt;}
.ls20{letter-spacing:0.048000pt;}
.ls95{letter-spacing:0.053333pt;}
.lsf{letter-spacing:0.062267pt;}
.ls1a{letter-spacing:0.062400pt;}
.ls9b{letter-spacing:0.080000pt;}
.ls3{letter-spacing:0.082133pt;}
.lse{letter-spacing:0.090667pt;}
.ls2a{letter-spacing:0.093600pt;}
.ls8{letter-spacing:0.096000pt;}
.lsb9{letter-spacing:0.100000pt;}
.lsd{letter-spacing:0.104933pt;}
.lsa{letter-spacing:0.105600pt;}
.ls66{letter-spacing:0.112000pt;}
.lsa5{letter-spacing:0.120000pt;}
.lsb{letter-spacing:0.120933pt;}
.ls2f{letter-spacing:0.124800pt;}
.ls7c{letter-spacing:0.138667pt;}
.ls4{letter-spacing:0.144000pt;}
.ls5{letter-spacing:0.144533pt;}
.ls29{letter-spacing:0.156000pt;}
.ls5c{letter-spacing:0.156800pt;}
.ls9d{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.181333pt;}
.ls46{letter-spacing:0.187200pt;}
.ls72{letter-spacing:0.190464pt;}
.ls9{letter-spacing:0.192000pt;}
.ls91{letter-spacing:0.197333pt;}
.ls98{letter-spacing:0.200000pt;}
.ls9f{letter-spacing:0.213333pt;}
.ls3a{letter-spacing:0.218400pt;}
.ls92{letter-spacing:0.230400pt;}
.lsb7{letter-spacing:0.232000pt;}
.ls69{letter-spacing:0.235200pt;}
.ls13{letter-spacing:0.240000pt;}
.ls54{letter-spacing:0.249600pt;}
.ls50{letter-spacing:0.264000pt;}
.ls5b{letter-spacing:0.266667pt;}
.lsb1{letter-spacing:0.280000pt;}
.ls35{letter-spacing:0.280800pt;}
.ls84{letter-spacing:0.285696pt;}
.ls25{letter-spacing:0.288000pt;}
.ls6b{letter-spacing:0.307200pt;}
.ls52{letter-spacing:0.307733pt;}
.ls53{letter-spacing:0.312000pt;}
.ls3c{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.336000pt;}
.ls6d{letter-spacing:0.343200pt;}
.lsa6{letter-spacing:0.360000pt;}
.ls4f{letter-spacing:0.373333pt;}
.ls49{letter-spacing:0.374400pt;}
.ls94{letter-spacing:0.374933pt;}
.ls75{letter-spacing:0.379200pt;}
.ls9a{letter-spacing:0.380000pt;}
.ls83{letter-spacing:0.380928pt;}
.ls22{letter-spacing:0.384000pt;}
.lsa3{letter-spacing:0.400000pt;}
.ls24{letter-spacing:0.405600pt;}
.ls77{letter-spacing:0.412800pt;}
.ls5d{letter-spacing:0.413867pt;}
.ls39{letter-spacing:0.426667pt;}
.ls85{letter-spacing:0.428544pt;}
.ls74{letter-spacing:0.430933pt;}
.ls17{letter-spacing:0.432000pt;}
.ls63{letter-spacing:0.436800pt;}
.ls99{letter-spacing:0.440000pt;}
.ls45{letter-spacing:0.468000pt;}
.ls14{letter-spacing:0.480000pt;}
.ls57{letter-spacing:0.499200pt;}
.ls97{letter-spacing:0.520000pt;}
.ls71{letter-spacing:0.523776pt;}
.ls3f{letter-spacing:0.528000pt;}
.ls7e{letter-spacing:0.531200pt;}
.ls7d{letter-spacing:0.531733pt;}
.ls6c{letter-spacing:0.532800pt;}
.ls76{letter-spacing:0.533333pt;}
.lsb3{letter-spacing:0.560000pt;}
.ls7b{letter-spacing:0.561600pt;}
.ls86{letter-spacing:0.571392pt;}
.ls6{letter-spacing:0.576000pt;}
.ls93{letter-spacing:0.586667pt;}
.lsb0{letter-spacing:0.600000pt;}
.ls7a{letter-spacing:0.615467pt;}
.ls7{letter-spacing:0.624000pt;}
.ls82{letter-spacing:0.666624pt;}
.ls27{letter-spacing:0.672000pt;}
.ls37{letter-spacing:0.676800pt;}
.lsad{letter-spacing:0.680000pt;}
.ls23{letter-spacing:0.693333pt;}
.ls28{letter-spacing:0.720000pt;}
.ls10{letter-spacing:0.725333pt;}
.ls78{letter-spacing:0.734400pt;}
.lsb8{letter-spacing:0.740000pt;}
.ls96{letter-spacing:0.746667pt;}
.ls88{letter-spacing:0.761856pt;}
.ls31{letter-spacing:0.768000pt;}
.ls55{letter-spacing:0.800000pt;}
.ls56{letter-spacing:0.816000pt;}
.lsac{letter-spacing:0.840000pt;}
.ls11{letter-spacing:0.853333pt;}
.ls44{letter-spacing:0.864000pt;}
.ls58{letter-spacing:0.906667pt;}
.ls7f{letter-spacing:0.912000pt;}
.ls6a{letter-spacing:0.960000pt;}
.lsa0{letter-spacing:1.000000pt;}
.ls3d{letter-spacing:1.003200pt;}
.ls3e{letter-spacing:1.017600pt;}
.ls48{letter-spacing:1.296000pt;}
.lsb5{letter-spacing:1.392000pt;}
.ls9c{letter-spacing:1.560000pt;}
.ls79{letter-spacing:1.776000pt;}
.ls8f{letter-spacing:1.813333pt;}
.ls0{letter-spacing:2.304000pt;}
.ls1f{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls90{letter-spacing:4.032000pt;}
.ls9e{letter-spacing:4.106667pt;}
.ls65{letter-spacing:5.440000pt;}
.ls38{letter-spacing:13.104000pt;}
.ls89{letter-spacing:37.092864pt;}
.ls64{letter-spacing:103.406400pt;}
.ls42{letter-spacing:127.012000pt;}
.ls41{letter-spacing:259.767200pt;}
.ls70{letter-spacing:322.360320pt;}
.ls43{letter-spacing:992.484533pt;}
.ws84{word-spacing:-54.240000pt;}
.wsc5{word-spacing:-47.901696pt;}
.ws2{word-spacing:-13.393333pt;}
.ws2b{word-spacing:-12.085333pt;}
.ws63{word-spacing:-11.856000pt;}
.ws80{word-spacing:-11.760000pt;}
.ws5d{word-spacing:-11.712000pt;}
.wsb3{word-spacing:-11.616000pt;}
.wsc4{word-spacing:-11.570688pt;}
.ws85{word-spacing:-11.568000pt;}
.wsbc{word-spacing:-11.475456pt;}
.wsd5{word-spacing:-11.472000pt;}
.wsca{word-spacing:-11.466667pt;}
.wsb1{word-spacing:-11.424000pt;}
.wsc2{word-spacing:-11.380224pt;}
.ws62{word-spacing:-11.376000pt;}
.wsb9{word-spacing:-11.332608pt;}
.ws4e{word-spacing:-11.280000pt;}
.wsc0{word-spacing:-11.237376pt;}
.ws5c{word-spacing:-11.232000pt;}
.wsbd{word-spacing:-11.189760pt;}
.wsb2{word-spacing:-11.184000pt;}
.ws7a{word-spacing:-11.088000pt;}
.ws82{word-spacing:-11.040000pt;}
.ws86{word-spacing:-11.016000pt;}
.ws83{word-spacing:-10.992000pt;}
.ws3{word-spacing:-10.986667pt;}
.ws81{word-spacing:-10.944000pt;}
.ws1a{word-spacing:-10.896000pt;}
.wsc3{word-spacing:-10.856448pt;}
.ws27{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws56{word-spacing:-10.800000pt;}
.ws8e{word-spacing:-10.752000pt;}
.ws60{word-spacing:-10.704000pt;}
.ws29{word-spacing:-10.656000pt;}
.wsc6{word-spacing:-10.618368pt;}
.ws4f{word-spacing:-10.608000pt;}
.wsc8{word-spacing:-10.570752pt;}
.wsc7{word-spacing:-10.523136pt;}
.ws5f{word-spacing:-10.512000pt;}
.ws2c{word-spacing:-10.464000pt;}
.wsb6{word-spacing:-10.416000pt;}
.ws87{word-spacing:-10.368000pt;}
.wsbb{word-spacing:-10.332672pt;}
.ws28{word-spacing:-10.320000pt;}
.ws93{word-spacing:-10.272000pt;}
.ws8f{word-spacing:-10.176000pt;}
.wsbe{word-spacing:-10.094592pt;}
.wsd4{word-spacing:-10.080000pt;}
.wsff{word-spacing:-9.680000pt;}
.wsdb{word-spacing:-9.600000pt;}
.wsfd{word-spacing:-9.240000pt;}
.ws101{word-spacing:-9.200000pt;}
.wsfc{word-spacing:-9.120000pt;}
.wsfa{word-spacing:-9.080000pt;}
.ws8{word-spacing:-9.066667pt;}
.wsf9{word-spacing:-9.040000pt;}
.ws102{word-spacing:-9.000000pt;}
.wsd9{word-spacing:-8.880000pt;}
.ws100{word-spacing:-8.800000pt;}
.ws119{word-spacing:-8.760000pt;}
.wsd8{word-spacing:-8.640000pt;}
.wsda{word-spacing:-8.560000pt;}
.ws67{word-spacing:-8.549333pt;}
.wsd7{word-spacing:-8.520000pt;}
.ws5a{word-spacing:-8.474667pt;}
.wsfe{word-spacing:-8.440000pt;}
.ws69{word-spacing:-8.400000pt;}
.ws103{word-spacing:-8.240000pt;}
.ws97{word-spacing:-8.213333pt;}
.ws68{word-spacing:-8.176000pt;}
.ws52{word-spacing:-8.101333pt;}
.wsfb{word-spacing:-8.000000pt;}
.ws66{word-spacing:-7.914667pt;}
.ws99{word-spacing:-7.616000pt;}
.ws7f{word-spacing:-7.581600pt;}
.ws5b{word-spacing:-7.550400pt;}
.ws95{word-spacing:-7.519200pt;}
.ws2f{word-spacing:-7.488000pt;}
.ws61{word-spacing:-7.456800pt;}
.wsb5{word-spacing:-7.425600pt;}
.ws7b{word-spacing:-7.394400pt;}
.ws2e{word-spacing:-7.363200pt;}
.ws79{word-spacing:-7.332000pt;}
.ws50{word-spacing:-7.300800pt;}
.ws5e{word-spacing:-7.269600pt;}
.ws24{word-spacing:-7.238400pt;}
.ws2a{word-spacing:-7.207200pt;}
.ws25{word-spacing:-7.176000pt;}
.ws5{word-spacing:-7.144800pt;}
.ws8d{word-spacing:-7.113600pt;}
.ws4{word-spacing:-7.082400pt;}
.ws6{word-spacing:-7.051200pt;}
.wsb4{word-spacing:-7.020000pt;}
.wsb0{word-spacing:-6.988800pt;}
.ws23{word-spacing:-6.957600pt;}
.ws2d{word-spacing:-6.926400pt;}
.ws118{word-spacing:-6.058000pt;}
.wsd6{word-spacing:-5.902000pt;}
.ws7{word-spacing:-5.893333pt;}
.ws9e{word-spacing:-5.557067pt;}
.wsaa{word-spacing:-5.440000pt;}
.ws98{word-spacing:-5.265867pt;}
.ws7d{word-spacing:-4.896000pt;}
.wsdc{word-spacing:-4.106667pt;}
.ws75{word-spacing:-3.786667pt;}
.ws1d{word-spacing:-3.128000pt;}
.ws22{word-spacing:-2.453333pt;}
.ws1{word-spacing:-2.346667pt;}
.ws20{word-spacing:-2.221333pt;}
.wsb7{word-spacing:-1.824000pt;}
.wsd1{word-spacing:-1.813333pt;}
.wsce{word-spacing:-1.776000pt;}
.wsab{word-spacing:-1.728000pt;}
.wsd0{word-spacing:-1.706667pt;}
.ws18{word-spacing:-1.680000pt;}
.ws40{word-spacing:-1.653333pt;}
.ws13{word-spacing:-1.632000pt;}
.ws41{word-spacing:-1.584000pt;}
.ws4c{word-spacing:-1.536000pt;}
.ws14{word-spacing:-1.440000pt;}
.wsed{word-spacing:-1.400000pt;}
.ws4b{word-spacing:-1.392000pt;}
.ws1e{word-spacing:-1.360000pt;}
.ws3a{word-spacing:-1.344000pt;}
.ws113{word-spacing:-1.320000pt;}
.ws36{word-spacing:-1.296000pt;}
.ws1b{word-spacing:-1.248000pt;}
.ws110{word-spacing:-1.240000pt;}
.ws39{word-spacing:-1.200000pt;}
.ws10e{word-spacing:-1.160000pt;}
.ws42{word-spacing:-1.152000pt;}
.wsa{word-spacing:-1.120000pt;}
.ws10{word-spacing:-1.104000pt;}
.wsf4{word-spacing:-1.080000pt;}
.wsd{word-spacing:-1.056000pt;}
.ws108{word-spacing:-1.040000pt;}
.wsb{word-spacing:-1.008000pt;}
.ws117{word-spacing:-1.000000pt;}
.ws91{word-spacing:-0.960000pt;}
.wse4{word-spacing:-0.920000pt;}
.ws96{word-spacing:-0.912000pt;}
.ws8c{word-spacing:-0.906667pt;}
.ws10f{word-spacing:-0.880000pt;}
.ws3e{word-spacing:-0.864000pt;}
.ws59{word-spacing:-0.858667pt;}
.ws6c{word-spacing:-0.853333pt;}
.wsf6{word-spacing:-0.840000pt;}
.ws58{word-spacing:-0.821333pt;}
.ws57{word-spacing:-0.816000pt;}
.ws88{word-spacing:-0.800000pt;}
.ws17{word-spacing:-0.768000pt;}
.wsea{word-spacing:-0.760000pt;}
.wse1{word-spacing:-0.746667pt;}
.wsf8{word-spacing:-0.720000pt;}
.wsaf{word-spacing:-0.709333pt;}
.ws45{word-spacing:-0.693333pt;}
.wsf3{word-spacing:-0.680000pt;}
.ws32{word-spacing:-0.672000pt;}
.wsf7{word-spacing:-0.640000pt;}
.wsac{word-spacing:-0.634667pt;}
.ws94{word-spacing:-0.624000pt;}
.ws76{word-spacing:-0.597333pt;}
.wsdd{word-spacing:-0.586667pt;}
.wsc{word-spacing:-0.576000pt;}
.wscd{word-spacing:-0.533333pt;}
.wse{word-spacing:-0.528000pt;}
.wsee{word-spacing:-0.520000pt;}
.wsad{word-spacing:-0.485333pt;}
.ws34{word-spacing:-0.480000pt;}
.ws1f{word-spacing:-0.453333pt;}
.wse8{word-spacing:-0.440000pt;}
.ws48{word-spacing:-0.432000pt;}
.ws54{word-spacing:-0.426667pt;}
.ws1c{word-spacing:-0.408000pt;}
.wsef{word-spacing:-0.400000pt;}
.ws38{word-spacing:-0.384000pt;}
.ws78{word-spacing:-0.373333pt;}
.wse5{word-spacing:-0.360000pt;}
.ws19{word-spacing:-0.336000pt;}
.ws6b{word-spacing:-0.320000pt;}
.ws4d{word-spacing:-0.288000pt;}
.wsf5{word-spacing:-0.280000pt;}
.ws90{word-spacing:-0.266667pt;}
.ws43{word-spacing:-0.240000pt;}
.wse0{word-spacing:-0.213333pt;}
.wse7{word-spacing:-0.200000pt;}
.ws35{word-spacing:-0.192000pt;}
.wscc{word-spacing:-0.190464pt;}
.ws105{word-spacing:-0.160000pt;}
.ws37{word-spacing:-0.144000pt;}
.ws10b{word-spacing:-0.120000pt;}
.ws7c{word-spacing:-0.106667pt;}
.ws44{word-spacing:-0.096000pt;}
.ws116{word-spacing:-0.080000pt;}
.wsdf{word-spacing:-0.053333pt;}
.ws26{word-spacing:-0.048000pt;}
.ws115{word-spacing:-0.040000pt;}
.ws9{word-spacing:0.000000pt;}
.wse9{word-spacing:0.040000pt;}
.wsf{word-spacing:0.048000pt;}
.ws7e{word-spacing:0.096000pt;}
.ws3f{word-spacing:0.106667pt;}
.ws109{word-spacing:0.120000pt;}
.ws6a{word-spacing:0.144000pt;}
.ws8b{word-spacing:0.160000pt;}
.ws49{word-spacing:0.192000pt;}
.ws10c{word-spacing:0.200000pt;}
.ws3d{word-spacing:0.240000pt;}
.wscf{word-spacing:0.266667pt;}
.ws71{word-spacing:0.288000pt;}
.wseb{word-spacing:0.320000pt;}
.ws73{word-spacing:0.336000pt;}
.wse3{word-spacing:0.360000pt;}
.wsde{word-spacing:0.373333pt;}
.ws11{word-spacing:0.384000pt;}
.ws15{word-spacing:0.432000pt;}
.wsf2{word-spacing:0.440000pt;}
.wsf1{word-spacing:0.480000pt;}
.ws107{word-spacing:0.520000pt;}
.ws4a{word-spacing:0.528000pt;}
.ws104{word-spacing:0.560000pt;}
.ws92{word-spacing:0.576000pt;}
.ws114{word-spacing:0.600000pt;}
.ws16{word-spacing:0.624000pt;}
.wsec{word-spacing:0.640000pt;}
.wscb{word-spacing:0.666624pt;}
.ws30{word-spacing:0.672000pt;}
.ws46{word-spacing:0.693333pt;}
.ws6d{word-spacing:0.720000pt;}
.ws112{word-spacing:0.760000pt;}
.ws8a{word-spacing:0.768000pt;}
.ws55{word-spacing:0.816000pt;}
.wse6{word-spacing:0.840000pt;}
.ws3c{word-spacing:0.864000pt;}
.ws89{word-spacing:0.912000pt;}
.ws21{word-spacing:0.952000pt;}
.ws31{word-spacing:0.960000pt;}
.ws12{word-spacing:1.008000pt;}
.ws6f{word-spacing:1.056000pt;}
.ws111{word-spacing:1.080000pt;}
.ws74{word-spacing:1.120000pt;}
.wsb8{word-spacing:1.152000pt;}
.ws10a{word-spacing:1.160000pt;}
.ws11a{word-spacing:1.200000pt;}
.wsf0{word-spacing:1.240000pt;}
.ws3b{word-spacing:1.248000pt;}
.wsc9{word-spacing:1.285632pt;}
.ws6e{word-spacing:1.296000pt;}
.ws33{word-spacing:1.344000pt;}
.wsc1{word-spacing:1.428480pt;}
.ws70{word-spacing:1.440000pt;}
.ws10d{word-spacing:1.560000pt;}
.wse2{word-spacing:1.600000pt;}
.ws72{word-spacing:2.160000pt;}
.wsd2{word-spacing:3.360000pt;}
.wsba{word-spacing:3.618816pt;}
.ws47{word-spacing:3.984000pt;}
.wsbf{word-spacing:4.047360pt;}
.ws106{word-spacing:5.560000pt;}
.wsd3{word-spacing:8.928000pt;}
.wsae{word-spacing:28.784000pt;}
.ws77{word-spacing:28.858667pt;}
.ws9b{word-spacing:84.373333pt;}
.ws9a{word-spacing:93.333333pt;}
.wsa5{word-spacing:125.888000pt;}
.wsa7{word-spacing:130.368000pt;}
.wsa4{word-spacing:138.320000pt;}
.wsa9{word-spacing:139.813333pt;}
.ws9d{word-spacing:143.285333pt;}
.ws9c{word-spacing:145.189333pt;}
.wsa0{word-spacing:145.413333pt;}
.wsa3{word-spacing:145.936000pt;}
.ws9f{word-spacing:146.981333pt;}
.wsa1{word-spacing:149.072000pt;}
.ws64{word-spacing:217.171733pt;}
.ws65{word-spacing:291.241067pt;}
.wsa8{word-spacing:401.934400pt;}
.wsa6{word-spacing:415.150400pt;}
.wsa2{word-spacing:437.920000pt;}
.ws51{word-spacing:578.218667pt;}
.ws53{word-spacing:690.442667pt;}
._5a{margin-left:-37.847381pt;}
._10{margin-left:-12.123200pt;}
._9{margin-left:-10.975467pt;}
._7{margin-left:-9.792000pt;}
._2{margin-left:-8.486400pt;}
._11{margin-left:-6.778133pt;}
._4{margin-left:-5.077867pt;}
._3{margin-left:-4.002133pt;}
._1{margin-left:-2.912000pt;}
._0{margin-left:-1.578667pt;}
._5{width:1.045867pt;}
._6{width:2.524267pt;}
._b{width:4.604800pt;}
._a{width:6.342933pt;}
._5c{width:8.597867pt;}
._d{width:9.716800pt;}
._c{width:10.795200pt;}
._22{width:11.692267pt;}
._13{width:29.717333pt;}
._5b{width:41.765867pt;}
._8{width:42.744533pt;}
._14{width:43.701333pt;}
._25{width:58.014933pt;}
._51{width:87.285333pt;}
._36{width:91.578667pt;}
._1e{width:111.786667pt;}
._1c{width:127.361600pt;}
._42{width:128.762667pt;}
._41{width:131.712000pt;}
._3a{width:140.224000pt;}
._3c{width:148.213333pt;}
._43{width:149.898133pt;}
._12{width:151.019733pt;}
._4b{width:166.357333pt;}
._3d{width:177.983467pt;}
._3e{width:192.080000pt;}
._28{width:207.984000pt;}
._26{width:209.514667pt;}
._2e{width:210.709333pt;}
._3f{width:220.389333pt;}
._40{width:224.048000pt;}
._15{width:228.361067pt;}
._4d{width:238.522667pt;}
._1a{width:239.836800pt;}
._44{width:241.845333pt;}
._30{width:246.960000pt;}
._53{width:248.826667pt;}
._49{width:252.074667pt;}
._1f{width:259.141333pt;}
._20{width:263.098667pt;}
._33{width:269.658667pt;}
._38{width:271.002667pt;}
._31{width:273.450667pt;}
._21{width:274.400000pt;}
._4f{width:281.904000pt;}
._56{width:286.533333pt;}
._1b{width:290.385600pt;}
._19{width:294.754133pt;}
._18{width:298.571733pt;}
._2a{width:316.586667pt;}
._2c{width:321.664000pt;}
._32{width:323.120000pt;}
._46{width:324.949333pt;}
._24{width:325.918933pt;}
._47{width:334.192000pt;}
._37{width:338.096000pt;}
._3b{width:343.888000pt;}
._17{width:345.781333pt;}
._16{width:348.357333pt;}
._23{width:376.170133pt;}
._1d{width:384.906667pt;}
._4c{width:388.378667pt;}
._48{width:414.026667pt;}
._e{width:425.376000pt;}
._58{width:442.085333pt;}
._59{width:443.157333pt;}
._f{width:453.114667pt;}
._29{width:454.917333pt;}
._27{width:456.000000pt;}
._2f{width:457.680000pt;}
._35{width:474.752000pt;}
._54{width:481.423467pt;}
._4e{width:486.064000pt;}
._45{width:489.189333pt;}
._4a{width:499.156800pt;}
._50{width:515.024000pt;}
._34{width:516.304000pt;}
._39{width:518.554667pt;}
._57{width:520.074667pt;}
._55{width:531.668267pt;}
._52{width:554.532800pt;}
._2b{width:563.866667pt;}
._2d{width:569.055467pt;}
.fsc{font-size:24.266667pt;}
.fs10{font-size:26.000000pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.200000pt;}
.fs4{font-size:34.666667pt;}
.fsb{font-size:37.333333pt;}
.fsf{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fsd{font-size:47.616000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fse{font-size:85.333333pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y1dd{bottom:3.840133pt;}
.y1dc{bottom:4.219525pt;}
.y1d7{bottom:21.504133pt;}
.y1d2{bottom:22.272133pt;}
.y1{bottom:24.175867pt;}
.y2{bottom:24.225600pt;}
.y2f{bottom:60.728800pt;}
.y77{bottom:60.945333pt;}
.y164{bottom:63.817600pt;}
.y13f{bottom:64.489600pt;}
.y7f{bottom:65.269333pt;}
.y112{bottom:68.484267pt;}
.y1cf{bottom:69.152267pt;}
.y15b{bottom:69.818933pt;}
.y2e{bottom:74.056800pt;}
.y76{bottom:74.277333pt;}
.y2a7{bottom:74.746267pt;}
.y215{bottom:76.934667pt;}
.y163{bottom:77.149600pt;}
.y13e{bottom:77.821600pt;}
.y7e{bottom:78.601333pt;}
.yde{bottom:80.488267pt;}
.y111{bottom:81.821600pt;}
.y257{bottom:82.396667pt;}
.y1ce{bottom:82.484267pt;}
.y15a{bottom:83.150933pt;}
.ybe{bottom:84.274667pt;}
.y2a6{bottom:86.076267pt;}
.y2d{bottom:87.384800pt;}
.y75{bottom:87.609333pt;}
.y214{bottom:90.268000pt;}
.y13d{bottom:91.153600pt;}
.y7d{bottom:91.937333pt;}
.y256{bottom:93.726667pt;}
.ydd{bottom:93.820267pt;}
.y110{bottom:95.153600pt;}
.y1cd{bottom:95.825600pt;}
.y159{bottom:96.486933pt;}
.y2a5{bottom:97.406267pt;}
.ybd{bottom:97.606667pt;}
.y2c{bottom:100.718133pt;}
.y74{bottom:100.941333pt;}
.yfc{bottom:101.678667pt;}
.y213{bottom:103.602667pt;}
.y13c{bottom:104.485600pt;}
.y255{bottom:105.056667pt;}
.y7c{bottom:105.269333pt;}
.ydc{bottom:107.152267pt;}
.y10f{bottom:108.485600pt;}
.y2a4{bottom:108.736267pt;}
.y1cc{bottom:109.157600pt;}
.y158{bottom:109.818933pt;}
.ybc{bottom:110.938667pt;}
.y73{bottom:114.273333pt;}
.yfb{bottom:115.010667pt;}
.y254{bottom:116.386667pt;}
.y212{bottom:116.934667pt;}
.y13b{bottom:117.817600pt;}
.y2b{bottom:117.899467pt;}
.y7b{bottom:118.601333pt;}
.y2a3{bottom:120.066267pt;}
.ydb{bottom:120.484267pt;}
.y10e{bottom:121.817600pt;}
.y1cb{bottom:122.489600pt;}
.y157{bottom:123.150933pt;}
.ybb{bottom:124.270667pt;}
.y2a{bottom:127.384800pt;}
.y72{bottom:127.605333pt;}
.y253{bottom:127.716667pt;}
.y198{bottom:127.817600pt;}
.yfa{bottom:128.342667pt;}
.y211{bottom:130.266667pt;}
.y13a{bottom:131.154933pt;}
.y2a2{bottom:131.396267pt;}
.y7a{bottom:131.933333pt;}
.yda{bottom:133.817600pt;}
.y10d{bottom:135.156267pt;}
.y1ca{bottom:135.821600pt;}
.y156{bottom:136.485600pt;}
.yba{bottom:137.602667pt;}
.y252{bottom:139.046667pt;}
.y71{bottom:140.937333pt;}
.y197{bottom:141.150933pt;}
.yf9{bottom:141.674667pt;}
.y2a1{bottom:142.726267pt;}
.y139{bottom:144.486933pt;}
.y29{bottom:144.566133pt;}
.yd9{bottom:147.153600pt;}
.y10c{bottom:148.488267pt;}
.y1c9{bottom:149.153600pt;}
.y155{bottom:149.817600pt;}
.y251{bottom:150.376667pt;}
.yb9{bottom:150.934667pt;}
.y2a0{bottom:154.056267pt;}
.y210{bottom:154.268000pt;}
.y70{bottom:154.269333pt;}
.y196{bottom:154.482933pt;}
.yf8{bottom:155.006667pt;}
.y138{bottom:157.818933pt;}
.y79{bottom:158.804267pt;}
.yd8{bottom:160.485600pt;}
.y250{bottom:161.706667pt;}
.y10b{bottom:161.820267pt;}
.y1c8{bottom:162.485600pt;}
.y154{bottom:163.152267pt;}
.yb8{bottom:164.270667pt;}
.y29f{bottom:165.386267pt;}
.y6f{bottom:167.601333pt;}
.yf7{bottom:168.338667pt;}
.y137{bottom:171.150933pt;}
.y78{bottom:172.136267pt;}
.y24f{bottom:173.036667pt;}
.yd7{bottom:173.817600pt;}
.y10a{bottom:175.152267pt;}
.y1c7{bottom:175.817600pt;}
.y153{bottom:176.484267pt;}
.y28{bottom:176.610933pt;}
.y29e{bottom:176.716267pt;}
.yb7{bottom:177.602667pt;}
.y20f{bottom:180.934667pt;}
.y6e{bottom:180.936000pt;}
.y195{bottom:181.258933pt;}
.y24e{bottom:184.366667pt;}
.y136{bottom:184.496267pt;}
.yd6{bottom:187.150933pt;}
.y29d{bottom:188.046267pt;}
.y109{bottom:188.484267pt;}
.y1c6{bottom:189.150933pt;}
.y152{bottom:189.822933pt;}
.y27{bottom:189.942933pt;}
.yb6{bottom:190.934667pt;}
.y6d{bottom:194.268000pt;}
.y24d{bottom:195.696667pt;}
.yf6{bottom:195.745467pt;}
.y194{bottom:196.761600pt;}
.y135{bottom:197.828267pt;}
.y29c{bottom:199.376267pt;}
.yd5{bottom:200.488267pt;}
.y108{bottom:201.817600pt;}
.y1c5{bottom:202.484267pt;}
.y151{bottom:203.154933pt;}
.y26{bottom:203.276267pt;}
.yb5{bottom:204.274667pt;}
.y24c{bottom:207.026667pt;}
.y20e{bottom:207.602667pt;}
.y6c{bottom:207.612000pt;}
.yf5{bottom:209.081467pt;}
.y29b{bottom:210.706267pt;}
.y134{bottom:211.160267pt;}
.y193{bottom:212.264267pt;}
.yd4{bottom:213.820267pt;}
.y107{bottom:215.150933pt;}
.y1c4{bottom:215.817600pt;}
.y150{bottom:216.486933pt;}
.y25{bottom:216.609600pt;}
.yb4{bottom:217.606667pt;}
.y24b{bottom:218.356667pt;}
.y20d{bottom:220.934667pt;}
.y6b{bottom:220.944000pt;}
.y29a{bottom:222.036267pt;}
.yf4{bottom:222.413467pt;}
.y133{bottom:224.492267pt;}
.y93{bottom:224.637600pt;}
.yd3{bottom:227.152267pt;}
.y192{bottom:227.766933pt;}
.y106{bottom:228.484267pt;}
.y1c3{bottom:229.153600pt;}
.y24a{bottom:229.686667pt;}
.y14f{bottom:229.818933pt;}
.y24{bottom:229.942933pt;}
.yb3{bottom:230.938667pt;}
.y299{bottom:233.366267pt;}
.y20c{bottom:234.269333pt;}
.y6a{bottom:234.276000pt;}
.yf3{bottom:235.745467pt;}
.y132{bottom:237.824267pt;}
.y92{bottom:237.969600pt;}
.yd2{bottom:240.484267pt;}
.y249{bottom:241.016667pt;}
.y105{bottom:241.818933pt;}
.y1c2{bottom:242.485600pt;}
.y14e{bottom:243.150933pt;}
.y191{bottom:243.269600pt;}
.y23{bottom:243.277600pt;}
.yb2{bottom:244.270667pt;}
.y298{bottom:244.696267pt;}
.y20b{bottom:247.601333pt;}
.y69{bottom:247.608000pt;}
.yf2{bottom:249.082800pt;}
.y131{bottom:251.156267pt;}
.y248{bottom:252.346667pt;}
.yd1{bottom:253.816267pt;}
.y104{bottom:255.150933pt;}
.y1c1{bottom:255.817600pt;}
.y297{bottom:256.026267pt;}
.y14d{bottom:256.484267pt;}
.y22{bottom:256.609600pt;}
.yb1{bottom:257.602667pt;}
.y190{bottom:258.772267pt;}
.y20a{bottom:260.933333pt;}
.y68{bottom:260.940000pt;}
.yf1{bottom:262.414800pt;}
.y247{bottom:263.676667pt;}
.y130{bottom:264.488267pt;}
.y91{bottom:264.792267pt;}
.y296{bottom:267.356267pt;}
.y103{bottom:268.482933pt;}
.y1c0{bottom:269.149600pt;}
.y14c{bottom:269.820267pt;}
.y21{bottom:269.942933pt;}
.yb0{bottom:270.934667pt;}
.y67{bottom:274.272000pt;}
.y18f{bottom:274.274933pt;}
.y246{bottom:275.006667pt;}
.yf0{bottom:275.746800pt;}
.y12f{bottom:277.820267pt;}
.y295{bottom:278.686267pt;}
.y90{bottom:280.294933pt;}
.y102{bottom:281.816267pt;}
.y14b{bottom:283.152267pt;}
.y20{bottom:283.277600pt;}
.yaf{bottom:284.269333pt;}
.y209{bottom:285.909867pt;}
.y245{bottom:286.336667pt;}
.y66{bottom:287.604000pt;}
.yef{bottom:289.078800pt;}
.y18e{bottom:289.777600pt;}
.y294{bottom:290.016267pt;}
.y12e{bottom:291.152267pt;}
.y8f{bottom:295.797600pt;}
.y14a{bottom:296.484267pt;}
.y1f{bottom:296.609600pt;}
.yae{bottom:297.601333pt;}
.y244{bottom:297.666667pt;}
.y1bf{bottom:298.482933pt;}
.y208{bottom:299.241867pt;}
.y65{bottom:300.936000pt;}
.y293{bottom:301.346267pt;}
.yee{bottom:302.414800pt;}
.y12d{bottom:304.484267pt;}
.y18d{bottom:305.280267pt;}
.ye3{bottom:306.933733pt;}
.y243{bottom:308.996667pt;}
.y149{bottom:309.816267pt;}
.y1e{bottom:309.944267pt;}
.yad{bottom:310.933333pt;}
.y8e{bottom:311.300267pt;}
.y1be{bottom:311.816267pt;}
.y207{bottom:312.577867pt;}
.y292{bottom:312.676267pt;}
.y64{bottom:314.268000pt;}
.yed{bottom:315.746800pt;}
.y12c{bottom:317.821600pt;}
.ye2{bottom:320.269733pt;}
.y242{bottom:320.326667pt;}
.y18c{bottom:320.782933pt;}
.y1d{bottom:323.276267pt;}
.y291{bottom:324.006267pt;}
.y206{bottom:325.909867pt;}
.y8d{bottom:326.802933pt;}
.y63{bottom:327.600000pt;}
.yec{bottom:329.078800pt;}
.y12b{bottom:331.153600pt;}
.y241{bottom:331.656667pt;}
.ye1{bottom:333.601733pt;}
.y290{bottom:335.336267pt;}
.yac{bottom:336.050800pt;}
.y18b{bottom:336.285600pt;}
.y1c{bottom:336.610933pt;}
.y11c{bottom:337.036400pt;}
.y205{bottom:339.241867pt;}
.y1bd{bottom:341.157600pt;}
.yeb{bottom:342.410800pt;}
.y240{bottom:342.986667pt;}
.y12a{bottom:344.485600pt;}
.y28f{bottom:346.666267pt;}
.ye0{bottom:346.933733pt;}
.yab{bottom:349.382800pt;}
.y1b{bottom:349.942933pt;}
.y11b{bottom:350.368400pt;}
.y18a{bottom:351.788267pt;}
.y204{bottom:352.573867pt;}
.y23f{bottom:354.316667pt;}
.y62{bottom:354.384133pt;}
.y1bc{bottom:354.489600pt;}
.y162{bottom:357.551067pt;}
.y129{bottom:357.817600pt;}
.y28e{bottom:357.996267pt;}
.ydf{bottom:360.265733pt;}
.yaa{bottom:362.714800pt;}
.y1a{bottom:363.276267pt;}
.y11a{bottom:363.700400pt;}
.y23e{bottom:365.646667pt;}
.y189{bottom:367.290933pt;}
.y61{bottom:367.716133pt;}
.y1bb{bottom:367.821600pt;}
.y28d{bottom:369.326267pt;}
.yea{bottom:369.817600pt;}
.y161{bottom:370.883067pt;}
.y128{bottom:371.149600pt;}
.ya9{bottom:376.046800pt;}
.y19{bottom:376.609600pt;}
.y23d{bottom:376.976667pt;}
.y119{bottom:377.032400pt;}
.y203{bottom:377.551600pt;}
.y8c{bottom:380.119067pt;}
.y28c{bottom:380.656267pt;}
.y60{bottom:381.048133pt;}
.y1ba{bottom:381.153600pt;}
.y188{bottom:382.793600pt;}
.ye9{bottom:383.150933pt;}
.y160{bottom:384.215067pt;}
.y127{bottom:384.482933pt;}
.y23c{bottom:388.306667pt;}
.ya8{bottom:389.378800pt;}
.y18{bottom:389.976267pt;}
.y118{bottom:390.364400pt;}
.y202{bottom:390.883600pt;}
.y28b{bottom:391.986267pt;}
.y8b{bottom:393.451067pt;}
.y5f{bottom:394.380133pt;}
.y1b9{bottom:394.485600pt;}
.ye8{bottom:396.484267pt;}
.y15f{bottom:397.547067pt;}
.y187{bottom:398.296267pt;}
.y23b{bottom:399.636667pt;}
.ya7{bottom:402.710800pt;}
.y28a{bottom:403.316267pt;}
.y117{bottom:403.696400pt;}
.y201{bottom:404.215600pt;}
.y8a{bottom:406.783067pt;}
.y5e{bottom:407.712133pt;}
.y1b8{bottom:407.817600pt;}
.ye7{bottom:409.820267pt;}
.y15e{bottom:410.881733pt;}
.y23a{bottom:410.966667pt;}
.y186{bottom:413.798933pt;}
.y126{bottom:413.828267pt;}
.y289{bottom:414.646267pt;}
.ya6{bottom:416.042800pt;}
.y116{bottom:417.028400pt;}
.y200{bottom:417.552933pt;}
.y89{bottom:420.115067pt;}
.y5d{bottom:421.044133pt;}
.y1b7{bottom:421.150933pt;}
.y239{bottom:422.296667pt;}
.ye6{bottom:423.152267pt;}
.y15d{bottom:424.213733pt;}
.y288{bottom:425.976267pt;}
.y125{bottom:427.160267pt;}
.y185{bottom:429.301600pt;}
.ya5{bottom:429.377467pt;}
.y115{bottom:430.360400pt;}
.y1ff{bottom:430.884933pt;}
.y17{bottom:431.976267pt;}
.y88{bottom:433.447067pt;}
.y238{bottom:433.626667pt;}
.y5c{bottom:434.376133pt;}
.y1b6{bottom:434.484267pt;}
.ye5{bottom:436.484267pt;}
.y287{bottom:437.306267pt;}
.y15c{bottom:437.545733pt;}
.y124{bottom:440.492267pt;}
.ya4{bottom:442.709467pt;}
.y114{bottom:443.692400pt;}
.y1fe{bottom:444.216933pt;}
.y184{bottom:444.804267pt;}
.y237{bottom:444.956667pt;}
.y16{bottom:446.640267pt;}
.y87{bottom:446.779067pt;}
.y5b{bottom:447.713467pt;}
.y1b5{bottom:447.828267pt;}
.y286{bottom:448.636267pt;}
.ye4{bottom:449.816267pt;}
.y123{bottom:453.824267pt;}
.ya3{bottom:456.044133pt;}
.y236{bottom:456.286667pt;}
.y113{bottom:457.024400pt;}
.y1fd{bottom:457.548933pt;}
.y285{bottom:459.966267pt;}
.y86{bottom:460.111067pt;}
.y183{bottom:460.306933pt;}
.y5a{bottom:461.045467pt;}
.y1b4{bottom:461.160267pt;}
.y15{bottom:461.304267pt;}
.y122{bottom:467.156267pt;}
.y235{bottom:467.616667pt;}
.ya2{bottom:469.376133pt;}
.y1fc{bottom:470.882267pt;}
.y284{bottom:471.296267pt;}
.y85{bottom:473.443067pt;}
.y59{bottom:474.377467pt;}
.y1b3{bottom:474.492267pt;}
.y182{bottom:475.809600pt;}
.y14{bottom:475.968267pt;}
.y234{bottom:478.946667pt;}
.y121{bottom:480.488267pt;}
.y283{bottom:482.626267pt;}
.ya1{bottom:482.710800pt;}
.y1fb{bottom:484.216933pt;}
.y84{bottom:486.775067pt;}
.y58{bottom:487.709467pt;}
.y1b2{bottom:487.824267pt;}
.y233{bottom:490.276667pt;}
.y13{bottom:490.632267pt;}
.y181{bottom:491.312267pt;}
.y2c5{bottom:491.821600pt;}
.y120{bottom:493.820267pt;}
.y282{bottom:493.956267pt;}
.ya0{bottom:496.042800pt;}
.y101{bottom:497.335067pt;}
.y1fa{bottom:497.548933pt;}
.y83{bottom:500.107067pt;}
.y57{bottom:501.044133pt;}
.y1b1{bottom:501.156267pt;}
.y232{bottom:501.606667pt;}
.y2c4{bottom:505.153600pt;}
.y281{bottom:505.286267pt;}
.y12{bottom:505.296267pt;}
.y180{bottom:506.814933pt;}
.y11f{bottom:507.152267pt;}
.y9f{bottom:509.376133pt;}
.y100{bottom:510.667067pt;}
.y1f9{bottom:510.880933pt;}
.y231{bottom:512.936667pt;}
.y82{bottom:513.441733pt;}
.y56{bottom:514.376133pt;}
.y1b0{bottom:514.488267pt;}
.y280{bottom:516.616267pt;}
.y2c3{bottom:518.485600pt;}
.y11{bottom:519.960267pt;}
.y11e{bottom:520.484267pt;}
.y17f{bottom:522.317600pt;}
.y9e{bottom:522.714800pt;}
.yff{bottom:524.001733pt;}
.y230{bottom:524.270000pt;}
.y81{bottom:526.773733pt;}
.y55{bottom:527.709467pt;}
.y1af{bottom:527.820267pt;}
.y27f{bottom:527.946267pt;}
.y2c2{bottom:531.817600pt;}
.y11d{bottom:533.816267pt;}
.y10{bottom:534.624267pt;}
.y22f{bottom:535.600000pt;}
.y1f8{bottom:535.858800pt;}
.y9d{bottom:536.046800pt;}
.yfe{bottom:537.333733pt;}
.y17e{bottom:537.820267pt;}
.y27e{bottom:539.276267pt;}
.y80{bottom:540.105733pt;}
.y54{bottom:541.042800pt;}
.y1ae{bottom:541.152267pt;}
.y2c1{bottom:545.149600pt;}
.y22e{bottom:546.933333pt;}
.y1f7{bottom:549.190800pt;}
.yf{bottom:549.288267pt;}
.y9c{bottom:549.378800pt;}
.y27d{bottom:550.606267pt;}
.yfd{bottom:550.665733pt;}
.y17d{bottom:553.322933pt;}
.y53{bottom:554.377467pt;}
.y1ad{bottom:554.484267pt;}
.y27c{bottom:561.936267pt;}
.y1f6{bottom:562.522800pt;}
.y9b{bottom:562.710800pt;}
.ye{bottom:563.952267pt;}
.y2c0{bottom:564.489600pt;}
.y52{bottom:567.709467pt;}
.y1ac{bottom:567.817600pt;}
.y17c{bottom:568.825600pt;}
.y27b{bottom:573.266267pt;}
.y22d{bottom:575.111200pt;}
.y1f5{bottom:575.856133pt;}
.y9a{bottom:576.042800pt;}
.y2bf{bottom:577.821600pt;}
.yd{bottom:578.616267pt;}
.y51{bottom:581.041467pt;}
.y1ab{bottom:581.152267pt;}
.y148{bottom:584.001733pt;}
.y17b{bottom:584.318933pt;}
.y27a{bottom:584.596267pt;}
.y22c{bottom:588.444533pt;}
.y1f4{bottom:589.189467pt;}
.y17a{bottom:589.312267pt;}
.y99{bottom:589.376133pt;}
.yc{bottom:593.280267pt;}
.y50{bottom:594.374800pt;}
.y1aa{bottom:594.484267pt;}
.y279{bottom:595.926267pt;}
.y2be{bottom:597.153600pt;}
.y147{bottom:597.333733pt;}
.y22b{bottom:601.777867pt;}
.y1f3{bottom:602.522800pt;}
.y98{bottom:602.708133pt;}
.y278{bottom:607.256267pt;}
.y1a9{bottom:607.817600pt;}
.yb{bottom:607.944267pt;}
.y179{bottom:609.808267pt;}
.y146{bottom:610.668400pt;}
.y22a{bottom:615.109867pt;}
.y1f2{bottom:615.856133pt;}
.y97{bottom:616.041467pt;}
.y2bd{bottom:616.485600pt;}
.y277{bottom:618.586267pt;}
.y1a8{bottom:621.152267pt;}
.y4f{bottom:621.160267pt;}
.ya{bottom:622.608267pt;}
.y145{bottom:624.000400pt;}
.y178{bottom:625.310933pt;}
.y1f1{bottom:629.189467pt;}
.y276{bottom:629.916267pt;}
.y1a7{bottom:634.484267pt;}
.y4e{bottom:634.492267pt;}
.y2bc{bottom:635.817600pt;}
.y144{bottom:637.337733pt;}
.y177{bottom:640.813600pt;}
.y96{bottom:641.152267pt;}
.y275{bottom:641.246267pt;}
.y1f0{bottom:642.521467pt;}
.y229{bottom:643.291733pt;}
.y1a6{bottom:647.817600pt;}
.y4d{bottom:647.824267pt;}
.y2bb{bottom:649.149600pt;}
.y9{bottom:649.274933pt;}
.y143{bottom:650.669733pt;}
.y274{bottom:652.576267pt;}
.y95{bottom:654.484267pt;}
.y176{bottom:656.310933pt;}
.y228{bottom:656.623733pt;}
.y1a5{bottom:661.150933pt;}
.y4c{bottom:661.156267pt;}
.y2ba{bottom:662.482933pt;}
.y273{bottom:663.906267pt;}
.y142{bottom:664.001733pt;}
.y8{bottom:665.274933pt;}
.y1ef{bottom:667.498000pt;}
.y94{bottom:667.816267pt;}
.y227{bottom:669.955733pt;}
.y175{bottom:671.804267pt;}
.y32{bottom:672.933333pt;}
.y1a4{bottom:674.486933pt;}
.y4b{bottom:674.488267pt;}
.y272{bottom:675.236267pt;}
.y174{bottom:676.797600pt;}
.y141{bottom:677.333733pt;}
.y1ee{bottom:680.830000pt;}
.y226{bottom:683.287733pt;}
.y2b9{bottom:686.485600pt;}
.y271{bottom:686.566267pt;}
.y1a3{bottom:687.818933pt;}
.y4a{bottom:687.820267pt;}
.y140{bottom:690.665733pt;}
.y31{bottom:691.600000pt;}
.y1ed{bottom:694.163333pt;}
.y7{bottom:694.592267pt;}
.y225{bottom:696.619733pt;}
.y173{bottom:697.293600pt;}
.y270{bottom:697.896267pt;}
.y2b8{bottom:699.817600pt;}
.y1a2{bottom:701.150933pt;}
.y49{bottom:701.152267pt;}
.y1ec{bottom:707.498000pt;}
.y26f{bottom:709.226267pt;}
.y30{bottom:710.266667pt;}
.yd0{bottom:712.482933pt;}
.y172{bottom:712.796267pt;}
.y2b7{bottom:713.149600pt;}
.y48{bottom:714.484267pt;}
.y26e{bottom:720.556267pt;}
.y1eb{bottom:720.830000pt;}
.y224{bottom:724.804400pt;}
.y2b6{bottom:726.482933pt;}
.y47{bottom:727.817600pt;}
.y171{bottom:728.298933pt;}
.y26d{bottom:731.886267pt;}
.y1ea{bottom:734.163333pt;}
.y6{bottom:734.597600pt;}
.y223{bottom:738.136400pt;}
.ycf{bottom:739.340267pt;}
.y46{bottom:741.156267pt;}
.y26c{bottom:743.216267pt;}
.y170{bottom:743.801600pt;}
.y1e9{bottom:747.498000pt;}
.y2b5{bottom:750.490933pt;}
.y222{bottom:751.468400pt;}
.y45{bottom:754.488267pt;}
.y26b{bottom:754.546267pt;}
.yce{bottom:754.842933pt;}
.y16f{bottom:759.304267pt;}
.y1e8{bottom:760.830000pt;}
.y2b4{bottom:763.822933pt;}
.y221{bottom:764.800400pt;}
.y26a{bottom:765.876267pt;}
.y44{bottom:767.820267pt;}
.ycd{bottom:770.345600pt;}
.y1e7{bottom:774.162000pt;}
.y5{bottom:774.602933pt;}
.y16e{bottom:774.797600pt;}
.ycc{bottom:775.338933pt;}
.y2b3{bottom:777.154933pt;}
.y269{bottom:777.206267pt;}
.y220{bottom:778.132400pt;}
.y16d{bottom:779.790933pt;}
.y43{bottom:781.152267pt;}
.y268{bottom:788.536267pt;}
.y2b2{bottom:790.486933pt;}
.y21f{bottom:791.464400pt;}
.y42{bottom:794.484267pt;}
.ycb{bottom:795.834933pt;}
.y1e6{bottom:799.137067pt;}
.y267{bottom:799.866267pt;}
.y16c{bottom:800.286933pt;}
.yca{bottom:800.828267pt;}
.y2b1{bottom:803.818933pt;}
.y21e{bottom:804.796400pt;}
.y1a1{bottom:807.817600pt;}
.y41{bottom:807.818933pt;}
.y266{bottom:811.196267pt;}
.y1e5{bottom:812.473067pt;}
.y4{bottom:814.608267pt;}
.y16b{bottom:815.789600pt;}
.y2b0{bottom:817.150933pt;}
.y40{bottom:821.150933pt;}
.yc9{bottom:821.324267pt;}
.y265{bottom:822.526267pt;}
.y33{bottom:823.475200pt;}
.y1e4{bottom:825.805067pt;}
.yc8{bottom:826.317600pt;}
.y2af{bottom:830.482933pt;}
.y16a{bottom:831.292267pt;}
.y21d{bottom:832.975600pt;}
.y264{bottom:833.856267pt;}
.y3f{bottom:834.485600pt;}
.y1a0{bottom:834.489600pt;}
.y1e3{bottom:839.137067pt;}
.y2ae{bottom:843.816267pt;}
.y263{bottom:845.186267pt;}
.y21c{bottom:846.307600pt;}
.y169{bottom:846.794933pt;}
.yc7{bottom:846.813600pt;}
.y3e{bottom:847.817600pt;}
.y19f{bottom:847.821600pt;}
.y1e2{bottom:852.471733pt;}
.y262{bottom:856.516267pt;}
.y21b{bottom:859.639600pt;}
.y3d{bottom:861.150933pt;}
.y19e{bottom:861.153600pt;}
.y168{bottom:862.297600pt;}
.yc6{bottom:862.313600pt;}
.y1e1{bottom:865.803733pt;}
.y2ad{bottom:867.836267pt;}
.y261{bottom:867.846267pt;}
.y3c{bottom:874.484267pt;}
.y19d{bottom:874.485600pt;}
.y167{bottom:877.800267pt;}
.yc5{bottom:877.813600pt;}
.y1e0{bottom:879.138400pt;}
.y2ac{bottom:879.166267pt;}
.y260{bottom:879.176267pt;}
.y19c{bottom:887.817600pt;}
.y3b{bottom:887.818933pt;}
.y21a{bottom:887.820267pt;}
.y2ab{bottom:890.496267pt;}
.y25f{bottom:890.506267pt;}
.y1df{bottom:892.470400pt;}
.y166{bottom:893.302933pt;}
.yc4{bottom:893.313600pt;}
.y3a{bottom:901.150933pt;}
.y219{bottom:901.152267pt;}
.y19b{bottom:901.153600pt;}
.y2aa{bottom:901.826267pt;}
.y25e{bottom:901.836267pt;}
.y1de{bottom:905.802400pt;}
.y165{bottom:908.805600pt;}
.yc3{bottom:908.813600pt;}
.y2a9{bottom:913.156267pt;}
.y25d{bottom:913.166267pt;}
.y218{bottom:914.484267pt;}
.y19a{bottom:914.485600pt;}
.y39{bottom:914.486933pt;}
.yc2{bottom:924.308267pt;}
.y2a8{bottom:924.486267pt;}
.y25c{bottom:924.496267pt;}
.y199{bottom:927.817600pt;}
.y38{bottom:927.818933pt;}
.y217{bottom:927.820267pt;}
.y1d1{bottom:935.318667pt;}
.y25b{bottom:935.826267pt;}
.yc1{bottom:939.810933pt;}
.y1d3{bottom:940.310933pt;}
.y37{bottom:941.150933pt;}
.y216{bottom:941.152267pt;}
.y1d6{bottom:941.465621pt;}
.y1da{bottom:942.989333pt;}
.y1d5{bottom:945.691541pt;}
.y25a{bottom:947.156267pt;}
.y1d9{bottom:947.215253pt;}
.y1db{bottom:949.131797pt;}
.y1d0{bottom:949.142800pt;}
.y1d4{bottom:950.679317pt;}
.y1d8{bottom:951.441173pt;}
.y36{bottom:954.484267pt;}
.yc0{bottom:955.313600pt;}
.y259{bottom:958.486267pt;}
.y35{bottom:967.816267pt;}
.y258{bottom:969.816267pt;}
.ybf{bottom:970.816267pt;}
.y34{bottom:1013.202667pt;}
.y3{bottom:1013.446133pt;}
.hc{height:21.193555pt;}
.h1d{height:26.581333pt;}
.h18{height:26.656000pt;}
.h19{height:26.730667pt;}
.h29{height:26.752000pt;}
.h1a{height:28.000000pt;}
.h31{height:28.640000pt;}
.h21{height:29.875200pt;}
.h1f{height:29.981867pt;}
.h33{height:30.000000pt;}
.h1e{height:30.003200pt;}
.h28{height:30.019733pt;}
.h3{height:30.687500pt;}
.h34{height:32.176000pt;}
.h32{height:32.202667pt;}
.he{height:32.605469pt;}
.h2b{height:32.640000pt;}
.h2d{height:34.093056pt;}
.h1b{height:34.272000pt;}
.ha{height:34.368000pt;}
.h7{height:34.523438pt;}
.h2a{height:35.712000pt;}
.h24{height:35.978667pt;}
.h23{height:35.984000pt;}
.h15{height:35.989333pt;}
.h25{height:35.994667pt;}
.h12{height:36.000000pt;}
.hd{height:36.585555pt;}
.h2{height:38.359375pt;}
.h8{height:38.520533pt;}
.h2e{height:38.523733pt;}
.h27{height:38.605867pt;}
.h26{height:38.611200pt;}
.h16{height:38.621867pt;}
.h13{height:38.632533pt;}
.h22{height:38.637867pt;}
.h17{height:38.642667pt;}
.h11{height:38.643200pt;}
.h1c{height:38.648000pt;}
.hb{height:38.648533pt;}
.h30{height:38.653333pt;}
.h9{height:38.653867pt;}
.h10{height:38.659200pt;}
.h2c{height:38.807040pt;}
.h4{height:39.318359pt;}
.h14{height:42.195312pt;}
.h6{height:43.066927pt;}
.h2f{height:45.082667pt;}
.h20{height:46.741333pt;}
.hf{height:69.046875pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w2{width:532.608000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:54.392400pt;}
.x6{left:78.178800pt;}
.x7{left:84.002800pt;}
.x8{left:85.741467pt;}
.x9{left:125.291333pt;}
.x4{left:207.516800pt;}
.xa{left:211.683467pt;}
.x12{left:215.039733pt;}
.x17{left:221.183733pt;}
.x5{left:223.513333pt;}
.x18{left:267.276021pt;}
.x16{left:298.992523pt;}
.x14{left:301.439733pt;}
.xe{left:307.987067pt;}
.xf{left:330.825733pt;}
.x10{left:355.740533pt;}
.x11{left:409.197067pt;}
.x13{left:422.253067pt;}
.x1a{left:518.399733pt;}
.x3{left:519.632533pt;}
.xc{left:592.691467pt;}
.x15{left:598.509067pt;}
.x19{left:603.885067pt;}
.xd{left:725.336533pt;}
.x1b{left:726.469467pt;}
.xb{left:732.628800pt;}
.x1{left:733.540267pt;}
}




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