
    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_a996b89bc1356521ff3811bc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.070312;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_8986778cda65cb1d4abd0ef2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.084961;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_7707d1f06c6f0deec323abb3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_505fa237b5539304547b1e2b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.070312;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_f64c6eb1a8bcecd426c60752.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.120605;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_fab99fedeadc3a885761a2b3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0107f765e690e1aa1eb3b37c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.983398;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_938b0704e27d5b8e73fdf4d9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.070312;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_38af514d4b4d5bbd481a4f17.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.130371;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_f277df65a3db74314e38f6bb.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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_23e04f80b50e891d8c1fbd7e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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_53b672c57eb6bb8ad2937fea.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_49e7f49e73affc9d2eab0f82.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.090332;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_b919af6a24b1b86fa24e0b44.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_3cb184d28c1815f870e250ce.woff2')format("woff");}.fff{font-family:fff;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_4a7ea57a50ac4f87e433490c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.854004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_cbe2967ad05fc641910bf497.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.854004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_41d36fe73aeef900b510fdf8.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.084473;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_3e74a168a486a7296b2d41fe.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.084473;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_c2caa4bb75800ce8b1d74d14.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.090332;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:ff15;src:url('chunks/assets/font_78afc04c1b7f1c3c61ade264.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.090332;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:ff16;src:url('chunks/assets/font_c2caa4bb75800ce8b1d74d14.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.090332;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:ff17;src:url('chunks/assets/font_473bffeb97ed64953ef60974.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.090332;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:ff18;src:url('chunks/assets/font_a6a08440feb9c5dbb6b37bc6.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.030273;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:ff19;src:url('chunks/assets/font_7a556d26abb7ee4f970fd33c.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.030273;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:ff1a;src:url('chunks/assets/font_8f7d077caf096dd10574e7b9.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.853516;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:ff1b;src:url('chunks/assets/font_8ac14a1adc4e89bf783b9de1.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.212000;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:ff1c;src:url('chunks/assets/font_5a0a5cc35dd80010c5fd2fd1.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.195000;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:ff1d;src:url('chunks/assets/font_c2caa4bb75800ce8b1d74d14.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.090332;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:ff1e;src:url('chunks/assets/font_85b8da205bff1734850110bb.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v1{vertical-align:-138.240000px;}
.v5{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v4{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls3b{letter-spacing:-5.190000px;}
.ls27{letter-spacing:-3.072000px;}
.ls15{letter-spacing:-1.134000px;}
.ls1e{letter-spacing:-1.026000px;}
.ls18{letter-spacing:-0.828000px;}
.lsd{letter-spacing:-0.720000px;}
.ls3f{letter-spacing:-0.504000px;}
.ls16{letter-spacing:-0.457800px;}
.ls4{letter-spacing:-0.414600px;}
.ls3{letter-spacing:-0.378600px;}
.ls13{letter-spacing:-0.305400px;}
.ls12{letter-spacing:-0.262200px;}
.ls2e{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.152400px;}
.ls26{letter-spacing:-0.148800px;}
.ls6{letter-spacing:-0.109200px;}
.ls1c{letter-spacing:-0.108000px;}
.ls3a{letter-spacing:-0.106800px;}
.ls3c{letter-spacing:-0.092400px;}
.ls3d{letter-spacing:-0.053400px;}
.lsc{letter-spacing:-0.037200px;}
.ls2f{letter-spacing:-0.036000px;}
.ls2{letter-spacing:-0.028200px;}
.ls19{letter-spacing:-0.018000px;}
.ls38{letter-spacing:-0.015600px;}
.ls1{letter-spacing:0.000000px;}
.ls39{letter-spacing:0.018600px;}
.ls35{letter-spacing:0.030600px;}
.ls40{letter-spacing:0.108000px;}
.ls36{letter-spacing:0.129600px;}
.ls8{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.162000px;}
.ls33{letter-spacing:0.180000px;}
.ls31{letter-spacing:0.198000px;}
.ls11{letter-spacing:0.216000px;}
.ls25{letter-spacing:0.238200px;}
.ls10{letter-spacing:0.262080px;}
.ls17{letter-spacing:0.262200px;}
.lsb{letter-spacing:0.288000px;}
.ls20{letter-spacing:0.305280px;}
.ls5{letter-spacing:0.305400px;}
.ls1b{letter-spacing:0.324000px;}
.ls37{letter-spacing:0.360000px;}
.ls3e{letter-spacing:0.442080px;}
.ls2d{letter-spacing:0.485040px;}
.ls21{letter-spacing:1.025280px;}
.ls1d{letter-spacing:8.225280px;}
.ls1f{letter-spacing:12.545280px;}
.ls2b{letter-spacing:21.429984px;}
.ls30{letter-spacing:23.207040px;}
.ls34{letter-spacing:24.588000px;}
.ls24{letter-spacing:27.005040px;}
.ls23{letter-spacing:43.955040px;}
.ls14{letter-spacing:44.405280px;}
.ls32{letter-spacing:48.117024px;}
.ls22{letter-spacing:48.168000px;}
.ls29{letter-spacing:52.569984px;}
.ls28{letter-spacing:52.620960px;}
.lse{letter-spacing:64.002720px;}
.ls7{letter-spacing:64.224000px;}
.ls2c{letter-spacing:68.370960px;}
.ls9{letter-spacing:95.880000px;}
.lsa{letter-spacing:108.144000px;}
.ls2a{letter-spacing:122.370960px;}
.ls0{letter-spacing:658.200000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(228,131,18),0 0.015em rgb(228,131,18),0.015em 0 rgb(228,131,18),0 -0.015em  rgb(228,131,18);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(228,131,18);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1b{word-spacing:-92.391960px;}
.ws19{word-spacing:-66.240000px;}
.ws1e{word-spacing:-65.120544px;}
.ws21{word-spacing:-59.750784px;}
.ws26{word-spacing:-48.848544px;}
.ws1c{word-spacing:-41.981760px;}
.ws11{word-spacing:-36.365760px;}
.ws9{word-spacing:-32.808240px;}
.ws22{word-spacing:-27.206784px;}
.ws1a{word-spacing:-27.174240px;}
.ws2c{word-spacing:-26.639880px;}
.ws20{word-spacing:-24.408000px;}
.ws1{word-spacing:-23.418720px;}
.ws0{word-spacing:-23.390520px;}
.ws6{word-spacing:-23.381520px;}
.ws24{word-spacing:-21.953232px;}
.ws3{word-spacing:-20.304000px;}
.ws5{word-spacing:-20.160000px;}
.ws4{word-spacing:-20.016000px;}
.ws2a{word-spacing:-19.423680px;}
.wse{word-spacing:-18.720120px;}
.ws10{word-spacing:-18.676920px;}
.wsb{word-spacing:-18.414720px;}
.ws7{word-spacing:-18.305520px;}
.ws18{word-spacing:-18.262320px;}
.wsc{word-spacing:-18.152520px;}
.wsd{word-spacing:-18.109320px;}
.wsf{word-spacing:-17.956920px;}
.ws8{word-spacing:-17.694720px;}
.ws12{word-spacing:-17.586720px;}
.ws17{word-spacing:-17.388720px;}
.ws2e{word-spacing:-16.613280px;}
.ws33{word-spacing:-16.559880px;}
.ws2d{word-spacing:-16.506480px;}
.wsa{word-spacing:-16.488000px;}
.ws34{word-spacing:-15.228000px;}
.ws39{word-spacing:-15.012000px;}
.ws14{word-spacing:-14.994000px;}
.ws15{word-spacing:-14.904000px;}
.ws38{word-spacing:-14.508000px;}
.ws2b{word-spacing:-13.446720px;}
.ws32{word-spacing:-13.410720px;}
.ws31{word-spacing:-13.354320px;}
.ws2f{word-spacing:-13.224720px;}
.ws16{word-spacing:-12.528000px;}
.ws13{word-spacing:-12.186000px;}
.ws27{word-spacing:-12.131280px;}
.ws30{word-spacing:-11.609280px;}
.ws28{word-spacing:-10.962000px;}
.ws29{word-spacing:-10.926000px;}
.ws1f{word-spacing:-5.517888px;}
.ws1d{word-spacing:-4.855116px;}
.ws23{word-spacing:-0.898800px;}
.ws2{word-spacing:0.000000px;}
.ws25{word-spacing:1.972680px;}
.ws35{word-spacing:253.638000px;}
.ws37{word-spacing:351.648000px;}
.ws36{word-spacing:354.348000px;}
._5d{margin-left:-29.102256px;}
._5e{margin-left:-26.952480px;}
._5c{margin-left:-23.538816px;}
._15{margin-left:-18.108000px;}
._59{margin-left:-17.030518px;}
._13{margin-left:-15.156000px;}
._5a{margin-left:-13.592446px;}
._58{margin-left:-12.181989px;}
._16{margin-left:-10.932000px;}
._12{margin-left:-9.212472px;}
._5b{margin-left:-7.914261px;}
._14{margin-left:-6.516000px;}
._9{margin-left:-5.034041px;}
._a{margin-left:-3.987523px;}
._f{margin-left:-2.715509px;}
._0{margin-left:-1.179528px;}
._1{width:1.185576px;}
._2{width:2.231304px;}
._7{width:3.253891px;}
._c{width:4.557570px;}
._18{width:5.714430px;}
._19{width:6.988657px;}
._1c{width:8.531175px;}
._1b{width:9.538759px;}
._1d{width:10.850436px;}
._1a{width:12.254400px;}
._17{width:13.679520px;}
._2f{width:14.800171px;}
._e{width:15.812795px;}
._d{width:16.825225px;}
._22{width:20.190673px;}
._23{width:21.198140px;}
._29{width:22.698154px;}
._b{width:24.177666px;}
._33{width:25.622287px;}
._2d{width:26.959812px;}
._2e{width:28.535920px;}
._1f{width:30.271812px;}
._20{width:31.318861px;}
._21{width:32.319898px;}
._3a{width:33.378240px;}
._26{width:34.535520px;}
._3b{width:35.610168px;}
._24{width:37.160441px;}
._25{width:38.327176px;}
._8{width:39.810041px;}
._36{width:41.267454px;}
._2b{width:42.393666px;}
._2c{width:43.700196px;}
._3c{width:44.836968px;}
._50{width:46.727248px;}
._10{width:47.756808px;}
._11{width:49.537272px;}
._3e{width:50.744936px;}
._40{width:52.171736px;}
._3f{width:54.237636px;}
._1e{width:55.707641px;}
._49{width:56.771208px;}
._30{width:57.960066px;}
._4c{width:59.090880px;}
._4d{width:60.684000px;}
._31{width:62.003454px;}
._32{width:63.105620px;}
._39{width:64.453909px;}
._52{width:66.023908px;}
._4f{width:68.479766px;}
._34{width:70.081854px;}
._3d{width:71.737920px;}
._53{width:72.996612px;}
._56{width:78.030720px;}
._57{width:79.052782px;}
._35{width:80.084425px;}
._60{width:81.355200px;}
._47{width:86.046025px;}
._2a{width:87.468480px;}
._4a{width:89.358025px;}
._4b{width:90.656513px;}
._42{width:91.875012px;}
._44{width:96.295051px;}
._37{width:101.943691px;}
._38{width:103.267233px;}
._28{width:105.652866px;}
._43{width:109.561291px;}
._48{width:110.791615px;}
._45{width:111.945732px;}
._27{width:115.046420px;}
._46{width:123.934908px;}
._55{width:137.422682px;}
._41{width:142.668102px;}
._51{width:144.133612px;}
._4e{width:154.777164px;}
._6{width:160.053048px;}
._54{width:192.901976px;}
._61{width:194.900824px;}
._5f{width:197.424480px;}
._64{width:199.484273px;}
._3{width:286.976688px;}
._5{width:351.811080px;}
._6d{width:365.148000px;}
._86{width:377.970000px;}
._74{width:382.206000px;}
._6a{width:395.172000px;}
._8b{width:407.994000px;}
._6b{width:412.230000px;}
._77{width:424.596000px;}
._6f{width:442.254000px;}
._7b{width:454.620000px;}
._62{width:730.655214px;}
._4{width:912.737280px;}
._89{width:1011.738000px;}
._72{width:1044.714000px;}
._88{width:1054.344000px;}
._7d{width:1081.824000px;}
._8a{width:1109.802000px;}
._69{width:1112.862000px;}
._87{width:1122.006000px;}
._76{width:1149.972000px;}
._83{width:1181.982000px;}
._85{width:1186.860000px;}
._81{width:1188.948000px;}
._6e{width:1190.730000px;}
._82{width:1206.714000px;}
._70{width:1218.216000px;}
._79{width:1227.840000px;}
._7a{width:1255.326000px;}
._6c{width:1316.604000px;}
._63{width:1347.473280px;}
._78{width:1353.714000px;}
._80{width:1402.950000px;}
._7f{width:1439.184000px;}
._71{width:1529.094000px;}
._7e{width:1563.654000px;}
._7c{width:1566.204000px;}
._68{width:1585.902000px;}
._73{width:1604.208000px;}
._75{width:1623.012000px;}
._65{width:1640.406000px;}
._84{width:1650.990000px;}
._66{width:1841.016000px;}
._67{width:1932.924000px;}
.fca{color:rgb(228,131,18);}
.fc8{color:rgb(99,112,82);}
.fc6{color:rgb(76,148,216);}
.fc5{color:rgb(70,120,134);}
.fc4{color:rgb(112,173,71);}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fcb{color:rgb(255,255,255);}
.fc9{color:rgb(64,64,64);}
.fc7{color:rgb(38,38,38);}
.fc1{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs23{font-size:5.760000px;}
.fs2a{font-size:6.000000px;}
.fs25{font-size:36.000000px;}
.fs24{font-size:41.760000px;}
.fs27{font-size:48.000000px;}
.fs20{font-size:48.240000px;}
.fs21{font-size:48.384000px;}
.fs5{font-size:54.000000px;}
.fs22{font-size:54.144000px;}
.fs4{font-size:59.760000px;}
.fs1f{font-size:59.904000px;}
.fs26{font-size:60.000000px;}
.fs29{font-size:66.000000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs10{font-size:77.760000px;}
.fs28{font-size:78.000000px;}
.fs1{font-size:84.240000px;}
.fs13{font-size:90.000000px;}
.fs6{font-size:95.760000px;}
.fs14{font-size:95.904000px;}
.fs18{font-size:102.240000px;}
.fs19{font-size:102.384000px;}
.fsc{font-size:108.000000px;}
.fsd{font-size:108.144000px;}
.fse{font-size:113.760000px;}
.fsf{font-size:113.904000px;}
.fsa{font-size:120.240000px;}
.fsb{font-size:120.384000px;}
.fs1b{font-size:126.000000px;}
.fs1a{font-size:126.144000px;}
.fs2{font-size:131.760000px;}
.fs8{font-size:144.000000px;}
.fs11{font-size:185.760000px;}
.fs12{font-size:185.904000px;}
.fs16{font-size:216.000000px;}
.fs1e{font-size:216.144000px;}
.fs17{font-size:257.760000px;}
.fs1d{font-size:264.240000px;}
.fs1c{font-size:264.384000px;}
.fs15{font-size:288.000000px;}
.fs9{font-size:288.144000px;}
.fs7{font-size:480.384000px;}
.y148{bottom:-18.360000px;}
.y0{bottom:0.000000px;}
.y66e{bottom:1.800000px;}
.y4d6{bottom:2.880000px;}
.y4d8{bottom:3.060000px;}
.y3a6{bottom:3.240000px;}
.y3ac{bottom:3.285000px;}
.y571{bottom:3.420000px;}
.y577{bottom:3.600000px;}
.y366{bottom:6.840000px;}
.y13d{bottom:7.425000px;}
.y585{bottom:9.014700px;}
.y192{bottom:10.614000px;}
.y18c{bottom:10.620000px;}
.y194{bottom:10.650000px;}
.y19b{bottom:10.800000px;}
.y1a6{bottom:10.845000px;}
.y4c7{bottom:11.700000px;}
.y45b{bottom:11.880000px;}
.y190{bottom:12.240000px;}
.y40a{bottom:12.960000px;}
.y411{bottom:12.990000px;}
.y48e{bottom:13.005000px;}
.y410{bottom:13.140000px;}
.y6a9{bottom:13.185000px;}
.y45e{bottom:14.400000px;}
.y147{bottom:15.840000px;}
.y20c{bottom:18.360000px;}
.y4da{bottom:18.405000px;}
.y135{bottom:18.540000px;}
.y3a4{bottom:19.080000px;}
.y3d7{bottom:19.980000px;}
.y3f5{bottom:20.010000px;}
.y3d9{bottom:20.160000px;}
.y3a8{bottom:20.340000px;}
.y3bb{bottom:20.385000px;}
.y3a5{bottom:20.520000px;}
.y513{bottom:20.550000px;}
.y3ab{bottom:20.565000px;}
.y57c{bottom:22.320000px;}
.y582{bottom:22.494000px;}
.y570{bottom:22.500000px;}
.y575{bottom:22.545000px;}
.y13c{bottom:23.985000px;}
.y680{bottom:26.100000px;}
.y365{bottom:29.385000px;}
.y587{bottom:30.501000px;}
.y6e2{bottom:30.990000px;}
.y4b6{bottom:31.140000px;}
.y1c6{bottom:33.840000px;}
.y6e3{bottom:33.870000px;}
.y1b6{bottom:34.020000px;}
.y1bb{bottom:34.065000px;}
.y20b{bottom:34.920000px;}
.y140{bottom:35.100000px;}
.y18f{bottom:35.454000px;}
.y1aa{bottom:35.460000px;}
.y36a{bottom:36.000000px;}
.y3ee{bottom:37.620000px;}
.y45a{bottom:37.800000px;}
.y468{bottom:41.394000px;}
.y462{bottom:41.400000px;}
.y574{bottom:41.445000px;}
.y579{bottom:41.580000px;}
.y67f{bottom:41.760000px;}
.y5c9{bottom:47.178000px;}
.y4e6{bottom:49.500000px;}
.y602{bottom:50.928000px;}
.y4b0{bottom:54.360000px;}
.y4ca{bottom:54.900000px;}
.y4cd{bottom:54.930000px;}
.y4cf{bottom:55.080000px;}
.y1b7{bottom:57.240000px;}
.y1d6{bottom:57.285000px;}
.y1d8{bottom:57.420000px;}
.y370{bottom:57.600000px;}
.y4c3{bottom:57.636000px;}
.y76{bottom:57.780000px;}
.y369{bottom:58.500000px;}
.y18e{bottom:58.674000px;}
.y1a9{bottom:58.680000px;}
.y1a3{bottom:59.625000px;}
.y57e{bottom:60.300000px;}
.y57b{bottom:60.330000px;}
.y581{bottom:60.474000px;}
.y576{bottom:60.480000px;}
.y573{bottom:60.525000px;}
.y5c8{bottom:64.053000px;}
.y601{bottom:67.803000px;}
.y504{bottom:77.760000px;}
.y36f{bottom:77.796000px;}
.y75{bottom:79.776000px;}
.y1d7{bottom:80.640000px;}
.y5c7{bottom:80.928000px;}
.y1a2{bottom:82.845000px;}
.y5c6{bottom:97.803000px;}
.y55d{bottom:97.920000px;}
.y495{bottom:97.956000px;}
.y688{bottom:100.296000px;}
.y53e{bottom:100.620000px;}
.y449{bottom:100.656000px;}
.y600{bottom:101.553000px;}
.y532{bottom:102.600000px;}
.y41c{bottom:102.636000px;}
.y539{bottom:102.780000px;}
.y56{bottom:102.816000px;}
.ye9{bottom:102.996000px;}
.y189{bottom:105.156000px;}
.y544{bottom:105.300000px;}
.y469{bottom:105.336000px;}
.y515{bottom:105.660000px;}
.y3b1{bottom:105.696000px;}
.y133{bottom:105.876000px;}
.y56a{bottom:106.020000px;}
.y4c0{bottom:106.056000px;}
.y1c1{bottom:107.496000px;}
.y28a{bottom:107.676000px;}
.y216{bottom:108.576000px;}
.y66f{bottom:110.016000px;}
.y137{bottom:110.916000px;}
.y53d{bottom:113.400000px;}
.y448{bottom:113.436000px;}
.y4d4{bottom:113.616000px;}
.y14a{bottom:113.796000px;}
.y5c5{bottom:114.678000px;}
.y51c{bottom:115.200000px;}
.y14c{bottom:115.236000px;}
.y1ee{bottom:115.776000px;}
.y1db{bottom:116.136000px;}
.y531{bottom:116.280000px;}
.y41b{bottom:116.316000px;}
.y12c{bottom:116.496000px;}
.y2c{bottom:117.216000px;}
.y50c{bottom:117.900000px;}
.y38c{bottom:117.936000px;}
.y18d{bottom:118.116000px;}
.y5ff{bottom:118.428000px;}
.y543{bottom:118.620000px;}
.y463{bottom:118.656000px;}
.y4f7{bottom:119.916000px;}
.y678{bottom:120.816000px;}
.y514{bottom:123.300000px;}
.y17d{bottom:123.336000px;}
.y55{bottom:123.516000px;}
.y167{bottom:125.496000px;}
.y4d3{bottom:126.396000px;}
.y66d{bottom:127.803000px;}
.y687{bottom:127.836000px;}
.y523{bottom:128.520000px;}
.y3e4{bottom:128.556000px;}
.y289{bottom:129.636000px;}
.y67a{bottom:130.140000px;}
.y68c{bottom:130.170000px;}
.y583{bottom:130.176000px;}
.y681{bottom:130.185000px;}
.y212{bottom:130.356000px;}
.y349{bottom:131.040000px;}
.ybb{bottom:131.076000px;}
.y538{bottom:131.400000px;}
.y432{bottom:131.436000px;}
.y5c4{bottom:131.553000px;}
.y199{bottom:131.580000px;}
.ye8{bottom:131.616000px;}
.y52b{bottom:132.120000px;}
.y400{bottom:132.156000px;}
.y227{bottom:133.236000px;}
.y188{bottom:133.776000px;}
.y2f0{bottom:133.920000px;}
.y132{bottom:134.316000px;}
.y233{bottom:134.856000px;}
.y639{bottom:135.303000px;}
.y314{bottom:135.360000px;}
.y1c0{bottom:136.116000px;}
.y97{bottom:136.476000px;}
.y215{bottom:137.196000px;}
.y2b{bottom:137.916000px;}
.y6c7{bottom:138.276000px;}
.y55c{bottom:138.420000px;}
.y494{bottom:138.456000px;}
.y275{bottom:139.176000px;}
.y12b{bottom:139.356000px;}
.y318{bottom:140.400000px;}
.y322{bottom:140.940000px;}
.y4a5{bottom:140.976000px;}
.y149{bottom:142.236000px;}
.y260{bottom:143.496000px;}
.y14b{bottom:143.856000px;}
.y32b{bottom:144.180000px;}
.y54{bottom:144.216000px;}
.y1da{bottom:144.576000px;}
.y66c{bottom:144.678000px;}
.y10c{bottom:144.936000px;}
.y1ed{bottom:145.836000px;}
.y580{bottom:146.376000px;}
.y569{bottom:146.520000px;}
.y4bf{bottom:146.556000px;}
.y348{bottom:146.700000px;}
.y5c3{bottom:148.428000px;}
.y51b{bottom:149.580000px;}
.y3cc{bottom:149.616000px;}
.y307{bottom:150.480000px;}
.y364{bottom:150.885000px;}
.y211{bottom:151.230000px;}
.y288{bottom:151.590000px;}
.y17c{bottom:151.770000px;}
.y2de{bottom:152.100000px;}
.y5fe{bottom:152.178000px;}
.y50b{bottom:152.280000px;}
.y38b{bottom:152.310000px;}
.y166{bottom:153.930000px;}
.y198{bottom:154.980000px;}
.y226{bottom:155.190000px;}
.y686{bottom:155.370000px;}
.y316{bottom:155.700000px;}
.y522{bottom:157.320000px;}
.y2b9{bottom:157.350000px;}
.y473{bottom:158.250000px;}
.y479{bottom:158.265000px;}
.y512{bottom:158.580000px;}
.y2a{bottom:158.610000px;}
.yba{bottom:159.510000px;}
.y464{bottom:159.654000px;}
.y45c{bottom:159.660000px;}
.y474{bottom:159.690000px;}
.y47a{bottom:159.705000px;}
.ye7{bottom:160.050000px;}
.y4f6{bottom:160.410000px;}
.y558{bottom:160.740000px;}
.y20f{bottom:160.950000px;}
.y274{bottom:161.130000px;}
.y66b{bottom:161.553000px;}
.y187{bottom:162.210000px;}
.y131{bottom:162.750000px;}
.y2ef{bottom:163.080000px;}
.y232{bottom:163.290000px;}
.y1bf{bottom:164.550000px;}
.y53{bottom:164.910000px;}
.y5c2{bottom:165.303000px;}
.y214{bottom:165.630000px;}
.y191{bottom:166.170000px;}
.y52a{bottom:166.500000px;}
.y3ff{bottom:166.530000px;}
.y6c6{bottom:166.710000px;}
.y12a{bottom:167.790000px;}
.y309{bottom:168.015000px;}
.y5fd{bottom:169.053000px;}
.y355{bottom:169.200000px;}
.yc5{bottom:170.670000px;}
.y431{bottom:171.750000px;}
.y210{bottom:171.930000px;}
.y47f{bottom:172.830000px;}
.y1d9{bottom:173.010000px;}
.y10b{bottom:173.370000px;}
.y25f{bottom:173.550000px;}
.y1ec{bottom:174.270000px;}
.y467{bottom:176.250000px;}
.y6ae{bottom:176.790000px;}
.y225{bottom:177.150000px;}
.y66a{bottom:178.428000px;}
.y493{bottom:178.950000px;}
.y2dd{bottom:179.100000px;}
.y29{bottom:179.310000px;}
.y4e5{bottom:179.490000px;}
.y17b{bottom:180.390000px;}
.y5c1{bottom:182.178000px;}
.y165{bottom:182.370000px;}
.y32a{bottom:182.520000px;}
.y685{bottom:182.910000px;}
.y273{bottom:183.090000px;}
.y3cb{bottom:183.810000px;}
.y2fa{bottom:185.400000px;}
.y52{bottom:185.610000px;}
.y5fc{bottom:185.928000px;}
.y38a{bottom:186.150000px;}
.y321{bottom:186.480000px;}
.y145{bottom:187.050000px;}
.yb9{bottom:187.950000px;}
.ye6{bottom:188.490000px;}
.y2bd{bottom:188.925000px;}
.y1d2{bottom:189.210000px;}
.y677{bottom:189.390000px;}
.y2b8{bottom:189.930000px;}
.y6ad{bottom:190.110000px;}
.y18b{bottom:190.290000px;}
.y186{bottom:190.650000px;}
.y130{bottom:191.190000px;}
.y231{bottom:191.730000px;}
.y2ee{bottom:192.270000px;}
.y347{bottom:192.450000px;}
.y1be{bottom:192.990000px;}
.y96{bottom:193.350000px;}
.y447{bottom:193.710000px;}
.y3b0{bottom:193.890000px;}
.y209{bottom:194.070000px;}
.y4a4{bottom:194.430000px;}
.y159{bottom:194.610000px;}
.y669{bottom:195.303000px;}
.y287{bottom:195.690000px;}
.y129{bottom:196.230000px;}
.y6c5{bottom:196.410000px;}
.y360{bottom:196.770000px;}
.y1dd{bottom:198.585000px;}
.y5c0{bottom:199.053000px;}
.y224{bottom:199.110000px;}
.yc4{bottom:199.290000px;}
.y28{bottom:200.010000px;}
.y4d2{bottom:200.370000px;}
.y3fe{bottom:200.910000px;}
.y557{bottom:201.270000px;}
.y10a{bottom:201.810000px;}
.y25e{bottom:201.990000px;}
.y1eb{bottom:202.710000px;}
.y638{bottom:202.803000px;}
.y2d1{bottom:203.610000px;}
.y313{bottom:204.330000px;}
.y272{bottom:205.050000px;}
.y466{bottom:205.410000px;}
.y51{bottom:206.310000px;}
.y17a{bottom:208.830000px;}
.y6da{bottom:209.730000px;}
.y684{bottom:210.450000px;}
.y164{bottom:210.810000px;}
.y354{bottom:211.890000px;}
.y41a{bottom:212.070000px;}
.y430{bottom:212.250000px;}
.y320{bottom:212.430000px;}
.y47e{bottom:213.150000px;}
.y3e3{bottom:214.770000px;}
.y144{bottom:215.490000px;}
.y5bf{bottom:215.928000px;}
.yb8{bottom:216.570000px;}
.ye5{bottom:216.930000px;}
.y286{bottom:217.650000px;}
.y3ca{bottom:218.190000px;}
.y389{bottom:218.550000px;}
.y185{bottom:219.090000px;}
.y492{bottom:219.270000px;}
.y2c6{bottom:219.450000px;}
.y12f{bottom:219.630000px;}
.y5fb{bottom:219.678000px;}
.y230{bottom:220.350000px;}
.y27{bottom:220.710000px;}
.y223{bottom:221.070000px;}
.y1bd{bottom:221.430000px;}
.y95{bottom:221.790000px;}
.y2b7{bottom:222.330000px;}
.y208{bottom:222.510000px;}
.y57f{bottom:223.050000px;}
.y633{bottom:223.620000px;}
.y676{bottom:223.770000px;}
.y128{bottom:224.670000px;}
.y6c4{bottom:224.850000px;}
.y50{bottom:227.010000px;}
.y2dc{bottom:227.370000px;}
.y4be{bottom:227.550000px;}
.yc3{bottom:227.730000px;}
.y24d{bottom:228.090000px;}
.y697{bottom:228.450000px;}
.y668{bottom:229.053000px;}
.y3af{bottom:229.170000px;}
.y109{bottom:230.250000px;}
.y25d{bottom:230.610000px;}
.y1ea{bottom:231.150000px;}
.y18a{bottom:232.770000px;}
.y63b{bottom:232.803000px;}
.y2d0{bottom:233.490000px;}
.y446{bottom:234.210000px;}
.y465{bottom:234.750000px;}
.y3fd{bottom:235.290000px;}
.y169{bottom:235.830000px;}
.y5fa{bottom:236.553000px;}
.y179{bottom:237.270000px;}
.y308{bottom:237.630000px;}
.y346{bottom:238.170000px;}
.y163{bottom:239.250000px;}
.y285{bottom:239.610000px;}
.y6e9{bottom:240.330000px;}
.y632{bottom:240.495000px;}
.y35f{bottom:240.870000px;}
.y4d1{bottom:240.915000px;}
.y26{bottom:241.410000px;}
.y4f5{bottom:241.455000px;}
.y317{bottom:241.590000px;}
.y556{bottom:241.770000px;}
.y4e4{bottom:242.355000px;}
.y222{bottom:243.030000px;}
.y3e2{bottom:243.570000px;}
.y143{bottom:243.930000px;}
.yb7{bottom:245.010000px;}
.ye4{bottom:245.370000px;}
.y1d3{bottom:245.925000px;}
.y667{bottom:245.928000px;}
.y74{bottom:247.530000px;}
.y4f{bottom:247.710000px;}
.y4a3{bottom:247.890000px;}
.y12e{bottom:248.070000px;}
.y6ac{bottom:248.610000px;}
.y2bc{bottom:248.865000px;}
.y271{bottom:248.970000px;}
.y5be{bottom:249.678000px;}
.y312{bottom:249.690000px;}
.y1bc{bottom:249.870000px;}
.y94{bottom:250.230000px;}
.y2ed{bottom:250.590000px;}
.y207{bottom:250.950000px;}
.y388{bottom:251.130000px;}
.y47d{bottom:251.490000px;}
.y3c9{bottom:252.570000px;}
.y42f{bottom:252.750000px;}
.y127{bottom:253.110000px;}
.y6c3{bottom:253.290000px;}
.y637{bottom:253.428000px;}
.y345{bottom:253.830000px;}
.y353{bottom:254.370000px;}
.y2b6{bottom:254.910000px;}
.y306{bottom:255.270000px;}
.y696{bottom:255.990000px;}
.yc2{bottom:256.170000px;}
.y24c{bottom:256.530000px;}
.y4d0{bottom:257.295000px;}
.y631{bottom:257.370000px;}
.y491{bottom:257.610000px;}
.y31f{bottom:257.970000px;}
.y675{bottom:258.150000px;}
.y108{bottom:258.690000px;}
.y329{bottom:258.870000px;}
.y25c{bottom:259.050000px;}
.y1e9{bottom:259.590000px;}
.y2c5{bottom:260.850000px;}
.y284{bottom:261.570000px;}
.y25{bottom:262.110000px;}
.y666{bottom:262.803000px;}
.y2f2{bottom:263.910000px;}
.y3ae{bottom:264.450000px;}
.y221{bottom:264.990000px;}
.y178{bottom:265.710000px;}
.y1b3{bottom:266.070000px;}
.y63a{bottom:266.553000px;}
.y162{bottom:267.690000px;}
.y4bd{bottom:267.870000px;}
.y4e{bottom:268.410000px;}
.y3fc{bottom:269.490000px;}
.y5f9{bottom:270.303000px;}
.y270{bottom:270.930000px;}
.y490{bottom:271.110000px;}
.y142{bottom:272.370000px;}
.yb6{bottom:273.450000px;}
.ye3{bottom:273.810000px;}
.y4e3{bottom:274.215000px;}
.y630{bottom:274.245000px;}
.y445{bottom:274.710000px;}
.y73{bottom:275.610000px;}
.y2db{bottom:275.790000px;}
.y184{bottom:275.970000px;}
.y12d{bottom:276.690000px;}
.y6ab{bottom:277.770000px;}
.y22f{bottom:278.310000px;}
.y93{bottom:278.670000px;}
.y206{bottom:279.390000px;}
.y665{bottom:279.678000px;}
.y2ec{bottom:279.750000px;}
.y555{bottom:280.110000px;}
.y6e8{bottom:280.830000px;}
.y126{bottom:281.550000px;}
.y6c2{bottom:281.730000px;}
.y4f4{bottom:281.775000px;}
.y24{bottom:282.810000px;}
.y1d5{bottom:283.170000px;}
.y5bd{bottom:283.428000px;}
.y283{bottom:283.530000px;}
.yc1{bottom:284.610000px;}
.y24b{bottom:284.970000px;}
.y2cf{bottom:286.770000px;}
.y220{bottom:286.950000px;}
.y107{bottom:287.130000px;}
.y5f8{bottom:287.178000px;}
.y2b5{bottom:287.310000px;}
.y25b{bottom:287.490000px;}
.y305{bottom:287.850000px;}
.y1e8{bottom:288.030000px;}
.y4d{bottom:289.110000px;}
.y62f{bottom:291.120000px;}
.y134{bottom:291.990000px;}
.y674{bottom:292.530000px;}
.y26f{bottom:293.070000px;}
.y42e{bottom:293.250000px;}
.y550{bottom:293.430000px;}
.y1b4{bottom:293.985000px;}
.y177{bottom:294.150000px;}
.y683{bottom:295.050000px;}
.y311{bottom:295.230000px;}
.y6d9{bottom:295.770000px;}
.y161{bottom:296.310000px;}
.y664{bottom:296.553000px;}
.y352{bottom:296.850000px;}
.y328{bottom:297.030000px;}
.y4f3{bottom:298.335000px;}
.y35e{bottom:299.010000px;}
.y344{bottom:299.370000px;}
.y3ad{bottom:299.550000px;}
.y57d{bottom:299.775000px;}
.y48f{bottom:300.270000px;}
.y5bc{bottom:300.303000px;}
.y141{bottom:300.810000px;}
.y3e1{bottom:301.170000px;}
.yb5{bottom:301.890000px;}
.ye2{bottom:302.250000px;}
.y23{bottom:303.510000px;}
.y72{bottom:303.870000px;}
.y5f7{bottom:304.053000px;}
.y183{bottom:304.410000px;}
.y31e{bottom:305.310000px;}
.y282{bottom:305.490000px;}
.y4e2{bottom:306.075000px;}
.y6aa{bottom:306.930000px;}
.y92{bottom:307.110000px;}
.y205{bottom:307.830000px;}
.y62e{bottom:307.995000px;}
.y4bc{bottom:308.370000px;}
.y21f{bottom:308.910000px;}
.y351{bottom:309.450000px;}
.y4ce{bottom:309.675000px;}
.y4c{bottom:309.810000px;}
.y125{bottom:309.990000px;}
.y6c1{bottom:310.170000px;}
.yc0{bottom:313.050000px;}
.y35d{bottom:313.230000px;}
.y1ba{bottom:313.410000px;}
.y2cb{bottom:314.310000px;}
.y2f9{bottom:314.670000px;}
.y26e{bottom:315.030000px;}
.y444{bottom:315.210000px;}
.y106{bottom:315.570000px;}
.y25a{bottom:315.930000px;}
.y387{bottom:316.110000px;}
.y1e7{bottom:316.470000px;}
.y146{bottom:316.830000px;}
.y5bb{bottom:317.178000px;}
.y1c4{bottom:317.925000px;}
.y2ce{bottom:319.170000px;}
.y2b4{bottom:319.710000px;}
.y63f{bottom:320.928000px;}
.y3c8{bottom:321.330000px;}
.y419{bottom:321.690000px;}
.y176{bottom:322.590000px;}
.y22{bottom:324.210000px;}
.y160{bottom:324.750000px;}
.y62d{bottom:324.870000px;}
.y673{bottom:326.910000px;}
.y281{bottom:327.450000px;}
.y4f2{bottom:327.495000px;}
.y331{bottom:327.630000px;}
.y48d{bottom:329.430000px;}
.y3e0{bottom:329.790000px;}
.y663{bottom:330.303000px;}
.yb4{bottom:330.330000px;}
.y4b{bottom:330.510000px;}
.ye1{bottom:330.690000px;}
.y21e{bottom:331.050000px;}
.y71{bottom:332.130000px;}
.y13b{bottom:332.670000px;}
.y182{bottom:332.850000px;}
.y42d{bottom:333.570000px;}
.y5ba{bottom:334.053000px;}
.y3aa{bottom:334.830000px;}
.y327{bottom:335.190000px;}
.y91{bottom:335.550000px;}
.y6a8{bottom:336.090000px;}
.y2bb{bottom:336.135000px;}
.y204{bottom:336.270000px;}
.y304{bottom:336.990000px;}
.y26d{bottom:337.035000px;}
.y4e1{bottom:337.755000px;}
.y5f6{bottom:337.803000px;}
.y337{bottom:338.070000px;}
.y529{bottom:338.250000px;}
.y3fb{bottom:338.295000px;}
.y124{bottom:338.475000px;}
.y158{bottom:338.655000px;}
.y6d8{bottom:338.835000px;}
.y6c0{bottom:339.735000px;}
.y310{bottom:340.770000px;}
.ybf{bottom:341.535000px;}
.y62c{bottom:341.745000px;}
.y24a{bottom:341.895000px;}
.y2c4{bottom:342.930000px;}
.y682{bottom:343.155000px;}
.y105{bottom:344.055000px;}
.y695{bottom:344.235000px;}
.y259{bottom:344.415000px;}
.y343{bottom:345.090000px;}
.y1e6{bottom:345.135000px;}
.y541{bottom:345.630000px;}
.y21{bottom:345.675000px;}
.y2f8{bottom:346.350000px;}
.y662{bottom:347.178000px;}
.y22e{bottom:348.195000px;}
.y2fb{bottom:348.375000px;}
.y50a{bottom:348.510000px;}
.y386{bottom:348.555000px;}
.y568{bottom:348.870000px;}
.y4bb{bottom:348.915000px;}
.y280{bottom:349.455000px;}
.y5b9{bottom:350.928000px;}
.y554{bottom:351.030000px;}
.y4a{bottom:351.255000px;}
.y47c{bottom:351.795000px;}
.y350{bottom:351.975000px;}
.y2b3{bottom:352.335000px;}
.y31d{bottom:352.875000px;}
.y21d{bottom:353.055000px;}
.y15f{bottom:353.235000px;}
.y1d4{bottom:353.775000px;}
.y562{bottom:354.630000px;}
.y4a2{bottom:354.675000px;}
.y5f5{bottom:354.678000px;}
.y51a{bottom:355.530000px;}
.y3c7{bottom:355.575000px;}
.y368{bottom:356.250000px;}
.y175{bottom:356.655000px;}
.y35c{bottom:357.375000px;}
.y521{bottom:358.590000px;}
.y62b{bottom:358.620000px;}
.y3df{bottom:358.635000px;}
.yb3{bottom:358.815000px;}
.y26c{bottom:358.995000px;}
.ye0{bottom:359.175000px;}
.y70{bottom:360.255000px;}
.y1b9{bottom:360.795000px;}
.y672{bottom:361.155000px;}
.y181{bottom:361.335000px;}
.y6e7{bottom:361.875000px;}
.y418{bottom:362.055000px;}
.y530{bottom:362.190000px;}
.y303{bottom:363.675000px;}
.y90{bottom:364.035000px;}
.y661{bottom:364.053000px;}
.y203{bottom:364.755000px;}
.y6a7{bottom:365.475000px;}
.y330{bottom:365.835000px;}
.y2ca{bottom:366.915000px;}
.y123{bottom:367.095000px;}
.y336{bottom:367.275000px;}
.y5b8{bottom:367.803000px;}
.y6bf{bottom:368.175000px;}
.y694{bottom:368.355000px;}
.y2d5{bottom:369.435000px;}
.y4e0{bottom:369.615000px;}
.y20{bottom:369.795000px;}
.ybe{bottom:369.975000px;}
.y511{bottom:370.110000px;}
.y3a9{bottom:370.155000px;}
.y249{bottom:370.335000px;}
.y27f{bottom:371.415000px;}
.y5f4{bottom:371.553000px;}
.y49{bottom:371.955000px;}
.y2da{bottom:372.495000px;}
.y528{bottom:372.630000px;}
.y104{bottom:372.675000px;}
.y258{bottom:372.855000px;}
.y326{bottom:373.395000px;}
.y1e5{bottom:373.575000px;}
.y537{bottom:374.070000px;}
.y42c{bottom:374.115000px;}
.y21c{bottom:375.015000px;}
.y62a{bottom:375.495000px;}
.y57a{bottom:376.455000px;}
.y22d{bottom:376.815000px;}
.y2f7{bottom:378.075000px;}
.y4cc{bottom:379.515000px;}
.y553{bottom:380.190000px;}
.y660{bottom:380.928000px;}
.y26b{bottom:380.955000px;}
.y509{bottom:381.090000px;}
.y2c3{bottom:381.135000px;}
.y15e{bottom:381.675000px;}
.y6d7{bottom:381.855000px;}
.y5b7{bottom:384.678000px;}
.y2b2{bottom:384.735000px;}
.y30f{bottom:386.175000px;}
.y520{bottom:387.390000px;}
.y3de{bottom:387.435000px;}
.ydf{bottom:387.795000px;}
.y55b{bottom:387.930000px;}
.y48c{bottom:387.975000px;}
.yb2{bottom:388.335000px;}
.y5f3{bottom:388.428000px;}
.y6f{bottom:388.515000px;}
.y567{bottom:389.370000px;}
.y4ba{bottom:389.415000px;}
.y519{bottom:389.910000px;}
.y3c6{bottom:389.955000px;}
.y33a{bottom:390.495000px;}
.y342{bottom:390.855000px;}
.y180{bottom:391.035000px;}
.y693{bottom:392.295000px;}
.y629{bottom:392.370000px;}
.y48{bottom:392.655000px;}
.y202{bottom:393.375000px;}
.y1f{bottom:393.915000px;}
.y34f{bottom:394.455000px;}
.y6a6{bottom:394.635000px;}
.y122{bottom:395.535000px;}
.y53c{bottom:396.030000px;}
.y443{bottom:396.075000px;}
.y2eb{bottom:396.435000px;}
.y6be{bottom:396.615000px;}
.y21b{bottom:396.975000px;}
.y65f{bottom:397.803000px;}
.ybd{bottom:398.415000px;}
.y248{bottom:398.775000px;}
.y561{bottom:399.990000px;}
.y4a1{bottom:400.035000px;}
.y31c{bottom:400.395000px;}
.y103{bottom:401.115000px;}
.y257{bottom:401.295000px;}
.y27e{bottom:401.475000px;}
.y5b6{bottom:401.553000px;}
.y2c7{bottom:401.655000px;}
.y2cd{bottom:401.835000px;}
.y6e6{bottom:402.375000px;}
.y52f{bottom:402.510000px;}
.y417{bottom:402.555000px;}
.y536{bottom:402.690000px;}
.y42b{bottom:402.735000px;}
.y26a{bottom:402.915000px;}
.y1e4{bottom:403.095000px;}
.y542{bottom:403.230000px;}
.y461{bottom:403.275000px;}
.y5f2{bottom:405.303000px;}
.y510{bottom:405.390000px;}
.y335{bottom:405.435000px;}
.y22c{bottom:406.335000px;}
.y527{bottom:406.830000px;}
.y3fa{bottom:406.875000px;}
.y1b8{bottom:408.135000px;}
.y628{bottom:409.245000px;}
.y552{bottom:409.530000px;}
.y2f6{bottom:409.755000px;}
.y15d{bottom:410.115000px;}
.y47b{bottom:410.295000px;}
.y4f1{bottom:410.655000px;}
.y325{bottom:411.555000px;}
.y302{bottom:412.815000px;}
.y47{bottom:413.175000px;}
.y560{bottom:413.310000px;}
.y4a0{bottom:413.355000px;}
.y508{bottom:413.490000px;}
.y385{bottom:413.535000px;}
.y35b{bottom:415.515000px;}
.yde{bottom:416.235000px;}
.y692{bottom:416.415000px;}
.y6e{bottom:416.775000px;}
.y48b{bottom:417.135000px;}
.y2b1{bottom:417.315000px;}
.y32f{bottom:417.990000px;}
.y1e{bottom:418.215000px;}
.y5b5{bottom:418.428000px;}
.y21a{bottom:418.935000px;}
.y2c2{bottom:419.295000px;}
.y2d9{bottom:420.915000px;}
.y8f{bottom:421.095000px;}
.y201{bottom:421.815000px;}
.y36c{bottom:422.175000px;}
.y5f1{bottom:422.178000px;}
.yb1{bottom:422.355000px;}
.y2d4{bottom:422.895000px;}
.y6a5{bottom:423.795000px;}
.y121{bottom:423.975000px;}
.y3c5{bottom:424.335000px;}
.y269{bottom:424.875000px;}
.y6bd{bottom:425.235000px;}
.y2ea{bottom:425.595000px;}
.y627{bottom:426.120000px;}
.ybc{bottom:426.855000px;}
.y247{bottom:427.215000px;}
.y102{bottom:429.555000px;}
.y256{bottom:429.735000px;}
.y27d{bottom:429.915000px;}
.y65e{bottom:431.553000px;}
.y30e{bottom:431.715000px;}
.y46{bottom:432.075000px;}
.y460{bottom:432.615000px;}
.y4df{bottom:433.185000px;}
.y22b{bottom:434.955000px;}
.y5b4{bottom:435.303000px;}
.y501{bottom:435.885000px;}
.y1e3{bottom:436.035000px;}
.y341{bottom:436.395000px;}
.y442{bottom:436.575000px;}
.y34e{bottom:436.935000px;}
.y2f5{bottom:438.375000px;}
.y551{bottom:438.735000px;}
.y5f0{bottom:439.053000px;}
.y301{bottom:439.455000px;}
.y3f9{bottom:439.815000px;}
.y691{bottom:440.355000px;}
.y3a7{bottom:440.715000px;}
.y219{bottom:440.895000px;}
.y1d{bottom:442.335000px;}
.y49f{bottom:442.515000px;}
.y6e5{bottom:442.695000px;}
.y626{bottom:442.995000px;}
.y42a{bottom:443.055000px;}
.y334{bottom:443.595000px;}
.y339{bottom:443.775000px;}
.y15c{bottom:444.135000px;}
.ydd{bottom:444.675000px;}
.y6d{bottom:444.855000px;}
.y384{bottom:445.935000px;}
.y48a{bottom:446.295000px;}
.y268{bottom:446.835000px;}
.y65d{bottom:448.428000px;}
.y4cb{bottom:449.205000px;}
.y8e{bottom:449.535000px;}
.y2b0{bottom:449.715000px;}
.y200{bottom:450.255000px;}
.y45{bottom:451.155000px;}
.y4f0{bottom:451.185000px;}
.y340{bottom:452.055000px;}
.y5b3{bottom:452.178000px;}
.y120{bottom:452.415000px;}
.y578{bottom:452.985000px;}
.y6a4{bottom:453.135000px;}
.y3f8{bottom:453.315000px;}
.y136{bottom:453.495000px;}
.y416{bottom:454.215000px;}
.y2e9{bottom:454.755000px;}
.y315{bottom:454.935000px;}
.y2c1{bottom:455.295000px;}
.yb0{bottom:455.475000px;}
.y246{bottom:455.835000px;}
.y5ef{bottom:455.928000px;}
.y101{bottom:457.995000px;}
.y255{bottom:458.175000px;}
.y27c{bottom:458.355000px;}
.y2ba{bottom:458.565000px;}
.y3c4{bottom:458.715000px;}
.y35a{bottom:459.615000px;}
.y625{bottom:459.870000px;}
.y45f{bottom:461.775000px;}
.y218{bottom:462.855000px;}
.y671{bottom:464.295000px;}
.y1e2{bottom:464.475000px;}
.y4de{bottom:465.045000px;}
.y65c{bottom:465.303000px;}
.y1c{bottom:466.455000px;}
.y1d1{bottom:466.995000px;}
.y54f{bottom:467.895000px;}
.y6d6{bottom:468.075000px;}
.y32e{bottom:468.210000px;}
.y500{bottom:468.285000px;}
.y267{bottom:468.795000px;}
.y5b2{bottom:469.053000px;}
.y2d8{bottom:469.335000px;}
.y67e{bottom:469.695000px;}
.y44{bottom:470.055000px;}
.y4b9{bottom:470.235000px;}
.y49e{bottom:471.855000px;}
.y2e4{bottom:472.710000px;}
.y333{bottom:472.755000px;}
.y5ee{bottom:472.803000px;}
.y6c{bottom:473.115000px;}
.y31b{bottom:474.195000px;}
.y489{bottom:475.635000px;}
.y3a3{bottom:475.815000px;}
.y2d3{bottom:476.175000px;}
.y174{bottom:476.355000px;}
.y624{bottom:476.745000px;}
.y441{bottom:477.075000px;}
.y30d{bottom:477.255000px;}
.y8d{bottom:477.975000px;}
.y383{bottom:478.515000px;}
.y1ff{bottom:478.695000px;}
.y2c9{bottom:479.415000px;}
.y34d{bottom:479.595000px;}
.y11f{bottom:480.855000px;}
.y2af{bottom:482.115000px;}
.y65b{bottom:482.178000px;}
.y6a3{bottom:482.295000px;}
.y6bc{bottom:483.195000px;}
.y415{bottom:483.375000px;}
.yaf{bottom:483.915000px;}
.y245{bottom:484.275000px;}
.y217{bottom:484.815000px;}
.y5b1{bottom:485.928000px;}
.y100{bottom:486.435000px;}
.y4b8{bottom:486.615000px;}
.y254{bottom:486.795000px;}
.y27b{bottom:486.975000px;}
.y68b{bottom:487.695000px;}
.y324{bottom:487.875000px;}
.y3f7{bottom:488.235000px;}
.y300{bottom:489.135000px;}
.y5ed{bottom:489.678000px;}
.y1b{bottom:490.575000px;}
.y266{bottom:490.755000px;}
.y45d{bottom:490.935000px;}
.y4ef{bottom:491.685000px;}
.y472{bottom:492.015000px;}
.y36b{bottom:492.375000px;}
.y1d0{bottom:492.915000px;}
.y623{bottom:493.620000px;}
.y67d{bottom:493.635000px;}
.y4dd{bottom:496.725000px;}
.y670{bottom:497.055000px;}
.y338{bottom:497.235000px;}
.y33f{bottom:497.775000px;}
.y43{bottom:498.495000px;}
.y65a{bottom:499.053000px;}
.y3dd{bottom:499.215000px;}
.y4ff{bottom:500.685000px;}
.y49d{bottom:501.015000px;}
.y6b{bottom:501.375000px;}
.ydc{bottom:501.555000px;}
.y4c9{bottom:501.765000px;}
.y5b0{bottom:502.803000px;}
.y359{bottom:503.715000px;}
.y173{bottom:504.795000px;}
.y440{bottom:505.695000px;}
.y8c{bottom:506.415000px;}
.y5ec{bottom:506.553000px;}
.y1fe{bottom:507.135000px;}
.y4ee{bottom:508.065000px;}
.y2c0{bottom:508.605000px;}
.y2cc{bottom:508.785000px;}
.y11e{bottom:509.295000px;}
.y622{bottom:510.495000px;}
.y3c3{bottom:510.555000px;}
.y382{bottom:510.915000px;}
.y6d5{bottom:511.095000px;}
.y6a2{bottom:511.455000px;}
.yae{bottom:512.355000px;}
.y414{bottom:512.535000px;}
.y244{bottom:512.715000px;}
.y2e8{bottom:513.105000px;}
.y33e{bottom:513.465000px;}
.y1a{bottom:513.975000px;}
.y2ae{bottom:514.695000px;}
.yff{bottom:514.875000px;}
.y253{bottom:515.235000px;}
.y27a{bottom:515.415000px;}
.y367{bottom:515.775000px;}
.y659{bottom:515.928000px;}
.y4b7{bottom:515.955000px;}
.y2d7{bottom:517.605000px;}
.y67c{bottom:517.755000px;}
.y358{bottom:517.785000px;}
.y2e3{bottom:518.010000px;}
.y32d{bottom:518.430000px;}
.y5af{bottom:519.678000px;}
.y33b{bottom:519.990000px;}
.y459{bottom:520.095000px;}
.y54a{bottom:520.455000px;}
.y1cf{bottom:521.355000px;}
.y31a{bottom:521.745000px;}
.y34c{bottom:522.105000px;}
.y22a{bottom:522.435000px;}
.y30c{bottom:522.645000px;}
.y3f6{bottom:522.975000px;}
.y5eb{bottom:523.428000px;}
.y265{bottom:523.695000px;}
.y6bb{bottom:524.595000px;}
.y2f4{bottom:525.885000px;}
.y1b5{bottom:526.035000px;}
.y323{bottom:526.065000px;}
.y42{bottom:526.935000px;}
.y621{bottom:527.370000px;}
.y3a2{bottom:528.195000px;}
.y4dc{bottom:528.585000px;}
.y429{bottom:529.095000px;}
.y6a{bottom:529.455000px;}
.y2d2{bottom:529.665000px;}
.ydb{bottom:529.995000px;}
.y49c{bottom:530.175000px;}
.y2c8{bottom:532.185000px;}
.y658{bottom:532.803000px;}
.y172{bottom:533.235000px;}
.y4fe{bottom:533.265000px;}
.y488{bottom:533.955000px;}
.y3dc{bottom:534.135000px;}
.y19{bottom:534.675000px;}
.y690{bottom:535.035000px;}
.y1fd{bottom:535.575000px;}
.y8b{bottom:535.935000px;}
.y5ae{bottom:536.553000px;}
.y11d{bottom:537.735000px;}
.y2ff{bottom:538.305000px;}
.y6e4{bottom:540.075000px;}
.y5ea{bottom:540.303000px;}
.yad{bottom:540.795000px;}
.y243{bottom:541.155000px;}
.y67b{bottom:541.695000px;}
.y413{bottom:541.875000px;}
.y2e7{bottom:542.265000px;}
.yfe{bottom:543.315000px;}
.y381{bottom:543.495000px;}
.y252{bottom:543.675000px;}
.y279{bottom:543.855000px;}
.y620{bottom:544.245000px;}
.y4b5{bottom:545.115000px;}
.y3c2{bottom:545.835000px;}
.y43f{bottom:546.015000px;}
.y2ad{bottom:547.095000px;}
.y478{bottom:549.615000px;}
.y657{bottom:549.678000px;}
.y1ce{bottom:549.795000px;}
.y5ad{bottom:553.428000px;}
.y6d4{bottom:554.115000px;}
.y18{bottom:555.375000px;}
.y4ed{bottom:555.405000px;}
.y264{bottom:556.635000px;}
.y5e9{bottom:557.178000px;}
.y69{bottom:557.715000px;}
.y428{bottom:558.255000px;}
.yda{bottom:558.435000px;}
.y68f{bottom:559.155000px;}
.y33d{bottom:559.185000px;}
.y49b{bottom:559.515000px;}
.y4db{bottom:560.445000px;}
.y3a1{bottom:560.595000px;}
.y61f{bottom:561.120000px;}
.y171{bottom:561.675000px;}
.y357{bottom:561.885000px;}
.y2bf{bottom:562.065000px;}
.y229{bottom:562.755000px;}
.y487{bottom:563.115000px;}
.y1fc{bottom:564.015000px;}
.y34b{bottom:564.585000px;}
.y20a{bottom:564.735000px;}
.y2fe{bottom:564.945000px;}
.y6ba{bottom:565.095000px;}
.y6a1{bottom:565.455000px;}
.y2e2{bottom:565.530000px;}
.y4fd{bottom:565.665000px;}
.y679{bottom:565.815000px;}
.y2d6{bottom:566.025000px;}
.y11c{bottom:566.175000px;}
.y656{bottom:566.553000px;}
.y2ac{bottom:567.435000px;}
.y30b{bottom:568.185000px;}
.y319{bottom:568.545000px;}
.y8a{bottom:568.875000px;}
.yac{bottom:569.235000px;}
.y2f3{bottom:569.445000px;}
.y242{bottom:569.595000px;}
.y5ac{bottom:570.303000px;}
.y412{bottom:571.035000px;}
.y2e6{bottom:571.425000px;}
.yfd{bottom:571.755000px;}
.y251{bottom:572.115000px;}
.y278{bottom:572.295000px;}
.y5e8{bottom:574.053000px;}
.y32c{bottom:574.815000px;}
.y33c{bottom:574.845000px;}
.y380{bottom:575.895000px;}
.y356{bottom:575.925000px;}
.y17{bottom:576.075000px;}
.y34a{bottom:577.185000px;}
.y2e5{bottom:577.590000px;}
.y61e{bottom:577.995000px;}
.y54e{bottom:578.055000px;}
.y1cd{bottom:578.235000px;}
.y477{bottom:578.775000px;}
.y3a0{bottom:580.935000px;}
.y3c1{bottom:581.115000px;}
.y68e{bottom:583.095000px;}
.y655{bottom:583.428000px;}
.y41{bottom:583.815000px;}
.y68{bottom:585.975000px;}
.y43e{bottom:586.335000px;}
.yd9{bottom:586.875000px;}
.y5ab{bottom:587.178000px;}
.y4ec{bottom:587.265000px;}
.y427{bottom:587.595000px;}
.y2ab{bottom:587.955000px;}
.y49a{bottom:588.675000px;}
.y263{bottom:589.575000px;}
.y170{bottom:590.115000px;}
.y5e7{bottom:590.928000px;}
.y228{bottom:591.375000px;}
.y1b2{bottom:591.915000px;}
.y1fb{bottom:592.455000px;}
.y3f4{bottom:592.635000px;}
.y6b9{bottom:593.715000px;}
.y11b{bottom:594.615000px;}
.y157{bottom:594.795000px;}
.y61d{bottom:594.870000px;}
.y16{bottom:596.775000px;}
.y6d3{bottom:597.135000px;}
.y89{bottom:597.315000px;}
.y458{bottom:597.495000px;}
.yab{bottom:597.675000px;}
.y241{bottom:598.035000px;}
.y4fc{bottom:598.245000px;}
.y6e1{bottom:598.575000px;}
.y2fd{bottom:599.580000px;}
.yfc{bottom:600.195000px;}
.y250{bottom:600.555000px;}
.y51f{bottom:603.615000px;}
.y3db{bottom:603.645000px;}
.y5aa{bottom:604.053000px;}
.y277{bottom:604.365000px;}
.y6a0{bottom:605.985000px;}
.y572{bottom:606.345000px;}
.y1cc{bottom:606.885000px;}
.y68d{bottom:607.245000px;}
.y54d{bottom:607.395000px;}
.y4d9{bottom:607.785000px;}
.y5e6{bottom:607.803000px;}
.y476{bottom:608.145000px;}
.y507{bottom:608.295000px;}
.y37f{bottom:608.325000px;}
.y2aa{bottom:608.505000px;}
.y61c{bottom:611.745000px;}
.y40{bottom:612.465000px;}
.y2e1{bottom:612.900000px;}
.y50f{bottom:613.515000px;}
.y39f{bottom:613.545000px;}
.y67{bottom:614.085000px;}
.y13f{bottom:614.625000px;}
.yd8{bottom:615.345000px;}
.y518{bottom:616.395000px;}
.y3c0{bottom:616.425000px;}
.y654{bottom:617.178000px;}
.y566{bottom:617.295000px;}
.y4b4{bottom:617.325000px;}
.y15{bottom:617.505000px;}
.y55f{bottom:617.835000px;}
.y1b1{bottom:617.865000px;}
.y4eb{bottom:618.990000px;}
.y1fa{bottom:620.925000px;}
.y5a9{bottom:620.928000px;}
.y262{bottom:622.725000px;}
.y1c3{bottom:623.085000px;}
.y11a{bottom:623.265000px;}
.y4c8{bottom:624.030000px;}
.y16f{bottom:624.165000px;}
.y5e5{bottom:624.678000px;}
.y88{bottom:625.965000px;}
.yaa{bottom:626.145000px;}
.y240{bottom:626.505000px;}
.y53b{bottom:626.835000px;}
.y43d{bottom:626.865000px;}
.y526{bottom:627.375000px;}
.y3f3{bottom:627.405000px;}
.y332{bottom:627.480000px;}
.y61b{bottom:628.620000px;}
.yfb{bottom:628.845000px;}
.y2be{bottom:629.175000px;}
.y52e{bottom:629.355000px;}
.y40f{bottom:629.385000px;}
.y276{bottom:630.465000px;}
.y4fb{bottom:630.690000px;}
.y68a{bottom:631.185000px;}
.y565{bottom:633.675000px;}
.y4b3{bottom:633.705000px;}
.y653{bottom:634.053000px;}
.y24f{bottom:634.605000px;}
.y1e1{bottom:635.325000px;}
.y54c{bottom:636.555000px;}
.y475{bottom:637.305000px;}
.y5a8{bottom:637.803000px;}
.y540{bottom:637.995000px;}
.y457{bottom:638.025000px;}
.y14{bottom:638.205000px;}
.y51e{bottom:638.535000px;}
.y3da{bottom:638.565000px;}
.y535{bottom:639.435000px;}
.y426{bottom:639.465000px;}
.y4d7{bottom:639.510000px;}
.y6d2{bottom:640.185000px;}
.y506{bottom:640.875000px;}
.y3f{bottom:640.905000px;}
.y2a9{bottom:641.085000px;}
.y5e4{bottom:641.553000px;}
.y66{bottom:642.345000px;}
.yd7{bottom:643.965000px;}
.y61a{bottom:645.495000px;}
.y50e{bottom:646.095000px;}
.y39e{bottom:646.125000px;}
.y1b0{bottom:646.305000px;}
.y55a{bottom:646.455000px;}
.y486{bottom:646.485000px;}
.y16e{bottom:646.665000px;}
.y55e{bottom:646.995000px;}
.y499{bottom:647.025000px;}
.y1f9{bottom:649.545000px;}
.y4ea{bottom:650.850000px;}
.y652{bottom:650.928000px;}
.y517{bottom:651.675000px;}
.y119{bottom:651.705000px;}
.y534{bottom:652.755000px;}
.y425{bottom:652.785000px;}
.y87{bottom:654.405000px;}
.ya9{bottom:654.585000px;}
.y2fc{bottom:654.660000px;}
.y5a7{bottom:654.678000px;}
.y23f{bottom:654.945000px;}
.y261{bottom:655.665000px;}
.y4d5{bottom:655.890000px;}
.y24e{bottom:657.105000px;}
.yfa{bottom:657.285000px;}
.y5e3{bottom:658.428000px;}
.y52d{bottom:658.695000px;}
.y40e{bottom:658.725000px;}
.y13{bottom:658.905000px;}
.y2e0{bottom:660.420000px;}
.y2a8{bottom:661.425000px;}
.y3f2{bottom:662.145000px;}
.y619{bottom:662.370000px;}
.y4b2{bottom:662.865000px;}
.y4fa{bottom:663.270000px;}
.y1e0{bottom:663.765000px;}
.y54b{bottom:665.745000px;}
.y39d{bottom:666.285000px;}
.y471{bottom:666.465000px;}
.y43c{bottom:667.365000px;}
.y651{bottom:667.803000px;}
.y3e{bottom:669.345000px;}
.y1cb{bottom:670.425000px;}
.y65{bottom:670.605000px;}
.y5a6{bottom:671.553000px;}
.yd6{bottom:672.405000px;}
.y37e{bottom:673.305000px;}
.y1af{bottom:674.745000px;}
.y69f{bottom:675.105000px;}
.y5e2{bottom:675.303000px;}
.y498{bottom:676.365000px;}
.y4c6{bottom:676.590000px;}
.y1f8{bottom:677.985000px;}
.y456{bottom:678.345000px;}
.y618{bottom:679.245000px;}
.y12{bottom:679.605000px;}
.y118{bottom:680.145000px;}
.y17e{bottom:681.225000px;}
.y6b8{bottom:681.405000px;}
.y2a7{bottom:681.765000px;}
.y424{bottom:681.945000px;}
.y86{bottom:682.845000px;}
.ya8{bottom:683.025000px;}
.y56f{bottom:683.070000px;}
.y6d1{bottom:683.205000px;}
.y23e{bottom:683.385000px;}
.y650{bottom:684.678000px;}
.yf9{bottom:685.725000px;}
.y485{bottom:686.805000px;}
.y3bf{bottom:686.985000px;}
.y40d{bottom:687.885000px;}
.y5a5{bottom:688.428000px;}
.y4b1{bottom:692.025000px;}
.y5e1{bottom:692.178000px;}
.y30a{bottom:693.000000px;}
.y1df{bottom:693.285000px;}
.y549{bottom:694.905000px;}
.y4f9{bottom:695.670000px;}
.y617{bottom:696.120000px;}
.y3f1{bottom:697.065000px;}
.y3d{bottom:697.785000px;}
.y4e9{bottom:698.190000px;}
.y64{bottom:698.685000px;}
.y39c{bottom:699.045000px;}
.yd5{bottom:700.845000px;}
.y11{bottom:701.025000px;}
.y64f{bottom:701.553000px;}
.y2a6{bottom:702.285000px;}
.y2f1{bottom:702.615000px;}
.y1ae{bottom:703.185000px;}
.y689{bottom:703.365000px;}
.y69e{bottom:703.545000px;}
.y5a4{bottom:705.303000px;}
.y497{bottom:705.525000px;}
.y37d{bottom:705.885000px;}
.y1f7{bottom:706.425000px;}
.y2df{bottom:707.760000px;}
.y43b{bottom:707.865000px;}
.y3d8{bottom:708.045000px;}
.y117{bottom:708.585000px;}
.y5e0{bottom:709.053000px;}
.y6b7{bottom:709.845000px;}
.y85{bottom:711.285000px;}
.ya7{bottom:711.645000px;}
.y23d{bottom:712.005000px;}
.y616{bottom:712.995000px;}
.yf8{bottom:714.165000px;}
.y6e0{bottom:716.325000px;}
.y40c{bottom:717.045000px;}
.y1ca{bottom:717.765000px;}
.y64e{bottom:718.428000px;}
.y455{bottom:718.845000px;}
.y4af{bottom:721.365000px;}
.y3be{bottom:722.085000px;}
.y5a3{bottom:722.178000px;}
.y213{bottom:723.705000px;}
.y10{bottom:725.145000px;}
.y5df{bottom:725.928000px;}
.y3c{bottom:726.225000px;}
.y63{bottom:726.945000px;}
.y484{bottom:727.305000px;}
.y4c5{bottom:727.890000px;}
.y4f8{bottom:728.070000px;}
.yd4{bottom:729.285000px;}
.y4e8{bottom:729.870000px;}
.y1ad{bottom:731.625000px;}
.y3f0{bottom:731.805000px;}
.y39b{bottom:731.985000px;}
.y496{bottom:734.685000px;}
.y168{bottom:734.865000px;}
.y2a5{bottom:735.045000px;}
.y64d{bottom:735.303000px;}
.y116{bottom:737.025000px;}
.y37c{bottom:738.285000px;}
.y56e{bottom:738.690000px;}
.y5a2{bottom:739.053000px;}
.y84{bottom:739.725000px;}
.ya6{bottom:740.085000px;}
.y23c{bottom:740.445000px;}
.y1dc{bottom:742.425000px;}
.yf7{bottom:742.605000px;}
.y5de{bottom:742.803000px;}
.y3d6{bottom:742.965000px;}
.y470{bottom:743.865000px;}
.y6df{bottom:745.485000px;}
.y40b{bottom:746.385000px;}
.y615{bottom:746.745000px;}
.y454{bottom:747.465000px;}
.y1a8{bottom:748.005000px;}
.y43a{bottom:748.185000px;}
.yf{bottom:749.265000px;}
.y6b6{bottom:751.245000px;}
.y64c{bottom:752.178000px;}
.y3b{bottom:754.665000px;}
.y62{bottom:755.025000px;}
.y2a4{bottom:755.205000px;}
.y483{bottom:755.925000px;}
.y5a1{bottom:755.928000px;}
.y3bd{bottom:757.365000px;}
.yd3{bottom:757.725000px;}
.y5dd{bottom:759.678000px;}
.y20e{bottom:760.785000px;}
.y39a{bottom:761.325000px;}
.y16d{bottom:763.305000px;}
.y614{bottom:763.620000px;}
.y1c9{bottom:764.925000px;}
.y423{bottom:765.285000px;}
.y115{bottom:765.465000px;}
.y3ef{bottom:766.545000px;}
.y83{bottom:768.165000px;}
.ya5{bottom:768.525000px;}
.y23b{bottom:768.885000px;}
.y64b{bottom:769.053000px;}
.y6d0{bottom:769.425000px;}
.y4c4{bottom:769.830000px;}
.y37b{bottom:770.865000px;}
.yf6{bottom:771.045000px;}
.y4e7{bottom:771.090000px;}
.y56d{bottom:771.270000px;}
.y1ac{bottom:771.945000px;}
.y548{bottom:772.305000px;}
.y5a0{bottom:772.803000px;}
.ye{bottom:773.565000px;}
.y6de{bottom:774.645000px;}
.y409{bottom:775.545000px;}
.y2a3{bottom:775.725000px;}
.y453{bottom:775.905000px;}
.y5dc{bottom:776.553000px;}
.y3d5{bottom:777.705000px;}
.y399{bottom:779.685000px;}
.y613{bottom:780.495000px;}
.y3a{bottom:783.105000px;}
.y61{bottom:783.285000px;}
.y46f{bottom:784.185000px;}
.y482{bottom:784.365000px;}
.y64a{bottom:785.928000px;}
.yd2{bottom:786.165000px;}
.y439{bottom:788.685000px;}
.y59f{bottom:789.678000px;}
.y6b5{bottom:791.565000px;}
.y1f6{bottom:791.745000px;}
.y16c{bottom:791.925000px;}
.y56c{bottom:791.970000px;}
.y3bc{bottom:792.645000px;}
.y5db{bottom:793.428000px;}
.y114{bottom:793.905000px;}
.y4c2{bottom:795.570000px;}
.y1ab{bottom:796.065000px;}
.y2a2{bottom:796.245000px;}
.y82{bottom:796.605000px;}
.ya4{bottom:796.965000px;}
.y23a{bottom:797.325000px;}
.y612{bottom:797.370000px;}
.y20d{bottom:799.305000px;}
.yf5{bottom:799.485000px;}
.y3ed{bottom:801.465000px;}
.y649{bottom:802.803000px;}
.y37a{bottom:803.265000px;}
.y59e{bottom:806.553000px;}
.y5da{bottom:810.303000px;}
.y39{bottom:811.545000px;}
.y398{bottom:812.085000px;}
.y1c8{bottom:812.265000px;}
.y6cf{bottom:812.445000px;}
.y547{bottom:812.805000px;}
.y69d{bottom:812.985000px;}
.y1de{bottom:813.165000px;}
.y611{bottom:814.245000px;}
.yd1{bottom:814.605000px;}
.y452{bottom:816.225000px;}
.y4ae{bottom:816.765000px;}
.y648{bottom:819.678000px;}
.y1a1{bottom:820.005000px;}
.y1f5{bottom:820.185000px;}
.y16b{bottom:820.365000px;}
.y113{bottom:822.345000px;}
.y17f{bottom:823.425000px;}
.y59d{bottom:823.428000px;}
.y56b{bottom:824.400000px;}
.y46e{bottom:824.685000px;}
.y81{bottom:825.045000px;}
.ya3{bottom:825.405000px;}
.y239{bottom:825.765000px;}
.y4c1{bottom:827.100000px;}
.y5d9{bottom:827.178000px;}
.yf4{bottom:827.925000px;}
.y2a1{bottom:828.825000px;}
.y438{bottom:829.185000px;}
.y408{bottom:829.545000px;}
.y3d4{bottom:829.905000px;}
.y610{bottom:831.120000px;}
.y397{bottom:832.425000px;}
.yd{bottom:834.765000px;}
.y379{bottom:835.665000px;}
.y1c7{bottom:836.385000px;}
.y647{bottom:836.553000px;}
.y60{bottom:839.625000px;}
.y38{bottom:839.985000px;}
.y59c{bottom:840.303000px;}
.y69c{bottom:841.425000px;}
.yd0{bottom:843.045000px;}
.y5d8{bottom:844.053000px;}
.y1a7{bottom:844.125000px;}
.y60f{bottom:847.995000px;}
.y1f4{bottom:848.625000px;}
.y2a0{bottom:849.165000px;}
.y112{bottom:850.785000px;}
.y156{bottom:850.965000px;}
.y546{bottom:853.125000px;}
.y46d{bottom:853.305000px;}
.y646{bottom:853.428000px;}
.y80{bottom:853.485000px;}
.ya2{bottom:853.845000px;}
.y16a{bottom:854.205000px;}
.y6ce{bottom:855.465000px;}
.yc{bottom:856.365000px;}
.y451{bottom:856.725000px;}
.y4ad{bottom:857.085000px;}
.y59b{bottom:857.178000px;}
.y5d7{bottom:860.928000px;}
.y6b4{bottom:861.585000px;}
.y3d3{bottom:862.485000px;}
.y422{bottom:862.665000px;}
.y3ba{bottom:863.205000px;}
.y60e{bottom:864.870000px;}
.y396{bottom:865.185000px;}
.y5f{bottom:867.885000px;}
.y1a5{bottom:868.065000px;}
.y378{bottom:868.245000px;}
.y37{bottom:868.605000px;}
.y437{bottom:869.685000px;}
.y69b{bottom:869.865000px;}
.y407{bottom:870.045000px;}
.y525{bottom:870.945000px;}
.y3ec{bottom:870.990000px;}
.ycf{bottom:871.530000px;}
.y564{bottom:873.645000px;}
.y4ac{bottom:873.690000px;}
.y63e{bottom:873.949500px;}
.y59a{bottom:874.053000px;}
.y1f3{bottom:877.110000px;}
.y5d6{bottom:877.803000px;}
.y645{bottom:878.940000px;}
.y111{bottom:879.450000px;}
.yb{bottom:880.530000px;}
.y545{bottom:881.745000px;}
.y46c{bottom:881.790000px;}
.y29f{bottom:881.970000px;}
.y7f{bottom:882.150000px;}
.ya1{bottom:882.330000px;}
.y238{bottom:882.690000px;}
.y1c5{bottom:883.770000px;}
.yf3{bottom:885.030000px;}
.y50d{bottom:885.345000px;}
.y395{bottom:885.390000px;}
.y636{bottom:887.074500px;}
.y63d{bottom:890.824500px;}
.y1a4{bottom:892.230000px;}
.y559{bottom:893.805000px;}
.y481{bottom:893.850000px;}
.y5d5{bottom:894.678000px;}
.y51d{bottom:894.885000px;}
.y3d2{bottom:894.930000px;}
.y363{bottom:895.245000px;}
.y5e{bottom:896.190000px;}
.y36{bottom:897.090000px;}
.y53f{bottom:897.225000px;}
.y450{bottom:897.270000px;}
.y69a{bottom:898.350000px;}
.y6cd{bottom:898.530000px;}
.y60d{bottom:898.620000px;}
.y52c{bottom:898.665000px;}
.y406{bottom:898.710000px;}
.y599{bottom:899.565000px;}
.yce{bottom:900.150000px;}
.y505{bottom:900.645000px;}
.y377{bottom:900.690000px;}
.y29e{bottom:902.130000px;}
.y563{bottom:902.805000px;}
.y4ab{bottom:902.850000px;}
.y524{bottom:903.345000px;}
.y3eb{bottom:903.390000px;}
.y635{bottom:903.949500px;}
.y421{bottom:904.470000px;}
.ya{bottom:904.650000px;}
.y1f2{bottom:905.730000px;}
.y593{bottom:907.699500px;}
.y110{bottom:907.890000px;}
.y155{bottom:910.050000px;}
.y436{bottom:910.230000px;}
.y7e{bottom:910.590000px;}
.ya0{bottom:910.770000px;}
.y237{bottom:911.130000px;}
.yf2{bottom:913.470000px;}
.y3d1{bottom:915.270000px;}
.y3b9{bottom:915.450000px;}
.y60c{bottom:915.495000px;}
.y197{bottom:916.170000px;}
.y644{bottom:917.074500px;}
.y394{bottom:918.150000px;}
.y5d4{bottom:920.190000px;}
.y634{bottom:920.824500px;}
.y46b{bottom:922.110000px;}
.y480{bottom:922.290000px;}
.y29d{bottom:922.650000px;}
.y5d{bottom:924.270000px;}
.y592{bottom:924.574500px;}
.y35{bottom:925.530000px;}
.y6dd{bottom:926.970000px;}
.y405{bottom:927.150000px;}
.ycd{bottom:928.590000px;}
.y9{bottom:928.770000px;}
.y6b3{bottom:930.750000px;}
.y4aa{bottom:932.010000px;}
.y60b{bottom:932.370000px;}
.y376{bottom:933.270000px;}
.y643{bottom:933.949500px;}
.y1f1{bottom:934.170000px;}
.y3d0{bottom:935.790000px;}
.y3ea{bottom:935.970000px;}
.y10f{bottom:936.330000px;}
.y13e{bottom:937.410000px;}
.y44f{bottom:937.590000px;}
.y598{bottom:937.699500px;}
.y699{bottom:938.670000px;}
.y9f{bottom:939.210000px;}
.y154{bottom:939.570000px;}
.y7d{bottom:940.110000px;}
.y1a0{bottom:940.290000px;}
.y591{bottom:941.449500px;}
.y6cc{bottom:941.550000px;}
.yf1{bottom:941.910000px;}
.y420{bottom:946.230000px;}
.y3b8{bottom:947.850000px;}
.y60a{bottom:949.245000px;}
.y393{bottom:950.550000px;}
.y46a{bottom:950.730000px;}
.y642{bottom:950.824500px;}
.y5c{bottom:952.530000px;}
.y8{bottom:952.890000px;}
.y34{bottom:953.970000px;}
.y597{bottom:954.574500px;}
.y29c{bottom:955.230000px;}
.y3e9{bottom:956.130000px;}
.y6dc{bottom:956.310000px;}
.ycc{bottom:957.030000px;}
.y590{bottom:958.324500px;}
.y6b2{bottom:959.190000px;}
.y4a9{bottom:961.170000px;}
.y1f0{bottom:962.610000px;}
.y19f{bottom:964.230000px;}
.y10e{bottom:964.770000px;}
.y375{bottom:965.670000px;}
.y609{bottom:966.120000px;}
.y44e{bottom:966.390000px;}
.y5d3{bottom:967.065000px;}
.y404{bottom:967.470000px;}
.y9e{bottom:967.830000px;}
.y153{bottom:968.190000px;}
.y3cf{bottom:968.370000px;}
.yf0{bottom:970.350000px;}
.y596{bottom:971.449500px;}
.y1c2{bottom:972.870000px;}
.y7c{bottom:973.050000px;}
.y58f{bottom:975.199500px;}
.y29b{bottom:975.570000px;}
.y641{bottom:976.336500px;}
.y7{bottom:977.010000px;}
.y698{bottom:978.990000px;}
.y291{bottom:979.170000px;}
.y5b{bottom:980.790000px;}
.y33{bottom:982.410000px;}
.y392{bottom:983.130000px;}
.y58c{bottom:983.503500px;}
.y5d2{bottom:983.940000px;}
.y6cb{bottom:984.570000px;}
.ycb{bottom:985.470000px;}
.y15b{bottom:986.550000px;}
.y6b1{bottom:987.810000px;}
.y19e{bottom:988.350000px;}
.y3e8{bottom:988.890000px;}
.y4a8{bottom:990.510000px;}
.y1ef{bottom:991.050000px;}
.y58e{bottom:992.074500px;}
.y13a{bottom:993.210000px;}
.y10d{bottom:994.290000px;}
.y29a{bottom:996.090000px;}
.y9d{bottom:996.270000px;}
.y152{bottom:996.630000px;}
.y595{bottom:996.961500px;}
.y374{bottom:998.250000px;}
.yef{bottom:998.790000px;}
.y290{bottom:999.870000px;}
.y58b{bottom:1000.512000px;}
.y3b7{bottom:1000.770000px;}
.y5d1{bottom:1000.815000px;}
.y6{bottom:1001.130000px;}
.y7b{bottom:1001.490000px;}
.y391{bottom:1003.290000px;}
.y44d{bottom:1006.530000px;}
.y403{bottom:1007.790000px;}
.y5a{bottom:1008.870000px;}
.y32{bottom:1010.850000px;}
.y19d{bottom:1012.290000px;}
.y6db{bottom:1014.630000px;}
.yca{bottom:1014.990000px;}
.y41f{bottom:1015.170000px;}
.y6b0{bottom:1016.250000px;}
.y299{bottom:1016.610000px;}
.y608{bottom:1016.745000px;}
.y58a{bottom:1017.519000px;}
.y58d{bottom:1017.586500px;}
.y5d0{bottom:1017.690000px;}
.y15a{bottom:1019.490000px;}
.y28f{bottom:1020.570000px;}
.y3ce{bottom:1021.110000px;}
.y3e7{bottom:1021.290000px;}
.y139{bottom:1021.650000px;}
.y640{bottom:1023.799500px;}
.y390{bottom:1023.810000px;}
.y9c{bottom:1024.710000px;}
.y151{bottom:1025.070000px;}
.y5{bottom:1025.430000px;}
.y236{bottom:1026.150000px;}
.yee{bottom:1027.230000px;}
.y6ca{bottom:1027.770000px;}
.y7a{bottom:1029.930000px;}
.y373{bottom:1030.650000px;}
.y3b6{bottom:1033.350000px;}
.y607{bottom:1033.620000px;}
.y5cf{bottom:1034.565000px;}
.y19c{bottom:1036.410000px;}
.y402{bottom:1036.590000px;}
.y298{bottom:1036.950000px;}
.y59{bottom:1037.130000px;}
.y31{bottom:1039.290000px;}
.y28e{bottom:1041.270000px;}
.y3e6{bottom:1041.630000px;}
.y41e{bottom:1043.790000px;}
.y38f{bottom:1044.330000px;}
.y594{bottom:1044.424500px;}
.y4a7{bottom:1044.510000px;}
.y6af{bottom:1044.690000px;}
.y44c{bottom:1047.030000px;}
.yc9{bottom:1047.930000px;}
.y4{bottom:1048.830000px;}
.y606{bottom:1050.495000px;}
.y138{bottom:1051.170000px;}
.y5ce{bottom:1051.440000px;}
.y9b{bottom:1053.150000px;}
.y150{bottom:1053.510000px;}
.y3b5{bottom:1053.690000px;}
.y3cd{bottom:1053.870000px;}
.y235{bottom:1054.590000px;}
.yed{bottom:1055.670000px;}
.y297{bottom:1057.470000px;}
.y79{bottom:1058.370000px;}
.y435{bottom:1059.990000px;}
.y19a{bottom:1060.350000px;}
.y28d{bottom:1061.970000px;}
.y372{bottom:1063.590000px;}
.y589{bottom:1065.049500px;}
.y58{bottom:1065.390000px;}
.y605{bottom:1067.370000px;}
.y30{bottom:1067.730000px;}
.y5cd{bottom:1068.315000px;}
.y3{bottom:1069.530000px;}
.y6c9{bottom:1070.790000px;}
.y3b4{bottom:1074.030000px;}
.y3e5{bottom:1074.210000px;}
.yc8{bottom:1076.370000px;}
.y401{bottom:1076.730000px;}
.y38e{bottom:1076.910000px;}
.y296{bottom:1077.990000px;}
.y9a{bottom:1081.590000px;}
.y14f{bottom:1081.950000px;}
.y28c{bottom:1082.670000px;}
.y234{bottom:1083.030000px;}
.y41d{bottom:1083.930000px;}
.yec{bottom:1084.110000px;}
.y604{bottom:1084.245000px;}
.y196{bottom:1084.470000px;}
.y5cc{bottom:1085.190000px;}
.y4a6{bottom:1086.270000px;}
.y78{bottom:1086.810000px;}
.y44b{bottom:1087.530000px;}
.y2{bottom:1090.230000px;}
.y362{bottom:1090.410000px;}
.y57{bottom:1094.550000px;}
.y2f{bottom:1096.170000px;}
.y371{bottom:1097.790000px;}
.y295{bottom:1098.510000px;}
.y434{bottom:1100.490000px;}
.y603{bottom:1101.120000px;}
.y5cb{bottom:1102.065000px;}
.y28b{bottom:1103.370000px;}
.yc7{bottom:1104.810000px;}
.y3b3{bottom:1106.790000px;}
.y1{bottom:1107.150000px;}
.y195{bottom:1108.590000px;}
.y38d{bottom:1109.850000px;}
.y99{bottom:1110.030000px;}
.y14e{bottom:1111.470000px;}
.y6c8{bottom:1112.370000px;}
.yeb{bottom:1112.550000px;}
.y2e{bottom:1115.430000px;}
.y588{bottom:1116.264000px;}
.y63c{bottom:1117.995000px;}
.y294{bottom:1118.850000px;}
.y77{bottom:1119.030000px;}
.y586{bottom:1121.842500px;}
.y193{bottom:1132.530000px;}
.y44a{bottom:1133.970000px;}
.y361{bottom:1134.150000px;}
.y5ca{bottom:1134.870000px;}
.yc6{bottom:1136.850000px;}
.y2d{bottom:1137.030000px;}
.y98{bottom:1139.580000px;}
.y516{bottom:1139.730000px;}
.y3b2{bottom:1139.760000px;}
.y14d{bottom:1140.120000px;}
.y53a{bottom:1140.990000px;}
.y433{bottom:1141.020000px;}
.y533{bottom:1141.170000px;}
.yea{bottom:1141.200000px;}
.y293{bottom:1151.640000px;}
.y503{bottom:1161.900000px;}
.y36e{bottom:1165.500000px;}
.y292{bottom:1186.380000px;}
.y502{bottom:1194.300000px;}
.y36d{bottom:1197.000000px;}
.y584{bottom:1197.310150px;}
.h4d{height:4.952813px;}
.h83{height:5.796000px;}
.h6d{height:15.660000px;}
.h7b{height:22.514700px;}
.he{height:23.220000px;}
.h11{height:23.256000px;}
.h13{height:23.400000px;}
.h15{height:23.436000px;}
.h68{height:25.740000px;}
.h58{height:28.440000px;}
.h5a{height:28.476000px;}
.h59{height:28.620000px;}
.h64{height:28.656000px;}
.hd{height:28.836000px;}
.h72{height:30.955078px;}
.h70{height:30.960000px;}
.h6e{height:30.996000px;}
.h6f{height:31.140000px;}
.h5c{height:31.201172px;}
.h9{height:31.500000px;}
.h5e{height:33.385430px;}
.h54{height:34.020000px;}
.h57{height:34.056000px;}
.h55{height:34.200000px;}
.h50{height:34.380000px;}
.h53{height:34.416000px;}
.h4e{height:34.560000px;}
.h52{height:34.596000px;}
.ha{height:36.936000px;}
.h75{height:37.980000px;}
.h44{height:41.809570px;}
.h45{height:41.934375px;}
.hb{height:43.453125px;}
.h7e{height:46.368000px;}
.hf{height:46.432617px;}
.h1b{height:46.440000px;}
.h87{height:46.476000px;}
.h17{height:46.620000px;}
.h19{height:46.656000px;}
.h46{height:46.801758px;}
.h47{height:46.926562px;}
.h6c{height:47.223633px;}
.hc{height:47.880000px;}
.h20{height:47.916000px;}
.h82{height:51.246000px;}
.h51{height:51.385430px;}
.h56{height:51.660000px;}
.h42{height:51.793945px;}
.h5f{height:51.840000px;}
.h62{height:51.876000px;}
.h43{height:51.918750px;}
.h81{height:52.164000px;}
.h4f{height:52.260820px;}
.h85{height:54.360000px;}
.h74{height:55.987031px;}
.h61{height:56.880000px;}
.h73{height:56.916000px;}
.h6{height:56.957344px;}
.h4c{height:57.410156px;}
.h8{height:57.927656px;}
.h7c{height:57.960000px;}
.h5b{height:59.667891px;}
.h5d{height:60.279609px;}
.h2{height:61.910156px;}
.h71{height:62.136000px;}
.h5{height:62.964844px;}
.h80{height:63.756000px;}
.h67{height:65.946445px;}
.h69{height:68.940000px;}
.h6a{height:68.976000px;}
.h6b{height:69.120000px;}
.h18{height:69.840000px;}
.h1d{height:69.876000px;}
.h10{height:71.280000px;}
.h7{height:71.613281px;}
.h3{height:72.434883px;}
.h4{height:73.668867px;}
.h7f{height:75.348000px;}
.h79{height:75.780000px;}
.h78{height:75.816000px;}
.h77{height:75.960000px;}
.h76{height:75.996000px;}
.h2e{height:77.342344px;}
.h48{height:80.937773px;}
.h4a{height:82.995117px;}
.h21{height:83.743242px;}
.h37{height:83.787539px;}
.h7d{height:86.940000px;}
.h31{height:89.516602px;}
.h1e{height:93.240000px;}
.h2b{height:93.728320px;}
.h32{height:95.245664px;}
.h33{height:95.388891px;}
.h14{height:95.436000px;}
.h34{height:98.051133px;}
.h35{height:98.198578px;}
.h3a{height:101.690859px;}
.h3b{height:101.834086px;}
.h2a{height:104.336719px;}
.h28{height:107.419922px;}
.h29{height:107.563148px;}
.h2c{height:113.148984px;}
.h2d{height:113.292211px;}
.h26{height:119.594180px;}
.h27{height:119.737406px;}
.h40{height:123.116836px;}
.h3d{height:125.323242px;}
.h3c{height:125.466469px;}
.h24{height:137.109375px;}
.h84{height:142.740000px;}
.h86{height:142.776000px;}
.h12{height:167.580000px;}
.h49{height:173.370000px;}
.h60{height:173.700000px;}
.h63{height:173.730000px;}
.h2f{height:176.871094px;}
.h30{height:177.008203px;}
.h38{height:205.664062px;}
.h41{height:205.801172px;}
.h1f{height:211.170000px;}
.h39{height:245.425781px;}
.h3f{height:251.595703px;}
.h3e{height:251.732813px;}
.h1c{height:258.510000px;}
.h36{height:274.218750px;}
.h25{height:274.355859px;}
.h16{height:306.570000px;}
.h1a{height:330.510000px;}
.h4b{height:378.750000px;}
.h23{height:457.396875px;}
.h22{height:810.000000px;}
.h65{height:892.980000px;}
.h66{height:893.250000px;}
.h7a{height:1262.835000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w30{width:17.100000px;}
.w49{width:23.760000px;}
.w47{width:23.940000px;}
.w48{width:23.976000px;}
.w3d{width:31.320000px;}
.w26{width:32.040000px;}
.w16{width:37.440000px;}
.w6{width:41.400000px;}
.w1b{width:41.760000px;}
.w1c{width:44.100000px;}
.w22{width:52.020000px;}
.w62{width:60.480000px;}
.w35{width:70.200000px;}
.w27{width:72.000000px;}
.w3c{width:73.800000px;}
.w14{width:78.480000px;}
.w1d{width:81.540000px;}
.w1a{width:84.240000px;}
.w31{width:84.276000px;}
.w21{width:84.420000px;}
.w9{width:94.860000px;}
.w65{width:95.040000px;}
.wc{width:95.076000px;}
.w38{width:95.580000px;}
.w2e{width:96.840000px;}
.w5a{width:97.740000px;}
.w4c{width:97.776000px;}
.w33{width:105.120000px;}
.w3f{width:105.480000px;}
.w5b{width:105.516000px;}
.w63{width:105.660000px;}
.w54{width:106.020000px;}
.w5d{width:106.056000px;}
.w66{width:116.100000px;}
.w56{width:116.136000px;}
.w67{width:116.316000px;}
.w29{width:125.856000px;}
.w24{width:126.720000px;}
.w64{width:126.756000px;}
.w23{width:126.936000px;}
.w2c{width:127.296000px;}
.w2d{width:127.440000px;}
.w36{width:127.836000px;}
.w2a{width:128.880000px;}
.w2b{width:133.056000px;}
.w28{width:135.216000px;}
.wb{width:136.980000px;}
.w25{width:137.556000px;}
.w17{width:141.516000px;}
.w40{width:143.820000px;}
.w41{width:143.856000px;}
.w45{width:148.716000px;}
.w20{width:158.610000px;}
.w8{width:158.790000px;}
.w3a{width:159.840000px;}
.w1e{width:161.310000px;}
.w1f{width:166.890000px;}
.w7{width:169.410000px;}
.w3e{width:190.290000px;}
.wa{width:201.450000px;}
.w19{width:203.790000px;}
.w18{width:211.890000px;}
.w4d{width:222.150000px;}
.w50{width:222.510000px;}
.w2f{width:228.810000px;}
.w37{width:275.655000px;}
.w32{width:275.790000px;}
.w4e{width:286.230000px;}
.w52{width:286.590000px;}
.we{width:286.770000px;}
.w11{width:294.510000px;}
.w10{width:307.830000px;}
.w3{width:314.130000px;}
.wf{width:317.730000px;}
.w4{width:332.175000px;}
.w12{width:334.830000px;}
.w5e{width:371.415000px;}
.w46{width:394.050000px;}
.w57{width:394.095000px;}
.w4a{width:430.050000px;}
.w58{width:430.095000px;}
.w3b{width:433.725000px;}
.wd{width:445.395000px;}
.w4f{width:456.375000px;}
.w53{width:456.915000px;}
.w5f{width:475.095000px;}
.w42{width:479.415000px;}
.w39{width:497.985000px;}
.w55{width:509.115000px;}
.w4b{width:543.495000px;}
.w59{width:543.525000px;}
.w34{width:573.045000px;}
.w15{width:599.685000px;}
.w2{width:679.965000px;}
.w5{width:680.505000px;}
.w61{width:766.630950px;}
.w51{width:850.245000px;}
.w5c{width:850.290000px;}
.w60{width:892.914000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w43{width:1262.880000px;}
.w44{width:1263.000000px;}
.w13{width:1440.000000px;}
.x0{left:0.000000px;}
.x77{left:4.257000px;}
.xe{left:7.740000px;}
.x1e{left:54.000000px;}
.x23{left:58.176000px;}
.x5e{left:61.776000px;}
.x60{left:63.142050px;}
.x22{left:68.976000px;}
.x71{left:70.339500px;}
.x74{left:72.963000px;}
.x75{left:74.563500px;}
.x6f{left:76.065000px;}
.x6a{left:77.326500px;}
.x2c{left:80.496000px;}
.x53{left:84.960000px;}
.x65{left:86.502000px;}
.x69{left:90.684000px;}
.x67{left:93.762000px;}
.x64{left:97.020000px;}
.x4a{left:98.676000px;}
.x6c{left:101.187000px;}
.x70{left:102.721500px;}
.x2{left:106.236000px;}
.x3{left:111.996000px;}
.x45{left:113.076000px;}
.x73{left:118.164000px;}
.x4{left:119.556000px;}
.x6{left:124.236000px;}
.x1b{left:127.476000px;}
.x25{left:129.780000px;}
.x9{left:133.236000px;}
.x5{left:134.676000px;}
.x6e{left:135.943500px;}
.x1f{left:140.436000px;}
.x7{left:142.236000px;}
.x72{left:143.254500px;}
.x33{left:145.296000px;}
.xf{left:149.256000px;}
.x37{left:151.950000px;}
.x20{left:153.390000px;}
.xa{left:160.230000px;}
.x4b{left:169.590000px;}
.x2b{left:174.990000px;}
.x2e{left:186.330000px;}
.x32{left:188.490000px;}
.x6b{left:198.396000px;}
.x4f{left:203.430000px;}
.x46{left:204.870000px;}
.x76{left:211.431000px;}
.x3e{left:212.970000px;}
.x1c{left:227.730000px;}
.x38{left:234.210000px;}
.x55{left:235.290000px;}
.x13{left:244.830000px;}
.x61{left:258.750000px;}
.x78{left:266.250000px;}
.x51{left:267.690000px;}
.x66{left:277.060500px;}
.x26{left:287.925000px;}
.x4c{left:298.155000px;}
.x5a{left:300.990000px;}
.x5b{left:308.730000px;}
.x10{left:319.395000px;}
.x31{left:322.815000px;}
.x6d{left:334.612500px;}
.x14{left:340.635000px;}
.x3f{left:348.915000px;}
.x63{left:352.857000px;}
.x2d{left:356.655000px;}
.x62{left:391.767000px;}
.x79{left:393.915000px;}
.x39{left:396.255000px;}
.x68{left:399.226500px;}
.x7b{left:404.355000px;}
.x15{left:406.515000px;}
.x18{left:414.615000px;}
.x4d{left:425.775000px;}
.x17{left:428.115000px;}
.x47{left:434.415000px;}
.x16{left:437.475000px;}
.x30{left:441.975000px;}
.x1d{left:446.475000px;}
.x48{left:452.235000px;}
.xd{left:453.675000px;}
.x19{left:455.115000px;}
.xc{left:471.705000px;}
.x40{left:475.485000px;}
.x43{left:476.925000px;}
.x11{left:478.905000px;}
.x29{left:494.610000px;}
.x34{left:500.145000px;}
.x28{left:502.920000px;}
.x7a{left:510.765000px;}
.x7c{left:521.385000px;}
.x49{left:537.225000px;}
.x27{left:543.390000px;}
.x3d{left:553.245000px;}
.x3a{left:564.045000px;}
.x12{left:574.485000px;}
.x52{left:587.445000px;}
.x2f{left:591.960000px;}
.x5c{left:595.875000px;}
.x41{left:605.085000px;}
.x54{left:611.895000px;}
.x56{left:630.075000px;}
.x57{left:654.735000px;}
.x58{left:679.425000px;}
.x5f{left:680.865000px;}
.x4e{left:702.150000px;}
.x35{left:704.850000px;}
.x3b{left:723.390000px;}
.x59{left:728.565000px;}
.x42{left:738.870000px;}
.x50{left:744.630000px;}
.x36{left:747.330000px;}
.x3c{left:766.050000px;}
.xb{left:768.570000px;}
.x8{left:777.570000px;}
.x44{left:781.350000px;}
.x1{left:786.750000px;}
.x1a{left:790.350000px;}
.x2a{left:993.705000px;}
.x24{left:1010.985000px;}
.x5d{left:1053.150000px;}
.x21{left:1101.750000px;}
@media print{
.v1{vertical-align:-122.880000pt;}
.v5{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v4{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls3b{letter-spacing:-4.613333pt;}
.ls27{letter-spacing:-2.730667pt;}
.ls15{letter-spacing:-1.008000pt;}
.ls1e{letter-spacing:-0.912000pt;}
.ls18{letter-spacing:-0.736000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls3f{letter-spacing:-0.448000pt;}
.ls16{letter-spacing:-0.406933pt;}
.ls4{letter-spacing:-0.368533pt;}
.ls3{letter-spacing:-0.336533pt;}
.ls13{letter-spacing:-0.271467pt;}
.ls12{letter-spacing:-0.233067pt;}
.ls2e{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.135467pt;}
.ls26{letter-spacing:-0.132267pt;}
.ls6{letter-spacing:-0.097067pt;}
.ls1c{letter-spacing:-0.096000pt;}
.ls3a{letter-spacing:-0.094933pt;}
.ls3c{letter-spacing:-0.082133pt;}
.ls3d{letter-spacing:-0.047467pt;}
.lsc{letter-spacing:-0.033067pt;}
.ls2f{letter-spacing:-0.032000pt;}
.ls2{letter-spacing:-0.025067pt;}
.ls19{letter-spacing:-0.016000pt;}
.ls38{letter-spacing:-0.013867pt;}
.ls1{letter-spacing:0.000000pt;}
.ls39{letter-spacing:0.016533pt;}
.ls35{letter-spacing:0.027200pt;}
.ls40{letter-spacing:0.096000pt;}
.ls36{letter-spacing:0.115200pt;}
.ls8{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.144000pt;}
.ls33{letter-spacing:0.160000pt;}
.ls31{letter-spacing:0.176000pt;}
.ls11{letter-spacing:0.192000pt;}
.ls25{letter-spacing:0.211733pt;}
.ls10{letter-spacing:0.232960pt;}
.ls17{letter-spacing:0.233067pt;}
.lsb{letter-spacing:0.256000pt;}
.ls20{letter-spacing:0.271360pt;}
.ls5{letter-spacing:0.271467pt;}
.ls1b{letter-spacing:0.288000pt;}
.ls37{letter-spacing:0.320000pt;}
.ls3e{letter-spacing:0.392960pt;}
.ls2d{letter-spacing:0.431147pt;}
.ls21{letter-spacing:0.911360pt;}
.ls1d{letter-spacing:7.311360pt;}
.ls1f{letter-spacing:11.151360pt;}
.ls2b{letter-spacing:19.048875pt;}
.ls30{letter-spacing:20.628480pt;}
.ls34{letter-spacing:21.856000pt;}
.ls24{letter-spacing:24.004480pt;}
.ls23{letter-spacing:39.071147pt;}
.ls14{letter-spacing:39.471360pt;}
.ls32{letter-spacing:42.770688pt;}
.ls22{letter-spacing:42.816000pt;}
.ls29{letter-spacing:46.728875pt;}
.ls28{letter-spacing:46.774187pt;}
.lse{letter-spacing:56.891307pt;}
.ls7{letter-spacing:57.088000pt;}
.ls2c{letter-spacing:60.774187pt;}
.ls9{letter-spacing:85.226667pt;}
.lsa{letter-spacing:96.128000pt;}
.ls2a{letter-spacing:108.774187pt;}
.ls0{letter-spacing:585.066667pt;}
.ws1b{word-spacing:-82.126186pt;}
.ws19{word-spacing:-58.880000pt;}
.ws1e{word-spacing:-57.884928pt;}
.ws21{word-spacing:-53.111808pt;}
.ws26{word-spacing:-43.420928pt;}
.ws1c{word-spacing:-37.317120pt;}
.ws11{word-spacing:-32.325120pt;}
.ws9{word-spacing:-29.162880pt;}
.ws22{word-spacing:-24.183808pt;}
.ws1a{word-spacing:-24.154880pt;}
.ws2c{word-spacing:-23.679893pt;}
.ws20{word-spacing:-21.696000pt;}
.ws1{word-spacing:-20.816640pt;}
.ws0{word-spacing:-20.791573pt;}
.ws6{word-spacing:-20.783573pt;}
.ws24{word-spacing:-19.513984pt;}
.ws3{word-spacing:-18.048000pt;}
.ws5{word-spacing:-17.920000pt;}
.ws4{word-spacing:-17.792000pt;}
.ws2a{word-spacing:-17.265493pt;}
.wse{word-spacing:-16.640107pt;}
.ws10{word-spacing:-16.601707pt;}
.wsb{word-spacing:-16.368640pt;}
.ws7{word-spacing:-16.271573pt;}
.ws18{word-spacing:-16.233173pt;}
.wsc{word-spacing:-16.135573pt;}
.wsd{word-spacing:-16.097173pt;}
.wsf{word-spacing:-15.961707pt;}
.ws8{word-spacing:-15.728640pt;}
.ws12{word-spacing:-15.632640pt;}
.ws17{word-spacing:-15.456640pt;}
.ws2e{word-spacing:-14.767360pt;}
.ws33{word-spacing:-14.719893pt;}
.ws2d{word-spacing:-14.672427pt;}
.wsa{word-spacing:-14.656000pt;}
.ws34{word-spacing:-13.536000pt;}
.ws39{word-spacing:-13.344000pt;}
.ws14{word-spacing:-13.328000pt;}
.ws15{word-spacing:-13.248000pt;}
.ws38{word-spacing:-12.896000pt;}
.ws2b{word-spacing:-11.952640pt;}
.ws32{word-spacing:-11.920640pt;}
.ws31{word-spacing:-11.870507pt;}
.ws2f{word-spacing:-11.755307pt;}
.ws16{word-spacing:-11.136000pt;}
.ws13{word-spacing:-10.832000pt;}
.ws27{word-spacing:-10.783360pt;}
.ws30{word-spacing:-10.319360pt;}
.ws28{word-spacing:-9.744000pt;}
.ws29{word-spacing:-9.712000pt;}
.ws1f{word-spacing:-4.904789pt;}
.ws1d{word-spacing:-4.315659pt;}
.ws23{word-spacing:-0.798933pt;}
.ws2{word-spacing:0.000000pt;}
.ws25{word-spacing:1.753493pt;}
.ws35{word-spacing:225.456000pt;}
.ws37{word-spacing:312.576000pt;}
.ws36{word-spacing:314.976000pt;}
._5d{margin-left:-25.868672pt;}
._5e{margin-left:-23.957760pt;}
._5c{margin-left:-20.923392pt;}
._15{margin-left:-16.096000pt;}
._59{margin-left:-15.138238pt;}
._13{margin-left:-13.472000pt;}
._5a{margin-left:-12.082174pt;}
._58{margin-left:-10.828434pt;}
._16{margin-left:-9.717333pt;}
._12{margin-left:-8.188864pt;}
._5b{margin-left:-7.034899pt;}
._14{margin-left:-5.792000pt;}
._9{margin-left:-4.474703pt;}
._a{margin-left:-3.544465pt;}
._f{margin-left:-2.413786pt;}
._0{margin-left:-1.048470pt;}
._1{width:1.053846pt;}
._2{width:1.983381pt;}
._7{width:2.892348pt;}
._c{width:4.051173pt;}
._18{width:5.079494pt;}
._19{width:6.212140pt;}
._1c{width:7.583267pt;}
._1b{width:8.478897pt;}
._1d{width:9.644832pt;}
._1a{width:10.892800pt;}
._17{width:12.159573pt;}
._2f{width:13.155708pt;}
._e{width:14.055817pt;}
._d{width:14.955756pt;}
._22{width:17.947265pt;}
._23{width:18.842791pt;}
._29{width:20.176137pt;}
._b{width:21.491259pt;}
._33{width:22.775366pt;}
._2d{width:23.964278pt;}
._2e{width:25.365262pt;}
._1f{width:26.908278pt;}
._20{width:27.838988pt;}
._21{width:28.728798pt;}
._3a{width:29.669547pt;}
._26{width:30.698240pt;}
._3b{width:31.653483pt;}
._24{width:33.031503pt;}
._25{width:34.068601pt;}
._8{width:35.386703pt;}
._36{width:36.682181pt;}
._2b{width:37.683259pt;}
._2c{width:38.844619pt;}
._3c{width:39.855083pt;}
._50{width:41.535332pt;}
._10{width:42.450496pt;}
._11{width:44.033130pt;}
._3e{width:45.106610pt;}
._40{width:46.374876pt;}
._3f{width:48.211232pt;}
._1e{width:49.517903pt;}
._49{width:50.463296pt;}
._30{width:51.520059pt;}
._4c{width:52.525227pt;}
._4d{width:53.941333pt;}
._31{width:55.114181pt;}
._32{width:56.093884pt;}
._39{width:57.292364pt;}
._52{width:58.687919pt;}
._4f{width:60.870903pt;}
._34{width:62.294981pt;}
._3d{width:63.767040pt;}
._53{width:64.885878pt;}
._56{width:69.360640pt;}
._57{width:70.269139pt;}
._35{width:71.186156pt;}
._60{width:72.315733pt;}
._47{width:76.485356pt;}
._2a{width:77.749760pt;}
._4a{width:79.429356pt;}
._4b{width:80.583567pt;}
._42{width:81.666678pt;}
._44{width:85.595601pt;}
._37{width:90.616614pt;}
._38{width:91.793096pt;}
._28{width:93.913659pt;}
._43{width:97.387814pt;}
._48{width:98.481435pt;}
._45{width:99.507318pt;}
._27{width:102.263484pt;}
._46{width:110.164362pt;}
._55{width:122.153495pt;}
._41{width:126.816091pt;}
._51{width:128.118767pt;}
._4e{width:137.579702pt;}
._6{width:142.269376pt;}
._54{width:171.468423pt;}
._61{width:173.245177pt;}
._5f{width:175.488427pt;}
._64{width:177.319354pt;}
._3{width:255.090390pt;}
._5{width:312.720960pt;}
._6d{width:324.576000pt;}
._86{width:335.973333pt;}
._74{width:339.738667pt;}
._6a{width:351.264000pt;}
._8b{width:362.661333pt;}
._6b{width:366.426667pt;}
._77{width:377.418667pt;}
._6f{width:393.114667pt;}
._7b{width:404.106667pt;}
._62{width:649.471302pt;}
._4{width:811.322027pt;}
._89{width:899.322667pt;}
._72{width:928.634667pt;}
._88{width:937.194667pt;}
._7d{width:961.621333pt;}
._8a{width:986.490667pt;}
._69{width:989.210667pt;}
._87{width:997.338667pt;}
._76{width:1022.197333pt;}
._83{width:1050.650667pt;}
._85{width:1054.986667pt;}
._81{width:1056.842667pt;}
._6e{width:1058.426667pt;}
._82{width:1072.634667pt;}
._70{width:1082.858667pt;}
._79{width:1091.413333pt;}
._7a{width:1115.845333pt;}
._6c{width:1170.314667pt;}
._63{width:1197.754027pt;}
._78{width:1203.301333pt;}
._80{width:1247.066667pt;}
._7f{width:1279.274667pt;}
._71{width:1359.194667pt;}
._7e{width:1389.914667pt;}
._7c{width:1392.181333pt;}
._68{width:1409.690667pt;}
._73{width:1425.962667pt;}
._75{width:1442.677333pt;}
._65{width:1458.138667pt;}
._84{width:1467.546667pt;}
._66{width:1636.458667pt;}
._67{width:1718.154667pt;}
.fs23{font-size:5.120000pt;}
.fs2a{font-size:5.333333pt;}
.fs25{font-size:32.000000pt;}
.fs24{font-size:37.120000pt;}
.fs27{font-size:42.666667pt;}
.fs20{font-size:42.880000pt;}
.fs21{font-size:43.008000pt;}
.fs5{font-size:48.000000pt;}
.fs22{font-size:48.128000pt;}
.fs4{font-size:53.120000pt;}
.fs1f{font-size:53.248000pt;}
.fs26{font-size:53.333333pt;}
.fs29{font-size:58.666667pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs10{font-size:69.120000pt;}
.fs28{font-size:69.333333pt;}
.fs1{font-size:74.880000pt;}
.fs13{font-size:80.000000pt;}
.fs6{font-size:85.120000pt;}
.fs14{font-size:85.248000pt;}
.fs18{font-size:90.880000pt;}
.fs19{font-size:91.008000pt;}
.fsc{font-size:96.000000pt;}
.fsd{font-size:96.128000pt;}
.fse{font-size:101.120000pt;}
.fsf{font-size:101.248000pt;}
.fsa{font-size:106.880000pt;}
.fsb{font-size:107.008000pt;}
.fs1b{font-size:112.000000pt;}
.fs1a{font-size:112.128000pt;}
.fs2{font-size:117.120000pt;}
.fs8{font-size:128.000000pt;}
.fs11{font-size:165.120000pt;}
.fs12{font-size:165.248000pt;}
.fs16{font-size:192.000000pt;}
.fs1e{font-size:192.128000pt;}
.fs17{font-size:229.120000pt;}
.fs1d{font-size:234.880000pt;}
.fs1c{font-size:235.008000pt;}
.fs15{font-size:256.000000pt;}
.fs9{font-size:256.128000pt;}
.fs7{font-size:427.008000pt;}
.y148{bottom:-16.320000pt;}
.y0{bottom:0.000000pt;}
.y66e{bottom:1.600000pt;}
.y4d6{bottom:2.560000pt;}
.y4d8{bottom:2.720000pt;}
.y3a6{bottom:2.880000pt;}
.y3ac{bottom:2.920000pt;}
.y571{bottom:3.040000pt;}
.y577{bottom:3.200000pt;}
.y366{bottom:6.080000pt;}
.y13d{bottom:6.600000pt;}
.y585{bottom:8.013067pt;}
.y192{bottom:9.434667pt;}
.y18c{bottom:9.440000pt;}
.y194{bottom:9.466667pt;}
.y19b{bottom:9.600000pt;}
.y1a6{bottom:9.640000pt;}
.y4c7{bottom:10.400000pt;}
.y45b{bottom:10.560000pt;}
.y190{bottom:10.880000pt;}
.y40a{bottom:11.520000pt;}
.y411{bottom:11.546667pt;}
.y48e{bottom:11.560000pt;}
.y410{bottom:11.680000pt;}
.y6a9{bottom:11.720000pt;}
.y45e{bottom:12.800000pt;}
.y147{bottom:14.080000pt;}
.y20c{bottom:16.320000pt;}
.y4da{bottom:16.360000pt;}
.y135{bottom:16.480000pt;}
.y3a4{bottom:16.960000pt;}
.y3d7{bottom:17.760000pt;}
.y3f5{bottom:17.786667pt;}
.y3d9{bottom:17.920000pt;}
.y3a8{bottom:18.080000pt;}
.y3bb{bottom:18.120000pt;}
.y3a5{bottom:18.240000pt;}
.y513{bottom:18.266667pt;}
.y3ab{bottom:18.280000pt;}
.y57c{bottom:19.840000pt;}
.y582{bottom:19.994667pt;}
.y570{bottom:20.000000pt;}
.y575{bottom:20.040000pt;}
.y13c{bottom:21.320000pt;}
.y680{bottom:23.200000pt;}
.y365{bottom:26.120000pt;}
.y587{bottom:27.112000pt;}
.y6e2{bottom:27.546667pt;}
.y4b6{bottom:27.680000pt;}
.y1c6{bottom:30.080000pt;}
.y6e3{bottom:30.106667pt;}
.y1b6{bottom:30.240000pt;}
.y1bb{bottom:30.280000pt;}
.y20b{bottom:31.040000pt;}
.y140{bottom:31.200000pt;}
.y18f{bottom:31.514667pt;}
.y1aa{bottom:31.520000pt;}
.y36a{bottom:32.000000pt;}
.y3ee{bottom:33.440000pt;}
.y45a{bottom:33.600000pt;}
.y468{bottom:36.794667pt;}
.y462{bottom:36.800000pt;}
.y574{bottom:36.840000pt;}
.y579{bottom:36.960000pt;}
.y67f{bottom:37.120000pt;}
.y5c9{bottom:41.936000pt;}
.y4e6{bottom:44.000000pt;}
.y602{bottom:45.269333pt;}
.y4b0{bottom:48.320000pt;}
.y4ca{bottom:48.800000pt;}
.y4cd{bottom:48.826667pt;}
.y4cf{bottom:48.960000pt;}
.y1b7{bottom:50.880000pt;}
.y1d6{bottom:50.920000pt;}
.y1d8{bottom:51.040000pt;}
.y370{bottom:51.200000pt;}
.y4c3{bottom:51.232000pt;}
.y76{bottom:51.360000pt;}
.y369{bottom:52.000000pt;}
.y18e{bottom:52.154667pt;}
.y1a9{bottom:52.160000pt;}
.y1a3{bottom:53.000000pt;}
.y57e{bottom:53.600000pt;}
.y57b{bottom:53.626667pt;}
.y581{bottom:53.754667pt;}
.y576{bottom:53.760000pt;}
.y573{bottom:53.800000pt;}
.y5c8{bottom:56.936000pt;}
.y601{bottom:60.269333pt;}
.y504{bottom:69.120000pt;}
.y36f{bottom:69.152000pt;}
.y75{bottom:70.912000pt;}
.y1d7{bottom:71.680000pt;}
.y5c7{bottom:71.936000pt;}
.y1a2{bottom:73.640000pt;}
.y5c6{bottom:86.936000pt;}
.y55d{bottom:87.040000pt;}
.y495{bottom:87.072000pt;}
.y688{bottom:89.152000pt;}
.y53e{bottom:89.440000pt;}
.y449{bottom:89.472000pt;}
.y600{bottom:90.269333pt;}
.y532{bottom:91.200000pt;}
.y41c{bottom:91.232000pt;}
.y539{bottom:91.360000pt;}
.y56{bottom:91.392000pt;}
.ye9{bottom:91.552000pt;}
.y189{bottom:93.472000pt;}
.y544{bottom:93.600000pt;}
.y469{bottom:93.632000pt;}
.y515{bottom:93.920000pt;}
.y3b1{bottom:93.952000pt;}
.y133{bottom:94.112000pt;}
.y56a{bottom:94.240000pt;}
.y4c0{bottom:94.272000pt;}
.y1c1{bottom:95.552000pt;}
.y28a{bottom:95.712000pt;}
.y216{bottom:96.512000pt;}
.y66f{bottom:97.792000pt;}
.y137{bottom:98.592000pt;}
.y53d{bottom:100.800000pt;}
.y448{bottom:100.832000pt;}
.y4d4{bottom:100.992000pt;}
.y14a{bottom:101.152000pt;}
.y5c5{bottom:101.936000pt;}
.y51c{bottom:102.400000pt;}
.y14c{bottom:102.432000pt;}
.y1ee{bottom:102.912000pt;}
.y1db{bottom:103.232000pt;}
.y531{bottom:103.360000pt;}
.y41b{bottom:103.392000pt;}
.y12c{bottom:103.552000pt;}
.y2c{bottom:104.192000pt;}
.y50c{bottom:104.800000pt;}
.y38c{bottom:104.832000pt;}
.y18d{bottom:104.992000pt;}
.y5ff{bottom:105.269333pt;}
.y543{bottom:105.440000pt;}
.y463{bottom:105.472000pt;}
.y4f7{bottom:106.592000pt;}
.y678{bottom:107.392000pt;}
.y514{bottom:109.600000pt;}
.y17d{bottom:109.632000pt;}
.y55{bottom:109.792000pt;}
.y167{bottom:111.552000pt;}
.y4d3{bottom:112.352000pt;}
.y66d{bottom:113.602667pt;}
.y687{bottom:113.632000pt;}
.y523{bottom:114.240000pt;}
.y3e4{bottom:114.272000pt;}
.y289{bottom:115.232000pt;}
.y67a{bottom:115.680000pt;}
.y68c{bottom:115.706667pt;}
.y583{bottom:115.712000pt;}
.y681{bottom:115.720000pt;}
.y212{bottom:115.872000pt;}
.y349{bottom:116.480000pt;}
.ybb{bottom:116.512000pt;}
.y538{bottom:116.800000pt;}
.y432{bottom:116.832000pt;}
.y5c4{bottom:116.936000pt;}
.y199{bottom:116.960000pt;}
.ye8{bottom:116.992000pt;}
.y52b{bottom:117.440000pt;}
.y400{bottom:117.472000pt;}
.y227{bottom:118.432000pt;}
.y188{bottom:118.912000pt;}
.y2f0{bottom:119.040000pt;}
.y132{bottom:119.392000pt;}
.y233{bottom:119.872000pt;}
.y639{bottom:120.269333pt;}
.y314{bottom:120.320000pt;}
.y1c0{bottom:120.992000pt;}
.y97{bottom:121.312000pt;}
.y215{bottom:121.952000pt;}
.y2b{bottom:122.592000pt;}
.y6c7{bottom:122.912000pt;}
.y55c{bottom:123.040000pt;}
.y494{bottom:123.072000pt;}
.y275{bottom:123.712000pt;}
.y12b{bottom:123.872000pt;}
.y318{bottom:124.800000pt;}
.y322{bottom:125.280000pt;}
.y4a5{bottom:125.312000pt;}
.y149{bottom:126.432000pt;}
.y260{bottom:127.552000pt;}
.y14b{bottom:127.872000pt;}
.y32b{bottom:128.160000pt;}
.y54{bottom:128.192000pt;}
.y1da{bottom:128.512000pt;}
.y66c{bottom:128.602667pt;}
.y10c{bottom:128.832000pt;}
.y1ed{bottom:129.632000pt;}
.y580{bottom:130.112000pt;}
.y569{bottom:130.240000pt;}
.y4bf{bottom:130.272000pt;}
.y348{bottom:130.400000pt;}
.y5c3{bottom:131.936000pt;}
.y51b{bottom:132.960000pt;}
.y3cc{bottom:132.992000pt;}
.y307{bottom:133.760000pt;}
.y364{bottom:134.120000pt;}
.y211{bottom:134.426667pt;}
.y288{bottom:134.746667pt;}
.y17c{bottom:134.906667pt;}
.y2de{bottom:135.200000pt;}
.y5fe{bottom:135.269333pt;}
.y50b{bottom:135.360000pt;}
.y38b{bottom:135.386667pt;}
.y166{bottom:136.826667pt;}
.y198{bottom:137.760000pt;}
.y226{bottom:137.946667pt;}
.y686{bottom:138.106667pt;}
.y316{bottom:138.400000pt;}
.y522{bottom:139.840000pt;}
.y2b9{bottom:139.866667pt;}
.y473{bottom:140.666667pt;}
.y479{bottom:140.680000pt;}
.y512{bottom:140.960000pt;}
.y2a{bottom:140.986667pt;}
.yba{bottom:141.786667pt;}
.y464{bottom:141.914667pt;}
.y45c{bottom:141.920000pt;}
.y474{bottom:141.946667pt;}
.y47a{bottom:141.960000pt;}
.ye7{bottom:142.266667pt;}
.y4f6{bottom:142.586667pt;}
.y558{bottom:142.880000pt;}
.y20f{bottom:143.066667pt;}
.y274{bottom:143.226667pt;}
.y66b{bottom:143.602667pt;}
.y187{bottom:144.186667pt;}
.y131{bottom:144.666667pt;}
.y2ef{bottom:144.960000pt;}
.y232{bottom:145.146667pt;}
.y1bf{bottom:146.266667pt;}
.y53{bottom:146.586667pt;}
.y5c2{bottom:146.936000pt;}
.y214{bottom:147.226667pt;}
.y191{bottom:147.706667pt;}
.y52a{bottom:148.000000pt;}
.y3ff{bottom:148.026667pt;}
.y6c6{bottom:148.186667pt;}
.y12a{bottom:149.146667pt;}
.y309{bottom:149.346667pt;}
.y5fd{bottom:150.269333pt;}
.y355{bottom:150.400000pt;}
.yc5{bottom:151.706667pt;}
.y431{bottom:152.666667pt;}
.y210{bottom:152.826667pt;}
.y47f{bottom:153.626667pt;}
.y1d9{bottom:153.786667pt;}
.y10b{bottom:154.106667pt;}
.y25f{bottom:154.266667pt;}
.y1ec{bottom:154.906667pt;}
.y467{bottom:156.666667pt;}
.y6ae{bottom:157.146667pt;}
.y225{bottom:157.466667pt;}
.y66a{bottom:158.602667pt;}
.y493{bottom:159.066667pt;}
.y2dd{bottom:159.200000pt;}
.y29{bottom:159.386667pt;}
.y4e5{bottom:159.546667pt;}
.y17b{bottom:160.346667pt;}
.y5c1{bottom:161.936000pt;}
.y165{bottom:162.106667pt;}
.y32a{bottom:162.240000pt;}
.y685{bottom:162.586667pt;}
.y273{bottom:162.746667pt;}
.y3cb{bottom:163.386667pt;}
.y2fa{bottom:164.800000pt;}
.y52{bottom:164.986667pt;}
.y5fc{bottom:165.269333pt;}
.y38a{bottom:165.466667pt;}
.y321{bottom:165.760000pt;}
.y145{bottom:166.266667pt;}
.yb9{bottom:167.066667pt;}
.ye6{bottom:167.546667pt;}
.y2bd{bottom:167.933333pt;}
.y1d2{bottom:168.186667pt;}
.y677{bottom:168.346667pt;}
.y2b8{bottom:168.826667pt;}
.y6ad{bottom:168.986667pt;}
.y18b{bottom:169.146667pt;}
.y186{bottom:169.466667pt;}
.y130{bottom:169.946667pt;}
.y231{bottom:170.426667pt;}
.y2ee{bottom:170.906667pt;}
.y347{bottom:171.066667pt;}
.y1be{bottom:171.546667pt;}
.y96{bottom:171.866667pt;}
.y447{bottom:172.186667pt;}
.y3b0{bottom:172.346667pt;}
.y209{bottom:172.506667pt;}
.y4a4{bottom:172.826667pt;}
.y159{bottom:172.986667pt;}
.y669{bottom:173.602667pt;}
.y287{bottom:173.946667pt;}
.y129{bottom:174.426667pt;}
.y6c5{bottom:174.586667pt;}
.y360{bottom:174.906667pt;}
.y1dd{bottom:176.520000pt;}
.y5c0{bottom:176.936000pt;}
.y224{bottom:176.986667pt;}
.yc4{bottom:177.146667pt;}
.y28{bottom:177.786667pt;}
.y4d2{bottom:178.106667pt;}
.y3fe{bottom:178.586667pt;}
.y557{bottom:178.906667pt;}
.y10a{bottom:179.386667pt;}
.y25e{bottom:179.546667pt;}
.y1eb{bottom:180.186667pt;}
.y638{bottom:180.269333pt;}
.y2d1{bottom:180.986667pt;}
.y313{bottom:181.626667pt;}
.y272{bottom:182.266667pt;}
.y466{bottom:182.586667pt;}
.y51{bottom:183.386667pt;}
.y17a{bottom:185.626667pt;}
.y6da{bottom:186.426667pt;}
.y684{bottom:187.066667pt;}
.y164{bottom:187.386667pt;}
.y354{bottom:188.346667pt;}
.y41a{bottom:188.506667pt;}
.y430{bottom:188.666667pt;}
.y320{bottom:188.826667pt;}
.y47e{bottom:189.466667pt;}
.y3e3{bottom:190.906667pt;}
.y144{bottom:191.546667pt;}
.y5bf{bottom:191.936000pt;}
.yb8{bottom:192.506667pt;}
.ye5{bottom:192.826667pt;}
.y286{bottom:193.466667pt;}
.y3ca{bottom:193.946667pt;}
.y389{bottom:194.266667pt;}
.y185{bottom:194.746667pt;}
.y492{bottom:194.906667pt;}
.y2c6{bottom:195.066667pt;}
.y12f{bottom:195.226667pt;}
.y5fb{bottom:195.269333pt;}
.y230{bottom:195.866667pt;}
.y27{bottom:196.186667pt;}
.y223{bottom:196.506667pt;}
.y1bd{bottom:196.826667pt;}
.y95{bottom:197.146667pt;}
.y2b7{bottom:197.626667pt;}
.y208{bottom:197.786667pt;}
.y57f{bottom:198.266667pt;}
.y633{bottom:198.773333pt;}
.y676{bottom:198.906667pt;}
.y128{bottom:199.706667pt;}
.y6c4{bottom:199.866667pt;}
.y50{bottom:201.786667pt;}
.y2dc{bottom:202.106667pt;}
.y4be{bottom:202.266667pt;}
.yc3{bottom:202.426667pt;}
.y24d{bottom:202.746667pt;}
.y697{bottom:203.066667pt;}
.y668{bottom:203.602667pt;}
.y3af{bottom:203.706667pt;}
.y109{bottom:204.666667pt;}
.y25d{bottom:204.986667pt;}
.y1ea{bottom:205.466667pt;}
.y18a{bottom:206.906667pt;}
.y63b{bottom:206.936000pt;}
.y2d0{bottom:207.546667pt;}
.y446{bottom:208.186667pt;}
.y465{bottom:208.666667pt;}
.y3fd{bottom:209.146667pt;}
.y169{bottom:209.626667pt;}
.y5fa{bottom:210.269333pt;}
.y179{bottom:210.906667pt;}
.y308{bottom:211.226667pt;}
.y346{bottom:211.706667pt;}
.y163{bottom:212.666667pt;}
.y285{bottom:212.986667pt;}
.y6e9{bottom:213.626667pt;}
.y632{bottom:213.773333pt;}
.y35f{bottom:214.106667pt;}
.y4d1{bottom:214.146667pt;}
.y26{bottom:214.586667pt;}
.y4f5{bottom:214.626667pt;}
.y317{bottom:214.746667pt;}
.y556{bottom:214.906667pt;}
.y4e4{bottom:215.426667pt;}
.y222{bottom:216.026667pt;}
.y3e2{bottom:216.506667pt;}
.y143{bottom:216.826667pt;}
.yb7{bottom:217.786667pt;}
.ye4{bottom:218.106667pt;}
.y1d3{bottom:218.600000pt;}
.y667{bottom:218.602667pt;}
.y74{bottom:220.026667pt;}
.y4f{bottom:220.186667pt;}
.y4a3{bottom:220.346667pt;}
.y12e{bottom:220.506667pt;}
.y6ac{bottom:220.986667pt;}
.y2bc{bottom:221.213333pt;}
.y271{bottom:221.306667pt;}
.y5be{bottom:221.936000pt;}
.y312{bottom:221.946667pt;}
.y1bc{bottom:222.106667pt;}
.y94{bottom:222.426667pt;}
.y2ed{bottom:222.746667pt;}
.y207{bottom:223.066667pt;}
.y388{bottom:223.226667pt;}
.y47d{bottom:223.546667pt;}
.y3c9{bottom:224.506667pt;}
.y42f{bottom:224.666667pt;}
.y127{bottom:224.986667pt;}
.y6c3{bottom:225.146667pt;}
.y637{bottom:225.269333pt;}
.y345{bottom:225.626667pt;}
.y353{bottom:226.106667pt;}
.y2b6{bottom:226.586667pt;}
.y306{bottom:226.906667pt;}
.y696{bottom:227.546667pt;}
.yc2{bottom:227.706667pt;}
.y24c{bottom:228.026667pt;}
.y4d0{bottom:228.706667pt;}
.y631{bottom:228.773333pt;}
.y491{bottom:228.986667pt;}
.y31f{bottom:229.306667pt;}
.y675{bottom:229.466667pt;}
.y108{bottom:229.946667pt;}
.y329{bottom:230.106667pt;}
.y25c{bottom:230.266667pt;}
.y1e9{bottom:230.746667pt;}
.y2c5{bottom:231.866667pt;}
.y284{bottom:232.506667pt;}
.y25{bottom:232.986667pt;}
.y666{bottom:233.602667pt;}
.y2f2{bottom:234.586667pt;}
.y3ae{bottom:235.066667pt;}
.y221{bottom:235.546667pt;}
.y178{bottom:236.186667pt;}
.y1b3{bottom:236.506667pt;}
.y63a{bottom:236.936000pt;}
.y162{bottom:237.946667pt;}
.y4bd{bottom:238.106667pt;}
.y4e{bottom:238.586667pt;}
.y3fc{bottom:239.546667pt;}
.y5f9{bottom:240.269333pt;}
.y270{bottom:240.826667pt;}
.y490{bottom:240.986667pt;}
.y142{bottom:242.106667pt;}
.yb6{bottom:243.066667pt;}
.ye3{bottom:243.386667pt;}
.y4e3{bottom:243.746667pt;}
.y630{bottom:243.773333pt;}
.y445{bottom:244.186667pt;}
.y73{bottom:244.986667pt;}
.y2db{bottom:245.146667pt;}
.y184{bottom:245.306667pt;}
.y12d{bottom:245.946667pt;}
.y6ab{bottom:246.906667pt;}
.y22f{bottom:247.386667pt;}
.y93{bottom:247.706667pt;}
.y206{bottom:248.346667pt;}
.y665{bottom:248.602667pt;}
.y2ec{bottom:248.666667pt;}
.y555{bottom:248.986667pt;}
.y6e8{bottom:249.626667pt;}
.y126{bottom:250.266667pt;}
.y6c2{bottom:250.426667pt;}
.y4f4{bottom:250.466667pt;}
.y24{bottom:251.386667pt;}
.y1d5{bottom:251.706667pt;}
.y5bd{bottom:251.936000pt;}
.y283{bottom:252.026667pt;}
.yc1{bottom:252.986667pt;}
.y24b{bottom:253.306667pt;}
.y2cf{bottom:254.906667pt;}
.y220{bottom:255.066667pt;}
.y107{bottom:255.226667pt;}
.y5f8{bottom:255.269333pt;}
.y2b5{bottom:255.386667pt;}
.y25b{bottom:255.546667pt;}
.y305{bottom:255.866667pt;}
.y1e8{bottom:256.026667pt;}
.y4d{bottom:256.986667pt;}
.y62f{bottom:258.773333pt;}
.y134{bottom:259.546667pt;}
.y674{bottom:260.026667pt;}
.y26f{bottom:260.506667pt;}
.y42e{bottom:260.666667pt;}
.y550{bottom:260.826667pt;}
.y1b4{bottom:261.320000pt;}
.y177{bottom:261.466667pt;}
.y683{bottom:262.266667pt;}
.y311{bottom:262.426667pt;}
.y6d9{bottom:262.906667pt;}
.y161{bottom:263.386667pt;}
.y664{bottom:263.602667pt;}
.y352{bottom:263.866667pt;}
.y328{bottom:264.026667pt;}
.y4f3{bottom:265.186667pt;}
.y35e{bottom:265.786667pt;}
.y344{bottom:266.106667pt;}
.y3ad{bottom:266.266667pt;}
.y57d{bottom:266.466667pt;}
.y48f{bottom:266.906667pt;}
.y5bc{bottom:266.936000pt;}
.y141{bottom:267.386667pt;}
.y3e1{bottom:267.706667pt;}
.yb5{bottom:268.346667pt;}
.ye2{bottom:268.666667pt;}
.y23{bottom:269.786667pt;}
.y72{bottom:270.106667pt;}
.y5f7{bottom:270.269333pt;}
.y183{bottom:270.586667pt;}
.y31e{bottom:271.386667pt;}
.y282{bottom:271.546667pt;}
.y4e2{bottom:272.066667pt;}
.y6aa{bottom:272.826667pt;}
.y92{bottom:272.986667pt;}
.y205{bottom:273.626667pt;}
.y62e{bottom:273.773333pt;}
.y4bc{bottom:274.106667pt;}
.y21f{bottom:274.586667pt;}
.y351{bottom:275.066667pt;}
.y4ce{bottom:275.266667pt;}
.y4c{bottom:275.386667pt;}
.y125{bottom:275.546667pt;}
.y6c1{bottom:275.706667pt;}
.yc0{bottom:278.266667pt;}
.y35d{bottom:278.426667pt;}
.y1ba{bottom:278.586667pt;}
.y2cb{bottom:279.386667pt;}
.y2f9{bottom:279.706667pt;}
.y26e{bottom:280.026667pt;}
.y444{bottom:280.186667pt;}
.y106{bottom:280.506667pt;}
.y25a{bottom:280.826667pt;}
.y387{bottom:280.986667pt;}
.y1e7{bottom:281.306667pt;}
.y146{bottom:281.626667pt;}
.y5bb{bottom:281.936000pt;}
.y1c4{bottom:282.600000pt;}
.y2ce{bottom:283.706667pt;}
.y2b4{bottom:284.186667pt;}
.y63f{bottom:285.269333pt;}
.y3c8{bottom:285.626667pt;}
.y419{bottom:285.946667pt;}
.y176{bottom:286.746667pt;}
.y22{bottom:288.186667pt;}
.y160{bottom:288.666667pt;}
.y62d{bottom:288.773333pt;}
.y673{bottom:290.586667pt;}
.y281{bottom:291.066667pt;}
.y4f2{bottom:291.106667pt;}
.y331{bottom:291.226667pt;}
.y48d{bottom:292.826667pt;}
.y3e0{bottom:293.146667pt;}
.y663{bottom:293.602667pt;}
.yb4{bottom:293.626667pt;}
.y4b{bottom:293.786667pt;}
.ye1{bottom:293.946667pt;}
.y21e{bottom:294.266667pt;}
.y71{bottom:295.226667pt;}
.y13b{bottom:295.706667pt;}
.y182{bottom:295.866667pt;}
.y42d{bottom:296.506667pt;}
.y5ba{bottom:296.936000pt;}
.y3aa{bottom:297.626667pt;}
.y327{bottom:297.946667pt;}
.y91{bottom:298.266667pt;}
.y6a8{bottom:298.746667pt;}
.y2bb{bottom:298.786667pt;}
.y204{bottom:298.906667pt;}
.y304{bottom:299.546667pt;}
.y26d{bottom:299.586667pt;}
.y4e1{bottom:300.226667pt;}
.y5f6{bottom:300.269333pt;}
.y337{bottom:300.506667pt;}
.y529{bottom:300.666667pt;}
.y3fb{bottom:300.706667pt;}
.y124{bottom:300.866667pt;}
.y158{bottom:301.026667pt;}
.y6d8{bottom:301.186667pt;}
.y6c0{bottom:301.986667pt;}
.y310{bottom:302.906667pt;}
.ybf{bottom:303.586667pt;}
.y62c{bottom:303.773333pt;}
.y24a{bottom:303.906667pt;}
.y2c4{bottom:304.826667pt;}
.y682{bottom:305.026667pt;}
.y105{bottom:305.826667pt;}
.y695{bottom:305.986667pt;}
.y259{bottom:306.146667pt;}
.y343{bottom:306.746667pt;}
.y1e6{bottom:306.786667pt;}
.y541{bottom:307.226667pt;}
.y21{bottom:307.266667pt;}
.y2f8{bottom:307.866667pt;}
.y662{bottom:308.602667pt;}
.y22e{bottom:309.506667pt;}
.y2fb{bottom:309.666667pt;}
.y50a{bottom:309.786667pt;}
.y386{bottom:309.826667pt;}
.y568{bottom:310.106667pt;}
.y4bb{bottom:310.146667pt;}
.y280{bottom:310.626667pt;}
.y5b9{bottom:311.936000pt;}
.y554{bottom:312.026667pt;}
.y4a{bottom:312.226667pt;}
.y47c{bottom:312.706667pt;}
.y350{bottom:312.866667pt;}
.y2b3{bottom:313.186667pt;}
.y31d{bottom:313.666667pt;}
.y21d{bottom:313.826667pt;}
.y15f{bottom:313.986667pt;}
.y1d4{bottom:314.466667pt;}
.y562{bottom:315.226667pt;}
.y4a2{bottom:315.266667pt;}
.y5f5{bottom:315.269333pt;}
.y51a{bottom:316.026667pt;}
.y3c7{bottom:316.066667pt;}
.y368{bottom:316.666667pt;}
.y175{bottom:317.026667pt;}
.y35c{bottom:317.666667pt;}
.y521{bottom:318.746667pt;}
.y62b{bottom:318.773333pt;}
.y3df{bottom:318.786667pt;}
.yb3{bottom:318.946667pt;}
.y26c{bottom:319.106667pt;}
.ye0{bottom:319.266667pt;}
.y70{bottom:320.226667pt;}
.y1b9{bottom:320.706667pt;}
.y672{bottom:321.026667pt;}
.y181{bottom:321.186667pt;}
.y6e7{bottom:321.666667pt;}
.y418{bottom:321.826667pt;}
.y530{bottom:321.946667pt;}
.y303{bottom:323.266667pt;}
.y90{bottom:323.586667pt;}
.y661{bottom:323.602667pt;}
.y203{bottom:324.226667pt;}
.y6a7{bottom:324.866667pt;}
.y330{bottom:325.186667pt;}
.y2ca{bottom:326.146667pt;}
.y123{bottom:326.306667pt;}
.y336{bottom:326.466667pt;}
.y5b8{bottom:326.936000pt;}
.y6bf{bottom:327.266667pt;}
.y694{bottom:327.426667pt;}
.y2d5{bottom:328.386667pt;}
.y4e0{bottom:328.546667pt;}
.y20{bottom:328.706667pt;}
.ybe{bottom:328.866667pt;}
.y511{bottom:328.986667pt;}
.y3a9{bottom:329.026667pt;}
.y249{bottom:329.186667pt;}
.y27f{bottom:330.146667pt;}
.y5f4{bottom:330.269333pt;}
.y49{bottom:330.626667pt;}
.y2da{bottom:331.106667pt;}
.y528{bottom:331.226667pt;}
.y104{bottom:331.266667pt;}
.y258{bottom:331.426667pt;}
.y326{bottom:331.906667pt;}
.y1e5{bottom:332.066667pt;}
.y537{bottom:332.506667pt;}
.y42c{bottom:332.546667pt;}
.y21c{bottom:333.346667pt;}
.y62a{bottom:333.773333pt;}
.y57a{bottom:334.626667pt;}
.y22d{bottom:334.946667pt;}
.y2f7{bottom:336.066667pt;}
.y4cc{bottom:337.346667pt;}
.y553{bottom:337.946667pt;}
.y660{bottom:338.602667pt;}
.y26b{bottom:338.626667pt;}
.y509{bottom:338.746667pt;}
.y2c3{bottom:338.786667pt;}
.y15e{bottom:339.266667pt;}
.y6d7{bottom:339.426667pt;}
.y5b7{bottom:341.936000pt;}
.y2b2{bottom:341.986667pt;}
.y30f{bottom:343.266667pt;}
.y520{bottom:344.346667pt;}
.y3de{bottom:344.386667pt;}
.ydf{bottom:344.706667pt;}
.y55b{bottom:344.826667pt;}
.y48c{bottom:344.866667pt;}
.yb2{bottom:345.186667pt;}
.y5f3{bottom:345.269333pt;}
.y6f{bottom:345.346667pt;}
.y567{bottom:346.106667pt;}
.y4ba{bottom:346.146667pt;}
.y519{bottom:346.586667pt;}
.y3c6{bottom:346.626667pt;}
.y33a{bottom:347.106667pt;}
.y342{bottom:347.426667pt;}
.y180{bottom:347.586667pt;}
.y693{bottom:348.706667pt;}
.y629{bottom:348.773333pt;}
.y48{bottom:349.026667pt;}
.y202{bottom:349.666667pt;}
.y1f{bottom:350.146667pt;}
.y34f{bottom:350.626667pt;}
.y6a6{bottom:350.786667pt;}
.y122{bottom:351.586667pt;}
.y53c{bottom:352.026667pt;}
.y443{bottom:352.066667pt;}
.y2eb{bottom:352.386667pt;}
.y6be{bottom:352.546667pt;}
.y21b{bottom:352.866667pt;}
.y65f{bottom:353.602667pt;}
.ybd{bottom:354.146667pt;}
.y248{bottom:354.466667pt;}
.y561{bottom:355.546667pt;}
.y4a1{bottom:355.586667pt;}
.y31c{bottom:355.906667pt;}
.y103{bottom:356.546667pt;}
.y257{bottom:356.706667pt;}
.y27e{bottom:356.866667pt;}
.y5b6{bottom:356.936000pt;}
.y2c7{bottom:357.026667pt;}
.y2cd{bottom:357.186667pt;}
.y6e6{bottom:357.666667pt;}
.y52f{bottom:357.786667pt;}
.y417{bottom:357.826667pt;}
.y536{bottom:357.946667pt;}
.y42b{bottom:357.986667pt;}
.y26a{bottom:358.146667pt;}
.y1e4{bottom:358.306667pt;}
.y542{bottom:358.426667pt;}
.y461{bottom:358.466667pt;}
.y5f2{bottom:360.269333pt;}
.y510{bottom:360.346667pt;}
.y335{bottom:360.386667pt;}
.y22c{bottom:361.186667pt;}
.y527{bottom:361.626667pt;}
.y3fa{bottom:361.666667pt;}
.y1b8{bottom:362.786667pt;}
.y628{bottom:363.773333pt;}
.y552{bottom:364.026667pt;}
.y2f6{bottom:364.226667pt;}
.y15d{bottom:364.546667pt;}
.y47b{bottom:364.706667pt;}
.y4f1{bottom:365.026667pt;}
.y325{bottom:365.826667pt;}
.y302{bottom:366.946667pt;}
.y47{bottom:367.266667pt;}
.y560{bottom:367.386667pt;}
.y4a0{bottom:367.426667pt;}
.y508{bottom:367.546667pt;}
.y385{bottom:367.586667pt;}
.y35b{bottom:369.346667pt;}
.yde{bottom:369.986667pt;}
.y692{bottom:370.146667pt;}
.y6e{bottom:370.466667pt;}
.y48b{bottom:370.786667pt;}
.y2b1{bottom:370.946667pt;}
.y32f{bottom:371.546667pt;}
.y1e{bottom:371.746667pt;}
.y5b5{bottom:371.936000pt;}
.y21a{bottom:372.386667pt;}
.y2c2{bottom:372.706667pt;}
.y2d9{bottom:374.146667pt;}
.y8f{bottom:374.306667pt;}
.y201{bottom:374.946667pt;}
.y36c{bottom:375.266667pt;}
.y5f1{bottom:375.269333pt;}
.yb1{bottom:375.426667pt;}
.y2d4{bottom:375.906667pt;}
.y6a5{bottom:376.706667pt;}
.y121{bottom:376.866667pt;}
.y3c5{bottom:377.186667pt;}
.y269{bottom:377.666667pt;}
.y6bd{bottom:377.986667pt;}
.y2ea{bottom:378.306667pt;}
.y627{bottom:378.773333pt;}
.ybc{bottom:379.426667pt;}
.y247{bottom:379.746667pt;}
.y102{bottom:381.826667pt;}
.y256{bottom:381.986667pt;}
.y27d{bottom:382.146667pt;}
.y65e{bottom:383.602667pt;}
.y30e{bottom:383.746667pt;}
.y46{bottom:384.066667pt;}
.y460{bottom:384.546667pt;}
.y4df{bottom:385.053333pt;}
.y22b{bottom:386.626667pt;}
.y5b4{bottom:386.936000pt;}
.y501{bottom:387.453333pt;}
.y1e3{bottom:387.586667pt;}
.y341{bottom:387.906667pt;}
.y442{bottom:388.066667pt;}
.y34e{bottom:388.386667pt;}
.y2f5{bottom:389.666667pt;}
.y551{bottom:389.986667pt;}
.y5f0{bottom:390.269333pt;}
.y301{bottom:390.626667pt;}
.y3f9{bottom:390.946667pt;}
.y691{bottom:391.426667pt;}
.y3a7{bottom:391.746667pt;}
.y219{bottom:391.906667pt;}
.y1d{bottom:393.186667pt;}
.y49f{bottom:393.346667pt;}
.y6e5{bottom:393.506667pt;}
.y626{bottom:393.773333pt;}
.y42a{bottom:393.826667pt;}
.y334{bottom:394.306667pt;}
.y339{bottom:394.466667pt;}
.y15c{bottom:394.786667pt;}
.ydd{bottom:395.266667pt;}
.y6d{bottom:395.426667pt;}
.y384{bottom:396.386667pt;}
.y48a{bottom:396.706667pt;}
.y268{bottom:397.186667pt;}
.y65d{bottom:398.602667pt;}
.y4cb{bottom:399.293333pt;}
.y8e{bottom:399.586667pt;}
.y2b0{bottom:399.746667pt;}
.y200{bottom:400.226667pt;}
.y45{bottom:401.026667pt;}
.y4f0{bottom:401.053333pt;}
.y340{bottom:401.826667pt;}
.y5b3{bottom:401.936000pt;}
.y120{bottom:402.146667pt;}
.y578{bottom:402.653333pt;}
.y6a4{bottom:402.786667pt;}
.y3f8{bottom:402.946667pt;}
.y136{bottom:403.106667pt;}
.y416{bottom:403.746667pt;}
.y2e9{bottom:404.226667pt;}
.y315{bottom:404.386667pt;}
.y2c1{bottom:404.706667pt;}
.yb0{bottom:404.866667pt;}
.y246{bottom:405.186667pt;}
.y5ef{bottom:405.269333pt;}
.y101{bottom:407.106667pt;}
.y255{bottom:407.266667pt;}
.y27c{bottom:407.426667pt;}
.y2ba{bottom:407.613333pt;}
.y3c4{bottom:407.746667pt;}
.y35a{bottom:408.546667pt;}
.y625{bottom:408.773333pt;}
.y45f{bottom:410.466667pt;}
.y218{bottom:411.426667pt;}
.y671{bottom:412.706667pt;}
.y1e2{bottom:412.866667pt;}
.y4de{bottom:413.373333pt;}
.y65c{bottom:413.602667pt;}
.y1c{bottom:414.626667pt;}
.y1d1{bottom:415.106667pt;}
.y54f{bottom:415.906667pt;}
.y6d6{bottom:416.066667pt;}
.y32e{bottom:416.186667pt;}
.y500{bottom:416.253333pt;}
.y267{bottom:416.706667pt;}
.y5b2{bottom:416.936000pt;}
.y2d8{bottom:417.186667pt;}
.y67e{bottom:417.506667pt;}
.y44{bottom:417.826667pt;}
.y4b9{bottom:417.986667pt;}
.y49e{bottom:419.426667pt;}
.y2e4{bottom:420.186667pt;}
.y333{bottom:420.226667pt;}
.y5ee{bottom:420.269333pt;}
.y6c{bottom:420.546667pt;}
.y31b{bottom:421.506667pt;}
.y489{bottom:422.786667pt;}
.y3a3{bottom:422.946667pt;}
.y2d3{bottom:423.266667pt;}
.y174{bottom:423.426667pt;}
.y624{bottom:423.773333pt;}
.y441{bottom:424.066667pt;}
.y30d{bottom:424.226667pt;}
.y8d{bottom:424.866667pt;}
.y383{bottom:425.346667pt;}
.y1ff{bottom:425.506667pt;}
.y2c9{bottom:426.146667pt;}
.y34d{bottom:426.306667pt;}
.y11f{bottom:427.426667pt;}
.y2af{bottom:428.546667pt;}
.y65b{bottom:428.602667pt;}
.y6a3{bottom:428.706667pt;}
.y6bc{bottom:429.506667pt;}
.y415{bottom:429.666667pt;}
.yaf{bottom:430.146667pt;}
.y245{bottom:430.466667pt;}
.y217{bottom:430.946667pt;}
.y5b1{bottom:431.936000pt;}
.y100{bottom:432.386667pt;}
.y4b8{bottom:432.546667pt;}
.y254{bottom:432.706667pt;}
.y27b{bottom:432.866667pt;}
.y68b{bottom:433.506667pt;}
.y324{bottom:433.666667pt;}
.y3f7{bottom:433.986667pt;}
.y300{bottom:434.786667pt;}
.y5ed{bottom:435.269333pt;}
.y1b{bottom:436.066667pt;}
.y266{bottom:436.226667pt;}
.y45d{bottom:436.386667pt;}
.y4ef{bottom:437.053333pt;}
.y472{bottom:437.346667pt;}
.y36b{bottom:437.666667pt;}
.y1d0{bottom:438.146667pt;}
.y623{bottom:438.773333pt;}
.y67d{bottom:438.786667pt;}
.y4dd{bottom:441.533333pt;}
.y670{bottom:441.826667pt;}
.y338{bottom:441.986667pt;}
.y33f{bottom:442.466667pt;}
.y43{bottom:443.106667pt;}
.y65a{bottom:443.602667pt;}
.y3dd{bottom:443.746667pt;}
.y4ff{bottom:445.053333pt;}
.y49d{bottom:445.346667pt;}
.y6b{bottom:445.666667pt;}
.ydc{bottom:445.826667pt;}
.y4c9{bottom:446.013333pt;}
.y5b0{bottom:446.936000pt;}
.y359{bottom:447.746667pt;}
.y173{bottom:448.706667pt;}
.y440{bottom:449.506667pt;}
.y8c{bottom:450.146667pt;}
.y5ec{bottom:450.269333pt;}
.y1fe{bottom:450.786667pt;}
.y4ee{bottom:451.613333pt;}
.y2c0{bottom:452.093333pt;}
.y2cc{bottom:452.253333pt;}
.y11e{bottom:452.706667pt;}
.y622{bottom:453.773333pt;}
.y3c3{bottom:453.826667pt;}
.y382{bottom:454.146667pt;}
.y6d5{bottom:454.306667pt;}
.y6a2{bottom:454.626667pt;}
.yae{bottom:455.426667pt;}
.y414{bottom:455.586667pt;}
.y244{bottom:455.746667pt;}
.y2e8{bottom:456.093333pt;}
.y33e{bottom:456.413333pt;}
.y1a{bottom:456.866667pt;}
.y2ae{bottom:457.506667pt;}
.yff{bottom:457.666667pt;}
.y253{bottom:457.986667pt;}
.y27a{bottom:458.146667pt;}
.y367{bottom:458.466667pt;}
.y659{bottom:458.602667pt;}
.y4b7{bottom:458.626667pt;}
.y2d7{bottom:460.093333pt;}
.y67c{bottom:460.226667pt;}
.y358{bottom:460.253333pt;}
.y2e3{bottom:460.453333pt;}
.y32d{bottom:460.826667pt;}
.y5af{bottom:461.936000pt;}
.y33b{bottom:462.213333pt;}
.y459{bottom:462.306667pt;}
.y54a{bottom:462.626667pt;}
.y1cf{bottom:463.426667pt;}
.y31a{bottom:463.773333pt;}
.y34c{bottom:464.093333pt;}
.y22a{bottom:464.386667pt;}
.y30c{bottom:464.573333pt;}
.y3f6{bottom:464.866667pt;}
.y5eb{bottom:465.269333pt;}
.y265{bottom:465.506667pt;}
.y6bb{bottom:466.306667pt;}
.y2f4{bottom:467.453333pt;}
.y1b5{bottom:467.586667pt;}
.y323{bottom:467.613333pt;}
.y42{bottom:468.386667pt;}
.y621{bottom:468.773333pt;}
.y3a2{bottom:469.506667pt;}
.y4dc{bottom:469.853333pt;}
.y429{bottom:470.306667pt;}
.y6a{bottom:470.626667pt;}
.y2d2{bottom:470.813333pt;}
.ydb{bottom:471.106667pt;}
.y49c{bottom:471.266667pt;}
.y2c8{bottom:473.053333pt;}
.y658{bottom:473.602667pt;}
.y172{bottom:473.986667pt;}
.y4fe{bottom:474.013333pt;}
.y488{bottom:474.626667pt;}
.y3dc{bottom:474.786667pt;}
.y19{bottom:475.266667pt;}
.y690{bottom:475.586667pt;}
.y1fd{bottom:476.066667pt;}
.y8b{bottom:476.386667pt;}
.y5ae{bottom:476.936000pt;}
.y11d{bottom:477.986667pt;}
.y2ff{bottom:478.493333pt;}
.y6e4{bottom:480.066667pt;}
.y5ea{bottom:480.269333pt;}
.yad{bottom:480.706667pt;}
.y243{bottom:481.026667pt;}
.y67b{bottom:481.506667pt;}
.y413{bottom:481.666667pt;}
.y2e7{bottom:482.013333pt;}
.yfe{bottom:482.946667pt;}
.y381{bottom:483.106667pt;}
.y252{bottom:483.266667pt;}
.y279{bottom:483.426667pt;}
.y620{bottom:483.773333pt;}
.y4b5{bottom:484.546667pt;}
.y3c2{bottom:485.186667pt;}
.y43f{bottom:485.346667pt;}
.y2ad{bottom:486.306667pt;}
.y478{bottom:488.546667pt;}
.y657{bottom:488.602667pt;}
.y1ce{bottom:488.706667pt;}
.y5ad{bottom:491.936000pt;}
.y6d4{bottom:492.546667pt;}
.y18{bottom:493.666667pt;}
.y4ed{bottom:493.693333pt;}
.y264{bottom:494.786667pt;}
.y5e9{bottom:495.269333pt;}
.y69{bottom:495.746667pt;}
.y428{bottom:496.226667pt;}
.yda{bottom:496.386667pt;}
.y68f{bottom:497.026667pt;}
.y33d{bottom:497.053333pt;}
.y49b{bottom:497.346667pt;}
.y4db{bottom:498.173333pt;}
.y3a1{bottom:498.306667pt;}
.y61f{bottom:498.773333pt;}
.y171{bottom:499.266667pt;}
.y357{bottom:499.453333pt;}
.y2bf{bottom:499.613333pt;}
.y229{bottom:500.226667pt;}
.y487{bottom:500.546667pt;}
.y1fc{bottom:501.346667pt;}
.y34b{bottom:501.853333pt;}
.y20a{bottom:501.986667pt;}
.y2fe{bottom:502.173333pt;}
.y6ba{bottom:502.306667pt;}
.y6a1{bottom:502.626667pt;}
.y2e2{bottom:502.693333pt;}
.y4fd{bottom:502.813333pt;}
.y679{bottom:502.946667pt;}
.y2d6{bottom:503.133333pt;}
.y11c{bottom:503.266667pt;}
.y656{bottom:503.602667pt;}
.y2ac{bottom:504.386667pt;}
.y30b{bottom:505.053333pt;}
.y319{bottom:505.373333pt;}
.y8a{bottom:505.666667pt;}
.yac{bottom:505.986667pt;}
.y2f3{bottom:506.173333pt;}
.y242{bottom:506.306667pt;}
.y5ac{bottom:506.936000pt;}
.y412{bottom:507.586667pt;}
.y2e6{bottom:507.933333pt;}
.yfd{bottom:508.226667pt;}
.y251{bottom:508.546667pt;}
.y278{bottom:508.706667pt;}
.y5e8{bottom:510.269333pt;}
.y32c{bottom:510.946667pt;}
.y33c{bottom:510.973333pt;}
.y380{bottom:511.906667pt;}
.y356{bottom:511.933333pt;}
.y17{bottom:512.066667pt;}
.y34a{bottom:513.053333pt;}
.y2e5{bottom:513.413333pt;}
.y61e{bottom:513.773333pt;}
.y54e{bottom:513.826667pt;}
.y1cd{bottom:513.986667pt;}
.y477{bottom:514.466667pt;}
.y3a0{bottom:516.386667pt;}
.y3c1{bottom:516.546667pt;}
.y68e{bottom:518.306667pt;}
.y655{bottom:518.602667pt;}
.y41{bottom:518.946667pt;}
.y68{bottom:520.866667pt;}
.y43e{bottom:521.186667pt;}
.yd9{bottom:521.666667pt;}
.y5ab{bottom:521.936000pt;}
.y4ec{bottom:522.013333pt;}
.y427{bottom:522.306667pt;}
.y2ab{bottom:522.626667pt;}
.y49a{bottom:523.266667pt;}
.y263{bottom:524.066667pt;}
.y170{bottom:524.546667pt;}
.y5e7{bottom:525.269333pt;}
.y228{bottom:525.666667pt;}
.y1b2{bottom:526.146667pt;}
.y1fb{bottom:526.626667pt;}
.y3f4{bottom:526.786667pt;}
.y6b9{bottom:527.746667pt;}
.y11b{bottom:528.546667pt;}
.y157{bottom:528.706667pt;}
.y61d{bottom:528.773333pt;}
.y16{bottom:530.466667pt;}
.y6d3{bottom:530.786667pt;}
.y89{bottom:530.946667pt;}
.y458{bottom:531.106667pt;}
.yab{bottom:531.266667pt;}
.y241{bottom:531.586667pt;}
.y4fc{bottom:531.773333pt;}
.y6e1{bottom:532.066667pt;}
.y2fd{bottom:532.960000pt;}
.yfc{bottom:533.506667pt;}
.y250{bottom:533.826667pt;}
.y51f{bottom:536.546667pt;}
.y3db{bottom:536.573333pt;}
.y5aa{bottom:536.936000pt;}
.y277{bottom:537.213333pt;}
.y6a0{bottom:538.653333pt;}
.y572{bottom:538.973333pt;}
.y1cc{bottom:539.453333pt;}
.y68d{bottom:539.773333pt;}
.y54d{bottom:539.906667pt;}
.y4d9{bottom:540.253333pt;}
.y5e6{bottom:540.269333pt;}
.y476{bottom:540.573333pt;}
.y507{bottom:540.706667pt;}
.y37f{bottom:540.733333pt;}
.y2aa{bottom:540.893333pt;}
.y61c{bottom:543.773333pt;}
.y40{bottom:544.413333pt;}
.y2e1{bottom:544.800000pt;}
.y50f{bottom:545.346667pt;}
.y39f{bottom:545.373333pt;}
.y67{bottom:545.853333pt;}
.y13f{bottom:546.333333pt;}
.yd8{bottom:546.973333pt;}
.y518{bottom:547.906667pt;}
.y3c0{bottom:547.933333pt;}
.y654{bottom:548.602667pt;}
.y566{bottom:548.706667pt;}
.y4b4{bottom:548.733333pt;}
.y15{bottom:548.893333pt;}
.y55f{bottom:549.186667pt;}
.y1b1{bottom:549.213333pt;}
.y4eb{bottom:550.213333pt;}
.y1fa{bottom:551.933333pt;}
.y5a9{bottom:551.936000pt;}
.y262{bottom:553.533333pt;}
.y1c3{bottom:553.853333pt;}
.y11a{bottom:554.013333pt;}
.y4c8{bottom:554.693333pt;}
.y16f{bottom:554.813333pt;}
.y5e5{bottom:555.269333pt;}
.y88{bottom:556.413333pt;}
.yaa{bottom:556.573333pt;}
.y240{bottom:556.893333pt;}
.y53b{bottom:557.186667pt;}
.y43d{bottom:557.213333pt;}
.y526{bottom:557.666667pt;}
.y3f3{bottom:557.693333pt;}
.y332{bottom:557.760000pt;}
.y61b{bottom:558.773333pt;}
.yfb{bottom:558.973333pt;}
.y2be{bottom:559.266667pt;}
.y52e{bottom:559.426667pt;}
.y40f{bottom:559.453333pt;}
.y276{bottom:560.413333pt;}
.y4fb{bottom:560.613333pt;}
.y68a{bottom:561.053333pt;}
.y565{bottom:563.266667pt;}
.y4b3{bottom:563.293333pt;}
.y653{bottom:563.602667pt;}
.y24f{bottom:564.093333pt;}
.y1e1{bottom:564.733333pt;}
.y54c{bottom:565.826667pt;}
.y475{bottom:566.493333pt;}
.y5a8{bottom:566.936000pt;}
.y540{bottom:567.106667pt;}
.y457{bottom:567.133333pt;}
.y14{bottom:567.293333pt;}
.y51e{bottom:567.586667pt;}
.y3da{bottom:567.613333pt;}
.y535{bottom:568.386667pt;}
.y426{bottom:568.413333pt;}
.y4d7{bottom:568.453333pt;}
.y6d2{bottom:569.053333pt;}
.y506{bottom:569.666667pt;}
.y3f{bottom:569.693333pt;}
.y2a9{bottom:569.853333pt;}
.y5e4{bottom:570.269333pt;}
.y66{bottom:570.973333pt;}
.yd7{bottom:572.413333pt;}
.y61a{bottom:573.773333pt;}
.y50e{bottom:574.306667pt;}
.y39e{bottom:574.333333pt;}
.y1b0{bottom:574.493333pt;}
.y55a{bottom:574.626667pt;}
.y486{bottom:574.653333pt;}
.y16e{bottom:574.813333pt;}
.y55e{bottom:575.106667pt;}
.y499{bottom:575.133333pt;}
.y1f9{bottom:577.373333pt;}
.y4ea{bottom:578.533333pt;}
.y652{bottom:578.602667pt;}
.y517{bottom:579.266667pt;}
.y119{bottom:579.293333pt;}
.y534{bottom:580.226667pt;}
.y425{bottom:580.253333pt;}
.y87{bottom:581.693333pt;}
.ya9{bottom:581.853333pt;}
.y2fc{bottom:581.920000pt;}
.y5a7{bottom:581.936000pt;}
.y23f{bottom:582.173333pt;}
.y261{bottom:582.813333pt;}
.y4d5{bottom:583.013333pt;}
.y24e{bottom:584.093333pt;}
.yfa{bottom:584.253333pt;}
.y5e3{bottom:585.269333pt;}
.y52d{bottom:585.506667pt;}
.y40e{bottom:585.533333pt;}
.y13{bottom:585.693333pt;}
.y2e0{bottom:587.040000pt;}
.y2a8{bottom:587.933333pt;}
.y3f2{bottom:588.573333pt;}
.y619{bottom:588.773333pt;}
.y4b2{bottom:589.213333pt;}
.y4fa{bottom:589.573333pt;}
.y1e0{bottom:590.013333pt;}
.y54b{bottom:591.773333pt;}
.y39d{bottom:592.253333pt;}
.y471{bottom:592.413333pt;}
.y43c{bottom:593.213333pt;}
.y651{bottom:593.602667pt;}
.y3e{bottom:594.973333pt;}
.y1cb{bottom:595.933333pt;}
.y65{bottom:596.093333pt;}
.y5a6{bottom:596.936000pt;}
.yd6{bottom:597.693333pt;}
.y37e{bottom:598.493333pt;}
.y1af{bottom:599.773333pt;}
.y69f{bottom:600.093333pt;}
.y5e2{bottom:600.269333pt;}
.y498{bottom:601.213333pt;}
.y4c6{bottom:601.413333pt;}
.y1f8{bottom:602.653333pt;}
.y456{bottom:602.973333pt;}
.y618{bottom:603.773333pt;}
.y12{bottom:604.093333pt;}
.y118{bottom:604.573333pt;}
.y17e{bottom:605.533333pt;}
.y6b8{bottom:605.693333pt;}
.y2a7{bottom:606.013333pt;}
.y424{bottom:606.173333pt;}
.y86{bottom:606.973333pt;}
.ya8{bottom:607.133333pt;}
.y56f{bottom:607.173333pt;}
.y6d1{bottom:607.293333pt;}
.y23e{bottom:607.453333pt;}
.y650{bottom:608.602667pt;}
.yf9{bottom:609.533333pt;}
.y485{bottom:610.493333pt;}
.y3bf{bottom:610.653333pt;}
.y40d{bottom:611.453333pt;}
.y5a5{bottom:611.936000pt;}
.y4b1{bottom:615.133333pt;}
.y5e1{bottom:615.269333pt;}
.y30a{bottom:616.000000pt;}
.y1df{bottom:616.253333pt;}
.y549{bottom:617.693333pt;}
.y4f9{bottom:618.373333pt;}
.y617{bottom:618.773333pt;}
.y3f1{bottom:619.613333pt;}
.y3d{bottom:620.253333pt;}
.y4e9{bottom:620.613333pt;}
.y64{bottom:621.053333pt;}
.y39c{bottom:621.373333pt;}
.yd5{bottom:622.973333pt;}
.y11{bottom:623.133333pt;}
.y64f{bottom:623.602667pt;}
.y2a6{bottom:624.253333pt;}
.y2f1{bottom:624.546667pt;}
.y1ae{bottom:625.053333pt;}
.y689{bottom:625.213333pt;}
.y69e{bottom:625.373333pt;}
.y5a4{bottom:626.936000pt;}
.y497{bottom:627.133333pt;}
.y37d{bottom:627.453333pt;}
.y1f7{bottom:627.933333pt;}
.y2df{bottom:629.120000pt;}
.y43b{bottom:629.213333pt;}
.y3d8{bottom:629.373333pt;}
.y117{bottom:629.853333pt;}
.y5e0{bottom:630.269333pt;}
.y6b7{bottom:630.973333pt;}
.y85{bottom:632.253333pt;}
.ya7{bottom:632.573333pt;}
.y23d{bottom:632.893333pt;}
.y616{bottom:633.773333pt;}
.yf8{bottom:634.813333pt;}
.y6e0{bottom:636.733333pt;}
.y40c{bottom:637.373333pt;}
.y1ca{bottom:638.013333pt;}
.y64e{bottom:638.602667pt;}
.y455{bottom:638.973333pt;}
.y4af{bottom:641.213333pt;}
.y3be{bottom:641.853333pt;}
.y5a3{bottom:641.936000pt;}
.y213{bottom:643.293333pt;}
.y10{bottom:644.573333pt;}
.y5df{bottom:645.269333pt;}
.y3c{bottom:645.533333pt;}
.y63{bottom:646.173333pt;}
.y484{bottom:646.493333pt;}
.y4c5{bottom:647.013333pt;}
.y4f8{bottom:647.173333pt;}
.yd4{bottom:648.253333pt;}
.y4e8{bottom:648.773333pt;}
.y1ad{bottom:650.333333pt;}
.y3f0{bottom:650.493333pt;}
.y39b{bottom:650.653333pt;}
.y496{bottom:653.053333pt;}
.y168{bottom:653.213333pt;}
.y2a5{bottom:653.373333pt;}
.y64d{bottom:653.602667pt;}
.y116{bottom:655.133333pt;}
.y37c{bottom:656.253333pt;}
.y56e{bottom:656.613333pt;}
.y5a2{bottom:656.936000pt;}
.y84{bottom:657.533333pt;}
.ya6{bottom:657.853333pt;}
.y23c{bottom:658.173333pt;}
.y1dc{bottom:659.933333pt;}
.yf7{bottom:660.093333pt;}
.y5de{bottom:660.269333pt;}
.y3d6{bottom:660.413333pt;}
.y470{bottom:661.213333pt;}
.y6df{bottom:662.653333pt;}
.y40b{bottom:663.453333pt;}
.y615{bottom:663.773333pt;}
.y454{bottom:664.413333pt;}
.y1a8{bottom:664.893333pt;}
.y43a{bottom:665.053333pt;}
.yf{bottom:666.013333pt;}
.y6b6{bottom:667.773333pt;}
.y64c{bottom:668.602667pt;}
.y3b{bottom:670.813333pt;}
.y62{bottom:671.133333pt;}
.y2a4{bottom:671.293333pt;}
.y483{bottom:671.933333pt;}
.y5a1{bottom:671.936000pt;}
.y3bd{bottom:673.213333pt;}
.yd3{bottom:673.533333pt;}
.y5dd{bottom:675.269333pt;}
.y20e{bottom:676.253333pt;}
.y39a{bottom:676.733333pt;}
.y16d{bottom:678.493333pt;}
.y614{bottom:678.773333pt;}
.y1c9{bottom:679.933333pt;}
.y423{bottom:680.253333pt;}
.y115{bottom:680.413333pt;}
.y3ef{bottom:681.373333pt;}
.y83{bottom:682.813333pt;}
.ya5{bottom:683.133333pt;}
.y23b{bottom:683.453333pt;}
.y64b{bottom:683.602667pt;}
.y6d0{bottom:683.933333pt;}
.y4c4{bottom:684.293333pt;}
.y37b{bottom:685.213333pt;}
.yf6{bottom:685.373333pt;}
.y4e7{bottom:685.413333pt;}
.y56d{bottom:685.573333pt;}
.y1ac{bottom:686.173333pt;}
.y548{bottom:686.493333pt;}
.y5a0{bottom:686.936000pt;}
.ye{bottom:687.613333pt;}
.y6de{bottom:688.573333pt;}
.y409{bottom:689.373333pt;}
.y2a3{bottom:689.533333pt;}
.y453{bottom:689.693333pt;}
.y5dc{bottom:690.269333pt;}
.y3d5{bottom:691.293333pt;}
.y399{bottom:693.053333pt;}
.y613{bottom:693.773333pt;}
.y3a{bottom:696.093333pt;}
.y61{bottom:696.253333pt;}
.y46f{bottom:697.053333pt;}
.y482{bottom:697.213333pt;}
.y64a{bottom:698.602667pt;}
.yd2{bottom:698.813333pt;}
.y439{bottom:701.053333pt;}
.y59f{bottom:701.936000pt;}
.y6b5{bottom:703.613333pt;}
.y1f6{bottom:703.773333pt;}
.y16c{bottom:703.933333pt;}
.y56c{bottom:703.973333pt;}
.y3bc{bottom:704.573333pt;}
.y5db{bottom:705.269333pt;}
.y114{bottom:705.693333pt;}
.y4c2{bottom:707.173333pt;}
.y1ab{bottom:707.613333pt;}
.y2a2{bottom:707.773333pt;}
.y82{bottom:708.093333pt;}
.ya4{bottom:708.413333pt;}
.y23a{bottom:708.733333pt;}
.y612{bottom:708.773333pt;}
.y20d{bottom:710.493333pt;}
.yf5{bottom:710.653333pt;}
.y3ed{bottom:712.413333pt;}
.y649{bottom:713.602667pt;}
.y37a{bottom:714.013333pt;}
.y59e{bottom:716.936000pt;}
.y5da{bottom:720.269333pt;}
.y39{bottom:721.373333pt;}
.y398{bottom:721.853333pt;}
.y1c8{bottom:722.013333pt;}
.y6cf{bottom:722.173333pt;}
.y547{bottom:722.493333pt;}
.y69d{bottom:722.653333pt;}
.y1de{bottom:722.813333pt;}
.y611{bottom:723.773333pt;}
.yd1{bottom:724.093333pt;}
.y452{bottom:725.533333pt;}
.y4ae{bottom:726.013333pt;}
.y648{bottom:728.602667pt;}
.y1a1{bottom:728.893333pt;}
.y1f5{bottom:729.053333pt;}
.y16b{bottom:729.213333pt;}
.y113{bottom:730.973333pt;}
.y17f{bottom:731.933333pt;}
.y59d{bottom:731.936000pt;}
.y56b{bottom:732.800000pt;}
.y46e{bottom:733.053333pt;}
.y81{bottom:733.373333pt;}
.ya3{bottom:733.693333pt;}
.y239{bottom:734.013333pt;}
.y4c1{bottom:735.200000pt;}
.y5d9{bottom:735.269333pt;}
.yf4{bottom:735.933333pt;}
.y2a1{bottom:736.733333pt;}
.y438{bottom:737.053333pt;}
.y408{bottom:737.373333pt;}
.y3d4{bottom:737.693333pt;}
.y610{bottom:738.773333pt;}
.y397{bottom:739.933333pt;}
.yd{bottom:742.013333pt;}
.y379{bottom:742.813333pt;}
.y1c7{bottom:743.453333pt;}
.y647{bottom:743.602667pt;}
.y60{bottom:746.333333pt;}
.y38{bottom:746.653333pt;}
.y59c{bottom:746.936000pt;}
.y69c{bottom:747.933333pt;}
.yd0{bottom:749.373333pt;}
.y5d8{bottom:750.269333pt;}
.y1a7{bottom:750.333333pt;}
.y60f{bottom:753.773333pt;}
.y1f4{bottom:754.333333pt;}
.y2a0{bottom:754.813333pt;}
.y112{bottom:756.253333pt;}
.y156{bottom:756.413333pt;}
.y546{bottom:758.333333pt;}
.y46d{bottom:758.493333pt;}
.y646{bottom:758.602667pt;}
.y80{bottom:758.653333pt;}
.ya2{bottom:758.973333pt;}
.y16a{bottom:759.293333pt;}
.y6ce{bottom:760.413333pt;}
.yc{bottom:761.213333pt;}
.y451{bottom:761.533333pt;}
.y4ad{bottom:761.853333pt;}
.y59b{bottom:761.936000pt;}
.y5d7{bottom:765.269333pt;}
.y6b4{bottom:765.853333pt;}
.y3d3{bottom:766.653333pt;}
.y422{bottom:766.813333pt;}
.y3ba{bottom:767.293333pt;}
.y60e{bottom:768.773333pt;}
.y396{bottom:769.053333pt;}
.y5f{bottom:771.453333pt;}
.y1a5{bottom:771.613333pt;}
.y378{bottom:771.773333pt;}
.y37{bottom:772.093333pt;}
.y437{bottom:773.053333pt;}
.y69b{bottom:773.213333pt;}
.y407{bottom:773.373333pt;}
.y525{bottom:774.173333pt;}
.y3ec{bottom:774.213333pt;}
.ycf{bottom:774.693333pt;}
.y564{bottom:776.573333pt;}
.y4ac{bottom:776.613333pt;}
.y63e{bottom:776.844000pt;}
.y59a{bottom:776.936000pt;}
.y1f3{bottom:779.653333pt;}
.y5d6{bottom:780.269333pt;}
.y645{bottom:781.280000pt;}
.y111{bottom:781.733333pt;}
.yb{bottom:782.693333pt;}
.y545{bottom:783.773333pt;}
.y46c{bottom:783.813333pt;}
.y29f{bottom:783.973333pt;}
.y7f{bottom:784.133333pt;}
.ya1{bottom:784.293333pt;}
.y238{bottom:784.613333pt;}
.y1c5{bottom:785.573333pt;}
.yf3{bottom:786.693333pt;}
.y50d{bottom:786.973333pt;}
.y395{bottom:787.013333pt;}
.y636{bottom:788.510667pt;}
.y63d{bottom:791.844000pt;}
.y1a4{bottom:793.093333pt;}
.y559{bottom:794.493333pt;}
.y481{bottom:794.533333pt;}
.y5d5{bottom:795.269333pt;}
.y51d{bottom:795.453333pt;}
.y3d2{bottom:795.493333pt;}
.y363{bottom:795.773333pt;}
.y5e{bottom:796.613333pt;}
.y36{bottom:797.413333pt;}
.y53f{bottom:797.533333pt;}
.y450{bottom:797.573333pt;}
.y69a{bottom:798.533333pt;}
.y6cd{bottom:798.693333pt;}
.y60d{bottom:798.773333pt;}
.y52c{bottom:798.813333pt;}
.y406{bottom:798.853333pt;}
.y599{bottom:799.613333pt;}
.yce{bottom:800.133333pt;}
.y505{bottom:800.573333pt;}
.y377{bottom:800.613333pt;}
.y29e{bottom:801.893333pt;}
.y563{bottom:802.493333pt;}
.y4ab{bottom:802.533333pt;}
.y524{bottom:802.973333pt;}
.y3eb{bottom:803.013333pt;}
.y635{bottom:803.510667pt;}
.y421{bottom:803.973333pt;}
.ya{bottom:804.133333pt;}
.y1f2{bottom:805.093333pt;}
.y593{bottom:806.844000pt;}
.y110{bottom:807.013333pt;}
.y155{bottom:808.933333pt;}
.y436{bottom:809.093333pt;}
.y7e{bottom:809.413333pt;}
.ya0{bottom:809.573333pt;}
.y237{bottom:809.893333pt;}
.yf2{bottom:811.973333pt;}
.y3d1{bottom:813.573333pt;}
.y3b9{bottom:813.733333pt;}
.y60c{bottom:813.773333pt;}
.y197{bottom:814.373333pt;}
.y644{bottom:815.177333pt;}
.y394{bottom:816.133333pt;}
.y5d4{bottom:817.946667pt;}
.y634{bottom:818.510667pt;}
.y46b{bottom:819.653333pt;}
.y480{bottom:819.813333pt;}
.y29d{bottom:820.133333pt;}
.y5d{bottom:821.573333pt;}
.y592{bottom:821.844000pt;}
.y35{bottom:822.693333pt;}
.y6dd{bottom:823.973333pt;}
.y405{bottom:824.133333pt;}
.ycd{bottom:825.413333pt;}
.y9{bottom:825.573333pt;}
.y6b3{bottom:827.333333pt;}
.y4aa{bottom:828.453333pt;}
.y60b{bottom:828.773333pt;}
.y376{bottom:829.573333pt;}
.y643{bottom:830.177333pt;}
.y1f1{bottom:830.373333pt;}
.y3d0{bottom:831.813333pt;}
.y3ea{bottom:831.973333pt;}
.y10f{bottom:832.293333pt;}
.y13e{bottom:833.253333pt;}
.y44f{bottom:833.413333pt;}
.y598{bottom:833.510667pt;}
.y699{bottom:834.373333pt;}
.y9f{bottom:834.853333pt;}
.y154{bottom:835.173333pt;}
.y7d{bottom:835.653333pt;}
.y1a0{bottom:835.813333pt;}
.y591{bottom:836.844000pt;}
.y6cc{bottom:836.933333pt;}
.yf1{bottom:837.253333pt;}
.y420{bottom:841.093333pt;}
.y3b8{bottom:842.533333pt;}
.y60a{bottom:843.773333pt;}
.y393{bottom:844.933333pt;}
.y46a{bottom:845.093333pt;}
.y642{bottom:845.177333pt;}
.y5c{bottom:846.693333pt;}
.y8{bottom:847.013333pt;}
.y34{bottom:847.973333pt;}
.y597{bottom:848.510667pt;}
.y29c{bottom:849.093333pt;}
.y3e9{bottom:849.893333pt;}
.y6dc{bottom:850.053333pt;}
.ycc{bottom:850.693333pt;}
.y590{bottom:851.844000pt;}
.y6b2{bottom:852.613333pt;}
.y4a9{bottom:854.373333pt;}
.y1f0{bottom:855.653333pt;}
.y19f{bottom:857.093333pt;}
.y10e{bottom:857.573333pt;}
.y375{bottom:858.373333pt;}
.y609{bottom:858.773333pt;}
.y44e{bottom:859.013333pt;}
.y5d3{bottom:859.613333pt;}
.y404{bottom:859.973333pt;}
.y9e{bottom:860.293333pt;}
.y153{bottom:860.613333pt;}
.y3cf{bottom:860.773333pt;}
.yf0{bottom:862.533333pt;}
.y596{bottom:863.510667pt;}
.y1c2{bottom:864.773333pt;}
.y7c{bottom:864.933333pt;}
.y58f{bottom:866.844000pt;}
.y29b{bottom:867.173333pt;}
.y641{bottom:867.854667pt;}
.y7{bottom:868.453333pt;}
.y698{bottom:870.213333pt;}
.y291{bottom:870.373333pt;}
.y5b{bottom:871.813333pt;}
.y33{bottom:873.253333pt;}
.y392{bottom:873.893333pt;}
.y58c{bottom:874.225333pt;}
.y5d2{bottom:874.613333pt;}
.y6cb{bottom:875.173333pt;}
.ycb{bottom:875.973333pt;}
.y15b{bottom:876.933333pt;}
.y6b1{bottom:878.053333pt;}
.y19e{bottom:878.533333pt;}
.y3e8{bottom:879.013333pt;}
.y4a8{bottom:880.453333pt;}
.y1ef{bottom:880.933333pt;}
.y58e{bottom:881.844000pt;}
.y13a{bottom:882.853333pt;}
.y10d{bottom:883.813333pt;}
.y29a{bottom:885.413333pt;}
.y9d{bottom:885.573333pt;}
.y152{bottom:885.893333pt;}
.y595{bottom:886.188000pt;}
.y374{bottom:887.333333pt;}
.yef{bottom:887.813333pt;}
.y290{bottom:888.773333pt;}
.y58b{bottom:889.344000pt;}
.y3b7{bottom:889.573333pt;}
.y5d1{bottom:889.613333pt;}
.y6{bottom:889.893333pt;}
.y7b{bottom:890.213333pt;}
.y391{bottom:891.813333pt;}
.y44d{bottom:894.693333pt;}
.y403{bottom:895.813333pt;}
.y5a{bottom:896.773333pt;}
.y32{bottom:898.533333pt;}
.y19d{bottom:899.813333pt;}
.y6db{bottom:901.893333pt;}
.yca{bottom:902.213333pt;}
.y41f{bottom:902.373333pt;}
.y6b0{bottom:903.333333pt;}
.y299{bottom:903.653333pt;}
.y608{bottom:903.773333pt;}
.y58a{bottom:904.461333pt;}
.y58d{bottom:904.521333pt;}
.y5d0{bottom:904.613333pt;}
.y15a{bottom:906.213333pt;}
.y28f{bottom:907.173333pt;}
.y3ce{bottom:907.653333pt;}
.y3e7{bottom:907.813333pt;}
.y139{bottom:908.133333pt;}
.y640{bottom:910.044000pt;}
.y390{bottom:910.053333pt;}
.y9c{bottom:910.853333pt;}
.y151{bottom:911.173333pt;}
.y5{bottom:911.493333pt;}
.y236{bottom:912.133333pt;}
.yee{bottom:913.093333pt;}
.y6ca{bottom:913.573333pt;}
.y7a{bottom:915.493333pt;}
.y373{bottom:916.133333pt;}
.y3b6{bottom:918.533333pt;}
.y607{bottom:918.773333pt;}
.y5cf{bottom:919.613333pt;}
.y19c{bottom:921.253333pt;}
.y402{bottom:921.413333pt;}
.y298{bottom:921.733333pt;}
.y59{bottom:921.893333pt;}
.y31{bottom:923.813333pt;}
.y28e{bottom:925.573333pt;}
.y3e6{bottom:925.893333pt;}
.y41e{bottom:927.813333pt;}
.y38f{bottom:928.293333pt;}
.y594{bottom:928.377333pt;}
.y4a7{bottom:928.453333pt;}
.y6af{bottom:928.613333pt;}
.y44c{bottom:930.693333pt;}
.yc9{bottom:931.493333pt;}
.y4{bottom:932.293333pt;}
.y606{bottom:933.773333pt;}
.y138{bottom:934.373333pt;}
.y5ce{bottom:934.613333pt;}
.y9b{bottom:936.133333pt;}
.y150{bottom:936.453333pt;}
.y3b5{bottom:936.613333pt;}
.y3cd{bottom:936.773333pt;}
.y235{bottom:937.413333pt;}
.yed{bottom:938.373333pt;}
.y297{bottom:939.973333pt;}
.y79{bottom:940.773333pt;}
.y435{bottom:942.213333pt;}
.y19a{bottom:942.533333pt;}
.y28d{bottom:943.973333pt;}
.y372{bottom:945.413333pt;}
.y589{bottom:946.710667pt;}
.y58{bottom:947.013333pt;}
.y605{bottom:948.773333pt;}
.y30{bottom:949.093333pt;}
.y5cd{bottom:949.613333pt;}
.y3{bottom:950.693333pt;}
.y6c9{bottom:951.813333pt;}
.y3b4{bottom:954.693333pt;}
.y3e5{bottom:954.853333pt;}
.yc8{bottom:956.773333pt;}
.y401{bottom:957.093333pt;}
.y38e{bottom:957.253333pt;}
.y296{bottom:958.213333pt;}
.y9a{bottom:961.413333pt;}
.y14f{bottom:961.733333pt;}
.y28c{bottom:962.373333pt;}
.y234{bottom:962.693333pt;}
.y41d{bottom:963.493333pt;}
.yec{bottom:963.653333pt;}
.y604{bottom:963.773333pt;}
.y196{bottom:963.973333pt;}
.y5cc{bottom:964.613333pt;}
.y4a6{bottom:965.573333pt;}
.y78{bottom:966.053333pt;}
.y44b{bottom:966.693333pt;}
.y2{bottom:969.093333pt;}
.y362{bottom:969.253333pt;}
.y57{bottom:972.933333pt;}
.y2f{bottom:974.373333pt;}
.y371{bottom:975.813333pt;}
.y295{bottom:976.453333pt;}
.y434{bottom:978.213333pt;}
.y603{bottom:978.773333pt;}
.y5cb{bottom:979.613333pt;}
.y28b{bottom:980.773333pt;}
.yc7{bottom:982.053333pt;}
.y3b3{bottom:983.813333pt;}
.y1{bottom:984.133333pt;}
.y195{bottom:985.413333pt;}
.y38d{bottom:986.533333pt;}
.y99{bottom:986.693333pt;}
.y14e{bottom:987.973333pt;}
.y6c8{bottom:988.773333pt;}
.yeb{bottom:988.933333pt;}
.y2e{bottom:991.493333pt;}
.y588{bottom:992.234667pt;}
.y63c{bottom:993.773333pt;}
.y294{bottom:994.533333pt;}
.y77{bottom:994.693333pt;}
.y586{bottom:997.193333pt;}
.y193{bottom:1006.693333pt;}
.y44a{bottom:1007.973333pt;}
.y361{bottom:1008.133333pt;}
.y5ca{bottom:1008.773333pt;}
.yc6{bottom:1010.533333pt;}
.y2d{bottom:1010.693333pt;}
.y98{bottom:1012.960000pt;}
.y516{bottom:1013.093333pt;}
.y3b2{bottom:1013.120000pt;}
.y14d{bottom:1013.440000pt;}
.y53a{bottom:1014.213333pt;}
.y433{bottom:1014.240000pt;}
.y533{bottom:1014.373333pt;}
.yea{bottom:1014.400000pt;}
.y293{bottom:1023.680000pt;}
.y503{bottom:1032.800000pt;}
.y36e{bottom:1036.000000pt;}
.y292{bottom:1054.560000pt;}
.y502{bottom:1061.600000pt;}
.y36d{bottom:1064.000000pt;}
.y584{bottom:1064.275689pt;}
.h4d{height:4.402500pt;}
.h83{height:5.152000pt;}
.h6d{height:13.920000pt;}
.h7b{height:20.013067pt;}
.he{height:20.640000pt;}
.h11{height:20.672000pt;}
.h13{height:20.800000pt;}
.h15{height:20.832000pt;}
.h68{height:22.880000pt;}
.h58{height:25.280000pt;}
.h5a{height:25.312000pt;}
.h59{height:25.440000pt;}
.h64{height:25.472000pt;}
.hd{height:25.632000pt;}
.h72{height:27.515625pt;}
.h70{height:27.520000pt;}
.h6e{height:27.552000pt;}
.h6f{height:27.680000pt;}
.h5c{height:27.734375pt;}
.h9{height:28.000000pt;}
.h5e{height:29.675938pt;}
.h54{height:30.240000pt;}
.h57{height:30.272000pt;}
.h55{height:30.400000pt;}
.h50{height:30.560000pt;}
.h53{height:30.592000pt;}
.h4e{height:30.720000pt;}
.h52{height:30.752000pt;}
.ha{height:32.832000pt;}
.h75{height:33.760000pt;}
.h44{height:37.164062pt;}
.h45{height:37.275000pt;}
.hb{height:38.625000pt;}
.h7e{height:41.216000pt;}
.hf{height:41.273438pt;}
.h1b{height:41.280000pt;}
.h87{height:41.312000pt;}
.h17{height:41.440000pt;}
.h19{height:41.472000pt;}
.h46{height:41.601562pt;}
.h47{height:41.712500pt;}
.h6c{height:41.976562pt;}
.hc{height:42.560000pt;}
.h20{height:42.592000pt;}
.h82{height:45.552000pt;}
.h51{height:45.675938pt;}
.h56{height:45.920000pt;}
.h42{height:46.039063pt;}
.h5f{height:46.080000pt;}
.h62{height:46.112000pt;}
.h43{height:46.150000pt;}
.h81{height:46.368000pt;}
.h4f{height:46.454062pt;}
.h85{height:48.320000pt;}
.h74{height:49.766250pt;}
.h61{height:50.560000pt;}
.h73{height:50.592000pt;}
.h6{height:50.628750pt;}
.h4c{height:51.031250pt;}
.h8{height:51.491250pt;}
.h7c{height:51.520000pt;}
.h5b{height:53.038125pt;}
.h5d{height:53.581875pt;}
.h2{height:55.031250pt;}
.h71{height:55.232000pt;}
.h5{height:55.968750pt;}
.h80{height:56.672000pt;}
.h67{height:58.619063pt;}
.h69{height:61.280000pt;}
.h6a{height:61.312000pt;}
.h6b{height:61.440000pt;}
.h18{height:62.080000pt;}
.h1d{height:62.112000pt;}
.h10{height:63.360000pt;}
.h7{height:63.656250pt;}
.h3{height:64.386562pt;}
.h4{height:65.483437pt;}
.h7f{height:66.976000pt;}
.h79{height:67.360000pt;}
.h78{height:67.392000pt;}
.h77{height:67.520000pt;}
.h76{height:67.552000pt;}
.h2e{height:68.748750pt;}
.h48{height:71.944688pt;}
.h4a{height:73.773438pt;}
.h21{height:74.438437pt;}
.h37{height:74.477812pt;}
.h7d{height:77.280000pt;}
.h31{height:79.570312pt;}
.h1e{height:82.880000pt;}
.h2b{height:83.314062pt;}
.h32{height:84.662813pt;}
.h33{height:84.790125pt;}
.h14{height:84.832000pt;}
.h34{height:87.156562pt;}
.h35{height:87.287625pt;}
.h3a{height:90.391875pt;}
.h3b{height:90.519188pt;}
.h2a{height:92.743750pt;}
.h28{height:95.484375pt;}
.h29{height:95.611688pt;}
.h2c{height:100.576875pt;}
.h2d{height:100.704187pt;}
.h26{height:106.305937pt;}
.h27{height:106.433250pt;}
.h40{height:109.437187pt;}
.h3d{height:111.398438pt;}
.h3c{height:111.525750pt;}
.h24{height:121.875000pt;}
.h84{height:126.880000pt;}
.h86{height:126.912000pt;}
.h12{height:148.960000pt;}
.h49{height:154.106667pt;}
.h60{height:154.400000pt;}
.h63{height:154.426667pt;}
.h2f{height:157.218750pt;}
.h30{height:157.340625pt;}
.h38{height:182.812500pt;}
.h41{height:182.934375pt;}
.h1f{height:187.706667pt;}
.h39{height:218.156250pt;}
.h3f{height:223.640625pt;}
.h3e{height:223.762500pt;}
.h1c{height:229.786667pt;}
.h36{height:243.750000pt;}
.h25{height:243.871875pt;}
.h16{height:272.506667pt;}
.h1a{height:293.786667pt;}
.h4b{height:336.666667pt;}
.h23{height:406.575000pt;}
.h22{height:720.000000pt;}
.h65{height:793.760000pt;}
.h66{height:794.000000pt;}
.h7a{height:1122.520000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w30{width:15.200000pt;}
.w49{width:21.120000pt;}
.w47{width:21.280000pt;}
.w48{width:21.312000pt;}
.w3d{width:27.840000pt;}
.w26{width:28.480000pt;}
.w16{width:33.280000pt;}
.w6{width:36.800000pt;}
.w1b{width:37.120000pt;}
.w1c{width:39.200000pt;}
.w22{width:46.240000pt;}
.w62{width:53.760000pt;}
.w35{width:62.400000pt;}
.w27{width:64.000000pt;}
.w3c{width:65.600000pt;}
.w14{width:69.760000pt;}
.w1d{width:72.480000pt;}
.w1a{width:74.880000pt;}
.w31{width:74.912000pt;}
.w21{width:75.040000pt;}
.w9{width:84.320000pt;}
.w65{width:84.480000pt;}
.wc{width:84.512000pt;}
.w38{width:84.960000pt;}
.w2e{width:86.080000pt;}
.w5a{width:86.880000pt;}
.w4c{width:86.912000pt;}
.w33{width:93.440000pt;}
.w3f{width:93.760000pt;}
.w5b{width:93.792000pt;}
.w63{width:93.920000pt;}
.w54{width:94.240000pt;}
.w5d{width:94.272000pt;}
.w66{width:103.200000pt;}
.w56{width:103.232000pt;}
.w67{width:103.392000pt;}
.w29{width:111.872000pt;}
.w24{width:112.640000pt;}
.w64{width:112.672000pt;}
.w23{width:112.832000pt;}
.w2c{width:113.152000pt;}
.w2d{width:113.280000pt;}
.w36{width:113.632000pt;}
.w2a{width:114.560000pt;}
.w2b{width:118.272000pt;}
.w28{width:120.192000pt;}
.wb{width:121.760000pt;}
.w25{width:122.272000pt;}
.w17{width:125.792000pt;}
.w40{width:127.840000pt;}
.w41{width:127.872000pt;}
.w45{width:132.192000pt;}
.w20{width:140.986667pt;}
.w8{width:141.146667pt;}
.w3a{width:142.080000pt;}
.w1e{width:143.386667pt;}
.w1f{width:148.346667pt;}
.w7{width:150.586667pt;}
.w3e{width:169.146667pt;}
.wa{width:179.066667pt;}
.w19{width:181.146667pt;}
.w18{width:188.346667pt;}
.w4d{width:197.466667pt;}
.w50{width:197.786667pt;}
.w2f{width:203.386667pt;}
.w37{width:245.026667pt;}
.w32{width:245.146667pt;}
.w4e{width:254.426667pt;}
.w52{width:254.746667pt;}
.we{width:254.906667pt;}
.w11{width:261.786667pt;}
.w10{width:273.626667pt;}
.w3{width:279.226667pt;}
.wf{width:282.426667pt;}
.w4{width:295.266667pt;}
.w12{width:297.626667pt;}
.w5e{width:330.146667pt;}
.w46{width:350.266667pt;}
.w57{width:350.306667pt;}
.w4a{width:382.266667pt;}
.w58{width:382.306667pt;}
.w3b{width:385.533333pt;}
.wd{width:395.906667pt;}
.w4f{width:405.666667pt;}
.w53{width:406.146667pt;}
.w5f{width:422.306667pt;}
.w42{width:426.146667pt;}
.w39{width:442.653333pt;}
.w55{width:452.546667pt;}
.w4b{width:483.106667pt;}
.w59{width:483.133333pt;}
.w34{width:509.373333pt;}
.w15{width:533.053333pt;}
.w2{width:604.413333pt;}
.w5{width:604.893333pt;}
.w61{width:681.449733pt;}
.w51{width:755.773333pt;}
.w5c{width:755.813333pt;}
.w60{width:793.701333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w43{width:1122.560000pt;}
.w44{width:1122.666667pt;}
.w13{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x77{left:3.784000pt;}
.xe{left:6.880000pt;}
.x1e{left:48.000000pt;}
.x23{left:51.712000pt;}
.x5e{left:54.912000pt;}
.x60{left:56.126267pt;}
.x22{left:61.312000pt;}
.x71{left:62.524000pt;}
.x74{left:64.856000pt;}
.x75{left:66.278667pt;}
.x6f{left:67.613333pt;}
.x6a{left:68.734667pt;}
.x2c{left:71.552000pt;}
.x53{left:75.520000pt;}
.x65{left:76.890667pt;}
.x69{left:80.608000pt;}
.x67{left:83.344000pt;}
.x64{left:86.240000pt;}
.x4a{left:87.712000pt;}
.x6c{left:89.944000pt;}
.x70{left:91.308000pt;}
.x2{left:94.432000pt;}
.x3{left:99.552000pt;}
.x45{left:100.512000pt;}
.x73{left:105.034667pt;}
.x4{left:106.272000pt;}
.x6{left:110.432000pt;}
.x1b{left:113.312000pt;}
.x25{left:115.360000pt;}
.x9{left:118.432000pt;}
.x5{left:119.712000pt;}
.x6e{left:120.838667pt;}
.x1f{left:124.832000pt;}
.x7{left:126.432000pt;}
.x72{left:127.337333pt;}
.x33{left:129.152000pt;}
.xf{left:132.672000pt;}
.x37{left:135.066667pt;}
.x20{left:136.346667pt;}
.xa{left:142.426667pt;}
.x4b{left:150.746667pt;}
.x2b{left:155.546667pt;}
.x2e{left:165.626667pt;}
.x32{left:167.546667pt;}
.x6b{left:176.352000pt;}
.x4f{left:180.826667pt;}
.x46{left:182.106667pt;}
.x76{left:187.938667pt;}
.x3e{left:189.306667pt;}
.x1c{left:202.426667pt;}
.x38{left:208.186667pt;}
.x55{left:209.146667pt;}
.x13{left:217.626667pt;}
.x61{left:230.000000pt;}
.x78{left:236.666667pt;}
.x51{left:237.946667pt;}
.x66{left:246.276000pt;}
.x26{left:255.933333pt;}
.x4c{left:265.026667pt;}
.x5a{left:267.546667pt;}
.x5b{left:274.426667pt;}
.x10{left:283.906667pt;}
.x31{left:286.946667pt;}
.x6d{left:297.433333pt;}
.x14{left:302.786667pt;}
.x3f{left:310.146667pt;}
.x63{left:313.650667pt;}
.x2d{left:317.026667pt;}
.x62{left:348.237333pt;}
.x79{left:350.146667pt;}
.x39{left:352.226667pt;}
.x68{left:354.868000pt;}
.x7b{left:359.426667pt;}
.x15{left:361.346667pt;}
.x18{left:368.546667pt;}
.x4d{left:378.466667pt;}
.x17{left:380.546667pt;}
.x47{left:386.146667pt;}
.x16{left:388.866667pt;}
.x30{left:392.866667pt;}
.x1d{left:396.866667pt;}
.x48{left:401.986667pt;}
.xd{left:403.266667pt;}
.x19{left:404.546667pt;}
.xc{left:419.293333pt;}
.x40{left:422.653333pt;}
.x43{left:423.933333pt;}
.x11{left:425.693333pt;}
.x29{left:439.653333pt;}
.x34{left:444.573333pt;}
.x28{left:447.040000pt;}
.x7a{left:454.013333pt;}
.x7c{left:463.453333pt;}
.x49{left:477.533333pt;}
.x27{left:483.013333pt;}
.x3d{left:491.773333pt;}
.x3a{left:501.373333pt;}
.x12{left:510.653333pt;}
.x52{left:522.173333pt;}
.x2f{left:526.186667pt;}
.x5c{left:529.666667pt;}
.x41{left:537.853333pt;}
.x54{left:543.906667pt;}
.x56{left:560.066667pt;}
.x57{left:581.986667pt;}
.x58{left:603.933333pt;}
.x5f{left:605.213333pt;}
.x4e{left:624.133333pt;}
.x35{left:626.533333pt;}
.x3b{left:643.013333pt;}
.x59{left:647.613333pt;}
.x42{left:656.773333pt;}
.x50{left:661.893333pt;}
.x36{left:664.293333pt;}
.x3c{left:680.933333pt;}
.xb{left:683.173333pt;}
.x8{left:691.173333pt;}
.x44{left:694.533333pt;}
.x1{left:699.333333pt;}
.x1a{left:702.533333pt;}
.x2a{left:883.293333pt;}
.x24{left:898.653333pt;}
.x5d{left:936.133333pt;}
.x21{left:979.333333pt;}
}




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