
    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_fbb54f448fd8bdaa249dece4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.160000;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_e1d10ffdf85bd41be5554498.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.139160;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_279741e9b1003d55d7ae7238.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.145508;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_46ce2c81fe74d27a4071b390.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.145508;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_645a715a92c8e039400ca4c9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.160000;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_44ec7a350760f147371acac4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.163000;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_7eb7ef7fe276fa949411bd37.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.077000;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_fbb54f448fd8bdaa249dece4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.160000;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_fbb54f448fd8bdaa249dece4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.160000;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_fbb54f448fd8bdaa249dece4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.160000;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_fbb54f448fd8bdaa249dece4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.160000;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_fbb54f448fd8bdaa249dece4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.160000;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_fbb54f448fd8bdaa249dece4.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.160000;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_fbb54f448fd8bdaa249dece4.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.160000;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_fbb54f448fd8bdaa249dece4.woff2')format("woff");}.fff{font-family:fff;line-height:1.160000;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_fbb54f448fd8bdaa249dece4.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.160000;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_fbb54f448fd8bdaa249dece4.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.160000;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_fbb54f448fd8bdaa249dece4.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.160000;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_fbb54f448fd8bdaa249dece4.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.160000;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_fbb54f448fd8bdaa249dece4.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.160000;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_fbb54f448fd8bdaa249dece4.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.160000;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_fbb54f448fd8bdaa249dece4.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.160000;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_fbb54f448fd8bdaa249dece4.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.160000;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_fbb54f448fd8bdaa249dece4.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.160000;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_fbb54f448fd8bdaa249dece4.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.160000;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_fbb54f448fd8bdaa249dece4.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.160000;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_fbb54f448fd8bdaa249dece4.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.160000;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_fbb54f448fd8bdaa249dece4.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.160000;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_fbb54f448fd8bdaa249dece4.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.160000;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_fbb54f448fd8bdaa249dece4.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.160000;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:ff1f;src:url('chunks/assets/font_8a6153d3b78e6923300c9fc6.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.995117;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:ff20;src:url('chunks/assets/font_fbb54f448fd8bdaa249dece4.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.217333,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.217333,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.217333,0.000000,-0.064705,0.241481,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-17.820000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:17.820000px;}
.v1{vertical-align:19.800000px;}
.v3{vertical-align:43.752000px;}
.ls2d{letter-spacing:-1.350000px;}
.ls24{letter-spacing:-1.200000px;}
.ls5{letter-spacing:-1.080000px;}
.ls15{letter-spacing:-0.960000px;}
.ls11{letter-spacing:-0.900000px;}
.ls18{letter-spacing:-0.720000px;}
.ls25{letter-spacing:-0.696000px;}
.ls1c{letter-spacing:-0.660000px;}
.lsa{letter-spacing:-0.600000px;}
.lsc{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.522000px;}
.ls2a{letter-spacing:-0.480000px;}
.ls1a{letter-spacing:-0.417600px;}
.ls1d{letter-spacing:-0.382800px;}
.lsb{letter-spacing:-0.313200px;}
.lsf{letter-spacing:-0.300000px;}
.ls2b{letter-spacing:-0.278400px;}
.ls6{letter-spacing:-0.270000px;}
.ls26{letter-spacing:-0.240000px;}
.ls10{letter-spacing:-0.174000px;}
.ls14{letter-spacing:-0.156600px;}
.ls3{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.010000px;}
.ls8{letter-spacing:0.012320px;}
.ls0{letter-spacing:0.012800px;}
.ls2{letter-spacing:0.013120px;}
.ls4{letter-spacing:0.013600px;}
.ls2c{letter-spacing:0.016000px;}
.ls7{letter-spacing:0.024000px;}
.ls1b{letter-spacing:0.156600px;}
.ls23{letter-spacing:0.174000px;}
.ls2f{letter-spacing:0.226000px;}
.ls19{letter-spacing:0.270000px;}
.ls20{letter-spacing:0.300000px;}
.ls21{letter-spacing:0.313200px;}
.ls1e{letter-spacing:0.540000px;}
.ls17{letter-spacing:0.600000px;}
.ls29{letter-spacing:0.626400px;}
.ls22{letter-spacing:0.696000px;}
.ls27{letter-spacing:1.080000px;}
.ls9{letter-spacing:1.130000px;}
.ls1f{letter-spacing:1.200000px;}
.ls16{letter-spacing:1.986000px;}
.ls28{letter-spacing:2.636400px;}
.lsd{letter-spacing:3.484000px;}
.lse{letter-spacing:64.282000px;}
.ls13{letter-spacing:64.282800px;}
.ls1{letter-spacing:96.997120px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2d{word-spacing:-18.060000px;}
.ws3e{word-spacing:-17.460000px;}
.wsa5{word-spacing:-17.160000px;}
.ws41{word-spacing:-16.254000px;}
.ws0{word-spacing:-14.940000px;}
.ws5f{word-spacing:-12.671783px;}
.ws112{word-spacing:-11.170800px;}
.ws124{word-spacing:-10.648800px;}
.ws3d{word-spacing:-10.474800px;}
.ws99{word-spacing:-10.300800px;}
.ws13d{word-spacing:-10.196400px;}
.ws103{word-spacing:-10.092000px;}
.wsf5{word-spacing:-10.057200px;}
.ws130{word-spacing:-10.053720px;}
.wsa4{word-spacing:-9.952800px;}
.ws129{word-spacing:-9.778800px;}
.ws3f{word-spacing:-9.427320px;}
.ws40{word-spacing:-9.114120px;}
.ws1{word-spacing:-8.874000px;}
.wsd2{word-spacing:-5.292000px;}
.wse4{word-spacing:-4.104000px;}
.ws8e{word-spacing:-3.540000px;}
.wsd6{word-spacing:-3.480000px;}
.wsd5{word-spacing:-3.360000px;}
.wsc0{word-spacing:-3.240000px;}
.ws55{word-spacing:-3.186000px;}
.ws141{word-spacing:-3.180000px;}
.ws97{word-spacing:-3.132000px;}
.ws109{word-spacing:-3.120000px;}
.ws72{word-spacing:-3.078000px;}
.ws50{word-spacing:-3.060000px;}
.ws8b{word-spacing:-3.024000px;}
.ws37{word-spacing:-3.000000px;}
.ws6f{word-spacing:-2.970000px;}
.ws14d{word-spacing:-2.916000px;}
.ws9d{word-spacing:-2.880000px;}
.ws65{word-spacing:-2.820000px;}
.ws86{word-spacing:-2.808000px;}
.ws56{word-spacing:-2.700000px;}
.ws6c{word-spacing:-2.646000px;}
.ws7a{word-spacing:-2.640000px;}
.ws143{word-spacing:-2.592000px;}
.ws60{word-spacing:-2.580000px;}
.ws13f{word-spacing:-2.538000px;}
.ws62{word-spacing:-2.520000px;}
.wsaf{word-spacing:-2.484000px;}
.wsa0{word-spacing:-2.460000px;}
.ws107{word-spacing:-2.430000px;}
.ws104{word-spacing:-2.400000px;}
.ws33{word-spacing:-2.340000px;}
.ws96{word-spacing:-2.322000px;}
.ws32{word-spacing:-2.280000px;}
.ws13b{word-spacing:-2.268000px;}
.wsdf{word-spacing:-2.220000px;}
.ws5a{word-spacing:-2.214000px;}
.wsa9{word-spacing:-2.160000px;}
.ws4e{word-spacing:-2.100000px;}
.wsae{word-spacing:-2.052000px;}
.ws12b{word-spacing:-2.040000px;}
.ws10b{word-spacing:-1.998000px;}
.ws1f{word-spacing:-1.980000px;}
.ws7d{word-spacing:-1.920000px;}
.wsde{word-spacing:-1.890000px;}
.ws8c{word-spacing:-1.860000px;}
.ws119{word-spacing:-1.836000px;}
.ws95{word-spacing:-1.800000px;}
.wse{word-spacing:-1.782000px;}
.ws48{word-spacing:-1.740000px;}
.ws59{word-spacing:-1.728000px;}
.wse0{word-spacing:-1.674000px;}
.wse2{word-spacing:-1.620000px;}
.ws155{word-spacing:-1.566000px;}
.ws8f{word-spacing:-1.560000px;}
.ws81{word-spacing:-1.512000px;}
.wsee{word-spacing:-1.500000px;}
.wsf4{word-spacing:-1.458000px;}
.ws42{word-spacing:-1.440000px;}
.ws150{word-spacing:-1.404000px;}
.ws38{word-spacing:-1.380000px;}
.ws73{word-spacing:-1.350000px;}
.ws35{word-spacing:-1.320000px;}
.ws54{word-spacing:-1.296000px;}
.ws9a{word-spacing:-1.260000px;}
.ws156{word-spacing:-1.242000px;}
.wsaa{word-spacing:-1.200000px;}
.wsd3{word-spacing:-1.188000px;}
.ws36{word-spacing:-1.140000px;}
.wse3{word-spacing:-1.134000px;}
.ws4b{word-spacing:-1.080000px;}
.ws142{word-spacing:-1.026000px;}
.ws93{word-spacing:-1.020000px;}
.ws88{word-spacing:-0.972000px;}
.ws8d{word-spacing:-0.960000px;}
.ws5b{word-spacing:-0.918000px;}
.wsa7{word-spacing:-0.900000px;}
.ws3a{word-spacing:-0.864000px;}
.wsc{word-spacing:-0.840000px;}
.ws15d{word-spacing:-0.810000px;}
.ws108{word-spacing:-0.780000px;}
.wsd8{word-spacing:-0.756000px;}
.ws7e{word-spacing:-0.720000px;}
.ws6{word-spacing:-0.660000px;}
.ws15b{word-spacing:-0.648000px;}
.ws79{word-spacing:-0.600000px;}
.ws152{word-spacing:-0.594000px;}
.ws15{word-spacing:-0.540000px;}
.ws10a{word-spacing:-0.486000px;}
.wsab{word-spacing:-0.480000px;}
.ws74{word-spacing:-0.378000px;}
.wse9{word-spacing:-0.360000px;}
.wsce{word-spacing:-0.324000px;}
.ws11a{word-spacing:-0.313200px;}
.ws92{word-spacing:-0.300000px;}
.ws149{word-spacing:-0.270000px;}
.ws1c{word-spacing:-0.240000px;}
.wsad{word-spacing:-0.216000px;}
.ws75{word-spacing:-0.180000px;}
.ws51{word-spacing:-0.162000px;}
.wsfa{word-spacing:-0.156600px;}
.ws159{word-spacing:-0.108000px;}
.ws46{word-spacing:-0.060000px;}
.ws12f{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
.ws15e{word-spacing:0.054000px;}
.wsef{word-spacing:0.060000px;}
.ws83{word-spacing:0.108000px;}
.ws4f{word-spacing:0.120000px;}
.wsbe{word-spacing:0.156600px;}
.wsbb{word-spacing:0.162000px;}
.ws1d{word-spacing:0.180000px;}
.ws70{word-spacing:0.216000px;}
.ws2e{word-spacing:0.240000px;}
.ws3c{word-spacing:0.270000px;}
.ws30{word-spacing:0.300000px;}
.ws90{word-spacing:0.324000px;}
.ws7{word-spacing:0.360000px;}
.wsd4{word-spacing:0.378000px;}
.ws61{word-spacing:0.420000px;}
.ws58{word-spacing:0.432000px;}
.ws4c{word-spacing:0.480000px;}
.wsd9{word-spacing:0.486000px;}
.ws5d{word-spacing:0.540000px;}
.ws8a{word-spacing:0.594000px;}
.ws4a{word-spacing:0.600000px;}
.ws3b{word-spacing:0.648000px;}
.ws63{word-spacing:0.660000px;}
.ws13c{word-spacing:0.702000px;}
.ws49{word-spacing:0.720000px;}
.ws6d{word-spacing:0.756000px;}
.wsac{word-spacing:0.780000px;}
.ws101{word-spacing:0.810000px;}
.ws94{word-spacing:0.840000px;}
.ws71{word-spacing:0.864000px;}
.ws78{word-spacing:0.900000px;}
.wsd{word-spacing:0.918000px;}
.ws9{word-spacing:0.960000px;}
.ws9f{word-spacing:1.020000px;}
.wsb8{word-spacing:1.026000px;}
.ws9e{word-spacing:1.080000px;}
.wsf8{word-spacing:1.134000px;}
.ws5{word-spacing:1.140000px;}
.wsd0{word-spacing:1.188000px;}
.ws19{word-spacing:1.200000px;}
.ws5e{word-spacing:1.242000px;}
.ws84{word-spacing:1.296000px;}
.wsb{word-spacing:1.320000px;}
.ws98{word-spacing:1.350000px;}
.wsa{word-spacing:1.380000px;}
.ws138{word-spacing:1.404000px;}
.ws44{word-spacing:1.440000px;}
.ws52{word-spacing:1.458000px;}
.ws31{word-spacing:1.500000px;}
.wsf1{word-spacing:1.512000px;}
.wsb2{word-spacing:1.560000px;}
.ws57{word-spacing:1.566000px;}
.ws8{word-spacing:1.620000px;}
.ws5c{word-spacing:1.674000px;}
.ws77{word-spacing:1.680000px;}
.ws91{word-spacing:1.728000px;}
.ws12{word-spacing:1.740000px;}
.wsda{word-spacing:1.782000px;}
.wsec{word-spacing:1.800000px;}
.ws102{word-spacing:1.836000px;}
.wscb{word-spacing:1.890000px;}
.ws9c{word-spacing:1.920000px;}
.ws67{word-spacing:1.980000px;}
.wsdd{word-spacing:1.998000px;}
.ws12c{word-spacing:2.040000px;}
.wse1{word-spacing:2.052000px;}
.ws2a{word-spacing:2.100000px;}
.ws89{word-spacing:2.106000px;}
.ws7f{word-spacing:2.160000px;}
.ws85{word-spacing:2.214000px;}
.wsa6{word-spacing:2.220000px;}
.wsd7{word-spacing:2.268000px;}
.ws2f{word-spacing:2.280000px;}
.wsc4{word-spacing:2.322000px;}
.wse8{word-spacing:2.340000px;}
.wsb1{word-spacing:2.400000px;}
.wscf{word-spacing:2.430000px;}
.wseb{word-spacing:2.460000px;}
.ws76{word-spacing:2.520000px;}
.ws154{word-spacing:2.538000px;}
.ws146{word-spacing:2.592000px;}
.wsa8{word-spacing:2.640000px;}
.wsdc{word-spacing:2.646000px;}
.wsb9{word-spacing:2.700000px;}
.wsf9{word-spacing:2.754000px;}
.ws45{word-spacing:2.760000px;}
.ws110{word-spacing:2.808000px;}
.ws147{word-spacing:2.820000px;}
.wscc{word-spacing:2.862000px;}
.ws6a{word-spacing:2.880000px;}
.ws145{word-spacing:2.916000px;}
.wsfe{word-spacing:3.000000px;}
.ws153{word-spacing:3.024000px;}
.wsc6{word-spacing:3.078000px;}
.ws6b{word-spacing:3.120000px;}
.ws144{word-spacing:3.132000px;}
.ws69{word-spacing:3.180000px;}
.ws6e{word-spacing:3.186000px;}
.ws68{word-spacing:3.240000px;}
.wsb7{word-spacing:3.294000px;}
.ws3{word-spacing:3.300000px;}
.ws10c{word-spacing:3.348000px;}
.wsb4{word-spacing:3.360000px;}
.ws123{word-spacing:3.402000px;}
.ws14a{word-spacing:3.456000px;}
.ws4d{word-spacing:3.480000px;}
.ws10f{word-spacing:3.510000px;}
.ws4{word-spacing:3.540000px;}
.ws13a{word-spacing:3.564000px;}
.ws24{word-spacing:3.600000px;}
.ws14c{word-spacing:3.618000px;}
.wsb5{word-spacing:3.660000px;}
.wsf2{word-spacing:3.672000px;}
.wsc8{word-spacing:3.720000px;}
.wsdb{word-spacing:3.726000px;}
.ws66{word-spacing:3.780000px;}
.ws15f{word-spacing:3.834000px;}
.wsf0{word-spacing:3.840000px;}
.wsa2{word-spacing:3.888000px;}
.ws132{word-spacing:3.900000px;}
.ws133{word-spacing:3.960000px;}
.ws10e{word-spacing:3.996000px;}
.ws22{word-spacing:4.080000px;}
.wse7{word-spacing:4.140000px;}
.ws106{word-spacing:4.158000px;}
.ws13{word-spacing:4.200000px;}
.wsbf{word-spacing:4.260000px;}
.ws158{word-spacing:4.266000px;}
.wsf7{word-spacing:4.320000px;}
.ws128{word-spacing:4.374000px;}
.ws25{word-spacing:4.380000px;}
.ws10d{word-spacing:4.428000px;}
.wsc9{word-spacing:4.440000px;}
.ws34{word-spacing:4.500000px;}
.wsf6{word-spacing:4.560000px;}
.wsd1{word-spacing:4.590000px;}
.ws82{word-spacing:4.644000px;}
.ws157{word-spacing:4.698000px;}
.wsb6{word-spacing:4.740000px;}
.ws10{word-spacing:4.752000px;}
.ws80{word-spacing:4.800000px;}
.ws14b{word-spacing:4.860000px;}
.wsb3{word-spacing:4.920000px;}
.wsca{word-spacing:4.968000px;}
.wsa3{word-spacing:4.980000px;}
.ws53{word-spacing:5.076000px;}
.ws151{word-spacing:5.130000px;}
.ws12d{word-spacing:5.160000px;}
.wsf3{word-spacing:5.184000px;}
.wsfd{word-spacing:5.220000px;}
.ws14e{word-spacing:5.238000px;}
.ws139{word-spacing:5.292000px;}
.wsba{word-spacing:5.346000px;}
.ws26{word-spacing:5.400000px;}
.wsff{word-spacing:5.460000px;}
.ws105{word-spacing:5.508000px;}
.wse5{word-spacing:5.520000px;}
.ws17{word-spacing:5.580000px;}
.wsc3{word-spacing:5.616000px;}
.ws47{word-spacing:5.640000px;}
.ws29{word-spacing:5.700000px;}
.ws15c{word-spacing:5.724000px;}
.ws39{word-spacing:5.760000px;}
.ws9b{word-spacing:5.820000px;}
.wsc2{word-spacing:5.886000px;}
.ws131{word-spacing:5.940000px;}
.ws114{word-spacing:6.102000px;}
.ws20{word-spacing:6.120000px;}
.ws87{word-spacing:6.156000px;}
.wsc7{word-spacing:6.210000px;}
.ws18{word-spacing:6.240000px;}
.wsa1{word-spacing:6.360000px;}
.ws13e{word-spacing:6.372000px;}
.ws16{word-spacing:6.420000px;}
.ws43{word-spacing:6.480000px;}
.ws12e{word-spacing:6.540000px;}
.ws116{word-spacing:6.588000px;}
.ws11c{word-spacing:6.660000px;}
.ws7b{word-spacing:6.804000px;}
.ws11f{word-spacing:6.840000px;}
.ws15a{word-spacing:6.858000px;}
.ws11e{word-spacing:6.900000px;}
.wsea{word-spacing:6.960000px;}
.ws64{word-spacing:7.020000px;}
.ws115{word-spacing:7.128000px;}
.ws125{word-spacing:7.140000px;}
.ws14f{word-spacing:7.236000px;}
.ws117{word-spacing:7.344000px;}
.wsb0{word-spacing:7.380000px;}
.ws100{word-spacing:7.398000px;}
.ws118{word-spacing:7.452000px;}
.wsbc{word-spacing:7.506000px;}
.ws12a{word-spacing:7.560000px;}
.wse6{word-spacing:7.680000px;}
.ws121{word-spacing:7.800000px;}
.ws14{word-spacing:7.860000px;}
.wsc5{word-spacing:7.938000px;}
.wsfc{word-spacing:8.046000px;}
.ws134{word-spacing:8.220000px;}
.ws21{word-spacing:8.340000px;}
.ws11{word-spacing:8.400000px;}
.ws148{word-spacing:8.478000px;}
.wscd{word-spacing:8.532000px;}
.ws1b{word-spacing:8.640000px;}
.ws113{word-spacing:8.694000px;}
.wsc1{word-spacing:8.748000px;}
.wsbd{word-spacing:9.018000px;}
.wsed{word-spacing:9.060000px;}
.ws1a{word-spacing:9.600000px;}
.ws27{word-spacing:9.900000px;}
.ws7c{word-spacing:10.098000px;}
.ws120{word-spacing:10.140000px;}
.ws11d{word-spacing:10.200000px;}
.ws11b{word-spacing:10.440000px;}
.ws137{word-spacing:10.746000px;}
.ws1e{word-spacing:10.800000px;}
.wsfb{word-spacing:10.908000px;}
.ws135{word-spacing:11.400000px;}
.ws122{word-spacing:12.120000px;}
.ws136{word-spacing:12.720000px;}
.ws28{word-spacing:14.040000px;}
.ws127{word-spacing:15.600000px;}
.ws23{word-spacing:15.660000px;}
.ws140{word-spacing:16.560000px;}
.ws2b{word-spacing:22.380000px;}
.ws2c{word-spacing:22.920000px;}
.ws126{word-spacing:23.100000px;}
.ws111{word-spacing:64.260000px;}
.wsf{word-spacing:80.676000px;}
._1e{margin-left:-2179.542000px;}
._16{margin-left:-1905.550000px;}
._24{margin-left:-1884.180000px;}
._22{margin-left:-1848.330000px;}
._20{margin-left:-1746.670000px;}
._23{margin-left:-1486.392000px;}
._21{margin-left:-1070.786000px;}
._1b{margin-left:-335.056000px;}
._6{margin-left:-75.924000px;}
._1a{margin-left:-64.218560px;}
._8{margin-left:-27.336000px;}
._18{margin-left:-15.690000px;}
._1c{margin-left:-12.378000px;}
._a{margin-left:-10.422000px;}
._9{margin-left:-9.072000px;}
._5{margin-left:-7.830000px;}
._3{margin-left:-6.600000px;}
._4{margin-left:-5.454000px;}
._1{margin-left:-3.600000px;}
._0{margin-left:-2.040000px;}
._7{margin-left:-1.020000px;}
._2{width:1.020000px;}
._12{width:3.060800px;}
._17{width:4.383200px;}
._19{width:6.434400px;}
._15{width:58.129440px;}
._14{width:59.641440px;}
._10{width:61.100240px;}
._f{width:62.665440px;}
._13{width:64.070240px;}
._11{width:65.150240px;}
._1d{width:66.445440px;}
._e{width:67.471440px;}
._c{width:75.654000px;}
._b{width:79.272000px;}
._d{width:82.026000px;}
._1f{width:140.554800px;}
.fc4{color:transparent;}
.fc3{color:rgb(31,121,140);}
.fc1{color:rgb(51,117,137);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:31.320000px;}
.fs2{font-size:34.800000px;}
.fs7{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs9{font-size:49.693267px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:6.046200px;}
.y4{bottom:7.545600px;}
.y30{bottom:34.605000px;}
.y3{bottom:41.019600px;}
.y1{bottom:42.519000px;}
.y2f{bottom:47.205000px;}
.y2e{bottom:59.805000px;}
.y2d{bottom:72.405000px;}
.y23a{bottom:105.576450px;}
.y3bb{bottom:105.771750px;}
.y15{bottom:106.299150px;}
.yf8{bottom:106.299300px;}
.y12d{bottom:106.299750px;}
.y12e{bottom:106.300950px;}
.y38d{bottom:107.452950px;}
.y35d{bottom:107.948850px;}
.y32b{bottom:108.047250px;}
.y16f{bottom:110.329050px;}
.y127{bottom:110.754150px;}
.y265{bottom:110.754300px;}
.y35c{bottom:116.452800px;}
.y239{bottom:119.976450px;}
.y12c{bottom:120.699750px;}
.yfc{bottom:121.060200px;}
.y3ba{bottom:121.971750px;}
.y72{bottom:122.499150px;}
.y38c{bottom:123.577950px;}
.y32a{bottom:124.247250px;}
.y16e{bottom:126.325950px;}
.y238{bottom:126.751050px;}
.y19d{bottom:126.751200px;}
.y14{bottom:126.954150px;}
.yf7{bottom:126.954300px;}
.y185{bottom:131.206050px;}
.y126{bottom:131.206200px;}
.y35b{bottom:132.652800px;}
.y3b9{bottom:138.171750px;}
.y71{bottom:138.699150px;}
.y38b{bottom:139.702950px;}
.y329{bottom:140.447250px;}
.y16d{bottom:142.525950px;}
.ydc{bottom:142.951200px;}
.y13{bottom:142.951500px;}
.y90{bottom:143.154150px;}
.y3b8{bottom:146.675700px;}
.y2fc{bottom:147.406050px;}
.yf6{bottom:147.406200px;}
.y125{bottom:151.657500px;}
.y35a{bottom:154.606500px;}
.y70{bottom:154.899000px;}
.y38a{bottom:155.827500px;}
.y16c{bottom:158.725500px;}
.y12{bottom:159.151500px;}
.yb5{bottom:159.354000px;}
.y3b7{bottom:162.876000px;}
.y46{bottom:163.606500px;}
.y1b8{bottom:165.019500px;}
.y328{bottom:165.151500px;}
.y124{bottom:167.655000px;}
.yf5{bottom:167.857500px;}
.y359{bottom:170.806500px;}
.y6f{bottom:171.099000px;}
.y389{bottom:171.952500px;}
.y184{bottom:172.110000px;}
.y8f{bottom:175.351500px;}
.y214{bottom:175.554000px;}
.y16b{bottom:179.380500px;}
.ydb{bottom:179.602500px;}
.y11{bottom:179.806500px;}
.y327{bottom:181.351500px;}
.y1b7{bottom:183.103500px;}
.y2fb{bottom:183.855000px;}
.y45{bottom:184.057500px;}
.y3b6{bottom:184.830000px;}
.y141{bottom:185.470500px;}
.y358{bottom:187.006500px;}
.y1dd{bottom:187.299000px;}
.y388{bottom:188.077500px;}
.y123{bottom:188.310000px;}
.y8e{bottom:191.551500px;}
.y6e{bottom:191.754000px;}
.y16a{bottom:195.378000px;}
.yda{bottom:195.802500px;}
.y213{bottom:196.006500px;}
.y326{bottom:197.551500px;}
.y2d9{bottom:200.055000px;}
.y291{bottom:200.257500px;}
.y3b5{bottom:201.030000px;}
.y1b6{bottom:201.187500px;}
.y140{bottom:201.852000px;}
.y357{bottom:203.206500px;}
.y387{bottom:204.202500px;}
.y122{bottom:204.307500px;}
.y44{bottom:204.510000px;}
.y6d{bottom:207.751500px;}
.y1dc{bottom:207.954000px;}
.y212{bottom:212.002500px;}
.y8d{bottom:212.206500px;}
.y386{bottom:212.632500px;}
.y325{bottom:213.751500px;}
.y169{bottom:216.033000px;}
.yd9{bottom:216.457500px;}
.y3b4{bottom:217.228500px;}
.y264{bottom:217.870500px;}
.y1b5{bottom:219.271500px;}
.y356{bottom:219.406500px;}
.y121{bottom:220.507500px;}
.y290{bottom:220.710000px;}
.yf4{bottom:222.123000px;}
.y6c{bottom:223.951500px;}
.y183{bottom:226.374000px;}
.y355{bottom:227.910000px;}
.y237{bottom:228.202500px;}
.yb4{bottom:228.406500px;}
.y385{bottom:228.832500px;}
.y324{bottom:229.951500px;}
.y8c{bottom:232.657500px;}
.y10{bottom:234.061500px;}
.y13f{bottom:235.240500px;}
.y263{bottom:235.953000px;}
.y168{bottom:236.485500px;}
.y120{bottom:236.707500px;}
.y19c{bottom:236.910000px;}
.y1b4{bottom:237.355500px;}
.y6b{bottom:240.151500px;}
.yf3{bottom:240.301500px;}
.y3b3{bottom:241.933500px;}
.y182{bottom:242.815500px;}
.y354{bottom:244.110000px;}
.y236{bottom:244.402500px;}
.y323{bottom:246.151500px;}
.y8b{bottom:248.655000px;}
.yb3{bottom:248.857500px;}
.y384{bottom:250.785000px;}
.y167{bottom:252.481500px;}
.y11f{bottom:252.907500px;}
.yf{bottom:253.291500px;}
.y13e{bottom:253.420500px;}
.y262{bottom:254.035500px;}
.y1b3{bottom:255.441000px;}
.y19b{bottom:257.362500px;}
.yf2{bottom:258.480000px;}
.y43{bottom:258.766500px;}
.y1f1{bottom:258.774000px;}
.y181{bottom:259.254000px;}
.y6a{bottom:260.806500px;}
.y322{bottom:262.351500px;}
.yb2{bottom:264.855000px;}
.y235{bottom:265.057500px;}
.y353{bottom:266.064000px;}
.y383{bottom:266.910000px;}
.y3b2{bottom:267.792000px;}
.y11e{bottom:269.107500px;}
.y8a{bottom:269.310000px;}
.yd8{bottom:270.723000px;}
.y13d{bottom:271.600500px;}
.ye{bottom:272.521500px;}
.y166{bottom:273.136500px;}
.y1f0{bottom:273.255000px;}
.y2d8{bottom:273.358500px;}
.y28f{bottom:274.974000px;}
.y180{bottom:275.694000px;}
.yf1{bottom:276.658500px;}
.y69{bottom:276.802500px;}
.y42{bottom:276.901500px;}
.y321{bottom:278.551500px;}
.y261{bottom:280.623000px;}
.yb1{bottom:281.055000px;}
.y1b2{bottom:282.028500px;}
.y352{bottom:282.264000px;}
.y1db{bottom:282.670500px;}
.y382{bottom:283.035000px;}
.y89{bottom:285.307500px;}
.y320{bottom:287.055000px;}
.yd7{bottom:289.099500px;}
.y11d{bottom:289.762500px;}
.y13c{bottom:289.782000px;}
.y28e{bottom:291.339000px;}
.y17f{bottom:292.134000px;}
.y68{bottom:293.002500px;}
.y2d7{bottom:294.013500px;}
.yf0{bottom:294.837000px;}
.y41{bottom:295.036500px;}
.yb0{bottom:297.255000px;}
.y260{bottom:298.705500px;}
.y381{bottom:299.160000px;}
.yd{bottom:300.256500px;}
.y3b1{bottom:300.406500px;}
.y1da{bottom:301.141500px;}
.y31f{bottom:303.255000px;}
.y11c{bottom:305.758500px;}
.y88{bottom:305.962500px;}
.y351{bottom:306.967500px;}
.yd6{bottom:307.476000px;}
.y380{bottom:307.590000px;}
.y28d{bottom:307.702500px;}
.y13b{bottom:307.962000px;}
.y17e{bottom:308.574000px;}
.y67{bottom:309.202500px;}
.y19a{bottom:311.626500px;}
.y40{bottom:313.155000px;}
.yaf{bottom:313.455000px;}
.y3b0{bottom:316.606500px;}
.y25f{bottom:316.788000px;}
.y234{bottom:317.910000px;}
.yc{bottom:319.486500px;}
.y1d9{bottom:319.611000px;}
.yef{bottom:321.519000px;}
.y87{bottom:321.958500px;}
.y211{bottom:323.574000px;}
.y37f{bottom:323.790000px;}
.y28c{bottom:324.066000px;}
.y17d{bottom:325.014000px;}
.y31e{bottom:325.209000px;}
.y66{bottom:325.402500px;}
.yd5{bottom:325.854000px;}
.y13a{bottom:326.143500px;}
.y11b{bottom:326.413500px;}
.y165{bottom:327.723000px;}
.yae{bottom:329.655000px;}
.y199{bottom:329.709000px;}
.y3f{bottom:331.290000px;}
.y3af{bottom:332.806500px;}
.y350{bottom:332.826000px;}
.y25e{bottom:334.870500px;}
.y86{bottom:338.158500px;}
.yb{bottom:338.716500px;}
.yee{bottom:339.697500px;}
.y2b2{bottom:340.008000px;}
.y210{bottom:340.504500px;}
.y3ae{bottom:341.310000px;}
.y31d{bottom:341.409000px;}
.y17c{bottom:341.454000px;}
.y164{bottom:343.923000px;}
.y2fa{bottom:344.026500px;}
.yd4{bottom:344.230500px;}
.y139{bottom:344.323500px;}
.y37e{bottom:345.742500px;}
.yad{bottom:345.855000px;}
.y65{bottom:346.057500px;}
.y1d8{bottom:346.585500px;}
.y1b1{bottom:346.884000px;}
.y198{bottom:347.793000px;}
.y2d6{bottom:348.279000px;}
.y3e{bottom:349.425000px;}
.y25d{bottom:352.953000px;}
.y2b1{bottom:356.442000px;}
.y20f{bottom:357.433500px;}
.y28b{bottom:357.438000px;}
.y3ad{bottom:357.510000px;}
.y31c{bottom:357.609000px;}
.y17b{bottom:357.894000px;}
.ya{bottom:357.946500px;}
.y85{bottom:358.813500px;}
.y163{bottom:360.123000px;}
.y34f{bottom:361.189500px;}
.y1b0{bottom:361.369500px;}
.y37d{bottom:361.867500px;}
.y64{bottom:362.055000px;}
.y138{bottom:362.503500px;}
.yd3{bottom:362.607000px;}
.y2f9{bottom:362.779500px;}
.y2d5{bottom:364.609500px;}
.y1d7{bottom:365.055000px;}
.yed{bottom:366.379500px;}
.yac{bottom:366.510000px;}
.y3d{bottom:367.560000px;}
.y25c{bottom:371.035500px;}
.y233{bottom:372.174000px;}
.y2b0{bottom:372.876000px;}
.y31b{bottom:373.809000px;}
.y17a{bottom:374.334000px;}
.y20e{bottom:374.362500px;}
.y28a{bottom:375.601500px;}
.y162{bottom:376.323000px;}
.y9{bottom:377.176500px;}
.y34e{bottom:377.389500px;}
.y37c{bottom:377.992500px;}
.y3ac{bottom:379.464000px;}
.y11a{bottom:380.679000px;}
.y137{bottom:380.685000px;}
.y2d4{bottom:380.941500px;}
.yd2{bottom:380.983500px;}
.y2f8{bottom:381.532500px;}
.yab{bottom:382.507500px;}
.y63{bottom:382.710000px;}
.y197{bottom:382.882500px;}
.y1d6{bottom:383.524500px;}
.yec{bottom:384.558000px;}
.y232{bottom:388.389000px;}
.y25b{bottom:389.118000px;}
.y2af{bottom:389.310000px;}
.y31a{bottom:390.009000px;}
.y179{bottom:390.774000px;}
.y20d{bottom:391.291500px;}
.y161{bottom:392.523000px;}
.y34d{bottom:393.589500px;}
.y289{bottom:393.765000px;}
.y37b{bottom:394.117500px;}
.y3c{bottom:394.200000px;}
.y3ab{bottom:395.664000px;}
.y8{bottom:396.403500px;}
.y62{bottom:398.707500px;}
.y136{bottom:398.865000px;}
.y196{bottom:399.166500px;}
.y119{bottom:399.243000px;}
.yd1{bottom:399.361500px;}
.y2f7{bottom:400.287000px;}
.y1d5{bottom:401.995500px;}
.yeb{bottom:402.735000px;}
.y231{bottom:404.602500px;}
.y2ae{bottom:405.744000px;}
.y25a{bottom:407.200500px;}
.y178{bottom:407.214000px;}
.y34c{bottom:409.789500px;}
.y37a{bottom:410.242500px;}
.y3aa{bottom:411.864000px;}
.y288{bottom:411.930000px;}
.y3b{bottom:412.335000px;}
.y160{bottom:412.975500px;}
.y84{bottom:413.079000px;}
.y2d3{bottom:414.280500px;}
.y319{bottom:414.712500px;}
.y195{bottom:415.449000px;}
.y7{bottom:415.633500px;}
.y135{bottom:417.046500px;}
.yd0{bottom:417.738000px;}
.y118{bottom:417.808500px;}
.y2f6{bottom:419.040000px;}
.y61{bottom:419.362500px;}
.y3a9{bottom:420.367500px;}
.y230{bottom:420.817500px;}
.yea{bottom:420.913500px;}
.y20c{bottom:425.229000px;}
.y259{bottom:425.283000px;}
.y34b{bottom:425.989500px;}
.y15f{bottom:429.175500px;}
.y287{bottom:430.093500px;}
.y3a{bottom:430.467000px;}
.y2ad{bottom:430.681500px;}
.y83{bottom:431.359500px;}
.y194{bottom:431.731500px;}
.y2d2{bottom:432.411000px;}
.y6{bottom:434.863500px;}
.y379{bottom:434.872500px;}
.y60{bottom:435.358500px;}
.ycf{bottom:436.114500px;}
.y3a8{bottom:436.567500px;}
.y22f{bottom:437.031000px;}
.y1d4{bottom:437.472000px;}
.y2f5{bottom:437.793000px;}
.ye9{bottom:439.092000px;}
.y318{bottom:439.416000px;}
.y177{bottom:440.661000px;}
.y34a{bottom:442.189500px;}
.y258{bottom:443.365500px;}
.y20b{bottom:443.958000px;}
.y117{bottom:444.877500px;}
.y15e{bottom:445.375500px;}
.y2ac{bottom:447.114000px;}
.y193{bottom:448.014000px;}
.y39{bottom:448.596000px;}
.y82{bottom:449.641500px;}
.y2d1{bottom:450.543000px;}
.y134{bottom:452.235000px;}
.y22e{bottom:453.244500px;}
.y1d3{bottom:454.143000px;}
.y317{bottom:455.616000px;}
.y5f{bottom:456.013500px;}
.y2f4{bottom:456.546000px;}
.ye8{bottom:457.270500px;}
.y3a7{bottom:458.521500px;}
.y176{bottom:458.901000px;}
.y378{bottom:460.731000px;}
.y257{bottom:461.448000px;}
.y15d{bottom:461.575500px;}
.y5{bottom:462.597000px;}
.y20a{bottom:462.688500px;}
.yce{bottom:462.996000px;}
.y116{bottom:463.441500px;}
.y38{bottom:466.731000px;}
.y349{bottom:466.893000px;}
.y81{bottom:467.922000px;}
.y2d0{bottom:468.673500px;}
.y22d{bottom:469.459500px;}
.y286{bottom:469.516500px;}
.y1d2{bottom:470.812500px;}
.yfb{bottom:471.211500px;}
.y316{bottom:471.816000px;}
.y2ab{bottom:472.053000px;}
.yaa{bottom:473.626500px;}
.y2f3{bottom:475.299000px;}
.ye7{bottom:475.449000px;}
.y175{bottom:477.141000px;}
.y15c{bottom:477.775500px;}
.y256{bottom:479.530500px;}
.y192{bottom:481.305000px;}
.y209{bottom:481.417500px;}
.y115{bottom:482.007000px;}
.y348{bottom:483.093000px;}
.y3a6{bottom:483.225000px;}
.y37{bottom:484.866000px;}
.y22c{bottom:485.673000px;}
.yfa{bottom:485.971500px;}
.y80{bottom:486.202500px;}
.y377{bottom:486.589500px;}
.y2cf{bottom:486.805500px;}
.y1d1{bottom:487.483500px;}
.y315{bottom:488.016000px;}
.ya9{bottom:491.661000px;}
.ye6{bottom:493.627500px;}
.y2f2{bottom:494.053500px;}
.y255{bottom:497.613000px;}
.y347{bottom:499.293000px;}
.y191{bottom:499.387500px;}
.y208{bottom:500.146500px;}
.y114{bottom:500.572500px;}
.y1d0{bottom:504.153000px;}
.y314{bottom:504.216000px;}
.y7f{bottom:504.484500px;}
.y2ce{bottom:504.936000px;}
.y12b{bottom:505.110000px;}
.y2aa{bottom:505.494000px;}
.y22b{bottom:506.139000px;}
.y346{bottom:507.796500px;}
.y277{bottom:508.299000px;}
.y3a5{bottom:509.083500px;}
.ya8{bottom:509.695500px;}
.y5e{bottom:510.279000px;}
.y15b{bottom:510.984000px;}
.y376{bottom:511.218000px;}
.ye5{bottom:511.806000px;}
.y2f1{bottom:512.806500px;}
.y254{bottom:515.695500px;}
.y190{bottom:517.471500px;}
.y113{bottom:519.136500px;}
.y12a{bottom:519.510000px;}
.y313{bottom:520.416000px;}
.y187{bottom:522.217500px;}
.y276{bottom:522.699000px;}
.y7e{bottom:522.765000px;}
.y2cd{bottom:523.066500px;}
.y2a9{bottom:523.728000px;}
.ycd{bottom:523.891500px;}
.y345{bottom:523.996500px;}
.y36{bottom:524.259000px;}
.y22a{bottom:526.605000px;}
.y5d{bottom:527.122500px;}
.y375{bottom:527.343000px;}
.ya7{bottom:527.731500px;}
.y15a{bottom:528.984000px;}
.y2f0{bottom:531.559500px;}
.y129{bottom:533.910000px;}
.y18f{bottom:535.554000px;}
.y207{bottom:535.884000px;}
.y312{bottom:536.616000px;}
.y186{bottom:536.617500px;}
.y275{bottom:537.099000px;}
.y26{bottom:537.442500px;}
.y112{bottom:537.702000px;}
.y1cf{bottom:537.831000px;}
.ye4{bottom:538.488000px;}
.y35{bottom:538.791000px;}
.y1a3{bottom:539.946000px;}
.ycc{bottom:540.469500px;}
.y2cc{bottom:541.198500px;}
.y3a4{bottom:541.699500px;}
.y2a8{bottom:541.962000px;}
.y253{bottom:542.283000px;}
.y229{bottom:542.818500px;}
.y374{bottom:543.468000px;}
.y311{bottom:545.121000px;}
.ya6{bottom:545.766000px;}
.y344{bottom:545.950500px;}
.y159{bottom:546.984000px;}
.y128{bottom:548.310000px;}
.y7d{bottom:549.550500px;}
.y274{bottom:551.499000px;}
.y373{bottom:551.896500px;}
.y206{bottom:552.813000px;}
.y18e{bottom:553.636500px;}
.y25{bottom:555.442500px;}
.y111{bottom:556.267500px;}
.y1ce{bottom:556.300500px;}
.ye3{bottom:556.666500px;}
.ycb{bottom:557.046000px;}
.y3a3{bottom:557.899500px;}
.y1a2{bottom:557.946000px;}
.y2ef{bottom:558.816000px;}
.y228{bottom:559.033500px;}
.y2cb{bottom:559.329000px;}
.y2a7{bottom:560.194500px;}
.y252{bottom:560.365500px;}
.y5c{bottom:560.974500px;}
.y310{bottom:561.321000px;}
.y343{bottom:562.150500px;}
.y158{bottom:564.984000px;}
.y273{bottom:565.899000px;}
.y7c{bottom:567.831000px;}
.y372{bottom:568.096500px;}
.y205{bottom:569.742000px;}
.y18d{bottom:571.719000px;}
.ya5{bottom:572.304000px;}
.yca{bottom:573.622500px;}
.y3a2{bottom:574.099500px;}
.y1cd{bottom:574.770000px;}
.y110{bottom:574.831500px;}
.ye2{bottom:574.845000px;}
.y1a1{bottom:575.946000px;}
.y2ca{bottom:577.461000px;}
.y2ee{bottom:577.570500px;}
.y342{bottom:578.350500px;}
.y2a6{bottom:578.428500px;}
.y251{bottom:578.448000px;}
.y5b{bottom:579.619500px;}
.y272{bottom:580.299000px;}
.y3a1{bottom:582.603000px;}
.y157{bottom:582.984000px;}
.y30f{bottom:583.273500px;}
.y7b{bottom:586.113000px;}
.y24{bottom:586.192500px;}
.y18c{bottom:589.801500px;}
.y371{bottom:590.050500px;}
.yc9{bottom:590.199000px;}
.ya4{bottom:590.338500px;}
.y227{bottom:592.255500px;}
.ye1{bottom:593.023500px;}
.y10f{bottom:593.397000px;}
.y1a0{bottom:593.946000px;}
.y341{bottom:594.550500px;}
.y271{bottom:594.699000px;}
.y2c9{bottom:595.591500px;}
.y2ed{bottom:596.323500px;}
.y250{bottom:596.530500px;}
.y2a5{bottom:596.662500px;}
.y5a{bottom:598.263000px;}
.y3a0{bottom:598.803000px;}
.y30e{bottom:599.473500px;}
.y156{bottom:600.984000px;}
.y1cc{bottom:601.744500px;}
.y204{bottom:603.679500px;}
.y23{bottom:604.192500px;}
.y7a{bottom:604.393500px;}
.y370{bottom:606.175500px;}
.yc8{bottom:606.777000px;}
.ya3{bottom:608.373000px;}
.y270{bottom:609.099000px;}
.y226{bottom:610.269000px;}
.ye0{bottom:611.202000px;}
.y19f{bottom:611.946000px;}
.y10e{bottom:611.961000px;}
.y24f{bottom:614.613000px;}
.y2ec{bottom:615.076500px;}
.y30d{bottom:615.673500px;}
.y18b{bottom:616.389000px;}
.y59{bottom:616.906500px;}
.y340{bottom:619.254000px;}
.y1cb{bottom:620.214000px;}
.y39f{bottom:620.757000px;}
.y22{bottom:622.192500px;}
.y2c8{bottom:622.227000px;}
.y36f{bottom:622.300500px;}
.y203{bottom:622.408500px;}
.y79{bottom:622.674000px;}
.y26f{bottom:623.499000px;}
.ya2{bottom:626.409000px;}
.y225{bottom:628.282500px;}
.ydf{bottom:629.380500px;}
.y2a4{bottom:631.903500px;}
.y18a{bottom:632.671500px;}
.y24e{bottom:632.695500px;}
.y2eb{bottom:633.829500px;}
.y1ef{bottom:635.227500px;}
.y58{bottom:635.551500px;}
.y155{bottom:635.991000px;}
.y39e{bottom:636.957000px;}
.y26e{bottom:637.899000px;}
.y36e{bottom:638.425500px;}
.y1ca{bottom:638.685000px;}
.y10d{bottom:639.030000px;}
.y21{bottom:640.192500px;}
.y2c7{bottom:640.359000px;}
.yc7{bottom:640.360500px;}
.y30c{bottom:640.378500px;}
.y78{bottom:640.956000px;}
.y202{bottom:641.139000px;}
.y33f{bottom:645.114000px;}
.y224{bottom:646.297500px;}
.yde{bottom:647.557500px;}
.y2a3{bottom:648.337500px;}
.y189{bottom:648.954000px;}
.y24d{bottom:650.778000px;}
.y1ee{bottom:651.508500px;}
.y154{bottom:652.191000px;}
.y26d{bottom:652.299000px;}
.y2ea{bottom:652.582500px;}
.ya1{bottom:652.947000px;}
.y39d{bottom:653.157000px;}
.y57{bottom:654.195000px;}
.y36d{bottom:654.550500px;}
.y30b{bottom:656.578500px;}
.y1a6{bottom:657.022500px;}
.y1c9{bottom:657.154500px;}
.y10c{bottom:657.595500px;}
.y20{bottom:658.192500px;}
.y2c6{bottom:658.489500px;}
.yc6{bottom:658.738500px;}
.y77{bottom:659.236500px;}
.y201{bottom:659.868000px;}
.y36c{bottom:662.980500px;}
.y223{bottom:664.311000px;}
.y2a2{bottom:664.771500px;}
.y188{bottom:665.238000px;}
.y1ed{bottom:667.789500px;}
.y153{bottom:668.391000px;}
.y24c{bottom:668.860500px;}
.y39c{bottom:669.357000px;}
.ya0{bottom:670.981500px;}
.y2e9{bottom:671.335500px;}
.y1a5{bottom:671.422500px;}
.y30a{bottom:672.778500px;}
.y56{bottom:672.840000px;}
.y33e{bottom:673.476000px;}
.y1c8{bottom:675.625500px;}
.y10b{bottom:676.159500px;}
.y1f{bottom:676.192500px;}
.y2c5{bottom:676.621500px;}
.yc5{bottom:677.115000px;}
.y76{bottom:677.518500px;}
.y200{bottom:678.597000px;}
.y36b{bottom:679.180500px;}
.y2a1{bottom:681.205500px;}
.y222{bottom:682.324500px;}
.y39b{bottom:685.557000px;}
.y1a4{bottom:685.822500px;}
.ydd{bottom:686.997000px;}
.y1ec{bottom:688.321500px;}
.y152{bottom:688.843500px;}
.y309{bottom:688.978500px;}
.y9f{bottom:689.016000px;}
.y33d{bottom:689.676000px;}
.y2e8{bottom:690.090000px;}
.y55{bottom:691.483500px;}
.y1c7{bottom:694.095000px;}
.y1e{bottom:694.192500px;}
.y174{bottom:694.716000px;}
.y10a{bottom:694.725000px;}
.y2c4{bottom:694.752000px;}
.y1ff{bottom:697.326000px;}
.y221{bottom:700.339500px;}
.y36a{bottom:701.133000px;}
.y39a{bottom:701.757000px;}
.y24b{bottom:703.951500px;}
.yc4{bottom:703.996500px;}
.y1eb{bottom:704.602500px;}
.y151{bottom:705.043500px;}
.y308{bottom:705.178500px;}
.y33c{bottom:705.876000px;}
.y9e{bottom:707.052000px;}
.y173{bottom:709.116000px;}
.y19e{bottom:709.209000px;}
.y54{bottom:710.127000px;}
.y1d{bottom:712.192500px;}
.y1c6{bottom:712.564500px;}
.y2c3{bottom:712.882500px;}
.y109{bottom:713.289000px;}
.y2a0{bottom:714.646500px;}
.y1fe{bottom:716.056500px;}
.y75{bottom:717.058500px;}
.y369{bottom:717.258000px;}
.y399{bottom:717.957000px;}
.y220{bottom:718.353000px;}
.y24a{bottom:720.234000px;}
.y1ea{bottom:720.883500px;}
.y150{bottom:721.243500px;}
.y307{bottom:721.378500px;}
.y33b{bottom:722.076000px;}
.yc3{bottom:722.373000px;}
.y172{bottom:723.516000px;}
.y9d{bottom:725.086500px;}
.y285{bottom:725.355000px;}
.y2e7{bottom:725.850000px;}
.y53{bottom:728.772000px;}
.y1c{bottom:730.192500px;}
.y33a{bottom:730.579500px;}
.y2c2{bottom:731.014500px;}
.y1c5{bottom:731.035500px;}
.y74{bottom:731.740500px;}
.y29f{bottom:732.880500px;}
.y368{bottom:733.383000px;}
.y398{bottom:734.157000px;}
.y1fd{bottom:734.785500px;}
.y249{bottom:736.516500px;}
.y14f{bottom:737.443500px;}
.y306{bottom:737.578500px;}
.y171{bottom:737.916000px;}
.y108{bottom:740.358000px;}
.yc2{bottom:740.749500px;}
.y397{bottom:742.660500px;}
.y2e6{bottom:742.804500px;}
.y9c{bottom:743.121000px;}
.y284{bottom:743.518500px;}
.y73{bottom:746.421000px;}
.y339{bottom:746.779500px;}
.y52{bottom:747.415500px;}
.y1b{bottom:748.192500px;}
.y2c1{bottom:749.145000px;}
.y1c4{bottom:749.505000px;}
.y367{bottom:749.508000px;}
.y29e{bottom:751.114500px;}
.y170{bottom:752.316000px;}
.y248{bottom:752.799000px;}
.y21f{bottom:753.375000px;}
.y1fc{bottom:753.514500px;}
.y14e{bottom:753.643500px;}
.y305{bottom:753.778500px;}
.y1e9{bottom:754.173000px;}
.y396{bottom:758.860500px;}
.y107{bottom:758.923500px;}
.yc1{bottom:759.126000px;}
.y2e5{bottom:759.757500px;}
.y9b{bottom:761.155500px;}
.y283{bottom:761.683500px;}
.y51{bottom:766.060500px;}
.y1a{bottom:766.192500px;}
.y2c0{bottom:767.277000px;}
.y1c3{bottom:767.974500px;}
.y338{bottom:768.733500px;}
.y247{bottom:769.081500px;}
.y29d{bottom:769.348500px;}
.y21e{bottom:769.588500px;}
.y14d{bottom:769.843500px;}
.y304{bottom:769.978500px;}
.y1fb{bottom:772.243500px;}
.y1e8{bottom:772.254000px;}
.y366{bottom:774.138000px;}
.y2e4{bottom:776.710500px;}
.y106{bottom:777.489000px;}
.yc0{bottom:777.504000px;}
.y2b4{bottom:779.461500px;}
.y282{bottom:779.847000px;}
.y395{bottom:780.814500px;}
.y2da{bottom:781.105500px;}
.y19{bottom:784.192500px;}
.y50{bottom:784.704000px;}
.y337{bottom:784.933500px;}
.y246{bottom:785.364000px;}
.y2bf{bottom:785.407500px;}
.y21d{bottom:785.803500px;}
.y14c{bottom:786.043500px;}
.y29c{bottom:787.582500px;}
.y365{bottom:790.263000px;}
.y1e7{bottom:790.335000px;}
.y2e3{bottom:793.663500px;}
.y2b3{bottom:793.861500px;}
.y303{bottom:794.682000px;}
.y1c2{bottom:794.949000px;}
.ybf{bottom:795.880500px;}
.y105{bottom:796.053000px;}
.y9a{bottom:796.198500px;}
.y394{bottom:797.014500px;}
.y281{bottom:798.010500px;}
.y336{bottom:801.133500px;}
.y245{bottom:801.646500px;}
.y18{bottom:802.192500px;}
.y4f{bottom:803.347500px;}
.y2be{bottom:803.539500px;}
.y29b{bottom:805.816500px;}
.y364{bottom:806.388000px;}
.y1fa{bottom:807.981000px;}
.y2e2{bottom:810.616500px;}
.y99{bottom:812.433000px;}
.y393{bottom:813.214500px;}
.y1c1{bottom:813.418500px;}
.ybe{bottom:814.257000px;}
.y104{bottom:814.618500px;}
.y280{bottom:816.174000px;}
.y1e6{bottom:816.919500px;}
.y335{bottom:817.333500px;}
.y244{bottom:817.929000px;}
.y21c{bottom:819.025500px;}
.y14b{bottom:819.250500px;}
.y17{bottom:820.192500px;}
.y302{bottom:820.540500px;}
.y2bd{bottom:821.670000px;}
.y4e{bottom:821.992500px;}
.y29a{bottom:824.049000px;}
.y1f9{bottom:824.910000px;}
.y1af{bottom:825.394500px;}
.y98{bottom:828.667500px;}
.y363{bottom:831.016500px;}
.y1c0{bottom:831.889500px;}
.ybd{bottom:832.633500px;}
.y103{bottom:833.182500px;}
.y334{bottom:833.533500px;}
.y27f{bottom:834.339000px;}
.y1e5{bottom:835.000500px;}
.y14a{bottom:837.250500px;}
.y392{bottom:837.918000px;}
.y16{bottom:838.192500px;}
.y243{bottom:838.464000px;}
.y2bc{bottom:839.802000px;}
.y1f8{bottom:841.839000px;}
.y299{bottom:842.283000px;}
.y1ae{bottom:843.478500px;}
.y2e1{bottom:844.578000px;}
.y4d{bottom:849.141000px;}
.y333{bottom:849.733500px;}
.y1bf{bottom:850.359000px;}
.ybc{bottom:851.011500px;}
.y27e{bottom:852.502500px;}
.y1e4{bottom:853.081500px;}
.y21b{bottom:854.047500px;}
.y242{bottom:854.746500px;}
.y149{bottom:855.250500px;}
.y362{bottom:856.875000px;}
.y298{bottom:860.517000px;}
.y1ad{bottom:861.562500px;}
.y97{bottom:861.910500px;}
.y26c{bottom:862.153500px;}
.y2e0{bottom:863.331000px;}
.y391{bottom:863.776500px;}
.y332{bottom:865.933500px;}
.y4c{bottom:867.784500px;}
.y102{bottom:868.756500px;}
.ybb{bottom:869.388000px;}
.y21a{bottom:870.261000px;}
.y241{bottom:871.029000px;}
.y1e3{bottom:871.162500px;}
.y301{bottom:872.742000px;}
.y148{bottom:873.250500px;}
.y2bb{bottom:874.941000px;}
.y1f7{bottom:875.776500px;}
.y1be{bottom:877.333500px;}
.y297{bottom:878.751000px;}
.y27d{bottom:879.169500px;}
.y1ac{bottom:879.646500px;}
.y96{bottom:879.945000px;}
.y26b{bottom:880.153500px;}
.y2df{bottom:882.084000px;}
.y331{bottom:882.133500px;}
.y361{bottom:882.733500px;}
.y101{bottom:885.520500px;}
.y4b{bottom:886.428000px;}
.y219{bottom:886.474500px;}
.yba{bottom:887.764500px;}
.y1e2{bottom:889.243500px;}
.y330{bottom:890.637000px;}
.y360{bottom:890.937000px;}
.y2ba{bottom:891.271500px;}
.y240{bottom:891.564000px;}
.y300{bottom:891.571500px;}
.y1f6{bottom:894.505500px;}
.y1bd{bottom:895.803000px;}
.y390{bottom:896.391000px;}
.y296{bottom:896.985000px;}
.y133{bottom:897.250500px;}
.y27c{bottom:897.333000px;}
.y1ab{bottom:897.732000px;}
.y95{bottom:897.979500px;}
.y26a{bottom:898.153500px;}
.y2c{bottom:899.782500px;}
.y2de{bottom:900.838500px;}
.y100{bottom:902.286000px;}
.y218{bottom:902.689500px;}
.y4a{bottom:905.073000px;}
.yb9{bottom:906.141000px;}
.y32f{bottom:906.837000px;}
.y35f{bottom:907.137000px;}
.y2b9{bottom:907.603500px;}
.y23f{bottom:907.846500px;}
.y147{bottom:908.259000px;}
.y2ff{bottom:910.402500px;}
.y38f{bottom:912.591000px;}
.y1f5{bottom:913.236000px;}
.y1bc{bottom:914.272500px;}
.y295{bottom:915.217500px;}
.y132{bottom:915.430500px;}
.y27b{bottom:915.498000px;}
.y1aa{bottom:915.816000px;}
.y1e1{bottom:915.829500px;}
.y94{bottom:916.014000px;}
.y269{bottom:916.153500px;}
.y217{bottom:918.903000px;}
.yff{bottom:919.050000px;}
.y2dd{bottom:919.591500px;}
.y49{bottom:923.716500px;}
.y2b8{bottom:923.934000px;}
.y23e{bottom:924.129000px;}
.y146{bottom:924.459000px;}
.yb8{bottom:924.519000px;}
.y32e{bottom:928.791000px;}
.y35e{bottom:929.091000px;}
.y2b{bottom:929.779500px;}
.y1f4{bottom:931.965000px;}
.y1bb{bottom:932.743500px;}
.y294{bottom:933.451500px;}
.y131{bottom:933.610500px;}
.y27a{bottom:933.661500px;}
.y1a9{bottom:933.900000px;}
.y1e0{bottom:933.910500px;}
.y93{bottom:934.048500px;}
.y268{bottom:934.153500px;}
.yfe{bottom:935.815500px;}
.y38e{bottom:937.294500px;}
.y2fe{bottom:937.737000px;}
.y2b7{bottom:940.266000px;}
.y23d{bottom:940.411500px;}
.y145{bottom:940.659000px;}
.y48{bottom:942.361500px;}
.y1f3{bottom:950.694000px;}
.y1ba{bottom:951.213000px;}
.yb7{bottom:951.399000px;}
.y293{bottom:951.685500px;}
.y130{bottom:951.792000px;}
.y279{bottom:951.825000px;}
.y34{bottom:951.883500px;}
.y1a8{bottom:951.984000px;}
.y1df{bottom:951.991500px;}
.y92{bottom:952.083000px;}
.y216{bottom:952.125000px;}
.y267{bottom:952.153500px;}
.y32d{bottom:953.494500px;}
.y2dc{bottom:955.353000px;}
.y2b6{bottom:956.596500px;}
.y23c{bottom:956.694000px;}
.y144{bottom:956.859000px;}
.y2fd{bottom:957.397500px;}
.y29{bottom:959.770500px;}
.y2a{bottom:959.776500px;}
.y1f2{bottom:969.424500px;}
.y47{bottom:969.508500px;}
.yfd{bottom:969.588000px;}
.y1b9{bottom:969.682500px;}
.yb6{bottom:969.775500px;}
.yf9{bottom:969.792000px;}
.y292{bottom:969.919500px;}
.y12f{bottom:969.972000px;}
.y278{bottom:969.988500px;}
.y33{bottom:970.018500px;}
.y1a7{bottom:970.068000px;}
.y1de{bottom:970.072500px;}
.y91{bottom:970.117500px;}
.y215{bottom:970.138500px;}
.y266{bottom:970.153500px;}
.y2db{bottom:972.306000px;}
.y2b5{bottom:972.928500px;}
.y23b{bottom:972.976500px;}
.y143{bottom:973.059000px;}
.y32c{bottom:979.354500px;}
.y32{bottom:988.153500px;}
.y142{bottom:989.259000px;}
.y28{bottom:989.773500px;}
.y27{bottom:1019.770500px;}
.y31{bottom:1046.664000px;}
.h2{height:25.512000px;}
.h4{height:28.511850px;}
.h16{height:32.751666px;}
.h8{height:32.752266px;}
.h15{height:32.754666px;}
.he{height:34.986000px;}
.h18{height:42.662109px;}
.h12{height:44.496000px;}
.h10{height:44.832000px;}
.h11{height:46.065658px;}
.h17{height:49.517578px;}
.h9{height:50.572266px;}
.h5{height:55.019531px;}
.hb{height:55.620000px;}
.ha{height:56.040000px;}
.h6{height:56.191406px;}
.h7{height:56.203406px;}
.hf{height:56.209406px;}
.h13{height:56.215406px;}
.h14{height:56.257406px;}
.h3{height:61.644000px;}
.hd{height:66.744000px;}
.hc{height:100.872000px;}
.h0{height:1148.031000px;}
.h1{height:1148.250000px;}
.w2{width:12.144000px;}
.w4{width:12.144900px;}
.w3{width:48.951000px;}
.w5{width:48.952050px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.x2{left:3.216000px;}
.x9{left:25.108500px;}
.xa{left:94.154100px;}
.x3e{left:100.633050px;}
.xb{left:106.299300px;}
.x22{left:107.528850px;}
.x20{left:109.748100px;}
.x46{left:112.299300px;}
.x1f{left:120.294600px;}
.x3{left:127.559100px;}
.x41{left:130.785450px;}
.x3f{left:134.220150px;}
.x40{left:135.872100px;}
.x2b{left:138.432900px;}
.x4{left:148.818900px;}
.x42{left:151.359000px;}
.x38{left:152.376000px;}
.x36{left:156.619500px;}
.xc{left:158.169000px;}
.x2d{left:166.992000px;}
.x8{left:169.138500px;}
.x7{left:170.476500px;}
.x3d{left:173.671500px;}
.x14{left:180.201000px;}
.x23{left:187.528500px;}
.x18{left:191.338500px;}
.x1b{left:197.701500px;}
.x11{left:199.300500px;}
.x43{left:203.836500px;}
.x10{left:212.446500px;}
.x31{left:218.961000px;}
.x2e{left:220.656000px;}
.x24{left:225.171000px;}
.x19{left:228.282000px;}
.x2f{left:243.751500px;}
.x30{left:247.543500px;}
.x26{left:252.582000px;}
.x34{left:254.817000px;}
.x1e{left:266.809500px;}
.x35{left:280.893000px;}
.x47{left:282.378000px;}
.x1a{left:286.416000px;}
.xf{left:290.428200px;}
.x2c{left:291.568500px;}
.x45{left:303.637500px;}
.x6{left:306.367500px;}
.x15{left:313.416000px;}
.x37{left:335.733000px;}
.x3c{left:361.417500px;}
.x3b{left:382.677000px;}
.x25{left:388.009500px;}
.x16{left:390.040500px;}
.x1c{left:395.478000px;}
.x5{left:412.441500px;}
.x32{left:416.737500px;}
.x2a{left:427.692000px;}
.x28{left:428.749500px;}
.x27{left:432.222000px;}
.x44{left:436.776000px;}
.x29{left:438.237000px;}
.x12{left:439.725000px;}
.x3a{left:446.457000px;}
.x17{left:467.280000px;}
.xd{left:496.957500px;}
.x13{left:502.828500px;}
.x39{left:544.287000px;}
.x1d{left:558.316500px;}
.x33{left:579.576000px;}
.xe{left:597.915000px;}
.x21{left:623.709000px;}
.x1{left:689.430000px;}
@media print{
.v2{vertical-align:-15.840000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.840000pt;}
.v1{vertical-align:17.600000pt;}
.v3{vertical-align:38.890667pt;}
.ls2d{letter-spacing:-1.200000pt;}
.ls24{letter-spacing:-1.066667pt;}
.ls5{letter-spacing:-0.960000pt;}
.ls15{letter-spacing:-0.853333pt;}
.ls11{letter-spacing:-0.800000pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls25{letter-spacing:-0.618667pt;}
.ls1c{letter-spacing:-0.586667pt;}
.lsa{letter-spacing:-0.533333pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.464000pt;}
.ls2a{letter-spacing:-0.426667pt;}
.ls1a{letter-spacing:-0.371200pt;}
.ls1d{letter-spacing:-0.340267pt;}
.lsb{letter-spacing:-0.278400pt;}
.lsf{letter-spacing:-0.266667pt;}
.ls2b{letter-spacing:-0.247467pt;}
.ls6{letter-spacing:-0.240000pt;}
.ls26{letter-spacing:-0.213333pt;}
.ls10{letter-spacing:-0.154667pt;}
.ls14{letter-spacing:-0.139200pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.008889pt;}
.ls8{letter-spacing:0.010951pt;}
.ls0{letter-spacing:0.011378pt;}
.ls2{letter-spacing:0.011662pt;}
.ls4{letter-spacing:0.012089pt;}
.ls2c{letter-spacing:0.014222pt;}
.ls7{letter-spacing:0.021333pt;}
.ls1b{letter-spacing:0.139200pt;}
.ls23{letter-spacing:0.154667pt;}
.ls2f{letter-spacing:0.200889pt;}
.ls19{letter-spacing:0.240000pt;}
.ls20{letter-spacing:0.266667pt;}
.ls21{letter-spacing:0.278400pt;}
.ls1e{letter-spacing:0.480000pt;}
.ls17{letter-spacing:0.533333pt;}
.ls29{letter-spacing:0.556800pt;}
.ls22{letter-spacing:0.618667pt;}
.ls27{letter-spacing:0.960000pt;}
.ls9{letter-spacing:1.004444pt;}
.ls1f{letter-spacing:1.066667pt;}
.ls16{letter-spacing:1.765333pt;}
.ls28{letter-spacing:2.343467pt;}
.lsd{letter-spacing:3.096889pt;}
.lse{letter-spacing:57.139556pt;}
.ls13{letter-spacing:57.140267pt;}
.ls1{letter-spacing:86.219662pt;}
.ws2d{word-spacing:-16.053333pt;}
.ws3e{word-spacing:-15.520000pt;}
.wsa5{word-spacing:-15.253333pt;}
.ws41{word-spacing:-14.448000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws5f{word-spacing:-11.263807pt;}
.ws112{word-spacing:-9.929600pt;}
.ws124{word-spacing:-9.465600pt;}
.ws3d{word-spacing:-9.310933pt;}
.ws99{word-spacing:-9.156267pt;}
.ws13d{word-spacing:-9.063467pt;}
.ws103{word-spacing:-8.970667pt;}
.wsf5{word-spacing:-8.939733pt;}
.ws130{word-spacing:-8.936640pt;}
.wsa4{word-spacing:-8.846933pt;}
.ws129{word-spacing:-8.692267pt;}
.ws3f{word-spacing:-8.379840pt;}
.ws40{word-spacing:-8.101440pt;}
.ws1{word-spacing:-7.888000pt;}
.wsd2{word-spacing:-4.704000pt;}
.wse4{word-spacing:-3.648000pt;}
.ws8e{word-spacing:-3.146667pt;}
.wsd6{word-spacing:-3.093333pt;}
.wsd5{word-spacing:-2.986667pt;}
.wsc0{word-spacing:-2.880000pt;}
.ws55{word-spacing:-2.832000pt;}
.ws141{word-spacing:-2.826667pt;}
.ws97{word-spacing:-2.784000pt;}
.ws109{word-spacing:-2.773333pt;}
.ws72{word-spacing:-2.736000pt;}
.ws50{word-spacing:-2.720000pt;}
.ws8b{word-spacing:-2.688000pt;}
.ws37{word-spacing:-2.666667pt;}
.ws6f{word-spacing:-2.640000pt;}
.ws14d{word-spacing:-2.592000pt;}
.ws9d{word-spacing:-2.560000pt;}
.ws65{word-spacing:-2.506667pt;}
.ws86{word-spacing:-2.496000pt;}
.ws56{word-spacing:-2.400000pt;}
.ws6c{word-spacing:-2.352000pt;}
.ws7a{word-spacing:-2.346667pt;}
.ws143{word-spacing:-2.304000pt;}
.ws60{word-spacing:-2.293333pt;}
.ws13f{word-spacing:-2.256000pt;}
.ws62{word-spacing:-2.240000pt;}
.wsaf{word-spacing:-2.208000pt;}
.wsa0{word-spacing:-2.186667pt;}
.ws107{word-spacing:-2.160000pt;}
.ws104{word-spacing:-2.133333pt;}
.ws33{word-spacing:-2.080000pt;}
.ws96{word-spacing:-2.064000pt;}
.ws32{word-spacing:-2.026667pt;}
.ws13b{word-spacing:-2.016000pt;}
.wsdf{word-spacing:-1.973333pt;}
.ws5a{word-spacing:-1.968000pt;}
.wsa9{word-spacing:-1.920000pt;}
.ws4e{word-spacing:-1.866667pt;}
.wsae{word-spacing:-1.824000pt;}
.ws12b{word-spacing:-1.813333pt;}
.ws10b{word-spacing:-1.776000pt;}
.ws1f{word-spacing:-1.760000pt;}
.ws7d{word-spacing:-1.706667pt;}
.wsde{word-spacing:-1.680000pt;}
.ws8c{word-spacing:-1.653333pt;}
.ws119{word-spacing:-1.632000pt;}
.ws95{word-spacing:-1.600000pt;}
.wse{word-spacing:-1.584000pt;}
.ws48{word-spacing:-1.546667pt;}
.ws59{word-spacing:-1.536000pt;}
.wse0{word-spacing:-1.488000pt;}
.wse2{word-spacing:-1.440000pt;}
.ws155{word-spacing:-1.392000pt;}
.ws8f{word-spacing:-1.386667pt;}
.ws81{word-spacing:-1.344000pt;}
.wsee{word-spacing:-1.333333pt;}
.wsf4{word-spacing:-1.296000pt;}
.ws42{word-spacing:-1.280000pt;}
.ws150{word-spacing:-1.248000pt;}
.ws38{word-spacing:-1.226667pt;}
.ws73{word-spacing:-1.200000pt;}
.ws35{word-spacing:-1.173333pt;}
.ws54{word-spacing:-1.152000pt;}
.ws9a{word-spacing:-1.120000pt;}
.ws156{word-spacing:-1.104000pt;}
.wsaa{word-spacing:-1.066667pt;}
.wsd3{word-spacing:-1.056000pt;}
.ws36{word-spacing:-1.013333pt;}
.wse3{word-spacing:-1.008000pt;}
.ws4b{word-spacing:-0.960000pt;}
.ws142{word-spacing:-0.912000pt;}
.ws93{word-spacing:-0.906667pt;}
.ws88{word-spacing:-0.864000pt;}
.ws8d{word-spacing:-0.853333pt;}
.ws5b{word-spacing:-0.816000pt;}
.wsa7{word-spacing:-0.800000pt;}
.ws3a{word-spacing:-0.768000pt;}
.wsc{word-spacing:-0.746667pt;}
.ws15d{word-spacing:-0.720000pt;}
.ws108{word-spacing:-0.693333pt;}
.wsd8{word-spacing:-0.672000pt;}
.ws7e{word-spacing:-0.640000pt;}
.ws6{word-spacing:-0.586667pt;}
.ws15b{word-spacing:-0.576000pt;}
.ws79{word-spacing:-0.533333pt;}
.ws152{word-spacing:-0.528000pt;}
.ws15{word-spacing:-0.480000pt;}
.ws10a{word-spacing:-0.432000pt;}
.wsab{word-spacing:-0.426667pt;}
.ws74{word-spacing:-0.336000pt;}
.wse9{word-spacing:-0.320000pt;}
.wsce{word-spacing:-0.288000pt;}
.ws11a{word-spacing:-0.278400pt;}
.ws92{word-spacing:-0.266667pt;}
.ws149{word-spacing:-0.240000pt;}
.ws1c{word-spacing:-0.213333pt;}
.wsad{word-spacing:-0.192000pt;}
.ws75{word-spacing:-0.160000pt;}
.ws51{word-spacing:-0.144000pt;}
.wsfa{word-spacing:-0.139200pt;}
.ws159{word-spacing:-0.096000pt;}
.ws46{word-spacing:-0.053333pt;}
.ws12f{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
.ws15e{word-spacing:0.048000pt;}
.wsef{word-spacing:0.053333pt;}
.ws83{word-spacing:0.096000pt;}
.ws4f{word-spacing:0.106667pt;}
.wsbe{word-spacing:0.139200pt;}
.wsbb{word-spacing:0.144000pt;}
.ws1d{word-spacing:0.160000pt;}
.ws70{word-spacing:0.192000pt;}
.ws2e{word-spacing:0.213333pt;}
.ws3c{word-spacing:0.240000pt;}
.ws30{word-spacing:0.266667pt;}
.ws90{word-spacing:0.288000pt;}
.ws7{word-spacing:0.320000pt;}
.wsd4{word-spacing:0.336000pt;}
.ws61{word-spacing:0.373333pt;}
.ws58{word-spacing:0.384000pt;}
.ws4c{word-spacing:0.426667pt;}
.wsd9{word-spacing:0.432000pt;}
.ws5d{word-spacing:0.480000pt;}
.ws8a{word-spacing:0.528000pt;}
.ws4a{word-spacing:0.533333pt;}
.ws3b{word-spacing:0.576000pt;}
.ws63{word-spacing:0.586667pt;}
.ws13c{word-spacing:0.624000pt;}
.ws49{word-spacing:0.640000pt;}
.ws6d{word-spacing:0.672000pt;}
.wsac{word-spacing:0.693333pt;}
.ws101{word-spacing:0.720000pt;}
.ws94{word-spacing:0.746667pt;}
.ws71{word-spacing:0.768000pt;}
.ws78{word-spacing:0.800000pt;}
.wsd{word-spacing:0.816000pt;}
.ws9{word-spacing:0.853333pt;}
.ws9f{word-spacing:0.906667pt;}
.wsb8{word-spacing:0.912000pt;}
.ws9e{word-spacing:0.960000pt;}
.wsf8{word-spacing:1.008000pt;}
.ws5{word-spacing:1.013333pt;}
.wsd0{word-spacing:1.056000pt;}
.ws19{word-spacing:1.066667pt;}
.ws5e{word-spacing:1.104000pt;}
.ws84{word-spacing:1.152000pt;}
.wsb{word-spacing:1.173333pt;}
.ws98{word-spacing:1.200000pt;}
.wsa{word-spacing:1.226667pt;}
.ws138{word-spacing:1.248000pt;}
.ws44{word-spacing:1.280000pt;}
.ws52{word-spacing:1.296000pt;}
.ws31{word-spacing:1.333333pt;}
.wsf1{word-spacing:1.344000pt;}
.wsb2{word-spacing:1.386667pt;}
.ws57{word-spacing:1.392000pt;}
.ws8{word-spacing:1.440000pt;}
.ws5c{word-spacing:1.488000pt;}
.ws77{word-spacing:1.493333pt;}
.ws91{word-spacing:1.536000pt;}
.ws12{word-spacing:1.546667pt;}
.wsda{word-spacing:1.584000pt;}
.wsec{word-spacing:1.600000pt;}
.ws102{word-spacing:1.632000pt;}
.wscb{word-spacing:1.680000pt;}
.ws9c{word-spacing:1.706667pt;}
.ws67{word-spacing:1.760000pt;}
.wsdd{word-spacing:1.776000pt;}
.ws12c{word-spacing:1.813333pt;}
.wse1{word-spacing:1.824000pt;}
.ws2a{word-spacing:1.866667pt;}
.ws89{word-spacing:1.872000pt;}
.ws7f{word-spacing:1.920000pt;}
.ws85{word-spacing:1.968000pt;}
.wsa6{word-spacing:1.973333pt;}
.wsd7{word-spacing:2.016000pt;}
.ws2f{word-spacing:2.026667pt;}
.wsc4{word-spacing:2.064000pt;}
.wse8{word-spacing:2.080000pt;}
.wsb1{word-spacing:2.133333pt;}
.wscf{word-spacing:2.160000pt;}
.wseb{word-spacing:2.186667pt;}
.ws76{word-spacing:2.240000pt;}
.ws154{word-spacing:2.256000pt;}
.ws146{word-spacing:2.304000pt;}
.wsa8{word-spacing:2.346667pt;}
.wsdc{word-spacing:2.352000pt;}
.wsb9{word-spacing:2.400000pt;}
.wsf9{word-spacing:2.448000pt;}
.ws45{word-spacing:2.453333pt;}
.ws110{word-spacing:2.496000pt;}
.ws147{word-spacing:2.506667pt;}
.wscc{word-spacing:2.544000pt;}
.ws6a{word-spacing:2.560000pt;}
.ws145{word-spacing:2.592000pt;}
.wsfe{word-spacing:2.666667pt;}
.ws153{word-spacing:2.688000pt;}
.wsc6{word-spacing:2.736000pt;}
.ws6b{word-spacing:2.773333pt;}
.ws144{word-spacing:2.784000pt;}
.ws69{word-spacing:2.826667pt;}
.ws6e{word-spacing:2.832000pt;}
.ws68{word-spacing:2.880000pt;}
.wsb7{word-spacing:2.928000pt;}
.ws3{word-spacing:2.933333pt;}
.ws10c{word-spacing:2.976000pt;}
.wsb4{word-spacing:2.986667pt;}
.ws123{word-spacing:3.024000pt;}
.ws14a{word-spacing:3.072000pt;}
.ws4d{word-spacing:3.093333pt;}
.ws10f{word-spacing:3.120000pt;}
.ws4{word-spacing:3.146667pt;}
.ws13a{word-spacing:3.168000pt;}
.ws24{word-spacing:3.200000pt;}
.ws14c{word-spacing:3.216000pt;}
.wsb5{word-spacing:3.253333pt;}
.wsf2{word-spacing:3.264000pt;}
.wsc8{word-spacing:3.306667pt;}
.wsdb{word-spacing:3.312000pt;}
.ws66{word-spacing:3.360000pt;}
.ws15f{word-spacing:3.408000pt;}
.wsf0{word-spacing:3.413333pt;}
.wsa2{word-spacing:3.456000pt;}
.ws132{word-spacing:3.466667pt;}
.ws133{word-spacing:3.520000pt;}
.ws10e{word-spacing:3.552000pt;}
.ws22{word-spacing:3.626667pt;}
.wse7{word-spacing:3.680000pt;}
.ws106{word-spacing:3.696000pt;}
.ws13{word-spacing:3.733333pt;}
.wsbf{word-spacing:3.786667pt;}
.ws158{word-spacing:3.792000pt;}
.wsf7{word-spacing:3.840000pt;}
.ws128{word-spacing:3.888000pt;}
.ws25{word-spacing:3.893333pt;}
.ws10d{word-spacing:3.936000pt;}
.wsc9{word-spacing:3.946667pt;}
.ws34{word-spacing:4.000000pt;}
.wsf6{word-spacing:4.053333pt;}
.wsd1{word-spacing:4.080000pt;}
.ws82{word-spacing:4.128000pt;}
.ws157{word-spacing:4.176000pt;}
.wsb6{word-spacing:4.213333pt;}
.ws10{word-spacing:4.224000pt;}
.ws80{word-spacing:4.266667pt;}
.ws14b{word-spacing:4.320000pt;}
.wsb3{word-spacing:4.373333pt;}
.wsca{word-spacing:4.416000pt;}
.wsa3{word-spacing:4.426667pt;}
.ws53{word-spacing:4.512000pt;}
.ws151{word-spacing:4.560000pt;}
.ws12d{word-spacing:4.586667pt;}
.wsf3{word-spacing:4.608000pt;}
.wsfd{word-spacing:4.640000pt;}
.ws14e{word-spacing:4.656000pt;}
.ws139{word-spacing:4.704000pt;}
.wsba{word-spacing:4.752000pt;}
.ws26{word-spacing:4.800000pt;}
.wsff{word-spacing:4.853333pt;}
.ws105{word-spacing:4.896000pt;}
.wse5{word-spacing:4.906667pt;}
.ws17{word-spacing:4.960000pt;}
.wsc3{word-spacing:4.992000pt;}
.ws47{word-spacing:5.013333pt;}
.ws29{word-spacing:5.066667pt;}
.ws15c{word-spacing:5.088000pt;}
.ws39{word-spacing:5.120000pt;}
.ws9b{word-spacing:5.173333pt;}
.wsc2{word-spacing:5.232000pt;}
.ws131{word-spacing:5.280000pt;}
.ws114{word-spacing:5.424000pt;}
.ws20{word-spacing:5.440000pt;}
.ws87{word-spacing:5.472000pt;}
.wsc7{word-spacing:5.520000pt;}
.ws18{word-spacing:5.546667pt;}
.wsa1{word-spacing:5.653333pt;}
.ws13e{word-spacing:5.664000pt;}
.ws16{word-spacing:5.706667pt;}
.ws43{word-spacing:5.760000pt;}
.ws12e{word-spacing:5.813333pt;}
.ws116{word-spacing:5.856000pt;}
.ws11c{word-spacing:5.920000pt;}
.ws7b{word-spacing:6.048000pt;}
.ws11f{word-spacing:6.080000pt;}
.ws15a{word-spacing:6.096000pt;}
.ws11e{word-spacing:6.133333pt;}
.wsea{word-spacing:6.186667pt;}
.ws64{word-spacing:6.240000pt;}
.ws115{word-spacing:6.336000pt;}
.ws125{word-spacing:6.346667pt;}
.ws14f{word-spacing:6.432000pt;}
.ws117{word-spacing:6.528000pt;}
.wsb0{word-spacing:6.560000pt;}
.ws100{word-spacing:6.576000pt;}
.ws118{word-spacing:6.624000pt;}
.wsbc{word-spacing:6.672000pt;}
.ws12a{word-spacing:6.720000pt;}
.wse6{word-spacing:6.826667pt;}
.ws121{word-spacing:6.933333pt;}
.ws14{word-spacing:6.986667pt;}
.wsc5{word-spacing:7.056000pt;}
.wsfc{word-spacing:7.152000pt;}
.ws134{word-spacing:7.306667pt;}
.ws21{word-spacing:7.413333pt;}
.ws11{word-spacing:7.466667pt;}
.ws148{word-spacing:7.536000pt;}
.wscd{word-spacing:7.584000pt;}
.ws1b{word-spacing:7.680000pt;}
.ws113{word-spacing:7.728000pt;}
.wsc1{word-spacing:7.776000pt;}
.wsbd{word-spacing:8.016000pt;}
.wsed{word-spacing:8.053333pt;}
.ws1a{word-spacing:8.533333pt;}
.ws27{word-spacing:8.800000pt;}
.ws7c{word-spacing:8.976000pt;}
.ws120{word-spacing:9.013333pt;}
.ws11d{word-spacing:9.066667pt;}
.ws11b{word-spacing:9.280000pt;}
.ws137{word-spacing:9.552000pt;}
.ws1e{word-spacing:9.600000pt;}
.wsfb{word-spacing:9.696000pt;}
.ws135{word-spacing:10.133333pt;}
.ws122{word-spacing:10.773333pt;}
.ws136{word-spacing:11.306667pt;}
.ws28{word-spacing:12.480000pt;}
.ws127{word-spacing:13.866667pt;}
.ws23{word-spacing:13.920000pt;}
.ws140{word-spacing:14.720000pt;}
.ws2b{word-spacing:19.893333pt;}
.ws2c{word-spacing:20.373333pt;}
.ws126{word-spacing:20.533333pt;}
.ws111{word-spacing:57.120000pt;}
.wsf{word-spacing:71.712000pt;}
._1e{margin-left:-1937.370667pt;}
._16{margin-left:-1693.822222pt;}
._24{margin-left:-1674.826667pt;}
._22{margin-left:-1642.960000pt;}
._20{margin-left:-1552.595556pt;}
._23{margin-left:-1321.237333pt;}
._21{margin-left:-951.809778pt;}
._1b{margin-left:-297.827556pt;}
._6{margin-left:-67.488000pt;}
._1a{margin-left:-57.083164pt;}
._8{margin-left:-24.298667pt;}
._18{margin-left:-13.946667pt;}
._1c{margin-left:-11.002667pt;}
._a{margin-left:-9.264000pt;}
._9{margin-left:-8.064000pt;}
._5{margin-left:-6.960000pt;}
._3{margin-left:-5.866667pt;}
._4{margin-left:-4.848000pt;}
._1{margin-left:-3.200000pt;}
._0{margin-left:-1.813333pt;}
._7{margin-left:-0.906667pt;}
._2{width:0.906667pt;}
._12{width:2.720711pt;}
._17{width:3.896178pt;}
._19{width:5.719467pt;}
._15{width:51.670613pt;}
._14{width:53.014613pt;}
._10{width:54.311324pt;}
._f{width:55.702613pt;}
._13{width:56.951324pt;}
._11{width:57.911324pt;}
._1d{width:59.062613pt;}
._e{width:59.974613pt;}
._c{width:67.248000pt;}
._b{width:70.464000pt;}
._d{width:72.912000pt;}
._1f{width:124.937600pt;}
.fs3{font-size:27.840000pt;}
.fs2{font-size:30.933333pt;}
.fs7{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs9{font-size:44.171793pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:5.374400pt;}
.y4{bottom:6.707200pt;}
.y30{bottom:30.760000pt;}
.y3{bottom:36.461867pt;}
.y1{bottom:37.794667pt;}
.y2f{bottom:41.960000pt;}
.y2e{bottom:53.160000pt;}
.y2d{bottom:64.360000pt;}
.y23a{bottom:93.845733pt;}
.y3bb{bottom:94.019333pt;}
.y15{bottom:94.488133pt;}
.yf8{bottom:94.488267pt;}
.y12d{bottom:94.488667pt;}
.y12e{bottom:94.489733pt;}
.y38d{bottom:95.513733pt;}
.y35d{bottom:95.954533pt;}
.y32b{bottom:96.042000pt;}
.y16f{bottom:98.070267pt;}
.y127{bottom:98.448133pt;}
.y265{bottom:98.448267pt;}
.y35c{bottom:103.513600pt;}
.y239{bottom:106.645733pt;}
.y12c{bottom:107.288667pt;}
.yfc{bottom:107.609067pt;}
.y3ba{bottom:108.419333pt;}
.y72{bottom:108.888133pt;}
.y38c{bottom:109.847067pt;}
.y32a{bottom:110.442000pt;}
.y16e{bottom:112.289733pt;}
.y238{bottom:112.667600pt;}
.y19d{bottom:112.667733pt;}
.y14{bottom:112.848133pt;}
.yf7{bottom:112.848267pt;}
.y185{bottom:116.627600pt;}
.y126{bottom:116.627733pt;}
.y35b{bottom:117.913600pt;}
.y3b9{bottom:122.819333pt;}
.y71{bottom:123.288133pt;}
.y38b{bottom:124.180400pt;}
.y329{bottom:124.842000pt;}
.y16d{bottom:126.689733pt;}
.ydc{bottom:127.067733pt;}
.y13{bottom:127.068000pt;}
.y90{bottom:127.248133pt;}
.y3b8{bottom:130.378400pt;}
.y2fc{bottom:131.027600pt;}
.yf6{bottom:131.027733pt;}
.y125{bottom:134.806667pt;}
.y35a{bottom:137.428000pt;}
.y70{bottom:137.688000pt;}
.y38a{bottom:138.513333pt;}
.y16c{bottom:141.089333pt;}
.y12{bottom:141.468000pt;}
.yb5{bottom:141.648000pt;}
.y3b7{bottom:144.778667pt;}
.y46{bottom:145.428000pt;}
.y1b8{bottom:146.684000pt;}
.y328{bottom:146.801333pt;}
.y124{bottom:149.026667pt;}
.yf5{bottom:149.206667pt;}
.y359{bottom:151.828000pt;}
.y6f{bottom:152.088000pt;}
.y389{bottom:152.846667pt;}
.y184{bottom:152.986667pt;}
.y8f{bottom:155.868000pt;}
.y214{bottom:156.048000pt;}
.y16b{bottom:159.449333pt;}
.ydb{bottom:159.646667pt;}
.y11{bottom:159.828000pt;}
.y327{bottom:161.201333pt;}
.y1b7{bottom:162.758667pt;}
.y2fb{bottom:163.426667pt;}
.y45{bottom:163.606667pt;}
.y3b6{bottom:164.293333pt;}
.y141{bottom:164.862667pt;}
.y358{bottom:166.228000pt;}
.y1dd{bottom:166.488000pt;}
.y388{bottom:167.180000pt;}
.y123{bottom:167.386667pt;}
.y8e{bottom:170.268000pt;}
.y6e{bottom:170.448000pt;}
.y16a{bottom:173.669333pt;}
.yda{bottom:174.046667pt;}
.y213{bottom:174.228000pt;}
.y326{bottom:175.601333pt;}
.y2d9{bottom:177.826667pt;}
.y291{bottom:178.006667pt;}
.y3b5{bottom:178.693333pt;}
.y1b6{bottom:178.833333pt;}
.y140{bottom:179.424000pt;}
.y357{bottom:180.628000pt;}
.y387{bottom:181.513333pt;}
.y122{bottom:181.606667pt;}
.y44{bottom:181.786667pt;}
.y6d{bottom:184.668000pt;}
.y1dc{bottom:184.848000pt;}
.y212{bottom:188.446667pt;}
.y8d{bottom:188.628000pt;}
.y386{bottom:189.006667pt;}
.y325{bottom:190.001333pt;}
.y169{bottom:192.029333pt;}
.yd9{bottom:192.406667pt;}
.y3b4{bottom:193.092000pt;}
.y264{bottom:193.662667pt;}
.y1b5{bottom:194.908000pt;}
.y356{bottom:195.028000pt;}
.y121{bottom:196.006667pt;}
.y290{bottom:196.186667pt;}
.yf4{bottom:197.442667pt;}
.y6c{bottom:199.068000pt;}
.y183{bottom:201.221333pt;}
.y355{bottom:202.586667pt;}
.y237{bottom:202.846667pt;}
.yb4{bottom:203.028000pt;}
.y385{bottom:203.406667pt;}
.y324{bottom:204.401333pt;}
.y8c{bottom:206.806667pt;}
.y10{bottom:208.054667pt;}
.y13f{bottom:209.102667pt;}
.y263{bottom:209.736000pt;}
.y168{bottom:210.209333pt;}
.y120{bottom:210.406667pt;}
.y19c{bottom:210.586667pt;}
.y1b4{bottom:210.982667pt;}
.y6b{bottom:213.468000pt;}
.yf3{bottom:213.601333pt;}
.y3b3{bottom:215.052000pt;}
.y182{bottom:215.836000pt;}
.y354{bottom:216.986667pt;}
.y236{bottom:217.246667pt;}
.y323{bottom:218.801333pt;}
.y8b{bottom:221.026667pt;}
.yb3{bottom:221.206667pt;}
.y384{bottom:222.920000pt;}
.y167{bottom:224.428000pt;}
.y11f{bottom:224.806667pt;}
.yf{bottom:225.148000pt;}
.y13e{bottom:225.262667pt;}
.y262{bottom:225.809333pt;}
.y1b3{bottom:227.058667pt;}
.y19b{bottom:228.766667pt;}
.yf2{bottom:229.760000pt;}
.y43{bottom:230.014667pt;}
.y1f1{bottom:230.021333pt;}
.y181{bottom:230.448000pt;}
.y6a{bottom:231.828000pt;}
.y322{bottom:233.201333pt;}
.yb2{bottom:235.426667pt;}
.y235{bottom:235.606667pt;}
.y353{bottom:236.501333pt;}
.y383{bottom:237.253333pt;}
.y3b2{bottom:238.037333pt;}
.y11e{bottom:239.206667pt;}
.y8a{bottom:239.386667pt;}
.yd8{bottom:240.642667pt;}
.y13d{bottom:241.422667pt;}
.ye{bottom:242.241333pt;}
.y166{bottom:242.788000pt;}
.y1f0{bottom:242.893333pt;}
.y2d8{bottom:242.985333pt;}
.y28f{bottom:244.421333pt;}
.y180{bottom:245.061333pt;}
.yf1{bottom:245.918667pt;}
.y69{bottom:246.046667pt;}
.y42{bottom:246.134667pt;}
.y321{bottom:247.601333pt;}
.y261{bottom:249.442667pt;}
.yb1{bottom:249.826667pt;}
.y1b2{bottom:250.692000pt;}
.y352{bottom:250.901333pt;}
.y1db{bottom:251.262667pt;}
.y382{bottom:251.586667pt;}
.y89{bottom:253.606667pt;}
.y320{bottom:255.160000pt;}
.yd7{bottom:256.977333pt;}
.y11d{bottom:257.566667pt;}
.y13c{bottom:257.584000pt;}
.y28e{bottom:258.968000pt;}
.y17f{bottom:259.674667pt;}
.y68{bottom:260.446667pt;}
.y2d7{bottom:261.345333pt;}
.yf0{bottom:262.077333pt;}
.y41{bottom:262.254667pt;}
.yb0{bottom:264.226667pt;}
.y260{bottom:265.516000pt;}
.y381{bottom:265.920000pt;}
.yd{bottom:266.894667pt;}
.y3b1{bottom:267.028000pt;}
.y1da{bottom:267.681333pt;}
.y31f{bottom:269.560000pt;}
.y11c{bottom:271.785333pt;}
.y88{bottom:271.966667pt;}
.y351{bottom:272.860000pt;}
.yd6{bottom:273.312000pt;}
.y380{bottom:273.413333pt;}
.y28d{bottom:273.513333pt;}
.y13b{bottom:273.744000pt;}
.y17e{bottom:274.288000pt;}
.y67{bottom:274.846667pt;}
.y19a{bottom:277.001333pt;}
.y40{bottom:278.360000pt;}
.yaf{bottom:278.626667pt;}
.y3b0{bottom:281.428000pt;}
.y25f{bottom:281.589333pt;}
.y234{bottom:282.586667pt;}
.yc{bottom:283.988000pt;}
.y1d9{bottom:284.098667pt;}
.yef{bottom:285.794667pt;}
.y87{bottom:286.185333pt;}
.y211{bottom:287.621333pt;}
.y37f{bottom:287.813333pt;}
.y28c{bottom:288.058667pt;}
.y17d{bottom:288.901333pt;}
.y31e{bottom:289.074667pt;}
.y66{bottom:289.246667pt;}
.yd5{bottom:289.648000pt;}
.y13a{bottom:289.905333pt;}
.y11b{bottom:290.145333pt;}
.y165{bottom:291.309333pt;}
.yae{bottom:293.026667pt;}
.y199{bottom:293.074667pt;}
.y3f{bottom:294.480000pt;}
.y3af{bottom:295.828000pt;}
.y350{bottom:295.845333pt;}
.y25e{bottom:297.662667pt;}
.y86{bottom:300.585333pt;}
.yb{bottom:301.081333pt;}
.yee{bottom:301.953333pt;}
.y2b2{bottom:302.229333pt;}
.y210{bottom:302.670667pt;}
.y3ae{bottom:303.386667pt;}
.y31d{bottom:303.474667pt;}
.y17c{bottom:303.514667pt;}
.y164{bottom:305.709333pt;}
.y2fa{bottom:305.801333pt;}
.yd4{bottom:305.982667pt;}
.y139{bottom:306.065333pt;}
.y37e{bottom:307.326667pt;}
.yad{bottom:307.426667pt;}
.y65{bottom:307.606667pt;}
.y1d8{bottom:308.076000pt;}
.y1b1{bottom:308.341333pt;}
.y198{bottom:309.149333pt;}
.y2d6{bottom:309.581333pt;}
.y3e{bottom:310.600000pt;}
.y25d{bottom:313.736000pt;}
.y2b1{bottom:316.837333pt;}
.y20f{bottom:317.718667pt;}
.y28b{bottom:317.722667pt;}
.y3ad{bottom:317.786667pt;}
.y31c{bottom:317.874667pt;}
.y17b{bottom:318.128000pt;}
.ya{bottom:318.174667pt;}
.y85{bottom:318.945333pt;}
.y163{bottom:320.109333pt;}
.y34f{bottom:321.057333pt;}
.y1b0{bottom:321.217333pt;}
.y37d{bottom:321.660000pt;}
.y64{bottom:321.826667pt;}
.y138{bottom:322.225333pt;}
.yd3{bottom:322.317333pt;}
.y2f9{bottom:322.470667pt;}
.y2d5{bottom:324.097333pt;}
.y1d7{bottom:324.493333pt;}
.yed{bottom:325.670667pt;}
.yac{bottom:325.786667pt;}
.y3d{bottom:326.720000pt;}
.y25c{bottom:329.809333pt;}
.y233{bottom:330.821333pt;}
.y2b0{bottom:331.445333pt;}
.y31b{bottom:332.274667pt;}
.y17a{bottom:332.741333pt;}
.y20e{bottom:332.766667pt;}
.y28a{bottom:333.868000pt;}
.y162{bottom:334.509333pt;}
.y9{bottom:335.268000pt;}
.y34e{bottom:335.457333pt;}
.y37c{bottom:335.993333pt;}
.y3ac{bottom:337.301333pt;}
.y11a{bottom:338.381333pt;}
.y137{bottom:338.386667pt;}
.y2d4{bottom:338.614667pt;}
.yd2{bottom:338.652000pt;}
.y2f8{bottom:339.140000pt;}
.yab{bottom:340.006667pt;}
.y63{bottom:340.186667pt;}
.y197{bottom:340.340000pt;}
.y1d6{bottom:340.910667pt;}
.yec{bottom:341.829333pt;}
.y232{bottom:345.234667pt;}
.y25b{bottom:345.882667pt;}
.y2af{bottom:346.053333pt;}
.y31a{bottom:346.674667pt;}
.y179{bottom:347.354667pt;}
.y20d{bottom:347.814667pt;}
.y161{bottom:348.909333pt;}
.y34d{bottom:349.857333pt;}
.y289{bottom:350.013333pt;}
.y37b{bottom:350.326667pt;}
.y3c{bottom:350.400000pt;}
.y3ab{bottom:351.701333pt;}
.y8{bottom:352.358667pt;}
.y62{bottom:354.406667pt;}
.y136{bottom:354.546667pt;}
.y196{bottom:354.814667pt;}
.y119{bottom:354.882667pt;}
.yd1{bottom:354.988000pt;}
.y2f7{bottom:355.810667pt;}
.y1d5{bottom:357.329333pt;}
.yeb{bottom:357.986667pt;}
.y231{bottom:359.646667pt;}
.y2ae{bottom:360.661333pt;}
.y25a{bottom:361.956000pt;}
.y178{bottom:361.968000pt;}
.y34c{bottom:364.257333pt;}
.y37a{bottom:364.660000pt;}
.y3aa{bottom:366.101333pt;}
.y288{bottom:366.160000pt;}
.y3b{bottom:366.520000pt;}
.y160{bottom:367.089333pt;}
.y84{bottom:367.181333pt;}
.y2d3{bottom:368.249333pt;}
.y319{bottom:368.633333pt;}
.y195{bottom:369.288000pt;}
.y7{bottom:369.452000pt;}
.y135{bottom:370.708000pt;}
.yd0{bottom:371.322667pt;}
.y118{bottom:371.385333pt;}
.y2f6{bottom:372.480000pt;}
.y61{bottom:372.766667pt;}
.y3a9{bottom:373.660000pt;}
.y230{bottom:374.060000pt;}
.yea{bottom:374.145333pt;}
.y20c{bottom:377.981333pt;}
.y259{bottom:378.029333pt;}
.y34b{bottom:378.657333pt;}
.y15f{bottom:381.489333pt;}
.y287{bottom:382.305333pt;}
.y3a{bottom:382.637333pt;}
.y2ad{bottom:382.828000pt;}
.y83{bottom:383.430667pt;}
.y194{bottom:383.761333pt;}
.y2d2{bottom:384.365333pt;}
.y6{bottom:386.545333pt;}
.y379{bottom:386.553333pt;}
.y60{bottom:386.985333pt;}
.ycf{bottom:387.657333pt;}
.y3a8{bottom:388.060000pt;}
.y22f{bottom:388.472000pt;}
.y1d4{bottom:388.864000pt;}
.y2f5{bottom:389.149333pt;}
.ye9{bottom:390.304000pt;}
.y318{bottom:390.592000pt;}
.y177{bottom:391.698667pt;}
.y34a{bottom:393.057333pt;}
.y258{bottom:394.102667pt;}
.y20b{bottom:394.629333pt;}
.y117{bottom:395.446667pt;}
.y15e{bottom:395.889333pt;}
.y2ac{bottom:397.434667pt;}
.y193{bottom:398.234667pt;}
.y39{bottom:398.752000pt;}
.y82{bottom:399.681333pt;}
.y2d1{bottom:400.482667pt;}
.y134{bottom:401.986667pt;}
.y22e{bottom:402.884000pt;}
.y1d3{bottom:403.682667pt;}
.y317{bottom:404.992000pt;}
.y5f{bottom:405.345333pt;}
.y2f4{bottom:405.818667pt;}
.ye8{bottom:406.462667pt;}
.y3a7{bottom:407.574667pt;}
.y176{bottom:407.912000pt;}
.y378{bottom:409.538667pt;}
.y257{bottom:410.176000pt;}
.y15d{bottom:410.289333pt;}
.y5{bottom:411.197333pt;}
.y20a{bottom:411.278667pt;}
.yce{bottom:411.552000pt;}
.y116{bottom:411.948000pt;}
.y38{bottom:414.872000pt;}
.y349{bottom:415.016000pt;}
.y81{bottom:415.930667pt;}
.y2d0{bottom:416.598667pt;}
.y22d{bottom:417.297333pt;}
.y286{bottom:417.348000pt;}
.y1d2{bottom:418.500000pt;}
.yfb{bottom:418.854667pt;}
.y316{bottom:419.392000pt;}
.y2ab{bottom:419.602667pt;}
.yaa{bottom:421.001333pt;}
.y2f3{bottom:422.488000pt;}
.ye7{bottom:422.621333pt;}
.y175{bottom:424.125333pt;}
.y15c{bottom:424.689333pt;}
.y256{bottom:426.249333pt;}
.y192{bottom:427.826667pt;}
.y209{bottom:427.926667pt;}
.y115{bottom:428.450667pt;}
.y348{bottom:429.416000pt;}
.y3a6{bottom:429.533333pt;}
.y37{bottom:430.992000pt;}
.y22c{bottom:431.709333pt;}
.yfa{bottom:431.974667pt;}
.y80{bottom:432.180000pt;}
.y377{bottom:432.524000pt;}
.y2cf{bottom:432.716000pt;}
.y1d1{bottom:433.318667pt;}
.y315{bottom:433.792000pt;}
.ya9{bottom:437.032000pt;}
.ye6{bottom:438.780000pt;}
.y2f2{bottom:439.158667pt;}
.y255{bottom:442.322667pt;}
.y347{bottom:443.816000pt;}
.y191{bottom:443.900000pt;}
.y208{bottom:444.574667pt;}
.y114{bottom:444.953333pt;}
.y1d0{bottom:448.136000pt;}
.y314{bottom:448.192000pt;}
.y7f{bottom:448.430667pt;}
.y2ce{bottom:448.832000pt;}
.y12b{bottom:448.986667pt;}
.y2aa{bottom:449.328000pt;}
.y22b{bottom:449.901333pt;}
.y346{bottom:451.374667pt;}
.y277{bottom:451.821333pt;}
.y3a5{bottom:452.518667pt;}
.ya8{bottom:453.062667pt;}
.y5e{bottom:453.581333pt;}
.y15b{bottom:454.208000pt;}
.y376{bottom:454.416000pt;}
.ye5{bottom:454.938667pt;}
.y2f1{bottom:455.828000pt;}
.y254{bottom:458.396000pt;}
.y190{bottom:459.974667pt;}
.y113{bottom:461.454667pt;}
.y12a{bottom:461.786667pt;}
.y313{bottom:462.592000pt;}
.y187{bottom:464.193333pt;}
.y276{bottom:464.621333pt;}
.y7e{bottom:464.680000pt;}
.y2cd{bottom:464.948000pt;}
.y2a9{bottom:465.536000pt;}
.ycd{bottom:465.681333pt;}
.y345{bottom:465.774667pt;}
.y36{bottom:466.008000pt;}
.y22a{bottom:468.093333pt;}
.y5d{bottom:468.553333pt;}
.y375{bottom:468.749333pt;}
.ya7{bottom:469.094667pt;}
.y15a{bottom:470.208000pt;}
.y2f0{bottom:472.497333pt;}
.y129{bottom:474.586667pt;}
.y18f{bottom:476.048000pt;}
.y207{bottom:476.341333pt;}
.y312{bottom:476.992000pt;}
.y186{bottom:476.993333pt;}
.y275{bottom:477.421333pt;}
.y26{bottom:477.726667pt;}
.y112{bottom:477.957333pt;}
.y1cf{bottom:478.072000pt;}
.ye4{bottom:478.656000pt;}
.y35{bottom:478.925333pt;}
.y1a3{bottom:479.952000pt;}
.ycc{bottom:480.417333pt;}
.y2cc{bottom:481.065333pt;}
.y3a4{bottom:481.510667pt;}
.y2a8{bottom:481.744000pt;}
.y253{bottom:482.029333pt;}
.y229{bottom:482.505333pt;}
.y374{bottom:483.082667pt;}
.y311{bottom:484.552000pt;}
.ya6{bottom:485.125333pt;}
.y344{bottom:485.289333pt;}
.y159{bottom:486.208000pt;}
.y128{bottom:487.386667pt;}
.y7d{bottom:488.489333pt;}
.y274{bottom:490.221333pt;}
.y373{bottom:490.574667pt;}
.y206{bottom:491.389333pt;}
.y18e{bottom:492.121333pt;}
.y25{bottom:493.726667pt;}
.y111{bottom:494.460000pt;}
.y1ce{bottom:494.489333pt;}
.ye3{bottom:494.814667pt;}
.ycb{bottom:495.152000pt;}
.y3a3{bottom:495.910667pt;}
.y1a2{bottom:495.952000pt;}
.y2ef{bottom:496.725333pt;}
.y228{bottom:496.918667pt;}
.y2cb{bottom:497.181333pt;}
.y2a7{bottom:497.950667pt;}
.y252{bottom:498.102667pt;}
.y5c{bottom:498.644000pt;}
.y310{bottom:498.952000pt;}
.y343{bottom:499.689333pt;}
.y158{bottom:502.208000pt;}
.y273{bottom:503.021333pt;}
.y7c{bottom:504.738667pt;}
.y372{bottom:504.974667pt;}
.y205{bottom:506.437333pt;}
.y18d{bottom:508.194667pt;}
.ya5{bottom:508.714667pt;}
.yca{bottom:509.886667pt;}
.y3a2{bottom:510.310667pt;}
.y1cd{bottom:510.906667pt;}
.y110{bottom:510.961333pt;}
.ye2{bottom:510.973333pt;}
.y1a1{bottom:511.952000pt;}
.y2ca{bottom:513.298667pt;}
.y2ee{bottom:513.396000pt;}
.y342{bottom:514.089333pt;}
.y2a6{bottom:514.158667pt;}
.y251{bottom:514.176000pt;}
.y5b{bottom:515.217333pt;}
.y272{bottom:515.821333pt;}
.y3a1{bottom:517.869333pt;}
.y157{bottom:518.208000pt;}
.y30f{bottom:518.465333pt;}
.y7b{bottom:520.989333pt;}
.y24{bottom:521.060000pt;}
.y18c{bottom:524.268000pt;}
.y371{bottom:524.489333pt;}
.yc9{bottom:524.621333pt;}
.ya4{bottom:524.745333pt;}
.y227{bottom:526.449333pt;}
.ye1{bottom:527.132000pt;}
.y10f{bottom:527.464000pt;}
.y1a0{bottom:527.952000pt;}
.y341{bottom:528.489333pt;}
.y271{bottom:528.621333pt;}
.y2c9{bottom:529.414667pt;}
.y2ed{bottom:530.065333pt;}
.y250{bottom:530.249333pt;}
.y2a5{bottom:530.366667pt;}
.y5a{bottom:531.789333pt;}
.y3a0{bottom:532.269333pt;}
.y30e{bottom:532.865333pt;}
.y156{bottom:534.208000pt;}
.y1cc{bottom:534.884000pt;}
.y204{bottom:536.604000pt;}
.y23{bottom:537.060000pt;}
.y7a{bottom:537.238667pt;}
.y370{bottom:538.822667pt;}
.yc8{bottom:539.357333pt;}
.ya3{bottom:540.776000pt;}
.y270{bottom:541.421333pt;}
.y226{bottom:542.461333pt;}
.ye0{bottom:543.290667pt;}
.y19f{bottom:543.952000pt;}
.y10e{bottom:543.965333pt;}
.y24f{bottom:546.322667pt;}
.y2ec{bottom:546.734667pt;}
.y30d{bottom:547.265333pt;}
.y18b{bottom:547.901333pt;}
.y59{bottom:548.361333pt;}
.y340{bottom:550.448000pt;}
.y1cb{bottom:551.301333pt;}
.y39f{bottom:551.784000pt;}
.y22{bottom:553.060000pt;}
.y2c8{bottom:553.090667pt;}
.y36f{bottom:553.156000pt;}
.y203{bottom:553.252000pt;}
.y79{bottom:553.488000pt;}
.y26f{bottom:554.221333pt;}
.ya2{bottom:556.808000pt;}
.y225{bottom:558.473333pt;}
.ydf{bottom:559.449333pt;}
.y2a4{bottom:561.692000pt;}
.y18a{bottom:562.374667pt;}
.y24e{bottom:562.396000pt;}
.y2eb{bottom:563.404000pt;}
.y1ef{bottom:564.646667pt;}
.y58{bottom:564.934667pt;}
.y155{bottom:565.325333pt;}
.y39e{bottom:566.184000pt;}
.y26e{bottom:567.021333pt;}
.y36e{bottom:567.489333pt;}
.y1ca{bottom:567.720000pt;}
.y10d{bottom:568.026667pt;}
.y21{bottom:569.060000pt;}
.y2c7{bottom:569.208000pt;}
.yc7{bottom:569.209333pt;}
.y30c{bottom:569.225333pt;}
.y78{bottom:569.738667pt;}
.y202{bottom:569.901333pt;}
.y33f{bottom:573.434667pt;}
.y224{bottom:574.486667pt;}
.yde{bottom:575.606667pt;}
.y2a3{bottom:576.300000pt;}
.y189{bottom:576.848000pt;}
.y24d{bottom:578.469333pt;}
.y1ee{bottom:579.118667pt;}
.y154{bottom:579.725333pt;}
.y26d{bottom:579.821333pt;}
.y2ea{bottom:580.073333pt;}
.ya1{bottom:580.397333pt;}
.y39d{bottom:580.584000pt;}
.y57{bottom:581.506667pt;}
.y36d{bottom:581.822667pt;}
.y30b{bottom:583.625333pt;}
.y1a6{bottom:584.020000pt;}
.y1c9{bottom:584.137333pt;}
.y10c{bottom:584.529333pt;}
.y20{bottom:585.060000pt;}
.y2c6{bottom:585.324000pt;}
.yc6{bottom:585.545333pt;}
.y77{bottom:585.988000pt;}
.y201{bottom:586.549333pt;}
.y36c{bottom:589.316000pt;}
.y223{bottom:590.498667pt;}
.y2a2{bottom:590.908000pt;}
.y188{bottom:591.322667pt;}
.y1ed{bottom:593.590667pt;}
.y153{bottom:594.125333pt;}
.y24c{bottom:594.542667pt;}
.y39c{bottom:594.984000pt;}
.ya0{bottom:596.428000pt;}
.y2e9{bottom:596.742667pt;}
.y1a5{bottom:596.820000pt;}
.y30a{bottom:598.025333pt;}
.y56{bottom:598.080000pt;}
.y33e{bottom:598.645333pt;}
.y1c8{bottom:600.556000pt;}
.y10b{bottom:601.030667pt;}
.y1f{bottom:601.060000pt;}
.y2c5{bottom:601.441333pt;}
.yc5{bottom:601.880000pt;}
.y76{bottom:602.238667pt;}
.y200{bottom:603.197333pt;}
.y36b{bottom:603.716000pt;}
.y2a1{bottom:605.516000pt;}
.y222{bottom:606.510667pt;}
.y39b{bottom:609.384000pt;}
.y1a4{bottom:609.620000pt;}
.ydd{bottom:610.664000pt;}
.y1ec{bottom:611.841333pt;}
.y152{bottom:612.305333pt;}
.y309{bottom:612.425333pt;}
.y9f{bottom:612.458667pt;}
.y33d{bottom:613.045333pt;}
.y2e8{bottom:613.413333pt;}
.y55{bottom:614.652000pt;}
.y1c7{bottom:616.973333pt;}
.y1e{bottom:617.060000pt;}
.y174{bottom:617.525333pt;}
.y10a{bottom:617.533333pt;}
.y2c4{bottom:617.557333pt;}
.y1ff{bottom:619.845333pt;}
.y221{bottom:622.524000pt;}
.y36a{bottom:623.229333pt;}
.y39a{bottom:623.784000pt;}
.y24b{bottom:625.734667pt;}
.yc4{bottom:625.774667pt;}
.y1eb{bottom:626.313333pt;}
.y151{bottom:626.705333pt;}
.y308{bottom:626.825333pt;}
.y33c{bottom:627.445333pt;}
.y9e{bottom:628.490667pt;}
.y173{bottom:630.325333pt;}
.y19e{bottom:630.408000pt;}
.y54{bottom:631.224000pt;}
.y1d{bottom:633.060000pt;}
.y1c6{bottom:633.390667pt;}
.y2c3{bottom:633.673333pt;}
.y109{bottom:634.034667pt;}
.y2a0{bottom:635.241333pt;}
.y1fe{bottom:636.494667pt;}
.y75{bottom:637.385333pt;}
.y369{bottom:637.562667pt;}
.y399{bottom:638.184000pt;}
.y220{bottom:638.536000pt;}
.y24a{bottom:640.208000pt;}
.y1ea{bottom:640.785333pt;}
.y150{bottom:641.105333pt;}
.y307{bottom:641.225333pt;}
.y33b{bottom:641.845333pt;}
.yc3{bottom:642.109333pt;}
.y172{bottom:643.125333pt;}
.y9d{bottom:644.521333pt;}
.y285{bottom:644.760000pt;}
.y2e7{bottom:645.200000pt;}
.y53{bottom:647.797333pt;}
.y1c{bottom:649.060000pt;}
.y33a{bottom:649.404000pt;}
.y2c2{bottom:649.790667pt;}
.y1c5{bottom:649.809333pt;}
.y74{bottom:650.436000pt;}
.y29f{bottom:651.449333pt;}
.y368{bottom:651.896000pt;}
.y398{bottom:652.584000pt;}
.y1fd{bottom:653.142667pt;}
.y249{bottom:654.681333pt;}
.y14f{bottom:655.505333pt;}
.y306{bottom:655.625333pt;}
.y171{bottom:655.925333pt;}
.y108{bottom:658.096000pt;}
.yc2{bottom:658.444000pt;}
.y397{bottom:660.142667pt;}
.y2e6{bottom:660.270667pt;}
.y9c{bottom:660.552000pt;}
.y284{bottom:660.905333pt;}
.y73{bottom:663.485333pt;}
.y339{bottom:663.804000pt;}
.y52{bottom:664.369333pt;}
.y1b{bottom:665.060000pt;}
.y2c1{bottom:665.906667pt;}
.y1c4{bottom:666.226667pt;}
.y367{bottom:666.229333pt;}
.y29e{bottom:667.657333pt;}
.y170{bottom:668.725333pt;}
.y248{bottom:669.154667pt;}
.y21f{bottom:669.666667pt;}
.y1fc{bottom:669.790667pt;}
.y14e{bottom:669.905333pt;}
.y305{bottom:670.025333pt;}
.y1e9{bottom:670.376000pt;}
.y396{bottom:674.542667pt;}
.y107{bottom:674.598667pt;}
.yc1{bottom:674.778667pt;}
.y2e5{bottom:675.340000pt;}
.y9b{bottom:676.582667pt;}
.y283{bottom:677.052000pt;}
.y51{bottom:680.942667pt;}
.y1a{bottom:681.060000pt;}
.y2c0{bottom:682.024000pt;}
.y1c3{bottom:682.644000pt;}
.y338{bottom:683.318667pt;}
.y247{bottom:683.628000pt;}
.y29d{bottom:683.865333pt;}
.y21e{bottom:684.078667pt;}
.y14d{bottom:684.305333pt;}
.y304{bottom:684.425333pt;}
.y1fb{bottom:686.438667pt;}
.y1e8{bottom:686.448000pt;}
.y366{bottom:688.122667pt;}
.y2e4{bottom:690.409333pt;}
.y106{bottom:691.101333pt;}
.yc0{bottom:691.114667pt;}
.y2b4{bottom:692.854667pt;}
.y282{bottom:693.197333pt;}
.y395{bottom:694.057333pt;}
.y2da{bottom:694.316000pt;}
.y19{bottom:697.060000pt;}
.y50{bottom:697.514667pt;}
.y337{bottom:697.718667pt;}
.y246{bottom:698.101333pt;}
.y2bf{bottom:698.140000pt;}
.y21d{bottom:698.492000pt;}
.y14c{bottom:698.705333pt;}
.y29c{bottom:700.073333pt;}
.y365{bottom:702.456000pt;}
.y1e7{bottom:702.520000pt;}
.y2e3{bottom:705.478667pt;}
.y2b3{bottom:705.654667pt;}
.y303{bottom:706.384000pt;}
.y1c2{bottom:706.621333pt;}
.ybf{bottom:707.449333pt;}
.y105{bottom:707.602667pt;}
.y9a{bottom:707.732000pt;}
.y394{bottom:708.457333pt;}
.y281{bottom:709.342667pt;}
.y336{bottom:712.118667pt;}
.y245{bottom:712.574667pt;}
.y18{bottom:713.060000pt;}
.y4f{bottom:714.086667pt;}
.y2be{bottom:714.257333pt;}
.y29b{bottom:716.281333pt;}
.y364{bottom:716.789333pt;}
.y1fa{bottom:718.205333pt;}
.y2e2{bottom:720.548000pt;}
.y99{bottom:722.162667pt;}
.y393{bottom:722.857333pt;}
.y1c1{bottom:723.038667pt;}
.ybe{bottom:723.784000pt;}
.y104{bottom:724.105333pt;}
.y280{bottom:725.488000pt;}
.y1e6{bottom:726.150667pt;}
.y335{bottom:726.518667pt;}
.y244{bottom:727.048000pt;}
.y21c{bottom:728.022667pt;}
.y14b{bottom:728.222667pt;}
.y17{bottom:729.060000pt;}
.y302{bottom:729.369333pt;}
.y2bd{bottom:730.373333pt;}
.y4e{bottom:730.660000pt;}
.y29a{bottom:732.488000pt;}
.y1f9{bottom:733.253333pt;}
.y1af{bottom:733.684000pt;}
.y98{bottom:736.593333pt;}
.y363{bottom:738.681333pt;}
.y1c0{bottom:739.457333pt;}
.ybd{bottom:740.118667pt;}
.y103{bottom:740.606667pt;}
.y334{bottom:740.918667pt;}
.y27f{bottom:741.634667pt;}
.y1e5{bottom:742.222667pt;}
.y14a{bottom:744.222667pt;}
.y392{bottom:744.816000pt;}
.y16{bottom:745.060000pt;}
.y243{bottom:745.301333pt;}
.y2bc{bottom:746.490667pt;}
.y1f8{bottom:748.301333pt;}
.y299{bottom:748.696000pt;}
.y1ae{bottom:749.758667pt;}
.y2e1{bottom:750.736000pt;}
.y4d{bottom:754.792000pt;}
.y333{bottom:755.318667pt;}
.y1bf{bottom:755.874667pt;}
.ybc{bottom:756.454667pt;}
.y27e{bottom:757.780000pt;}
.y1e4{bottom:758.294667pt;}
.y21b{bottom:759.153333pt;}
.y242{bottom:759.774667pt;}
.y149{bottom:760.222667pt;}
.y362{bottom:761.666667pt;}
.y298{bottom:764.904000pt;}
.y1ad{bottom:765.833333pt;}
.y97{bottom:766.142667pt;}
.y26c{bottom:766.358667pt;}
.y2e0{bottom:767.405333pt;}
.y391{bottom:767.801333pt;}
.y332{bottom:769.718667pt;}
.y4c{bottom:771.364000pt;}
.y102{bottom:772.228000pt;}
.ybb{bottom:772.789333pt;}
.y21a{bottom:773.565333pt;}
.y241{bottom:774.248000pt;}
.y1e3{bottom:774.366667pt;}
.y301{bottom:775.770667pt;}
.y148{bottom:776.222667pt;}
.y2bb{bottom:777.725333pt;}
.y1f7{bottom:778.468000pt;}
.y1be{bottom:779.852000pt;}
.y297{bottom:781.112000pt;}
.y27d{bottom:781.484000pt;}
.y1ac{bottom:781.908000pt;}
.y96{bottom:782.173333pt;}
.y26b{bottom:782.358667pt;}
.y2df{bottom:784.074667pt;}
.y331{bottom:784.118667pt;}
.y361{bottom:784.652000pt;}
.y101{bottom:787.129333pt;}
.y4b{bottom:787.936000pt;}
.y219{bottom:787.977333pt;}
.yba{bottom:789.124000pt;}
.y1e2{bottom:790.438667pt;}
.y330{bottom:791.677333pt;}
.y360{bottom:791.944000pt;}
.y2ba{bottom:792.241333pt;}
.y240{bottom:792.501333pt;}
.y300{bottom:792.508000pt;}
.y1f6{bottom:795.116000pt;}
.y1bd{bottom:796.269333pt;}
.y390{bottom:796.792000pt;}
.y296{bottom:797.320000pt;}
.y133{bottom:797.556000pt;}
.y27c{bottom:797.629333pt;}
.y1ab{bottom:797.984000pt;}
.y95{bottom:798.204000pt;}
.y26a{bottom:798.358667pt;}
.y2c{bottom:799.806667pt;}
.y2de{bottom:800.745333pt;}
.y100{bottom:802.032000pt;}
.y218{bottom:802.390667pt;}
.y4a{bottom:804.509333pt;}
.yb9{bottom:805.458667pt;}
.y32f{bottom:806.077333pt;}
.y35f{bottom:806.344000pt;}
.y2b9{bottom:806.758667pt;}
.y23f{bottom:806.974667pt;}
.y147{bottom:807.341333pt;}
.y2ff{bottom:809.246667pt;}
.y38f{bottom:811.192000pt;}
.y1f5{bottom:811.765333pt;}
.y1bc{bottom:812.686667pt;}
.y295{bottom:813.526667pt;}
.y132{bottom:813.716000pt;}
.y27b{bottom:813.776000pt;}
.y1aa{bottom:814.058667pt;}
.y1e1{bottom:814.070667pt;}
.y94{bottom:814.234667pt;}
.y269{bottom:814.358667pt;}
.y217{bottom:816.802667pt;}
.yff{bottom:816.933333pt;}
.y2dd{bottom:817.414667pt;}
.y49{bottom:821.081333pt;}
.y2b8{bottom:821.274667pt;}
.y23e{bottom:821.448000pt;}
.y146{bottom:821.741333pt;}
.yb8{bottom:821.794667pt;}
.y32e{bottom:825.592000pt;}
.y35e{bottom:825.858667pt;}
.y2b{bottom:826.470667pt;}
.y1f4{bottom:828.413333pt;}
.y1bb{bottom:829.105333pt;}
.y294{bottom:829.734667pt;}
.y131{bottom:829.876000pt;}
.y27a{bottom:829.921333pt;}
.y1a9{bottom:830.133333pt;}
.y1e0{bottom:830.142667pt;}
.y93{bottom:830.265333pt;}
.y268{bottom:830.358667pt;}
.yfe{bottom:831.836000pt;}
.y38e{bottom:833.150667pt;}
.y2fe{bottom:833.544000pt;}
.y2b7{bottom:835.792000pt;}
.y23d{bottom:835.921333pt;}
.y145{bottom:836.141333pt;}
.y48{bottom:837.654667pt;}
.y1f3{bottom:845.061333pt;}
.y1ba{bottom:845.522667pt;}
.yb7{bottom:845.688000pt;}
.y293{bottom:845.942667pt;}
.y130{bottom:846.037333pt;}
.y279{bottom:846.066667pt;}
.y34{bottom:846.118667pt;}
.y1a8{bottom:846.208000pt;}
.y1df{bottom:846.214667pt;}
.y92{bottom:846.296000pt;}
.y216{bottom:846.333333pt;}
.y267{bottom:846.358667pt;}
.y32d{bottom:847.550667pt;}
.y2dc{bottom:849.202667pt;}
.y2b6{bottom:850.308000pt;}
.y23c{bottom:850.394667pt;}
.y144{bottom:850.541333pt;}
.y2fd{bottom:851.020000pt;}
.y29{bottom:853.129333pt;}
.y2a{bottom:853.134667pt;}
.y1f2{bottom:861.710667pt;}
.y47{bottom:861.785333pt;}
.yfd{bottom:861.856000pt;}
.y1b9{bottom:861.940000pt;}
.yb6{bottom:862.022667pt;}
.yf9{bottom:862.037333pt;}
.y292{bottom:862.150667pt;}
.y12f{bottom:862.197333pt;}
.y278{bottom:862.212000pt;}
.y33{bottom:862.238667pt;}
.y1a7{bottom:862.282667pt;}
.y1de{bottom:862.286667pt;}
.y91{bottom:862.326667pt;}
.y215{bottom:862.345333pt;}
.y266{bottom:862.358667pt;}
.y2db{bottom:864.272000pt;}
.y2b5{bottom:864.825333pt;}
.y23b{bottom:864.868000pt;}
.y143{bottom:864.941333pt;}
.y32c{bottom:870.537333pt;}
.y32{bottom:878.358667pt;}
.y142{bottom:879.341333pt;}
.y28{bottom:879.798667pt;}
.y27{bottom:906.462667pt;}
.y31{bottom:930.368000pt;}
.h2{height:22.677333pt;}
.h4{height:25.343867pt;}
.h16{height:29.112592pt;}
.h8{height:29.113125pt;}
.h15{height:29.115258pt;}
.he{height:31.098667pt;}
.h18{height:37.921875pt;}
.h12{height:39.552000pt;}
.h10{height:39.850667pt;}
.h11{height:40.947252pt;}
.h17{height:44.015625pt;}
.h9{height:44.953125pt;}
.h5{height:48.906250pt;}
.hb{height:49.440000pt;}
.ha{height:49.813333pt;}
.h6{height:49.947917pt;}
.h7{height:49.958583pt;}
.hf{height:49.963917pt;}
.h13{height:49.969250pt;}
.h14{height:50.006583pt;}
.h3{height:54.794667pt;}
.hd{height:59.328000pt;}
.hc{height:89.664000pt;}
.h0{height:1020.472000pt;}
.h1{height:1020.666667pt;}
.w2{width:10.794667pt;}
.w4{width:10.795467pt;}
.w3{width:43.512000pt;}
.w5{width:43.512933pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.x2{left:2.858667pt;}
.x9{left:22.318667pt;}
.xa{left:83.692533pt;}
.x3e{left:89.451600pt;}
.xb{left:94.488267pt;}
.x22{left:95.581200pt;}
.x20{left:97.553867pt;}
.x46{left:99.821600pt;}
.x1f{left:106.928533pt;}
.x3{left:113.385867pt;}
.x41{left:116.253733pt;}
.x3f{left:119.306800pt;}
.x40{left:120.775200pt;}
.x2b{left:123.051467pt;}
.x4{left:132.283467pt;}
.x42{left:134.541333pt;}
.x38{left:135.445333pt;}
.x36{left:139.217333pt;}
.xc{left:140.594667pt;}
.x2d{left:148.437333pt;}
.x8{left:150.345333pt;}
.x7{left:151.534667pt;}
.x3d{left:154.374667pt;}
.x14{left:160.178667pt;}
.x23{left:166.692000pt;}
.x18{left:170.078667pt;}
.x1b{left:175.734667pt;}
.x11{left:177.156000pt;}
.x43{left:181.188000pt;}
.x10{left:188.841333pt;}
.x31{left:194.632000pt;}
.x2e{left:196.138667pt;}
.x24{left:200.152000pt;}
.x19{left:202.917333pt;}
.x2f{left:216.668000pt;}
.x30{left:220.038667pt;}
.x26{left:224.517333pt;}
.x34{left:226.504000pt;}
.x1e{left:237.164000pt;}
.x35{left:249.682667pt;}
.x47{left:251.002667pt;}
.x1a{left:254.592000pt;}
.xf{left:258.158400pt;}
.x2c{left:259.172000pt;}
.x45{left:269.900000pt;}
.x6{left:272.326667pt;}
.x15{left:278.592000pt;}
.x37{left:298.429333pt;}
.x3c{left:321.260000pt;}
.x3b{left:340.157333pt;}
.x25{left:344.897333pt;}
.x16{left:346.702667pt;}
.x1c{left:351.536000pt;}
.x5{left:366.614667pt;}
.x32{left:370.433333pt;}
.x2a{left:380.170667pt;}
.x28{left:381.110667pt;}
.x27{left:384.197333pt;}
.x44{left:388.245333pt;}
.x29{left:389.544000pt;}
.x12{left:390.866667pt;}
.x3a{left:396.850667pt;}
.x17{left:415.360000pt;}
.xd{left:441.740000pt;}
.x13{left:446.958667pt;}
.x39{left:483.810667pt;}
.x1d{left:496.281333pt;}
.x33{left:515.178667pt;}
.xe{left:531.480000pt;}
.x21{left:554.408000pt;}
.x1{left:612.826667pt;}
}




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