
    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_96ef1079a9e94c9e4d0de01a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.052734;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_ed59c69208f74563ae1e3a87.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_015062dddc8df30c4b36efa8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_849135b457f576643463b34a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_578c64f1bc4fd40c276e5f9a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.052734;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_d12a6446d70bf064ddd88a7c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_70c1ac6ab072354ab1701a3f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.053223;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_e8220950f5edeb3032a3da05.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.053223;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_aa84268239f1656298afd6dd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6df1b0117bf6daf8696f0eef.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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_0c57cd7dd482341600d70622.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.081055;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_ad24d55552b9b95a0848dad9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.758789;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_2275dd8ca0ba8214270d4b40.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.766602;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_496332edb57e3f5d5bd4cb2d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.752441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-52.560000px;}
.v2{vertical-align:-49.920000px;}
.v6{vertical-align:-47.280000px;}
.v1{vertical-align:-37.200000px;}
.v3{vertical-align:-15.720000px;}
.v5{vertical-align:-9.960000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:23.760000px;}
.ls1b{letter-spacing:-3.312000px;}
.ls2e{letter-spacing:-1.584000px;}
.ls2d{letter-spacing:-1.512000px;}
.ls23{letter-spacing:-1.440000px;}
.ls1a{letter-spacing:-1.296000px;}
.ls42{letter-spacing:-1.224000px;}
.ls45{letter-spacing:-0.936000px;}
.ls21{letter-spacing:-0.864000px;}
.ls11{letter-spacing:-0.792000px;}
.ls1e{letter-spacing:-0.720000px;}
.ls1d{letter-spacing:-0.648000px;}
.ls3e{letter-spacing:-0.642000px;}
.ls19{letter-spacing:-0.576000px;}
.ls13{letter-spacing:-0.504000px;}
.ls4c{letter-spacing:-0.472200px;}
.ls4d{letter-spacing:-0.463800px;}
.ls4b{letter-spacing:-0.443400px;}
.ls25{letter-spacing:-0.432000px;}
.ls33{letter-spacing:-0.360000px;}
.ls40{letter-spacing:-0.322800px;}
.ls44{letter-spacing:-0.310200px;}
.ls15{letter-spacing:-0.288000px;}
.ls32{letter-spacing:-0.270000px;}
.ls24{letter-spacing:-0.240600px;}
.ls10{letter-spacing:-0.229800px;}
.ls34{letter-spacing:-0.227400px;}
.ls3f{letter-spacing:-0.224400px;}
.ls9{letter-spacing:-0.216000px;}
.ls3c{letter-spacing:-0.184200px;}
.ls7{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.132600px;}
.ls5{letter-spacing:-0.115200px;}
.ls4e{letter-spacing:-0.086400px;}
.ls16{letter-spacing:-0.072000px;}
.ls37{letter-spacing:-0.058320px;}
.ls38{letter-spacing:-0.041760px;}
.ls49{letter-spacing:-0.018000px;}
.ls1{letter-spacing:0.000000px;}
.ls36{letter-spacing:0.036000px;}
.ls2a{letter-spacing:0.064200px;}
.ls0{letter-spacing:0.072000px;}
.ls3d{letter-spacing:0.080400px;}
.lsd{letter-spacing:0.118200px;}
.ls3a{letter-spacing:0.126000px;}
.lsf{letter-spacing:0.144000px;}
.ls35{letter-spacing:0.150000px;}
.ls18{letter-spacing:0.192000px;}
.ls48{letter-spacing:0.207600px;}
.ls2{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.218400px;}
.ls39{letter-spacing:0.247800px;}
.lsc{letter-spacing:0.256200px;}
.ls4a{letter-spacing:0.276600px;}
.lsb{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.299400px;}
.ls4{letter-spacing:0.306000px;}
.ls12{letter-spacing:0.360000px;}
.ls3b{letter-spacing:0.363000px;}
.ls46{letter-spacing:0.576000px;}
.ls6{letter-spacing:0.648000px;}
.ls47{letter-spacing:0.720000px;}
.ls22{letter-spacing:1.008000px;}
.ls26{letter-spacing:4.608000px;}
.ls28{letter-spacing:6.768000px;}
.ls2f{letter-spacing:8.208000px;}
.ls20{letter-spacing:11.808000px;}
.ls2b{letter-spacing:12.528000px;}
.lse{letter-spacing:19.757280px;}
.ls41{letter-spacing:21.888000px;}
.ls2c{letter-spacing:27.624000px;}
.ls27{letter-spacing:28.944000px;}
.ls30{letter-spacing:30.384000px;}
.ls29{letter-spacing:33.264000px;}
.ls43{letter-spacing:34.554720px;}
.ls31{letter-spacing:40.476000px;}
.ls17{letter-spacing:47.117280px;}
.ls1c{letter-spacing:54.864000px;}
.ls1f{letter-spacing:80.784000px;}
.ls14{letter-spacing:84.384000px;}
.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;}
}
.ws14{word-spacing:-72.000000px;}
.ws2c{word-spacing:-21.331560px;}
.ws1a{word-spacing:-20.070000px;}
.ws1f{word-spacing:-19.038240px;}
.wse{word-spacing:-18.808440px;}
.ws5{word-spacing:-18.221760px;}
.ws10{word-spacing:-16.632000px;}
.ws1c{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.488000px;}
.ws13{word-spacing:-16.416000px;}
.ws12{word-spacing:-16.344000px;}
.wsb{word-spacing:-16.272000px;}
.ws11{word-spacing:-16.200000px;}
.ws6{word-spacing:-16.128000px;}
.ws8{word-spacing:-16.056000px;}
.ws2e{word-spacing:-15.984000px;}
.ws1b{word-spacing:-15.912000px;}
.ws18{word-spacing:-15.768000px;}
.ws19{word-spacing:-15.696000px;}
.ws16{word-spacing:-15.624000px;}
.ws1e{word-spacing:-15.552000px;}
.wsf{word-spacing:-15.480000px;}
.ws7{word-spacing:-15.269640px;}
.wsc{word-spacing:-15.226440px;}
.wsd{word-spacing:-15.088440px;}
.ws2b{word-spacing:-14.970240px;}
.ws4{word-spacing:-14.855040px;}
.ws9{word-spacing:-14.837640px;}
.ws1d{word-spacing:-14.742840px;}
.ws28{word-spacing:-14.682360px;}
.ws31{word-spacing:-14.595960px;}
.ws2f{word-spacing:-14.526960px;}
.ws33{word-spacing:-14.506440px;}
.ws34{word-spacing:-14.232960px;}
.ws29{word-spacing:-14.135160px;}
.ws2a{word-spacing:-14.094960px;}
.ws32{word-spacing:-13.875960px;}
.ws3{word-spacing:-13.811760px;}
.ws1{word-spacing:-13.724160px;}
.ws17{word-spacing:-13.569960px;}
.ws2{word-spacing:-13.505760px;}
.ws15{word-spacing:-13.265160px;}
.ws24{word-spacing:-12.204000px;}
.ws30{word-spacing:-12.186000px;}
.ws2d{word-spacing:-10.902240px;}
.ws25{word-spacing:-0.606000px;}
.ws0{word-spacing:0.000000px;}
.ws26{word-spacing:26.772000px;}
.ws27{word-spacing:26.832000px;}
.ws23{word-spacing:47.868000px;}
.ws20{word-spacing:221.292000px;}
.ws21{word-spacing:235.674000px;}
.ws22{word-spacing:249.432000px;}
._1c{margin-left:-15.504000px;}
._1a{margin-left:-14.352000px;}
._1b{margin-left:-12.792000px;}
._1e{margin-left:-10.824000px;}
._19{margin-left:-9.600000px;}
._20{margin-left:-8.484000px;}
._1d{margin-left:-7.368000px;}
._1f{margin-left:-5.292000px;}
._d{margin-left:-3.816000px;}
._c{margin-left:-2.543040px;}
._0{margin-left:-1.457280px;}
._1{width:1.256640px;}
._2{width:2.669280px;}
._18{width:3.670560px;}
._8{width:4.680000px;}
._5{width:6.048000px;}
._4{width:7.416000px;}
._6{width:9.228000px;}
._10{width:10.800000px;}
._17{width:12.096000px;}
._7{width:13.176000px;}
._b{width:14.705280px;}
._44{width:15.966720px;}
._16{width:18.000000px;}
._15{width:19.056000px;}
._22{width:20.487360px;}
._f{width:22.464000px;}
._29{width:23.479680px;}
._3{width:24.480000px;}
._a{width:25.666560px;}
._9{width:26.712000px;}
._e{width:27.936000px;}
._14{width:29.017920px;}
._13{width:30.456000px;}
._25{width:31.896000px;}
._34{width:33.079680px;}
._32{width:34.344000px;}
._28{width:35.496000px;}
._27{width:36.720000px;}
._35{width:37.800000px;}
._12{width:38.808000px;}
._11{width:39.960000px;}
._24{width:41.667360px;}
._23{width:42.696000px;}
._30{width:43.704000px;}
._2e{width:44.784000px;}
._5c{width:45.792000px;}
._2d{width:46.800000px;}
._2c{width:48.456000px;}
._48{width:49.674240px;}
._36{width:52.128000px;}
._33{width:53.280000px;}
._3a{width:54.432000px;}
._50{width:56.390400px;}
._89{width:58.354560px;}
._7b{width:61.056000px;}
._39{width:64.296000px;}
._49{width:66.274560px;}
._54{width:68.238720px;}
._8b{width:69.822720px;}
._61{width:70.992000px;}
._38{width:72.792000px;}
._37{width:74.160000px;}
._43{width:77.538000px;}
._45{width:78.819840px;}
._8c{width:80.328960px;}
._7f{width:81.594720px;}
._31{width:82.772640px;}
._66{width:84.888000px;}
._53{width:86.232960px;}
._3b{width:87.384000px;}
._4e{width:89.147520px;}
._83{width:91.080000px;}
._84{width:92.160000px;}
._51{width:93.265920px;}
._5e{width:97.261920px;}
._4f{width:98.714880px;}
._60{width:100.872000px;}
._4b{width:103.045440px;}
._6f{width:107.870880px;}
._58{width:109.428480px;}
._52{width:110.880000px;}
._4a{width:112.590720px;}
._46{width:114.048000px;}
._5d{width:116.251200px;}
._62{width:117.864000px;}
._4d{width:119.560320px;}
._56{width:121.947840px;}
._68{width:123.408000px;}
._69{width:124.668000px;}
._57{width:129.631680px;}
._65{width:131.616000px;}
._6b{width:132.893280px;}
._55{width:134.136000px;}
._42{width:139.350000px;}
._73{width:149.112000px;}
._3c{width:151.200000px;}
._5b{width:154.728000px;}
._74{width:156.528000px;}
._7d{width:158.079360px;}
._88{width:160.427520px;}
._6d{width:167.254560px;}
._6c{width:168.660000px;}
._80{width:176.040000px;}
._81{width:177.099360px;}
._2a{width:179.832000px;}
._2f{width:182.435520px;}
._70{width:186.120000px;}
._5f{width:189.720000px;}
._63{width:194.544000px;}
._2b{width:196.104000px;}
._8a{width:204.336000px;}
._64{width:211.248000px;}
._7a{width:229.933440px;}
._47{width:231.010560px;}
._6a{width:244.584000px;}
._77{width:250.128000px;}
._4c{width:298.679040px;}
._71{width:310.392000px;}
._72{width:311.523360px;}
._76{width:319.133280px;}
._75{width:320.544000px;}
._78{width:327.168000px;}
._79{width:328.205280px;}
._67{width:358.200000px;}
._7e{width:432.720000px;}
._7c{width:435.672000px;}
._82{width:441.000000px;}
._6e{width:560.736000px;}
._59{width:753.385440px;}
._21{width:845.117760px;}
._5a{width:1277.436000px;}
._3d{width:1601.974560px;}
._86{width:1766.597280px;}
._41{width:1961.057280px;}
._3f{width:1981.359360px;}
._40{width:1990.704000px;}
._85{width:1991.774400px;}
._87{width:2051.280960px;}
._26{width:2094.905760px;}
._3e{width:2132.376000px;}
.fce{color:rgb(64,64,64);}
.fcd{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fc2{color:rgb(128,128,128);}
.fc6{color:rgb(17,17,17);}
.fca{color:rgb(255,255,255);}
.fcb{color:rgb(13,13,13);}
.fcc{color:rgb(165,165,165);}
.fc7{color:rgb(68,84,106);}
.fc3{color:transparent;}
.fc1{color:rgb(166,166,166);}
.fc4{color:rgb(47,84,150);}
.fc5{color:rgb(255,0,0);}
.fc8{color:rgb(32,33,34);}
.fc9{color:rgb(192,0,0);}
.fs5{font-size:36.000000px;}
.fs7{font-size:45.360000px;}
.fsf{font-size:48.240000px;}
.fsb{font-size:54.000000px;}
.fse{font-size:54.144000px;}
.fs8{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fsc{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fsd{font-size:90.000000px;}
.fs2{font-size:95.760000px;}
.fs6{font-size:102.240000px;}
.fs1{font-size:108.000000px;}
.y385{bottom:-27.900000px;}
.y0{bottom:0.000000px;}
.y594{bottom:0.900000px;}
.y374{bottom:1.080000px;}
.y592{bottom:2.160000px;}
.y377{bottom:3.420000px;}
.y27a{bottom:3.780000px;}
.y272{bottom:4.320000px;}
.y556{bottom:4.500000px;}
.y278{bottom:5.220000px;}
.y384{bottom:5.400000px;}
.y36f{bottom:6.120000px;}
.y275{bottom:6.300000px;}
.y36d{bottom:7.020000px;}
.y590{bottom:7.560000px;}
.y379{bottom:10.260000px;}
.y58c{bottom:10.770000px;}
.y596{bottom:10.905000px;}
.y58e{bottom:10.950000px;}
.y382{bottom:11.160000px;}
.y371{bottom:11.520000px;}
.y2c9{bottom:12.960000px;}
.y2c4{bottom:13.140000px;}
.y4c4{bottom:13.680000px;}
.y4d8{bottom:13.725000px;}
.y67e{bottom:13.854000px;}
.y4c9{bottom:13.860000px;}
.y22c{bottom:14.040000px;}
.y5be{bottom:14.400000px;}
.y520{bottom:14.430000px;}
.y508{bottom:14.580000px;}
.y51e{bottom:14.610000px;}
.y3bf{bottom:15.840000px;}
.y3f5{bottom:15.870000px;}
.y3bb{bottom:16.020000px;}
.y5a3{bottom:16.050000px;}
.y2dd{bottom:16.560000px;}
.y6ad{bottom:17.100000px;}
.y6b1{bottom:17.145000px;}
.y5d2{bottom:17.280000px;}
.y6a6{bottom:17.310000px;}
.y560{bottom:17.460000px;}
.y557{bottom:17.640000px;}
.y4a5{bottom:17.670000px;}
.y36{bottom:18.000000px;}
.y26{bottom:18.180000px;}
.y27c{bottom:18.900000px;}
.y388{bottom:19.545000px;}
.y6b4{bottom:19.980000px;}
.y6b2{bottom:20.025000px;}
.y6b6{bottom:20.160000px;}
.y559{bottom:20.700000px;}
.y3ec{bottom:21.420000px;}
.y373{bottom:21.600000px;}
.y547{bottom:22.500000px;}
.y376{bottom:23.940000px;}
.y66f{bottom:24.300000px;}
.y55b{bottom:24.660000px;}
.y555{bottom:24.690000px;}
.y271{bottom:24.840000px;}
.y4c5{bottom:25.200000px;}
.y279{bottom:25.560000px;}
.y277{bottom:25.740000px;}
.y4c3{bottom:25.920000px;}
.y456{bottom:26.070000px;}
.y274{bottom:26.640000px;}
.y3ce{bottom:27.900000px;}
.y37d{bottom:28.050000px;}
.y2c7{bottom:28.980000px;}
.y56e{bottom:29.160000px;}
.y5d4{bottom:29.340000px;}
.y572{bottom:30.600000px;}
.y5d5{bottom:30.780000px;}
.y553{bottom:30.960000px;}
.y22a{bottom:39.780000px;}
.y2c3{bottom:40.500000px;}
.y6aa{bottom:41.760000px;}
.y6a8{bottom:41.940000px;}
.y4cf{bottom:42.474000px;}
.y4d2{bottom:42.480000px;}
.y4fc{bottom:42.510000px;}
.y4d7{bottom:42.525000px;}
.y4e4{bottom:42.654000px;}
.y4c8{bottom:42.660000px;}
.y4f4{bottom:42.705000px;}
.y679{bottom:43.200000px;}
.y507{bottom:43.380000px;}
.y37f{bottom:43.815000px;}
.y455{bottom:44.430000px;}
.y5bd{bottom:44.640000px;}
.y52d{bottom:44.814000px;}
.y526{bottom:44.820000px;}
.y51d{bottom:44.850000px;}
.y36b{bottom:47.025000px;}
.y4a3{bottom:47.595000px;}
.y5a1{bottom:48.774000px;}
.y3be{bottom:48.780000px;}
.y3c7{bottom:48.810000px;}
.y407{bottom:48.825000px;}
.y409{bottom:48.954000px;}
.y3c3{bottom:48.960000px;}
.y552{bottom:51.120000px;}
.y6ac{bottom:52.920000px;}
.y66e{bottom:53.100000px;}
.y32{bottom:53.460000px;}
.y24{bottom:54.180000px;}
.y3eb{bottom:54.360000px;}
.y4c2{bottom:54.720000px;}
.y6ae{bottom:55.800000px;}
.y2c6{bottom:56.565000px;}
.y1{bottom:57.456000px;}
.y3cd{bottom:60.840000px;}
.y229{bottom:61.560000px;}
.y49e{bottom:65.160000px;}
.y2ca{bottom:67.890000px;}
.y2c2{bottom:68.040000px;}
.y36a{bottom:68.805000px;}
.y37b{bottom:69.630000px;}
.y68c{bottom:71.274000px;}
.y4d1{bottom:71.280000px;}
.y4f7{bottom:71.310000px;}
.y4d6{bottom:71.325000px;}
.y4ce{bottom:71.454000px;}
.y4c7{bottom:71.460000px;}
.y4de{bottom:71.490000px;}
.y4f3{bottom:71.505000px;}
.y671{bottom:73.440000px;}
.y52c{bottom:74.874000px;}
.y525{bottom:74.880000px;}
.y458{bottom:74.985000px;}
.y533{bottom:75.060000px;}
.y28{bottom:77.616000px;}
.y31{bottom:81.045000px;}
.y5a0{bottom:81.714000px;}
.y3bd{bottom:81.720000px;}
.y40f{bottom:81.750000px;}
.y3f1{bottom:81.765000px;}
.y408{bottom:81.894000px;}
.y3c2{bottom:81.900000px;}
.y228{bottom:83.160000px;}
.y575{bottom:83.340000px;}
.y3ea{bottom:87.300000px;}
.y34{bottom:87.660000px;}
.y23{bottom:87.705000px;}
.y49f{bottom:88.950000px;}
.y457{bottom:93.345000px;}
.y3d2{bottom:93.780000px;}
.y3d0{bottom:93.810000px;}
.y3cc{bottom:93.825000px;}
.y56c{bottom:96.480000px;}
.y570{bottom:97.920000px;}
.y676{bottom:100.080000px;}
.y4d0{bottom:100.110000px;}
.y681{bottom:100.125000px;}
.y4cd{bottom:100.254000px;}
.y4c6{bottom:100.260000px;}
.y4dd{bottom:100.290000px;}
.y4d5{bottom:100.305000px;}
.y4f1{bottom:100.980000px;}
.y670{bottom:102.240000px;}
.y227{bottom:104.940000px;}
.y52b{bottom:105.114000px;}
.y524{bottom:105.120000px;}
.y532{bottom:105.300000px;}
.y49d{bottom:105.810000px;}
.y4af{bottom:107.895000px;}
.y2ae{bottom:111.456000px;}
.y4e1{bottom:112.176000px;}
.y35{bottom:112.536000px;}
.y4a0{bottom:112.755000px;}
.y295{bottom:112.896000px;}
.y25{bottom:113.076000px;}
.y545{bottom:113.436000px;}
.y474{bottom:114.156000px;}
.y322{bottom:114.336000px;}
.y253{bottom:114.516000px;}
.y3c9{bottom:114.660000px;}
.y5b0{bottom:114.690000px;}
.y3f7{bottom:114.840000px;}
.y3c1{bottom:114.885000px;}
.yc4{bottom:115.236000px;}
.y672{bottom:115.416000px;}
.y3e7{bottom:115.596000px;}
.y326{bottom:115.776000px;}
.y1e3{bottom:116.676000px;}
.y401{bottom:117.576000px;}
.y53{bottom:117.936000px;}
.y45a{bottom:117.975000px;}
.y638{bottom:118.116000px;}
.y221{bottom:118.656000px;}
.y395{bottom:120.456000px;}
.y30{bottom:120.825000px;}
.y351{bottom:121.716000px;}
.ye2{bottom:122.076000px;}
.y453{bottom:122.436000px;}
.y368{bottom:123.876000px;}
.y306{bottom:125.496000px;}
.y315{bottom:126.216000px;}
.y226{bottom:126.720000px;}
.y4b0{bottom:126.930000px;}
.y59f{bottom:126.936000px;}
.y24e{bottom:128.556000px;}
.y4cc{bottom:129.054000px;}
.y4da{bottom:129.060000px;}
.y4dc{bottom:129.090000px;}
.y26f{bottom:129.096000px;}
.y50b{bottom:129.105000px;}
.y4e3{bottom:129.234000px;}
.y50d{bottom:129.240000px;}
.y510{bottom:129.285000px;}
.y4f0{bottom:129.780000px;}
.y617{bottom:129.996000px;}
.y5bb{bottom:130.356000px;}
.y68b{bottom:131.076000px;}
.y4ca{bottom:131.616000px;}
.y419{bottom:132.336000px;}
.y16f{bottom:133.056000px;}
.y22{bottom:133.425000px;}
.y403{bottom:133.956000px;}
.y527{bottom:135.036000px;}
.y52a{bottom:135.354000px;}
.y523{bottom:135.360000px;}
.yaa{bottom:135.396000px;}
.y531{bottom:135.540000px;}
.y212{bottom:135.576000px;}
.y4ae{bottom:136.050000px;}
.y459{bottom:136.335000px;}
.y4a1{bottom:136.590000px;}
.y48f{bottom:138.636000px;}
.y6c1{bottom:138.816000px;}
.y5fd{bottom:140.616000px;}
.y391{bottom:141.516000px;}
.yff{bottom:141.696000px;}
.y110{bottom:141.876000px;}
.y337{bottom:142.056000px;}
.y2ad{bottom:144.576000px;}
.y294{bottom:145.836000px;}
.y4b1{bottom:145.980000px;}
.y49a{bottom:146.196000px;}
.y441{bottom:146.376000px;}
.y6a4{bottom:146.736000px;}
.y544{bottom:147.096000px;}
.y309{bottom:147.276000px;}
.y252{bottom:147.636000px;}
.yc3{bottom:148.176000px;}
.y225{bottom:148.500000px;}
.y665{bottom:148.536000px;}
.y67d{bottom:148.896000px;}
.y189{bottom:149.436000px;}
.y49c{bottom:149.505000px;}
.y1e2{bottom:149.616000px;}
.y63a{bottom:150.510000px;}
.y52{bottom:150.870000px;}
.y5ae{bottom:151.050000px;}
.y637{bottom:151.230000px;}
.y220{bottom:151.590000px;}
.y481{bottom:153.030000px;}
.ye1{bottom:153.210000px;}
.y394{bottom:153.390000px;}
.y137{bottom:155.190000px;}
.y452{bottom:155.370000px;}
.y3fa{bottom:155.550000px;}
.y61b{bottom:156.270000px;}
.y3ac{bottom:156.810000px;}
.y367{bottom:156.990000px;}
.y20{bottom:157.350000px;}
.y66c{bottom:157.860000px;}
.y50f{bottom:157.890000px;}
.y4cb{bottom:157.899000px;}
.y4e2{bottom:158.034000px;}
.y4d9{bottom:158.040000px;}
.y305{bottom:158.430000px;}
.y314{bottom:159.330000px;}
.y2db{bottom:159.510000px;}
.y4a7{bottom:160.230000px;}
.y4a2{bottom:160.380000px;}
.y3e6{bottom:160.410000px;}
.y2f{bottom:160.605000px;}
.y45b{bottom:160.950000px;}
.y4f5{bottom:161.130000px;}
.y24d{bottom:161.490000px;}
.y8d{bottom:161.850000px;}
.y26e{bottom:162.030000px;}
.y3a8{bottom:162.390000px;}
.y42c{bottom:162.750000px;}
.y616{bottom:162.930000px;}
.y350{bottom:163.830000px;}
.y2c8{bottom:164.730000px;}
.y1b2{bottom:164.910000px;}
.y4b2{bottom:165.030000px;}
.y418{bottom:165.270000px;}
.y4a9{bottom:165.390000px;}
.y1ff{bottom:165.450000px;}
.y522{bottom:165.600000px;}
.y529{bottom:165.639000px;}
.y530{bottom:165.780000px;}
.y16e{bottom:165.990000px;}
.y3b7{bottom:167.430000px;}
.ya9{bottom:168.330000px;}
.y211{bottom:168.510000px;}
.y65b{bottom:168.690000px;}
.y6c0{bottom:169.050000px;}
.y224{bottom:170.100000px;}
.y1c9{bottom:171.570000px;}
.y583{bottom:171.750000px;}
.y5fc{bottom:173.550000px;}
.y4ab{bottom:173.775000px;}
.y5ba{bottom:173.910000px;}
.y5df{bottom:174.090000px;}
.y698{bottom:174.630000px;}
.y60d{bottom:174.990000px;}
.y70{bottom:176.070000px;}
.y6a3{bottom:176.250000px;}
.y5e6{bottom:177.330000px;}
.y2ac{bottom:177.510000px;}
.y293{bottom:178.770000px;}
.y10f{bottom:180.210000px;}
.y251{bottom:180.570000px;}
.y543{bottom:180.930000px;}
.y40e{bottom:181.470000px;}
.yfe{bottom:182.190000px;}
.y188{bottom:182.370000px;}
.y154{bottom:182.550000px;}
.y311{bottom:182.910000px;}
.y48e{bottom:183.630000px;}
.y8c{bottom:183.990000px;}
.y4b3{bottom:184.065000px;}
.y636{bottom:184.170000px;}
.ye0{bottom:184.530000px;}
.y336{bottom:186.330000px;}
.y390{bottom:186.510000px;}
.y66b{bottom:186.660000px;}
.y673{bottom:186.879000px;}
.y451{bottom:188.310000px;}
.y4aa{bottom:188.430000px;}
.y4a4{bottom:188.610000px;}
.y136{bottom:188.850000px;}
.y61a{bottom:189.210000px;}
.y5fe{bottom:189.390000px;}
.y3ab{bottom:189.750000px;}
.y366{bottom:189.930000px;}
.y19e{bottom:190.110000px;}
.y499{bottom:191.010000px;}
.y304{bottom:191.370000px;}
.y223{bottom:191.880000px;}
.y240{bottom:192.270000px;}
.y1f{bottom:192.630000px;}
.y51{bottom:192.810000px;}
.y3cb{bottom:192.990000px;}
.yc2{bottom:193.170000px;}
.y5cd{bottom:194.610000px;}
.y26d{bottom:194.970000px;}
.y521{bottom:195.840000px;}
.y52f{bottom:195.870000px;}
.y528{bottom:195.879000px;}
.y1b1{bottom:197.850000px;}
.y480{bottom:198.030000px;}
.y417{bottom:198.210000px;}
.y1fe{bottom:198.390000px;}
.y6bf{bottom:199.290000px;}
.y5b4{bottom:199.470000px;}
.y2e{bottom:200.205000px;}
.y3b6{bottom:200.370000px;}
.y3f9{bottom:200.550000px;}
.ya8{bottom:201.270000px;}
.y210{bottom:201.450000px;}
.y4ac{bottom:202.500000px;}
.y4b4{bottom:203.115000px;}
.y697{bottom:204.330000px;}
.y1c8{bottom:204.510000px;}
.y582{bottom:204.690000px;}
.y3e5{bottom:205.410000px;}
.y34f{bottom:206.130000px;}
.y24c{bottom:206.490000px;}
.y5de{bottom:207.030000px;}
.y3a7{bottom:207.390000px;}
.y8b{bottom:207.750000px;}
.y60c{bottom:207.930000px;}
.y4a8{bottom:209.955000px;}
.y563{bottom:210.450000px;}
.y16d{bottom:210.990000px;}
.y6f{bottom:211.710000px;}
.y31b{bottom:213.150000px;}
.yfd{bottom:213.330000px;}
.y250{bottom:213.510000px;}
.y10e{bottom:214.050000px;}
.y1e1{bottom:215.490000px;}
.ydf{bottom:215.670000px;}
.y310{bottom:215.850000px;}
.y664{bottom:216.030000px;}
.y153{bottom:216.210000px;}
.y542{bottom:216.390000px;}
.y639{bottom:216.570000px;}
.y635{bottom:217.110000px;}
.y21f{bottom:217.470000px;}
.y187{bottom:217.650000px;}
.y3ed{bottom:218.370000px;}
.y5b9{bottom:218.910000px;}
.y38f{bottom:219.450000px;}
.y56a{bottom:219.630000px;}
.y450{bottom:221.250000px;}
.y4b5{bottom:222.150000px;}
.y2ab{bottom:222.330000px;}
.y135{bottom:222.690000px;}
.y365{bottom:222.870000px;}
.y2c{bottom:223.230000px;}
.y6be{bottom:225.030000px;}
.y23f{bottom:225.210000px;}
.y31f{bottom:225.390000px;}
.y652{bottom:226.110000px;}
.y59e{bottom:226.470000px;}
.y4ad{bottom:226.695000px;}
.y1e{bottom:227.370000px;}
.y5cc{bottom:227.550000px;}
.y2d{bottom:227.745000px;}
.y26c{bottom:228.090000px;}
.y48d{bottom:228.450000px;}
.y615{bottom:228.990000px;}
.y1b0{bottom:230.970000px;}
.y335{bottom:231.150000px;}
.y1fd{bottom:231.330000px;}
.y4a6{bottom:233.100000px;}
.y659{bottom:233.130000px;}
.y3b5{bottom:233.310000px;}
.y504{bottom:233.490000px;}
.y406{bottom:233.670000px;}
.y696{bottom:233.850000px;}
.y619{bottom:234.210000px;}
.y20f{bottom:234.390000px;}
.y50{bottom:234.930000px;}
.y303{bottom:235.110000px;}
.y67c{bottom:236.190000px;}
.y440{bottom:236.370000px;}
.y1c7{bottom:237.450000px;}
.y55f{bottom:237.630000px;}
.yc1{bottom:238.170000px;}
.y19d{bottom:239.430000px;}
.y186{bottom:239.790000px;}
.y5dd{bottom:239.970000px;}
.y3a6{bottom:240.330000px;}
.y60b{bottom:240.870000px;}
.y47f{bottom:242.850000px;}
.y416{bottom:243.210000px;}
.y562{bottom:243.390000px;}
.y16c{bottom:243.930000px;}
.yfc{bottom:244.650000px;}
.y31a{bottom:246.090000px;}
.ya7{bottom:246.270000px;}
.y24f{bottom:246.450000px;}
.yde{bottom:246.990000px;}
.y6e{bottom:247.350000px;}
.y2c5{bottom:247.890000px;}
.y34e{bottom:248.250000px;}
.y29f{bottom:248.430000px;}
.y30f{bottom:248.790000px;}
.y1e0{bottom:249.510000px;}
.y152{bottom:249.870000px;}
.y634{bottom:250.050000px;}
.y4b6{bottom:250.380000px;}
.y21e{bottom:250.410000px;}
.y10d{bottom:252.570000px;}
.y44f{bottom:252.930000px;}
.y2aa{bottom:255.450000px;}
.y3aa{bottom:255.630000px;}
.y364{bottom:255.810000px;}
.y134{bottom:256.350000px;}
.y23e{bottom:258.150000px;}
.y31e{bottom:258.510000px;}
.y8a{bottom:258.690000px;}
.y58a{bottom:259.950000px;}
.y26b{bottom:261.030000px;}
.y541{bottom:261.390000px;}
.y1d{bottom:261.750000px;}
.y614{bottom:261.930000px;}
.y5cb{bottom:262.650000px;}
.y695{bottom:263.370000px;}
.y1af{bottom:263.910000px;}
.y1fc{bottom:264.270000px;}
.y5b3{bottom:265.530000px;}
.y503{bottom:266.430000px;}
.y302{bottom:266.610000px;}
.y5e5{bottom:267.150000px;}
.y324{bottom:267.330000px;}
.y651{bottom:268.410000px;}
.y1c6{bottom:270.390000px;}
.y55e{bottom:270.570000px;}
.y24b{bottom:272.370000px;}
.y5fb{bottom:272.550000px;}
.y5dc{bottom:272.910000px;}
.y48c{bottom:273.450000px;}
.y60a{bottom:273.810000px;}
.yfb{bottom:275.790000px;}
.y334{bottom:276.150000px;}
.y561{bottom:276.330000px;}
.y4f{bottom:276.870000px;}
.y3b4{bottom:277.050000px;}
.y292{bottom:277.590000px;}
.ydd{bottom:278.130000px;}
.y319{bottom:279.030000px;}
.ya6{bottom:279.210000px;}
.y20e{bottom:279.390000px;}
.y29e{bottom:281.370000px;}
.y19c{bottom:281.775000px;}
.y30e{bottom:281.955000px;}
.y1df{bottom:282.495000px;}
.y467{bottom:282.675000px;}
.y633{bottom:283.035000px;}
.y6d{bottom:283.215000px;}
.y21d{bottom:283.395000px;}
.y663{bottom:283.575000px;}
.y151{bottom:283.755000px;}
.y44e{bottom:284.475000px;}
.y185{bottom:284.835000px;}
.y5ca{bottom:285.015000px;}
.y3f8{bottom:285.195000px;}
.y3a5{bottom:285.375000px;}
.y569{bottom:285.555000px;}
.y4e0{bottom:286.095000px;}
.y133{bottom:286.635000px;}
.y47e{bottom:287.895000px;}
.y2a9{bottom:288.435000px;}
.y363{bottom:288.795000px;}
.y10c{bottom:290.775000px;}
.y23d{bottom:291.135000px;}
.y31d{bottom:291.495000px;}
.y89{bottom:291.675000px;}
.y34d{bottom:291.855000px;}
.y693{bottom:293.115000px;}
.y26a{bottom:294.015000px;}
.y540{bottom:294.375000px;}
.y613{bottom:294.915000px;}
.y3e4{bottom:295.455000px;}
.y1c{bottom:296.175000px;}
.y1ae{bottom:296.895000px;}
.y1fb{bottom:297.255000px;}
.y42b{bottom:297.615000px;}
.y328{bottom:299.055000px;}
.y502{bottom:299.415000px;}
.y323{bottom:300.315000px;}
.y313{bottom:301.755000px;}
.y2ea{bottom:303.195000px;}
.y1c5{bottom:303.375000px;}
.y3ca{bottom:304.635000px;}
.y24a{bottom:305.355000px;}
.y5fa{bottom:305.535000px;}
.y5db{bottom:305.895000px;}
.yfa{bottom:307.155000px;}
.y3b3{bottom:308.595000px;}
.y5b8{bottom:308.775000px;}
.y6cd{bottom:308.955000px;}
.y415{bottom:309.135000px;}
.y38e{bottom:309.315000px;}
.y16b{bottom:309.855000px;}
.y291{bottom:310.575000px;}
.y301{bottom:311.655000px;}
.y318{bottom:312.015000px;}
.ya5{bottom:312.195000px;}
.y20d{bottom:312.375000px;}
.y29d{bottom:314.355000px;}
.y59d{bottom:314.535000px;}
.y30d{bottom:314.895000px;}
.y1de{bottom:315.435000px;}
.y581{bottom:315.615000px;}
.y632{bottom:315.975000px;}
.yc0{bottom:316.155000px;}
.y21c{bottom:316.515000px;}
.y132{bottom:316.875000px;}
.y150{bottom:317.415000px;}
.y473{bottom:318.135000px;}
.y3a4{bottom:318.315000px;}
.y48b{bottom:318.495000px;}
.ydc{bottom:318.675000px;}
.y4e{bottom:318.855000px;}
.y2c1{bottom:319.575000px;}
.y47d{bottom:320.835000px;}
.y333{bottom:321.195000px;}
.y2a8{bottom:321.375000px;}
.y694{bottom:322.635000px;}
.y67b{bottom:323.535000px;}
.y19b{bottom:323.895000px;}
.y23c{bottom:324.075000px;}
.y31c{bottom:324.435000px;}
.y88{bottom:324.615000px;}
.y34c{bottom:324.795000px;}
.y43f{bottom:326.235000px;}
.y269{bottom:326.955000px;}
.y53f{bottom:327.315000px;}
.y612{bottom:327.855000px;}
.y5c9{bottom:328.575000px;}
.y44d{bottom:329.475000px;}
.y184{bottom:329.835000px;}
.y1b{bottom:330.375000px;}
.y42a{bottom:330.555000px;}
.y5b2{bottom:331.455000px;}
.y312{bottom:333.255000px;}
.y362{bottom:333.795000px;}
.y501{bottom:334.515000px;}
.y2e9{bottom:336.135000px;}
.y1c4{bottom:336.315000px;}
.y59c{bottom:336.495000px;}
.yf9{bottom:338.295000px;}
.y5f9{bottom:338.475000px;}
.y3e3{bottom:340.275000px;}
.y249{bottom:340.455000px;}
.y1ad{bottom:341.895000px;}
.y414{bottom:342.075000px;}
.y38d{bottom:342.255000px;}
.y290{bottom:343.515000px;}
.ya4{bottom:345.135000px;}
.y20c{bottom:345.315000px;}
.y131{bottom:347.115000px;}
.y29c{bottom:347.295000px;}
.y30c{bottom:347.835000px;}
.y1dd{bottom:348.375000px;}
.y55d{bottom:348.555000px;}
.y631{bottom:348.915000px;}
.ybf{bottom:349.095000px;}
.y21b{bottom:349.455000px;}
.ydb{bottom:349.815000px;}
.y5da{bottom:350.895000px;}
.y662{bottom:351.075000px;}
.y14f{bottom:351.255000px;}
.y609{bottom:351.795000px;}
.y650{bottom:352.875000px;}
.y3b2{bottom:353.595000px;}
.y47c{bottom:353.775000px;}
.y2a7{bottom:354.315000px;}
.y6c{bottom:354.675000px;}
.y16a{bottom:354.855000px;}
.y300{bottom:356.655000px;}
.y500{bottom:356.835000px;}
.y308{bottom:357.015000px;}
.y5e4{bottom:357.195000px;}
.y2b3{bottom:357.375000px;}
.y87{bottom:357.555000px;}
.y34b{bottom:357.735000px;}
.y10b{bottom:358.455000px;}
.y268{bottom:359.895000px;}
.y53e{bottom:360.255000px;}
.y4d{bottom:360.795000px;}
.y44c{bottom:361.515000px;}
.y472{bottom:361.695000px;}
.y183{bottom:362.775000px;}
.y1fa{bottom:363.315000px;}
.y429{bottom:363.495000px;}
.y4ef{bottom:364.575000px;}
.y1a{bottom:364.755000px;}
.y19a{bottom:366.195000px;}
.y327{bottom:366.375000px;}
.y361{bottom:366.735000px;}
.y618{bottom:367.815000px;}
.y5d9{bottom:367.995000px;}
.y23b{bottom:369.075000px;}
.y1c3{bottom:369.255000px;}
.yf8{bottom:369.435000px;}
.y692{bottom:370.695000px;}
.y43e{bottom:371.235000px;}
.y611{bottom:372.855000px;}
.y3e2{bottom:373.215000px;}
.y1ac{bottom:374.835000px;}
.y38c{bottom:375.195000px;}
.y28f{bottom:376.635000px;}
.y130{bottom:377.355000px;}
.ya3{bottom:378.075000px;}
.y20b{bottom:378.255000px;}
.y29b{bottom:380.235000px;}
.y30b{bottom:380.775000px;}
.yda{bottom:381.135000px;}
.y1dc{bottom:381.315000px;}
.y55c{bottom:381.495000px;}
.y630{bottom:381.855000px;}
.ybe{bottom:382.035000px;}
.y21a{bottom:382.395000px;}
.y5f8{bottom:383.475000px;}
.y608{bottom:384.735000px;}
.y14e{bottom:384.915000px;}
.y47b{bottom:386.715000px;}
.y2a6{bottom:387.255000px;}
.y169{bottom:387.795000px;}
.y2ff{bottom:389.595000px;}
.y317{bottom:389.955000px;}
.y6b{bottom:390.315000px;}
.y86{bottom:390.675000px;}
.y59b{bottom:391.395000px;}
.y267{bottom:392.835000px;}
.y53d{bottom:393.195000px;}
.y580{bottom:393.555000px;}
.y471{bottom:394.635000px;}
.y64f{bottom:394.995000px;}
.y1f9{bottom:396.255000px;}
.y428{bottom:396.435000px;}
.y10a{bottom:396.975000px;}
.y5b1{bottom:397.335000px;}
.y248{bottom:397.875000px;}
.y3b1{bottom:398.415000px;}
.y19{bottom:399.135000px;}
.y360{bottom:399.675000px;}
.y4ff{bottom:400.575000px;}
.yf7{bottom:400.755000px;}
.y5d8{bottom:400.935000px;}
.y23a{bottom:402.015000px;}
.y4df{bottom:402.195000px;}
.y1c2{bottom:402.375000px;}
.y4c{bottom:402.735000px;}
.y43d{bottom:404.175000px;}
.y3c8{bottom:404.355000px;}
.y610{bottom:405.795000px;}
.y3e1{bottom:406.335000px;}
.y12f{bottom:407.415000px;}
.y182{bottom:407.775000px;}
.y413{bottom:408.135000px;}
.y199{bottom:408.315000px;}
.y28e{bottom:409.575000px;}
.y678{bottom:410.835000px;}
.ya2{bottom:411.015000px;}
.y20a{bottom:411.195000px;}
.yd9{bottom:412.275000px;}
.y29a{bottom:413.175000px;}
.y30a{bottom:413.715000px;}
.y1db{bottom:414.255000px;}
.y62f{bottom:414.795000px;}
.ybd{bottom:414.975000px;}
.y6bd{bottom:415.155000px;}
.y219{bottom:415.335000px;}
.y5f7{bottom:416.415000px;}
.y3f6{bottom:417.675000px;}
.y691{bottom:418.395000px;}
.y661{bottom:418.575000px;}
.y14d{bottom:418.755000px;}
.y59a{bottom:419.655000px;}
.y47a{bottom:419.835000px;}
.y247{bottom:420.195000px;}
.y168{bottom:420.735000px;}
.y4c1{bottom:421.455000px;}
.y68a{bottom:421.635000px;}
.y2c0{bottom:422.175000px;}
.y2fe{bottom:422.535000px;}
.y316{bottom:422.895000px;}
.y2b2{bottom:423.255000px;}
.y85{bottom:423.615000px;}
.y34a{bottom:423.795000px;}
.y412{bottom:425.235000px;}
.y266{bottom:425.775000px;}
.y6a{bottom:425.955000px;}
.y53c{bottom:426.315000px;}
.y57f{bottom:426.495000px;}
.y470{bottom:427.575000px;}
.y1f8{bottom:429.195000px;}
.y48a{bottom:429.375000px;}
.y427{bottom:429.555000px;}
.y3b0{bottom:431.355000px;}
.yf6{bottom:431.895000px;}
.y2a5{bottom:432.255000px;}
.y35f{bottom:432.615000px;}
.y405{bottom:432.975000px;}
.y18{bottom:433.515000px;}
.y5d7{bottom:433.875000px;}
.y239{bottom:434.955000px;}
.y1c1{bottom:435.315000px;}
.y109{bottom:435.495000px;}
.y66d{bottom:436.215000px;}
.y43c{bottom:437.115000px;}
.y64e{bottom:437.295000px;}
.y12e{bottom:437.655000px;}
.y60f{bottom:438.735000px;}
.y3e0{bottom:439.275000px;}
.y67a{bottom:440.355000px;}
.y181{bottom:440.715000px;}
.y393{bottom:441.255000px;}
.y28d{bottom:442.515000px;}
.y4fe{bottom:442.695000px;}
.y646{bottom:443.955000px;}
.y209{bottom:444.135000px;}
.y55a{bottom:444.315000px;}
.y4b{bottom:444.675000px;}
.y6bc{bottom:445.215000px;}
.y299{bottom:446.115000px;}
.y5e3{bottom:447.015000px;}
.y1da{bottom:447.195000px;}
.ybc{bottom:447.915000px;}
.y218{bottom:448.275000px;}
.y5f6{bottom:449.355000px;}
.y50e{bottom:449.535000px;}
.y198{bottom:450.615000px;}
.y607{bottom:450.795000px;}
.y4f2{bottom:451.875000px;}
.y660{bottom:452.235000px;}
.y14c{bottom:452.415000px;}
.yd8{bottom:452.775000px;}
.y38b{bottom:453.135000px;}
.y167{bottom:453.675000px;}
.y2fd{bottom:455.475000px;}
.ya1{bottom:456.015000px;}
.y2b1{bottom:456.195000px;}
.y84{bottom:456.555000px;}
.y349{bottom:456.735000px;}
.y2bf{bottom:457.455000px;}
.y411{bottom:458.175000px;}
.y265{bottom:458.715000px;}
.y4fd{bottom:459.075000px;}
.y57e{bottom:459.435000px;}
.y46f{bottom:460.515000px;}
.y1f7{bottom:460.875000px;}
.y69{bottom:461.775000px;}
.y3a3{bottom:462.135000px;}
.y489{bottom:462.315000px;}
.y426{bottom:462.495000px;}
.y653{bottom:462.675000px;}
.yf5{bottom:463.215000px;}
.y479{bottom:463.395000px;}
.y6cc{bottom:464.655000px;}
.y246{bottom:465.195000px;}
.y5d6{bottom:466.815000px;}
.y17{bottom:467.715000px;}
.y12d{bottom:467.895000px;}
.y1c0{bottom:468.255000px;}
.y43b{bottom:470.055000px;}
.y6bb{bottom:470.955000px;}
.y53b{bottom:471.135000px;}
.y60e{bottom:471.675000px;}
.y3df{bottom:472.215000px;}
.y1ab{bottom:473.655000px;}
.y108{bottom:473.835000px;}
.y656{bottom:474.375000px;}
.y28c{bottom:475.455000px;}
.y3af{bottom:476.355000px;}
.y645{bottom:476.895000px;}
.y208{bottom:477.255000px;}
.y35e{bottom:477.615000px;}
.y298{bottom:477.795000px;}
.y64d{bottom:479.415000px;}
.y2e8{bottom:479.955000px;}
.y1d9{bottom:480.135000px;}
.y62e{bottom:480.855000px;}
.y217{bottom:481.215000px;}
.y5f5{bottom:482.295000px;}
.y606{bottom:483.735000px;}
.yd7{bottom:483.915000px;}
.y558{bottom:485.355000px;}
.y180{bottom:485.715000px;}
.y14b{bottom:486.075000px;}
.y4a{bottom:486.615000px;}
.ya0{bottom:488.955000px;}
.y2b0{bottom:489.135000px;}
.y83{bottom:489.495000px;}
.y348{bottom:489.675000px;}
.y410{bottom:491.115000px;}
.y264{bottom:491.655000px;}
.y5e2{bottom:492.015000px;}
.y2da{bottom:492.195000px;}
.y1f6{bottom:492.375000px;}
.y197{bottom:492.735000px;}
.ybb{bottom:492.915000px;}
.y46e{bottom:493.455000px;}
.y381{bottom:494.175000px;}
.yf4{bottom:494.355000px;}
.y478{bottom:494.895000px;}
.y3a2{bottom:495.075000px;}
.y488{bottom:495.255000px;}
.y425{bottom:495.435000px;}
.y68{bottom:497.415000px;}
.y12c{bottom:498.135000px;}
.y5d3{bottom:499.755000px;}
.y2fc{bottom:500.475000px;}
.y238{bottom:500.835000px;}
.y332{bottom:501.015000px;}
.y1bf{bottom:501.195000px;}
.y16{bottom:502.095000px;}
.y43a{bottom:502.995000px;}
.y53a{bottom:504.075000px;}
.y3de{bottom:505.155000px;}
.y568{bottom:507.315000px;}
.y28b{bottom:508.395000px;}
.y689{bottom:508.935000px;}
.y297{bottom:509.295000px;}
.y644{bottom:509.835000px;}
.y207{bottom:510.195000px;}
.y4c0{bottom:511.635000px;}
.y107{bottom:512.355000px;}
.y2e7{bottom:512.895000px;}
.y1d8{bottom:513.255000px;}
.y404{bottom:513.429000px;}
.y62d{bottom:513.795000px;}
.y216{bottom:514.155000px;}
.yd6{bottom:515.235000px;}
.y14a{bottom:516.315000px;}
.y4db{bottom:518.295000px;}
.y17f{bottom:518.655000px;}
.y166{bottom:519.555000px;}
.y65f{bottom:519.735000px;}
.y64c{bottom:521.715000px;}
.y9f{bottom:521.895000px;}
.y2af{bottom:522.075000px;}
.y6cb{bottom:522.255000px;}
.y82{bottom:522.435000px;}
.y347{bottom:522.615000px;}
.y263{bottom:524.775000px;}
.y57d{bottom:525.315000px;}
.yba{bottom:525.855000px;}
.y46d{bottom:526.395000px;}
.y3a1{bottom:528.015000px;}
.y487{bottom:528.195000px;}
.y12b{bottom:528.375000px;}
.y49{bottom:528.555000px;}
.y655{bottom:528.735000px;}
.y4ee{bottom:529.815000px;}
.y5af{bottom:529.995000px;}
.y2a4{bottom:531.075000px;}
.y67{bottom:533.235000px;}
.y2fb{bottom:533.415000px;}
.y2be{bottom:533.775000px;}
.y1be{bottom:534.135000px;}
.yf3{bottom:534.855000px;}
.y196{bottom:535.035000px;}
.y1f5{bottom:535.215000px;}
.y439{bottom:536.115000px;}
.y15{bottom:536.475000px;}
.y3c6{bottom:536.835000px;}
.y5e1{bottom:537.015000px;}
.y2d9{bottom:537.195000px;}
.y6ca{bottom:537.375000px;}
.y3dd{bottom:538.095000px;}
.y688{bottom:538.635000px;}
.y6a2{bottom:539.175000px;}
.y677{bottom:539.715000px;}
.y477{bottom:539.895000px;}
.y567{bottom:540.255000px;}
.y28a{bottom:541.335000px;}
.y215{bottom:542.235000px;}
.y643{bottom:542.955000px;}
.y245{bottom:543.135000px;}
.y296{bottom:544.575000px;}
.y237{bottom:545.835000px;}
.y331{bottom:546.015000px;}
.y1d7{bottom:546.195000px;}
.y4fb{bottom:546.375000px;}
.y149{bottom:546.555000px;}
.y62c{bottom:546.735000px;}
.y5f4{bottom:548.175000px;}
.y106{bottom:548.895000px;}
.y3f4{bottom:550.335000px;}
.y17e{bottom:551.595000px;}
.y378{bottom:551.775000px;}
.y165{bottom:552.495000px;}
.y65e{bottom:553.575000px;}
.y4bf{bottom:553.755000px;}
.y9e{bottom:554.835000px;}
.y206{bottom:555.015000px;}
.y81{bottom:555.375000px;}
.yd5{bottom:555.555000px;}
.y554{bottom:556.455000px;}
.y262{bottom:557.715000px;}
.y57c{bottom:558.255000px;}
.y12a{bottom:558.615000px;}
.yb9{bottom:558.795000px;}
.y46c{bottom:559.515000px;}
.y589{bottom:559.875000px;}
.y3a0{bottom:560.955000px;}
.y486{bottom:561.135000px;}
.y424{bottom:561.315000px;}
.y605{bottom:561.675000px;}
.y64b{bottom:563.835000px;}
.y2a3{bottom:564.015000px;}
.y321{bottom:565.485000px;}
.y402{bottom:565.665000px;}
.yf2{bottom:566.025000px;}
.y6c9{bottom:566.205000px;}
.y2fa{bottom:566.385000px;}
.y2bd{bottom:566.745000px;}
.y1bd{bottom:567.105000px;}
.y35d{bottom:567.465000px;}
.y48{bottom:567.645000px;}
.y44b{bottom:567.825000px;}
.y498{bottom:568.005000px;}
.y66{bottom:568.905000px;}
.y438{bottom:569.085000px;}
.y2d8{bottom:570.165000px;}
.y14{bottom:570.885000px;}
.y3dc{bottom:571.065000px;}
.y4ed{bottom:571.965000px;}
.y466{bottom:572.145000px;}
.y566{bottom:573.405000px;}
.y289{bottom:574.305000px;}
.y3ae{bottom:575.385000px;}
.y642{bottom:575.925000px;}
.y244{bottom:576.105000px;}
.y148{bottom:576.825000px;}
.y195{bottom:577.185000px;}
.y325{bottom:577.545000px;}
.y1f4{bottom:578.085000px;}
.y105{bottom:578.805000px;}
.y1d6{bottom:579.165000px;}
.y62b{bottom:579.705000px;}
.y37e{bottom:579.960000px;}
.y476{bottom:580.065000px;}
.y5f3{bottom:581.145000px;}
.y5e0{bottom:582.045000px;}
.y346{bottom:582.225000px;}
.y65d{bottom:582.765000px;}
.y22b{bottom:583.125000px;}
.y17d{bottom:584.565000px;}
.y687{bottom:587.625000px;}
.y9d{bottom:587.805000px;}
.y205{bottom:588.165000px;}
.y80{bottom:588.345000px;}
.y129{bottom:588.885000px;}
.y51f{bottom:589.785000px;}
.y261{bottom:590.685000px;}
.y330{bottom:591.045000px;}
.yb8{bottom:591.765000px;}
.y46b{bottom:592.485000px;}
.y57b{bottom:593.385000px;}
.y39f{bottom:593.925000px;}
.y485{bottom:594.105000px;}
.y423{bottom:594.285000px;}
.y604{bottom:594.645000px;}
.y47{bottom:595.005000px;}
.y6c8{bottom:595.185000px;}
.yd4{bottom:596.085000px;}
.y320{bottom:596.985000px;}
.y4be{bottom:597.345000px;}
.y164{bottom:597.525000px;}
.y2f9{bottom:599.325000px;}
.y2bc{bottom:599.865000px;}
.y1bc{bottom:600.045000px;}
.y437{bottom:602.025000px;}
.y2d7{bottom:603.105000px;}
.y380{bottom:603.255000px;}
.y588{bottom:603.465000px;}
.y3c5{bottom:603.645000px;}
.y3db{bottom:604.005000px;}
.y65{bottom:604.545000px;}
.y13{bottom:605.265000px;}
.y64a{bottom:606.165000px;}
.y565{bottom:606.345000px;}
.yf1{bottom:606.525000px;}
.y147{bottom:607.065000px;}
.y686{bottom:607.425000px;}
.y288{bottom:608.325000px;}
.y641{bottom:608.865000px;}
.y243{bottom:609.045000px;}
.y307{bottom:610.485000px;}
.y1f3{bottom:611.205000px;}
.y44a{bottom:611.385000px;}
.y236{bottom:611.745000px;}
.y6a1{bottom:611.925000px;}
.y1d5{bottom:612.105000px;}
.y35c{bottom:612.465000px;}
.y62a{bottom:612.645000px;}
.y5d1{bottom:612.825000px;}
.y5f2{bottom:614.085000px;}
.y345{bottom:615.345000px;}
.y4ec{bottom:615.525000px;}
.y465{bottom:615.705000px;}
.y3f3{bottom:616.965000px;}
.y17c{bottom:617.505000px;}
.y128{bottom:618.945000px;}
.y36c{bottom:619.125000px;}
.y104{bottom:619.305000px;}
.y194{bottom:619.485000px;}
.y9c{bottom:620.745000px;}
.y204{bottom:621.105000px;}
.y7f{bottom:621.285000px;}
.y46{bottom:622.365000px;}
.y50c{bottom:623.265000px;}
.y260{bottom:623.625000px;}
.y5c8{bottom:623.985000px;}
.y40d{bottom:624.525000px;}
.yb7{bottom:624.705000px;}
.y685{bottom:626.685000px;}
.y39e{bottom:627.045000px;}
.y603{bottom:627.585000px;}
.y5b7{bottom:629.565000px;}
.y38a{bottom:629.925000px;}
.y4bd{bottom:630.285000px;}
.y163{bottom:630.465000px;}
.y2f8{bottom:632.265000px;}
.y2bb{bottom:632.805000px;}
.y1bb{bottom:632.985000px;}
.y593{bottom:633.345000px;}
.y32f{bottom:635.865000px;}
.y2d6{bottom:636.045000px;}
.yd3{bottom:636.585000px;}
.y3da{bottom:636.945000px;}
.y146{bottom:637.305000px;}
.yf0{bottom:637.665000px;}
.y484{bottom:639.105000px;}
.y422{bottom:639.285000px;}
.y12{bottom:639.465000px;}
.y5c7{bottom:639.645000px;}
.y51c{bottom:640.185000px;}
.y64{bottom:640.365000px;}
.y45{bottom:640.725000px;}
.y287{bottom:641.265000px;}
.y640{bottom:641.805000px;}
.y242{bottom:641.985000px;}
.y3ad{bottom:643.425000px;}
.y1f2{bottom:644.145000px;}
.y497{bottom:644.505000px;}
.y235{bottom:644.685000px;}
.y1d4{bottom:645.045000px;}
.y436{bottom:645.585000px;}
.y684{bottom:645.945000px;}
.y654{bottom:646.485000px;}
.y344{bottom:648.285000px;}
.y4eb{bottom:648.465000px;}
.y6ba{bottom:649.005000px;}
.y127{bottom:649.185000px;}
.y66a{bottom:650.265000px;}
.y17b{bottom:650.445000px;}
.y6c7{bottom:652.785000px;}
.y9b{bottom:653.865000px;}
.y203{bottom:654.045000px;}
.y7e{bottom:654.225000px;}
.y44{bottom:654.945000px;}
.y222{bottom:655.125000px;}
.y35b{bottom:656.205000px;}
.y449{bottom:656.385000px;}
.y25f{bottom:656.565000px;}
.yb6{bottom:657.825000px;}
.y5f1{bottom:659.085000px;}
.y103{bottom:659.625000px;}
.y599{bottom:659.985000px;}
.y464{bottom:660.525000px;}
.y57a{bottom:660.705000px;}
.y683{bottom:661.785000px;}
.y5b6{bottom:662.505000px;}
.y483{bottom:662.865000px;}
.y193{bottom:663.045000px;}
.y4bc{bottom:663.225000px;}
.y162{bottom:663.405000px;}
.y2f7{bottom:665.205000px;}
.y2ba{bottom:665.745000px;}
.y1ba{bottom:665.925000px;}
.y145{bottom:667.365000px;}
.y46a{bottom:667.545000px;}
.y658{bottom:668.085000px;}
.yef{bottom:668.985000px;}
.y3d9{bottom:669.885000px;}
.y3c4{bottom:670.245000px;}
.y6a0{bottom:670.425000px;}
.y39d{bottom:671.865000px;}
.y421{bottom:672.225000px;}
.y11{bottom:673.845000px;}
.y51b{bottom:674.025000px;}
.y286{bottom:674.205000px;}
.y63f{bottom:674.745000px;}
.y241{bottom:674.925000px;}
.y63{bottom:676.005000px;}
.y5ad{bottom:676.905000px;}
.yd2{bottom:677.085000px;}
.y36e{bottom:677.445000px;}
.y234{bottom:677.625000px;}
.y1d3{bottom:677.985000px;}
.y629{bottom:678.525000px;}
.y6b9{bottom:678.705000px;}
.y126{bottom:679.425000px;}
.y32e{bottom:680.865000px;}
.y539{bottom:681.045000px;}
.y343{bottom:681.225000px;}
.y6c6{bottom:681.585000px;}
.y551{bottom:683.205000px;}
.y1aa{bottom:683.385000px;}
.y3f2{bottom:683.565000px;}
.y564{bottom:684.285000px;}
.y5d0{bottom:684.825000px;}
.y202{bottom:686.985000px;}
.y7d{bottom:687.165000px;}
.y448{bottom:689.325000px;}
.y25e{bottom:689.505000px;}
.y2e6{bottom:689.685000px;}
.y649{bottom:690.585000px;}
.y4fa{bottom:691.305000px;}
.y5f0{bottom:692.025000px;}
.y463{bottom:693.465000px;}
.y43{bottom:695.445000px;}
.y192{bottom:695.985000px;}
.y4bb{bottom:696.165000px;}
.y161{bottom:696.345000px;}
.y657{bottom:697.425000px;}
.y144{bottom:697.605000px;}
.y2f6{bottom:698.145000px;}
.y9a{bottom:698.685000px;}
.y1b9{bottom:699.045000px;}
.y595{bottom:699.480000px;}
.y35a{bottom:699.585000px;}
.y5c6{bottom:699.945000px;}
.yee{bottom:700.125000px;}
.y2d5{bottom:701.925000px;}
.yb5{bottom:702.645000px;}
.y3d8{bottom:703.005000px;}
.y5cf{bottom:703.185000px;}
.y598{bottom:704.985000px;}
.y420{bottom:705.165000px;}
.y579{bottom:705.705000px;}
.y285{bottom:707.145000px;}
.y469{bottom:707.685000px;}
.y2a2{bottom:707.865000px;}
.y10{bottom:708.225000px;}
.y6b8{bottom:708.945000px;}
.y587{bottom:709.305000px;}
.y125{bottom:709.665000px;}
.y1f1{bottom:710.025000px;}
.y496{bottom:710.385000px;}
.y233{bottom:710.745000px;}
.y1d2{bottom:710.925000px;}
.y628{bottom:711.465000px;}
.y62{bottom:711.825000px;}
.y5ac{bottom:713.445000px;}
.y538{bottom:713.985000px;}
.y342{bottom:714.165000px;}
.y42{bottom:715.605000px;}
.y1a9{bottom:716.325000px;}
.y39c{bottom:716.865000px;}
.y69f{bottom:717.225000px;}
.y51a{bottom:717.405000px;}
.y201{bottom:719.925000px;}
.y682{bottom:720.105000px;}
.y7c{bottom:720.285000px;}
.y435{bottom:722.085000px;}
.y447{bottom:722.265000px;}
.y25d{bottom:722.445000px;}
.y2e5{bottom:722.625000px;}
.y40c{bottom:724.065000px;}
.y65c{bottom:724.425000px;}
.y6b7{bottom:724.605000px;}
.y400{bottom:724.785000px;}
.y5ef{bottom:724.965000px;}
.y32d{bottom:725.865000px;}
.y4ea{bottom:726.405000px;}
.y462{bottom:726.585000px;}
.y143{bottom:727.845000px;}
.y17a{bottom:728.385000px;}
.y389{bottom:728.925000px;}
.y4ba{bottom:729.105000px;}
.y160{bottom:729.465000px;}
.y5c5{bottom:730.185000px;}
.y2f5{bottom:731.085000px;}
.y65a{bottom:731.265000px;}
.yed{bottom:731.445000px;}
.y99{bottom:731.625000px;}
.y1b8{bottom:731.985000px;}
.y648{bottom:732.705000px;}
.y2d4{bottom:734.865000px;}
.yb4{bottom:735.585000px;}
.y3d7{bottom:735.945000px;}
.y386{bottom:736.305000px;}
.y3c0{bottom:736.845000px;}
.y5ce{bottom:737.385000px;}
.y578{bottom:738.645000px;}
.y6c5{bottom:739.365000px;}
.y124{bottom:739.905000px;}
.y63e{bottom:740.625000px;}
.y191{bottom:740.805000px;}
.yf{bottom:741.885000px;}
.y1f0{bottom:742.965000px;}
.y495{bottom:743.325000px;}
.y232{bottom:743.685000px;}
.y1d1{bottom:743.865000px;}
.y627{bottom:744.405000px;}
.y359{bottom:744.585000px;}
.y537{bottom:746.925000px;}
.y41{bottom:747.105000px;}
.y61{bottom:747.465000px;}
.y482{bottom:747.825000px;}
.yd1{bottom:748.725000px;}
.y1a8{bottom:749.265000px;}
.y39b{bottom:749.805000px;}
.y41f{bottom:750.165000px;}
.y519{bottom:750.345000px;}
.y675{bottom:750.525000px;}
.y550{bottom:750.705000px;}
.y33{bottom:752.865000px;}
.y7b{bottom:753.225000px;}
.y446{bottom:755.205000px;}
.y25c{bottom:755.385000px;}
.y2e4{bottom:755.565000px;}
.y574{bottom:756.465000px;}
.y5ab{bottom:757.005000px;}
.y5ee{bottom:757.905000px;}
.y142{bottom:758.085000px;}
.y4e9{bottom:759.345000px;}
.y461{bottom:759.525000px;}
.y6b5{bottom:760.245000px;}
.y5c4{bottom:761.145000px;}
.y179{bottom:761.325000px;}
.y3ff{bottom:761.865000px;}
.y4b9{bottom:762.045000px;}
.y15f{bottom:762.405000px;}
.y98{bottom:764.745000px;}
.y1b7{bottom:764.925000px;}
.y434{bottom:767.085000px;}
.y21{bottom:768.165000px;}
.yb3{bottom:768.705000px;}
.y3d6{bottom:768.885000px;}
.y123{bottom:770.145000px;}
.y32c{bottom:770.865000px;}
.y60{bottom:771.225000px;}
.yec{bottom:771.765000px;}
.y54f{bottom:772.305000px;}
.y63d{bottom:773.565000px;}
.y190{bottom:773.925000px;}
.ye{bottom:775.005000px;}
.y1ef{bottom:775.905000px;}
.y2f4{bottom:776.085000px;}
.y2b9{bottom:776.625000px;}
.y1d0{bottom:776.805000px;}
.y626{bottom:777.525000px;}
.y494{bottom:778.965000px;}
.y2d3{bottom:779.865000px;}
.y40{bottom:780.045000px;}
.y41e{bottom:783.105000px;}
.y3f0{bottom:783.285000px;}
.y2a1{bottom:784.545000px;}
.y200{bottom:785.805000px;}
.y7a{bottom:786.165000px;}
.y141{bottom:788.325000px;}
.y231{bottom:788.505000px;}
.yd0{bottom:789.225000px;}
.y358{bottom:789.585000px;}
.y577{bottom:790.125000px;}
.y445{bottom:790.305000px;}
.y5ed{bottom:790.845000px;}
.y341{bottom:792.105000px;}
.y4e8{bottom:792.285000px;}
.y3d5{bottom:792.465000px;}
.y1a7{bottom:793.005000px;}
.y178{bottom:794.265000px;}
.y5f{bottom:794.805000px;}
.y4b8{bottom:795.165000px;}
.y15e{bottom:795.345000px;}
.y6b3{bottom:796.065000px;}
.y50a{bottom:797.145000px;}
.y97{bottom:797.685000px;}
.y1b6{bottom:797.865000px;}
.y433{bottom:800.025000px;}
.y122{bottom:800.205000px;}
.y3fe{bottom:800.565000px;}
.yb2{bottom:801.645000px;}
.y5aa{bottom:801.825000px;}
.y493{bottom:802.725000px;}
.y63c{bottom:806.505000px;}
.y2a0{bottom:806.865000px;}
.y284{bottom:807.045000px;}
.y1ee{bottom:808.845000px;}
.y2f3{bottom:809.025000px;}
.yd{bottom:809.385000px;}
.y2b8{bottom:809.565000px;}
.y1cf{bottom:809.925000px;}
.y625{bottom:810.465000px;}
.y5c3{bottom:810.825000px;}
.y475{bottom:811.005000px;}
.yeb{bottom:812.265000px;}
.y444{bottom:812.625000px;}
.y2d2{bottom:812.805000px;}
.y1a6{bottom:815.325000px;}
.y32b{bottom:815.685000px;}
.y54e{bottom:815.865000px;}
.y41d{bottom:816.045000px;}
.y369{bottom:816.405000px;}
.y647{bottom:817.125000px;}
.y387{bottom:818.100000px;}
.y140{bottom:818.565000px;}
.y3ef{bottom:818.580000px;}
.y18f{bottom:818.745000px;}
.y79{bottom:819.105000px;}
.ycf{bottom:820.365000px;}
.y25b{bottom:821.265000px;}
.y230{bottom:821.625000px;}
.y3f{bottom:821.985000px;}
.y40b{bottom:823.785000px;}
.y576{bottom:823.965000px;}
.y340{bottom:825.045000px;}
.y4e7{bottom:825.225000px;}
.y177{bottom:827.205000px;}
.y39a{bottom:827.745000px;}
.y4b7{bottom:828.105000px;}
.y15d{bottom:828.285000px;}
.y460{bottom:829.365000px;}
.y5b5{bottom:829.545000px;}
.y121{bottom:830.445000px;}
.y5e{bottom:830.625000px;}
.y1b5{bottom:830.805000px;}
.y6b0{bottom:831.705000px;}
.y3fd{bottom:833.505000px;}
.y357{bottom:834.585000px;}
.y597{bottom:834.945000px;}
.y4f9{bottom:836.385000px;}
.y536{bottom:836.565000px;}
.y4d4{bottom:837.105000px;}
.y3d4{bottom:837.465000px;}
.y492{bottom:837.825000px;}
.y283{bottom:839.985000px;}
.y63b{bottom:840.525000px;}
.y1ed{bottom:841.785000px;}
.y2f2{bottom:841.965000px;}
.y96{bottom:842.505000px;}
.y1ce{bottom:842.865000px;}
.y624{bottom:843.405000px;}
.yc{bottom:843.765000px;}
.y6c4{bottom:845.205000px;}
.y5c2{bottom:845.385000px;}
.y2d1{bottom:845.745000px;}
.yb1{bottom:846.465000px;}
.y5a9{bottom:846.825000px;}
.y13f{bottom:848.850000px;}
.y41c{bottom:849.030000px;}
.y518{bottom:849.390000px;}
.y45f{bottom:851.370000px;}
.y3ee{bottom:851.520000px;}
.yce{bottom:851.550000px;}
.y18e{bottom:851.730000px;}
.y78{bottom:852.090000px;}
.yea{bottom:852.810000px;}
.y69e{bottom:852.990000px;}
.y690{bottom:853.530000px;}
.y5d{bottom:854.430000px;}
.y22f{bottom:854.610000px;}
.y3e{bottom:854.970000px;}
.y25a{bottom:856.590000px;}
.y6ce{bottom:857.310000px;}
.y443{bottom:857.670000px;}
.y4e6{bottom:858.210000px;}
.y1a5{bottom:858.930000px;}
.y5ec{bottom:859.650000px;}
.y176{bottom:860.190000px;}
.y120{bottom:860.730000px;}
.y54d{bottom:860.910000px;}
.y1b4{bottom:863.790000px;}
.y5a8{bottom:863.970000px;}
.y375{bottom:864.510000px;}
.y3fc{bottom:866.490000px;}
.y6af{bottom:867.390000px;}
.y3bc{bottom:869.550000px;}
.y33f{bottom:870.090000px;}
.y602{bottom:870.270000px;}
.y491{bottom:871.710000px;}
.y282{bottom:872.970000px;}
.y15c{bottom:873.330000px;}
.y6c3{bottom:874.050000px;}
.y1ec{bottom:874.770000px;}
.y2f1{bottom:874.950000px;}
.yb{bottom:875.130000px;}
.y432{bottom:875.310000px;}
.y2b7{bottom:875.490000px;}
.y95{bottom:875.670000px;}
.y1cd{bottom:875.850000px;}
.y623{bottom:876.390000px;}
.y40a{bottom:876.930000px;}
.y2d0{bottom:878.730000px;}
.y13e{bottom:878.910000px;}
.y356{bottom:879.450000px;}
.yb0{bottom:879.630000px;}
.y535{bottom:881.610000px;}
.y69d{bottom:881.790000px;}
.y41b{bottom:881.970000px;}
.y517{bottom:882.330000px;}
.y3d3{bottom:882.510000px;}
.ycd{bottom:882.870000px;}
.y68f{bottom:883.230000px;}
.y5eb{bottom:883.410000px;}
.y383{bottom:884.670000px;}
.y392{bottom:884.850000px;}
.y77{bottom:885.030000px;}
.y442{bottom:885.750000px;}
.y5c1{bottom:886.470000px;}
.y45e{bottom:886.650000px;}
.y454{bottom:887.040000px;}
.y22e{bottom:887.550000px;}
.y3d{bottom:888.090000px;}
.y586{bottom:889.530000px;}
.y5c{bottom:890.070000px;}
.y11f{bottom:890.970000px;}
.y573{bottom:891.330000px;}
.ye9{bottom:893.310000px;}
.y399{bottom:893.670000px;}
.y4e5{bottom:894.030000px;}
.y4f8{bottom:894.750000px;}
.y175{bottom:895.470000px;}
.y18d{bottom:896.730000px;}
.y5a7{bottom:896.910000px;}
.y468{bottom:898.170000px;}
.y6c2{bottom:899.250000px;}
.y3fb{bottom:899.430000px;}
.y3d1{bottom:900.330000px;}
.ya{bottom:900.690000px;}
.y490{bottom:900.870000px;}
.y58f{bottom:901.230000px;}
.y49b{bottom:901.620000px;}
.y1a4{bottom:902.490000px;}
.y591{bottom:903.210000px;}
.y32a{bottom:905.730000px;}
.y281{bottom:905.910000px;}
.y15b{bottom:906.270000px;}
.y1eb{bottom:907.890000px;}
.y2f0{bottom:908.070000px;}
.y2b6{bottom:908.430000px;}
.y94{bottom:908.610000px;}
.y1cc{bottom:908.790000px;}
.y13d{bottom:909.150000px;}
.y622{bottom:909.330000px;}
.y69c{bottom:910.590000px;}
.y2cf{bottom:911.670000px;}
.y431{bottom:912.210000px;}
.y54c{bottom:912.390000px;}
.yaf{bottom:912.570000px;}
.y5b{bottom:913.830000px;}
.ycc{bottom:914.010000px;}
.y33e{bottom:914.910000px;}
.y5c0{bottom:916.710000px;}
.y174{bottom:917.790000px;}
.y76{bottom:917.970000px;}
.y117{bottom:918.510000px;}
.y22d{bottom:920.490000px;}
.y11e{bottom:921.210000px;}
.y45d{bottom:922.110000px;}
.y585{bottom:922.470000px;}
.y102{bottom:924.450000px;}
.y571{bottom:924.990000px;}
.y534{bottom:926.430000px;}
.y398{bottom:926.610000px;}
.y41a{bottom:926.970000px;}
.y516{bottom:927.330000px;}
.y6ab{bottom:927.870000px;}
.y5ea{bottom:928.230000px;}
.y18c{bottom:929.670000px;}
.y5a6{bottom:929.850000px;}
.y3c{bottom:930.030000px;}
.y68e{bottom:932.190000px;}
.y5bf{bottom:932.370000px;}
.y2e3{bottom:932.550000px;}
.ye8{bottom:933.630000px;}
.y214{bottom:933.990000px;}
.y9{bottom:934.530000px;}
.y1a3{bottom:935.430000px;}
.y259{bottom:935.790000px;}
.y601{bottom:936.150000px;}
.y5a{bottom:937.410000px;}
.y280{bottom:938.670000px;}
.y15a{bottom:939.210000px;}
.y13c{bottom:939.390000px;}
.y1ea{bottom:940.830000px;}
.y2ef{bottom:941.010000px;}
.y93{bottom:941.550000px;}
.y1cb{bottom:941.730000px;}
.y506{bottom:942.090000px;}
.y621{bottom:942.270000px;}
.y27d{bottom:943.890000px;}
.y52e{bottom:944.250000px;}
.y2ce{bottom:944.790000px;}
.ycb{bottom:945.330000px;}
.yae{bottom:945.510000px;}
.y54b{bottom:946.230000px;}
.y33d{bottom:947.850000px;}
.y329{bottom:950.730000px;}
.y75{bottom:950.910000px;}
.y11d{bottom:951.450000px;}
.y2b5{bottom:952.170000px;}
.y680{bottom:952.530000px;}
.y4d3{bottom:953.250000px;}
.y37a{bottom:953.460000px;}
.y584{bottom:954.690000px;}
.y116{bottom:957.030000px;}
.y430{bottom:957.210000px;}
.y58b{bottom:958.680000px;}
.y515{bottom:960.270000px;}
.y8{bottom:960.630000px;}
.y173{bottom:962.610000px;}
.y3b{bottom:962.970000px;}
.y58d{bottom:963.360000px;}
.y5a5{bottom:963.690000px;}
.y213{bottom:964.050000px;}
.y101{bottom:964.950000px;}
.y2e2{bottom:965.490000px;}
.y1a2{bottom:968.370000px;}
.y669{bottom:968.910000px;}
.y3ba{bottom:969.090000px;}
.y355{bottom:969.450000px;}
.y13b{bottom:969.630000px;}
.y372{bottom:971.250000px;}
.y397{bottom:971.610000px;}
.y509{bottom:971.790000px;}
.y159{bottom:972.150000px;}
.y27f{bottom:972.690000px;}
.y59{bottom:973.230000px;}
.y56b{bottom:973.410000px;}
.y1e9{bottom:973.770000px;}
.y2ee{bottom:973.950000px;}
.ye7{bottom:974.130000px;}
.y92{bottom:974.490000px;}
.y1ca{bottom:974.670000px;}
.y620{bottom:975.210000px;}
.yca{bottom:976.470000px;}
.y2cd{bottom:977.730000px;}
.yad{bottom:978.450000px;}
.y258{bottom:979.350000px;}
.y54a{bottom:979.890000px;}
.y33c{bottom:980.970000px;}
.y11c{bottom:981.690000px;}
.y3e9{bottom:982.590000px;}
.y2b4{bottom:983.670000px;}
.y74{bottom:983.850000px;}
.y7{bottom:986.730000px;}
.y42f{bottom:990.150000px;}
.y115{bottom:992.850000px;}
.y514{bottom:993.210000px;}
.y18b{bottom:995.550000px;}
.y58{bottom:996.990000px;}
.y2e1{bottom:998.430000px;}
.y668{bottom:998.610000px;}
.y37c{bottom:998.790000px;}
.y6a9{bottom:999.330000px;}
.y13a{bottom:999.870000px;}
.y1a1{bottom:1001.310000px;}
.y3a{bottom:1004.910000px;}
.y158{bottom:1005.090000px;}
.y100{bottom:1005.450000px;}
.y27e{bottom:1005.630000px;}
.y5e9{bottom:1006.170000px;}
.y1e8{bottom:1006.710000px;}
.y2ed{bottom:1006.890000px;}
.y56f{bottom:1007.070000px;}
.y91{bottom:1007.430000px;}
.yc9{bottom:1007.610000px;}
.y61f{bottom:1008.150000px;}
.y2cc{bottom:1010.670000px;}
.y67f{bottom:1010.850000px;}
.yac{bottom:1011.390000px;}
.y674{bottom:1011.570000px;}
.y11b{bottom:1011.750000px;}
.y6{bottom:1012.650000px;}
.y549{bottom:1013.550000px;}
.y600{bottom:1014.090000px;}
.y354{bottom:1014.450000px;}
.ye6{bottom:1014.630000px;}
.y69b{bottom:1015.890000px;}
.y396{bottom:1016.610000px;}
.y73{bottom:1016.970000px;}
.y57{bottom:1020.570000px;}
.y2dc{bottom:1020.750000px;}
.y3b9{bottom:1022.370000px;}
.y42e{bottom:1023.090000px;}
.y257{bottom:1024.170000px;}
.y33b{bottom:1024.530000px;}
.y513{bottom:1026.150000px;}
.y18a{bottom:1028.670000px;}
.y114{bottom:1029.570000px;}
.y273{bottom:1029.930000px;}
.y139{bottom:1030.110000px;}
.y270{bottom:1030.830000px;}
.y2e0{bottom:1031.370000px;}
.y276{bottom:1032.090000px;}
.y68d{bottom:1032.450000px;}
.y1a0{bottom:1034.250000px;}
.y27b{bottom:1036.230000px;}
.y39{bottom:1037.850000px;}
.y157{bottom:1038.030000px;}
.yc8{bottom:1038.930000px;}
.y5e8{bottom:1039.110000px;}
.y1e7{bottom:1039.650000px;}
.y2ec{bottom:1039.830000px;}
.y90{bottom:1040.370000px;}
.y172{bottom:1040.550000px;}
.y56d{bottom:1040.730000px;}
.y61e{bottom:1041.090000px;}
.y11a{bottom:1041.990000px;}
.y370{bottom:1043.610000px;}
.yab{bottom:1044.330000px;}
.y3cf{bottom:1044.870000px;}
.y69a{bottom:1045.410000px;}
.ye5{bottom:1045.770000px;}
.y5ff{bottom:1047.030000px;}
.y548{bottom:1047.210000px;}
.y667{bottom:1047.570000px;}
.y5a4{bottom:1049.010000px;}
.y5{bottom:1049.370000px;}
.y72{bottom:1049.910000px;}
.y5bc{bottom:1053.870000px;}
.y2cb{bottom:1055.490000px;}
.y33a{bottom:1056.030000px;}
.y56{bottom:1056.390000px;}
.y113{bottom:1057.110000px;}
.y3b8{bottom:1058.550000px;}
.y512{bottom:1059.090000px;}
.y353{bottom:1059.450000px;}
.y6a7{bottom:1059.630000px;}
.y138{bottom:1060.170000px;}
.y1b3{bottom:1061.610000px;}
.y505{bottom:1063.050000px;}
.y2df{bottom:1064.310000px;}
.y19f{bottom:1067.370000px;}
.y256{bottom:1069.170000px;}
.y4f6{bottom:1069.350000px;}
.yc7{bottom:1070.070000px;}
.y38{bottom:1070.790000px;}
.y119{bottom:1072.230000px;}
.y1e6{bottom:1072.590000px;}
.y2eb{bottom:1072.770000px;}
.y171{bottom:1073.490000px;}
.y61d{bottom:1074.210000px;}
.y699{bottom:1076.370000px;}
.y8f{bottom:1076.550000px;}
.ye4{bottom:1077.090000px;}
.y55{bottom:1079.970000px;}
.y546{bottom:1081.050000px;}
.y2b{bottom:1081.230000px;}
.y71{bottom:1082.850000px;}
.y156{bottom:1083.030000px;}
.y4{bottom:1084.470000px;}
.y3e8{bottom:1087.710000px;}
.y666{bottom:1090.770000px;}
.y511{bottom:1092.030000px;}
.yc6{bottom:1093.830000px;}
.y45c{bottom:1095.990000px;}
.y112{bottom:1096.890000px;}
.y339{bottom:1099.770000px;}
.y42d{bottom:1101.030000px;}
.y118{bottom:1102.470000px;}
.y37{bottom:1103.730000px;}
.y352{bottom:1104.270000px;}
.y1e5{bottom:1105.530000px;}
.y255{bottom:1105.710000px;}
.y170{bottom:1106.430000px;}
.y2de{bottom:1107.870000px;}
.ye3{bottom:1108.230000px;}
.y61c{bottom:1109.310000px;}
.y2a{bottom:1110.030000px;}
.y3{bottom:1113.270000px;}
.y8e{bottom:1114.350000px;}
.y54{bottom:1115.790000px;}
.y155{bottom:1118.490000px;}
.y6a5{bottom:1120.830000px;}
.y5a2{bottom:1123.530000px;}
.y5e7{bottom:1133.820000px;}
.y338{bottom:1135.260000px;}
.yc5{bottom:1136.520000px;}
.y111{bottom:1136.700000px;}
.y1e4{bottom:1138.500000px;}
.y3a9{bottom:1139.400000px;}
.y29{bottom:1139.580000px;}
.y254{bottom:1141.020000px;}
.y2{bottom:1141.200000px;}
.y27{bottom:1194.120000px;}
.h77{height:15.120000px;}
.h76{height:16.380000px;}
.h32{height:19.620000px;}
.h2a{height:21.600000px;}
.h75{height:21.780000px;}
.h29{height:22.500000px;}
.h31{height:25.200000px;}
.h2e{height:25.956000px;}
.h2b{height:27.000000px;}
.h50{height:28.800000px;}
.h8b{height:28.836000px;}
.h83{height:28.980000px;}
.h8c{height:29.016000px;}
.h64{height:29.556000px;}
.h1c{height:29.700000px;}
.h7e{height:30.060000px;}
.h63{height:30.240000px;}
.h24{height:30.600000px;}
.h6d{height:31.716000px;}
.h3c{height:32.940000px;}
.h45{height:32.976000px;}
.h34{height:33.120000px;}
.h79{height:33.156000px;}
.h6a{height:33.300000px;}
.h11{height:33.660000px;}
.hc{height:33.840000px;}
.h7{height:35.332031px;}
.h91{height:35.640000px;}
.h90{height:35.676000px;}
.h92{height:35.820000px;}
.h8d{height:35.856000px;}
.h20{height:36.180000px;}
.h6b{height:36.360000px;}
.h2c{height:37.080000px;}
.h2d{height:39.420000px;}
.h67{height:39.600000px;}
.h13{height:39.667852px;}
.h6c{height:40.140000px;}
.h1d{height:40.320000px;}
.h69{height:40.356000px;}
.h1f{height:41.220000px;}
.h1e{height:42.120000px;}
.h7f{height:45.140977px;}
.h6f{height:46.260000px;}
.h80{height:46.440000px;}
.h4b{height:47.223633px;}
.h4c{height:47.349562px;}
.h71{height:47.700000px;}
.h14{height:49.284492px;}
.h4f{height:52.253437px;}
.h15{height:52.260820px;}
.h49{height:54.386719px;}
.h17{height:54.628594px;}
.h1a{height:55.409062px;}
.h5a{height:57.600000px;}
.h5e{height:57.636000px;}
.h5d{height:57.780000px;}
.h2{height:57.927656px;}
.h89{height:58.320000px;}
.h60{height:58.500000px;}
.h25{height:58.651172px;}
.h12{height:59.378906px;}
.h7d{height:60.300000px;}
.h26{height:60.446250px;}
.h7c{height:60.480000px;}
.h62{height:60.516000px;}
.h93{height:62.184375px;}
.hd{height:62.964844px;}
.h33{height:63.632461px;}
.h16{height:64.129219px;}
.h3{height:65.010937px;}
.h37{height:65.880000px;}
.h38{height:65.916000px;}
.h82{height:65.946445px;}
.h7b{height:66.060000px;}
.h68{height:66.780000px;}
.h8e{height:68.002031px;}
.h10{height:69.473320px;}
.h4e{height:69.840000px;}
.h8{height:70.664062px;}
.h22{height:70.956000px;}
.h8f{height:71.460000px;}
.h48{height:72.334336px;}
.h5{height:73.668867px;}
.h19{height:74.004654px;}
.h18{height:74.953125px;}
.he{height:78.973945px;}
.h23{height:82.296000px;}
.h21{height:82.440000px;}
.h42{height:83.743242px;}
.hb{height:84.318047px;}
.h54{height:86.400000px;}
.h5c{height:86.436000px;}
.h5b{height:86.580000px;}
.h8a{height:86.616000px;}
.h6{height:87.695156px;}
.h4{height:89.068359px;}
.ha{height:89.410078px;}
.h27{height:93.691406px;}
.h85{height:97.020000px;}
.h35{height:98.820000px;}
.h40{height:98.856000px;}
.h3f{height:99.000000px;}
.h81{height:99.687656px;}
.h72{height:100.476000px;}
.h3d{height:104.400000px;}
.h3a{height:110.916000px;}
.h28{height:113.436000px;}
.h6e{height:113.580000px;}
.h70{height:115.020000px;}
.h53{height:115.236000px;}
.h51{height:115.380000px;}
.h55{height:115.416000px;}
.h86{height:117.360000px;}
.h39{height:131.760000px;}
.h7a{height:131.790000px;}
.h44{height:131.796000px;}
.h41{height:131.940000px;}
.h36{height:131.976000px;}
.h30{height:136.800000px;}
.h2f{height:139.680000px;}
.h3b{height:143.820000px;}
.h5f{height:144.180000px;}
.h57{height:144.216000px;}
.h61{height:144.396000px;}
.h59{height:144.900000px;}
.h74{height:148.320000px;}
.h78{height:148.500000px;}
.h73{height:153.900000px;}
.h9{height:157.710000px;}
.h88{height:172.980000px;}
.h52{height:173.010000px;}
.h56{height:173.160000px;}
.h58{height:173.190000px;}
.h47{height:192.240000px;}
.h46{height:198.570000px;}
.h84{height:201.810000px;}
.h87{height:201.990000px;}
.h1b{height:207.570000px;}
.h65{height:211.500000px;}
.h66{height:211.530000px;}
.h4a{height:219.780000px;}
.hf{height:247.890000px;}
.h4d{height:281.700000px;}
.h43{height:530.535000px;}
.h3e{height:868.605000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w50{width:17.820000px;}
.w51{width:22.140000px;}
.w72{width:24.480000px;}
.w6e{width:32.040000px;}
.w5b{width:40.320000px;}
.w5c{width:43.596000px;}
.w60{width:43.956000px;}
.w5f{width:47.160000px;}
.w9b{width:48.600000px;}
.w8c{width:51.660000px;}
.w85{width:52.380000px;}
.w8e{width:52.416000px;}
.w87{width:53.100000px;}
.w6c{width:54.000000px;}
.w62{width:56.016000px;}
.w86{width:57.456000px;}
.w1e{width:57.960000px;}
.w1c{width:58.140000px;}
.w3b{width:58.500000px;}
.w41{width:59.220000px;}
.w1d{width:59.580000px;}
.w36{width:63.036000px;}
.w37{width:63.180000px;}
.w88{width:63.216000px;}
.w70{width:63.756000px;}
.w3c{width:64.476000px;}
.w56{width:64.620000px;}
.w31{width:64.800000px;}
.w30{width:65.016000px;}
.w65{width:65.880000px;}
.w42{width:66.636000px;}
.w98{width:67.320000px;}
.w9a{width:67.536000px;}
.w1b{width:68.760000px;}
.w3a{width:68.796000px;}
.w3f{width:69.156000px;}
.w2f{width:71.460000px;}
.w40{width:72.000000px;}
.w64{width:72.576000px;}
.w5d{width:72.900000px;}
.w90{width:73.620000px;}
.w34{width:73.656000px;}
.w6b{width:79.416000px;}
.w95{width:81.036000px;}
.w55{width:83.736000px;}
.w99{width:84.096000px;}
.w94{width:84.240000px;}
.w35{width:84.420000px;}
.w5a{width:84.780000px;}
.w71{width:84.996000px;}
.w84{width:85.500000px;}
.w58{width:86.940000px;}
.w57{width:87.156000px;}
.w67{width:91.116000px;}
.w59{width:92.340000px;}
.w8d{width:94.860000px;}
.w66{width:97.740000px;}
.wa{width:97.920000px;}
.w5e{width:98.100000px;}
.wc{width:98.280000px;}
.w6a{width:102.960000px;}
.w73{width:105.300000px;}
.w12{width:105.480000px;}
.w9d{width:105.660000px;}
.wd{width:106.740000px;}
.w16{width:111.780000px;}
.w17{width:112.140000px;}
.w3e{width:114.660000px;}
.wb{width:115.056000px;}
.w1a{width:115.380000px;}
.w13{width:116.136000px;}
.w19{width:117.720000px;}
.w18{width:117.900000px;}
.w63{width:122.040000px;}
.wf{width:126.720000px;}
.w78{width:126.900000px;}
.w74{width:127.260000px;}
.w76{width:127.296000px;}
.w77{width:127.440000px;}
.w75{width:127.476000px;}
.w69{width:128.376000px;}
.w6f{width:129.780000px;}
.w68{width:130.140000px;}
.w61{width:132.120000px;}
.w9{width:133.200000px;}
.w39{width:133.560000px;}
.w11{width:137.376000px;}
.w49{width:137.556000px;}
.w6d{width:142.956000px;}
.w21{width:144.936000px;}
.w46{width:147.780000px;}
.w7f{width:147.996000px;}
.w10{width:148.176000px;}
.w96{width:156.450000px;}
.w33{width:158.400000px;}
.w80{width:158.760000px;}
.w47{width:158.790000px;}
.w7c{width:159.120000px;}
.w7d{width:159.330000px;}
.w20{width:167.250000px;}
.wa0{width:169.770000px;}
.w9e{width:170.130000px;}
.w7e{width:170.670000px;}
.w53{width:175.680000px;}
.w52{width:175.710000px;}
.w81{width:178.230000px;}
.w89{width:179.490000px;}
.w91{width:184.530000px;}
.w28{width:185.250000px;}
.w29{width:186.510000px;}
.w2e{width:188.130000px;}
.w38{width:190.110000px;}
.w93{width:194.070000px;}
.w32{width:196.590000px;}
.w82{width:196.770000px;}
.w48{width:201.270000px;}
.w8a{width:201.630000px;}
.w15{width:201.990000px;}
.w83{width:203.070000px;}
.w4d{width:206.670000px;}
.w4b{width:207.030000px;}
.w26{width:208.470000px;}
.w24{width:209.010000px;}
.w4f{width:209.550000px;}
.w23{width:210.630000px;}
.w25{width:211.170000px;}
.w4e{width:211.350000px;}
.w8b{width:211.890000px;}
.w9f{width:212.610000px;}
.w9c{width:213.015000px;}
.w22{width:215.310000px;}
.w92{width:219.270000px;}
.w8f{width:222.330000px;}
.w7{width:229.530000px;}
.w97{width:238.350000px;}
.w43{width:250.950000px;}
.w4{width:254.010000px;}
.w3d{width:257.610000px;}
.w27{width:291.270000px;}
.w44{width:317.730000px;}
.w45{width:317.775000px;}
.we{width:317.910000px;}
.w7b{width:318.090000px;}
.w79{width:318.450000px;}
.w7a{width:318.675000px;}
.w1f{width:322.770000px;}
.w8{width:339.015000px;}
.w4a{width:363.495000px;}
.w2b{width:400.500000px;}
.w14{width:417.495000px;}
.w4c{width:421.635000px;}
.w5{width:448.995000px;}
.w3{width:469.875000px;}
.w6{width:470.055000px;}
.w2c{width:574.020000px;}
.w2d{width:598.860000px;}
.w2a{width:666.465000px;}
.w54{width:828.690000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x51{left:4.860000px;}
.x4e{left:7.740000px;}
.x33{left:9.000000px;}
.x8{left:10.620000px;}
.x48{left:11.700000px;}
.x1c{left:12.960000px;}
.x1a{left:14.400000px;}
.x2d{left:15.840000px;}
.x27{left:17.280000px;}
.x31{left:18.900000px;}
.x1d{left:20.880000px;}
.x2b{left:22.500000px;}
.x45{left:23.754000px;}
.x3c{left:25.020000px;}
.x39{left:27.000000px;}
.x35{left:28.800000px;}
.x36{left:30.774000px;}
.xa4{left:31.860000px;}
.x3b{left:32.934000px;}
.x79{left:34.380000px;}
.x7a{left:35.640000px;}
.x4d{left:37.614000px;}
.x3f{left:38.925000px;}
.x3e{left:40.500000px;}
.x3a{left:43.965000px;}
.x2f{left:45.405000px;}
.x80{left:46.440000px;}
.x38{left:48.780000px;}
.x3d{left:50.220000px;}
.x37{left:51.705000px;}
.x57{left:53.460000px;}
.xc1{left:54.720000px;}
.x4a{left:57.672000px;}
.x9a{left:59.940000px;}
.xa6{left:61.020000px;}
.x78{left:62.100000px;}
.x49{left:63.251987px;}
.x1f{left:65.196000px;}
.x5f{left:66.675000px;}
.xbf{left:68.760000px;}
.x9{left:70.740000px;}
.x89{left:72.534000px;}
.x56{left:73.620000px;}
.x1e{left:75.240000px;}
.x60{left:76.650000px;}
.x4b{left:79.631987px;}
.x69{left:81.900000px;}
.x54{left:84.420000px;}
.x61{left:85.830000px;}
.x88{left:87.480000px;}
.x5b{left:88.605000px;}
.x52{left:90.714000px;}
.x67{left:91.980000px;}
.x81{left:95.040000px;}
.x7b{left:98.280000px;}
.x58{left:99.900000px;}
.x2{left:106.415987px;}
.x6c{left:107.535000px;}
.x8c{left:110.550000px;}
.x1b{left:114.660000px;}
.x47{left:118.836000px;}
.x46{left:121.176000px;}
.x8a{left:123.330000px;}
.x26{left:125.856000px;}
.x6{left:127.655987px;}
.x92{left:135.180000px;}
.x8d{left:137.010000px;}
.x72{left:140.010000px;}
.x8b{left:141.870000px;}
.x12{left:144.215987px;}
.x41{left:148.895987px;}
.x11{left:154.649987px;}
.x42{left:159.509987px;}
.x13{left:160.589987px;}
.x62{left:163.590000px;}
.xaf{left:165.269987px;}
.x22{left:172.649987px;}
.x10{left:180.749987px;}
.x6a{left:184.500000px;}
.x68{left:190.950000px;}
.x6d{left:194.145000px;}
.x23{left:199.649987px;}
.x16{left:207.749987px;}
.x21{left:224.129987px;}
.xd{left:226.649987px;}
.x17{left:234.749987px;}
.x6e{left:237.450000px;}
.x5c{left:241.560000px;}
.x86{left:243.750000px;}
.x2e{left:255.630000px;}
.x82{left:262.830000px;}
.x6b{left:264.675000px;}
.x5d{left:268.635000px;}
.xa2{left:272.910000px;}
.x8f{left:276.870000px;}
.x6f{left:280.800000px;}
.x5e{left:285.375000px;}
.x7c{left:287.490000px;}
.x9c{left:295.815000px;}
.x28{left:297.075000px;}
.xa9{left:304.995000px;}
.xc3{left:312.555000px;}
.x87{left:313.815000px;}
.x73{left:316.875000px;}
.x5{left:319.034987px;}
.x4c{left:322.635000px;}
.xb{left:324.615000px;}
.x4{left:329.654987px;}
.x7{left:330.915000px;}
.x83{left:332.355000px;}
.xa{left:335.235000px;}
.xbc{left:340.275000px;}
.xb8{left:343.335000px;}
.x53{left:344.415000px;}
.x96{left:350.894987px;}
.x9b{left:359.535000px;}
.x7d{left:361.875000px;}
.x70{left:367.410000px;}
.xa7{left:369.615000px;}
.x94{left:381.854987px;}
.x74{left:386.535000px;}
.xc5{left:398.775000px;}
.x30{left:404.535000px;}
.x71{left:414.180000px;}
.x95{left:417.674987px;}
.x59{left:420.015000px;}
.xc2{left:425.775000px;}
.xad{left:426.854987px;}
.xba{left:429.555000px;}
.x29{left:430.815000px;}
.x97{left:434.880000px;}
.x90{left:436.395000px;}
.x3{left:446.654987px;}
.x43{left:449.354987px;}
.x4f{left:451.875000px;}
.x75{left:458.715000px;}
.x25{left:460.694987px;}
.x84{left:463.755000px;}
.xc6{left:466.815000px;}
.xa8{left:472.575000px;}
.x9d{left:475.095000px;}
.xbd{left:478.875000px;}
.xbb{left:482.655000px;}
.xcb{left:487.694987px;}
.xc8{left:499.785000px;}
.x99{left:501.224987px;}
.x8e{left:505.724987px;}
.xab{left:509.685000px;}
.x7e{left:510.765000px;}
.x24{left:513.824987px;}
.xc9{left:521.384987px;}
.x76{left:524.445000px;}
.x85{left:528.945000px;}
.x18{left:536.324987px;}
.xb9{left:540.825000px;}
.x32{left:542.805000px;}
.x93{left:547.485000px;}
.xc4{left:551.625000px;}
.x98{left:552.884987px;}
.x55{left:555.765000px;}
.xc0{left:560.625000px;}
.x19{left:561.705000px;}
.x7f{left:574.665000px;}
.x2a{left:580.425000px;}
.x77{left:589.965000px;}
.x40{left:599.504987px;}
.x5a{left:605.985000px;}
.xae{left:616.785000px;}
.x50{left:619.845000px;}
.x44{left:620.925000px;}
.xb5{left:624.884987px;}
.xa3{left:627.045000px;}
.xac{left:637.125000px;}
.x91{left:638.385000px;}
.x9e{left:647.025000px;}
.x34{left:649.005000px;}
.xb4{left:654.764987px;}
.xb0{left:660.884987px;}
.xaa{left:663.945000px;}
.xb7{left:678.884987px;}
.xb2{left:681.224987px;}
.x9f{left:687.345000px;}
.xbe{left:691.530000px;}
.xcc{left:696.929987px;}
.xa5{left:699.630000px;}
.x65{left:703.769987px;}
.xc7{left:706.110000px;}
.x63{left:714.029987px;}
.x2c{left:715.110000px;}
.xb6{left:726.269987px;}
.xa0{left:730.950000px;}
.xb3{left:740.489987px;}
.x15{left:746.609987px;}
.x20{left:748.769987px;}
.x14{left:750.569987px;}
.xf{left:754.169987px;}
.xe{left:757.949987px;}
.xc{left:761.729987px;}
.x1{left:765.509987px;}
.xca{left:768.929987px;}
.xb1{left:773.429987px;}
.x66{left:781.529987px;}
.xa1{left:815.730000px;}
.x64{left:819.869987px;}
@media print{
.v4{vertical-align:-46.720000pt;}
.v2{vertical-align:-44.373333pt;}
.v6{vertical-align:-42.026667pt;}
.v1{vertical-align:-33.066667pt;}
.v3{vertical-align:-13.973333pt;}
.v5{vertical-align:-8.853333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:21.120000pt;}
.ls1b{letter-spacing:-2.944000pt;}
.ls2e{letter-spacing:-1.408000pt;}
.ls2d{letter-spacing:-1.344000pt;}
.ls23{letter-spacing:-1.280000pt;}
.ls1a{letter-spacing:-1.152000pt;}
.ls42{letter-spacing:-1.088000pt;}
.ls45{letter-spacing:-0.832000pt;}
.ls21{letter-spacing:-0.768000pt;}
.ls11{letter-spacing:-0.704000pt;}
.ls1e{letter-spacing:-0.640000pt;}
.ls1d{letter-spacing:-0.576000pt;}
.ls3e{letter-spacing:-0.570667pt;}
.ls19{letter-spacing:-0.512000pt;}
.ls13{letter-spacing:-0.448000pt;}
.ls4c{letter-spacing:-0.419733pt;}
.ls4d{letter-spacing:-0.412267pt;}
.ls4b{letter-spacing:-0.394133pt;}
.ls25{letter-spacing:-0.384000pt;}
.ls33{letter-spacing:-0.320000pt;}
.ls40{letter-spacing:-0.286933pt;}
.ls44{letter-spacing:-0.275733pt;}
.ls15{letter-spacing:-0.256000pt;}
.ls32{letter-spacing:-0.240000pt;}
.ls24{letter-spacing:-0.213867pt;}
.ls10{letter-spacing:-0.204267pt;}
.ls34{letter-spacing:-0.202133pt;}
.ls3f{letter-spacing:-0.199467pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls3c{letter-spacing:-0.163733pt;}
.ls7{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.117867pt;}
.ls5{letter-spacing:-0.102400pt;}
.ls4e{letter-spacing:-0.076800pt;}
.ls16{letter-spacing:-0.064000pt;}
.ls37{letter-spacing:-0.051840pt;}
.ls38{letter-spacing:-0.037120pt;}
.ls49{letter-spacing:-0.016000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls36{letter-spacing:0.032000pt;}
.ls2a{letter-spacing:0.057067pt;}
.ls0{letter-spacing:0.064000pt;}
.ls3d{letter-spacing:0.071467pt;}
.lsd{letter-spacing:0.105067pt;}
.ls3a{letter-spacing:0.112000pt;}
.lsf{letter-spacing:0.128000pt;}
.ls35{letter-spacing:0.133333pt;}
.ls18{letter-spacing:0.170667pt;}
.ls48{letter-spacing:0.184533pt;}
.ls2{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.194133pt;}
.ls39{letter-spacing:0.220267pt;}
.lsc{letter-spacing:0.227733pt;}
.ls4a{letter-spacing:0.245867pt;}
.lsb{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.266133pt;}
.ls4{letter-spacing:0.272000pt;}
.ls12{letter-spacing:0.320000pt;}
.ls3b{letter-spacing:0.322667pt;}
.ls46{letter-spacing:0.512000pt;}
.ls6{letter-spacing:0.576000pt;}
.ls47{letter-spacing:0.640000pt;}
.ls22{letter-spacing:0.896000pt;}
.ls26{letter-spacing:4.096000pt;}
.ls28{letter-spacing:6.016000pt;}
.ls2f{letter-spacing:7.296000pt;}
.ls20{letter-spacing:10.496000pt;}
.ls2b{letter-spacing:11.136000pt;}
.lse{letter-spacing:17.562027pt;}
.ls41{letter-spacing:19.456000pt;}
.ls2c{letter-spacing:24.554667pt;}
.ls27{letter-spacing:25.728000pt;}
.ls30{letter-spacing:27.008000pt;}
.ls29{letter-spacing:29.568000pt;}
.ls43{letter-spacing:30.715307pt;}
.ls31{letter-spacing:35.978667pt;}
.ls17{letter-spacing:41.882027pt;}
.ls1c{letter-spacing:48.768000pt;}
.ls1f{letter-spacing:71.808000pt;}
.ls14{letter-spacing:75.008000pt;}
.ws14{word-spacing:-64.000000pt;}
.ws2c{word-spacing:-18.961387pt;}
.ws1a{word-spacing:-17.840000pt;}
.ws1f{word-spacing:-16.922880pt;}
.wse{word-spacing:-16.718613pt;}
.ws5{word-spacing:-16.197120pt;}
.ws10{word-spacing:-14.784000pt;}
.ws1c{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.656000pt;}
.ws13{word-spacing:-14.592000pt;}
.ws12{word-spacing:-14.528000pt;}
.wsb{word-spacing:-14.464000pt;}
.ws11{word-spacing:-14.400000pt;}
.ws6{word-spacing:-14.336000pt;}
.ws8{word-spacing:-14.272000pt;}
.ws2e{word-spacing:-14.208000pt;}
.ws1b{word-spacing:-14.144000pt;}
.ws18{word-spacing:-14.016000pt;}
.ws19{word-spacing:-13.952000pt;}
.ws16{word-spacing:-13.888000pt;}
.ws1e{word-spacing:-13.824000pt;}
.wsf{word-spacing:-13.760000pt;}
.ws7{word-spacing:-13.573013pt;}
.wsc{word-spacing:-13.534613pt;}
.wsd{word-spacing:-13.411947pt;}
.ws2b{word-spacing:-13.306880pt;}
.ws4{word-spacing:-13.204480pt;}
.ws9{word-spacing:-13.189013pt;}
.ws1d{word-spacing:-13.104747pt;}
.ws28{word-spacing:-13.050987pt;}
.ws31{word-spacing:-12.974187pt;}
.ws2f{word-spacing:-12.912853pt;}
.ws33{word-spacing:-12.894613pt;}
.ws34{word-spacing:-12.651520pt;}
.ws29{word-spacing:-12.564587pt;}
.ws2a{word-spacing:-12.528853pt;}
.ws32{word-spacing:-12.334187pt;}
.ws3{word-spacing:-12.277120pt;}
.ws1{word-spacing:-12.199253pt;}
.ws17{word-spacing:-12.062187pt;}
.ws2{word-spacing:-12.005120pt;}
.ws15{word-spacing:-11.791253pt;}
.ws24{word-spacing:-10.848000pt;}
.ws30{word-spacing:-10.832000pt;}
.ws2d{word-spacing:-9.690880pt;}
.ws25{word-spacing:-0.538667pt;}
.ws0{word-spacing:0.000000pt;}
.ws26{word-spacing:23.797333pt;}
.ws27{word-spacing:23.850667pt;}
.ws23{word-spacing:42.549333pt;}
.ws20{word-spacing:196.704000pt;}
.ws21{word-spacing:209.488000pt;}
.ws22{word-spacing:221.717333pt;}
._1c{margin-left:-13.781333pt;}
._1a{margin-left:-12.757333pt;}
._1b{margin-left:-11.370667pt;}
._1e{margin-left:-9.621333pt;}
._19{margin-left:-8.533333pt;}
._20{margin-left:-7.541333pt;}
._1d{margin-left:-6.549333pt;}
._1f{margin-left:-4.704000pt;}
._d{margin-left:-3.392000pt;}
._c{margin-left:-2.260480pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.117013pt;}
._2{width:2.372693pt;}
._18{width:3.262720pt;}
._8{width:4.160000pt;}
._5{width:5.376000pt;}
._4{width:6.592000pt;}
._6{width:8.202667pt;}
._10{width:9.600000pt;}
._17{width:10.752000pt;}
._7{width:11.712000pt;}
._b{width:13.071360pt;}
._44{width:14.192640pt;}
._16{width:16.000000pt;}
._15{width:16.938667pt;}
._22{width:18.210987pt;}
._f{width:19.968000pt;}
._29{width:20.870827pt;}
._3{width:21.760000pt;}
._a{width:22.814720pt;}
._9{width:23.744000pt;}
._e{width:24.832000pt;}
._14{width:25.793707pt;}
._13{width:27.072000pt;}
._25{width:28.352000pt;}
._34{width:29.404160pt;}
._32{width:30.528000pt;}
._28{width:31.552000pt;}
._27{width:32.640000pt;}
._35{width:33.600000pt;}
._12{width:34.496000pt;}
._11{width:35.520000pt;}
._24{width:37.037653pt;}
._23{width:37.952000pt;}
._30{width:38.848000pt;}
._2e{width:39.808000pt;}
._5c{width:40.704000pt;}
._2d{width:41.600000pt;}
._2c{width:43.072000pt;}
._48{width:44.154880pt;}
._36{width:46.336000pt;}
._33{width:47.360000pt;}
._3a{width:48.384000pt;}
._50{width:50.124800pt;}
._89{width:51.870720pt;}
._7b{width:54.272000pt;}
._39{width:57.152000pt;}
._49{width:58.910720pt;}
._54{width:60.656640pt;}
._8b{width:62.064640pt;}
._61{width:63.104000pt;}
._38{width:64.704000pt;}
._37{width:65.920000pt;}
._43{width:68.922667pt;}
._45{width:70.062080pt;}
._8c{width:71.403520pt;}
._7f{width:72.528640pt;}
._31{width:73.575680pt;}
._66{width:75.456000pt;}
._53{width:76.651520pt;}
._3b{width:77.674667pt;}
._4e{width:79.242240pt;}
._83{width:80.960000pt;}
._84{width:81.920000pt;}
._51{width:82.903040pt;}
._5e{width:86.455040pt;}
._4f{width:87.746560pt;}
._60{width:89.664000pt;}
._4b{width:91.595947pt;}
._6f{width:95.885227pt;}
._58{width:97.269760pt;}
._52{width:98.560000pt;}
._4a{width:100.080640pt;}
._46{width:101.376000pt;}
._5d{width:103.334400pt;}
._62{width:104.768000pt;}
._4d{width:106.275840pt;}
._56{width:108.398080pt;}
._68{width:109.696000pt;}
._69{width:110.816000pt;}
._57{width:115.228160pt;}
._65{width:116.992000pt;}
._6b{width:118.127360pt;}
._55{width:119.232000pt;}
._42{width:123.866667pt;}
._73{width:132.544000pt;}
._3c{width:134.400000pt;}
._5b{width:137.536000pt;}
._74{width:139.136000pt;}
._7d{width:140.514987pt;}
._88{width:142.602240pt;}
._6d{width:148.670720pt;}
._6c{width:149.920000pt;}
._80{width:156.480000pt;}
._81{width:157.421653pt;}
._2a{width:159.850667pt;}
._2f{width:162.164907pt;}
._70{width:165.440000pt;}
._5f{width:168.640000pt;}
._63{width:172.928000pt;}
._2b{width:174.314667pt;}
._8a{width:181.632000pt;}
._64{width:187.776000pt;}
._7a{width:204.385280pt;}
._47{width:205.342720pt;}
._6a{width:217.408000pt;}
._77{width:222.336000pt;}
._4c{width:265.492480pt;}
._71{width:275.904000pt;}
._72{width:276.909653pt;}
._76{width:283.674027pt;}
._75{width:284.928000pt;}
._78{width:290.816000pt;}
._79{width:291.738027pt;}
._67{width:318.400000pt;}
._7e{width:384.640000pt;}
._7c{width:387.264000pt;}
._82{width:392.000000pt;}
._6e{width:498.432000pt;}
._59{width:669.675947pt;}
._21{width:751.215787pt;}
._5a{width:1135.498667pt;}
._3d{width:1423.977387pt;}
._86{width:1570.308693pt;}
._41{width:1743.162027pt;}
._3f{width:1761.208320pt;}
._40{width:1769.514667pt;}
._85{width:1770.466133pt;}
._87{width:1823.360853pt;}
._26{width:1862.138453pt;}
._3e{width:1895.445333pt;}
.fs5{font-size:32.000000pt;}
.fs7{font-size:40.320000pt;}
.fsf{font-size:42.880000pt;}
.fsb{font-size:48.000000pt;}
.fse{font-size:48.128000pt;}
.fs8{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fsc{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fsd{font-size:80.000000pt;}
.fs2{font-size:85.120000pt;}
.fs6{font-size:90.880000pt;}
.fs1{font-size:96.000000pt;}
.y385{bottom:-24.800000pt;}
.y0{bottom:0.000000pt;}
.y594{bottom:0.800000pt;}
.y374{bottom:0.960000pt;}
.y592{bottom:1.920000pt;}
.y377{bottom:3.040000pt;}
.y27a{bottom:3.360000pt;}
.y272{bottom:3.840000pt;}
.y556{bottom:4.000000pt;}
.y278{bottom:4.640000pt;}
.y384{bottom:4.800000pt;}
.y36f{bottom:5.440000pt;}
.y275{bottom:5.600000pt;}
.y36d{bottom:6.240000pt;}
.y590{bottom:6.720000pt;}
.y379{bottom:9.120000pt;}
.y58c{bottom:9.573333pt;}
.y596{bottom:9.693333pt;}
.y58e{bottom:9.733333pt;}
.y382{bottom:9.920000pt;}
.y371{bottom:10.240000pt;}
.y2c9{bottom:11.520000pt;}
.y2c4{bottom:11.680000pt;}
.y4c4{bottom:12.160000pt;}
.y4d8{bottom:12.200000pt;}
.y67e{bottom:12.314667pt;}
.y4c9{bottom:12.320000pt;}
.y22c{bottom:12.480000pt;}
.y5be{bottom:12.800000pt;}
.y520{bottom:12.826667pt;}
.y508{bottom:12.960000pt;}
.y51e{bottom:12.986667pt;}
.y3bf{bottom:14.080000pt;}
.y3f5{bottom:14.106667pt;}
.y3bb{bottom:14.240000pt;}
.y5a3{bottom:14.266667pt;}
.y2dd{bottom:14.720000pt;}
.y6ad{bottom:15.200000pt;}
.y6b1{bottom:15.240000pt;}
.y5d2{bottom:15.360000pt;}
.y6a6{bottom:15.386667pt;}
.y560{bottom:15.520000pt;}
.y557{bottom:15.680000pt;}
.y4a5{bottom:15.706667pt;}
.y36{bottom:16.000000pt;}
.y26{bottom:16.160000pt;}
.y27c{bottom:16.800000pt;}
.y388{bottom:17.373333pt;}
.y6b4{bottom:17.760000pt;}
.y6b2{bottom:17.800000pt;}
.y6b6{bottom:17.920000pt;}
.y559{bottom:18.400000pt;}
.y3ec{bottom:19.040000pt;}
.y373{bottom:19.200000pt;}
.y547{bottom:20.000000pt;}
.y376{bottom:21.280000pt;}
.y66f{bottom:21.600000pt;}
.y55b{bottom:21.920000pt;}
.y555{bottom:21.946667pt;}
.y271{bottom:22.080000pt;}
.y4c5{bottom:22.400000pt;}
.y279{bottom:22.720000pt;}
.y277{bottom:22.880000pt;}
.y4c3{bottom:23.040000pt;}
.y456{bottom:23.173333pt;}
.y274{bottom:23.680000pt;}
.y3ce{bottom:24.800000pt;}
.y37d{bottom:24.933333pt;}
.y2c7{bottom:25.760000pt;}
.y56e{bottom:25.920000pt;}
.y5d4{bottom:26.080000pt;}
.y572{bottom:27.200000pt;}
.y5d5{bottom:27.360000pt;}
.y553{bottom:27.520000pt;}
.y22a{bottom:35.360000pt;}
.y2c3{bottom:36.000000pt;}
.y6aa{bottom:37.120000pt;}
.y6a8{bottom:37.280000pt;}
.y4cf{bottom:37.754667pt;}
.y4d2{bottom:37.760000pt;}
.y4fc{bottom:37.786667pt;}
.y4d7{bottom:37.800000pt;}
.y4e4{bottom:37.914667pt;}
.y4c8{bottom:37.920000pt;}
.y4f4{bottom:37.960000pt;}
.y679{bottom:38.400000pt;}
.y507{bottom:38.560000pt;}
.y37f{bottom:38.946667pt;}
.y455{bottom:39.493333pt;}
.y5bd{bottom:39.680000pt;}
.y52d{bottom:39.834667pt;}
.y526{bottom:39.840000pt;}
.y51d{bottom:39.866667pt;}
.y36b{bottom:41.800000pt;}
.y4a3{bottom:42.306667pt;}
.y5a1{bottom:43.354667pt;}
.y3be{bottom:43.360000pt;}
.y3c7{bottom:43.386667pt;}
.y407{bottom:43.400000pt;}
.y409{bottom:43.514667pt;}
.y3c3{bottom:43.520000pt;}
.y552{bottom:45.440000pt;}
.y6ac{bottom:47.040000pt;}
.y66e{bottom:47.200000pt;}
.y32{bottom:47.520000pt;}
.y24{bottom:48.160000pt;}
.y3eb{bottom:48.320000pt;}
.y4c2{bottom:48.640000pt;}
.y6ae{bottom:49.600000pt;}
.y2c6{bottom:50.280000pt;}
.y1{bottom:51.072000pt;}
.y3cd{bottom:54.080000pt;}
.y229{bottom:54.720000pt;}
.y49e{bottom:57.920000pt;}
.y2ca{bottom:60.346667pt;}
.y2c2{bottom:60.480000pt;}
.y36a{bottom:61.160000pt;}
.y37b{bottom:61.893333pt;}
.y68c{bottom:63.354667pt;}
.y4d1{bottom:63.360000pt;}
.y4f7{bottom:63.386667pt;}
.y4d6{bottom:63.400000pt;}
.y4ce{bottom:63.514667pt;}
.y4c7{bottom:63.520000pt;}
.y4de{bottom:63.546667pt;}
.y4f3{bottom:63.560000pt;}
.y671{bottom:65.280000pt;}
.y52c{bottom:66.554667pt;}
.y525{bottom:66.560000pt;}
.y458{bottom:66.653333pt;}
.y533{bottom:66.720000pt;}
.y28{bottom:68.992000pt;}
.y31{bottom:72.040000pt;}
.y5a0{bottom:72.634667pt;}
.y3bd{bottom:72.640000pt;}
.y40f{bottom:72.666667pt;}
.y3f1{bottom:72.680000pt;}
.y408{bottom:72.794667pt;}
.y3c2{bottom:72.800000pt;}
.y228{bottom:73.920000pt;}
.y575{bottom:74.080000pt;}
.y3ea{bottom:77.600000pt;}
.y34{bottom:77.920000pt;}
.y23{bottom:77.960000pt;}
.y49f{bottom:79.066667pt;}
.y457{bottom:82.973333pt;}
.y3d2{bottom:83.360000pt;}
.y3d0{bottom:83.386667pt;}
.y3cc{bottom:83.400000pt;}
.y56c{bottom:85.760000pt;}
.y570{bottom:87.040000pt;}
.y676{bottom:88.960000pt;}
.y4d0{bottom:88.986667pt;}
.y681{bottom:89.000000pt;}
.y4cd{bottom:89.114667pt;}
.y4c6{bottom:89.120000pt;}
.y4dd{bottom:89.146667pt;}
.y4d5{bottom:89.160000pt;}
.y4f1{bottom:89.760000pt;}
.y670{bottom:90.880000pt;}
.y227{bottom:93.280000pt;}
.y52b{bottom:93.434667pt;}
.y524{bottom:93.440000pt;}
.y532{bottom:93.600000pt;}
.y49d{bottom:94.053333pt;}
.y4af{bottom:95.906667pt;}
.y2ae{bottom:99.072000pt;}
.y4e1{bottom:99.712000pt;}
.y35{bottom:100.032000pt;}
.y4a0{bottom:100.226667pt;}
.y295{bottom:100.352000pt;}
.y25{bottom:100.512000pt;}
.y545{bottom:100.832000pt;}
.y474{bottom:101.472000pt;}
.y322{bottom:101.632000pt;}
.y253{bottom:101.792000pt;}
.y3c9{bottom:101.920000pt;}
.y5b0{bottom:101.946667pt;}
.y3f7{bottom:102.080000pt;}
.y3c1{bottom:102.120000pt;}
.yc4{bottom:102.432000pt;}
.y672{bottom:102.592000pt;}
.y3e7{bottom:102.752000pt;}
.y326{bottom:102.912000pt;}
.y1e3{bottom:103.712000pt;}
.y401{bottom:104.512000pt;}
.y53{bottom:104.832000pt;}
.y45a{bottom:104.866667pt;}
.y638{bottom:104.992000pt;}
.y221{bottom:105.472000pt;}
.y395{bottom:107.072000pt;}
.y30{bottom:107.400000pt;}
.y351{bottom:108.192000pt;}
.ye2{bottom:108.512000pt;}
.y453{bottom:108.832000pt;}
.y368{bottom:110.112000pt;}
.y306{bottom:111.552000pt;}
.y315{bottom:112.192000pt;}
.y226{bottom:112.640000pt;}
.y4b0{bottom:112.826667pt;}
.y59f{bottom:112.832000pt;}
.y24e{bottom:114.272000pt;}
.y4cc{bottom:114.714667pt;}
.y4da{bottom:114.720000pt;}
.y4dc{bottom:114.746667pt;}
.y26f{bottom:114.752000pt;}
.y50b{bottom:114.760000pt;}
.y4e3{bottom:114.874667pt;}
.y50d{bottom:114.880000pt;}
.y510{bottom:114.920000pt;}
.y4f0{bottom:115.360000pt;}
.y617{bottom:115.552000pt;}
.y5bb{bottom:115.872000pt;}
.y68b{bottom:116.512000pt;}
.y4ca{bottom:116.992000pt;}
.y419{bottom:117.632000pt;}
.y16f{bottom:118.272000pt;}
.y22{bottom:118.600000pt;}
.y403{bottom:119.072000pt;}
.y527{bottom:120.032000pt;}
.y52a{bottom:120.314667pt;}
.y523{bottom:120.320000pt;}
.yaa{bottom:120.352000pt;}
.y531{bottom:120.480000pt;}
.y212{bottom:120.512000pt;}
.y4ae{bottom:120.933333pt;}
.y459{bottom:121.186667pt;}
.y4a1{bottom:121.413333pt;}
.y48f{bottom:123.232000pt;}
.y6c1{bottom:123.392000pt;}
.y5fd{bottom:124.992000pt;}
.y391{bottom:125.792000pt;}
.yff{bottom:125.952000pt;}
.y110{bottom:126.112000pt;}
.y337{bottom:126.272000pt;}
.y2ad{bottom:128.512000pt;}
.y294{bottom:129.632000pt;}
.y4b1{bottom:129.760000pt;}
.y49a{bottom:129.952000pt;}
.y441{bottom:130.112000pt;}
.y6a4{bottom:130.432000pt;}
.y544{bottom:130.752000pt;}
.y309{bottom:130.912000pt;}
.y252{bottom:131.232000pt;}
.yc3{bottom:131.712000pt;}
.y225{bottom:132.000000pt;}
.y665{bottom:132.032000pt;}
.y67d{bottom:132.352000pt;}
.y189{bottom:132.832000pt;}
.y49c{bottom:132.893333pt;}
.y1e2{bottom:132.992000pt;}
.y63a{bottom:133.786667pt;}
.y52{bottom:134.106667pt;}
.y5ae{bottom:134.266667pt;}
.y637{bottom:134.426667pt;}
.y220{bottom:134.746667pt;}
.y481{bottom:136.026667pt;}
.ye1{bottom:136.186667pt;}
.y394{bottom:136.346667pt;}
.y137{bottom:137.946667pt;}
.y452{bottom:138.106667pt;}
.y3fa{bottom:138.266667pt;}
.y61b{bottom:138.906667pt;}
.y3ac{bottom:139.386667pt;}
.y367{bottom:139.546667pt;}
.y20{bottom:139.866667pt;}
.y66c{bottom:140.320000pt;}
.y50f{bottom:140.346667pt;}
.y4cb{bottom:140.354667pt;}
.y4e2{bottom:140.474667pt;}
.y4d9{bottom:140.480000pt;}
.y305{bottom:140.826667pt;}
.y314{bottom:141.626667pt;}
.y2db{bottom:141.786667pt;}
.y4a7{bottom:142.426667pt;}
.y4a2{bottom:142.560000pt;}
.y3e6{bottom:142.586667pt;}
.y2f{bottom:142.760000pt;}
.y45b{bottom:143.066667pt;}
.y4f5{bottom:143.226667pt;}
.y24d{bottom:143.546667pt;}
.y8d{bottom:143.866667pt;}
.y26e{bottom:144.026667pt;}
.y3a8{bottom:144.346667pt;}
.y42c{bottom:144.666667pt;}
.y616{bottom:144.826667pt;}
.y350{bottom:145.626667pt;}
.y2c8{bottom:146.426667pt;}
.y1b2{bottom:146.586667pt;}
.y4b2{bottom:146.693333pt;}
.y418{bottom:146.906667pt;}
.y4a9{bottom:147.013333pt;}
.y1ff{bottom:147.066667pt;}
.y522{bottom:147.200000pt;}
.y529{bottom:147.234667pt;}
.y530{bottom:147.360000pt;}
.y16e{bottom:147.546667pt;}
.y3b7{bottom:148.826667pt;}
.ya9{bottom:149.626667pt;}
.y211{bottom:149.786667pt;}
.y65b{bottom:149.946667pt;}
.y6c0{bottom:150.266667pt;}
.y224{bottom:151.200000pt;}
.y1c9{bottom:152.506667pt;}
.y583{bottom:152.666667pt;}
.y5fc{bottom:154.266667pt;}
.y4ab{bottom:154.466667pt;}
.y5ba{bottom:154.586667pt;}
.y5df{bottom:154.746667pt;}
.y698{bottom:155.226667pt;}
.y60d{bottom:155.546667pt;}
.y70{bottom:156.506667pt;}
.y6a3{bottom:156.666667pt;}
.y5e6{bottom:157.626667pt;}
.y2ac{bottom:157.786667pt;}
.y293{bottom:158.906667pt;}
.y10f{bottom:160.186667pt;}
.y251{bottom:160.506667pt;}
.y543{bottom:160.826667pt;}
.y40e{bottom:161.306667pt;}
.yfe{bottom:161.946667pt;}
.y188{bottom:162.106667pt;}
.y154{bottom:162.266667pt;}
.y311{bottom:162.586667pt;}
.y48e{bottom:163.226667pt;}
.y8c{bottom:163.546667pt;}
.y4b3{bottom:163.613333pt;}
.y636{bottom:163.706667pt;}
.ye0{bottom:164.026667pt;}
.y336{bottom:165.626667pt;}
.y390{bottom:165.786667pt;}
.y66b{bottom:165.920000pt;}
.y673{bottom:166.114667pt;}
.y451{bottom:167.386667pt;}
.y4aa{bottom:167.493333pt;}
.y4a4{bottom:167.653333pt;}
.y136{bottom:167.866667pt;}
.y61a{bottom:168.186667pt;}
.y5fe{bottom:168.346667pt;}
.y3ab{bottom:168.666667pt;}
.y366{bottom:168.826667pt;}
.y19e{bottom:168.986667pt;}
.y499{bottom:169.786667pt;}
.y304{bottom:170.106667pt;}
.y223{bottom:170.560000pt;}
.y240{bottom:170.906667pt;}
.y1f{bottom:171.226667pt;}
.y51{bottom:171.386667pt;}
.y3cb{bottom:171.546667pt;}
.yc2{bottom:171.706667pt;}
.y5cd{bottom:172.986667pt;}
.y26d{bottom:173.306667pt;}
.y521{bottom:174.080000pt;}
.y52f{bottom:174.106667pt;}
.y528{bottom:174.114667pt;}
.y1b1{bottom:175.866667pt;}
.y480{bottom:176.026667pt;}
.y417{bottom:176.186667pt;}
.y1fe{bottom:176.346667pt;}
.y6bf{bottom:177.146667pt;}
.y5b4{bottom:177.306667pt;}
.y2e{bottom:177.960000pt;}
.y3b6{bottom:178.106667pt;}
.y3f9{bottom:178.266667pt;}
.ya8{bottom:178.906667pt;}
.y210{bottom:179.066667pt;}
.y4ac{bottom:180.000000pt;}
.y4b4{bottom:180.546667pt;}
.y697{bottom:181.626667pt;}
.y1c8{bottom:181.786667pt;}
.y582{bottom:181.946667pt;}
.y3e5{bottom:182.586667pt;}
.y34f{bottom:183.226667pt;}
.y24c{bottom:183.546667pt;}
.y5de{bottom:184.026667pt;}
.y3a7{bottom:184.346667pt;}
.y8b{bottom:184.666667pt;}
.y60c{bottom:184.826667pt;}
.y4a8{bottom:186.626667pt;}
.y563{bottom:187.066667pt;}
.y16d{bottom:187.546667pt;}
.y6f{bottom:188.186667pt;}
.y31b{bottom:189.466667pt;}
.yfd{bottom:189.626667pt;}
.y250{bottom:189.786667pt;}
.y10e{bottom:190.266667pt;}
.y1e1{bottom:191.546667pt;}
.ydf{bottom:191.706667pt;}
.y310{bottom:191.866667pt;}
.y664{bottom:192.026667pt;}
.y153{bottom:192.186667pt;}
.y542{bottom:192.346667pt;}
.y639{bottom:192.506667pt;}
.y635{bottom:192.986667pt;}
.y21f{bottom:193.306667pt;}
.y187{bottom:193.466667pt;}
.y3ed{bottom:194.106667pt;}
.y5b9{bottom:194.586667pt;}
.y38f{bottom:195.066667pt;}
.y56a{bottom:195.226667pt;}
.y450{bottom:196.666667pt;}
.y4b5{bottom:197.466667pt;}
.y2ab{bottom:197.626667pt;}
.y135{bottom:197.946667pt;}
.y365{bottom:198.106667pt;}
.y2c{bottom:198.426667pt;}
.y6be{bottom:200.026667pt;}
.y23f{bottom:200.186667pt;}
.y31f{bottom:200.346667pt;}
.y652{bottom:200.986667pt;}
.y59e{bottom:201.306667pt;}
.y4ad{bottom:201.506667pt;}
.y1e{bottom:202.106667pt;}
.y5cc{bottom:202.266667pt;}
.y2d{bottom:202.440000pt;}
.y26c{bottom:202.746667pt;}
.y48d{bottom:203.066667pt;}
.y615{bottom:203.546667pt;}
.y1b0{bottom:205.306667pt;}
.y335{bottom:205.466667pt;}
.y1fd{bottom:205.626667pt;}
.y4a6{bottom:207.200000pt;}
.y659{bottom:207.226667pt;}
.y3b5{bottom:207.386667pt;}
.y504{bottom:207.546667pt;}
.y406{bottom:207.706667pt;}
.y696{bottom:207.866667pt;}
.y619{bottom:208.186667pt;}
.y20f{bottom:208.346667pt;}
.y50{bottom:208.826667pt;}
.y303{bottom:208.986667pt;}
.y67c{bottom:209.946667pt;}
.y440{bottom:210.106667pt;}
.y1c7{bottom:211.066667pt;}
.y55f{bottom:211.226667pt;}
.yc1{bottom:211.706667pt;}
.y19d{bottom:212.826667pt;}
.y186{bottom:213.146667pt;}
.y5dd{bottom:213.306667pt;}
.y3a6{bottom:213.626667pt;}
.y60b{bottom:214.106667pt;}
.y47f{bottom:215.866667pt;}
.y416{bottom:216.186667pt;}
.y562{bottom:216.346667pt;}
.y16c{bottom:216.826667pt;}
.yfc{bottom:217.466667pt;}
.y31a{bottom:218.746667pt;}
.ya7{bottom:218.906667pt;}
.y24f{bottom:219.066667pt;}
.yde{bottom:219.546667pt;}
.y6e{bottom:219.866667pt;}
.y2c5{bottom:220.346667pt;}
.y34e{bottom:220.666667pt;}
.y29f{bottom:220.826667pt;}
.y30f{bottom:221.146667pt;}
.y1e0{bottom:221.786667pt;}
.y152{bottom:222.106667pt;}
.y634{bottom:222.266667pt;}
.y4b6{bottom:222.560000pt;}
.y21e{bottom:222.586667pt;}
.y10d{bottom:224.506667pt;}
.y44f{bottom:224.826667pt;}
.y2aa{bottom:227.066667pt;}
.y3aa{bottom:227.226667pt;}
.y364{bottom:227.386667pt;}
.y134{bottom:227.866667pt;}
.y23e{bottom:229.466667pt;}
.y31e{bottom:229.786667pt;}
.y8a{bottom:229.946667pt;}
.y58a{bottom:231.066667pt;}
.y26b{bottom:232.026667pt;}
.y541{bottom:232.346667pt;}
.y1d{bottom:232.666667pt;}
.y614{bottom:232.826667pt;}
.y5cb{bottom:233.466667pt;}
.y695{bottom:234.106667pt;}
.y1af{bottom:234.586667pt;}
.y1fc{bottom:234.906667pt;}
.y5b3{bottom:236.026667pt;}
.y503{bottom:236.826667pt;}
.y302{bottom:236.986667pt;}
.y5e5{bottom:237.466667pt;}
.y324{bottom:237.626667pt;}
.y651{bottom:238.586667pt;}
.y1c6{bottom:240.346667pt;}
.y55e{bottom:240.506667pt;}
.y24b{bottom:242.106667pt;}
.y5fb{bottom:242.266667pt;}
.y5dc{bottom:242.586667pt;}
.y48c{bottom:243.066667pt;}
.y60a{bottom:243.386667pt;}
.yfb{bottom:245.146667pt;}
.y334{bottom:245.466667pt;}
.y561{bottom:245.626667pt;}
.y4f{bottom:246.106667pt;}
.y3b4{bottom:246.266667pt;}
.y292{bottom:246.746667pt;}
.ydd{bottom:247.226667pt;}
.y319{bottom:248.026667pt;}
.ya6{bottom:248.186667pt;}
.y20e{bottom:248.346667pt;}
.y29e{bottom:250.106667pt;}
.y19c{bottom:250.466667pt;}
.y30e{bottom:250.626667pt;}
.y1df{bottom:251.106667pt;}
.y467{bottom:251.266667pt;}
.y633{bottom:251.586667pt;}
.y6d{bottom:251.746667pt;}
.y21d{bottom:251.906667pt;}
.y663{bottom:252.066667pt;}
.y151{bottom:252.226667pt;}
.y44e{bottom:252.866667pt;}
.y185{bottom:253.186667pt;}
.y5ca{bottom:253.346667pt;}
.y3f8{bottom:253.506667pt;}
.y3a5{bottom:253.666667pt;}
.y569{bottom:253.826667pt;}
.y4e0{bottom:254.306667pt;}
.y133{bottom:254.786667pt;}
.y47e{bottom:255.906667pt;}
.y2a9{bottom:256.386667pt;}
.y363{bottom:256.706667pt;}
.y10c{bottom:258.466667pt;}
.y23d{bottom:258.786667pt;}
.y31d{bottom:259.106667pt;}
.y89{bottom:259.266667pt;}
.y34d{bottom:259.426667pt;}
.y693{bottom:260.546667pt;}
.y26a{bottom:261.346667pt;}
.y540{bottom:261.666667pt;}
.y613{bottom:262.146667pt;}
.y3e4{bottom:262.626667pt;}
.y1c{bottom:263.266667pt;}
.y1ae{bottom:263.906667pt;}
.y1fb{bottom:264.226667pt;}
.y42b{bottom:264.546667pt;}
.y328{bottom:265.826667pt;}
.y502{bottom:266.146667pt;}
.y323{bottom:266.946667pt;}
.y313{bottom:268.226667pt;}
.y2ea{bottom:269.506667pt;}
.y1c5{bottom:269.666667pt;}
.y3ca{bottom:270.786667pt;}
.y24a{bottom:271.426667pt;}
.y5fa{bottom:271.586667pt;}
.y5db{bottom:271.906667pt;}
.yfa{bottom:273.026667pt;}
.y3b3{bottom:274.306667pt;}
.y5b8{bottom:274.466667pt;}
.y6cd{bottom:274.626667pt;}
.y415{bottom:274.786667pt;}
.y38e{bottom:274.946667pt;}
.y16b{bottom:275.426667pt;}
.y291{bottom:276.066667pt;}
.y301{bottom:277.026667pt;}
.y318{bottom:277.346667pt;}
.ya5{bottom:277.506667pt;}
.y20d{bottom:277.666667pt;}
.y29d{bottom:279.426667pt;}
.y59d{bottom:279.586667pt;}
.y30d{bottom:279.906667pt;}
.y1de{bottom:280.386667pt;}
.y581{bottom:280.546667pt;}
.y632{bottom:280.866667pt;}
.yc0{bottom:281.026667pt;}
.y21c{bottom:281.346667pt;}
.y132{bottom:281.666667pt;}
.y150{bottom:282.146667pt;}
.y473{bottom:282.786667pt;}
.y3a4{bottom:282.946667pt;}
.y48b{bottom:283.106667pt;}
.ydc{bottom:283.266667pt;}
.y4e{bottom:283.426667pt;}
.y2c1{bottom:284.066667pt;}
.y47d{bottom:285.186667pt;}
.y333{bottom:285.506667pt;}
.y2a8{bottom:285.666667pt;}
.y694{bottom:286.786667pt;}
.y67b{bottom:287.586667pt;}
.y19b{bottom:287.906667pt;}
.y23c{bottom:288.066667pt;}
.y31c{bottom:288.386667pt;}
.y88{bottom:288.546667pt;}
.y34c{bottom:288.706667pt;}
.y43f{bottom:289.986667pt;}
.y269{bottom:290.626667pt;}
.y53f{bottom:290.946667pt;}
.y612{bottom:291.426667pt;}
.y5c9{bottom:292.066667pt;}
.y44d{bottom:292.866667pt;}
.y184{bottom:293.186667pt;}
.y1b{bottom:293.666667pt;}
.y42a{bottom:293.826667pt;}
.y5b2{bottom:294.626667pt;}
.y312{bottom:296.226667pt;}
.y362{bottom:296.706667pt;}
.y501{bottom:297.346667pt;}
.y2e9{bottom:298.786667pt;}
.y1c4{bottom:298.946667pt;}
.y59c{bottom:299.106667pt;}
.yf9{bottom:300.706667pt;}
.y5f9{bottom:300.866667pt;}
.y3e3{bottom:302.466667pt;}
.y249{bottom:302.626667pt;}
.y1ad{bottom:303.906667pt;}
.y414{bottom:304.066667pt;}
.y38d{bottom:304.226667pt;}
.y290{bottom:305.346667pt;}
.ya4{bottom:306.786667pt;}
.y20c{bottom:306.946667pt;}
.y131{bottom:308.546667pt;}
.y29c{bottom:308.706667pt;}
.y30c{bottom:309.186667pt;}
.y1dd{bottom:309.666667pt;}
.y55d{bottom:309.826667pt;}
.y631{bottom:310.146667pt;}
.ybf{bottom:310.306667pt;}
.y21b{bottom:310.626667pt;}
.ydb{bottom:310.946667pt;}
.y5da{bottom:311.906667pt;}
.y662{bottom:312.066667pt;}
.y14f{bottom:312.226667pt;}
.y609{bottom:312.706667pt;}
.y650{bottom:313.666667pt;}
.y3b2{bottom:314.306667pt;}
.y47c{bottom:314.466667pt;}
.y2a7{bottom:314.946667pt;}
.y6c{bottom:315.266667pt;}
.y16a{bottom:315.426667pt;}
.y300{bottom:317.026667pt;}
.y500{bottom:317.186667pt;}
.y308{bottom:317.346667pt;}
.y5e4{bottom:317.506667pt;}
.y2b3{bottom:317.666667pt;}
.y87{bottom:317.826667pt;}
.y34b{bottom:317.986667pt;}
.y10b{bottom:318.626667pt;}
.y268{bottom:319.906667pt;}
.y53e{bottom:320.226667pt;}
.y4d{bottom:320.706667pt;}
.y44c{bottom:321.346667pt;}
.y472{bottom:321.506667pt;}
.y183{bottom:322.466667pt;}
.y1fa{bottom:322.946667pt;}
.y429{bottom:323.106667pt;}
.y4ef{bottom:324.066667pt;}
.y1a{bottom:324.226667pt;}
.y19a{bottom:325.506667pt;}
.y327{bottom:325.666667pt;}
.y361{bottom:325.986667pt;}
.y618{bottom:326.946667pt;}
.y5d9{bottom:327.106667pt;}
.y23b{bottom:328.066667pt;}
.y1c3{bottom:328.226667pt;}
.yf8{bottom:328.386667pt;}
.y692{bottom:329.506667pt;}
.y43e{bottom:329.986667pt;}
.y611{bottom:331.426667pt;}
.y3e2{bottom:331.746667pt;}
.y1ac{bottom:333.186667pt;}
.y38c{bottom:333.506667pt;}
.y28f{bottom:334.786667pt;}
.y130{bottom:335.426667pt;}
.ya3{bottom:336.066667pt;}
.y20b{bottom:336.226667pt;}
.y29b{bottom:337.986667pt;}
.y30b{bottom:338.466667pt;}
.yda{bottom:338.786667pt;}
.y1dc{bottom:338.946667pt;}
.y55c{bottom:339.106667pt;}
.y630{bottom:339.426667pt;}
.ybe{bottom:339.586667pt;}
.y21a{bottom:339.906667pt;}
.y5f8{bottom:340.866667pt;}
.y608{bottom:341.986667pt;}
.y14e{bottom:342.146667pt;}
.y47b{bottom:343.746667pt;}
.y2a6{bottom:344.226667pt;}
.y169{bottom:344.706667pt;}
.y2ff{bottom:346.306667pt;}
.y317{bottom:346.626667pt;}
.y6b{bottom:346.946667pt;}
.y86{bottom:347.266667pt;}
.y59b{bottom:347.906667pt;}
.y267{bottom:349.186667pt;}
.y53d{bottom:349.506667pt;}
.y580{bottom:349.826667pt;}
.y471{bottom:350.786667pt;}
.y64f{bottom:351.106667pt;}
.y1f9{bottom:352.226667pt;}
.y428{bottom:352.386667pt;}
.y10a{bottom:352.866667pt;}
.y5b1{bottom:353.186667pt;}
.y248{bottom:353.666667pt;}
.y3b1{bottom:354.146667pt;}
.y19{bottom:354.786667pt;}
.y360{bottom:355.266667pt;}
.y4ff{bottom:356.066667pt;}
.yf7{bottom:356.226667pt;}
.y5d8{bottom:356.386667pt;}
.y23a{bottom:357.346667pt;}
.y4df{bottom:357.506667pt;}
.y1c2{bottom:357.666667pt;}
.y4c{bottom:357.986667pt;}
.y43d{bottom:359.266667pt;}
.y3c8{bottom:359.426667pt;}
.y610{bottom:360.706667pt;}
.y3e1{bottom:361.186667pt;}
.y12f{bottom:362.146667pt;}
.y182{bottom:362.466667pt;}
.y413{bottom:362.786667pt;}
.y199{bottom:362.946667pt;}
.y28e{bottom:364.066667pt;}
.y678{bottom:365.186667pt;}
.ya2{bottom:365.346667pt;}
.y20a{bottom:365.506667pt;}
.yd9{bottom:366.466667pt;}
.y29a{bottom:367.266667pt;}
.y30a{bottom:367.746667pt;}
.y1db{bottom:368.226667pt;}
.y62f{bottom:368.706667pt;}
.ybd{bottom:368.866667pt;}
.y6bd{bottom:369.026667pt;}
.y219{bottom:369.186667pt;}
.y5f7{bottom:370.146667pt;}
.y3f6{bottom:371.266667pt;}
.y691{bottom:371.906667pt;}
.y661{bottom:372.066667pt;}
.y14d{bottom:372.226667pt;}
.y59a{bottom:373.026667pt;}
.y47a{bottom:373.186667pt;}
.y247{bottom:373.506667pt;}
.y168{bottom:373.986667pt;}
.y4c1{bottom:374.626667pt;}
.y68a{bottom:374.786667pt;}
.y2c0{bottom:375.266667pt;}
.y2fe{bottom:375.586667pt;}
.y316{bottom:375.906667pt;}
.y2b2{bottom:376.226667pt;}
.y85{bottom:376.546667pt;}
.y34a{bottom:376.706667pt;}
.y412{bottom:377.986667pt;}
.y266{bottom:378.466667pt;}
.y6a{bottom:378.626667pt;}
.y53c{bottom:378.946667pt;}
.y57f{bottom:379.106667pt;}
.y470{bottom:380.066667pt;}
.y1f8{bottom:381.506667pt;}
.y48a{bottom:381.666667pt;}
.y427{bottom:381.826667pt;}
.y3b0{bottom:383.426667pt;}
.yf6{bottom:383.906667pt;}
.y2a5{bottom:384.226667pt;}
.y35f{bottom:384.546667pt;}
.y405{bottom:384.866667pt;}
.y18{bottom:385.346667pt;}
.y5d7{bottom:385.666667pt;}
.y239{bottom:386.626667pt;}
.y1c1{bottom:386.946667pt;}
.y109{bottom:387.106667pt;}
.y66d{bottom:387.746667pt;}
.y43c{bottom:388.546667pt;}
.y64e{bottom:388.706667pt;}
.y12e{bottom:389.026667pt;}
.y60f{bottom:389.986667pt;}
.y3e0{bottom:390.466667pt;}
.y67a{bottom:391.426667pt;}
.y181{bottom:391.746667pt;}
.y393{bottom:392.226667pt;}
.y28d{bottom:393.346667pt;}
.y4fe{bottom:393.506667pt;}
.y646{bottom:394.626667pt;}
.y209{bottom:394.786667pt;}
.y55a{bottom:394.946667pt;}
.y4b{bottom:395.266667pt;}
.y6bc{bottom:395.746667pt;}
.y299{bottom:396.546667pt;}
.y5e3{bottom:397.346667pt;}
.y1da{bottom:397.506667pt;}
.ybc{bottom:398.146667pt;}
.y218{bottom:398.466667pt;}
.y5f6{bottom:399.426667pt;}
.y50e{bottom:399.586667pt;}
.y198{bottom:400.546667pt;}
.y607{bottom:400.706667pt;}
.y4f2{bottom:401.666667pt;}
.y660{bottom:401.986667pt;}
.y14c{bottom:402.146667pt;}
.yd8{bottom:402.466667pt;}
.y38b{bottom:402.786667pt;}
.y167{bottom:403.266667pt;}
.y2fd{bottom:404.866667pt;}
.ya1{bottom:405.346667pt;}
.y2b1{bottom:405.506667pt;}
.y84{bottom:405.826667pt;}
.y349{bottom:405.986667pt;}
.y2bf{bottom:406.626667pt;}
.y411{bottom:407.266667pt;}
.y265{bottom:407.746667pt;}
.y4fd{bottom:408.066667pt;}
.y57e{bottom:408.386667pt;}
.y46f{bottom:409.346667pt;}
.y1f7{bottom:409.666667pt;}
.y69{bottom:410.466667pt;}
.y3a3{bottom:410.786667pt;}
.y489{bottom:410.946667pt;}
.y426{bottom:411.106667pt;}
.y653{bottom:411.266667pt;}
.yf5{bottom:411.746667pt;}
.y479{bottom:411.906667pt;}
.y6cc{bottom:413.026667pt;}
.y246{bottom:413.506667pt;}
.y5d6{bottom:414.946667pt;}
.y17{bottom:415.746667pt;}
.y12d{bottom:415.906667pt;}
.y1c0{bottom:416.226667pt;}
.y43b{bottom:417.826667pt;}
.y6bb{bottom:418.626667pt;}
.y53b{bottom:418.786667pt;}
.y60e{bottom:419.266667pt;}
.y3df{bottom:419.746667pt;}
.y1ab{bottom:421.026667pt;}
.y108{bottom:421.186667pt;}
.y656{bottom:421.666667pt;}
.y28c{bottom:422.626667pt;}
.y3af{bottom:423.426667pt;}
.y645{bottom:423.906667pt;}
.y208{bottom:424.226667pt;}
.y35e{bottom:424.546667pt;}
.y298{bottom:424.706667pt;}
.y64d{bottom:426.146667pt;}
.y2e8{bottom:426.626667pt;}
.y1d9{bottom:426.786667pt;}
.y62e{bottom:427.426667pt;}
.y217{bottom:427.746667pt;}
.y5f5{bottom:428.706667pt;}
.y606{bottom:429.986667pt;}
.yd7{bottom:430.146667pt;}
.y558{bottom:431.426667pt;}
.y180{bottom:431.746667pt;}
.y14b{bottom:432.066667pt;}
.y4a{bottom:432.546667pt;}
.ya0{bottom:434.626667pt;}
.y2b0{bottom:434.786667pt;}
.y83{bottom:435.106667pt;}
.y348{bottom:435.266667pt;}
.y410{bottom:436.546667pt;}
.y264{bottom:437.026667pt;}
.y5e2{bottom:437.346667pt;}
.y2da{bottom:437.506667pt;}
.y1f6{bottom:437.666667pt;}
.y197{bottom:437.986667pt;}
.ybb{bottom:438.146667pt;}
.y46e{bottom:438.626667pt;}
.y381{bottom:439.266667pt;}
.yf4{bottom:439.426667pt;}
.y478{bottom:439.906667pt;}
.y3a2{bottom:440.066667pt;}
.y488{bottom:440.226667pt;}
.y425{bottom:440.386667pt;}
.y68{bottom:442.146667pt;}
.y12c{bottom:442.786667pt;}
.y5d3{bottom:444.226667pt;}
.y2fc{bottom:444.866667pt;}
.y238{bottom:445.186667pt;}
.y332{bottom:445.346667pt;}
.y1bf{bottom:445.506667pt;}
.y16{bottom:446.306667pt;}
.y43a{bottom:447.106667pt;}
.y53a{bottom:448.066667pt;}
.y3de{bottom:449.026667pt;}
.y568{bottom:450.946667pt;}
.y28b{bottom:451.906667pt;}
.y689{bottom:452.386667pt;}
.y297{bottom:452.706667pt;}
.y644{bottom:453.186667pt;}
.y207{bottom:453.506667pt;}
.y4c0{bottom:454.786667pt;}
.y107{bottom:455.426667pt;}
.y2e7{bottom:455.906667pt;}
.y1d8{bottom:456.226667pt;}
.y404{bottom:456.381333pt;}
.y62d{bottom:456.706667pt;}
.y216{bottom:457.026667pt;}
.yd6{bottom:457.986667pt;}
.y14a{bottom:458.946667pt;}
.y4db{bottom:460.706667pt;}
.y17f{bottom:461.026667pt;}
.y166{bottom:461.826667pt;}
.y65f{bottom:461.986667pt;}
.y64c{bottom:463.746667pt;}
.y9f{bottom:463.906667pt;}
.y2af{bottom:464.066667pt;}
.y6cb{bottom:464.226667pt;}
.y82{bottom:464.386667pt;}
.y347{bottom:464.546667pt;}
.y263{bottom:466.466667pt;}
.y57d{bottom:466.946667pt;}
.yba{bottom:467.426667pt;}
.y46d{bottom:467.906667pt;}
.y3a1{bottom:469.346667pt;}
.y487{bottom:469.506667pt;}
.y12b{bottom:469.666667pt;}
.y49{bottom:469.826667pt;}
.y655{bottom:469.986667pt;}
.y4ee{bottom:470.946667pt;}
.y5af{bottom:471.106667pt;}
.y2a4{bottom:472.066667pt;}
.y67{bottom:473.986667pt;}
.y2fb{bottom:474.146667pt;}
.y2be{bottom:474.466667pt;}
.y1be{bottom:474.786667pt;}
.yf3{bottom:475.426667pt;}
.y196{bottom:475.586667pt;}
.y1f5{bottom:475.746667pt;}
.y439{bottom:476.546667pt;}
.y15{bottom:476.866667pt;}
.y3c6{bottom:477.186667pt;}
.y5e1{bottom:477.346667pt;}
.y2d9{bottom:477.506667pt;}
.y6ca{bottom:477.666667pt;}
.y3dd{bottom:478.306667pt;}
.y688{bottom:478.786667pt;}
.y6a2{bottom:479.266667pt;}
.y677{bottom:479.746667pt;}
.y477{bottom:479.906667pt;}
.y567{bottom:480.226667pt;}
.y28a{bottom:481.186667pt;}
.y215{bottom:481.986667pt;}
.y643{bottom:482.626667pt;}
.y245{bottom:482.786667pt;}
.y296{bottom:484.066667pt;}
.y237{bottom:485.186667pt;}
.y331{bottom:485.346667pt;}
.y1d7{bottom:485.506667pt;}
.y4fb{bottom:485.666667pt;}
.y149{bottom:485.826667pt;}
.y62c{bottom:485.986667pt;}
.y5f4{bottom:487.266667pt;}
.y106{bottom:487.906667pt;}
.y3f4{bottom:489.186667pt;}
.y17e{bottom:490.306667pt;}
.y378{bottom:490.466667pt;}
.y165{bottom:491.106667pt;}
.y65e{bottom:492.066667pt;}
.y4bf{bottom:492.226667pt;}
.y9e{bottom:493.186667pt;}
.y206{bottom:493.346667pt;}
.y81{bottom:493.666667pt;}
.yd5{bottom:493.826667pt;}
.y554{bottom:494.626667pt;}
.y262{bottom:495.746667pt;}
.y57c{bottom:496.226667pt;}
.y12a{bottom:496.546667pt;}
.yb9{bottom:496.706667pt;}
.y46c{bottom:497.346667pt;}
.y589{bottom:497.666667pt;}
.y3a0{bottom:498.626667pt;}
.y486{bottom:498.786667pt;}
.y424{bottom:498.946667pt;}
.y605{bottom:499.266667pt;}
.y64b{bottom:501.186667pt;}
.y2a3{bottom:501.346667pt;}
.y321{bottom:502.653333pt;}
.y402{bottom:502.813333pt;}
.yf2{bottom:503.133333pt;}
.y6c9{bottom:503.293333pt;}
.y2fa{bottom:503.453333pt;}
.y2bd{bottom:503.773333pt;}
.y1bd{bottom:504.093333pt;}
.y35d{bottom:504.413333pt;}
.y48{bottom:504.573333pt;}
.y44b{bottom:504.733333pt;}
.y498{bottom:504.893333pt;}
.y66{bottom:505.693333pt;}
.y438{bottom:505.853333pt;}
.y2d8{bottom:506.813333pt;}
.y14{bottom:507.453333pt;}
.y3dc{bottom:507.613333pt;}
.y4ed{bottom:508.413333pt;}
.y466{bottom:508.573333pt;}
.y566{bottom:509.693333pt;}
.y289{bottom:510.493333pt;}
.y3ae{bottom:511.453333pt;}
.y642{bottom:511.933333pt;}
.y244{bottom:512.093333pt;}
.y148{bottom:512.733333pt;}
.y195{bottom:513.053333pt;}
.y325{bottom:513.373333pt;}
.y1f4{bottom:513.853333pt;}
.y105{bottom:514.493333pt;}
.y1d6{bottom:514.813333pt;}
.y62b{bottom:515.293333pt;}
.y37e{bottom:515.520000pt;}
.y476{bottom:515.613333pt;}
.y5f3{bottom:516.573333pt;}
.y5e0{bottom:517.373333pt;}
.y346{bottom:517.533333pt;}
.y65d{bottom:518.013333pt;}
.y22b{bottom:518.333333pt;}
.y17d{bottom:519.613333pt;}
.y687{bottom:522.333333pt;}
.y9d{bottom:522.493333pt;}
.y205{bottom:522.813333pt;}
.y80{bottom:522.973333pt;}
.y129{bottom:523.453333pt;}
.y51f{bottom:524.253333pt;}
.y261{bottom:525.053333pt;}
.y330{bottom:525.373333pt;}
.yb8{bottom:526.013333pt;}
.y46b{bottom:526.653333pt;}
.y57b{bottom:527.453333pt;}
.y39f{bottom:527.933333pt;}
.y485{bottom:528.093333pt;}
.y423{bottom:528.253333pt;}
.y604{bottom:528.573333pt;}
.y47{bottom:528.893333pt;}
.y6c8{bottom:529.053333pt;}
.yd4{bottom:529.853333pt;}
.y320{bottom:530.653333pt;}
.y4be{bottom:530.973333pt;}
.y164{bottom:531.133333pt;}
.y2f9{bottom:532.733333pt;}
.y2bc{bottom:533.213333pt;}
.y1bc{bottom:533.373333pt;}
.y437{bottom:535.133333pt;}
.y2d7{bottom:536.093333pt;}
.y380{bottom:536.226667pt;}
.y588{bottom:536.413333pt;}
.y3c5{bottom:536.573333pt;}
.y3db{bottom:536.893333pt;}
.y65{bottom:537.373333pt;}
.y13{bottom:538.013333pt;}
.y64a{bottom:538.813333pt;}
.y565{bottom:538.973333pt;}
.yf1{bottom:539.133333pt;}
.y147{bottom:539.613333pt;}
.y686{bottom:539.933333pt;}
.y288{bottom:540.733333pt;}
.y641{bottom:541.213333pt;}
.y243{bottom:541.373333pt;}
.y307{bottom:542.653333pt;}
.y1f3{bottom:543.293333pt;}
.y44a{bottom:543.453333pt;}
.y236{bottom:543.773333pt;}
.y6a1{bottom:543.933333pt;}
.y1d5{bottom:544.093333pt;}
.y35c{bottom:544.413333pt;}
.y62a{bottom:544.573333pt;}
.y5d1{bottom:544.733333pt;}
.y5f2{bottom:545.853333pt;}
.y345{bottom:546.973333pt;}
.y4ec{bottom:547.133333pt;}
.y465{bottom:547.293333pt;}
.y3f3{bottom:548.413333pt;}
.y17c{bottom:548.893333pt;}
.y128{bottom:550.173333pt;}
.y36c{bottom:550.333333pt;}
.y104{bottom:550.493333pt;}
.y194{bottom:550.653333pt;}
.y9c{bottom:551.773333pt;}
.y204{bottom:552.093333pt;}
.y7f{bottom:552.253333pt;}
.y46{bottom:553.213333pt;}
.y50c{bottom:554.013333pt;}
.y260{bottom:554.333333pt;}
.y5c8{bottom:554.653333pt;}
.y40d{bottom:555.133333pt;}
.yb7{bottom:555.293333pt;}
.y685{bottom:557.053333pt;}
.y39e{bottom:557.373333pt;}
.y603{bottom:557.853333pt;}
.y5b7{bottom:559.613333pt;}
.y38a{bottom:559.933333pt;}
.y4bd{bottom:560.253333pt;}
.y163{bottom:560.413333pt;}
.y2f8{bottom:562.013333pt;}
.y2bb{bottom:562.493333pt;}
.y1bb{bottom:562.653333pt;}
.y593{bottom:562.973333pt;}
.y32f{bottom:565.213333pt;}
.y2d6{bottom:565.373333pt;}
.yd3{bottom:565.853333pt;}
.y3da{bottom:566.173333pt;}
.y146{bottom:566.493333pt;}
.yf0{bottom:566.813333pt;}
.y484{bottom:568.093333pt;}
.y422{bottom:568.253333pt;}
.y12{bottom:568.413333pt;}
.y5c7{bottom:568.573333pt;}
.y51c{bottom:569.053333pt;}
.y64{bottom:569.213333pt;}
.y45{bottom:569.533333pt;}
.y287{bottom:570.013333pt;}
.y640{bottom:570.493333pt;}
.y242{bottom:570.653333pt;}
.y3ad{bottom:571.933333pt;}
.y1f2{bottom:572.573333pt;}
.y497{bottom:572.893333pt;}
.y235{bottom:573.053333pt;}
.y1d4{bottom:573.373333pt;}
.y436{bottom:573.853333pt;}
.y684{bottom:574.173333pt;}
.y654{bottom:574.653333pt;}
.y344{bottom:576.253333pt;}
.y4eb{bottom:576.413333pt;}
.y6ba{bottom:576.893333pt;}
.y127{bottom:577.053333pt;}
.y66a{bottom:578.013333pt;}
.y17b{bottom:578.173333pt;}
.y6c7{bottom:580.253333pt;}
.y9b{bottom:581.213333pt;}
.y203{bottom:581.373333pt;}
.y7e{bottom:581.533333pt;}
.y44{bottom:582.173333pt;}
.y222{bottom:582.333333pt;}
.y35b{bottom:583.293333pt;}
.y449{bottom:583.453333pt;}
.y25f{bottom:583.613333pt;}
.yb6{bottom:584.733333pt;}
.y5f1{bottom:585.853333pt;}
.y103{bottom:586.333333pt;}
.y599{bottom:586.653333pt;}
.y464{bottom:587.133333pt;}
.y57a{bottom:587.293333pt;}
.y683{bottom:588.253333pt;}
.y5b6{bottom:588.893333pt;}
.y483{bottom:589.213333pt;}
.y193{bottom:589.373333pt;}
.y4bc{bottom:589.533333pt;}
.y162{bottom:589.693333pt;}
.y2f7{bottom:591.293333pt;}
.y2ba{bottom:591.773333pt;}
.y1ba{bottom:591.933333pt;}
.y145{bottom:593.213333pt;}
.y46a{bottom:593.373333pt;}
.y658{bottom:593.853333pt;}
.yef{bottom:594.653333pt;}
.y3d9{bottom:595.453333pt;}
.y3c4{bottom:595.773333pt;}
.y6a0{bottom:595.933333pt;}
.y39d{bottom:597.213333pt;}
.y421{bottom:597.533333pt;}
.y11{bottom:598.973333pt;}
.y51b{bottom:599.133333pt;}
.y286{bottom:599.293333pt;}
.y63f{bottom:599.773333pt;}
.y241{bottom:599.933333pt;}
.y63{bottom:600.893333pt;}
.y5ad{bottom:601.693333pt;}
.yd2{bottom:601.853333pt;}
.y36e{bottom:602.173333pt;}
.y234{bottom:602.333333pt;}
.y1d3{bottom:602.653333pt;}
.y629{bottom:603.133333pt;}
.y6b9{bottom:603.293333pt;}
.y126{bottom:603.933333pt;}
.y32e{bottom:605.213333pt;}
.y539{bottom:605.373333pt;}
.y343{bottom:605.533333pt;}
.y6c6{bottom:605.853333pt;}
.y551{bottom:607.293333pt;}
.y1aa{bottom:607.453333pt;}
.y3f2{bottom:607.613333pt;}
.y564{bottom:608.253333pt;}
.y5d0{bottom:608.733333pt;}
.y202{bottom:610.653333pt;}
.y7d{bottom:610.813333pt;}
.y448{bottom:612.733333pt;}
.y25e{bottom:612.893333pt;}
.y2e6{bottom:613.053333pt;}
.y649{bottom:613.853333pt;}
.y4fa{bottom:614.493333pt;}
.y5f0{bottom:615.133333pt;}
.y463{bottom:616.413333pt;}
.y43{bottom:618.173333pt;}
.y192{bottom:618.653333pt;}
.y4bb{bottom:618.813333pt;}
.y161{bottom:618.973333pt;}
.y657{bottom:619.933333pt;}
.y144{bottom:620.093333pt;}
.y2f6{bottom:620.573333pt;}
.y9a{bottom:621.053333pt;}
.y1b9{bottom:621.373333pt;}
.y595{bottom:621.760000pt;}
.y35a{bottom:621.853333pt;}
.y5c6{bottom:622.173333pt;}
.yee{bottom:622.333333pt;}
.y2d5{bottom:623.933333pt;}
.yb5{bottom:624.573333pt;}
.y3d8{bottom:624.893333pt;}
.y5cf{bottom:625.053333pt;}
.y598{bottom:626.653333pt;}
.y420{bottom:626.813333pt;}
.y579{bottom:627.293333pt;}
.y285{bottom:628.573333pt;}
.y469{bottom:629.053333pt;}
.y2a2{bottom:629.213333pt;}
.y10{bottom:629.533333pt;}
.y6b8{bottom:630.173333pt;}
.y587{bottom:630.493333pt;}
.y125{bottom:630.813333pt;}
.y1f1{bottom:631.133333pt;}
.y496{bottom:631.453333pt;}
.y233{bottom:631.773333pt;}
.y1d2{bottom:631.933333pt;}
.y628{bottom:632.413333pt;}
.y62{bottom:632.733333pt;}
.y5ac{bottom:634.173333pt;}
.y538{bottom:634.653333pt;}
.y342{bottom:634.813333pt;}
.y42{bottom:636.093333pt;}
.y1a9{bottom:636.733333pt;}
.y39c{bottom:637.213333pt;}
.y69f{bottom:637.533333pt;}
.y51a{bottom:637.693333pt;}
.y201{bottom:639.933333pt;}
.y682{bottom:640.093333pt;}
.y7c{bottom:640.253333pt;}
.y435{bottom:641.853333pt;}
.y447{bottom:642.013333pt;}
.y25d{bottom:642.173333pt;}
.y2e5{bottom:642.333333pt;}
.y40c{bottom:643.613333pt;}
.y65c{bottom:643.933333pt;}
.y6b7{bottom:644.093333pt;}
.y400{bottom:644.253333pt;}
.y5ef{bottom:644.413333pt;}
.y32d{bottom:645.213333pt;}
.y4ea{bottom:645.693333pt;}
.y462{bottom:645.853333pt;}
.y143{bottom:646.973333pt;}
.y17a{bottom:647.453333pt;}
.y389{bottom:647.933333pt;}
.y4ba{bottom:648.093333pt;}
.y160{bottom:648.413333pt;}
.y5c5{bottom:649.053333pt;}
.y2f5{bottom:649.853333pt;}
.y65a{bottom:650.013333pt;}
.yed{bottom:650.173333pt;}
.y99{bottom:650.333333pt;}
.y1b8{bottom:650.653333pt;}
.y648{bottom:651.293333pt;}
.y2d4{bottom:653.213333pt;}
.yb4{bottom:653.853333pt;}
.y3d7{bottom:654.173333pt;}
.y386{bottom:654.493333pt;}
.y3c0{bottom:654.973333pt;}
.y5ce{bottom:655.453333pt;}
.y578{bottom:656.573333pt;}
.y6c5{bottom:657.213333pt;}
.y124{bottom:657.693333pt;}
.y63e{bottom:658.333333pt;}
.y191{bottom:658.493333pt;}
.yf{bottom:659.453333pt;}
.y1f0{bottom:660.413333pt;}
.y495{bottom:660.733333pt;}
.y232{bottom:661.053333pt;}
.y1d1{bottom:661.213333pt;}
.y627{bottom:661.693333pt;}
.y359{bottom:661.853333pt;}
.y537{bottom:663.933333pt;}
.y41{bottom:664.093333pt;}
.y61{bottom:664.413333pt;}
.y482{bottom:664.733333pt;}
.yd1{bottom:665.533333pt;}
.y1a8{bottom:666.013333pt;}
.y39b{bottom:666.493333pt;}
.y41f{bottom:666.813333pt;}
.y519{bottom:666.973333pt;}
.y675{bottom:667.133333pt;}
.y550{bottom:667.293333pt;}
.y33{bottom:669.213333pt;}
.y7b{bottom:669.533333pt;}
.y446{bottom:671.293333pt;}
.y25c{bottom:671.453333pt;}
.y2e4{bottom:671.613333pt;}
.y574{bottom:672.413333pt;}
.y5ab{bottom:672.893333pt;}
.y5ee{bottom:673.693333pt;}
.y142{bottom:673.853333pt;}
.y4e9{bottom:674.973333pt;}
.y461{bottom:675.133333pt;}
.y6b5{bottom:675.773333pt;}
.y5c4{bottom:676.573333pt;}
.y179{bottom:676.733333pt;}
.y3ff{bottom:677.213333pt;}
.y4b9{bottom:677.373333pt;}
.y15f{bottom:677.693333pt;}
.y98{bottom:679.773333pt;}
.y1b7{bottom:679.933333pt;}
.y434{bottom:681.853333pt;}
.y21{bottom:682.813333pt;}
.yb3{bottom:683.293333pt;}
.y3d6{bottom:683.453333pt;}
.y123{bottom:684.573333pt;}
.y32c{bottom:685.213333pt;}
.y60{bottom:685.533333pt;}
.yec{bottom:686.013333pt;}
.y54f{bottom:686.493333pt;}
.y63d{bottom:687.613333pt;}
.y190{bottom:687.933333pt;}
.ye{bottom:688.893333pt;}
.y1ef{bottom:689.693333pt;}
.y2f4{bottom:689.853333pt;}
.y2b9{bottom:690.333333pt;}
.y1d0{bottom:690.493333pt;}
.y626{bottom:691.133333pt;}
.y494{bottom:692.413333pt;}
.y2d3{bottom:693.213333pt;}
.y40{bottom:693.373333pt;}
.y41e{bottom:696.093333pt;}
.y3f0{bottom:696.253333pt;}
.y2a1{bottom:697.373333pt;}
.y200{bottom:698.493333pt;}
.y7a{bottom:698.813333pt;}
.y141{bottom:700.733333pt;}
.y231{bottom:700.893333pt;}
.yd0{bottom:701.533333pt;}
.y358{bottom:701.853333pt;}
.y577{bottom:702.333333pt;}
.y445{bottom:702.493333pt;}
.y5ed{bottom:702.973333pt;}
.y341{bottom:704.093333pt;}
.y4e8{bottom:704.253333pt;}
.y3d5{bottom:704.413333pt;}
.y1a7{bottom:704.893333pt;}
.y178{bottom:706.013333pt;}
.y5f{bottom:706.493333pt;}
.y4b8{bottom:706.813333pt;}
.y15e{bottom:706.973333pt;}
.y6b3{bottom:707.613333pt;}
.y50a{bottom:708.573333pt;}
.y97{bottom:709.053333pt;}
.y1b6{bottom:709.213333pt;}
.y433{bottom:711.133333pt;}
.y122{bottom:711.293333pt;}
.y3fe{bottom:711.613333pt;}
.yb2{bottom:712.573333pt;}
.y5aa{bottom:712.733333pt;}
.y493{bottom:713.533333pt;}
.y63c{bottom:716.893333pt;}
.y2a0{bottom:717.213333pt;}
.y284{bottom:717.373333pt;}
.y1ee{bottom:718.973333pt;}
.y2f3{bottom:719.133333pt;}
.yd{bottom:719.453333pt;}
.y2b8{bottom:719.613333pt;}
.y1cf{bottom:719.933333pt;}
.y625{bottom:720.413333pt;}
.y5c3{bottom:720.733333pt;}
.y475{bottom:720.893333pt;}
.yeb{bottom:722.013333pt;}
.y444{bottom:722.333333pt;}
.y2d2{bottom:722.493333pt;}
.y1a6{bottom:724.733333pt;}
.y32b{bottom:725.053333pt;}
.y54e{bottom:725.213333pt;}
.y41d{bottom:725.373333pt;}
.y369{bottom:725.693333pt;}
.y647{bottom:726.333333pt;}
.y387{bottom:727.200000pt;}
.y140{bottom:727.613333pt;}
.y3ef{bottom:727.626667pt;}
.y18f{bottom:727.773333pt;}
.y79{bottom:728.093333pt;}
.ycf{bottom:729.213333pt;}
.y25b{bottom:730.013333pt;}
.y230{bottom:730.333333pt;}
.y3f{bottom:730.653333pt;}
.y40b{bottom:732.253333pt;}
.y576{bottom:732.413333pt;}
.y340{bottom:733.373333pt;}
.y4e7{bottom:733.533333pt;}
.y177{bottom:735.293333pt;}
.y39a{bottom:735.773333pt;}
.y4b7{bottom:736.093333pt;}
.y15d{bottom:736.253333pt;}
.y460{bottom:737.213333pt;}
.y5b5{bottom:737.373333pt;}
.y121{bottom:738.173333pt;}
.y5e{bottom:738.333333pt;}
.y1b5{bottom:738.493333pt;}
.y6b0{bottom:739.293333pt;}
.y3fd{bottom:740.893333pt;}
.y357{bottom:741.853333pt;}
.y597{bottom:742.173333pt;}
.y4f9{bottom:743.453333pt;}
.y536{bottom:743.613333pt;}
.y4d4{bottom:744.093333pt;}
.y3d4{bottom:744.413333pt;}
.y492{bottom:744.733333pt;}
.y283{bottom:746.653333pt;}
.y63b{bottom:747.133333pt;}
.y1ed{bottom:748.253333pt;}
.y2f2{bottom:748.413333pt;}
.y96{bottom:748.893333pt;}
.y1ce{bottom:749.213333pt;}
.y624{bottom:749.693333pt;}
.yc{bottom:750.013333pt;}
.y6c4{bottom:751.293333pt;}
.y5c2{bottom:751.453333pt;}
.y2d1{bottom:751.773333pt;}
.yb1{bottom:752.413333pt;}
.y5a9{bottom:752.733333pt;}
.y13f{bottom:754.533333pt;}
.y41c{bottom:754.693333pt;}
.y518{bottom:755.013333pt;}
.y45f{bottom:756.773333pt;}
.y3ee{bottom:756.906667pt;}
.yce{bottom:756.933333pt;}
.y18e{bottom:757.093333pt;}
.y78{bottom:757.413333pt;}
.yea{bottom:758.053333pt;}
.y69e{bottom:758.213333pt;}
.y690{bottom:758.693333pt;}
.y5d{bottom:759.493333pt;}
.y22f{bottom:759.653333pt;}
.y3e{bottom:759.973333pt;}
.y25a{bottom:761.413333pt;}
.y6ce{bottom:762.053333pt;}
.y443{bottom:762.373333pt;}
.y4e6{bottom:762.853333pt;}
.y1a5{bottom:763.493333pt;}
.y5ec{bottom:764.133333pt;}
.y176{bottom:764.613333pt;}
.y120{bottom:765.093333pt;}
.y54d{bottom:765.253333pt;}
.y1b4{bottom:767.813333pt;}
.y5a8{bottom:767.973333pt;}
.y375{bottom:768.453333pt;}
.y3fc{bottom:770.213333pt;}
.y6af{bottom:771.013333pt;}
.y3bc{bottom:772.933333pt;}
.y33f{bottom:773.413333pt;}
.y602{bottom:773.573333pt;}
.y491{bottom:774.853333pt;}
.y282{bottom:775.973333pt;}
.y15c{bottom:776.293333pt;}
.y6c3{bottom:776.933333pt;}
.y1ec{bottom:777.573333pt;}
.y2f1{bottom:777.733333pt;}
.yb{bottom:777.893333pt;}
.y432{bottom:778.053333pt;}
.y2b7{bottom:778.213333pt;}
.y95{bottom:778.373333pt;}
.y1cd{bottom:778.533333pt;}
.y623{bottom:779.013333pt;}
.y40a{bottom:779.493333pt;}
.y2d0{bottom:781.093333pt;}
.y13e{bottom:781.253333pt;}
.y356{bottom:781.733333pt;}
.yb0{bottom:781.893333pt;}
.y535{bottom:783.653333pt;}
.y69d{bottom:783.813333pt;}
.y41b{bottom:783.973333pt;}
.y517{bottom:784.293333pt;}
.y3d3{bottom:784.453333pt;}
.ycd{bottom:784.773333pt;}
.y68f{bottom:785.093333pt;}
.y5eb{bottom:785.253333pt;}
.y383{bottom:786.373333pt;}
.y392{bottom:786.533333pt;}
.y77{bottom:786.693333pt;}
.y442{bottom:787.333333pt;}
.y5c1{bottom:787.973333pt;}
.y45e{bottom:788.133333pt;}
.y454{bottom:788.480000pt;}
.y22e{bottom:788.933333pt;}
.y3d{bottom:789.413333pt;}
.y586{bottom:790.693333pt;}
.y5c{bottom:791.173333pt;}
.y11f{bottom:791.973333pt;}
.y573{bottom:792.293333pt;}
.ye9{bottom:794.053333pt;}
.y399{bottom:794.373333pt;}
.y4e5{bottom:794.693333pt;}
.y4f8{bottom:795.333333pt;}
.y175{bottom:795.973333pt;}
.y18d{bottom:797.093333pt;}
.y5a7{bottom:797.253333pt;}
.y468{bottom:798.373333pt;}
.y6c2{bottom:799.333333pt;}
.y3fb{bottom:799.493333pt;}
.y3d1{bottom:800.293333pt;}
.ya{bottom:800.613333pt;}
.y490{bottom:800.773333pt;}
.y58f{bottom:801.093333pt;}
.y49b{bottom:801.440000pt;}
.y1a4{bottom:802.213333pt;}
.y591{bottom:802.853333pt;}
.y32a{bottom:805.093333pt;}
.y281{bottom:805.253333pt;}
.y15b{bottom:805.573333pt;}
.y1eb{bottom:807.013333pt;}
.y2f0{bottom:807.173333pt;}
.y2b6{bottom:807.493333pt;}
.y94{bottom:807.653333pt;}
.y1cc{bottom:807.813333pt;}
.y13d{bottom:808.133333pt;}
.y622{bottom:808.293333pt;}
.y69c{bottom:809.413333pt;}
.y2cf{bottom:810.373333pt;}
.y431{bottom:810.853333pt;}
.y54c{bottom:811.013333pt;}
.yaf{bottom:811.173333pt;}
.y5b{bottom:812.293333pt;}
.ycc{bottom:812.453333pt;}
.y33e{bottom:813.253333pt;}
.y5c0{bottom:814.853333pt;}
.y174{bottom:815.813333pt;}
.y76{bottom:815.973333pt;}
.y117{bottom:816.453333pt;}
.y22d{bottom:818.213333pt;}
.y11e{bottom:818.853333pt;}
.y45d{bottom:819.653333pt;}
.y585{bottom:819.973333pt;}
.y102{bottom:821.733333pt;}
.y571{bottom:822.213333pt;}
.y534{bottom:823.493333pt;}
.y398{bottom:823.653333pt;}
.y41a{bottom:823.973333pt;}
.y516{bottom:824.293333pt;}
.y6ab{bottom:824.773333pt;}
.y5ea{bottom:825.093333pt;}
.y18c{bottom:826.373333pt;}
.y5a6{bottom:826.533333pt;}
.y3c{bottom:826.693333pt;}
.y68e{bottom:828.613333pt;}
.y5bf{bottom:828.773333pt;}
.y2e3{bottom:828.933333pt;}
.ye8{bottom:829.893333pt;}
.y214{bottom:830.213333pt;}
.y9{bottom:830.693333pt;}
.y1a3{bottom:831.493333pt;}
.y259{bottom:831.813333pt;}
.y601{bottom:832.133333pt;}
.y5a{bottom:833.253333pt;}
.y280{bottom:834.373333pt;}
.y15a{bottom:834.853333pt;}
.y13c{bottom:835.013333pt;}
.y1ea{bottom:836.293333pt;}
.y2ef{bottom:836.453333pt;}
.y93{bottom:836.933333pt;}
.y1cb{bottom:837.093333pt;}
.y506{bottom:837.413333pt;}
.y621{bottom:837.573333pt;}
.y27d{bottom:839.013333pt;}
.y52e{bottom:839.333333pt;}
.y2ce{bottom:839.813333pt;}
.ycb{bottom:840.293333pt;}
.yae{bottom:840.453333pt;}
.y54b{bottom:841.093333pt;}
.y33d{bottom:842.533333pt;}
.y329{bottom:845.093333pt;}
.y75{bottom:845.253333pt;}
.y11d{bottom:845.733333pt;}
.y2b5{bottom:846.373333pt;}
.y680{bottom:846.693333pt;}
.y4d3{bottom:847.333333pt;}
.y37a{bottom:847.520000pt;}
.y584{bottom:848.613333pt;}
.y116{bottom:850.693333pt;}
.y430{bottom:850.853333pt;}
.y58b{bottom:852.160000pt;}
.y515{bottom:853.573333pt;}
.y8{bottom:853.893333pt;}
.y173{bottom:855.653333pt;}
.y3b{bottom:855.973333pt;}
.y58d{bottom:856.320000pt;}
.y5a5{bottom:856.613333pt;}
.y213{bottom:856.933333pt;}
.y101{bottom:857.733333pt;}
.y2e2{bottom:858.213333pt;}
.y1a2{bottom:860.773333pt;}
.y669{bottom:861.253333pt;}
.y3ba{bottom:861.413333pt;}
.y355{bottom:861.733333pt;}
.y13b{bottom:861.893333pt;}
.y372{bottom:863.333333pt;}
.y397{bottom:863.653333pt;}
.y509{bottom:863.813333pt;}
.y159{bottom:864.133333pt;}
.y27f{bottom:864.613333pt;}
.y59{bottom:865.093333pt;}
.y56b{bottom:865.253333pt;}
.y1e9{bottom:865.573333pt;}
.y2ee{bottom:865.733333pt;}
.ye7{bottom:865.893333pt;}
.y92{bottom:866.213333pt;}
.y1ca{bottom:866.373333pt;}
.y620{bottom:866.853333pt;}
.yca{bottom:867.973333pt;}
.y2cd{bottom:869.093333pt;}
.yad{bottom:869.733333pt;}
.y258{bottom:870.533333pt;}
.y54a{bottom:871.013333pt;}
.y33c{bottom:871.973333pt;}
.y11c{bottom:872.613333pt;}
.y3e9{bottom:873.413333pt;}
.y2b4{bottom:874.373333pt;}
.y74{bottom:874.533333pt;}
.y7{bottom:877.093333pt;}
.y42f{bottom:880.133333pt;}
.y115{bottom:882.533333pt;}
.y514{bottom:882.853333pt;}
.y18b{bottom:884.933333pt;}
.y58{bottom:886.213333pt;}
.y2e1{bottom:887.493333pt;}
.y668{bottom:887.653333pt;}
.y37c{bottom:887.813333pt;}
.y6a9{bottom:888.293333pt;}
.y13a{bottom:888.773333pt;}
.y1a1{bottom:890.053333pt;}
.y3a{bottom:893.253333pt;}
.y158{bottom:893.413333pt;}
.y100{bottom:893.733333pt;}
.y27e{bottom:893.893333pt;}
.y5e9{bottom:894.373333pt;}
.y1e8{bottom:894.853333pt;}
.y2ed{bottom:895.013333pt;}
.y56f{bottom:895.173333pt;}
.y91{bottom:895.493333pt;}
.yc9{bottom:895.653333pt;}
.y61f{bottom:896.133333pt;}
.y2cc{bottom:898.373333pt;}
.y67f{bottom:898.533333pt;}
.yac{bottom:899.013333pt;}
.y674{bottom:899.173333pt;}
.y11b{bottom:899.333333pt;}
.y6{bottom:900.133333pt;}
.y549{bottom:900.933333pt;}
.y600{bottom:901.413333pt;}
.y354{bottom:901.733333pt;}
.ye6{bottom:901.893333pt;}
.y69b{bottom:903.013333pt;}
.y396{bottom:903.653333pt;}
.y73{bottom:903.973333pt;}
.y57{bottom:907.173333pt;}
.y2dc{bottom:907.333333pt;}
.y3b9{bottom:908.773333pt;}
.y42e{bottom:909.413333pt;}
.y257{bottom:910.373333pt;}
.y33b{bottom:910.693333pt;}
.y513{bottom:912.133333pt;}
.y18a{bottom:914.373333pt;}
.y114{bottom:915.173333pt;}
.y273{bottom:915.493333pt;}
.y139{bottom:915.653333pt;}
.y270{bottom:916.293333pt;}
.y2e0{bottom:916.773333pt;}
.y276{bottom:917.413333pt;}
.y68d{bottom:917.733333pt;}
.y1a0{bottom:919.333333pt;}
.y27b{bottom:921.093333pt;}
.y39{bottom:922.533333pt;}
.y157{bottom:922.693333pt;}
.yc8{bottom:923.493333pt;}
.y5e8{bottom:923.653333pt;}
.y1e7{bottom:924.133333pt;}
.y2ec{bottom:924.293333pt;}
.y90{bottom:924.773333pt;}
.y172{bottom:924.933333pt;}
.y56d{bottom:925.093333pt;}
.y61e{bottom:925.413333pt;}
.y11a{bottom:926.213333pt;}
.y370{bottom:927.653333pt;}
.yab{bottom:928.293333pt;}
.y3cf{bottom:928.773333pt;}
.y69a{bottom:929.253333pt;}
.ye5{bottom:929.573333pt;}
.y5ff{bottom:930.693333pt;}
.y548{bottom:930.853333pt;}
.y667{bottom:931.173333pt;}
.y5a4{bottom:932.453333pt;}
.y5{bottom:932.773333pt;}
.y72{bottom:933.253333pt;}
.y5bc{bottom:936.773333pt;}
.y2cb{bottom:938.213333pt;}
.y33a{bottom:938.693333pt;}
.y56{bottom:939.013333pt;}
.y113{bottom:939.653333pt;}
.y3b8{bottom:940.933333pt;}
.y512{bottom:941.413333pt;}
.y353{bottom:941.733333pt;}
.y6a7{bottom:941.893333pt;}
.y138{bottom:942.373333pt;}
.y1b3{bottom:943.653333pt;}
.y505{bottom:944.933333pt;}
.y2df{bottom:946.053333pt;}
.y19f{bottom:948.773333pt;}
.y256{bottom:950.373333pt;}
.y4f6{bottom:950.533333pt;}
.yc7{bottom:951.173333pt;}
.y38{bottom:951.813333pt;}
.y119{bottom:953.093333pt;}
.y1e6{bottom:953.413333pt;}
.y2eb{bottom:953.573333pt;}
.y171{bottom:954.213333pt;}
.y61d{bottom:954.853333pt;}
.y699{bottom:956.773333pt;}
.y8f{bottom:956.933333pt;}
.ye4{bottom:957.413333pt;}
.y55{bottom:959.973333pt;}
.y546{bottom:960.933333pt;}
.y2b{bottom:961.093333pt;}
.y71{bottom:962.533333pt;}
.y156{bottom:962.693333pt;}
.y4{bottom:963.973333pt;}
.y3e8{bottom:966.853333pt;}
.y666{bottom:969.573333pt;}
.y511{bottom:970.693333pt;}
.yc6{bottom:972.293333pt;}
.y45c{bottom:974.213333pt;}
.y112{bottom:975.013333pt;}
.y339{bottom:977.573333pt;}
.y42d{bottom:978.693333pt;}
.y118{bottom:979.973333pt;}
.y37{bottom:981.093333pt;}
.y352{bottom:981.573333pt;}
.y1e5{bottom:982.693333pt;}
.y255{bottom:982.853333pt;}
.y170{bottom:983.493333pt;}
.y2de{bottom:984.773333pt;}
.ye3{bottom:985.093333pt;}
.y61c{bottom:986.053333pt;}
.y2a{bottom:986.693333pt;}
.y3{bottom:989.573333pt;}
.y8e{bottom:990.533333pt;}
.y54{bottom:991.813333pt;}
.y155{bottom:994.213333pt;}
.y6a5{bottom:996.293333pt;}
.y5a2{bottom:998.693333pt;}
.y5e7{bottom:1007.840000pt;}
.y338{bottom:1009.120000pt;}
.yc5{bottom:1010.240000pt;}
.y111{bottom:1010.400000pt;}
.y1e4{bottom:1012.000000pt;}
.y3a9{bottom:1012.800000pt;}
.y29{bottom:1012.960000pt;}
.y254{bottom:1014.240000pt;}
.y2{bottom:1014.400000pt;}
.y27{bottom:1061.440000pt;}
.h77{height:13.440000pt;}
.h76{height:14.560000pt;}
.h32{height:17.440000pt;}
.h2a{height:19.200000pt;}
.h75{height:19.360000pt;}
.h29{height:20.000000pt;}
.h31{height:22.400000pt;}
.h2e{height:23.072000pt;}
.h2b{height:24.000000pt;}
.h50{height:25.600000pt;}
.h8b{height:25.632000pt;}
.h83{height:25.760000pt;}
.h8c{height:25.792000pt;}
.h64{height:26.272000pt;}
.h1c{height:26.400000pt;}
.h7e{height:26.720000pt;}
.h63{height:26.880000pt;}
.h24{height:27.200000pt;}
.h6d{height:28.192000pt;}
.h3c{height:29.280000pt;}
.h45{height:29.312000pt;}
.h34{height:29.440000pt;}
.h79{height:29.472000pt;}
.h6a{height:29.600000pt;}
.h11{height:29.920000pt;}
.hc{height:30.080000pt;}
.h7{height:31.406250pt;}
.h91{height:31.680000pt;}
.h90{height:31.712000pt;}
.h92{height:31.840000pt;}
.h8d{height:31.872000pt;}
.h20{height:32.160000pt;}
.h6b{height:32.320000pt;}
.h2c{height:32.960000pt;}
.h2d{height:35.040000pt;}
.h67{height:35.200000pt;}
.h13{height:35.260312pt;}
.h6c{height:35.680000pt;}
.h1d{height:35.840000pt;}
.h69{height:35.872000pt;}
.h1f{height:36.640000pt;}
.h1e{height:37.440000pt;}
.h7f{height:40.125312pt;}
.h6f{height:41.120000pt;}
.h80{height:41.280000pt;}
.h4b{height:41.976562pt;}
.h4c{height:42.088500pt;}
.h71{height:42.400000pt;}
.h14{height:43.808438pt;}
.h4f{height:46.447500pt;}
.h15{height:46.454062pt;}
.h49{height:48.343750pt;}
.h17{height:48.558750pt;}
.h1a{height:49.252500pt;}
.h5a{height:51.200000pt;}
.h5e{height:51.232000pt;}
.h5d{height:51.360000pt;}
.h2{height:51.491250pt;}
.h89{height:51.840000pt;}
.h60{height:52.000000pt;}
.h25{height:52.134375pt;}
.h12{height:52.781250pt;}
.h7d{height:53.600000pt;}
.h26{height:53.730000pt;}
.h7c{height:53.760000pt;}
.h62{height:53.792000pt;}
.h93{height:55.275000pt;}
.hd{height:55.968750pt;}
.h33{height:56.562187pt;}
.h16{height:57.003750pt;}
.h3{height:57.787500pt;}
.h37{height:58.560000pt;}
.h38{height:58.592000pt;}
.h82{height:58.619062pt;}
.h7b{height:58.720000pt;}
.h68{height:59.360000pt;}
.h8e{height:60.446250pt;}
.h10{height:61.754062pt;}
.h4e{height:62.080000pt;}
.h8{height:62.812500pt;}
.h22{height:63.072000pt;}
.h8f{height:63.520000pt;}
.h48{height:64.297187pt;}
.h5{height:65.483437pt;}
.h19{height:65.781915pt;}
.h18{height:66.625000pt;}
.he{height:70.199062pt;}
.h23{height:73.152000pt;}
.h21{height:73.280000pt;}
.h42{height:74.438437pt;}
.hb{height:74.949375pt;}
.h54{height:76.800000pt;}
.h5c{height:76.832000pt;}
.h5b{height:76.960000pt;}
.h8a{height:76.992000pt;}
.h6{height:77.951250pt;}
.h4{height:79.171875pt;}
.ha{height:79.475625pt;}
.h27{height:83.281250pt;}
.h85{height:86.240000pt;}
.h35{height:87.840000pt;}
.h40{height:87.872000pt;}
.h3f{height:88.000000pt;}
.h81{height:88.611250pt;}
.h72{height:89.312000pt;}
.h3d{height:92.800000pt;}
.h3a{height:98.592000pt;}
.h28{height:100.832000pt;}
.h6e{height:100.960000pt;}
.h70{height:102.240000pt;}
.h53{height:102.432000pt;}
.h51{height:102.560000pt;}
.h55{height:102.592000pt;}
.h86{height:104.320000pt;}
.h39{height:117.120000pt;}
.h7a{height:117.146667pt;}
.h44{height:117.152000pt;}
.h41{height:117.280000pt;}
.h36{height:117.312000pt;}
.h30{height:121.600000pt;}
.h2f{height:124.160000pt;}
.h3b{height:127.840000pt;}
.h5f{height:128.160000pt;}
.h57{height:128.192000pt;}
.h61{height:128.352000pt;}
.h59{height:128.800000pt;}
.h74{height:131.840000pt;}
.h78{height:132.000000pt;}
.h73{height:136.800000pt;}
.h9{height:140.186667pt;}
.h88{height:153.760000pt;}
.h52{height:153.786667pt;}
.h56{height:153.920000pt;}
.h58{height:153.946667pt;}
.h47{height:170.880000pt;}
.h46{height:176.506667pt;}
.h84{height:179.386667pt;}
.h87{height:179.546667pt;}
.h1b{height:184.506667pt;}
.h65{height:188.000000pt;}
.h66{height:188.026667pt;}
.h4a{height:195.360000pt;}
.hf{height:220.346667pt;}
.h4d{height:250.400000pt;}
.h43{height:471.586667pt;}
.h3e{height:772.093333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w50{width:15.840000pt;}
.w51{width:19.680000pt;}
.w72{width:21.760000pt;}
.w6e{width:28.480000pt;}
.w5b{width:35.840000pt;}
.w5c{width:38.752000pt;}
.w60{width:39.072000pt;}
.w5f{width:41.920000pt;}
.w9b{width:43.200000pt;}
.w8c{width:45.920000pt;}
.w85{width:46.560000pt;}
.w8e{width:46.592000pt;}
.w87{width:47.200000pt;}
.w6c{width:48.000000pt;}
.w62{width:49.792000pt;}
.w86{width:51.072000pt;}
.w1e{width:51.520000pt;}
.w1c{width:51.680000pt;}
.w3b{width:52.000000pt;}
.w41{width:52.640000pt;}
.w1d{width:52.960000pt;}
.w36{width:56.032000pt;}
.w37{width:56.160000pt;}
.w88{width:56.192000pt;}
.w70{width:56.672000pt;}
.w3c{width:57.312000pt;}
.w56{width:57.440000pt;}
.w31{width:57.600000pt;}
.w30{width:57.792000pt;}
.w65{width:58.560000pt;}
.w42{width:59.232000pt;}
.w98{width:59.840000pt;}
.w9a{width:60.032000pt;}
.w1b{width:61.120000pt;}
.w3a{width:61.152000pt;}
.w3f{width:61.472000pt;}
.w2f{width:63.520000pt;}
.w40{width:64.000000pt;}
.w64{width:64.512000pt;}
.w5d{width:64.800000pt;}
.w90{width:65.440000pt;}
.w34{width:65.472000pt;}
.w6b{width:70.592000pt;}
.w95{width:72.032000pt;}
.w55{width:74.432000pt;}
.w99{width:74.752000pt;}
.w94{width:74.880000pt;}
.w35{width:75.040000pt;}
.w5a{width:75.360000pt;}
.w71{width:75.552000pt;}
.w84{width:76.000000pt;}
.w58{width:77.280000pt;}
.w57{width:77.472000pt;}
.w67{width:80.992000pt;}
.w59{width:82.080000pt;}
.w8d{width:84.320000pt;}
.w66{width:86.880000pt;}
.wa{width:87.040000pt;}
.w5e{width:87.200000pt;}
.wc{width:87.360000pt;}
.w6a{width:91.520000pt;}
.w73{width:93.600000pt;}
.w12{width:93.760000pt;}
.w9d{width:93.920000pt;}
.wd{width:94.880000pt;}
.w16{width:99.360000pt;}
.w17{width:99.680000pt;}
.w3e{width:101.920000pt;}
.wb{width:102.272000pt;}
.w1a{width:102.560000pt;}
.w13{width:103.232000pt;}
.w19{width:104.640000pt;}
.w18{width:104.800000pt;}
.w63{width:108.480000pt;}
.wf{width:112.640000pt;}
.w78{width:112.800000pt;}
.w74{width:113.120000pt;}
.w76{width:113.152000pt;}
.w77{width:113.280000pt;}
.w75{width:113.312000pt;}
.w69{width:114.112000pt;}
.w6f{width:115.360000pt;}
.w68{width:115.680000pt;}
.w61{width:117.440000pt;}
.w9{width:118.400000pt;}
.w39{width:118.720000pt;}
.w11{width:122.112000pt;}
.w49{width:122.272000pt;}
.w6d{width:127.072000pt;}
.w21{width:128.832000pt;}
.w46{width:131.360000pt;}
.w7f{width:131.552000pt;}
.w10{width:131.712000pt;}
.w96{width:139.066667pt;}
.w33{width:140.800000pt;}
.w80{width:141.120000pt;}
.w47{width:141.146667pt;}
.w7c{width:141.440000pt;}
.w7d{width:141.626667pt;}
.w20{width:148.666667pt;}
.wa0{width:150.906667pt;}
.w9e{width:151.226667pt;}
.w7e{width:151.706667pt;}
.w53{width:156.160000pt;}
.w52{width:156.186667pt;}
.w81{width:158.426667pt;}
.w89{width:159.546667pt;}
.w91{width:164.026667pt;}
.w28{width:164.666667pt;}
.w29{width:165.786667pt;}
.w2e{width:167.226667pt;}
.w38{width:168.986667pt;}
.w93{width:172.506667pt;}
.w32{width:174.746667pt;}
.w82{width:174.906667pt;}
.w48{width:178.906667pt;}
.w8a{width:179.226667pt;}
.w15{width:179.546667pt;}
.w83{width:180.506667pt;}
.w4d{width:183.706667pt;}
.w4b{width:184.026667pt;}
.w26{width:185.306667pt;}
.w24{width:185.786667pt;}
.w4f{width:186.266667pt;}
.w23{width:187.226667pt;}
.w25{width:187.706667pt;}
.w4e{width:187.866667pt;}
.w8b{width:188.346667pt;}
.w9f{width:188.986667pt;}
.w9c{width:189.346667pt;}
.w22{width:191.386667pt;}
.w92{width:194.906667pt;}
.w8f{width:197.626667pt;}
.w7{width:204.026667pt;}
.w97{width:211.866667pt;}
.w43{width:223.066667pt;}
.w4{width:225.786667pt;}
.w3d{width:228.986667pt;}
.w27{width:258.906667pt;}
.w44{width:282.426667pt;}
.w45{width:282.466667pt;}
.we{width:282.586667pt;}
.w7b{width:282.746667pt;}
.w79{width:283.066667pt;}
.w7a{width:283.266667pt;}
.w1f{width:286.906667pt;}
.w8{width:301.346667pt;}
.w4a{width:323.106667pt;}
.w2b{width:356.000000pt;}
.w14{width:371.106667pt;}
.w4c{width:374.786667pt;}
.w5{width:399.106667pt;}
.w3{width:417.666667pt;}
.w6{width:417.826667pt;}
.w2c{width:510.240000pt;}
.w2d{width:532.320000pt;}
.w2a{width:592.413333pt;}
.w54{width:736.613333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x51{left:4.320000pt;}
.x4e{left:6.880000pt;}
.x33{left:8.000000pt;}
.x8{left:9.440000pt;}
.x48{left:10.400000pt;}
.x1c{left:11.520000pt;}
.x1a{left:12.800000pt;}
.x2d{left:14.080000pt;}
.x27{left:15.360000pt;}
.x31{left:16.800000pt;}
.x1d{left:18.560000pt;}
.x2b{left:20.000000pt;}
.x45{left:21.114667pt;}
.x3c{left:22.240000pt;}
.x39{left:24.000000pt;}
.x35{left:25.600000pt;}
.x36{left:27.354667pt;}
.xa4{left:28.320000pt;}
.x3b{left:29.274667pt;}
.x79{left:30.560000pt;}
.x7a{left:31.680000pt;}
.x4d{left:33.434667pt;}
.x3f{left:34.600000pt;}
.x3e{left:36.000000pt;}
.x3a{left:39.080000pt;}
.x2f{left:40.360000pt;}
.x80{left:41.280000pt;}
.x38{left:43.360000pt;}
.x3d{left:44.640000pt;}
.x37{left:45.960000pt;}
.x57{left:47.520000pt;}
.xc1{left:48.640000pt;}
.x4a{left:51.264000pt;}
.x9a{left:53.280000pt;}
.xa6{left:54.240000pt;}
.x78{left:55.200000pt;}
.x49{left:56.223988pt;}
.x1f{left:57.952000pt;}
.x5f{left:59.266667pt;}
.xbf{left:61.120000pt;}
.x9{left:62.880000pt;}
.x89{left:64.474667pt;}
.x56{left:65.440000pt;}
.x1e{left:66.880000pt;}
.x60{left:68.133333pt;}
.x4b{left:70.783988pt;}
.x69{left:72.800000pt;}
.x54{left:75.040000pt;}
.x61{left:76.293333pt;}
.x88{left:77.760000pt;}
.x5b{left:78.760000pt;}
.x52{left:80.634667pt;}
.x67{left:81.760000pt;}
.x81{left:84.480000pt;}
.x7b{left:87.360000pt;}
.x58{left:88.800000pt;}
.x2{left:94.591988pt;}
.x6c{left:95.586667pt;}
.x8c{left:98.266667pt;}
.x1b{left:101.920000pt;}
.x47{left:105.632000pt;}
.x46{left:107.712000pt;}
.x8a{left:109.626667pt;}
.x26{left:111.872000pt;}
.x6{left:113.471988pt;}
.x92{left:120.160000pt;}
.x8d{left:121.786667pt;}
.x72{left:124.453333pt;}
.x8b{left:126.106667pt;}
.x12{left:128.191988pt;}
.x41{left:132.351988pt;}
.x11{left:137.466655pt;}
.x42{left:141.786655pt;}
.x13{left:142.746655pt;}
.x62{left:145.413333pt;}
.xaf{left:146.906655pt;}
.x22{left:153.466655pt;}
.x10{left:160.666655pt;}
.x6a{left:164.000000pt;}
.x68{left:169.733333pt;}
.x6d{left:172.573333pt;}
.x23{left:177.466655pt;}
.x16{left:184.666655pt;}
.x21{left:199.226655pt;}
.xd{left:201.466655pt;}
.x17{left:208.666655pt;}
.x6e{left:211.066667pt;}
.x5c{left:214.720000pt;}
.x86{left:216.666667pt;}
.x2e{left:227.226667pt;}
.x82{left:233.626667pt;}
.x6b{left:235.266667pt;}
.x5d{left:238.786667pt;}
.xa2{left:242.586667pt;}
.x8f{left:246.106667pt;}
.x6f{left:249.600000pt;}
.x5e{left:253.666667pt;}
.x7c{left:255.546667pt;}
.x9c{left:262.946667pt;}
.x28{left:264.066667pt;}
.xa9{left:271.106667pt;}
.xc3{left:277.826667pt;}
.x87{left:278.946667pt;}
.x73{left:281.666667pt;}
.x5{left:283.586655pt;}
.x4c{left:286.786667pt;}
.xb{left:288.546667pt;}
.x4{left:293.026655pt;}
.x7{left:294.146667pt;}
.x83{left:295.426667pt;}
.xa{left:297.986667pt;}
.xbc{left:302.466667pt;}
.xb8{left:305.186667pt;}
.x53{left:306.146667pt;}
.x96{left:311.906655pt;}
.x9b{left:319.586667pt;}
.x7d{left:321.666667pt;}
.x70{left:326.586667pt;}
.xa7{left:328.546667pt;}
.x94{left:339.426655pt;}
.x74{left:343.586667pt;}
.xc5{left:354.466667pt;}
.x30{left:359.586667pt;}
.x71{left:368.160000pt;}
.x95{left:371.266655pt;}
.x59{left:373.346667pt;}
.xc2{left:378.466667pt;}
.xad{left:379.426655pt;}
.xba{left:381.826667pt;}
.x29{left:382.946667pt;}
.x97{left:386.560000pt;}
.x90{left:387.906667pt;}
.x3{left:397.026655pt;}
.x43{left:399.426655pt;}
.x4f{left:401.666667pt;}
.x75{left:407.746667pt;}
.x25{left:409.506655pt;}
.x84{left:412.226667pt;}
.xc6{left:414.946667pt;}
.xa8{left:420.066667pt;}
.x9d{left:422.306667pt;}
.xbd{left:425.666667pt;}
.xbb{left:429.026667pt;}
.xcb{left:433.506655pt;}
.xc8{left:444.253333pt;}
.x99{left:445.533322pt;}
.x8e{left:449.533322pt;}
.xab{left:453.053333pt;}
.x7e{left:454.013333pt;}
.x24{left:456.733322pt;}
.xc9{left:463.453322pt;}
.x76{left:466.173333pt;}
.x85{left:470.173333pt;}
.x18{left:476.733322pt;}
.xb9{left:480.733333pt;}
.x32{left:482.493333pt;}
.x93{left:486.653333pt;}
.xc4{left:490.333333pt;}
.x98{left:491.453322pt;}
.x55{left:494.013333pt;}
.xc0{left:498.333333pt;}
.x19{left:499.293333pt;}
.x7f{left:510.813333pt;}
.x2a{left:515.933333pt;}
.x77{left:524.413333pt;}
.x40{left:532.893322pt;}
.x5a{left:538.653333pt;}
.xae{left:548.253333pt;}
.x50{left:550.973333pt;}
.x44{left:551.933333pt;}
.xb5{left:555.453322pt;}
.xa3{left:557.373333pt;}
.xac{left:566.333333pt;}
.x91{left:567.453333pt;}
.x9e{left:575.133333pt;}
.x34{left:576.893333pt;}
.xb4{left:582.013322pt;}
.xb0{left:587.453322pt;}
.xaa{left:590.173333pt;}
.xb7{left:603.453322pt;}
.xb2{left:605.533322pt;}
.x9f{left:610.973333pt;}
.xbe{left:614.693333pt;}
.xcc{left:619.493322pt;}
.xa5{left:621.893333pt;}
.x65{left:625.573322pt;}
.xc7{left:627.653333pt;}
.x63{left:634.693322pt;}
.x2c{left:635.653333pt;}
.xb6{left:645.573322pt;}
.xa0{left:649.733333pt;}
.xb3{left:658.213322pt;}
.x15{left:663.653322pt;}
.x20{left:665.573322pt;}
.x14{left:667.173322pt;}
.xf{left:670.373322pt;}
.xe{left:673.733322pt;}
.xc{left:677.093322pt;}
.x1{left:680.453322pt;}
.xca{left:683.493322pt;}
.xb1{left:687.493322pt;}
.x66{left:694.693322pt;}
.xa1{left:725.093333pt;}
.x64{left:728.773322pt;}
}




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