
    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_c401adf9b515ab79fd5fca8b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_343337d51c6d47937d3f6c07.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_b0cdfe9daad5abc64ba7f5a3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_d46c0565c2c2434749d2b65b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_3cabca0d94e6d2eefcaf869e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_30e10ee1509f65bbae347359.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.692383;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_7f38ab6695721e17895cf96f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8aeca5733ae6f0560c7c6b9a.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f194eb5f076c10ad58c301da.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.869629;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c333467f41b1f531bbf5daf5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_30b0b2f554c6c4b8e859c2f6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ad56950b8ac65e942fb071cd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.926270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8084d9b10b336baec47a1814.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_9adfc3e0734e9eae9302314d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.840332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.360000px;}
.v7{vertical-align:-20.880000px;}
.v5{vertical-align:-18.000000px;}
.v4{vertical-align:-15.120000px;}
.ve{vertical-align:-12.240000px;}
.vc{vertical-align:-5.737680px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:5.760000px;}
.v9{vertical-align:12.240000px;}
.v8{vertical-align:18.000000px;}
.v3{vertical-align:21.312720px;}
.v1{vertical-align:27.360000px;}
.v6{vertical-align:34.541280px;}
.vb{vertical-align:40.320000px;}
.va{vertical-align:46.080000px;}
.ls9d{letter-spacing:-7.888320px;}
.lsaa{letter-spacing:-4.123440px;}
.ls4f{letter-spacing:-4.100400px;}
.lsa9{letter-spacing:-3.346560px;}
.ls10{letter-spacing:-3.136320px;}
.ls3a{letter-spacing:-2.509920px;}
.ls14{letter-spacing:-1.219680px;}
.ls2a{letter-spacing:-1.195200px;}
.lse{letter-spacing:-1.013040px;}
.ls6e{letter-spacing:-1.008000px;}
.ls74{letter-spacing:-0.786240px;}
.ls5c{letter-spacing:-0.776880px;}
.ls64{letter-spacing:-0.771840px;}
.ls29{letter-spacing:-0.758160px;}
.ls15{letter-spacing:-0.648000px;}
.ls21{letter-spacing:-0.597600px;}
.ls19{letter-spacing:-0.537840px;}
.ls39{letter-spacing:-0.530640px;}
.ls13{letter-spacing:-0.522720px;}
.ls6f{letter-spacing:-0.514080px;}
.lsb{letter-spacing:-0.482400px;}
.ls22{letter-spacing:-0.478080px;}
.ls72{letter-spacing:-0.453600px;}
.ls50{letter-spacing:-0.434160px;}
.ls76{letter-spacing:-0.362880px;}
.ls1c{letter-spacing:-0.358560px;}
.ls2f{letter-spacing:-0.337680px;}
.ls75{letter-spacing:-0.332640px;}
.ls95{letter-spacing:-0.298800px;}
.lsa{letter-spacing:-0.289440px;}
.ls1d{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.261360px;}
.ls2e{letter-spacing:-0.241200px;}
.ls2b{letter-spacing:-0.239040px;}
.lsc{letter-spacing:-0.192960px;}
.ls73{letter-spacing:-0.181440px;}
.ls93{letter-spacing:-0.125280px;}
.ls1a{letter-spacing:-0.119520px;}
.ls11{letter-spacing:-0.087120px;}
.ls20{letter-spacing:-0.084240px;}
.ls16{letter-spacing:-0.072000px;}
.ls18{letter-spacing:-0.059760px;}
.ls94{letter-spacing:-0.041760px;}
.lsd{letter-spacing:0.000000px;}
.ls83{letter-spacing:0.008640px;}
.ls68{letter-spacing:0.011952px;}
.ls6d{letter-spacing:0.017280px;}
.ls9a{letter-spacing:0.023904px;}
.ls82{letter-spacing:0.038880px;}
.ls38{letter-spacing:0.048240px;}
.ls1b{letter-spacing:0.059760px;}
.ls1e{letter-spacing:0.084240px;}
.ls3c{letter-spacing:0.096480px;}
.ls17{letter-spacing:0.119520px;}
.lsa4{letter-spacing:0.131472px;}
.ls5d{letter-spacing:0.136080px;}
.lsa7{letter-spacing:0.143424px;}
.ls5b{letter-spacing:0.144000px;}
.ls3b{letter-spacing:0.144720px;}
.ls5f{letter-spacing:0.161352px;}
.ls84{letter-spacing:0.167040px;}
.ls12{letter-spacing:0.174240px;}
.ls6{letter-spacing:0.179280px;}
.ls2d{letter-spacing:0.192960px;}
.ls8{letter-spacing:0.239040px;}
.ls51{letter-spacing:0.241200px;}
.ls71{letter-spacing:0.241920px;}
.ls3{letter-spacing:0.252000px;}
.ls99{letter-spacing:0.262944px;}
.lsa2{letter-spacing:0.274896px;}
.lsa8{letter-spacing:0.280872px;}
.ls77{letter-spacing:0.286848px;}
.ls52{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.289440px;}
.ls7b{letter-spacing:0.298800px;}
.ls55{letter-spacing:0.316728px;}
.ls92{letter-spacing:0.322704px;}
.ls70{letter-spacing:0.332640px;}
.ls1f{letter-spacing:0.336960px;}
.ls7{letter-spacing:0.358560px;}
.ls5{letter-spacing:0.360000px;}
.ls7d{letter-spacing:0.364536px;}
.ls2c{letter-spacing:0.385920px;}
.ls4{letter-spacing:0.504000px;}
.ls54{letter-spacing:0.896400px;}
.ls5e{letter-spacing:0.914328px;}
.ls37{letter-spacing:1.350720px;}
.ls3e{letter-spacing:1.613520px;}
.ls40{letter-spacing:1.640160px;}
.ls8c{letter-spacing:2.213280px;}
.ls59{letter-spacing:2.330640px;}
.ls25{letter-spacing:3.047760px;}
.ls62{letter-spacing:3.077640px;}
.ls8a{letter-spacing:3.160800px;}
.ls7c{letter-spacing:3.764880px;}
.ls90{letter-spacing:3.859200px;}
.ls33{letter-spacing:4.482000px;}
.ls89{letter-spacing:4.840560px;}
.ls88{letter-spacing:5.019840px;}
.ls35{letter-spacing:5.199120px;}
.ls61{letter-spacing:5.246928px;}
.ls8f{letter-spacing:5.736960px;}
.lsa1{letter-spacing:5.916240px;}
.ls66{letter-spacing:6.839280px;}
.ls23{letter-spacing:7.350480px;}
.ls96{letter-spacing:7.392312px;}
.ls60{letter-spacing:7.398288px;}
.ls5a{letter-spacing:8.127360px;}
.ls41{letter-spacing:8.827920px;}
.ls56{letter-spacing:8.844480px;}
.ls30{letter-spacing:9.561600px;}
.ls63{letter-spacing:10.242864px;}
.ls3f{letter-spacing:10.275120px;}
.ls9c{letter-spacing:11.473920px;}
.ls7a{letter-spacing:11.712960px;}
.ls34{letter-spacing:12.430080px;}
.ls8e{letter-spacing:12.967920px;}
.ls79{letter-spacing:13.147200px;}
.ls86{letter-spacing:13.685040px;}
.ls98{letter-spacing:15.298560px;}
.ls31{letter-spacing:16.015680px;}
.ls8d{letter-spacing:16.142400px;}
.ls87{letter-spacing:16.153920px;}
.ls85{letter-spacing:16.164000px;}
.ls6c{letter-spacing:16.212960px;}
.ls7f{letter-spacing:16.553520px;}
.ls80{letter-spacing:16.932960px;}
.ls6b{letter-spacing:17.279280px;}
.lsa3{letter-spacing:17.443944px;}
.ls69{letter-spacing:17.946720px;}
.ls9e{letter-spacing:18.137160px;}
.ls57{letter-spacing:18.167040px;}
.ls32{letter-spacing:18.884160px;}
.ls53{letter-spacing:19.601280px;}
.ls65{letter-spacing:19.812960px;}
.ls9f{letter-spacing:20.354256px;}
.ls9{letter-spacing:20.470320px;}
.ls6a{letter-spacing:20.671200px;}
.ls28{letter-spacing:21.095280px;}
.ls24{letter-spacing:21.228480px;}
.ls7e{letter-spacing:21.391200px;}
.ls8b{letter-spacing:21.648960px;}
.ls26{letter-spacing:21.852720px;}
.ls43{letter-spacing:23.389920px;}
.ls27{letter-spacing:26.802360px;}
.lsa6{letter-spacing:28.266480px;}
.ls58{letter-spacing:32.569200px;}
.ls9b{letter-spacing:35.437680px;}
.ls67{letter-spacing:37.252800px;}
.ls36{letter-spacing:39.083040px;}
.ls97{letter-spacing:41.712480px;}
.lsa5{letter-spacing:46.959408px;}
.ls78{letter-spacing:64.002960px;}
.ls0{letter-spacing:67.246560px;}
.ls44{letter-spacing:91.612080px;}
.lsa0{letter-spacing:100.994400px;}
.ls81{letter-spacing:151.372080px;}
.ls48{letter-spacing:151.377120px;}
.ls4b{letter-spacing:162.182880px;}
.ls91{letter-spacing:184.479120px;}
.ls3d{letter-spacing:221.231520px;}
.ls42{letter-spacing:223.382880px;}
.ls47{letter-spacing:247.133520px;}
.ls4a{letter-spacing:255.044880px;}
.ls4e{letter-spacing:271.627920px;}
.ls46{letter-spacing:283.120560px;}
.ls4c{letter-spacing:296.820720px;}
.ls4d{letter-spacing:352.972080px;}
.ls49{letter-spacing:374.631840px;}
.ls2{letter-spacing:494.170560px;}
.ls45{letter-spacing:538.006320px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws114{word-spacing:-59.760000px;}
.ws101{word-spacing:-46.440720px;}
.ws123{word-spacing:-46.433520px;}
.ws124{word-spacing:-41.760000px;}
.ws129{word-spacing:-41.718240px;}
.ws12a{word-spacing:-41.634720px;}
.ws3{word-spacing:-27.000000px;}
.ws6{word-spacing:-21.954240px;}
.ws5{word-spacing:-21.518640px;}
.ws11{word-spacing:-21.396960px;}
.ws4{word-spacing:-21.257280px;}
.ws10{word-spacing:-21.144240px;}
.ws12{word-spacing:-20.975760px;}
.ws51{word-spacing:-20.301840px;}
.ws128{word-spacing:-20.068560px;}
.wsea{word-spacing:-18.288000px;}
.wsd8{word-spacing:-18.144000px;}
.ws8{word-spacing:-17.928000px;}
.wsf{word-spacing:-17.712000px;}
.ws7{word-spacing:-17.352000px;}
.wsfe{word-spacing:-16.992000px;}
.ws102{word-spacing:-16.493760px;}
.wsb{word-spacing:-15.298560px;}
.ws120{word-spacing:-15.238800px;}
.ws13{word-spacing:-15.179040px;}
.ws11f{word-spacing:-15.119280px;}
.wsc{word-spacing:-15.059520px;}
.wsb2{word-spacing:-14.999760px;}
.wse{word-spacing:-14.940000px;}
.ws8e{word-spacing:-14.880240px;}
.wsa{word-spacing:-14.820480px;}
.ws53{word-spacing:-14.700960px;}
.wsd{word-spacing:-14.581440px;}
.ws8f{word-spacing:-14.461920px;}
.ws13b{word-spacing:-14.402160px;}
.ws122{word-spacing:-14.342400px;}
.ws52{word-spacing:-13.744800px;}
.ws1{word-spacing:-13.410720px;}
.ws0{word-spacing:-13.217760px;}
.ws116{word-spacing:-13.147200px;}
.ws12b{word-spacing:-12.848400px;}
.ws54{word-spacing:-12.445920px;}
.ws91{word-spacing:-12.430080px;}
.ws2{word-spacing:-12.397680px;}
.wsb4{word-spacing:-12.301200px;}
.wsb1{word-spacing:-12.252960px;}
.ws8d{word-spacing:-12.108240px;}
.ws9{word-spacing:-12.060000px;}
.wse9{word-spacing:-11.867040px;}
.ws55{word-spacing:-11.818800px;}
.ws56{word-spacing:-11.770560px;}
.wsb6{word-spacing:-11.722320px;}
.wsb3{word-spacing:-11.625840px;}
.wsb8{word-spacing:-11.529360px;}
.ws93{word-spacing:-10.998720px;}
.ws13c{word-spacing:-10.816560px;}
.ws121{word-spacing:-9.758880px;}
.ws90{word-spacing:-9.720000px;}
.wsb7{word-spacing:-8.406720px;}
.ws105{word-spacing:-8.255520px;}
.ws103{word-spacing:-8.164800px;}
.wsb0{word-spacing:-7.959600px;}
.ws104{word-spacing:-7.832160px;}
.wsb5{word-spacing:-7.560000px;}
.ws92{word-spacing:-6.834240px;}
.ws141{word-spacing:-4.380480px;}
.ws1c{word-spacing:-4.268880px;}
.ws3b{word-spacing:-3.764880px;}
.wsbf{word-spacing:-3.525840px;}
.ws25{word-spacing:-3.346560px;}
.ws37{word-spacing:-3.047760px;}
.ws88{word-spacing:-2.808720px;}
.wsfb{word-spacing:-2.629440px;}
.ws10f{word-spacing:-2.479680px;}
.ws10e{word-spacing:-2.358720px;}
.ws3f{word-spacing:-2.330640px;}
.ws15{word-spacing:-2.315520px;}
.wsbc{word-spacing:-2.170800px;}
.ws85{word-spacing:-2.091600px;}
.wsf4{word-spacing:-1.912320px;}
.ws22{word-spacing:-1.829520px;}
.ws111{word-spacing:-1.693440px;}
.ws110{word-spacing:-1.663200px;}
.ws7d{word-spacing:-1.640160px;}
.ws2d{word-spacing:-1.613520px;}
.ws20{word-spacing:-1.568160px;}
.ws70{word-spacing:-1.374480px;}
.ws142{word-spacing:-1.314720px;}
.ws4e{word-spacing:-1.195200px;}
.ws13a{word-spacing:-1.135440px;}
.wsbd{word-spacing:-0.916560px;}
.ws2f{word-spacing:-0.896400px;}
.wsba{word-spacing:-0.723600px;}
.ws2e{word-spacing:-0.657360px;}
.wsa9{word-spacing:-0.505440px;}
.ws59{word-spacing:-0.478080px;}
.ws7e{word-spacing:-0.385920px;}
.ws29{word-spacing:-0.358560px;}
.ws12c{word-spacing:-0.349920px;}
.ws21{word-spacing:-0.348480px;}
.wsc5{word-spacing:-0.289440px;}
.wsc6{word-spacing:-0.288000px;}
.wsa3{word-spacing:-0.241200px;}
.wsa2{word-spacing:-0.239040px;}
.ws7c{word-spacing:-0.192960px;}
.ws28{word-spacing:-0.179280px;}
.ws1f{word-spacing:-0.174240px;}
.ws19{word-spacing:-0.144720px;}
.ws24{word-spacing:-0.119520px;}
.wsbb{word-spacing:-0.096480px;}
.ws6d{word-spacing:-0.084240px;}
.ws2a{word-spacing:-0.059760px;}
.ws16{word-spacing:0.000000px;}
.ws27{word-spacing:0.059760px;}
.ws1d{word-spacing:0.087120px;}
.ws69{word-spacing:0.119520px;}
.ws112{word-spacing:0.181440px;}
.ws1a{word-spacing:0.192960px;}
.ws40{word-spacing:0.239040px;}
.wsd7{word-spacing:0.241200px;}
.ws1b{word-spacing:0.261360px;}
.ws109{word-spacing:0.288000px;}
.ws14{word-spacing:0.289440px;}
.ws113{word-spacing:0.332640px;}
.ws7f{word-spacing:0.337680px;}
.ws3e{word-spacing:0.358560px;}
.wsff{word-spacing:0.389520px;}
.wsf0{word-spacing:0.434160px;}
.ws4d{word-spacing:0.478080px;}
.ws17{word-spacing:0.482400px;}
.ws100{word-spacing:0.523872px;}
.ws95{word-spacing:0.530640px;}
.ws26{word-spacing:0.537840px;}
.ws18{word-spacing:0.578880px;}
.ws34{word-spacing:0.597600px;}
.wsa1{word-spacing:0.776880px;}
.wse0{word-spacing:0.956160px;}
.wsf2{word-spacing:0.964800px;}
.ws11b{word-spacing:1.008000px;}
.wsaf{word-spacing:1.206000px;}
.ws23{word-spacing:1.219680px;}
.wscb{word-spacing:1.254240px;}
.ws32{word-spacing:1.254960px;}
.ws108{word-spacing:1.374480px;}
.ws5b{word-spacing:1.494000px;}
.ws62{word-spacing:1.673280px;}
.ws46{word-spacing:1.972080px;}
.ws6e{word-spacing:2.211120px;}
.ws7b{word-spacing:2.390400px;}
.ws94{word-spacing:2.653200px;}
.ws50{word-spacing:2.689200px;}
.wscf{word-spacing:2.701440px;}
.ws73{word-spacing:2.928240px;}
.ws47{word-spacing:3.107520px;}
.ws1e{word-spacing:3.136320px;}
.ws4a{word-spacing:3.406320px;}
.ws89{word-spacing:3.645360px;}
.ws36{word-spacing:3.824640px;}
.ws4c{word-spacing:4.123440px;}
.ws127{word-spacing:4.242960px;}
.ws5c{word-spacing:4.362480px;}
.wse1{word-spacing:4.541760px;}
.ws84{word-spacing:4.840560px;}
.wsa6{word-spacing:5.079600px;}
.wsc8{word-spacing:5.258880px;}
.ws3d{word-spacing:5.557680px;}
.ws49{word-spacing:5.796720px;}
.ws6f{word-spacing:5.976000px;}
.wsc2{word-spacing:6.274800px;}
.ws5e{word-spacing:6.513840px;}
.wsa5{word-spacing:6.693120px;}
.ws119{word-spacing:6.994800px;}
.ws5a{word-spacing:7.051680px;}
.ws6a{word-spacing:7.076160px;}
.wsc0{word-spacing:7.290720px;}
.wsde{word-spacing:7.470000px;}
.ws83{word-spacing:7.718400px;}
.ws4b{word-spacing:7.768800px;}
.ws135{word-spacing:7.888320px;}
.ws35{word-spacing:8.007840px;}
.ws96{word-spacing:8.187120px;}
.wse7{word-spacing:8.366400px;}
.ws58{word-spacing:8.485920px;}
.ws41{word-spacing:8.724960px;}
.ws31{word-spacing:8.904240px;}
.ws72{word-spacing:9.203040px;}
.ws60{word-spacing:9.442080px;}
.ws106{word-spacing:9.621360px;}
.wsca{word-spacing:9.889200px;}
.ws87{word-spacing:9.920160px;}
.ws77{word-spacing:10.159200px;}
.wsfd{word-spacing:10.338480px;}
.ws63{word-spacing:10.637280px;}
.wsd9{word-spacing:10.876320px;}
.ws117{word-spacing:11.055600px;}
.wsec{word-spacing:11.115360px;}
.ws45{word-spacing:11.354400px;}
.wsdf{word-spacing:11.593440px;}
.ws10a{word-spacing:11.772720px;}
.ws42{word-spacing:12.071520px;}
.ws68{word-spacing:12.310560px;}
.ws11a{word-spacing:12.528000px;}
.ws4f{word-spacing:12.788640px;}
.ws115{word-spacing:13.027680px;}
.ws118{word-spacing:13.206960px;}
.wsab{word-spacing:13.505760px;}
.ws81{word-spacing:13.651920px;}
.wse6{word-spacing:13.744800px;}
.ws8b{word-spacing:13.924080px;}
.wsd4{word-spacing:14.182560px;}
.ws97{word-spacing:14.222880px;}
.wsf3{word-spacing:14.461920px;}
.ws139{word-spacing:14.641200px;}
.ws82{word-spacing:14.906160px;}
.ws38{word-spacing:14.940000px;}
.wsad{word-spacing:15.179040px;}
.ws138{word-spacing:15.238800px;}
.ws39{word-spacing:15.358320px;}
.ws71{word-spacing:15.657120px;}
.ws9a{word-spacing:15.896160px;}
.ws134{word-spacing:15.955920px;}
.wsa0{word-spacing:16.075440px;}
.ws98{word-spacing:16.374240px;}
.ws10c{word-spacing:16.613280px;}
.ws140{word-spacing:16.673040px;}
.ws10b{word-spacing:16.792560px;}
.ws107{word-spacing:17.091360px;}
.ws13e{word-spacing:17.210880px;}
.wsac{word-spacing:17.330400px;}
.ws136{word-spacing:17.688960px;}
.ws80{word-spacing:17.800560px;}
.ws79{word-spacing:17.808480px;}
.wsf8{word-spacing:18.047520px;}
.wsfc{word-spacing:18.226800px;}
.ws9b{word-spacing:18.525600px;}
.wsfa{word-spacing:18.764640px;}
.ws65{word-spacing:18.943920px;}
.ws9f{word-spacing:19.242720px;}
.wsee{word-spacing:19.362240px;}
.ws9c{word-spacing:19.481760px;}
.wsda{word-spacing:19.661040px;}
.wse5{word-spacing:19.959840px;}
.ws7a{word-spacing:20.198880px;}
.ws74{word-spacing:20.676960px;}
.ws75{word-spacing:20.916000px;}
.wsdb{word-spacing:21.453840px;}
.ws76{word-spacing:21.692880px;}
.wse3{word-spacing:21.872160px;}
.wse2{word-spacing:22.051440px;}
.ws8c{word-spacing:22.170960px;}
.wse4{word-spacing:22.410000px;}
.ws78{word-spacing:22.888080px;}
.ws132{word-spacing:23.306400px;}
.wsd5{word-spacing:23.541120px;}
.ws48{word-spacing:23.605200px;}
.wsd1{word-spacing:23.734080px;}
.wsc4{word-spacing:23.844240px;}
.ws10d{word-spacing:24.023520px;}
.ws2b{word-spacing:24.322320px;}
.ws125{word-spacing:24.561360px;}
.wsf7{word-spacing:25.039440px;}
.ws11d{word-spacing:25.756560px;}
.ws11c{word-spacing:25.995600px;}
.wsdd{word-spacing:26.114400px;}
.ws9e{word-spacing:26.473680px;}
.ws9d{word-spacing:26.712720px;}
.ws8a{word-spacing:27.190800px;}
.ws5f{word-spacing:27.429840px;}
.ws64{word-spacing:27.609120px;}
.ws3a{word-spacing:28.326240px;}
.ws33{word-spacing:28.625040px;}
.wsa4{word-spacing:29.581200px;}
.ws13d{word-spacing:30.059280px;}
.ws11e{word-spacing:30.298320px;}
.ws2c{word-spacing:30.477600px;}
.ws12d{word-spacing:31.194720px;}
.ws126{word-spacing:31.732560px;}
.ws86{word-spacing:31.911840px;}
.ws57{word-spacing:32.210640px;}
.ws30{word-spacing:32.449680px;}
.ws12e{word-spacing:32.927760px;}
.wsc3{word-spacing:33.644880px;}
.wsae{word-spacing:34.362000px;}
.ws133{word-spacing:34.780320px;}
.wsd0{word-spacing:35.318160px;}
.ws66{word-spacing:36.573120px;}
.wse8{word-spacing:36.991440px;}
.wsc1{word-spacing:38.007360px;}
.wsbe{word-spacing:38.425680px;}
.ws43{word-spacing:38.724480px;}
.ws44{word-spacing:38.963520px;}
.wsc7{word-spacing:39.859920px;}
.wsc9{word-spacing:40.875840px;}
.ws61{word-spacing:41.832000px;}
.ws5d{word-spacing:43.744320px;}
.wsf5{word-spacing:44.700480px;}
.wsf6{word-spacing:44.879760px;}
.ws3c{word-spacing:45.417600px;}
.ws67{word-spacing:46.612800px;}
.wsf9{word-spacing:47.568960px;}
.wsce{word-spacing:50.217840px;}
.ws13f{word-spacing:50.317920px;}
.wsa8{word-spacing:51.723360px;}
.ws131{word-spacing:53.365680px;}
.ws12f{word-spacing:54.082800px;}
.ws6b{word-spacing:54.924480px;}
.ws99{word-spacing:55.995120px;}
.wsdc{word-spacing:58.146480px;}
.ws130{word-spacing:60.536880px;}
.wsed{word-spacing:60.775920px;}
.wsd6{word-spacing:61.795440px;}
.wsaa{word-spacing:63.584640px;}
.wsef{word-spacing:65.795760px;}
.wscd{word-spacing:72.697680px;}
.wsf1{word-spacing:73.421280px;}
.wseb{word-spacing:76.134240px;}
.ws6c{word-spacing:84.155760px;}
.wsa7{word-spacing:90.221040px;}
.wscc{word-spacing:93.392640px;}
.wsd3{word-spacing:99.619920px;}
.wsd2{word-spacing:100.516320px;}
.wsb9{word-spacing:141.005520px;}
.ws137{word-spacing:962.912880px;}
._2c{margin-left:-14.273352px;}
._2b{margin-left:-12.966480px;}
._2d{margin-left:-11.861784px;}
._9{margin-left:-10.712304px;}
._8{margin-left:-8.450640px;}
._1a{margin-left:-7.403832px;}
._5{margin-left:-6.290568px;}
._3{margin-left:-4.481496px;}
._1{margin-left:-2.604960px;}
._4{margin-left:-1.495440px;}
._0{width:1.027512px;}
._2{width:2.267280px;}
._7{width:3.556656px;}
._6{width:4.652496px;}
._10{width:6.118632px;}
._e{width:7.219296px;}
._d{width:8.379792px;}
._11{width:10.260792px;}
._17{width:11.714400px;}
._14{width:13.398192px;}
._f{width:16.798536px;}
._a{width:18.639144px;}
._b{width:19.871640px;}
._28{width:21.023928px;}
._1f{width:22.940064px;}
._18{width:23.978592px;}
._33{width:25.040880px;}
._2e{width:26.156952px;}
._2f{width:27.221904px;}
._12{width:28.674288px;}
._13{width:30.126456px;}
._16{width:33.777792px;}
._15{width:35.104464px;}
._30{width:37.600992px;}
._19{width:39.425112px;}
._c{width:41.074488px;}
._37{width:45.687960px;}
._36{width:46.890864px;}
._27{width:48.280104px;}
._26{width:49.381128px;}
._1d{width:51.761520px;}
._1e{width:93.420000px;}
._32{width:95.047704px;}
._31{width:100.404216px;}
._1b{width:141.825600px;}
._35{width:173.904480px;}
._34{width:179.604144px;}
._24{width:195.082560px;}
._25{width:283.988880px;}
._2a{width:288.366960px;}
._1c{width:292.720320px;}
._23{width:303.043680px;}
._21{width:326.295360px;}
._22{width:335.460960px;}
._38{width:394.523928px;}
._39{width:399.973176px;}
._20{width:448.395696px;}
._29{width:849.070080px;}
.fc7{color:rgb(255,147,0);}
.fc6{color:rgb(4,50,255);}
.fc9{color:rgb(46,116,181);}
.fc8{color:rgb(255,0,0);}
.fc5{color:rgb(0,0,128);}
.fc3{color:rgb(0,71,255);}
.fc2{color:rgb(130,70,175);}
.fc4{color:rgb(0,112,192);}
.fc1{color:rgb(0,164,153);}
.fca{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs6{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs8{font-size:45.360000px;}
.fs0{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fsa{font-size:62.992571px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs2{font-size:87.120000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y28d{bottom:1.620000px;}
.y116{bottom:2.520000px;}
.y169{bottom:3.240000px;}
.ya1{bottom:3.600000px;}
.ya6{bottom:3.780000px;}
.y28c{bottom:8.640000px;}
.y28b{bottom:11.700000px;}
.y115{bottom:16.380000px;}
.ya5{bottom:17.460000px;}
.y298{bottom:18.000000px;}
.y1f3{bottom:18.540000px;}
.y173{bottom:19.440000px;}
.y170{bottom:19.620000px;}
.y168{bottom:20.520000px;}
.y297{bottom:21.060000px;}
.y28a{bottom:21.240000px;}
.y9e{bottom:28.440000px;}
.y9c{bottom:28.620000px;}
.y1ec{bottom:30.240000px;}
.y9f{bottom:31.140000px;}
.ya3{bottom:31.320000px;}
.y1ea{bottom:37.620000px;}
.y167{bottom:37.800000px;}
.y16d{bottom:38.160000px;}
.y1ef{bottom:43.920000px;}
.y1e9{bottom:54.900000px;}
.y2{bottom:55.620000px;}
.y1e5{bottom:62.640000px;}
.y2a3{bottom:83.963700px;}
.y2a2{bottom:95.303700px;}
.y1e2{bottom:97.200000px;}
.y29f{bottom:110.238450px;}
.y82{bottom:110.294640px;}
.yef{bottom:110.518560px;}
.y150{bottom:111.603060px;}
.y34c{bottom:113.940000px;}
.y162{bottom:116.286120px;}
.y36c{bottom:117.251820px;}
.y2a{bottom:117.523260px;}
.y3f1{bottom:118.023480px;}
.y1de{bottom:120.237840px;}
.yc2{bottom:120.997620px;}
.y29e{bottom:121.578300px;}
.y4e{bottom:121.825980px;}
.y21a{bottom:123.293700px;}
.y38a{bottom:124.402860px;}
.y3bd{bottom:124.544880px;}
.y29b{bottom:124.554420px;}
.y81{bottom:127.580220px;}
.yee{bottom:129.060000px;}
.y14f{bottom:129.960000px;}
.y161{bottom:130.143060px;}
.y34b{bottom:131.580000px;}
.y36b{bottom:134.537400px;}
.y29{bottom:134.808840px;}
.y3f0{bottom:135.309060px;}
.y2a1{bottom:136.513050px;}
.y1dd{bottom:137.523420px;}
.yc1{bottom:138.283200px;}
.y4d{bottom:139.111560px;}
.y14e{bottom:139.143060px;}
.y219{bottom:140.400000px;}
.yed{bottom:140.580000px;}
.y389{bottom:141.509160px;}
.y29a{bottom:141.834420px;}
.y80{bottom:144.865800px;}
.y1a3{bottom:146.231820px;}
.y160{bottom:147.780000px;}
.y2a0{bottom:147.853050px;}
.y34a{bottom:149.040000px;}
.y3bc{bottom:150.107220px;}
.y36a{bottom:151.822980px;}
.y28{bottom:152.094420px;}
.y1dc{bottom:154.809000px;}
.y29c{bottom:155.343000px;}
.yc0{bottom:155.568780px;}
.y4c{bottom:156.397140px;}
.y14d{bottom:157.500000px;}
.y388{bottom:158.794740px;}
.y299{bottom:159.120000px;}
.yec{bottom:160.536960px;}
.y3ef{bottom:161.050680px;}
.y7f{bottom:162.151380px;}
.y252{bottom:163.100160px;}
.y1a2{bottom:163.517400px;}
.y110{bottom:165.060000px;}
.y348{bottom:166.483260px;}
.y349{bottom:166.500000px;}
.y3bb{bottom:167.392800px;}
.y14c{bottom:168.300000px;}
.y369{bottom:169.108560px;}
.y27{bottom:169.380000px;}
.y1db{bottom:172.094580px;}
.ybf{bottom:172.854360px;}
.y296{bottom:172.980000px;}
.y4b{bottom:173.682720px;}
.y387{bottom:176.080320px;}
.y218{bottom:176.400000px;}
.yeb{bottom:177.643260px;}
.y3ee{bottom:178.336260px;}
.y10f{bottom:179.386020px;}
.y7e{bottom:179.436960px;}
.y251{bottom:180.385740px;}
.y1a1{bottom:180.802980px;}
.y347{bottom:183.768840px;}
.y368{bottom:186.394140px;}
.y14b{bottom:188.274420px;}
.y1da{bottom:189.380160px;}
.ybe{bottom:190.139940px;}
.y15f{bottom:190.968120px;}
.y4a{bottom:190.968300px;}
.y3ba{bottom:193.134420px;}
.y386{bottom:193.365900px;}
.yea{bottom:194.928840px;}
.y3ed{bottom:195.621840px;}
.y10e{bottom:196.671600px;}
.y7d{bottom:196.722540px;}
.y250{bottom:197.492040px;}
.y1a0{bottom:198.088560px;}
.y346{bottom:201.054420px;}
.y367{bottom:203.679720px;}
.y217{bottom:205.209000px;}
.y14a{bottom:205.508340px;}
.y26{bottom:205.920000px;}
.y1d9{bottom:206.486460px;}
.ybd{bottom:207.425520px;}
.y15e{bottom:208.253700px;}
.y49{bottom:208.253880px;}
.y3b9{bottom:210.420000px;}
.y385{bottom:210.651480px;}
.y295{bottom:211.465800px;}
.ye9{bottom:212.214420px;}
.y3ec{bottom:212.728140px;}
.y7c{bottom:213.828840px;}
.y10d{bottom:213.957180px;}
.y24f{bottom:214.777620px;}
.y19f{bottom:215.374140px;}
.y345{bottom:218.328120px;}
.y366{bottom:220.786020px;}
.y216{bottom:222.494580px;}
.y149{bottom:222.614640px;}
.y1d8{bottom:223.772040px;}
.ybc{bottom:224.531820px;}
.y15d{bottom:225.360000px;}
.y48{bottom:225.360180px;}
.y384{bottom:227.937060px;}
.y294{bottom:228.751380px;}
.ye8{bottom:229.488840px;}
.y7b{bottom:231.114420px;}
.y10c{bottom:231.242760px;}
.y24e{bottom:232.063200px;}
.y19e{bottom:232.659720px;}
.y344{bottom:235.434420px;}
.y3b8{bottom:236.160000px;}
.y365{bottom:238.071600px;}
.y3eb{bottom:238.469760px;}
.y215{bottom:239.780160px;}
.y148{bottom:239.900220px;}
.y15b{bottom:240.120000px;}
.y1d7{bottom:241.057620px;}
.ybb{bottom:241.817400px;}
.y47{bottom:242.645760px;}
.y383{bottom:245.043360px;}
.y293{bottom:246.036960px;}
.ye7{bottom:246.774420px;}
.y324{bottom:247.863420px;}
.y7a{bottom:248.400000px;}
.y10b{bottom:248.528340px;}
.y24d{bottom:249.348780px;}
.y15c{bottom:249.660000px;}
.y19d{bottom:249.766020px;}
.y343{bottom:252.714420px;}
.y3b7{bottom:253.440000px;}
.y364{bottom:255.357180px;}
.y3ea{bottom:255.755340px;}
.y214{bottom:257.065740px;}
.y147{bottom:257.185800px;}
.y1d6{bottom:258.343200px;}
.yba{bottom:259.102980px;}
.y46{bottom:259.931340px;}
.y285{bottom:260.240220px;}
.y382{bottom:262.328940px;}
.y292{bottom:263.322540px;}
.ye6{bottom:263.985300px;}
.y25{bottom:264.774420px;}
.y305{bottom:265.020660px;}
.y10a{bottom:265.813920px;}
.y24c{bottom:266.634360px;}
.y19c{bottom:267.051600px;}
.y159{bottom:268.560000px;}
.y342{bottom:269.951400px;}
.y3b6{bottom:270.714420px;}
.y323{bottom:271.800000px;}
.y363{bottom:272.642760px;}
.y3e9{bottom:273.040920px;}
.y213{bottom:274.351320px;}
.y146{bottom:274.471380px;}
.y322{bottom:274.860000px;}
.y1d5{bottom:275.628780px;}
.yb9{bottom:276.388560px;}
.y45{bottom:277.216920px;}
.y284{bottom:277.525800px;}
.y15a{bottom:277.920000px;}
.y381{bottom:279.614520px;}
.y291{bottom:280.608120px;}
.ye5{bottom:281.091600px;}
.y24{bottom:282.060000px;}
.y304{bottom:282.306240px;}
.y109{bottom:282.920220px;}
.y24b{bottom:283.919940px;}
.y19b{bottom:284.337180px;}
.y341{bottom:287.236980px;}
.y3b5{bottom:288.000000px;}
.y79{bottom:288.189360px;}
.y362{bottom:289.928340px;}
.y212{bottom:291.457620px;}
.y145{bottom:291.756960px;}
.y321{bottom:292.308840px;}
.y1d4{bottom:292.914360px;}
.yb8{bottom:293.674140px;}
.y44{bottom:294.502500px;}
.y283{bottom:294.811380px;}
.y157{bottom:296.820000px;}
.y380{bottom:296.900100px;}
.y290{bottom:297.714420px;}
.ye4{bottom:298.377180px;}
.y3e8{bottom:298.782540px;}
.y303{bottom:299.591820px;}
.y108{bottom:300.205800px;}
.y24a{bottom:301.026240px;}
.y19a{bottom:301.622760px;}
.y340{bottom:304.522560px;}
.y158{bottom:306.360000px;}
.y361{bottom:307.213920px;}
.y211{bottom:308.743200px;}
.y144{bottom:309.042540px;}
.y320{bottom:309.594420px;}
.y1d3{bottom:310.020660px;}
.yb7{bottom:310.780440px;}
.y43{bottom:311.608800px;}
.y282{bottom:312.096960px;}
.y78{bottom:312.303060px;}
.y3b4{bottom:313.454880px;}
.y37f{bottom:314.185680px;}
.y28f{bottom:315.000000px;}
.ye3{bottom:315.662760px;}
.y3e7{bottom:316.068120px;}
.y302{bottom:316.877400px;}
.y107{bottom:317.491380px;}
.y249{bottom:318.311820px;}
.y23{bottom:318.600000px;}
.y199{bottom:318.908340px;}
.y33f{bottom:321.808140px;}
.y360{bottom:324.320220px;}
.y156{bottom:325.260000px;}
.y210{bottom:326.028780px;}
.y143{bottom:326.148840px;}
.y31f{bottom:326.874420px;}
.y1d2{bottom:327.306240px;}
.yb6{bottom:328.066020px;}
.y42{bottom:328.894380px;}
.y289{bottom:329.040000px;}
.y281{bottom:329.203260px;}
.y3b3{bottom:330.740460px;}
.y37e{bottom:331.471260px;}
.y2e6{bottom:332.094780px;}
.ye2{bottom:332.948340px;}
.y3e6{bottom:333.353700px;}
.y301{bottom:334.162980px;}
.y155{bottom:334.620000px;}
.y106{bottom:334.776960px;}
.y248{bottom:335.597400px;}
.y198{bottom:336.193920px;}
.y77{bottom:336.416760px;}
.y33e{bottom:338.914440px;}
.y28e{bottom:340.740000px;}
.y35f{bottom:341.605800px;}
.y20f{bottom:343.314360px;}
.y142{bottom:343.434420px;}
.y31e{bottom:344.148840px;}
.y1d1{bottom:344.591820px;}
.yb5{bottom:345.351600px;}
.y41{bottom:346.179960px;}
.y280{bottom:346.488840px;}
.y3b2{bottom:348.026040px;}
.y37d{bottom:348.577560px;}
.ye1{bottom:350.233920px;}
.y3e5{bottom:350.460000px;}
.y300{bottom:351.269280px;}
.y105{bottom:352.062540px;}
.y247{bottom:352.882980px;}
.y197{bottom:353.300220px;}
.y33d{bottom:357.275700px;}
.y35e{bottom:358.891380px;}
.y20e{bottom:360.599940px;}
.y76{bottom:360.720000px;}
.y154{bottom:360.900000px;}
.y31d{bottom:361.434420px;}
.y1d0{bottom:361.877400px;}
.yb4{bottom:362.637180px;}
.y40{bottom:363.465540px;}
.y27f{bottom:363.774420px;}
.y2c1{bottom:363.787020px;}
.y3b1{bottom:365.311620px;}
.y37c{bottom:365.863140px;}
.ye0{bottom:367.519500px;}
.y3e4{bottom:367.745580px;}
.y2ff{bottom:368.554860px;}
.y104{bottom:369.348120px;}
.y246{bottom:370.168560px;}
.y196{bottom:370.585800px;}
.y33c{bottom:374.561280px;}
.y35d{bottom:376.176960px;}
.y22{bottom:377.348400px;}
.y2c0{bottom:377.643960px;}
.y20d{bottom:377.885520px;}
.y31c{bottom:378.685800px;}
.y1cf{bottom:379.162980px;}
.yb3{bottom:379.922760px;}
.y3f{bottom:380.751120px;}
.y27e{bottom:381.060000px;}
.y288{bottom:381.783060px;}
.y3b0{bottom:382.597200px;}
.y37b{bottom:383.148720px;}
.ydf{bottom:384.625800px;}
.y3e3{bottom:385.031160px;}
.y2fe{bottom:385.840440px;}
.y103{bottom:386.454420px;}
.y245{bottom:387.454140px;}
.y195{bottom:387.871380px;}
.y2bf{bottom:391.320000px;}
.y33b{bottom:392.922540px;}
.y35c{bottom:393.462540px;}
.y21{bottom:394.454700px;}
.y20c{bottom:394.991820px;}
.y287{bottom:395.640000px;}
.y31b{bottom:395.792100px;}
.y1ce{bottom:396.448560px;}
.y141{bottom:396.720000px;}
.yb2{bottom:397.208340px;}
.y153{bottom:397.263060px;}
.y3e{bottom:398.036700px;}
.y37a{bottom:400.434300px;}
.yde{bottom:401.911380px;}
.y2be{bottom:402.512220px;}
.y2fd{bottom:403.126020px;}
.y102{bottom:403.740000px;}
.y244{bottom:404.560440px;}
.y194{bottom:405.156960px;}
.y286{bottom:406.796580px;}
.y3af{bottom:408.338820px;}
.y33a{bottom:410.208120px;}
.y35b{bottom:410.568840px;}
.y3e2{bottom:410.772780px;}
.y152{bottom:411.120000px;}
.y20{bottom:411.740280px;}
.y20b{bottom:412.277400px;}
.y31a{bottom:413.077680px;}
.y1cd{bottom:413.554860px;}
.yb1{bottom:414.314640px;}
.y3d{bottom:415.143000px;}
.y27d{bottom:417.060000px;}
.y379{bottom:417.719880px;}
.ydd{bottom:419.196960px;}
.y2fc{bottom:420.411600px;}
.y243{bottom:421.846020px;}
.y193{bottom:422.442540px;}
.y3ae{bottom:425.624400px;}
.y140{bottom:425.694420px;}
.y151{bottom:425.700000px;}
.y75{bottom:425.911320px;}
.y339{bottom:427.493700px;}
.y35a{bottom:427.854420px;}
.y3e1{bottom:428.058360px;}
.y1f{bottom:429.025860px;}
.y20a{bottom:429.562980px;}
.y319{bottom:430.363260px;}
.y1cc{bottom:430.840440px;}
.yb0{bottom:431.600220px;}
.y3c{bottom:432.428580px;}
.y378{bottom:435.005460px;}
.ydc{bottom:436.482540px;}
.y2fb{bottom:437.517900px;}
.y242{bottom:439.131600px;}
.y192{bottom:439.548840px;}
.y3ad{bottom:442.730700px;}
.y13f{bottom:442.980000px;}
.y74{bottom:443.017620px;}
.y101{bottom:443.523060px;}
.y338{bottom:444.598740px;}
.y359{bottom:445.140000px;}
.y3e0{bottom:445.343940px;}
.y27c{bottom:445.959720px;}
.y1e{bottom:446.311440px;}
.y209{bottom:446.848560px;}
.y318{bottom:447.648840px;}
.y1cb{bottom:448.126020px;}
.yaf{bottom:448.885800px;}
.y3b{bottom:449.714160px;}
.y377{bottom:452.111760px;}
.ydb{bottom:453.768120px;}
.y2fa{bottom:454.803480px;}
.y241{bottom:456.417180px;}
.y191{bottom:456.834420px;}
.y178{bottom:457.740000px;}
.y73{bottom:460.303200px;}
.y3df{bottom:462.450240px;}
.y337{bottom:462.872880px;}
.y27b{bottom:463.245300px;}
.y179{bottom:463.500000px;}
.y1d{bottom:463.597020px;}
.y208{bottom:464.134140px;}
.y317{bottom:464.934420px;}
.y1ca{bottom:465.411600px;}
.yae{bottom:466.171380px;}
.y3a{bottom:466.999740px;}
.y100{bottom:467.636760px;}
.y3ac{bottom:468.472320px;}
.y376{bottom:469.397340px;}
.y177{bottom:470.340000px;}
.yda{bottom:471.053700px;}
.y2f9{bottom:472.089060px;}
.y240{bottom:473.702760px;}
.y190{bottom:474.120000px;}
.y72{bottom:477.588780px;}
.y27a{bottom:480.351600px;}
.y1c{bottom:480.882600px;}
.y336{bottom:481.234140px;}
.y207{bottom:481.419720px;}
.y316{bottom:482.213700px;}
.y1c9{bottom:482.697180px;}
.yad{bottom:483.456960px;}
.y2e5{bottom:483.481800px;}
.y39{bottom:484.285320px;}
.y358{bottom:484.920000px;}
.y3ab{bottom:485.757900px;}
.y375{bottom:486.682920px;}
.yd9{bottom:488.051820px;}
.y3de{bottom:488.191860px;}
.y2f8{bottom:489.374640px;}
.y23f{bottom:490.809060px;}
.yff{bottom:491.940000px;}
.y71{bottom:494.874360px;}
.y279{bottom:497.637180px;}
.y1b{bottom:497.988900px;}
.y335{bottom:498.519720px;}
.y206{bottom:498.526020px;}
.y315{bottom:499.291380px;}
.y1c8{bottom:499.803480px;}
.yac{bottom:500.742540px;}
.y2e4{bottom:500.767380px;}
.y38{bottom:501.570900px;}
.y3aa{bottom:503.043480px;}
.y374{bottom:503.968500px;}
.y176{bottom:505.080000px;}
.yd8{bottom:505.337400px;}
.y3dd{bottom:505.477440px;}
.y2f7{bottom:506.660220px;}
.y23e{bottom:508.094640px;}
.y18f{bottom:510.120000px;}
.y70{bottom:512.159940px;}
.y278{bottom:514.922760px;}
.y1a{bottom:515.274480px;}
.y334{bottom:515.805300px;}
.y205{bottom:515.811600px;}
.y314{bottom:516.576960px;}
.y1c7{bottom:517.089060px;}
.yab{bottom:517.848840px;}
.y2e3{bottom:518.052960px;}
.y37{bottom:518.677200px;}
.y3a9{bottom:520.329060px;}
.y373{bottom:521.254080px;}
.yd7{bottom:522.622980px;}
.y3dc{bottom:522.763020px;}
.y2f6{bottom:523.945800px;}
.y23d{bottom:525.380220px;}
.y6f{bottom:529.445520px;}
.y277{bottom:532.208340px;}
.y19{bottom:532.560060px;}
.y333{bottom:532.911600px;}
.y204{bottom:533.097180px;}
.y313{bottom:533.862540px;}
.y1c6{bottom:534.374640px;}
.yaa{bottom:535.134420px;}
.y2e2{bottom:535.338540px;}
.y36{bottom:535.962780px;}
.y372{bottom:538.360380px;}
.yd6{bottom:539.908560px;}
.y175{bottom:540.000000px;}
.y3db{bottom:540.048600px;}
.y2f5{bottom:541.052100px;}
.y23c{bottom:542.665800px;}
.y3a8{bottom:545.891400px;}
.y6e{bottom:546.551820px;}
.y276{bottom:549.493920px;}
.y18{bottom:549.845640px;}
.y332{bottom:550.197180px;}
.y357{bottom:550.202940px;}
.y203{bottom:550.382760px;}
.y312{bottom:551.148120px;}
.y1c5{bottom:551.660220px;}
.ya9{bottom:552.420000px;}
.y18e{bottom:552.606300px;}
.y2e1{bottom:552.624120px;}
.y35{bottom:553.248360px;}
.y371{bottom:555.645960px;}
.y2bd{bottom:555.692040px;}
.yd5{bottom:557.194140px;}
.yfe{bottom:557.199720px;}
.y3da{bottom:557.334180px;}
.y2f4{bottom:558.337680px;}
.y23b{bottom:559.951380px;}
.y172{bottom:562.140000px;}
.y3a7{bottom:563.176980px;}
.y6d{bottom:563.837400px;}
.y275{bottom:566.779500px;}
.y17{bottom:567.131220px;}
.ya7{bottom:567.180000px;}
.y331{bottom:567.482760px;}
.y356{bottom:567.488520px;}
.y202{bottom:567.668340px;}
.y174{bottom:567.900000px;}
.y311{bottom:568.433700px;}
.y1c4{bottom:568.945800px;}
.y2e0{bottom:569.730420px;}
.y34{bottom:570.533940px;}
.y370{bottom:572.931540px;}
.y2bc{bottom:572.977620px;}
.yd4{bottom:574.300440px;}
.yfd{bottom:574.306020px;}
.y2f3{bottom:575.623260px;}
.y18d{bottom:576.720000px;}
.y23a{bottom:577.236960px;}
.y3a6{bottom:580.462560px;}
.y6c{bottom:581.122980px;}
.y3d9{bottom:582.896520px;}
.y274{bottom:583.885800px;}
.y16{bottom:584.416800px;}
.ya8{bottom:584.640000px;}
.y330{bottom:584.768340px;}
.y355{bottom:584.774100px;}
.y201{bottom:584.774640px;}
.y310{bottom:585.379080px;}
.y1c3{bottom:586.231380px;}
.y2df{bottom:587.016000px;}
.y33{bottom:587.819520px;}
.y40d{bottom:588.855780px;}
.y36f{bottom:590.217120px;}
.y2bb{bottom:590.263200px;}
.yd3{bottom:591.586020px;}
.yfc{bottom:591.591600px;}
.y2f2{bottom:592.908840px;}
.y239{bottom:594.343260px;}
.y16f{bottom:596.880000px;}
.y3a5{bottom:597.748140px;}
.y6b{bottom:598.408560px;}
.y3d8{bottom:600.182100px;}
.y273{bottom:601.171380px;}
.y15{bottom:601.523100px;}
.y32f{bottom:602.053920px;}
.y354{bottom:602.059680px;}
.y200{bottom:602.060220px;}
.y171{bottom:602.640000px;}
.y30f{bottom:602.664660px;}
.y1c2{bottom:603.337680px;}
.y2de{bottom:604.301580px;}
.y32{bottom:605.105100px;}
.y40c{bottom:606.141360px;}
.y36e{bottom:607.502700px;}
.y2ba{bottom:607.548780px;}
.yd2{bottom:608.871600px;}
.yfb{bottom:608.877180px;}
.y2f1{bottom:610.194420px;}
.ya2{bottom:610.380000px;}
.y238{bottom:611.628840px;}
.y6a{bottom:615.694140px;}
.y3d7{bottom:617.467680px;}
.y272{bottom:618.456960px;}
.y14{bottom:618.808680px;}
.y32e{bottom:619.339500px;}
.y353{bottom:619.345260px;}
.y1ff{bottom:619.345800px;}
.y30e{bottom:619.950240px;}
.y1c1{bottom:620.623260px;}
.y2dd{bottom:621.587160px;}
.y31{bottom:622.211400px;}
.y40b{bottom:623.426940px;}
.y3a4{bottom:623.489760px;}
.y36d{bottom:624.788280px;}
.y2b9{bottom:624.834360px;}
.yd1{bottom:626.157180px;}
.yfa{bottom:626.162760px;}
.y2f0{bottom:627.480000px;}
.ya4{bottom:627.840000px;}
.y237{bottom:628.914420px;}
.y16c{bottom:631.620000px;}
.y69{bottom:632.979720px;}
.y3d6{bottom:634.753260px;}
.y271{bottom:635.742540px;}
.y13{bottom:636.094260px;}
.y32d{bottom:636.445800px;}
.y352{bottom:636.451560px;}
.y1fe{bottom:636.631380px;}
.y30d{bottom:637.235820px;}
.y1c0{bottom:637.908840px;}
.y2dc{bottom:638.872740px;}
.y30{bottom:639.496980px;}
.y40a{bottom:640.712520px;}
.y3a3{bottom:640.775340px;}
.y18c{bottom:641.894580px;}
.y2b8{bottom:641.940660px;}
.yd0{bottom:643.442760px;}
.yf9{bottom:643.448340px;}
.y236{bottom:646.200000px;}
.y166{bottom:649.620000px;}
.y68{bottom:650.086020px;}
.y3d5{bottom:652.038840px;}
.y16b{bottom:652.494420px;}
.y16e{bottom:652.500000px;}
.y270{bottom:653.028120px;}
.y12{bottom:653.379840px;}
.y32c{bottom:653.731380px;}
.y351{bottom:653.737140px;}
.y9d{bottom:653.760000px;}
.y1fd{bottom:653.916960px;}
.y30c{bottom:654.521400px;}
.y1bf{bottom:655.194420px;}
.y2db{bottom:656.158320px;}
.y2f{bottom:656.782560px;}
.y409{bottom:657.998100px;}
.y3a2{bottom:658.060920px;}
.y18b{bottom:659.180160px;}
.y2b7{bottom:659.226240px;}
.ycf{bottom:660.728340px;}
.yf8{bottom:660.733920px;}
.y163{bottom:661.140000px;}
.y165{bottom:661.498560px;}
.y2ef{bottom:663.300000px;}
.y67{bottom:667.371600px;}
.y3d4{bottom:669.324420px;}
.y16a{bottom:669.780000px;}
.y26f{bottom:670.134420px;}
.y11{bottom:670.665420px;}
.y32b{bottom:671.016960px;}
.y350{bottom:671.022720px;}
.y1fc{bottom:671.202540px;}
.ya0{bottom:671.220000px;}
.y1be{bottom:672.336900px;}
.y30b{bottom:672.882660px;}
.y2da{bottom:673.264620px;}
.y2e{bottom:674.068140px;}
.y408{bottom:675.283680px;}
.y3a1{bottom:675.346500px;}
.y18a{bottom:676.465740px;}
.y2b6{bottom:676.511820px;}
.yce{bottom:677.834640px;}
.yf7{bottom:677.840220px;}
.y164{bottom:678.784140px;}
.y235{bottom:682.200000px;}
.y66{bottom:684.657180px;}
.y26e{bottom:687.420000px;}
.y10{bottom:687.771720px;}
.y32a{bottom:688.302540px;}
.y34f{bottom:688.308300px;}
.y1fb{bottom:688.308840px;}
.y1bd{bottom:689.622480px;}
.y2d9{bottom:690.550200px;}
.y30a{bottom:691.064640px;}
.y2d{bottom:691.353720px;}
.y2ee{bottom:692.257680px;}
.y407{bottom:692.389980px;}
.y189{bottom:693.751320px;}
.y2b5{bottom:693.797400px;}
.y3d3{bottom:694.886760px;}
.ycd{bottom:695.120220px;}
.yf6{bottom:695.125800px;}
.y9b{bottom:696.960000px;}
.y3a0{bottom:700.908840px;}
.y65{bottom:701.942760px;}
.yf{bottom:705.057300px;}
.y329{bottom:705.588120px;}
.y34e{bottom:705.593880px;}
.y1fa{bottom:705.594420px;}
.y1bc{bottom:706.728780px;}
.y2d8{bottom:707.835780px;}
.y2c{bottom:708.460020px;}
.y309{bottom:709.425900px;}
.y2ed{bottom:709.543260px;}
.y406{bottom:709.675560px;}
.y234{bottom:711.033300px;}
.y188{bottom:711.036900px;}
.y2b4{bottom:711.082980px;}
.y3d2{bottom:712.172340px;}
.ycc{bottom:712.405800px;}
.yf5{bottom:712.411380px;}
.y39f{bottom:718.194420px;}
.y64{bottom:719.228340px;}
.y328{bottom:722.873700px;}
.y34d{bottom:722.879460px;}
.y1f9{bottom:722.880000px;}
.ye{bottom:723.060000px;}
.y26d{bottom:723.420000px;}
.y1bb{bottom:724.014360px;}
.y2d7{bottom:725.121360px;}
.y2b{bottom:725.745600px;}
.y308{bottom:726.711480px;}
.y2ec{bottom:726.828840px;}
.y405{bottom:726.961140px;}
.y233{bottom:728.318880px;}
.y187{bottom:728.322480px;}
.y2b3{bottom:728.368560px;}
.y3d1{bottom:729.457920px;}
.ycb{bottom:729.691380px;}
.yf4{bottom:729.696960px;}
.y13e{bottom:730.800000px;}
.y39e{bottom:735.480000px;}
.y63{bottom:736.513920px;}
.y327{bottom:739.980000px;}
.y1ba{bottom:741.299940px;}
.y2d6{bottom:742.406940px;}
.y307{bottom:743.997060px;}
.y2eb{bottom:744.114420px;}
.y404{bottom:744.246720px;}
.y13d{bottom:745.369560px;}
.y232{bottom:745.425180px;}
.y186{bottom:745.428780px;}
.y2b2{bottom:745.474860px;}
.y3d0{bottom:746.743500px;}
.yca{bottom:746.976960px;}
.yf3{bottom:746.982540px;}
.y9a{bottom:751.683060px;}
.y26c{bottom:753.120000px;}
.y62{bottom:753.620220px;}
.y1b9{bottom:758.585520px;}
.y1f8{bottom:758.880000px;}
.y2d5{bottom:759.513240px;}
.y39d{bottom:761.214420px;}
.y306{bottom:761.282640px;}
.y2ea{bottom:761.400000px;}
.y125{bottom:762.614640px;}
.y231{bottom:762.710760px;}
.y185{bottom:762.714360px;}
.y2b1{bottom:762.760440px;}
.y13c{bottom:762.834420px;}
.yc9{bottom:764.262540px;}
.yf2{bottom:764.268120px;}
.y99{bottom:765.540000px;}
.y403{bottom:769.988340px;}
.yd{bottom:770.580000px;}
.y61{bottom:770.905800px;}
.y326{bottom:771.480000px;}
.y3cf{bottom:772.485120px;}
.y26b{bottom:773.100000px;}
.y1b8{bottom:775.871100px;}
.y2d4{bottom:776.798820px;}
.y39c{bottom:778.500000px;}
.y2e9{bottom:779.400000px;}
.y124{bottom:779.900220px;}
.y98{bottom:779.950260px;}
.y230{bottom:779.996340px;}
.y184{bottom:779.999940px;}
.y2b0{bottom:780.046020px;}
.y13b{bottom:780.051600px;}
.yc8{bottom:781.368840px;}
.yf1{bottom:781.374420px;}
.y325{bottom:782.820000px;}
.y402{bottom:787.453200px;}
.y1f7{bottom:787.860000px;}
.y60{bottom:788.191380px;}
.y3ce{bottom:789.770700px;}
.y1b7{bottom:792.977400px;}
.y2d3{bottom:794.084400px;}
.y39b{bottom:795.780000px;}
.y123{bottom:797.185800px;}
.y97{bottom:797.235840px;}
.y22f{bottom:797.281920px;}
.y183{bottom:797.285520px;}
.y2af{bottom:797.331600px;}
.y13a{bottom:797.337180px;}
.yc7{bottom:798.654420px;}
.yf0{bottom:798.660000px;}
.y1f6{bottom:802.620000px;}
.y265{bottom:803.620440px;}
.y401{bottom:804.559500px;}
.y26a{bottom:804.600000px;}
.y5f{bottom:805.476960px;}
.y3cd{bottom:807.056280px;}
.y1b6{bottom:810.262980px;}
.y2d2{bottom:811.369980px;}
.y39a{bottom:812.868840px;}
.y2e8{bottom:813.600000px;}
.y122{bottom:814.471380px;}
.y96{bottom:814.521420px;}
.y22e{bottom:814.567500px;}
.y182{bottom:814.571100px;}
.y2ae{bottom:814.617180px;}
.y139{bottom:814.622760px;}
.yc{bottom:815.401260px;}
.y269{bottom:815.856300px;}
.yc6{bottom:815.940000px;}
.y264{bottom:820.906020px;}
.y400{bottom:821.845080px;}
.y5e{bottom:822.762540px;}
.y2e7{bottom:824.940000px;}
.y1b5{bottom:827.548560px;}
.y2d1{bottom:829.731240px;}
.y399{bottom:830.154420px;}
.y95{bottom:831.627720px;}
.y22d{bottom:831.673800px;}
.y181{bottom:831.677400px;}
.y2ad{bottom:831.723480px;}
.y138{bottom:831.729060px;}
.y121{bottom:831.756960px;}
.y3cc{bottom:832.618620px;}
.y1f5{bottom:833.040000px;}
.y263{bottom:838.191600px;}
.y3ff{bottom:839.130660px;}
.y5d{bottom:839.868840px;}
.y1b4{bottom:844.834140px;}
.y2d0{bottom:847.016820px;}
.y398{bottom:847.440000px;}
.y120{bottom:848.863260px;}
.y94{bottom:848.913300px;}
.y22c{bottom:848.959380px;}
.y180{bottom:848.962980px;}
.y2ac{bottom:849.009060px;}
.y137{bottom:849.014640px;}
.y3cb{bottom:849.904200px;}
.yc5{bottom:853.563060px;}
.yb{bottom:853.916580px;}
.y262{bottom:855.477180px;}
.y3fe{bottom:856.416240px;}
.y5c{bottom:857.154420px;}
.y1b3{bottom:862.119720px;}
.y1f2{bottom:863.640000px;}
.y2cf{bottom:865.198800px;}
.y11f{bottom:866.148840px;}
.y93{bottom:866.198880px;}
.y22b{bottom:866.244960px;}
.y17f{bottom:866.248560px;}
.y2ab{bottom:866.294640px;}
.y136{bottom:866.300220px;}
.y3ca{bottom:867.189780px;}
.yc4{bottom:867.420000px;}
.y1f4{bottom:868.320000px;}
.y261{bottom:872.762760px;}
.y3fd{bottom:873.701820px;}
.y5b{bottom:874.440000px;}
.ya{bottom:878.580000px;}
.yc3{bottom:878.760000px;}
.y1b2{bottom:879.405300px;}
.y2ce{bottom:882.484380px;}
.y11e{bottom:883.434420px;}
.y92{bottom:883.484460px;}
.y22a{bottom:883.530540px;}
.y17e{bottom:883.534140px;}
.y2aa{bottom:883.580220px;}
.y135{bottom:883.585800px;}
.y3c9{bottom:884.475360px;}
.y397{bottom:887.220000px;}
.y260{bottom:889.869060px;}
.y3fc{bottom:890.987400px;}
.y9{bottom:891.717300px;}
.y1ee{bottom:894.240000px;}
.y1b1{bottom:896.511600px;}
.y11d{bottom:900.720000px;}
.y91{bottom:900.770040px;}
.y229{bottom:900.816120px;}
.y17d{bottom:900.819720px;}
.y2cd{bottom:900.845640px;}
.y2a9{bottom:900.865800px;}
.y134{bottom:900.871380px;}
.y3c8{bottom:901.760940px;}
.y25f{bottom:907.154640px;}
.y3fb{bottom:908.093700px;}
.y1f1{bottom:910.443060px;}
.y5a{bottom:910.980000px;}
.y1b0{bottom:913.797180px;}
.y8{bottom:916.560000px;}
.y90{bottom:918.055620px;}
.y228{bottom:918.101700px;}
.y17c{bottom:918.105300px;}
.y2a8{bottom:918.151380px;}
.y133{bottom:918.156960px;}
.y2cc{bottom:919.206900px;}
.y1f0{bottom:924.300000px;}
.y25e{bottom:924.440220px;}
.y3fa{bottom:925.200000px;}
.y3c7{bottom:927.502560px;}
.y1af{bottom:931.082760px;}
.y8f{bottom:935.161920px;}
.y227{bottom:935.208000px;}
.y17b{bottom:935.211600px;}
.y2a7{bottom:935.257680px;}
.y132{bottom:935.263260px;}
.y2cb{bottom:936.492480px;}
.y11c{bottom:936.720000px;}
.y25d{bottom:941.725800px;}
.y3c6{bottom:944.788140px;}
.y1ae{bottom:948.368340px;}
.y1e1{bottom:950.040000px;}
.y7{bottom:951.660000px;}
.y396{bottom:952.153560px;}
.y8e{bottom:952.447500px;}
.y226{bottom:952.493580px;}
.y17a{bottom:952.497180px;}
.y2a6{bottom:952.543260px;}
.y131{bottom:952.548840px;}
.y2ca{bottom:953.778060px;}
.y25c{bottom:959.011380px;}
.y3f9{bottom:964.980000px;}
.y1ad{bottom:965.653920px;}
.y11b{bottom:965.700000px;}
.y1ed{bottom:966.420000px;}
.y395{bottom:969.439140px;}
.y8d{bottom:969.733080px;}
.y225{bottom:969.779160px;}
.y59{bottom:969.782760px;}
.y2a5{bottom:969.828840px;}
.y130{bottom:969.834420px;}
.y3c5{bottom:970.350480px;}
.y2c9{bottom:970.884360px;}
.y25b{bottom:976.117680px;}
.y1e7{bottom:978.294420px;}
.y1ac{bottom:982.939500px;}
.y394{bottom:986.724720px;}
.y8c{bottom:987.018660px;}
.y12f{bottom:987.028380px;}
.y224{bottom:987.064740px;}
.y58{bottom:987.068340px;}
.y2a4{bottom:987.114420px;}
.y3c4{bottom:987.636060px;}
.y2c8{bottom:988.169940px;}
.y11a{bottom:988.740000px;}
.y1e8{bottom:992.340000px;}
.y25a{bottom:993.403260px;}
.y1e6{bottom:995.580000px;}
.y1ab{bottom:1000.045800px;}
.y393{bottom:1004.010300px;}
.y8b{bottom:1004.304240px;}
.y12e{bottom:1004.313960px;}
.y223{bottom:1004.350320px;}
.y57{bottom:1004.353920px;}
.y2c7{bottom:1005.455520px;}
.y259{bottom:1010.688840px;}
.y29d{bottom:1010.694900px;}
.y1e4{bottom:1012.674420px;}
.y1eb{bottom:1012.680000px;}
.y3c3{bottom:1013.377680px;}
.y119{bottom:1015.020000px;}
.y6{bottom:1016.640000px;}
.y1aa{bottom:1017.331380px;}
.y392{bottom:1021.295880px;}
.y8a{bottom:1021.589820px;}
.y12d{bottom:1021.599540px;}
.y222{bottom:1021.635900px;}
.y56{bottom:1021.639500px;}
.y2c6{bottom:1022.741100px;}
.y258{bottom:1027.974420px;}
.y1e3{bottom:1029.960000px;}
.y3f8{bottom:1030.050720px;}
.y3c2{bottom:1030.663260px;}
.y1a9{bottom:1034.616960px;}
.y391{bottom:1038.402180px;}
.y89{bottom:1038.696120px;}
.y12c{bottom:1038.705840px;}
.y221{bottom:1038.742200px;}
.y55{bottom:1038.745800px;}
.y2c5{bottom:1040.026680px;}
.y118{bottom:1041.300000px;}
.y257{bottom:1045.242540px;}
.y3f7{bottom:1047.336300px;}
.y5{bottom:1047.780000px;}
.y1a8{bottom:1051.902540px;}
.y390{bottom:1055.687760px;}
.y88{bottom:1055.981700px;}
.y12b{bottom:1055.991420px;}
.y220{bottom:1056.027780px;}
.y54{bottom:1056.031380px;}
.y3c1{bottom:1056.404880px;}
.y2c4{bottom:1057.132980px;}
.y114{bottom:1059.120000px;}
.y256{bottom:1062.528120px;}
.y3f6{bottom:1064.621880px;}
.y117{bottom:1068.660000px;}
.y1a7{bottom:1069.188120px;}
.y38f{bottom:1072.973340px;}
.y87{bottom:1073.267280px;}
.y12a{bottom:1073.277000px;}
.y21f{bottom:1073.313360px;}
.y53{bottom:1073.316960px;}
.y3c0{bottom:1073.690460px;}
.y4{bottom:1078.930620px;}
.y1e0{bottom:1079.463060px;}
.y255{bottom:1079.634420px;}
.y3f5{bottom:1081.907460px;}
.y2c3{bottom:1082.874600px;}
.y1a6{bottom:1086.473700px;}
.y38e{bottom:1090.258920px;}
.y86{bottom:1090.552860px;}
.y129{bottom:1090.562580px;}
.y21e{bottom:1090.598940px;}
.y52{bottom:1090.602540px;}
.y1df{bottom:1093.320000px;}
.y113{bottom:1094.940000px;}
.y254{bottom:1096.920000px;}
.y3f4{bottom:1099.193040px;}
.y3bf{bottom:1099.252800px;}
.y1a5{bottom:1103.580000px;}
.y38d{bottom:1107.544500px;}
.y268{bottom:1107.813780px;}
.y85{bottom:1107.838440px;}
.y128{bottom:1107.848160px;}
.y21d{bottom:1107.884520px;}
.y51{bottom:1107.888120px;}
.y3{bottom:1109.880000px;}
.y3be{bottom:1116.538380px;}
.y2c2{bottom:1118.880000px;}
.y3f3{bottom:1124.755380px;}
.y38c{bottom:1124.830080px;}
.y267{bottom:1125.099360px;}
.y84{bottom:1125.124020px;}
.y127{bottom:1125.133740px;}
.y21c{bottom:1125.170100px;}
.y50{bottom:1125.173700px;}
.y112{bottom:1131.299640px;}
.y253{bottom:1136.700000px;}
.y1a4{bottom:1139.580000px;}
.y38b{bottom:1141.936380px;}
.y3f2{bottom:1142.040960px;}
.y266{bottom:1142.205660px;}
.y83{bottom:1142.230320px;}
.y126{bottom:1142.240040px;}
.y21b{bottom:1142.276400px;}
.y4f{bottom:1142.280000px;}
.y111{bottom:1145.156580px;}
.y1{bottom:1189.800000px;}
.h21{height:17.280000px;}
.h14{height:20.908125px;}
.h37{height:26.002266px;}
.h1a{height:26.533828px;}
.h1d{height:27.207773px;}
.h1b{height:27.540000px;}
.h1c{height:27.720000px;}
.h16{height:27.721500px;}
.h29{height:29.700000px;}
.h2b{height:29.880000px;}
.h15{height:33.353437px;}
.h22{height:34.020000px;}
.h2{height:35.143594px;}
.h2e{height:35.281500px;}
.h2f{height:40.297148px;}
.hb{height:40.472227px;}
.h27{height:41.400000px;}
.h44{height:42.164648px;}
.h6{height:42.327773px;}
.he{height:42.478500px;}
.hf{height:42.480000px;}
.hd{height:42.660000px;}
.hc{height:42.845977px;}
.h32{height:43.536094px;}
.h3f{height:44.445442px;}
.h2a{height:44.533828px;}
.h45{height:46.660025px;}
.h1e{height:51.840000px;}
.h7{height:52.435898px;}
.h41{height:52.440938px;}
.h35{height:52.458218px;}
.h3c{height:52.461098px;}
.h3e{height:52.480538px;}
.h43{height:52.483418px;}
.h3b{height:52.550378px;}
.h3d{height:52.572698px;}
.h9{height:52.581797px;}
.h38{height:52.620218px;}
.h42{height:52.630298px;}
.h40{height:52.784378px;}
.h25{height:53.077852px;}
.h46{height:53.153018px;}
.h47{height:53.252930px;}
.h33{height:54.404648px;}
.h12{height:55.039562px;}
.h28{height:55.080000px;}
.h2d{height:55.154042px;}
.h19{height:55.201562px;}
.h18{height:55.268522px;}
.h11{height:55.293722px;}
.h17{height:55.361402px;}
.h10{height:55.427642px;}
.h23{height:55.567322px;}
.h2c{height:55.596324px;}
.h3a{height:55.638602px;}
.h13{height:63.175781px;}
.h8{height:63.949219px;}
.h39{height:64.160156px;}
.h34{height:64.675898px;}
.h26{height:68.938500px;}
.h5{height:69.687773px;}
.h20{height:69.840000px;}
.ha{height:74.820586px;}
.h31{height:80.617148px;}
.h1f{height:86.977178px;}
.h4{height:95.881348px;}
.h3{height:95.923828px;}
.h30{height:100.484648px;}
.h24{height:111.240000px;}
.h36{height:288.720000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w3{width:34.740000px;}
.w16{width:37.260000px;}
.w13{width:37.441500px;}
.w12{width:48.600000px;}
.w11{width:49.320000px;}
.we{width:70.740000px;}
.wf{width:87.480000px;}
.wa{width:87.840000px;}
.wd{width:88.020000px;}
.w8{width:90.180000px;}
.w10{width:98.640000px;}
.w15{width:108.900000px;}
.wc{width:113.220000px;}
.w9{width:120.061500px;}
.w5{width:157.680000px;}
.w7{width:158.220000px;}
.wb{width:168.840000px;}
.w6{width:188.100000px;}
.w14{width:202.318500px;}
.w17{width:202.500000px;}
.w4{width:311.580000px;}
.w2{width:347.038500px;}
.w18{width:446.398500px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x11{left:7.740000px;}
.x32{left:39.600000px;}
.x33{left:45.900000px;}
.x37{left:48.600000px;}
.x38{left:67.680000px;}
.x39{left:73.980000px;}
.x1{left:84.960000px;}
.x14{left:88.200000px;}
.xc{left:90.000000px;}
.x19{left:93.600000px;}
.x34{left:96.300000px;}
.x2{left:106.920000px;}
.x4{left:108.360000px;}
.x47{left:111.956940px;}
.xf{left:116.998920px;}
.x49{left:131.580000px;}
.x4a{left:135.360000px;}
.x48{left:138.949380px;}
.x9{left:146.160000px;}
.x7{left:148.140000px;}
.x3{left:152.645760px;}
.x4b{left:157.860000px;}
.x3c{left:161.695650px;}
.x27{left:174.600000px;}
.x28{left:182.340000px;}
.x8{left:244.796400px;}
.x29{left:246.060000px;}
.x1a{left:252.000000px;}
.x2a{left:253.800000px;}
.x24{left:255.600000px;}
.x1e{left:263.169000px;}
.x3d{left:291.078150px;}
.x3e{left:298.818150px;}
.x16{left:300.960000px;}
.x6{left:302.040000px;}
.x5{left:304.560000px;}
.xa{left:316.261440px;}
.x2b{left:334.260000px;}
.x2c{left:342.000000px;}
.x1f{left:344.160000px;}
.xb{left:352.080000px;}
.x2d{left:384.300000px;}
.x2e{left:392.040000px;}
.x3f{left:435.964680px;}
.x20{left:442.800000px;}
.x3a{left:446.400000px;}
.xd{left:459.192060px;}
.x17{left:464.220000px;}
.x1b{left:467.640000px;}
.xe{left:480.436740px;}
.x40{left:486.180720px;}
.x43{left:489.420000px;}
.x18{left:491.218920px;}
.x12{left:495.360000px;}
.x31{left:496.620000px;}
.x10{left:501.655320px;}
.x13{left:503.100000px;}
.x41{left:513.177300px;}
.x21{left:525.597480px;}
.x44{left:527.940000px;}
.x25{left:573.660000px;}
.x26{left:581.400000px;}
.x45{left:585.900000px;}
.x3b{left:603.775650px;}
.x1c{left:618.840000px;}
.x46{left:620.820000px;}
.x1d{left:626.580000px;}
.x35{left:659.520000px;}
.x22{left:687.600000px;}
.x23{left:695.340000px;}
.x36{left:698.940000px;}
.x42{left:701.280000px;}
.x15{left:764.820000px;}
.x30{left:808.561620px;}
.x2f{left:816.822360px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v7{vertical-align:-18.560000pt;}
.v5{vertical-align:-16.000000pt;}
.v4{vertical-align:-13.440000pt;}
.ve{vertical-align:-10.880000pt;}
.vc{vertical-align:-5.100160pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:5.120000pt;}
.v9{vertical-align:10.880000pt;}
.v8{vertical-align:16.000000pt;}
.v3{vertical-align:18.944640pt;}
.v1{vertical-align:24.320000pt;}
.v6{vertical-align:30.703360pt;}
.vb{vertical-align:35.840000pt;}
.va{vertical-align:40.960000pt;}
.ls9d{letter-spacing:-7.011840pt;}
.lsaa{letter-spacing:-3.665280pt;}
.ls4f{letter-spacing:-3.644800pt;}
.lsa9{letter-spacing:-2.974720pt;}
.ls10{letter-spacing:-2.787840pt;}
.ls3a{letter-spacing:-2.231040pt;}
.ls14{letter-spacing:-1.084160pt;}
.ls2a{letter-spacing:-1.062400pt;}
.lse{letter-spacing:-0.900480pt;}
.ls6e{letter-spacing:-0.896000pt;}
.ls74{letter-spacing:-0.698880pt;}
.ls5c{letter-spacing:-0.690560pt;}
.ls64{letter-spacing:-0.686080pt;}
.ls29{letter-spacing:-0.673920pt;}
.ls15{letter-spacing:-0.576000pt;}
.ls21{letter-spacing:-0.531200pt;}
.ls19{letter-spacing:-0.478080pt;}
.ls39{letter-spacing:-0.471680pt;}
.ls13{letter-spacing:-0.464640pt;}
.ls6f{letter-spacing:-0.456960pt;}
.lsb{letter-spacing:-0.428800pt;}
.ls22{letter-spacing:-0.424960pt;}
.ls72{letter-spacing:-0.403200pt;}
.ls50{letter-spacing:-0.385920pt;}
.ls76{letter-spacing:-0.322560pt;}
.ls1c{letter-spacing:-0.318720pt;}
.ls2f{letter-spacing:-0.300160pt;}
.ls75{letter-spacing:-0.295680pt;}
.ls95{letter-spacing:-0.265600pt;}
.lsa{letter-spacing:-0.257280pt;}
.ls1d{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.232320pt;}
.ls2e{letter-spacing:-0.214400pt;}
.ls2b{letter-spacing:-0.212480pt;}
.lsc{letter-spacing:-0.171520pt;}
.ls73{letter-spacing:-0.161280pt;}
.ls93{letter-spacing:-0.111360pt;}
.ls1a{letter-spacing:-0.106240pt;}
.ls11{letter-spacing:-0.077440pt;}
.ls20{letter-spacing:-0.074880pt;}
.ls16{letter-spacing:-0.064000pt;}
.ls18{letter-spacing:-0.053120pt;}
.ls94{letter-spacing:-0.037120pt;}
.lsd{letter-spacing:0.000000pt;}
.ls83{letter-spacing:0.007680pt;}
.ls68{letter-spacing:0.010624pt;}
.ls6d{letter-spacing:0.015360pt;}
.ls9a{letter-spacing:0.021248pt;}
.ls82{letter-spacing:0.034560pt;}
.ls38{letter-spacing:0.042880pt;}
.ls1b{letter-spacing:0.053120pt;}
.ls1e{letter-spacing:0.074880pt;}
.ls3c{letter-spacing:0.085760pt;}
.ls17{letter-spacing:0.106240pt;}
.lsa4{letter-spacing:0.116864pt;}
.ls5d{letter-spacing:0.120960pt;}
.lsa7{letter-spacing:0.127488pt;}
.ls5b{letter-spacing:0.128000pt;}
.ls3b{letter-spacing:0.128640pt;}
.ls5f{letter-spacing:0.143424pt;}
.ls84{letter-spacing:0.148480pt;}
.ls12{letter-spacing:0.154880pt;}
.ls6{letter-spacing:0.159360pt;}
.ls2d{letter-spacing:0.171520pt;}
.ls8{letter-spacing:0.212480pt;}
.ls51{letter-spacing:0.214400pt;}
.ls71{letter-spacing:0.215040pt;}
.ls3{letter-spacing:0.224000pt;}
.ls99{letter-spacing:0.233728pt;}
.lsa2{letter-spacing:0.244352pt;}
.lsa8{letter-spacing:0.249664pt;}
.ls77{letter-spacing:0.254976pt;}
.ls52{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.257280pt;}
.ls7b{letter-spacing:0.265600pt;}
.ls55{letter-spacing:0.281536pt;}
.ls92{letter-spacing:0.286848pt;}
.ls70{letter-spacing:0.295680pt;}
.ls1f{letter-spacing:0.299520pt;}
.ls7{letter-spacing:0.318720pt;}
.ls5{letter-spacing:0.320000pt;}
.ls7d{letter-spacing:0.324032pt;}
.ls2c{letter-spacing:0.343040pt;}
.ls4{letter-spacing:0.448000pt;}
.ls54{letter-spacing:0.796800pt;}
.ls5e{letter-spacing:0.812736pt;}
.ls37{letter-spacing:1.200640pt;}
.ls3e{letter-spacing:1.434240pt;}
.ls40{letter-spacing:1.457920pt;}
.ls8c{letter-spacing:1.967360pt;}
.ls59{letter-spacing:2.071680pt;}
.ls25{letter-spacing:2.709120pt;}
.ls62{letter-spacing:2.735680pt;}
.ls8a{letter-spacing:2.809600pt;}
.ls7c{letter-spacing:3.346560pt;}
.ls90{letter-spacing:3.430400pt;}
.ls33{letter-spacing:3.984000pt;}
.ls89{letter-spacing:4.302720pt;}
.ls88{letter-spacing:4.462080pt;}
.ls35{letter-spacing:4.621440pt;}
.ls61{letter-spacing:4.663936pt;}
.ls8f{letter-spacing:5.099520pt;}
.lsa1{letter-spacing:5.258880pt;}
.ls66{letter-spacing:6.079360pt;}
.ls23{letter-spacing:6.533760pt;}
.ls96{letter-spacing:6.570944pt;}
.ls60{letter-spacing:6.576256pt;}
.ls5a{letter-spacing:7.224320pt;}
.ls41{letter-spacing:7.847040pt;}
.ls56{letter-spacing:7.861760pt;}
.ls30{letter-spacing:8.499200pt;}
.ls63{letter-spacing:9.104768pt;}
.ls3f{letter-spacing:9.133440pt;}
.ls9c{letter-spacing:10.199040pt;}
.ls7a{letter-spacing:10.411520pt;}
.ls34{letter-spacing:11.048960pt;}
.ls8e{letter-spacing:11.527040pt;}
.ls79{letter-spacing:11.686400pt;}
.ls86{letter-spacing:12.164480pt;}
.ls98{letter-spacing:13.598720pt;}
.ls31{letter-spacing:14.236160pt;}
.ls8d{letter-spacing:14.348800pt;}
.ls87{letter-spacing:14.359040pt;}
.ls85{letter-spacing:14.368000pt;}
.ls6c{letter-spacing:14.411520pt;}
.ls7f{letter-spacing:14.714240pt;}
.ls80{letter-spacing:15.051520pt;}
.ls6b{letter-spacing:15.359360pt;}
.lsa3{letter-spacing:15.505728pt;}
.ls69{letter-spacing:15.952640pt;}
.ls9e{letter-spacing:16.121920pt;}
.ls57{letter-spacing:16.148480pt;}
.ls32{letter-spacing:16.785920pt;}
.ls53{letter-spacing:17.423360pt;}
.ls65{letter-spacing:17.611520pt;}
.ls9f{letter-spacing:18.092672pt;}
.ls9{letter-spacing:18.195840pt;}
.ls6a{letter-spacing:18.374400pt;}
.ls28{letter-spacing:18.751360pt;}
.ls24{letter-spacing:18.869760pt;}
.ls7e{letter-spacing:19.014400pt;}
.ls8b{letter-spacing:19.243520pt;}
.ls26{letter-spacing:19.424640pt;}
.ls43{letter-spacing:20.791040pt;}
.ls27{letter-spacing:23.824320pt;}
.lsa6{letter-spacing:25.125760pt;}
.ls58{letter-spacing:28.950400pt;}
.ls9b{letter-spacing:31.500160pt;}
.ls67{letter-spacing:33.113600pt;}
.ls36{letter-spacing:34.740480pt;}
.ls97{letter-spacing:37.077760pt;}
.lsa5{letter-spacing:41.741696pt;}
.ls78{letter-spacing:56.891520pt;}
.ls0{letter-spacing:59.774720pt;}
.ls44{letter-spacing:81.432960pt;}
.lsa0{letter-spacing:89.772800pt;}
.ls81{letter-spacing:134.552960pt;}
.ls48{letter-spacing:134.557440pt;}
.ls4b{letter-spacing:144.162560pt;}
.ls91{letter-spacing:163.981440pt;}
.ls3d{letter-spacing:196.650240pt;}
.ls42{letter-spacing:198.562560pt;}
.ls47{letter-spacing:219.674240pt;}
.ls4a{letter-spacing:226.706560pt;}
.ls4e{letter-spacing:241.447040pt;}
.ls46{letter-spacing:251.662720pt;}
.ls4c{letter-spacing:263.840640pt;}
.ls4d{letter-spacing:313.752960pt;}
.ls49{letter-spacing:333.006080pt;}
.ls2{letter-spacing:439.262720pt;}
.ls45{letter-spacing:478.227840pt;}
.ws114{word-spacing:-53.120000pt;}
.ws101{word-spacing:-41.280640pt;}
.ws123{word-spacing:-41.274240pt;}
.ws124{word-spacing:-37.120000pt;}
.ws129{word-spacing:-37.082880pt;}
.ws12a{word-spacing:-37.008640pt;}
.ws3{word-spacing:-24.000000pt;}
.ws6{word-spacing:-19.514880pt;}
.ws5{word-spacing:-19.127680pt;}
.ws11{word-spacing:-19.019520pt;}
.ws4{word-spacing:-18.895360pt;}
.ws10{word-spacing:-18.794880pt;}
.ws12{word-spacing:-18.645120pt;}
.ws51{word-spacing:-18.046080pt;}
.ws128{word-spacing:-17.838720pt;}
.wsea{word-spacing:-16.256000pt;}
.wsd8{word-spacing:-16.128000pt;}
.ws8{word-spacing:-15.936000pt;}
.wsf{word-spacing:-15.744000pt;}
.ws7{word-spacing:-15.424000pt;}
.wsfe{word-spacing:-15.104000pt;}
.ws102{word-spacing:-14.661120pt;}
.wsb{word-spacing:-13.598720pt;}
.ws120{word-spacing:-13.545600pt;}
.ws13{word-spacing:-13.492480pt;}
.ws11f{word-spacing:-13.439360pt;}
.wsc{word-spacing:-13.386240pt;}
.wsb2{word-spacing:-13.333120pt;}
.wse{word-spacing:-13.280000pt;}
.ws8e{word-spacing:-13.226880pt;}
.wsa{word-spacing:-13.173760pt;}
.ws53{word-spacing:-13.067520pt;}
.wsd{word-spacing:-12.961280pt;}
.ws8f{word-spacing:-12.855040pt;}
.ws13b{word-spacing:-12.801920pt;}
.ws122{word-spacing:-12.748800pt;}
.ws52{word-spacing:-12.217600pt;}
.ws1{word-spacing:-11.920640pt;}
.ws0{word-spacing:-11.749120pt;}
.ws116{word-spacing:-11.686400pt;}
.ws12b{word-spacing:-11.420800pt;}
.ws54{word-spacing:-11.063040pt;}
.ws91{word-spacing:-11.048960pt;}
.ws2{word-spacing:-11.020160pt;}
.wsb4{word-spacing:-10.934400pt;}
.wsb1{word-spacing:-10.891520pt;}
.ws8d{word-spacing:-10.762880pt;}
.ws9{word-spacing:-10.720000pt;}
.wse9{word-spacing:-10.548480pt;}
.ws55{word-spacing:-10.505600pt;}
.ws56{word-spacing:-10.462720pt;}
.wsb6{word-spacing:-10.419840pt;}
.wsb3{word-spacing:-10.334080pt;}
.wsb8{word-spacing:-10.248320pt;}
.ws93{word-spacing:-9.776640pt;}
.ws13c{word-spacing:-9.614720pt;}
.ws121{word-spacing:-8.674560pt;}
.ws90{word-spacing:-8.640000pt;}
.wsb7{word-spacing:-7.472640pt;}
.ws105{word-spacing:-7.338240pt;}
.ws103{word-spacing:-7.257600pt;}
.wsb0{word-spacing:-7.075200pt;}
.ws104{word-spacing:-6.961920pt;}
.wsb5{word-spacing:-6.720000pt;}
.ws92{word-spacing:-6.074880pt;}
.ws141{word-spacing:-3.893760pt;}
.ws1c{word-spacing:-3.794560pt;}
.ws3b{word-spacing:-3.346560pt;}
.wsbf{word-spacing:-3.134080pt;}
.ws25{word-spacing:-2.974720pt;}
.ws37{word-spacing:-2.709120pt;}
.ws88{word-spacing:-2.496640pt;}
.wsfb{word-spacing:-2.337280pt;}
.ws10f{word-spacing:-2.204160pt;}
.ws10e{word-spacing:-2.096640pt;}
.ws3f{word-spacing:-2.071680pt;}
.ws15{word-spacing:-2.058240pt;}
.wsbc{word-spacing:-1.929600pt;}
.ws85{word-spacing:-1.859200pt;}
.wsf4{word-spacing:-1.699840pt;}
.ws22{word-spacing:-1.626240pt;}
.ws111{word-spacing:-1.505280pt;}
.ws110{word-spacing:-1.478400pt;}
.ws7d{word-spacing:-1.457920pt;}
.ws2d{word-spacing:-1.434240pt;}
.ws20{word-spacing:-1.393920pt;}
.ws70{word-spacing:-1.221760pt;}
.ws142{word-spacing:-1.168640pt;}
.ws4e{word-spacing:-1.062400pt;}
.ws13a{word-spacing:-1.009280pt;}
.wsbd{word-spacing:-0.814720pt;}
.ws2f{word-spacing:-0.796800pt;}
.wsba{word-spacing:-0.643200pt;}
.ws2e{word-spacing:-0.584320pt;}
.wsa9{word-spacing:-0.449280pt;}
.ws59{word-spacing:-0.424960pt;}
.ws7e{word-spacing:-0.343040pt;}
.ws29{word-spacing:-0.318720pt;}
.ws12c{word-spacing:-0.311040pt;}
.ws21{word-spacing:-0.309760pt;}
.wsc5{word-spacing:-0.257280pt;}
.wsc6{word-spacing:-0.256000pt;}
.wsa3{word-spacing:-0.214400pt;}
.wsa2{word-spacing:-0.212480pt;}
.ws7c{word-spacing:-0.171520pt;}
.ws28{word-spacing:-0.159360pt;}
.ws1f{word-spacing:-0.154880pt;}
.ws19{word-spacing:-0.128640pt;}
.ws24{word-spacing:-0.106240pt;}
.wsbb{word-spacing:-0.085760pt;}
.ws6d{word-spacing:-0.074880pt;}
.ws2a{word-spacing:-0.053120pt;}
.ws16{word-spacing:0.000000pt;}
.ws27{word-spacing:0.053120pt;}
.ws1d{word-spacing:0.077440pt;}
.ws69{word-spacing:0.106240pt;}
.ws112{word-spacing:0.161280pt;}
.ws1a{word-spacing:0.171520pt;}
.ws40{word-spacing:0.212480pt;}
.wsd7{word-spacing:0.214400pt;}
.ws1b{word-spacing:0.232320pt;}
.ws109{word-spacing:0.256000pt;}
.ws14{word-spacing:0.257280pt;}
.ws113{word-spacing:0.295680pt;}
.ws7f{word-spacing:0.300160pt;}
.ws3e{word-spacing:0.318720pt;}
.wsff{word-spacing:0.346240pt;}
.wsf0{word-spacing:0.385920pt;}
.ws4d{word-spacing:0.424960pt;}
.ws17{word-spacing:0.428800pt;}
.ws100{word-spacing:0.465664pt;}
.ws95{word-spacing:0.471680pt;}
.ws26{word-spacing:0.478080pt;}
.ws18{word-spacing:0.514560pt;}
.ws34{word-spacing:0.531200pt;}
.wsa1{word-spacing:0.690560pt;}
.wse0{word-spacing:0.849920pt;}
.wsf2{word-spacing:0.857600pt;}
.ws11b{word-spacing:0.896000pt;}
.wsaf{word-spacing:1.072000pt;}
.ws23{word-spacing:1.084160pt;}
.wscb{word-spacing:1.114880pt;}
.ws32{word-spacing:1.115520pt;}
.ws108{word-spacing:1.221760pt;}
.ws5b{word-spacing:1.328000pt;}
.ws62{word-spacing:1.487360pt;}
.ws46{word-spacing:1.752960pt;}
.ws6e{word-spacing:1.965440pt;}
.ws7b{word-spacing:2.124800pt;}
.ws94{word-spacing:2.358400pt;}
.ws50{word-spacing:2.390400pt;}
.wscf{word-spacing:2.401280pt;}
.ws73{word-spacing:2.602880pt;}
.ws47{word-spacing:2.762240pt;}
.ws1e{word-spacing:2.787840pt;}
.ws4a{word-spacing:3.027840pt;}
.ws89{word-spacing:3.240320pt;}
.ws36{word-spacing:3.399680pt;}
.ws4c{word-spacing:3.665280pt;}
.ws127{word-spacing:3.771520pt;}
.ws5c{word-spacing:3.877760pt;}
.wse1{word-spacing:4.037120pt;}
.ws84{word-spacing:4.302720pt;}
.wsa6{word-spacing:4.515200pt;}
.wsc8{word-spacing:4.674560pt;}
.ws3d{word-spacing:4.940160pt;}
.ws49{word-spacing:5.152640pt;}
.ws6f{word-spacing:5.312000pt;}
.wsc2{word-spacing:5.577600pt;}
.ws5e{word-spacing:5.790080pt;}
.wsa5{word-spacing:5.949440pt;}
.ws119{word-spacing:6.217600pt;}
.ws5a{word-spacing:6.268160pt;}
.ws6a{word-spacing:6.289920pt;}
.wsc0{word-spacing:6.480640pt;}
.wsde{word-spacing:6.640000pt;}
.ws83{word-spacing:6.860800pt;}
.ws4b{word-spacing:6.905600pt;}
.ws135{word-spacing:7.011840pt;}
.ws35{word-spacing:7.118080pt;}
.ws96{word-spacing:7.277440pt;}
.wse7{word-spacing:7.436800pt;}
.ws58{word-spacing:7.543040pt;}
.ws41{word-spacing:7.755520pt;}
.ws31{word-spacing:7.914880pt;}
.ws72{word-spacing:8.180480pt;}
.ws60{word-spacing:8.392960pt;}
.ws106{word-spacing:8.552320pt;}
.wsca{word-spacing:8.790400pt;}
.ws87{word-spacing:8.817920pt;}
.ws77{word-spacing:9.030400pt;}
.wsfd{word-spacing:9.189760pt;}
.ws63{word-spacing:9.455360pt;}
.wsd9{word-spacing:9.667840pt;}
.ws117{word-spacing:9.827200pt;}
.wsec{word-spacing:9.880320pt;}
.ws45{word-spacing:10.092800pt;}
.wsdf{word-spacing:10.305280pt;}
.ws10a{word-spacing:10.464640pt;}
.ws42{word-spacing:10.730240pt;}
.ws68{word-spacing:10.942720pt;}
.ws11a{word-spacing:11.136000pt;}
.ws4f{word-spacing:11.367680pt;}
.ws115{word-spacing:11.580160pt;}
.ws118{word-spacing:11.739520pt;}
.wsab{word-spacing:12.005120pt;}
.ws81{word-spacing:12.135040pt;}
.wse6{word-spacing:12.217600pt;}
.ws8b{word-spacing:12.376960pt;}
.wsd4{word-spacing:12.606720pt;}
.ws97{word-spacing:12.642560pt;}
.wsf3{word-spacing:12.855040pt;}
.ws139{word-spacing:13.014400pt;}
.ws82{word-spacing:13.249920pt;}
.ws38{word-spacing:13.280000pt;}
.wsad{word-spacing:13.492480pt;}
.ws138{word-spacing:13.545600pt;}
.ws39{word-spacing:13.651840pt;}
.ws71{word-spacing:13.917440pt;}
.ws9a{word-spacing:14.129920pt;}
.ws134{word-spacing:14.183040pt;}
.wsa0{word-spacing:14.289280pt;}
.ws98{word-spacing:14.554880pt;}
.ws10c{word-spacing:14.767360pt;}
.ws140{word-spacing:14.820480pt;}
.ws10b{word-spacing:14.926720pt;}
.ws107{word-spacing:15.192320pt;}
.ws13e{word-spacing:15.298560pt;}
.wsac{word-spacing:15.404800pt;}
.ws136{word-spacing:15.723520pt;}
.ws80{word-spacing:15.822720pt;}
.ws79{word-spacing:15.829760pt;}
.wsf8{word-spacing:16.042240pt;}
.wsfc{word-spacing:16.201600pt;}
.ws9b{word-spacing:16.467200pt;}
.wsfa{word-spacing:16.679680pt;}
.ws65{word-spacing:16.839040pt;}
.ws9f{word-spacing:17.104640pt;}
.wsee{word-spacing:17.210880pt;}
.ws9c{word-spacing:17.317120pt;}
.wsda{word-spacing:17.476480pt;}
.wse5{word-spacing:17.742080pt;}
.ws7a{word-spacing:17.954560pt;}
.ws74{word-spacing:18.379520pt;}
.ws75{word-spacing:18.592000pt;}
.wsdb{word-spacing:19.070080pt;}
.ws76{word-spacing:19.282560pt;}
.wse3{word-spacing:19.441920pt;}
.wse2{word-spacing:19.601280pt;}
.ws8c{word-spacing:19.707520pt;}
.wse4{word-spacing:19.920000pt;}
.ws78{word-spacing:20.344960pt;}
.ws132{word-spacing:20.716800pt;}
.wsd5{word-spacing:20.925440pt;}
.ws48{word-spacing:20.982400pt;}
.wsd1{word-spacing:21.096960pt;}
.wsc4{word-spacing:21.194880pt;}
.ws10d{word-spacing:21.354240pt;}
.ws2b{word-spacing:21.619840pt;}
.ws125{word-spacing:21.832320pt;}
.wsf7{word-spacing:22.257280pt;}
.ws11d{word-spacing:22.894720pt;}
.ws11c{word-spacing:23.107200pt;}
.wsdd{word-spacing:23.212800pt;}
.ws9e{word-spacing:23.532160pt;}
.ws9d{word-spacing:23.744640pt;}
.ws8a{word-spacing:24.169600pt;}
.ws5f{word-spacing:24.382080pt;}
.ws64{word-spacing:24.541440pt;}
.ws3a{word-spacing:25.178880pt;}
.ws33{word-spacing:25.444480pt;}
.wsa4{word-spacing:26.294400pt;}
.ws13d{word-spacing:26.719360pt;}
.ws11e{word-spacing:26.931840pt;}
.ws2c{word-spacing:27.091200pt;}
.ws12d{word-spacing:27.728640pt;}
.ws126{word-spacing:28.206720pt;}
.ws86{word-spacing:28.366080pt;}
.ws57{word-spacing:28.631680pt;}
.ws30{word-spacing:28.844160pt;}
.ws12e{word-spacing:29.269120pt;}
.wsc3{word-spacing:29.906560pt;}
.wsae{word-spacing:30.544000pt;}
.ws133{word-spacing:30.915840pt;}
.wsd0{word-spacing:31.393920pt;}
.ws66{word-spacing:32.509440pt;}
.wse8{word-spacing:32.881280pt;}
.wsc1{word-spacing:33.784320pt;}
.wsbe{word-spacing:34.156160pt;}
.ws43{word-spacing:34.421760pt;}
.ws44{word-spacing:34.634240pt;}
.wsc7{word-spacing:35.431040pt;}
.wsc9{word-spacing:36.334080pt;}
.ws61{word-spacing:37.184000pt;}
.ws5d{word-spacing:38.883840pt;}
.wsf5{word-spacing:39.733760pt;}
.wsf6{word-spacing:39.893120pt;}
.ws3c{word-spacing:40.371200pt;}
.ws67{word-spacing:41.433600pt;}
.wsf9{word-spacing:42.283520pt;}
.wsce{word-spacing:44.638080pt;}
.ws13f{word-spacing:44.727040pt;}
.wsa8{word-spacing:45.976320pt;}
.ws131{word-spacing:47.436160pt;}
.ws12f{word-spacing:48.073600pt;}
.ws6b{word-spacing:48.821760pt;}
.ws99{word-spacing:49.773440pt;}
.wsdc{word-spacing:51.685760pt;}
.ws130{word-spacing:53.810560pt;}
.wsed{word-spacing:54.023040pt;}
.wsd6{word-spacing:54.929280pt;}
.wsaa{word-spacing:56.519680pt;}
.wsef{word-spacing:58.485120pt;}
.wscd{word-spacing:64.620160pt;}
.wsf1{word-spacing:65.263360pt;}
.wseb{word-spacing:67.674880pt;}
.ws6c{word-spacing:74.805120pt;}
.wsa7{word-spacing:80.196480pt;}
.wscc{word-spacing:83.015680pt;}
.wsd3{word-spacing:88.551040pt;}
.wsd2{word-spacing:89.347840pt;}
.wsb9{word-spacing:125.338240pt;}
.ws137{word-spacing:855.922560pt;}
._2c{margin-left:-12.687424pt;}
._2b{margin-left:-11.525760pt;}
._2d{margin-left:-10.543808pt;}
._9{margin-left:-9.522048pt;}
._8{margin-left:-7.511680pt;}
._1a{margin-left:-6.581184pt;}
._5{margin-left:-5.591616pt;}
._3{margin-left:-3.983552pt;}
._1{margin-left:-2.315520pt;}
._4{margin-left:-1.329280pt;}
._0{width:0.913344pt;}
._2{width:2.015360pt;}
._7{width:3.161472pt;}
._6{width:4.135552pt;}
._10{width:5.438784pt;}
._e{width:6.417152pt;}
._d{width:7.448704pt;}
._11{width:9.120704pt;}
._17{width:10.412800pt;}
._14{width:11.909504pt;}
._f{width:14.932032pt;}
._a{width:16.568128pt;}
._b{width:17.663680pt;}
._28{width:18.687936pt;}
._1f{width:20.391168pt;}
._18{width:21.314304pt;}
._33{width:22.258560pt;}
._2e{width:23.250624pt;}
._2f{width:24.197248pt;}
._12{width:25.488256pt;}
._13{width:26.779072pt;}
._16{width:30.024704pt;}
._15{width:31.203968pt;}
._30{width:33.423104pt;}
._19{width:35.044544pt;}
._c{width:36.510656pt;}
._37{width:40.611520pt;}
._36{width:41.680768pt;}
._27{width:42.915648pt;}
._26{width:43.894336pt;}
._1d{width:46.010240pt;}
._1e{width:83.040000pt;}
._32{width:84.486848pt;}
._31{width:89.248192pt;}
._1b{width:126.067200pt;}
._35{width:154.581760pt;}
._34{width:159.648128pt;}
._24{width:173.406720pt;}
._25{width:252.434560pt;}
._2a{width:256.326187pt;}
._1c{width:260.195840pt;}
._23{width:269.372160pt;}
._21{width:290.040320pt;}
._22{width:298.187520pt;}
._38{width:350.687936pt;}
._39{width:355.531712pt;}
._20{width:398.573952pt;}
._29{width:754.728960pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs8{font-size:40.320000pt;}
.fs0{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fsa{font-size:55.993396pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs2{font-size:77.440000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y28d{bottom:1.440000pt;}
.y116{bottom:2.240000pt;}
.y169{bottom:2.880000pt;}
.ya1{bottom:3.200000pt;}
.ya6{bottom:3.360000pt;}
.y28c{bottom:7.680000pt;}
.y28b{bottom:10.400000pt;}
.y115{bottom:14.560000pt;}
.ya5{bottom:15.520000pt;}
.y298{bottom:16.000000pt;}
.y1f3{bottom:16.480000pt;}
.y173{bottom:17.280000pt;}
.y170{bottom:17.440000pt;}
.y168{bottom:18.240000pt;}
.y297{bottom:18.720000pt;}
.y28a{bottom:18.880000pt;}
.y9e{bottom:25.280000pt;}
.y9c{bottom:25.440000pt;}
.y1ec{bottom:26.880000pt;}
.y9f{bottom:27.680000pt;}
.ya3{bottom:27.840000pt;}
.y1ea{bottom:33.440000pt;}
.y167{bottom:33.600000pt;}
.y16d{bottom:33.920000pt;}
.y1ef{bottom:39.040000pt;}
.y1e9{bottom:48.800000pt;}
.y2{bottom:49.440000pt;}
.y1e5{bottom:55.680000pt;}
.y2a3{bottom:74.634400pt;}
.y2a2{bottom:84.714400pt;}
.y1e2{bottom:86.400000pt;}
.y29f{bottom:97.989733pt;}
.y82{bottom:98.039680pt;}
.yef{bottom:98.238720pt;}
.y150{bottom:99.202720pt;}
.y34c{bottom:101.280000pt;}
.y162{bottom:103.365440pt;}
.y36c{bottom:104.223840pt;}
.y2a{bottom:104.465120pt;}
.y3f1{bottom:104.909760pt;}
.y1de{bottom:106.878080pt;}
.yc2{bottom:107.553440pt;}
.y29e{bottom:108.069600pt;}
.y4e{bottom:108.289760pt;}
.y21a{bottom:109.594400pt;}
.y38a{bottom:110.580320pt;}
.y3bd{bottom:110.706560pt;}
.y29b{bottom:110.715040pt;}
.y81{bottom:113.404640pt;}
.yee{bottom:114.720000pt;}
.y14f{bottom:115.520000pt;}
.y161{bottom:115.682720pt;}
.y34b{bottom:116.960000pt;}
.y36b{bottom:119.588800pt;}
.y29{bottom:119.830080pt;}
.y3f0{bottom:120.274720pt;}
.y2a1{bottom:121.344933pt;}
.y1dd{bottom:122.243040pt;}
.yc1{bottom:122.918400pt;}
.y4d{bottom:123.654720pt;}
.y14e{bottom:123.682720pt;}
.y219{bottom:124.800000pt;}
.yed{bottom:124.960000pt;}
.y389{bottom:125.785920pt;}
.y29a{bottom:126.075040pt;}
.y80{bottom:128.769600pt;}
.y1a3{bottom:129.983840pt;}
.y160{bottom:131.360000pt;}
.y2a0{bottom:131.424933pt;}
.y34a{bottom:132.480000pt;}
.y3bc{bottom:133.428640pt;}
.y36a{bottom:134.953760pt;}
.y28{bottom:135.195040pt;}
.y1dc{bottom:137.608000pt;}
.y29c{bottom:138.082667pt;}
.yc0{bottom:138.283360pt;}
.y4c{bottom:139.019680pt;}
.y14d{bottom:140.000000pt;}
.y388{bottom:141.150880pt;}
.y299{bottom:141.440000pt;}
.yec{bottom:142.699520pt;}
.y3ef{bottom:143.156160pt;}
.y7f{bottom:144.134560pt;}
.y252{bottom:144.977920pt;}
.y1a2{bottom:145.348800pt;}
.y110{bottom:146.720000pt;}
.y348{bottom:147.985120pt;}
.y349{bottom:148.000000pt;}
.y3bb{bottom:148.793600pt;}
.y14c{bottom:149.600000pt;}
.y369{bottom:150.318720pt;}
.y27{bottom:150.560000pt;}
.y1db{bottom:152.972960pt;}
.ybf{bottom:153.648320pt;}
.y296{bottom:153.760000pt;}
.y4b{bottom:154.384640pt;}
.y387{bottom:156.515840pt;}
.y218{bottom:156.800000pt;}
.yeb{bottom:157.905120pt;}
.y3ee{bottom:158.521120pt;}
.y10f{bottom:159.454240pt;}
.y7e{bottom:159.499520pt;}
.y251{bottom:160.342880pt;}
.y1a1{bottom:160.713760pt;}
.y347{bottom:163.350080pt;}
.y368{bottom:165.683680pt;}
.y14b{bottom:167.355040pt;}
.y1da{bottom:168.337920pt;}
.ybe{bottom:169.013280pt;}
.y15f{bottom:169.749440pt;}
.y4a{bottom:169.749600pt;}
.y3ba{bottom:171.675040pt;}
.y386{bottom:171.880800pt;}
.yea{bottom:173.270080pt;}
.y3ed{bottom:173.886080pt;}
.y10e{bottom:174.819200pt;}
.y7d{bottom:174.864480pt;}
.y250{bottom:175.548480pt;}
.y1a0{bottom:176.078720pt;}
.y346{bottom:178.715040pt;}
.y367{bottom:181.048640pt;}
.y217{bottom:182.408000pt;}
.y14a{bottom:182.674080pt;}
.y26{bottom:183.040000pt;}
.y1d9{bottom:183.543520pt;}
.ybd{bottom:184.378240pt;}
.y15e{bottom:185.114400pt;}
.y49{bottom:185.114560pt;}
.y3b9{bottom:187.040000pt;}
.y385{bottom:187.245760pt;}
.y295{bottom:187.969600pt;}
.ye9{bottom:188.635040pt;}
.y3ec{bottom:189.091680pt;}
.y7c{bottom:190.070080pt;}
.y10d{bottom:190.184160pt;}
.y24f{bottom:190.913440pt;}
.y19f{bottom:191.443680pt;}
.y345{bottom:194.069440pt;}
.y366{bottom:196.254240pt;}
.y216{bottom:197.772960pt;}
.y149{bottom:197.879680pt;}
.y1d8{bottom:198.908480pt;}
.ybc{bottom:199.583840pt;}
.y15d{bottom:200.320000pt;}
.y48{bottom:200.320160pt;}
.y384{bottom:202.610720pt;}
.y294{bottom:203.334560pt;}
.ye8{bottom:203.990080pt;}
.y7b{bottom:205.435040pt;}
.y10c{bottom:205.549120pt;}
.y24e{bottom:206.278400pt;}
.y19e{bottom:206.808640pt;}
.y344{bottom:209.275040pt;}
.y3b8{bottom:209.920000pt;}
.y365{bottom:211.619200pt;}
.y3eb{bottom:211.973120pt;}
.y215{bottom:213.137920pt;}
.y148{bottom:213.244640pt;}
.y15b{bottom:213.440000pt;}
.y1d7{bottom:214.273440pt;}
.ybb{bottom:214.948800pt;}
.y47{bottom:215.685120pt;}
.y383{bottom:217.816320pt;}
.y293{bottom:218.699520pt;}
.ye7{bottom:219.355040pt;}
.y324{bottom:220.323040pt;}
.y7a{bottom:220.800000pt;}
.y10b{bottom:220.914080pt;}
.y24d{bottom:221.643360pt;}
.y15c{bottom:221.920000pt;}
.y19d{bottom:222.014240pt;}
.y343{bottom:224.635040pt;}
.y3b7{bottom:225.280000pt;}
.y364{bottom:226.984160pt;}
.y3ea{bottom:227.338080pt;}
.y214{bottom:228.502880pt;}
.y147{bottom:228.609600pt;}
.y1d6{bottom:229.638400pt;}
.yba{bottom:230.313760pt;}
.y46{bottom:231.050080pt;}
.y285{bottom:231.324640pt;}
.y382{bottom:233.181280pt;}
.y292{bottom:234.064480pt;}
.ye6{bottom:234.653600pt;}
.y25{bottom:235.355040pt;}
.y305{bottom:235.573920pt;}
.y10a{bottom:236.279040pt;}
.y24c{bottom:237.008320pt;}
.y19c{bottom:237.379200pt;}
.y159{bottom:238.720000pt;}
.y342{bottom:239.956800pt;}
.y3b6{bottom:240.635040pt;}
.y323{bottom:241.600000pt;}
.y363{bottom:242.349120pt;}
.y3e9{bottom:242.703040pt;}
.y213{bottom:243.867840pt;}
.y146{bottom:243.974560pt;}
.y322{bottom:244.320000pt;}
.y1d5{bottom:245.003360pt;}
.yb9{bottom:245.678720pt;}
.y45{bottom:246.415040pt;}
.y284{bottom:246.689600pt;}
.y15a{bottom:247.040000pt;}
.y381{bottom:248.546240pt;}
.y291{bottom:249.429440pt;}
.ye5{bottom:249.859200pt;}
.y24{bottom:250.720000pt;}
.y304{bottom:250.938880pt;}
.y109{bottom:251.484640pt;}
.y24b{bottom:252.373280pt;}
.y19b{bottom:252.744160pt;}
.y341{bottom:255.321760pt;}
.y3b5{bottom:256.000000pt;}
.y79{bottom:256.168320pt;}
.y362{bottom:257.714080pt;}
.y212{bottom:259.073440pt;}
.y145{bottom:259.339520pt;}
.y321{bottom:259.830080pt;}
.y1d4{bottom:260.368320pt;}
.yb8{bottom:261.043680pt;}
.y44{bottom:261.780000pt;}
.y283{bottom:262.054560pt;}
.y157{bottom:263.840000pt;}
.y380{bottom:263.911200pt;}
.y290{bottom:264.635040pt;}
.ye4{bottom:265.224160pt;}
.y3e8{bottom:265.584480pt;}
.y303{bottom:266.303840pt;}
.y108{bottom:266.849600pt;}
.y24a{bottom:267.578880pt;}
.y19a{bottom:268.109120pt;}
.y340{bottom:270.686720pt;}
.y158{bottom:272.320000pt;}
.y361{bottom:273.079040pt;}
.y211{bottom:274.438400pt;}
.y144{bottom:274.704480pt;}
.y320{bottom:275.195040pt;}
.y1d3{bottom:275.573920pt;}
.yb7{bottom:276.249280pt;}
.y43{bottom:276.985600pt;}
.y282{bottom:277.419520pt;}
.y78{bottom:277.602720pt;}
.y3b4{bottom:278.626560pt;}
.y37f{bottom:279.276160pt;}
.y28f{bottom:280.000000pt;}
.ye3{bottom:280.589120pt;}
.y3e7{bottom:280.949440pt;}
.y302{bottom:281.668800pt;}
.y107{bottom:282.214560pt;}
.y249{bottom:282.943840pt;}
.y23{bottom:283.200000pt;}
.y199{bottom:283.474080pt;}
.y33f{bottom:286.051680pt;}
.y360{bottom:288.284640pt;}
.y156{bottom:289.120000pt;}
.y210{bottom:289.803360pt;}
.y143{bottom:289.910080pt;}
.y31f{bottom:290.555040pt;}
.y1d2{bottom:290.938880pt;}
.yb6{bottom:291.614240pt;}
.y42{bottom:292.350560pt;}
.y289{bottom:292.480000pt;}
.y281{bottom:292.625120pt;}
.y3b3{bottom:293.991520pt;}
.y37e{bottom:294.641120pt;}
.y2e6{bottom:295.195360pt;}
.ye2{bottom:295.954080pt;}
.y3e6{bottom:296.314400pt;}
.y301{bottom:297.033760pt;}
.y155{bottom:297.440000pt;}
.y106{bottom:297.579520pt;}
.y248{bottom:298.308800pt;}
.y198{bottom:298.839040pt;}
.y77{bottom:299.037120pt;}
.y33e{bottom:301.257280pt;}
.y28e{bottom:302.880000pt;}
.y35f{bottom:303.649600pt;}
.y20f{bottom:305.168320pt;}
.y142{bottom:305.275040pt;}
.y31e{bottom:305.910080pt;}
.y1d1{bottom:306.303840pt;}
.yb5{bottom:306.979200pt;}
.y41{bottom:307.715520pt;}
.y280{bottom:307.990080pt;}
.y3b2{bottom:309.356480pt;}
.y37d{bottom:309.846720pt;}
.ye1{bottom:311.319040pt;}
.y3e5{bottom:311.520000pt;}
.y300{bottom:312.239360pt;}
.y105{bottom:312.944480pt;}
.y247{bottom:313.673760pt;}
.y197{bottom:314.044640pt;}
.y33d{bottom:317.578400pt;}
.y35e{bottom:319.014560pt;}
.y20e{bottom:320.533280pt;}
.y76{bottom:320.640000pt;}
.y154{bottom:320.800000pt;}
.y31d{bottom:321.275040pt;}
.y1d0{bottom:321.668800pt;}
.yb4{bottom:322.344160pt;}
.y40{bottom:323.080480pt;}
.y27f{bottom:323.355040pt;}
.y2c1{bottom:323.366240pt;}
.y3b1{bottom:324.721440pt;}
.y37c{bottom:325.211680pt;}
.ye0{bottom:326.684000pt;}
.y3e4{bottom:326.884960pt;}
.y2ff{bottom:327.604320pt;}
.y104{bottom:328.309440pt;}
.y246{bottom:329.038720pt;}
.y196{bottom:329.409600pt;}
.y33c{bottom:332.943360pt;}
.y35d{bottom:334.379520pt;}
.y22{bottom:335.420800pt;}
.y2c0{bottom:335.683520pt;}
.y20d{bottom:335.898240pt;}
.y31c{bottom:336.609600pt;}
.y1cf{bottom:337.033760pt;}
.yb3{bottom:337.709120pt;}
.y3f{bottom:338.445440pt;}
.y27e{bottom:338.720000pt;}
.y288{bottom:339.362720pt;}
.y3b0{bottom:340.086400pt;}
.y37b{bottom:340.576640pt;}
.ydf{bottom:341.889600pt;}
.y3e3{bottom:342.249920pt;}
.y2fe{bottom:342.969280pt;}
.y103{bottom:343.515040pt;}
.y245{bottom:344.403680pt;}
.y195{bottom:344.774560pt;}
.y2bf{bottom:347.840000pt;}
.y33b{bottom:349.264480pt;}
.y35c{bottom:349.744480pt;}
.y21{bottom:350.626400pt;}
.y20c{bottom:351.103840pt;}
.y287{bottom:351.680000pt;}
.y31b{bottom:351.815200pt;}
.y1ce{bottom:352.398720pt;}
.y141{bottom:352.640000pt;}
.yb2{bottom:353.074080pt;}
.y153{bottom:353.122720pt;}
.y3e{bottom:353.810400pt;}
.y37a{bottom:355.941600pt;}
.yde{bottom:357.254560pt;}
.y2be{bottom:357.788640pt;}
.y2fd{bottom:358.334240pt;}
.y102{bottom:358.880000pt;}
.y244{bottom:359.609280pt;}
.y194{bottom:360.139520pt;}
.y286{bottom:361.596960pt;}
.y3af{bottom:362.967840pt;}
.y33a{bottom:364.629440pt;}
.y35b{bottom:364.950080pt;}
.y3e2{bottom:365.131360pt;}
.y152{bottom:365.440000pt;}
.y20{bottom:365.991360pt;}
.y20b{bottom:366.468800pt;}
.y31a{bottom:367.180160pt;}
.y1cd{bottom:367.604320pt;}
.yb1{bottom:368.279680pt;}
.y3d{bottom:369.016000pt;}
.y27d{bottom:370.720000pt;}
.y379{bottom:371.306560pt;}
.ydd{bottom:372.619520pt;}
.y2fc{bottom:373.699200pt;}
.y243{bottom:374.974240pt;}
.y193{bottom:375.504480pt;}
.y3ae{bottom:378.332800pt;}
.y140{bottom:378.395040pt;}
.y151{bottom:378.400000pt;}
.y75{bottom:378.587840pt;}
.y339{bottom:379.994400pt;}
.y35a{bottom:380.315040pt;}
.y3e1{bottom:380.496320pt;}
.y1f{bottom:381.356320pt;}
.y20a{bottom:381.833760pt;}
.y319{bottom:382.545120pt;}
.y1cc{bottom:382.969280pt;}
.yb0{bottom:383.644640pt;}
.y3c{bottom:384.380960pt;}
.y378{bottom:386.671520pt;}
.ydc{bottom:387.984480pt;}
.y2fb{bottom:388.904800pt;}
.y242{bottom:390.339200pt;}
.y192{bottom:390.710080pt;}
.y3ad{bottom:393.538400pt;}
.y13f{bottom:393.760000pt;}
.y74{bottom:393.793440pt;}
.y101{bottom:394.242720pt;}
.y338{bottom:395.198880pt;}
.y359{bottom:395.680000pt;}
.y3e0{bottom:395.861280pt;}
.y27c{bottom:396.408640pt;}
.y1e{bottom:396.721280pt;}
.y209{bottom:397.198720pt;}
.y318{bottom:397.910080pt;}
.y1cb{bottom:398.334240pt;}
.yaf{bottom:399.009600pt;}
.y3b{bottom:399.745920pt;}
.y377{bottom:401.877120pt;}
.ydb{bottom:403.349440pt;}
.y2fa{bottom:404.269760pt;}
.y241{bottom:405.704160pt;}
.y191{bottom:406.075040pt;}
.y178{bottom:406.880000pt;}
.y73{bottom:409.158400pt;}
.y3df{bottom:411.066880pt;}
.y337{bottom:411.442560pt;}
.y27b{bottom:411.773600pt;}
.y179{bottom:412.000000pt;}
.y1d{bottom:412.086240pt;}
.y208{bottom:412.563680pt;}
.y317{bottom:413.275040pt;}
.y1ca{bottom:413.699200pt;}
.yae{bottom:414.374560pt;}
.y3a{bottom:415.110880pt;}
.y100{bottom:415.677120pt;}
.y3ac{bottom:416.419840pt;}
.y376{bottom:417.242080pt;}
.y177{bottom:418.080000pt;}
.yda{bottom:418.714400pt;}
.y2f9{bottom:419.634720pt;}
.y240{bottom:421.069120pt;}
.y190{bottom:421.440000pt;}
.y72{bottom:424.523360pt;}
.y27a{bottom:426.979200pt;}
.y1c{bottom:427.451200pt;}
.y336{bottom:427.763680pt;}
.y207{bottom:427.928640pt;}
.y316{bottom:428.634400pt;}
.y1c9{bottom:429.064160pt;}
.yad{bottom:429.739520pt;}
.y2e5{bottom:429.761600pt;}
.y39{bottom:430.475840pt;}
.y358{bottom:431.040000pt;}
.y3ab{bottom:431.784800pt;}
.y375{bottom:432.607040pt;}
.yd9{bottom:433.823840pt;}
.y3de{bottom:433.948320pt;}
.y2f8{bottom:434.999680pt;}
.y23f{bottom:436.274720pt;}
.yff{bottom:437.280000pt;}
.y71{bottom:439.888320pt;}
.y279{bottom:442.344160pt;}
.y1b{bottom:442.656800pt;}
.y335{bottom:443.128640pt;}
.y206{bottom:443.134240pt;}
.y315{bottom:443.814560pt;}
.y1c8{bottom:444.269760pt;}
.yac{bottom:445.104480pt;}
.y2e4{bottom:445.126560pt;}
.y38{bottom:445.840800pt;}
.y3aa{bottom:447.149760pt;}
.y374{bottom:447.972000pt;}
.y176{bottom:448.960000pt;}
.yd8{bottom:449.188800pt;}
.y3dd{bottom:449.313280pt;}
.y2f7{bottom:450.364640pt;}
.y23e{bottom:451.639680pt;}
.y18f{bottom:453.440000pt;}
.y70{bottom:455.253280pt;}
.y278{bottom:457.709120pt;}
.y1a{bottom:458.021760pt;}
.y334{bottom:458.493600pt;}
.y205{bottom:458.499200pt;}
.y314{bottom:459.179520pt;}
.y1c7{bottom:459.634720pt;}
.yab{bottom:460.310080pt;}
.y2e3{bottom:460.491520pt;}
.y37{bottom:461.046400pt;}
.y3a9{bottom:462.514720pt;}
.y373{bottom:463.336960pt;}
.yd7{bottom:464.553760pt;}
.y3dc{bottom:464.678240pt;}
.y2f6{bottom:465.729600pt;}
.y23d{bottom:467.004640pt;}
.y6f{bottom:470.618240pt;}
.y277{bottom:473.074080pt;}
.y19{bottom:473.386720pt;}
.y333{bottom:473.699200pt;}
.y204{bottom:473.864160pt;}
.y313{bottom:474.544480pt;}
.y1c6{bottom:474.999680pt;}
.yaa{bottom:475.675040pt;}
.y2e2{bottom:475.856480pt;}
.y36{bottom:476.411360pt;}
.y372{bottom:478.542560pt;}
.yd6{bottom:479.918720pt;}
.y175{bottom:480.000000pt;}
.y3db{bottom:480.043200pt;}
.y2f5{bottom:480.935200pt;}
.y23c{bottom:482.369600pt;}
.y3a8{bottom:485.236800pt;}
.y6e{bottom:485.823840pt;}
.y276{bottom:488.439040pt;}
.y18{bottom:488.751680pt;}
.y332{bottom:489.064160pt;}
.y357{bottom:489.069280pt;}
.y203{bottom:489.229120pt;}
.y312{bottom:489.909440pt;}
.y1c5{bottom:490.364640pt;}
.ya9{bottom:491.040000pt;}
.y18e{bottom:491.205600pt;}
.y2e1{bottom:491.221440pt;}
.y35{bottom:491.776320pt;}
.y371{bottom:493.907520pt;}
.y2bd{bottom:493.948480pt;}
.yd5{bottom:495.283680pt;}
.yfe{bottom:495.288640pt;}
.y3da{bottom:495.408160pt;}
.y2f4{bottom:496.300160pt;}
.y23b{bottom:497.734560pt;}
.y172{bottom:499.680000pt;}
.y3a7{bottom:500.601760pt;}
.y6d{bottom:501.188800pt;}
.y275{bottom:503.804000pt;}
.y17{bottom:504.116640pt;}
.ya7{bottom:504.160000pt;}
.y331{bottom:504.429120pt;}
.y356{bottom:504.434240pt;}
.y202{bottom:504.594080pt;}
.y174{bottom:504.800000pt;}
.y311{bottom:505.274400pt;}
.y1c4{bottom:505.729600pt;}
.y2e0{bottom:506.427040pt;}
.y34{bottom:507.141280pt;}
.y370{bottom:509.272480pt;}
.y2bc{bottom:509.313440pt;}
.yd4{bottom:510.489280pt;}
.yfd{bottom:510.494240pt;}
.y2f3{bottom:511.665120pt;}
.y18d{bottom:512.640000pt;}
.y23a{bottom:513.099520pt;}
.y3a6{bottom:515.966720pt;}
.y6c{bottom:516.553760pt;}
.y3d9{bottom:518.130240pt;}
.y274{bottom:519.009600pt;}
.y16{bottom:519.481600pt;}
.ya8{bottom:519.680000pt;}
.y330{bottom:519.794080pt;}
.y355{bottom:519.799200pt;}
.y201{bottom:519.799680pt;}
.y310{bottom:520.336960pt;}
.y1c3{bottom:521.094560pt;}
.y2df{bottom:521.792000pt;}
.y33{bottom:522.506240pt;}
.y40d{bottom:523.427360pt;}
.y36f{bottom:524.637440pt;}
.y2bb{bottom:524.678400pt;}
.yd3{bottom:525.854240pt;}
.yfc{bottom:525.859200pt;}
.y2f2{bottom:527.030080pt;}
.y239{bottom:528.305120pt;}
.y16f{bottom:530.560000pt;}
.y3a5{bottom:531.331680pt;}
.y6b{bottom:531.918720pt;}
.y3d8{bottom:533.495200pt;}
.y273{bottom:534.374560pt;}
.y15{bottom:534.687200pt;}
.y32f{bottom:535.159040pt;}
.y354{bottom:535.164160pt;}
.y200{bottom:535.164640pt;}
.y171{bottom:535.680000pt;}
.y30f{bottom:535.701920pt;}
.y1c2{bottom:536.300160pt;}
.y2de{bottom:537.156960pt;}
.y32{bottom:537.871200pt;}
.y40c{bottom:538.792320pt;}
.y36e{bottom:540.002400pt;}
.y2ba{bottom:540.043360pt;}
.yd2{bottom:541.219200pt;}
.yfb{bottom:541.224160pt;}
.y2f1{bottom:542.395040pt;}
.ya2{bottom:542.560000pt;}
.y238{bottom:543.670080pt;}
.y6a{bottom:547.283680pt;}
.y3d7{bottom:548.860160pt;}
.y272{bottom:549.739520pt;}
.y14{bottom:550.052160pt;}
.y32e{bottom:550.524000pt;}
.y353{bottom:550.529120pt;}
.y1ff{bottom:550.529600pt;}
.y30e{bottom:551.066880pt;}
.y1c1{bottom:551.665120pt;}
.y2dd{bottom:552.521920pt;}
.y31{bottom:553.076800pt;}
.y40b{bottom:554.157280pt;}
.y3a4{bottom:554.213120pt;}
.y36d{bottom:555.367360pt;}
.y2b9{bottom:555.408320pt;}
.yd1{bottom:556.584160pt;}
.yfa{bottom:556.589120pt;}
.y2f0{bottom:557.760000pt;}
.ya4{bottom:558.080000pt;}
.y237{bottom:559.035040pt;}
.y16c{bottom:561.440000pt;}
.y69{bottom:562.648640pt;}
.y3d6{bottom:564.225120pt;}
.y271{bottom:565.104480pt;}
.y13{bottom:565.417120pt;}
.y32d{bottom:565.729600pt;}
.y352{bottom:565.734720pt;}
.y1fe{bottom:565.894560pt;}
.y30d{bottom:566.431840pt;}
.y1c0{bottom:567.030080pt;}
.y2dc{bottom:567.886880pt;}
.y30{bottom:568.441760pt;}
.y40a{bottom:569.522240pt;}
.y3a3{bottom:569.578080pt;}
.y18c{bottom:570.572960pt;}
.y2b8{bottom:570.613920pt;}
.yd0{bottom:571.949120pt;}
.yf9{bottom:571.954080pt;}
.y236{bottom:574.400000pt;}
.y166{bottom:577.440000pt;}
.y68{bottom:577.854240pt;}
.y3d5{bottom:579.590080pt;}
.y16b{bottom:579.995040pt;}
.y16e{bottom:580.000000pt;}
.y270{bottom:580.469440pt;}
.y12{bottom:580.782080pt;}
.y32c{bottom:581.094560pt;}
.y351{bottom:581.099680pt;}
.y9d{bottom:581.120000pt;}
.y1fd{bottom:581.259520pt;}
.y30c{bottom:581.796800pt;}
.y1bf{bottom:582.395040pt;}
.y2db{bottom:583.251840pt;}
.y2f{bottom:583.806720pt;}
.y409{bottom:584.887200pt;}
.y3a2{bottom:584.943040pt;}
.y18b{bottom:585.937920pt;}
.y2b7{bottom:585.978880pt;}
.ycf{bottom:587.314080pt;}
.yf8{bottom:587.319040pt;}
.y163{bottom:587.680000pt;}
.y165{bottom:587.998720pt;}
.y2ef{bottom:589.600000pt;}
.y67{bottom:593.219200pt;}
.y3d4{bottom:594.955040pt;}
.y16a{bottom:595.360000pt;}
.y26f{bottom:595.675040pt;}
.y11{bottom:596.147040pt;}
.y32b{bottom:596.459520pt;}
.y350{bottom:596.464640pt;}
.y1fc{bottom:596.624480pt;}
.ya0{bottom:596.640000pt;}
.y1be{bottom:597.632800pt;}
.y30b{bottom:598.117920pt;}
.y2da{bottom:598.457440pt;}
.y2e{bottom:599.171680pt;}
.y408{bottom:600.252160pt;}
.y3a1{bottom:600.308000pt;}
.y18a{bottom:601.302880pt;}
.y2b6{bottom:601.343840pt;}
.yce{bottom:602.519680pt;}
.yf7{bottom:602.524640pt;}
.y164{bottom:603.363680pt;}
.y235{bottom:606.400000pt;}
.y66{bottom:608.584160pt;}
.y26e{bottom:611.040000pt;}
.y10{bottom:611.352640pt;}
.y32a{bottom:611.824480pt;}
.y34f{bottom:611.829600pt;}
.y1fb{bottom:611.830080pt;}
.y1bd{bottom:612.997760pt;}
.y2d9{bottom:613.822400pt;}
.y30a{bottom:614.279680pt;}
.y2d{bottom:614.536640pt;}
.y2ee{bottom:615.340160pt;}
.y407{bottom:615.457760pt;}
.y189{bottom:616.667840pt;}
.y2b5{bottom:616.708800pt;}
.y3d3{bottom:617.677120pt;}
.ycd{bottom:617.884640pt;}
.yf6{bottom:617.889600pt;}
.y9b{bottom:619.520000pt;}
.y3a0{bottom:623.030080pt;}
.y65{bottom:623.949120pt;}
.yf{bottom:626.717600pt;}
.y329{bottom:627.189440pt;}
.y34e{bottom:627.194560pt;}
.y1fa{bottom:627.195040pt;}
.y1bc{bottom:628.203360pt;}
.y2d8{bottom:629.187360pt;}
.y2c{bottom:629.742240pt;}
.y309{bottom:630.600800pt;}
.y2ed{bottom:630.705120pt;}
.y406{bottom:630.822720pt;}
.y234{bottom:632.029600pt;}
.y188{bottom:632.032800pt;}
.y2b4{bottom:632.073760pt;}
.y3d2{bottom:633.042080pt;}
.ycc{bottom:633.249600pt;}
.yf5{bottom:633.254560pt;}
.y39f{bottom:638.395040pt;}
.y64{bottom:639.314080pt;}
.y328{bottom:642.554400pt;}
.y34d{bottom:642.559520pt;}
.y1f9{bottom:642.560000pt;}
.ye{bottom:642.720000pt;}
.y26d{bottom:643.040000pt;}
.y1bb{bottom:643.568320pt;}
.y2d7{bottom:644.552320pt;}
.y2b{bottom:645.107200pt;}
.y308{bottom:645.965760pt;}
.y2ec{bottom:646.070080pt;}
.y405{bottom:646.187680pt;}
.y233{bottom:647.394560pt;}
.y187{bottom:647.397760pt;}
.y2b3{bottom:647.438720pt;}
.y3d1{bottom:648.407040pt;}
.ycb{bottom:648.614560pt;}
.yf4{bottom:648.619520pt;}
.y13e{bottom:649.600000pt;}
.y39e{bottom:653.760000pt;}
.y63{bottom:654.679040pt;}
.y327{bottom:657.760000pt;}
.y1ba{bottom:658.933280pt;}
.y2d6{bottom:659.917280pt;}
.y307{bottom:661.330720pt;}
.y2eb{bottom:661.435040pt;}
.y404{bottom:661.552640pt;}
.y13d{bottom:662.550720pt;}
.y232{bottom:662.600160pt;}
.y186{bottom:662.603360pt;}
.y2b2{bottom:662.644320pt;}
.y3d0{bottom:663.772000pt;}
.yca{bottom:663.979520pt;}
.yf3{bottom:663.984480pt;}
.y9a{bottom:668.162720pt;}
.y26c{bottom:669.440000pt;}
.y62{bottom:669.884640pt;}
.y1b9{bottom:674.298240pt;}
.y1f8{bottom:674.560000pt;}
.y2d5{bottom:675.122880pt;}
.y39d{bottom:676.635040pt;}
.y306{bottom:676.695680pt;}
.y2ea{bottom:676.800000pt;}
.y125{bottom:677.879680pt;}
.y231{bottom:677.965120pt;}
.y185{bottom:677.968320pt;}
.y2b1{bottom:678.009280pt;}
.y13c{bottom:678.075040pt;}
.yc9{bottom:679.344480pt;}
.yf2{bottom:679.349440pt;}
.y99{bottom:680.480000pt;}
.y403{bottom:684.434080pt;}
.yd{bottom:684.960000pt;}
.y61{bottom:685.249600pt;}
.y326{bottom:685.760000pt;}
.y3cf{bottom:686.653440pt;}
.y26b{bottom:687.200000pt;}
.y1b8{bottom:689.663200pt;}
.y2d4{bottom:690.487840pt;}
.y39c{bottom:692.000000pt;}
.y2e9{bottom:692.800000pt;}
.y124{bottom:693.244640pt;}
.y98{bottom:693.289120pt;}
.y230{bottom:693.330080pt;}
.y184{bottom:693.333280pt;}
.y2b0{bottom:693.374240pt;}
.y13b{bottom:693.379200pt;}
.yc8{bottom:694.550080pt;}
.yf1{bottom:694.555040pt;}
.y325{bottom:695.840000pt;}
.y402{bottom:699.958400pt;}
.y1f7{bottom:700.320000pt;}
.y60{bottom:700.614560pt;}
.y3ce{bottom:702.018400pt;}
.y1b7{bottom:704.868800pt;}
.y2d3{bottom:705.852800pt;}
.y39b{bottom:707.360000pt;}
.y123{bottom:708.609600pt;}
.y97{bottom:708.654080pt;}
.y22f{bottom:708.695040pt;}
.y183{bottom:708.698240pt;}
.y2af{bottom:708.739200pt;}
.y13a{bottom:708.744160pt;}
.yc7{bottom:709.915040pt;}
.yf0{bottom:709.920000pt;}
.y1f6{bottom:713.440000pt;}
.y265{bottom:714.329280pt;}
.y401{bottom:715.164000pt;}
.y26a{bottom:715.200000pt;}
.y5f{bottom:715.979520pt;}
.y3cd{bottom:717.383360pt;}
.y1b6{bottom:720.233760pt;}
.y2d2{bottom:721.217760pt;}
.y39a{bottom:722.550080pt;}
.y2e8{bottom:723.200000pt;}
.y122{bottom:723.974560pt;}
.y96{bottom:724.019040pt;}
.y22e{bottom:724.060000pt;}
.y182{bottom:724.063200pt;}
.y2ae{bottom:724.104160pt;}
.y139{bottom:724.109120pt;}
.yc{bottom:724.801120pt;}
.y269{bottom:725.205600pt;}
.yc6{bottom:725.280000pt;}
.y264{bottom:729.694240pt;}
.y400{bottom:730.528960pt;}
.y5e{bottom:731.344480pt;}
.y2e7{bottom:733.280000pt;}
.y1b5{bottom:735.598720pt;}
.y2d1{bottom:737.538880pt;}
.y399{bottom:737.915040pt;}
.y95{bottom:739.224640pt;}
.y22d{bottom:739.265600pt;}
.y181{bottom:739.268800pt;}
.y2ad{bottom:739.309760pt;}
.y138{bottom:739.314720pt;}
.y121{bottom:739.339520pt;}
.y3cc{bottom:740.105440pt;}
.y1f5{bottom:740.480000pt;}
.y263{bottom:745.059200pt;}
.y3ff{bottom:745.893920pt;}
.y5d{bottom:746.550080pt;}
.y1b4{bottom:750.963680pt;}
.y2d0{bottom:752.903840pt;}
.y398{bottom:753.280000pt;}
.y120{bottom:754.545120pt;}
.y94{bottom:754.589600pt;}
.y22c{bottom:754.630560pt;}
.y180{bottom:754.633760pt;}
.y2ac{bottom:754.674720pt;}
.y137{bottom:754.679680pt;}
.y3cb{bottom:755.470400pt;}
.yc5{bottom:758.722720pt;}
.yb{bottom:759.036960pt;}
.y262{bottom:760.424160pt;}
.y3fe{bottom:761.258880pt;}
.y5c{bottom:761.915040pt;}
.y1b3{bottom:766.328640pt;}
.y1f2{bottom:767.680000pt;}
.y2cf{bottom:769.065600pt;}
.y11f{bottom:769.910080pt;}
.y93{bottom:769.954560pt;}
.y22b{bottom:769.995520pt;}
.y17f{bottom:769.998720pt;}
.y2ab{bottom:770.039680pt;}
.y136{bottom:770.044640pt;}
.y3ca{bottom:770.835360pt;}
.yc4{bottom:771.040000pt;}
.y1f4{bottom:771.840000pt;}
.y261{bottom:775.789120pt;}
.y3fd{bottom:776.623840pt;}
.y5b{bottom:777.280000pt;}
.ya{bottom:780.960000pt;}
.yc3{bottom:781.120000pt;}
.y1b2{bottom:781.693600pt;}
.y2ce{bottom:784.430560pt;}
.y11e{bottom:785.275040pt;}
.y92{bottom:785.319520pt;}
.y22a{bottom:785.360480pt;}
.y17e{bottom:785.363680pt;}
.y2aa{bottom:785.404640pt;}
.y135{bottom:785.409600pt;}
.y3c9{bottom:786.200320pt;}
.y397{bottom:788.640000pt;}
.y260{bottom:790.994720pt;}
.y3fc{bottom:791.988800pt;}
.y9{bottom:792.637600pt;}
.y1ee{bottom:794.880000pt;}
.y1b1{bottom:796.899200pt;}
.y11d{bottom:800.640000pt;}
.y91{bottom:800.684480pt;}
.y229{bottom:800.725440pt;}
.y17d{bottom:800.728640pt;}
.y2cd{bottom:800.751680pt;}
.y2a9{bottom:800.769600pt;}
.y134{bottom:800.774560pt;}
.y3c8{bottom:801.565280pt;}
.y25f{bottom:806.359680pt;}
.y3fb{bottom:807.194400pt;}
.y1f1{bottom:809.282720pt;}
.y5a{bottom:809.760000pt;}
.y1b0{bottom:812.264160pt;}
.y8{bottom:814.720000pt;}
.y90{bottom:816.049440pt;}
.y228{bottom:816.090400pt;}
.y17c{bottom:816.093600pt;}
.y2a8{bottom:816.134560pt;}
.y133{bottom:816.139520pt;}
.y2cc{bottom:817.072800pt;}
.y1f0{bottom:821.600000pt;}
.y25e{bottom:821.724640pt;}
.y3fa{bottom:822.400000pt;}
.y3c7{bottom:824.446720pt;}
.y1af{bottom:827.629120pt;}
.y8f{bottom:831.255040pt;}
.y227{bottom:831.296000pt;}
.y17b{bottom:831.299200pt;}
.y2a7{bottom:831.340160pt;}
.y132{bottom:831.345120pt;}
.y2cb{bottom:832.437760pt;}
.y11c{bottom:832.640000pt;}
.y25d{bottom:837.089600pt;}
.y3c6{bottom:839.811680pt;}
.y1ae{bottom:842.994080pt;}
.y1e1{bottom:844.480000pt;}
.y7{bottom:845.920000pt;}
.y396{bottom:846.358720pt;}
.y8e{bottom:846.620000pt;}
.y226{bottom:846.660960pt;}
.y17a{bottom:846.664160pt;}
.y2a6{bottom:846.705120pt;}
.y131{bottom:846.710080pt;}
.y2ca{bottom:847.802720pt;}
.y25c{bottom:852.454560pt;}
.y3f9{bottom:857.760000pt;}
.y1ad{bottom:858.359040pt;}
.y11b{bottom:858.400000pt;}
.y1ed{bottom:859.040000pt;}
.y395{bottom:861.723680pt;}
.y8d{bottom:861.984960pt;}
.y225{bottom:862.025920pt;}
.y59{bottom:862.029120pt;}
.y2a5{bottom:862.070080pt;}
.y130{bottom:862.075040pt;}
.y3c5{bottom:862.533760pt;}
.y2c9{bottom:863.008320pt;}
.y25b{bottom:867.660160pt;}
.y1e7{bottom:869.595040pt;}
.y1ac{bottom:873.724000pt;}
.y394{bottom:877.088640pt;}
.y8c{bottom:877.349920pt;}
.y12f{bottom:877.358560pt;}
.y224{bottom:877.390880pt;}
.y58{bottom:877.394080pt;}
.y2a4{bottom:877.435040pt;}
.y3c4{bottom:877.898720pt;}
.y2c8{bottom:878.373280pt;}
.y11a{bottom:878.880000pt;}
.y1e8{bottom:882.080000pt;}
.y25a{bottom:883.025120pt;}
.y1e6{bottom:884.960000pt;}
.y1ab{bottom:888.929600pt;}
.y393{bottom:892.453600pt;}
.y8b{bottom:892.714880pt;}
.y12e{bottom:892.723520pt;}
.y223{bottom:892.755840pt;}
.y57{bottom:892.759040pt;}
.y2c7{bottom:893.738240pt;}
.y259{bottom:898.390080pt;}
.y29d{bottom:898.395467pt;}
.y1e4{bottom:900.155040pt;}
.y1eb{bottom:900.160000pt;}
.y3c3{bottom:900.780160pt;}
.y119{bottom:902.240000pt;}
.y6{bottom:903.680000pt;}
.y1aa{bottom:904.294560pt;}
.y392{bottom:907.818560pt;}
.y8a{bottom:908.079840pt;}
.y12d{bottom:908.088480pt;}
.y222{bottom:908.120800pt;}
.y56{bottom:908.124000pt;}
.y2c6{bottom:909.103200pt;}
.y258{bottom:913.755040pt;}
.y1e3{bottom:915.520000pt;}
.y3f8{bottom:915.600640pt;}
.y3c2{bottom:916.145120pt;}
.y1a9{bottom:919.659520pt;}
.y391{bottom:923.024160pt;}
.y89{bottom:923.285440pt;}
.y12c{bottom:923.294080pt;}
.y221{bottom:923.326400pt;}
.y55{bottom:923.329600pt;}
.y2c5{bottom:924.468160pt;}
.y118{bottom:925.600000pt;}
.y257{bottom:929.104480pt;}
.y3f7{bottom:930.965600pt;}
.y5{bottom:931.360000pt;}
.y1a8{bottom:935.024480pt;}
.y390{bottom:938.389120pt;}
.y88{bottom:938.650400pt;}
.y12b{bottom:938.659040pt;}
.y220{bottom:938.691360pt;}
.y54{bottom:938.694560pt;}
.y3c1{bottom:939.026560pt;}
.y2c4{bottom:939.673760pt;}
.y114{bottom:941.440000pt;}
.y256{bottom:944.469440pt;}
.y3f6{bottom:946.330560pt;}
.y117{bottom:949.920000pt;}
.y1a7{bottom:950.389440pt;}
.y38f{bottom:953.754080pt;}
.y87{bottom:954.015360pt;}
.y12a{bottom:954.024000pt;}
.y21f{bottom:954.056320pt;}
.y53{bottom:954.059520pt;}
.y3c0{bottom:954.391520pt;}
.y4{bottom:959.049440pt;}
.y1e0{bottom:959.522720pt;}
.y255{bottom:959.675040pt;}
.y3f5{bottom:961.695520pt;}
.y2c3{bottom:962.555200pt;}
.y1a6{bottom:965.754400pt;}
.y38e{bottom:969.119040pt;}
.y86{bottom:969.380320pt;}
.y129{bottom:969.388960pt;}
.y21e{bottom:969.421280pt;}
.y52{bottom:969.424480pt;}
.y1df{bottom:971.840000pt;}
.y113{bottom:973.280000pt;}
.y254{bottom:975.040000pt;}
.y3f4{bottom:977.060480pt;}
.y3bf{bottom:977.113600pt;}
.y1a5{bottom:980.960000pt;}
.y38d{bottom:984.484000pt;}
.y268{bottom:984.723360pt;}
.y85{bottom:984.745280pt;}
.y128{bottom:984.753920pt;}
.y21d{bottom:984.786240pt;}
.y51{bottom:984.789440pt;}
.y3{bottom:986.560000pt;}
.y3be{bottom:992.478560pt;}
.y2c2{bottom:994.560000pt;}
.y3f3{bottom:999.782560pt;}
.y38c{bottom:999.848960pt;}
.y267{bottom:1000.088320pt;}
.y84{bottom:1000.110240pt;}
.y127{bottom:1000.118880pt;}
.y21c{bottom:1000.151200pt;}
.y50{bottom:1000.154400pt;}
.y112{bottom:1005.599680pt;}
.y253{bottom:1010.400000pt;}
.y1a4{bottom:1012.960000pt;}
.y38b{bottom:1015.054560pt;}
.y3f2{bottom:1015.147520pt;}
.y266{bottom:1015.293920pt;}
.y83{bottom:1015.315840pt;}
.y126{bottom:1015.324480pt;}
.y21b{bottom:1015.356800pt;}
.y4f{bottom:1015.360000pt;}
.y111{bottom:1017.916960pt;}
.y1{bottom:1057.600000pt;}
.h21{height:15.360000pt;}
.h14{height:18.585000pt;}
.h37{height:23.113125pt;}
.h1a{height:23.585625pt;}
.h1d{height:24.184687pt;}
.h1b{height:24.480000pt;}
.h1c{height:24.640000pt;}
.h16{height:24.641333pt;}
.h29{height:26.400000pt;}
.h2b{height:26.560000pt;}
.h15{height:29.647500pt;}
.h22{height:30.240000pt;}
.h2{height:31.238750pt;}
.h2e{height:31.361333pt;}
.h2f{height:35.819688pt;}
.hb{height:35.975313pt;}
.h27{height:36.800000pt;}
.h44{height:37.479688pt;}
.h6{height:37.624687pt;}
.he{height:37.758667pt;}
.hf{height:37.760000pt;}
.hd{height:37.920000pt;}
.hc{height:38.085312pt;}
.h32{height:38.698750pt;}
.h3f{height:39.507059pt;}
.h2a{height:39.585625pt;}
.h45{height:41.475577pt;}
.h1e{height:46.080000pt;}
.h7{height:46.609688pt;}
.h41{height:46.614167pt;}
.h35{height:46.629528pt;}
.h3c{height:46.632087pt;}
.h3e{height:46.649367pt;}
.h43{height:46.651927pt;}
.h3b{height:46.711448pt;}
.h3d{height:46.731288pt;}
.h9{height:46.739375pt;}
.h38{height:46.773528pt;}
.h42{height:46.782488pt;}
.h40{height:46.919448pt;}
.h25{height:47.180312pt;}
.h46{height:47.247127pt;}
.h47{height:47.335938pt;}
.h33{height:48.359688pt;}
.h12{height:48.924055pt;}
.h28{height:48.960000pt;}
.h2d{height:49.025815pt;}
.h19{height:49.068055pt;}
.h18{height:49.127575pt;}
.h11{height:49.149975pt;}
.h17{height:49.210135pt;}
.h10{height:49.269015pt;}
.h23{height:49.393175pt;}
.h2c{height:49.418955pt;}
.h3a{height:49.456535pt;}
.h13{height:56.156250pt;}
.h8{height:56.843750pt;}
.h39{height:57.031250pt;}
.h34{height:57.489688pt;}
.h26{height:61.278667pt;}
.h5{height:61.944688pt;}
.h20{height:62.080000pt;}
.ha{height:66.507188pt;}
.h31{height:71.659688pt;}
.h1f{height:77.313047pt;}
.h4{height:85.227865pt;}
.h3{height:85.265625pt;}
.h30{height:89.319687pt;}
.h24{height:98.880000pt;}
.h36{height:256.640000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w3{width:30.880000pt;}
.w16{width:33.120000pt;}
.w13{width:33.281333pt;}
.w12{width:43.200000pt;}
.w11{width:43.840000pt;}
.we{width:62.880000pt;}
.wf{width:77.760000pt;}
.wa{width:78.080000pt;}
.wd{width:78.240000pt;}
.w8{width:80.160000pt;}
.w10{width:87.680000pt;}
.w15{width:96.800000pt;}
.wc{width:100.640000pt;}
.w9{width:106.721333pt;}
.w5{width:140.160000pt;}
.w7{width:140.640000pt;}
.wb{width:150.080000pt;}
.w6{width:167.200000pt;}
.w14{width:179.838667pt;}
.w17{width:180.000000pt;}
.w4{width:276.960000pt;}
.w2{width:308.478667pt;}
.w18{width:396.798667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x11{left:6.880000pt;}
.x32{left:35.200000pt;}
.x33{left:40.800000pt;}
.x37{left:43.200000pt;}
.x38{left:60.160000pt;}
.x39{left:65.760000pt;}
.x1{left:75.520000pt;}
.x14{left:78.400000pt;}
.xc{left:80.000000pt;}
.x19{left:83.200000pt;}
.x34{left:85.600000pt;}
.x2{left:95.040000pt;}
.x4{left:96.320000pt;}
.x47{left:99.517280pt;}
.xf{left:103.999040pt;}
.x49{left:116.960000pt;}
.x4a{left:120.320000pt;}
.x48{left:123.510560pt;}
.x9{left:129.920000pt;}
.x7{left:131.680000pt;}
.x3{left:135.685120pt;}
.x4b{left:140.320000pt;}
.x3c{left:143.729467pt;}
.x27{left:155.200000pt;}
.x28{left:162.080000pt;}
.x8{left:217.596800pt;}
.x29{left:218.720000pt;}
.x1a{left:224.000000pt;}
.x2a{left:225.600000pt;}
.x24{left:227.200000pt;}
.x1e{left:233.928000pt;}
.x3d{left:258.736133pt;}
.x3e{left:265.616133pt;}
.x16{left:267.520000pt;}
.x6{left:268.480000pt;}
.x5{left:270.720000pt;}
.xa{left:281.121280pt;}
.x2b{left:297.120000pt;}
.x2c{left:304.000000pt;}
.x1f{left:305.920000pt;}
.xb{left:312.960000pt;}
.x2d{left:341.600000pt;}
.x2e{left:348.480000pt;}
.x3f{left:387.524160pt;}
.x20{left:393.600000pt;}
.x3a{left:396.800000pt;}
.xd{left:408.170720pt;}
.x17{left:412.640000pt;}
.x1b{left:415.680000pt;}
.xe{left:427.054880pt;}
.x40{left:432.160640pt;}
.x43{left:435.040000pt;}
.x18{left:436.639040pt;}
.x12{left:440.320000pt;}
.x31{left:441.440000pt;}
.x10{left:445.915840pt;}
.x13{left:447.200000pt;}
.x41{left:456.157600pt;}
.x21{left:467.197760pt;}
.x44{left:469.280000pt;}
.x25{left:509.920000pt;}
.x26{left:516.800000pt;}
.x45{left:520.800000pt;}
.x3b{left:536.689467pt;}
.x1c{left:550.080000pt;}
.x46{left:551.840000pt;}
.x1d{left:556.960000pt;}
.x35{left:586.240000pt;}
.x22{left:611.200000pt;}
.x23{left:618.080000pt;}
.x36{left:621.280000pt;}
.x42{left:623.360000pt;}
.x15{left:679.840000pt;}
.x30{left:718.721440pt;}
.x2f{left:726.064320pt;}
}




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