
    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_fb88d9e4833c55c1123646bf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090820;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_4d93f5aee13b1b89f1a153a1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.860352;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_43d8c849042de23cd8d1734d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.103027;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_69d56bd64d6eb2e50e7f9825.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a36d6ff249bed3159b1b311a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.101074;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_b535254879f48883569d4ef4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.817871;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_93eebbeffb839bc96a265ef4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.056152;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_e4f47cf8308fd0c747037f97.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.625000;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_9fc2f5e6eed7b806034bab99.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.103027;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_80641f5b7fefc3e9d54eeec3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.090820;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_700e60bd0ea3167cd48b469a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.101074;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_75b2feeb296d935c4fca26c5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.056152;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_d05e7c881586fce9a7a79197.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b535254879f48883569d4ef4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.817871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_e1bf1888acbd478af5cf6e6e.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_a90220d47c9507e22b3848fc.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.867676;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_137ff89afa1e5f5d8b9a4c19.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.860352;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_6dbb1c339c1e4760d2f1b130.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.692871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_336aea7f5713468d902935d9.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.692871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_3de85a10c3ca56ac508a9e08.woff2')format("woff");}.ff14{font-family:ff14;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;}
.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);}
.v5{vertical-align:-21.978000px;}
.v3{vertical-align:-7.623000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.v6{vertical-align:39.000000px;}
.v4{vertical-align:42.000000px;}
.v2{vertical-align:180.000000px;}
.ls2e{letter-spacing:-7.320000px;}
.ls17{letter-spacing:-6.066000px;}
.ls16{letter-spacing:-6.060000px;}
.ls30{letter-spacing:-6.054000px;}
.ls2d{letter-spacing:-5.724000px;}
.ls2c{letter-spacing:-5.718000px;}
.ls49{letter-spacing:-4.884000px;}
.ls19{letter-spacing:-4.824000px;}
.ls2f{letter-spacing:-4.608000px;}
.ls2b{letter-spacing:-4.428000px;}
.ls18{letter-spacing:-3.744000px;}
.ls1a{letter-spacing:-3.738000px;}
.ls66{letter-spacing:-3.630000px;}
.lsc{letter-spacing:-1.776000px;}
.ls3a{letter-spacing:-1.188000px;}
.ls5a{letter-spacing:-1.122000px;}
.ls64{letter-spacing:-0.396000px;}
.ls68{letter-spacing:-0.066000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000600px;}
.ls9{letter-spacing:0.009600px;}
.lsb{letter-spacing:0.010200px;}
.ls7{letter-spacing:0.010800px;}
.ls8{letter-spacing:0.011400px;}
.ls35{letter-spacing:0.051641px;}
.ls5b{letter-spacing:0.056380px;}
.ls6{letter-spacing:0.056980px;}
.ls56{letter-spacing:0.066000px;}
.ls5c{letter-spacing:0.132000px;}
.ls48{letter-spacing:0.198000px;}
.ls38{letter-spacing:0.264000px;}
.ls39{letter-spacing:0.321000px;}
.ls1c{letter-spacing:0.330000px;}
.ls1d{letter-spacing:0.396000px;}
.ls3f{letter-spacing:0.462000px;}
.lsd{letter-spacing:0.528000px;}
.ls3e{letter-spacing:0.594000px;}
.ls34{letter-spacing:0.660000px;}
.ls63{letter-spacing:0.726000px;}
.ls5f{letter-spacing:0.792000px;}
.ls36{letter-spacing:0.858000px;}
.ls3c{letter-spacing:0.924000px;}
.ls32{letter-spacing:0.990000px;}
.ls51{letter-spacing:1.006800px;}
.ls53{letter-spacing:1.056000px;}
.ls54{letter-spacing:1.122000px;}
.ls4c{letter-spacing:1.188000px;}
.ls5d{letter-spacing:1.254000px;}
.ls45{letter-spacing:1.320000px;}
.ls50{letter-spacing:1.336200px;}
.ls67{letter-spacing:1.386000px;}
.ls47{letter-spacing:1.452000px;}
.ls37{letter-spacing:1.518000px;}
.ls3b{letter-spacing:1.535400px;}
.ls65{letter-spacing:1.584000px;}
.ls2{letter-spacing:1.680000px;}
.ls58{letter-spacing:1.848000px;}
.ls60{letter-spacing:1.980000px;}
.ls5e{letter-spacing:2.046000px;}
.ls4{letter-spacing:2.100000px;}
.ls40{letter-spacing:2.123400px;}
.ls57{letter-spacing:2.178000px;}
.ls33{letter-spacing:2.890800px;}
.ls55{letter-spacing:3.186000px;}
.ls1{letter-spacing:3.360000px;}
.ls21{letter-spacing:3.786000px;}
.ls31{letter-spacing:3.906300px;}
.ls46{letter-spacing:4.092000px;}
.ls1b{letter-spacing:4.773900px;}
.ls25{letter-spacing:5.664000px;}
.ls12{letter-spacing:6.054000px;}
.ls4f{letter-spacing:6.139200px;}
.ls2a{letter-spacing:8.910000px;}
.ls26{letter-spacing:9.414000px;}
.ls10{letter-spacing:10.980000px;}
.ls3d{letter-spacing:10.984200px;}
.ls59{letter-spacing:10.993200px;}
.ls27{letter-spacing:11.112000px;}
.ls28{letter-spacing:11.118000px;}
.ls3{letter-spacing:12.000000px;}
.ls62{letter-spacing:12.012000px;}
.ls29{letter-spacing:12.222000px;}
.ls42{letter-spacing:13.863000px;}
.ls4e{letter-spacing:14.309400px;}
.ls43{letter-spacing:14.636400px;}
.ls1e{letter-spacing:15.444000px;}
.ls4a{letter-spacing:16.017600px;}
.ls15{letter-spacing:16.499400px;}
.ls44{letter-spacing:18.742800px;}
.ls5{letter-spacing:19.680000px;}
.ls52{letter-spacing:19.870800px;}
.ls61{letter-spacing:20.241600px;}
.ls14{letter-spacing:22.218000px;}
.ls13{letter-spacing:22.230000px;}
.ls1f{letter-spacing:24.156000px;}
.ls20{letter-spacing:24.528000px;}
.ls11{letter-spacing:25.506000px;}
.ls22{letter-spacing:35.201982px;}
.ls24{letter-spacing:35.238000px;}
.ls23{letter-spacing:35.244000px;}
.ls41{letter-spacing:37.948200px;}
.lsf{letter-spacing:41.646000px;}
.lse{letter-spacing:46.272000px;}
.ls4d{letter-spacing:73.953000px;}
.ls4b{letter-spacing:120.370200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws38{word-spacing:-84.464550px;}
.wsd{word-spacing:-78.000000px;}
.ws40{word-spacing:-66.264000px;}
.ws25{word-spacing:-66.000000px;}
.ws4{word-spacing:-60.000000px;}
.ws8c{word-spacing:-54.780000px;}
.ws52{word-spacing:-54.450000px;}
.ws3f{word-spacing:-54.186000px;}
.ws49{word-spacing:-52.998000px;}
.ws58{word-spacing:-51.942000px;}
.ws5f{word-spacing:-51.348000px;}
.ws4c{word-spacing:-50.292000px;}
.ws46{word-spacing:-50.146800px;}
.ws6f{word-spacing:-49.170000px;}
.ws57{word-spacing:-48.378000px;}
.ws8{word-spacing:-48.000000px;}
.ws7e{word-spacing:-47.982000px;}
.ws61{word-spacing:-43.230000px;}
.ws7f{word-spacing:-40.128000px;}
.ws50{word-spacing:-38.742000px;}
.ws3{word-spacing:-33.000000px;}
.ws54{word-spacing:-32.287200px;}
.ws3e{word-spacing:-32.208000px;}
.ws6b{word-spacing:-27.360000px;}
.wsf{word-spacing:-19.680000px;}
.ws67{word-spacing:-18.348000px;}
.ws59{word-spacing:-17.820000px;}
.ws5e{word-spacing:-17.688000px;}
.ws8d{word-spacing:-17.424000px;}
.ws82{word-spacing:-17.292000px;}
.ws85{word-spacing:-17.226000px;}
.ws9{word-spacing:-17.100000px;}
.ws55{word-spacing:-16.962000px;}
.ws26{word-spacing:-16.896000px;}
.ws23{word-spacing:-16.830000px;}
.ws5d{word-spacing:-16.698000px;}
.ws81{word-spacing:-16.566000px;}
.ws1{word-spacing:-16.500000px;}
.ws10{word-spacing:-15.000000px;}
.ws3a{word-spacing:-13.500000px;}
.ws7{word-spacing:-12.000000px;}
.ws5c{word-spacing:-11.616000px;}
.ws62{word-spacing:-10.224000px;}
.wse{word-spacing:-9.619500px;}
.ws5a{word-spacing:-4.092000px;}
.ws78{word-spacing:-3.894000px;}
.ws2{word-spacing:-3.360000px;}
.ws7a{word-spacing:-2.772000px;}
.ws60{word-spacing:-2.640000px;}
.ws66{word-spacing:-2.178000px;}
.ws74{word-spacing:-2.046000px;}
.ws7d{word-spacing:-1.980000px;}
.ws68{word-spacing:-1.848000px;}
.ws5{word-spacing:-1.680000px;}
.ws6a{word-spacing:-1.584000px;}
.ws3d{word-spacing:-1.518000px;}
.ws5b{word-spacing:-1.452000px;}
.ws8b{word-spacing:-1.386000px;}
.ws69{word-spacing:-1.320000px;}
.ws6e{word-spacing:-1.254000px;}
.ws64{word-spacing:-1.122000px;}
.ws63{word-spacing:-1.056000px;}
.ws36{word-spacing:-0.990000px;}
.ws43{word-spacing:-0.924000px;}
.ws3c{word-spacing:-0.858000px;}
.ws75{word-spacing:-0.792000px;}
.ws80{word-spacing:-0.726000px;}
.ws39{word-spacing:-0.660000px;}
.ws44{word-spacing:-0.594000px;}
.ws2a{word-spacing:-0.570000px;}
.ws13{word-spacing:-0.528000px;}
.ws22{word-spacing:-0.480000px;}
.ws56{word-spacing:-0.462000px;}
.ws29{word-spacing:-0.444000px;}
.ws27{word-spacing:-0.396000px;}
.ws21{word-spacing:-0.378000px;}
.ws24{word-spacing:-0.330000px;}
.ws42{word-spacing:-0.264000px;}
.ws84{word-spacing:-0.198000px;}
.ws6d{word-spacing:-0.132000px;}
.ws65{word-spacing:-0.066000px;}
.ws4d{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.ws8e{word-spacing:0.066000px;}
.ws2e{word-spacing:0.378000px;}
.ws83{word-spacing:0.396000px;}
.ws30{word-spacing:0.564000px;}
.ws1e{word-spacing:0.606000px;}
.ws34{word-spacing:0.888000px;}
.ws31{word-spacing:0.942000px;}
.ws32{word-spacing:1.110000px;}
.ws6c{word-spacing:1.122000px;}
.ws41{word-spacing:1.188000px;}
.ws33{word-spacing:1.218000px;}
.ws2b{word-spacing:1.542000px;}
.ws12{word-spacing:1.776000px;}
.ws1f{word-spacing:2.214000px;}
.ws20{word-spacing:2.220000px;}
.ws2c{word-spacing:2.412000px;}
.ws2d{word-spacing:2.454000px;}
.ws1d{word-spacing:2.550000px;}
.ws2f{word-spacing:3.522000px;}
.ws87{word-spacing:3.630000px;}
.ws7b{word-spacing:4.158000px;}
.ws76{word-spacing:4.488000px;}
.ws1c{word-spacing:4.626000px;}
.ws86{word-spacing:4.884000px;}
.ws28{word-spacing:7.118430px;}
.ws4e{word-spacing:7.398000px;}
.ws88{word-spacing:8.066400px;}
.ws70{word-spacing:8.080200px;}
.ws72{word-spacing:10.005000px;}
.ws35{word-spacing:10.273626px;}
.ws51{word-spacing:10.444200px;}
.ws47{word-spacing:11.212800px;}
.ws48{word-spacing:11.788800px;}
.wsa{word-spacing:12.000000px;}
.ws4b{word-spacing:14.203800px;}
.ws45{word-spacing:14.437200px;}
.ws11{word-spacing:14.939400px;}
.ws89{word-spacing:16.440600px;}
.ws7c{word-spacing:19.800000px;}
.ws4f{word-spacing:24.746400px;}
.ws73{word-spacing:26.494800px;}
.ws71{word-spacing:26.896800px;}
.ws4a{word-spacing:28.675800px;}
.ws8a{word-spacing:28.972800px;}
.ws79{word-spacing:29.634000px;}
.ws77{word-spacing:30.426000px;}
.ws53{word-spacing:30.622200px;}
.ws37{word-spacing:30.624000px;}
.ws18{word-spacing:64.140000px;}
.ws14{word-spacing:89.040000px;}
.ws16{word-spacing:165.840000px;}
.ws1b{word-spacing:174.060000px;}
.ws19{word-spacing:177.420000px;}
.ws1a{word-spacing:180.780000px;}
.wsc{word-spacing:189.720000px;}
.ws3b{word-spacing:249.192600px;}
.ws15{word-spacing:269.160000px;}
.ws17{word-spacing:291.960000px;}
.wsb{word-spacing:457.512000px;}
.ws6{word-spacing:459.000000px;}
._19{margin-left:-431.999400px;}
._29{margin-left:-189.720000px;}
._71{margin-left:-16.065000px;}
._3{margin-left:-14.289600px;}
._21{margin-left:-12.858600px;}
._53{margin-left:-11.478600px;}
._2c{margin-left:-9.892200px;}
._0{margin-left:-8.611200px;}
._5{margin-left:-7.026000px;}
._2{margin-left:-5.662800px;}
._6{margin-left:-3.946200px;}
._1{margin-left:-2.808000px;}
._4{margin-left:-1.683000px;}
._d{width:1.016400px;}
._14{width:2.488200px;}
._c{width:4.243800px;}
._13{width:5.293200px;}
._2b{width:6.454800px;}
._7{width:7.464600px;}
._b{width:8.507400px;}
._44{width:9.516000px;}
._12{width:10.533600px;}
._8{width:11.906400px;}
._e{width:13.523400px;}
._f{width:14.718000px;}
._58{width:16.303800px;}
._2d{width:17.674800px;}
._a{width:18.777000px;}
._10{width:20.314800px;}
._11{width:21.945000px;}
._54{width:22.961400px;}
._9{width:23.997600px;}
._40{width:25.205400px;}
._2e{width:26.657400px;}
._3f{width:27.660600px;}
._3e{width:28.739400px;}
._45{width:29.760600px;}
._2a{width:31.719600px;}
._4b{width:32.850000px;}
._48{width:34.828200px;}
._42{width:36.597000px;}
._4c{width:37.719000px;}
._4e{width:39.190800px;}
._49{width:40.306200px;}
._43{width:41.943000px;}
._62{width:43.170600px;}
._3c{width:44.226600px;}
._47{width:45.764400px;}
._4a{width:46.833600px;}
._64{width:47.978400px;}
._41{width:48.978600px;}
._3d{width:50.160000px;}
._51{width:51.296430px;}
._5a{width:52.569000px;}
._5d{width:53.658000px;}
._4d{width:54.720600px;}
._52{width:55.756818px;}
._56{width:56.819400px;}
._3b{width:58.020600px;}
._63{width:59.650800px;}
._59{width:60.891600px;}
._5c{width:62.132400px;}
._46{width:63.940800px;}
._22{width:66.009000px;}
._50{width:67.940400px;}
._5b{width:69.425400px;}
._72{width:73.444800px;}
._61{width:74.817600px;}
._82{width:76.104600px;}
._4f{width:85.506000px;}
._5e{width:89.320800px;}
._55{width:90.684000px;}
._57{width:111.114000px;}
._70{width:116.094000px;}
._6b{width:146.160600px;}
._35{width:149.120400px;}
._3a{width:152.269800px;}
._2f{width:157.530000px;}
._80{width:160.848000px;}
._77{width:171.870000px;}
._76{width:179.512200px;}
._79{width:182.892000px;}
._7f{width:186.522000px;}
._75{width:191.362800px;}
._6c{width:197.569800px;}
._68{width:201.780000px;}
._37{width:205.830000px;}
._5f{width:206.850600px;}
._7e{width:208.500000px;}
._60{width:211.206600px;}
._81{width:214.162800px;}
._38{width:220.489800px;}
._32{width:223.849800px;}
._7a{width:230.544000px;}
._73{width:237.870000px;}
._78{width:241.500000px;}
._7c{width:245.130000px;}
._7b{width:258.960000px;}
._69{width:260.929800px;}
._6f{width:272.109000px;}
._39{width:280.549800px;}
._74{width:281.826000px;}
._1c{width:297.012000px;}
._65{width:300.949800px;}
._7d{width:306.820200px;}
._20{width:335.063400px;}
._66{width:350.220000px;}
._67{width:359.400600px;}
._33{width:375.529800px;}
._16{width:442.785000px;}
._6d{width:455.160000px;}
._36{width:479.977800px;}
._34{width:508.849800px;}
._6e{width:512.509800px;}
._6a{width:525.120000px;}
._31{width:545.569800px;}
._18{width:552.420000px;}
._30{width:562.129800px;}
._1e{width:583.579800px;}
._1f{width:645.753600px;}
._26{width:691.711800px;}
._28{width:698.445600px;}
._17{width:774.470400px;}
._1d{width:840.849000px;}
._27{width:908.880000px;}
._23{width:942.114000px;}
._1b{width:984.990600px;}
._1a{width:1046.245800px;}
._24{width:1083.900000px;}
._25{width:1186.080000px;}
._15{width:1333.819200px;}
.fc2{color:rgb(90,87,88);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:38.478000px;}
.fs3{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs6{font-size:78.000000px;}
.fsa{font-size:84.000000px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.fs0{font-size:156.000000px;}
.fs8{font-size:337.858200px;}
.y0{bottom:0.000000px;}
.y1d{bottom:66.708300px;}
.y674{bottom:67.332000px;}
.y4ca{bottom:70.332000px;}
.y64a{bottom:72.097800px;}
.y2df{bottom:74.232000px;}
.y5b7{bottom:76.332000px;}
.y4e1{bottom:78.732000px;}
.y349{bottom:79.315950px;}
.y41c{bottom:79.332000px;}
.y505{bottom:80.194650px;}
.y514{bottom:80.722350px;}
.y497{bottom:80.832000px;}
.y3a8{bottom:82.597800px;}
.y23a{bottom:83.664000px;}
.y224{bottom:83.724000px;}
.y3aa{bottom:83.832000px;}
.y40c{bottom:84.466350px;}
.y59a{bottom:85.332000px;}
.y64b{bottom:85.597800px;}
.y323{bottom:87.097800px;}
.y47e{bottom:88.332000px;}
.y467{bottom:89.832000px;}
.y368{bottom:90.097800px;}
.y255{bottom:91.018500px;}
.y549{bottom:91.707000px;}
.y12e{bottom:92.832000px;}
.y530{bottom:93.247500px;}
.y57d{bottom:93.403800px;}
.y1a8{bottom:93.547500px;}
.y4a7{bottom:94.018500px;}
.y37a{bottom:94.597800px;}
.y442{bottom:94.918500px;}
.y624{bottom:95.518500px;}
.y494{bottom:95.832000px;}
.y5f4{bottom:96.097800px;}
.y2de{bottom:96.732000px;}
.y194{bottom:97.804800px;}
.y6{bottom:98.102400px;}
.y108{bottom:98.617650px;}
.y3d5{bottom:98.832000px;}
.y295{bottom:99.097800px;}
.y5c7{bottom:99.732000px;}
.y2be{bottom:100.332000px;}
.y4e0{bottom:101.232000px;}
.y4e2{bottom:101.610600px;}
.y23b{bottom:101.616000px;}
.y348{bottom:101.815950px;}
.y12a{bottom:101.832000px;}
.y562{bottom:102.418500px;}
.y504{bottom:102.694650px;}
.y152{bottom:102.916500px;}
.y616{bottom:103.018500px;}
.y513{bottom:103.222350px;}
.y396{bottom:103.332000px;}
.y5b5{bottom:103.632000px;}
.y5a{bottom:104.518500px;}
.y632{bottom:104.832000px;}
.y3a7{bottom:105.097800px;}
.y239{bottom:106.170000px;}
.y223{bottom:106.230000px;}
.y26f{bottom:106.332000px;}
.y28b{bottom:106.663650px;}
.y40b{bottom:106.966350px;}
.y4f7{bottom:107.572500px;}
.y429{bottom:107.832000px;}
.y115{bottom:108.097800px;}
.y54f{bottom:108.357000px;}
.y41b{bottom:109.018500px;}
.y470{bottom:109.332000px;}
.y322{bottom:109.597800px;}
.y47d{bottom:110.832000px;}
.y209{bottom:111.097500px;}
.y450{bottom:111.097800px;}
.y176{bottom:111.537450px;}
.y466{bottom:112.332000px;}
.y367{bottom:112.597800px;}
.y254{bottom:113.518500px;}
.y66f{bottom:114.097800px;}
.y548{bottom:114.207000px;}
.y2a9{bottom:115.018500px;}
.y12d{bottom:115.332000px;}
.y52f{bottom:115.747500px;}
.y57c{bottom:115.903800px;}
.y1a7{bottom:116.053500px;}
.y1b8{bottom:116.230500px;}
.y4a6{bottom:116.518500px;}
.yf5{bottom:116.744700px;}
.y1e7{bottom:117.031800px;}
.y379{bottom:117.097800px;}
.y441{bottom:117.418500px;}
.y60d{bottom:118.018500px;}
.y493{bottom:118.332000px;}
.y5f3{bottom:118.597800px;}
.y598{bottom:118.918500px;}
.y2dd{bottom:119.232000px;}
.y193{bottom:120.310800px;}
.y107{bottom:121.117650px;}
.y3d4{bottom:121.332000px;}
.y294{bottom:121.597800px;}
.y5c6{bottom:122.232000px;}
.y2bd{bottom:122.832000px;}
.y4df{bottom:123.732000px;}
.y1c6{bottom:124.122000px;}
.y347{bottom:124.315950px;}
.y129{bottom:124.332000px;}
.y649{bottom:124.597800px;}
.y561{bottom:124.918500px;}
.y503{bottom:125.194650px;}
.y151{bottom:125.422500px;}
.y615{bottom:125.518500px;}
.y512{bottom:125.722350px;}
.y395{bottom:125.832000px;}
.y5b4{bottom:126.132000px;}
.y289{bottom:126.163650px;}
.y488{bottom:126.418500px;}
.y631{bottom:127.332000px;}
.y238{bottom:128.676000px;}
.y222{bottom:128.736000px;}
.y26e{bottom:128.832000px;}
.y40a{bottom:129.466350px;}
.y59{bottom:130.018500px;}
.y428{bottom:130.332000px;}
.y114{bottom:130.597800px;}
.y54e{bottom:130.857000px;}
.y41a{bottom:131.518500px;}
.y46f{bottom:131.832000px;}
.y8a{bottom:132.272100px;}
.y3c6{bottom:132.418500px;}
.y47c{bottom:133.332000px;}
.y208{bottom:133.597500px;}
.y44f{bottom:133.597800px;}
.y175{bottom:134.043450px;}
.y465{bottom:134.832000px;}
.y3a6{bottom:135.097800px;}
.y66e{bottom:136.597800px;}
.y547{bottom:136.707000px;}
.y2a8{bottom:137.518500px;}
.y12c{bottom:137.832000px;}
.y52e{bottom:138.247500px;}
.y57b{bottom:138.403800px;}
.y1a6{bottom:138.559500px;}
.y5d9{bottom:138.732000px;}
.y1b7{bottom:138.736500px;}
.y4a5{bottom:139.018500px;}
.yf4{bottom:139.244700px;}
.y1e6{bottom:139.537800px;}
.y321{bottom:139.597800px;}
.y440{bottom:139.918500px;}
.y669{bottom:139.966350px;}
.y60c{bottom:140.518500px;}
.y492{bottom:140.832000px;}
.y597{bottom:141.418500px;}
.y192{bottom:142.816800px;}
.y253{bottom:143.518500px;}
.y106{bottom:143.617650px;}
.y3d3{bottom:143.832000px;}
.y366{bottom:144.097800px;}
.y12f{bottom:145.332000px;}
.y28a{bottom:145.663650px;}
.y4de{bottom:146.232000px;}
.y1c5{bottom:146.628000px;}
.y346{bottom:146.815950px;}
.y128{bottom:146.832000px;}
.y560{bottom:147.418500px;}
.y502{bottom:147.694650px;}
.y150{bottom:147.928500px;}
.y614{bottom:148.018500px;}
.y511{bottom:148.222350px;}
.y394{bottom:148.332000px;}
.y5f2{bottom:148.597800px;}
.y5b3{bottom:148.632000px;}
.y35e{bottom:148.918500px;}
.y2dc{bottom:149.232000px;}
.y630{bottom:149.832000px;}
.y58{bottom:151.018500px;}
.y237{bottom:151.182000px;}
.y221{bottom:151.242000px;}
.y26d{bottom:151.332000px;}
.y293{bottom:151.597800px;}
.y409{bottom:151.966350px;}
.y5c5{bottom:152.232000px;}
.y427{bottom:152.832000px;}
.y113{bottom:153.097800px;}
.y54d{bottom:153.357000px;}
.y419{bottom:154.018500px;}
.y486{bottom:154.332000px;}
.y89{bottom:154.772100px;}
.y3c5{bottom:154.918500px;}
.y47b{bottom:155.832000px;}
.y207{bottom:156.097500px;}
.y44e{bottom:156.097800px;}
.y174{bottom:156.549450px;}
.y464{bottom:157.332000px;}
.y618{bottom:158.832000px;}
.y66d{bottom:159.097800px;}
.y546{bottom:159.207000px;}
.y2a7{bottom:160.018500px;}
.y136{bottom:160.332000px;}
.y52d{bottom:160.747350px;}
.y57a{bottom:160.903950px;}
.y1a5{bottom:161.065500px;}
.yd0{bottom:161.140950px;}
.y5d8{bottom:161.232000px;}
.y64f{bottom:161.518500px;}
.yf3{bottom:161.744700px;}
.y46e{bottom:161.832000px;}
.y1e5{bottom:162.043800px;}
.y378{bottom:162.097800px;}
.y43f{bottom:162.418500px;}
.y668{bottom:162.466350px;}
.y60b{bottom:163.018500px;}
.y491{bottom:163.332000px;}
.y596{bottom:163.918500px;}
.y47f{bottom:164.832000px;}
.y648{bottom:165.097800px;}
.y191{bottom:165.322800px;}
.y105{bottom:166.117650px;}
.y3d2{bottom:166.332000px;}
.y365{bottom:166.597800px;}
.y286{bottom:167.023950px;}
.y1c{bottom:167.478750px;}
.y12b{bottom:167.832000px;}
.y4dd{bottom:168.732000px;}
.y4a4{bottom:169.018500px;}
.y1c4{bottom:169.134000px;}
.y345{bottom:169.315950px;}
.y127{bottom:169.332000px;}
.y55f{bottom:169.918500px;}
.y501{bottom:170.194650px;}
.y14f{bottom:170.434500px;}
.y613{bottom:170.518500px;}
.y510{bottom:170.722350px;}
.y393{bottom:170.832000px;}
.y5b2{bottom:171.132000px;}
.y35d{bottom:171.418500px;}
.y62f{bottom:172.332000px;}
.y236{bottom:173.688000px;}
.y220{bottom:173.748000px;}
.y26c{bottom:173.832000px;}
.y408{bottom:174.466350px;}
.y426{bottom:175.332000px;}
.y112{bottom:175.597800px;}
.y54c{bottom:175.857000px;}
.y57{bottom:176.518500px;}
.y288{bottom:176.773950px;}
.y4bc{bottom:176.832000px;}
.y88{bottom:177.272100px;}
.y3c4{bottom:177.418500px;}
.y47a{bottom:178.332000px;}
.y206{bottom:178.597500px;}
.y44d{bottom:178.597800px;}
.y173{bottom:179.055450px;}
.y463{bottom:179.832000px;}
.y66c{bottom:181.597800px;}
.y545{bottom:181.707000px;}
.ycf{bottom:182.140950px;}
.y2a6{bottom:182.518500px;}
.y135{bottom:182.832000px;}
.y52c{bottom:183.247350px;}
.y579{bottom:183.403950px;}
.y1a4{bottom:183.571500px;}
.y1b6{bottom:183.732000px;}
.y252{bottom:184.018500px;}
.yf2{bottom:184.244700px;}
.y485{bottom:184.332000px;}
.y1e4{bottom:184.549800px;}
.y377{bottom:184.597800px;}
.y43e{bottom:184.918500px;}
.y667{bottom:184.966350px;}
.y60a{bottom:185.518500px;}
.y490{bottom:185.832000px;}
.y320{bottom:186.097800px;}
.y595{bottom:186.418500px;}
.y285{bottom:186.523950px;}
.y57f{bottom:187.332000px;}
.y647{bottom:187.597800px;}
.y190{bottom:187.828800px;}
.y104{bottom:188.617650px;}
.y3d1{bottom:188.832000px;}
.y364{bottom:189.097800px;}
.y2db{bottom:189.732000px;}
.y1b{bottom:189.978750px;}
.y2bc{bottom:190.332000px;}
.y4dc{bottom:191.232000px;}
.y1c3{bottom:191.640000px;}
.y344{bottom:191.815950px;}
.y126{bottom:191.832000px;}
.y55e{bottom:192.418500px;}
.y500{bottom:192.694650px;}
.y5c4{bottom:192.732000px;}
.y14e{bottom:192.940500px;}
.y612{bottom:193.018500px;}
.y50f{bottom:193.222350px;}
.y392{bottom:193.332000px;}
.y5b1{bottom:193.632000px;}
.y35c{bottom:193.918500px;}
.y62e{bottom:194.832000px;}
.y235{bottom:196.194000px;}
.y21f{bottom:196.254000px;}
.y287{bottom:196.273950px;}
.y26b{bottom:196.332000px;}
.y407{bottom:196.966350px;}
.y425{bottom:197.832000px;}
.y111{bottom:198.097800px;}
.y418{bottom:199.018500px;}
.y87{bottom:199.772100px;}
.y3c3{bottom:199.918500px;}
.y479{bottom:200.832000px;}
.y205{bottom:201.097500px;}
.y44c{bottom:201.097800px;}
.y172{bottom:201.561450px;}
.y56{bottom:202.018500px;}
.y462{bottom:202.332000px;}
.yce{bottom:203.140950px;}
.y66b{bottom:204.097800px;}
.y544{bottom:204.207000px;}
.y3c{bottom:205.018500px;}
.ycc{bottom:205.046700px;}
.y134{bottom:205.332000px;}
.y52b{bottom:205.747350px;}
.y578{bottom:205.903950px;}
.y284{bottom:206.023950px;}
.y1a3{bottom:206.077500px;}
.y1b5{bottom:206.232000px;}
.y251{bottom:206.518500px;}
.yf1{bottom:206.744700px;}
.y1e3{bottom:207.055800px;}
.y376{bottom:207.097800px;}
.y43d{bottom:207.418500px;}
.y666{bottom:207.466350px;}
.y609{bottom:208.018500px;}
.y307{bottom:208.332000px;}
.y31f{bottom:208.597800px;}
.y594{bottom:208.918500px;}
.y646{bottom:210.097800px;}
.y18f{bottom:210.334800px;}
.y3d0{bottom:211.332000px;}
.y363{bottom:211.597800px;}
.y2da{bottom:212.232000px;}
.y1a{bottom:212.478750px;}
.y2bb{bottom:212.832000px;}
.y4db{bottom:213.732000px;}
.y1c2{bottom:214.146000px;}
.y343{bottom:214.315950px;}
.y125{bottom:214.332000px;}
.y55d{bottom:214.918500px;}
.y4ff{bottom:215.194650px;}
.y5c3{bottom:215.232000px;}
.y14d{bottom:215.446500px;}
.y4a3{bottom:215.518500px;}
.y50e{bottom:215.722350px;}
.y391{bottom:215.832000px;}
.y5b0{bottom:216.132000px;}
.y54b{bottom:216.357000px;}
.y35b{bottom:216.418500px;}
.y4bb{bottom:217.332000px;}
.y5f1{bottom:217.597800px;}
.y234{bottom:218.700000px;}
.y21e{bottom:218.760000px;}
.y26a{bottom:218.832000px;}
.y45b{bottom:219.097800px;}
.y406{bottom:219.466350px;}
.y424{bottom:220.332000px;}
.y110{bottom:220.597800px;}
.y417{bottom:221.518500px;}
.y86{bottom:222.272100px;}
.y3c2{bottom:222.418500px;}
.y478{bottom:223.332000px;}
.y204{bottom:223.597500px;}
.y44b{bottom:223.597800px;}
.y171{bottom:224.067450px;}
.ycd{bottom:224.140950px;}
.y461{bottom:224.832000px;}
.ycb{bottom:226.046700px;}
.y487{bottom:226.332000px;}
.y46b{bottom:226.597800px;}
.y543{bottom:226.707000px;}
.y283{bottom:227.384400px;}
.y3b{bottom:227.518500px;}
.y133{bottom:227.832000px;}
.y1b9{bottom:228.097800px;}
.y52a{bottom:228.247350px;}
.y1a2{bottom:228.583500px;}
.y1b4{bottom:228.732000px;}
.y250{bottom:229.018500px;}
.yf0{bottom:229.244700px;}
.y1e2{bottom:229.561800px;}
.ya9{bottom:229.597800px;}
.y43c{bottom:229.918500px;}
.y665{bottom:229.966350px;}
.y608{bottom:230.518500px;}
.y306{bottom:230.832000px;}
.y31e{bottom:231.097800px;}
.y593{bottom:231.418500px;}
.y645{bottom:232.597800px;}
.y18e{bottom:232.840800px;}
.y3cf{bottom:233.832000px;}
.y362{bottom:234.097800px;}
.y2d9{bottom:234.732000px;}
.y19{bottom:234.978750px;}
.y3e8{bottom:235.332000px;}
.y4da{bottom:236.232000px;}
.y1c1{bottom:236.652000px;}
.y342{bottom:236.815950px;}
.y124{bottom:236.832000px;}
.y27f{bottom:237.134400px;}
.y55c{bottom:237.418500px;}
.y4fe{bottom:237.694650px;}
.y5c2{bottom:237.732000px;}
.y14c{bottom:237.952500px;}
.y4a2{bottom:238.018500px;}
.y50d{bottom:238.222350px;}
.y390{bottom:238.332000px;}
.y54a{bottom:238.857000px;}
.y35a{bottom:238.918500px;}
.y4ba{bottom:239.832000px;}
.y5f0{bottom:240.097800px;}
.y233{bottom:241.206000px;}
.y21d{bottom:241.266000px;}
.y269{bottom:241.332000px;}
.y405{bottom:241.966350px;}
.y2ba{bottom:242.832000px;}
.y10f{bottom:243.097800px;}
.y416{bottom:244.018500px;}
.y85{bottom:244.772100px;}
.y3c0{bottom:244.918500px;}
.y477{bottom:245.832000px;}
.y203{bottom:246.097500px;}
.y5f7{bottom:246.097800px;}
.y170{bottom:246.573450px;}
.y281{bottom:246.884400px;}
.y460{bottom:247.332000px;}
.yca{bottom:248.446950px;}
.y552{bottom:248.832000px;}
.y46a{bottom:249.097800px;}
.y542{bottom:249.207000px;}
.y3a{bottom:250.018500px;}
.y132{bottom:250.332000px;}
.y4c4{bottom:250.597800px;}
.y529{bottom:250.747350px;}
.y577{bottom:250.903950px;}
.y1a1{bottom:251.089500px;}
.y1b3{bottom:251.232000px;}
.y24f{bottom:251.518500px;}
.yef{bottom:251.744700px;}
.y1e1{bottom:252.067800px;}
.ya8{bottom:252.097800px;}
.y43b{bottom:252.418500px;}
.y664{bottom:252.466350px;}
.y55{bottom:253.018500px;}
.y305{bottom:253.332000px;}
.y31d{bottom:253.597800px;}
.y592{bottom:253.918500px;}
.y644{bottom:255.097800px;}
.y18d{bottom:255.346800px;}
.y3ce{bottom:256.332000px;}
.y361{bottom:256.597800px;}
.y27e{bottom:256.634400px;}
.y2d8{bottom:257.232000px;}
.y3e7{bottom:257.832000px;}
.y4d9{bottom:258.732000px;}
.y64e{bottom:259.018500px;}
.y1c0{bottom:259.158000px;}
.y341{bottom:259.315950px;}
.y123{bottom:259.332000px;}
.y45a{bottom:259.597800px;}
.y55a{bottom:259.918500px;}
.y4fd{bottom:260.194650px;}
.y5c1{bottom:260.232000px;}
.y14b{bottom:260.458500px;}
.y4a1{bottom:260.518500px;}
.y50c{bottom:260.722350px;}
.y5af{bottom:261.132000px;}
.y359{bottom:261.418500px;}
.y4b9{bottom:262.332000px;}
.y5ef{bottom:262.597800px;}
.y21c{bottom:263.772000px;}
.y268{bottom:263.832000px;}
.y404{bottom:264.466350px;}
.y423{bottom:265.332000px;}
.y10e{bottom:265.597800px;}
.y280{bottom:266.384400px;}
.y415{bottom:266.518500px;}
.y84{bottom:267.272100px;}
.y3c1{bottom:267.418500px;}
.y38f{bottom:268.332000px;}
.y16f{bottom:269.079450px;}
.yc9{bottom:269.446950px;}
.y45f{bottom:269.832000px;}
.y232{bottom:271.203000px;}
.y3a9{bottom:271.332000px;}
.yc8{bottom:271.352700px;}
.y469{bottom:271.597800px;}
.y541{bottom:271.707000px;}
.y39{bottom:272.518500px;}
.y131{bottom:272.832000px;}
.y5ff{bottom:273.097800px;}
.y528{bottom:273.247350px;}
.y576{bottom:273.403950px;}
.y1a0{bottom:273.595500px;}
.y5d7{bottom:273.732000px;}
.y24e{bottom:274.018500px;}
.yee{bottom:274.244700px;}
.y1e0{bottom:274.573800px;}
.ya7{bottom:274.597800px;}
.y43a{bottom:274.918500px;}
.y663{bottom:274.966350px;}
.y5cd{bottom:275.518500px;}
.y304{bottom:275.832000px;}
.y202{bottom:276.097500px;}
.y31c{bottom:276.097800px;}
.y27d{bottom:276.134400px;}
.y591{bottom:276.418500px;}
.y643{bottom:277.597800px;}
.y54{bottom:278.518500px;}
.y3cd{bottom:278.832000px;}
.y2d7{bottom:279.732000px;}
.y48b{bottom:280.332000px;}
.y4d8{bottom:281.232000px;}
.y2a5{bottom:281.518500px;}
.y1bf{bottom:281.664000px;}
.y340{bottom:281.815950px;}
.y122{bottom:281.832000px;}
.y55b{bottom:282.418500px;}
.y4fc{bottom:282.694650px;}
.y5c0{bottom:282.732000px;}
.y14a{bottom:282.964500px;}
.y4a0{bottom:283.018500px;}
.y50b{bottom:283.222350px;}
.y5ae{bottom:283.632000px;}
.y358{bottom:283.918500px;}
.y4f6{bottom:284.122350px;}
.y4b8{bottom:284.832000px;}
.y5ee{bottom:285.097800px;}
.y282{bottom:285.884400px;}
.y21b{bottom:286.278000px;}
.y267{bottom:286.332000px;}
.y403{bottom:286.966350px;}
.y3e6{bottom:287.832000px;}
.y10d{bottom:288.097800px;}
.y413{bottom:289.018500px;}
.y2b9{bottom:289.332000px;}
.y459{bottom:289.597800px;}
.y83{bottom:289.772100px;}
.y476{bottom:290.832000px;}
.y16e{bottom:291.585450px;}
.y45e{bottom:292.332000px;}
.yc7{bottom:292.352700px;}
.y44a{bottom:294.097800px;}
.y540{bottom:294.207000px;}
.y38{bottom:295.018500px;}
.y1b2{bottom:295.194000px;}
.y2ef{bottom:295.332000px;}
.y527{bottom:295.747350px;}
.y575{bottom:295.903950px;}
.y19f{bottom:296.101500px;}
.y5d6{bottom:296.232000px;}
.y24d{bottom:296.518500px;}
.yed{bottom:296.744700px;}
.y1df{bottom:297.079800px;}
.ya6{bottom:297.097800px;}
.y439{bottom:297.418500px;}
.y662{bottom:297.466350px;}
.y5cc{bottom:298.018500px;}
.y303{bottom:298.332000px;}
.y31b{bottom:298.597800px;}
.y590{bottom:298.918500px;}
.y642{bottom:300.097800px;}
.y18c{bottom:300.930750px;}
.y3cc{bottom:301.332000px;}
.y2d6{bottom:302.232000px;}
.y130{bottom:302.832000px;}
.y4d7{bottom:303.732000px;}
.y53{bottom:304.018500px;}
.y1be{bottom:304.170000px;}
.y33f{bottom:304.315950px;}
.y121{bottom:304.332000px;}
.y4fb{bottom:305.194650px;}
.y5bf{bottom:305.232000px;}
.y149{bottom:305.470500px;}
.y49f{bottom:305.518500px;}
.y50a{bottom:305.722350px;}
.y5ad{bottom:306.132000px;}
.y357{bottom:306.418500px;}
.y4f5{bottom:306.622350px;}
.y623{bottom:307.018500px;}
.y279{bottom:307.244700px;}
.y4b7{bottom:307.332000px;}
.y5ed{bottom:307.597800px;}
.y21a{bottom:308.784000px;}
.y266{bottom:308.832000px;}
.y402{bottom:309.466350px;}
.y422{bottom:310.332000px;}
.y10c{bottom:310.597800px;}
.y414{bottom:311.518500px;}
.y18b{bottom:311.550750px;}
.y2b8{bottom:311.832000px;}
.y81{bottom:312.272100px;}
.y475{bottom:313.332000px;}
.y16d{bottom:314.091450px;}
.yc6{bottom:314.753100px;}
.y38e{bottom:314.832000px;}
.y201{bottom:316.597500px;}
.y449{bottom:316.597800px;}
.y53f{bottom:316.707000px;}
.y37{bottom:317.518500px;}
.y1b1{bottom:317.700000px;}
.y2ee{bottom:317.832000px;}
.y526{bottom:318.247350px;}
.y574{bottom:318.403950px;}
.y19e{bottom:318.607500px;}
.y5d5{bottom:318.732000px;}
.y24c{bottom:319.018500px;}
.yec{bottom:319.244700px;}
.y1de{bottom:319.585800px;}
.ya5{bottom:319.597800px;}
.y3bf{bottom:319.918500px;}
.y661{bottom:319.966350px;}
.y607{bottom:320.518500px;}
.y302{bottom:320.832000px;}
.y31a{bottom:321.097800px;}
.y58f{bottom:321.418500px;}
.y57e{bottom:322.332000px;}
.y641{bottom:322.597800px;}
.y3cb{bottom:323.832000px;}
.y2d5{bottom:324.732000px;}
.y52{bottom:325.018500px;}
.y673{bottom:325.332000px;}
.y5cb{bottom:326.013000px;}
.y4d6{bottom:326.232000px;}
.y2a4{bottom:326.518500px;}
.y1bd{bottom:326.676000px;}
.y277{bottom:326.744700px;}
.y33e{bottom:326.815950px;}
.y120{bottom:326.832000px;}
.y4fa{bottom:327.694650px;}
.y5be{bottom:327.732000px;}
.y148{bottom:327.976500px;}
.y49e{bottom:328.018500px;}
.y580{bottom:328.332000px;}
.y5ac{bottom:328.632000px;}
.y356{bottom:328.918500px;}
.y4f4{bottom:329.122350px;}
.y622{bottom:329.518500px;}
.y4b6{bottom:329.832000px;}
.y458{bottom:330.097800px;}
.y265{bottom:331.332000px;}
.y401{bottom:331.966350px;}
.y421{bottom:332.832000px;}
.y10b{bottom:333.097800px;}
.y509{bottom:334.222350px;}
.y2b7{bottom:334.332000px;}
.y82{bottom:334.772100px;}
.y559{bottom:334.918500px;}
.yc5{bottom:335.753100px;}
.y18{bottom:335.778750px;}
.y474{bottom:335.832000px;}
.y27c{bottom:336.494700px;}
.y16c{bottom:336.597450px;}
.y38d{bottom:337.332000px;}
.y219{bottom:338.781000px;}
.y3b2{bottom:338.832000px;}
.y200{bottom:339.097500px;}
.y448{bottom:339.097800px;}
.y53e{bottom:339.207000px;}
.y36{bottom:340.018500px;}
.y1b0{bottom:340.206000px;}
.y2ed{bottom:340.332000px;}
.y3a5{bottom:340.597800px;}
.y525{bottom:340.747350px;}
.y573{bottom:340.903950px;}
.y19d{bottom:341.113500px;}
.y5d4{bottom:341.232000px;}
.y24b{bottom:341.518500px;}
.yeb{bottom:341.744700px;}
.y1dd{bottom:342.091800px;}
.ya4{bottom:342.097800px;}
.y437{bottom:342.418500px;}
.y660{bottom:342.466350px;}
.y606{bottom:343.018500px;}
.y48f{bottom:343.332000px;}
.y319{bottom:343.597800px;}
.y58e{bottom:343.918500px;}
.y18a{bottom:344.325750px;}
.y640{bottom:345.097800px;}
.y51{bottom:346.018500px;}
.y276{bottom:346.244700px;}
.y3ca{bottom:346.332000px;}
.y2d4{bottom:347.232000px;}
.y599{bottom:347.832000px;}
.y4d5{bottom:348.732000px;}
.y2a3{bottom:349.018500px;}
.y1bc{bottom:349.182000px;}
.y33d{bottom:349.315950px;}
.y11f{bottom:349.332000px;}
.y5bd{bottom:350.232000px;}
.y147{bottom:350.482500px;}
.y49d{bottom:350.518500px;}
.y301{bottom:350.832000px;}
.y5ab{bottom:351.132000px;}
.y355{bottom:351.418500px;}
.y4f3{bottom:351.622350px;}
.y621{bottom:352.018500px;}
.y4b5{bottom:352.332000px;}
.y457{bottom:352.597800px;}
.y264{bottom:353.832000px;}
.y400{bottom:354.466350px;}
.y189{bottom:354.945750px;}
.y420{bottom:355.332000px;}
.y10a{bottom:355.597800px;}
.y27b{bottom:355.994700px;}
.y4f9{bottom:356.194650px;}
.yc4{bottom:356.753100px;}
.y2b6{bottom:356.832000px;}
.y17{bottom:358.278750px;}
.y473{bottom:358.332000px;}
.y38c{bottom:359.832000px;}
.y5ec{bottom:360.097800px;}
.y1ff{bottom:361.597500px;}
.y447{bottom:361.597800px;}
.y53d{bottom:361.707000px;}
.y35{bottom:362.518500px;}
.y231{bottom:362.712000px;}
.y39b{bottom:362.832000px;}
.y524{bottom:363.247350px;}
.y572{bottom:363.403950px;}
.y19c{bottom:363.619500px;}
.y5d3{bottom:363.732000px;}
.y24a{bottom:364.018500px;}
.yea{bottom:364.244700px;}
.ya3{bottom:364.597800px;}
.y438{bottom:364.918500px;}
.y5ca{bottom:365.518500px;}
.y275{bottom:365.744700px;}
.y48e{bottom:365.832000px;}
.y318{bottom:366.097800px;}
.y58d{bottom:366.418500px;}
.y45d{bottom:367.332000px;}
.y3c9{bottom:368.832000px;}
.y2d3{bottom:369.732000px;}
.y1af{bottom:370.203000px;}
.y2ec{bottom:370.332000px;}
.y4d4{bottom:371.232000px;}
.y50{bottom:371.518500px;}
.y1bb{bottom:371.688000px;}
.y33c{bottom:371.815950px;}
.y11e{bottom:371.832000px;}
.y65f{bottom:372.466350px;}
.y5bc{bottom:372.732000px;}
.y146{bottom:372.988500px;}
.y49c{bottom:373.018500px;}
.y5aa{bottom:373.632000px;}
.y354{bottom:373.918500px;}
.y4f2{bottom:374.122350px;}
.y4b4{bottom:374.832000px;}
.y63f{bottom:375.097800px;}
.y27a{bottom:375.494700px;}
.y263{bottom:376.332000px;}
.y3ff{bottom:376.966350px;}
.yc3{bottom:377.753100px;}
.y41f{bottom:377.832000px;}
.y292{bottom:378.097800px;}
.y2b5{bottom:379.332000px;}
.y620{bottom:380.013000px;}
.y2a2{bottom:380.518500px;}
.y16{bottom:380.778750px;}
.y472{bottom:380.832000px;}
.y5fe{bottom:381.097800px;}
.y38b{bottom:382.332000px;}
.y3a4{bottom:382.597800px;}
.y582{bottom:383.832000px;}
.y1fe{bottom:384.097500px;}
.y446{bottom:384.097800px;}
.y53c{bottom:384.207000px;}
.y34{bottom:385.018500px;}
.y230{bottom:385.218000px;}
.y274{bottom:385.244700px;}
.y218{bottom:385.278000px;}
.y39a{bottom:385.332000px;}
.y109{bottom:385.597800px;}
.y523{bottom:385.747350px;}
.y5d2{bottom:386.232000px;}
.y249{bottom:386.518500px;}
.ye9{bottom:386.744700px;}
.y16b{bottom:386.790750px;}
.y1dc{bottom:387.061800px;}
.ya2{bottom:387.097800px;}
.y80{bottom:387.272100px;}
.y188{bottom:387.720750px;}
.y3be{bottom:388.018500px;}
.y48d{bottom:388.332000px;}
.y317{bottom:388.597800px;}
.y58c{bottom:388.918500px;}
.y46d{bottom:389.832000px;}
.y300{bottom:391.332000px;}
.y2d2{bottom:392.232000px;}
.y672{bottom:392.832000px;}
.y19b{bottom:393.616500px;}
.y4d3{bottom:393.732000px;}
.y1ba{bottom:394.194000px;}
.y33b{bottom:394.315950px;}
.y11d{bottom:394.332000px;}
.y4c8{bottom:394.918500px;}
.y5bb{bottom:395.232000px;}
.y145{bottom:395.494500px;}
.y49b{bottom:395.518500px;}
.y5eb{bottom:396.097800px;}
.y5a9{bottom:396.132000px;}
.y353{bottom:396.418500px;}
.y4f1{bottom:396.622350px;}
.y4f{bottom:397.018500px;}
.y4b3{bottom:397.332000px;}
.y16a{bottom:397.410750px;}
.yc2{bottom:398.753100px;}
.y42d{bottom:398.832000px;}
.y3fe{bottom:399.466350px;}
.y41e{bottom:400.332000px;}
.y291{bottom:400.597800px;}
.y64d{bottom:401.013000px;}
.y2b4{bottom:401.832000px;}
.y2a1{bottom:403.018500px;}
.y71{bottom:403.026000px;}
.y15{bottom:403.278750px;}
.y471{bottom:403.332000px;}
.y5fd{bottom:403.597800px;}
.y278{bottom:404.744700px;}
.y38a{bottom:404.832000px;}
.y3a3{bottom:405.097800px;}
.y262{bottom:406.332000px;}
.y1fd{bottom:406.597500px;}
.y445{bottom:406.597800px;}
.y53b{bottom:406.707000px;}
.y33{bottom:407.518500px;}
.y22f{bottom:407.724000px;}
.y217{bottom:407.784000px;}
.y399{bottom:407.832000px;}
.y522{bottom:408.247350px;}
.y571{bottom:408.403950px;}
.y187{bottom:408.720750px;}
.y5d1{bottom:408.732000px;}
.y185{bottom:408.840750px;}
.y248{bottom:409.018500px;}
.ye8{bottom:409.244700px;}
.y4be{bottom:409.332000px;}
.y1db{bottom:409.567800px;}
.ya1{bottom:409.597800px;}
.y3bd{bottom:410.518500px;}
.y2eb{bottom:410.832000px;}
.y316{bottom:411.097800px;}
.y58b{bottom:411.418500px;}
.y65e{bottom:412.966350px;}
.y2ff{bottom:413.832000px;}
.y2d1{bottom:414.732000px;}
.y3b3{bottom:415.332000px;}
.y63e{bottom:415.597800px;}
.y4d2{bottom:416.232000px;}
.y1ae{bottom:416.700000px;}
.y33a{bottom:416.815950px;}
.y11c{bottom:416.832000px;}
.y436{bottom:417.418500px;}
.y5ba{bottom:417.732000px;}
.y144{bottom:418.000500px;}
.y4e{bottom:418.018500px;}
.y5ea{bottom:418.597800px;}
.y5a8{bottom:418.632000px;}
.y352{bottom:418.918500px;}
.y4f0{bottom:419.122350px;}
.y61f{bottom:419.518500px;}
.yc1{bottom:419.753100px;}
.y4b2{bottom:419.832000px;}
.y42c{bottom:421.332000px;}
.y3fd{bottom:421.966350px;}
.y41d{bottom:422.832000px;}
.y290{bottom:423.097800px;}
.y3e5{bottom:424.332000px;}
.y2a0{bottom:425.518500px;}
.y14{bottom:425.778750px;}
.y5fc{bottom:426.097800px;}
.y272{bottom:426.105000px;}
.y389{bottom:427.332000px;}
.y3a2{bottom:427.597800px;}
.y70{bottom:428.526000px;}
.y1fc{bottom:429.097500px;}
.y444{bottom:429.097800px;}
.y53a{bottom:429.207000px;}
.y186{bottom:429.720750px;}
.y32{bottom:430.018500px;}
.y22e{bottom:430.230000px;}
.y216{bottom:430.290000px;}
.y398{bottom:430.332000px;}
.y521{bottom:430.747350px;}
.y570{bottom:430.903950px;}
.y5d0{bottom:431.232000px;}
.y247{bottom:431.518500px;}
.ye7{bottom:431.744700px;}
.y2b3{bottom:431.832000px;}
.y1da{bottom:432.073800px;}
.ya0{bottom:432.097800px;}
.y412{bottom:433.018500px;}
.y2ea{bottom:433.332000px;}
.y58a{bottom:433.918500px;}
.y169{bottom:434.820750px;}
.y65d{bottom:435.466350px;}
.y271{bottom:435.855000px;}
.y2fe{bottom:436.332000px;}
.y2d0{bottom:437.232000px;}
.y671{bottom:437.832000px;}
.y63d{bottom:438.097800px;}
.y3bc{bottom:438.513000px;}
.y4d1{bottom:438.732000px;}
.y4d{bottom:439.018500px;}
.y1ad{bottom:439.206000px;}
.y339{bottom:439.315950px;}
.y11b{bottom:439.332000px;}
.y19a{bottom:440.113500px;}
.y5b9{bottom:440.232000px;}
.y143{bottom:440.506500px;}
.y49a{bottom:440.518500px;}
.y48c{bottom:440.832000px;}
.y5e9{bottom:441.097800px;}
.y5a7{bottom:441.132000px;}
.y351{bottom:441.418500px;}
.y4ef{bottom:441.622350px;}
.y61e{bottom:442.018500px;}
.y4b1{bottom:442.332000px;}
.yc0{bottom:442.658700px;}
.y48a{bottom:443.832000px;}
.y3fc{bottom:444.466350px;}
.y62d{bottom:445.332000px;}
.y28f{bottom:445.597800px;}
.y273{bottom:445.605000px;}
.y3e4{bottom:446.832000px;}
.y29e{bottom:448.018500px;}
.y13{bottom:448.278750px;}
.y5fb{bottom:448.597800px;}
.y388{bottom:449.832000px;}
.y3a1{bottom:450.097800px;}
.y1fb{bottom:451.597500px;}
.y315{bottom:451.597800px;}
.y539{bottom:451.707000px;}
.y184{bottom:452.235750px;}
.y31{bottom:452.518500px;}
.y22d{bottom:452.736000px;}
.y215{bottom:452.796000px;}
.y261{bottom:452.832000px;}
.y520{bottom:453.247350px;}
.y56f{bottom:453.403950px;}
.y5cf{bottom:453.732000px;}
.y245{bottom:454.018500px;}
.y6f{bottom:454.025550px;}
.ye6{bottom:454.244700px;}
.y2b2{bottom:454.332000px;}
.y1d9{bottom:454.579800px;}
.y9f{bottom:454.597800px;}
.y7f{bottom:455.372100px;}
.y411{bottom:455.518500px;}
.y168{bottom:455.820750px;}
.y2e9{bottom:455.832000px;}
.y589{bottom:456.418500px;}
.y65c{bottom:457.966350px;}
.y2fd{bottom:458.832000px;}
.y2cf{bottom:459.732000px;}
.y670{bottom:460.332000px;}
.y63c{bottom:460.597800px;}
.y4d0{bottom:461.232000px;}
.y1ac{bottom:461.712000px;}
.y338{bottom:461.815950px;}
.y11a{bottom:461.832000px;}
.y199{bottom:462.619500px;}
.y5b8{bottom:462.732000px;}
.y142{bottom:463.012500px;}
.y499{bottom:463.018500px;}
.y5e8{bottom:463.597800px;}
.y350{bottom:463.918500px;}
.y4ee{bottom:464.122350px;}
.y4c{bottom:464.518500px;}
.y4b0{bottom:464.832000px;}
.ybf{bottom:465.059100px;}
.y4c3{bottom:466.332000px;}
.y164{bottom:466.440750px;}
.y3fb{bottom:466.966350px;}
.y62c{bottom:467.832000px;}
.y28e{bottom:468.097800px;}
.y3e3{bottom:469.332000px;}
.y29f{bottom:470.518500px;}
.y12{bottom:470.778750px;}
.y5fa{bottom:471.097800px;}
.y387{bottom:472.332000px;}
.y3a0{bottom:472.597800px;}
.y270{bottom:473.497950px;}
.y489{bottom:473.832000px;}
.y1fa{bottom:474.097500px;}
.y314{bottom:474.097800px;}
.y538{bottom:474.207000px;}
.y183{bottom:474.510750px;}
.y30{bottom:475.018500px;}
.y22c{bottom:475.242000px;}
.y214{bottom:475.302000px;}
.y260{bottom:475.332000px;}
.y456{bottom:475.597800px;}
.y51f{bottom:475.747350px;}
.y558{bottom:476.013000px;}
.y5ce{bottom:476.232000px;}
.y246{bottom:476.518500px;}
.ye5{bottom:476.744700px;}
.y167{bottom:476.820750px;}
.y2b1{bottom:476.832000px;}
.y163{bottom:476.940750px;}
.y1d8{bottom:477.085800px;}
.y9e{bottom:477.097800px;}
.y7e{bottom:477.872100px;}
.y3bb{bottom:478.018500px;}
.y2e8{bottom:478.332000px;}
.y587{bottom:478.918500px;}
.y6e{bottom:479.525550px;}
.y65b{bottom:480.466350px;}
.y2fc{bottom:481.332000px;}
.y443{bottom:481.597800px;}
.y2ce{bottom:482.232000px;}
.y39c{bottom:482.832000px;}
.y63b{bottom:483.097800px;}
.y4cf{bottom:483.732000px;}
.y1ab{bottom:484.218000px;}
.y337{bottom:484.315950px;}
.y119{bottom:484.332000px;}
.y198{bottom:485.125500px;}
.y5a6{bottom:485.232000px;}
.y141{bottom:485.518500px;}
.y5f5{bottom:485.832000px;}
.y9{bottom:485.859900px;}
.y5{bottom:485.867400px;}
.y5e7{bottom:486.097800px;}
.y34e{bottom:486.418500px;}
.y4ed{bottom:486.622350px;}
.y605{bottom:487.018500px;}
.ybe{bottom:487.459500px;}
.y3c8{bottom:488.832000px;}
.y4b{bottom:490.018500px;}
.y62b{bottom:490.332000px;}
.y28d{bottom:490.597800px;}
.y3e2{bottom:491.832000px;}
.y5f9{bottom:493.597800px;}
.y386{bottom:494.832000px;}
.y39f{bottom:495.097800px;}
.y1f9{bottom:496.597500px;}
.y313{bottom:496.597800px;}
.y537{bottom:496.707000px;}
.y3fa{bottom:496.966350px;}
.y2f{bottom:497.518500px;}
.y22b{bottom:497.748000px;}
.y213{bottom:497.808000px;}
.y166{bottom:497.820750px;}
.y25f{bottom:497.832000px;}
.y51e{bottom:498.247350px;}
.ye4{bottom:499.244700px;}
.y2b0{bottom:499.332000px;}
.y1d7{bottom:499.591800px;}
.y9d{bottom:499.597800px;}
.y7d{bottom:500.372100px;}
.y3ba{bottom:500.518500px;}
.y6d{bottom:500.525550px;}
.y2e7{bottom:500.832000px;}
.y588{bottom:501.418500px;}
.y56e{bottom:501.966300px;}
.y11{bottom:502.278750px;}
.y65a{bottom:502.966350px;}
.y182{bottom:503.143500px;}
.y2fb{bottom:503.832000px;}
.y468{bottom:504.097800px;}
.y2cd{bottom:504.732000px;}
.y3c7{bottom:505.332000px;}
.y63a{bottom:505.597800px;}
.y410{bottom:506.013000px;}
.y4ce{bottom:506.232000px;}
.y1aa{bottom:506.724000px;}
.y336{bottom:506.815950px;}
.y118{bottom:506.832000px;}
.y197{bottom:507.631500px;}
.y5a5{bottom:507.732000px;}
.y13f{bottom:508.018500px;}
.y495{bottom:508.332000px;}
.y5e6{bottom:508.597800px;}
.y34f{bottom:508.918500px;}
.y4ec{bottom:509.122350px;}
.y604{bottom:509.518500px;}
.ybd{bottom:510.365250px;}
.y4a{bottom:511.018500px;}
.y4c2{bottom:511.332000px;}
.y62a{bottom:512.832000px;}
.y360{bottom:513.097800px;}
.y3e1{bottom:514.332000px;}
.y61d{bottom:515.013000px;}
.y557{bottom:515.518500px;}
.y4{bottom:515.859900px;}
.y455{bottom:516.097800px;}
.y385{bottom:517.332000px;}
.y39e{bottom:517.597800px;}
.y165{bottom:518.820750px;}
.y1f8{bottom:519.097500px;}
.y312{bottom:519.097800px;}
.y536{bottom:519.207000px;}
.y2e{bottom:520.018500px;}
.y22a{bottom:520.254000px;}
.y212{bottom:520.314000px;}
.y25e{bottom:520.332000px;}
.y28c{bottom:520.597800px;}
.y51d{bottom:520.747350px;}
.ye3{bottom:521.744700px;}
.y2af{bottom:521.832000px;}
.y1d6{bottom:522.085800px;}
.y9c{bottom:522.097800px;}
.y29d{bottom:523.018500px;}
.y2e6{bottom:523.332000px;}
.y659{bottom:525.466350px;}
.y2fa{bottom:526.332000px;}
.y6c{bottom:527.525550px;}
.y484{bottom:527.832000px;}
.y639{bottom:528.097800px;}
.y3b9{bottom:528.513000px;}
.y4cd{bottom:528.732000px;}
.y244{bottom:529.018500px;}
.y1a9{bottom:529.230000px;}
.y335{bottom:529.315950px;}
.y117{bottom:529.332000px;}
.y196{bottom:530.137500px;}
.y5a4{bottom:530.232000px;}
.y56d{bottom:530.366700px;}
.y140{bottom:530.512500px;}
.y435{bottom:530.518500px;}
.y5e5{bottom:531.097800px;}
.y4eb{bottom:531.622350px;}
.y603{bottom:532.018500px;}
.ybc{bottom:532.765650px;}
.y4c1{bottom:533.832000px;}
.y4af{bottom:535.332000px;}
.y35f{bottom:535.597800px;}
.y4c7{bottom:536.013000px;}
.y49{bottom:536.518500px;}
.y3e0{bottom:536.832000px;}
.y3f9{bottom:537.466350px;}
.y556{bottom:538.018500px;}
.y2cc{bottom:538.032000px;}
.y454{bottom:538.597800px;}
.y611{bottom:539.518500px;}
.y384{bottom:539.832000px;}
.y162{bottom:541.215750px;}
.y1f7{bottom:541.597500px;}
.y311{bottom:541.597800px;}
.y535{bottom:541.707000px;}
.y2d{bottom:542.518500px;}
.y229{bottom:542.760000px;}
.y211{bottom:542.820000px;}
.y25d{bottom:542.832000px;}
.y51c{bottom:543.247350px;}
.ye2{bottom:544.244700px;}
.y2ae{bottom:544.332000px;}
.y1d5{bottom:544.591800px;}
.y9b{bottom:544.597800px;}
.y7c{bottom:545.372100px;}
.y40f{bottom:545.518500px;}
.y5f8{bottom:546.097800px;}
.y39d{bottom:547.597800px;}
.y658{bottom:547.966350px;}
.y6b{bottom:548.525550px;}
.y2f9{bottom:548.832000px;}
.y4f8{bottom:550.002000px;}
.y4a8{bottom:550.332000px;}
.y638{bottom:550.597800px;}
.y5c9{bottom:551.013000px;}
.y4cc{bottom:551.232000px;}
.y56c{bottom:551.366700px;}
.y181{bottom:551.736000px;}
.y334{bottom:551.815950px;}
.y116{bottom:551.832000px;}
.y508{bottom:552.172350px;}
.y195{bottom:552.643500px;}
.y5a3{bottom:552.732000px;}
.y434{bottom:553.018500px;}
.y2e5{bottom:553.332000px;}
.y375{bottom:553.597800px;}
.y586{bottom:553.918500px;}
.y4ea{bottom:554.122350px;}
.y61c{bottom:554.518500px;}
.ybb{bottom:555.166050px;}
.y4c0{bottom:556.332000px;}
.y4ae{bottom:557.832000px;}
.y3df{bottom:559.332000px;}
.y3f8{bottom:559.966350px;}
.y602{bottom:560.013000px;}
.y498{bottom:560.518500px;}
.y2cb{bottom:560.532000px;}
.y34d{bottom:561.418500px;}
.y48{bottom:562.018500px;}
.y161{bottom:562.215750px;}
.y383{bottom:562.332000px;}
.y1f6{bottom:564.097500px;}
.y310{bottom:564.097800px;}
.y534{bottom:564.207000px;}
.y2c{bottom:565.018500px;}
.y228{bottom:565.266000px;}
.y210{bottom:565.326000px;}
.y25c{bottom:565.332000px;}
.y60e{bottom:565.597800px;}
.y51b{bottom:565.747350px;}
.ye1{bottom:566.744700px;}
.y2ad{bottom:566.832000px;}
.y1d4{bottom:567.013800px;}
.y9a{bottom:567.097800px;}
.y7b{bottom:567.872100px;}
.y3b8{bottom:568.018500px;}
.y483{bottom:568.332000px;}
.y453{bottom:568.597800px;}
.y29c{bottom:569.518500px;}
.y657{bottom:570.466350px;}
.y2f8{bottom:571.332000px;}
.y66a{bottom:571.597800px;}
.y56b{bottom:572.366700px;}
.y637{bottom:573.097800px;}
.y6a{bottom:574.025550px;}
.y180{bottom:574.242000px;}
.y333{bottom:574.315950px;}
.y103{bottom:574.332000px;}
.y5a2{bottom:575.232000px;}
.y243{bottom:575.518500px;}
.y374{bottom:576.097800px;}
.y4e9{bottom:576.622350px;}
.y61b{bottom:577.018500px;}
.yba{bottom:577.566450px;}
.y4cb{bottom:579.732000px;}
.y4ad{bottom:580.332000px;}
.y3de{bottom:581.832000px;}
.y3f7{bottom:582.466350px;}
.y13e{bottom:583.005000px;}
.y2ca{bottom:583.032000px;}
.y160{bottom:583.215750px;}
.y433{bottom:584.518500px;}
.y382{bottom:584.832000px;}
.y4bf{bottom:586.332000px;}
.y30f{bottom:586.597800px;}
.y533{bottom:586.707000px;}
.y2b{bottom:587.518500px;}
.y227{bottom:587.772000px;}
.y20f{bottom:587.814000px;}
.y25b{bottom:587.832000px;}
.y51a{bottom:588.247350px;}
.y555{bottom:588.513000px;}
.ye0{bottom:589.244700px;}
.y2ac{bottom:589.332000px;}
.y1d3{bottom:589.519800px;}
.y99{bottom:589.597800px;}
.y7a{bottom:590.372100px;}
.y3b7{bottom:590.518500px;}
.y482{bottom:590.832000px;}
.y29b{bottom:592.018500px;}
.y496{bottom:592.332000px;}
.y2e4{bottom:593.832000px;}
.y15c{bottom:593.835750px;}
.y1f5{bottom:594.097500px;}
.y5f6{bottom:594.097800px;}
.y617{bottom:595.332000px;}
.y636{bottom:595.597800px;}
.y17f{bottom:596.748000px;}
.y332{bottom:596.815950px;}
.y102{bottom:596.832000px;}
.y5a1{bottom:597.732000px;}
.y242{bottom:598.018500px;}
.yb9{bottom:598.566450px;}
.y4e8{bottom:599.122350px;}
.y601{bottom:599.518500px;}
.y69{bottom:599.525550px;}
.y656{bottom:600.466350px;}
.y56a{bottom:600.767100px;}
.y4ac{bottom:602.832000px;}
.y15f{bottom:604.215750px;}
.y3dd{bottom:604.332000px;}
.y3f6{bottom:604.966350px;}
.y5e4{bottom:606.097800px;}
.y381{bottom:607.332000px;}
.y373{bottom:607.597800px;}
.y452{bottom:609.097800px;}
.y2a{bottom:610.018500px;}
.y226{bottom:610.278000px;}
.y20e{bottom:610.320000px;}
.y25a{bottom:610.332000px;}
.y519{bottom:610.747350px;}
.y2ab{bottom:611.832000px;}
.y1d2{bottom:612.025800px;}
.y98{bottom:612.097800px;}
.y610{bottom:612.513000px;}
.y79{bottom:612.872100px;}
.y47{bottom:613.018500px;}
.y2c9{bottom:613.032000px;}
.y481{bottom:613.332000px;}
.y29a{bottom:614.518500px;}
.y10{bottom:614.778750px;}
.y2e3{bottom:616.332000px;}
.y532{bottom:616.707000px;}
.y397{bottom:617.832000px;}
.y3b6{bottom:618.513000px;}
.y17e{bottom:619.254000px;}
.y331{bottom:619.315950px;}
.y101{bottom:619.332000px;}
.y5a0{bottom:620.232000px;}
.y241{bottom:620.518500px;}
.yb8{bottom:620.966700px;}
.y4e7{bottom:621.622350px;}
.y569{bottom:621.767100px;}
.y585{bottom:622.018500px;}
.y68{bottom:625.025550px;}
.y15e{bottom:625.215750px;}
.y4ab{bottom:625.332000px;}
.y635{bottom:625.597800px;}
.y3dc{bottom:626.832000px;}
.y3f5{bottom:627.466350px;}
.y13d{bottom:629.502000px;}
.y34c{bottom:629.518500px;}
.y380{bottom:629.832000px;}
.y372{bottom:630.097800px;}
.y30e{bottom:631.597800px;}
.y29{bottom:632.518500px;}
.y20d{bottom:632.826000px;}
.y259{bottom:632.832000px;}
.y518{bottom:633.247350px;}
.y46{bottom:634.018500px;}
.y2aa{bottom:634.332000px;}
.y1d1{bottom:634.531800px;}
.y1f4{bottom:634.597500px;}
.y97{bottom:634.597800px;}
.ydf{bottom:634.807200px;}
.y299{bottom:637.018500px;}
.yf{bottom:637.278750px;}
.y2e2{bottom:638.832000px;}
.y451{bottom:639.097800px;}
.y225{bottom:640.275000px;}
.y550{bottom:640.332000px;}
.y655{bottom:640.966350px;}
.y5c8{bottom:641.013000px;}
.y17d{bottom:641.760000px;}
.y330{bottom:641.815950px;}
.y100{bottom:641.832000px;}
.yb7{bottom:641.966700px;}
.y5e3{bottom:642.097800px;}
.y240{bottom:643.018500px;}
.y480{bottom:643.332000px;}
.y4e6{bottom:644.122350px;}
.y78{bottom:644.372100px;}
.y3b5{bottom:644.518500px;}
.y15d{bottom:646.215750px;}
.y42f{bottom:646.332000px;}
.y4aa{bottom:647.832000px;}
.y4c6{bottom:648.513000px;}
.y3db{bottom:649.332000px;}
.y3f4{bottom:649.966350px;}
.y61a{bottom:650.013000px;}
.y568{bottom:650.167500px;}
.y67{bottom:650.525550px;}
.y13c{bottom:652.008000px;}
.y34b{bottom:652.018500px;}
.y37f{bottom:652.332000px;}
.y371{bottom:652.597800px;}
.y2c8{bottom:653.532000px;}
.y30d{bottom:654.097800px;}
.y28{bottom:655.018500px;}
.y258{bottom:655.332000px;}
.y634{bottom:655.597800px;}
.y517{bottom:655.747350px;}
.yde{bottom:655.807200px;}
.y1d0{bottom:657.037800px;}
.y1f3{bottom:657.097500px;}
.y96{bottom:657.097800px;}
.y432{bottom:658.018500px;}
.y45{bottom:659.518500px;}
.y2e1{bottom:661.332000px;}
.y20c{bottom:662.823000px;}
.y654{bottom:663.466350px;}
.y554{bottom:664.018500px;}
.y17c{bottom:664.266000px;}
.y32f{bottom:664.315950px;}
.yff{bottom:664.332000px;}
.yb6{bottom:664.367100px;}
.y5e2{bottom:664.597800px;}
.y59f{bottom:665.232000px;}
.y4e5{bottom:666.622350px;}
.y584{bottom:667.018500px;}
.y298{bottom:668.518500px;}
.y15b{bottom:668.610750px;}
.y42e{bottom:668.832000px;}
.y531{bottom:669.207000px;}
.y4a9{bottom:670.332000px;}
.y64c{bottom:671.013000px;}
.y66{bottom:671.525550px;}
.y3da{bottom:671.832000px;}
.y3f3{bottom:672.466350px;}
.y600{bottom:672.513000px;}
.y13b{bottom:674.514000px;}
.y23f{bottom:674.518500px;}
.y37e{bottom:674.832000px;}
.y619{bottom:676.018500px;}
.y2c7{bottom:676.032000px;}
.y30c{bottom:676.597800px;}
.y27{bottom:677.518500px;}
.y257{bottom:677.832000px;}
.y633{bottom:678.097800px;}
.ydd{bottom:678.207600px;}
.y567{bottom:678.567900px;}
.y1cf{bottom:679.543800px;}
.y1f2{bottom:679.597500px;}
.y95{bottom:679.597800px;}
.ye{bottom:682.278750px;}
.y2f7{bottom:683.832000px;}
.y370{bottom:684.097800px;}
.y44{bottom:685.018500px;}
.y551{bottom:685.332000px;}
.y516{bottom:685.747350px;}
.y653{bottom:685.966350px;}
.yb5{bottom:686.767500px;}
.y17b{bottom:686.772000px;}
.y32e{bottom:686.815950px;}
.yfe{bottom:686.832000px;}
.y5e1{bottom:687.097800px;}
.y59e{bottom:687.732000px;}
.y553{bottom:688.018500px;}
.y4e4{bottom:689.122350px;}
.y15a{bottom:689.610750px;}
.y2e0{bottom:691.332000px;}
.y629{bottom:692.832000px;}
.y77{bottom:693.872100px;}
.y3b4{bottom:694.018500px;}
.y3d9{bottom:694.332000px;}
.y3f2{bottom:694.966350px;}
.y34a{bottom:697.018500px;}
.y13a{bottom:697.020000px;}
.y65{bottom:697.025550px;}
.y37d{bottom:697.332000px;}
.y583{bottom:698.518500px;}
.y2c6{bottom:698.532000px;}
.y30b{bottom:699.097800px;}
.ydc{bottom:699.207600px;}
.y26{bottom:700.018500px;}
.y3b1{bottom:700.332000px;}
.y1ce{bottom:702.049800px;}
.y1f1{bottom:702.097500px;}
.y94{bottom:702.097800px;}
.y60f{bottom:702.513000px;}
.yd{bottom:704.778750px;}
.y43{bottom:706.018500px;}
.y2f6{bottom:706.332000px;}
.y36f{bottom:706.597800px;}
.y566{bottom:706.968300px;}
.y256{bottom:707.832000px;}
.y652{bottom:708.466350px;}
.y431{bottom:709.018500px;}
.yb4{bottom:709.167900px;}
.y17a{bottom:709.278000px;}
.y32d{bottom:709.315950px;}
.y20b{bottom:709.320000px;}
.yfd{bottom:709.332000px;}
.y5e0{bottom:709.597800px;}
.y59d{bottom:710.232000px;}
.y581{bottom:713.832000px;}
.y628{bottom:715.332000px;}
.y507{bottom:716.197500px;}
.y3d8{bottom:716.832000px;}
.y3f1{bottom:717.466350px;}
.y76{bottom:717.872100px;}
.y297{bottom:718.018500px;}
.y159{bottom:718.303500px;}
.y37c{bottom:719.832000px;}
.y2c5{bottom:721.032000px;}
.y30a{bottom:721.597800px;}
.ydb{bottom:721.608000px;}
.y25{bottom:722.518500px;}
.y64{bottom:722.525550px;}
.y3b0{bottom:722.832000px;}
.y23e{bottom:724.018500px;}
.y1cd{bottom:724.555800px;}
.y1f0{bottom:724.597500px;}
.y93{bottom:724.597800px;}
.yc{bottom:727.278750px;}
.y139{bottom:728.518500px;}
.y2f5{bottom:728.832000px;}
.y36e{bottom:729.097800px;}
.y4e3{bottom:729.622350px;}
.yb3{bottom:730.167900px;}
.y46c{bottom:730.332000px;}
.y651{bottom:730.966350px;}
.y42{bottom:731.518500px;}
.y179{bottom:731.784000px;}
.y32c{bottom:731.815950px;}
.y20a{bottom:731.826000px;}
.yfc{bottom:731.832000px;}
.y5df{bottom:732.097800px;}
.y59c{bottom:732.732000px;}
.y565{bottom:735.368700px;}
.y5b6{bottom:736.332000px;}
.y627{bottom:737.832000px;}
.y515{bottom:738.247350px;}
.y506{bottom:738.697500px;}
.y430{bottom:739.018500px;}
.y3d7{bottom:739.332000px;}
.y3f0{bottom:739.966350px;}
.y37b{bottom:742.332000px;}
.yda{bottom:742.608000px;}
.y2c4{bottom:743.532000px;}
.y309{bottom:744.097800px;}
.y24{bottom:745.018500px;}
.y3af{bottom:745.332000px;}
.y1cc{bottom:747.061800px;}
.y1ef{bottom:747.097500px;}
.y92{bottom:747.097800px;}
.y23d{bottom:748.018500px;}
.y63{bottom:748.025550px;}
.yb2{bottom:751.167900px;}
.y2f4{bottom:751.332000px;}
.y158{bottom:752.805000px;}
.y40e{bottom:752.832000px;}
.y650{bottom:753.466350px;}
.y178{bottom:754.290000px;}
.y32b{bottom:754.315950px;}
.yfb{bottom:754.332000px;}
.y5de{bottom:754.597800px;}
.y59b{bottom:755.232000px;}
.y41{bottom:757.018500px;}
.y4bd{bottom:758.832000px;}
.y626{bottom:760.332000px;}
.y36d{bottom:760.597800px;}
.y564{bottom:763.769100px;}
.yd9{bottom:765.008400px;}
.y2c3{bottom:766.032000px;}
.y23{bottom:767.518500px;}
.y3ae{bottom:767.832000px;}
.y75{bottom:768.872100px;}
.y296{bottom:769.018500px;}
.y62{bottom:769.025550px;}
.y3d6{bottom:769.332000px;}
.y1cb{bottom:769.567800px;}
.y1ee{bottom:769.597500px;}
.y91{bottom:769.597800px;}
.yb1{bottom:772.167900px;}
.yb{bottom:772.278750px;}
.y2f3{bottom:773.832000px;}
.y308{bottom:774.097800px;}
.y40d{bottom:775.332000px;}
.y3ef{bottom:775.966350px;}
.y177{bottom:776.796000px;}
.y32a{bottom:776.815950px;}
.yfa{bottom:776.832000px;}
.y5dd{bottom:777.097800px;}
.y138{bottom:778.018500px;}
.y45c{bottom:781.332000px;}
.y40{bottom:782.518500px;}
.y625{bottom:782.832000px;}
.y36c{bottom:783.097800px;}
.y2c2{bottom:788.532000px;}
.y22{bottom:790.018500px;}
.y3ad{bottom:790.332000px;}
.yd8{bottom:791.108400px;}
.y1ca{bottom:792.073800px;}
.y1ed{bottom:792.097500px;}
.y90{bottom:792.097800px;}
.yb0{bottom:793.167900px;}
.y61{bottom:794.525550px;}
.y563{bottom:795.732000px;}
.y2f2{bottom:796.332000px;}
.y4c5{bottom:797.832000px;}
.y3ee{bottom:798.466350px;}
.y74{bottom:798.872100px;}
.y23c{bottom:799.018500px;}
.y157{bottom:799.302000px;}
.y329{bottom:799.315950px;}
.yf9{bottom:799.332000px;}
.y5dc{bottom:799.597800px;}
.y3{bottom:800.841900px;}
.y8{bottom:800.859900px;}
.y42b{bottom:803.832000px;}
.y36b{bottom:805.597800px;}
.y3f{bottom:808.018500px;}
.y2c1{bottom:811.032000px;}
.y21{bottom:812.518500px;}
.y3ac{bottom:812.832000px;}
.yd7{bottom:813.508800px;}
.y1c9{bottom:814.579800px;}
.y1ec{bottom:814.597500px;}
.y8f{bottom:814.597800px;}
.yaf{bottom:815.568300px;}
.yae{bottom:816.968700px;}
.ya{bottom:817.278750px;}
.y2f1{bottom:818.832000px;}
.y60{bottom:820.025550px;}
.y4c9{bottom:820.332000px;}
.y3ed{bottom:820.966350px;}
.y156{bottom:821.808000px;}
.y328{bottom:821.815950px;}
.yf8{bottom:821.832000px;}
.y5db{bottom:822.097800px;}
.y42a{bottom:826.332000px;}
.y36a{bottom:828.097800px;}
.y73{bottom:828.872100px;}
.y3e{bottom:829.018500px;}
.y2c0{bottom:833.532000px;}
.y20{bottom:835.018500px;}
.yd6{bottom:835.909200px;}
.y1c8{bottom:837.085800px;}
.y1eb{bottom:837.097500px;}
.y8e{bottom:837.097800px;}
.yad{bottom:837.968700px;}
.y5f{bottom:841.025550px;}
.y3ab{bottom:842.832000px;}
.y3ec{bottom:843.466350px;}
.y155{bottom:844.314000px;}
.y327{bottom:844.315950px;}
.yf7{bottom:844.332000px;}
.y2f0{bottom:848.832000px;}
.y2{bottom:848.850900px;}
.y7{bottom:848.859900px;}
.y369{bottom:850.597800px;}
.y5da{bottom:852.097800px;}
.y2bf{bottom:856.032000px;}
.yd5{bottom:856.909200px;}
.y1f{bottom:857.518500px;}
.y3d{bottom:859.018500px;}
.y1c7{bottom:859.591800px;}
.y1ea{bottom:859.597500px;}
.y8d{bottom:859.597800px;}
.yac{bottom:860.610750px;}
.yd3{bottom:864.309600px;}
.y3eb{bottom:865.966350px;}
.y5e{bottom:866.525550px;}
.y326{bottom:866.815950px;}
.y154{bottom:866.820000px;}
.yf6{bottom:866.832000px;}
.yd4{bottom:879.309600px;}
.y1e9{bottom:882.097500px;}
.y8c{bottom:882.097800px;}
.yd2{bottom:885.309600px;}
.y3ea{bottom:888.466350px;}
.y325{bottom:889.315950px;}
.y153{bottom:889.326000px;}
.yab{bottom:889.332000px;}
.y5d{bottom:892.025550px;}
.y1{bottom:896.859900px;}
.y72{bottom:897.872100px;}
.y137{bottom:898.018500px;}
.yd1{bottom:906.309600px;}
.y1e{bottom:907.018500px;}
.y3e9{bottom:910.966350px;}
.y324{bottom:911.815950px;}
.yaa{bottom:911.832000px;}
.y1e8{bottom:912.097500px;}
.y8b{bottom:912.097800px;}
.y5c{bottom:913.025550px;}
.y5b{bottom:949.109250px;}
.h9{height:33.328125px;}
.h1d{height:33.483914px;}
.he{height:42.117188px;}
.h6{height:45.826172px;}
.h1b{height:47.250000px;}
.h1c{height:47.381836px;}
.hb{height:52.500000px;}
.hc{height:52.646484px;}
.hd{height:53.115234px;}
.h10{height:55.461914px;}
.h7{height:57.750000px;}
.h8{height:57.911133px;}
.h16{height:57.959133px;}
.h18{height:57.983133px;}
.h17{height:58.079133px;}
.h15{height:58.247133px;}
.h14{height:58.426758px;}
.h4{height:60.996094px;}
.hf{height:69.049805px;}
.h5{height:78.969727px;}
.ha{height:84.000000px;}
.h1a{height:86.250000px;}
.h13{height:94.166484px;}
.h12{height:94.500000px;}
.h3{height:136.500000px;}
.h11{height:237.911133px;}
.h19{height:296.450774px;}
.h2{height:1020.472500px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w3{width:680.250000px;}
.w2{width:680.314500px;}
.w1{width:684.000000px;}
.w0{width:684.360000px;}
.w4{width:685.440000px;}
.w5{width:685.500000px;}
.x0{left:0.000000px;}
.x7{left:70.200000px;}
.x2f{left:76.762500px;}
.x1b{left:78.270000px;}
.x31{left:81.423450px;}
.x19{left:83.265000px;}
.x28{left:84.997800px;}
.xb{left:86.400000px;}
.x2{left:89.472150px;}
.x1a{left:91.875000px;}
.x2c{left:92.962500px;}
.x2a{left:95.049300px;}
.x69{left:96.298500px;}
.x55{left:98.042550px;}
.x16{left:99.735000px;}
.x56{left:101.689050px;}
.x15{left:105.570000px;}
.x52{left:107.559300px;}
.x11{left:110.295000px;}
.x14{left:111.420000px;}
.x12{left:113.070000px;}
.x10{left:116.145000px;}
.x4f{left:118.124700px;}
.x13{left:119.190000px;}
.x75{left:120.484500px;}
.xa{left:122.400000px;}
.x32{left:124.703700px;}
.x3d{left:127.240050px;}
.x6f{left:129.665700px;}
.x4b{left:131.973000px;}
.x51{left:133.318500px;}
.x22{left:135.300300px;}
.x73{left:137.484000px;}
.x42{left:139.685250px;}
.x38{left:141.574950px;}
.x81{left:143.018550px;}
.x78{left:144.428100px;}
.x29{left:145.995450px;}
.x5b{left:147.788100px;}
.x6c{left:149.290650px;}
.x5e{left:151.872900px;}
.x3b{left:153.562500px;}
.x61{left:154.909800px;}
.x7c{left:157.536600px;}
.x7b{left:159.022800px;}
.x5f{left:160.286700px;}
.x43{left:162.442950px;}
.x44{left:163.514700px;}
.x34{left:165.718350px;}
.x2b{left:168.646800px;}
.x25{left:170.362800px;}
.x6b{left:171.746700px;}
.x3{left:173.985150px;}
.x84{left:175.083600px;}
.x30{left:176.550000px;}
.x5d{left:177.866850px;}
.x58{left:181.251450px;}
.x71{left:182.469750px;}
.x6d{left:183.628200px;}
.x36{left:186.728700px;}
.x18{left:188.699850px;}
.x1e{left:190.616850px;}
.x2d{left:192.750000px;}
.x3f{left:194.278950px;}
.x82{left:195.604350px;}
.x70{left:197.024100px;}
.x1f{left:198.034800px;}
.x17{left:199.200000px;}
.x57{left:200.472300px;}
.x21{left:202.331700px;}
.x1{left:204.483150px;}
.x72{left:205.596450px;}
.x83{left:207.653850px;}
.x7a{left:210.057900px;}
.x26{left:213.743850px;}
.xf{left:215.400000px;}
.x23{left:216.700650px;}
.x7e{left:218.617650px;}
.x41{left:219.689550px;}
.x59{left:220.704750px;}
.x53{left:222.892200px;}
.x37{left:224.652450px;}
.x50{left:226.915650px;}
.x77{left:227.939550px;}
.x6e{left:230.924550px;}
.x4c{left:232.400100px;}
.x7f{left:233.442300px;}
.x5a{left:234.807900px;}
.x6a{left:236.213400px;}
.x5c{left:237.469800px;}
.x4a{left:238.953000px;}
.x33{left:240.191550px;}
.x24{left:241.253250px;}
.x4e{left:242.296500px;}
.x27{left:244.000500px;}
.x48{left:246.363000px;}
.x3c{left:248.380950px;}
.x7d{left:250.264500px;}
.x54{left:251.303850px;}
.x3e{left:252.666600px;}
.x35{left:255.512700px;}
.x66{left:258.648450px;}
.x20{left:259.945650px;}
.x79{left:261.116850px;}
.x1d{left:262.644450px;}
.x76{left:263.755350px;}
.x64{left:269.447400px;}
.x62{left:270.519300px;}
.x67{left:271.600050px;}
.x40{left:273.012450px;}
.x63{left:277.210050px;}
.xe{left:279.286800px;}
.x4d{left:282.797250px;}
.x5{left:286.295100px;}
.x49{left:292.114800px;}
.x9{left:304.558200px;}
.x6{left:312.735750px;}
.x4{left:317.210100px;}
.x45{left:325.897500px;}
.x39{left:332.872500px;}
.x60{left:339.522600px;}
.xd{left:341.884050px;}
.x1c{left:345.300000px;}
.x8{left:346.302000px;}
.x46{left:347.858100px;}
.x65{left:363.530850px;}
.x2e{left:367.452450px;}
.x68{left:374.845350px;}
.x80{left:384.917550px;}
.x85{left:386.657850px;}
.x3a{left:402.689100px;}
.x74{left:421.452450px;}
.x47{left:447.225000px;}
.xc{left:451.979250px;}
@media print{
.v5{vertical-align:-19.536000pt;}
.v3{vertical-align:-6.776000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.v6{vertical-align:34.666667pt;}
.v4{vertical-align:37.333333pt;}
.v2{vertical-align:160.000000pt;}
.ls2e{letter-spacing:-6.506667pt;}
.ls17{letter-spacing:-5.392000pt;}
.ls16{letter-spacing:-5.386667pt;}
.ls30{letter-spacing:-5.381333pt;}
.ls2d{letter-spacing:-5.088000pt;}
.ls2c{letter-spacing:-5.082667pt;}
.ls49{letter-spacing:-4.341333pt;}
.ls19{letter-spacing:-4.288000pt;}
.ls2f{letter-spacing:-4.096000pt;}
.ls2b{letter-spacing:-3.936000pt;}
.ls18{letter-spacing:-3.328000pt;}
.ls1a{letter-spacing:-3.322667pt;}
.ls66{letter-spacing:-3.226667pt;}
.lsc{letter-spacing:-1.578667pt;}
.ls3a{letter-spacing:-1.056000pt;}
.ls5a{letter-spacing:-0.997333pt;}
.ls64{letter-spacing:-0.352000pt;}
.ls68{letter-spacing:-0.058667pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000533pt;}
.ls9{letter-spacing:0.008533pt;}
.lsb{letter-spacing:0.009067pt;}
.ls7{letter-spacing:0.009600pt;}
.ls8{letter-spacing:0.010133pt;}
.ls35{letter-spacing:0.045903pt;}
.ls5b{letter-spacing:0.050115pt;}
.ls6{letter-spacing:0.050649pt;}
.ls56{letter-spacing:0.058667pt;}
.ls5c{letter-spacing:0.117333pt;}
.ls48{letter-spacing:0.176000pt;}
.ls38{letter-spacing:0.234667pt;}
.ls39{letter-spacing:0.285333pt;}
.ls1c{letter-spacing:0.293333pt;}
.ls1d{letter-spacing:0.352000pt;}
.ls3f{letter-spacing:0.410667pt;}
.lsd{letter-spacing:0.469333pt;}
.ls3e{letter-spacing:0.528000pt;}
.ls34{letter-spacing:0.586667pt;}
.ls63{letter-spacing:0.645333pt;}
.ls5f{letter-spacing:0.704000pt;}
.ls36{letter-spacing:0.762667pt;}
.ls3c{letter-spacing:0.821333pt;}
.ls32{letter-spacing:0.880000pt;}
.ls51{letter-spacing:0.894933pt;}
.ls53{letter-spacing:0.938667pt;}
.ls54{letter-spacing:0.997333pt;}
.ls4c{letter-spacing:1.056000pt;}
.ls5d{letter-spacing:1.114667pt;}
.ls45{letter-spacing:1.173333pt;}
.ls50{letter-spacing:1.187733pt;}
.ls67{letter-spacing:1.232000pt;}
.ls47{letter-spacing:1.290667pt;}
.ls37{letter-spacing:1.349333pt;}
.ls3b{letter-spacing:1.364800pt;}
.ls65{letter-spacing:1.408000pt;}
.ls2{letter-spacing:1.493333pt;}
.ls58{letter-spacing:1.642667pt;}
.ls60{letter-spacing:1.760000pt;}
.ls5e{letter-spacing:1.818667pt;}
.ls4{letter-spacing:1.866667pt;}
.ls40{letter-spacing:1.887467pt;}
.ls57{letter-spacing:1.936000pt;}
.ls33{letter-spacing:2.569600pt;}
.ls55{letter-spacing:2.832000pt;}
.ls1{letter-spacing:2.986667pt;}
.ls21{letter-spacing:3.365333pt;}
.ls31{letter-spacing:3.472267pt;}
.ls46{letter-spacing:3.637333pt;}
.ls1b{letter-spacing:4.243467pt;}
.ls25{letter-spacing:5.034667pt;}
.ls12{letter-spacing:5.381333pt;}
.ls4f{letter-spacing:5.457067pt;}
.ls2a{letter-spacing:7.920000pt;}
.ls26{letter-spacing:8.368000pt;}
.ls10{letter-spacing:9.760000pt;}
.ls3d{letter-spacing:9.763733pt;}
.ls59{letter-spacing:9.771733pt;}
.ls27{letter-spacing:9.877333pt;}
.ls28{letter-spacing:9.882667pt;}
.ls3{letter-spacing:10.666667pt;}
.ls62{letter-spacing:10.677333pt;}
.ls29{letter-spacing:10.864000pt;}
.ls42{letter-spacing:12.322667pt;}
.ls4e{letter-spacing:12.719467pt;}
.ls43{letter-spacing:13.010133pt;}
.ls1e{letter-spacing:13.728000pt;}
.ls4a{letter-spacing:14.237867pt;}
.ls15{letter-spacing:14.666133pt;}
.ls44{letter-spacing:16.660267pt;}
.ls5{letter-spacing:17.493333pt;}
.ls52{letter-spacing:17.662933pt;}
.ls61{letter-spacing:17.992533pt;}
.ls14{letter-spacing:19.749333pt;}
.ls13{letter-spacing:19.760000pt;}
.ls1f{letter-spacing:21.472000pt;}
.ls20{letter-spacing:21.802667pt;}
.ls11{letter-spacing:22.672000pt;}
.ls22{letter-spacing:31.290651pt;}
.ls24{letter-spacing:31.322667pt;}
.ls23{letter-spacing:31.328000pt;}
.ls41{letter-spacing:33.731733pt;}
.lsf{letter-spacing:37.018667pt;}
.lse{letter-spacing:41.130667pt;}
.ls4d{letter-spacing:65.736000pt;}
.ls4b{letter-spacing:106.995733pt;}
.ws38{word-spacing:-75.079600pt;}
.wsd{word-spacing:-69.333333pt;}
.ws40{word-spacing:-58.901333pt;}
.ws25{word-spacing:-58.666667pt;}
.ws4{word-spacing:-53.333333pt;}
.ws8c{word-spacing:-48.693333pt;}
.ws52{word-spacing:-48.400000pt;}
.ws3f{word-spacing:-48.165333pt;}
.ws49{word-spacing:-47.109333pt;}
.ws58{word-spacing:-46.170667pt;}
.ws5f{word-spacing:-45.642667pt;}
.ws4c{word-spacing:-44.704000pt;}
.ws46{word-spacing:-44.574933pt;}
.ws6f{word-spacing:-43.706667pt;}
.ws57{word-spacing:-43.002667pt;}
.ws8{word-spacing:-42.666667pt;}
.ws7e{word-spacing:-42.650667pt;}
.ws61{word-spacing:-38.426667pt;}
.ws7f{word-spacing:-35.669333pt;}
.ws50{word-spacing:-34.437333pt;}
.ws3{word-spacing:-29.333333pt;}
.ws54{word-spacing:-28.699733pt;}
.ws3e{word-spacing:-28.629333pt;}
.ws6b{word-spacing:-24.320000pt;}
.wsf{word-spacing:-17.493333pt;}
.ws67{word-spacing:-16.309333pt;}
.ws59{word-spacing:-15.840000pt;}
.ws5e{word-spacing:-15.722667pt;}
.ws8d{word-spacing:-15.488000pt;}
.ws82{word-spacing:-15.370667pt;}
.ws85{word-spacing:-15.312000pt;}
.ws9{word-spacing:-15.200000pt;}
.ws55{word-spacing:-15.077333pt;}
.ws26{word-spacing:-15.018667pt;}
.ws23{word-spacing:-14.960000pt;}
.ws5d{word-spacing:-14.842667pt;}
.ws81{word-spacing:-14.725333pt;}
.ws1{word-spacing:-14.666667pt;}
.ws10{word-spacing:-13.333333pt;}
.ws3a{word-spacing:-12.000000pt;}
.ws7{word-spacing:-10.666667pt;}
.ws5c{word-spacing:-10.325333pt;}
.ws62{word-spacing:-9.088000pt;}
.wse{word-spacing:-8.550667pt;}
.ws5a{word-spacing:-3.637333pt;}
.ws78{word-spacing:-3.461333pt;}
.ws2{word-spacing:-2.986667pt;}
.ws7a{word-spacing:-2.464000pt;}
.ws60{word-spacing:-2.346667pt;}
.ws66{word-spacing:-1.936000pt;}
.ws74{word-spacing:-1.818667pt;}
.ws7d{word-spacing:-1.760000pt;}
.ws68{word-spacing:-1.642667pt;}
.ws5{word-spacing:-1.493333pt;}
.ws6a{word-spacing:-1.408000pt;}
.ws3d{word-spacing:-1.349333pt;}
.ws5b{word-spacing:-1.290667pt;}
.ws8b{word-spacing:-1.232000pt;}
.ws69{word-spacing:-1.173333pt;}
.ws6e{word-spacing:-1.114667pt;}
.ws64{word-spacing:-0.997333pt;}
.ws63{word-spacing:-0.938667pt;}
.ws36{word-spacing:-0.880000pt;}
.ws43{word-spacing:-0.821333pt;}
.ws3c{word-spacing:-0.762667pt;}
.ws75{word-spacing:-0.704000pt;}
.ws80{word-spacing:-0.645333pt;}
.ws39{word-spacing:-0.586667pt;}
.ws44{word-spacing:-0.528000pt;}
.ws2a{word-spacing:-0.506667pt;}
.ws13{word-spacing:-0.469333pt;}
.ws22{word-spacing:-0.426667pt;}
.ws56{word-spacing:-0.410667pt;}
.ws29{word-spacing:-0.394667pt;}
.ws27{word-spacing:-0.352000pt;}
.ws21{word-spacing:-0.336000pt;}
.ws24{word-spacing:-0.293333pt;}
.ws42{word-spacing:-0.234667pt;}
.ws84{word-spacing:-0.176000pt;}
.ws6d{word-spacing:-0.117333pt;}
.ws65{word-spacing:-0.058667pt;}
.ws4d{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.ws8e{word-spacing:0.058667pt;}
.ws2e{word-spacing:0.336000pt;}
.ws83{word-spacing:0.352000pt;}
.ws30{word-spacing:0.501333pt;}
.ws1e{word-spacing:0.538667pt;}
.ws34{word-spacing:0.789333pt;}
.ws31{word-spacing:0.837333pt;}
.ws32{word-spacing:0.986667pt;}
.ws6c{word-spacing:0.997333pt;}
.ws41{word-spacing:1.056000pt;}
.ws33{word-spacing:1.082667pt;}
.ws2b{word-spacing:1.370667pt;}
.ws12{word-spacing:1.578667pt;}
.ws1f{word-spacing:1.968000pt;}
.ws20{word-spacing:1.973333pt;}
.ws2c{word-spacing:2.144000pt;}
.ws2d{word-spacing:2.181333pt;}
.ws1d{word-spacing:2.266667pt;}
.ws2f{word-spacing:3.130667pt;}
.ws87{word-spacing:3.226667pt;}
.ws7b{word-spacing:3.696000pt;}
.ws76{word-spacing:3.989333pt;}
.ws1c{word-spacing:4.112000pt;}
.ws86{word-spacing:4.341333pt;}
.ws28{word-spacing:6.327493pt;}
.ws4e{word-spacing:6.576000pt;}
.ws88{word-spacing:7.170133pt;}
.ws70{word-spacing:7.182400pt;}
.ws72{word-spacing:8.893333pt;}
.ws35{word-spacing:9.132112pt;}
.ws51{word-spacing:9.283733pt;}
.ws47{word-spacing:9.966933pt;}
.ws48{word-spacing:10.478933pt;}
.wsa{word-spacing:10.666667pt;}
.ws4b{word-spacing:12.625600pt;}
.ws45{word-spacing:12.833067pt;}
.ws11{word-spacing:13.279467pt;}
.ws89{word-spacing:14.613867pt;}
.ws7c{word-spacing:17.600000pt;}
.ws4f{word-spacing:21.996800pt;}
.ws73{word-spacing:23.550933pt;}
.ws71{word-spacing:23.908267pt;}
.ws4a{word-spacing:25.489600pt;}
.ws8a{word-spacing:25.753600pt;}
.ws79{word-spacing:26.341333pt;}
.ws77{word-spacing:27.045333pt;}
.ws53{word-spacing:27.219733pt;}
.ws37{word-spacing:27.221333pt;}
.ws18{word-spacing:57.013333pt;}
.ws14{word-spacing:79.146667pt;}
.ws16{word-spacing:147.413333pt;}
.ws1b{word-spacing:154.720000pt;}
.ws19{word-spacing:157.706667pt;}
.ws1a{word-spacing:160.693333pt;}
.wsc{word-spacing:168.640000pt;}
.ws3b{word-spacing:221.504533pt;}
.ws15{word-spacing:239.253333pt;}
.ws17{word-spacing:259.520000pt;}
.wsb{word-spacing:406.677333pt;}
.ws6{word-spacing:408.000000pt;}
._19{margin-left:-383.999467pt;}
._29{margin-left:-168.640000pt;}
._71{margin-left:-14.280000pt;}
._3{margin-left:-12.701867pt;}
._21{margin-left:-11.429867pt;}
._53{margin-left:-10.203200pt;}
._2c{margin-left:-8.793067pt;}
._0{margin-left:-7.654400pt;}
._5{margin-left:-6.245333pt;}
._2{margin-left:-5.033600pt;}
._6{margin-left:-3.507733pt;}
._1{margin-left:-2.496000pt;}
._4{margin-left:-1.496000pt;}
._d{width:0.903467pt;}
._14{width:2.211733pt;}
._c{width:3.772267pt;}
._13{width:4.705067pt;}
._2b{width:5.737600pt;}
._7{width:6.635200pt;}
._b{width:7.562133pt;}
._44{width:8.458667pt;}
._12{width:9.363200pt;}
._8{width:10.583467pt;}
._e{width:12.020800pt;}
._f{width:13.082667pt;}
._58{width:14.492267pt;}
._2d{width:15.710933pt;}
._a{width:16.690667pt;}
._10{width:18.057600pt;}
._11{width:19.506667pt;}
._54{width:20.410133pt;}
._9{width:21.331200pt;}
._40{width:22.404800pt;}
._2e{width:23.695467pt;}
._3f{width:24.587200pt;}
._3e{width:25.546133pt;}
._45{width:26.453867pt;}
._2a{width:28.195200pt;}
._4b{width:29.200000pt;}
._48{width:30.958400pt;}
._42{width:32.530667pt;}
._4c{width:33.528000pt;}
._4e{width:34.836267pt;}
._49{width:35.827733pt;}
._43{width:37.282667pt;}
._62{width:38.373867pt;}
._3c{width:39.312533pt;}
._47{width:40.679467pt;}
._4a{width:41.629867pt;}
._64{width:42.647467pt;}
._41{width:43.536533pt;}
._3d{width:44.586667pt;}
._51{width:45.596827pt;}
._5a{width:46.728000pt;}
._5d{width:47.696000pt;}
._4d{width:48.640533pt;}
._52{width:49.561616pt;}
._56{width:50.506133pt;}
._3b{width:51.573867pt;}
._63{width:53.022933pt;}
._59{width:54.125867pt;}
._5c{width:55.228800pt;}
._46{width:56.836267pt;}
._22{width:58.674667pt;}
._50{width:60.391467pt;}
._5b{width:61.711467pt;}
._72{width:65.284267pt;}
._61{width:66.504533pt;}
._82{width:67.648533pt;}
._4f{width:76.005333pt;}
._5e{width:79.396267pt;}
._55{width:80.608000pt;}
._57{width:98.768000pt;}
._70{width:103.194667pt;}
._6b{width:129.920533pt;}
._35{width:132.551467pt;}
._3a{width:135.350933pt;}
._2f{width:140.026667pt;}
._80{width:142.976000pt;}
._77{width:152.773333pt;}
._76{width:159.566400pt;}
._79{width:162.570667pt;}
._7f{width:165.797333pt;}
._75{width:170.100267pt;}
._6c{width:175.617600pt;}
._68{width:179.360000pt;}
._37{width:182.960000pt;}
._5f{width:183.867200pt;}
._7e{width:185.333333pt;}
._60{width:187.739200pt;}
._81{width:190.366933pt;}
._38{width:195.990933pt;}
._32{width:198.977600pt;}
._7a{width:204.928000pt;}
._73{width:211.440000pt;}
._78{width:214.666667pt;}
._7c{width:217.893333pt;}
._7b{width:230.186667pt;}
._69{width:231.937600pt;}
._6f{width:241.874667pt;}
._39{width:249.377600pt;}
._74{width:250.512000pt;}
._1c{width:264.010667pt;}
._65{width:267.510933pt;}
._7d{width:272.729067pt;}
._20{width:297.834133pt;}
._66{width:311.306667pt;}
._67{width:319.467200pt;}
._33{width:333.804267pt;}
._16{width:393.586667pt;}
._6d{width:404.586667pt;}
._36{width:426.646933pt;}
._34{width:452.310933pt;}
._6e{width:455.564267pt;}
._6a{width:466.773333pt;}
._31{width:484.950933pt;}
._18{width:491.040000pt;}
._30{width:499.670933pt;}
._1e{width:518.737600pt;}
._1f{width:574.003200pt;}
._26{width:614.854933pt;}
._28{width:620.840533pt;}
._17{width:688.418133pt;}
._1d{width:747.421333pt;}
._27{width:807.893333pt;}
._23{width:837.434667pt;}
._1b{width:875.547200pt;}
._1a{width:929.996267pt;}
._24{width:963.466667pt;}
._25{width:1054.293333pt;}
._15{width:1185.617067pt;}
.fs7{font-size:34.202667pt;}
.fs3{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs6{font-size:69.333333pt;}
.fsa{font-size:74.666667pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.fs0{font-size:138.666667pt;}
.fs8{font-size:300.318400pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:59.296267pt;}
.y674{bottom:59.850667pt;}
.y4ca{bottom:62.517333pt;}
.y64a{bottom:64.086933pt;}
.y2df{bottom:65.984000pt;}
.y5b7{bottom:67.850667pt;}
.y4e1{bottom:69.984000pt;}
.y349{bottom:70.503067pt;}
.y41c{bottom:70.517333pt;}
.y505{bottom:71.284133pt;}
.y514{bottom:71.753200pt;}
.y497{bottom:71.850667pt;}
.y3a8{bottom:73.420267pt;}
.y23a{bottom:74.368000pt;}
.y224{bottom:74.421333pt;}
.y3aa{bottom:74.517333pt;}
.y40c{bottom:75.081200pt;}
.y59a{bottom:75.850667pt;}
.y64b{bottom:76.086933pt;}
.y323{bottom:77.420267pt;}
.y47e{bottom:78.517333pt;}
.y467{bottom:79.850667pt;}
.y368{bottom:80.086933pt;}
.y255{bottom:80.905333pt;}
.y549{bottom:81.517333pt;}
.y12e{bottom:82.517333pt;}
.y530{bottom:82.886667pt;}
.y57d{bottom:83.025600pt;}
.y1a8{bottom:83.153333pt;}
.y4a7{bottom:83.572000pt;}
.y37a{bottom:84.086933pt;}
.y442{bottom:84.372000pt;}
.y624{bottom:84.905333pt;}
.y494{bottom:85.184000pt;}
.y5f4{bottom:85.420267pt;}
.y2de{bottom:85.984000pt;}
.y194{bottom:86.937600pt;}
.y6{bottom:87.202133pt;}
.y108{bottom:87.660133pt;}
.y3d5{bottom:87.850667pt;}
.y295{bottom:88.086933pt;}
.y5c7{bottom:88.650667pt;}
.y2be{bottom:89.184000pt;}
.y4e0{bottom:89.984000pt;}
.y4e2{bottom:90.320533pt;}
.y23b{bottom:90.325333pt;}
.y348{bottom:90.503067pt;}
.y12a{bottom:90.517333pt;}
.y562{bottom:91.038667pt;}
.y504{bottom:91.284133pt;}
.y152{bottom:91.481333pt;}
.y616{bottom:91.572000pt;}
.y513{bottom:91.753200pt;}
.y396{bottom:91.850667pt;}
.y5b5{bottom:92.117333pt;}
.y5a{bottom:92.905333pt;}
.y632{bottom:93.184000pt;}
.y3a7{bottom:93.420267pt;}
.y239{bottom:94.373333pt;}
.y223{bottom:94.426667pt;}
.y26f{bottom:94.517333pt;}
.y28b{bottom:94.812133pt;}
.y40b{bottom:95.081200pt;}
.y4f7{bottom:95.620000pt;}
.y429{bottom:95.850667pt;}
.y115{bottom:96.086933pt;}
.y54f{bottom:96.317333pt;}
.y41b{bottom:96.905333pt;}
.y470{bottom:97.184000pt;}
.y322{bottom:97.420267pt;}
.y47d{bottom:98.517333pt;}
.y209{bottom:98.753333pt;}
.y450{bottom:98.753600pt;}
.y176{bottom:99.144400pt;}
.y466{bottom:99.850667pt;}
.y367{bottom:100.086933pt;}
.y254{bottom:100.905333pt;}
.y66f{bottom:101.420267pt;}
.y548{bottom:101.517333pt;}
.y2a9{bottom:102.238667pt;}
.y12d{bottom:102.517333pt;}
.y52f{bottom:102.886667pt;}
.y57c{bottom:103.025600pt;}
.y1a7{bottom:103.158667pt;}
.y1b8{bottom:103.316000pt;}
.y4a6{bottom:103.572000pt;}
.yf5{bottom:103.773067pt;}
.y1e7{bottom:104.028267pt;}
.y379{bottom:104.086933pt;}
.y441{bottom:104.372000pt;}
.y60d{bottom:104.905333pt;}
.y493{bottom:105.184000pt;}
.y5f3{bottom:105.420267pt;}
.y598{bottom:105.705333pt;}
.y2dd{bottom:105.984000pt;}
.y193{bottom:106.942933pt;}
.y107{bottom:107.660133pt;}
.y3d4{bottom:107.850667pt;}
.y294{bottom:108.086933pt;}
.y5c6{bottom:108.650667pt;}
.y2bd{bottom:109.184000pt;}
.y4df{bottom:109.984000pt;}
.y1c6{bottom:110.330667pt;}
.y347{bottom:110.503067pt;}
.y129{bottom:110.517333pt;}
.y649{bottom:110.753600pt;}
.y561{bottom:111.038667pt;}
.y503{bottom:111.284133pt;}
.y151{bottom:111.486667pt;}
.y615{bottom:111.572000pt;}
.y512{bottom:111.753200pt;}
.y395{bottom:111.850667pt;}
.y5b4{bottom:112.117333pt;}
.y289{bottom:112.145467pt;}
.y488{bottom:112.372000pt;}
.y631{bottom:113.184000pt;}
.y238{bottom:114.378667pt;}
.y222{bottom:114.432000pt;}
.y26e{bottom:114.517333pt;}
.y40a{bottom:115.081200pt;}
.y59{bottom:115.572000pt;}
.y428{bottom:115.850667pt;}
.y114{bottom:116.086933pt;}
.y54e{bottom:116.317333pt;}
.y41a{bottom:116.905333pt;}
.y46f{bottom:117.184000pt;}
.y8a{bottom:117.575200pt;}
.y3c6{bottom:117.705333pt;}
.y47c{bottom:118.517333pt;}
.y208{bottom:118.753333pt;}
.y44f{bottom:118.753600pt;}
.y175{bottom:119.149733pt;}
.y465{bottom:119.850667pt;}
.y3a6{bottom:120.086933pt;}
.y66e{bottom:121.420267pt;}
.y547{bottom:121.517333pt;}
.y2a8{bottom:122.238667pt;}
.y12c{bottom:122.517333pt;}
.y52e{bottom:122.886667pt;}
.y57b{bottom:123.025600pt;}
.y1a6{bottom:123.164000pt;}
.y5d9{bottom:123.317333pt;}
.y1b7{bottom:123.321333pt;}
.y4a5{bottom:123.572000pt;}
.yf4{bottom:123.773067pt;}
.y1e6{bottom:124.033600pt;}
.y321{bottom:124.086933pt;}
.y440{bottom:124.372000pt;}
.y669{bottom:124.414533pt;}
.y60c{bottom:124.905333pt;}
.y492{bottom:125.184000pt;}
.y597{bottom:125.705333pt;}
.y192{bottom:126.948267pt;}
.y253{bottom:127.572000pt;}
.y106{bottom:127.660133pt;}
.y3d3{bottom:127.850667pt;}
.y366{bottom:128.086933pt;}
.y12f{bottom:129.184000pt;}
.y28a{bottom:129.478800pt;}
.y4de{bottom:129.984000pt;}
.y1c5{bottom:130.336000pt;}
.y346{bottom:130.503067pt;}
.y128{bottom:130.517333pt;}
.y560{bottom:131.038667pt;}
.y502{bottom:131.284133pt;}
.y150{bottom:131.492000pt;}
.y614{bottom:131.572000pt;}
.y511{bottom:131.753200pt;}
.y394{bottom:131.850667pt;}
.y5f2{bottom:132.086933pt;}
.y5b3{bottom:132.117333pt;}
.y35e{bottom:132.372000pt;}
.y2dc{bottom:132.650667pt;}
.y630{bottom:133.184000pt;}
.y58{bottom:134.238667pt;}
.y237{bottom:134.384000pt;}
.y221{bottom:134.437333pt;}
.y26d{bottom:134.517333pt;}
.y293{bottom:134.753600pt;}
.y409{bottom:135.081200pt;}
.y5c5{bottom:135.317333pt;}
.y427{bottom:135.850667pt;}
.y113{bottom:136.086933pt;}
.y54d{bottom:136.317333pt;}
.y419{bottom:136.905333pt;}
.y486{bottom:137.184000pt;}
.y89{bottom:137.575200pt;}
.y3c5{bottom:137.705333pt;}
.y47b{bottom:138.517333pt;}
.y207{bottom:138.753333pt;}
.y44e{bottom:138.753600pt;}
.y174{bottom:139.155067pt;}
.y464{bottom:139.850667pt;}
.y618{bottom:141.184000pt;}
.y66d{bottom:141.420267pt;}
.y546{bottom:141.517333pt;}
.y2a7{bottom:142.238667pt;}
.y136{bottom:142.517333pt;}
.y52d{bottom:142.886533pt;}
.y57a{bottom:143.025733pt;}
.y1a5{bottom:143.169333pt;}
.yd0{bottom:143.236400pt;}
.y5d8{bottom:143.317333pt;}
.y64f{bottom:143.572000pt;}
.yf3{bottom:143.773067pt;}
.y46e{bottom:143.850667pt;}
.y1e5{bottom:144.038933pt;}
.y378{bottom:144.086933pt;}
.y43f{bottom:144.372000pt;}
.y668{bottom:144.414533pt;}
.y60b{bottom:144.905333pt;}
.y491{bottom:145.184000pt;}
.y596{bottom:145.705333pt;}
.y47f{bottom:146.517333pt;}
.y648{bottom:146.753600pt;}
.y191{bottom:146.953600pt;}
.y105{bottom:147.660133pt;}
.y3d2{bottom:147.850667pt;}
.y365{bottom:148.086933pt;}
.y286{bottom:148.465733pt;}
.y1c{bottom:148.870000pt;}
.y12b{bottom:149.184000pt;}
.y4dd{bottom:149.984000pt;}
.y4a4{bottom:150.238667pt;}
.y1c4{bottom:150.341333pt;}
.y345{bottom:150.503067pt;}
.y127{bottom:150.517333pt;}
.y55f{bottom:151.038667pt;}
.y501{bottom:151.284133pt;}
.y14f{bottom:151.497333pt;}
.y613{bottom:151.572000pt;}
.y510{bottom:151.753200pt;}
.y393{bottom:151.850667pt;}
.y5b2{bottom:152.117333pt;}
.y35d{bottom:152.372000pt;}
.y62f{bottom:153.184000pt;}
.y236{bottom:154.389333pt;}
.y220{bottom:154.442667pt;}
.y26c{bottom:154.517333pt;}
.y408{bottom:155.081200pt;}
.y426{bottom:155.850667pt;}
.y112{bottom:156.086933pt;}
.y54c{bottom:156.317333pt;}
.y57{bottom:156.905333pt;}
.y288{bottom:157.132400pt;}
.y4bc{bottom:157.184000pt;}
.y88{bottom:157.575200pt;}
.y3c4{bottom:157.705333pt;}
.y47a{bottom:158.517333pt;}
.y206{bottom:158.753333pt;}
.y44d{bottom:158.753600pt;}
.y173{bottom:159.160400pt;}
.y463{bottom:159.850667pt;}
.y66c{bottom:161.420267pt;}
.y545{bottom:161.517333pt;}
.ycf{bottom:161.903067pt;}
.y2a6{bottom:162.238667pt;}
.y135{bottom:162.517333pt;}
.y52c{bottom:162.886533pt;}
.y579{bottom:163.025733pt;}
.y1a4{bottom:163.174667pt;}
.y1b6{bottom:163.317333pt;}
.y252{bottom:163.572000pt;}
.yf2{bottom:163.773067pt;}
.y485{bottom:163.850667pt;}
.y1e4{bottom:164.044267pt;}
.y377{bottom:164.086933pt;}
.y43e{bottom:164.372000pt;}
.y667{bottom:164.414533pt;}
.y60a{bottom:164.905333pt;}
.y490{bottom:165.184000pt;}
.y320{bottom:165.420267pt;}
.y595{bottom:165.705333pt;}
.y285{bottom:165.799067pt;}
.y57f{bottom:166.517333pt;}
.y647{bottom:166.753600pt;}
.y190{bottom:166.958933pt;}
.y104{bottom:167.660133pt;}
.y3d1{bottom:167.850667pt;}
.y364{bottom:168.086933pt;}
.y2db{bottom:168.650667pt;}
.y1b{bottom:168.870000pt;}
.y2bc{bottom:169.184000pt;}
.y4dc{bottom:169.984000pt;}
.y1c3{bottom:170.346667pt;}
.y344{bottom:170.503067pt;}
.y126{bottom:170.517333pt;}
.y55e{bottom:171.038667pt;}
.y500{bottom:171.284133pt;}
.y5c4{bottom:171.317333pt;}
.y14e{bottom:171.502667pt;}
.y612{bottom:171.572000pt;}
.y50f{bottom:171.753200pt;}
.y392{bottom:171.850667pt;}
.y5b1{bottom:172.117333pt;}
.y35c{bottom:172.372000pt;}
.y62e{bottom:173.184000pt;}
.y235{bottom:174.394667pt;}
.y21f{bottom:174.448000pt;}
.y287{bottom:174.465733pt;}
.y26b{bottom:174.517333pt;}
.y407{bottom:175.081200pt;}
.y425{bottom:175.850667pt;}
.y111{bottom:176.086933pt;}
.y418{bottom:176.905333pt;}
.y87{bottom:177.575200pt;}
.y3c3{bottom:177.705333pt;}
.y479{bottom:178.517333pt;}
.y205{bottom:178.753333pt;}
.y44c{bottom:178.753600pt;}
.y172{bottom:179.165733pt;}
.y56{bottom:179.572000pt;}
.y462{bottom:179.850667pt;}
.yce{bottom:180.569733pt;}
.y66b{bottom:181.420267pt;}
.y544{bottom:181.517333pt;}
.y3c{bottom:182.238667pt;}
.ycc{bottom:182.263733pt;}
.y134{bottom:182.517333pt;}
.y52b{bottom:182.886533pt;}
.y578{bottom:183.025733pt;}
.y284{bottom:183.132400pt;}
.y1a3{bottom:183.180000pt;}
.y1b5{bottom:183.317333pt;}
.y251{bottom:183.572000pt;}
.yf1{bottom:183.773067pt;}
.y1e3{bottom:184.049600pt;}
.y376{bottom:184.086933pt;}
.y43d{bottom:184.372000pt;}
.y666{bottom:184.414533pt;}
.y609{bottom:184.905333pt;}
.y307{bottom:185.184000pt;}
.y31f{bottom:185.420267pt;}
.y594{bottom:185.705333pt;}
.y646{bottom:186.753600pt;}
.y18f{bottom:186.964267pt;}
.y3d0{bottom:187.850667pt;}
.y363{bottom:188.086933pt;}
.y2da{bottom:188.650667pt;}
.y1a{bottom:188.870000pt;}
.y2bb{bottom:189.184000pt;}
.y4db{bottom:189.984000pt;}
.y1c2{bottom:190.352000pt;}
.y343{bottom:190.503067pt;}
.y125{bottom:190.517333pt;}
.y55d{bottom:191.038667pt;}
.y4ff{bottom:191.284133pt;}
.y5c3{bottom:191.317333pt;}
.y14d{bottom:191.508000pt;}
.y4a3{bottom:191.572000pt;}
.y50e{bottom:191.753200pt;}
.y391{bottom:191.850667pt;}
.y5b0{bottom:192.117333pt;}
.y54b{bottom:192.317333pt;}
.y35b{bottom:192.372000pt;}
.y4bb{bottom:193.184000pt;}
.y5f1{bottom:193.420267pt;}
.y234{bottom:194.400000pt;}
.y21e{bottom:194.453333pt;}
.y26a{bottom:194.517333pt;}
.y45b{bottom:194.753600pt;}
.y406{bottom:195.081200pt;}
.y424{bottom:195.850667pt;}
.y110{bottom:196.086933pt;}
.y417{bottom:196.905333pt;}
.y86{bottom:197.575200pt;}
.y3c2{bottom:197.705333pt;}
.y478{bottom:198.517333pt;}
.y204{bottom:198.753333pt;}
.y44b{bottom:198.753600pt;}
.y171{bottom:199.171067pt;}
.ycd{bottom:199.236400pt;}
.y461{bottom:199.850667pt;}
.ycb{bottom:200.930400pt;}
.y487{bottom:201.184000pt;}
.y46b{bottom:201.420267pt;}
.y543{bottom:201.517333pt;}
.y283{bottom:202.119467pt;}
.y3b{bottom:202.238667pt;}
.y133{bottom:202.517333pt;}
.y1b9{bottom:202.753600pt;}
.y52a{bottom:202.886533pt;}
.y1a2{bottom:203.185333pt;}
.y1b4{bottom:203.317333pt;}
.y250{bottom:203.572000pt;}
.yf0{bottom:203.773067pt;}
.y1e2{bottom:204.054933pt;}
.ya9{bottom:204.086933pt;}
.y43c{bottom:204.372000pt;}
.y665{bottom:204.414533pt;}
.y608{bottom:204.905333pt;}
.y306{bottom:205.184000pt;}
.y31e{bottom:205.420267pt;}
.y593{bottom:205.705333pt;}
.y645{bottom:206.753600pt;}
.y18e{bottom:206.969600pt;}
.y3cf{bottom:207.850667pt;}
.y362{bottom:208.086933pt;}
.y2d9{bottom:208.650667pt;}
.y19{bottom:208.870000pt;}
.y3e8{bottom:209.184000pt;}
.y4da{bottom:209.984000pt;}
.y1c1{bottom:210.357333pt;}
.y342{bottom:210.503067pt;}
.y124{bottom:210.517333pt;}
.y27f{bottom:210.786133pt;}
.y55c{bottom:211.038667pt;}
.y4fe{bottom:211.284133pt;}
.y5c2{bottom:211.317333pt;}
.y14c{bottom:211.513333pt;}
.y4a2{bottom:211.572000pt;}
.y50d{bottom:211.753200pt;}
.y390{bottom:211.850667pt;}
.y54a{bottom:212.317333pt;}
.y35a{bottom:212.372000pt;}
.y4ba{bottom:213.184000pt;}
.y5f0{bottom:213.420267pt;}
.y233{bottom:214.405333pt;}
.y21d{bottom:214.458667pt;}
.y269{bottom:214.517333pt;}
.y405{bottom:215.081200pt;}
.y2ba{bottom:215.850667pt;}
.y10f{bottom:216.086933pt;}
.y416{bottom:216.905333pt;}
.y85{bottom:217.575200pt;}
.y3c0{bottom:217.705333pt;}
.y477{bottom:218.517333pt;}
.y203{bottom:218.753333pt;}
.y5f7{bottom:218.753600pt;}
.y170{bottom:219.176400pt;}
.y281{bottom:219.452800pt;}
.y460{bottom:219.850667pt;}
.yca{bottom:220.841733pt;}
.y552{bottom:221.184000pt;}
.y46a{bottom:221.420267pt;}
.y542{bottom:221.517333pt;}
.y3a{bottom:222.238667pt;}
.y132{bottom:222.517333pt;}
.y4c4{bottom:222.753600pt;}
.y529{bottom:222.886533pt;}
.y577{bottom:223.025733pt;}
.y1a1{bottom:223.190667pt;}
.y1b3{bottom:223.317333pt;}
.y24f{bottom:223.572000pt;}
.yef{bottom:223.773067pt;}
.y1e1{bottom:224.060267pt;}
.ya8{bottom:224.086933pt;}
.y43b{bottom:224.372000pt;}
.y664{bottom:224.414533pt;}
.y55{bottom:224.905333pt;}
.y305{bottom:225.184000pt;}
.y31d{bottom:225.420267pt;}
.y592{bottom:225.705333pt;}
.y644{bottom:226.753600pt;}
.y18d{bottom:226.974933pt;}
.y3ce{bottom:227.850667pt;}
.y361{bottom:228.086933pt;}
.y27e{bottom:228.119467pt;}
.y2d8{bottom:228.650667pt;}
.y3e7{bottom:229.184000pt;}
.y4d9{bottom:229.984000pt;}
.y64e{bottom:230.238667pt;}
.y1c0{bottom:230.362667pt;}
.y341{bottom:230.503067pt;}
.y123{bottom:230.517333pt;}
.y45a{bottom:230.753600pt;}
.y55a{bottom:231.038667pt;}
.y4fd{bottom:231.284133pt;}
.y5c1{bottom:231.317333pt;}
.y14b{bottom:231.518667pt;}
.y4a1{bottom:231.572000pt;}
.y50c{bottom:231.753200pt;}
.y5af{bottom:232.117333pt;}
.y359{bottom:232.372000pt;}
.y4b9{bottom:233.184000pt;}
.y5ef{bottom:233.420267pt;}
.y21c{bottom:234.464000pt;}
.y268{bottom:234.517333pt;}
.y404{bottom:235.081200pt;}
.y423{bottom:235.850667pt;}
.y10e{bottom:236.086933pt;}
.y280{bottom:236.786133pt;}
.y415{bottom:236.905333pt;}
.y84{bottom:237.575200pt;}
.y3c1{bottom:237.705333pt;}
.y38f{bottom:238.517333pt;}
.y16f{bottom:239.181733pt;}
.yc9{bottom:239.508400pt;}
.y45f{bottom:239.850667pt;}
.y232{bottom:241.069333pt;}
.y3a9{bottom:241.184000pt;}
.yc8{bottom:241.202400pt;}
.y469{bottom:241.420267pt;}
.y541{bottom:241.517333pt;}
.y39{bottom:242.238667pt;}
.y131{bottom:242.517333pt;}
.y5ff{bottom:242.753600pt;}
.y528{bottom:242.886533pt;}
.y576{bottom:243.025733pt;}
.y1a0{bottom:243.196000pt;}
.y5d7{bottom:243.317333pt;}
.y24e{bottom:243.572000pt;}
.yee{bottom:243.773067pt;}
.y1e0{bottom:244.065600pt;}
.ya7{bottom:244.086933pt;}
.y43a{bottom:244.372000pt;}
.y663{bottom:244.414533pt;}
.y5cd{bottom:244.905333pt;}
.y304{bottom:245.184000pt;}
.y202{bottom:245.420000pt;}
.y31c{bottom:245.420267pt;}
.y27d{bottom:245.452800pt;}
.y591{bottom:245.705333pt;}
.y643{bottom:246.753600pt;}
.y54{bottom:247.572000pt;}
.y3cd{bottom:247.850667pt;}
.y2d7{bottom:248.650667pt;}
.y48b{bottom:249.184000pt;}
.y4d8{bottom:249.984000pt;}
.y2a5{bottom:250.238667pt;}
.y1bf{bottom:250.368000pt;}
.y340{bottom:250.503067pt;}
.y122{bottom:250.517333pt;}
.y55b{bottom:251.038667pt;}
.y4fc{bottom:251.284133pt;}
.y5c0{bottom:251.317333pt;}
.y14a{bottom:251.524000pt;}
.y4a0{bottom:251.572000pt;}
.y50b{bottom:251.753200pt;}
.y5ae{bottom:252.117333pt;}
.y358{bottom:252.372000pt;}
.y4f6{bottom:252.553200pt;}
.y4b8{bottom:253.184000pt;}
.y5ee{bottom:253.420267pt;}
.y282{bottom:254.119467pt;}
.y21b{bottom:254.469333pt;}
.y267{bottom:254.517333pt;}
.y403{bottom:255.081200pt;}
.y3e6{bottom:255.850667pt;}
.y10d{bottom:256.086933pt;}
.y413{bottom:256.905333pt;}
.y2b9{bottom:257.184000pt;}
.y459{bottom:257.420267pt;}
.y83{bottom:257.575200pt;}
.y476{bottom:258.517333pt;}
.y16e{bottom:259.187067pt;}
.y45e{bottom:259.850667pt;}
.yc7{bottom:259.869067pt;}
.y44a{bottom:261.420267pt;}
.y540{bottom:261.517333pt;}
.y38{bottom:262.238667pt;}
.y1b2{bottom:262.394667pt;}
.y2ef{bottom:262.517333pt;}
.y527{bottom:262.886533pt;}
.y575{bottom:263.025733pt;}
.y19f{bottom:263.201333pt;}
.y5d6{bottom:263.317333pt;}
.y24d{bottom:263.572000pt;}
.yed{bottom:263.773067pt;}
.y1df{bottom:264.070933pt;}
.ya6{bottom:264.086933pt;}
.y439{bottom:264.372000pt;}
.y662{bottom:264.414533pt;}
.y5cc{bottom:264.905333pt;}
.y303{bottom:265.184000pt;}
.y31b{bottom:265.420267pt;}
.y590{bottom:265.705333pt;}
.y642{bottom:266.753600pt;}
.y18c{bottom:267.494000pt;}
.y3cc{bottom:267.850667pt;}
.y2d6{bottom:268.650667pt;}
.y130{bottom:269.184000pt;}
.y4d7{bottom:269.984000pt;}
.y53{bottom:270.238667pt;}
.y1be{bottom:270.373333pt;}
.y33f{bottom:270.503067pt;}
.y121{bottom:270.517333pt;}
.y4fb{bottom:271.284133pt;}
.y5bf{bottom:271.317333pt;}
.y149{bottom:271.529333pt;}
.y49f{bottom:271.572000pt;}
.y50a{bottom:271.753200pt;}
.y5ad{bottom:272.117333pt;}
.y357{bottom:272.372000pt;}
.y4f5{bottom:272.553200pt;}
.y623{bottom:272.905333pt;}
.y279{bottom:273.106400pt;}
.y4b7{bottom:273.184000pt;}
.y5ed{bottom:273.420267pt;}
.y21a{bottom:274.474667pt;}
.y266{bottom:274.517333pt;}
.y402{bottom:275.081200pt;}
.y422{bottom:275.850667pt;}
.y10c{bottom:276.086933pt;}
.y414{bottom:276.905333pt;}
.y18b{bottom:276.934000pt;}
.y2b8{bottom:277.184000pt;}
.y81{bottom:277.575200pt;}
.y475{bottom:278.517333pt;}
.y16d{bottom:279.192400pt;}
.yc6{bottom:279.780533pt;}
.y38e{bottom:279.850667pt;}
.y201{bottom:281.420000pt;}
.y449{bottom:281.420267pt;}
.y53f{bottom:281.517333pt;}
.y37{bottom:282.238667pt;}
.y1b1{bottom:282.400000pt;}
.y2ee{bottom:282.517333pt;}
.y526{bottom:282.886533pt;}
.y574{bottom:283.025733pt;}
.y19e{bottom:283.206667pt;}
.y5d5{bottom:283.317333pt;}
.y24c{bottom:283.572000pt;}
.yec{bottom:283.773067pt;}
.y1de{bottom:284.076267pt;}
.ya5{bottom:284.086933pt;}
.y3bf{bottom:284.372000pt;}
.y661{bottom:284.414533pt;}
.y607{bottom:284.905333pt;}
.y302{bottom:285.184000pt;}
.y31a{bottom:285.420267pt;}
.y58f{bottom:285.705333pt;}
.y57e{bottom:286.517333pt;}
.y641{bottom:286.753600pt;}
.y3cb{bottom:287.850667pt;}
.y2d5{bottom:288.650667pt;}
.y52{bottom:288.905333pt;}
.y673{bottom:289.184000pt;}
.y5cb{bottom:289.789333pt;}
.y4d6{bottom:289.984000pt;}
.y2a4{bottom:290.238667pt;}
.y1bd{bottom:290.378667pt;}
.y277{bottom:290.439733pt;}
.y33e{bottom:290.503067pt;}
.y120{bottom:290.517333pt;}
.y4fa{bottom:291.284133pt;}
.y5be{bottom:291.317333pt;}
.y148{bottom:291.534667pt;}
.y49e{bottom:291.572000pt;}
.y580{bottom:291.850667pt;}
.y5ac{bottom:292.117333pt;}
.y356{bottom:292.372000pt;}
.y4f4{bottom:292.553200pt;}
.y622{bottom:292.905333pt;}
.y4b6{bottom:293.184000pt;}
.y458{bottom:293.420267pt;}
.y265{bottom:294.517333pt;}
.y401{bottom:295.081200pt;}
.y421{bottom:295.850667pt;}
.y10b{bottom:296.086933pt;}
.y509{bottom:297.086533pt;}
.y2b7{bottom:297.184000pt;}
.y82{bottom:297.575200pt;}
.y559{bottom:297.705333pt;}
.yc5{bottom:298.447200pt;}
.y18{bottom:298.470000pt;}
.y474{bottom:298.517333pt;}
.y27c{bottom:299.106400pt;}
.y16c{bottom:299.197733pt;}
.y38d{bottom:299.850667pt;}
.y219{bottom:301.138667pt;}
.y3b2{bottom:301.184000pt;}
.y200{bottom:301.420000pt;}
.y448{bottom:301.420267pt;}
.y53e{bottom:301.517333pt;}
.y36{bottom:302.238667pt;}
.y1b0{bottom:302.405333pt;}
.y2ed{bottom:302.517333pt;}
.y3a5{bottom:302.753600pt;}
.y525{bottom:302.886533pt;}
.y573{bottom:303.025733pt;}
.y19d{bottom:303.212000pt;}
.y5d4{bottom:303.317333pt;}
.y24b{bottom:303.572000pt;}
.yeb{bottom:303.773067pt;}
.y1dd{bottom:304.081600pt;}
.ya4{bottom:304.086933pt;}
.y437{bottom:304.372000pt;}
.y660{bottom:304.414533pt;}
.y606{bottom:304.905333pt;}
.y48f{bottom:305.184000pt;}
.y319{bottom:305.420267pt;}
.y58e{bottom:305.705333pt;}
.y18a{bottom:306.067333pt;}
.y640{bottom:306.753600pt;}
.y51{bottom:307.572000pt;}
.y276{bottom:307.773067pt;}
.y3ca{bottom:307.850667pt;}
.y2d4{bottom:308.650667pt;}
.y599{bottom:309.184000pt;}
.y4d5{bottom:309.984000pt;}
.y2a3{bottom:310.238667pt;}
.y1bc{bottom:310.384000pt;}
.y33d{bottom:310.503067pt;}
.y11f{bottom:310.517333pt;}
.y5bd{bottom:311.317333pt;}
.y147{bottom:311.540000pt;}
.y49d{bottom:311.572000pt;}
.y301{bottom:311.850667pt;}
.y5ab{bottom:312.117333pt;}
.y355{bottom:312.372000pt;}
.y4f3{bottom:312.553200pt;}
.y621{bottom:312.905333pt;}
.y4b5{bottom:313.184000pt;}
.y457{bottom:313.420267pt;}
.y264{bottom:314.517333pt;}
.y400{bottom:315.081200pt;}
.y189{bottom:315.507333pt;}
.y420{bottom:315.850667pt;}
.y10a{bottom:316.086933pt;}
.y27b{bottom:316.439733pt;}
.y4f9{bottom:316.617467pt;}
.yc4{bottom:317.113867pt;}
.y2b6{bottom:317.184000pt;}
.y17{bottom:318.470000pt;}
.y473{bottom:318.517333pt;}
.y38c{bottom:319.850667pt;}
.y5ec{bottom:320.086933pt;}
.y1ff{bottom:321.420000pt;}
.y447{bottom:321.420267pt;}
.y53d{bottom:321.517333pt;}
.y35{bottom:322.238667pt;}
.y231{bottom:322.410667pt;}
.y39b{bottom:322.517333pt;}
.y524{bottom:322.886533pt;}
.y572{bottom:323.025733pt;}
.y19c{bottom:323.217333pt;}
.y5d3{bottom:323.317333pt;}
.y24a{bottom:323.572000pt;}
.yea{bottom:323.773067pt;}
.ya3{bottom:324.086933pt;}
.y438{bottom:324.372000pt;}
.y5ca{bottom:324.905333pt;}
.y275{bottom:325.106400pt;}
.y48e{bottom:325.184000pt;}
.y318{bottom:325.420267pt;}
.y58d{bottom:325.705333pt;}
.y45d{bottom:326.517333pt;}
.y3c9{bottom:327.850667pt;}
.y2d3{bottom:328.650667pt;}
.y1af{bottom:329.069333pt;}
.y2ec{bottom:329.184000pt;}
.y4d4{bottom:329.984000pt;}
.y50{bottom:330.238667pt;}
.y1bb{bottom:330.389333pt;}
.y33c{bottom:330.503067pt;}
.y11e{bottom:330.517333pt;}
.y65f{bottom:331.081200pt;}
.y5bc{bottom:331.317333pt;}
.y146{bottom:331.545333pt;}
.y49c{bottom:331.572000pt;}
.y5aa{bottom:332.117333pt;}
.y354{bottom:332.372000pt;}
.y4f2{bottom:332.553200pt;}
.y4b4{bottom:333.184000pt;}
.y63f{bottom:333.420267pt;}
.y27a{bottom:333.773067pt;}
.y263{bottom:334.517333pt;}
.y3ff{bottom:335.081200pt;}
.yc3{bottom:335.780533pt;}
.y41f{bottom:335.850667pt;}
.y292{bottom:336.086933pt;}
.y2b5{bottom:337.184000pt;}
.y620{bottom:337.789333pt;}
.y2a2{bottom:338.238667pt;}
.y16{bottom:338.470000pt;}
.y472{bottom:338.517333pt;}
.y5fe{bottom:338.753600pt;}
.y38b{bottom:339.850667pt;}
.y3a4{bottom:340.086933pt;}
.y582{bottom:341.184000pt;}
.y1fe{bottom:341.420000pt;}
.y446{bottom:341.420267pt;}
.y53c{bottom:341.517333pt;}
.y34{bottom:342.238667pt;}
.y230{bottom:342.416000pt;}
.y274{bottom:342.439733pt;}
.y218{bottom:342.469333pt;}
.y39a{bottom:342.517333pt;}
.y109{bottom:342.753600pt;}
.y523{bottom:342.886533pt;}
.y5d2{bottom:343.317333pt;}
.y249{bottom:343.572000pt;}
.ye9{bottom:343.773067pt;}
.y16b{bottom:343.814000pt;}
.y1dc{bottom:344.054933pt;}
.ya2{bottom:344.086933pt;}
.y80{bottom:344.241867pt;}
.y188{bottom:344.640667pt;}
.y3be{bottom:344.905333pt;}
.y48d{bottom:345.184000pt;}
.y317{bottom:345.420267pt;}
.y58c{bottom:345.705333pt;}
.y46d{bottom:346.517333pt;}
.y300{bottom:347.850667pt;}
.y2d2{bottom:348.650667pt;}
.y672{bottom:349.184000pt;}
.y19b{bottom:349.881333pt;}
.y4d3{bottom:349.984000pt;}
.y1ba{bottom:350.394667pt;}
.y33b{bottom:350.503067pt;}
.y11d{bottom:350.517333pt;}
.y4c8{bottom:351.038667pt;}
.y5bb{bottom:351.317333pt;}
.y145{bottom:351.550667pt;}
.y49b{bottom:351.572000pt;}
.y5eb{bottom:352.086933pt;}
.y5a9{bottom:352.117333pt;}
.y353{bottom:352.372000pt;}
.y4f1{bottom:352.553200pt;}
.y4f{bottom:352.905333pt;}
.y4b3{bottom:353.184000pt;}
.y16a{bottom:353.254000pt;}
.yc2{bottom:354.447200pt;}
.y42d{bottom:354.517333pt;}
.y3fe{bottom:355.081200pt;}
.y41e{bottom:355.850667pt;}
.y291{bottom:356.086933pt;}
.y64d{bottom:356.456000pt;}
.y2b4{bottom:357.184000pt;}
.y2a1{bottom:358.238667pt;}
.y71{bottom:358.245333pt;}
.y15{bottom:358.470000pt;}
.y471{bottom:358.517333pt;}
.y5fd{bottom:358.753600pt;}
.y278{bottom:359.773067pt;}
.y38a{bottom:359.850667pt;}
.y3a3{bottom:360.086933pt;}
.y262{bottom:361.184000pt;}
.y1fd{bottom:361.420000pt;}
.y445{bottom:361.420267pt;}
.y53b{bottom:361.517333pt;}
.y33{bottom:362.238667pt;}
.y22f{bottom:362.421333pt;}
.y217{bottom:362.474667pt;}
.y399{bottom:362.517333pt;}
.y522{bottom:362.886533pt;}
.y571{bottom:363.025733pt;}
.y187{bottom:363.307333pt;}
.y5d1{bottom:363.317333pt;}
.y185{bottom:363.414000pt;}
.y248{bottom:363.572000pt;}
.ye8{bottom:363.773067pt;}
.y4be{bottom:363.850667pt;}
.y1db{bottom:364.060267pt;}
.ya1{bottom:364.086933pt;}
.y3bd{bottom:364.905333pt;}
.y2eb{bottom:365.184000pt;}
.y316{bottom:365.420267pt;}
.y58b{bottom:365.705333pt;}
.y65e{bottom:367.081200pt;}
.y2ff{bottom:367.850667pt;}
.y2d1{bottom:368.650667pt;}
.y3b3{bottom:369.184000pt;}
.y63e{bottom:369.420267pt;}
.y4d2{bottom:369.984000pt;}
.y1ae{bottom:370.400000pt;}
.y33a{bottom:370.503067pt;}
.y11c{bottom:370.517333pt;}
.y436{bottom:371.038667pt;}
.y5ba{bottom:371.317333pt;}
.y144{bottom:371.556000pt;}
.y4e{bottom:371.572000pt;}
.y5ea{bottom:372.086933pt;}
.y5a8{bottom:372.117333pt;}
.y352{bottom:372.372000pt;}
.y4f0{bottom:372.553200pt;}
.y61f{bottom:372.905333pt;}
.yc1{bottom:373.113867pt;}
.y4b2{bottom:373.184000pt;}
.y42c{bottom:374.517333pt;}
.y3fd{bottom:375.081200pt;}
.y41d{bottom:375.850667pt;}
.y290{bottom:376.086933pt;}
.y3e5{bottom:377.184000pt;}
.y2a0{bottom:378.238667pt;}
.y14{bottom:378.470000pt;}
.y5fc{bottom:378.753600pt;}
.y272{bottom:378.760000pt;}
.y389{bottom:379.850667pt;}
.y3a2{bottom:380.086933pt;}
.y70{bottom:380.912000pt;}
.y1fc{bottom:381.420000pt;}
.y444{bottom:381.420267pt;}
.y53a{bottom:381.517333pt;}
.y186{bottom:381.974000pt;}
.y32{bottom:382.238667pt;}
.y22e{bottom:382.426667pt;}
.y216{bottom:382.480000pt;}
.y398{bottom:382.517333pt;}
.y521{bottom:382.886533pt;}
.y570{bottom:383.025733pt;}
.y5d0{bottom:383.317333pt;}
.y247{bottom:383.572000pt;}
.ye7{bottom:383.773067pt;}
.y2b3{bottom:383.850667pt;}
.y1da{bottom:384.065600pt;}
.ya0{bottom:384.086933pt;}
.y412{bottom:384.905333pt;}
.y2ea{bottom:385.184000pt;}
.y58a{bottom:385.705333pt;}
.y169{bottom:386.507333pt;}
.y65d{bottom:387.081200pt;}
.y271{bottom:387.426667pt;}
.y2fe{bottom:387.850667pt;}
.y2d0{bottom:388.650667pt;}
.y671{bottom:389.184000pt;}
.y63d{bottom:389.420267pt;}
.y3bc{bottom:389.789333pt;}
.y4d1{bottom:389.984000pt;}
.y4d{bottom:390.238667pt;}
.y1ad{bottom:390.405333pt;}
.y339{bottom:390.503067pt;}
.y11b{bottom:390.517333pt;}
.y19a{bottom:391.212000pt;}
.y5b9{bottom:391.317333pt;}
.y143{bottom:391.561333pt;}
.y49a{bottom:391.572000pt;}
.y48c{bottom:391.850667pt;}
.y5e9{bottom:392.086933pt;}
.y5a7{bottom:392.117333pt;}
.y351{bottom:392.372000pt;}
.y4ef{bottom:392.553200pt;}
.y61e{bottom:392.905333pt;}
.y4b1{bottom:393.184000pt;}
.yc0{bottom:393.474400pt;}
.y48a{bottom:394.517333pt;}
.y3fc{bottom:395.081200pt;}
.y62d{bottom:395.850667pt;}
.y28f{bottom:396.086933pt;}
.y273{bottom:396.093333pt;}
.y3e4{bottom:397.184000pt;}
.y29e{bottom:398.238667pt;}
.y13{bottom:398.470000pt;}
.y5fb{bottom:398.753600pt;}
.y388{bottom:399.850667pt;}
.y3a1{bottom:400.086933pt;}
.y1fb{bottom:401.420000pt;}
.y315{bottom:401.420267pt;}
.y539{bottom:401.517333pt;}
.y184{bottom:401.987333pt;}
.y31{bottom:402.238667pt;}
.y22d{bottom:402.432000pt;}
.y215{bottom:402.485333pt;}
.y261{bottom:402.517333pt;}
.y520{bottom:402.886533pt;}
.y56f{bottom:403.025733pt;}
.y5cf{bottom:403.317333pt;}
.y245{bottom:403.572000pt;}
.y6f{bottom:403.578267pt;}
.ye6{bottom:403.773067pt;}
.y2b2{bottom:403.850667pt;}
.y1d9{bottom:404.070933pt;}
.y9f{bottom:404.086933pt;}
.y7f{bottom:404.775200pt;}
.y411{bottom:404.905333pt;}
.y168{bottom:405.174000pt;}
.y2e9{bottom:405.184000pt;}
.y589{bottom:405.705333pt;}
.y65c{bottom:407.081200pt;}
.y2fd{bottom:407.850667pt;}
.y2cf{bottom:408.650667pt;}
.y670{bottom:409.184000pt;}
.y63c{bottom:409.420267pt;}
.y4d0{bottom:409.984000pt;}
.y1ac{bottom:410.410667pt;}
.y338{bottom:410.503067pt;}
.y11a{bottom:410.517333pt;}
.y199{bottom:411.217333pt;}
.y5b8{bottom:411.317333pt;}
.y142{bottom:411.566667pt;}
.y499{bottom:411.572000pt;}
.y5e8{bottom:412.086933pt;}
.y350{bottom:412.372000pt;}
.y4ee{bottom:412.553200pt;}
.y4c{bottom:412.905333pt;}
.y4b0{bottom:413.184000pt;}
.ybf{bottom:413.385867pt;}
.y4c3{bottom:414.517333pt;}
.y164{bottom:414.614000pt;}
.y3fb{bottom:415.081200pt;}
.y62c{bottom:415.850667pt;}
.y28e{bottom:416.086933pt;}
.y3e3{bottom:417.184000pt;}
.y29f{bottom:418.238667pt;}
.y12{bottom:418.470000pt;}
.y5fa{bottom:418.753600pt;}
.y387{bottom:419.850667pt;}
.y3a0{bottom:420.086933pt;}
.y270{bottom:420.887067pt;}
.y489{bottom:421.184000pt;}
.y1fa{bottom:421.420000pt;}
.y314{bottom:421.420267pt;}
.y538{bottom:421.517333pt;}
.y183{bottom:421.787333pt;}
.y30{bottom:422.238667pt;}
.y22c{bottom:422.437333pt;}
.y214{bottom:422.490667pt;}
.y260{bottom:422.517333pt;}
.y456{bottom:422.753600pt;}
.y51f{bottom:422.886533pt;}
.y558{bottom:423.122667pt;}
.y5ce{bottom:423.317333pt;}
.y246{bottom:423.572000pt;}
.ye5{bottom:423.773067pt;}
.y167{bottom:423.840667pt;}
.y2b1{bottom:423.850667pt;}
.y163{bottom:423.947333pt;}
.y1d8{bottom:424.076267pt;}
.y9e{bottom:424.086933pt;}
.y7e{bottom:424.775200pt;}
.y3bb{bottom:424.905333pt;}
.y2e8{bottom:425.184000pt;}
.y587{bottom:425.705333pt;}
.y6e{bottom:426.244933pt;}
.y65b{bottom:427.081200pt;}
.y2fc{bottom:427.850667pt;}
.y443{bottom:428.086933pt;}
.y2ce{bottom:428.650667pt;}
.y39c{bottom:429.184000pt;}
.y63b{bottom:429.420267pt;}
.y4cf{bottom:429.984000pt;}
.y1ab{bottom:430.416000pt;}
.y337{bottom:430.503067pt;}
.y119{bottom:430.517333pt;}
.y198{bottom:431.222667pt;}
.y5a6{bottom:431.317333pt;}
.y141{bottom:431.572000pt;}
.y5f5{bottom:431.850667pt;}
.y9{bottom:431.875467pt;}
.y5{bottom:431.882133pt;}
.y5e7{bottom:432.086933pt;}
.y34e{bottom:432.372000pt;}
.y4ed{bottom:432.553200pt;}
.y605{bottom:432.905333pt;}
.ybe{bottom:433.297333pt;}
.y3c8{bottom:434.517333pt;}
.y4b{bottom:435.572000pt;}
.y62b{bottom:435.850667pt;}
.y28d{bottom:436.086933pt;}
.y3e2{bottom:437.184000pt;}
.y5f9{bottom:438.753600pt;}
.y386{bottom:439.850667pt;}
.y39f{bottom:440.086933pt;}
.y1f9{bottom:441.420000pt;}
.y313{bottom:441.420267pt;}
.y537{bottom:441.517333pt;}
.y3fa{bottom:441.747867pt;}
.y2f{bottom:442.238667pt;}
.y22b{bottom:442.442667pt;}
.y213{bottom:442.496000pt;}
.y166{bottom:442.507333pt;}
.y25f{bottom:442.517333pt;}
.y51e{bottom:442.886533pt;}
.ye4{bottom:443.773067pt;}
.y2b0{bottom:443.850667pt;}
.y1d7{bottom:444.081600pt;}
.y9d{bottom:444.086933pt;}
.y7d{bottom:444.775200pt;}
.y3ba{bottom:444.905333pt;}
.y6d{bottom:444.911600pt;}
.y2e7{bottom:445.184000pt;}
.y588{bottom:445.705333pt;}
.y56e{bottom:446.192267pt;}
.y11{bottom:446.470000pt;}
.y65a{bottom:447.081200pt;}
.y182{bottom:447.238667pt;}
.y2fb{bottom:447.850667pt;}
.y468{bottom:448.086933pt;}
.y2cd{bottom:448.650667pt;}
.y3c7{bottom:449.184000pt;}
.y63a{bottom:449.420267pt;}
.y410{bottom:449.789333pt;}
.y4ce{bottom:449.984000pt;}
.y1aa{bottom:450.421333pt;}
.y336{bottom:450.503067pt;}
.y118{bottom:450.517333pt;}
.y197{bottom:451.228000pt;}
.y5a5{bottom:451.317333pt;}
.y13f{bottom:451.572000pt;}
.y495{bottom:451.850667pt;}
.y5e6{bottom:452.086933pt;}
.y34f{bottom:452.372000pt;}
.y4ec{bottom:452.553200pt;}
.y604{bottom:452.905333pt;}
.ybd{bottom:453.658000pt;}
.y4a{bottom:454.238667pt;}
.y4c2{bottom:454.517333pt;}
.y62a{bottom:455.850667pt;}
.y360{bottom:456.086933pt;}
.y3e1{bottom:457.184000pt;}
.y61d{bottom:457.789333pt;}
.y557{bottom:458.238667pt;}
.y4{bottom:458.542133pt;}
.y455{bottom:458.753600pt;}
.y385{bottom:459.850667pt;}
.y39e{bottom:460.086933pt;}
.y165{bottom:461.174000pt;}
.y1f8{bottom:461.420000pt;}
.y312{bottom:461.420267pt;}
.y536{bottom:461.517333pt;}
.y2e{bottom:462.238667pt;}
.y22a{bottom:462.448000pt;}
.y212{bottom:462.501333pt;}
.y25e{bottom:462.517333pt;}
.y28c{bottom:462.753600pt;}
.y51d{bottom:462.886533pt;}
.ye3{bottom:463.773067pt;}
.y2af{bottom:463.850667pt;}
.y1d6{bottom:464.076267pt;}
.y9c{bottom:464.086933pt;}
.y29d{bottom:464.905333pt;}
.y2e6{bottom:465.184000pt;}
.y659{bottom:467.081200pt;}
.y2fa{bottom:467.850667pt;}
.y6c{bottom:468.911600pt;}
.y484{bottom:469.184000pt;}
.y639{bottom:469.420267pt;}
.y3b9{bottom:469.789333pt;}
.y4cd{bottom:469.984000pt;}
.y244{bottom:470.238667pt;}
.y1a9{bottom:470.426667pt;}
.y335{bottom:470.503067pt;}
.y117{bottom:470.517333pt;}
.y196{bottom:471.233333pt;}
.y5a4{bottom:471.317333pt;}
.y56d{bottom:471.437067pt;}
.y140{bottom:471.566667pt;}
.y435{bottom:471.572000pt;}
.y5e5{bottom:472.086933pt;}
.y4eb{bottom:472.553200pt;}
.y603{bottom:472.905333pt;}
.ybc{bottom:473.569467pt;}
.y4c1{bottom:474.517333pt;}
.y4af{bottom:475.850667pt;}
.y35f{bottom:476.086933pt;}
.y4c7{bottom:476.456000pt;}
.y49{bottom:476.905333pt;}
.y3e0{bottom:477.184000pt;}
.y3f9{bottom:477.747867pt;}
.y556{bottom:478.238667pt;}
.y2cc{bottom:478.250667pt;}
.y454{bottom:478.753600pt;}
.y611{bottom:479.572000pt;}
.y384{bottom:479.850667pt;}
.y162{bottom:481.080667pt;}
.y1f7{bottom:481.420000pt;}
.y311{bottom:481.420267pt;}
.y535{bottom:481.517333pt;}
.y2d{bottom:482.238667pt;}
.y229{bottom:482.453333pt;}
.y211{bottom:482.506667pt;}
.y25d{bottom:482.517333pt;}
.y51c{bottom:482.886533pt;}
.ye2{bottom:483.773067pt;}
.y2ae{bottom:483.850667pt;}
.y1d5{bottom:484.081600pt;}
.y9b{bottom:484.086933pt;}
.y7c{bottom:484.775200pt;}
.y40f{bottom:484.905333pt;}
.y5f8{bottom:485.420267pt;}
.y39d{bottom:486.753600pt;}
.y658{bottom:487.081200pt;}
.y6b{bottom:487.578267pt;}
.y2f9{bottom:487.850667pt;}
.y4f8{bottom:488.890667pt;}
.y4a8{bottom:489.184000pt;}
.y638{bottom:489.420267pt;}
.y5c9{bottom:489.789333pt;}
.y4cc{bottom:489.984000pt;}
.y56c{bottom:490.103733pt;}
.y181{bottom:490.432000pt;}
.y334{bottom:490.503067pt;}
.y116{bottom:490.517333pt;}
.y508{bottom:490.819867pt;}
.y195{bottom:491.238667pt;}
.y5a3{bottom:491.317333pt;}
.y434{bottom:491.572000pt;}
.y2e5{bottom:491.850667pt;}
.y375{bottom:492.086933pt;}
.y586{bottom:492.372000pt;}
.y4ea{bottom:492.553200pt;}
.y61c{bottom:492.905333pt;}
.ybb{bottom:493.480933pt;}
.y4c0{bottom:494.517333pt;}
.y4ae{bottom:495.850667pt;}
.y3df{bottom:497.184000pt;}
.y3f8{bottom:497.747867pt;}
.y602{bottom:497.789333pt;}
.y498{bottom:498.238667pt;}
.y2cb{bottom:498.250667pt;}
.y34d{bottom:499.038667pt;}
.y48{bottom:499.572000pt;}
.y161{bottom:499.747333pt;}
.y383{bottom:499.850667pt;}
.y1f6{bottom:501.420000pt;}
.y310{bottom:501.420267pt;}
.y534{bottom:501.517333pt;}
.y2c{bottom:502.238667pt;}
.y228{bottom:502.458667pt;}
.y210{bottom:502.512000pt;}
.y25c{bottom:502.517333pt;}
.y60e{bottom:502.753600pt;}
.y51b{bottom:502.886533pt;}
.ye1{bottom:503.773067pt;}
.y2ad{bottom:503.850667pt;}
.y1d4{bottom:504.012267pt;}
.y9a{bottom:504.086933pt;}
.y7b{bottom:504.775200pt;}
.y3b8{bottom:504.905333pt;}
.y483{bottom:505.184000pt;}
.y453{bottom:505.420267pt;}
.y29c{bottom:506.238667pt;}
.y657{bottom:507.081200pt;}
.y2f8{bottom:507.850667pt;}
.y66a{bottom:508.086933pt;}
.y56b{bottom:508.770400pt;}
.y637{bottom:509.420267pt;}
.y6a{bottom:510.244933pt;}
.y180{bottom:510.437333pt;}
.y333{bottom:510.503067pt;}
.y103{bottom:510.517333pt;}
.y5a2{bottom:511.317333pt;}
.y243{bottom:511.572000pt;}
.y374{bottom:512.086933pt;}
.y4e9{bottom:512.553200pt;}
.y61b{bottom:512.905333pt;}
.yba{bottom:513.392400pt;}
.y4cb{bottom:515.317333pt;}
.y4ad{bottom:515.850667pt;}
.y3de{bottom:517.184000pt;}
.y3f7{bottom:517.747867pt;}
.y13e{bottom:518.226667pt;}
.y2ca{bottom:518.250667pt;}
.y160{bottom:518.414000pt;}
.y433{bottom:519.572000pt;}
.y382{bottom:519.850667pt;}
.y4bf{bottom:521.184000pt;}
.y30f{bottom:521.420267pt;}
.y533{bottom:521.517333pt;}
.y2b{bottom:522.238667pt;}
.y227{bottom:522.464000pt;}
.y20f{bottom:522.501333pt;}
.y25b{bottom:522.517333pt;}
.y51a{bottom:522.886533pt;}
.y555{bottom:523.122667pt;}
.ye0{bottom:523.773067pt;}
.y2ac{bottom:523.850667pt;}
.y1d3{bottom:524.017600pt;}
.y99{bottom:524.086933pt;}
.y7a{bottom:524.775200pt;}
.y3b7{bottom:524.905333pt;}
.y482{bottom:525.184000pt;}
.y29b{bottom:526.238667pt;}
.y496{bottom:526.517333pt;}
.y2e4{bottom:527.850667pt;}
.y15c{bottom:527.854000pt;}
.y1f5{bottom:528.086667pt;}
.y5f6{bottom:528.086933pt;}
.y617{bottom:529.184000pt;}
.y636{bottom:529.420267pt;}
.y17f{bottom:530.442667pt;}
.y332{bottom:530.503067pt;}
.y102{bottom:530.517333pt;}
.y5a1{bottom:531.317333pt;}
.y242{bottom:531.572000pt;}
.yb9{bottom:532.059067pt;}
.y4e8{bottom:532.553200pt;}
.y601{bottom:532.905333pt;}
.y69{bottom:532.911600pt;}
.y656{bottom:533.747867pt;}
.y56a{bottom:534.015200pt;}
.y4ac{bottom:535.850667pt;}
.y15f{bottom:537.080667pt;}
.y3dd{bottom:537.184000pt;}
.y3f6{bottom:537.747867pt;}
.y5e4{bottom:538.753600pt;}
.y381{bottom:539.850667pt;}
.y373{bottom:540.086933pt;}
.y452{bottom:541.420267pt;}
.y2a{bottom:542.238667pt;}
.y226{bottom:542.469333pt;}
.y20e{bottom:542.506667pt;}
.y25a{bottom:542.517333pt;}
.y519{bottom:542.886533pt;}
.y2ab{bottom:543.850667pt;}
.y1d2{bottom:544.022933pt;}
.y98{bottom:544.086933pt;}
.y610{bottom:544.456000pt;}
.y79{bottom:544.775200pt;}
.y47{bottom:544.905333pt;}
.y2c9{bottom:544.917333pt;}
.y481{bottom:545.184000pt;}
.y29a{bottom:546.238667pt;}
.y10{bottom:546.470000pt;}
.y2e3{bottom:547.850667pt;}
.y532{bottom:548.184000pt;}
.y397{bottom:549.184000pt;}
.y3b6{bottom:549.789333pt;}
.y17e{bottom:550.448000pt;}
.y331{bottom:550.503067pt;}
.y101{bottom:550.517333pt;}
.y5a0{bottom:551.317333pt;}
.y241{bottom:551.572000pt;}
.yb8{bottom:551.970400pt;}
.y4e7{bottom:552.553200pt;}
.y569{bottom:552.681867pt;}
.y585{bottom:552.905333pt;}
.y68{bottom:555.578267pt;}
.y15e{bottom:555.747333pt;}
.y4ab{bottom:555.850667pt;}
.y635{bottom:556.086933pt;}
.y3dc{bottom:557.184000pt;}
.y3f5{bottom:557.747867pt;}
.y13d{bottom:559.557333pt;}
.y34c{bottom:559.572000pt;}
.y380{bottom:559.850667pt;}
.y372{bottom:560.086933pt;}
.y30e{bottom:561.420267pt;}
.y29{bottom:562.238667pt;}
.y20d{bottom:562.512000pt;}
.y259{bottom:562.517333pt;}
.y518{bottom:562.886533pt;}
.y46{bottom:563.572000pt;}
.y2aa{bottom:563.850667pt;}
.y1d1{bottom:564.028267pt;}
.y1f4{bottom:564.086667pt;}
.y97{bottom:564.086933pt;}
.ydf{bottom:564.273067pt;}
.y299{bottom:566.238667pt;}
.yf{bottom:566.470000pt;}
.y2e2{bottom:567.850667pt;}
.y451{bottom:568.086933pt;}
.y225{bottom:569.133333pt;}
.y550{bottom:569.184000pt;}
.y655{bottom:569.747867pt;}
.y5c8{bottom:569.789333pt;}
.y17d{bottom:570.453333pt;}
.y330{bottom:570.503067pt;}
.y100{bottom:570.517333pt;}
.yb7{bottom:570.637067pt;}
.y5e3{bottom:570.753600pt;}
.y240{bottom:571.572000pt;}
.y480{bottom:571.850667pt;}
.y4e6{bottom:572.553200pt;}
.y78{bottom:572.775200pt;}
.y3b5{bottom:572.905333pt;}
.y15d{bottom:574.414000pt;}
.y42f{bottom:574.517333pt;}
.y4aa{bottom:575.850667pt;}
.y4c6{bottom:576.456000pt;}
.y3db{bottom:577.184000pt;}
.y3f4{bottom:577.747867pt;}
.y61a{bottom:577.789333pt;}
.y568{bottom:577.926667pt;}
.y67{bottom:578.244933pt;}
.y13c{bottom:579.562667pt;}
.y34b{bottom:579.572000pt;}
.y37f{bottom:579.850667pt;}
.y371{bottom:580.086933pt;}
.y2c8{bottom:580.917333pt;}
.y30d{bottom:581.420267pt;}
.y28{bottom:582.238667pt;}
.y258{bottom:582.517333pt;}
.y634{bottom:582.753600pt;}
.y517{bottom:582.886533pt;}
.yde{bottom:582.939733pt;}
.y1d0{bottom:584.033600pt;}
.y1f3{bottom:584.086667pt;}
.y96{bottom:584.086933pt;}
.y432{bottom:584.905333pt;}
.y45{bottom:586.238667pt;}
.y2e1{bottom:587.850667pt;}
.y20c{bottom:589.176000pt;}
.y654{bottom:589.747867pt;}
.y554{bottom:590.238667pt;}
.y17c{bottom:590.458667pt;}
.y32f{bottom:590.503067pt;}
.yff{bottom:590.517333pt;}
.yb6{bottom:590.548533pt;}
.y5e2{bottom:590.753600pt;}
.y59f{bottom:591.317333pt;}
.y4e5{bottom:592.553200pt;}
.y584{bottom:592.905333pt;}
.y298{bottom:594.238667pt;}
.y15b{bottom:594.320667pt;}
.y42e{bottom:594.517333pt;}
.y531{bottom:594.850667pt;}
.y4a9{bottom:595.850667pt;}
.y64c{bottom:596.456000pt;}
.y66{bottom:596.911600pt;}
.y3da{bottom:597.184000pt;}
.y3f3{bottom:597.747867pt;}
.y600{bottom:597.789333pt;}
.y13b{bottom:599.568000pt;}
.y23f{bottom:599.572000pt;}
.y37e{bottom:599.850667pt;}
.y619{bottom:600.905333pt;}
.y2c7{bottom:600.917333pt;}
.y30c{bottom:601.420267pt;}
.y27{bottom:602.238667pt;}
.y257{bottom:602.517333pt;}
.y633{bottom:602.753600pt;}
.ydd{bottom:602.851200pt;}
.y567{bottom:603.171467pt;}
.y1cf{bottom:604.038933pt;}
.y1f2{bottom:604.086667pt;}
.y95{bottom:604.086933pt;}
.ye{bottom:606.470000pt;}
.y2f7{bottom:607.850667pt;}
.y370{bottom:608.086933pt;}
.y44{bottom:608.905333pt;}
.y551{bottom:609.184000pt;}
.y516{bottom:609.553200pt;}
.y653{bottom:609.747867pt;}
.yb5{bottom:610.460000pt;}
.y17b{bottom:610.464000pt;}
.y32e{bottom:610.503067pt;}
.yfe{bottom:610.517333pt;}
.y5e1{bottom:610.753600pt;}
.y59e{bottom:611.317333pt;}
.y553{bottom:611.572000pt;}
.y4e4{bottom:612.553200pt;}
.y15a{bottom:612.987333pt;}
.y2e0{bottom:614.517333pt;}
.y629{bottom:615.850667pt;}
.y77{bottom:616.775200pt;}
.y3b4{bottom:616.905333pt;}
.y3d9{bottom:617.184000pt;}
.y3f2{bottom:617.747867pt;}
.y34a{bottom:619.572000pt;}
.y13a{bottom:619.573333pt;}
.y65{bottom:619.578267pt;}
.y37d{bottom:619.850667pt;}
.y583{bottom:620.905333pt;}
.y2c6{bottom:620.917333pt;}
.y30b{bottom:621.420267pt;}
.ydc{bottom:621.517867pt;}
.y26{bottom:622.238667pt;}
.y3b1{bottom:622.517333pt;}
.y1ce{bottom:624.044267pt;}
.y1f1{bottom:624.086667pt;}
.y94{bottom:624.086933pt;}
.y60f{bottom:624.456000pt;}
.yd{bottom:626.470000pt;}
.y43{bottom:627.572000pt;}
.y2f6{bottom:627.850667pt;}
.y36f{bottom:628.086933pt;}
.y566{bottom:628.416267pt;}
.y256{bottom:629.184000pt;}
.y652{bottom:629.747867pt;}
.y431{bottom:630.238667pt;}
.yb4{bottom:630.371467pt;}
.y17a{bottom:630.469333pt;}
.y32d{bottom:630.503067pt;}
.y20b{bottom:630.506667pt;}
.yfd{bottom:630.517333pt;}
.y5e0{bottom:630.753600pt;}
.y59d{bottom:631.317333pt;}
.y581{bottom:634.517333pt;}
.y628{bottom:635.850667pt;}
.y507{bottom:636.620000pt;}
.y3d8{bottom:637.184000pt;}
.y3f1{bottom:637.747867pt;}
.y76{bottom:638.108533pt;}
.y297{bottom:638.238667pt;}
.y159{bottom:638.492000pt;}
.y37c{bottom:639.850667pt;}
.y2c5{bottom:640.917333pt;}
.y30a{bottom:641.420267pt;}
.ydb{bottom:641.429333pt;}
.y25{bottom:642.238667pt;}
.y64{bottom:642.244933pt;}
.y3b0{bottom:642.517333pt;}
.y23e{bottom:643.572000pt;}
.y1cd{bottom:644.049600pt;}
.y1f0{bottom:644.086667pt;}
.y93{bottom:644.086933pt;}
.yc{bottom:646.470000pt;}
.y139{bottom:647.572000pt;}
.y2f5{bottom:647.850667pt;}
.y36e{bottom:648.086933pt;}
.y4e3{bottom:648.553200pt;}
.yb3{bottom:649.038133pt;}
.y46c{bottom:649.184000pt;}
.y651{bottom:649.747867pt;}
.y42{bottom:650.238667pt;}
.y179{bottom:650.474667pt;}
.y32c{bottom:650.503067pt;}
.y20a{bottom:650.512000pt;}
.yfc{bottom:650.517333pt;}
.y5df{bottom:650.753600pt;}
.y59c{bottom:651.317333pt;}
.y565{bottom:653.661067pt;}
.y5b6{bottom:654.517333pt;}
.y627{bottom:655.850667pt;}
.y515{bottom:656.219867pt;}
.y506{bottom:656.620000pt;}
.y430{bottom:656.905333pt;}
.y3d7{bottom:657.184000pt;}
.y3f0{bottom:657.747867pt;}
.y37b{bottom:659.850667pt;}
.yda{bottom:660.096000pt;}
.y2c4{bottom:660.917333pt;}
.y309{bottom:661.420267pt;}
.y24{bottom:662.238667pt;}
.y3af{bottom:662.517333pt;}
.y1cc{bottom:664.054933pt;}
.y1ef{bottom:664.086667pt;}
.y92{bottom:664.086933pt;}
.y23d{bottom:664.905333pt;}
.y63{bottom:664.911600pt;}
.yb2{bottom:667.704800pt;}
.y2f4{bottom:667.850667pt;}
.y158{bottom:669.160000pt;}
.y40e{bottom:669.184000pt;}
.y650{bottom:669.747867pt;}
.y178{bottom:670.480000pt;}
.y32b{bottom:670.503067pt;}
.yfb{bottom:670.517333pt;}
.y5de{bottom:670.753600pt;}
.y59b{bottom:671.317333pt;}
.y41{bottom:672.905333pt;}
.y4bd{bottom:674.517333pt;}
.y626{bottom:675.850667pt;}
.y36d{bottom:676.086933pt;}
.y564{bottom:678.905867pt;}
.yd9{bottom:680.007467pt;}
.y2c3{bottom:680.917333pt;}
.y23{bottom:682.238667pt;}
.y3ae{bottom:682.517333pt;}
.y75{bottom:683.441867pt;}
.y296{bottom:683.572000pt;}
.y62{bottom:683.578267pt;}
.y3d6{bottom:683.850667pt;}
.y1cb{bottom:684.060267pt;}
.y1ee{bottom:684.086667pt;}
.y91{bottom:684.086933pt;}
.yb1{bottom:686.371467pt;}
.yb{bottom:686.470000pt;}
.y2f3{bottom:687.850667pt;}
.y308{bottom:688.086933pt;}
.y40d{bottom:689.184000pt;}
.y3ef{bottom:689.747867pt;}
.y177{bottom:690.485333pt;}
.y32a{bottom:690.503067pt;}
.yfa{bottom:690.517333pt;}
.y5dd{bottom:690.753600pt;}
.y138{bottom:691.572000pt;}
.y45c{bottom:694.517333pt;}
.y40{bottom:695.572000pt;}
.y625{bottom:695.850667pt;}
.y36c{bottom:696.086933pt;}
.y2c2{bottom:700.917333pt;}
.y22{bottom:702.238667pt;}
.y3ad{bottom:702.517333pt;}
.yd8{bottom:703.207467pt;}
.y1ca{bottom:704.065600pt;}
.y1ed{bottom:704.086667pt;}
.y90{bottom:704.086933pt;}
.yb0{bottom:705.038133pt;}
.y61{bottom:706.244933pt;}
.y563{bottom:707.317333pt;}
.y2f2{bottom:707.850667pt;}
.y4c5{bottom:709.184000pt;}
.y3ee{bottom:709.747867pt;}
.y74{bottom:710.108533pt;}
.y23c{bottom:710.238667pt;}
.y157{bottom:710.490667pt;}
.y329{bottom:710.503067pt;}
.yf9{bottom:710.517333pt;}
.y5dc{bottom:710.753600pt;}
.y3{bottom:711.859467pt;}
.y8{bottom:711.875467pt;}
.y42b{bottom:714.517333pt;}
.y36b{bottom:716.086933pt;}
.y3f{bottom:718.238667pt;}
.y2c1{bottom:720.917333pt;}
.y21{bottom:722.238667pt;}
.y3ac{bottom:722.517333pt;}
.yd7{bottom:723.118933pt;}
.y1c9{bottom:724.070933pt;}
.y1ec{bottom:724.086667pt;}
.y8f{bottom:724.086933pt;}
.yaf{bottom:724.949600pt;}
.yae{bottom:726.194400pt;}
.ya{bottom:726.470000pt;}
.y2f1{bottom:727.850667pt;}
.y60{bottom:728.911600pt;}
.y4c9{bottom:729.184000pt;}
.y3ed{bottom:729.747867pt;}
.y156{bottom:730.496000pt;}
.y328{bottom:730.503067pt;}
.yf8{bottom:730.517333pt;}
.y5db{bottom:730.753600pt;}
.y42a{bottom:734.517333pt;}
.y36a{bottom:736.086933pt;}
.y73{bottom:736.775200pt;}
.y3e{bottom:736.905333pt;}
.y2c0{bottom:740.917333pt;}
.y20{bottom:742.238667pt;}
.yd6{bottom:743.030400pt;}
.y1c8{bottom:744.076267pt;}
.y1eb{bottom:744.086667pt;}
.y8e{bottom:744.086933pt;}
.yad{bottom:744.861067pt;}
.y5f{bottom:747.578267pt;}
.y3ab{bottom:749.184000pt;}
.y3ec{bottom:749.747867pt;}
.y155{bottom:750.501333pt;}
.y327{bottom:750.503067pt;}
.yf7{bottom:750.517333pt;}
.y2f0{bottom:754.517333pt;}
.y2{bottom:754.534133pt;}
.y7{bottom:754.542133pt;}
.y369{bottom:756.086933pt;}
.y5da{bottom:757.420267pt;}
.y2bf{bottom:760.917333pt;}
.yd5{bottom:761.697067pt;}
.y1f{bottom:762.238667pt;}
.y3d{bottom:763.572000pt;}
.y1c7{bottom:764.081600pt;}
.y1ea{bottom:764.086667pt;}
.y8d{bottom:764.086933pt;}
.yac{bottom:764.987333pt;}
.yd3{bottom:768.275200pt;}
.y3eb{bottom:769.747867pt;}
.y5e{bottom:770.244933pt;}
.y326{bottom:770.503067pt;}
.y154{bottom:770.506667pt;}
.yf6{bottom:770.517333pt;}
.yd4{bottom:781.608533pt;}
.y1e9{bottom:784.086667pt;}
.y8c{bottom:784.086933pt;}
.yd2{bottom:786.941867pt;}
.y3ea{bottom:789.747867pt;}
.y325{bottom:790.503067pt;}
.y153{bottom:790.512000pt;}
.yab{bottom:790.517333pt;}
.y5d{bottom:792.911600pt;}
.y1{bottom:797.208800pt;}
.y72{bottom:798.108533pt;}
.y137{bottom:798.238667pt;}
.yd1{bottom:805.608533pt;}
.y1e{bottom:806.238667pt;}
.y3e9{bottom:809.747867pt;}
.y324{bottom:810.503067pt;}
.yaa{bottom:810.517333pt;}
.y1e8{bottom:810.753333pt;}
.y8b{bottom:810.753600pt;}
.y5c{bottom:811.578267pt;}
.y5b{bottom:843.652667pt;}
.h9{height:29.625000pt;}
.h1d{height:29.763479pt;}
.he{height:37.437500pt;}
.h6{height:40.734375pt;}
.h1b{height:42.000000pt;}
.h1c{height:42.117188pt;}
.hb{height:46.666667pt;}
.hc{height:46.796875pt;}
.hd{height:47.213542pt;}
.h10{height:49.299479pt;}
.h7{height:51.333333pt;}
.h8{height:51.476562pt;}
.h16{height:51.519229pt;}
.h18{height:51.540563pt;}
.h17{height:51.625896pt;}
.h15{height:51.775229pt;}
.h14{height:51.934896pt;}
.h4{height:54.218750pt;}
.hf{height:61.377604pt;}
.h5{height:70.195312pt;}
.ha{height:74.666667pt;}
.h1a{height:76.666667pt;}
.h13{height:83.703542pt;}
.h12{height:84.000000pt;}
.h3{height:121.333333pt;}
.h11{height:211.476562pt;}
.h19{height:263.511799pt;}
.h2{height:907.086667pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w3{width:604.666667pt;}
.w2{width:604.724000pt;}
.w1{width:608.000000pt;}
.w0{width:608.320000pt;}
.w4{width:609.280000pt;}
.w5{width:609.333333pt;}
.x0{left:0.000000pt;}
.x7{left:62.400000pt;}
.x2f{left:68.233333pt;}
.x1b{left:69.573333pt;}
.x31{left:72.376400pt;}
.x19{left:74.013333pt;}
.x28{left:75.553600pt;}
.xb{left:76.800000pt;}
.x2{left:79.530800pt;}
.x1a{left:81.666667pt;}
.x2c{left:82.633333pt;}
.x2a{left:84.488267pt;}
.x69{left:85.598667pt;}
.x55{left:87.148933pt;}
.x16{left:88.653333pt;}
.x56{left:90.390267pt;}
.x15{left:93.840000pt;}
.x52{left:95.608267pt;}
.x11{left:98.040000pt;}
.x14{left:99.040000pt;}
.x12{left:100.506667pt;}
.x10{left:103.240000pt;}
.x4f{left:104.999733pt;}
.x13{left:105.946667pt;}
.x75{left:107.097333pt;}
.xa{left:108.800000pt;}
.x32{left:110.847733pt;}
.x3d{left:113.102267pt;}
.x6f{left:115.258400pt;}
.x4b{left:117.309333pt;}
.x51{left:118.505333pt;}
.x22{left:120.266933pt;}
.x73{left:122.208000pt;}
.x42{left:124.164667pt;}
.x38{left:125.844400pt;}
.x81{left:127.127600pt;}
.x78{left:128.380533pt;}
.x29{left:129.773733pt;}
.x5b{left:131.367200pt;}
.x6c{left:132.702800pt;}
.x5e{left:134.998133pt;}
.x3b{left:136.500000pt;}
.x61{left:137.697600pt;}
.x7c{left:140.032533pt;}
.x7b{left:141.353600pt;}
.x5f{left:142.477067pt;}
.x43{left:144.393733pt;}
.x44{left:145.346400pt;}
.x34{left:147.305200pt;}
.x2b{left:149.908267pt;}
.x25{left:151.433600pt;}
.x6b{left:152.663733pt;}
.x3{left:154.653467pt;}
.x84{left:155.629867pt;}
.x30{left:156.933333pt;}
.x5d{left:158.103867pt;}
.x58{left:161.112400pt;}
.x71{left:162.195333pt;}
.x6d{left:163.225067pt;}
.x36{left:165.981067pt;}
.x18{left:167.733200pt;}
.x1e{left:169.437200pt;}
.x2d{left:171.333333pt;}
.x3f{left:172.692400pt;}
.x82{left:173.870533pt;}
.x70{left:175.132533pt;}
.x1f{left:176.030933pt;}
.x17{left:177.066667pt;}
.x57{left:178.197600pt;}
.x21{left:179.850400pt;}
.x1{left:181.762800pt;}
.x72{left:182.752400pt;}
.x83{left:184.581200pt;}
.x7a{left:186.718133pt;}
.x26{left:189.994533pt;}
.xf{left:191.466667pt;}
.x23{left:192.622800pt;}
.x7e{left:194.326800pt;}
.x41{left:195.279600pt;}
.x59{left:196.182000pt;}
.x53{left:198.126400pt;}
.x37{left:199.691067pt;}
.x50{left:201.702800pt;}
.x77{left:202.612933pt;}
.x6e{left:205.266267pt;}
.x4c{left:206.577867pt;}
.x7f{left:207.504267pt;}
.x5a{left:208.718133pt;}
.x6a{left:209.967467pt;}
.x5c{left:211.084267pt;}
.x4a{left:212.402667pt;}
.x33{left:213.503600pt;}
.x24{left:214.447333pt;}
.x4e{left:215.374667pt;}
.x27{left:216.889333pt;}
.x48{left:218.989333pt;}
.x3c{left:220.783067pt;}
.x7d{left:222.457333pt;}
.x54{left:223.381200pt;}
.x3e{left:224.592533pt;}
.x35{left:227.122400pt;}
.x66{left:229.909733pt;}
.x20{left:231.062800pt;}
.x79{left:232.103867pt;}
.x1d{left:233.461733pt;}
.x76{left:234.449200pt;}
.x64{left:239.508800pt;}
.x62{left:240.461600pt;}
.x67{left:241.422267pt;}
.x40{left:242.677733pt;}
.x63{left:246.408933pt;}
.xe{left:248.254933pt;}
.x4d{left:251.375333pt;}
.x5{left:254.484533pt;}
.x49{left:259.657600pt;}
.x9{left:270.718400pt;}
.x6{left:277.987333pt;}
.x4{left:281.964533pt;}
.x45{left:289.686667pt;}
.x39{left:295.886667pt;}
.x60{left:301.797867pt;}
.xd{left:303.896933pt;}
.x1c{left:306.933333pt;}
.x8{left:307.824000pt;}
.x46{left:309.207200pt;}
.x65{left:323.138533pt;}
.x2e{left:326.624400pt;}
.x68{left:333.195867pt;}
.x80{left:342.148933pt;}
.x85{left:343.695867pt;}
.x3a{left:357.945867pt;}
.x74{left:374.624400pt;}
.x47{left:397.533333pt;}
.xc{left:401.759333pt;}
}




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