
    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_422f01581873ce68e4e25017.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_1548f0db79bc254c76358b06.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8853c5a1383dd260dc440c24.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;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_65531a1559fdb2eb44c74150.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_fca2b69ed973099ea5c3d734.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;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_d0e4692363590bb273773b34.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_a2118704b2b48d1f647c4cdf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_95680bf115802ab5e9813aee.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_4a9225b4c17614168478f9ee.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_505a18f48c40b09a6c4a5090.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.882324;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_9a03e230d154d2177098627f.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_3763d139cd3e8259716560d8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938965;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_e113d9c41cde83e44dc9c4c3.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_74c18f290a5397241195b25d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.939453;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_7dee0e5e8833968df5e58d22.woff2')format("woff");}.fff{font-family:fff;line-height:0.938965;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_74c18f290a5397241195b25d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.250003,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250003,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250003,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v6{vertical-align:-21.984000px;}
.v2{vertical-align:-11.697000px;}
.v7{vertical-align:-4.183200px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.620000px;}
.v3{vertical-align:11.697000px;}
.v1{vertical-align:28.194000px;}
.v4{vertical-align:41.088000px;}
.v5{vertical-align:82.176000px;}
.ls79{letter-spacing:-7.740000px;}
.ls6e{letter-spacing:-7.440000px;}
.ls5c{letter-spacing:-6.480000px;}
.ls42{letter-spacing:-6.360000px;}
.ls5b{letter-spacing:-5.280000px;}
.ls31{letter-spacing:-5.100000px;}
.ls6d{letter-spacing:-5.040000px;}
.ls7b{letter-spacing:-4.920000px;}
.ls52{letter-spacing:-3.600000px;}
.lsb{letter-spacing:-0.780000px;}
.ls5f{letter-spacing:-0.630000px;}
.ls61{letter-spacing:-0.588000px;}
.ls5e{letter-spacing:-0.504000px;}
.ls5d{letter-spacing:-0.420000px;}
.ls30{letter-spacing:-0.360000px;}
.ls7a{letter-spacing:-0.300000px;}
.ls2f{letter-spacing:-0.240000px;}
.lsa2{letter-spacing:-0.192000px;}
.ls6f{letter-spacing:-0.180000px;}
.ls67{letter-spacing:-0.144000px;}
.ls50{letter-spacing:-0.120000px;}
.ls9d{letter-spacing:-0.096000px;}
.ls51{letter-spacing:-0.060000px;}
.ls7c{letter-spacing:-0.048000px;}
.lsa{letter-spacing:0.000000px;}
.ls59{letter-spacing:0.042000px;}
.ls66{letter-spacing:0.048000px;}
.ls9{letter-spacing:0.060000px;}
.ls60{letter-spacing:0.096000px;}
.ls19{letter-spacing:0.120000px;}
.ls62{letter-spacing:0.144000px;}
.ls26{letter-spacing:0.180000px;}
.ls58{letter-spacing:0.192000px;}
.ls56{letter-spacing:0.209880px;}
.ls35{letter-spacing:0.240000px;}
.ls9e{letter-spacing:0.288000px;}
.ls24{letter-spacing:0.300000px;}
.ls55{letter-spacing:0.304200px;}
.ls54{letter-spacing:0.333600px;}
.ls9a{letter-spacing:0.336000px;}
.ls12{letter-spacing:0.360000px;}
.ls8c{letter-spacing:0.384000px;}
.ls2d{letter-spacing:0.420000px;}
.ls8a{letter-spacing:0.432000px;}
.ls4d{letter-spacing:0.454740px;}
.lsf{letter-spacing:0.480000px;}
.ls41{letter-spacing:0.524700px;}
.ls86{letter-spacing:0.528000px;}
.ls2c{letter-spacing:0.540000px;}
.ls3f{letter-spacing:0.543600px;}
.ls40{letter-spacing:0.559680px;}
.ls80{letter-spacing:0.576000px;}
.ls53{letter-spacing:0.590400px;}
.ls1c{letter-spacing:0.600000px;}
.ls99{letter-spacing:0.624000px;}
.ls15{letter-spacing:0.660000px;}
.ls95{letter-spacing:0.672000px;}
.ls1a{letter-spacing:0.720000px;}
.ls48{letter-spacing:0.724200px;}
.ls89{letter-spacing:0.768000px;}
.ls10{letter-spacing:0.780000px;}
.ls4b{letter-spacing:0.789600px;}
.ls4c{letter-spacing:0.815400px;}
.ls88{letter-spacing:0.816000px;}
.ls2b{letter-spacing:0.840000px;}
.ls82{letter-spacing:0.864000px;}
.ls3c{letter-spacing:0.881400px;}
.ls13{letter-spacing:0.900000px;}
.ls7f{letter-spacing:0.912000px;}
.ls8{letter-spacing:0.960000px;}
.ls8d{letter-spacing:1.008000px;}
.ls1{letter-spacing:1.020000px;}
.ls6{letter-spacing:1.080000px;}
.ls92{letter-spacing:1.104000px;}
.ls7{letter-spacing:1.140000px;}
.ls9c{letter-spacing:1.152000px;}
.ls4f{letter-spacing:1.161000px;}
.ls2e{letter-spacing:1.200000px;}
.ls77{letter-spacing:1.248000px;}
.ls29{letter-spacing:1.260000px;}
.ls47{letter-spacing:1.296000px;}
.ls4a{letter-spacing:1.315200px;}
.ls23{letter-spacing:1.320000px;}
.ls76{letter-spacing:1.344000px;}
.ls22{letter-spacing:1.380000px;}
.ls78{letter-spacing:1.392000px;}
.ls1b{letter-spacing:1.440000px;}
.ls81{letter-spacing:1.488000px;}
.lse{letter-spacing:1.500000px;}
.ls36{letter-spacing:1.560000px;}
.ls74{letter-spacing:1.584000px;}
.ls27{letter-spacing:1.620000px;}
.ls7e{letter-spacing:1.632000px;}
.ls11{letter-spacing:1.680000px;}
.ls8b{letter-spacing:1.728000px;}
.ls14{letter-spacing:1.740000px;}
.ls83{letter-spacing:1.776000px;}
.ls3{letter-spacing:1.800000px;}
.lsd{letter-spacing:1.860000px;}
.ls9b{letter-spacing:1.872000px;}
.ls21{letter-spacing:1.920000px;}
.ls8f{letter-spacing:1.968000px;}
.ls33{letter-spacing:1.980000px;}
.ls7d{letter-spacing:2.016000px;}
.ls45{letter-spacing:2.040000px;}
.ls75{letter-spacing:2.064000px;}
.ls2a{letter-spacing:2.100000px;}
.ls68{letter-spacing:2.160000px;}
.ls73{letter-spacing:2.208000px;}
.ls2{letter-spacing:2.220000px;}
.ls37{letter-spacing:2.280000px;}
.ls87{letter-spacing:2.304000px;}
.ls6b{letter-spacing:2.340000px;}
.ls3b{letter-spacing:2.400000px;}
.ls85{letter-spacing:2.448000px;}
.lsc{letter-spacing:2.460000px;}
.ls0{letter-spacing:2.520000px;}
.ls9f{letter-spacing:2.544000px;}
.ls49{letter-spacing:2.580000px;}
.ls18{letter-spacing:2.640000px;}
.ls94{letter-spacing:2.688000px;}
.ls16{letter-spacing:2.700000px;}
.ls34{letter-spacing:2.760000px;}
.ls3e{letter-spacing:2.820000px;}
.ls1e{letter-spacing:2.880000px;}
.ls93{letter-spacing:2.928000px;}
.ls5{letter-spacing:2.940000px;}
.ls44{letter-spacing:3.000000px;}
.lsa1{letter-spacing:3.024000px;}
.ls20{letter-spacing:3.060000px;}
.ls6a{letter-spacing:3.120000px;}
.ls25{letter-spacing:3.180000px;}
.ls98{letter-spacing:3.216000px;}
.ls69{letter-spacing:3.240000px;}
.ls43{letter-spacing:3.300000px;}
.ls3d{letter-spacing:3.360000px;}
.ls4{letter-spacing:3.420000px;}
.ls17{letter-spacing:3.480000px;}
.ls28{letter-spacing:3.540000px;}
.ls1d{letter-spacing:3.660000px;}
.ls71{letter-spacing:3.720000px;}
.ls8e{letter-spacing:3.744000px;}
.ls70{letter-spacing:3.840000px;}
.ls1f{letter-spacing:4.020000px;}
.ls6c{letter-spacing:4.080000px;}
.ls4e{letter-spacing:4.140000px;}
.ls46{letter-spacing:4.200000px;}
.ls3a{letter-spacing:4.260000px;}
.ls39{letter-spacing:4.440000px;}
.ls96{letter-spacing:4.464000px;}
.ls84{letter-spacing:4.512000px;}
.ls90{letter-spacing:4.992000px;}
.ls57{letter-spacing:5.220000px;}
.ls38{letter-spacing:5.340000px;}
.ls32{letter-spacing:5.460000px;}
.lsa0{letter-spacing:5.568000px;}
.ls91{letter-spacing:5.808000px;}
.ls97{letter-spacing:6.336000px;}
.ls72{letter-spacing:7.560000px;}
.ls64{letter-spacing:37.008000px;}
.ls63{letter-spacing:39.888000px;}
.ls65{letter-spacing:192.096000px;}
.ls5a{letter-spacing:956.550000px;}
.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;}
}
.ws21{word-spacing:-19.260000px;}
.ws9f{word-spacing:-18.720000px;}
.ws27{word-spacing:-18.360000px;}
.ws89{word-spacing:-18.240000px;}
.ws29{word-spacing:-18.180000px;}
.ws90{word-spacing:-17.940000px;}
.wsa0{word-spacing:-17.820000px;}
.wsda{word-spacing:-17.568000px;}
.ws28{word-spacing:-17.520000px;}
.ws26{word-spacing:-17.460000px;}
.ws8e{word-spacing:-17.340000px;}
.ws2c{word-spacing:-17.280000px;}
.ws2e{word-spacing:-17.220000px;}
.ws47{word-spacing:-17.040000px;}
.ws24{word-spacing:-16.980000px;}
.ws8b{word-spacing:-16.920000px;}
.ws2a{word-spacing:-16.860000px;}
.ws8f{word-spacing:-16.800000px;}
.ws22{word-spacing:-16.740000px;}
.ws1{word-spacing:-16.680000px;}
.ws8c{word-spacing:-16.620000px;}
.ws25{word-spacing:-16.500000px;}
.ws5d{word-spacing:-16.440000px;}
.ws4a{word-spacing:-16.380000px;}
.wsd{word-spacing:-16.320000px;}
.ws48{word-spacing:-16.260000px;}
.ws2f{word-spacing:-16.200000px;}
.wsb{word-spacing:-16.140000px;}
.ws87{word-spacing:-16.080000px;}
.wsdc{word-spacing:-16.020000px;}
.ws31{word-spacing:-15.900000px;}
.wsc{word-spacing:-15.840000px;}
.ws8d{word-spacing:-15.780000px;}
.ws49{word-spacing:-15.720000px;}
.ws23{word-spacing:-15.660000px;}
.ws2d{word-spacing:-15.600000px;}
.ws30{word-spacing:-15.540000px;}
.ws88{word-spacing:-15.300000px;}
.ws9e{word-spacing:-15.240000px;}
.wse{word-spacing:-15.120000px;}
.ws5c{word-spacing:-15.060000px;}
.ws2b{word-spacing:-15.000000px;}
.ws46{word-spacing:-14.880000px;}
.ws8a{word-spacing:-14.820000px;}
.ws9d{word-spacing:-14.700000px;}
.wsba{word-spacing:-14.688000px;}
.wsb3{word-spacing:-14.304000px;}
.wsb7{word-spacing:-13.968000px;}
.wsbb{word-spacing:-13.920000px;}
.wsb9{word-spacing:-13.776000px;}
.wsb0{word-spacing:-13.632000px;}
.wsb8{word-spacing:-13.488000px;}
.wsdb{word-spacing:-13.392000px;}
.ws3{word-spacing:-13.344000px;}
.wsb2{word-spacing:-13.296000px;}
.wsb4{word-spacing:-12.816000px;}
.wsbc{word-spacing:-12.624000px;}
.ws2{word-spacing:-12.510000px;}
.wsbd{word-spacing:-12.432000px;}
.wsb6{word-spacing:-12.384000px;}
.wsd9{word-spacing:-12.336000px;}
.wsb5{word-spacing:-12.288000px;}
.ws7a{word-spacing:-12.192000px;}
.wsb1{word-spacing:-12.144000px;}
.ws79{word-spacing:-12.048000px;}
.ws5e{word-spacing:-12.000000px;}
.wsa1{word-spacing:-11.952000px;}
.wsbe{word-spacing:-11.856000px;}
.wsd8{word-spacing:-11.808000px;}
.ws62{word-spacing:-11.718000px;}
.ws61{word-spacing:-11.676000px;}
.ws5f{word-spacing:-10.008000px;}
.ws32{word-spacing:-9.304680px;}
.ws33{word-spacing:-9.269700px;}
.wsd0{word-spacing:-6.336000px;}
.wscf{word-spacing:-4.464000px;}
.ws39{word-spacing:-4.260000px;}
.ws99{word-spacing:-4.080000px;}
.wsa7{word-spacing:-3.720000px;}
.ws3c{word-spacing:-3.360000px;}
.ws9b{word-spacing:-2.940000px;}
.wscb{word-spacing:-2.928000px;}
.ws5{word-spacing:-2.886000px;}
.wscd{word-spacing:-2.688000px;}
.wsa9{word-spacing:-2.640000px;}
.wsc2{word-spacing:-2.448000px;}
.ws3a{word-spacing:-2.400000px;}
.wsc5{word-spacing:-2.304000px;}
.ws6d{word-spacing:-2.220000px;}
.ws41{word-spacing:-2.100000px;}
.wsd3{word-spacing:-1.968000px;}
.wsd4{word-spacing:-1.920000px;}
.ws3d{word-spacing:-1.860000px;}
.ws1c{word-spacing:-1.800000px;}
.wsca{word-spacing:-1.776000px;}
.wsac{word-spacing:-1.584000px;}
.wse1{word-spacing:-1.392000px;}
.wsc3{word-spacing:-1.296000px;}
.ws9a{word-spacing:-1.080000px;}
.wsa4{word-spacing:-0.960000px;}
.wse3{word-spacing:-0.912000px;}
.ws1b{word-spacing:-0.780000px;}
.wsc6{word-spacing:-0.768000px;}
.wsce{word-spacing:-0.672000px;}
.wsd5{word-spacing:-0.624000px;}
.ws3f{word-spacing:-0.600000px;}
.ws73{word-spacing:-0.540000px;}
.ws51{word-spacing:-0.480000px;}
.wsd7{word-spacing:-0.432000px;}
.ws50{word-spacing:-0.420000px;}
.ws14{word-spacing:-0.360000px;}
.wsde{word-spacing:-0.336000px;}
.ws44{word-spacing:-0.300000px;}
.ws7d{word-spacing:-0.288000px;}
.ws42{word-spacing:-0.240000px;}
.ws83{word-spacing:-0.192000px;}
.ws3b{word-spacing:-0.180000px;}
.ws0{word-spacing:-0.126600px;}
.ws81{word-spacing:-0.120000px;}
.ws77{word-spacing:-0.096000px;}
.ws4d{word-spacing:-0.060000px;}
.wsc8{word-spacing:-0.048000px;}
.ws75{word-spacing:-0.042000px;}
.ws4{word-spacing:0.000000px;}
.wsae{word-spacing:0.048000px;}
.ws56{word-spacing:0.060000px;}
.ws55{word-spacing:0.120000px;}
.ws86{word-spacing:0.144000px;}
.ws9{word-spacing:0.180000px;}
.ws13{word-spacing:0.360000px;}
.wscc{word-spacing:0.384000px;}
.ws95{word-spacing:0.420000px;}
.wsd1{word-spacing:0.432000px;}
.ws52{word-spacing:0.480000px;}
.ws74{word-spacing:0.504000px;}
.ws12{word-spacing:0.540000px;}
.ws78{word-spacing:0.588000px;}
.ws10{word-spacing:0.600000px;}
.wsbf{word-spacing:0.624000px;}
.ws76{word-spacing:0.630000px;}
.ws58{word-spacing:0.660000px;}
.ws59{word-spacing:0.720000px;}
.ws84{word-spacing:0.816000px;}
.wsa6{word-spacing:0.840000px;}
.ws16{word-spacing:0.960000px;}
.wsaf{word-spacing:1.008000px;}
.ws17{word-spacing:1.020000px;}
.wsc4{word-spacing:1.056000px;}
.ws67{word-spacing:1.200000px;}
.ws85{word-spacing:1.248000px;}
.ws6c{word-spacing:1.320000px;}
.wsc9{word-spacing:1.344000px;}
.ws1d{word-spacing:1.380000px;}
.wse4{word-spacing:1.392000px;}
.ws6f{word-spacing:1.488000px;}
.ws97{word-spacing:1.560000px;}
.ws43{word-spacing:1.620000px;}
.wsaa{word-spacing:1.680000px;}
.wsdf{word-spacing:1.776000px;}
.wsab{word-spacing:2.016000px;}
.wsc7{word-spacing:2.064000px;}
.ws18{word-spacing:2.100000px;}
.wsd6{word-spacing:2.208000px;}
.ws53{word-spacing:2.220000px;}
.ws15{word-spacing:2.280000px;}
.wse0{word-spacing:2.304000px;}
.wse2{word-spacing:2.352000px;}
.ws91{word-spacing:2.400000px;}
.ws57{word-spacing:2.460000px;}
.wsdd{word-spacing:2.496000px;}
.wsa5{word-spacing:2.580000px;}
.ws71{word-spacing:2.688000px;}
.ws5b{word-spacing:2.700000px;}
.wsc1{word-spacing:2.736000px;}
.ws4b{word-spacing:2.760000px;}
.ws35{word-spacing:2.820000px;}
.wsad{word-spacing:2.832000px;}
.ws68{word-spacing:2.868360px;}
.ws40{word-spacing:2.880000px;}
.ws5a{word-spacing:2.903340px;}
.ws36{word-spacing:3.000000px;}
.ws93{word-spacing:3.060000px;}
.ws72{word-spacing:3.120000px;}
.wsa2{word-spacing:3.180000px;}
.ws4e{word-spacing:3.240000px;}
.ws54{word-spacing:3.360000px;}
.wsd2{word-spacing:3.408000px;}
.wsf{word-spacing:3.420000px;}
.ws37{word-spacing:3.480000px;}
.ws1a{word-spacing:3.600000px;}
.ws1e{word-spacing:3.660000px;}
.ws34{word-spacing:3.780000px;}
.wsc0{word-spacing:3.792000px;}
.ws98{word-spacing:3.840000px;}
.ws38{word-spacing:3.900000px;}
.ws70{word-spacing:3.936000px;}
.ws8{word-spacing:3.960000px;}
.ws82{word-spacing:3.984000px;}
.ws4f{word-spacing:4.020000px;}
.ws3e{word-spacing:4.080000px;}
.ws6b{word-spacing:4.140000px;}
.ws96{word-spacing:4.260000px;}
.ws4c{word-spacing:4.380000px;}
.ws9c{word-spacing:4.500000px;}
.ws19{word-spacing:4.620000px;}
.ws6e{word-spacing:4.680000px;}
.ws11{word-spacing:4.740000px;}
.wsa{word-spacing:4.860000px;}
.ws7{word-spacing:4.920000px;}
.ws6{word-spacing:4.980000px;}
.ws92{word-spacing:5.040000px;}
.ws20{word-spacing:5.100000px;}
.ws69{word-spacing:5.280000px;}
.wsa8{word-spacing:5.460000px;}
.ws45{word-spacing:6.360000px;}
.ws6a{word-spacing:6.480000px;}
.ws1f{word-spacing:6.540000px;}
.ws94{word-spacing:7.440000px;}
.wsa3{word-spacing:7.740000px;}
.ws80{word-spacing:50.403630px;}
.ws7f{word-spacing:61.033531px;}
.ws66{word-spacing:61.236000px;}
.ws60{word-spacing:61.344000px;}
.ws64{word-spacing:160.881000px;}
.ws63{word-spacing:161.811000px;}
.ws65{word-spacing:162.318000px;}
.ws7c{word-spacing:366.960000px;}
.ws7e{word-spacing:367.776000px;}
.ws7b{word-spacing:380.016000px;}
._a{margin-left:-2898.096000px;}
._f{margin-left:-2874.288000px;}
._5{margin-left:-7.680000px;}
._4{margin-left:-6.600000px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-4.095000px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.080000px;}
._6{width:1.020000px;}
._7{width:2.040000px;}
._b{width:3.915000px;}
._9{width:4.920000px;}
._8{width:6.000000px;}
._e{width:7.020000px;}
._d{width:8.040000px;}
._c{width:9.336000px;}
._13{width:17.262000px;}
._1a{width:66.675399px;}
._1b{width:69.126298px;}
._11{width:81.360000px;}
._14{width:90.360000px;}
._10{width:91.368000px;}
._12{width:175.644000px;}
._16{width:374.304000px;}
._19{width:376.512000px;}
._15{width:382.272000px;}
._18{width:536.640000px;}
._1c{width:541.200000px;}
._17{width:563.136000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:34.980000px;}
.fs9{font-size:36.000000px;}
.fs5{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs4{font-size:45.000000px;}
.fsa{font-size:47.999400px;}
.fs7{font-size:48.000000px;}
.fs6{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2e{bottom:47.777250px;}
.y1d8{bottom:80.263500px;}
.y104{bottom:82.999950px;}
.y196{bottom:83.121900px;}
.y120{bottom:83.389950px;}
.yf7{bottom:83.628600px;}
.y17d{bottom:83.635350px;}
.y64{bottom:83.770350px;}
.yb2{bottom:83.912100px;}
.yc4{bottom:83.920350px;}
.y9a{bottom:83.922600px;}
.y21{bottom:88.023000px;}
.y1d7{bottom:95.263500px;}
.y195{bottom:98.121900px;}
.y103{bottom:98.743950px;}
.y11f{bottom:99.133950px;}
.yf6{bottom:101.628600px;}
.y17c{bottom:101.635350px;}
.y63{bottom:101.770350px;}
.yb1{bottom:101.912100px;}
.yc3{bottom:101.920350px;}
.y99{bottom:101.922600px;}
.y20{bottom:103.023000px;}
.y1d6{bottom:110.263500px;}
.y194{bottom:113.121900px;}
.y102{bottom:114.487950px;}
.y11e{bottom:114.877950px;}
.yf5{bottom:119.628600px;}
.y17b{bottom:119.635350px;}
.y62{bottom:119.770350px;}
.yb0{bottom:119.912100px;}
.yc2{bottom:119.920350px;}
.y98{bottom:119.922600px;}
.y1d5{bottom:125.263500px;}
.y193{bottom:128.121900px;}
.y101{bottom:130.231950px;}
.y11d{bottom:130.621950px;}
.yf4{bottom:137.628600px;}
.y17a{bottom:137.635350px;}
.y61{bottom:137.770350px;}
.yaf{bottom:137.912100px;}
.yc1{bottom:137.920350px;}
.y97{bottom:137.922600px;}
.y1d4{bottom:140.263500px;}
.y192{bottom:143.121900px;}
.y100{bottom:145.975950px;}
.y11c{bottom:146.365950px;}
.y1d3{bottom:155.263500px;}
.yf3{bottom:155.628600px;}
.y179{bottom:155.635350px;}
.y60{bottom:155.770350px;}
.yae{bottom:155.912100px;}
.yc0{bottom:155.920350px;}
.y96{bottom:155.922600px;}
.y191{bottom:158.121900px;}
.y11b{bottom:162.109950px;}
.y29{bottom:164.347350px;}
.y1d2{bottom:170.263500px;}
.y110{bottom:173.033700px;}
.y190{bottom:173.121900px;}
.yf2{bottom:173.628600px;}
.y178{bottom:173.635350px;}
.y5f{bottom:173.770350px;}
.yad{bottom:173.912100px;}
.ybf{bottom:173.920350px;}
.y95{bottom:173.922600px;}
.y11a{bottom:177.853950px;}
.y28{bottom:182.347350px;}
.y1d1{bottom:185.263500px;}
.y18f{bottom:188.121900px;}
.yf1{bottom:191.628600px;}
.y177{bottom:191.635350px;}
.y5e{bottom:191.770350px;}
.yac{bottom:191.912100px;}
.ybe{bottom:191.920350px;}
.y94{bottom:191.922600px;}
.y119{bottom:193.597950px;}
.y10f{bottom:197.023650px;}
.y1d0{bottom:200.263500px;}
.y27{bottom:200.347350px;}
.y18e{bottom:203.121900px;}
.yf0{bottom:209.628600px;}
.y176{bottom:209.635350px;}
.y5d{bottom:209.770350px;}
.yab{bottom:209.912100px;}
.ybd{bottom:209.920350px;}
.y93{bottom:209.922600px;}
.y1cf{bottom:215.263500px;}
.y18d{bottom:218.121900px;}
.y26{bottom:218.347350px;}
.y118{bottom:220.480200px;}
.y137{bottom:223.202400px;}
.yef{bottom:227.628600px;}
.y175{bottom:227.635350px;}
.y5c{bottom:227.770350px;}
.yaa{bottom:227.912100px;}
.ybc{bottom:227.920350px;}
.y92{bottom:227.922600px;}
.y1ce{bottom:230.263500px;}
.y112{bottom:230.479200px;}
.y18c{bottom:233.121900px;}
.y25{bottom:236.347350px;}
.y1cd{bottom:245.263500px;}
.yee{bottom:245.628600px;}
.y174{bottom:245.635350px;}
.y5b{bottom:245.770350px;}
.ya9{bottom:245.912100px;}
.ybb{bottom:245.920350px;}
.y91{bottom:245.922600px;}
.y18b{bottom:248.121900px;}
.y136{bottom:249.038400px;}
.y113{bottom:249.613200px;}
.y24{bottom:254.347350px;}
.y10e{bottom:259.674900px;}
.y1cc{bottom:260.263500px;}
.y18a{bottom:263.121900px;}
.yed{bottom:263.628600px;}
.y173{bottom:263.635350px;}
.y5a{bottom:263.770350px;}
.ya8{bottom:263.920350px;}
.y132{bottom:268.682400px;}
.y114{bottom:268.747200px;}
.y23{bottom:272.347350px;}
.y1cb{bottom:275.263500px;}
.y189{bottom:278.121900px;}
.y12a{bottom:279.866400px;}
.y90{bottom:281.517600px;}
.yec{bottom:281.628600px;}
.y59{bottom:281.770350px;}
.ya7{bottom:281.920350px;}
.y115{bottom:287.881200px;}
.y1ca{bottom:290.263500px;}
.y2b{bottom:290.347350px;}
.y188{bottom:293.121900px;}
.y133{bottom:296.426550px;}
.y172{bottom:299.230350px;}
.yeb{bottom:299.628600px;}
.y58{bottom:299.770350px;}
.ya6{bottom:299.920350px;}
.y12b{bottom:300.998400px;}
.y1c9{bottom:305.263500px;}
.y116{bottom:307.015200px;}
.y22{bottom:307.942350px;}
.y187{bottom:308.121900px;}
.y2a{bottom:308.347350px;}
.yea{bottom:317.628600px;}
.y57{bottom:317.770350px;}
.y8f{bottom:317.772600px;}
.ya5{bottom:317.920350px;}
.y1c8{bottom:320.263500px;}
.y12c{bottom:322.274400px;}
.y186{bottom:323.121900px;}
.y117{bottom:326.149200px;}
.y1c7{bottom:335.263500px;}
.ye9{bottom:335.628600px;}
.y56{bottom:335.770350px;}
.y8e{bottom:335.772600px;}
.ya4{bottom:335.920350px;}
.y185{bottom:338.121900px;}
.y111{bottom:340.220250px;}
.y12d{bottom:343.406400px;}
.y1c6{bottom:350.263500px;}
.ye8{bottom:353.628600px;}
.y55{bottom:353.770350px;}
.y8d{bottom:353.772600px;}
.ya3{bottom:353.920350px;}
.y10b{bottom:359.347800px;}
.y12e{bottom:364.538400px;}
.y1c5{bottom:365.263500px;}
.y105{bottom:369.355800px;}
.y184{bottom:371.230350px;}
.ye7{bottom:371.628600px;}
.y54{bottom:371.770350px;}
.y8c{bottom:371.772600px;}
.ya2{bottom:371.920350px;}
.y1c4{bottom:380.263500px;}
.y12f{bottom:385.814400px;}
.y1f{bottom:386.014200px;}
.y106{bottom:388.489800px;}
.ye6{bottom:389.628600px;}
.y53{bottom:389.770350px;}
.y8b{bottom:389.772600px;}
.ya1{bottom:389.920350px;}
.y1c3{bottom:395.263500px;}
.y16a{bottom:397.656300px;}
.y16e{bottom:398.386950px;}
.y159{bottom:401.731050px;}
.y15d{bottom:402.583650px;}
.y130{bottom:406.946400px;}
.y107{bottom:407.623800px;}
.ye5{bottom:407.628600px;}
.y52{bottom:407.770350px;}
.y8a{bottom:407.772600px;}
.yba{bottom:407.920350px;}
.y1c2{bottom:410.263500px;}
.y169{bottom:410.964300px;}
.y16d{bottom:410.974950px;}
.y1e{bottom:413.359200px;}
.y15c{bottom:415.027650px;}
.y158{bottom:415.039050px;}
.y1c1{bottom:425.263500px;}
.y168{bottom:425.292300px;}
.y16c{bottom:425.302950px;}
.ya0{bottom:425.515350px;}
.ye4{bottom:425.628600px;}
.y51{bottom:425.770350px;}
.y89{bottom:425.772600px;}
.yb9{bottom:425.920350px;}
.y108{bottom:426.757800px;}
.y131{bottom:428.078400px;}
.y15b{bottom:429.499650px;}
.y157{bottom:429.511050px;}
.y1d{bottom:431.359200px;}
.y16b{bottom:438.610950px;}
.y171{bottom:438.622950px;}
.y1c0{bottom:440.263500px;}
.y15a{bottom:442.807650px;}
.y156{bottom:442.819050px;}
.y183{bottom:443.365350px;}
.ye3{bottom:443.628600px;}
.y50{bottom:443.770350px;}
.y88{bottom:443.772600px;}
.yb8{bottom:443.920350px;}
.y109{bottom:445.891800px;}
.y1c{bottom:449.359200px;}
.y167{bottom:452.628300px;}
.y16f{bottom:452.638950px;}
.y134{bottom:454.178400px;}
.y1bf{bottom:455.263500px;}
.ye2{bottom:461.628600px;}
.y4f{bottom:461.770350px;}
.y87{bottom:461.772600px;}
.yb7{bottom:461.920350px;}
.y10a{bottom:465.025800px;}
.y1b{bottom:467.359200px;}
.y1be{bottom:470.263500px;}
.y10d{bottom:479.099700px;}
.y10c{bottom:479.101350px;}
.y182{bottom:479.365350px;}
.ye1{bottom:479.628600px;}
.y4e{bottom:479.770350px;}
.y86{bottom:479.772600px;}
.yb6{bottom:479.920350px;}
.y1bd{bottom:485.263500px;}
.y1a{bottom:485.359200px;}
.y135{bottom:488.438400px;}
.ye0{bottom:497.628600px;}
.y4d{bottom:497.770350px;}
.y85{bottom:497.772600px;}
.yb5{bottom:497.920350px;}
.y1bc{bottom:500.263500px;}
.y19{bottom:503.359200px;}
.y127{bottom:507.836700px;}
.y1bb{bottom:515.263500px;}
.y66{bottom:515.365350px;}
.ydf{bottom:515.628600px;}
.yff{bottom:515.635350px;}
.y4c{bottom:515.770350px;}
.y84{bottom:515.772600px;}
.yb4{bottom:515.920350px;}
.y121{bottom:519.068700px;}
.y18{bottom:521.359200px;}
.y1ba{bottom:530.263500px;}
.yde{bottom:533.628600px;}
.yfe{bottom:533.635350px;}
.y4b{bottom:533.770350px;}
.y83{bottom:533.772600px;}
.y17{bottom:539.359200px;}
.y1b9{bottom:545.263500px;}
.y128{bottom:548.426550px;}
.y65{bottom:551.230350px;}
.y181{bottom:551.365350px;}
.yb3{bottom:551.515350px;}
.ydd{bottom:551.628600px;}
.yfd{bottom:551.635350px;}
.y4a{bottom:551.770350px;}
.y82{bottom:551.772600px;}
.y122{bottom:553.796700px;}
.y16{bottom:557.359200px;}
.y1b8{bottom:560.263500px;}
.y141{bottom:564.782400px;}
.y13d{bottom:565.502400px;}
.ydc{bottom:569.628600px;}
.yfc{bottom:569.635350px;}
.y49{bottom:569.770350px;}
.y81{bottom:569.772600px;}
.y13f{bottom:572.306400px;}
.y1b7{bottom:575.263500px;}
.y15{bottom:575.359200px;}
.y143{bottom:579.254400px;}
.y161{bottom:581.743650px;}
.y165{bottom:582.456300px;}
.y13e{bottom:586.778400px;}
.ydb{bottom:587.628600px;}
.yfb{bottom:587.635350px;}
.y48{bottom:587.770350px;}
.y80{bottom:587.772600px;}
.y123{bottom:588.380700px;}
.y1b6{bottom:590.263500px;}
.y14{bottom:593.359200px;}
.y164{bottom:595.044300px;}
.y160{bottom:595.051650px;}
.y140{bottom:603.998400px;}
.y1b5{bottom:605.263500px;}
.y180{bottom:605.365350px;}
.yda{bottom:605.628600px;}
.yfa{bottom:605.635350px;}
.y47{bottom:605.770350px;}
.y7f{bottom:605.772600px;}
.y142{bottom:608.774400px;}
.y163{bottom:609.372300px;}
.y15f{bottom:609.379650px;}
.y13{bottom:611.359200px;}
.y139{bottom:618.482400px;}
.y1b4{bottom:620.263500px;}
.y162{bottom:622.680300px;}
.y170{bottom:622.690950px;}
.y124{bottom:623.108700px;}
.yd9{bottom:623.628600px;}
.yf9{bottom:623.635350px;}
.y46{bottom:623.770350px;}
.y7e{bottom:623.772600px;}
.y13c{bottom:628.022400px;}
.y12{bottom:629.359200px;}
.y1b3{bottom:635.263500px;}
.y166{bottom:637.008300px;}
.y15e{bottom:637.015650px;}
.yd8{bottom:641.628600px;}
.y45{bottom:641.770350px;}
.y7d{bottom:641.772600px;}
.y11{bottom:647.359200px;}
.y1b2{bottom:650.263500px;}
.y138{bottom:656.978400px;}
.y125{bottom:657.692700px;}
.yf8{bottom:659.230350px;}
.yd7{bottom:659.628600px;}
.y44{bottom:659.770350px;}
.y7c{bottom:659.772600px;}
.y151{bottom:661.448850px;}
.y155{bottom:661.471050px;}
.y1b1{bottom:665.263500px;}
.y10{bottom:665.359200px;}
.y13a{bottom:671.294400px;}
.y150{bottom:674.768850px;}
.y154{bottom:674.779050px;}
.yd6{bottom:677.650350px;}
.y43{bottom:677.770350px;}
.y7b{bottom:677.772600px;}
.y1b0{bottom:680.263500px;}
.yf{bottom:683.359200px;}
.y13b{bottom:683.738400px;}
.y14f{bottom:689.240850px;}
.y153{bottom:689.251050px;}
.y126{bottom:692.420700px;}
.y1af{bottom:695.263500px;}
.y17f{bottom:695.365350px;}
.yd5{bottom:695.650350px;}
.y42{bottom:695.770350px;}
.y7a{bottom:695.772600px;}
.ye{bottom:701.359200px;}
.y14e{bottom:702.788850px;}
.y152{bottom:702.799050px;}
.y129{bottom:705.245400px;}
.y1ae{bottom:710.263500px;}
.yd4{bottom:713.650350px;}
.y41{bottom:713.770350px;}
.y79{bottom:713.772600px;}
.yd{bottom:719.359200px;}
.y1ad{bottom:725.263500px;}
.yd3{bottom:731.650350px;}
.y40{bottom:731.770350px;}
.y78{bottom:731.772600px;}
.yc{bottom:737.359200px;}
.y14d{bottom:739.136850px;}
.y1ac{bottom:740.263500px;}
.yd2{bottom:749.650350px;}
.y3f{bottom:749.770350px;}
.y77{bottom:749.772600px;}
.y1ab{bottom:755.263500px;}
.y14a{bottom:759.678750px;}
.yd1{bottom:767.650350px;}
.y3e{bottom:767.770350px;}
.y76{bottom:767.772600px;}
.y1aa{bottom:770.263500px;}
.y144{bottom:770.910750px;}
.yb{bottom:782.517450px;}
.y1a9{bottom:785.263500px;}
.y3d{bottom:785.770350px;}
.y75{bottom:785.772600px;}
.ya{bottom:794.968200px;}
.y1a8{bottom:800.263500px;}
.y145{bottom:800.574750px;}
.yd0{bottom:803.245350px;}
.y3c{bottom:803.770350px;}
.y74{bottom:803.772600px;}
.y14b{bottom:805.317750px;}
.y1a7{bottom:815.263500px;}
.y3b{bottom:821.770350px;}
.y73{bottom:821.772600px;}
.y9{bottom:826.683600px;}
.y146{bottom:830.094750px;}
.y1a6{bottom:830.263500px;}
.y3a{bottom:839.770350px;}
.y72{bottom:839.772600px;}
.y8{bottom:840.183600px;}
.y1a5{bottom:845.263500px;}
.y7{bottom:853.683600px;}
.y17e{bottom:857.365350px;}
.y39{bottom:857.770350px;}
.y71{bottom:857.772600px;}
.ycf{bottom:857.785350px;}
.y147{bottom:859.758750px;}
.y1a4{bottom:860.263500px;}
.y1a3{bottom:875.263500px;}
.y38{bottom:875.770350px;}
.y70{bottom:875.772600px;}
.yce{bottom:875.785350px;}
.y6{bottom:887.830950px;}
.y148{bottom:889.422750px;}
.y1a2{bottom:890.263500px;}
.y37{bottom:893.770350px;}
.y6f{bottom:893.772600px;}
.ycd{bottom:893.785350px;}
.y1a1{bottom:905.263500px;}
.y36{bottom:911.770350px;}
.y6e{bottom:911.772600px;}
.ycc{bottom:911.785350px;}
.y149{bottom:919.086750px;}
.y1a0{bottom:920.263500px;}
.y35{bottom:929.770350px;}
.y6d{bottom:929.772600px;}
.ycb{bottom:929.785350px;}
.y5{bottom:934.036050px;}
.y19f{bottom:935.263500px;}
.y14c{bottom:936.490650px;}
.y34{bottom:947.770350px;}
.y6c{bottom:947.772600px;}
.yca{bottom:947.785350px;}
.y19e{bottom:950.263500px;}
.y19d{bottom:965.263500px;}
.y33{bottom:965.770350px;}
.y6b{bottom:965.772600px;}
.yc9{bottom:965.785350px;}
.y9f{bottom:965.787600px;}
.y4{bottom:970.465200px;}
.y19c{bottom:980.263500px;}
.y32{bottom:983.770350px;}
.y6a{bottom:983.772600px;}
.yc8{bottom:983.785350px;}
.y9e{bottom:983.787600px;}
.y19b{bottom:995.263500px;}
.y31{bottom:1001.770350px;}
.y69{bottom:1001.772600px;}
.yc7{bottom:1001.785350px;}
.y9d{bottom:1001.787600px;}
.y3{bottom:1006.926000px;}
.y19a{bottom:1010.263500px;}
.y30{bottom:1019.770350px;}
.yc6{bottom:1019.785350px;}
.y9c{bottom:1019.787600px;}
.y199{bottom:1025.263500px;}
.y68{bottom:1037.367600px;}
.y2f{bottom:1037.770350px;}
.yc5{bottom:1037.785350px;}
.y9b{bottom:1037.787600px;}
.y198{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y197{bottom:1132.413900px;}
.y67{bottom:1132.418700px;}
.y1d9{bottom:1132.423500px;}
.y2d{bottom:1136.092500px;}
.y2c{bottom:1150.492500px;}
.h14{height:26.226562px;}
.h7{height:28.412109px;}
.h2{height:30.597656px;}
.h17{height:30.600056px;}
.h16{height:30.618164px;}
.hb{height:32.783203px;}
.h6{height:32.805176px;}
.h13{height:33.351562px;}
.h18{height:34.968313px;}
.he{height:34.968750px;}
.hd{height:34.992188px;}
.h15{height:36.960000px;}
.hc{height:41.689453px;}
.ha{height:43.681641px;}
.h8{height:43.710938px;}
.h9{height:43.740234px;}
.h5{height:45.865723px;}
.h1a{height:45.960750px;}
.h12{height:52.481551px;}
.hf{height:52.498951px;}
.h10{height:52.534951px;}
.h11{height:52.567951px;}
.h3{height:56.786133px;}
.h4{height:92.168262px;}
.h19{height:117.144750px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:76.535400px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x4b{left:102.047250px;}
.x4{left:106.299150px;}
.x1f{left:107.410650px;}
.xc{left:110.555400px;}
.x19{left:118.408650px;}
.x18{left:123.115650px;}
.x3{left:125.436600px;}
.x17{left:127.849650px;}
.x6{left:131.816400px;}
.x1a{left:138.694650px;}
.x22{left:143.033400px;}
.x49{left:190.115400px;}
.x26{left:211.409700px;}
.x5{left:212.876400px;}
.x16{left:220.119600px;}
.x38{left:223.915254px;}
.x28{left:227.263500px;}
.x24{left:230.515171px;}
.x23{left:240.223050px;}
.x27{left:258.403200px;}
.x2d{left:286.590848px;}
.x29{left:301.338574px;}
.x25{left:302.526271px;}
.x39{left:323.795397px;}
.x2b{left:325.410362px;}
.x2a{left:328.794320px;}
.x40{left:333.191890px;}
.x2e{left:334.926243px;}
.x3e{left:342.035780px;}
.x3c{left:343.079156px;}
.x3f{left:349.367688px;}
.x3a{left:351.035057px;}
.x3b{left:358.366965px;}
.x20{left:360.896100px;}
.x41{left:363.419400px;}
.x3d{left:372.419400px;}
.x2c{left:384.473624px;}
.x2f{left:390.353551px;}
.x21{left:421.353000px;}
.x30{left:422.921143px;}
.x31{left:438.844944px;}
.xa{left:455.041500px;}
.xd{left:457.085400px;}
.x1d{left:477.214800px;}
.x12{left:478.405350px;}
.x7{left:480.476400px;}
.x1c{left:481.921800px;}
.x1b{left:486.655800px;}
.xe{left:491.105400px;}
.x32{left:493.396263px;}
.x1e{left:496.495200px;}
.x4a{left:503.863050px;}
.x33{left:510.040054px;}
.x13{left:512.362200px;}
.x8{left:514.496400px;}
.xf{left:525.275400px;}
.x34{left:542.595648px;}
.x47{left:546.365997px;}
.x44{left:552.909031px;}
.x46{left:554.981889px;}
.x42{left:561.524924px;}
.x43{left:568.196840px;}
.x48{left:575.706750px;}
.x45{left:582.101550px;}
.x15{left:591.650400px;}
.x35{left:613.934756px;}
.x36{left:630.578548px;}
.x37{left:646.490349px;}
.x11{left:663.492300px;}
.x2{left:693.365400px;}
.x4c{left:721.717650px;}
.x10{left:728.391600px;}
.x14{left:749.651400px;}
@media print{
.v6{vertical-align:-19.541333pt;}
.v2{vertical-align:-10.397333pt;}
.v7{vertical-align:-3.718400pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.440000pt;}
.v3{vertical-align:10.397333pt;}
.v1{vertical-align:25.061333pt;}
.v4{vertical-align:36.522667pt;}
.v5{vertical-align:73.045333pt;}
.ls79{letter-spacing:-6.880000pt;}
.ls6e{letter-spacing:-6.613333pt;}
.ls5c{letter-spacing:-5.760000pt;}
.ls42{letter-spacing:-5.653333pt;}
.ls5b{letter-spacing:-4.693333pt;}
.ls31{letter-spacing:-4.533333pt;}
.ls6d{letter-spacing:-4.480000pt;}
.ls7b{letter-spacing:-4.373333pt;}
.ls52{letter-spacing:-3.200000pt;}
.lsb{letter-spacing:-0.693333pt;}
.ls5f{letter-spacing:-0.560000pt;}
.ls61{letter-spacing:-0.522667pt;}
.ls5e{letter-spacing:-0.448000pt;}
.ls5d{letter-spacing:-0.373333pt;}
.ls30{letter-spacing:-0.320000pt;}
.ls7a{letter-spacing:-0.266667pt;}
.ls2f{letter-spacing:-0.213333pt;}
.lsa2{letter-spacing:-0.170667pt;}
.ls6f{letter-spacing:-0.160000pt;}
.ls67{letter-spacing:-0.128000pt;}
.ls50{letter-spacing:-0.106667pt;}
.ls9d{letter-spacing:-0.085333pt;}
.ls51{letter-spacing:-0.053333pt;}
.ls7c{letter-spacing:-0.042667pt;}
.lsa{letter-spacing:0.000000pt;}
.ls59{letter-spacing:0.037333pt;}
.ls66{letter-spacing:0.042667pt;}
.ls9{letter-spacing:0.053333pt;}
.ls60{letter-spacing:0.085333pt;}
.ls19{letter-spacing:0.106667pt;}
.ls62{letter-spacing:0.128000pt;}
.ls26{letter-spacing:0.160000pt;}
.ls58{letter-spacing:0.170667pt;}
.ls56{letter-spacing:0.186560pt;}
.ls35{letter-spacing:0.213333pt;}
.ls9e{letter-spacing:0.256000pt;}
.ls24{letter-spacing:0.266667pt;}
.ls55{letter-spacing:0.270400pt;}
.ls54{letter-spacing:0.296533pt;}
.ls9a{letter-spacing:0.298667pt;}
.ls12{letter-spacing:0.320000pt;}
.ls8c{letter-spacing:0.341333pt;}
.ls2d{letter-spacing:0.373333pt;}
.ls8a{letter-spacing:0.384000pt;}
.ls4d{letter-spacing:0.404213pt;}
.lsf{letter-spacing:0.426667pt;}
.ls41{letter-spacing:0.466400pt;}
.ls86{letter-spacing:0.469333pt;}
.ls2c{letter-spacing:0.480000pt;}
.ls3f{letter-spacing:0.483200pt;}
.ls40{letter-spacing:0.497493pt;}
.ls80{letter-spacing:0.512000pt;}
.ls53{letter-spacing:0.524800pt;}
.ls1c{letter-spacing:0.533333pt;}
.ls99{letter-spacing:0.554667pt;}
.ls15{letter-spacing:0.586667pt;}
.ls95{letter-spacing:0.597333pt;}
.ls1a{letter-spacing:0.640000pt;}
.ls48{letter-spacing:0.643733pt;}
.ls89{letter-spacing:0.682667pt;}
.ls10{letter-spacing:0.693333pt;}
.ls4b{letter-spacing:0.701867pt;}
.ls4c{letter-spacing:0.724800pt;}
.ls88{letter-spacing:0.725333pt;}
.ls2b{letter-spacing:0.746667pt;}
.ls82{letter-spacing:0.768000pt;}
.ls3c{letter-spacing:0.783467pt;}
.ls13{letter-spacing:0.800000pt;}
.ls7f{letter-spacing:0.810667pt;}
.ls8{letter-spacing:0.853333pt;}
.ls8d{letter-spacing:0.896000pt;}
.ls1{letter-spacing:0.906667pt;}
.ls6{letter-spacing:0.960000pt;}
.ls92{letter-spacing:0.981333pt;}
.ls7{letter-spacing:1.013333pt;}
.ls9c{letter-spacing:1.024000pt;}
.ls4f{letter-spacing:1.032000pt;}
.ls2e{letter-spacing:1.066667pt;}
.ls77{letter-spacing:1.109333pt;}
.ls29{letter-spacing:1.120000pt;}
.ls47{letter-spacing:1.152000pt;}
.ls4a{letter-spacing:1.169067pt;}
.ls23{letter-spacing:1.173333pt;}
.ls76{letter-spacing:1.194667pt;}
.ls22{letter-spacing:1.226667pt;}
.ls78{letter-spacing:1.237333pt;}
.ls1b{letter-spacing:1.280000pt;}
.ls81{letter-spacing:1.322667pt;}
.lse{letter-spacing:1.333333pt;}
.ls36{letter-spacing:1.386667pt;}
.ls74{letter-spacing:1.408000pt;}
.ls27{letter-spacing:1.440000pt;}
.ls7e{letter-spacing:1.450667pt;}
.ls11{letter-spacing:1.493333pt;}
.ls8b{letter-spacing:1.536000pt;}
.ls14{letter-spacing:1.546667pt;}
.ls83{letter-spacing:1.578667pt;}
.ls3{letter-spacing:1.600000pt;}
.lsd{letter-spacing:1.653333pt;}
.ls9b{letter-spacing:1.664000pt;}
.ls21{letter-spacing:1.706667pt;}
.ls8f{letter-spacing:1.749333pt;}
.ls33{letter-spacing:1.760000pt;}
.ls7d{letter-spacing:1.792000pt;}
.ls45{letter-spacing:1.813333pt;}
.ls75{letter-spacing:1.834667pt;}
.ls2a{letter-spacing:1.866667pt;}
.ls68{letter-spacing:1.920000pt;}
.ls73{letter-spacing:1.962667pt;}
.ls2{letter-spacing:1.973333pt;}
.ls37{letter-spacing:2.026667pt;}
.ls87{letter-spacing:2.048000pt;}
.ls6b{letter-spacing:2.080000pt;}
.ls3b{letter-spacing:2.133333pt;}
.ls85{letter-spacing:2.176000pt;}
.lsc{letter-spacing:2.186667pt;}
.ls0{letter-spacing:2.240000pt;}
.ls9f{letter-spacing:2.261333pt;}
.ls49{letter-spacing:2.293333pt;}
.ls18{letter-spacing:2.346667pt;}
.ls94{letter-spacing:2.389333pt;}
.ls16{letter-spacing:2.400000pt;}
.ls34{letter-spacing:2.453333pt;}
.ls3e{letter-spacing:2.506667pt;}
.ls1e{letter-spacing:2.560000pt;}
.ls93{letter-spacing:2.602667pt;}
.ls5{letter-spacing:2.613333pt;}
.ls44{letter-spacing:2.666667pt;}
.lsa1{letter-spacing:2.688000pt;}
.ls20{letter-spacing:2.720000pt;}
.ls6a{letter-spacing:2.773333pt;}
.ls25{letter-spacing:2.826667pt;}
.ls98{letter-spacing:2.858667pt;}
.ls69{letter-spacing:2.880000pt;}
.ls43{letter-spacing:2.933333pt;}
.ls3d{letter-spacing:2.986667pt;}
.ls4{letter-spacing:3.040000pt;}
.ls17{letter-spacing:3.093333pt;}
.ls28{letter-spacing:3.146667pt;}
.ls1d{letter-spacing:3.253333pt;}
.ls71{letter-spacing:3.306667pt;}
.ls8e{letter-spacing:3.328000pt;}
.ls70{letter-spacing:3.413333pt;}
.ls1f{letter-spacing:3.573333pt;}
.ls6c{letter-spacing:3.626667pt;}
.ls4e{letter-spacing:3.680000pt;}
.ls46{letter-spacing:3.733333pt;}
.ls3a{letter-spacing:3.786667pt;}
.ls39{letter-spacing:3.946667pt;}
.ls96{letter-spacing:3.968000pt;}
.ls84{letter-spacing:4.010667pt;}
.ls90{letter-spacing:4.437333pt;}
.ls57{letter-spacing:4.640000pt;}
.ls38{letter-spacing:4.746667pt;}
.ls32{letter-spacing:4.853333pt;}
.lsa0{letter-spacing:4.949333pt;}
.ls91{letter-spacing:5.162667pt;}
.ls97{letter-spacing:5.632000pt;}
.ls72{letter-spacing:6.720000pt;}
.ls64{letter-spacing:32.896000pt;}
.ls63{letter-spacing:35.456000pt;}
.ls65{letter-spacing:170.752000pt;}
.ls5a{letter-spacing:850.266667pt;}
.ws21{word-spacing:-17.120000pt;}
.ws9f{word-spacing:-16.640000pt;}
.ws27{word-spacing:-16.320000pt;}
.ws89{word-spacing:-16.213333pt;}
.ws29{word-spacing:-16.160000pt;}
.ws90{word-spacing:-15.946667pt;}
.wsa0{word-spacing:-15.840000pt;}
.wsda{word-spacing:-15.616000pt;}
.ws28{word-spacing:-15.573333pt;}
.ws26{word-spacing:-15.520000pt;}
.ws8e{word-spacing:-15.413333pt;}
.ws2c{word-spacing:-15.360000pt;}
.ws2e{word-spacing:-15.306667pt;}
.ws47{word-spacing:-15.146667pt;}
.ws24{word-spacing:-15.093333pt;}
.ws8b{word-spacing:-15.040000pt;}
.ws2a{word-spacing:-14.986667pt;}
.ws8f{word-spacing:-14.933333pt;}
.ws22{word-spacing:-14.880000pt;}
.ws1{word-spacing:-14.826667pt;}
.ws8c{word-spacing:-14.773333pt;}
.ws25{word-spacing:-14.666667pt;}
.ws5d{word-spacing:-14.613333pt;}
.ws4a{word-spacing:-14.560000pt;}
.wsd{word-spacing:-14.506667pt;}
.ws48{word-spacing:-14.453333pt;}
.ws2f{word-spacing:-14.400000pt;}
.wsb{word-spacing:-14.346667pt;}
.ws87{word-spacing:-14.293333pt;}
.wsdc{word-spacing:-14.240000pt;}
.ws31{word-spacing:-14.133333pt;}
.wsc{word-spacing:-14.080000pt;}
.ws8d{word-spacing:-14.026667pt;}
.ws49{word-spacing:-13.973333pt;}
.ws23{word-spacing:-13.920000pt;}
.ws2d{word-spacing:-13.866667pt;}
.ws30{word-spacing:-13.813333pt;}
.ws88{word-spacing:-13.600000pt;}
.ws9e{word-spacing:-13.546667pt;}
.wse{word-spacing:-13.440000pt;}
.ws5c{word-spacing:-13.386667pt;}
.ws2b{word-spacing:-13.333333pt;}
.ws46{word-spacing:-13.226667pt;}
.ws8a{word-spacing:-13.173333pt;}
.ws9d{word-spacing:-13.066667pt;}
.wsba{word-spacing:-13.056000pt;}
.wsb3{word-spacing:-12.714667pt;}
.wsb7{word-spacing:-12.416000pt;}
.wsbb{word-spacing:-12.373333pt;}
.wsb9{word-spacing:-12.245333pt;}
.wsb0{word-spacing:-12.117333pt;}
.wsb8{word-spacing:-11.989333pt;}
.wsdb{word-spacing:-11.904000pt;}
.ws3{word-spacing:-11.861333pt;}
.wsb2{word-spacing:-11.818667pt;}
.wsb4{word-spacing:-11.392000pt;}
.wsbc{word-spacing:-11.221333pt;}
.ws2{word-spacing:-11.120000pt;}
.wsbd{word-spacing:-11.050667pt;}
.wsb6{word-spacing:-11.008000pt;}
.wsd9{word-spacing:-10.965333pt;}
.wsb5{word-spacing:-10.922667pt;}
.ws7a{word-spacing:-10.837333pt;}
.wsb1{word-spacing:-10.794667pt;}
.ws79{word-spacing:-10.709333pt;}
.ws5e{word-spacing:-10.666667pt;}
.wsa1{word-spacing:-10.624000pt;}
.wsbe{word-spacing:-10.538667pt;}
.wsd8{word-spacing:-10.496000pt;}
.ws62{word-spacing:-10.416000pt;}
.ws61{word-spacing:-10.378667pt;}
.ws5f{word-spacing:-8.896000pt;}
.ws32{word-spacing:-8.270827pt;}
.ws33{word-spacing:-8.239733pt;}
.wsd0{word-spacing:-5.632000pt;}
.wscf{word-spacing:-3.968000pt;}
.ws39{word-spacing:-3.786667pt;}
.ws99{word-spacing:-3.626667pt;}
.wsa7{word-spacing:-3.306667pt;}
.ws3c{word-spacing:-2.986667pt;}
.ws9b{word-spacing:-2.613333pt;}
.wscb{word-spacing:-2.602667pt;}
.ws5{word-spacing:-2.565333pt;}
.wscd{word-spacing:-2.389333pt;}
.wsa9{word-spacing:-2.346667pt;}
.wsc2{word-spacing:-2.176000pt;}
.ws3a{word-spacing:-2.133333pt;}
.wsc5{word-spacing:-2.048000pt;}
.ws6d{word-spacing:-1.973333pt;}
.ws41{word-spacing:-1.866667pt;}
.wsd3{word-spacing:-1.749333pt;}
.wsd4{word-spacing:-1.706667pt;}
.ws3d{word-spacing:-1.653333pt;}
.ws1c{word-spacing:-1.600000pt;}
.wsca{word-spacing:-1.578667pt;}
.wsac{word-spacing:-1.408000pt;}
.wse1{word-spacing:-1.237333pt;}
.wsc3{word-spacing:-1.152000pt;}
.ws9a{word-spacing:-0.960000pt;}
.wsa4{word-spacing:-0.853333pt;}
.wse3{word-spacing:-0.810667pt;}
.ws1b{word-spacing:-0.693333pt;}
.wsc6{word-spacing:-0.682667pt;}
.wsce{word-spacing:-0.597333pt;}
.wsd5{word-spacing:-0.554667pt;}
.ws3f{word-spacing:-0.533333pt;}
.ws73{word-spacing:-0.480000pt;}
.ws51{word-spacing:-0.426667pt;}
.wsd7{word-spacing:-0.384000pt;}
.ws50{word-spacing:-0.373333pt;}
.ws14{word-spacing:-0.320000pt;}
.wsde{word-spacing:-0.298667pt;}
.ws44{word-spacing:-0.266667pt;}
.ws7d{word-spacing:-0.256000pt;}
.ws42{word-spacing:-0.213333pt;}
.ws83{word-spacing:-0.170667pt;}
.ws3b{word-spacing:-0.160000pt;}
.ws0{word-spacing:-0.112533pt;}
.ws81{word-spacing:-0.106667pt;}
.ws77{word-spacing:-0.085333pt;}
.ws4d{word-spacing:-0.053333pt;}
.wsc8{word-spacing:-0.042667pt;}
.ws75{word-spacing:-0.037333pt;}
.ws4{word-spacing:0.000000pt;}
.wsae{word-spacing:0.042667pt;}
.ws56{word-spacing:0.053333pt;}
.ws55{word-spacing:0.106667pt;}
.ws86{word-spacing:0.128000pt;}
.ws9{word-spacing:0.160000pt;}
.ws13{word-spacing:0.320000pt;}
.wscc{word-spacing:0.341333pt;}
.ws95{word-spacing:0.373333pt;}
.wsd1{word-spacing:0.384000pt;}
.ws52{word-spacing:0.426667pt;}
.ws74{word-spacing:0.448000pt;}
.ws12{word-spacing:0.480000pt;}
.ws78{word-spacing:0.522667pt;}
.ws10{word-spacing:0.533333pt;}
.wsbf{word-spacing:0.554667pt;}
.ws76{word-spacing:0.560000pt;}
.ws58{word-spacing:0.586667pt;}
.ws59{word-spacing:0.640000pt;}
.ws84{word-spacing:0.725333pt;}
.wsa6{word-spacing:0.746667pt;}
.ws16{word-spacing:0.853333pt;}
.wsaf{word-spacing:0.896000pt;}
.ws17{word-spacing:0.906667pt;}
.wsc4{word-spacing:0.938667pt;}
.ws67{word-spacing:1.066667pt;}
.ws85{word-spacing:1.109333pt;}
.ws6c{word-spacing:1.173333pt;}
.wsc9{word-spacing:1.194667pt;}
.ws1d{word-spacing:1.226667pt;}
.wse4{word-spacing:1.237333pt;}
.ws6f{word-spacing:1.322667pt;}
.ws97{word-spacing:1.386667pt;}
.ws43{word-spacing:1.440000pt;}
.wsaa{word-spacing:1.493333pt;}
.wsdf{word-spacing:1.578667pt;}
.wsab{word-spacing:1.792000pt;}
.wsc7{word-spacing:1.834667pt;}
.ws18{word-spacing:1.866667pt;}
.wsd6{word-spacing:1.962667pt;}
.ws53{word-spacing:1.973333pt;}
.ws15{word-spacing:2.026667pt;}
.wse0{word-spacing:2.048000pt;}
.wse2{word-spacing:2.090667pt;}
.ws91{word-spacing:2.133333pt;}
.ws57{word-spacing:2.186667pt;}
.wsdd{word-spacing:2.218667pt;}
.wsa5{word-spacing:2.293333pt;}
.ws71{word-spacing:2.389333pt;}
.ws5b{word-spacing:2.400000pt;}
.wsc1{word-spacing:2.432000pt;}
.ws4b{word-spacing:2.453333pt;}
.ws35{word-spacing:2.506667pt;}
.wsad{word-spacing:2.517333pt;}
.ws68{word-spacing:2.549653pt;}
.ws40{word-spacing:2.560000pt;}
.ws5a{word-spacing:2.580747pt;}
.ws36{word-spacing:2.666667pt;}
.ws93{word-spacing:2.720000pt;}
.ws72{word-spacing:2.773333pt;}
.wsa2{word-spacing:2.826667pt;}
.ws4e{word-spacing:2.880000pt;}
.ws54{word-spacing:2.986667pt;}
.wsd2{word-spacing:3.029333pt;}
.wsf{word-spacing:3.040000pt;}
.ws37{word-spacing:3.093333pt;}
.ws1a{word-spacing:3.200000pt;}
.ws1e{word-spacing:3.253333pt;}
.ws34{word-spacing:3.360000pt;}
.wsc0{word-spacing:3.370667pt;}
.ws98{word-spacing:3.413333pt;}
.ws38{word-spacing:3.466667pt;}
.ws70{word-spacing:3.498667pt;}
.ws8{word-spacing:3.520000pt;}
.ws82{word-spacing:3.541333pt;}
.ws4f{word-spacing:3.573333pt;}
.ws3e{word-spacing:3.626667pt;}
.ws6b{word-spacing:3.680000pt;}
.ws96{word-spacing:3.786667pt;}
.ws4c{word-spacing:3.893333pt;}
.ws9c{word-spacing:4.000000pt;}
.ws19{word-spacing:4.106667pt;}
.ws6e{word-spacing:4.160000pt;}
.ws11{word-spacing:4.213333pt;}
.wsa{word-spacing:4.320000pt;}
.ws7{word-spacing:4.373333pt;}
.ws6{word-spacing:4.426667pt;}
.ws92{word-spacing:4.480000pt;}
.ws20{word-spacing:4.533333pt;}
.ws69{word-spacing:4.693333pt;}
.wsa8{word-spacing:4.853333pt;}
.ws45{word-spacing:5.653333pt;}
.ws6a{word-spacing:5.760000pt;}
.ws1f{word-spacing:5.813333pt;}
.ws94{word-spacing:6.613333pt;}
.wsa3{word-spacing:6.880000pt;}
.ws80{word-spacing:44.803227pt;}
.ws7f{word-spacing:54.252027pt;}
.ws66{word-spacing:54.432000pt;}
.ws60{word-spacing:54.528000pt;}
.ws64{word-spacing:143.005333pt;}
.ws63{word-spacing:143.832000pt;}
.ws65{word-spacing:144.282667pt;}
.ws7c{word-spacing:326.186667pt;}
.ws7e{word-spacing:326.912000pt;}
.ws7b{word-spacing:337.792000pt;}
._a{margin-left:-2576.085333pt;}
._f{margin-left:-2554.922667pt;}
._5{margin-left:-6.826667pt;}
._4{margin-left:-5.866667pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.640000pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-0.960000pt;}
._6{width:0.906667pt;}
._7{width:1.813333pt;}
._b{width:3.480000pt;}
._9{width:4.373333pt;}
._8{width:5.333333pt;}
._e{width:6.240000pt;}
._d{width:7.146667pt;}
._c{width:8.298667pt;}
._13{width:15.344000pt;}
._1a{width:59.267021pt;}
._1b{width:61.445598pt;}
._11{width:72.320000pt;}
._14{width:80.320000pt;}
._10{width:81.216000pt;}
._12{width:156.128000pt;}
._16{width:332.714667pt;}
._19{width:334.677333pt;}
._15{width:339.797333pt;}
._18{width:477.013333pt;}
._1c{width:481.066667pt;}
._17{width:500.565333pt;}
.fs8{font-size:31.093333pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs4{font-size:40.000000pt;}
.fsa{font-size:42.666133pt;}
.fs7{font-size:42.666667pt;}
.fs6{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2e{bottom:42.468667pt;}
.y1d8{bottom:71.345333pt;}
.y104{bottom:73.777733pt;}
.y196{bottom:73.886133pt;}
.y120{bottom:74.124400pt;}
.yf7{bottom:74.336533pt;}
.y17d{bottom:74.342533pt;}
.y64{bottom:74.462533pt;}
.yb2{bottom:74.588533pt;}
.yc4{bottom:74.595867pt;}
.y9a{bottom:74.597867pt;}
.y21{bottom:78.242667pt;}
.y1d7{bottom:84.678667pt;}
.y195{bottom:87.219467pt;}
.y103{bottom:87.772400pt;}
.y11f{bottom:88.119067pt;}
.yf6{bottom:90.336533pt;}
.y17c{bottom:90.342533pt;}
.y63{bottom:90.462533pt;}
.yb1{bottom:90.588533pt;}
.yc3{bottom:90.595867pt;}
.y99{bottom:90.597867pt;}
.y20{bottom:91.576000pt;}
.y1d6{bottom:98.012000pt;}
.y194{bottom:100.552800pt;}
.y102{bottom:101.767067pt;}
.y11e{bottom:102.113733pt;}
.yf5{bottom:106.336533pt;}
.y17b{bottom:106.342533pt;}
.y62{bottom:106.462533pt;}
.yb0{bottom:106.588533pt;}
.yc2{bottom:106.595867pt;}
.y98{bottom:106.597867pt;}
.y1d5{bottom:111.345333pt;}
.y193{bottom:113.886133pt;}
.y101{bottom:115.761733pt;}
.y11d{bottom:116.108400pt;}
.yf4{bottom:122.336533pt;}
.y17a{bottom:122.342533pt;}
.y61{bottom:122.462533pt;}
.yaf{bottom:122.588533pt;}
.yc1{bottom:122.595867pt;}
.y97{bottom:122.597867pt;}
.y1d4{bottom:124.678667pt;}
.y192{bottom:127.219467pt;}
.y100{bottom:129.756400pt;}
.y11c{bottom:130.103067pt;}
.y1d3{bottom:138.012000pt;}
.yf3{bottom:138.336533pt;}
.y179{bottom:138.342533pt;}
.y60{bottom:138.462533pt;}
.yae{bottom:138.588533pt;}
.yc0{bottom:138.595867pt;}
.y96{bottom:138.597867pt;}
.y191{bottom:140.552800pt;}
.y11b{bottom:144.097733pt;}
.y29{bottom:146.086533pt;}
.y1d2{bottom:151.345333pt;}
.y110{bottom:153.807733pt;}
.y190{bottom:153.886133pt;}
.yf2{bottom:154.336533pt;}
.y178{bottom:154.342533pt;}
.y5f{bottom:154.462533pt;}
.yad{bottom:154.588533pt;}
.ybf{bottom:154.595867pt;}
.y95{bottom:154.597867pt;}
.y11a{bottom:158.092400pt;}
.y28{bottom:162.086533pt;}
.y1d1{bottom:164.678667pt;}
.y18f{bottom:167.219467pt;}
.yf1{bottom:170.336533pt;}
.y177{bottom:170.342533pt;}
.y5e{bottom:170.462533pt;}
.yac{bottom:170.588533pt;}
.ybe{bottom:170.595867pt;}
.y94{bottom:170.597867pt;}
.y119{bottom:172.087067pt;}
.y10f{bottom:175.132133pt;}
.y1d0{bottom:178.012000pt;}
.y27{bottom:178.086533pt;}
.y18e{bottom:180.552800pt;}
.yf0{bottom:186.336533pt;}
.y176{bottom:186.342533pt;}
.y5d{bottom:186.462533pt;}
.yab{bottom:186.588533pt;}
.ybd{bottom:186.595867pt;}
.y93{bottom:186.597867pt;}
.y1cf{bottom:191.345333pt;}
.y18d{bottom:193.886133pt;}
.y26{bottom:194.086533pt;}
.y118{bottom:195.982400pt;}
.y137{bottom:198.402133pt;}
.yef{bottom:202.336533pt;}
.y175{bottom:202.342533pt;}
.y5c{bottom:202.462533pt;}
.yaa{bottom:202.588533pt;}
.ybc{bottom:202.595867pt;}
.y92{bottom:202.597867pt;}
.y1ce{bottom:204.678667pt;}
.y112{bottom:204.870400pt;}
.y18c{bottom:207.219467pt;}
.y25{bottom:210.086533pt;}
.y1cd{bottom:218.012000pt;}
.yee{bottom:218.336533pt;}
.y174{bottom:218.342533pt;}
.y5b{bottom:218.462533pt;}
.ya9{bottom:218.588533pt;}
.ybb{bottom:218.595867pt;}
.y91{bottom:218.597867pt;}
.y18b{bottom:220.552800pt;}
.y136{bottom:221.367467pt;}
.y113{bottom:221.878400pt;}
.y24{bottom:226.086533pt;}
.y10e{bottom:230.822133pt;}
.y1cc{bottom:231.345333pt;}
.y18a{bottom:233.886133pt;}
.yed{bottom:234.336533pt;}
.y173{bottom:234.342533pt;}
.y5a{bottom:234.462533pt;}
.ya8{bottom:234.595867pt;}
.y132{bottom:238.828800pt;}
.y114{bottom:238.886400pt;}
.y23{bottom:242.086533pt;}
.y1cb{bottom:244.678667pt;}
.y189{bottom:247.219467pt;}
.y12a{bottom:248.770133pt;}
.y90{bottom:250.237867pt;}
.yec{bottom:250.336533pt;}
.y59{bottom:250.462533pt;}
.ya7{bottom:250.595867pt;}
.y115{bottom:255.894400pt;}
.y1ca{bottom:258.012000pt;}
.y2b{bottom:258.086533pt;}
.y188{bottom:260.552800pt;}
.y133{bottom:263.490267pt;}
.y172{bottom:265.982533pt;}
.yeb{bottom:266.336533pt;}
.y58{bottom:266.462533pt;}
.ya6{bottom:266.595867pt;}
.y12b{bottom:267.554133pt;}
.y1c9{bottom:271.345333pt;}
.y116{bottom:272.902400pt;}
.y22{bottom:273.726533pt;}
.y187{bottom:273.886133pt;}
.y2a{bottom:274.086533pt;}
.yea{bottom:282.336533pt;}
.y57{bottom:282.462533pt;}
.y8f{bottom:282.464533pt;}
.ya5{bottom:282.595867pt;}
.y1c8{bottom:284.678667pt;}
.y12c{bottom:286.466133pt;}
.y186{bottom:287.219467pt;}
.y117{bottom:289.910400pt;}
.y1c7{bottom:298.012000pt;}
.ye9{bottom:298.336533pt;}
.y56{bottom:298.462533pt;}
.y8e{bottom:298.464533pt;}
.ya4{bottom:298.595867pt;}
.y185{bottom:300.552800pt;}
.y111{bottom:302.418000pt;}
.y12d{bottom:305.250133pt;}
.y1c6{bottom:311.345333pt;}
.ye8{bottom:314.336533pt;}
.y55{bottom:314.462533pt;}
.y8d{bottom:314.464533pt;}
.ya3{bottom:314.595867pt;}
.y10b{bottom:319.420267pt;}
.y12e{bottom:324.034133pt;}
.y1c5{bottom:324.678667pt;}
.y105{bottom:328.316267pt;}
.y184{bottom:329.982533pt;}
.ye7{bottom:330.336533pt;}
.y54{bottom:330.462533pt;}
.y8c{bottom:330.464533pt;}
.ya2{bottom:330.595867pt;}
.y1c4{bottom:338.012000pt;}
.y12f{bottom:342.946133pt;}
.y1f{bottom:343.123733pt;}
.y106{bottom:345.324267pt;}
.ye6{bottom:346.336533pt;}
.y53{bottom:346.462533pt;}
.y8b{bottom:346.464533pt;}
.ya1{bottom:346.595867pt;}
.y1c3{bottom:351.345333pt;}
.y16a{bottom:353.472267pt;}
.y16e{bottom:354.121733pt;}
.y159{bottom:357.094267pt;}
.y15d{bottom:357.852133pt;}
.y130{bottom:361.730133pt;}
.y107{bottom:362.332267pt;}
.ye5{bottom:362.336533pt;}
.y52{bottom:362.462533pt;}
.y8a{bottom:362.464533pt;}
.yba{bottom:362.595867pt;}
.y1c2{bottom:364.678667pt;}
.y169{bottom:365.301600pt;}
.y16d{bottom:365.311067pt;}
.y1e{bottom:367.430400pt;}
.y15c{bottom:368.913467pt;}
.y158{bottom:368.923600pt;}
.y1c1{bottom:378.012000pt;}
.y168{bottom:378.037600pt;}
.y16c{bottom:378.047067pt;}
.ya0{bottom:378.235867pt;}
.ye4{bottom:378.336533pt;}
.y51{bottom:378.462533pt;}
.y89{bottom:378.464533pt;}
.yb9{bottom:378.595867pt;}
.y108{bottom:379.340267pt;}
.y131{bottom:380.514133pt;}
.y15b{bottom:381.777467pt;}
.y157{bottom:381.787600pt;}
.y1d{bottom:383.430400pt;}
.y16b{bottom:389.876400pt;}
.y171{bottom:389.887067pt;}
.y1c0{bottom:391.345333pt;}
.y15a{bottom:393.606800pt;}
.y156{bottom:393.616933pt;}
.y183{bottom:394.102533pt;}
.ye3{bottom:394.336533pt;}
.y50{bottom:394.462533pt;}
.y88{bottom:394.464533pt;}
.yb8{bottom:394.595867pt;}
.y109{bottom:396.348267pt;}
.y1c{bottom:399.430400pt;}
.y167{bottom:402.336267pt;}
.y16f{bottom:402.345733pt;}
.y134{bottom:403.714133pt;}
.y1bf{bottom:404.678667pt;}
.ye2{bottom:410.336533pt;}
.y4f{bottom:410.462533pt;}
.y87{bottom:410.464533pt;}
.yb7{bottom:410.595867pt;}
.y10a{bottom:413.356267pt;}
.y1b{bottom:415.430400pt;}
.y1be{bottom:418.012000pt;}
.y10d{bottom:425.866400pt;}
.y10c{bottom:425.867867pt;}
.y182{bottom:426.102533pt;}
.ye1{bottom:426.336533pt;}
.y4e{bottom:426.462533pt;}
.y86{bottom:426.464533pt;}
.yb6{bottom:426.595867pt;}
.y1bd{bottom:431.345333pt;}
.y1a{bottom:431.430400pt;}
.y135{bottom:434.167467pt;}
.ye0{bottom:442.336533pt;}
.y4d{bottom:442.462533pt;}
.y85{bottom:442.464533pt;}
.yb5{bottom:442.595867pt;}
.y1bc{bottom:444.678667pt;}
.y19{bottom:447.430400pt;}
.y127{bottom:451.410400pt;}
.y1bb{bottom:458.012000pt;}
.y66{bottom:458.102533pt;}
.ydf{bottom:458.336533pt;}
.yff{bottom:458.342533pt;}
.y4c{bottom:458.462533pt;}
.y84{bottom:458.464533pt;}
.yb4{bottom:458.595867pt;}
.y121{bottom:461.394400pt;}
.y18{bottom:463.430400pt;}
.y1ba{bottom:471.345333pt;}
.yde{bottom:474.336533pt;}
.yfe{bottom:474.342533pt;}
.y4b{bottom:474.462533pt;}
.y83{bottom:474.464533pt;}
.y17{bottom:479.430400pt;}
.y1b9{bottom:484.678667pt;}
.y128{bottom:487.490267pt;}
.y65{bottom:489.982533pt;}
.y181{bottom:490.102533pt;}
.yb3{bottom:490.235867pt;}
.ydd{bottom:490.336533pt;}
.yfd{bottom:490.342533pt;}
.y4a{bottom:490.462533pt;}
.y82{bottom:490.464533pt;}
.y122{bottom:492.263733pt;}
.y16{bottom:495.430400pt;}
.y1b8{bottom:498.012000pt;}
.y141{bottom:502.028800pt;}
.y13d{bottom:502.668800pt;}
.ydc{bottom:506.336533pt;}
.yfc{bottom:506.342533pt;}
.y49{bottom:506.462533pt;}
.y81{bottom:506.464533pt;}
.y13f{bottom:508.716800pt;}
.y1b7{bottom:511.345333pt;}
.y15{bottom:511.430400pt;}
.y143{bottom:514.892800pt;}
.y161{bottom:517.105467pt;}
.y165{bottom:517.738933pt;}
.y13e{bottom:521.580800pt;}
.ydb{bottom:522.336533pt;}
.yfb{bottom:522.342533pt;}
.y48{bottom:522.462533pt;}
.y80{bottom:522.464533pt;}
.y123{bottom:523.005067pt;}
.y1b6{bottom:524.678667pt;}
.y14{bottom:527.430400pt;}
.y164{bottom:528.928267pt;}
.y160{bottom:528.934800pt;}
.y140{bottom:536.887467pt;}
.y1b5{bottom:538.012000pt;}
.y180{bottom:538.102533pt;}
.yda{bottom:538.336533pt;}
.yfa{bottom:538.342533pt;}
.y47{bottom:538.462533pt;}
.y7f{bottom:538.464533pt;}
.y142{bottom:541.132800pt;}
.y163{bottom:541.664267pt;}
.y15f{bottom:541.670800pt;}
.y13{bottom:543.430400pt;}
.y139{bottom:549.762133pt;}
.y1b4{bottom:551.345333pt;}
.y162{bottom:553.493600pt;}
.y170{bottom:553.503067pt;}
.y124{bottom:553.874400pt;}
.yd9{bottom:554.336533pt;}
.yf9{bottom:554.342533pt;}
.y46{bottom:554.462533pt;}
.y7e{bottom:554.464533pt;}
.y13c{bottom:558.242133pt;}
.y12{bottom:559.430400pt;}
.y1b3{bottom:564.678667pt;}
.y166{bottom:566.229600pt;}
.y15e{bottom:566.236133pt;}
.yd8{bottom:570.336533pt;}
.y45{bottom:570.462533pt;}
.y7d{bottom:570.464533pt;}
.y11{bottom:575.430400pt;}
.y1b2{bottom:578.012000pt;}
.y138{bottom:583.980800pt;}
.y125{bottom:584.615733pt;}
.yf8{bottom:585.982533pt;}
.yd7{bottom:586.336533pt;}
.y44{bottom:586.462533pt;}
.y7c{bottom:586.464533pt;}
.y151{bottom:587.954533pt;}
.y155{bottom:587.974267pt;}
.y1b1{bottom:591.345333pt;}
.y10{bottom:591.430400pt;}
.y13a{bottom:596.706133pt;}
.y150{bottom:599.794533pt;}
.y154{bottom:599.803600pt;}
.yd6{bottom:602.355867pt;}
.y43{bottom:602.462533pt;}
.y7b{bottom:602.464533pt;}
.y1b0{bottom:604.678667pt;}
.yf{bottom:607.430400pt;}
.y13b{bottom:607.767467pt;}
.y14f{bottom:612.658533pt;}
.y153{bottom:612.667600pt;}
.y126{bottom:615.485067pt;}
.y1af{bottom:618.012000pt;}
.y17f{bottom:618.102533pt;}
.yd5{bottom:618.355867pt;}
.y42{bottom:618.462533pt;}
.y7a{bottom:618.464533pt;}
.ye{bottom:623.430400pt;}
.y14e{bottom:624.701200pt;}
.y152{bottom:624.710267pt;}
.y129{bottom:626.884800pt;}
.y1ae{bottom:631.345333pt;}
.yd4{bottom:634.355867pt;}
.y41{bottom:634.462533pt;}
.y79{bottom:634.464533pt;}
.yd{bottom:639.430400pt;}
.y1ad{bottom:644.678667pt;}
.yd3{bottom:650.355867pt;}
.y40{bottom:650.462533pt;}
.y78{bottom:650.464533pt;}
.yc{bottom:655.430400pt;}
.y14d{bottom:657.010533pt;}
.y1ac{bottom:658.012000pt;}
.yd2{bottom:666.355867pt;}
.y3f{bottom:666.462533pt;}
.y77{bottom:666.464533pt;}
.y1ab{bottom:671.345333pt;}
.y14a{bottom:675.270000pt;}
.yd1{bottom:682.355867pt;}
.y3e{bottom:682.462533pt;}
.y76{bottom:682.464533pt;}
.y1aa{bottom:684.678667pt;}
.y144{bottom:685.254000pt;}
.yb{bottom:695.571067pt;}
.y1a9{bottom:698.012000pt;}
.y3d{bottom:698.462533pt;}
.y75{bottom:698.464533pt;}
.ya{bottom:706.638400pt;}
.y1a8{bottom:711.345333pt;}
.y145{bottom:711.622000pt;}
.yd0{bottom:713.995867pt;}
.y3c{bottom:714.462533pt;}
.y74{bottom:714.464533pt;}
.y14b{bottom:715.838000pt;}
.y1a7{bottom:724.678667pt;}
.y3b{bottom:730.462533pt;}
.y73{bottom:730.464533pt;}
.y9{bottom:734.829867pt;}
.y146{bottom:737.862000pt;}
.y1a6{bottom:738.012000pt;}
.y3a{bottom:746.462533pt;}
.y72{bottom:746.464533pt;}
.y8{bottom:746.829867pt;}
.y1a5{bottom:751.345333pt;}
.y7{bottom:758.829867pt;}
.y17e{bottom:762.102533pt;}
.y39{bottom:762.462533pt;}
.y71{bottom:762.464533pt;}
.ycf{bottom:762.475867pt;}
.y147{bottom:764.230000pt;}
.y1a4{bottom:764.678667pt;}
.y1a3{bottom:778.012000pt;}
.y38{bottom:778.462533pt;}
.y70{bottom:778.464533pt;}
.yce{bottom:778.475867pt;}
.y6{bottom:789.183067pt;}
.y148{bottom:790.598000pt;}
.y1a2{bottom:791.345333pt;}
.y37{bottom:794.462533pt;}
.y6f{bottom:794.464533pt;}
.ycd{bottom:794.475867pt;}
.y1a1{bottom:804.678667pt;}
.y36{bottom:810.462533pt;}
.y6e{bottom:810.464533pt;}
.ycc{bottom:810.475867pt;}
.y149{bottom:816.966000pt;}
.y1a0{bottom:818.012000pt;}
.y35{bottom:826.462533pt;}
.y6d{bottom:826.464533pt;}
.ycb{bottom:826.475867pt;}
.y5{bottom:830.254267pt;}
.y19f{bottom:831.345333pt;}
.y14c{bottom:832.436133pt;}
.y34{bottom:842.462533pt;}
.y6c{bottom:842.464533pt;}
.yca{bottom:842.475867pt;}
.y19e{bottom:844.678667pt;}
.y19d{bottom:858.012000pt;}
.y33{bottom:858.462533pt;}
.y6b{bottom:858.464533pt;}
.yc9{bottom:858.475867pt;}
.y9f{bottom:858.477867pt;}
.y4{bottom:862.635733pt;}
.y19c{bottom:871.345333pt;}
.y32{bottom:874.462533pt;}
.y6a{bottom:874.464533pt;}
.yc8{bottom:874.475867pt;}
.y9e{bottom:874.477867pt;}
.y19b{bottom:884.678667pt;}
.y31{bottom:890.462533pt;}
.y69{bottom:890.464533pt;}
.yc7{bottom:890.475867pt;}
.y9d{bottom:890.477867pt;}
.y3{bottom:895.045333pt;}
.y19a{bottom:898.012000pt;}
.y30{bottom:906.462533pt;}
.yc6{bottom:906.475867pt;}
.y9c{bottom:906.477867pt;}
.y199{bottom:911.345333pt;}
.y68{bottom:922.104533pt;}
.y2f{bottom:922.462533pt;}
.yc5{bottom:922.475867pt;}
.y9b{bottom:922.477867pt;}
.y198{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y197{bottom:1006.590133pt;}
.y67{bottom:1006.594400pt;}
.y1d9{bottom:1006.598667pt;}
.y2d{bottom:1009.860000pt;}
.y2c{bottom:1022.660000pt;}
.h14{height:23.312500pt;}
.h7{height:25.255208pt;}
.h2{height:27.197917pt;}
.h17{height:27.200050pt;}
.h16{height:27.216146pt;}
.hb{height:29.140625pt;}
.h6{height:29.160156pt;}
.h13{height:29.645833pt;}
.h18{height:31.082945pt;}
.he{height:31.083333pt;}
.hd{height:31.104167pt;}
.h15{height:32.853333pt;}
.hc{height:37.057292pt;}
.ha{height:38.828125pt;}
.h8{height:38.854167pt;}
.h9{height:38.880208pt;}
.h5{height:40.769531pt;}
.h1a{height:40.854000pt;}
.h12{height:46.650268pt;}
.hf{height:46.665734pt;}
.h10{height:46.697734pt;}
.h11{height:46.727068pt;}
.h3{height:50.476562pt;}
.h4{height:81.927344pt;}
.h19{height:104.128667pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:68.031467pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x4b{left:90.708667pt;}
.x4{left:94.488133pt;}
.x1f{left:95.476133pt;}
.xc{left:98.271467pt;}
.x19{left:105.252133pt;}
.x18{left:109.436133pt;}
.x3{left:111.499200pt;}
.x17{left:113.644133pt;}
.x6{left:117.170133pt;}
.x1a{left:123.284133pt;}
.x22{left:127.140800pt;}
.x49{left:168.991467pt;}
.x26{left:187.919733pt;}
.x5{left:189.223467pt;}
.x16{left:195.661867pt;}
.x38{left:199.035781pt;}
.x28{left:202.012000pt;}
.x24{left:204.902375pt;}
.x23{left:213.531600pt;}
.x27{left:229.691733pt;}
.x2d{left:254.747420pt;}
.x29{left:267.856510pt;}
.x25{left:268.912241pt;}
.x39{left:287.818131pt;}
.x2b{left:289.253655pt;}
.x2a{left:292.261618pt;}
.x40{left:296.170569pt;}
.x2e{left:297.712216pt;}
.x3e{left:304.031804pt;}
.x3c{left:304.959250pt;}
.x3f{left:310.549056pt;}
.x3a{left:312.031161pt;}
.x3b{left:318.548413pt;}
.x20{left:320.796533pt;}
.x41{left:323.039467pt;}
.x3d{left:331.039467pt;}
.x2c{left:341.754333pt;}
.x2f{left:346.980934pt;}
.x21{left:374.536000pt;}
.x30{left:375.929905pt;}
.x31{left:390.084395pt;}
.xa{left:404.481333pt;}
.xd{left:406.298133pt;}
.x1d{left:424.190933pt;}
.x12{left:425.249200pt;}
.x7{left:427.090133pt;}
.x1c{left:428.374933pt;}
.x1b{left:432.582933pt;}
.xe{left:436.538133pt;}
.x32{left:438.574456pt;}
.x1e{left:441.329067pt;}
.x4a{left:447.878267pt;}
.x33{left:453.368937pt;}
.x13{left:455.433067pt;}
.x8{left:457.330133pt;}
.xf{left:466.911467pt;}
.x34{left:482.307242pt;}
.x47{left:485.658664pt;}
.x44{left:491.474695pt;}
.x46{left:493.317235pt;}
.x42{left:499.133265pt;}
.x43{left:505.063858pt;}
.x48{left:511.739333pt;}
.x45{left:517.423600pt;}
.x15{left:525.911467pt;}
.x35{left:545.719783pt;}
.x36{left:560.514265pt;}
.x37{left:574.658088pt;}
.x11{left:589.770933pt;}
.x2{left:616.324800pt;}
.x4c{left:641.526800pt;}
.x10{left:647.459200pt;}
.x14{left:666.356800pt;}
}




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