
    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_20c97c4b385ff0a1db1f1550.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_11ccc91a3fb0dc349ebb1357.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1c402d3c8e72b22b56105ce2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893066;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_768e3770a3a50fc8538dd93a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_170fe2069e9a3a7ea130f040.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e4b462c4c54f9105d7b59232.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_472057de2d19989672bccc88.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_80e13eef5d224d85f9a9a4b0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249985,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);}
.v2{vertical-align:-18.000000px;}
.v5{vertical-align:-5.531040px;}
.v4{vertical-align:-4.325400px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:7.860873px;}
.v1{vertical-align:20.879400px;}
.ls50{letter-spacing:-1.640160px;}
.ls98{letter-spacing:-1.254960px;}
.lsc9{letter-spacing:-1.254240px;}
.ls51{letter-spacing:-1.061280px;}
.lsc3{letter-spacing:-1.013040px;}
.ls92{letter-spacing:-0.964800px;}
.ls53{letter-spacing:-0.916560px;}
.lsc6{letter-spacing:-0.868320px;}
.lsc7{letter-spacing:-0.820080px;}
.lsc4{letter-spacing:-0.771840px;}
.ls27{letter-spacing:-0.702000px;}
.lse2{letter-spacing:-0.680400px;}
.lsc2{letter-spacing:-0.675360px;}
.ls9a{letter-spacing:-0.578880px;}
.ls26{letter-spacing:-0.540000px;}
.ls1a{letter-spacing:-0.530640px;}
.lsc5{letter-spacing:-0.482400px;}
.ls95{letter-spacing:-0.434160px;}
.ls24{letter-spacing:-0.378000px;}
.lse1{letter-spacing:-0.362880px;}
.lse0{letter-spacing:-0.358560px;}
.ls4c{letter-spacing:-0.341280px;}
.ls19{letter-spacing:-0.337680px;}
.ls93{letter-spacing:-0.289440px;}
.ls94{letter-spacing:-0.241200px;}
.ls20{letter-spacing:-0.239040px;}
.ls23{letter-spacing:-0.216000px;}
.ls1d{letter-spacing:-0.208800px;}
.ls52{letter-spacing:-0.192960px;}
.ls96{letter-spacing:-0.144720px;}
.ls5a{letter-spacing:-0.119520px;}
.ls22{letter-spacing:-0.108000px;}
.ls99{letter-spacing:-0.096480px;}
.ls1c{letter-spacing:-0.083520px;}
.ls1e{letter-spacing:-0.059760px;}
.ls28{letter-spacing:-0.056880px;}
.ls1b{letter-spacing:-0.041760px;}
.ls18{letter-spacing:0.000000px;}
.ls7a{letter-spacing:0.048240px;}
.ls68{letter-spacing:0.053280px;}
.lsaa{letter-spacing:0.056880px;}
.ls3{letter-spacing:0.059760px;}
.ls21{letter-spacing:0.108000px;}
.ls5c{letter-spacing:0.113544px;}
.ls4d{letter-spacing:0.119520px;}
.ls86{letter-spacing:0.144720px;}
.ls69{letter-spacing:0.153360px;}
.ls5{letter-spacing:0.162000px;}
.lsba{letter-spacing:0.164016px;}
.lsa4{letter-spacing:0.170640px;}
.ls4{letter-spacing:0.179280px;}
.ls67{letter-spacing:0.180000px;}
.ls61{letter-spacing:0.185760px;}
.ls0{letter-spacing:0.192960px;}
.ls5b{letter-spacing:0.203184px;}
.ls66{letter-spacing:0.206640px;}
.ls25{letter-spacing:0.216000px;}
.ls65{letter-spacing:0.227520px;}
.ls64{letter-spacing:0.239040px;}
.lsc8{letter-spacing:0.241200px;}
.ls79{letter-spacing:0.259920px;}
.ls45{letter-spacing:0.262944px;}
.ls97{letter-spacing:0.289440px;}
.ls90{letter-spacing:0.313560px;}
.lsa{letter-spacing:0.319536px;}
.ls1{letter-spacing:0.337680px;}
.ls2{letter-spacing:0.341280px;}
.ls1f{letter-spacing:0.358560px;}
.lsd7{letter-spacing:0.362880px;}
.ls17{letter-spacing:0.378000px;}
.ls54{letter-spacing:0.385920px;}
.ls4a{letter-spacing:0.478080px;}
.ls5e{letter-spacing:0.537840px;}
.lsa5{letter-spacing:0.576000px;}
.ls59{letter-spacing:0.597600px;}
.ls2b{letter-spacing:0.657360px;}
.ls78{letter-spacing:0.765360px;}
.ls49{letter-spacing:0.776880px;}
.ls2c{letter-spacing:0.836640px;}
.lsc1{letter-spacing:0.839376px;}
.ls30{letter-spacing:0.896400px;}
.lsb0{letter-spacing:0.916560px;}
.lsd{letter-spacing:0.956160px;}
.ls46{letter-spacing:1.009944px;}
.ls43{letter-spacing:1.015920px;}
.ls29{letter-spacing:1.075680px;}
.ls40{letter-spacing:1.087632px;}
.lsa2{letter-spacing:1.127520px;}
.lsa3{letter-spacing:1.129464px;}
.ls9b{letter-spacing:1.195200px;}
.ls2d{letter-spacing:1.254960px;}
.ls3f{letter-spacing:1.314720px;}
.ls2e{letter-spacing:1.374480px;}
.ls4b{letter-spacing:1.494000px;}
.ls15{letter-spacing:1.547784px;}
.ls2f{letter-spacing:1.553760px;}
.lscb{letter-spacing:1.558152px;}
.ls9d{letter-spacing:1.607544px;}
.ls11{letter-spacing:1.613520px;}
.ls9e{letter-spacing:1.631448px;}
.lsb9{letter-spacing:1.640160px;}
.ls34{letter-spacing:1.673280px;}
.ls3e{letter-spacing:1.691208px;}
.ls9c{letter-spacing:1.703160px;}
.ls2a{letter-spacing:1.792800px;}
.ls74{letter-spacing:1.846584px;}
.ls75{letter-spacing:1.882440px;}
.lscf{letter-spacing:2.291400px;}
.lsce{letter-spacing:2.305872px;}
.lsab{letter-spacing:2.315520px;}
.lsb5{letter-spacing:2.320344px;}
.ls6{letter-spacing:2.322000px;}
.ls38{letter-spacing:2.330640px;}
.lsb4{letter-spacing:2.354112px;}
.lsad{letter-spacing:2.363760px;}
.ls76{letter-spacing:2.390400px;}
.lsac{letter-spacing:3.039120px;}
.ls33{letter-spacing:3.047760px;}
.lsbe{letter-spacing:3.068064px;}
.ls3a{letter-spacing:3.131424px;}
.lsa7{letter-spacing:3.221064px;}
.lsb6{letter-spacing:3.733776px;}
.lsbf{letter-spacing:3.753072px;}
.lsbd{letter-spacing:3.762720px;}
.lsb{letter-spacing:3.764880px;}
.ls8{letter-spacing:3.780000px;}
.ls42{letter-spacing:4.482000px;}
.ls9f{letter-spacing:4.529808px;}
.lse{letter-spacing:5.199120px;}
.lsa1{letter-spacing:5.414256px;}
.ls4f{letter-spacing:5.916240px;}
.lsbc{letter-spacing:5.933520px;}
.ls14{letter-spacing:6.633360px;}
.lsa9{letter-spacing:6.657120px;}
.ls32{letter-spacing:6.750000px;}
.lsa0{letter-spacing:6.920208px;}
.ls37{letter-spacing:7.350480px;}
.lsb7{letter-spacing:7.380720px;}
.ls63{letter-spacing:7.410240px;}
.lsae{letter-spacing:8.104320px;}
.ls58{letter-spacing:8.127360px;}
.lsc0{letter-spacing:8.827920px;}
.ls16{letter-spacing:8.844480px;}
.lsf{letter-spacing:9.519768px;}
.ls9{letter-spacing:9.558000px;}
.ls57{letter-spacing:9.561600px;}
.ls56{letter-spacing:10.207008px;}
.ls7{letter-spacing:10.243800px;}
.lscd{letter-spacing:10.275120px;}
.ls60{letter-spacing:10.278720px;}
.ls5f{letter-spacing:10.995840px;}
.lsbb{letter-spacing:10.998720px;}
.ls5d{letter-spacing:11.001816px;}
.ls62{letter-spacing:11.712960px;}
.lsb8{letter-spacing:11.722320px;}
.ls31{letter-spacing:12.420000px;}
.ls39{letter-spacing:12.430080px;}
.ls10{letter-spacing:13.147200px;}
.lsc{letter-spacing:13.165128px;}
.ls13{letter-spacing:13.864320px;}
.lscc{letter-spacing:14.568480px;}
.ls77{letter-spacing:14.581440px;}
.lsa6{letter-spacing:16.015680px;}
.ls41{letter-spacing:16.732800px;}
.lsb2{letter-spacing:16.739280px;}
.lsb3{letter-spacing:17.443584px;}
.lsb1{letter-spacing:17.462880px;}
.ls35{letter-spacing:19.601280px;}
.lsaf{letter-spacing:19.633680px;}
.ls36{letter-spacing:19.643112px;}
.ls3b{letter-spacing:20.318400px;}
.ls3c{letter-spacing:21.752640px;}
.ls3d{letter-spacing:22.529520px;}
.ls4e{letter-spacing:23.246640px;}
.ls12{letter-spacing:23.963760px;}
.lsca{letter-spacing:26.097840px;}
.lsa8{letter-spacing:29.031408px;}
.ls6f{letter-spacing:29.715840px;}
.ls44{letter-spacing:35.198640px;}
.ls70{letter-spacing:35.456400px;}
.ls6e{letter-spacing:37.627200px;}
.ls6a{letter-spacing:38.350800px;}
.ls6b{letter-spacing:42.644160px;}
.ls47{letter-spacing:46.971360px;}
.ls6c{letter-spacing:46.985760px;}
.ls48{letter-spacing:47.019168px;}
.ls6d{letter-spacing:47.709360px;}
.ls55{letter-spacing:57.070800px;}
.lsdb{letter-spacing:85.140720px;}
.ls8f{letter-spacing:91.607760px;}
.lsd9{letter-spacing:98.843976px;}
.ls8a{letter-spacing:100.966320px;}
.ls85{letter-spacing:103.860720px;}
.ls82{letter-spacing:105.307920px;}
.ls81{letter-spacing:113.219280px;}
.ls80{letter-spacing:113.942880px;}
.ls8c{letter-spacing:116.837280px;}
.ls83{letter-spacing:117.560880px;}
.ls88{letter-spacing:129.042000px;}
.ls87{letter-spacing:129.765600px;}
.ls8d{letter-spacing:130.489200px;}
.ls84{letter-spacing:131.212800px;}
.lsd8{letter-spacing:140.570640px;}
.ls71{letter-spacing:142.742160px;}
.ls89{letter-spacing:143.465760px;}
.ls8e{letter-spacing:149.206320px;}
.ls7f{letter-spacing:153.547920px;}
.ls8b{letter-spacing:171.541440px;}
.lsda{letter-spacing:173.007576px;}
.ls7e{letter-spacing:177.282000px;}
.lsdd{letter-spacing:180.923040px;}
.lsd1{letter-spacing:181.621440px;}
.lsdc{letter-spacing:188.833680px;}
.ls7d{letter-spacing:189.534960px;}
.ls7c{letter-spacing:190.258560px;}
.lsd4{letter-spacing:198.900000px;}
.ls7b{letter-spacing:201.064320px;}
.lsd5{letter-spacing:203.938560px;}
.lsde{letter-spacing:230.564880px;}
.lsd2{letter-spacing:262.257912px;}
.lsdf{letter-spacing:275.970240px;}
.lsd6{letter-spacing:285.300792px;}
.ls72{letter-spacing:295.373520px;}
.ls73{letter-spacing:319.141368px;}
.lsd3{letter-spacing:506.340000px;}
.ls91{letter-spacing:849.780000px;}
.lsd0{letter-spacing:1401.300000px;}
.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;}
}
.wsfb{word-spacing:-18.000000px;}
.ws16{word-spacing:-16.732800px;}
.ws66{word-spacing:-16.613280px;}
.wsed{word-spacing:-16.553520px;}
.ws65{word-spacing:-16.493760px;}
.wsaf{word-spacing:-16.434000px;}
.ws14{word-spacing:-16.314480px;}
.ws63{word-spacing:-16.254720px;}
.ws67{word-spacing:-16.194960px;}
.wsea{word-spacing:-16.135200px;}
.ws15{word-spacing:-16.015680px;}
.wsc0{word-spacing:-15.955920px;}
.ws13{word-spacing:-15.896160px;}
.wsec{word-spacing:-15.836400px;}
.ws17{word-spacing:-15.776640px;}
.ws98{word-spacing:-15.716880px;}
.ws64{word-spacing:-15.597360px;}
.wsfa{word-spacing:-15.537600px;}
.wsb0{word-spacing:-15.418080px;}
.ws99{word-spacing:-15.298560px;}
.wsbe{word-spacing:-15.179040px;}
.ws9a{word-spacing:-14.940000px;}
.ws9b{word-spacing:-14.880240px;}
.wsbd{word-spacing:-14.820480px;}
.wsa4{word-spacing:-14.700960px;}
.ws15a{word-spacing:-14.581440px;}
.ws2{word-spacing:-14.561280px;}
.wsbf{word-spacing:-14.447520px;}
.wsf9{word-spacing:-14.276880px;}
.ws12{word-spacing:-14.163120px;}
.ws68{word-spacing:-13.878720px;}
.wse{word-spacing:-13.878000px;}
.ws10{word-spacing:-13.392000px;}
.wsd{word-spacing:-13.284000px;}
.wsf{word-spacing:-13.122000px;}
.ws11{word-spacing:-12.798000px;}
.wsb1{word-spacing:-12.445920px;}
.ws109{word-spacing:-12.397680px;}
.wsd7{word-spacing:-12.349440px;}
.ws10e{word-spacing:-12.301200px;}
.ws10f{word-spacing:-12.252960px;}
.wsd2{word-spacing:-12.108240px;}
.ws1{word-spacing:-12.060000px;}
.wsd9{word-spacing:-11.963520px;}
.wsd6{word-spacing:-11.915280px;}
.ws9c{word-spacing:-11.867040px;}
.wsd4{word-spacing:-11.818800px;}
.wsd3{word-spacing:-11.770560px;}
.ws0{word-spacing:-11.722320px;}
.ws15e{word-spacing:-11.702880px;}
.wsd5{word-spacing:-11.625840px;}
.ws10c{word-spacing:-11.577600px;}
.ws9e{word-spacing:-11.529360px;}
.ws107{word-spacing:-11.384640px;}
.ws15d{word-spacing:-11.340000px;}
.ws10a{word-spacing:-11.288160px;}
.ws10b{word-spacing:-11.191680px;}
.ws9d{word-spacing:-11.143440px;}
.wsd8{word-spacing:-11.095200px;}
.ws108{word-spacing:-11.046960px;}
.ws10d{word-spacing:-10.998720px;}
.ws15c{word-spacing:-10.977120px;}
.wseb{word-spacing:-10.847520px;}
.ws15b{word-spacing:-10.659600px;}
.ws4{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.398240px;}
.ws5{word-spacing:-10.356480px;}
.ws6{word-spacing:-10.231200px;}
.ws8{word-spacing:-9.720000px;}
.wsc{word-spacing:-9.000000px;}
.wsc4{word-spacing:-5.199120px;}
.ws81{word-spacing:-4.482000px;}
.wsc3{word-spacing:-4.242960px;}
.ws5c{word-spacing:-3.764880px;}
.ws82{word-spacing:-3.645360px;}
.ws5d{word-spacing:-3.525840px;}
.wsa3{word-spacing:-3.346560px;}
.ws105{word-spacing:-3.087360px;}
.ws4a{word-spacing:-3.047760px;}
.ws6f{word-spacing:-2.928240px;}
.ws106{word-spacing:-2.894400px;}
.ws5a{word-spacing:-2.808720px;}
.wsa7{word-spacing:-2.716004px;}
.ws4b{word-spacing:-2.629440px;}
.ws83{word-spacing:-2.450160px;}
.ws138{word-spacing:-2.363760px;}
.ws5b{word-spacing:-2.330640px;}
.ws137{word-spacing:-2.267280px;}
.ws13e{word-spacing:-2.170800px;}
.ws93{word-spacing:-2.091600px;}
.wsf7{word-spacing:-2.031840px;}
.wsf6{word-spacing:-1.912320px;}
.ws45{word-spacing:-1.792800px;}
.ws13f{word-spacing:-1.736640px;}
.ws7e{word-spacing:-1.673280px;}
.ws146{word-spacing:-1.640160px;}
.ws41{word-spacing:-1.613520px;}
.ws55{word-spacing:-1.553760px;}
.ws8d{word-spacing:-1.494000px;}
.ws145{word-spacing:-1.447200px;}
.ws4e{word-spacing:-1.374480px;}
.wsf1{word-spacing:-1.314720px;}
.ws73{word-spacing:-1.254960px;}
.ws50{word-spacing:-1.075680px;}
.wsef{word-spacing:-0.956160px;}
.ws132{word-spacing:-0.916560px;}
.ws163{word-spacing:-0.907200px;}
.ws40{word-spacing:-0.896400px;}
.ws71{word-spacing:-0.836640px;}
.ws95{word-spacing:-0.776880px;}
.ws14e{word-spacing:-0.723600px;}
.ws5e{word-spacing:-0.657360px;}
.ws22{word-spacing:-0.648000px;}
.wsf2{word-spacing:-0.597600px;}
.ws70{word-spacing:-0.478080px;}
.ws69{word-spacing:-0.378000px;}
.ws20{word-spacing:-0.358560px;}
.wsc9{word-spacing:-0.239040px;}
.ws110{word-spacing:-0.227520px;}
.ws18{word-spacing:-0.216000px;}
.ws1a{word-spacing:-0.192960px;}
.ws160{word-spacing:-0.181440px;}
.ws21{word-spacing:-0.179280px;}
.ws3b{word-spacing:-0.162000px;}
.wse9{word-spacing:-0.144720px;}
.ws96{word-spacing:-0.119520px;}
.ws118{word-spacing:-0.096480px;}
.wsd1{word-spacing:-0.059760px;}
.ws3f{word-spacing:-0.054000px;}
.wsda{word-spacing:-0.048240px;}
.ws19{word-spacing:0.000000px;}
.ws25{word-spacing:0.054000px;}
.wsfc{word-spacing:0.056880px;}
.ws8e{word-spacing:0.059760px;}
.ws72{word-spacing:0.119520px;}
.wse6{word-spacing:0.192960px;}
.ws30{word-spacing:0.216000px;}
.ws1f{word-spacing:0.239040px;}
.ws119{word-spacing:0.241200px;}
.ws23{word-spacing:0.270000px;}
.wse7{word-spacing:0.289440px;}
.ws1e{word-spacing:0.324000px;}
.ws1c{word-spacing:0.337680px;}
.wsee{word-spacing:0.358560px;}
.ws161{word-spacing:0.362880px;}
.ws1d{word-spacing:0.375840px;}
.ws24{word-spacing:0.378000px;}
.wsdd{word-spacing:0.385920px;}
.ws135{word-spacing:0.434160px;}
.ws62{word-spacing:0.459360px;}
.ws151{word-spacing:0.482400px;}
.ws1b{word-spacing:0.530640px;}
.ws78{word-spacing:0.537840px;}
.ws2c{word-spacing:0.540000px;}
.ws164{word-spacing:0.544320px;}
.wse8{word-spacing:0.578880px;}
.ws159{word-spacing:0.627120px;}
.ws94{word-spacing:0.657360px;}
.ws15f{word-spacing:0.675360px;}
.ws162{word-spacing:0.680400px;}
.wsae{word-spacing:0.723600px;}
.ws134{word-spacing:0.771840px;}
.ws74{word-spacing:0.776880px;}
.ws136{word-spacing:0.820080px;}
.ws11e{word-spacing:0.868320px;}
.ws115{word-spacing:0.916560px;}
.ws8a{word-spacing:0.956160px;}
.wsdc{word-spacing:0.964800px;}
.ws12b{word-spacing:1.013040px;}
.ws148{word-spacing:1.109520px;}
.wsf5{word-spacing:1.135440px;}
.wsdb{word-spacing:1.157760px;}
.ws11d{word-spacing:1.206000px;}
.ws133{word-spacing:1.254240px;}
.ws42{word-spacing:1.254960px;}
.ws11c{word-spacing:1.447200px;}
.wsb8{word-spacing:1.494000px;}
.ws9f{word-spacing:1.640160px;}
.wsb9{word-spacing:1.673280px;}
.ws6a{word-spacing:1.792800px;}
.ws140{word-spacing:1.929600px;}
.ws26{word-spacing:1.944000px;}
.ws43{word-spacing:1.972080px;}
.ws12d{word-spacing:1.977840px;}
.ws85{word-spacing:2.091600px;}
.ws28{word-spacing:2.106000px;}
.wse2{word-spacing:2.151360px;}
.ws113{word-spacing:2.170800px;}
.ws75{word-spacing:2.211120px;}
.ws8f{word-spacing:2.390400px;}
.ws27{word-spacing:2.538000px;}
.ws14d{word-spacing:2.604960px;}
.ws4c{word-spacing:2.689200px;}
.ws38{word-spacing:2.700000px;}
.ws111{word-spacing:2.701440px;}
.ws142{word-spacing:2.797920px;}
.ws158{word-spacing:2.846160px;}
.ws3e{word-spacing:2.862000px;}
.ws112{word-spacing:2.894400px;}
.wsa2{word-spacing:2.928240px;}
.ws128{word-spacing:3.039120px;}
.ws44{word-spacing:3.107520px;}
.wsfd{word-spacing:3.227040px;}
.ws13b{word-spacing:3.232080px;}
.ws129{word-spacing:3.280320px;}
.ws39{word-spacing:3.294000px;}
.ws141{word-spacing:3.328560px;}
.ws114{word-spacing:3.376800px;}
.ws2b{word-spacing:3.402000px;}
.ws84{word-spacing:3.406320px;}
.ws116{word-spacing:3.473280px;}
.ws8c{word-spacing:3.525840px;}
.ws13c{word-spacing:3.569760px;}
.ws8b{word-spacing:3.645360px;}
.ws2d{word-spacing:3.672000px;}
.wsbb{word-spacing:3.824640px;}
.ws12a{word-spacing:4.052160px;}
.ws12c{word-spacing:4.100400px;}
.wsc1{word-spacing:4.123440px;}
.ws13d{word-spacing:4.293360px;}
.wsa0{word-spacing:4.362480px;}
.ws4d{word-spacing:4.541760px;}
.ws76{word-spacing:4.840560px;}
.ws77{word-spacing:5.079600px;}
.ws59{word-spacing:5.258880px;}
.ws104{word-spacing:5.547600px;}
.wsce{word-spacing:5.557680px;}
.wsd0{word-spacing:5.617440px;}
.wsde{word-spacing:5.677200px;}
.wsba{word-spacing:5.796720px;}
.wse0{word-spacing:5.856480px;}
.wsdf{word-spacing:6.035760px;}
.ws149{word-spacing:6.271200px;}
.ws6d{word-spacing:6.334560px;}
.ws13a{word-spacing:6.367680px;}
.ws12e{word-spacing:6.464160px;}
.wscf{word-spacing:6.573600px;}
.wse4{word-spacing:6.752880px;}
.ws101{word-spacing:6.994800px;}
.ws6c{word-spacing:7.051680px;}
.ws147{word-spacing:7.091280px;}
.ws12f{word-spacing:7.187760px;}
.ws5f{word-spacing:7.290720px;}
.ws117{word-spacing:7.428960px;}
.ws6e{word-spacing:7.470000px;}
.ws11a{word-spacing:7.718400px;}
.ws2f{word-spacing:7.722000px;}
.ws86{word-spacing:7.768800px;}
.ws102{word-spacing:7.814880px;}
.ws103{word-spacing:7.911360px;}
.wsa1{word-spacing:8.007840px;}
.ws130{word-spacing:8.297280px;}
.ws2e{word-spacing:8.316000px;}
.ws131{word-spacing:8.345520px;}
.wsb6{word-spacing:8.485920px;}
.ws60{word-spacing:8.724960px;}
.wsf8{word-spacing:8.904240px;}
.wsb2{word-spacing:8.964000px;}
.ws61{word-spacing:9.023760px;}
.ws144{word-spacing:9.165600px;}
.ws33{word-spacing:9.180000px;}
.ws4f{word-spacing:9.203040px;}
.ws32{word-spacing:9.342000px;}
.ws143{word-spacing:9.358560px;}
.wsb7{word-spacing:9.442080px;}
.ws2a{word-spacing:9.666000px;}
.ws31{word-spacing:9.774000px;}
.ws153{word-spacing:9.889200px;}
.ws92{word-spacing:9.920160px;}
.ws152{word-spacing:9.985680px;}
.ws29{word-spacing:10.044000px;}
.wsc2{word-spacing:10.159200px;}
.wsc5{word-spacing:10.338480px;}
.ws46{word-spacing:10.637280px;}
.ws51{word-spacing:10.876320px;}
.ws7c{word-spacing:11.055600px;}
.ws127{word-spacing:11.336400px;}
.ws3c{word-spacing:11.340000px;}
.ws91{word-spacing:11.354400px;}
.ws139{word-spacing:11.432880px;}
.ws34{word-spacing:11.502000px;}
.ws47{word-spacing:11.593440px;}
.ws3d{word-spacing:11.718000px;}
.wsca{word-spacing:11.772720px;}
.ws49{word-spacing:11.892240px;}
.ws126{word-spacing:12.060000px;}
.ws48{word-spacing:12.071520px;}
.ws125{word-spacing:12.252960px;}
.ws58{word-spacing:12.310560px;}
.wscb{word-spacing:12.489840px;}
.ws56{word-spacing:12.788640px;}
.ws57{word-spacing:12.908160px;}
.ws3a{word-spacing:13.338000px;}
.wse3{word-spacing:13.505760px;}
.wse5{word-spacing:13.924080px;}
.wsfe{word-spacing:14.222880px;}
.ws150{word-spacing:14.375520px;}
.ws90{word-spacing:14.461920px;}
.ws79{word-spacing:14.940000px;}
.ws14f{word-spacing:15.002640px;}
.wsbc{word-spacing:15.179040px;}
.ws7a{word-spacing:15.657120px;}
.ws157{word-spacing:16.353360px;}
.wscd{word-spacing:16.374240px;}
.wsf0{word-spacing:16.553520px;}
.wsac{word-spacing:16.613280px;}
.wsab{word-spacing:16.792560px;}
.ws124{word-spacing:17.076960px;}
.wscc{word-spacing:17.091360px;}
.ws122{word-spacing:17.269920px;}
.wsc8{word-spacing:17.509680px;}
.ws123{word-spacing:17.655840px;}
.ws11f{word-spacing:17.800560px;}
.ws121{word-spacing:17.993520px;}
.wsc7{word-spacing:18.047520px;}
.ws120{word-spacing:18.379440px;}
.ws7b{word-spacing:18.525600px;}
.wsc6{word-spacing:18.943920px;}
.ws6b{word-spacing:19.242720px;}
.ws87{word-spacing:19.661040px;}
.ws11b{word-spacing:19.971360px;}
.ws89{word-spacing:20.198880px;}
.ws80{word-spacing:20.258640px;}
.ws88{word-spacing:20.378160px;}
.ws7d{word-spacing:20.736720px;}
.wse1{word-spacing:20.916000px;}
.ws7f{word-spacing:20.975760px;}
.ws54{word-spacing:21.453840px;}
.ws53{word-spacing:21.633120px;}
.wsf4{word-spacing:21.872160px;}
.wsaa{word-spacing:22.170960px;}
.wsf3{word-spacing:22.469760px;}
.ws52{word-spacing:22.888080px;}
.ws14b{word-spacing:26.435520px;}
.ws37{word-spacing:26.838000px;}
.ws100{word-spacing:27.190800px;}
.ws36{word-spacing:27.324000px;}
.ws14a{word-spacing:27.352080px;}
.ws14c{word-spacing:27.496800px;}
.wsff{word-spacing:27.609120px;}
.ws35{word-spacing:27.756000px;}
.ws155{word-spacing:29.329920px;}
.ws156{word-spacing:29.522880px;}
.ws154{word-spacing:30.150000px;}
.wsa5{word-spacing:35.174095px;}
.wsad{word-spacing:40.875840px;}
.ws7{word-spacing:42.387192px;}
.ws9{word-spacing:43.121160px;}
.wsa{word-spacing:43.147944px;}
.wsb{word-spacing:43.158096px;}
.ws97{word-spacing:45.895680px;}
.wsb4{word-spacing:54.979200px;}
.wsb5{word-spacing:55.696320px;}
.wsb3{word-spacing:55.995120px;}
.wsa8{word-spacing:136.946942px;}
.wsa6{word-spacing:151.111472px;}
.wsa9{word-spacing:1649.946005px;}
._e{margin-left:-334.357266px;}
._1c{margin-left:-171.642240px;}
._22{margin-left:-3.224160px;}
._5{margin-left:-2.118240px;}
._0{margin-left:-1.117800px;}
._1{width:1.350720px;}
._3{width:2.782800px;}
._2{width:4.470408px;}
._19{width:5.945400px;}
._b{width:7.409520px;}
._4{width:8.799840px;}
._6{width:9.856800px;}
._7{width:11.662560px;}
._9{width:13.489560px;}
._24{width:14.520240px;}
._26{width:15.773040px;}
._c{width:17.174880px;}
._11{width:18.196200px;}
._10{width:19.605600px;}
._a{width:21.226320px;}
._21{width:24.190560px;}
._23{width:25.864920px;}
._25{width:28.308240px;}
._d{width:46.758960px;}
._8{width:56.160000px;}
._f{width:57.351240px;}
._13{width:114.328800px;}
._28{width:118.354320px;}
._1d{width:131.883480px;}
._1f{width:133.527240px;}
._1e{width:147.846960px;}
._20{width:149.004720px;}
._18{width:154.126800px;}
._1b{width:159.332040px;}
._1a{width:161.415000px;}
._12{width:165.752640px;}
._15{width:215.869680px;}
._16{width:220.167360px;}
._14{width:301.153680px;}
._17{width:324.936000px;}
._27{width:846.000000px;}
.fc3{color:transparent;}
.fc2{color:rgb(48,79,170);}
.fc1{color:rgb(231,235,19);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:7.993200px;}
.fs9{font-size:8.881800px;}
.fsa{font-size:9.769800px;}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fsc{font-size:45.360000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.240000px;}
.y1a6{bottom:3.538800px;}
.y3cb{bottom:5.400000px;}
.y1a5{bottom:6.752904px;}
.y22e{bottom:7.031975px;}
.y267{bottom:7.032275px;}
.y11a{bottom:7.418400px;}
.y230{bottom:7.420554px;}
.y24f{bottom:7.420800px;}
.y1a8{bottom:7.447920px;}
.y3bf{bottom:7.559850px;}
.y3c4{bottom:7.560000px;}
.y3b0{bottom:7.740000px;}
.y1b9{bottom:8.201850px;}
.y3ac{bottom:8.280000px;}
.y19e{bottom:8.307174px;}
.y10f{bottom:8.335200px;}
.y262{bottom:8.337749px;}
.y1a4{bottom:9.890400px;}
.y244{bottom:9.937500px;}
.y148{bottom:10.529040px;}
.y1a7{bottom:10.556550px;}
.y22d{bottom:10.558050px;}
.y266{bottom:10.558350px;}
.y146{bottom:10.580111px;}
.y24e{bottom:10.693650px;}
.y119{bottom:10.717200px;}
.y19d{bottom:11.002800px;}
.y261{bottom:11.224350px;}
.y1b8{bottom:11.445000px;}
.y10e{bottom:11.605200px;}
.y145{bottom:13.635450px;}
.y243{bottom:13.637850px;}
.y18f{bottom:14.835900px;}
.yeb{bottom:16.352795px;}
.y18e{bottom:18.105750px;}
.y3c9{bottom:18.360000px;}
.yea{bottom:19.437000px;}
.y98{bottom:19.460561px;}
.y3b5{bottom:20.519850px;}
.y3ba{bottom:20.520000px;}
.y3af{bottom:20.700000px;}
.y97{bottom:22.515900px;}
.y28f{bottom:25.184400px;}
.yb{bottom:25.380000px;}
.y28e{bottom:28.187250px;}
.y107{bottom:28.567175px;}
.ya{bottom:30.240000px;}
.y3c8{bottom:31.320000px;}
.y28d{bottom:31.401504px;}
.y248{bottom:31.429620px;}
.y260{bottom:31.429686px;}
.y144{bottom:31.451711px;}
.y16e{bottom:31.515150px;}
.y19c{bottom:31.852001px;}
.y106{bottom:32.093250px;}
.y111{bottom:32.286420px;}
.y118{bottom:32.286529px;}
.y109{bottom:32.288569px;}
.y29a{bottom:32.289570px;}
.y298{bottom:32.318520px;}
.y3b8{bottom:34.019850px;}
.y3b3{bottom:34.020000px;}
.y3d7{bottom:34.200000px;}
.y19b{bottom:34.341125px;}
.y143{bottom:34.507050px;}
.y25f{bottom:34.509450px;}
.y247{bottom:34.538250px;}
.y28c{bottom:34.539000px;}
.y16d{bottom:34.758300px;}
.y18d{bottom:34.980486px;}
.y25b{bottom:34.982286px;}
.y108{bottom:35.006400px;}
.y105{bottom:35.363250px;}
.y110{bottom:35.395050px;}
.y299{bottom:35.398200px;}
.y297{bottom:35.427150px;}
.y117{bottom:35.448450px;}
.y22f{bottom:35.931000px;}
.y16c{bottom:37.715100px;}
.y19a{bottom:37.867200px;}
.y18c{bottom:38.060250px;}
.y25a{bottom:38.062050px;}
.y1c6{bottom:39.643800px;}
.yaf{bottom:40.443450px;}
.ycb{bottom:41.056950px;}
.yae{bottom:43.387650px;}
.yc{bottom:43.560000px;}
.yd8{bottom:43.860786px;}
.yca{bottom:44.304900px;}
.y3cf{bottom:44.820000px;}
.y9{bottom:45.538560px;}
.yd7{bottom:46.940550px;}
.y104{bottom:50.941921px;}
.y296{bottom:51.828894px;}
.y115{bottom:52.056876px;}
.y294{bottom:52.273050px;}
.y103{bottom:54.490200px;}
.y295{bottom:54.522300px;}
.y114{bottom:54.546000px;}
.y116{bottom:54.768000px;}
.y268{bottom:55.188000px;}
.y293{bottom:55.258950px;}
.y189{bottom:55.410150px;}
.y184{bottom:55.852020px;}
.y142{bottom:56.295636px;}
.y1b0{bottom:56.296440px;}
.y199{bottom:56.742450px;}
.y183{bottom:58.960650px;}
.y1af{bottom:58.963200px;}
.y141{bottom:59.375400px;}
.yb5{bottom:59.874041px;}
.y240{bottom:60.043800px;}
.y198{bottom:60.292950px;}
.y8{bottom:61.920000px;}
.y129{bottom:63.205361px;}
.yb4{bottom:63.371250px;}
.y131{bottom:63.407356px;}
.yda{bottom:64.732386px;}
.yd0{bottom:65.176500px;}
.yde{bottom:66.286950px;}
.y130{bottom:66.313925px;}
.y128{bottom:66.755861px;}
.y172{bottom:66.980375px;}
.yd9{bottom:67.812150px;}
.ycf{bottom:68.150550px;}
.y127{bottom:69.811200px;}
.y12f{bottom:69.840000px;}
.y171{bottom:70.506450px;}
.y85{bottom:73.837650px;}
.yc4{bottom:75.860975px;}
.y35{bottom:77.581650px;}
.y140{bottom:78.974850px;}
.yc3{bottom:79.387050px;}
.y17f{bottom:79.390200px;}
.y197{bottom:79.390350px;}
.y177{bottom:79.831920px;}
.y2a4{bottom:81.532260px;}
.y379{bottom:81.723060px;}
.y147{bottom:82.051980px;}
.y13f{bottom:82.274095px;}
.y234{bottom:82.498350px;}
.y13d{bottom:82.698131px;}
.y176{bottom:82.940550px;}
.y17e{bottom:82.940700px;}
.y196{bottom:82.940850px;}
.y13e{bottom:85.407150px;}
.y13c{bottom:85.604700px;}
.y233{bottom:85.790400px;}
.y13b{bottom:86.270850px;}
.yd2{bottom:88.712550px;}
.ye4{bottom:88.712736px;}
.y1bc{bottom:89.582201px;}
.y34{bottom:89.639850px;}
.ye9{bottom:90.267150px;}
.y12e{bottom:90.293945px;}
.y175{bottom:90.711690px;}
.yd1{bottom:91.686600px;}
.ye3{bottom:91.792500px;}
.y1bb{bottom:92.488770px;}
.y1fc{bottom:92.737925px;}
.yef{bottom:93.153570px;}
.y17b{bottom:93.154320px;}
.y82{bottom:93.420000px;}
.yf6{bottom:93.622061px;}
.y12d{bottom:93.820020px;}
.y174{bottom:93.820320px;}
.y1d6{bottom:94.089150px;}
.y64{bottom:94.250880px;}
.y378{bottom:95.580000px;}
.y1ba{bottom:95.597400px;}
.yee{bottom:96.262200px;}
.y17a{bottom:96.262950px;}
.y1fb{bottom:96.264000px;}
.yf5{bottom:96.677400px;}
.y12c{bottom:96.928650px;}
.y173{bottom:96.928950px;}
.y321{bottom:97.360920px;}
.y1d5{bottom:97.596150px;}
.y2ce{bottom:97.811100px;}
.y278{bottom:100.288475px;}
.y1c5{bottom:100.704270px;}
.y23a{bottom:102.286320px;}
.y33{bottom:102.600000px;}
.y1c4{bottom:103.812900px;}
.y277{bottom:103.814550px;}
.ycc{bottom:104.033250px;}
.y219{bottom:104.952750px;}
.y1cd{bottom:105.145086px;}
.y1d1{bottom:105.145170px;}
.y20e{bottom:105.145740px;}
.y239{bottom:105.812395px;}
.y195{bottom:106.342350px;}
.y25d{bottom:106.478670px;}
.y20d{bottom:107.812500px;}
.y218{bottom:107.812650px;}
.y1cc{bottom:108.224850px;}
.y1d0{bottom:108.253800px;}
.y238{bottom:108.945450px;}
.y377{bottom:109.273140px;}
.y194{bottom:109.585500px;}
.y25c{bottom:109.587300px;}
.y1c7{bottom:109.807950px;}
.y136{bottom:110.055311px;}
.y63{bottom:111.357180px;}
.yf2{bottom:113.358960px;}
.y2a3{bottom:113.394780px;}
.y135{bottom:113.581385px;}
.y81{bottom:113.618160px;}
.y83{bottom:113.760000px;}
.y1a3{bottom:114.006197px;}
.y320{bottom:114.646500px;}
.y72{bottom:114.840000px;}
.y2cd{bottom:115.096680px;}
.y1b6{bottom:115.446150px;}
.y134{bottom:116.272571px;}
.yf1{bottom:116.467590px;}
.y1a2{bottom:116.883900px;}
.y12b{bottom:117.362836px;}
.y1d8{bottom:117.579600px;}
.y133{bottom:117.806782px;}
.yf9{bottom:118.021920px;}
.yf4{bottom:118.046345px;}
.y1b5{bottom:118.247400px;}
.y33d{bottom:118.810080px;}
.y17d{bottom:118.910760px;}
.yf0{bottom:119.134350px;}
.y1a1{bottom:119.859900px;}
.y1d7{bottom:120.553500px;}
.y12a{bottom:120.686850px;}
.y32{bottom:120.689280px;}
.y132{bottom:121.104150px;}
.yf3{bottom:121.130550px;}
.y17c{bottom:121.575300px;}
.y1b4{bottom:121.797900px;}
.y228{bottom:121.799100px;}
.y2fd{bottom:122.400000px;}
.y1e8{bottom:122.686500px;}
.y1e4{bottom:122.915100px;}
.y376{bottom:123.130080px;}
.y1e0{bottom:123.130206px;}
.y1cb{bottom:126.043241px;}
.y281{bottom:126.045125px;}
.y1df{bottom:126.238836px;}
.y1e3{bottom:126.299850px;}
.y1cf{bottom:126.460920px;}
.y224{bottom:126.461670px;}
.y62{bottom:128.642760px;}
.y1de{bottom:129.318600px;}
.y1e2{bottom:129.347550px;}
.y1ca{bottom:129.540450px;}
.y1ce{bottom:129.569550px;}
.y223{bottom:129.570300px;}
.y280{bottom:129.571200px;}
.y1dd{bottom:130.074300px;}
.y1d4{bottom:130.260150px;}
.y405{bottom:131.580000px;}
.y31f{bottom:131.932080px;}
.y2cc{bottom:132.202980px;}
.y33c{bottom:132.486120px;}
.y2a2{bottom:133.740000px;}
.y24b{bottom:135.323446px;}
.y375{bottom:136.987020px;}
.y206{bottom:137.099250px;}
.y24a{bottom:137.812571px;}
.y31{bottom:137.974860px;}
.y153{bottom:138.007950px;}
.y138{bottom:138.209886px;}
.y11c{bottom:138.315150px;}
.y13a{bottom:138.510600px;}
.y2fc{bottom:138.780000px;}
.y1dc{bottom:140.066250px;}
.y205{bottom:140.167200px;}
.y265{bottom:140.643683px;}
.yed{bottom:140.871797px;}
.y11b{bottom:141.114150px;}
.y249{bottom:141.312000px;}
.yf8{bottom:141.315881px;}
.y139{bottom:141.558300px;}
.y152{bottom:141.558450px;}
.y137{bottom:141.582750px;}
.y26a{bottom:141.782850px;}
.y204{bottom:142.670250px;}
.y1db{bottom:143.113795px;}
.y264{bottom:143.343750px;}
.y210{bottom:143.616600px;}
.y401{bottom:143.640000px;}
.yec{bottom:143.749500px;}
.y20c{bottom:143.780370px;}
.yf7{bottom:144.222450px;}
.y1c0{bottom:145.527054px;}
.y61{bottom:145.928340px;}
.y1da{bottom:146.246850px;}
.y33b{bottom:146.343060px;}
.y1f0{bottom:146.415654px;}
.y18b{bottom:146.443620px;}
.y20b{bottom:146.889000px;}
.y20f{bottom:146.889150px;}
.y8f{bottom:148.475707px;}
.y1bf{bottom:148.664550px;}
.y31e{bottom:149.217660px;}
.y2cb{bottom:149.488560px;}
.y18a{bottom:149.552250px;}
.y1ef{bottom:149.553150px;}
.yd6{bottom:149.779576px;}
.y27b{bottom:150.191700px;}
.y374{bottom:150.663060px;}
.yc9{bottom:151.166100px;}
.y404{bottom:151.198380px;}
.y402{bottom:151.200000px;}
.y8e{bottom:151.548810px;}
.yd5{bottom:152.659500px;}
.y8d{bottom:154.213350px;}
.yc8{bottom:154.213686px;}
.y30{bottom:155.260440px;}
.ye2{bottom:155.295229px;}
.y2fb{bottom:156.417480px;}
.yc7{bottom:157.293450px;}
.y151{bottom:158.193251px;}
.ye1{bottom:158.457150px;}
.y33a{bottom:160.200000px;}
.y150{bottom:161.515044px;}
.y14d{bottom:162.073350px;}
.y60{bottom:163.213920px;}
.y1fa{bottom:163.599750px;}
.y253{bottom:163.735650px;}
.y27f{bottom:163.738375px;}
.y270{bottom:163.764690px;}
.y403{bottom:164.160000px;}
.y14f{bottom:164.208450px;}
.y373{bottom:164.520000px;}
.y14c{bottom:165.316470px;}
.y24d{bottom:166.045650px;}
.y31d{bottom:166.323960px;}
.y2ca{bottom:166.774140px;}
.y26f{bottom:166.871100px;}
.y1f9{bottom:166.872150px;}
.y27e{bottom:166.873650px;}
.y252{bottom:167.008500px;}
.y1f5{bottom:167.120670px;}
.y217{bottom:167.538600px;}
.y14e{bottom:167.597550px;}
.y14b{bottom:168.425100px;}
.y24c{bottom:169.093350px;}
.y1be{bottom:169.951194px;}
.y1f4{bottom:170.646745px;}
.y22a{bottom:170.840604px;}
.y22c{bottom:170.869650px;}
.y283{bottom:171.005550px;}
.ya4{bottom:171.149250px;}
.y1f2{bottom:171.283920px;}
.y2f{bottom:172.546020px;}
.y1bd{bottom:172.644600px;}
.yc0{bottom:172.667345px;}
.y282{bottom:173.536800px;}
.y269{bottom:173.756400px;}
.ya3{bottom:173.779296px;}
.y1f3{bottom:173.779800px;}
.y22b{bottom:173.816700px;}
.y229{bottom:173.978100px;}
.y1f1{bottom:174.392550px;}
.y292{bottom:174.616050px;}
.yb7{bottom:174.647776px;}
.ybf{bottom:175.751550px;}
.y2fa{bottom:176.220000px;}
.ya2{bottom:177.303150px;}
.yb6{bottom:177.527700px;}
.y3fd{bottom:177.660000px;}
.y372{bottom:178.380000px;}
.y5f{bottom:180.499500px;}
.y31c{bottom:183.609540px;}
.y2c9{bottom:184.059720px;}
.y400{bottom:185.218380px;}
.y3fe{bottom:185.220000px;}
.y193{bottom:185.522395px;}
.y27a{bottom:186.412770px;}
.y87{bottom:188.409300px;}
.y192{bottom:188.655450px;}
.y86{bottom:188.853450px;}
.y1e1{bottom:189.297900px;}
.y279{bottom:189.521400px;}
.y2e{bottom:189.831600px;}
.y339{bottom:190.260000px;}
.y2f9{bottom:190.440000px;}
.y371{bottom:192.063060px;}
.y14a{bottom:192.154020px;}
.yc6{bottom:194.402586px;}
.y149{bottom:195.262650px;}
.y1c1{bottom:195.514650px;}
.y2f8{bottom:196.020000px;}
.y254{bottom:197.041254px;}
.y232{bottom:197.069970px;}
.y23c{bottom:197.070120px;}
.yc5{bottom:197.482350px;}
.y5e{bottom:197.605800px;}
.y3ff{bottom:198.180000px;}
.y1ac{bottom:198.622800px;}
.y8c{bottom:199.248750px;}
.y231{bottom:200.178600px;}
.y23b{bottom:200.178750px;}
.y31b{bottom:200.895120px;}
.y2c8{bottom:201.345300px;}
.y8b{bottom:202.617486px;}
.y162{bottom:204.597196px;}
.y8a{bottom:205.697250px;}
.y370{bottom:205.920000px;}
.ybe{bottom:206.009400px;}
.y161{bottom:207.086321px;}
.y2d{bottom:207.117180px;}
.y15c{bottom:207.752525px;}
.y191{bottom:208.141429px;}
.ybd{bottom:209.057250px;}
.y113{bottom:210.147881px;}
.y2f7{bottom:210.240000px;}
.y160{bottom:210.585750px;}
.y15b{bottom:211.278600px;}
.y190{bottom:211.303350px;}
.y3f9{bottom:211.680000px;}
.y112{bottom:213.054450px;}
.y5d{bottom:214.891380px;}
.y289{bottom:215.026849px;}
.y2f6{bottom:215.820000px;}
.yc2{bottom:217.021620px;}
.y3fa{bottom:217.080000px;}
.y92{bottom:217.334118px;}
.y288{bottom:217.746900px;}
.y237{bottom:217.855050px;}
.y31a{bottom:218.180700px;}
.y23f{bottom:218.356974px;}
.y27d{bottom:218.384100px;}
.y20a{bottom:218.385300px;}
.y2c7{bottom:218.630880px;}
.y36f{bottom:219.783960px;}
.yc1{bottom:220.130250px;}
.y93{bottom:220.824665px;}
.y236{bottom:220.828020px;}
.y91{bottom:221.026726px;}
.y23e{bottom:221.052600px;}
.y287{bottom:221.111550px;}
.y21d{bottom:221.493870px;}
.y27c{bottom:221.494950px;}
.y209{bottom:221.677200px;}
.y208{bottom:221.998500px;}
.y203{bottom:222.381720px;}
.y1f7{bottom:222.381750px;}
.y90{bottom:223.906650px;}
.y235{bottom:223.936650px;}
.y2c{bottom:224.223480px;}
.y21c{bottom:224.602500px;}
.y202{bottom:225.490350px;}
.y1f6{bottom:225.673650px;}
.y1ee{bottom:226.180800px;}
.y15a{bottom:229.465451px;}
.y165{bottom:229.465601px;}
.y3fc{bottom:230.038380px;}
.y2f5{bottom:230.040000px;}
.y167{bottom:230.788944px;}
.yfb{bottom:230.817215px;}
.y257{bottom:231.930090px;}
.y159{bottom:232.156636px;}
.y164{bottom:232.156786px;}
.y5c{bottom:232.176960px;}
.y16b{bottom:232.594200px;}
.y1a0{bottom:232.594615px;}
.y36e{bottom:233.460000px;}
.y166{bottom:233.482350px;}
.yfa{bottom:233.899200px;}
.y338{bottom:234.239940px;}
.y256{bottom:235.038720px;}
.y19f{bottom:235.285800px;}
.y319{bottom:235.466280px;}
.y158{bottom:235.480650px;}
.y163{bottom:235.480800px;}
.y16a{bottom:235.568250px;}
.y2f4{bottom:235.620000px;}
.y2c6{bottom:235.737180px;}
.yb9{bottom:237.262576px;}
.y96{bottom:237.672895px;}
.y255{bottom:238.147350px;}
.y207{bottom:239.317500px;}
.yb8{bottom:240.142500px;}
.y95{bottom:240.808170px;}
.y155{bottom:241.031460px;}
.yce{bottom:241.474686px;}
.y2b{bottom:241.509060px;}
.y157{bottom:241.919610px;}
.y3fb{bottom:243.000000px;}
.y154{bottom:243.696000px;}
.y94{bottom:243.916800px;}
.yb3{bottom:244.367776px;}
.yad{bottom:244.554174px;}
.ycd{bottom:244.554450px;}
.y156{bottom:244.584150px;}
.yab{bottom:244.618597px;}
.yb2{bottom:247.247700px;}
.yac{bottom:247.249800px;}
.y36d{bottom:247.327020px;}
.yaa{bottom:247.691700px;}
.y169{bottom:248.998375px;}
.y5b{bottom:249.462540px;}
.y2f3{bottom:249.840000px;}
.y3a9{bottom:250.020000px;}
.y9f{bottom:250.355796px;}
.y15f{bottom:250.605720px;}
.y89{bottom:250.860600px;}
.y337{bottom:251.525520px;}
.y168{bottom:252.133650px;}
.y318{bottom:252.751860px;}
.y2c5{bottom:253.022760px;}
.y88{bottom:253.464300px;}
.y9e{bottom:253.879650px;}
.y121{bottom:253.936175px;}
.y15e{bottom:254.131795px;}
.y272{bottom:254.356290px;}
.y2f2{bottom:255.420000px;}
.yfe{bottom:255.933995px;}
.y3f5{bottom:256.500000px;}
.y271{bottom:257.023050px;}
.y15d{bottom:257.264850px;}
.y120{bottom:257.462250px;}
.y9a{bottom:257.487725px;}
.y1f8{bottom:257.936700px;}
.y214{bottom:258.378725px;}
.y276{bottom:258.604050px;}
.y2a{bottom:258.794640px;}
.y246{bottom:258.796620px;}
.y212{bottom:258.820564px;}
.yfd{bottom:259.460070px;}
.y99{bottom:261.013800px;}
.y36c{bottom:261.183960px;}
.y211{bottom:261.462900px;}
.y275{bottom:261.463800px;}
.y213{bottom:261.904800px;}
.y245{bottom:261.905250px;}
.y25e{bottom:262.129650px;}
.yfc{bottom:262.568700px;}
.y182{bottom:262.569600px;}
.ye8{bottom:263.234736px;}
.y3f8{bottom:264.058380px;}
.y3f7{bottom:264.060000px;}
.y1ff{bottom:264.373320px;}
.y126{bottom:264.991391px;}
.ye7{bottom:266.314500px;}
.y5a{bottom:266.748120px;}
.y125{bottom:267.682576px;}
.y102{bottom:267.877631px;}
.y1fe{bottom:267.899395px;}
.y21b{bottom:268.701450px;}
.y336{bottom:268.811100px;}
.y1b3{bottom:268.989150px;}
.y3a8{bottom:269.280000px;}
.y11e{bottom:269.452170px;}
.y2f1{bottom:269.640000px;}
.y317{bottom:269.858160px;}
.y2c4{bottom:270.308340px;}
.y124{bottom:270.562500px;}
.y101{bottom:270.784200px;}
.y1fd{bottom:271.032450px;}
.y21a{bottom:271.232700px;}
.y286{bottom:271.426645px;}
.y1b2{bottom:271.702350px;}
.y26e{bottom:271.897350px;}
.y1e9{bottom:272.340150px;}
.y11d{bottom:272.560800px;}
.y100{bottom:273.242850px;}
.y285{bottom:274.561920px;}
.y36b{bottom:274.860000px;}
.y1b1{bottom:274.977450px;}
.y2f0{bottom:275.220000px;}
.y1c9{bottom:275.428247px;}
.y1d3{bottom:275.428481px;}
.y29{bottom:276.080220px;}
.y1e7{bottom:276.336750px;}
.yff{bottom:277.001250px;}
.y3f6{bottom:277.020000px;}
.y186{bottom:277.443900px;}
.y259{bottom:277.456921px;}
.y284{bottom:277.670550px;}
.y1c8{bottom:278.305950px;}
.y1d2{bottom:278.335050px;}
.y258{bottom:280.114800px;}
.y185{bottom:280.554750px;}
.y23d{bottom:280.780800px;}
.y1ab{bottom:282.579720px;}
.y3a7{bottom:282.963060px;}
.y59{bottom:284.033700px;}
.ydd{bottom:284.772270px;}
.y274{bottom:284.997570px;}
.ye0{bottom:285.909191px;}
.y335{bottom:286.096680px;}
.y1aa{bottom:286.105795px;}
.ya1{bottom:286.297224px;}
.ya9{bottom:286.361647px;}
.y1ed{bottom:286.743804px;}
.y201{bottom:286.743954px;}
.y179{bottom:286.771470px;}
.y291{bottom:286.774170px;}
.y1e6{bottom:286.974497px;}
.y316{bottom:287.143740px;}
.y2c3{bottom:287.593920px;}
.ydc{bottom:287.880900px;}
.y273{bottom:288.106200px;}
.y36a{bottom:288.723060px;}
.ya0{bottom:288.992850px;}
.y1a9{bottom:289.238850px;}
.ydf{bottom:289.406400px;}
.ya8{bottom:289.434750px;}
.y2ef{bottom:289.440000px;}
.y1e5{bottom:289.852200px;}
.y178{bottom:289.880100px;}
.y1ec{bottom:289.881300px;}
.y200{bottom:289.881450px;}
.y290{bottom:289.882800px;}
.y10b{bottom:290.385703px;}
.y3f1{bottom:290.520000px;}
.ydb{bottom:291.172650px;}
.y170{bottom:291.185700px;}
.y28b{bottom:291.186150px;}
.y10d{bottom:291.272700px;}
.y28{bottom:293.365800px;}
.y10a{bottom:293.876250px;}
.y16f{bottom:294.159450px;}
.y10c{bottom:294.320400px;}
.y28a{bottom:294.459000px;}
.y2ee{bottom:295.020000px;}
.yd4{bottom:295.651986px;}
.y3a6{bottom:296.820000px;}
.yba{bottom:297.177450px;}
.y3f4{bottom:298.258380px;}
.y3f2{bottom:298.260000px;}
.yd3{bottom:298.731750px;}
.yb1{bottom:300.112654px;}
.ya6{bottom:300.294581px;}
.y58{bottom:301.140000px;}
.y1b7{bottom:301.619850px;}
.y188{bottom:301.843675px;}
.y242{bottom:301.869900px;}
.y369{bottom:302.580000px;}
.ya5{bottom:303.201150px;}
.yb0{bottom:303.201300px;}
.y334{bottom:303.202980px;}
.y315{bottom:304.429320px;}
.y263{bottom:304.758750px;}
.y2c2{bottom:304.879500px;}
.y187{bottom:304.978950px;}
.y241{bottom:304.980750px;}
.y220{bottom:308.781420px;}
.y227{bottom:309.334650px;}
.y27{bottom:310.651380px;}
.y3a5{bottom:310.687020px;}
.y1c3{bottom:311.196390px;}
.y3f3{bottom:311.220000px;}
.y123{bottom:311.397347px;}
.y21f{bottom:312.307495px;}
.y226{bottom:312.307645px;}
.y26d{bottom:312.812850px;}
.y1ae{bottom:312.972420px;}
.y1eb{bottom:312.973140px;}
.y222{bottom:312.973770px;}
.y1c2{bottom:313.863150px;}
.y122{bottom:314.275050px;}
.y11f{bottom:314.526000px;}
.y21e{bottom:315.440550px;}
.y225{bottom:315.440700px;}
.y2ed{bottom:315.540000px;}
.y1ea{bottom:315.639900px;}
.y1ad{bottom:316.081050px;}
.y221{bottom:316.082400px;}
.y26c{bottom:316.082850px;}
.y368{bottom:316.263060px;}
.y1d9{bottom:316.747650px;}
.y216{bottom:317.250450px;}
.y181{bottom:317.410650px;}
.y251{bottom:317.414850px;}
.ybc{bottom:319.914750px;}
.y9d{bottom:320.297820px;}
.y333{bottom:320.488560px;}
.y180{bottom:320.521500px;}
.y215{bottom:320.522850px;}
.y250{bottom:320.684850px;}
.y26b{bottom:320.745600px;}
.ya7{bottom:321.601350px;}
.y314{bottom:321.714900px;}
.ye6{bottom:321.988350px;}
.y2c1{bottom:322.165080px;}
.ybb{bottom:323.184750px;}
.y9c{bottom:323.406450px;}
.y3a4{bottom:324.363060px;}
.y3ed{bottom:324.540000px;}
.ye5{bottom:324.932550px;}
.y9b{bottom:325.865100px;}
.y26{bottom:327.757680px;}
.y367{bottom:330.120000px;}
.y3ef{bottom:332.280000px;}
.y57{bottom:334.080000px;}
.y332{bottom:337.774140px;}
.y84{bottom:338.062950px;}
.y3a3{bottom:338.220000px;}
.y313{bottom:339.000480px;}
.y2c0{bottom:339.271380px;}
.y2ec{bottom:342.617940px;}
.y366{bottom:343.980000px;}
.y25{bottom:345.043260px;}
.y3f0{bottom:345.060000px;}
.y3ee{bottom:345.240000px;}
.y3a2{bottom:352.083960px;}
.y331{bottom:355.059720px;}
.y312{bottom:356.286060px;}
.y2bf{bottom:356.556960px;}
.y365{bottom:357.660000px;}
.y3ea{bottom:358.560000px;}
.y24{bottom:362.328840px;}
.y3a1{bottom:365.760000px;}
.y3eb{bottom:366.300000px;}
.y2eb{bottom:368.897400px;}
.y364{bottom:371.523060px;}
.y330{bottom:372.345300px;}
.y311{bottom:373.392360px;}
.y2be{bottom:373.842540px;}
.y56{bottom:378.011340px;}
.y3ec{bottom:379.260000px;}
.y23{bottom:379.614420px;}
.y3a0{bottom:379.623060px;}
.y363{bottom:385.380000px;}
.y2ea{bottom:386.182980px;}
.y32f{bottom:389.630880px;}
.y310{bottom:390.677940px;}
.y2bd{bottom:391.128120px;}
.y3e7{bottom:392.760000px;}
.y39f{bottom:393.480000px;}
.y55{bottom:396.372600px;}
.y22{bottom:396.900000px;}
.y362{bottom:399.063060px;}
.y3e9{bottom:400.320000px;}
.y2e9{bottom:403.468560px;}
.y32e{bottom:406.737180px;}
.y39e{bottom:407.163060px;}
.y30f{bottom:407.963520px;}
.y2bc{bottom:408.413700px;}
.y361{bottom:412.920000px;}
.y3e8{bottom:413.280000px;}
.y54{bottom:414.733860px;}
.y2e8{bottom:420.754140px;}
.y39d{bottom:421.020000px;}
.y32d{bottom:424.022760px;}
.y30e{bottom:425.249100px;}
.y2bb{bottom:425.520000px;}
.y360{bottom:426.603060px;}
.y3e3{bottom:426.780000px;}
.y21{bottom:429.840000px;}
.y71{bottom:430.688880px;}
.y53{bottom:431.840160px;}
.y3e6{bottom:434.338380px;}
.y3e4{bottom:434.340000px;}
.y39c{bottom:434.706120px;}
.y2e7{bottom:438.039720px;}
.y35f{bottom:440.460000px;}
.y32c{bottom:441.308340px;}
.y30d{bottom:442.534680px;}
.y3e5{bottom:447.300000px;}
.y70{bottom:447.974460px;}
.y39b{bottom:448.563060px;}
.y52{bottom:449.125740px;}
.y35e{bottom:454.323960px;}
.y2e6{bottom:455.146020px;}
.y2ba{bottom:458.460000px;}
.y32b{bottom:458.593920px;}
.y80{bottom:459.583740px;}
.y30c{bottom:459.640980px;}
.y3df{bottom:460.800000px;}
.y39a{bottom:462.420000px;}
.y6f{bottom:465.080760px;}
.y51{bottom:466.411320px;}
.y35d{bottom:468.000000px;}
.y3e2{bottom:468.358380px;}
.y3e1{bottom:468.360000px;}
.y2e5{bottom:472.431600px;}
.y20{bottom:473.179500px;}
.y32a{bottom:475.879500px;}
.y399{bottom:476.110080px;}
.y7f{bottom:476.869320px;}
.y30b{bottom:476.926560px;}
.y3e0{bottom:481.320000px;}
.y35c{bottom:481.863060px;}
.y6e{bottom:482.366340px;}
.y50{bottom:483.696900px;}
.y2e4{bottom:489.717180px;}
.y398{bottom:489.967020px;}
.y329{bottom:492.985800px;}
.y7e{bottom:494.154900px;}
.y30a{bottom:494.212140px;}
.y3db{bottom:494.820000px;}
.y35b{bottom:495.720000px;}
.y6d{bottom:499.651920px;}
.y4f{bottom:500.982480px;}
.y2b9{bottom:502.446600px;}
.y3de{bottom:502.558380px;}
.y3dc{bottom:502.560000px;}
.y1f{bottom:503.784000px;}
.y397{bottom:503.823960px;}
.y2e3{bottom:507.002760px;}
.y35a{bottom:509.403060px;}
.y328{bottom:510.271380px;}
.y7d{bottom:511.440480px;}
.y309{bottom:511.497720px;}
.y3dd{bottom:515.520000px;}
.y6c{bottom:516.937500px;}
.y396{bottom:517.500000px;}
.y4e{bottom:518.088780px;}
.y1e{bottom:519.444000px;}
.y2b8{bottom:519.732180px;}
.y359{bottom:523.260000px;}
.y2e2{bottom:524.288340px;}
.y327{bottom:527.556960px;}
.y7c{bottom:528.726060px;}
.y308{bottom:528.783300px;}
.y3d8{bottom:528.840000px;}
.y395{bottom:531.363060px;}
.y6b{bottom:534.223080px;}
.y1d{bottom:534.928500px;}
.y4d{bottom:535.374360px;}
.y3d9{bottom:536.580000px;}
.y2b7{bottom:537.017760px;}
.y358{bottom:537.123960px;}
.y2e1{bottom:541.573920px;}
.y326{bottom:544.842540px;}
.y394{bottom:545.220000px;}
.y7b{bottom:546.011640px;}
.y307{bottom:546.068880px;}
.y3da{bottom:549.360000px;}
.y1c{bottom:550.588500px;}
.y357{bottom:550.800000px;}
.y6a{bottom:551.329380px;}
.y4c{bottom:552.659940px;}
.y2b6{bottom:554.124060px;}
.y2e0{bottom:558.680220px;}
.y393{bottom:558.910080px;}
.y325{bottom:562.128120px;}
.y3d3{bottom:562.860000px;}
.y7a{bottom:563.117940px;}
.y306{bottom:563.175180px;}
.y356{bottom:564.667020px;}
.y1b{bottom:566.073000px;}
.y69{bottom:568.614960px;}
.y4b{bottom:569.945520px;}
.y3d6{bottom:570.598380px;}
.y3d4{bottom:570.600000px;}
.y2b5{bottom:571.409640px;}
.y392{bottom:572.767020px;}
.y2df{bottom:575.965800px;}
.y355{bottom:578.523960px;}
.y324{bottom:579.413700px;}
.y79{bottom:580.403520px;}
.y305{bottom:580.460760px;}
.y1a{bottom:581.557500px;}
.y3d5{bottom:583.560000px;}
.y68{bottom:585.900540px;}
.y391{bottom:586.623960px;}
.y4a{bottom:587.231100px;}
.y2b4{bottom:588.695220px;}
.y354{bottom:592.200000px;}
.y2de{bottom:593.251380px;}
.y323{bottom:596.520000px;}
.y19{bottom:597.042000px;}
.y3d0{bottom:597.060000px;}
.y78{bottom:597.689100px;}
.y304{bottom:597.746340px;}
.y390{bottom:600.300000px;}
.y49{bottom:604.516680px;}
.y3d1{bottom:604.620000px;}
.y2b3{bottom:605.980800px;}
.y353{bottom:606.063060px;}
.y2dd{bottom:610.536960px;}
.y67{bottom:612.180000px;}
.y18{bottom:612.702000px;}
.y38f{bottom:614.167020px;}
.y77{bottom:614.974680px;}
.y303{bottom:615.031920px;}
.y3d2{bottom:617.580000px;}
.y352{bottom:619.920000px;}
.y48{bottom:621.622980px;}
.y2b2{bottom:623.266380px;}
.y2dc{bottom:627.822540px;}
.y38e{bottom:628.023960px;}
.y17{bottom:628.186500px;}
.y322{bottom:629.460000px;}
.y3c7{bottom:631.080000px;}
.y76{bottom:632.260260px;}
.y302{bottom:632.317500px;}
.y351{bottom:633.606120px;}
.y3cc{bottom:636.480000px;}
.y47{bottom:638.908560px;}
.y2b1{bottom:640.551960px;}
.y38d{bottom:641.700000px;}
.y16{bottom:643.671000px;}
.y66{bottom:643.680000px;}
.y2db{bottom:645.108120px;}
.y350{bottom:647.463060px;}
.y3ce{bottom:649.438380px;}
.y3ca{bottom:649.440000px;}
.y75{bottom:649.545840px;}
.y38c{bottom:655.567020px;}
.y46{bottom:656.194140px;}
.y2b0{bottom:657.658260px;}
.y301{bottom:658.596960px;}
.y15{bottom:659.155500px;}
.y34f{bottom:661.320000px;}
.y2da{bottom:662.214420px;}
.y3cd{bottom:662.400000px;}
.y74{bottom:666.652140px;}
.y38b{bottom:669.423960px;}
.y65{bottom:673.016580px;}
.y45{bottom:673.479720px;}
.y14{bottom:674.640000px;}
.y2af{bottom:674.943840px;}
.y34e{bottom:675.003060px;}
.y3c3{bottom:675.900000px;}
.y2d9{bottom:679.500000px;}
.y38a{bottom:683.100000px;}
.y3c5{bottom:683.460000px;}
.y2a1{bottom:683.937720px;}
.y34d{bottom:688.860000px;}
.y44{bottom:690.765300px;}
.y300{bottom:690.822540px;}
.y2ae{bottom:692.229420px;}
.y73{bottom:692.931600px;}
.y3c6{bottom:696.420000px;}
.y389{bottom:696.967020px;}
.y2a0{bottom:701.223300px;}
.y34c{bottom:702.727020px;}
.y13{bottom:705.244500px;}
.y43{bottom:708.050880px;}
.y2ff{bottom:708.108120px;}
.y2d8{bottom:708.822360px;}
.y2ad{bottom:709.515000px;}
.y3be{bottom:709.920000px;}
.y388{bottom:710.823960px;}
.y34b{bottom:716.403060px;}
.y3c2{bottom:717.478380px;}
.y3c0{bottom:717.479850px;}
.y29f{bottom:718.508880px;}
.y387{bottom:724.500000px;}
.y42{bottom:725.157180px;}
.y2fe{bottom:725.214420px;}
.y2d7{bottom:728.624880px;}
.y12{bottom:729.720000px;}
.y34a{bottom:730.260000px;}
.y3c1{bottom:730.440000px;}
.y29e{bottom:735.794460px;}
.y386{bottom:738.367020px;}
.y41{bottom:742.442760px;}
.y3b9{bottom:743.940000px;}
.y349{bottom:744.126870px;}
.y2d6{bottom:748.427400px;}
.y11{bottom:749.880000px;}
.y3bc{bottom:751.678230px;}
.y385{bottom:752.223960px;}
.y29d{bottom:753.080040px;}
.y348{bottom:757.802910px;}
.y40{bottom:759.728340px;}
.y3bd{bottom:764.458410px;}
.y3bb{bottom:764.460000px;}
.y384{bottom:765.900000px;}
.y2ac{bottom:768.020040px;}
.y2d5{bottom:768.229920px;}
.y29c{bottom:770.186340px;}
.y347{bottom:771.659850px;}
.y10{bottom:775.975860px;}
.y3f{bottom:777.013920px;}
.y3b4{bottom:777.960000px;}
.y383{bottom:779.763060px;}
.y2ab{bottom:785.305620px;}
.y346{bottom:785.527020px;}
.y3b7{bottom:785.698230px;}
.y2d4{bottom:788.032440px;}
.yf{bottom:793.620000px;}
.y3e{bottom:794.299500px;}
.y29b{bottom:796.465800px;}
.y3b6{bottom:798.479850px;}
.y345{bottom:799.203060px;}
.y2aa{bottom:802.411920px;}
.y382{bottom:807.302910px;}
.y2d3{bottom:807.834960px;}
.y3d{bottom:811.405800px;}
.y3ae{bottom:811.980000px;}
.y344{bottom:813.060000px;}
.y2a9{bottom:819.697500px;}
.y3b1{bottom:819.720000px;}
.y381{bottom:821.159850px;}
.y343{bottom:826.923960px;}
.y2d2{bottom:827.637480px;}
.y3c{bottom:828.691380px;}
.ye{bottom:828.729000px;}
.y3b2{bottom:832.500000px;}
.y380{bottom:835.023960px;}
.y2a8{bottom:836.983080px;}
.y342{bottom:840.600000px;}
.y3b{bottom:845.976960px;}
.y3ab{bottom:846.900000px;}
.y2d1{bottom:847.440000px;}
.y37f{bottom:848.700000px;}
.y2a7{bottom:854.268660px;}
.y341{bottom:854.466870px;}
.y3ad{bottom:855.180000px;}
.yd{bottom:859.860000px;}
.y37e{bottom:862.563060px;}
.y3a{bottom:863.262540px;}
.y2d0{bottom:867.240000px;}
.y340{bottom:868.323810px;}
.y2a6{bottom:871.554240px;}
.y37d{bottom:876.420000px;}
.y39{bottom:880.548120px;}
.y33f{bottom:881.999850px;}
.y3aa{bottom:885.240000px;}
.y2cf{bottom:887.760000px;}
.y7{bottom:888.120000px;}
.y2a5{bottom:888.839820px;}
.y37c{bottom:890.105970px;}
.y38{bottom:897.833700px;}
.y37b{bottom:903.962910px;}
.y5{bottom:904.680000px;}
.y33e{bottom:912.240000px;}
.y37{bottom:914.940000px;}
.y37a{bottom:917.819850px;}
.y4{bottom:923.767020px;}
.y3{bottom:937.443060px;}
.y36{bottom:941.044500px;}
.y2{bottom:951.300000px;}
.y1{bottom:965.520000px;}
.h1a{height:5.819268px;}
.h16{height:5.823171px;}
.h18{height:6.466193px;}
.h14{height:6.470530px;}
.h17{height:7.112682px;}
.h15{height:7.117452px;}
.h19{height:14.331403px;}
.h5{height:16.560000px;}
.h1e{height:19.798500px;}
.h1d{height:19.800000px;}
.hc{height:25.013672px;}
.h20{height:25.380000px;}
.h8{height:29.015859px;}
.h22{height:31.517227px;}
.h24{height:32.236627px;}
.h23{height:32.237227px;}
.h1b{height:32.693906px;}
.h4{height:33.494766px;}
.h3{height:33.518320px;}
.h21{height:34.020000px;}
.h27{height:34.200000px;}
.h26{height:34.201500px;}
.h7{height:35.100000px;}
.he{height:36.597656px;}
.h2{height:37.494141px;}
.hd{height:37.520508px;}
.h6{height:39.521602px;}
.h12{height:40.472227px;}
.h10{height:41.522695px;}
.h1f{height:41.751655px;}
.h1c{height:41.930935px;}
.h11{height:43.536094px;}
.h25{height:44.820000px;}
.ha{height:47.894166px;}
.hb{height:47.911326px;}
.hf{height:48.796875px;}
.h9{height:75.041016px;}
.h13{height:342.805500px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.wa{width:40.318500px;}
.w8{width:45.900000px;}
.w7{width:59.940000px;}
.w5{width:65.698500px;}
.w6{width:65.700000px;}
.wb{width:68.221500px;}
.wc{width:120.420000px;}
.w9{width:269.460000px;}
.w3{width:519.480000px;}
.w4{width:578.172000px;}
.w2{width:581.940000px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xe6{left:1.080000px;}
.xa5{left:3.749250px;}
.x34{left:5.319000px;}
.x22{left:6.792450px;}
.x2{left:8.100000px;}
.x6{left:10.800000px;}
.x58{left:13.284750px;}
.x87{left:14.484822px;}
.x5e{left:21.143288px;}
.x6a{left:23.682750px;}
.x5f{left:27.183150px;}
.x5d{left:28.188300px;}
.x60{left:30.438110px;}
.xbf{left:31.696350px;}
.xd0{left:32.760000px;}
.xdd{left:34.020000px;}
.x7a{left:43.403215px;}
.x79{left:46.551600px;}
.x18{left:48.062250px;}
.x24{left:50.383840px;}
.x23{left:51.642750px;}
.x27{left:53.048700px;}
.xde{left:60.120000px;}
.x1b{left:63.020100px;}
.x9f{left:67.160250px;}
.x61{left:71.125200px;}
.x4c{left:72.885750px;}
.x4d{left:74.699735px;}
.x2d{left:75.707400px;}
.x5{left:77.400000px;}
.x39{left:78.772200px;}
.x57{left:79.826250px;}
.x67{left:80.861400px;}
.x38{left:82.326900px;}
.x5a{left:85.437638px;}
.x59{left:86.931900px;}
.x7{left:88.200000px;}
.x1{left:89.280000px;}
.x32{left:93.687300px;}
.x33{left:95.177121px;}
.xb{left:96.660000px;}
.x70{left:97.876050px;}
.x64{left:99.407356px;}
.xb2{left:100.986192px;}
.xf{left:102.060000px;}
.x63{left:103.732500px;}
.xd6{left:104.760000px;}
.x6e{left:105.785755px;}
.xcd{left:106.989120px;}
.x12{left:110.345400px;}
.x84{left:111.750081px;}
.x85{left:113.821650px;}
.xe{left:114.844500px;}
.xc8{left:116.868300px;}
.x6f{left:120.233171px;}
.x66{left:121.293450px;}
.x65{left:123.252450px;}
.xba{left:125.040300px;}
.xca{left:126.683700px;}
.xe3{left:130.860000px;}
.xe5{left:133.380000px;}
.xe4{left:138.960000px;}
.x8{left:140.940000px;}
.xc9{left:145.702650px;}
.x45{left:147.077550px;}
.xbb{left:149.023800px;}
.x46{left:150.092717px;}
.xb8{left:151.683900px;}
.x94{left:156.138450px;}
.x93{left:159.531300px;}
.x95{left:163.221207px;}
.xbe{left:168.343650px;}
.x3b{left:171.591750px;}
.x3c{left:173.805600px;}
.x2f{left:174.950400px;}
.x30{left:176.440221px;}
.x53{left:178.296347px;}
.x52{left:179.948250px;}
.x54{left:181.580400px;}
.xac{left:184.746450px;}
.xad{left:187.698600px;}
.x62{left:192.079650px;}
.xcc{left:194.220900px;}
.x8a{left:198.280200px;}
.x2e{left:199.592250px;}
.x21{left:201.327533px;}
.x1f{left:203.374650px;}
.x20{left:205.799218px;}
.xe7{left:207.360000px;}
.x9{left:209.871000px;}
.xce{left:211.540320px;}
.x17{left:212.580000px;}
.x19{left:215.953050px;}
.x1a{left:217.621350px;}
.xe1{left:219.600000px;}
.x4e{left:222.292650px;}
.xb4{left:223.851600px;}
.x51{left:225.238377px;}
.x50{left:227.258850px;}
.x4f{left:229.375407px;}
.x5c{left:232.309800px;}
.xd7{left:234.360000px;}
.xda{left:243.900000px;}
.xdf{left:247.320000px;}
.xe2{left:248.940000px;}
.x40{left:250.971000px;}
.x41{left:252.374230px;}
.x2a{left:254.846100px;}
.x97{left:255.909900px;}
.x2b{left:258.325310px;}
.xae{left:259.504800px;}
.x31{left:261.168052px;}
.xd{left:264.249000px;}
.x11{left:267.840000px;}
.x15{left:269.460000px;}
.x55{left:273.717000px;}
.xaa{left:275.725393px;}
.xb9{left:276.890850px;}
.x89{left:278.879100px;}
.xc7{left:280.832100px;}
.x56{left:282.218529px;}
.x5b{left:284.001900px;}
.xe8{left:285.300000px;}
.xa{left:298.262340px;}
.x88{left:300.987750px;}
.x43{left:302.186400px;}
.xcf{left:303.300000px;}
.x10{left:305.280000px;}
.xb1{left:306.565200px;}
.xe9{left:308.340000px;}
.xe0{left:309.600000px;}
.x14{left:318.780000px;}
.xc3{left:321.508467px;}
.xc2{left:323.973000px;}
.x9a{left:325.520700px;}
.xc4{left:326.827139px;}
.x9b{left:328.287750px;}
.xc6{left:330.906600px;}
.xbd{left:333.250800px;}
.x8f{left:334.255350px;}
.x6b{left:335.440950px;}
.x90{left:337.498350px;}
.xa2{left:340.300650px;}
.x6c{left:341.417998px;}
.xa7{left:342.950869px;}
.xc{left:347.220000px;}
.xa9{left:350.847600px;}
.x91{left:352.481124px;}
.x3f{left:355.114500px;}
.x3e{left:357.403200px;}
.x83{left:359.887500px;}
.x81{left:361.041000px;}
.xa1{left:363.391350px;}
.x82{left:364.573497px;}
.xd1{left:369.000000px;}
.xa3{left:372.795000px;}
.xc0{left:373.888200px;}
.xa4{left:375.452550px;}
.x69{left:377.480792px;}
.x68{left:378.799650px;}
.x86{left:379.885050px;}
.x8b{left:381.458850px;}
.xdb{left:385.022880px;}
.xd8{left:392.220000px;}
.x92{left:394.024350px;}
.x9c{left:395.537550px;}
.x96{left:397.580972px;}
.x80{left:398.662168px;}
.x7f{left:400.003230px;}
.x7e{left:401.115600px;}
.xbc{left:403.663650px;}
.x4b{left:405.565200px;}
.x44{left:408.092700px;}
.x8e{left:419.185050px;}
.x3d{left:422.935743px;}
.x28{left:424.099050px;}
.x3a{left:426.309999px;}
.x2c{left:427.470900px;}
.xd2{left:434.700000px;}
.x8d{left:441.693750px;}
.xdc{left:442.980000px;}
.x1c{left:444.130950px;}
.x48{left:446.418806px;}
.x42{left:449.391428px;}
.xc1{left:453.870150px;}
.x78{left:455.655150px;}
.x36{left:457.884900px;}
.x37{left:459.698885px;}
.xb3{left:460.705500px;}
.x76{left:465.516579px;}
.x9e{left:466.826100px;}
.x75{left:468.116550px;}
.x8c{left:470.980050px;}
.xb6{left:477.451950px;}
.xb5{left:479.337150px;}
.xb7{left:480.689147px;}
.x7c{left:482.034240px;}
.x7b{left:483.588450px;}
.x72{left:485.120100px;}
.x9d{left:487.095450px;}
.x71{left:488.149650px;}
.xb0{left:490.760100px;}
.xd3{left:500.400000px;}
.x6d{left:503.333278px;}
.x49{left:505.286100px;}
.xa8{left:506.613625px;}
.x1d{left:507.808350px;}
.x1e{left:508.821900px;}
.xa0{left:510.063900px;}
.x4a{left:511.167000px;}
.x73{left:512.662050px;}
.x74{left:513.662117px;}
.x7d{left:527.106750px;}
.x25{left:529.267050px;}
.x98{left:531.287400px;}
.xa6{left:533.071500px;}
.x26{left:534.640176px;}
.x99{left:536.269753px;}
.x47{left:537.752550px;}
.xaf{left:553.057650px;}
.x29{left:554.572950px;}
.x77{left:555.601650px;}
.x35{left:557.093400px;}
.xc5{left:558.408600px;}
.xab{left:559.619518px;}
.xd4{left:566.100000px;}
.xd5{left:626.040000px;}
.xd9{left:631.620000px;}
.x13{left:643.852800px;}
.x4{left:650.524680px;}
.xcb{left:664.380000px;}
.x16{left:667.464300px;}
.x3{left:671.940000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v5{vertical-align:-4.916480pt;}
.v4{vertical-align:-3.844800pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:6.987443pt;}
.v1{vertical-align:18.559467pt;}
.ls50{letter-spacing:-1.457920pt;}
.ls98{letter-spacing:-1.115520pt;}
.lsc9{letter-spacing:-1.114880pt;}
.ls51{letter-spacing:-0.943360pt;}
.lsc3{letter-spacing:-0.900480pt;}
.ls92{letter-spacing:-0.857600pt;}
.ls53{letter-spacing:-0.814720pt;}
.lsc6{letter-spacing:-0.771840pt;}
.lsc7{letter-spacing:-0.728960pt;}
.lsc4{letter-spacing:-0.686080pt;}
.ls27{letter-spacing:-0.624000pt;}
.lse2{letter-spacing:-0.604800pt;}
.lsc2{letter-spacing:-0.600320pt;}
.ls9a{letter-spacing:-0.514560pt;}
.ls26{letter-spacing:-0.480000pt;}
.ls1a{letter-spacing:-0.471680pt;}
.lsc5{letter-spacing:-0.428800pt;}
.ls95{letter-spacing:-0.385920pt;}
.ls24{letter-spacing:-0.336000pt;}
.lse1{letter-spacing:-0.322560pt;}
.lse0{letter-spacing:-0.318720pt;}
.ls4c{letter-spacing:-0.303360pt;}
.ls19{letter-spacing:-0.300160pt;}
.ls93{letter-spacing:-0.257280pt;}
.ls94{letter-spacing:-0.214400pt;}
.ls20{letter-spacing:-0.212480pt;}
.ls23{letter-spacing:-0.192000pt;}
.ls1d{letter-spacing:-0.185600pt;}
.ls52{letter-spacing:-0.171520pt;}
.ls96{letter-spacing:-0.128640pt;}
.ls5a{letter-spacing:-0.106240pt;}
.ls22{letter-spacing:-0.096000pt;}
.ls99{letter-spacing:-0.085760pt;}
.ls1c{letter-spacing:-0.074240pt;}
.ls1e{letter-spacing:-0.053120pt;}
.ls28{letter-spacing:-0.050560pt;}
.ls1b{letter-spacing:-0.037120pt;}
.ls18{letter-spacing:0.000000pt;}
.ls7a{letter-spacing:0.042880pt;}
.ls68{letter-spacing:0.047360pt;}
.lsaa{letter-spacing:0.050560pt;}
.ls3{letter-spacing:0.053120pt;}
.ls21{letter-spacing:0.096000pt;}
.ls5c{letter-spacing:0.100928pt;}
.ls4d{letter-spacing:0.106240pt;}
.ls86{letter-spacing:0.128640pt;}
.ls69{letter-spacing:0.136320pt;}
.ls5{letter-spacing:0.144000pt;}
.lsba{letter-spacing:0.145792pt;}
.lsa4{letter-spacing:0.151680pt;}
.ls4{letter-spacing:0.159360pt;}
.ls67{letter-spacing:0.160000pt;}
.ls61{letter-spacing:0.165120pt;}
.ls0{letter-spacing:0.171520pt;}
.ls5b{letter-spacing:0.180608pt;}
.ls66{letter-spacing:0.183680pt;}
.ls25{letter-spacing:0.192000pt;}
.ls65{letter-spacing:0.202240pt;}
.ls64{letter-spacing:0.212480pt;}
.lsc8{letter-spacing:0.214400pt;}
.ls79{letter-spacing:0.231040pt;}
.ls45{letter-spacing:0.233728pt;}
.ls97{letter-spacing:0.257280pt;}
.ls90{letter-spacing:0.278720pt;}
.lsa{letter-spacing:0.284032pt;}
.ls1{letter-spacing:0.300160pt;}
.ls2{letter-spacing:0.303360pt;}
.ls1f{letter-spacing:0.318720pt;}
.lsd7{letter-spacing:0.322560pt;}
.ls17{letter-spacing:0.336000pt;}
.ls54{letter-spacing:0.343040pt;}
.ls4a{letter-spacing:0.424960pt;}
.ls5e{letter-spacing:0.478080pt;}
.lsa5{letter-spacing:0.512000pt;}
.ls59{letter-spacing:0.531200pt;}
.ls2b{letter-spacing:0.584320pt;}
.ls78{letter-spacing:0.680320pt;}
.ls49{letter-spacing:0.690560pt;}
.ls2c{letter-spacing:0.743680pt;}
.lsc1{letter-spacing:0.746112pt;}
.ls30{letter-spacing:0.796800pt;}
.lsb0{letter-spacing:0.814720pt;}
.lsd{letter-spacing:0.849920pt;}
.ls46{letter-spacing:0.897728pt;}
.ls43{letter-spacing:0.903040pt;}
.ls29{letter-spacing:0.956160pt;}
.ls40{letter-spacing:0.966784pt;}
.lsa2{letter-spacing:1.002240pt;}
.lsa3{letter-spacing:1.003968pt;}
.ls9b{letter-spacing:1.062400pt;}
.ls2d{letter-spacing:1.115520pt;}
.ls3f{letter-spacing:1.168640pt;}
.ls2e{letter-spacing:1.221760pt;}
.ls4b{letter-spacing:1.328000pt;}
.ls15{letter-spacing:1.375808pt;}
.ls2f{letter-spacing:1.381120pt;}
.lscb{letter-spacing:1.385024pt;}
.ls9d{letter-spacing:1.428928pt;}
.ls11{letter-spacing:1.434240pt;}
.ls9e{letter-spacing:1.450176pt;}
.lsb9{letter-spacing:1.457920pt;}
.ls34{letter-spacing:1.487360pt;}
.ls3e{letter-spacing:1.503296pt;}
.ls9c{letter-spacing:1.513920pt;}
.ls2a{letter-spacing:1.593600pt;}
.ls74{letter-spacing:1.641408pt;}
.ls75{letter-spacing:1.673280pt;}
.lscf{letter-spacing:2.036800pt;}
.lsce{letter-spacing:2.049664pt;}
.lsab{letter-spacing:2.058240pt;}
.lsb5{letter-spacing:2.062528pt;}
.ls6{letter-spacing:2.064000pt;}
.ls38{letter-spacing:2.071680pt;}
.lsb4{letter-spacing:2.092544pt;}
.lsad{letter-spacing:2.101120pt;}
.ls76{letter-spacing:2.124800pt;}
.lsac{letter-spacing:2.701440pt;}
.ls33{letter-spacing:2.709120pt;}
.lsbe{letter-spacing:2.727168pt;}
.ls3a{letter-spacing:2.783488pt;}
.lsa7{letter-spacing:2.863168pt;}
.lsb6{letter-spacing:3.318912pt;}
.lsbf{letter-spacing:3.336064pt;}
.lsbd{letter-spacing:3.344640pt;}
.lsb{letter-spacing:3.346560pt;}
.ls8{letter-spacing:3.360000pt;}
.ls42{letter-spacing:3.984000pt;}
.ls9f{letter-spacing:4.026496pt;}
.lse{letter-spacing:4.621440pt;}
.lsa1{letter-spacing:4.812672pt;}
.ls4f{letter-spacing:5.258880pt;}
.lsbc{letter-spacing:5.274240pt;}
.ls14{letter-spacing:5.896320pt;}
.lsa9{letter-spacing:5.917440pt;}
.ls32{letter-spacing:6.000000pt;}
.lsa0{letter-spacing:6.151296pt;}
.ls37{letter-spacing:6.533760pt;}
.lsb7{letter-spacing:6.560640pt;}
.ls63{letter-spacing:6.586880pt;}
.lsae{letter-spacing:7.203840pt;}
.ls58{letter-spacing:7.224320pt;}
.lsc0{letter-spacing:7.847040pt;}
.ls16{letter-spacing:7.861760pt;}
.lsf{letter-spacing:8.462016pt;}
.ls9{letter-spacing:8.496000pt;}
.ls57{letter-spacing:8.499200pt;}
.ls56{letter-spacing:9.072896pt;}
.ls7{letter-spacing:9.105600pt;}
.lscd{letter-spacing:9.133440pt;}
.ls60{letter-spacing:9.136640pt;}
.ls5f{letter-spacing:9.774080pt;}
.lsbb{letter-spacing:9.776640pt;}
.ls5d{letter-spacing:9.779392pt;}
.ls62{letter-spacing:10.411520pt;}
.lsb8{letter-spacing:10.419840pt;}
.ls31{letter-spacing:11.040000pt;}
.ls39{letter-spacing:11.048960pt;}
.ls10{letter-spacing:11.686400pt;}
.lsc{letter-spacing:11.702336pt;}
.ls13{letter-spacing:12.323840pt;}
.lscc{letter-spacing:12.949760pt;}
.ls77{letter-spacing:12.961280pt;}
.lsa6{letter-spacing:14.236160pt;}
.ls41{letter-spacing:14.873600pt;}
.lsb2{letter-spacing:14.879360pt;}
.lsb3{letter-spacing:15.505408pt;}
.lsb1{letter-spacing:15.522560pt;}
.ls35{letter-spacing:17.423360pt;}
.lsaf{letter-spacing:17.452160pt;}
.ls36{letter-spacing:17.460544pt;}
.ls3b{letter-spacing:18.060800pt;}
.ls3c{letter-spacing:19.335680pt;}
.ls3d{letter-spacing:20.026240pt;}
.ls4e{letter-spacing:20.663680pt;}
.ls12{letter-spacing:21.301120pt;}
.lsca{letter-spacing:23.198080pt;}
.lsa8{letter-spacing:25.805696pt;}
.ls6f{letter-spacing:26.414080pt;}
.ls44{letter-spacing:31.287680pt;}
.ls70{letter-spacing:31.516800pt;}
.ls6e{letter-spacing:33.446400pt;}
.ls6a{letter-spacing:34.089600pt;}
.ls6b{letter-spacing:37.905920pt;}
.ls47{letter-spacing:41.752320pt;}
.ls6c{letter-spacing:41.765120pt;}
.ls48{letter-spacing:41.794816pt;}
.ls6d{letter-spacing:42.408320pt;}
.ls55{letter-spacing:50.729600pt;}
.lsdb{letter-spacing:75.680640pt;}
.ls8f{letter-spacing:81.429120pt;}
.lsd9{letter-spacing:87.861312pt;}
.ls8a{letter-spacing:89.747840pt;}
.ls85{letter-spacing:92.320640pt;}
.ls82{letter-spacing:93.607040pt;}
.ls81{letter-spacing:100.639360pt;}
.ls80{letter-spacing:101.282560pt;}
.ls8c{letter-spacing:103.855360pt;}
.ls83{letter-spacing:104.498560pt;}
.ls88{letter-spacing:114.704000pt;}
.ls87{letter-spacing:115.347200pt;}
.ls8d{letter-spacing:115.990400pt;}
.ls84{letter-spacing:116.633600pt;}
.lsd8{letter-spacing:124.951680pt;}
.ls71{letter-spacing:126.881920pt;}
.ls89{letter-spacing:127.525120pt;}
.ls8e{letter-spacing:132.627840pt;}
.ls7f{letter-spacing:136.487040pt;}
.ls8b{letter-spacing:152.481280pt;}
.lsda{letter-spacing:153.784512pt;}
.ls7e{letter-spacing:157.584000pt;}
.lsdd{letter-spacing:160.820480pt;}
.lsd1{letter-spacing:161.441280pt;}
.lsdc{letter-spacing:167.852160pt;}
.ls7d{letter-spacing:168.475520pt;}
.ls7c{letter-spacing:169.118720pt;}
.lsd4{letter-spacing:176.800000pt;}
.ls7b{letter-spacing:178.723840pt;}
.lsd5{letter-spacing:181.278720pt;}
.lsde{letter-spacing:204.946560pt;}
.lsd2{letter-spacing:233.118144pt;}
.lsdf{letter-spacing:245.306880pt;}
.lsd6{letter-spacing:253.600704pt;}
.ls72{letter-spacing:262.554240pt;}
.ls73{letter-spacing:283.681216pt;}
.lsd3{letter-spacing:450.080000pt;}
.ls91{letter-spacing:755.360000pt;}
.lsd0{letter-spacing:1245.600000pt;}
.wsfb{word-spacing:-16.000000pt;}
.ws16{word-spacing:-14.873600pt;}
.ws66{word-spacing:-14.767360pt;}
.wsed{word-spacing:-14.714240pt;}
.ws65{word-spacing:-14.661120pt;}
.wsaf{word-spacing:-14.608000pt;}
.ws14{word-spacing:-14.501760pt;}
.ws63{word-spacing:-14.448640pt;}
.ws67{word-spacing:-14.395520pt;}
.wsea{word-spacing:-14.342400pt;}
.ws15{word-spacing:-14.236160pt;}
.wsc0{word-spacing:-14.183040pt;}
.ws13{word-spacing:-14.129920pt;}
.wsec{word-spacing:-14.076800pt;}
.ws17{word-spacing:-14.023680pt;}
.ws98{word-spacing:-13.970560pt;}
.ws64{word-spacing:-13.864320pt;}
.wsfa{word-spacing:-13.811200pt;}
.wsb0{word-spacing:-13.704960pt;}
.ws99{word-spacing:-13.598720pt;}
.wsbe{word-spacing:-13.492480pt;}
.ws9a{word-spacing:-13.280000pt;}
.ws9b{word-spacing:-13.226880pt;}
.wsbd{word-spacing:-13.173760pt;}
.wsa4{word-spacing:-13.067520pt;}
.ws15a{word-spacing:-12.961280pt;}
.ws2{word-spacing:-12.943360pt;}
.wsbf{word-spacing:-12.842240pt;}
.wsf9{word-spacing:-12.690560pt;}
.ws12{word-spacing:-12.589440pt;}
.ws68{word-spacing:-12.336640pt;}
.wse{word-spacing:-12.336000pt;}
.ws10{word-spacing:-11.904000pt;}
.wsd{word-spacing:-11.808000pt;}
.wsf{word-spacing:-11.664000pt;}
.ws11{word-spacing:-11.376000pt;}
.wsb1{word-spacing:-11.063040pt;}
.ws109{word-spacing:-11.020160pt;}
.wsd7{word-spacing:-10.977280pt;}
.ws10e{word-spacing:-10.934400pt;}
.ws10f{word-spacing:-10.891520pt;}
.wsd2{word-spacing:-10.762880pt;}
.ws1{word-spacing:-10.720000pt;}
.wsd9{word-spacing:-10.634240pt;}
.wsd6{word-spacing:-10.591360pt;}
.ws9c{word-spacing:-10.548480pt;}
.wsd4{word-spacing:-10.505600pt;}
.wsd3{word-spacing:-10.462720pt;}
.ws0{word-spacing:-10.419840pt;}
.ws15e{word-spacing:-10.402560pt;}
.wsd5{word-spacing:-10.334080pt;}
.ws10c{word-spacing:-10.291200pt;}
.ws9e{word-spacing:-10.248320pt;}
.ws107{word-spacing:-10.119680pt;}
.ws15d{word-spacing:-10.080000pt;}
.ws10a{word-spacing:-10.033920pt;}
.ws10b{word-spacing:-9.948160pt;}
.ws9d{word-spacing:-9.905280pt;}
.wsd8{word-spacing:-9.862400pt;}
.ws108{word-spacing:-9.819520pt;}
.ws10d{word-spacing:-9.776640pt;}
.ws15c{word-spacing:-9.757440pt;}
.wseb{word-spacing:-9.642240pt;}
.ws15b{word-spacing:-9.475200pt;}
.ws4{word-spacing:-9.280000pt;}
.ws3{word-spacing:-9.242880pt;}
.ws5{word-spacing:-9.205760pt;}
.ws6{word-spacing:-9.094400pt;}
.ws8{word-spacing:-8.640000pt;}
.wsc{word-spacing:-8.000000pt;}
.wsc4{word-spacing:-4.621440pt;}
.ws81{word-spacing:-3.984000pt;}
.wsc3{word-spacing:-3.771520pt;}
.ws5c{word-spacing:-3.346560pt;}
.ws82{word-spacing:-3.240320pt;}
.ws5d{word-spacing:-3.134080pt;}
.wsa3{word-spacing:-2.974720pt;}
.ws105{word-spacing:-2.744320pt;}
.ws4a{word-spacing:-2.709120pt;}
.ws6f{word-spacing:-2.602880pt;}
.ws106{word-spacing:-2.572800pt;}
.ws5a{word-spacing:-2.496640pt;}
.wsa7{word-spacing:-2.414226pt;}
.ws4b{word-spacing:-2.337280pt;}
.ws83{word-spacing:-2.177920pt;}
.ws138{word-spacing:-2.101120pt;}
.ws5b{word-spacing:-2.071680pt;}
.ws137{word-spacing:-2.015360pt;}
.ws13e{word-spacing:-1.929600pt;}
.ws93{word-spacing:-1.859200pt;}
.wsf7{word-spacing:-1.806080pt;}
.wsf6{word-spacing:-1.699840pt;}
.ws45{word-spacing:-1.593600pt;}
.ws13f{word-spacing:-1.543680pt;}
.ws7e{word-spacing:-1.487360pt;}
.ws146{word-spacing:-1.457920pt;}
.ws41{word-spacing:-1.434240pt;}
.ws55{word-spacing:-1.381120pt;}
.ws8d{word-spacing:-1.328000pt;}
.ws145{word-spacing:-1.286400pt;}
.ws4e{word-spacing:-1.221760pt;}
.wsf1{word-spacing:-1.168640pt;}
.ws73{word-spacing:-1.115520pt;}
.ws50{word-spacing:-0.956160pt;}
.wsef{word-spacing:-0.849920pt;}
.ws132{word-spacing:-0.814720pt;}
.ws163{word-spacing:-0.806400pt;}
.ws40{word-spacing:-0.796800pt;}
.ws71{word-spacing:-0.743680pt;}
.ws95{word-spacing:-0.690560pt;}
.ws14e{word-spacing:-0.643200pt;}
.ws5e{word-spacing:-0.584320pt;}
.ws22{word-spacing:-0.576000pt;}
.wsf2{word-spacing:-0.531200pt;}
.ws70{word-spacing:-0.424960pt;}
.ws69{word-spacing:-0.336000pt;}
.ws20{word-spacing:-0.318720pt;}
.wsc9{word-spacing:-0.212480pt;}
.ws110{word-spacing:-0.202240pt;}
.ws18{word-spacing:-0.192000pt;}
.ws1a{word-spacing:-0.171520pt;}
.ws160{word-spacing:-0.161280pt;}
.ws21{word-spacing:-0.159360pt;}
.ws3b{word-spacing:-0.144000pt;}
.wse9{word-spacing:-0.128640pt;}
.ws96{word-spacing:-0.106240pt;}
.ws118{word-spacing:-0.085760pt;}
.wsd1{word-spacing:-0.053120pt;}
.ws3f{word-spacing:-0.048000pt;}
.wsda{word-spacing:-0.042880pt;}
.ws19{word-spacing:0.000000pt;}
.ws25{word-spacing:0.048000pt;}
.wsfc{word-spacing:0.050560pt;}
.ws8e{word-spacing:0.053120pt;}
.ws72{word-spacing:0.106240pt;}
.wse6{word-spacing:0.171520pt;}
.ws30{word-spacing:0.192000pt;}
.ws1f{word-spacing:0.212480pt;}
.ws119{word-spacing:0.214400pt;}
.ws23{word-spacing:0.240000pt;}
.wse7{word-spacing:0.257280pt;}
.ws1e{word-spacing:0.288000pt;}
.ws1c{word-spacing:0.300160pt;}
.wsee{word-spacing:0.318720pt;}
.ws161{word-spacing:0.322560pt;}
.ws1d{word-spacing:0.334080pt;}
.ws24{word-spacing:0.336000pt;}
.wsdd{word-spacing:0.343040pt;}
.ws135{word-spacing:0.385920pt;}
.ws62{word-spacing:0.408320pt;}
.ws151{word-spacing:0.428800pt;}
.ws1b{word-spacing:0.471680pt;}
.ws78{word-spacing:0.478080pt;}
.ws2c{word-spacing:0.480000pt;}
.ws164{word-spacing:0.483840pt;}
.wse8{word-spacing:0.514560pt;}
.ws159{word-spacing:0.557440pt;}
.ws94{word-spacing:0.584320pt;}
.ws15f{word-spacing:0.600320pt;}
.ws162{word-spacing:0.604800pt;}
.wsae{word-spacing:0.643200pt;}
.ws134{word-spacing:0.686080pt;}
.ws74{word-spacing:0.690560pt;}
.ws136{word-spacing:0.728960pt;}
.ws11e{word-spacing:0.771840pt;}
.ws115{word-spacing:0.814720pt;}
.ws8a{word-spacing:0.849920pt;}
.wsdc{word-spacing:0.857600pt;}
.ws12b{word-spacing:0.900480pt;}
.ws148{word-spacing:0.986240pt;}
.wsf5{word-spacing:1.009280pt;}
.wsdb{word-spacing:1.029120pt;}
.ws11d{word-spacing:1.072000pt;}
.ws133{word-spacing:1.114880pt;}
.ws42{word-spacing:1.115520pt;}
.ws11c{word-spacing:1.286400pt;}
.wsb8{word-spacing:1.328000pt;}
.ws9f{word-spacing:1.457920pt;}
.wsb9{word-spacing:1.487360pt;}
.ws6a{word-spacing:1.593600pt;}
.ws140{word-spacing:1.715200pt;}
.ws26{word-spacing:1.728000pt;}
.ws43{word-spacing:1.752960pt;}
.ws12d{word-spacing:1.758080pt;}
.ws85{word-spacing:1.859200pt;}
.ws28{word-spacing:1.872000pt;}
.wse2{word-spacing:1.912320pt;}
.ws113{word-spacing:1.929600pt;}
.ws75{word-spacing:1.965440pt;}
.ws8f{word-spacing:2.124800pt;}
.ws27{word-spacing:2.256000pt;}
.ws14d{word-spacing:2.315520pt;}
.ws4c{word-spacing:2.390400pt;}
.ws38{word-spacing:2.400000pt;}
.ws111{word-spacing:2.401280pt;}
.ws142{word-spacing:2.487040pt;}
.ws158{word-spacing:2.529920pt;}
.ws3e{word-spacing:2.544000pt;}
.ws112{word-spacing:2.572800pt;}
.wsa2{word-spacing:2.602880pt;}
.ws128{word-spacing:2.701440pt;}
.ws44{word-spacing:2.762240pt;}
.wsfd{word-spacing:2.868480pt;}
.ws13b{word-spacing:2.872960pt;}
.ws129{word-spacing:2.915840pt;}
.ws39{word-spacing:2.928000pt;}
.ws141{word-spacing:2.958720pt;}
.ws114{word-spacing:3.001600pt;}
.ws2b{word-spacing:3.024000pt;}
.ws84{word-spacing:3.027840pt;}
.ws116{word-spacing:3.087360pt;}
.ws8c{word-spacing:3.134080pt;}
.ws13c{word-spacing:3.173120pt;}
.ws8b{word-spacing:3.240320pt;}
.ws2d{word-spacing:3.264000pt;}
.wsbb{word-spacing:3.399680pt;}
.ws12a{word-spacing:3.601920pt;}
.ws12c{word-spacing:3.644800pt;}
.wsc1{word-spacing:3.665280pt;}
.ws13d{word-spacing:3.816320pt;}
.wsa0{word-spacing:3.877760pt;}
.ws4d{word-spacing:4.037120pt;}
.ws76{word-spacing:4.302720pt;}
.ws77{word-spacing:4.515200pt;}
.ws59{word-spacing:4.674560pt;}
.ws104{word-spacing:4.931200pt;}
.wsce{word-spacing:4.940160pt;}
.wsd0{word-spacing:4.993280pt;}
.wsde{word-spacing:5.046400pt;}
.wsba{word-spacing:5.152640pt;}
.wse0{word-spacing:5.205760pt;}
.wsdf{word-spacing:5.365120pt;}
.ws149{word-spacing:5.574400pt;}
.ws6d{word-spacing:5.630720pt;}
.ws13a{word-spacing:5.660160pt;}
.ws12e{word-spacing:5.745920pt;}
.wscf{word-spacing:5.843200pt;}
.wse4{word-spacing:6.002560pt;}
.ws101{word-spacing:6.217600pt;}
.ws6c{word-spacing:6.268160pt;}
.ws147{word-spacing:6.303360pt;}
.ws12f{word-spacing:6.389120pt;}
.ws5f{word-spacing:6.480640pt;}
.ws117{word-spacing:6.603520pt;}
.ws6e{word-spacing:6.640000pt;}
.ws11a{word-spacing:6.860800pt;}
.ws2f{word-spacing:6.864000pt;}
.ws86{word-spacing:6.905600pt;}
.ws102{word-spacing:6.946560pt;}
.ws103{word-spacing:7.032320pt;}
.wsa1{word-spacing:7.118080pt;}
.ws130{word-spacing:7.375360pt;}
.ws2e{word-spacing:7.392000pt;}
.ws131{word-spacing:7.418240pt;}
.wsb6{word-spacing:7.543040pt;}
.ws60{word-spacing:7.755520pt;}
.wsf8{word-spacing:7.914880pt;}
.wsb2{word-spacing:7.968000pt;}
.ws61{word-spacing:8.021120pt;}
.ws144{word-spacing:8.147200pt;}
.ws33{word-spacing:8.160000pt;}
.ws4f{word-spacing:8.180480pt;}
.ws32{word-spacing:8.304000pt;}
.ws143{word-spacing:8.318720pt;}
.wsb7{word-spacing:8.392960pt;}
.ws2a{word-spacing:8.592000pt;}
.ws31{word-spacing:8.688000pt;}
.ws153{word-spacing:8.790400pt;}
.ws92{word-spacing:8.817920pt;}
.ws152{word-spacing:8.876160pt;}
.ws29{word-spacing:8.928000pt;}
.wsc2{word-spacing:9.030400pt;}
.wsc5{word-spacing:9.189760pt;}
.ws46{word-spacing:9.455360pt;}
.ws51{word-spacing:9.667840pt;}
.ws7c{word-spacing:9.827200pt;}
.ws127{word-spacing:10.076800pt;}
.ws3c{word-spacing:10.080000pt;}
.ws91{word-spacing:10.092800pt;}
.ws139{word-spacing:10.162560pt;}
.ws34{word-spacing:10.224000pt;}
.ws47{word-spacing:10.305280pt;}
.ws3d{word-spacing:10.416000pt;}
.wsca{word-spacing:10.464640pt;}
.ws49{word-spacing:10.570880pt;}
.ws126{word-spacing:10.720000pt;}
.ws48{word-spacing:10.730240pt;}
.ws125{word-spacing:10.891520pt;}
.ws58{word-spacing:10.942720pt;}
.wscb{word-spacing:11.102080pt;}
.ws56{word-spacing:11.367680pt;}
.ws57{word-spacing:11.473920pt;}
.ws3a{word-spacing:11.856000pt;}
.wse3{word-spacing:12.005120pt;}
.wse5{word-spacing:12.376960pt;}
.wsfe{word-spacing:12.642560pt;}
.ws150{word-spacing:12.778240pt;}
.ws90{word-spacing:12.855040pt;}
.ws79{word-spacing:13.280000pt;}
.ws14f{word-spacing:13.335680pt;}
.wsbc{word-spacing:13.492480pt;}
.ws7a{word-spacing:13.917440pt;}
.ws157{word-spacing:14.536320pt;}
.wscd{word-spacing:14.554880pt;}
.wsf0{word-spacing:14.714240pt;}
.wsac{word-spacing:14.767360pt;}
.wsab{word-spacing:14.926720pt;}
.ws124{word-spacing:15.179520pt;}
.wscc{word-spacing:15.192320pt;}
.ws122{word-spacing:15.351040pt;}
.wsc8{word-spacing:15.564160pt;}
.ws123{word-spacing:15.694080pt;}
.ws11f{word-spacing:15.822720pt;}
.ws121{word-spacing:15.994240pt;}
.wsc7{word-spacing:16.042240pt;}
.ws120{word-spacing:16.337280pt;}
.ws7b{word-spacing:16.467200pt;}
.wsc6{word-spacing:16.839040pt;}
.ws6b{word-spacing:17.104640pt;}
.ws87{word-spacing:17.476480pt;}
.ws11b{word-spacing:17.752320pt;}
.ws89{word-spacing:17.954560pt;}
.ws80{word-spacing:18.007680pt;}
.ws88{word-spacing:18.113920pt;}
.ws7d{word-spacing:18.432640pt;}
.wse1{word-spacing:18.592000pt;}
.ws7f{word-spacing:18.645120pt;}
.ws54{word-spacing:19.070080pt;}
.ws53{word-spacing:19.229440pt;}
.wsf4{word-spacing:19.441920pt;}
.wsaa{word-spacing:19.707520pt;}
.wsf3{word-spacing:19.973120pt;}
.ws52{word-spacing:20.344960pt;}
.ws14b{word-spacing:23.498240pt;}
.ws37{word-spacing:23.856000pt;}
.ws100{word-spacing:24.169600pt;}
.ws36{word-spacing:24.288000pt;}
.ws14a{word-spacing:24.312960pt;}
.ws14c{word-spacing:24.441600pt;}
.wsff{word-spacing:24.541440pt;}
.ws35{word-spacing:24.672000pt;}
.ws155{word-spacing:26.071040pt;}
.ws156{word-spacing:26.242560pt;}
.ws154{word-spacing:26.800000pt;}
.wsa5{word-spacing:31.265863pt;}
.wsad{word-spacing:36.334080pt;}
.ws7{word-spacing:37.677504pt;}
.ws9{word-spacing:38.329920pt;}
.wsa{word-spacing:38.353728pt;}
.wsb{word-spacing:38.362752pt;}
.ws97{word-spacing:40.796160pt;}
.wsb4{word-spacing:48.870400pt;}
.wsb5{word-spacing:49.507840pt;}
.wsb3{word-spacing:49.773440pt;}
.wsa8{word-spacing:121.730615pt;}
.wsa6{word-spacing:134.321309pt;}
.wsa9{word-spacing:1466.618672pt;}
._e{margin-left:-297.206458pt;}
._1c{margin-left:-152.570880pt;}
._22{margin-left:-2.865920pt;}
._5{margin-left:-1.882880pt;}
._0{margin-left:-0.993600pt;}
._1{width:1.200640pt;}
._3{width:2.473600pt;}
._2{width:3.973696pt;}
._19{width:5.284800pt;}
._b{width:6.586240pt;}
._4{width:7.822080pt;}
._6{width:8.761600pt;}
._7{width:10.366720pt;}
._9{width:11.990720pt;}
._24{width:12.906880pt;}
._26{width:14.020480pt;}
._c{width:15.266560pt;}
._11{width:16.174400pt;}
._10{width:17.427200pt;}
._a{width:18.867840pt;}
._21{width:21.502720pt;}
._23{width:22.991040pt;}
._25{width:25.162880pt;}
._d{width:41.563520pt;}
._8{width:49.920000pt;}
._f{width:50.978880pt;}
._13{width:101.625600pt;}
._28{width:105.203840pt;}
._1d{width:117.229760pt;}
._1f{width:118.690880pt;}
._1e{width:131.419520pt;}
._20{width:132.448640pt;}
._18{width:137.001600pt;}
._1b{width:141.628480pt;}
._1a{width:143.480000pt;}
._12{width:147.335680pt;}
._15{width:191.884160pt;}
._16{width:195.704320pt;}
._14{width:267.692160pt;}
._17{width:288.832000pt;}
._27{width:752.000000pt;}
.fsb{font-size:7.105067pt;}
.fs9{font-size:7.894933pt;}
.fsa{font-size:8.684267pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fsc{font-size:40.320000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:2.880000pt;}
.y1a6{bottom:3.145600pt;}
.y3cb{bottom:4.800000pt;}
.y1a5{bottom:6.002581pt;}
.y22e{bottom:6.250645pt;}
.y267{bottom:6.250911pt;}
.y11a{bottom:6.594133pt;}
.y230{bottom:6.596048pt;}
.y24f{bottom:6.596267pt;}
.y1a8{bottom:6.620373pt;}
.y3bf{bottom:6.719867pt;}
.y3c4{bottom:6.720000pt;}
.y3b0{bottom:6.880000pt;}
.y1b9{bottom:7.290533pt;}
.y3ac{bottom:7.360000pt;}
.y19e{bottom:7.384154pt;}
.y10f{bottom:7.409067pt;}
.y262{bottom:7.411332pt;}
.y1a4{bottom:8.791467pt;}
.y244{bottom:8.833333pt;}
.y148{bottom:9.359147pt;}
.y1a7{bottom:9.383600pt;}
.y22d{bottom:9.384933pt;}
.y266{bottom:9.385200pt;}
.y146{bottom:9.404543pt;}
.y24e{bottom:9.505467pt;}
.y119{bottom:9.526400pt;}
.y19d{bottom:9.780267pt;}
.y261{bottom:9.977200pt;}
.y1b8{bottom:10.173333pt;}
.y10e{bottom:10.315733pt;}
.y145{bottom:12.120400pt;}
.y243{bottom:12.122533pt;}
.y18f{bottom:13.187467pt;}
.yeb{bottom:14.535818pt;}
.y18e{bottom:16.094000pt;}
.y3c9{bottom:16.320000pt;}
.yea{bottom:17.277333pt;}
.y98{bottom:17.298276pt;}
.y3b5{bottom:18.239867pt;}
.y3ba{bottom:18.240000pt;}
.y3af{bottom:18.400000pt;}
.y97{bottom:20.014133pt;}
.y28f{bottom:22.386133pt;}
.yb{bottom:22.560000pt;}
.y28e{bottom:25.055333pt;}
.y107{bottom:25.393045pt;}
.ya{bottom:26.880000pt;}
.y3c8{bottom:27.840000pt;}
.y28d{bottom:27.912448pt;}
.y248{bottom:27.937440pt;}
.y260{bottom:27.937499pt;}
.y144{bottom:27.957076pt;}
.y16e{bottom:28.013467pt;}
.y19c{bottom:28.312890pt;}
.y106{bottom:28.527333pt;}
.y111{bottom:28.699040pt;}
.y118{bottom:28.699137pt;}
.y109{bottom:28.700950pt;}
.y29a{bottom:28.701840pt;}
.y298{bottom:28.727573pt;}
.y3b8{bottom:30.239867pt;}
.y3b3{bottom:30.240000pt;}
.y3d7{bottom:30.400000pt;}
.y19b{bottom:30.525445pt;}
.y143{bottom:30.672933pt;}
.y25f{bottom:30.675067pt;}
.y247{bottom:30.700667pt;}
.y28c{bottom:30.701333pt;}
.y16d{bottom:30.896267pt;}
.y18d{bottom:31.093765pt;}
.y25b{bottom:31.095365pt;}
.y108{bottom:31.116800pt;}
.y105{bottom:31.434000pt;}
.y110{bottom:31.462267pt;}
.y299{bottom:31.465067pt;}
.y297{bottom:31.490800pt;}
.y117{bottom:31.509733pt;}
.y22f{bottom:31.938667pt;}
.y16c{bottom:33.524533pt;}
.y19a{bottom:33.659733pt;}
.y18c{bottom:33.831333pt;}
.y25a{bottom:33.832933pt;}
.y1c6{bottom:35.238933pt;}
.yaf{bottom:35.949733pt;}
.ycb{bottom:36.495067pt;}
.yae{bottom:38.566800pt;}
.yc{bottom:38.720000pt;}
.yd8{bottom:38.987365pt;}
.yca{bottom:39.382133pt;}
.y3cf{bottom:39.840000pt;}
.y9{bottom:40.478720pt;}
.yd7{bottom:41.724933pt;}
.y104{bottom:45.281707pt;}
.y296{bottom:46.070128pt;}
.y115{bottom:46.272778pt;}
.y294{bottom:46.464933pt;}
.y103{bottom:48.435733pt;}
.y295{bottom:48.464267pt;}
.y114{bottom:48.485333pt;}
.y116{bottom:48.682667pt;}
.y268{bottom:49.056000pt;}
.y293{bottom:49.119067pt;}
.y189{bottom:49.253467pt;}
.y184{bottom:49.646240pt;}
.y142{bottom:50.040565pt;}
.y1b0{bottom:50.041280pt;}
.y199{bottom:50.437734pt;}
.y183{bottom:52.409467pt;}
.y1af{bottom:52.411733pt;}
.y141{bottom:52.778133pt;}
.yb5{bottom:53.221370pt;}
.y240{bottom:53.372267pt;}
.y198{bottom:53.593733pt;}
.y8{bottom:55.040000pt;}
.y129{bottom:56.182543pt;}
.yb4{bottom:56.330000pt;}
.y131{bottom:56.362095pt;}
.yda{bottom:57.539899pt;}
.yd0{bottom:57.934667pt;}
.yde{bottom:58.921733pt;}
.y130{bottom:58.945711pt;}
.y128{bottom:59.338543pt;}
.y172{bottom:59.538111pt;}
.yd9{bottom:60.277467pt;}
.ycf{bottom:60.578267pt;}
.y127{bottom:62.054400pt;}
.y12f{bottom:62.080000pt;}
.y171{bottom:62.672400pt;}
.y85{bottom:65.633467pt;}
.yc4{bottom:67.431978pt;}
.y35{bottom:68.961467pt;}
.y140{bottom:70.199867pt;}
.yc3{bottom:70.566267pt;}
.y17f{bottom:70.569067pt;}
.y197{bottom:70.569200pt;}
.y177{bottom:70.961707pt;}
.y2a4{bottom:72.473120pt;}
.y379{bottom:72.642720pt;}
.y147{bottom:72.935093pt;}
.y13f{bottom:73.132529pt;}
.y234{bottom:73.331867pt;}
.y13d{bottom:73.509450pt;}
.y176{bottom:73.724933pt;}
.y17e{bottom:73.725067pt;}
.y196{bottom:73.725200pt;}
.y13e{bottom:75.917467pt;}
.y13c{bottom:76.093067pt;}
.y233{bottom:76.258133pt;}
.y13b{bottom:76.685200pt;}
.yd2{bottom:78.855600pt;}
.ye4{bottom:78.855765pt;}
.y1bc{bottom:79.628623pt;}
.y34{bottom:79.679867pt;}
.ye9{bottom:80.237467pt;}
.y12e{bottom:80.261285pt;}
.y175{bottom:80.632613pt;}
.yd1{bottom:81.499200pt;}
.ye3{bottom:81.593333pt;}
.y1bb{bottom:82.212240pt;}
.y1fc{bottom:82.433711pt;}
.yef{bottom:82.803173pt;}
.y17b{bottom:82.803840pt;}
.y82{bottom:83.040000pt;}
.yf6{bottom:83.219610pt;}
.y12d{bottom:83.395573pt;}
.y174{bottom:83.395840pt;}
.y1d6{bottom:83.634800pt;}
.y64{bottom:83.778560pt;}
.y378{bottom:84.960000pt;}
.y1ba{bottom:84.975467pt;}
.yee{bottom:85.566400pt;}
.y17a{bottom:85.567067pt;}
.y1fb{bottom:85.568000pt;}
.yf5{bottom:85.935467pt;}
.y12c{bottom:86.158800pt;}
.y173{bottom:86.159067pt;}
.y321{bottom:86.543040pt;}
.y1d5{bottom:86.752133pt;}
.y2ce{bottom:86.943200pt;}
.y278{bottom:89.145311pt;}
.y1c5{bottom:89.514907pt;}
.y23a{bottom:90.921174pt;}
.y33{bottom:91.200000pt;}
.y1c4{bottom:92.278133pt;}
.y277{bottom:92.279600pt;}
.ycc{bottom:92.474000pt;}
.y219{bottom:93.291333pt;}
.y1cd{bottom:93.462299pt;}
.y1d1{bottom:93.462373pt;}
.y20e{bottom:93.462880pt;}
.y239{bottom:94.055462pt;}
.y195{bottom:94.526533pt;}
.y25d{bottom:94.647707pt;}
.y20d{bottom:95.833333pt;}
.y218{bottom:95.833467pt;}
.y1cc{bottom:96.199867pt;}
.y1d0{bottom:96.225600pt;}
.y238{bottom:96.840400pt;}
.y377{bottom:97.131680pt;}
.y194{bottom:97.409333pt;}
.y25c{bottom:97.410933pt;}
.y1c7{bottom:97.607067pt;}
.y136{bottom:97.826943pt;}
.y63{bottom:98.984160pt;}
.yf2{bottom:100.763520pt;}
.y2a3{bottom:100.795360pt;}
.y135{bottom:100.961231pt;}
.y81{bottom:100.993920pt;}
.y83{bottom:101.120000pt;}
.y1a3{bottom:101.338842pt;}
.y320{bottom:101.908000pt;}
.y72{bottom:102.080000pt;}
.y2cd{bottom:102.308160pt;}
.y1b6{bottom:102.618800pt;}
.y134{bottom:103.353396pt;}
.yf1{bottom:103.526746pt;}
.y1a2{bottom:103.896800pt;}
.y12b{bottom:104.322521pt;}
.y1d8{bottom:104.515200pt;}
.y133{bottom:104.717139pt;}
.yf9{bottom:104.908373pt;}
.yf4{bottom:104.930084pt;}
.y1b5{bottom:105.108800pt;}
.y33d{bottom:105.608960pt;}
.y17d{bottom:105.698453pt;}
.yf0{bottom:105.897200pt;}
.y1a1{bottom:106.542133pt;}
.y1d7{bottom:107.158667pt;}
.y12a{bottom:107.277200pt;}
.y32{bottom:107.279360pt;}
.y132{bottom:107.648133pt;}
.yf3{bottom:107.671600pt;}
.y17c{bottom:108.066933pt;}
.y1b4{bottom:108.264800pt;}
.y228{bottom:108.265867pt;}
.y2fd{bottom:108.800000pt;}
.y1e8{bottom:109.054667pt;}
.y1e4{bottom:109.257867pt;}
.y376{bottom:109.448960pt;}
.y1e0{bottom:109.449072pt;}
.y1cb{bottom:112.038437pt;}
.y281{bottom:112.040111pt;}
.y1df{bottom:112.212299pt;}
.y1e3{bottom:112.266533pt;}
.y1cf{bottom:112.409707pt;}
.y224{bottom:112.410373pt;}
.y62{bottom:114.349120pt;}
.y1de{bottom:114.949867pt;}
.y1e2{bottom:114.975600pt;}
.y1ca{bottom:115.147067pt;}
.y1ce{bottom:115.172933pt;}
.y223{bottom:115.173600pt;}
.y280{bottom:115.174400pt;}
.y1dd{bottom:115.621600pt;}
.y1d4{bottom:115.786800pt;}
.y405{bottom:116.960000pt;}
.y31f{bottom:117.272960pt;}
.y2cc{bottom:117.513760pt;}
.y33c{bottom:117.765440pt;}
.y2a2{bottom:118.880000pt;}
.y24b{bottom:120.287508pt;}
.y375{bottom:121.766240pt;}
.y206{bottom:121.866000pt;}
.y24a{bottom:122.500063pt;}
.y31{bottom:122.644320pt;}
.y153{bottom:122.673734pt;}
.y138{bottom:122.853232pt;}
.y11c{bottom:122.946800pt;}
.y13a{bottom:123.120533pt;}
.y2fc{bottom:123.360000pt;}
.y1dc{bottom:124.503333pt;}
.y205{bottom:124.593067pt;}
.y265{bottom:125.016607pt;}
.yed{bottom:125.219375pt;}
.y11b{bottom:125.434800pt;}
.y249{bottom:125.610667pt;}
.yf8{bottom:125.614116pt;}
.y139{bottom:125.829600pt;}
.y152{bottom:125.829733pt;}
.y137{bottom:125.851333pt;}
.y26a{bottom:126.029200pt;}
.y204{bottom:126.818000pt;}
.y1db{bottom:127.212262pt;}
.y264{bottom:127.416667pt;}
.y210{bottom:127.659200pt;}
.y401{bottom:127.680000pt;}
.yec{bottom:127.777333pt;}
.y20c{bottom:127.804773pt;}
.yf7{bottom:128.197733pt;}
.y1c0{bottom:129.357381pt;}
.y61{bottom:129.714080pt;}
.y1da{bottom:129.997200pt;}
.y33b{bottom:130.082720pt;}
.y1f0{bottom:130.147248pt;}
.y18b{bottom:130.172107pt;}
.y20b{bottom:130.568000pt;}
.y20f{bottom:130.568133pt;}
.y8f{bottom:131.978406pt;}
.y1bf{bottom:132.146267pt;}
.y31e{bottom:132.637920pt;}
.y2cb{bottom:132.878720pt;}
.y18a{bottom:132.935333pt;}
.y1ef{bottom:132.936133pt;}
.yd6{bottom:133.137401pt;}
.y27b{bottom:133.503733pt;}
.y374{bottom:133.922720pt;}
.yc9{bottom:134.369867pt;}
.y404{bottom:134.398560pt;}
.y402{bottom:134.400000pt;}
.y8e{bottom:134.710053pt;}
.yd5{bottom:135.697333pt;}
.y8d{bottom:137.078533pt;}
.yc8{bottom:137.078832pt;}
.y30{bottom:138.009280pt;}
.ye2{bottom:138.040204pt;}
.y2fb{bottom:139.037760pt;}
.yc7{bottom:139.816400pt;}
.y151{bottom:140.616223pt;}
.ye1{bottom:140.850800pt;}
.y33a{bottom:142.400000pt;}
.y150{bottom:143.568928pt;}
.y14d{bottom:144.065200pt;}
.y60{bottom:145.079040pt;}
.y1fa{bottom:145.422000pt;}
.y253{bottom:145.542800pt;}
.y27f{bottom:145.545222pt;}
.y270{bottom:145.568614pt;}
.y403{bottom:145.920000pt;}
.y14f{bottom:145.963067pt;}
.y373{bottom:146.240000pt;}
.y14c{bottom:146.947973pt;}
.y24d{bottom:147.596133pt;}
.y31d{bottom:147.843520pt;}
.y2ca{bottom:148.243680pt;}
.y26f{bottom:148.329867pt;}
.y1f9{bottom:148.330800pt;}
.y27e{bottom:148.332133pt;}
.y252{bottom:148.452000pt;}
.y1f5{bottom:148.551707pt;}
.y217{bottom:148.923200pt;}
.y14e{bottom:148.975600pt;}
.y14b{bottom:149.711200pt;}
.y24c{bottom:150.305200pt;}
.y1be{bottom:151.067728pt;}
.y1f4{bottom:151.685996pt;}
.y22a{bottom:151.858315pt;}
.y22c{bottom:151.884133pt;}
.y283{bottom:152.004933pt;}
.ya4{bottom:152.132667pt;}
.y1f2{bottom:152.252373pt;}
.y2f{bottom:153.374240pt;}
.y1bd{bottom:153.461867pt;}
.yc0{bottom:153.482084pt;}
.y282{bottom:154.254933pt;}
.y269{bottom:154.450133pt;}
.ya3{bottom:154.470485pt;}
.y1f3{bottom:154.470933pt;}
.y22b{bottom:154.503733pt;}
.y229{bottom:154.647200pt;}
.y1f1{bottom:155.015600pt;}
.y292{bottom:155.214267pt;}
.yb7{bottom:155.242468pt;}
.ybf{bottom:156.223600pt;}
.y2fa{bottom:156.640000pt;}
.ya2{bottom:157.602800pt;}
.yb6{bottom:157.802400pt;}
.y3fd{bottom:157.920000pt;}
.y372{bottom:158.560000pt;}
.y5f{bottom:160.444000pt;}
.y31c{bottom:163.208480pt;}
.y2c9{bottom:163.608640pt;}
.y400{bottom:164.638560pt;}
.y3fe{bottom:164.640000pt;}
.y193{bottom:164.908796pt;}
.y27a{bottom:165.700240pt;}
.y87{bottom:167.474933pt;}
.y192{bottom:167.693733pt;}
.y86{bottom:167.869733pt;}
.y1e1{bottom:168.264800pt;}
.y279{bottom:168.463467pt;}
.y2e{bottom:168.739200pt;}
.y339{bottom:169.120000pt;}
.y2f9{bottom:169.280000pt;}
.y371{bottom:170.722720pt;}
.y14a{bottom:170.803573pt;}
.yc6{bottom:172.802299pt;}
.y149{bottom:173.566800pt;}
.y1c1{bottom:173.790800pt;}
.y2f8{bottom:174.240000pt;}
.y254{bottom:175.147781pt;}
.y232{bottom:175.173307pt;}
.y23c{bottom:175.173440pt;}
.yc5{bottom:175.539867pt;}
.y5e{bottom:175.649600pt;}
.y3ff{bottom:176.160000pt;}
.y1ac{bottom:176.553600pt;}
.y8c{bottom:177.110000pt;}
.y231{bottom:177.936533pt;}
.y23b{bottom:177.936667pt;}
.y31b{bottom:178.573440pt;}
.y2c8{bottom:178.973600pt;}
.y8b{bottom:180.104432pt;}
.y162{bottom:181.864175pt;}
.y8a{bottom:182.842000pt;}
.y370{bottom:183.040000pt;}
.ybe{bottom:183.119467pt;}
.y161{bottom:184.076730pt;}
.y2d{bottom:184.104160pt;}
.y15c{bottom:184.668911pt;}
.y191{bottom:185.014604pt;}
.ybd{bottom:185.828667pt;}
.y113{bottom:186.798116pt;}
.y2f7{bottom:186.880000pt;}
.y160{bottom:187.187333pt;}
.y15b{bottom:187.803200pt;}
.y190{bottom:187.825200pt;}
.y3f9{bottom:188.160000pt;}
.y112{bottom:189.381733pt;}
.y5d{bottom:191.014560pt;}
.y289{bottom:191.134977pt;}
.y2f6{bottom:191.840000pt;}
.yc2{bottom:192.908107pt;}
.y3fa{bottom:192.960000pt;}
.y92{bottom:193.185883pt;}
.y288{bottom:193.552800pt;}
.y237{bottom:193.648933pt;}
.y31a{bottom:193.938400pt;}
.y23f{bottom:194.095088pt;}
.y27d{bottom:194.119200pt;}
.y20a{bottom:194.120267pt;}
.y2c7{bottom:194.338560pt;}
.y36f{bottom:195.363520pt;}
.yc1{bottom:195.671333pt;}
.y93{bottom:196.288591pt;}
.y236{bottom:196.291573pt;}
.y91{bottom:196.468201pt;}
.y23e{bottom:196.491200pt;}
.y287{bottom:196.543600pt;}
.y21d{bottom:196.883440pt;}
.y27c{bottom:196.884400pt;}
.y209{bottom:197.046400pt;}
.y208{bottom:197.332000pt;}
.y203{bottom:197.672640pt;}
.y1f7{bottom:197.672667pt;}
.y90{bottom:199.028133pt;}
.y235{bottom:199.054800pt;}
.y2c{bottom:199.309760pt;}
.y21c{bottom:199.646667pt;}
.y202{bottom:200.435867pt;}
.y1f6{bottom:200.598800pt;}
.y1ee{bottom:201.049600pt;}
.y15a{bottom:203.969290pt;}
.y165{bottom:203.969423pt;}
.y3fc{bottom:204.478560pt;}
.y2f5{bottom:204.480000pt;}
.y167{bottom:205.145728pt;}
.yfb{bottom:205.170858pt;}
.y257{bottom:206.160080pt;}
.y159{bottom:206.361455pt;}
.y164{bottom:206.361588pt;}
.y5c{bottom:206.379520pt;}
.y16b{bottom:206.750400pt;}
.y1a0{bottom:206.750769pt;}
.y36e{bottom:207.520000pt;}
.y166{bottom:207.539867pt;}
.yfa{bottom:207.910400pt;}
.y338{bottom:208.213280pt;}
.y256{bottom:208.923307pt;}
.y19f{bottom:209.142933pt;}
.y319{bottom:209.303360pt;}
.y158{bottom:209.316133pt;}
.y163{bottom:209.316267pt;}
.y16a{bottom:209.394000pt;}
.y2f4{bottom:209.440000pt;}
.y2c6{bottom:209.544160pt;}
.yb9{bottom:210.900068pt;}
.y96{bottom:211.264795pt;}
.y255{bottom:211.686533pt;}
.y207{bottom:212.726667pt;}
.yb8{bottom:213.460000pt;}
.y95{bottom:214.051707pt;}
.y155{bottom:214.250187pt;}
.yce{bottom:214.644165pt;}
.y2b{bottom:214.674720pt;}
.y157{bottom:215.039653pt;}
.y3fb{bottom:216.000000pt;}
.y154{bottom:216.618667pt;}
.y94{bottom:216.814933pt;}
.yb3{bottom:217.215801pt;}
.yad{bottom:217.381488pt;}
.ycd{bottom:217.381733pt;}
.y156{bottom:217.408133pt;}
.yab{bottom:217.438753pt;}
.yb2{bottom:219.775733pt;}
.yac{bottom:219.777600pt;}
.y36d{bottom:219.846240pt;}
.yaa{bottom:220.170400pt;}
.y169{bottom:221.331889pt;}
.y5b{bottom:221.744480pt;}
.y2f3{bottom:222.080000pt;}
.y3a9{bottom:222.240000pt;}
.y9f{bottom:222.538485pt;}
.y15f{bottom:222.760640pt;}
.y89{bottom:222.987200pt;}
.y337{bottom:223.578240pt;}
.y168{bottom:224.118800pt;}
.y318{bottom:224.668320pt;}
.y2c5{bottom:224.909120pt;}
.y88{bottom:225.301600pt;}
.y9e{bottom:225.670800pt;}
.y121{bottom:225.721045pt;}
.y15e{bottom:225.894929pt;}
.y272{bottom:226.094480pt;}
.y2f2{bottom:227.040000pt;}
.yfe{bottom:227.496885pt;}
.y3f5{bottom:228.000000pt;}
.y271{bottom:228.464933pt;}
.y15d{bottom:228.679867pt;}
.y120{bottom:228.855333pt;}
.y9a{bottom:228.877978pt;}
.y1f8{bottom:229.277067pt;}
.y214{bottom:229.669978pt;}
.y276{bottom:229.870267pt;}
.y2a{bottom:230.039680pt;}
.y246{bottom:230.041440pt;}
.y212{bottom:230.062724pt;}
.yfd{bottom:230.631173pt;}
.y99{bottom:232.012267pt;}
.y36c{bottom:232.163520pt;}
.y211{bottom:232.411467pt;}
.y275{bottom:232.412267pt;}
.y213{bottom:232.804267pt;}
.y245{bottom:232.804667pt;}
.y25e{bottom:233.004133pt;}
.yfc{bottom:233.394400pt;}
.y182{bottom:233.395200pt;}
.ye8{bottom:233.986432pt;}
.y3f8{bottom:234.718560pt;}
.y3f7{bottom:234.720000pt;}
.y1ff{bottom:234.998507pt;}
.y126{bottom:235.547903pt;}
.ye7{bottom:236.724000pt;}
.y5a{bottom:237.109440pt;}
.y125{bottom:237.940068pt;}
.y102{bottom:238.113450pt;}
.y1fe{bottom:238.132796pt;}
.y21b{bottom:238.845733pt;}
.y336{bottom:238.943200pt;}
.y1b3{bottom:239.101467pt;}
.y3a8{bottom:239.360000pt;}
.y11e{bottom:239.513040pt;}
.y2f1{bottom:239.680000pt;}
.y317{bottom:239.873920pt;}
.y2c4{bottom:240.274080pt;}
.y124{bottom:240.500000pt;}
.y101{bottom:240.697067pt;}
.y1fd{bottom:240.917733pt;}
.y21a{bottom:241.095733pt;}
.y286{bottom:241.268129pt;}
.y1b2{bottom:241.513200pt;}
.y26e{bottom:241.686533pt;}
.y1e9{bottom:242.080133pt;}
.y11d{bottom:242.276267pt;}
.y100{bottom:242.882533pt;}
.y285{bottom:244.055040pt;}
.y36b{bottom:244.320000pt;}
.y1b1{bottom:244.424400pt;}
.y2f0{bottom:244.640000pt;}
.y1c9{bottom:244.825108pt;}
.y1d3{bottom:244.825316pt;}
.y29{bottom:245.404640pt;}
.y1e7{bottom:245.632667pt;}
.yff{bottom:246.223333pt;}
.y3f6{bottom:246.240000pt;}
.y186{bottom:246.616800pt;}
.y259{bottom:246.628375pt;}
.y284{bottom:246.818267pt;}
.y1c8{bottom:247.383067pt;}
.y1d2{bottom:247.408933pt;}
.y258{bottom:248.990933pt;}
.y185{bottom:249.382000pt;}
.y23d{bottom:249.582933pt;}
.y1ab{bottom:251.181974pt;}
.y3a7{bottom:251.522720pt;}
.y59{bottom:252.474400pt;}
.ydd{bottom:253.130907pt;}
.y274{bottom:253.331173pt;}
.ye0{bottom:254.141503pt;}
.y335{bottom:254.308160pt;}
.y1aa{bottom:254.316262pt;}
.ya1{bottom:254.486421pt;}
.ya9{bottom:254.543686pt;}
.y1ed{bottom:254.883381pt;}
.y201{bottom:254.883515pt;}
.y179{bottom:254.907973pt;}
.y291{bottom:254.910373pt;}
.y1e6{bottom:255.088442pt;}
.y316{bottom:255.238880pt;}
.y2c3{bottom:255.639040pt;}
.ydc{bottom:255.894133pt;}
.y273{bottom:256.094400pt;}
.y36a{bottom:256.642720pt;}
.ya0{bottom:256.882533pt;}
.y1a9{bottom:257.101200pt;}
.ydf{bottom:257.250133pt;}
.ya8{bottom:257.275333pt;}
.y2ef{bottom:257.280000pt;}
.y1e5{bottom:257.646400pt;}
.y178{bottom:257.671200pt;}
.y1ec{bottom:257.672267pt;}
.y200{bottom:257.672400pt;}
.y290{bottom:257.673600pt;}
.y10b{bottom:258.120625pt;}
.y3f1{bottom:258.240000pt;}
.ydb{bottom:258.820133pt;}
.y170{bottom:258.831733pt;}
.y28b{bottom:258.832133pt;}
.y10d{bottom:258.909067pt;}
.y28{bottom:260.769600pt;}
.y10a{bottom:261.223333pt;}
.y16f{bottom:261.475067pt;}
.y10c{bottom:261.618133pt;}
.y28a{bottom:261.741333pt;}
.y2ee{bottom:262.240000pt;}
.yd4{bottom:262.801765pt;}
.y3a6{bottom:263.840000pt;}
.yba{bottom:264.157733pt;}
.y3f4{bottom:265.118560pt;}
.y3f2{bottom:265.120000pt;}
.yd3{bottom:265.539333pt;}
.yb1{bottom:266.766804pt;}
.ya6{bottom:266.928516pt;}
.y58{bottom:267.680000pt;}
.y1b7{bottom:268.106533pt;}
.y188{bottom:268.305489pt;}
.y242{bottom:268.328800pt;}
.y369{bottom:268.960000pt;}
.ya5{bottom:269.512133pt;}
.yb0{bottom:269.512267pt;}
.y334{bottom:269.513760pt;}
.y315{bottom:270.603840pt;}
.y263{bottom:270.896667pt;}
.y2c2{bottom:271.004000pt;}
.y187{bottom:271.092400pt;}
.y241{bottom:271.094000pt;}
.y220{bottom:274.472374pt;}
.y227{bottom:274.964133pt;}
.y27{bottom:276.134560pt;}
.y3a5{bottom:276.166240pt;}
.y1c3{bottom:276.619013pt;}
.y3f3{bottom:276.640000pt;}
.y123{bottom:276.797642pt;}
.y21f{bottom:277.606662pt;}
.y226{bottom:277.606796pt;}
.y26d{bottom:278.055867pt;}
.y1ae{bottom:278.197707pt;}
.y1eb{bottom:278.198346pt;}
.y222{bottom:278.198907pt;}
.y1c2{bottom:278.989467pt;}
.y122{bottom:279.355600pt;}
.y11f{bottom:279.578667pt;}
.y21e{bottom:280.391600pt;}
.y225{bottom:280.391733pt;}
.y2ed{bottom:280.480000pt;}
.y1ea{bottom:280.568800pt;}
.y1ad{bottom:280.960933pt;}
.y221{bottom:280.962133pt;}
.y26c{bottom:280.962533pt;}
.y368{bottom:281.122720pt;}
.y1d9{bottom:281.553467pt;}
.y216{bottom:282.000400pt;}
.y181{bottom:282.142800pt;}
.y251{bottom:282.146533pt;}
.ybc{bottom:284.368667pt;}
.y9d{bottom:284.709173pt;}
.y333{bottom:284.878720pt;}
.y180{bottom:284.908000pt;}
.y215{bottom:284.909200pt;}
.y250{bottom:285.053200pt;}
.y26b{bottom:285.107200pt;}
.ya7{bottom:285.867867pt;}
.y314{bottom:285.968800pt;}
.ye6{bottom:286.211867pt;}
.y2c1{bottom:286.368960pt;}
.ybb{bottom:287.275333pt;}
.y9c{bottom:287.472400pt;}
.y3a4{bottom:288.322720pt;}
.y3ed{bottom:288.480000pt;}
.ye5{bottom:288.828933pt;}
.y9b{bottom:289.657867pt;}
.y26{bottom:291.340160pt;}
.y367{bottom:293.440000pt;}
.y3ef{bottom:295.360000pt;}
.y57{bottom:296.960000pt;}
.y332{bottom:300.243680pt;}
.y84{bottom:300.500400pt;}
.y3a3{bottom:300.640000pt;}
.y313{bottom:301.333760pt;}
.y2c0{bottom:301.574560pt;}
.y2ec{bottom:304.549280pt;}
.y366{bottom:305.760000pt;}
.y25{bottom:306.705120pt;}
.y3f0{bottom:306.720000pt;}
.y3ee{bottom:306.880000pt;}
.y3a2{bottom:312.963520pt;}
.y331{bottom:315.608640pt;}
.y312{bottom:316.698720pt;}
.y2bf{bottom:316.939520pt;}
.y365{bottom:317.920000pt;}
.y3ea{bottom:318.720000pt;}
.y24{bottom:322.070080pt;}
.y3a1{bottom:325.120000pt;}
.y3eb{bottom:325.600000pt;}
.y2eb{bottom:327.908800pt;}
.y364{bottom:330.242720pt;}
.y330{bottom:330.973600pt;}
.y311{bottom:331.904320pt;}
.y2be{bottom:332.304480pt;}
.y56{bottom:336.010080pt;}
.y3ec{bottom:337.120000pt;}
.y23{bottom:337.435040pt;}
.y3a0{bottom:337.442720pt;}
.y363{bottom:342.560000pt;}
.y2ea{bottom:343.273760pt;}
.y32f{bottom:346.338560pt;}
.y310{bottom:347.269280pt;}
.y2bd{bottom:347.669440pt;}
.y3e7{bottom:349.120000pt;}
.y39f{bottom:349.760000pt;}
.y55{bottom:352.331200pt;}
.y22{bottom:352.800000pt;}
.y362{bottom:354.722720pt;}
.y3e9{bottom:355.840000pt;}
.y2e9{bottom:358.638720pt;}
.y32e{bottom:361.544160pt;}
.y39e{bottom:361.922720pt;}
.y30f{bottom:362.634240pt;}
.y2bc{bottom:363.034400pt;}
.y361{bottom:367.040000pt;}
.y3e8{bottom:367.360000pt;}
.y54{bottom:368.652320pt;}
.y2e8{bottom:374.003680pt;}
.y39d{bottom:374.240000pt;}
.y32d{bottom:376.909120pt;}
.y30e{bottom:377.999200pt;}
.y2bb{bottom:378.240000pt;}
.y360{bottom:379.202720pt;}
.y3e3{bottom:379.360000pt;}
.y21{bottom:382.080000pt;}
.y71{bottom:382.834560pt;}
.y53{bottom:383.857920pt;}
.y3e6{bottom:386.078560pt;}
.y3e4{bottom:386.080000pt;}
.y39c{bottom:386.405440pt;}
.y2e7{bottom:389.368640pt;}
.y35f{bottom:391.520000pt;}
.y32c{bottom:392.274080pt;}
.y30d{bottom:393.364160pt;}
.y3e5{bottom:397.600000pt;}
.y70{bottom:398.199520pt;}
.y39b{bottom:398.722720pt;}
.y52{bottom:399.222880pt;}
.y35e{bottom:403.843520pt;}
.y2e6{bottom:404.574240pt;}
.y2ba{bottom:407.520000pt;}
.y32b{bottom:407.639040pt;}
.y80{bottom:408.518880pt;}
.y30c{bottom:408.569760pt;}
.y3df{bottom:409.600000pt;}
.y39a{bottom:411.040000pt;}
.y6f{bottom:413.405120pt;}
.y51{bottom:414.587840pt;}
.y35d{bottom:416.000000pt;}
.y3e2{bottom:416.318560pt;}
.y3e1{bottom:416.320000pt;}
.y2e5{bottom:419.939200pt;}
.y20{bottom:420.604000pt;}
.y32a{bottom:423.004000pt;}
.y399{bottom:423.208960pt;}
.y7f{bottom:423.883840pt;}
.y30b{bottom:423.934720pt;}
.y3e0{bottom:427.840000pt;}
.y35c{bottom:428.322720pt;}
.y6e{bottom:428.770080pt;}
.y50{bottom:429.952800pt;}
.y2e4{bottom:435.304160pt;}
.y398{bottom:435.526240pt;}
.y329{bottom:438.209600pt;}
.y7e{bottom:439.248800pt;}
.y30a{bottom:439.299680pt;}
.y3db{bottom:439.840000pt;}
.y35b{bottom:440.640000pt;}
.y6d{bottom:444.135040pt;}
.y4f{bottom:445.317760pt;}
.y2b9{bottom:446.619200pt;}
.y3de{bottom:446.718560pt;}
.y3dc{bottom:446.720000pt;}
.y1f{bottom:447.808000pt;}
.y397{bottom:447.843520pt;}
.y2e3{bottom:450.669120pt;}
.y35a{bottom:452.802720pt;}
.y328{bottom:453.574560pt;}
.y7d{bottom:454.613760pt;}
.y309{bottom:454.664640pt;}
.y3dd{bottom:458.240000pt;}
.y6c{bottom:459.500000pt;}
.y396{bottom:460.000000pt;}
.y4e{bottom:460.523360pt;}
.y1e{bottom:461.728000pt;}
.y2b8{bottom:461.984160pt;}
.y359{bottom:465.120000pt;}
.y2e2{bottom:466.034080pt;}
.y327{bottom:468.939520pt;}
.y7c{bottom:469.978720pt;}
.y308{bottom:470.029600pt;}
.y3d8{bottom:470.080000pt;}
.y395{bottom:472.322720pt;}
.y6b{bottom:474.864960pt;}
.y1d{bottom:475.492000pt;}
.y4d{bottom:475.888320pt;}
.y3d9{bottom:476.960000pt;}
.y2b7{bottom:477.349120pt;}
.y358{bottom:477.443520pt;}
.y2e1{bottom:481.399040pt;}
.y326{bottom:484.304480pt;}
.y394{bottom:484.640000pt;}
.y7b{bottom:485.343680pt;}
.y307{bottom:485.394560pt;}
.y3da{bottom:488.320000pt;}
.y1c{bottom:489.412000pt;}
.y357{bottom:489.600000pt;}
.y6a{bottom:490.070560pt;}
.y4c{bottom:491.253280pt;}
.y2b6{bottom:492.554720pt;}
.y2e0{bottom:496.604640pt;}
.y393{bottom:496.808960pt;}
.y325{bottom:499.669440pt;}
.y3d3{bottom:500.320000pt;}
.y7a{bottom:500.549280pt;}
.y306{bottom:500.600160pt;}
.y356{bottom:501.926240pt;}
.y1b{bottom:503.176000pt;}
.y69{bottom:505.435520pt;}
.y4b{bottom:506.618240pt;}
.y3d6{bottom:507.198560pt;}
.y3d4{bottom:507.200000pt;}
.y2b5{bottom:507.919680pt;}
.y392{bottom:509.126240pt;}
.y2df{bottom:511.969600pt;}
.y355{bottom:514.243520pt;}
.y324{bottom:515.034400pt;}
.y79{bottom:515.914240pt;}
.y305{bottom:515.965120pt;}
.y1a{bottom:516.940000pt;}
.y3d5{bottom:518.720000pt;}
.y68{bottom:520.800480pt;}
.y391{bottom:521.443520pt;}
.y4a{bottom:521.983200pt;}
.y2b4{bottom:523.284640pt;}
.y354{bottom:526.400000pt;}
.y2de{bottom:527.334560pt;}
.y323{bottom:530.240000pt;}
.y19{bottom:530.704000pt;}
.y3d0{bottom:530.720000pt;}
.y78{bottom:531.279200pt;}
.y304{bottom:531.330080pt;}
.y390{bottom:533.600000pt;}
.y49{bottom:537.348160pt;}
.y3d1{bottom:537.440000pt;}
.y2b3{bottom:538.649600pt;}
.y353{bottom:538.722720pt;}
.y2dd{bottom:542.699520pt;}
.y67{bottom:544.160000pt;}
.y18{bottom:544.624000pt;}
.y38f{bottom:545.926240pt;}
.y77{bottom:546.644160pt;}
.y303{bottom:546.695040pt;}
.y3d2{bottom:548.960000pt;}
.y352{bottom:551.040000pt;}
.y48{bottom:552.553760pt;}
.y2b2{bottom:554.014560pt;}
.y2dc{bottom:558.064480pt;}
.y38e{bottom:558.243520pt;}
.y17{bottom:558.388000pt;}
.y322{bottom:559.520000pt;}
.y3c7{bottom:560.960000pt;}
.y76{bottom:562.009120pt;}
.y302{bottom:562.060000pt;}
.y351{bottom:563.205440pt;}
.y3cc{bottom:565.760000pt;}
.y47{bottom:567.918720pt;}
.y2b1{bottom:569.379520pt;}
.y38d{bottom:570.400000pt;}
.y16{bottom:572.152000pt;}
.y66{bottom:572.160000pt;}
.y2db{bottom:573.429440pt;}
.y350{bottom:575.522720pt;}
.y3ce{bottom:577.278560pt;}
.y3ca{bottom:577.280000pt;}
.y75{bottom:577.374080pt;}
.y38c{bottom:582.726240pt;}
.y46{bottom:583.283680pt;}
.y2b0{bottom:584.585120pt;}
.y301{bottom:585.419520pt;}
.y15{bottom:585.916000pt;}
.y34f{bottom:587.840000pt;}
.y2da{bottom:588.635040pt;}
.y3cd{bottom:588.800000pt;}
.y74{bottom:592.579680pt;}
.y38b{bottom:595.043520pt;}
.y65{bottom:598.236960pt;}
.y45{bottom:598.648640pt;}
.y14{bottom:599.680000pt;}
.y2af{bottom:599.950080pt;}
.y34e{bottom:600.002720pt;}
.y3c3{bottom:600.800000pt;}
.y2d9{bottom:604.000000pt;}
.y38a{bottom:607.200000pt;}
.y3c5{bottom:607.520000pt;}
.y2a1{bottom:607.944640pt;}
.y34d{bottom:612.320000pt;}
.y44{bottom:614.013600pt;}
.y300{bottom:614.064480pt;}
.y2ae{bottom:615.315040pt;}
.y73{bottom:615.939200pt;}
.y3c6{bottom:619.040000pt;}
.y389{bottom:619.526240pt;}
.y2a0{bottom:623.309600pt;}
.y34c{bottom:624.646240pt;}
.y13{bottom:626.884000pt;}
.y43{bottom:629.378560pt;}
.y2ff{bottom:629.429440pt;}
.y2d8{bottom:630.064320pt;}
.y2ad{bottom:630.680000pt;}
.y3be{bottom:631.040000pt;}
.y388{bottom:631.843520pt;}
.y34b{bottom:636.802720pt;}
.y3c2{bottom:637.758560pt;}
.y3c0{bottom:637.759867pt;}
.y29f{bottom:638.674560pt;}
.y387{bottom:644.000000pt;}
.y42{bottom:644.584160pt;}
.y2fe{bottom:644.635040pt;}
.y2d7{bottom:647.666560pt;}
.y12{bottom:648.640000pt;}
.y34a{bottom:649.120000pt;}
.y3c1{bottom:649.280000pt;}
.y29e{bottom:654.039520pt;}
.y386{bottom:656.326240pt;}
.y41{bottom:659.949120pt;}
.y3b9{bottom:661.280000pt;}
.y349{bottom:661.446107pt;}
.y2d6{bottom:665.268800pt;}
.y11{bottom:666.560000pt;}
.y3bc{bottom:668.158427pt;}
.y385{bottom:668.643520pt;}
.y29d{bottom:669.404480pt;}
.y348{bottom:673.602587pt;}
.y40{bottom:675.314080pt;}
.y3bd{bottom:679.518587pt;}
.y3bb{bottom:679.520000pt;}
.y384{bottom:680.800000pt;}
.y2ac{bottom:682.684480pt;}
.y2d5{bottom:682.871040pt;}
.y29c{bottom:684.610080pt;}
.y347{bottom:685.919867pt;}
.y10{bottom:689.756320pt;}
.y3f{bottom:690.679040pt;}
.y3b4{bottom:691.520000pt;}
.y383{bottom:693.122720pt;}
.y2ab{bottom:698.049440pt;}
.y346{bottom:698.246240pt;}
.y3b7{bottom:698.398427pt;}
.y2d4{bottom:700.473280pt;}
.yf{bottom:705.440000pt;}
.y3e{bottom:706.044000pt;}
.y29b{bottom:707.969600pt;}
.y3b6{bottom:709.759867pt;}
.y345{bottom:710.402720pt;}
.y2aa{bottom:713.255040pt;}
.y382{bottom:717.602587pt;}
.y2d3{bottom:718.075520pt;}
.y3d{bottom:721.249600pt;}
.y3ae{bottom:721.760000pt;}
.y344{bottom:722.720000pt;}
.y2a9{bottom:728.620000pt;}
.y3b1{bottom:728.640000pt;}
.y381{bottom:729.919867pt;}
.y343{bottom:735.043520pt;}
.y2d2{bottom:735.677760pt;}
.y3c{bottom:736.614560pt;}
.ye{bottom:736.648000pt;}
.y3b2{bottom:740.000000pt;}
.y380{bottom:742.243520pt;}
.y2a8{bottom:743.984960pt;}
.y342{bottom:747.200000pt;}
.y3b{bottom:751.979520pt;}
.y3ab{bottom:752.800000pt;}
.y2d1{bottom:753.280000pt;}
.y37f{bottom:754.400000pt;}
.y2a7{bottom:759.349920pt;}
.y341{bottom:759.526107pt;}
.y3ad{bottom:760.160000pt;}
.yd{bottom:764.320000pt;}
.y37e{bottom:766.722720pt;}
.y3a{bottom:767.344480pt;}
.y2d0{bottom:770.880000pt;}
.y340{bottom:771.843387pt;}
.y2a6{bottom:774.714880pt;}
.y37d{bottom:779.040000pt;}
.y39{bottom:782.709440pt;}
.y33f{bottom:783.999867pt;}
.y3aa{bottom:786.880000pt;}
.y2cf{bottom:789.120000pt;}
.y7{bottom:789.440000pt;}
.y2a5{bottom:790.079840pt;}
.y37c{bottom:791.205307pt;}
.y38{bottom:798.074400pt;}
.y37b{bottom:803.522587pt;}
.y5{bottom:804.160000pt;}
.y33e{bottom:810.880000pt;}
.y37{bottom:813.280000pt;}
.y37a{bottom:815.839867pt;}
.y4{bottom:821.126240pt;}
.y3{bottom:833.282720pt;}
.y36{bottom:836.484000pt;}
.y2{bottom:845.600000pt;}
.y1{bottom:858.240000pt;}
.h1a{height:5.172683pt;}
.h16{height:5.176152pt;}
.h18{height:5.747727pt;}
.h14{height:5.751582pt;}
.h17{height:6.322384pt;}
.h15{height:6.326624pt;}
.h19{height:12.739025pt;}
.h5{height:14.720000pt;}
.h1e{height:17.598667pt;}
.h1d{height:17.600000pt;}
.hc{height:22.234375pt;}
.h20{height:22.560000pt;}
.h8{height:25.791875pt;}
.h22{height:28.015312pt;}
.h24{height:28.654779pt;}
.h23{height:28.655313pt;}
.h1b{height:29.061250pt;}
.h4{height:29.773125pt;}
.h3{height:29.794062pt;}
.h21{height:30.240000pt;}
.h27{height:30.400000pt;}
.h26{height:30.401333pt;}
.h7{height:31.200000pt;}
.he{height:32.531250pt;}
.h2{height:33.328125pt;}
.hd{height:33.351562pt;}
.h6{height:35.130313pt;}
.h12{height:35.975313pt;}
.h10{height:36.909063pt;}
.h1f{height:37.112583pt;}
.h1c{height:37.271943pt;}
.h11{height:38.698750pt;}
.h25{height:39.840000pt;}
.ha{height:42.572592pt;}
.hb{height:42.587845pt;}
.hf{height:43.375000pt;}
.h9{height:66.703125pt;}
.h13{height:304.716000pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.wa{width:35.838667pt;}
.w8{width:40.800000pt;}
.w7{width:53.280000pt;}
.w5{width:58.398667pt;}
.w6{width:58.400000pt;}
.wb{width:60.641333pt;}
.wc{width:107.040000pt;}
.w9{width:239.520000pt;}
.w3{width:461.760000pt;}
.w4{width:513.930667pt;}
.w2{width:517.280000pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xe6{left:0.960000pt;}
.xa5{left:3.332667pt;}
.x34{left:4.728000pt;}
.x22{left:6.037733pt;}
.x2{left:7.200000pt;}
.x6{left:9.600000pt;}
.x58{left:11.808667pt;}
.x87{left:12.875397pt;}
.x5e{left:18.794034pt;}
.x6a{left:21.051333pt;}
.x5f{left:24.162800pt;}
.x5d{left:25.056267pt;}
.x60{left:27.056098pt;}
.xbf{left:28.174533pt;}
.xd0{left:29.120000pt;}
.xdd{left:30.240000pt;}
.x7a{left:38.580635pt;}
.x79{left:41.379200pt;}
.x18{left:42.722000pt;}
.x24{left:44.785635pt;}
.x23{left:45.904667pt;}
.x27{left:47.154400pt;}
.xde{left:53.440000pt;}
.x1b{left:56.017867pt;}
.x9f{left:59.698000pt;}
.x61{left:63.222400pt;}
.x4c{left:64.787333pt;}
.x4d{left:66.399765pt;}
.x2d{left:67.295467pt;}
.x5{left:68.800000pt;}
.x39{left:70.019733pt;}
.x57{left:70.956667pt;}
.x67{left:71.876800pt;}
.x38{left:73.179467pt;}
.x5a{left:75.944567pt;}
.x59{left:77.272800pt;}
.x7{left:78.400000pt;}
.x1{left:79.360000pt;}
.x32{left:83.277600pt;}
.x33{left:84.601886pt;}
.xb{left:85.920000pt;}
.x70{left:87.000933pt;}
.x64{left:88.362094pt;}
.xb2{left:89.765504pt;}
.xf{left:90.720000pt;}
.x63{left:92.206667pt;}
.xd6{left:93.120000pt;}
.x6e{left:94.031783pt;}
.xcd{left:95.101440pt;}
.x12{left:98.084800pt;}
.x84{left:99.333405pt;}
.x85{left:101.174800pt;}
.xe{left:102.084000pt;}
.xc8{left:103.882933pt;}
.x6f{left:106.873930pt;}
.x66{left:107.816400pt;}
.x65{left:109.557733pt;}
.xba{left:111.146933pt;}
.xca{left:112.607733pt;}
.xe3{left:116.320000pt;}
.xe5{left:118.560000pt;}
.xe4{left:123.520000pt;}
.x8{left:125.280000pt;}
.xc9{left:129.513467pt;}
.x45{left:130.735600pt;}
.xbb{left:132.465600pt;}
.x46{left:133.415749pt;}
.xb8{left:134.830133pt;}
.x94{left:138.789733pt;}
.x93{left:141.805600pt;}
.x95{left:145.085517pt;}
.xbe{left:149.638800pt;}
.x3b{left:152.526000pt;}
.x3c{left:154.493867pt;}
.x2f{left:155.511467pt;}
.x30{left:156.835752pt;}
.x53{left:158.485642pt;}
.x52{left:159.954000pt;}
.x54{left:161.404800pt;}
.xac{left:164.219067pt;}
.xad{left:166.843200pt;}
.x62{left:170.737467pt;}
.xcc{left:172.640800pt;}
.x8a{left:176.249067pt;}
.x2e{left:177.415333pt;}
.x21{left:178.957807pt;}
.x1f{left:180.777467pt;}
.x20{left:182.932638pt;}
.xe7{left:184.320000pt;}
.x9{left:186.552000pt;}
.xce{left:188.035840pt;}
.x17{left:188.960000pt;}
.x19{left:191.958267pt;}
.x1a{left:193.441200pt;}
.xe1{left:195.200000pt;}
.x4e{left:197.593467pt;}
.xb4{left:198.979200pt;}
.x51{left:200.211891pt;}
.x50{left:202.007867pt;}
.x4f{left:203.889251pt;}
.x5c{left:206.497600pt;}
.xd7{left:208.320000pt;}
.xda{left:216.800000pt;}
.xdf{left:219.840000pt;}
.xe2{left:221.280000pt;}
.x40{left:223.085333pt;}
.x41{left:224.332649pt;}
.x2a{left:226.529867pt;}
.x97{left:227.475467pt;}
.x2b{left:229.622498pt;}
.xae{left:230.670933pt;}
.x31{left:232.149379pt;}
.xd{left:234.888000pt;}
.x11{left:238.080000pt;}
.x15{left:239.520000pt;}
.x55{left:243.304000pt;}
.xaa{left:245.089238pt;}
.xb9{left:246.125200pt;}
.x89{left:247.892533pt;}
.xc7{left:249.628533pt;}
.x56{left:250.860914pt;}
.x5b{left:252.446133pt;}
.xe8{left:253.600000pt;}
.xa{left:265.122080pt;}
.x88{left:267.544667pt;}
.x43{left:268.610133pt;}
.xcf{left:269.600000pt;}
.x10{left:271.360000pt;}
.xb1{left:272.502400pt;}
.xe9{left:274.080000pt;}
.xe0{left:275.200000pt;}
.x14{left:283.360000pt;}
.xc3{left:285.785304pt;}
.xc2{left:287.976000pt;}
.x9a{left:289.351733pt;}
.xc4{left:290.513013pt;}
.x9b{left:291.811333pt;}
.xc6{left:294.139200pt;}
.xbd{left:296.222933pt;}
.x8f{left:297.115867pt;}
.x6b{left:298.169733pt;}
.x90{left:299.998533pt;}
.xa2{left:302.489467pt;}
.x6c{left:303.482665pt;}
.xa7{left:304.845217pt;}
.xc{left:308.640000pt;}
.xa9{left:311.864533pt;}
.x91{left:313.316555pt;}
.x3f{left:315.657333pt;}
.x3e{left:317.691733pt;}
.x83{left:319.900000pt;}
.x81{left:320.925333pt;}
.xa1{left:323.014533pt;}
.x82{left:324.065331pt;}
.xd1{left:328.000000pt;}
.xa3{left:331.373333pt;}
.xc0{left:332.345067pt;}
.xa4{left:333.735600pt;}
.x69{left:335.538482pt;}
.x68{left:336.710800pt;}
.x86{left:337.675600pt;}
.x8b{left:339.074533pt;}
.xdb{left:342.242560pt;}
.xd8{left:348.640000pt;}
.x92{left:350.243867pt;}
.x9c{left:351.588933pt;}
.x96{left:353.405308pt;}
.x80{left:354.366372pt;}
.x7f{left:355.558426pt;}
.x7e{left:356.547200pt;}
.xbc{left:358.812133pt;}
.x4b{left:360.502400pt;}
.x44{left:362.749067pt;}
.x8e{left:372.608933pt;}
.x3d{left:375.942883pt;}
.x28{left:376.976933pt;}
.x3a{left:378.942222pt;}
.x2c{left:379.974133pt;}
.xd2{left:386.400000pt;}
.x8d{left:392.616667pt;}
.xdc{left:393.760000pt;}
.x1c{left:394.783067pt;}
.x48{left:396.816717pt;}
.x42{left:399.459047pt;}
.xc1{left:403.440133pt;}
.x78{left:405.026800pt;}
.x36{left:407.008800pt;}
.x37{left:408.621231pt;}
.xb3{left:409.516000pt;}
.x76{left:413.792514pt;}
.x9e{left:414.956533pt;}
.x75{left:416.103600pt;}
.x8c{left:418.648933pt;}
.xb6{left:424.401733pt;}
.xb5{left:426.077467pt;}
.xb7{left:427.279242pt;}
.x7c{left:428.474880pt;}
.x7b{left:429.856400pt;}
.x72{left:431.217867pt;}
.x9d{left:432.973733pt;}
.x71{left:433.910800pt;}
.xb0{left:436.231200pt;}
.xd3{left:444.800000pt;}
.x6d{left:447.407358pt;}
.x49{left:449.143200pt;}
.xa8{left:450.323222pt;}
.x1d{left:451.385200pt;}
.x1e{left:452.286133pt;}
.xa0{left:453.390133pt;}
.x4a{left:454.370667pt;}
.x73{left:455.699600pt;}
.x74{left:456.588548pt;}
.x7d{left:468.539333pt;}
.x25{left:470.459600pt;}
.x98{left:472.255467pt;}
.xa6{left:473.841333pt;}
.x26{left:475.235712pt;}
.x99{left:476.684225pt;}
.x47{left:478.002267pt;}
.xaf{left:491.606800pt;}
.x29{left:492.953733pt;}
.x77{left:493.868133pt;}
.x35{left:495.194133pt;}
.xc5{left:496.363200pt;}
.xab{left:497.439571pt;}
.xd4{left:503.200000pt;}
.xd5{left:556.480000pt;}
.xd9{left:561.440000pt;}
.x13{left:572.313600pt;}
.x4{left:578.244160pt;}
.xcb{left:590.560000pt;}
.x16{left:593.301600pt;}
.x3{left:597.280000pt;}
}




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