
    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_3bb502fdb45060f36dd3883a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.871094;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_aebe53902f255c567c8f6851.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933000;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_aff670c5c8acc9f6ca259dd8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.700000;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_c8f759f02d5d25225084fa0b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a722ada55f90d29de71670d1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3bb502fdb45060f36dd3883a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.871094;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_d637b913cafc2c15de5b271a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.871094;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_17dca8ab975eb3e17ce8dbf8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e3a793826d9385857076f6a0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_44bf3b85b748559a84ed2d87.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.857910;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_a1d3c96eb0b7a70dee15c4ce.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_fe8aeebbf3fdd084344d5955.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_2d55658708bce8ca2a9ba0fd.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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_8c04e7e454b2cdf269aef81d.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_bc7a1dff445a7f590692da54.woff2')format("woff");}.fff{font-family:fff;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_772494aba51bc04c130707ab.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938477;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_7a2b92082cc781a2695545c2.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938477;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_3bb502fdb45060f36dd3883a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.871094;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_3bb502fdb45060f36dd3883a.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.871094;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_b520807d38c62398ca506d91.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_78e72e3aa705eb7923e1d4d9.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_e6614b34892cf7c34da53766.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.938477;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;}
.m11{transform:matrix(0.000000,-0.249360,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249360,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249360,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.249466,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249466,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249466,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.249535,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249535,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249535,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.249815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249815,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249815,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249817,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);}
.mf{transform:matrix(0.250464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250464,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250466,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250534,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250534,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250641,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.272726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272726,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.274039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274039,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.274391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274391,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.277028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277028,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-20.880000px;}
.v2{vertical-align:-18.000000px;}
.v4{vertical-align:-3.844200px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.771520px;}
.ls41{letter-spacing:-2.091600px;}
.ls44{letter-spacing:-1.736640px;}
.ls12{letter-spacing:-1.584000px;}
.lsd{letter-spacing:-1.523520px;}
.ls4e{letter-spacing:-1.192320px;}
.ls1c{letter-spacing:-1.095120px;}
.lsc5{letter-spacing:-1.061280px;}
.ls1e{letter-spacing:-1.059840px;}
.ls45{letter-spacing:-1.013040px;}
.lsa0{letter-spacing:-1.010880px;}
.ls21{letter-spacing:-0.993600px;}
.lsc6{letter-spacing:-0.916560px;}
.ls28{letter-spacing:-0.861120px;}
.lsf{letter-spacing:-0.792000px;}
.lsce{letter-spacing:-0.756000px;}
.ls50{letter-spacing:-0.728640px;}
.ls43{letter-spacing:-0.675360px;}
.ls4f{letter-spacing:-0.662400px;}
.ls4b{letter-spacing:-0.596160px;}
.lscf{letter-spacing:-0.594000px;}
.lscc{letter-spacing:-0.486000px;}
.ls42{letter-spacing:-0.482400px;}
.ls4d{letter-spacing:-0.463680px;}
.ls85{letter-spacing:-0.432000px;}
.ls1d{letter-spacing:-0.397440px;}
.lsa7{letter-spacing:-0.384314px;}
.lsaf{letter-spacing:-0.383108px;}
.ls6{letter-spacing:-0.360720px;}
.ls3c{letter-spacing:-0.358560px;}
.ls2c{letter-spacing:-0.336960px;}
.ls20{letter-spacing:-0.331200px;}
.lsc2{letter-spacing:-0.298800px;}
.ls3e{letter-spacing:-0.289440px;}
.ls49{letter-spacing:-0.264960px;}
.lsab{letter-spacing:-0.260056px;}
.ls5{letter-spacing:-0.240480px;}
.ls3b{letter-spacing:-0.239040px;}
.ls7{letter-spacing:-0.233280px;}
.lsd0{letter-spacing:-0.216000px;}
.ls81{letter-spacing:-0.198720px;}
.lsc4{letter-spacing:-0.192960px;}
.lsa9{letter-spacing:-0.192157px;}
.ls6e{letter-spacing:-0.191774px;}
.lsae{letter-spacing:-0.191554px;}
.lsa3{letter-spacing:-0.184244px;}
.ls3{letter-spacing:-0.155520px;}
.lsc{letter-spacing:-0.132480px;}
.lsaa{letter-spacing:-0.128105px;}
.lsb0{letter-spacing:-0.127703px;}
.ls4{letter-spacing:-0.120240px;}
.ls13{letter-spacing:-0.119520px;}
.ls70{letter-spacing:-0.113360px;}
.lsa2{letter-spacing:-0.113004px;}
.ls14{letter-spacing:-0.108000px;}
.ls5c{letter-spacing:-0.084240px;}
.ls92{letter-spacing:-0.077760px;}
.ls10{letter-spacing:-0.072000px;}
.ls4a{letter-spacing:-0.066240px;}
.lsa8{letter-spacing:-0.064052px;}
.ls3a{letter-spacing:-0.059760px;}
.lsc3{letter-spacing:-0.048240px;}
.ls2{letter-spacing:0.000000px;}
.ls46{letter-spacing:0.013248px;}
.lsb{letter-spacing:0.018000px;}
.ls48{letter-spacing:0.019872px;}
.ls5e{letter-spacing:0.033120px;}
.ls3f{letter-spacing:0.048240px;}
.ls31{letter-spacing:0.053280px;}
.ls30{letter-spacing:0.059760px;}
.ls80{letter-spacing:0.066240px;}
.ls52{letter-spacing:0.077760px;}
.lsc1{letter-spacing:0.096480px;}
.ls91{letter-spacing:0.102600px;}
.ls66{letter-spacing:0.108000px;}
.ls71{letter-spacing:0.109950px;}
.ls6d{letter-spacing:0.113360px;}
.ls96{letter-spacing:0.119520px;}
.ls47{letter-spacing:0.132480px;}
.ls11{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.155520px;}
.lscb{letter-spacing:0.162000px;}
.ls94{letter-spacing:0.179280px;}
.ls6f{letter-spacing:0.191774px;}
.ls2f{letter-spacing:0.206640px;}
.ls15{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.239040px;}
.ls3d{letter-spacing:0.241200px;}
.lsa1{letter-spacing:0.246185px;}
.lsad{letter-spacing:0.255406px;}
.lsb1{letter-spacing:0.256061px;}
.lsa5{letter-spacing:0.256210px;}
.lsa6{letter-spacing:0.256687px;}
.lsc0{letter-spacing:0.259920px;}
.ls4c{letter-spacing:0.262080px;}
.ls18{letter-spacing:0.264960px;}
.ls37{letter-spacing:0.269280px;}
.ls16{letter-spacing:0.270000px;}
.ls93{letter-spacing:0.271584px;}
.lsa4{letter-spacing:0.276367px;}
.lse{letter-spacing:0.288000px;}
.ls34{letter-spacing:0.289440px;}
.ls95{letter-spacing:0.298800px;}
.ls65{letter-spacing:0.304704px;}
.ls8{letter-spacing:0.305280px;}
.ls33{letter-spacing:0.306720px;}
.ls1f{letter-spacing:0.331200px;}
.ls25{letter-spacing:0.357696px;}
.ls36{letter-spacing:0.360000px;}
.lsb9{letter-spacing:0.370944px;}
.ls17{letter-spacing:0.378000px;}
.ls1{letter-spacing:0.388800px;}
.lsa{letter-spacing:0.400392px;}
.lsbc{letter-spacing:0.404064px;}
.ls9a{letter-spacing:0.410688px;}
.lsb7{letter-spacing:0.463680px;}
.ls39{letter-spacing:0.476712px;}
.lsc7{letter-spacing:0.484056px;}
.lsb3{letter-spacing:0.503424px;}
.lsc8{letter-spacing:0.507960px;}
.ls7f{letter-spacing:0.529920px;}
.ls97{letter-spacing:0.537840px;}
.ls88{letter-spacing:0.602784px;}
.lsbb{letter-spacing:0.629280px;}
.lsb6{letter-spacing:0.655776px;}
.ls8f{letter-spacing:0.728640px;}
.lsb2{letter-spacing:0.781632px;}
.lsb4{letter-spacing:0.801504px;}
.ls8b{letter-spacing:0.847872px;}
.lsbf{letter-spacing:0.900864px;}
.ls40{letter-spacing:0.956160px;}
.ls68{letter-spacing:0.993600px;}
.ls35{letter-spacing:1.186560px;}
.ls7c{letter-spacing:1.258560px;}
.ls83{letter-spacing:1.722240px;}
.ls73{letter-spacing:1.821600px;}
.ls38{letter-spacing:1.906560px;}
.ls27{letter-spacing:1.934208px;}
.ls99{letter-spacing:2.450880px;}
.ls7d{letter-spacing:2.583360px;}
.ls19{letter-spacing:3.179520px;}
.ls7e{letter-spacing:3.245760px;}
.ls9b{letter-spacing:3.285504px;}
.lsb8{letter-spacing:3.908160px;}
.ls72{letter-spacing:4.173120px;}
.ls6c{letter-spacing:4.636800px;}
.ls23{letter-spacing:5.365440px;}
.ls8e{letter-spacing:6.094080px;}
.ls82{letter-spacing:6.200064px;}
.ls84{letter-spacing:6.458400px;}
.ls5b{letter-spacing:6.756480px;}
.lsca{letter-spacing:6.785280px;}
.ls7a{letter-spacing:7.094304px;}
.ls22{letter-spacing:7.485120px;}
.ls69{letter-spacing:7.650720px;}
.ls87{letter-spacing:8.213760px;}
.ls26{letter-spacing:8.326368px;}
.lscd{letter-spacing:8.748000px;}
.ls29{letter-spacing:8.942400px;}
.ls62{letter-spacing:8.962272px;}
.ls57{letter-spacing:9.008640px;}
.ls9d{letter-spacing:9.671040px;}
.ls76{letter-spacing:9.743904px;}
.ls74{letter-spacing:9.783648px;}
.ls75{letter-spacing:9.823392px;}
.ls9c{letter-spacing:10.399680px;}
.ls58{letter-spacing:11.128320px;}
.ls78{letter-spacing:11.221056px;}
.ls8c{letter-spacing:11.260800px;}
.ls55{letter-spacing:11.856960px;}
.ls2a{letter-spacing:12.174912px;}
.ls53{letter-spacing:12.519360px;}
.lsd1{letter-spacing:13.068000px;}
.ls86{letter-spacing:13.248000px;}
.ls77{letter-spacing:13.976640px;}
.ls6a{letter-spacing:14.705280px;}
.ls59{letter-spacing:15.433920px;}
.ls5a{letter-spacing:16.162560px;}
.ls60{letter-spacing:17.553600px;}
.ls56{letter-spacing:18.282240px;}
.ls67{letter-spacing:18.328608px;}
.ls5f{letter-spacing:18.454464px;}
.lsba{letter-spacing:18.633312px;}
.ls6b{letter-spacing:23.316480px;}
.ls24{letter-spacing:24.773760px;}
.ls98{letter-spacing:26.231040px;}
.ls9f{letter-spacing:26.794080px;}
.lsbe{letter-spacing:26.953056px;}
.ls61{letter-spacing:26.959680px;}
.ls2b{letter-spacing:27.025920px;}
.lsc9{letter-spacing:27.468000px;}
.ls9e{letter-spacing:28.416960px;}
.ls7b{letter-spacing:29.476800px;}
.ls8d{letter-spacing:29.808000px;}
.lsac{letter-spacing:30.536640px;}
.lsb5{letter-spacing:31.265280px;}
.lsbd{letter-spacing:32.722560px;}
.ls64{letter-spacing:33.451200px;}
.ls5d{letter-spacing:34.113600px;}
.ls63{letter-spacing:34.842240px;}
.ls54{letter-spacing:35.637120px;}
.ls51{letter-spacing:36.307440px;}
.ls79{letter-spacing:37.028160px;}
.ls1b{letter-spacing:38.485440px;}
.ls8a{letter-spacing:50.011200px;}
.ls90{letter-spacing:51.402240px;}
.ls1a{letter-spacing:62.199360px;}
.ls2d{letter-spacing:62.945280px;}
.ls89{letter-spacing:67.233600px;}
.ls2e{letter-spacing:83.105280px;}
.ls32{letter-spacing:94.625280px;}
.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;}
}
.wsbc{word-spacing:-66.240000px;}
.wsf0{word-spacing:-25.886338px;}
.ws8c{word-spacing:-23.334480px;}
.ws2{word-spacing:-23.086080px;}
.ws5e{word-spacing:-23.081760px;}
.ws1{word-spacing:-22.965840px;}
.ws3{word-spacing:-22.845600px;}
.wse8{word-spacing:-22.407840px;}
.ws2b{word-spacing:-22.323600px;}
.ws8d{word-spacing:-21.695040px;}
.wsd6{word-spacing:-21.539520px;}
.wsf{word-spacing:-20.304000px;}
.wse{word-spacing:-20.016000px;}
.ws11{word-spacing:-19.944000px;}
.wsc4{word-spacing:-19.584000px;}
.wsbe{word-spacing:-18.944640px;}
.wsbd{word-spacing:-18.745920px;}
.wsa2{word-spacing:-18.679680px;}
.wsbf{word-spacing:-18.480960px;}
.ws10{word-spacing:-18.432000px;}
.ws2d{word-spacing:-18.414720px;}
.wsd{word-spacing:-18.282240px;}
.wsc0{word-spacing:-18.216000px;}
.ws87{word-spacing:-18.149760px;}
.ws89{word-spacing:-18.083520px;}
.wsc1{word-spacing:-18.017280px;}
.wsff{word-spacing:-18.006095px;}
.wsa4{word-spacing:-17.962813px;}
.ws88{word-spacing:-17.951040px;}
.wsf8{word-spacing:-17.806567px;}
.ws8b{word-spacing:-17.752320px;}
.ws103{word-spacing:-17.750689px;}
.wsf6{word-spacing:-17.742515px;}
.ws8e{word-spacing:-17.686080px;}
.wsf9{word-spacing:-17.678462px;}
.wsf7{word-spacing:-17.614410px;}
.wsa3{word-spacing:-17.579265px;}
.ws100{word-spacing:-17.559135px;}
.ws4c{word-spacing:-17.553600px;}
.wsf4{word-spacing:-17.422253px;}
.wsb5{word-spacing:-17.421120px;}
.ws101{word-spacing:-17.367581px;}
.wsee{word-spacing:-17.356028px;}
.ws2c{word-spacing:-17.354880px;}
.ws8a{word-spacing:-17.222400px;}
.wsc{word-spacing:-16.891200px;}
.ws115{word-spacing:-16.852320px;}
.ws60{word-spacing:-16.673040px;}
.ws64{word-spacing:-16.613280px;}
.ws62{word-spacing:-16.553520px;}
.ws12{word-spacing:-16.493760px;}
.ws61{word-spacing:-16.374240px;}
.ws112{word-spacing:-16.314480px;}
.ws63{word-spacing:-16.254720px;}
.wsa6{word-spacing:-15.757096px;}
.wsa5{word-spacing:-15.643735px;}
.wsed{word-spacing:-15.594552px;}
.wsa7{word-spacing:-15.393000px;}
.ws14{word-spacing:-15.390000px;}
.ws123{word-spacing:-15.282000px;}
.ws81{word-spacing:-15.235200px;}
.ws120{word-spacing:-15.228000px;}
.ws121{word-spacing:-15.174000px;}
.ws144{word-spacing:-15.120000px;}
.ws122{word-spacing:-15.012000px;}
.ws7f{word-spacing:-14.970240px;}
.ws13{word-spacing:-14.904000px;}
.ws135{word-spacing:-14.796000px;}
.ws0{word-spacing:-14.774400px;}
.ws80{word-spacing:-14.705280px;}
.ws136{word-spacing:-14.526000px;}
.ws141{word-spacing:-14.418000px;}
.ws82{word-spacing:-14.374080px;}
.wsde{word-spacing:-14.043600px;}
.ws69{word-spacing:-13.651920px;}
.ws116{word-spacing:-13.507200px;}
.wsdd{word-spacing:-13.505760px;}
.ws67{word-spacing:-13.458960px;}
.ws66{word-spacing:-13.410720px;}
.ws113{word-spacing:-13.217760px;}
.ws65{word-spacing:-13.121280px;}
.ws68{word-spacing:-12.928320px;}
.ws6a{word-spacing:-12.735360px;}
.ws114{word-spacing:-12.397680px;}
.ws6b{word-spacing:-11.674080px;}
.ws9b{word-spacing:-11.609280px;}
.wsdc{word-spacing:-8.786880px;}
.wsd4{word-spacing:-4.570560px;}
.wsce{word-spacing:-3.841920px;}
.wsab{word-spacing:-3.643200px;}
.wsc2{word-spacing:-3.245760px;}
.wsaa{word-spacing:-3.179520px;}
.wsdf{word-spacing:-2.980800px;}
.ws46{word-spacing:-2.450880px;}
.ws133{word-spacing:-2.430000px;}
.ws126{word-spacing:-2.268000px;}
.ws134{word-spacing:-2.052000px;}
.ws33{word-spacing:-1.722240px;}
.ws12a{word-spacing:-1.512000px;}
.wsfc{word-spacing:-1.411780px;}
.ws57{word-spacing:-0.993600px;}
.ws11b{word-spacing:-0.964800px;}
.ws1a{word-spacing:-0.864000px;}
.ws127{word-spacing:-0.810000px;}
.wsc3{word-spacing:-0.728640px;}
.ws79{word-spacing:-0.675360px;}
.ws119{word-spacing:-0.657360px;}
.ws142{word-spacing:-0.594000px;}
.wse5{word-spacing:-0.504000px;}
.ws7c{word-spacing:-0.482400px;}
.ws8{word-spacing:-0.480960px;}
.ws37{word-spacing:-0.331200px;}
.ws118{word-spacing:-0.298800px;}
.ws16{word-spacing:-0.264960px;}
.wsfb{word-spacing:-0.256210px;}
.ws104{word-spacing:-0.255406px;}
.ws6e{word-spacing:-0.241200px;}
.wsdb{word-spacing:-0.216000px;}
.wse4{word-spacing:-0.179280px;}
.ws2a{word-spacing:-0.162000px;}
.wsb{word-spacing:-0.155520px;}
.ws6f{word-spacing:-0.144720px;}
.ws17{word-spacing:-0.144000px;}
.ws106{word-spacing:-0.128030px;}
.wsf3{word-spacing:-0.123092px;}
.ws75{word-spacing:-0.119520px;}
.wsb3{word-spacing:-0.113360px;}
.ws29{word-spacing:-0.108000px;}
.wsfe{word-spacing:-0.066240px;}
.ws73{word-spacing:-0.059760px;}
.ws7b{word-spacing:-0.048240px;}
.ws4{word-spacing:0.000000px;}
.ws7a{word-spacing:0.048240px;}
.ws20{word-spacing:0.059760px;}
.ws86{word-spacing:0.066240px;}
.wsca{word-spacing:0.072000px;}
.ws6{word-spacing:0.077760px;}
.ws132{word-spacing:0.108000px;}
.wsf1{word-spacing:0.113004px;}
.wsb4{word-spacing:0.113360px;}
.ws11e{word-spacing:0.119520px;}
.ws105{word-spacing:0.127703px;}
.ws3b{word-spacing:0.132480px;}
.ws6c{word-spacing:0.179280px;}
.wsf2{word-spacing:0.184244px;}
.ws11c{word-spacing:0.192960px;}
.ws84{word-spacing:0.198720px;}
.ws19{word-spacing:0.216000px;}
.ws76{word-spacing:0.239040px;}
.ws7{word-spacing:0.240480px;}
.ws11f{word-spacing:0.241200px;}
.ws85{word-spacing:0.264960px;}
.ws77{word-spacing:0.289440px;}
.ws124{word-spacing:0.298800px;}
.wsb0{word-spacing:0.319623px;}
.ws36{word-spacing:0.331200px;}
.wse9{word-spacing:0.336960px;}
.ws11a{word-spacing:0.337680px;}
.ws9{word-spacing:0.360720px;}
.ws5{word-spacing:0.388800px;}
.ws30{word-spacing:0.397440px;}
.wse2{word-spacing:0.418320px;}
.ws15{word-spacing:0.463680px;}
.ws7e{word-spacing:0.482400px;}
.ws12b{word-spacing:0.486000px;}
.wse3{word-spacing:0.537840px;}
.ws78{word-spacing:0.578880px;}
.ws137{word-spacing:0.594000px;}
.ws6d{word-spacing:0.597600px;}
.ws139{word-spacing:0.648000px;}
.wsc7{word-spacing:0.662400px;}
.ws83{word-spacing:0.673920px;}
.ws95{word-spacing:0.728640px;}
.ws23{word-spacing:0.776880px;}
.wsfd{word-spacing:0.817318px;}
.ws53{word-spacing:0.861120px;}
.ws18{word-spacing:0.936000px;}
.ws10a{word-spacing:0.993600px;}
.wscf{word-spacing:1.059840px;}
.wsa{word-spacing:1.166400px;}
.ws5f{word-spacing:1.192320px;}
.ws7d{word-spacing:1.302480px;}
.ws138{word-spacing:1.350000px;}
.ws11d{word-spacing:1.350720px;}
.wsc8{word-spacing:1.477440px;}
.ws27{word-spacing:1.494000px;}
.ws13a{word-spacing:1.620000px;}
.ws45{word-spacing:1.920960px;}
.ws128{word-spacing:2.052000px;}
.ws74{word-spacing:2.091600px;}
.wsb2{word-spacing:2.153848px;}
.wsb1{word-spacing:2.267208px;}
.ws129{word-spacing:2.268000px;}
.ws32{word-spacing:2.583360px;}
.ws14c{word-spacing:2.754000px;}
.ws49{word-spacing:2.782080px;}
.ws12f{word-spacing:2.808000px;}
.ws25{word-spacing:2.988000px;}
.ws31{word-spacing:3.312000px;}
.ws12e{word-spacing:3.510000px;}
.ws59{word-spacing:3.576960px;}
.ws5d{word-spacing:4.040640px;}
.ws125{word-spacing:4.212000px;}
.wsad{word-spacing:4.371840px;}
.ws13c{word-spacing:4.428000px;}
.ws40{word-spacing:4.769280px;}
.ws12d{word-spacing:4.968000px;}
.ws130{word-spacing:5.076000px;}
.ws1e{word-spacing:5.139360px;}
.ws2e{word-spacing:5.497920px;}
.ws131{word-spacing:5.670000px;}
.ws9c{word-spacing:5.696640px;}
.ws24{word-spacing:5.856480px;}
.ws4b{word-spacing:6.226560px;}
.ws38{word-spacing:6.955200px;}
.wsfa{word-spacing:7.485485px;}
.ws56{word-spacing:7.683840px;}
.ws13f{word-spacing:7.830000px;}
.wsf5{word-spacing:7.866974px;}
.ws145{word-spacing:7.938000px;}
.ws28{word-spacing:8.007840px;}
.ws51{word-spacing:8.346240px;}
.ws140{word-spacing:8.532000px;}
.ws1b{word-spacing:8.724960px;}
.ws58{word-spacing:9.074880px;}
.ws35{word-spacing:9.803520px;}
.ws13e{word-spacing:9.990000px;}
.ws4d{word-spacing:10.532160px;}
.ws1f{word-spacing:10.876320px;}
.ws2f{word-spacing:11.260800px;}
.ws13d{word-spacing:11.448000px;}
.ws5b{word-spacing:11.989440px;}
.ws13b{word-spacing:12.150000px;}
.ws47{word-spacing:12.718080px;}
.ws143{word-spacing:12.852000px;}
.ws8f{word-spacing:12.983040px;}
.wscb{word-spacing:13.380480px;}
.wscc{word-spacing:13.579200px;}
.ws9f{word-spacing:14.109120px;}
.ws9a{word-spacing:14.837760px;}
.ws9d{word-spacing:15.566400px;}
.ws43{word-spacing:16.295040px;}
.wsc5{word-spacing:16.511040px;}
.ws99{word-spacing:17.023680px;}
.ws1d{word-spacing:17.330400px;}
.ws96{word-spacing:17.752320px;}
.ws14a{word-spacing:17.928000px;}
.ws1c{word-spacing:18.107280px;}
.ws149{word-spacing:18.144000px;}
.ws50{word-spacing:18.480960px;}
.ws14b{word-spacing:18.630000px;}
.ws94{word-spacing:18.679680px;}
.ws5a{word-spacing:19.143360px;}
.wsa8{word-spacing:19.209600px;}
.ws3e{word-spacing:19.872000px;}
.ws117{word-spacing:20.258640px;}
.wsd7{word-spacing:20.600640px;}
.wse0{word-spacing:21.329280px;}
.wsc6{word-spacing:21.565440px;}
.ws26{word-spacing:21.692880px;}
.wsbb{word-spacing:22.057920px;}
.wsc9{word-spacing:22.786560px;}
.ws3f{word-spacing:23.515200px;}
.wsac{word-spacing:24.243840px;}
.ws34{word-spacing:24.906240px;}
.ws148{word-spacing:25.110000px;}
.ws55{word-spacing:25.634880px;}
.wse1{word-spacing:26.363520px;}
.ws5c{word-spacing:27.092160px;}
.ws12c{word-spacing:27.270000px;}
.wsba{word-spacing:27.820800px;}
.ws146{word-spacing:27.972000px;}
.wsb7{word-spacing:28.549440px;}
.ws147{word-spacing:28.674000px;}
.wsb8{word-spacing:29.278080px;}
.wsb6{word-spacing:29.940480px;}
.ws4a{word-spacing:30.669120px;}
.ws97{word-spacing:31.397760px;}
.ws98{word-spacing:32.126400px;}
.wsa9{word-spacing:32.855040px;}
.ws10b{word-spacing:33.583680px;}
.ws9e{word-spacing:34.312320px;}
.wsae{word-spacing:35.040960px;}
.ws22{word-spacing:35.377920px;}
.ws92{word-spacing:35.703360px;}
.ws21{word-spacing:36.095040px;}
.ws93{word-spacing:36.432000px;}
.wsb9{word-spacing:37.160640px;}
.ws71{word-spacing:37.170720px;}
.ws72{word-spacing:37.350000px;}
.ws70{word-spacing:37.648800px;}
.ws10c{word-spacing:37.889280px;}
.ws14d{word-spacing:38.070000px;}
.ws48{word-spacing:38.617920px;}
.wsec{word-spacing:39.346560px;}
.wsa1{word-spacing:39.611520px;}
.wsa0{word-spacing:40.075200px;}
.ws90{word-spacing:40.803840px;}
.wsd8{word-spacing:41.466240px;}
.wscd{word-spacing:41.532480px;}
.ws4e{word-spacing:42.194880px;}
.wsd5{word-spacing:42.393600px;}
.wsd3{word-spacing:42.923520px;}
.ws41{word-spacing:43.652160px;}
.ws42{word-spacing:43.850880px;}
.ws10f{word-spacing:44.380800px;}
.ws3c{word-spacing:45.838080px;}
.wse7{word-spacing:46.500480px;}
.ws4f{word-spacing:47.229120px;}
.ws107{word-spacing:47.957760px;}
.ws110{word-spacing:48.686400px;}
.ws91{word-spacing:49.415040px;}
.wsd2{word-spacing:50.011200px;}
.wsd1{word-spacing:50.143680px;}
.ws44{word-spacing:50.872320px;}
.wsda{word-spacing:51.600960px;}
.ws3d{word-spacing:54.449280px;}
.ws10e{word-spacing:55.906560px;}
.ws109{word-spacing:57.363840px;}
.wsaf{word-spacing:60.212160px;}
.ws52{word-spacing:61.669440px;}
.ws39{word-spacing:63.060480px;}
.ws3a{word-spacing:63.259200px;}
.wse6{word-spacing:63.789120px;}
.ws108{word-spacing:64.517760px;}
.ws54{word-spacing:66.703680px;}
.wsd0{word-spacing:68.160960px;}
.ws10d{word-spacing:73.195200px;}
.wseb{word-spacing:74.586240px;}
.wsea{word-spacing:75.314880px;}
.ws111{word-spacing:81.806400px;}
.wsd9{word-spacing:133.672320px;}
.ws102{word-spacing:162.731825px;}
.wsef{word-spacing:671.715845px;}
._2b{margin-left:-49.633632px;}
._d{margin-left:-14.973120px;}
._e{margin-left:-11.131200px;}
._12{margin-left:-9.977760px;}
._c{margin-left:-8.724960px;}
._11{margin-left:-6.933600px;}
._f{margin-left:-5.148000px;}
._10{margin-left:-3.519360px;}
._6{margin-left:-2.311200px;}
._2{margin-left:-1.166400px;}
._1{width:1.127520px;}
._3{width:2.904480px;}
._4{width:3.918456px;}
._8{width:4.968000px;}
._17{width:6.491520px;}
._1e{width:8.143200px;}
._18{width:9.462240px;}
._19{width:11.054880px;}
._15{width:12.055680px;}
._1f{width:14.493600px;}
._a{width:15.701760px;}
._1b{width:16.758720px;}
._2d{width:17.780400px;}
._23{width:20.417040px;}
._25{width:22.654080px;}
._1c{width:24.770880px;}
._1a{width:26.032320px;}
._9{width:27.622080px;}
._26{width:28.814400px;}
._21{width:30.139200px;}
._29{width:32.124960px;}
._1d{width:33.847200px;}
._16{width:35.364960px;}
._22{width:37.131840px;}
._2e{width:38.977200px;}
._13{width:40.737600px;}
._27{width:42.717600px;}
._28{width:43.718400px;}
._7{width:47.165760px;}
._14{width:49.096800px;}
._24{width:50.143680px;}
._20{width:61.143840px;}
._5{width:63.364320px;}
._2a{width:67.498560px;}
._b{width:845.553600px;}
._2c{width:848.998080px;}
._0{width:2127.032640px;}
.fc9{color:rgb(0,0,255);}
.fc8{color:rgb(238,236,225);}
.fc6{color:rgb(79,129,189);}
.fc5{color:rgb(31,73,125);}
.fc4{color:rgb(152,72,7);}
.fc3{color:rgb(5,99,193);}
.fc7{color:rgb(228,108,10);}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs19{font-size:18.000000px;}
.fsb{font-size:23.760000px;}
.fsa{font-size:36.000000px;}
.fs16{font-size:37.150800px;}
.fs10{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fse{font-size:54.975000px;}
.fs11{font-size:56.502000px;}
.fsd{font-size:56.680200px;}
.fs5{font-size:59.760000px;}
.fs12{font-size:61.546200px;}
.fs17{font-size:63.851400px;}
.fsc{font-size:63.924600px;}
.fs18{font-size:64.015200px;}
.fs14{font-size:64.052400px;}
.fs15{font-size:64.171800px;}
.fs0{font-size:66.240000px;}
.fsf{font-size:69.120000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs7{font-size:84.240000px;}
.fs13{font-size:92.122200px;}
.fs3{font-size:95.760000px;}
.fs2{font-size:120.240000px;}
.y4d{bottom:-540.900000px;}
.y4c{bottom:-514.980000px;}
.y4b{bottom:-489.060000px;}
.y4a{bottom:-463.140000px;}
.y49{bottom:-437.400000px;}
.y48{bottom:-411.480000px;}
.y47{bottom:-385.560000px;}
.y46{bottom:-359.640000px;}
.y45{bottom:-333.900000px;}
.y44{bottom:-307.980000px;}
.y43{bottom:-282.060000px;}
.y42{bottom:-256.140000px;}
.y41{bottom:-230.400000px;}
.y40{bottom:-204.480000px;}
.y3f{bottom:-178.560000px;}
.y3e{bottom:-152.820000px;}
.y26{bottom:-132.120000px;}
.y3d{bottom:-126.900000px;}
.y25{bottom:-106.200000px;}
.y3c{bottom:-100.980000px;}
.y24{bottom:-80.280000px;}
.y3b{bottom:-75.060000px;}
.y23{bottom:-52.380000px;}
.y3a{bottom:-49.320000px;}
.y5f{bottom:-45.540000px;}
.y39{bottom:-23.400000px;}
.y22{bottom:-21.240000px;}
.y5e{bottom:-14.400000px;}
.y1f{bottom:-7.380000px;}
.y29c{bottom:-1.305150px;}
.y0{bottom:0.000000px;}
.y1b{bottom:0.180000px;}
.y38{bottom:4.860000px;}
.y2f4{bottom:5.149050px;}
.y3c4{bottom:5.760000px;}
.y3c2{bottom:5.940000px;}
.y1d{bottom:7.560000px;}
.y29a{bottom:8.239500px;}
.y61{bottom:9.540000px;}
.y21{bottom:9.720000px;}
.y423{bottom:9.900000px;}
.y420{bottom:10.080000px;}
.y437{bottom:10.260000px;}
.y3b1{bottom:10.440000px;}
.y2d0{bottom:11.916900px;}
.y2c2{bottom:11.956800px;}
.y2b7{bottom:11.995500px;}
.y413{bottom:13.680000px;}
.y13{bottom:14.760000px;}
.y16{bottom:15.120000px;}
.y172{bottom:15.796080px;}
.y5d{bottom:16.560000px;}
.y161{bottom:17.678880px;}
.y2c4{bottom:21.096000px;}
.y2ba{bottom:21.136200px;}
.y2d2{bottom:21.216600px;}
.y3f6{bottom:25.560000px;}
.y3c0{bottom:25.740000px;}
.y42e{bottom:27.540000px;}
.y431{bottom:27.720000px;}
.y3ac{bottom:28.620000px;}
.y411{bottom:29.520000px;}
.y3b0{bottom:30.240000px;}
.y2c9{bottom:30.998700px;}
.y2bd{bottom:31.038750px;}
.y2b2{bottom:31.077300px;}
.yf7{bottom:31.500000px;}
.yf4{bottom:31.680000px;}
.y3e2{bottom:32.040000px;}
.y44e{bottom:32.220000px;}
.y45f{bottom:32.400000px;}
.y171{bottom:32.842650px;}
.y160{bottom:34.725450px;}
.y5a{bottom:34.920000px;}
.y163{bottom:37.731030px;}
.y35{bottom:38.700000px;}
.y15{bottom:39.780000px;}
.y3f5{bottom:45.360000px;}
.y427{bottom:45.540000px;}
.y3bf{bottom:45.720000px;}
.y28e{bottom:47.200650px;}
.y3e0{bottom:48.060000px;}
.y2ca{bottom:48.711450px;}
.y3af{bottom:50.220000px;}
.y2e8{bottom:50.790300px;}
.y2c6{bottom:54.630600px;}
.y162{bottom:54.777600px;}
.y2be{bottom:56.959800px;}
.y2b3{bottom:56.998350px;}
.y4{bottom:57.774240px;}
.y68{bottom:57.786480px;}
.y2c5{bottom:57.993300px;}
.y59{bottom:60.840000px;}
.y2b9{bottom:61.036350px;}
.y40e{bottom:61.380000px;}
.y3de{bottom:63.900000px;}
.y33{bottom:64.620000px;}
.y3f4{bottom:65.160000px;}
.y3bd{bottom:65.520000px;}
.y2cb{bottom:66.424050px;}
.y158{bottom:67.293120px;}
.y3{bottom:73.440000px;}
.y16b{bottom:74.023980px;}
.y28f{bottom:76.007850px;}
.y15a{bottom:76.784520px;}
.y67{bottom:77.940000px;}
.y3dc{bottom:79.740000px;}
.y2bf{bottom:82.880850px;}
.y2b4{bottom:82.919250px;}
.y2e9{bottom:82.940700px;}
.y2cc{bottom:84.136650px;}
.y3f3{bottom:85.140000px;}
.y3bc{bottom:85.320000px;}
.y29f{bottom:86.057700px;}
.y40c{bottom:86.220000px;}
.y157{bottom:86.470500px;}
.y58{bottom:86.760000px;}
.y32{bottom:90.360000px;}
.y16a{bottom:91.070550px;}
.y159{bottom:95.961900px;}
.y13d{bottom:96.295500px;}
.y216{bottom:96.300000px;}
.y230{bottom:97.556760px;}
.y30a{bottom:98.546400px;}
.y32a{bottom:98.641440px;}
.y398{bottom:98.652240px;}
.y152{bottom:100.080000px;}
.y125{bottom:100.086480px;}
.y8b{bottom:101.480400px;}
.y2cd{bottom:101.849400px;}
.y64{bottom:101.880000px;}
.y40a{bottom:102.060000px;}
.y24a{bottom:102.780000px;}
.y3a9{bottom:103.090320px;}
.y3da{bottom:104.580000px;}
.y290{bottom:104.814900px;}
.y3f2{bottom:104.940000px;}
.y3ba{bottom:105.120000px;}
.y34a{bottom:106.719120px;}
.y2c0{bottom:108.801600px;}
.y2b5{bottom:108.840300px;}
.y57{bottom:112.500000px;}
.yaf{bottom:112.865040px;}
.y2ea{bottom:115.091100px;}
.y378{bottom:115.142400px;}
.y22f{bottom:115.738740px;}
.y31{bottom:116.280000px;}
.y215{bottom:116.460000px;}
.y151{bottom:116.640000px;}
.y1dd{bottom:116.921520px;}
.y35d{bottom:118.719360px;}
.y2ce{bottom:119.562000px;}
.y2bb{bottom:120.085200px;}
.y3d8{bottom:120.420000px;}
.y2f7{bottom:121.061550px;}
.y153{bottom:122.220000px;}
.y150{bottom:122.235840px;}
.y2c7{bottom:123.046350px;}
.y3f1{bottom:124.740000px;}
.y3b9{bottom:124.920000px;}
.y63{bottom:125.100000px;}
.y15f{bottom:126.493050px;}
.y408{bottom:126.900000px;}
.y309{bottom:126.979920px;}
.y329{bottom:127.074960px;}
.y397{bottom:127.085760px;}
.y2d3{bottom:128.171550px;}
.y124{bottom:128.520000px;}
.y13c{bottom:129.060000px;}
.y8a{bottom:129.913920px;}
.y3a8{bottom:131.523840px;}
.y156{bottom:132.047640px;}
.y291{bottom:133.621950px;}
.y419{bottom:134.640000px;}
.y2c1{bottom:134.722650px;}
.y2b6{bottom:134.761350px;}
.y349{bottom:135.152640px;}
.y2cf{bottom:137.274750px;}
.y1b8{bottom:137.912400px;}
.y55{bottom:138.420000px;}
.y22e{bottom:139.320000px;}
.yae{bottom:141.298560px;}
.y2f{bottom:142.200000px;}
.y406{bottom:142.740000px;}
.y377{bottom:143.575920px;}
.y3f0{bottom:144.540000px;}
.y3b7{bottom:144.900000px;}
.y3d6{bottom:145.260000px;}
.y1dc{bottom:145.355040px;}
.y35c{bottom:147.152880px;}
.y2eb{bottom:147.241800px;}
.y3f7{bottom:150.300000px;}
.y155{bottom:151.225020px;}
.y22d{bottom:153.000000px;}
.y1f2{bottom:154.491840px;}
.y308{bottom:155.413440px;}
.y328{bottom:155.508480px;}
.y396{bottom:155.519280px;}
.y123{bottom:157.140000px;}
.y89{bottom:158.347440px;}
.y2e6{bottom:158.809680px;}
.y3d4{bottom:161.280000px;}
.y2b0{bottom:162.255600px;}
.y292{bottom:162.429150px;}
.y348{bottom:163.768320px;}
.y414{bottom:163.980000px;}
.y54{bottom:164.340000px;}
.y3b5{bottom:164.700000px;}
.y277{bottom:164.772720px;}
.y1b7{bottom:166.345920px;}
.y404{bottom:167.580000px;}
.y2e{bottom:168.120000px;}
.yad{bottom:169.732080px;}
.y249{bottom:169.976160px;}
.y16d{bottom:170.223630px;}
.y154{bottom:170.402400px;}
.y190{bottom:170.825040px;}
.y66{bottom:171.720000px;}
.y376{bottom:172.009440px;}
.y3a7{bottom:172.211760px;}
.y1db{bottom:173.788560px;}
.ye5{bottom:174.780000px;}
.y35b{bottom:175.586400px;}
.y2ec{bottom:179.391900px;}
.y214{bottom:179.596080px;}
.y412{bottom:179.820000px;}
.y1f1{bottom:182.759760px;}
.y402{bottom:183.600000px;}
.y307{bottom:184.029120px;}
.y327{bottom:184.124160px;}
.y395{bottom:184.134960px;}
.y3b4{bottom:184.320000px;}
.y3d2{bottom:186.120000px;}
.y88{bottom:186.780960px;}
.y16c{bottom:187.270200px;}
.y62{bottom:187.380000px;}
.y2e5{bottom:187.425360px;}
.y473{bottom:189.180000px;}
.y52{bottom:190.260000px;}
.y2af{bottom:190.689120px;}
.y293{bottom:191.236050px;}
.y347{bottom:192.201840px;}
.y276{bottom:193.040640px;}
.y28c{bottom:193.781520px;}
.y2d{bottom:193.860000px;}
.y1b6{bottom:194.779440px;}
.y410{bottom:195.660000px;}
.y122{bottom:196.089120px;}
.yac{bottom:198.165600px;}
.y169{bottom:198.208530px;}
.y248{bottom:198.409680px;}
.y15e{bottom:200.085270px;}
.y375{bottom:200.442960px;}
.y3a6{bottom:200.479680px;}
.y3d0{bottom:201.960000px;}
.y13b{bottom:202.142880px;}
.y1da{bottom:202.222080px;}
.y35a{bottom:204.019920px;}
.y3ef{bottom:204.120000px;}
.y472{bottom:204.660000px;}
.y213{bottom:208.029600px;}
.y400{bottom:208.440000px;}
.y18f{bottom:209.707920px;}
.ye4{bottom:211.142880px;}
.y1f0{bottom:211.193280px;}
.y2ed{bottom:211.542450px;}
.y40f{bottom:211.680000px;}
.y306{bottom:212.462640px;}
.y326{bottom:212.557680px;}
.y394{bottom:212.568480px;}
.y87{bottom:215.214480px;}
.y168{bottom:215.255100px;}
.y15c{bottom:215.675820px;}
.y2e4{bottom:215.858880px;}
.y50{bottom:216.000000px;}
.y2ae{bottom:219.122640px;}
.y15d{bottom:219.262650px;}
.y2b{bottom:219.780000px;}
.y294{bottom:220.043100px;}
.y346{bottom:220.635360px;}
.y13a{bottom:221.217120px;}
.y275{bottom:221.474160px;}
.y28b{bottom:222.215040px;}
.y3ed{bottom:222.840000px;}
.y1b5{bottom:223.212960px;}
.y22c{bottom:223.313760px;}
.y3fe{bottom:224.280000px;}
.y121{bottom:224.522640px;}
.y3ce{bottom:226.800000px;}
.y247{bottom:226.843200px;}
.y471{bottom:227.160000px;}
.y374{bottom:228.876480px;}
.y3a5{bottom:228.913200px;}
.y1d9{bottom:230.655600px;}
.y359{bottom:232.453440px;}
.y15b{bottom:234.853200px;}
.y212{bottom:236.463120px;}
.y139{bottom:236.518560px;}
.y40d{bottom:236.520000px;}
.yab{bottom:237.230640px;}
.y18e{bottom:238.141440px;}
.ye3{bottom:238.500000px;}
.y3eb{bottom:238.680000px;}
.y1ef{bottom:239.626800px;}
.y3fd{bottom:240.300000px;}
.y305{bottom:240.896160px;}
.y325{bottom:240.991200px;}
.y393{bottom:241.002000px;}
.y16f{bottom:241.720080px;}
.y4f{bottom:241.920000px;}
.y3cc{bottom:242.640000px;}
.y86{bottom:243.648000px;}
.y2ee{bottom:243.692850px;}
.y2e3{bottom:244.292400px;}
.y29{bottom:245.700000px;}
.y2ad{bottom:247.556160px;}
.y295{bottom:248.850300px;}
.y345{bottom:249.068880px;}
.y470{bottom:249.480000px;}
.y274{bottom:250.089840px;}
.y28a{bottom:250.648560px;}
.y1b4{bottom:251.646480px;}
.y22b{bottom:251.747280px;}
.y40b{bottom:252.360000px;}
.y120{bottom:252.956160px;}
.y418{bottom:253.980000px;}
.y3e9{bottom:254.520000px;}
.y246{bottom:255.276720px;}
.y3fb{bottom:256.140000px;}
.y373{bottom:257.310000px;}
.y3a4{bottom:257.346720px;}
.y167{bottom:257.841180px;}
.y3cb{bottom:258.480000px;}
.y16e{bottom:258.766650px;}
.y1d8{bottom:259.089120px;}
.y358{bottom:261.069120px;}
.ye2{bottom:264.420000px;}
.y211{bottom:265.078800px;}
.yaa{bottom:265.664160px;}
.y165{bottom:265.901962px;}
.y18d{bottom:266.757120px;}
.y3e8{bottom:267.300000px;}
.y1ee{bottom:268.242480px;}
.y3fa{bottom:268.740000px;}
.y304{bottom:269.329680px;}
.y324{bottom:269.424720px;}
.y392{bottom:269.435520px;}
.y417{bottom:269.820000px;}
.y28{bottom:271.440000px;}
.y46e{bottom:271.800000px;}
.y2e2{bottom:272.725920px;}
.y3c9{bottom:274.500000px;}
.y166{bottom:274.887750px;}
.y2ef{bottom:275.843250px;}
.y2ac{bottom:275.989680px;}
.y446{bottom:276.660000px;}
.y409{bottom:277.200000px;}
.y296{bottom:277.657200px;}
.y3e6{bottom:277.740000px;}
.y273{bottom:278.523360px;}
.y3f9{bottom:278.820000px;}
.y289{bottom:279.082080px;}
.y1b3{bottom:280.080000px;}
.y22a{bottom:280.180800px;}
.y11f{bottom:281.389680px;}
.y46f{bottom:281.520000px;}
.y164{bottom:282.421950px;}
.y85{bottom:282.713040px;}
.y245{bottom:283.710240px;}
.y416{bottom:285.660000px;}
.y372{bottom:285.743520px;}
.y3a3{bottom:285.780240px;}
.y3c8{bottom:287.460000px;}
.y1d7{bottom:287.522640px;}
.y65{bottom:289.260000px;}
.y357{bottom:289.502640px;}
.y344{bottom:289.756800px;}
.y170{bottom:289.785150px;}
.ye1{bottom:290.160000px;}
.y445{bottom:292.140000px;}
.y407{bottom:293.040000px;}
.y210{bottom:293.512320px;}
.ya9{bottom:294.097680px;}
.y18c{bottom:295.190640px;}
.y1ed{bottom:296.676000px;}
.y3c6{bottom:297.360000px;}
.y3e4{bottom:297.540000px;}
.y303{bottom:297.763200px;}
.y323{bottom:297.858240px;}
.y391{bottom:297.869040px;}
.y3f8{bottom:298.980000px;}
.y2e1{bottom:301.159440px;}
.y415{bottom:301.680000px;}
.y2ab{bottom:304.423200px;}
.y297{bottom:306.464400px;}
.y272{bottom:306.956880px;}
.y288{bottom:307.515600px;}
.y2f0{bottom:307.993800px;}
.y229{bottom:308.614320px;}
.y11e{bottom:309.823200px;}
.y84{bottom:311.146560px;}
.y1b2{bottom:311.580000px;}
.y46d{bottom:311.940000px;}
.y244{bottom:312.143760px;}
.y371{bottom:314.177040px;}
.y3a2{bottom:314.213760px;}
.y443{bottom:314.460000px;}
.y1d6{bottom:315.956160px;}
.ye0{bottom:316.080000px;}
.y405{bottom:317.880000px;}
.y356{bottom:317.936160px;}
.y343{bottom:318.024720px;}
.y20f{bottom:321.945840px;}
.ya8{bottom:322.531200px;}
.y18b{bottom:323.624160px;}
.y444{bottom:324.180000px;}
.y60{bottom:325.080000px;}
.y1ec{bottom:325.109520px;}
.y302{bottom:326.196720px;}
.y322{bottom:326.291760px;}
.y390{bottom:326.302560px;}
.y2e0{bottom:329.592960px;}
.y2aa{bottom:332.856720px;}
.y403{bottom:333.900000px;}
.y46b{bottom:334.440000px;}
.y298{bottom:335.271300px;}
.y271{bottom:335.390400px;}
.y287{bottom:335.949120px;}
.y228{bottom:337.047840px;}
.y11d{bottom:338.438880px;}
.y83{bottom:339.580080px;}
.y2f1{bottom:340.144200px;}
.y243{bottom:340.577280px;}
.ydf{bottom:342.000000px;}
.y370{bottom:342.792720px;}
.y3a1{bottom:342.829440px;}
.y46c{bottom:344.160000px;}
.y1d5{bottom:344.389680px;}
.y1b1{bottom:344.568960px;}
.y29e{bottom:345.832650px;}
.y355{bottom:346.369680px;}
.y342{bottom:346.458240px;}
.y5c{bottom:346.860000px;}
.y20e{bottom:350.379360px;}
.ya7{bottom:350.964720px;}
.y18a{bottom:352.057680px;}
.y1eb{bottom:353.543040px;}
.y301{bottom:354.630240px;}
.y321{bottom:354.725280px;}
.y38f{bottom:354.736080px;}
.y441{bottom:354.780000px;}
.y2df{bottom:358.026480px;}
.y401{bottom:358.740000px;}
.y2f6{bottom:359.231400px;}
.y2a9{bottom:361.290240px;}
.y270{bottom:363.823920px;}
.y299{bottom:364.078500px;}
.y286{bottom:364.382640px;}
.y442{bottom:364.500000px;}
.y227{bottom:365.481360px;}
.y11c{bottom:366.872400px;}
.yde{bottom:367.920000px;}
.y82{bottom:368.195760px;}
.y242{bottom:369.010800px;}
.y36f{bottom:371.226240px;}
.y3a0{bottom:371.262960px;}
.y2f2{bottom:372.294600px;}
.y1b0{bottom:373.002480px;}
.y1d4{bottom:373.005360px;}
.y3ff{bottom:374.580000px;}
.y354{bottom:374.803200px;}
.y341{bottom:374.891760px;}
.y20d{bottom:378.812880px;}
.ya6{bottom:379.398240px;}
.y4e{bottom:380.160000px;}
.y189{bottom:380.491200px;}
.y300{bottom:383.063760px;}
.y320{bottom:383.158800px;}
.y38e{bottom:383.169600px;}
.y46a{bottom:384.300000px;}
.y494{bottom:385.920000px;}
.y2de{bottom:386.460000px;}
.y81{bottom:386.908560px;}
.y2a8{bottom:389.905920px;}
.y1af{bottom:392.079600px;}
.y285{bottom:392.816160px;}
.ydd{bottom:393.660000px;}
.y226{bottom:393.914880px;}
.y1ea{bottom:394.230960px;}
.y43f{bottom:394.920000px;}
.y11b{bottom:395.305920px;}
.y241{bottom:397.444320px;}
.y36e{bottom:399.659760px;}
.y39f{bottom:399.696480px;}
.y493{bottom:401.400000px;}
.y1d3{bottom:401.438880px;}
.y353{bottom:403.236720px;}
.y340{bottom:403.325280px;}
.y26f{bottom:404.511840px;}
.y440{bottom:404.640000px;}
.y3fc{bottom:406.440000px;}
.y20c{bottom:407.246400px;}
.ya5{bottom:407.831760px;}
.y188{bottom:408.924720px;}
.y2ff{bottom:411.497280px;}
.y31f{bottom:411.592320px;}
.y38d{bottom:411.603120px;}
.y468{bottom:414.720000px;}
.y5b{bottom:415.080000px;}
.y1ae{bottom:416.919600px;}
.y2a7{bottom:418.339440px;}
.y2dd{bottom:418.500000px;}
.ydc{bottom:419.580000px;}
.y284{bottom:421.431840px;}
.y225{bottom:422.348400px;}
.y1e9{bottom:422.498880px;}
.y492{bottom:423.720000px;}
.y11a{bottom:423.739440px;}
.y469{bottom:424.440000px;}
.y80{bottom:425.973600px;}
.y240{bottom:426.060000px;}
.y36d{bottom:428.093280px;}
.y39e{bottom:428.130000px;}
.y1d2{bottom:429.872400px;}
.y352{bottom:431.670240px;}
.y33f{bottom:431.758800px;}
.y26e{bottom:432.779760px;}
.y43d{bottom:435.060000px;}
.y20b{bottom:435.679920px;}
.ya4{bottom:436.447440px;}
.y187{bottom:437.358240px;}
.y2fe{bottom:440.112960px;}
.y31e{bottom:440.208000px;}
.y38c{bottom:440.218800px;}
.y43e{bottom:444.780000px;}
.ydb{bottom:445.500000px;}
.y490{bottom:446.040000px;}
.y2a6{bottom:446.772960px;}
.y283{bottom:449.865360px;}
.y1e8{bottom:450.932400px;}
.y224{bottom:450.964080px;}
.y119{bottom:452.172960px;}
.y7f{bottom:454.407120px;}
.y466{bottom:455.040000px;}
.y491{bottom:455.940000px;}
.y36c{bottom:456.526800px;}
.y39d{bottom:456.563520px;}
.y23f{bottom:457.380000px;}
.y1d1{bottom:458.305920px;}
.y14f{bottom:460.092960px;}
.y351{bottom:460.103760px;}
.y33e{bottom:460.192320px;}
.y26d{bottom:461.213280px;}
.y2dc{bottom:461.908800px;}
.y3c5{bottom:463.140000px;}
.y20a{bottom:464.113440px;}
.y467{bottom:464.760000px;}
.ya3{bottom:464.880960px;}
.y186{bottom:465.791760px;}
.y103{bottom:468.000000px;}
.y2fd{bottom:468.546480px;}
.y31d{bottom:468.641520px;}
.y38b{bottom:468.652320px;}
.y2a5{bottom:475.206480px;}
.y43b{bottom:475.380000px;}
.y282{bottom:478.298880px;}
.y1e7{bottom:479.365920px;}
.y223{bottom:479.397600px;}
.yda{bottom:480.600000px;}
.y118{bottom:480.606480px;}
.y7e{bottom:482.840640px;}
.y36b{bottom:484.960320px;}
.y39c{bottom:484.997040px;}
.y43c{bottom:485.100000px;}
.y48e{bottom:486.360000px;}
.y1d0{bottom:486.739440px;}
.y102{bottom:488.340000px;}
.y14e{bottom:488.526480px;}
.y350{bottom:488.537280px;}
.y33d{bottom:488.625840px;}
.y26c{bottom:489.646800px;}
.y2db{bottom:490.176720px;}
.y23e{bottom:490.322880px;}
.y209{bottom:492.546960px;}
.ya2{bottom:493.314480px;}
.y185{bottom:494.225280px;}
.y3e3{bottom:495.180000px;}
.y48f{bottom:496.080000px;}
.y2fc{bottom:496.980000px;}
.y31c{bottom:497.075040px;}
.y38a{bottom:497.085840px;}
.y2a4{bottom:503.640000px;}
.y281{bottom:506.732400px;}
.y1e6{bottom:507.799440px;}
.y222{bottom:507.831120px;}
.y117{bottom:509.040000px;}
.y23d{bottom:509.447520px;}
.y3e1{bottom:511.200000px;}
.y7d{bottom:511.274160px;}
.y36a{bottom:513.393840px;}
.y39b{bottom:513.430560px;}
.yd9{bottom:515.160000px;}
.y1cf{bottom:515.172960px;}
.y439{bottom:515.520000px;}
.y14d{bottom:516.960000px;}
.y34f{bottom:517.152960px;}
.y33c{bottom:517.241520px;}
.y463{bottom:517.500000px;}
.y26b{bottom:518.080320px;}
.y56{bottom:518.580000px;}
.y2da{bottom:518.610240px;}
.y208{bottom:521.162640px;}
.ya1{bottom:521.930160px;}
.y184{bottom:523.023120px;}
.y43a{bottom:525.240000px;}
.y31b{bottom:525.508560px;}
.y389{bottom:525.519360px;}
.y48d{bottom:526.500000px;}
.y3df{bottom:527.040000px;}
.y464{bottom:527.220000px;}
.y23c{bottom:528.524640px;}
.y2fb{bottom:529.020000px;}
.y138{bottom:530.276400px;}
.y465{bottom:531.720000px;}
.y280{bottom:535.165920px;}
.y2a3{bottom:535.680000px;}
.y1e5{bottom:536.232960px;}
.y221{bottom:536.264640px;}
.y4aa{bottom:536.580000px;}
.y116{bottom:537.660000px;}
.y7c{bottom:539.707680px;}
.ya0{bottom:540.642960px;}
.yd8{bottom:541.080000px;}
.y369{bottom:541.827360px;}
.y39a{bottom:541.864080px;}
.y3dd{bottom:542.880000px;}
.y1ce{bottom:543.606480px;}
.y34e{bottom:545.586480px;}
.y33b{bottom:545.675040px;}
.y26a{bottom:546.513840px;}
.y2d9{bottom:547.043760px;}
.y48c{bottom:548.820000px;}
.y14c{bottom:549.000000px;}
.y207{bottom:549.596160px;}
.y101{bottom:549.720000px;}
.y23b{bottom:553.182480px;}
.y31a{bottom:553.942080px;}
.y388{bottom:553.952880px;}
.y438{bottom:555.660000px;}
.y137{bottom:558.892080px;}
.y183{bottom:561.723840px;}
.y461{bottom:562.320000px;}
.y27f{bottom:563.599440px;}
.y1e4{bottom:564.666480px;}
.y220{bottom:564.698160px;}
.y100{bottom:565.380000px;}
.yd7{bottom:567.000000px;}
.y3db{bottom:567.720000px;}
.y7b{bottom:568.141200px;}
.y2a2{bottom:569.520000px;}
.y368{bottom:570.260880px;}
.y53{bottom:570.420000px;}
.y14b{bottom:571.320000px;}
.y1cd{bottom:572.040000px;}
.y2fa{bottom:572.338800px;}
.y34d{bottom:574.020000px;}
.y33a{bottom:574.108560px;}
.y269{bottom:574.947360px;}
.y2d8{bottom:575.477280px;}
.y462{bottom:576.540000px;}
.y115{bottom:576.565920px;}
.y436{bottom:577.980000px;}
.y206{bottom:578.029680px;}
.y9f{bottom:579.708000px;}
.y319{bottom:582.375600px;}
.y387{bottom:582.386400px;}
.y399{bottom:582.552000px;}
.y3d9{bottom:583.560000px;}
.y2a1{bottom:585.918000px;}
.y136{bottom:587.325600px;}
.y182{bottom:590.157360px;}
.y27e{bottom:592.032960px;}
.yd6{bottom:592.920000px;}
.y1e3{bottom:593.100000px;}
.y21f{bottom:593.131680px;}
.y48a{bottom:593.640000px;}
.y51{bottom:596.160000px;}
.y7a{bottom:596.574720px;}
.y367{bottom:598.876560px;}
.y435{bottom:600.480000px;}
.y14a{bottom:600.540480px;}
.y2f9{bottom:600.606720px;}
.y1cc{bottom:600.660000px;}
.y339{bottom:602.542080px;}
.y48b{bottom:603.360000px;}
.y2d7{bottom:603.910800px;}
.y114{bottom:604.999440px;}
.y205{bottom:606.463200px;}
.y45e{bottom:606.960000px;}
.y9e{bottom:608.141520px;}
.y3d7{bottom:608.400000px;}
.y318{bottom:610.809120px;}
.y386{bottom:610.819920px;}
.yff{bottom:612.360000px;}
.y2d1{bottom:614.656500px;}
.y2a0{bottom:614.715840px;}
.y2c8{bottom:614.976000px;}
.y34c{bottom:615.600000px;}
.y268{bottom:615.635280px;}
.y4a9{bottom:615.960000px;}
.y460{bottom:617.040000px;}
.y181{bottom:618.590880px;}
.yd5{bottom:618.660000px;}
.y27d{bottom:620.466480px;}
.y21e{bottom:621.565200px;}
.y434{bottom:622.800000px;}
.y3d5{bottom:624.420000px;}
.y1e2{bottom:624.600000px;}
.y135{bottom:626.208480px;}
.y366{bottom:627.310080px;}
.y149{bottom:629.156160px;}
.y1cb{bottom:629.208000px;}
.y2f8{bottom:629.222400px;}
.y338{bottom:630.975600px;}
.y2d6{bottom:632.526480px;}
.y113{bottom:633.432960px;}
.y487{bottom:633.780000px;}
.y204{bottom:634.896720px;}
.y79{bottom:635.639760px;}
.y37{bottom:635.940000px;}
.y9d{bottom:636.575040px;}
.y4a7{bottom:638.280000px;}
.y317{bottom:639.242640px;}
.y385{bottom:639.253440px;}
.y489{bottom:643.500000px;}
.y267{bottom:643.903200px;}
.yd4{bottom:644.580000px;}
.y433{bottom:645.120000px;}
.y180{bottom:647.024400px;}
.y4a8{bottom:648.000000px;}
.y27c{bottom:648.900000px;}
.y3d3{bottom:649.260000px;}
.y21d{bottom:649.998720px;}
.y45d{bottom:651.600000px;}
.y365{bottom:655.743600px;}
.y27{bottom:657.540000px;}
.y148{bottom:657.589680px;}
.y1ca{bottom:657.641520px;}
.y1e1{bottom:657.655920px;}
.y34b{bottom:657.821520px;}
.y337{bottom:659.409120px;}
.yfe{bottom:659.520000px;}
.y488{bottom:661.320000px;}
.y112{bottom:661.866480px;}
.y203{bottom:663.330240px;}
.y78{bottom:664.073280px;}
.y9c{bottom:665.008560px;}
.y3d1{bottom:665.100000px;}
.y2d5{bottom:665.124480px;}
.y134{bottom:665.273520px;}
.y430{bottom:667.440000px;}
.y316{bottom:667.676160px;}
.y384{bottom:667.686960px;}
.yd3{bottom:670.500000px;}
.y266{bottom:672.336720px;}
.y45c{bottom:673.920000px;}
.y17f{bottom:675.457920px;}
.y432{bottom:677.160000px;}
.y4a5{bottom:678.420000px;}
.y21c{bottom:678.432240px;}
.y27b{bottom:680.940000px;}
.y364{bottom:684.177120px;}
.y3ee{bottom:685.980000px;}
.y1c9{bottom:686.075040px;}
.y1e0{bottom:686.089440px;}
.y147{bottom:686.205360px;}
.y336{bottom:687.842640px;}
.y4a6{bottom:688.320000px;}
.y3cf{bottom:689.940000px;}
.y111{bottom:690.300000px;}
.y202{bottom:691.763760px;}
.y485{bottom:691.920000px;}
.y77{bottom:692.506800px;}
.y9b{bottom:693.442080px;}
.y2f5{bottom:693.880500px;}
.y2d4{bottom:693.922320px;}
.y2e7{bottom:694.201500px;}
.y36{bottom:696.240000px;}
.y315{bottom:696.291840px;}
.y383{bottom:696.302640px;}
.yd2{bottom:696.420000px;}
.y265{bottom:700.952400px;}
.y486{bottom:701.640000px;}
.y3ec{bottom:701.820000px;}
.y17e{bottom:704.073600px;}
.y133{bottom:704.156400px;}
.y3cd{bottom:705.780000px;}
.y45b{bottom:706.140000px;}
.yfd{bottom:706.680000px;}
.y21b{bottom:707.047920px;}
.y42d{bottom:707.760000px;}
.y1ad{bottom:710.495280px;}
.y363{bottom:712.610640px;}
.y19e{bottom:714.422880px;}
.y146{bottom:714.473280px;}
.y1c8{bottom:714.508560px;}
.y1df{bottom:714.522960px;}
.y27a{bottom:714.963420px;}
.y335{bottom:716.276160px;}
.y42f{bottom:717.480000px;}
.y3ea{bottom:717.660000px;}
.y4a4{bottom:718.740000px;}
.y110{bottom:718.920000px;}
.y201{bottom:720.197280px;}
.y76{bottom:720.940320px;}
.y9a{bottom:721.875600px;}
.y34{bottom:722.160000px;}
.y45a{bottom:723.960000px;}
.y314{bottom:724.725360px;}
.y382{bottom:724.736160px;}
.y21a{bottom:726.125040px;}
.y264{bottom:729.385920px;}
.yd1{bottom:731.338200px;}
.y483{bottom:732.060000px;}
.y17d{bottom:732.689280px;}
.y132{bottom:732.772080px;}
.yf2{bottom:732.792960px;}
.y19d{bottom:733.500000px;}
.y3ca{bottom:737.640000px;}
.y1ac{bottom:738.763200px;}
.y3e7{bottom:740.880000px;}
.y4a3{bottom:741.060000px;}
.y484{bottom:741.780000px;}
.y145{bottom:742.906800px;}
.y1c7{bottom:742.942080px;}
.y1de{bottom:742.956480px;}
.y279{bottom:743.221440px;}
.y334{bottom:744.709680px;}
.y219{bottom:745.043040px;}
.y42a{bottom:747.900000px;}
.y200{bottom:748.630800px;}
.y75{bottom:749.373840px;}
.y99{bottom:750.309120px;}
.y313{bottom:753.158880px;}
.y381{bottom:753.169680px;}
.y362{bottom:753.298560px;}
.yfc{bottom:753.660000px;}
.y459{bottom:754.380000px;}
.yd0{bottom:757.259100px;}
.y42c{bottom:757.620000px;}
.y263{bottom:757.819440px;}
.y10f{bottom:757.837440px;}
.y3c7{bottom:760.500000px;}
.y3e5{bottom:760.680000px;}
.y131{bottom:761.040000px;}
.y4a2{bottom:763.380000px;}
.y1ab{bottom:767.378880px;}
.y257{bottom:768.435120px;}
.yf1{bottom:769.506480px;}
.y218{bottom:769.883040px;}
.y144{bottom:771.340320px;}
.y1c6{bottom:771.375600px;}
.y17c{bottom:771.390000px;}
.y2c3{bottom:771.906000px;}
.y278{bottom:772.019280px;}
.y2bc{bottom:772.065000px;}
.y481{bottom:772.200000px;}
.y29d{bottom:773.221500px;}
.y333{bottom:773.325360px;}
.y28d{bottom:773.376000px;}
.y19c{bottom:774.540000px;}
.y42b{bottom:775.440000px;}
.y457{bottom:776.700000px;}
.y1ff{bottom:777.246480px;}
.y98{bottom:778.924800px;}
.yb1{bottom:779.106960px;}
.y11{bottom:779.580000px;}
.yc3{bottom:779.940000px;}
.y361{bottom:781.566480px;}
.y312{bottom:781.592400px;}
.y380{bottom:781.603200px;}
.y482{bottom:782.100000px;}
.ycf{bottom:783.180000px;}
.y49f{bottom:785.700000px;}
.y262{bottom:786.252960px;}
.y10e{bottom:786.453120px;}
.y458{bottom:786.600000px;}
.y74{bottom:788.438880px;}
.y3c3{bottom:790.380000px;}
.y130{bottom:793.080000px;}
.y4a1{bottom:795.600000px;}
.y1aa{bottom:795.812400px;}
.y30{bottom:799.740000px;}
.y143{bottom:799.773840px;}
.y1c5{bottom:799.809120px;}
.y17b{bottom:799.823520px;}
.yfb{bottom:800.820000px;}
.y256{bottom:801.008640px;}
.y332{bottom:801.758880px;}
.y1fe{bottom:805.705920px;}
.y426{bottom:805.860000px;}
.yf0{bottom:806.220000px;}
.y97{bottom:807.358320px;}
.y360{bottom:810.000000px;}
.y311{bottom:810.025920px;}
.y37f{bottom:810.036720px;}
.y3b3{bottom:810.180000px;}
.yc2{bottom:810.332640px;}
.ybf{bottom:810.349200px;}
.y23a{bottom:811.849680px;}
.y47e{bottom:812.520000px;}
.y4a0{bottom:813.420000px;}
.y19b{bottom:814.524480px;}
.y261{bottom:814.686480px;}
.y10d{bottom:814.721040px;}
.y429{bottom:815.760000px;}
.y73{bottom:816.872400px;}
.y455{bottom:817.020000px;}
.y12f{bottom:817.791120px;}
.yb0{bottom:817.807680px;}
.yce{bottom:817.920000px;}
.y10{bottom:818.451360px;}
.y255{bottom:821.344320px;}
.y480{bottom:822.240000px;}
.y47f{bottom:822.600000px;}
.y1a9{bottom:824.245920px;}
.y456{bottom:826.740000px;}
.y1c4{bottom:828.242640px;}
.y17a{bottom:828.257040px;}
.y142{bottom:828.389520px;}
.y331{bottom:830.192400px;}
.y428{bottom:833.580000px;}
.y1fd{bottom:834.139440px;}
.y3c1{bottom:835.920000px;}
.yef{bottom:836.640720px;}
.y310{bottom:838.459440px;}
.y37e{bottom:838.470240px;}
.yc1{bottom:839.859120px;}
.ybe{bottom:839.875680px;}
.y239{bottom:840.283200px;}
.yf{bottom:840.593520px;}
.y254{bottom:841.862160px;}
.y35f{bottom:842.040000px;}
.y19a{bottom:842.958000px;}
.y260{bottom:843.120000px;}
.y10c{bottom:843.154560px;}
.ycd{bottom:843.660000px;}
.y49d{bottom:843.840000px;}
.y72{bottom:845.305920px;}
.y96{bottom:846.241200px;}
.yfa{bottom:847.980000px;}
.y1a8{bottom:852.679440px;}
.y49e{bottom:853.560000px;}
.y141{bottom:856.657440px;}
.y12e{bottom:856.674000px;}
.y1c3{bottom:856.676160px;}
.y179{bottom:856.690560px;}
.y3aa{bottom:856.872720px;}
.y453{bottom:857.160000px;}
.y330{bottom:858.625920px;}
.y253{bottom:862.380000px;}
.y1fc{bottom:862.572960px;}
.ye{bottom:862.735680px;}
.y425{bottom:864.000000px;}
.yee{bottom:866.879280px;}
.y454{bottom:866.880000px;}
.y30f{bottom:866.892960px;}
.y37d{bottom:866.903760px;}
.y238{bottom:868.898880px;}
.yc0{bottom:869.203440px;}
.ybd{bottom:869.220000px;}
.ycc{bottom:869.580000px;}
.y199{bottom:871.573680px;}
.y10b{bottom:871.588080px;}
.y71{bottom:873.739440px;}
.y95{bottom:874.674720px;}
.y25f{bottom:875.160000px;}
.y3be{bottom:875.700000px;}
.y2c{bottom:877.320000px;}
.y47d{bottom:879.480000px;}
.y1a7{bottom:881.112960px;}
.y252{bottom:882.917280px;}
.y49b{bottom:883.980000px;}
.yd{bottom:885.052800px;}
.y140{bottom:885.273120px;}
.y12d{bottom:885.289680px;}
.y1c2{bottom:885.291840px;}
.y178{bottom:885.306240px;}
.y35e{bottom:885.471840px;}
.y424{bottom:886.320000px;}
.y32f{bottom:887.059440px;}
.y1fb{bottom:891.006480px;}
.y49c{bottom:893.700000px;}
.yf9{bottom:894.960000px;}
.y30e{bottom:895.326480px;}
.y37c{bottom:895.337280px;}
.ycb{bottom:895.500000px;}
.yed{bottom:897.117840px;}
.y451{bottom:897.300000px;}
.y237{bottom:897.332400px;}
.y10a{bottom:900.021600px;}
.y47c{bottom:901.800000px;}
.y70{bottom:902.172960px;}
.y94{bottom:903.108240px;}
.y2a{bottom:903.240000px;}
.y251{bottom:903.252960px;}
.yc{bottom:907.020000px;}
.y452{bottom:907.200000px;}
.ybc{bottom:908.447040px;}
.y422{bottom:908.640000px;}
.y1a6{bottom:909.546480px;}
.y198{bottom:911.532960px;}
.y12c{bottom:913.723200px;}
.y1c1{bottom:913.725360px;}
.y177{bottom:913.739760px;}
.y13f{bottom:913.888800px;}
.y3bb{bottom:915.300000px;}
.y32e{bottom:915.492960px;}
.y25e{bottom:918.537840px;}
.y1fa{bottom:919.440000px;}
.y30d{bottom:923.760000px;}
.y250{bottom:923.770800px;}
.y47b{bottom:924.300000px;}
.y236{bottom:925.765920px;}
.yba{bottom:926.464320px;}
.yec{bottom:927.174240px;}
.y109{bottom:928.455120px;}
.y2b8{bottom:928.995000px;}
.y2b1{bottom:929.155500px;}
.yca{bottom:930.420000px;}
.y6f{bottom:930.788640px;}
.y421{bottom:931.140000px;}
.y93{bottom:931.541760px;}
.ybb{bottom:937.973520px;}
.y1a5{bottom:937.980000px;}
.y197{bottom:939.966480px;}
.yf8{bottom:942.120000px;}
.y12b{bottom:942.156720px;}
.y1c0{bottom:942.158880px;}
.y176{bottom:942.173280px;}
.y20{bottom:942.840000px;}
.y32d{bottom:943.926480px;}
.yb{bottom:945.874800px;}
.y479{bottom:946.620000px;}
.y25d{bottom:946.805760px;}
.yb9{bottom:946.982160px;}
.y6e{bottom:949.683600px;}
.y1f9{bottom:950.940000px;}
.y450{bottom:951.840000px;}
.y37b{bottom:952.386480px;}
.y41f{bottom:953.460000px;}
.y235{bottom:954.199440px;}
.y3b8{bottom:955.080000px;}
.y30c{bottom:955.800000px;}
.y47a{bottom:956.340000px;}
.y24f{bottom:956.344320px;}
.y108{bottom:957.070800px;}
.yeb{bottom:957.412800px;}
.y92{bottom:960.157440px;}
.yc9{bottom:965.340000px;}
.yb8{bottom:967.500000px;}
.y196{bottom:968.400000px;}
.y1e{bottom:969.300000px;}
.y1a4{bottom:970.020000px;}
.y12a{bottom:970.590240px;}
.y1bf{bottom:970.592400px;}
.y175{bottom:970.606800px;}
.y32c{bottom:972.360000px;}
.y3b6{bottom:974.880000px;}
.y25c{bottom:975.239280px;}
.y1c{bottom:975.780000px;}
.y24e{bottom:976.680000px;}
.y37a{bottom:980.820000px;}
.ya{bottom:982.247400px;}
.y44d{bottom:982.260000px;}
.y234{bottom:982.632960px;}
.y107{bottom:985.504320px;}
.y477{bottom:986.760000px;}
.yea{bottom:987.651360px;}
.y6d{bottom:988.566480px;}
.y91{bottom:988.590960px;}
.yf6{bottom:989.280000px;}
.y44f{bottom:991.980000px;}
.y41e{bottom:992.520000px;}
.y1f8{bottom:992.889360px;}
.y1a3{bottom:994.687920px;}
.y478{bottom:996.480000px;}
.y1a{bottom:997.200000px;}
.y129{bottom:999.023760px;}
.y1be{bottom:999.025920px;}
.y174{bottom:999.040320px;}
.y30b{bottom:999.205920px;}
.yc8{bottom:1000.260000px;}
.y25b{bottom:1003.672800px;}
.yb6{bottom:1006.729200px;}
.y3ae{bottom:1008.540000px;}
.y195{bottom:1008.546480px;}
.y24d{bottom:1008.720000px;}
.y49a{bottom:1009.080000px;}
.y233{bottom:1011.066480px;}
.y379{bottom:1012.680000px;}
.y1a2{bottom:1013.582880px;}
.y32b{bottom:1013.940000px;}
.y106{bottom:1014.120000px;}
.y6c{bottom:1017.000000px;}
.y90{bottom:1017.024480px;}
.ye9{bottom:1017.889920px;}
.y19{bottom:1018.080000px;}
.y9{bottom:1018.620000px;}
.y3b2{bottom:1018.980000px;}
.y1f7{bottom:1021.157280px;}
.y41d{bottom:1023.119460px;}
.y44b{bottom:1027.080000px;}
.y128{bottom:1027.457280px;}
.y1bd{bottom:1027.459440px;}
.y173{bottom:1027.473840px;}
.y13e{bottom:1027.639440px;}
.y499{bottom:1031.580000px;}
.y25a{bottom:1032.106320px;}
.y1a1{bottom:1032.660000px;}
.yc7{bottom:1035.180000px;}
.yb5{bottom:1036.073520px;}
.yf5{bottom:1036.260000px;}
.y44c{bottom:1036.800000px;}
.y194{bottom:1036.980000px;}
.y18{bottom:1038.600000px;}
.y232{bottom:1039.500000px;}
.y41c{bottom:1041.660000px;}
.y24c{bottom:1044.000720px;}
.y6b{bottom:1045.433520px;}
.y105{bottom:1045.980000px;}
.y2f3{bottom:1047.298500px;}
.ye8{bottom:1048.128480px;}
.y475{bottom:1049.400000px;}
.y1f6{bottom:1049.772960px;}
.y8{bottom:1052.097840px;}
.y497{bottom:1053.900000px;}
.y1bc{bottom:1055.892960px;}
.y8f{bottom:1055.907360px;}
.y127{bottom:1056.072960px;}
.y476{bottom:1059.120000px;}
.y41b{bottom:1060.379460px;}
.y498{bottom:1063.620000px;}
.y1a0{bottom:1064.709360px;}
.yb7{bottom:1065.583440px;}
.yb4{bottom:1065.600000px;}
.y449{bottom:1067.220000px;}
.yc6{bottom:1069.920000px;}
.y14{bottom:1070.280000px;}
.y231{bottom:1071.000000px;}
.y3ab{bottom:1072.620000px;}
.y259{bottom:1072.794240px;}
.y7{bottom:1074.065040px;}
.y44a{bottom:1076.940000px;}
.y193{bottom:1077.126480px;}
.y1f5{bottom:1078.206480px;}
.ye7{bottom:1078.367040px;}
.y41a{bottom:1078.920000px;}
.y6a{bottom:1079.100000px;}
.yf3{bottom:1083.420000px;}
.y1bb{bottom:1084.326480px;}
.y8e{bottom:1084.340880px;}
.y24b{bottom:1084.506480px;}
.y17{bottom:1085.400000px;}
.y474{bottom:1089.540000px;}
.y495{bottom:1094.040000px;}
.y6{bottom:1095.837840px;}
.y104{bottom:1096.020000px;}
.y19f{bottom:1100.890440px;}
.y3ad{bottom:1101.240000px;}
.y69{bottom:1101.420000px;}
.y496{bottom:1103.760000px;}
.yc5{bottom:1104.840000px;}
.y258{bottom:1105.020000px;}
.y192{bottom:1105.560000px;}
.y1f4{bottom:1106.640000px;}
.yb3{bottom:1110.240000px;}
.y448{bottom:1111.860000px;}
.y1ba{bottom:1112.760000px;}
.y8d{bottom:1112.774400px;}
.y217{bottom:1112.956560px;}
.ye6{bottom:1114.914960px;}
.y5{bottom:1117.980000px;}
.y29b{bottom:1120.677000px;}
.y12{bottom:1126.800000px;}
.y447{bottom:1134.180000px;}
.yb2{bottom:1137.240000px;}
.yc4{bottom:1137.420000px;}
.y191{bottom:1138.500000px;}
.y1f3{bottom:1138.680000px;}
.y8c{bottom:1141.390080px;}
.y1b9{bottom:1141.560000px;}
.y126{bottom:1141.572240px;}
.y2{bottom:1227.240000px;}
.y1{bottom:1247.400000px;}
.he{height:6.480000px;}
.h51{height:13.104492px;}
.h53{height:15.477539px;}
.h4d{height:19.798500px;}
.h26{height:20.430352px;}
.hc{height:21.420000px;}
.h12{height:21.600000px;}
.h15{height:21.780000px;}
.h56{height:22.320000px;}
.h57{height:22.321500px;}
.h58{height:22.498500px;}
.h5d{height:22.500000px;}
.h46{height:24.901500px;}
.h37{height:25.026000px;}
.hf{height:26.460000px;}
.h2f{height:26.938828px;}
.h7{height:29.880000px;}
.h25{height:30.955078px;}
.h40{height:32.488810px;}
.h14{height:33.300000px;}
.h4f{height:35.120039px;}
.h5b{height:40.140000px;}
.h5e{height:40.141500px;}
.h5f{height:40.318500px;}
.h5c{height:40.320000px;}
.h30{height:41.405977px;}
.h33{height:41.479805px;}
.h52{height:42.186445px;}
.h50{height:43.506914px;}
.h2b{height:44.149219px;}
.h62{height:44.638500px;}
.h60{height:44.640000px;}
.h61{height:44.820000px;}
.h1d{height:45.022500px;}
.h3{height:45.895781px;}
.h18{height:46.432617px;}
.h21{height:46.980000px;}
.h20{height:47.160000px;}
.h1f{height:47.161500px;}
.h16{height:47.223633px;}
.h2c{height:47.891250px;}
.h2a{height:48.076282px;}
.h22{height:48.224531px;}
.h35{height:48.583995px;}
.h29{height:49.567499px;}
.hd{height:51.385430px;}
.h55{height:51.387590px;}
.h10{height:52.260820px;}
.h36{height:52.921317px;}
.h5{height:54.432000px;}
.h45{height:54.903474px;}
.h49{height:55.044320px;}
.h3b{height:55.076307px;}
.h3c{height:55.076907px;}
.h3f{height:55.178975px;}
.h4{height:55.598400px;}
.h47{height:55.838798px;}
.h28{height:55.902812px;}
.h3e{height:56.014574px;}
.h9{height:56.520000px;}
.h1a{height:56.957344px;}
.h1e{height:56.964544px;}
.h1b{height:57.927656px;}
.h5a{height:57.960000px;}
.h63{height:58.138500px;}
.h59{height:58.140000px;}
.h2d{height:59.564211px;}
.h24{height:59.679411px;}
.h31{height:60.089529px;}
.h43{height:60.181689px;}
.h2e{height:60.187449px;}
.h39{height:60.207609px;}
.h32{height:60.273849px;}
.ha{height:62.964844px;}
.h4b{height:64.078500px;}
.h23{height:68.002031px;}
.hb{height:73.080000px;}
.h19{height:73.668867px;}
.h38{height:80.561943px;}
.h8{height:82.340508px;}
.h1c{height:83.743242px;}
.h4a{height:84.060000px;}
.h6{height:85.971600px;}
.h17{height:137.700000px;}
.h41{height:158.050500px;}
.h3a{height:158.209500px;}
.h3d{height:158.211000px;}
.h42{height:158.370000px;}
.h4c{height:198.361500px;}
.h13{height:255.780000px;}
.h11{height:285.300000px;}
.h54{height:312.841500px;}
.h27{height:324.706500px;}
.h4e{height:327.240000px;}
.h34{height:382.921500px;}
.h44{height:393.006000px;}
.h48{height:393.325500px;}
.h2{height:1262.866500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:26.566500px;}
.w13{width:68.220000px;}
.w4{width:150.300000px;}
.wd{width:161.799000px;}
.w8{width:233.413500px;}
.w11{width:342.000000px;}
.w12{width:342.180000px;}
.w5{width:530.100000px;}
.w14{width:618.120000px;}
.w6{width:630.906000px;}
.w3{width:669.958500px;}
.wb{width:671.881500px;}
.wa{width:671.883000px;}
.w7{width:675.930000px;}
.wc{width:676.159500px;}
.w9{width:676.237500px;}
.we{width:676.318500px;}
.w10{width:684.180000px;}
.w2{width:892.965000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:2.520000px;}
.x7{left:8.100000px;}
.x66{left:19.759650px;}
.x6b{left:24.853350px;}
.x4b{left:26.323500px;}
.x73{left:29.654550px;}
.x4c{left:31.022850px;}
.x6a{left:33.777450px;}
.x6e{left:35.114250px;}
.x39{left:39.407843px;}
.x3a{left:43.744200px;}
.x38{left:52.392150px;}
.x3c{left:56.478088px;}
.x6c{left:68.718600px;}
.x6f{left:70.007700px;}
.x72{left:71.082450px;}
.x3b{left:74.361600px;}
.x4d{left:78.602700px;}
.x4e{left:97.906950px;}
.x64{left:100.053150px;}
.x13{left:106.200000px;}
.x45{left:107.642160px;}
.x69{left:110.421000px;}
.x1{left:111.600000px;}
.x3{left:114.300000px;}
.x5{left:116.820000px;}
.xa{left:121.680000px;}
.x1a{left:124.200000px;}
.x48{left:126.353520px;}
.x20{left:127.440000px;}
.x16{left:131.406480px;}
.x21{left:133.225920px;}
.x4f{left:136.515600px;}
.xd{left:138.420000px;}
.x83{left:139.680000px;}
.x84{left:141.120000px;}
.x68{left:145.084320px;}
.x1b{left:146.880000px;}
.x1f{left:148.680000px;}
.x50{left:155.819850px;}
.x89{left:157.140000px;}
.x75{left:159.300000px;}
.x1c{left:160.380000px;}
.x43{left:161.640000px;}
.x2e{left:162.747150px;}
.x81{left:166.860000px;}
.x51{left:175.124250px;}
.x7a{left:179.460000px;}
.x8a{left:182.520000px;}
.x34{left:190.944223px;}
.x1e{left:193.500000px;}
.x2a{left:197.598733px;}
.x26{left:201.060000px;}
.x33{left:208.825500px;}
.x82{left:210.060000px;}
.x52{left:213.732750px;}
.x29{left:217.512450px;}
.x10{left:220.860000px;}
.x79{left:223.020000px;}
.x7e{left:229.140000px;}
.x53{left:233.036850px;}
.x4a{left:234.541440px;}
.x78{left:236.880000px;}
.x77{left:237.960000px;}
.x7c{left:241.560000px;}
.x74{left:245.322000px;}
.x76{left:249.480000px;}
.x2{left:251.100000px;}
.x1d{left:256.500000px;}
.x7d{left:264.960000px;}
.x23{left:267.146640px;}
.x80{left:270.900000px;}
.x28{left:272.481629px;}
.x11{left:276.840000px;}
.x9{left:283.140000px;}
.x27{left:287.061600px;}
.x54{left:290.949750px;}
.x3e{left:300.060000px;}
.x55{left:310.254150px;}
.x4{left:317.520000px;}
.x7b{left:318.600000px;}
.x7f{left:324.360000px;}
.x56{left:329.558400px;}
.x57{left:348.862650px;}
.x3f{left:354.060000px;}
.x3d{left:359.350500px;}
.xc{left:364.680000px;}
.x58{left:368.166900px;}
.x31{left:376.877537px;}
.x65{left:378.864000px;}
.x30{left:384.013950px;}
.x8{left:388.260000px;}
.x70{left:397.960800px;}
.x2d{left:400.933500px;}
.x59{left:406.775550px;}
.x2b{left:410.399100px;}
.x2c{left:417.106206px;}
.x5a{left:426.079800px;}
.x5b{left:445.384200px;}
.x46{left:446.408640px;}
.x85{left:448.200000px;}
.xb{left:473.940000px;}
.x6d{left:477.173100px;}
.x5c{left:503.296950px;}
.xe{left:507.960000px;}
.x35{left:512.653200px;}
.x2f{left:514.343250px;}
.x37{left:515.994499px;}
.x32{left:521.726400px;}
.x36{left:526.968150px;}
.xf{left:534.420000px;}
.x71{left:540.904050px;}
.x5d{left:541.905600px;}
.x5e{left:561.209700px;}
.x12{left:565.200000px;}
.x87{left:567.000000px;}
.x88{left:574.200000px;}
.x5f{left:580.514250px;}
.x60{left:599.818500px;}
.x61{left:619.122600px;}
.x62{left:638.427000px;}
.x15{left:642.961440px;}
.x63{left:657.731400px;}
.x40{left:682.380000px;}
.x86{left:684.900000px;}
.x41{left:689.760000px;}
.x19{left:694.264320px;}
.x17{left:728.295120px;}
.x47{left:742.137120px;}
.x44{left:744.490080px;}
.x42{left:755.136720px;}
.x25{left:761.777280px;}
.x24{left:769.860000px;}
.x14{left:778.320000px;}
.x67{left:782.644320px;}
.x49{left:784.979280px;}
.x22{left:786.633840px;}
.x18{left:816.311520px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v2{vertical-align:-16.000000pt;}
.v4{vertical-align:-3.417067pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.130240pt;}
.ls41{letter-spacing:-1.859200pt;}
.ls44{letter-spacing:-1.543680pt;}
.ls12{letter-spacing:-1.408000pt;}
.lsd{letter-spacing:-1.354240pt;}
.ls4e{letter-spacing:-1.059840pt;}
.ls1c{letter-spacing:-0.973440pt;}
.lsc5{letter-spacing:-0.943360pt;}
.ls1e{letter-spacing:-0.942080pt;}
.ls45{letter-spacing:-0.900480pt;}
.lsa0{letter-spacing:-0.898560pt;}
.ls21{letter-spacing:-0.883200pt;}
.lsc6{letter-spacing:-0.814720pt;}
.ls28{letter-spacing:-0.765440pt;}
.lsf{letter-spacing:-0.704000pt;}
.lsce{letter-spacing:-0.672000pt;}
.ls50{letter-spacing:-0.647680pt;}
.ls43{letter-spacing:-0.600320pt;}
.ls4f{letter-spacing:-0.588800pt;}
.ls4b{letter-spacing:-0.529920pt;}
.lscf{letter-spacing:-0.528000pt;}
.lscc{letter-spacing:-0.432000pt;}
.ls42{letter-spacing:-0.428800pt;}
.ls4d{letter-spacing:-0.412160pt;}
.ls85{letter-spacing:-0.384000pt;}
.ls1d{letter-spacing:-0.353280pt;}
.lsa7{letter-spacing:-0.341613pt;}
.lsaf{letter-spacing:-0.340541pt;}
.ls6{letter-spacing:-0.320640pt;}
.ls3c{letter-spacing:-0.318720pt;}
.ls2c{letter-spacing:-0.299520pt;}
.ls20{letter-spacing:-0.294400pt;}
.lsc2{letter-spacing:-0.265600pt;}
.ls3e{letter-spacing:-0.257280pt;}
.ls49{letter-spacing:-0.235520pt;}
.lsab{letter-spacing:-0.231161pt;}
.ls5{letter-spacing:-0.213760pt;}
.ls3b{letter-spacing:-0.212480pt;}
.ls7{letter-spacing:-0.207360pt;}
.lsd0{letter-spacing:-0.192000pt;}
.ls81{letter-spacing:-0.176640pt;}
.lsc4{letter-spacing:-0.171520pt;}
.lsa9{letter-spacing:-0.170806pt;}
.ls6e{letter-spacing:-0.170466pt;}
.lsae{letter-spacing:-0.170270pt;}
.lsa3{letter-spacing:-0.163773pt;}
.ls3{letter-spacing:-0.138240pt;}
.lsc{letter-spacing:-0.117760pt;}
.lsaa{letter-spacing:-0.113871pt;}
.lsb0{letter-spacing:-0.113514pt;}
.ls4{letter-spacing:-0.106880pt;}
.ls13{letter-spacing:-0.106240pt;}
.ls70{letter-spacing:-0.100765pt;}
.lsa2{letter-spacing:-0.100448pt;}
.ls14{letter-spacing:-0.096000pt;}
.ls5c{letter-spacing:-0.074880pt;}
.ls92{letter-spacing:-0.069120pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls4a{letter-spacing:-0.058880pt;}
.lsa8{letter-spacing:-0.056935pt;}
.ls3a{letter-spacing:-0.053120pt;}
.lsc3{letter-spacing:-0.042880pt;}
.ls2{letter-spacing:0.000000pt;}
.ls46{letter-spacing:0.011776pt;}
.lsb{letter-spacing:0.016000pt;}
.ls48{letter-spacing:0.017664pt;}
.ls5e{letter-spacing:0.029440pt;}
.ls3f{letter-spacing:0.042880pt;}
.ls31{letter-spacing:0.047360pt;}
.ls30{letter-spacing:0.053120pt;}
.ls80{letter-spacing:0.058880pt;}
.ls52{letter-spacing:0.069120pt;}
.lsc1{letter-spacing:0.085760pt;}
.ls91{letter-spacing:0.091200pt;}
.ls66{letter-spacing:0.096000pt;}
.ls71{letter-spacing:0.097733pt;}
.ls6d{letter-spacing:0.100765pt;}
.ls96{letter-spacing:0.106240pt;}
.ls47{letter-spacing:0.117760pt;}
.ls11{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.138240pt;}
.lscb{letter-spacing:0.144000pt;}
.ls94{letter-spacing:0.159360pt;}
.ls6f{letter-spacing:0.170466pt;}
.ls2f{letter-spacing:0.183680pt;}
.ls15{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.212480pt;}
.ls3d{letter-spacing:0.214400pt;}
.lsa1{letter-spacing:0.218831pt;}
.lsad{letter-spacing:0.227027pt;}
.lsb1{letter-spacing:0.227610pt;}
.lsa5{letter-spacing:0.227742pt;}
.lsa6{letter-spacing:0.228166pt;}
.lsc0{letter-spacing:0.231040pt;}
.ls4c{letter-spacing:0.232960pt;}
.ls18{letter-spacing:0.235520pt;}
.ls37{letter-spacing:0.239360pt;}
.ls16{letter-spacing:0.240000pt;}
.ls93{letter-spacing:0.241408pt;}
.lsa4{letter-spacing:0.245659pt;}
.lse{letter-spacing:0.256000pt;}
.ls34{letter-spacing:0.257280pt;}
.ls95{letter-spacing:0.265600pt;}
.ls65{letter-spacing:0.270848pt;}
.ls8{letter-spacing:0.271360pt;}
.ls33{letter-spacing:0.272640pt;}
.ls1f{letter-spacing:0.294400pt;}
.ls25{letter-spacing:0.317952pt;}
.ls36{letter-spacing:0.320000pt;}
.lsb9{letter-spacing:0.329728pt;}
.ls17{letter-spacing:0.336000pt;}
.ls1{letter-spacing:0.345600pt;}
.lsa{letter-spacing:0.355904pt;}
.lsbc{letter-spacing:0.359168pt;}
.ls9a{letter-spacing:0.365056pt;}
.lsb7{letter-spacing:0.412160pt;}
.ls39{letter-spacing:0.423744pt;}
.lsc7{letter-spacing:0.430272pt;}
.lsb3{letter-spacing:0.447488pt;}
.lsc8{letter-spacing:0.451520pt;}
.ls7f{letter-spacing:0.471040pt;}
.ls97{letter-spacing:0.478080pt;}
.ls88{letter-spacing:0.535808pt;}
.lsbb{letter-spacing:0.559360pt;}
.lsb6{letter-spacing:0.582912pt;}
.ls8f{letter-spacing:0.647680pt;}
.lsb2{letter-spacing:0.694784pt;}
.lsb4{letter-spacing:0.712448pt;}
.ls8b{letter-spacing:0.753664pt;}
.lsbf{letter-spacing:0.800768pt;}
.ls40{letter-spacing:0.849920pt;}
.ls68{letter-spacing:0.883200pt;}
.ls35{letter-spacing:1.054720pt;}
.ls7c{letter-spacing:1.118720pt;}
.ls83{letter-spacing:1.530880pt;}
.ls73{letter-spacing:1.619200pt;}
.ls38{letter-spacing:1.694720pt;}
.ls27{letter-spacing:1.719296pt;}
.ls99{letter-spacing:2.178560pt;}
.ls7d{letter-spacing:2.296320pt;}
.ls19{letter-spacing:2.826240pt;}
.ls7e{letter-spacing:2.885120pt;}
.ls9b{letter-spacing:2.920448pt;}
.lsb8{letter-spacing:3.473920pt;}
.ls72{letter-spacing:3.709440pt;}
.ls6c{letter-spacing:4.121600pt;}
.ls23{letter-spacing:4.769280pt;}
.ls8e{letter-spacing:5.416960pt;}
.ls82{letter-spacing:5.511168pt;}
.ls84{letter-spacing:5.740800pt;}
.ls5b{letter-spacing:6.005760pt;}
.lsca{letter-spacing:6.031360pt;}
.ls7a{letter-spacing:6.306048pt;}
.ls22{letter-spacing:6.653440pt;}
.ls69{letter-spacing:6.800640pt;}
.ls87{letter-spacing:7.301120pt;}
.ls26{letter-spacing:7.401216pt;}
.lscd{letter-spacing:7.776000pt;}
.ls29{letter-spacing:7.948800pt;}
.ls62{letter-spacing:7.966464pt;}
.ls57{letter-spacing:8.007680pt;}
.ls9d{letter-spacing:8.596480pt;}
.ls76{letter-spacing:8.661248pt;}
.ls74{letter-spacing:8.696576pt;}
.ls75{letter-spacing:8.731904pt;}
.ls9c{letter-spacing:9.244160pt;}
.ls58{letter-spacing:9.891840pt;}
.ls78{letter-spacing:9.974272pt;}
.ls8c{letter-spacing:10.009600pt;}
.ls55{letter-spacing:10.539520pt;}
.ls2a{letter-spacing:10.822144pt;}
.ls53{letter-spacing:11.128320pt;}
.lsd1{letter-spacing:11.616000pt;}
.ls86{letter-spacing:11.776000pt;}
.ls77{letter-spacing:12.423680pt;}
.ls6a{letter-spacing:13.071360pt;}
.ls59{letter-spacing:13.719040pt;}
.ls5a{letter-spacing:14.366720pt;}
.ls60{letter-spacing:15.603200pt;}
.ls56{letter-spacing:16.250880pt;}
.ls67{letter-spacing:16.292096pt;}
.ls5f{letter-spacing:16.403968pt;}
.lsba{letter-spacing:16.562944pt;}
.ls6b{letter-spacing:20.725760pt;}
.ls24{letter-spacing:22.021120pt;}
.ls98{letter-spacing:23.316480pt;}
.ls9f{letter-spacing:23.816960pt;}
.lsbe{letter-spacing:23.958272pt;}
.ls61{letter-spacing:23.964160pt;}
.ls2b{letter-spacing:24.023040pt;}
.lsc9{letter-spacing:24.416000pt;}
.ls9e{letter-spacing:25.259520pt;}
.ls7b{letter-spacing:26.201600pt;}
.ls8d{letter-spacing:26.496000pt;}
.lsac{letter-spacing:27.143680pt;}
.lsb5{letter-spacing:27.791360pt;}
.lsbd{letter-spacing:29.086720pt;}
.ls64{letter-spacing:29.734400pt;}
.ls5d{letter-spacing:30.323200pt;}
.ls63{letter-spacing:30.970880pt;}
.ls54{letter-spacing:31.677440pt;}
.ls51{letter-spacing:32.273280pt;}
.ls79{letter-spacing:32.913920pt;}
.ls1b{letter-spacing:34.209280pt;}
.ls8a{letter-spacing:44.454400pt;}
.ls90{letter-spacing:45.690880pt;}
.ls1a{letter-spacing:55.288320pt;}
.ls2d{letter-spacing:55.951360pt;}
.ls89{letter-spacing:59.763200pt;}
.ls2e{letter-spacing:73.871360pt;}
.ls32{letter-spacing:84.111360pt;}
.wsbc{word-spacing:-58.880000pt;}
.wsf0{word-spacing:-23.010078pt;}
.ws8c{word-spacing:-20.741760pt;}
.ws2{word-spacing:-20.520960pt;}
.ws5e{word-spacing:-20.517120pt;}
.ws1{word-spacing:-20.414080pt;}
.ws3{word-spacing:-20.307200pt;}
.wse8{word-spacing:-19.918080pt;}
.ws2b{word-spacing:-19.843200pt;}
.ws8d{word-spacing:-19.284480pt;}
.wsd6{word-spacing:-19.146240pt;}
.wsf{word-spacing:-18.048000pt;}
.wse{word-spacing:-17.792000pt;}
.ws11{word-spacing:-17.728000pt;}
.wsc4{word-spacing:-17.408000pt;}
.wsbe{word-spacing:-16.839680pt;}
.wsbd{word-spacing:-16.663040pt;}
.wsa2{word-spacing:-16.604160pt;}
.wsbf{word-spacing:-16.427520pt;}
.ws10{word-spacing:-16.384000pt;}
.ws2d{word-spacing:-16.368640pt;}
.wsd{word-spacing:-16.250880pt;}
.wsc0{word-spacing:-16.192000pt;}
.ws87{word-spacing:-16.133120pt;}
.ws89{word-spacing:-16.074240pt;}
.wsc1{word-spacing:-16.015360pt;}
.wsff{word-spacing:-16.005418pt;}
.wsa4{word-spacing:-15.966945pt;}
.ws88{word-spacing:-15.956480pt;}
.wsf8{word-spacing:-15.828060pt;}
.ws8b{word-spacing:-15.779840pt;}
.ws103{word-spacing:-15.778390pt;}
.wsf6{word-spacing:-15.771124pt;}
.ws8e{word-spacing:-15.720960pt;}
.wsf9{word-spacing:-15.714189pt;}
.wsf7{word-spacing:-15.657253pt;}
.wsa3{word-spacing:-15.626013pt;}
.ws100{word-spacing:-15.608120pt;}
.ws4c{word-spacing:-15.603200pt;}
.wsf4{word-spacing:-15.486447pt;}
.wsb5{word-spacing:-15.485440pt;}
.ws101{word-spacing:-15.437850pt;}
.wsee{word-spacing:-15.427581pt;}
.ws2c{word-spacing:-15.426560pt;}
.ws8a{word-spacing:-15.308800pt;}
.wsc{word-spacing:-15.014400pt;}
.ws115{word-spacing:-14.979840pt;}
.ws60{word-spacing:-14.820480pt;}
.ws64{word-spacing:-14.767360pt;}
.ws62{word-spacing:-14.714240pt;}
.ws12{word-spacing:-14.661120pt;}
.ws61{word-spacing:-14.554880pt;}
.ws112{word-spacing:-14.501760pt;}
.ws63{word-spacing:-14.448640pt;}
.wsa6{word-spacing:-14.006307pt;}
.wsa5{word-spacing:-13.905542pt;}
.wsed{word-spacing:-13.861824pt;}
.wsa7{word-spacing:-13.682667pt;}
.ws14{word-spacing:-13.680000pt;}
.ws123{word-spacing:-13.584000pt;}
.ws81{word-spacing:-13.542400pt;}
.ws120{word-spacing:-13.536000pt;}
.ws121{word-spacing:-13.488000pt;}
.ws144{word-spacing:-13.440000pt;}
.ws122{word-spacing:-13.344000pt;}
.ws7f{word-spacing:-13.306880pt;}
.ws13{word-spacing:-13.248000pt;}
.ws135{word-spacing:-13.152000pt;}
.ws0{word-spacing:-13.132800pt;}
.ws80{word-spacing:-13.071360pt;}
.ws136{word-spacing:-12.912000pt;}
.ws141{word-spacing:-12.816000pt;}
.ws82{word-spacing:-12.776960pt;}
.wsde{word-spacing:-12.483200pt;}
.ws69{word-spacing:-12.135040pt;}
.ws116{word-spacing:-12.006400pt;}
.wsdd{word-spacing:-12.005120pt;}
.ws67{word-spacing:-11.963520pt;}
.ws66{word-spacing:-11.920640pt;}
.ws113{word-spacing:-11.749120pt;}
.ws65{word-spacing:-11.663360pt;}
.ws68{word-spacing:-11.491840pt;}
.ws6a{word-spacing:-11.320320pt;}
.ws114{word-spacing:-11.020160pt;}
.ws6b{word-spacing:-10.376960pt;}
.ws9b{word-spacing:-10.319360pt;}
.wsdc{word-spacing:-7.810560pt;}
.wsd4{word-spacing:-4.062720pt;}
.wsce{word-spacing:-3.415040pt;}
.wsab{word-spacing:-3.238400pt;}
.wsc2{word-spacing:-2.885120pt;}
.wsaa{word-spacing:-2.826240pt;}
.wsdf{word-spacing:-2.649600pt;}
.ws46{word-spacing:-2.178560pt;}
.ws133{word-spacing:-2.160000pt;}
.ws126{word-spacing:-2.016000pt;}
.ws134{word-spacing:-1.824000pt;}
.ws33{word-spacing:-1.530880pt;}
.ws12a{word-spacing:-1.344000pt;}
.wsfc{word-spacing:-1.254915pt;}
.ws57{word-spacing:-0.883200pt;}
.ws11b{word-spacing:-0.857600pt;}
.ws1a{word-spacing:-0.768000pt;}
.ws127{word-spacing:-0.720000pt;}
.wsc3{word-spacing:-0.647680pt;}
.ws79{word-spacing:-0.600320pt;}
.ws119{word-spacing:-0.584320pt;}
.ws142{word-spacing:-0.528000pt;}
.wse5{word-spacing:-0.448000pt;}
.ws7c{word-spacing:-0.428800pt;}
.ws8{word-spacing:-0.427520pt;}
.ws37{word-spacing:-0.294400pt;}
.ws118{word-spacing:-0.265600pt;}
.ws16{word-spacing:-0.235520pt;}
.wsfb{word-spacing:-0.227742pt;}
.ws104{word-spacing:-0.227027pt;}
.ws6e{word-spacing:-0.214400pt;}
.wsdb{word-spacing:-0.192000pt;}
.wse4{word-spacing:-0.159360pt;}
.ws2a{word-spacing:-0.144000pt;}
.wsb{word-spacing:-0.138240pt;}
.ws6f{word-spacing:-0.128640pt;}
.ws17{word-spacing:-0.128000pt;}
.ws106{word-spacing:-0.113805pt;}
.wsf3{word-spacing:-0.109415pt;}
.ws75{word-spacing:-0.106240pt;}
.wsb3{word-spacing:-0.100765pt;}
.ws29{word-spacing:-0.096000pt;}
.wsfe{word-spacing:-0.058880pt;}
.ws73{word-spacing:-0.053120pt;}
.ws7b{word-spacing:-0.042880pt;}
.ws4{word-spacing:0.000000pt;}
.ws7a{word-spacing:0.042880pt;}
.ws20{word-spacing:0.053120pt;}
.ws86{word-spacing:0.058880pt;}
.wsca{word-spacing:0.064000pt;}
.ws6{word-spacing:0.069120pt;}
.ws132{word-spacing:0.096000pt;}
.wsf1{word-spacing:0.100448pt;}
.wsb4{word-spacing:0.100765pt;}
.ws11e{word-spacing:0.106240pt;}
.ws105{word-spacing:0.113514pt;}
.ws3b{word-spacing:0.117760pt;}
.ws6c{word-spacing:0.159360pt;}
.wsf2{word-spacing:0.163773pt;}
.ws11c{word-spacing:0.171520pt;}
.ws84{word-spacing:0.176640pt;}
.ws19{word-spacing:0.192000pt;}
.ws76{word-spacing:0.212480pt;}
.ws7{word-spacing:0.213760pt;}
.ws11f{word-spacing:0.214400pt;}
.ws85{word-spacing:0.235520pt;}
.ws77{word-spacing:0.257280pt;}
.ws124{word-spacing:0.265600pt;}
.wsb0{word-spacing:0.284109pt;}
.ws36{word-spacing:0.294400pt;}
.wse9{word-spacing:0.299520pt;}
.ws11a{word-spacing:0.300160pt;}
.ws9{word-spacing:0.320640pt;}
.ws5{word-spacing:0.345600pt;}
.ws30{word-spacing:0.353280pt;}
.wse2{word-spacing:0.371840pt;}
.ws15{word-spacing:0.412160pt;}
.ws7e{word-spacing:0.428800pt;}
.ws12b{word-spacing:0.432000pt;}
.wse3{word-spacing:0.478080pt;}
.ws78{word-spacing:0.514560pt;}
.ws137{word-spacing:0.528000pt;}
.ws6d{word-spacing:0.531200pt;}
.ws139{word-spacing:0.576000pt;}
.wsc7{word-spacing:0.588800pt;}
.ws83{word-spacing:0.599040pt;}
.ws95{word-spacing:0.647680pt;}
.ws23{word-spacing:0.690560pt;}
.wsfd{word-spacing:0.726505pt;}
.ws53{word-spacing:0.765440pt;}
.ws18{word-spacing:0.832000pt;}
.ws10a{word-spacing:0.883200pt;}
.wscf{word-spacing:0.942080pt;}
.wsa{word-spacing:1.036800pt;}
.ws5f{word-spacing:1.059840pt;}
.ws7d{word-spacing:1.157760pt;}
.ws138{word-spacing:1.200000pt;}
.ws11d{word-spacing:1.200640pt;}
.wsc8{word-spacing:1.313280pt;}
.ws27{word-spacing:1.328000pt;}
.ws13a{word-spacing:1.440000pt;}
.ws45{word-spacing:1.707520pt;}
.ws128{word-spacing:1.824000pt;}
.ws74{word-spacing:1.859200pt;}
.wsb2{word-spacing:1.914531pt;}
.wsb1{word-spacing:2.015296pt;}
.ws129{word-spacing:2.016000pt;}
.ws32{word-spacing:2.296320pt;}
.ws14c{word-spacing:2.448000pt;}
.ws49{word-spacing:2.472960pt;}
.ws12f{word-spacing:2.496000pt;}
.ws25{word-spacing:2.656000pt;}
.ws31{word-spacing:2.944000pt;}
.ws12e{word-spacing:3.120000pt;}
.ws59{word-spacing:3.179520pt;}
.ws5d{word-spacing:3.591680pt;}
.ws125{word-spacing:3.744000pt;}
.wsad{word-spacing:3.886080pt;}
.ws13c{word-spacing:3.936000pt;}
.ws40{word-spacing:4.239360pt;}
.ws12d{word-spacing:4.416000pt;}
.ws130{word-spacing:4.512000pt;}
.ws1e{word-spacing:4.568320pt;}
.ws2e{word-spacing:4.887040pt;}
.ws131{word-spacing:5.040000pt;}
.ws9c{word-spacing:5.063680pt;}
.ws24{word-spacing:5.205760pt;}
.ws4b{word-spacing:5.534720pt;}
.ws38{word-spacing:6.182400pt;}
.wsfa{word-spacing:6.653764pt;}
.ws56{word-spacing:6.830080pt;}
.ws13f{word-spacing:6.960000pt;}
.wsf5{word-spacing:6.992865pt;}
.ws145{word-spacing:7.056000pt;}
.ws28{word-spacing:7.118080pt;}
.ws51{word-spacing:7.418880pt;}
.ws140{word-spacing:7.584000pt;}
.ws1b{word-spacing:7.755520pt;}
.ws58{word-spacing:8.066560pt;}
.ws35{word-spacing:8.714240pt;}
.ws13e{word-spacing:8.880000pt;}
.ws4d{word-spacing:9.361920pt;}
.ws1f{word-spacing:9.667840pt;}
.ws2f{word-spacing:10.009600pt;}
.ws13d{word-spacing:10.176000pt;}
.ws5b{word-spacing:10.657280pt;}
.ws13b{word-spacing:10.800000pt;}
.ws47{word-spacing:11.304960pt;}
.ws143{word-spacing:11.424000pt;}
.ws8f{word-spacing:11.540480pt;}
.wscb{word-spacing:11.893760pt;}
.wscc{word-spacing:12.070400pt;}
.ws9f{word-spacing:12.541440pt;}
.ws9a{word-spacing:13.189120pt;}
.ws9d{word-spacing:13.836800pt;}
.ws43{word-spacing:14.484480pt;}
.wsc5{word-spacing:14.676480pt;}
.ws99{word-spacing:15.132160pt;}
.ws1d{word-spacing:15.404800pt;}
.ws96{word-spacing:15.779840pt;}
.ws14a{word-spacing:15.936000pt;}
.ws1c{word-spacing:16.095360pt;}
.ws149{word-spacing:16.128000pt;}
.ws50{word-spacing:16.427520pt;}
.ws14b{word-spacing:16.560000pt;}
.ws94{word-spacing:16.604160pt;}
.ws5a{word-spacing:17.016320pt;}
.wsa8{word-spacing:17.075200pt;}
.ws3e{word-spacing:17.664000pt;}
.ws117{word-spacing:18.007680pt;}
.wsd7{word-spacing:18.311680pt;}
.wse0{word-spacing:18.959360pt;}
.wsc6{word-spacing:19.169280pt;}
.ws26{word-spacing:19.282560pt;}
.wsbb{word-spacing:19.607040pt;}
.wsc9{word-spacing:20.254720pt;}
.ws3f{word-spacing:20.902400pt;}
.wsac{word-spacing:21.550080pt;}
.ws34{word-spacing:22.138880pt;}
.ws148{word-spacing:22.320000pt;}
.ws55{word-spacing:22.786560pt;}
.wse1{word-spacing:23.434240pt;}
.ws5c{word-spacing:24.081920pt;}
.ws12c{word-spacing:24.240000pt;}
.wsba{word-spacing:24.729600pt;}
.ws146{word-spacing:24.864000pt;}
.wsb7{word-spacing:25.377280pt;}
.ws147{word-spacing:25.488000pt;}
.wsb8{word-spacing:26.024960pt;}
.wsb6{word-spacing:26.613760pt;}
.ws4a{word-spacing:27.261440pt;}
.ws97{word-spacing:27.909120pt;}
.ws98{word-spacing:28.556800pt;}
.wsa9{word-spacing:29.204480pt;}
.ws10b{word-spacing:29.852160pt;}
.ws9e{word-spacing:30.499840pt;}
.wsae{word-spacing:31.147520pt;}
.ws22{word-spacing:31.447040pt;}
.ws92{word-spacing:31.736320pt;}
.ws21{word-spacing:32.084480pt;}
.ws93{word-spacing:32.384000pt;}
.wsb9{word-spacing:33.031680pt;}
.ws71{word-spacing:33.040640pt;}
.ws72{word-spacing:33.200000pt;}
.ws70{word-spacing:33.465600pt;}
.ws10c{word-spacing:33.679360pt;}
.ws14d{word-spacing:33.840000pt;}
.ws48{word-spacing:34.327040pt;}
.wsec{word-spacing:34.974720pt;}
.wsa1{word-spacing:35.210240pt;}
.wsa0{word-spacing:35.622400pt;}
.ws90{word-spacing:36.270080pt;}
.wsd8{word-spacing:36.858880pt;}
.wscd{word-spacing:36.917760pt;}
.ws4e{word-spacing:37.506560pt;}
.wsd5{word-spacing:37.683200pt;}
.wsd3{word-spacing:38.154240pt;}
.ws41{word-spacing:38.801920pt;}
.ws42{word-spacing:38.978560pt;}
.ws10f{word-spacing:39.449600pt;}
.ws3c{word-spacing:40.744960pt;}
.wse7{word-spacing:41.333760pt;}
.ws4f{word-spacing:41.981440pt;}
.ws107{word-spacing:42.629120pt;}
.ws110{word-spacing:43.276800pt;}
.ws91{word-spacing:43.924480pt;}
.wsd2{word-spacing:44.454400pt;}
.wsd1{word-spacing:44.572160pt;}
.ws44{word-spacing:45.219840pt;}
.wsda{word-spacing:45.867520pt;}
.ws3d{word-spacing:48.399360pt;}
.ws10e{word-spacing:49.694720pt;}
.ws109{word-spacing:50.990080pt;}
.wsaf{word-spacing:53.521920pt;}
.ws52{word-spacing:54.817280pt;}
.ws39{word-spacing:56.053760pt;}
.ws3a{word-spacing:56.230400pt;}
.wse6{word-spacing:56.701440pt;}
.ws108{word-spacing:57.349120pt;}
.ws54{word-spacing:59.292160pt;}
.wsd0{word-spacing:60.587520pt;}
.ws10d{word-spacing:65.062400pt;}
.wseb{word-spacing:66.298880pt;}
.wsea{word-spacing:66.946560pt;}
.ws111{word-spacing:72.716800pt;}
.wsd9{word-spacing:118.819840pt;}
.ws102{word-spacing:144.650511pt;}
.wsef{word-spacing:597.080751pt;}
._2b{margin-left:-44.118784pt;}
._d{margin-left:-13.309440pt;}
._e{margin-left:-9.894400pt;}
._12{margin-left:-8.869120pt;}
._c{margin-left:-7.755520pt;}
._11{margin-left:-6.163200pt;}
._f{margin-left:-4.576000pt;}
._10{margin-left:-3.128320pt;}
._6{margin-left:-2.054400pt;}
._2{margin-left:-1.036800pt;}
._1{width:1.002240pt;}
._3{width:2.581760pt;}
._4{width:3.483072pt;}
._8{width:4.416000pt;}
._17{width:5.770240pt;}
._1e{width:7.238400pt;}
._18{width:8.410880pt;}
._19{width:9.826560pt;}
._15{width:10.716160pt;}
._1f{width:12.883200pt;}
._a{width:13.957120pt;}
._1b{width:14.896640pt;}
._2d{width:15.804800pt;}
._23{width:18.148480pt;}
._25{width:20.136960pt;}
._1c{width:22.018560pt;}
._1a{width:23.139840pt;}
._9{width:24.552960pt;}
._26{width:25.612800pt;}
._21{width:26.790400pt;}
._29{width:28.555520pt;}
._1d{width:30.086400pt;}
._16{width:31.435520pt;}
._22{width:33.006080pt;}
._2e{width:34.646400pt;}
._13{width:36.211200pt;}
._27{width:37.971200pt;}
._28{width:38.860800pt;}
._7{width:41.925120pt;}
._14{width:43.641600pt;}
._24{width:44.572160pt;}
._20{width:54.350080pt;}
._5{width:56.323840pt;}
._2a{width:59.998720pt;}
._b{width:751.603200pt;}
._2c{width:754.664960pt;}
._0{width:1890.695680pt;}
.fs19{font-size:16.000000pt;}
.fsb{font-size:21.120000pt;}
.fsa{font-size:32.000000pt;}
.fs16{font-size:33.022933pt;}
.fs10{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fse{font-size:48.866667pt;}
.fs11{font-size:50.224000pt;}
.fsd{font-size:50.382400pt;}
.fs5{font-size:53.120000pt;}
.fs12{font-size:54.707733pt;}
.fs17{font-size:56.756800pt;}
.fsc{font-size:56.821867pt;}
.fs18{font-size:56.902400pt;}
.fs14{font-size:56.935467pt;}
.fs15{font-size:57.041600pt;}
.fs0{font-size:58.880000pt;}
.fsf{font-size:61.440000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs7{font-size:74.880000pt;}
.fs13{font-size:81.886400pt;}
.fs3{font-size:85.120000pt;}
.fs2{font-size:106.880000pt;}
.y4d{bottom:-480.800000pt;}
.y4c{bottom:-457.760000pt;}
.y4b{bottom:-434.720000pt;}
.y4a{bottom:-411.680000pt;}
.y49{bottom:-388.800000pt;}
.y48{bottom:-365.760000pt;}
.y47{bottom:-342.720000pt;}
.y46{bottom:-319.680000pt;}
.y45{bottom:-296.800000pt;}
.y44{bottom:-273.760000pt;}
.y43{bottom:-250.720000pt;}
.y42{bottom:-227.680000pt;}
.y41{bottom:-204.800000pt;}
.y40{bottom:-181.760000pt;}
.y3f{bottom:-158.720000pt;}
.y3e{bottom:-135.840000pt;}
.y26{bottom:-117.440000pt;}
.y3d{bottom:-112.800000pt;}
.y25{bottom:-94.400000pt;}
.y3c{bottom:-89.760000pt;}
.y24{bottom:-71.360000pt;}
.y3b{bottom:-66.720000pt;}
.y23{bottom:-46.560000pt;}
.y3a{bottom:-43.840000pt;}
.y5f{bottom:-40.480000pt;}
.y39{bottom:-20.800000pt;}
.y22{bottom:-18.880000pt;}
.y5e{bottom:-12.800000pt;}
.y1f{bottom:-6.560000pt;}
.y29c{bottom:-1.160133pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:0.160000pt;}
.y38{bottom:4.320000pt;}
.y2f4{bottom:4.576933pt;}
.y3c4{bottom:5.120000pt;}
.y3c2{bottom:5.280000pt;}
.y1d{bottom:6.720000pt;}
.y29a{bottom:7.324000pt;}
.y61{bottom:8.480000pt;}
.y21{bottom:8.640000pt;}
.y423{bottom:8.800000pt;}
.y420{bottom:8.960000pt;}
.y437{bottom:9.120000pt;}
.y3b1{bottom:9.280000pt;}
.y2d0{bottom:10.592800pt;}
.y2c2{bottom:10.628267pt;}
.y2b7{bottom:10.662667pt;}
.y413{bottom:12.160000pt;}
.y13{bottom:13.120000pt;}
.y16{bottom:13.440000pt;}
.y172{bottom:14.040960pt;}
.y5d{bottom:14.720000pt;}
.y161{bottom:15.714560pt;}
.y2c4{bottom:18.752000pt;}
.y2ba{bottom:18.787733pt;}
.y2d2{bottom:18.859200pt;}
.y3f6{bottom:22.720000pt;}
.y3c0{bottom:22.880000pt;}
.y42e{bottom:24.480000pt;}
.y431{bottom:24.640000pt;}
.y3ac{bottom:25.440000pt;}
.y411{bottom:26.240000pt;}
.y3b0{bottom:26.880000pt;}
.y2c9{bottom:27.554400pt;}
.y2bd{bottom:27.590000pt;}
.y2b2{bottom:27.624267pt;}
.yf7{bottom:28.000000pt;}
.yf4{bottom:28.160000pt;}
.y3e2{bottom:28.480000pt;}
.y44e{bottom:28.640000pt;}
.y45f{bottom:28.800000pt;}
.y171{bottom:29.193467pt;}
.y160{bottom:30.867067pt;}
.y5a{bottom:31.040000pt;}
.y163{bottom:33.538693pt;}
.y35{bottom:34.400000pt;}
.y15{bottom:35.360000pt;}
.y3f5{bottom:40.320000pt;}
.y427{bottom:40.480000pt;}
.y3bf{bottom:40.640000pt;}
.y28e{bottom:41.956133pt;}
.y3e0{bottom:42.720000pt;}
.y2ca{bottom:43.299067pt;}
.y3af{bottom:44.640000pt;}
.y2e8{bottom:45.146933pt;}
.y2c6{bottom:48.560533pt;}
.y162{bottom:48.691200pt;}
.y2be{bottom:50.630933pt;}
.y2b3{bottom:50.665200pt;}
.y4{bottom:51.354880pt;}
.y68{bottom:51.365760pt;}
.y2c5{bottom:51.549600pt;}
.y59{bottom:54.080000pt;}
.y2b9{bottom:54.254533pt;}
.y40e{bottom:54.560000pt;}
.y3de{bottom:56.800000pt;}
.y33{bottom:57.440000pt;}
.y3f4{bottom:57.920000pt;}
.y3bd{bottom:58.240000pt;}
.y2cb{bottom:59.043600pt;}
.y158{bottom:59.816107pt;}
.y3{bottom:65.280000pt;}
.y16b{bottom:65.799093pt;}
.y28f{bottom:67.562533pt;}
.y15a{bottom:68.252907pt;}
.y67{bottom:69.280000pt;}
.y3dc{bottom:70.880000pt;}
.y2bf{bottom:73.671867pt;}
.y2b4{bottom:73.706000pt;}
.y2e9{bottom:73.725067pt;}
.y2cc{bottom:74.788133pt;}
.y3f3{bottom:75.680000pt;}
.y3bc{bottom:75.840000pt;}
.y29f{bottom:76.495733pt;}
.y40c{bottom:76.640000pt;}
.y157{bottom:76.862667pt;}
.y58{bottom:77.120000pt;}
.y32{bottom:80.320000pt;}
.y16a{bottom:80.951600pt;}
.y159{bottom:85.299467pt;}
.y13d{bottom:85.596000pt;}
.y216{bottom:85.600000pt;}
.y230{bottom:86.717120pt;}
.y30a{bottom:87.596800pt;}
.y32a{bottom:87.681280pt;}
.y398{bottom:87.690880pt;}
.y152{bottom:88.960000pt;}
.y125{bottom:88.965760pt;}
.y8b{bottom:90.204800pt;}
.y2cd{bottom:90.532800pt;}
.y64{bottom:90.560000pt;}
.y40a{bottom:90.720000pt;}
.y24a{bottom:91.360000pt;}
.y3a9{bottom:91.635840pt;}
.y3da{bottom:92.960000pt;}
.y290{bottom:93.168800pt;}
.y3f2{bottom:93.280000pt;}
.y3ba{bottom:93.440000pt;}
.y34a{bottom:94.861440pt;}
.y2c0{bottom:96.712533pt;}
.y2b5{bottom:96.746933pt;}
.y57{bottom:100.000000pt;}
.yaf{bottom:100.324480pt;}
.y2ea{bottom:102.303200pt;}
.y378{bottom:102.348800pt;}
.y22f{bottom:102.878880pt;}
.y31{bottom:103.360000pt;}
.y215{bottom:103.520000pt;}
.y151{bottom:103.680000pt;}
.y1dd{bottom:103.930240pt;}
.y35d{bottom:105.528320pt;}
.y2ce{bottom:106.277333pt;}
.y2bb{bottom:106.742400pt;}
.y3d8{bottom:107.040000pt;}
.y2f7{bottom:107.610267pt;}
.y153{bottom:108.640000pt;}
.y150{bottom:108.654080pt;}
.y2c7{bottom:109.374533pt;}
.y3f1{bottom:110.880000pt;}
.y3b9{bottom:111.040000pt;}
.y63{bottom:111.200000pt;}
.y15f{bottom:112.438267pt;}
.y408{bottom:112.800000pt;}
.y309{bottom:112.871040pt;}
.y329{bottom:112.955520pt;}
.y397{bottom:112.965120pt;}
.y2d3{bottom:113.930267pt;}
.y124{bottom:114.240000pt;}
.y13c{bottom:114.720000pt;}
.y8a{bottom:115.479040pt;}
.y3a8{bottom:116.910080pt;}
.y156{bottom:117.375680pt;}
.y291{bottom:118.775067pt;}
.y419{bottom:119.680000pt;}
.y2c1{bottom:119.753467pt;}
.y2b6{bottom:119.787867pt;}
.y349{bottom:120.135680pt;}
.y2cf{bottom:122.022000pt;}
.y1b8{bottom:122.588800pt;}
.y55{bottom:123.040000pt;}
.y22e{bottom:123.840000pt;}
.yae{bottom:125.598720pt;}
.y2f{bottom:126.400000pt;}
.y406{bottom:126.880000pt;}
.y377{bottom:127.623040pt;}
.y3f0{bottom:128.480000pt;}
.y3b7{bottom:128.800000pt;}
.y3d6{bottom:129.120000pt;}
.y1dc{bottom:129.204480pt;}
.y35c{bottom:130.802560pt;}
.y2eb{bottom:130.881600pt;}
.y3f7{bottom:133.600000pt;}
.y155{bottom:134.422240pt;}
.y22d{bottom:136.000000pt;}
.y1f2{bottom:137.326080pt;}
.y308{bottom:138.145280pt;}
.y328{bottom:138.229760pt;}
.y396{bottom:138.239360pt;}
.y123{bottom:139.680000pt;}
.y89{bottom:140.753280pt;}
.y2e6{bottom:141.164160pt;}
.y3d4{bottom:143.360000pt;}
.y2b0{bottom:144.227200pt;}
.y292{bottom:144.381467pt;}
.y348{bottom:145.571840pt;}
.y414{bottom:145.760000pt;}
.y54{bottom:146.080000pt;}
.y3b5{bottom:146.400000pt;}
.y277{bottom:146.464640pt;}
.y1b7{bottom:147.863040pt;}
.y404{bottom:148.960000pt;}
.y2e{bottom:149.440000pt;}
.yad{bottom:150.872960pt;}
.y249{bottom:151.089920pt;}
.y16d{bottom:151.309893pt;}
.y154{bottom:151.468800pt;}
.y190{bottom:151.844480pt;}
.y66{bottom:152.640000pt;}
.y376{bottom:152.897280pt;}
.y3a7{bottom:153.077120pt;}
.y1db{bottom:154.478720pt;}
.ye5{bottom:155.360000pt;}
.y35b{bottom:156.076800pt;}
.y2ec{bottom:159.459467pt;}
.y214{bottom:159.640960pt;}
.y412{bottom:159.840000pt;}
.y1f1{bottom:162.453120pt;}
.y402{bottom:163.200000pt;}
.y307{bottom:163.581440pt;}
.y327{bottom:163.665920pt;}
.y395{bottom:163.675520pt;}
.y3b4{bottom:163.840000pt;}
.y3d2{bottom:165.440000pt;}
.y88{bottom:166.027520pt;}
.y16c{bottom:166.462400pt;}
.y62{bottom:166.560000pt;}
.y2e5{bottom:166.600320pt;}
.y473{bottom:168.160000pt;}
.y52{bottom:169.120000pt;}
.y2af{bottom:169.501440pt;}
.y293{bottom:169.987600pt;}
.y347{bottom:170.846080pt;}
.y276{bottom:171.591680pt;}
.y28c{bottom:172.250240pt;}
.y2d{bottom:172.320000pt;}
.y1b6{bottom:173.137280pt;}
.y410{bottom:173.920000pt;}
.y122{bottom:174.301440pt;}
.yac{bottom:176.147200pt;}
.y169{bottom:176.185360pt;}
.y248{bottom:176.364160pt;}
.y15e{bottom:177.853573pt;}
.y375{bottom:178.171520pt;}
.y3a6{bottom:178.204160pt;}
.y3d0{bottom:179.520000pt;}
.y13b{bottom:179.682560pt;}
.y1da{bottom:179.752960pt;}
.y35a{bottom:181.351040pt;}
.y3ef{bottom:181.440000pt;}
.y472{bottom:181.920000pt;}
.y213{bottom:184.915200pt;}
.y400{bottom:185.280000pt;}
.y18f{bottom:186.407040pt;}
.ye4{bottom:187.682560pt;}
.y1f0{bottom:187.727360pt;}
.y2ed{bottom:188.037733pt;}
.y40f{bottom:188.160000pt;}
.y306{bottom:188.855680pt;}
.y326{bottom:188.940160pt;}
.y394{bottom:188.949760pt;}
.y87{bottom:191.301760pt;}
.y168{bottom:191.337867pt;}
.y15c{bottom:191.711840pt;}
.y2e4{bottom:191.874560pt;}
.y50{bottom:192.000000pt;}
.y2ae{bottom:194.775680pt;}
.y15d{bottom:194.900133pt;}
.y2b{bottom:195.360000pt;}
.y294{bottom:195.593867pt;}
.y346{bottom:196.120320pt;}
.y13a{bottom:196.637440pt;}
.y275{bottom:196.865920pt;}
.y28b{bottom:197.524480pt;}
.y3ed{bottom:198.080000pt;}
.y1b5{bottom:198.411520pt;}
.y22c{bottom:198.501120pt;}
.y3fe{bottom:199.360000pt;}
.y121{bottom:199.575680pt;}
.y3ce{bottom:201.600000pt;}
.y247{bottom:201.638400pt;}
.y471{bottom:201.920000pt;}
.y374{bottom:203.445760pt;}
.y3a5{bottom:203.478400pt;}
.y1d9{bottom:205.027200pt;}
.y359{bottom:206.625280pt;}
.y15b{bottom:208.758400pt;}
.y212{bottom:210.189440pt;}
.y139{bottom:210.238720pt;}
.y40d{bottom:210.240000pt;}
.yab{bottom:210.871680pt;}
.y18e{bottom:211.681280pt;}
.ye3{bottom:212.000000pt;}
.y3eb{bottom:212.160000pt;}
.y1ef{bottom:213.001600pt;}
.y3fd{bottom:213.600000pt;}
.y305{bottom:214.129920pt;}
.y325{bottom:214.214400pt;}
.y393{bottom:214.224000pt;}
.y16f{bottom:214.862293pt;}
.y4f{bottom:215.040000pt;}
.y3cc{bottom:215.680000pt;}
.y86{bottom:216.576000pt;}
.y2ee{bottom:216.615867pt;}
.y2e3{bottom:217.148800pt;}
.y29{bottom:218.400000pt;}
.y2ad{bottom:220.049920pt;}
.y295{bottom:221.200267pt;}
.y345{bottom:221.394560pt;}
.y470{bottom:221.760000pt;}
.y274{bottom:222.302080pt;}
.y28a{bottom:222.798720pt;}
.y1b4{bottom:223.685760pt;}
.y22b{bottom:223.775360pt;}
.y40b{bottom:224.320000pt;}
.y120{bottom:224.849920pt;}
.y418{bottom:225.760000pt;}
.y3e9{bottom:226.240000pt;}
.y246{bottom:226.912640pt;}
.y3fb{bottom:227.680000pt;}
.y373{bottom:228.720000pt;}
.y3a4{bottom:228.752640pt;}
.y167{bottom:229.192160pt;}
.y3cb{bottom:229.760000pt;}
.y16e{bottom:230.014800pt;}
.y1d8{bottom:230.301440pt;}
.y358{bottom:232.061440pt;}
.ye2{bottom:235.040000pt;}
.y211{bottom:235.625600pt;}
.yaa{bottom:236.145920pt;}
.y165{bottom:236.357300pt;}
.y18d{bottom:237.117440pt;}
.y3e8{bottom:237.600000pt;}
.y1ee{bottom:238.437760pt;}
.y3fa{bottom:238.880000pt;}
.y304{bottom:239.404160pt;}
.y324{bottom:239.488640pt;}
.y392{bottom:239.498240pt;}
.y417{bottom:239.840000pt;}
.y28{bottom:241.280000pt;}
.y46e{bottom:241.600000pt;}
.y2e2{bottom:242.423040pt;}
.y3c9{bottom:244.000000pt;}
.y166{bottom:244.344667pt;}
.y2ef{bottom:245.194000pt;}
.y2ac{bottom:245.324160pt;}
.y446{bottom:245.920000pt;}
.y409{bottom:246.400000pt;}
.y296{bottom:246.806400pt;}
.y3e6{bottom:246.880000pt;}
.y273{bottom:247.576320pt;}
.y3f9{bottom:247.840000pt;}
.y289{bottom:248.072960pt;}
.y1b3{bottom:248.960000pt;}
.y22a{bottom:249.049600pt;}
.y11f{bottom:250.124160pt;}
.y46f{bottom:250.240000pt;}
.y164{bottom:251.041733pt;}
.y85{bottom:251.300480pt;}
.y245{bottom:252.186880pt;}
.y416{bottom:253.920000pt;}
.y372{bottom:253.994240pt;}
.y3a3{bottom:254.026880pt;}
.y3c8{bottom:255.520000pt;}
.y1d7{bottom:255.575680pt;}
.y65{bottom:257.120000pt;}
.y357{bottom:257.335680pt;}
.y344{bottom:257.561600pt;}
.y170{bottom:257.586800pt;}
.ye1{bottom:257.920000pt;}
.y445{bottom:259.680000pt;}
.y407{bottom:260.480000pt;}
.y210{bottom:260.899840pt;}
.ya9{bottom:261.420160pt;}
.y18c{bottom:262.391680pt;}
.y1ed{bottom:263.712000pt;}
.y3c6{bottom:264.320000pt;}
.y3e4{bottom:264.480000pt;}
.y303{bottom:264.678400pt;}
.y323{bottom:264.762880pt;}
.y391{bottom:264.772480pt;}
.y3f8{bottom:265.760000pt;}
.y2e1{bottom:267.697280pt;}
.y415{bottom:268.160000pt;}
.y2ab{bottom:270.598400pt;}
.y297{bottom:272.412800pt;}
.y272{bottom:272.850560pt;}
.y288{bottom:273.347200pt;}
.y2f0{bottom:273.772267pt;}
.y229{bottom:274.323840pt;}
.y11e{bottom:275.398400pt;}
.y84{bottom:276.574720pt;}
.y1b2{bottom:276.960000pt;}
.y46d{bottom:277.280000pt;}
.y244{bottom:277.461120pt;}
.y371{bottom:279.268480pt;}
.y3a2{bottom:279.301120pt;}
.y443{bottom:279.520000pt;}
.y1d6{bottom:280.849920pt;}
.ye0{bottom:280.960000pt;}
.y405{bottom:282.560000pt;}
.y356{bottom:282.609920pt;}
.y343{bottom:282.688640pt;}
.y20f{bottom:286.174080pt;}
.ya8{bottom:286.694400pt;}
.y18b{bottom:287.665920pt;}
.y444{bottom:288.160000pt;}
.y60{bottom:288.960000pt;}
.y1ec{bottom:288.986240pt;}
.y302{bottom:289.952640pt;}
.y322{bottom:290.037120pt;}
.y390{bottom:290.046720pt;}
.y2e0{bottom:292.971520pt;}
.y2aa{bottom:295.872640pt;}
.y403{bottom:296.800000pt;}
.y46b{bottom:297.280000pt;}
.y298{bottom:298.018933pt;}
.y271{bottom:298.124800pt;}
.y287{bottom:298.621440pt;}
.y228{bottom:299.598080pt;}
.y11d{bottom:300.834560pt;}
.y83{bottom:301.848960pt;}
.y2f1{bottom:302.350400pt;}
.y243{bottom:302.735360pt;}
.ydf{bottom:304.000000pt;}
.y370{bottom:304.704640pt;}
.y3a1{bottom:304.737280pt;}
.y46c{bottom:305.920000pt;}
.y1d5{bottom:306.124160pt;}
.y1b1{bottom:306.283520pt;}
.y29e{bottom:307.406800pt;}
.y355{bottom:307.884160pt;}
.y342{bottom:307.962880pt;}
.y5c{bottom:308.320000pt;}
.y20e{bottom:311.448320pt;}
.ya7{bottom:311.968640pt;}
.y18a{bottom:312.940160pt;}
.y1eb{bottom:314.260480pt;}
.y301{bottom:315.226880pt;}
.y321{bottom:315.311360pt;}
.y38f{bottom:315.320960pt;}
.y441{bottom:315.360000pt;}
.y2df{bottom:318.245760pt;}
.y401{bottom:318.880000pt;}
.y2f6{bottom:319.316800pt;}
.y2a9{bottom:321.146880pt;}
.y270{bottom:323.399040pt;}
.y299{bottom:323.625333pt;}
.y286{bottom:323.895680pt;}
.y442{bottom:324.000000pt;}
.y227{bottom:324.872320pt;}
.y11c{bottom:326.108800pt;}
.yde{bottom:327.040000pt;}
.y82{bottom:327.285120pt;}
.y242{bottom:328.009600pt;}
.y36f{bottom:329.978880pt;}
.y3a0{bottom:330.011520pt;}
.y2f2{bottom:330.928533pt;}
.y1b0{bottom:331.557760pt;}
.y1d4{bottom:331.560320pt;}
.y3ff{bottom:332.960000pt;}
.y354{bottom:333.158400pt;}
.y341{bottom:333.237120pt;}
.y20d{bottom:336.722560pt;}
.ya6{bottom:337.242880pt;}
.y4e{bottom:337.920000pt;}
.y189{bottom:338.214400pt;}
.y300{bottom:340.501120pt;}
.y320{bottom:340.585600pt;}
.y38e{bottom:340.595200pt;}
.y46a{bottom:341.600000pt;}
.y494{bottom:343.040000pt;}
.y2de{bottom:343.520000pt;}
.y81{bottom:343.918720pt;}
.y2a8{bottom:346.583040pt;}
.y1af{bottom:348.515200pt;}
.y285{bottom:349.169920pt;}
.ydd{bottom:349.920000pt;}
.y226{bottom:350.146560pt;}
.y1ea{bottom:350.427520pt;}
.y43f{bottom:351.040000pt;}
.y11b{bottom:351.383040pt;}
.y241{bottom:353.283840pt;}
.y36e{bottom:355.253120pt;}
.y39f{bottom:355.285760pt;}
.y493{bottom:356.800000pt;}
.y1d3{bottom:356.834560pt;}
.y353{bottom:358.432640pt;}
.y340{bottom:358.511360pt;}
.y26f{bottom:359.566080pt;}
.y440{bottom:359.680000pt;}
.y3fc{bottom:361.280000pt;}
.y20c{bottom:361.996800pt;}
.ya5{bottom:362.517120pt;}
.y188{bottom:363.488640pt;}
.y2ff{bottom:365.775360pt;}
.y31f{bottom:365.859840pt;}
.y38d{bottom:365.869440pt;}
.y468{bottom:368.640000pt;}
.y5b{bottom:368.960000pt;}
.y1ae{bottom:370.595200pt;}
.y2a7{bottom:371.857280pt;}
.y2dd{bottom:372.000000pt;}
.ydc{bottom:372.960000pt;}
.y284{bottom:374.606080pt;}
.y225{bottom:375.420800pt;}
.y1e9{bottom:375.554560pt;}
.y492{bottom:376.640000pt;}
.y11a{bottom:376.657280pt;}
.y469{bottom:377.280000pt;}
.y80{bottom:378.643200pt;}
.y240{bottom:378.720000pt;}
.y36d{bottom:380.527360pt;}
.y39e{bottom:380.560000pt;}
.y1d2{bottom:382.108800pt;}
.y352{bottom:383.706880pt;}
.y33f{bottom:383.785600pt;}
.y26e{bottom:384.693120pt;}
.y43d{bottom:386.720000pt;}
.y20b{bottom:387.271040pt;}
.ya4{bottom:387.953280pt;}
.y187{bottom:388.762880pt;}
.y2fe{bottom:391.211520pt;}
.y31e{bottom:391.296000pt;}
.y38c{bottom:391.305600pt;}
.y43e{bottom:395.360000pt;}
.ydb{bottom:396.000000pt;}
.y490{bottom:396.480000pt;}
.y2a6{bottom:397.131520pt;}
.y283{bottom:399.880320pt;}
.y1e8{bottom:400.828800pt;}
.y224{bottom:400.856960pt;}
.y119{bottom:401.931520pt;}
.y7f{bottom:403.917440pt;}
.y466{bottom:404.480000pt;}
.y491{bottom:405.280000pt;}
.y36c{bottom:405.801600pt;}
.y39d{bottom:405.834240pt;}
.y23f{bottom:406.560000pt;}
.y1d1{bottom:407.383040pt;}
.y14f{bottom:408.971520pt;}
.y351{bottom:408.981120pt;}
.y33e{bottom:409.059840pt;}
.y26d{bottom:409.967360pt;}
.y2dc{bottom:410.585600pt;}
.y3c5{bottom:411.680000pt;}
.y20a{bottom:412.545280pt;}
.y467{bottom:413.120000pt;}
.ya3{bottom:413.227520pt;}
.y186{bottom:414.037120pt;}
.y103{bottom:416.000000pt;}
.y2fd{bottom:416.485760pt;}
.y31d{bottom:416.570240pt;}
.y38b{bottom:416.579840pt;}
.y2a5{bottom:422.405760pt;}
.y43b{bottom:422.560000pt;}
.y282{bottom:425.154560pt;}
.y1e7{bottom:426.103040pt;}
.y223{bottom:426.131200pt;}
.yda{bottom:427.200000pt;}
.y118{bottom:427.205760pt;}
.y7e{bottom:429.191680pt;}
.y36b{bottom:431.075840pt;}
.y39c{bottom:431.108480pt;}
.y43c{bottom:431.200000pt;}
.y48e{bottom:432.320000pt;}
.y1d0{bottom:432.657280pt;}
.y102{bottom:434.080000pt;}
.y14e{bottom:434.245760pt;}
.y350{bottom:434.255360pt;}
.y33d{bottom:434.334080pt;}
.y26c{bottom:435.241600pt;}
.y2db{bottom:435.712640pt;}
.y23e{bottom:435.842560pt;}
.y209{bottom:437.819520pt;}
.ya2{bottom:438.501760pt;}
.y185{bottom:439.311360pt;}
.y3e3{bottom:440.160000pt;}
.y48f{bottom:440.960000pt;}
.y2fc{bottom:441.760000pt;}
.y31c{bottom:441.844480pt;}
.y38a{bottom:441.854080pt;}
.y2a4{bottom:447.680000pt;}
.y281{bottom:450.428800pt;}
.y1e6{bottom:451.377280pt;}
.y222{bottom:451.405440pt;}
.y117{bottom:452.480000pt;}
.y23d{bottom:452.842240pt;}
.y3e1{bottom:454.400000pt;}
.y7d{bottom:454.465920pt;}
.y36a{bottom:456.350080pt;}
.y39b{bottom:456.382720pt;}
.yd9{bottom:457.920000pt;}
.y1cf{bottom:457.931520pt;}
.y439{bottom:458.240000pt;}
.y14d{bottom:459.520000pt;}
.y34f{bottom:459.691520pt;}
.y33c{bottom:459.770240pt;}
.y463{bottom:460.000000pt;}
.y26b{bottom:460.515840pt;}
.y56{bottom:460.960000pt;}
.y2da{bottom:460.986880pt;}
.y208{bottom:463.255680pt;}
.ya1{bottom:463.937920pt;}
.y184{bottom:464.909440pt;}
.y43a{bottom:466.880000pt;}
.y31b{bottom:467.118720pt;}
.y389{bottom:467.128320pt;}
.y48d{bottom:468.000000pt;}
.y3df{bottom:468.480000pt;}
.y464{bottom:468.640000pt;}
.y23c{bottom:469.799680pt;}
.y2fb{bottom:470.240000pt;}
.y138{bottom:471.356800pt;}
.y465{bottom:472.640000pt;}
.y280{bottom:475.703040pt;}
.y2a3{bottom:476.160000pt;}
.y1e5{bottom:476.651520pt;}
.y221{bottom:476.679680pt;}
.y4aa{bottom:476.960000pt;}
.y116{bottom:477.920000pt;}
.y7c{bottom:479.740160pt;}
.ya0{bottom:480.571520pt;}
.yd8{bottom:480.960000pt;}
.y369{bottom:481.624320pt;}
.y39a{bottom:481.656960pt;}
.y3dd{bottom:482.560000pt;}
.y1ce{bottom:483.205760pt;}
.y34e{bottom:484.965760pt;}
.y33b{bottom:485.044480pt;}
.y26a{bottom:485.790080pt;}
.y2d9{bottom:486.261120pt;}
.y48c{bottom:487.840000pt;}
.y14c{bottom:488.000000pt;}
.y207{bottom:488.529920pt;}
.y101{bottom:488.640000pt;}
.y23b{bottom:491.717760pt;}
.y31a{bottom:492.392960pt;}
.y388{bottom:492.402560pt;}
.y438{bottom:493.920000pt;}
.y137{bottom:496.792960pt;}
.y183{bottom:499.310080pt;}
.y461{bottom:499.840000pt;}
.y27f{bottom:500.977280pt;}
.y1e4{bottom:501.925760pt;}
.y220{bottom:501.953920pt;}
.y100{bottom:502.560000pt;}
.yd7{bottom:504.000000pt;}
.y3db{bottom:504.640000pt;}
.y7b{bottom:505.014400pt;}
.y2a2{bottom:506.240000pt;}
.y368{bottom:506.898560pt;}
.y53{bottom:507.040000pt;}
.y14b{bottom:507.840000pt;}
.y1cd{bottom:508.480000pt;}
.y2fa{bottom:508.745600pt;}
.y34d{bottom:510.240000pt;}
.y33a{bottom:510.318720pt;}
.y269{bottom:511.064320pt;}
.y2d8{bottom:511.535360pt;}
.y462{bottom:512.480000pt;}
.y115{bottom:512.503040pt;}
.y436{bottom:513.760000pt;}
.y206{bottom:513.804160pt;}
.y9f{bottom:515.296000pt;}
.y319{bottom:517.667200pt;}
.y387{bottom:517.676800pt;}
.y399{bottom:517.824000pt;}
.y3d9{bottom:518.720000pt;}
.y2a1{bottom:520.816000pt;}
.y136{bottom:522.067200pt;}
.y182{bottom:524.584320pt;}
.y27e{bottom:526.251520pt;}
.yd6{bottom:527.040000pt;}
.y1e3{bottom:527.200000pt;}
.y21f{bottom:527.228160pt;}
.y48a{bottom:527.680000pt;}
.y51{bottom:529.920000pt;}
.y7a{bottom:530.288640pt;}
.y367{bottom:532.334720pt;}
.y435{bottom:533.760000pt;}
.y14a{bottom:533.813760pt;}
.y2f9{bottom:533.872640pt;}
.y1cc{bottom:533.920000pt;}
.y339{bottom:535.592960pt;}
.y48b{bottom:536.320000pt;}
.y2d7{bottom:536.809600pt;}
.y114{bottom:537.777280pt;}
.y205{bottom:539.078400pt;}
.y45e{bottom:539.520000pt;}
.y9e{bottom:540.570240pt;}
.y3d7{bottom:540.800000pt;}
.y318{bottom:542.941440pt;}
.y386{bottom:542.951040pt;}
.yff{bottom:544.320000pt;}
.y2d1{bottom:546.361333pt;}
.y2a0{bottom:546.414080pt;}
.y2c8{bottom:546.645333pt;}
.y34c{bottom:547.200000pt;}
.y268{bottom:547.231360pt;}
.y4a9{bottom:547.520000pt;}
.y460{bottom:548.480000pt;}
.y181{bottom:549.858560pt;}
.yd5{bottom:549.920000pt;}
.y27d{bottom:551.525760pt;}
.y21e{bottom:552.502400pt;}
.y434{bottom:553.600000pt;}
.y3d5{bottom:555.040000pt;}
.y1e2{bottom:555.200000pt;}
.y135{bottom:556.629760pt;}
.y366{bottom:557.608960pt;}
.y149{bottom:559.249920pt;}
.y1cb{bottom:559.296000pt;}
.y2f8{bottom:559.308800pt;}
.y338{bottom:560.867200pt;}
.y2d6{bottom:562.245760pt;}
.y113{bottom:563.051520pt;}
.y487{bottom:563.360000pt;}
.y204{bottom:564.352640pt;}
.y79{bottom:565.013120pt;}
.y37{bottom:565.280000pt;}
.y9d{bottom:565.844480pt;}
.y4a7{bottom:567.360000pt;}
.y317{bottom:568.215680pt;}
.y385{bottom:568.225280pt;}
.y489{bottom:572.000000pt;}
.y267{bottom:572.358400pt;}
.yd4{bottom:572.960000pt;}
.y433{bottom:573.440000pt;}
.y180{bottom:575.132800pt;}
.y4a8{bottom:576.000000pt;}
.y27c{bottom:576.800000pt;}
.y3d3{bottom:577.120000pt;}
.y21d{bottom:577.776640pt;}
.y45d{bottom:579.200000pt;}
.y365{bottom:582.883200pt;}
.y27{bottom:584.480000pt;}
.y148{bottom:584.524160pt;}
.y1ca{bottom:584.570240pt;}
.y1e1{bottom:584.583040pt;}
.y34b{bottom:584.730240pt;}
.y337{bottom:586.141440pt;}
.yfe{bottom:586.240000pt;}
.y488{bottom:587.840000pt;}
.y112{bottom:588.325760pt;}
.y203{bottom:589.626880pt;}
.y78{bottom:590.287360pt;}
.y9c{bottom:591.118720pt;}
.y3d1{bottom:591.200000pt;}
.y2d5{bottom:591.221760pt;}
.y134{bottom:591.354240pt;}
.y430{bottom:593.280000pt;}
.y316{bottom:593.489920pt;}
.y384{bottom:593.499520pt;}
.yd3{bottom:596.000000pt;}
.y266{bottom:597.632640pt;}
.y45c{bottom:599.040000pt;}
.y17f{bottom:600.407040pt;}
.y432{bottom:601.920000pt;}
.y4a5{bottom:603.040000pt;}
.y21c{bottom:603.050880pt;}
.y27b{bottom:605.280000pt;}
.y364{bottom:608.157440pt;}
.y3ee{bottom:609.760000pt;}
.y1c9{bottom:609.844480pt;}
.y1e0{bottom:609.857280pt;}
.y147{bottom:609.960320pt;}
.y336{bottom:611.415680pt;}
.y4a6{bottom:611.840000pt;}
.y3cf{bottom:613.280000pt;}
.y111{bottom:613.600000pt;}
.y202{bottom:614.901120pt;}
.y485{bottom:615.040000pt;}
.y77{bottom:615.561600pt;}
.y9b{bottom:616.392960pt;}
.y2f5{bottom:616.782667pt;}
.y2d4{bottom:616.819840pt;}
.y2e7{bottom:617.068000pt;}
.y36{bottom:618.880000pt;}
.y315{bottom:618.926080pt;}
.y383{bottom:618.935680pt;}
.yd2{bottom:619.040000pt;}
.y265{bottom:623.068800pt;}
.y486{bottom:623.680000pt;}
.y3ec{bottom:623.840000pt;}
.y17e{bottom:625.843200pt;}
.y133{bottom:625.916800pt;}
.y3cd{bottom:627.360000pt;}
.y45b{bottom:627.680000pt;}
.yfd{bottom:628.160000pt;}
.y21b{bottom:628.487040pt;}
.y42d{bottom:629.120000pt;}
.y1ad{bottom:631.551360pt;}
.y363{bottom:633.431680pt;}
.y19e{bottom:635.042560pt;}
.y146{bottom:635.087360pt;}
.y1c8{bottom:635.118720pt;}
.y1df{bottom:635.131520pt;}
.y27a{bottom:635.523040pt;}
.y335{bottom:636.689920pt;}
.y42f{bottom:637.760000pt;}
.y3ea{bottom:637.920000pt;}
.y4a4{bottom:638.880000pt;}
.y110{bottom:639.040000pt;}
.y201{bottom:640.175360pt;}
.y76{bottom:640.835840pt;}
.y9a{bottom:641.667200pt;}
.y34{bottom:641.920000pt;}
.y45a{bottom:643.520000pt;}
.y314{bottom:644.200320pt;}
.y382{bottom:644.209920pt;}
.y21a{bottom:645.444480pt;}
.y264{bottom:648.343040pt;}
.yd1{bottom:650.078400pt;}
.y483{bottom:650.720000pt;}
.y17d{bottom:651.279360pt;}
.y132{bottom:651.352960pt;}
.yf2{bottom:651.371520pt;}
.y19d{bottom:652.000000pt;}
.y3ca{bottom:655.680000pt;}
.y1ac{bottom:656.678400pt;}
.y3e7{bottom:658.560000pt;}
.y4a3{bottom:658.720000pt;}
.y484{bottom:659.360000pt;}
.y145{bottom:660.361600pt;}
.y1c7{bottom:660.392960pt;}
.y1de{bottom:660.405760pt;}
.y279{bottom:660.641280pt;}
.y334{bottom:661.964160pt;}
.y219{bottom:662.260480pt;}
.y42a{bottom:664.800000pt;}
.y200{bottom:665.449600pt;}
.y75{bottom:666.110080pt;}
.y99{bottom:666.941440pt;}
.y313{bottom:669.474560pt;}
.y381{bottom:669.484160pt;}
.y362{bottom:669.598720pt;}
.yfc{bottom:669.920000pt;}
.y459{bottom:670.560000pt;}
.yd0{bottom:673.119200pt;}
.y42c{bottom:673.440000pt;}
.y263{bottom:673.617280pt;}
.y10f{bottom:673.633280pt;}
.y3c7{bottom:676.000000pt;}
.y3e5{bottom:676.160000pt;}
.y131{bottom:676.480000pt;}
.y4a2{bottom:678.560000pt;}
.y1ab{bottom:682.114560pt;}
.y257{bottom:683.053440pt;}
.yf1{bottom:684.005760pt;}
.y218{bottom:684.340480pt;}
.y144{bottom:685.635840pt;}
.y1c6{bottom:685.667200pt;}
.y17c{bottom:685.680000pt;}
.y2c3{bottom:686.138667pt;}
.y278{bottom:686.239360pt;}
.y2bc{bottom:686.280000pt;}
.y481{bottom:686.400000pt;}
.y29d{bottom:687.308000pt;}
.y333{bottom:687.400320pt;}
.y28d{bottom:687.445333pt;}
.y19c{bottom:688.480000pt;}
.y42b{bottom:689.280000pt;}
.y457{bottom:690.400000pt;}
.y1ff{bottom:690.885760pt;}
.y98{bottom:692.377600pt;}
.yb1{bottom:692.539520pt;}
.y11{bottom:692.960000pt;}
.yc3{bottom:693.280000pt;}
.y361{bottom:694.725760pt;}
.y312{bottom:694.748800pt;}
.y380{bottom:694.758400pt;}
.y482{bottom:695.200000pt;}
.ycf{bottom:696.160000pt;}
.y49f{bottom:698.400000pt;}
.y262{bottom:698.891520pt;}
.y10e{bottom:699.069440pt;}
.y458{bottom:699.200000pt;}
.y74{bottom:700.834560pt;}
.y3c3{bottom:702.560000pt;}
.y130{bottom:704.960000pt;}
.y4a1{bottom:707.200000pt;}
.y1aa{bottom:707.388800pt;}
.y30{bottom:710.880000pt;}
.y143{bottom:710.910080pt;}
.y1c5{bottom:710.941440pt;}
.y17b{bottom:710.954240pt;}
.yfb{bottom:711.840000pt;}
.y256{bottom:712.007680pt;}
.y332{bottom:712.674560pt;}
.y1fe{bottom:716.183040pt;}
.y426{bottom:716.320000pt;}
.yf0{bottom:716.640000pt;}
.y97{bottom:717.651840pt;}
.y360{bottom:720.000000pt;}
.y311{bottom:720.023040pt;}
.y37f{bottom:720.032640pt;}
.y3b3{bottom:720.160000pt;}
.yc2{bottom:720.295680pt;}
.ybf{bottom:720.310400pt;}
.y23a{bottom:721.644160pt;}
.y47e{bottom:722.240000pt;}
.y4a0{bottom:723.040000pt;}
.y19b{bottom:724.021760pt;}
.y261{bottom:724.165760pt;}
.y10d{bottom:724.196480pt;}
.y429{bottom:725.120000pt;}
.y73{bottom:726.108800pt;}
.y455{bottom:726.240000pt;}
.y12f{bottom:726.925440pt;}
.yb0{bottom:726.940160pt;}
.yce{bottom:727.040000pt;}
.y10{bottom:727.512320pt;}
.y255{bottom:730.083840pt;}
.y480{bottom:730.880000pt;}
.y47f{bottom:731.200000pt;}
.y1a9{bottom:732.663040pt;}
.y456{bottom:734.880000pt;}
.y1c4{bottom:736.215680pt;}
.y17a{bottom:736.228480pt;}
.y142{bottom:736.346240pt;}
.y331{bottom:737.948800pt;}
.y428{bottom:740.960000pt;}
.y1fd{bottom:741.457280pt;}
.y3c1{bottom:743.040000pt;}
.yef{bottom:743.680640pt;}
.y310{bottom:745.297280pt;}
.y37e{bottom:745.306880pt;}
.yc1{bottom:746.541440pt;}
.ybe{bottom:746.556160pt;}
.y239{bottom:746.918400pt;}
.yf{bottom:747.194240pt;}
.y254{bottom:748.321920pt;}
.y35f{bottom:748.480000pt;}
.y19a{bottom:749.296000pt;}
.y260{bottom:749.440000pt;}
.y10c{bottom:749.470720pt;}
.ycd{bottom:749.920000pt;}
.y49d{bottom:750.080000pt;}
.y72{bottom:751.383040pt;}
.y96{bottom:752.214400pt;}
.yfa{bottom:753.760000pt;}
.y1a8{bottom:757.937280pt;}
.y49e{bottom:758.720000pt;}
.y141{bottom:761.473280pt;}
.y12e{bottom:761.488000pt;}
.y1c3{bottom:761.489920pt;}
.y179{bottom:761.502720pt;}
.y3aa{bottom:761.664640pt;}
.y453{bottom:761.920000pt;}
.y330{bottom:763.223040pt;}
.y253{bottom:766.560000pt;}
.y1fc{bottom:766.731520pt;}
.ye{bottom:766.876160pt;}
.y425{bottom:768.000000pt;}
.yee{bottom:770.559360pt;}
.y454{bottom:770.560000pt;}
.y30f{bottom:770.571520pt;}
.y37d{bottom:770.581120pt;}
.y238{bottom:772.354560pt;}
.yc0{bottom:772.625280pt;}
.ybd{bottom:772.640000pt;}
.ycc{bottom:772.960000pt;}
.y199{bottom:774.732160pt;}
.y10b{bottom:774.744960pt;}
.y71{bottom:776.657280pt;}
.y95{bottom:777.488640pt;}
.y25f{bottom:777.920000pt;}
.y3be{bottom:778.400000pt;}
.y2c{bottom:779.840000pt;}
.y47d{bottom:781.760000pt;}
.y1a7{bottom:783.211520pt;}
.y252{bottom:784.815360pt;}
.y49b{bottom:785.760000pt;}
.yd{bottom:786.713600pt;}
.y140{bottom:786.909440pt;}
.y12d{bottom:786.924160pt;}
.y1c2{bottom:786.926080pt;}
.y178{bottom:786.938880pt;}
.y35e{bottom:787.086080pt;}
.y424{bottom:787.840000pt;}
.y32f{bottom:788.497280pt;}
.y1fb{bottom:792.005760pt;}
.y49c{bottom:794.400000pt;}
.yf9{bottom:795.520000pt;}
.y30e{bottom:795.845760pt;}
.y37c{bottom:795.855360pt;}
.ycb{bottom:796.000000pt;}
.yed{bottom:797.438080pt;}
.y451{bottom:797.600000pt;}
.y237{bottom:797.628800pt;}
.y10a{bottom:800.019200pt;}
.y47c{bottom:801.600000pt;}
.y70{bottom:801.931520pt;}
.y94{bottom:802.762880pt;}
.y2a{bottom:802.880000pt;}
.y251{bottom:802.891520pt;}
.yc{bottom:806.240000pt;}
.y452{bottom:806.400000pt;}
.ybc{bottom:807.508480pt;}
.y422{bottom:807.680000pt;}
.y1a6{bottom:808.485760pt;}
.y198{bottom:810.251520pt;}
.y12c{bottom:812.198400pt;}
.y1c1{bottom:812.200320pt;}
.y177{bottom:812.213120pt;}
.y13f{bottom:812.345600pt;}
.y3bb{bottom:813.600000pt;}
.y32e{bottom:813.771520pt;}
.y25e{bottom:816.478080pt;}
.y1fa{bottom:817.280000pt;}
.y30d{bottom:821.120000pt;}
.y250{bottom:821.129600pt;}
.y47b{bottom:821.600000pt;}
.y236{bottom:822.903040pt;}
.yba{bottom:823.523840pt;}
.yec{bottom:824.154880pt;}
.y109{bottom:825.293440pt;}
.y2b8{bottom:825.773333pt;}
.y2b1{bottom:825.916000pt;}
.yca{bottom:827.040000pt;}
.y6f{bottom:827.367680pt;}
.y421{bottom:827.680000pt;}
.y93{bottom:828.037120pt;}
.ybb{bottom:833.754240pt;}
.y1a5{bottom:833.760000pt;}
.y197{bottom:835.525760pt;}
.yf8{bottom:837.440000pt;}
.y12b{bottom:837.472640pt;}
.y1c0{bottom:837.474560pt;}
.y176{bottom:837.487360pt;}
.y20{bottom:838.080000pt;}
.y32d{bottom:839.045760pt;}
.yb{bottom:840.777600pt;}
.y479{bottom:841.440000pt;}
.y25d{bottom:841.605120pt;}
.yb9{bottom:841.761920pt;}
.y6e{bottom:844.163200pt;}
.y1f9{bottom:845.280000pt;}
.y450{bottom:846.080000pt;}
.y37b{bottom:846.565760pt;}
.y41f{bottom:847.520000pt;}
.y235{bottom:848.177280pt;}
.y3b8{bottom:848.960000pt;}
.y30c{bottom:849.600000pt;}
.y47a{bottom:850.080000pt;}
.y24f{bottom:850.083840pt;}
.y108{bottom:850.729600pt;}
.yeb{bottom:851.033600pt;}
.y92{bottom:853.473280pt;}
.yc9{bottom:858.080000pt;}
.yb8{bottom:860.000000pt;}
.y196{bottom:860.800000pt;}
.y1e{bottom:861.600000pt;}
.y1a4{bottom:862.240000pt;}
.y12a{bottom:862.746880pt;}
.y1bf{bottom:862.748800pt;}
.y175{bottom:862.761600pt;}
.y32c{bottom:864.320000pt;}
.y3b6{bottom:866.560000pt;}
.y25c{bottom:866.879360pt;}
.y1c{bottom:867.360000pt;}
.y24e{bottom:868.160000pt;}
.y37a{bottom:871.840000pt;}
.ya{bottom:873.108800pt;}
.y44d{bottom:873.120000pt;}
.y234{bottom:873.451520pt;}
.y107{bottom:876.003840pt;}
.y477{bottom:877.120000pt;}
.yea{bottom:877.912320pt;}
.y6d{bottom:878.725760pt;}
.y91{bottom:878.747520pt;}
.yf6{bottom:879.360000pt;}
.y44f{bottom:881.760000pt;}
.y41e{bottom:882.240000pt;}
.y1f8{bottom:882.568320pt;}
.y1a3{bottom:884.167040pt;}
.y478{bottom:885.760000pt;}
.y1a{bottom:886.400000pt;}
.y129{bottom:888.021120pt;}
.y1be{bottom:888.023040pt;}
.y174{bottom:888.035840pt;}
.y30b{bottom:888.183040pt;}
.yc8{bottom:889.120000pt;}
.y25b{bottom:892.153600pt;}
.yb6{bottom:894.870400pt;}
.y3ae{bottom:896.480000pt;}
.y195{bottom:896.485760pt;}
.y24d{bottom:896.640000pt;}
.y49a{bottom:896.960000pt;}
.y233{bottom:898.725760pt;}
.y379{bottom:900.160000pt;}
.y1a2{bottom:900.962560pt;}
.y32b{bottom:901.280000pt;}
.y106{bottom:901.440000pt;}
.y6c{bottom:904.000000pt;}
.y90{bottom:904.021760pt;}
.ye9{bottom:904.791040pt;}
.y19{bottom:904.960000pt;}
.y9{bottom:905.440000pt;}
.y3b2{bottom:905.760000pt;}
.y1f7{bottom:907.695360pt;}
.y41d{bottom:909.439520pt;}
.y44b{bottom:912.960000pt;}
.y128{bottom:913.295360pt;}
.y1bd{bottom:913.297280pt;}
.y173{bottom:913.310080pt;}
.y13e{bottom:913.457280pt;}
.y499{bottom:916.960000pt;}
.y25a{bottom:917.427840pt;}
.y1a1{bottom:917.920000pt;}
.yc7{bottom:920.160000pt;}
.yb5{bottom:920.954240pt;}
.yf5{bottom:921.120000pt;}
.y44c{bottom:921.600000pt;}
.y194{bottom:921.760000pt;}
.y18{bottom:923.200000pt;}
.y232{bottom:924.000000pt;}
.y41c{bottom:925.920000pt;}
.y24c{bottom:928.000640pt;}
.y6b{bottom:929.274240pt;}
.y105{bottom:929.760000pt;}
.y2f3{bottom:930.932000pt;}
.ye8{bottom:931.669760pt;}
.y475{bottom:932.800000pt;}
.y1f6{bottom:933.131520pt;}
.y8{bottom:935.198080pt;}
.y497{bottom:936.800000pt;}
.y1bc{bottom:938.571520pt;}
.y8f{bottom:938.584320pt;}
.y127{bottom:938.731520pt;}
.y476{bottom:941.440000pt;}
.y41b{bottom:942.559520pt;}
.y498{bottom:945.440000pt;}
.y1a0{bottom:946.408320pt;}
.yb7{bottom:947.185280pt;}
.yb4{bottom:947.200000pt;}
.y449{bottom:948.640000pt;}
.yc6{bottom:951.040000pt;}
.y14{bottom:951.360000pt;}
.y231{bottom:952.000000pt;}
.y3ab{bottom:953.440000pt;}
.y259{bottom:953.594880pt;}
.y7{bottom:954.724480pt;}
.y44a{bottom:957.280000pt;}
.y193{bottom:957.445760pt;}
.y1f5{bottom:958.405760pt;}
.ye7{bottom:958.548480pt;}
.y41a{bottom:959.040000pt;}
.y6a{bottom:959.200000pt;}
.yf3{bottom:963.040000pt;}
.y1bb{bottom:963.845760pt;}
.y8e{bottom:963.858560pt;}
.y24b{bottom:964.005760pt;}
.y17{bottom:964.800000pt;}
.y474{bottom:968.480000pt;}
.y495{bottom:972.480000pt;}
.y6{bottom:974.078080pt;}
.y104{bottom:974.240000pt;}
.y19f{bottom:978.569280pt;}
.y3ad{bottom:978.880000pt;}
.y69{bottom:979.040000pt;}
.y496{bottom:981.120000pt;}
.yc5{bottom:982.080000pt;}
.y258{bottom:982.240000pt;}
.y192{bottom:982.720000pt;}
.y1f4{bottom:983.680000pt;}
.yb3{bottom:986.880000pt;}
.y448{bottom:988.320000pt;}
.y1ba{bottom:989.120000pt;}
.y8d{bottom:989.132800pt;}
.y217{bottom:989.294720pt;}
.ye6{bottom:991.035520pt;}
.y5{bottom:993.760000pt;}
.y29b{bottom:996.157333pt;}
.y12{bottom:1001.600000pt;}
.y447{bottom:1008.160000pt;}
.yb2{bottom:1010.880000pt;}
.yc4{bottom:1011.040000pt;}
.y191{bottom:1012.000000pt;}
.y1f3{bottom:1012.160000pt;}
.y8c{bottom:1014.568960pt;}
.y1b9{bottom:1014.720000pt;}
.y126{bottom:1014.730880pt;}
.y2{bottom:1090.880000pt;}
.y1{bottom:1108.800000pt;}
.he{height:5.760000pt;}
.h51{height:11.648438pt;}
.h53{height:13.757812pt;}
.h4d{height:17.598667pt;}
.h26{height:18.160312pt;}
.hc{height:19.040000pt;}
.h12{height:19.200000pt;}
.h15{height:19.360000pt;}
.h56{height:19.840000pt;}
.h57{height:19.841333pt;}
.h58{height:19.998667pt;}
.h5d{height:20.000000pt;}
.h46{height:22.134667pt;}
.h37{height:22.245333pt;}
.hf{height:23.520000pt;}
.h2f{height:23.945625pt;}
.h7{height:26.560000pt;}
.h25{height:27.515625pt;}
.h40{height:28.878942pt;}
.h14{height:29.600000pt;}
.h4f{height:31.217812pt;}
.h5b{height:35.680000pt;}
.h5e{height:35.681333pt;}
.h5f{height:35.838667pt;}
.h5c{height:35.840000pt;}
.h30{height:36.805312pt;}
.h33{height:36.870937pt;}
.h52{height:37.499062pt;}
.h50{height:38.672812pt;}
.h2b{height:39.243750pt;}
.h62{height:39.678667pt;}
.h60{height:39.680000pt;}
.h61{height:39.840000pt;}
.h1d{height:40.020000pt;}
.h3{height:40.796250pt;}
.h18{height:41.273438pt;}
.h21{height:41.760000pt;}
.h20{height:41.920000pt;}
.h1f{height:41.921333pt;}
.h16{height:41.976562pt;}
.h2c{height:42.570000pt;}
.h2a{height:42.734473pt;}
.h22{height:42.866250pt;}
.h35{height:43.185773pt;}
.h29{height:44.059999pt;}
.hd{height:45.675938pt;}
.h55{height:45.677857pt;}
.h10{height:46.454062pt;}
.h36{height:47.041171pt;}
.h5{height:48.384000pt;}
.h45{height:48.803088pt;}
.h49{height:48.928284pt;}
.h3b{height:48.956717pt;}
.h3c{height:48.957251pt;}
.h3f{height:49.047977pt;}
.h4{height:49.420800pt;}
.h47{height:49.634487pt;}
.h28{height:49.691388pt;}
.h3e{height:49.790733pt;}
.h9{height:50.240000pt;}
.h1a{height:50.628750pt;}
.h1e{height:50.635150pt;}
.h1b{height:51.491250pt;}
.h5a{height:51.520000pt;}
.h63{height:51.678667pt;}
.h59{height:51.680000pt;}
.h2d{height:52.945965pt;}
.h24{height:53.048365pt;}
.h31{height:53.412915pt;}
.h43{height:53.494835pt;}
.h2e{height:53.499955pt;}
.h39{height:53.517875pt;}
.h32{height:53.576755pt;}
.ha{height:55.968750pt;}
.h4b{height:56.958667pt;}
.h23{height:60.446250pt;}
.hb{height:64.960000pt;}
.h19{height:65.483437pt;}
.h38{height:71.610616pt;}
.h8{height:73.191563pt;}
.h1c{height:74.438437pt;}
.h4a{height:74.720000pt;}
.h6{height:76.419200pt;}
.h17{height:122.400000pt;}
.h41{height:140.489333pt;}
.h3a{height:140.630667pt;}
.h3d{height:140.632000pt;}
.h42{height:140.773333pt;}
.h4c{height:176.321333pt;}
.h13{height:227.360000pt;}
.h11{height:253.600000pt;}
.h54{height:278.081333pt;}
.h27{height:288.628000pt;}
.h4e{height:290.880000pt;}
.h34{height:340.374667pt;}
.h44{height:349.338667pt;}
.h48{height:349.622667pt;}
.h2{height:1122.548000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:23.614667pt;}
.w13{width:60.640000pt;}
.w4{width:133.600000pt;}
.wd{width:143.821333pt;}
.w8{width:207.478667pt;}
.w11{width:304.000000pt;}
.w12{width:304.160000pt;}
.w5{width:471.200000pt;}
.w14{width:549.440000pt;}
.w6{width:560.805333pt;}
.w3{width:595.518667pt;}
.wb{width:597.228000pt;}
.wa{width:597.229333pt;}
.w7{width:600.826667pt;}
.wc{width:601.030667pt;}
.w9{width:601.100000pt;}
.we{width:601.172000pt;}
.w10{width:608.160000pt;}
.w2{width:793.746667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:2.240000pt;}
.x7{left:7.200000pt;}
.x66{left:17.564133pt;}
.x6b{left:22.091867pt;}
.x4b{left:23.398667pt;}
.x73{left:26.359600pt;}
.x4c{left:27.575867pt;}
.x6a{left:30.024400pt;}
.x6e{left:31.212667pt;}
.x39{left:35.029193pt;}
.x3a{left:38.883733pt;}
.x38{left:46.570800pt;}
.x3c{left:50.202745pt;}
.x6c{left:61.083200pt;}
.x6f{left:62.229067pt;}
.x72{left:63.184400pt;}
.x3b{left:66.099200pt;}
.x4d{left:69.869067pt;}
.x4e{left:87.028400pt;}
.x64{left:88.936133pt;}
.x13{left:94.400000pt;}
.x45{left:95.681920pt;}
.x69{left:98.152000pt;}
.x1{left:99.200000pt;}
.x3{left:101.600000pt;}
.x5{left:103.840000pt;}
.xa{left:108.160000pt;}
.x1a{left:110.400000pt;}
.x48{left:112.314240pt;}
.x20{left:113.280000pt;}
.x16{left:116.805760pt;}
.x21{left:118.423040pt;}
.x4f{left:121.347200pt;}
.xd{left:123.040000pt;}
.x83{left:124.160000pt;}
.x84{left:125.440000pt;}
.x68{left:128.963840pt;}
.x1b{left:130.560000pt;}
.x1f{left:132.160000pt;}
.x50{left:138.506533pt;}
.x89{left:139.680000pt;}
.x75{left:141.600000pt;}
.x1c{left:142.560000pt;}
.x43{left:143.680000pt;}
.x2e{left:144.664133pt;}
.x81{left:148.320000pt;}
.x51{left:155.666000pt;}
.x7a{left:159.520000pt;}
.x8a{left:162.240000pt;}
.x34{left:169.728198pt;}
.x1e{left:172.000000pt;}
.x2a{left:175.643318pt;}
.x26{left:178.720000pt;}
.x33{left:185.622667pt;}
.x82{left:186.720000pt;}
.x52{left:189.984667pt;}
.x29{left:193.344400pt;}
.x10{left:196.320000pt;}
.x79{left:198.240000pt;}
.x7e{left:203.680000pt;}
.x53{left:207.143867pt;}
.x4a{left:208.481280pt;}
.x78{left:210.560000pt;}
.x77{left:211.520000pt;}
.x7c{left:214.720000pt;}
.x74{left:218.064000pt;}
.x76{left:221.760000pt;}
.x2{left:223.200000pt;}
.x1d{left:228.000000pt;}
.x7d{left:235.520000pt;}
.x23{left:237.463680pt;}
.x80{left:240.800000pt;}
.x28{left:242.205893pt;}
.x11{left:246.080000pt;}
.x9{left:251.680000pt;}
.x27{left:255.165867pt;}
.x54{left:258.622000pt;}
.x3e{left:266.720000pt;}
.x55{left:275.781467pt;}
.x4{left:282.240000pt;}
.x7b{left:283.200000pt;}
.x7f{left:288.320000pt;}
.x56{left:292.940800pt;}
.x57{left:310.100133pt;}
.x3f{left:314.720000pt;}
.x3d{left:319.422667pt;}
.xc{left:324.160000pt;}
.x58{left:327.259467pt;}
.x31{left:335.002255pt;}
.x65{left:336.768000pt;}
.x30{left:341.345733pt;}
.x8{left:345.120000pt;}
.x70{left:353.742933pt;}
.x2d{left:356.385333pt;}
.x59{left:361.578267pt;}
.x2b{left:364.799200pt;}
.x2c{left:370.761072pt;}
.x5a{left:378.737600pt;}
.x5b{left:395.897067pt;}
.x46{left:396.807680pt;}
.x85{left:398.400000pt;}
.xb{left:421.280000pt;}
.x6d{left:424.153867pt;}
.x5c{left:447.375067pt;}
.xe{left:451.520000pt;}
.x35{left:455.691733pt;}
.x2f{left:457.194000pt;}
.x37{left:458.661777pt;}
.x32{left:463.756800pt;}
.x36{left:468.416133pt;}
.xf{left:475.040000pt;}
.x71{left:480.803600pt;}
.x5d{left:481.693867pt;}
.x5e{left:498.853067pt;}
.x12{left:502.400000pt;}
.x87{left:504.000000pt;}
.x88{left:510.400000pt;}
.x5f{left:516.012667pt;}
.x60{left:533.172000pt;}
.x61{left:550.331200pt;}
.x62{left:567.490667pt;}
.x15{left:571.521280pt;}
.x63{left:584.650133pt;}
.x40{left:606.560000pt;}
.x86{left:608.800000pt;}
.x41{left:613.120000pt;}
.x19{left:617.123840pt;}
.x17{left:647.373440pt;}
.x47{left:659.677440pt;}
.x44{left:661.768960pt;}
.x42{left:671.232640pt;}
.x25{left:677.135360pt;}
.x24{left:684.320000pt;}
.x14{left:691.840000pt;}
.x67{left:695.683840pt;}
.x49{left:697.759360pt;}
.x22{left:699.230080pt;}
.x18{left:725.610240pt;}
}




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