
    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_16924d89f9b402a4caf56ab0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.820801;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_436111881e52df9699b91e6b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_83ade068b128a44453dbd242.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.692383;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_d6d0cbb62549ba3c3a630a92.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.750000;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_efafebacce6a515d24d8f046.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.919922;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_c1b5aae7ee9e5b6fd5fb2874.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.118000;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_1e99d4d7521db712df0ee36f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_bd690ed24a68e9643d590b5d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_851c2e4dd3f06ed0e10c141d.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m5{transform:matrix(0.000000,-0.250051,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250051,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250051,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m4{transform:matrix(0.249949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249949,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);}
.m2{transform:matrix(0.251373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251373,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v2{vertical-align:-20.879400px;}
.v5{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.119400px;}
.v3{vertical-align:23.807520px;}
.v4{vertical-align:33.140880px;}
.ls117{letter-spacing:-1.821472px;}
.lsfc{letter-spacing:-1.728000px;}
.lsd0{letter-spacing:-1.613520px;}
.ls10b{letter-spacing:-1.593788px;}
.ls10c{letter-spacing:-1.479946px;}
.lsd3{letter-spacing:-1.434240px;}
.ls10f{letter-spacing:-1.404000px;}
.lsd1{letter-spacing:-1.374480px;}
.lsf2{letter-spacing:-1.296000px;}
.ls118{letter-spacing:-1.252262px;}
.ls10d{letter-spacing:-1.195341px;}
.ls10e{letter-spacing:-1.138420px;}
.lsf4{letter-spacing:-1.134000px;}
.ls119{letter-spacing:-1.080000px;}
.ls55{letter-spacing:-1.015920px;}
.ls4c{letter-spacing:-0.993600px;}
.ls11b{letter-spacing:-0.918000px;}
.lsd2{letter-spacing:-0.896400px;}
.ls11a{letter-spacing:-0.853815px;}
.ls54{letter-spacing:-0.836640px;}
.ls56{letter-spacing:-0.776880px;}
.ls10a{letter-spacing:-0.756000px;}
.ls52{letter-spacing:-0.662400px;}
.lsf6{letter-spacing:-0.648000px;}
.ls30{letter-spacing:-0.627120px;}
.lsf0{letter-spacing:-0.626131px;}
.lsa8{letter-spacing:-0.604800px;}
.ls4d{letter-spacing:-0.596160px;}
.ls100{letter-spacing:-0.569210px;}
.ls17{letter-spacing:-0.540000px;}
.ls24{letter-spacing:-0.530640px;}
.lsf3{letter-spacing:-0.486000px;}
.ls116{letter-spacing:-0.455368px;}
.ls27{letter-spacing:-0.434160px;}
.lsed{letter-spacing:-0.398447px;}
.ls61{letter-spacing:-0.397440px;}
.ls16{letter-spacing:-0.378000px;}
.ls69{letter-spacing:-0.358560px;}
.lsad{letter-spacing:-0.349784px;}
.ls32{letter-spacing:-0.337680px;}
.ls14{letter-spacing:-0.331200px;}
.lsc{letter-spacing:-0.324000px;}
.ls2c{letter-spacing:-0.305097px;}
.ls42{letter-spacing:-0.298800px;}
.ls26{letter-spacing:-0.289440px;}
.lsef{letter-spacing:-0.284605px;}
.lsb{letter-spacing:-0.270000px;}
.ls12{letter-spacing:-0.264960px;}
.lse{letter-spacing:-0.263520px;}
.ls28{letter-spacing:-0.241200px;}
.ls44{letter-spacing:-0.239040px;}
.ls115{letter-spacing:-0.227684px;}
.lsab{letter-spacing:-0.226800px;}
.lsa{letter-spacing:-0.216000px;}
.ls4b{letter-spacing:-0.198720px;}
.ls53{letter-spacing:-0.188978px;}
.ls1b{letter-spacing:-0.179280px;}
.lsf5{letter-spacing:-0.170763px;}
.ls8f{letter-spacing:-0.162000px;}
.ls33{letter-spacing:-0.144720px;}
.ls3f{letter-spacing:-0.144000px;}
.lsac{letter-spacing:-0.136080px;}
.lsf{letter-spacing:-0.131760px;}
.ls8d{letter-spacing:-0.125985px;}
.ls1f{letter-spacing:-0.119520px;}
.lsd{letter-spacing:-0.108000px;}
.lsb0{letter-spacing:-0.099938px;}
.lsae{letter-spacing:-0.099918px;}
.ls1a{letter-spacing:-0.072000px;}
.ls5b{letter-spacing:-0.062993px;}
.ls1c{letter-spacing:-0.059760px;}
.lsfe{letter-spacing:-0.056921px;}
.lsf1{letter-spacing:-0.054000px;}
.ls2b{letter-spacing:-0.050849px;}
.ls25{letter-spacing:-0.048240px;}
.ls9{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.048240px;}
.ls35{letter-spacing:0.054000px;}
.lsec{letter-spacing:0.056921px;}
.ls1e{letter-spacing:0.059760px;}
.ls57{letter-spacing:0.062993px;}
.ls13{letter-spacing:0.066240px;}
.ls40{letter-spacing:0.072000px;}
.lse2{letter-spacing:0.080640px;}
.lsa9{letter-spacing:0.090720px;}
.ls5{letter-spacing:0.096480px;}
.ls2d{letter-spacing:0.101699px;}
.ls101{letter-spacing:0.108000px;}
.ls21{letter-spacing:0.119520px;}
.ls6f{letter-spacing:0.125496px;}
.ls70{letter-spacing:0.125985px;}
.ls11{letter-spacing:0.131760px;}
.ls4f{letter-spacing:0.132480px;}
.ls59{letter-spacing:0.137448px;}
.ls46{letter-spacing:0.144000px;}
.ls2a{letter-spacing:0.144720px;}
.ls15{letter-spacing:0.162000px;}
.ls49{letter-spacing:0.167328px;}
.lseb{letter-spacing:0.170763px;}
.lsd7{letter-spacing:0.173304px;}
.ls4e{letter-spacing:0.179280px;}
.lsfd{letter-spacing:0.216000px;}
.lsaa{letter-spacing:0.226800px;}
.lsff{letter-spacing:0.227684px;}
.ls3c{letter-spacing:0.239040px;}
.ls71{letter-spacing:0.251970px;}
.ls1{letter-spacing:0.263520px;}
.ls7{letter-spacing:0.265320px;}
.lsde{letter-spacing:0.268920px;}
.lsce{letter-spacing:0.270000px;}
.lsee{letter-spacing:0.284605px;}
.ls2f{letter-spacing:0.289440px;}
.ls1d{letter-spacing:0.298800px;}
.ls2e{letter-spacing:0.305097px;}
.ls19{letter-spacing:0.324000px;}
.ls51{letter-spacing:0.328680px;}
.ls60{letter-spacing:0.331200px;}
.lse4{letter-spacing:0.341526px;}
.ls43{letter-spacing:0.358560px;}
.lsd9{letter-spacing:0.364536px;}
.ls18{letter-spacing:0.378000px;}
.ls10{letter-spacing:0.395280px;}
.lsea{letter-spacing:0.398447px;}
.ls47{letter-spacing:0.418320px;}
.lsaf{letter-spacing:0.449631px;}
.ls64{letter-spacing:0.478080px;}
.lsda{letter-spacing:0.490032px;}
.ls107{letter-spacing:0.512289px;}
.ls0{letter-spacing:0.527040px;}
.ls20{letter-spacing:0.537840px;}
.lsa4{letter-spacing:0.543816px;}
.ls4{letter-spacing:0.567360px;}
.ls5f{letter-spacing:0.597600px;}
.lsdc{letter-spacing:0.621504px;}
.lse9{letter-spacing:0.648000px;}
.ls41{letter-spacing:0.657360px;}
.ls65{letter-spacing:0.687240px;}
.ls45{letter-spacing:0.717120px;}
.ls63{letter-spacing:0.723096px;}
.ls91{letter-spacing:0.741024px;}
.ls5c{letter-spacing:0.776880px;}
.lsa3{letter-spacing:0.794808px;}
.ls22{letter-spacing:0.836640px;}
.ls5d{letter-spacing:0.896400px;}
.ls68{letter-spacing:0.956160px;}
.ls73{letter-spacing:1.015920px;}
.ls90{letter-spacing:1.109520px;}
.ls31{letter-spacing:1.157760px;}
.ls11f{letter-spacing:1.254960px;}
.ls11e{letter-spacing:1.314720px;}
.lse3{letter-spacing:1.328400px;}
.lse8{letter-spacing:1.366200px;}
.ls8e{letter-spacing:1.374480px;}
.ls34{letter-spacing:1.381699px;}
.ls23{letter-spacing:1.398960px;}
.lse7{letter-spacing:1.404000px;}
.ls36{letter-spacing:1.434240px;}
.ls11c{letter-spacing:1.437840px;}
.ls11d{letter-spacing:1.494000px;}
.ls6d{letter-spacing:1.553760px;}
.lsa7{letter-spacing:1.620000px;}
.ls6e{letter-spacing:1.782000px;}
.lscd{letter-spacing:1.856880px;}
.ls92{letter-spacing:1.912320px;}
.ls72{letter-spacing:2.091600px;}
.lsf7{letter-spacing:2.106000px;}
.ls37{letter-spacing:2.151360px;}
.ls104{letter-spacing:2.808000px;}
.ls3a{letter-spacing:2.868480px;}
.ls111{letter-spacing:2.899800px;}
.lsfa{letter-spacing:2.959892px;}
.ls106{letter-spacing:3.364200px;}
.ls102{letter-spacing:3.531600px;}
.ls75{letter-spacing:3.564000px;}
.ls39{letter-spacing:3.585600px;}
.lsdd{letter-spacing:3.609504px;}
.ls110{letter-spacing:3.756786px;}
.ls5e{letter-spacing:3.764880px;}
.ls108{letter-spacing:4.244400px;}
.lse0{letter-spacing:4.266000px;}
.lsdf{letter-spacing:4.287600px;}
.ls2{letter-spacing:4.302720px;}
.ls113{letter-spacing:4.496759px;}
.ls93{letter-spacing:4.968000px;}
.ls105{letter-spacing:4.989600px;}
.ls62{letter-spacing:5.019840px;}
.lsdb{letter-spacing:5.234976px;}
.lsa5{letter-spacing:5.282784px;}
.ls103{letter-spacing:5.643000px;}
.ls6{letter-spacing:5.644080px;}
.lse5{letter-spacing:5.724000px;}
.ls38{letter-spacing:5.736960px;}
.ls48{letter-spacing:6.454080px;}
.lsd4{letter-spacing:6.495912px;}
.ls112{letter-spacing:7.128000px;}
.ls3b{letter-spacing:7.171200px;}
.lsd5{letter-spacing:7.219008px;}
.lsd6{letter-spacing:7.302672px;}
.ls114{letter-spacing:7.513572px;}
.lse6{letter-spacing:7.884000px;}
.ls50{letter-spacing:7.888320px;}
.lsd8{letter-spacing:7.942104px;}
.lsf8{letter-spacing:8.586000px;}
.ls3{letter-spacing:8.665200px;}
.ls6b{letter-spacing:8.677152px;}
.ls58{letter-spacing:9.382320px;}
.lse1{letter-spacing:10.044000px;}
.ls5a{letter-spacing:10.099440px;}
.lsa6{letter-spacing:10.171152px;}
.lscf{letter-spacing:10.816560px;}
.ls109{letter-spacing:11.448000px;}
.ls74{letter-spacing:11.533680px;}
.ls3d{letter-spacing:13.685040px;}
.lsf9{letter-spacing:14.364000px;}
.ls3e{letter-spacing:14.402160px;}
.ls67{letter-spacing:15.119280px;}
.ls66{letter-spacing:15.836400px;}
.ls4a{letter-spacing:16.553520px;}
.lsfb{letter-spacing:18.684000px;}
.ls6a{letter-spacing:22.290480px;}
.ls6c{letter-spacing:25.218720px;}
.ls76{letter-spacing:30.150000px;}
.ls7d{letter-spacing:34.424064px;}
.ls77{letter-spacing:37.337760px;}
.ls7c{letter-spacing:40.159800px;}
.ls78{letter-spacing:43.801920px;}
.ls79{letter-spacing:49.561776px;}
.lsa2{letter-spacing:52.398288px;}
.ls99{letter-spacing:53.121888px;}
.lsba{letter-spacing:54.588384px;}
.ls82{letter-spacing:55.311984px;}
.lsa0{letter-spacing:56.054880px;}
.ls7e{letter-spacing:56.710944px;}
.lsc1{letter-spacing:60.396480px;}
.lsa1{letter-spacing:62.499744px;}
.ls85{letter-spacing:62.519040px;}
.ls98{letter-spacing:63.927648px;}
.lsc0{letter-spacing:65.394144px;}
.lsc2{letter-spacing:66.793104px;}
.ls9d{letter-spacing:66.822048px;}
.lsb9{letter-spacing:68.307840px;}
.lsc5{letter-spacing:70.430400px;}
.ls9c{letter-spacing:70.440048px;}
.lsbf{letter-spacing:71.877600px;}
.lsb8{letter-spacing:72.581904px;}
.ls97{letter-spacing:75.457008px;}
.ls9f{letter-spacing:76.180608px;}
.ls9a{letter-spacing:76.219200px;}
.ls9e{letter-spacing:77.666400px;}
.lsb7{letter-spacing:78.322464px;}
.ls96{letter-spacing:79.113600px;}
.ls9b{letter-spacing:83.368368px;}
.ls89{letter-spacing:83.406960px;}
.lsc4{letter-spacing:87.681024px;}
.lsbe{letter-spacing:88.404624px;}
.lsb6{letter-spacing:95.592384px;}
.lsc3{letter-spacing:103.571280px;}
.lsbc{letter-spacing:104.275584px;}
.lsb4{letter-spacing:105.674544px;}
.lsbd{letter-spacing:106.465680px;}
.lsb5{letter-spacing:107.189280px;}
.lsbb{letter-spacing:110.759040px;}
.ls7a{letter-spacing:115.824240px;}
.lsb3{letter-spacing:117.927504px;}
.ls95{letter-spacing:159.722640px;}
.lsca{letter-spacing:166.235040px;}
.lsb2{letter-spacing:176.992560px;}
.lscc{letter-spacing:295.084080px;}
.lsc6{letter-spacing:298.702080px;}
.ls8{letter-spacing:338.294160px;}
.lsc8{letter-spacing:386.547120px;}
.ls8c{letter-spacing:410.281200px;}
.ls7f{letter-spacing:420.363360px;}
.ls80{letter-spacing:428.998320px;}
.ls7b{letter-spacing:437.633280px;}
.ls8a{letter-spacing:438.356880px;}
.lsc7{letter-spacing:491.662080px;}
.ls83{letter-spacing:603.241200px;}
.ls86{letter-spacing:627.747120px;}
.lscb{letter-spacing:658.717200px;}
.ls94{letter-spacing:727.796880px;}
.lsc9{letter-spacing:734.309280px;}
.ls88{letter-spacing:766.678320px;}
.ls8b{letter-spacing:773.914320px;}
.ls81{letter-spacing:790.460640px;}
.ls87{letter-spacing:807.730560px;}
.ls84{letter-spacing:881.875440px;}
.lsb1{letter-spacing:1131.035040px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(148,54,52),0 0.015em rgb(148,54,52),0.015em 0 rgb(148,54,52),0 -0.015em  rgb(148,54,52);}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(148,54,52);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-29.118960px;}
.ws118{word-spacing:-16.314480px;}
.ws1f8{word-spacing:-16.056000px;}
.ws5b{word-spacing:-15.912000px;}
.ws13a{word-spacing:-15.840000px;}
.wsa{word-spacing:-15.768000px;}
.ws153{word-spacing:-15.696000px;}
.ws154{word-spacing:-15.624000px;}
.ws10f{word-spacing:-15.307195px;}
.wsa8{word-spacing:-15.181210px;}
.wsc0{word-spacing:-15.179040px;}
.wsbf{word-spacing:-15.118217px;}
.ws10e{word-spacing:-15.055224px;}
.wsca{word-spacing:-14.999760px;}
.wsa7{word-spacing:-14.992232px;}
.wse5{word-spacing:-14.940000px;}
.wsfb{word-spacing:-14.880240px;}
.ws8e{word-spacing:-14.820480px;}
.ws63{word-spacing:-14.760720px;}
.ws61{word-spacing:-14.700960px;}
.ws5d{word-spacing:-14.641200px;}
.wscb{word-spacing:-14.639040px;}
.ws152{word-spacing:-14.581440px;}
.ws8a{word-spacing:-14.572800px;}
.ws8d{word-spacing:-14.521680px;}
.wsb{word-spacing:-14.461920px;}
.wsc{word-spacing:-14.402160px;}
.ws62{word-spacing:-14.342400px;}
.ws5f{word-spacing:-14.282640px;}
.ws4{word-spacing:-14.241600px;}
.wsd{word-spacing:-14.222880px;}
.ws5e{word-spacing:-14.163120px;}
.ws5c{word-spacing:-14.103360px;}
.ws186{word-spacing:-14.059486px;}
.wsed{word-spacing:-14.043600px;}
.ws8c{word-spacing:-13.976640px;}
.wsa6{word-spacing:-13.910400px;}
.ws187{word-spacing:-13.888723px;}
.ws1d4{word-spacing:-13.774881px;}
.ws160{word-spacing:-13.717960px;}
.ws1b1{word-spacing:-13.661039px;}
.ws13b{word-spacing:-13.625280px;}
.ws8b{word-spacing:-13.579200px;}
.ws1b2{word-spacing:-13.547197px;}
.ws1cf{word-spacing:-13.490276px;}
.ws161{word-spacing:-13.433356px;}
.ws7{word-spacing:-13.392000px;}
.ws8{word-spacing:-13.338000px;}
.ws15f{word-spacing:-13.319514px;}
.ws136{word-spacing:-13.284000px;}
.ws1d5{word-spacing:-13.230000px;}
.ws9{word-spacing:-13.176000px;}
.ws1d3{word-spacing:-13.148751px;}
.ws189{word-spacing:-13.122000px;}
.ws162{word-spacing:-13.091830px;}
.ws1b0{word-spacing:-13.068000px;}
.ws18{word-spacing:-13.024800px;}
.ws135{word-spacing:-13.014000px;}
.ws188{word-spacing:-12.960000px;}
.ws105{word-spacing:-12.908160px;}
.ws1d1{word-spacing:-12.864146px;}
.ws1af{word-spacing:-12.852000px;}
.ws184{word-spacing:-12.798000px;}
.ws13c{word-spacing:-12.788640px;}
.ws112{word-spacing:-12.783600px;}
.ws11e{word-spacing:-12.744000px;}
.ws111{word-spacing:-12.735360px;}
.ws1d0{word-spacing:-12.690000px;}
.ws6{word-spacing:-12.636000px;}
.ws16{word-spacing:-12.559808px;}
.ws5a{word-spacing:-12.528000px;}
.ws134{word-spacing:-12.474000px;}
.ws1d2{word-spacing:-12.238015px;}
.ws1b3{word-spacing:-12.124173px;}
.ws1{word-spacing:-12.096000px;}
.ws15{word-spacing:-11.949615px;}
.ws0{word-spacing:-11.934000px;}
.ws17{word-spacing:-11.915280px;}
.ws1c{word-spacing:-11.891160px;}
.ws14{word-spacing:-11.770560px;}
.ws125{word-spacing:-11.740365px;}
.ws110{word-spacing:-11.722320px;}
.ws13{word-spacing:-11.674080px;}
.ws12{word-spacing:-11.625840px;}
.wsf{word-spacing:-11.577600px;}
.ws1a{word-spacing:-11.481120px;}
.ws1b{word-spacing:-11.384640px;}
.ws10{word-spacing:-11.336400px;}
.ws11f{word-spacing:-11.288160px;}
.ws185{word-spacing:-11.286000px;}
.ws126{word-spacing:-11.193101px;}
.ws11{word-spacing:-11.191680px;}
.wse{word-spacing:-11.095200px;}
.ws19{word-spacing:-10.998720px;}
.ws124{word-spacing:-10.943255px;}
.ws123{word-spacing:-10.795680px;}
.ws3{word-spacing:-9.187200px;}
.ws60{word-spacing:-8.820000px;}
.ws5{word-spacing:-7.981920px;}
.ws122{word-spacing:-7.378560px;}
.ws121{word-spacing:-7.287840px;}
.ws120{word-spacing:-6.683040px;}
.ws130{word-spacing:-4.596228px;}
.ws12f{word-spacing:-2.847663px;}
.ws59{word-spacing:-2.191661px;}
.ws131{word-spacing:-1.698606px;}
.ws53{word-spacing:-1.398960px;}
.ws137{word-spacing:-1.374480px;}
.ws55{word-spacing:-1.157760px;}
.ws1ab{word-spacing:-1.138420px;}
.ws107{word-spacing:-1.134000px;}
.ws54{word-spacing:-1.109520px;}
.ws1c9{word-spacing:-1.081499px;}
.ws10d{word-spacing:-1.015920px;}
.ws91{word-spacing:-0.993600px;}
.ws1b4{word-spacing:-0.967657px;}
.wsf2{word-spacing:-0.956160px;}
.wsc8{word-spacing:-0.896400px;}
.ws3d{word-spacing:-0.836640px;}
.ws1ad{word-spacing:-0.810000px;}
.wsdc{word-spacing:-0.776880px;}
.ws116{word-spacing:-0.771840px;}
.ws7c{word-spacing:-0.717120px;}
.ws195{word-spacing:-0.702000px;}
.ws25{word-spacing:-0.658800px;}
.ws69{word-spacing:-0.657360px;}
.ws182{word-spacing:-0.626131px;}
.ws13e{word-spacing:-0.597600px;}
.ws1db{word-spacing:-0.540000px;}
.ws36{word-spacing:-0.537840px;}
.wsd7{word-spacing:-0.529920px;}
.wse7{word-spacing:-0.478080px;}
.ws19a{word-spacing:-0.455368px;}
.ws1c8{word-spacing:-0.432000px;}
.wsef{word-spacing:-0.418320px;}
.ws164{word-spacing:-0.398447px;}
.ws138{word-spacing:-0.378000px;}
.ws7a{word-spacing:-0.358560px;}
.ws1a3{word-spacing:-0.341526px;}
.wsd8{word-spacing:-0.331200px;}
.ws172{word-spacing:-0.324000px;}
.ws2e{word-spacing:-0.298800px;}
.ws1da{word-spacing:-0.284605px;}
.ws1bd{word-spacing:-0.270000px;}
.ws27{word-spacing:-0.264960px;}
.ws10c{word-spacing:-0.251970px;}
.ws133{word-spacing:-0.241200px;}
.ws66{word-spacing:-0.239040px;}
.ws179{word-spacing:-0.227684px;}
.ws29{word-spacing:-0.216000px;}
.wse0{word-spacing:-0.179280px;}
.ws178{word-spacing:-0.170763px;}
.ws170{word-spacing:-0.162000px;}
.ws132{word-spacing:-0.144720px;}
.ws24{word-spacing:-0.131760px;}
.ws39{word-spacing:-0.119520px;}
.ws169{word-spacing:-0.113842px;}
.ws17f{word-spacing:-0.108000px;}
.ws51{word-spacing:-0.101699px;}
.ws46{word-spacing:-0.096480px;}
.ws13d{word-spacing:-0.072000px;}
.wsbe{word-spacing:-0.062993px;}
.ws73{word-spacing:-0.059760px;}
.ws16e{word-spacing:-0.056921px;}
.ws64{word-spacing:-0.054000px;}
.ws57{word-spacing:-0.048240px;}
.ws1e{word-spacing:0.000000px;}
.ws117{word-spacing:0.048240px;}
.ws50{word-spacing:0.050849px;}
.ws1d{word-spacing:0.054000px;}
.ws44{word-spacing:0.059760px;}
.ws26{word-spacing:0.066240px;}
.ws90{word-spacing:0.072000px;}
.ws22{word-spacing:0.108000px;}
.ws67{word-spacing:0.119520px;}
.ws28{word-spacing:0.132480px;}
.ws68{word-spacing:0.144000px;}
.ws58{word-spacing:0.144720px;}
.ws23{word-spacing:0.162000px;}
.ws1c7{word-spacing:0.170763px;}
.ws34{word-spacing:0.179280px;}
.wsb6{word-spacing:0.188978px;}
.ws56{word-spacing:0.192960px;}
.ws92{word-spacing:0.198720px;}
.ws1f{word-spacing:0.216000px;}
.ws16f{word-spacing:0.227684px;}
.wscf{word-spacing:0.239040px;}
.ws4b{word-spacing:0.241200px;}
.wsb4{word-spacing:0.264960px;}
.ws65{word-spacing:0.270000px;}
.ws19c{word-spacing:0.284605px;}
.ws12b{word-spacing:0.289440px;}
.wsa5{word-spacing:0.298800px;}
.ws20{word-spacing:0.324000px;}
.ws93{word-spacing:0.331200px;}
.ws52{word-spacing:0.337680px;}
.ws15d{word-spacing:0.358560px;}
.ws12c{word-spacing:0.362880px;}
.ws21{word-spacing:0.378000px;}
.wse4{word-spacing:0.418320px;}
.ws1d9{word-spacing:0.455368px;}
.ws166{word-spacing:0.486000px;}
.ws165{word-spacing:0.512289px;}
.ws2a{word-spacing:0.540000px;}
.ws1a9{word-spacing:0.569210px;}
.ws1a4{word-spacing:0.594000px;}
.wsde{word-spacing:0.597600px;}
.wsa9{word-spacing:0.657360px;}
.ws1ba{word-spacing:0.702000px;}
.wsa0{word-spacing:0.717120px;}
.ws1e6{word-spacing:0.739973px;}
.ws108{word-spacing:0.776880px;}
.ws9f{word-spacing:0.836640px;}
.ws147{word-spacing:0.861120px;}
.ws43{word-spacing:0.896400px;}
.ws1e5{word-spacing:0.918000px;}
.ws19f{word-spacing:0.967657px;}
.wsbb{word-spacing:1.015920px;}
.ws6c{word-spacing:1.075680px;}
.ws1f9{word-spacing:1.135440px;}
.ws1ce{word-spacing:1.188000px;}
.ws151{word-spacing:1.195200px;}
.ws174{word-spacing:1.242000px;}
.ws1f1{word-spacing:1.296000px;}
.ws1bb{word-spacing:1.309183px;}
.wsb5{word-spacing:1.314720px;}
.ws1f5{word-spacing:1.350000px;}
.ws6d{word-spacing:1.374480px;}
.ws1e7{word-spacing:1.423025px;}
.ws6a{word-spacing:1.434240px;}
.ws1cb{word-spacing:1.479946px;}
.ws149{word-spacing:1.494000px;}
.ws12d{word-spacing:1.542240px;}
.wsec{word-spacing:1.553760px;}
.ws3a{word-spacing:1.613520px;}
.ws106{word-spacing:1.673280px;}
.ws1df{word-spacing:1.728000px;}
.ws6b{word-spacing:1.733040px;}
.ws1e9{word-spacing:1.764551px;}
.ws1e0{word-spacing:1.782000px;}
.ws1cd{word-spacing:1.821472px;}
.ws1cc{word-spacing:1.878393px;}
.ws18d{word-spacing:1.890000px;}
.wsa3{word-spacing:1.912320px;}
.ws1e8{word-spacing:1.935314px;}
.ws173{word-spacing:1.944000px;}
.ws48{word-spacing:1.977840px;}
.ws82{word-spacing:2.031840px;}
.ws1a5{word-spacing:2.049156px;}
.ws77{word-spacing:2.091600px;}
.ws47{word-spacing:2.122560px;}
.wsfc{word-spacing:2.151360px;}
.ws190{word-spacing:2.160000px;}
.ws10b{word-spacing:2.211120px;}
.ws76{word-spacing:2.270880px;}
.ws18e{word-spacing:2.276840px;}
.ws3e{word-spacing:2.330640px;}
.ws175{word-spacing:2.376000px;}
.wsdd{word-spacing:2.390400px;}
.wsd9{word-spacing:2.450160px;}
.ws114{word-spacing:2.484000px;}
.ws18f{word-spacing:2.504524px;}
.ws1a6{word-spacing:2.618366px;}
.ws16a{word-spacing:2.646000px;}
.wsc6{word-spacing:2.748960px;}
.ws183{word-spacing:2.754000px;}
.ws196{word-spacing:2.789129px;}
.ws35{word-spacing:2.808720px;}
.ws83{word-spacing:2.868480px;}
.ws158{word-spacing:2.928240px;}
.ws1e2{word-spacing:2.970000px;}
.ws2f{word-spacing:2.988000px;}
.ws30{word-spacing:3.047760px;}
.ws1ea{word-spacing:3.078000px;}
.wsd6{word-spacing:3.107520px;}
.wsc9{word-spacing:3.167280px;}
.ws19e{word-spacing:3.186000px;}
.ws113{word-spacing:3.212621px;}
.wsd2{word-spacing:3.227040px;}
.ws1b5{word-spacing:3.240000px;}
.ws197{word-spacing:3.244497px;}
.ws14a{word-spacing:3.286800px;}
.ws181{word-spacing:3.294000px;}
.wsba{word-spacing:3.346560px;}
.ws1a8{word-spacing:3.402000px;}
.wscc{word-spacing:3.466080px;}
.wse9{word-spacing:3.525840px;}
.ws33{word-spacing:3.585600px;}
.ws1bc{word-spacing:3.586023px;}
.ws1b6{word-spacing:3.618000px;}
.wsb9{word-spacing:3.645360px;}
.ws3c{word-spacing:3.705120px;}
.ws2d{word-spacing:3.764880px;}
.ws115{word-spacing:3.834000px;}
.wsc5{word-spacing:3.884400px;}
.ws127{word-spacing:3.942000px;}
.ws191{word-spacing:4.041391px;}
.wsb3{word-spacing:4.063680px;}
.ws167{word-spacing:4.104000px;}
.ws72{word-spacing:4.183200px;}
.ws1f7{word-spacing:4.212000px;}
.ws85{word-spacing:4.242960px;}
.ws1ee{word-spacing:4.269075px;}
.ws71{word-spacing:4.302720px;}
.ws1c2{word-spacing:4.320000px;}
.ws1eb{word-spacing:4.325996px;}
.wsf9{word-spacing:4.362480px;}
.wsdf{word-spacing:4.422240px;}
.ws171{word-spacing:4.439838px;}
.ws3f{word-spacing:4.482000px;}
.ws168{word-spacing:4.536000px;}
.ws18a{word-spacing:4.590000px;}
.wsb2{word-spacing:4.601520px;}
.ws14d{word-spacing:4.721040px;}
.wsa4{word-spacing:4.780800px;}
.ws19d{word-spacing:4.781364px;}
.ws1be{word-spacing:4.806000px;}
.ws49{word-spacing:4.824000px;}
.ws180{word-spacing:4.860000px;}
.wsbc{word-spacing:4.900320px;}
.ws1ef{word-spacing:4.914000px;}
.ws9d{word-spacing:4.960080px;}
.wsa1{word-spacing:5.019840px;}
.ws1e1{word-spacing:5.065969px;}
.wsac{word-spacing:5.079600px;}
.ws11d{word-spacing:5.139360px;}
.ws1f0{word-spacing:5.179811px;}
.ws6f{word-spacing:5.199120px;}
.ws4d{word-spacing:5.209920px;}
.ws18b{word-spacing:5.238000px;}
.wsb7{word-spacing:5.258880px;}
.ws70{word-spacing:5.318640px;}
.ws18c{word-spacing:5.407495px;}
.ws119{word-spacing:5.497920px;}
.ws1bf{word-spacing:5.521337px;}
.ws128{word-spacing:5.562000px;}
.wsc3{word-spacing:5.617440px;}
.ws7d{word-spacing:5.677200px;}
.ws163{word-spacing:5.692100px;}
.ws4a{word-spacing:5.692320px;}
.ws75{word-spacing:5.736960px;}
.ws37{word-spacing:5.796720px;}
.ws38{word-spacing:5.856480px;}
.ws74{word-spacing:5.916240px;}
.ws17b{word-spacing:5.976705px;}
.ws17a{word-spacing:5.994000px;}
.ws14b{word-spacing:6.035760px;}
.wse3{word-spacing:6.215040px;}
.ws129{word-spacing:6.264000px;}
.ws1ac{word-spacing:6.318231px;}
.ws13f{word-spacing:6.334560px;}
.wse2{word-spacing:6.394320px;}
.wsb0{word-spacing:6.454080px;}
.wsaf{word-spacing:6.513840px;}
.wsb1{word-spacing:6.573600px;}
.ws84{word-spacing:6.633360px;}
.ws1aa{word-spacing:6.696000px;}
.ws1b9{word-spacing:6.716678px;}
.wsb8{word-spacing:6.752880px;}
.ws1c0{word-spacing:6.804000px;}
.wsd0{word-spacing:6.872400px;}
.wsf0{word-spacing:6.932160px;}
.ws176{word-spacing:6.966000px;}
.ws1f2{word-spacing:7.020000px;}
.wsf1{word-spacing:7.051680px;}
.ws1c1{word-spacing:7.074000px;}
.wsd1{word-spacing:7.111440px;}
.ws3b{word-spacing:7.171200px;}
.ws177{word-spacing:7.172046px;}
.ws1f3{word-spacing:7.285888px;}
.ws7e{word-spacing:7.290720px;}
.ws1c6{word-spacing:7.342809px;}
.ws1ec{word-spacing:7.344000px;}
.ws32{word-spacing:7.350480px;}
.ws86{word-spacing:7.470000px;}
.ws1f4{word-spacing:7.513572px;}
.ws4f{word-spacing:7.525715px;}
.ws1a1{word-spacing:7.560000px;}
.ws9c{word-spacing:7.589520px;}
.ws1ed{word-spacing:7.668000px;}
.ws7b{word-spacing:7.709040px;}
.ws12a{word-spacing:7.722000px;}
.ws1a7{word-spacing:7.798177px;}
.ws41{word-spacing:7.828560px;}
.ws4e{word-spacing:7.863120px;}
.ws97{word-spacing:7.888320px;}
.ws17e{word-spacing:7.938000px;}
.ws8f{word-spacing:7.948080px;}
.ws19b{word-spacing:7.968940px;}
.wsee{word-spacing:8.007840px;}
.ws1dd{word-spacing:8.100000px;}
.ws40{word-spacing:8.127360px;}
.ws17c{word-spacing:8.139703px;}
.ws1d7{word-spacing:8.154000px;}
.ws101{word-spacing:8.246880px;}
.ws17d{word-spacing:8.253545px;}
.ws192{word-spacing:8.262000px;}
.ws1a0{word-spacing:8.367387px;}
.ws1dc{word-spacing:8.370000px;}
.ws1de{word-spacing:8.424000px;}
.ws15c{word-spacing:8.426160px;}
.ws140{word-spacing:8.545680px;}
.ws31{word-spacing:8.605440px;}
.ws193{word-spacing:8.640000px;}
.ws80{word-spacing:8.665200px;}
.ws139{word-spacing:8.724960px;}
.ws7f{word-spacing:8.784720px;}
.ws4c{word-spacing:8.827920px;}
.ws2b{word-spacing:8.844480px;}
.ws194{word-spacing:8.856000px;}
.ws81{word-spacing:8.964000px;}
.ws10a{word-spacing:9.007938px;}
.wse8{word-spacing:9.262800px;}
.wsea{word-spacing:9.322560px;}
.wsf6{word-spacing:9.382320px;}
.ws146{word-spacing:9.442080px;}
.ws1d6{word-spacing:9.448886px;}
.ws109{word-spacing:9.501840px;}
.ws6e{word-spacing:9.561600px;}
.ws16c{word-spacing:9.882000px;}
.wsff{word-spacing:10.039680px;}
.wse1{word-spacing:10.099440px;}
.ws79{word-spacing:10.159200px;}
.ws157{word-spacing:10.218960px;}
.ws78{word-spacing:10.278720px;}
.ws16d{word-spacing:10.302701px;}
.ws16b{word-spacing:10.314000px;}
.wsc7{word-spacing:10.398240px;}
.ws14c{word-spacing:10.517760px;}
.wsc4{word-spacing:10.697040px;}
.ws15e{word-spacing:10.756800px;}
.ws1c5{word-spacing:10.800000px;}
.ws102{word-spacing:10.816560px;}
.wsae{word-spacing:10.995840px;}
.ws1d8{word-spacing:11.016000px;}
.ws1c3{word-spacing:11.286000px;}
.ws12e{word-spacing:11.414160px;}
.ws42{word-spacing:11.473920px;}
.wsc2{word-spacing:11.533680px;}
.ws2c{word-spacing:11.593440px;}
.wseb{word-spacing:11.653200px;}
.ws9e{word-spacing:11.712960px;}
.ws1c4{word-spacing:12.010331px;}
.wsce{word-spacing:12.191040px;}
.ws1ca{word-spacing:12.351857px;}
.ws9b{word-spacing:12.430080px;}
.ws148{word-spacing:12.728880px;}
.ws15b{word-spacing:12.848400px;}
.ws15a{word-spacing:13.027680px;}
.ws100{word-spacing:13.087440px;}
.wsc1{word-spacing:13.147200px;}
.ws87{word-spacing:13.266720px;}
.wsbd{word-spacing:13.625280px;}
.ws142{word-spacing:13.685040px;}
.ws89{word-spacing:13.864320px;}
.wsd3{word-spacing:14.103360px;}
.ws1a2{word-spacing:14.202000px;}
.wsd5{word-spacing:14.342400px;}
.ws11a{word-spacing:14.521680px;}
.ws88{word-spacing:14.581440px;}
.wsd4{word-spacing:14.700960px;}
.wsad{word-spacing:14.880240px;}
.wsfa{word-spacing:15.059520px;}
.wsaa{word-spacing:15.119280px;}
.ws143{word-spacing:15.238800px;}
.wsab{word-spacing:15.298560px;}
.ws198{word-spacing:15.444000px;}
.wsf8{word-spacing:15.955920px;}
.ws199{word-spacing:16.038000px;}
.wsf7{word-spacing:16.135200px;}
.ws145{word-spacing:16.314480px;}
.ws144{word-spacing:16.613280px;}
.wsa2{word-spacing:16.732800px;}
.ws95{word-spacing:16.971840px;}
.ws96{word-spacing:17.151120px;}
.ws94{word-spacing:17.449920px;}
.ws1b7{word-spacing:17.766000px;}
.ws1e4{word-spacing:18.360000px;}
.ws1ae{word-spacing:18.522000px;}
.ws1b8{word-spacing:18.727008px;}
.ws98{word-spacing:18.884160px;}
.ws1e3{word-spacing:18.954000px;}
.ws141{word-spacing:19.362240px;}
.ws14e{word-spacing:19.601280px;}
.ws11b{word-spacing:20.079360px;}
.ws11c{word-spacing:20.318400px;}
.wsdb{word-spacing:21.035520px;}
.ws45{word-spacing:21.515040px;}
.ws159{word-spacing:21.752640px;}
.wsfd{word-spacing:22.290480px;}
.ws1f6{word-spacing:22.518000px;}
.wsfe{word-spacing:22.529520px;}
.ws156{word-spacing:23.007600px;}
.ws155{word-spacing:23.186880px;}
.ws9a{word-spacing:23.963760px;}
.ws103{word-spacing:25.158960px;}
.ws104{word-spacing:25.398000px;}
.ws99{word-spacing:25.876080px;}
.wscd{word-spacing:26.115120px;}
.wsf5{word-spacing:26.772480px;}
.wsf3{word-spacing:26.832240px;}
.wse6{word-spacing:27.549360px;}
.wsf4{word-spacing:27.668880px;}
.wsda{word-spacing:28.266480px;}
.ws14f{word-spacing:29.521440px;}
.ws150{word-spacing:29.700720px;}
._14{margin-left:-115.824240px;}
._41{margin-left:-7.828560px;}
._43{margin-left:-5.688720px;}
._42{margin-left:-2.159280px;}
._4{margin-left:-1.126080px;}
._0{width:1.209600px;}
._a{width:2.287440px;}
._e{width:3.404160px;}
._7{width:5.206320px;}
._c{width:6.693120px;}
._5{width:8.669520px;}
._b{width:10.359360px;}
._10{width:11.822400px;}
._8{width:12.972960px;}
._1{width:14.310000px;}
._6{width:15.969600px;}
._d{width:17.700480px;}
._f{width:19.126080px;}
._2b{width:20.421072px;}
._13{width:21.611520px;}
._22{width:30.535920px;}
._15{width:34.428312px;}
._3f{width:38.636640px;}
._40{width:39.680784px;}
._3e{width:48.542256px;}
._24{width:54.351072px;}
._12{width:55.668960px;}
._26{width:60.461280px;}
._27{width:62.505792px;}
._21{width:64.400400px;}
._16{width:66.643704px;}
._17{width:67.684104px;}
._2a{width:68.866848px;}
._25{width:69.896592px;}
._2c{width:73.321200px;}
._28{width:77.701392px;}
._1d{width:92.476080px;}
._20{width:97.493040px;}
._23{width:98.609760px;}
._1e{width:101.062800px;}
._29{width:105.059520px;}
._1f{width:106.899840px;}
._34{width:108.347040px;}
._35{width:110.421360px;}
._1c{width:113.315760px;}
._36{width:121.434480px;}
._33{width:125.568720px;}
._1a{width:134.734320px;}
._1b{width:142.886880px;}
._2f{width:143.899920px;}
._32{width:145.009440px;}
._31{width:147.228480px;}
._2e{width:153.982080px;}
._3d{width:156.152880px;}
._3b{width:159.722640px;}
._3c{width:161.169840px;}
._3a{width:176.317200px;}
._19{width:179.163360px;}
._38{width:194.310720px;}
._39{width:195.757920px;}
._37{width:198.604080px;}
._2{width:337.640400px;}
._11{width:477.479520px;}
._30{width:486.693360px;}
._9{width:683.910000px;}
._18{width:688.815360px;}
._2d{width:764.455680px;}
._44{width:849.070080px;}
._3{width:957.582000px;}
.fc5{color:transparent;}
.fc3{color:rgb(227,108,10);}
.fc2{color:rgb(148,54,52);}
.fc6{color:rgb(49,132,155);}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:30.240000px;}
.fs4{font-size:33.120000px;}
.fs8{font-size:36.000000px;}
.fs3{font-size:41.760000px;}
.fsd{font-size:45.360000px;}
.fsa{font-size:47.644800px;}
.fs5{font-size:48.240000px;}
.fsf{font-size:49.959000px;}
.fse{font-size:49.969200px;}
.fs9{font-size:50.849425px;}
.fs0{font-size:54.000000px;}
.fs10{font-size:56.920998px;}
.fs7{font-size:59.760000px;}
.fsb{font-size:62.992571px;}
.fs11{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs2{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y27c{bottom:4.679850px;}
.y202{bottom:4.680000px;}
.y65{bottom:5.580000px;}
.y3a{bottom:5.760000px;}
.y2a8{bottom:5.939850px;}
.y265{bottom:7.071450px;}
.y26b{bottom:7.071600px;}
.y269{bottom:7.280850px;}
.y26a{bottom:7.281000px;}
.y267{bottom:7.300350px;}
.y263{bottom:7.610100px;}
.y5e{bottom:8.146650px;}
.y7{bottom:8.280000px;}
.y243{bottom:8.999850px;}
.y204{bottom:9.000000px;}
.y246{bottom:9.179850px;}
.y1f5{bottom:9.180000px;}
.y1eb{bottom:10.079850px;}
.y1e5{bottom:10.259850px;}
.y26d{bottom:16.780050px;}
.y26c{bottom:16.780200px;}
.y286{bottom:21.059850px;}
.y283{bottom:21.239850px;}
.y289{bottom:21.240000px;}
.y1fb{bottom:25.920000px;}
.y23e{bottom:29.339850px;}
.y23c{bottom:37.619850px;}
.y27b{bottom:37.799850px;}
.y200{bottom:37.800000px;}
.y63{bottom:46.979850px;}
.y2cb{bottom:61.019850px;}
.y9{bottom:66.960000px;}
.y6{bottom:79.200000px;}
.y8{bottom:87.480000px;}
.y2e9{bottom:97.199850px;}
.y61{bottom:109.260000px;}
.y5{bottom:109.268850px;}
.y113{bottom:126.701640px;}
.ye5{bottom:127.062000px;}
.ye6{bottom:127.080000px;}
.y34{bottom:128.520000px;}
.y13e{bottom:128.521080px;}
.y259{bottom:128.523240px;}
.y31c{bottom:128.683080px;}
.y4d4{bottom:128.739450px;}
.y152{bottom:129.039480px;}
.y2f6{bottom:129.226680px;}
.y3e1{bottom:129.964500px;}
.y3b2{bottom:130.178880px;}
.y2d1{bottom:130.319850px;}
.yb8{bottom:130.452840px;}
.y422{bottom:131.224500px;}
.y35f{bottom:131.408640px;}
.y232{bottom:131.775480px;}
.y1b1{bottom:131.995080px;}
.y38a{bottom:132.433200px;}
.y8c{bottom:132.817890px;}
.y33d{bottom:132.831360px;}
.y1d4{bottom:133.018920px;}
.y17b{bottom:133.021800px;}
.y2a0{bottom:133.380000px;}
.y18c{bottom:133.565040px;}
.y4a4{bottom:134.635500px;}
.y464{bottom:135.364500px;}
.y16{bottom:139.860000px;}
.y20a{bottom:140.049360px;}
.y2d0{bottom:146.699850px;}
.y3e0{bottom:148.500000px;}
.y112{bottom:148.842720px;}
.ye4{bottom:149.561640px;}
.y151{bottom:151.001280px;}
.y13d{bottom:151.020720px;}
.y258{bottom:151.022880px;}
.y4d3{bottom:151.059810px;}
.y31b{bottom:151.182720px;}
.y2f5{bottom:151.367760px;}
.yb7{bottom:152.593920px;}
.y4a3{bottom:152.820000px;}
.y4a2{bottom:152.829000px;}
.y3b1{bottom:153.037080px;}
.y1b0{bottom:154.136160px;}
.y389{bottom:154.395000px;}
.y463{bottom:154.440000px;}
.y462{bottom:154.444500px;}
.y35e{bottom:154.446120px;}
.y421{bottom:154.620000px;}
.y420{bottom:154.624500px;}
.y8b{bottom:154.779690px;}
.y231{bottom:154.812960px;}
.y33c{bottom:154.972440px;}
.y1d3{bottom:155.155320px;}
.y17a{bottom:155.521440px;}
.y18b{bottom:156.064680px;}
.y29f{bottom:160.558740px;}
.y209{bottom:165.966300px;}
.y111{bottom:170.804520px;}
.y4a1{bottom:170.824500px;}
.y25b{bottom:170.957850px;}
.y5b{bottom:170.999850px;}
.ye3{bottom:172.061280px;}
.y3df{bottom:172.260000px;}
.y41f{bottom:172.620000px;}
.y41e{bottom:172.624500px;}
.y150{bottom:173.142360px;}
.y4d2{bottom:173.200890px;}
.y2f4{bottom:173.329560px;}
.y39{bottom:173.520000px;}
.y13c{bottom:173.520360px;}
.y257{bottom:173.522520px;}
.y461{bottom:173.524500px;}
.y31a{bottom:173.682360px;}
.yb6{bottom:174.555720px;}
.y3b0{bottom:176.074560px;}
.y1af{bottom:176.277240px;}
.y388{bottom:176.536080px;}
.y2aa{bottom:176.579850px;}
.y8a{bottom:176.920770px;}
.y33b{bottom:176.934240px;}
.y1d2{bottom:177.117120px;}
.y35d{bottom:177.304320px;}
.y230{bottom:177.671160px;}
.y179{bottom:178.021080px;}
.y18a{bottom:178.564320px;}
.y208{bottom:182.343780px;}
.y29e{bottom:186.299460px;}
.y59{bottom:187.380000px;}
.y3de{bottom:190.624500px;}
.y110{bottom:192.945600px;}
.y38{bottom:193.500000px;}
.y25c{bottom:194.007150px;}
.y4a0{bottom:194.224500px;}
.ye2{bottom:194.560920px;}
.y14f{bottom:195.104160px;}
.y2f3{bottom:195.470640px;}
.y13b{bottom:196.020000px;}
.y256{bottom:196.022160px;}
.y41d{bottom:196.024500px;}
.y319{bottom:196.182000px;}
.y2e2{bottom:196.199850px;}
.yb5{bottom:196.696800px;}
.y460{bottom:198.000000px;}
.y387{bottom:198.497880px;}
.y89{bottom:198.882570px;}
.y3af{bottom:198.932760px;}
.y33a{bottom:199.075320px;}
.y1d1{bottom:199.258200px;}
.y1ae{bottom:199.314720px;}
.y35c{bottom:200.341800px;}
.y178{bottom:200.520720px;}
.y22f{bottom:200.708640px;}
.y189{bottom:201.063960px;}
.y29d{bottom:202.857840px;}
.y57{bottom:203.939850px;}
.y4d1{bottom:204.156570px;}
.y37{bottom:208.271160px;}
.y207{bottom:208.441620px;}
.y3dd{bottom:209.160000px;}
.y3dc{bottom:209.164500px;}
.y49f{bottom:212.220000px;}
.y49e{bottom:212.224500px;}
.y41c{bottom:214.020000px;}
.y10f{bottom:214.907400px;}
.ye1{bottom:216.522720px;}
.y45f{bottom:216.900000px;}
.y25d{bottom:217.056600px;}
.y14e{bottom:217.245240px;}
.y2f2{bottom:217.432440px;}
.y255{bottom:218.521800px;}
.yb4{bottom:218.658600px;}
.y318{bottom:218.681640px;}
.y55{bottom:220.499850px;}
.y386{bottom:220.638960px;}
.y88{bottom:221.023650px;}
.y339{bottom:221.037120px;}
.y1cf{bottom:221.218920px;}
.y1d0{bottom:221.220000px;}
.y3ae{bottom:221.970240px;}
.y1ad{bottom:222.172920px;}
.y177{bottom:223.020360px;}
.y35b{bottom:223.200000px;}
.y188{bottom:223.563600px;}
.y22e{bottom:223.566840px;}
.y206{bottom:225.000000px;}
.y4d0{bottom:226.297650px;}
.y13a{bottom:226.618560px;}
.y3db{bottom:227.524500px;}
.y36{bottom:228.245940px;}
.y29c{bottom:228.962520px;}
.y3b{bottom:231.660000px;}
.y41b{bottom:232.015500px;}
.y49d{bottom:235.620000px;}
.y10e{bottom:237.048480px;}
.y54{bottom:237.059850px;}
.ye0{bottom:238.663800px;}
.y14d{bottom:239.207040px;}
.y2f1{bottom:239.573520px;}
.y25e{bottom:240.105900px;}
.yb3{bottom:240.799680px;}
.y254{bottom:241.021440px;}
.y317{bottom:241.181280px;}
.y45e{bottom:241.200000px;}
.y385{bottom:242.600760px;}
.y87{bottom:242.985450px;}
.y338{bottom:243.178200px;}
.y1cd{bottom:243.358200px;}
.y1ce{bottom:243.360000px;}
.y3ad{bottom:244.828440px;}
.y1ac{bottom:245.210400px;}
.y29b{bottom:245.340000px;}
.y176{bottom:245.520000px;}
.y139{bottom:246.060000px;}
.y187{bottom:246.063240px;}
.y35a{bottom:246.272040px;}
.y22d{bottom:246.604320px;}
.y35{bottom:248.400000px;}
.y2d{bottom:248.760000px;}
.y205{bottom:250.740000px;}
.y3da{bottom:251.284500px;}
.y52{bottom:253.439850px;}
.y49c{bottom:253.800000px;}
.y49b{bottom:253.813500px;}
.y41a{bottom:255.600000px;}
.y419{bottom:255.613500px;}
.y4cf{bottom:257.253330px;}
.y10d{bottom:259.010280px;}
.y45d{bottom:260.280000px;}
.ydf{bottom:260.625600px;}
.y14c{bottom:261.348120px;}
.y2f0{bottom:261.535320px;}
.yb2{bottom:262.761480px;}
.y25f{bottom:263.155200px;}
.y253{bottom:263.521080px;}
.y316{bottom:263.680920px;}
.y384{bottom:264.741840px;}
.y86{bottom:265.126530px;}
.y337{bottom:265.140000px;}
.y1cb{bottom:265.318920px;}
.y1cc{bottom:265.320000px;}
.y203{bottom:267.480000px;}
.y3ac{bottom:267.865920px;}
.y1ab{bottom:268.068600px;}
.y33{bottom:268.407540px;}
.y186{bottom:268.562880px;}
.y359{bottom:269.130240px;}
.y22c{bottom:269.462520px;}
.y3d9{bottom:269.820000px;}
.y51{bottom:269.999850px;}
.y29a{bottom:271.441620px;}
.y49a{bottom:271.809000px;}
.y418{bottom:273.609000px;}
.y175{bottom:276.480000px;}
.y45c{bottom:279.180000px;}
.y4ce{bottom:279.394410px;}
.y10c{bottom:281.151360px;}
.yde{bottom:282.766680px;}
.y2ef{bottom:282.780000px;}
.y14b{bottom:283.309920px;}
.y138{bottom:284.026320px;}
.yb1{bottom:284.902560px;}
.y252{bottom:286.020720px;}
.y315{bottom:286.180560px;}
.y260{bottom:286.204800px;}
.y4f{bottom:286.559850px;}
.y383{bottom:286.703640px;}
.y85{bottom:287.088330px;}
.y1c9{bottom:287.455320px;}
.y1ca{bottom:287.460000px;}
.y299{bottom:288.000000px;}
.y3d8{bottom:288.180000px;}
.y3d7{bottom:288.184500px;}
.y32{bottom:288.382320px;}
.y3ab{bottom:290.724120px;}
.y185{bottom:291.062520px;}
.y1aa{bottom:291.106080px;}
.y417{bottom:291.604500px;}
.y358{bottom:292.167720px;}
.y22b{bottom:292.500000px;}
.y1ff{bottom:293.220000px;}
.y499{bottom:295.204500px;}
.y336{bottom:295.560000px;}
.y2cf{bottom:297.900000px;}
.y45b{bottom:298.084500px;}
.y10b{bottom:303.113160px;}
.y4d{bottom:303.119850px;}
.ydd{bottom:304.728480px;}
.y297{bottom:304.920000px;}
.y14a{bottom:305.451000px;}
.y137{bottom:306.167400px;}
.y3d6{bottom:306.544500px;}
.yb0{bottom:306.864360px;}
.y251{bottom:308.520360px;}
.y31{bottom:308.536380px;}
.y314{bottom:308.680200px;}
.y382{bottom:308.844720px;}
.y29{bottom:308.879850px;}
.y84{bottom:309.229410px;}
.y261{bottom:309.254100px;}
.y1c8{bottom:309.417120px;}
.y4cd{bottom:310.350090px;}
.y2ee{bottom:312.487380px;}
.y498{bottom:313.200000px;}
.y184{bottom:313.562160px;}
.y3aa{bottom:313.761600px;}
.y1a9{bottom:313.964280px;}
.y298{bottom:314.100000px;}
.y201{bottom:314.460000px;}
.y416{bottom:315.000000px;}
.y415{bottom:315.004500px;}
.y357{bottom:315.025920px;}
.y174{bottom:316.029240px;}
.y45a{bottom:317.160000px;}
.y4b{bottom:319.499850px;}
.y22a{bottom:323.460000px;}
.y10a{bottom:325.254240px;}
.ydc{bottom:326.869560px;}
.y149{bottom:327.412800px;}
.y136{bottom:328.129200px;}
.y30{bottom:328.511160px;}
.yaf{bottom:329.005440px;}
.y2ed{bottom:329.045760px;}
.y3d5{bottom:330.480000px;}
.y381{bottom:330.806520px;}
.y250{bottom:331.024890px;}
.y313{bottom:331.179840px;}
.y83{bottom:331.191210px;}
.y497{bottom:331.195500px;}
.y1c7{bottom:331.558200px;}
.y4cc{bottom:332.491170px;}
.y414{bottom:333.000000px;}
.y335{bottom:333.776520px;}
.y4a{bottom:336.059850px;}
.y459{bottom:336.060000px;}
.y183{bottom:336.061800px;}
.y3a9{bottom:336.619800px;}
.y1a8{bottom:337.001760px;}
.y173{bottom:337.991040px;}
.y356{bottom:338.063400px;}
.y296{bottom:339.303270px;}
.y2ec{bottom:345.604140px;}
.y109{bottom:347.216040px;}
.y2f{bottom:348.485940px;}
.ydb{bottom:348.831360px;}
.y26{bottom:349.020000px;}
.y148{bottom:349.553880px;}
.y135{bottom:350.270280px;}
.yae{bottom:350.967240px;}
.y229{bottom:352.080000px;}
.y1fe{bottom:352.264530px;}
.y48{bottom:352.619850px;}
.y380{bottom:352.947600px;}
.y82{bottom:353.332290px;}
.y1c6{bottom:353.520000px;}
.y24f{bottom:353.524530px;}
.y312{bottom:353.679480px;}
.y2dc{bottom:353.898750px;}
.y3d4{bottom:354.240000px;}
.y496{bottom:354.780000px;}
.y495{bottom:354.784500px;}
.y295{bottom:355.861650px;}
.y413{bottom:356.764500px;}
.y334{bottom:356.814000px;}
.y182{bottom:358.561440px;}
.y3a8{bottom:359.657280px;}
.y1a7{bottom:359.859960px;}
.y172{bottom:360.132120px;}
.y458{bottom:360.364500px;}
.y355{bottom:360.921600px;}
.y2eb{bottom:362.162520px;}
.y4cb{bottom:363.446850px;}
.y2e{bottom:368.640000px;}
.y1fd{bottom:368.642010px;}
.y24{bottom:368.999850px;}
.y108{bottom:369.357120px;}
.y2db{bottom:370.276230px;}
.yda{bottom:370.972440px;}
.y147{bottom:371.515680px;}
.y134{bottom:372.232080px;}
.y294{bottom:372.420030px;}
.y3d3{bottom:372.780000px;}
.y3d2{bottom:372.784350px;}
.y494{bottom:372.788850px;}
.yad{bottom:373.108320px;}
.y1c5{bottom:374.580000px;}
.y37f{bottom:374.909400px;}
.y81{bottom:375.294090px;}
.y412{bottom:375.300000px;}
.y5d{bottom:375.432000px;}
.y5c{bottom:375.480000px;}
.y311{bottom:375.999840px;}
.y24e{bottom:376.203450px;}
.y2ea{bottom:378.540000px;}
.y456{bottom:379.439850px;}
.y457{bottom:379.440000px;}
.y333{bottom:379.672200px;}
.y181{bottom:381.061080px;}
.y171{bottom:382.093920px;}
.y3a7{bottom:382.515480px;}
.y1a6{bottom:382.897440px;}
.y354{bottom:383.959080px;}
.y1fa{bottom:385.380000px;}
.y45{bottom:385.559850px;}
.y4ca{bottom:385.587930px;}
.y2da{bottom:386.834610px;}
.y2c{bottom:388.631010px;}
.y22{bottom:388.979850px;}
.y493{bottom:390.784350px;}
.y107{bottom:391.318920px;}
.y3d1{bottom:391.319850px;}
.y228{bottom:391.870440px;}
.yd9{bottom:392.934240px;}
.y146{bottom:393.656760px;}
.y411{bottom:393.839850px;}
.y410{bottom:393.844500px;}
.y133{bottom:394.373160px;}
.y1fc{bottom:394.739850px;}
.yac{bottom:395.070120px;}
.y2e8{bottom:395.108850px;}
.y293{bottom:395.456790px;}
.y37e{bottom:397.050480px;}
.y80{bottom:397.435170px;}
.y310{bottom:398.140920px;}
.y455{bottom:398.339850px;}
.y24d{bottom:399.061650px;}
.y43{bottom:402.119850px;}
.y332{bottom:402.709680px;}
.y2d9{bottom:403.392990px;}
.y180{bottom:403.560720px;}
.y170{bottom:404.235000px;}
.y3a6{bottom:405.552960px;}
.y1a5{bottom:405.755640px;}
.y353{bottom:406.817280px;}
.y2b{bottom:408.605790px;}
.y3d0{bottom:409.855350px;}
.y1f9{bottom:411.300000px;}
.y1c4{bottom:411.312960px;}
.y2e7{bottom:411.667230px;}
.y292{bottom:412.015170px;}
.y40f{bottom:412.380000px;}
.y40e{bottom:412.384350px;}
.y106{bottom:413.460000px;}
.y105{bottom:413.467200px;}
.y492{bottom:414.179850px;}
.y491{bottom:414.184350px;}
.y227{bottom:414.728640px;}
.yd8{bottom:415.075320px;}
.y145{bottom:415.618560px;}
.y132{bottom:416.334960px;}
.y4c9{bottom:416.543610px;}
.yab{bottom:417.211200px;}
.y454{bottom:417.239850px;}
.y42{bottom:418.679850px;}
.y37d{bottom:419.012280px;}
.y5a{bottom:419.040000px;}
.y7f{bottom:419.396970px;}
.y2d8{bottom:419.951370px;}
.y30f{bottom:420.102720px;}
.y24c{bottom:421.919850px;}
.y331{bottom:425.567880px;}
.y17f{bottom:426.060360px;}
.y16f{bottom:426.196800px;}
.y2e6{bottom:428.225610px;}
.y3a5{bottom:428.411160px;}
.y2a{bottom:428.759850px;}
.y1a4{bottom:428.793120px;}
.y352{bottom:429.854760px;}
.y490{bottom:432.179850px;}
.y291{bottom:433.621470px;}
.y3cf{bottom:433.984350px;}
.y1c3{bottom:434.350440px;}
.y40{bottom:435.059850px;}
.y104{bottom:435.429000px;}
.y58{bottom:435.599850px;}
.y40c{bottom:436.315500px;}
.y40d{bottom:436.319850px;}
.y2d7{bottom:436.328850px;}
.yd7{bottom:437.037120px;}
.y1f8{bottom:437.221470px;}
.y144{bottom:437.759640px;}
.y226{bottom:437.766120px;}
.y131{bottom:438.476040px;}
.y4c8{bottom:438.684690px;}
.yaa{bottom:439.173000px;}
.y37c{bottom:441.153360px;}
.y453{bottom:441.364350px;}
.y7e{bottom:441.538050px;}
.y30e{bottom:442.243800px;}
.y24b{bottom:444.060900px;}
.y2e5{bottom:444.603090px;}
.y16e{bottom:448.337880px;}
.y17e{bottom:448.560000px;}
.y330{bottom:448.605360px;}
.y28{bottom:448.745070px;}
.y1e{bottom:449.100000px;}
.y48f{bottom:450.175350px;}
.y290{bottom:450.179850px;}
.y3a4{bottom:451.448640px;}
.y3e{bottom:451.619850px;}
.y1a3{bottom:451.651320px;}
.y56{bottom:452.159850px;}
.y3ce{bottom:452.519850px;}
.y3cd{bottom:452.524500px;}
.y351{bottom:452.712960px;}
.y2d6{bottom:452.887230px;}
.y1f7{bottom:453.779850px;}
.y40b{bottom:455.040000px;}
.y40a{bottom:455.048850px;}
.y1c2{bottom:457.208640px;}
.y103{bottom:457.570080px;}
.yd6{bottom:459.178200px;}
.y24a{bottom:459.540000px;}
.y143{bottom:459.721440px;}
.y452{bottom:459.899850px;}
.y451{bottom:459.904350px;}
.y130{bottom:460.437840px;}
.y225{bottom:460.624320px;}
.y2e4{bottom:461.161470px;}
.ya9{bottom:461.314080px;}
.y37b{bottom:463.115160px;}
.y7d{bottom:463.487970px;}
.y30d{bottom:464.205600px;}
.y3c{bottom:468.179850px;}
.y27{bottom:468.719850px;}
.y2d5{bottom:469.445610px;}
.y4c7{bottom:469.640370px;}
.y16d{bottom:470.299680px;}
.y1f4{bottom:470.700000px;}
.y32f{bottom:471.463560px;}
.y28f{bottom:471.961470px;}
.y409{bottom:473.584350px;}
.y48e{bottom:473.759850px;}
.y3a3{bottom:474.306840px;}
.y1a2{bottom:474.688800px;}
.y350{bottom:475.750440px;}
.y3cc{bottom:476.460000px;}
.y3cb{bottom:476.464350px;}
.y248{bottom:477.000000px;}
.y2e3{bottom:477.719850px;}
.y450{bottom:478.439850px;}
.y44f{bottom:478.448850px;}
.y17d{bottom:479.340000px;}
.y1f6{bottom:479.880000px;}
.y102{bottom:480.069720px;}
.y1c1{bottom:480.246120px;}
.yd4{bottom:481.138920px;}
.yd5{bottom:481.140000px;}
.y142{bottom:481.862520px;}
.y12f{bottom:482.578920px;}
.ya8{bottom:483.275880px;}
.y224{bottom:483.661800px;}
.y53{bottom:485.099850px;}
.y37a{bottom:485.256240px;}
.y7c{bottom:485.629050px;}
.y2d4{bottom:486.003990px;}
.y249{bottom:486.179850px;}
.y247{bottom:486.184710px;}
.y30c{bottom:486.346680px;}
.y28e{bottom:488.519850px;}
.y25{bottom:488.880000px;}
.y48d{bottom:491.768850px;}
.y4c6{bottom:491.781450px;}
.y16c{bottom:492.440760px;}
.y2e1{bottom:494.120370px;}
.y32e{bottom:494.501040px;}
.y3ca{bottom:494.999850px;}
.y3a2{bottom:497.344320px;}
.y408{bottom:497.519850px;}
.y1a1{bottom:497.547000px;}
.y34f{bottom:498.608640px;}
.y2d3{bottom:502.381470px;}
.y44e{bottom:502.384350px;}
.y245{bottom:502.560000px;}
.y101{bottom:502.569360px;}
.y1c0{bottom:503.104320px;}
.yd2{bottom:503.277120px;}
.yd3{bottom:503.280000px;}
.y141{bottom:503.824320px;}
.y12e{bottom:504.540720px;}
.ya7{bottom:505.416960px;}
.y1f3{bottom:505.814250px;}
.y223{bottom:506.520000px;}
.y379{bottom:507.218040px;}
.y7b{bottom:507.590850px;}
.y17c{bottom:507.960000px;}
.y30b{bottom:508.308480px;}
.y23{bottom:508.859850px;}
.y1a{bottom:509.219850px;}
.y48c{bottom:509.764350px;}
.y2e0{bottom:510.678750px;}
.y244{bottom:511.739850px;}
.y28d{bottom:512.460000px;}
.y3c9{bottom:513.535350px;}
.y16b{bottom:514.402560px;}
.y407{bottom:516.059850px;}
.y406{bottom:516.064350px;}
.y32d{bottom:517.359240px;}
.y50{bottom:518.219850px;}
.y2d2{bottom:518.939850px;}
.y3a1{bottom:520.202520px;}
.y1a0{bottom:520.584480px;}
.y44d{bottom:520.919850px;}
.y34e{bottom:521.646120px;}
.y4c5{bottom:522.737130px;}
.y100{bottom:525.069000px;}
.yd1{bottom:525.238920px;}
.y140{bottom:525.965400px;}
.y1bf{bottom:526.141800px;}
.y12d{bottom:526.681800px;}
.y2df{bottom:527.237130px;}
.ya6{bottom:527.378760px;}
.y48b{bottom:527.759850px;}
.y48a{bottom:527.764350px;}
.y242{bottom:528.120000px;}
.y21{bottom:528.851010px;}
.y28b{bottom:529.200000px;}
.y378{bottom:529.359120px;}
.y19{bottom:529.379850px;}
.y222{bottom:529.557480px;}
.y7a{bottom:529.731930px;}
.y30a{bottom:530.449560px;}
.y1f2{bottom:530.464890px;}
.y405{bottom:534.599850px;}
.y4e{bottom:534.779850px;}
.y16a{bottom:536.543640px;}
.y241{bottom:537.119850px;}
.y3c8{bottom:537.659850px;}
.y44c{bottom:539.644350px;}
.y32c{bottom:540.396720px;}
.y28c{bottom:542.159850px;}
.y3a0{bottom:543.240000px;}
.y19f{bottom:543.442680px;}
.y2de{bottom:543.795510px;}
.y34d{bottom:544.504320px;}
.y4c4{bottom:544.878210px;}
.y488{bottom:545.750850px;}
.y489{bottom:545.759850px;}
.y1f1{bottom:547.023270px;}
.yd0{bottom:547.380000px;}
.yff{bottom:547.568640px;}
.y13f{bottom:547.927200px;}
.y12c{bottom:548.643600px;}
.y1be{bottom:549.000000px;}
.y20{bottom:549.005070px;}
.ya5{bottom:549.519840px;}
.y4c{bottom:551.159850px;}
.y377{bottom:551.320920px;}
.y221{bottom:551.340000px;}
.y79{bottom:551.693730px;}
.y309{bottom:552.411360px;}
.y3c7{bottom:556.204350px;}
.y17{bottom:556.919850px;}
.y169{bottom:558.505440px;}
.y404{bottom:558.724350px;}
.y2dd{bottom:560.172990px;}
.y288{bottom:562.140000px;}
.y240{bottom:563.040000px;}
.y32b{bottom:563.254920px;}
.y44b{bottom:563.579850px;}
.y44a{bottom:563.584350px;}
.y487{bottom:563.935350px;}
.y19e{bottom:566.480160px;}
.y34c{bottom:567.541800px;}
.y1f{bottom:568.979850px;}
.yfe{bottom:570.068280px;}
.y12b{bottom:570.784680px;}
.y1f0{bottom:570.962370px;}
.ya4{bottom:571.481640px;}
.y1bd{bottom:572.037480px;}
.y376{bottom:573.462000px;}
.y78{bottom:573.834810px;}
.y308{bottom:574.552440px;}
.y39f{bottom:574.560000px;}
.y3c6{bottom:574.744350px;}
.y28a{bottom:575.099850px;}
.y4c3{bottom:575.833890px;}
.y403{bottom:577.259850px;}
.y402{bottom:577.264350px;}
.ycf{bottom:577.620000px;}
.y23b{bottom:579.780000px;}
.y168{bottom:580.646520px;}
.y449{bottom:582.119850px;}
.y448{bottom:582.128850px;}
.y2a9{bottom:582.480000px;}
.y49{bottom:584.279850px;}
.y32a{bottom:586.292400px;}
.y1ef{bottom:587.339850px;}
.y486{bottom:587.524350px;}
.y220{bottom:588.067740px;}
.y1d{bottom:588.971010px;}
.y19d{bottom:589.338360px;}
.y34b{bottom:590.418000px;}
.yfd{bottom:592.567920px;}
.y23f{bottom:592.739850px;}
.y12a{bottom:592.746480px;}
.y3c5{bottom:593.279850px;}
.ya3{bottom:593.622720px;}
.y1bc{bottom:593.820000px;}
.y2ce{bottom:593.823090px;}
.y285{bottom:595.260000px;}
.y375{bottom:595.423800px;}
.y77{bottom:595.796610px;}
.y307{bottom:596.514240px;}
.y4c2{bottom:597.974970px;}
.y47{bottom:600.659850px;}
.y447{bottom:600.664350px;}
.y23a{bottom:601.019850px;}
.y401{bottom:601.199850px;}
.y400{bottom:601.204350px;}
.y167{bottom:602.608320px;}
.y485{bottom:606.059850px;}
.y484{bottom:606.064350px;}
.y287{bottom:608.039850px;}
.y23d{bottom:609.119850px;}
.y1c{bottom:609.125070px;}
.y329{bottom:609.150600px;}
.y2cd{bottom:610.381470px;}
.y21f{bottom:611.105220px;}
.y1ee{bottom:611.281470px;}
.y3c4{bottom:611.815350px;}
.y19c{bottom:612.375840px;}
.y34a{bottom:613.455480px;}
.y39e{bottom:614.166330px;}
.y129{bottom:614.887560px;}
.yfc{bottom:615.067560px;}
.ya2{bottom:615.584520px;}
.yce{bottom:615.785400px;}
.y46{bottom:617.219850px;}
.y374{bottom:617.564880px;}
.y76{bottom:617.937690px;}
.y306{bottom:618.655320px;}
.y3ff{bottom:619.739850px;}
.y1bb{bottom:620.640000px;}
.y446{bottom:624.595350px;}
.y483{bottom:624.599850px;}
.y166{bottom:624.749400px;}
.y2cc{bottom:626.939850px;}
.y1ed{bottom:627.839850px;}
.y282{bottom:628.200000px;}
.y4c1{bottom:628.930650px;}
.y1b{bottom:629.099850px;}
.y328{bottom:632.188080px;}
.y44{bottom:633.779850px;}
.y21e{bottom:633.963420px;}
.y19b{bottom:635.234040px;}
.y3c3{bottom:635.944500px;}
.y349{bottom:636.313680px;}
.y39d{bottom:636.665970px;}
.y128{bottom:637.387200px;}
.yfb{bottom:637.567200px;}
.ya1{bottom:637.725600px;}
.ycd{bottom:638.285040px;}
.y239{bottom:638.819850px;}
.y373{bottom:639.526680px;}
.y75{bottom:639.899490px;}
.y305{bottom:640.617120px;}
.y284{bottom:641.159850px;}
.y482{bottom:643.135350px;}
.y445{bottom:643.319850px;}
.y444{bottom:643.329000px;}
.y2b9{bottom:643.526280px;}
.y3fe{bottom:643.675350px;}
.y1ea{bottom:643.860000px;}
.y165{bottom:646.711200px;}
.y4c0{bottom:651.071730px;}
.y1ec{bottom:653.939850px;}
.y3c2{bottom:654.480000px;}
.y3c1{bottom:654.484500px;}
.y327{bottom:655.046280px;}
.y21d{bottom:657.000900px;}
.y19a{bottom:658.271520px;}
.y39c{bottom:659.165610px;}
.y1ba{bottom:659.340000px;}
.y348{bottom:659.351160px;}
.ya0{bottom:659.687400px;}
.y127{bottom:659.886840px;}
.y2b8{bottom:659.903760px;}
.y2ca{bottom:659.939940px;}
.yfa{bottom:660.066840px;}
.ycc{bottom:660.784680px;}
.y372{bottom:661.488480px;}
.y280{bottom:661.680000px;}
.y443{bottom:661.864500px;}
.y74{bottom:662.040570px;}
.y3fd{bottom:662.399850px;}
.y3fc{bottom:662.404350px;}
.y304{bottom:662.758200px;}
.y41{bottom:666.719850px;}
.y481{bottom:667.259850px;}
.y480{bottom:667.268850px;}
.y164{bottom:668.852280px;}
.y18{bottom:669.239850px;}
.y238{bottom:669.955500px;}
.y281{bottom:670.859850px;}
.y3c0{bottom:673.020000px;}
.y2b7{bottom:676.462140px;}
.y2c9{bottom:676.498320px;}
.y326{bottom:678.083760px;}
.y21c{bottom:679.859100px;}
.y3fb{bottom:680.939850px;}
.y3fa{bottom:680.944500px;}
.y199{bottom:681.129720px;}
.y39b{bottom:681.665250px;}
.y9f{bottom:681.828480px;}
.y1e9{bottom:682.013910px;}
.y1b9{bottom:682.015140px;}
.y4bf{bottom:682.027410px;}
.y347{bottom:682.209360px;}
.y126{bottom:682.386480px;}
.yf9{bottom:682.566480px;}
.y3f{bottom:683.279850px;}
.ycb{bottom:683.284320px;}
.y371{bottom:683.808840px;}
.y73{bottom:684.002370px;}
.y303{bottom:684.720000px;}
.y442{bottom:685.800000px;}
.y441{bottom:685.804350px;}
.y237{bottom:688.680000px;}
.y163{bottom:690.814080px;}
.y2b6{bottom:693.020520px;}
.y2c8{bottom:693.056700px;}
.y27f{bottom:696.599850px;}
.y3bf{bottom:699.480000px;}
.y3d{bottom:699.839850px;}
.y325{bottom:700.941960px;}
.y21b{bottom:702.896580px;}
.y9e{bottom:703.790280px;}
.y39a{bottom:704.164890px;}
.y198{bottom:704.167200px;}
.y4be{bottom:704.168490px;}
.y440{bottom:704.339850px;}
.y43f{bottom:704.344350px;}
.y3f9{bottom:704.880000px;}
.y125{bottom:704.886120px;}
.yf8{bottom:705.066120px;}
.y346{bottom:705.246840px;}
.yca{bottom:705.783960px;}
.y370{bottom:705.949920px;}
.y72{bottom:706.143450px;}
.y236{bottom:706.680000px;}
.y2b5{bottom:709.578900px;}
.y2c7{bottom:709.615080px;}
.y1e8{bottom:709.739850px;}
.y162{bottom:712.955160px;}
.y27a{bottom:713.340000px;}
.y302{bottom:715.140000px;}
.y3f8{bottom:723.419850px;}
.y324{bottom:723.979440px;}
.y21a{bottom:725.754780px;}
.y9d{bottom:725.931360px;}
.y2b4{bottom:725.956380px;}
.y2c6{bottom:725.992560px;}
.y27e{bottom:726.301470px;}
.y399{bottom:726.664530px;}
.y197{bottom:727.025400px;}
.y124{bottom:727.385760px;}
.yf7{bottom:727.565760px;}
.y36f{bottom:728.091000px;}
.y345{bottom:728.105040px;}
.y43e{bottom:728.279850px;}
.y43d{bottom:728.280000px;}
.yc9{bottom:728.283600px;}
.y71{bottom:728.643090px;}
.y235{bottom:729.724500px;}
.y15{bottom:732.603420px;}
.y279{bottom:734.579850px;}
.y161{bottom:734.916960px;}
.y4bd{bottom:735.124170px;}
.y1e7{bottom:737.459850px;}
.y3f7{bottom:741.955350px;}
.y2b3{bottom:742.514760px;}
.y2c5{bottom:742.550940px;}
.y3be{bottom:742.680360px;}
.y27d{bottom:742.859850px;}
.y47f{bottom:746.819850px;}
.y47e{bottom:746.824500px;}
.y323{bottom:746.837640px;}
.y43c{bottom:747.004500px;}
.y9c{bottom:748.072440px;}
.y234{bottom:748.260000px;}
.y219{bottom:748.792260px;}
.y14{bottom:748.800000px;}
.y398{bottom:749.164170px;}
.y196{bottom:749.883600px;}
.y123{bottom:749.885400px;}
.yf6{bottom:750.065400px;}
.y36e{bottom:750.411360px;}
.yc8{bottom:750.783240px;}
.y344{bottom:751.142520px;}
.y70{bottom:751.142730px;}
.y301{bottom:753.110280px;}
.y1e4{bottom:755.280000px;}
.y160{bottom:757.058040px;}
.y4bc{bottom:757.265250px;}
.y2b2{bottom:759.073140px;}
.y2c4{bottom:759.109320px;}
.y3bd{bottom:765.180000px;}
.y1e6{bottom:765.539850px;}
.y47d{bottom:765.549000px;}
.y3f6{bottom:766.079850px;}
.y3f5{bottom:766.084500px;}
.y13{bottom:767.344500px;}
.y322{bottom:769.875120px;}
.y9b{bottom:770.213520px;}
.y218{bottom:770.395500px;}
.y233{bottom:770.940000px;}
.y43b{bottom:770.944350px;}
.y397{bottom:771.663810px;}
.y25a{bottom:772.011000px;}
.y278{bottom:772.380000px;}
.y195{bottom:772.383240px;}
.y122{bottom:772.385040px;}
.y36d{bottom:772.552440px;}
.yf5{bottom:772.565040px;}
.yc7{bottom:773.282880px;}
.y6f{bottom:773.642370px;}
.y343{bottom:774.000720px;}
.y300{bottom:775.251360px;}
.y2b1{bottom:775.450620px;}
.y2c3{bottom:775.486800px;}
.y15f{bottom:779.019840px;}
.y47c{bottom:784.084500px;}
.y3f4{bottom:784.620000px;}
.y3f3{bottom:784.624500px;}
.y4bb{bottom:788.220930px;}
.y43a{bottom:789.479850px;}
.y439{bottom:789.484500px;}
.y12{bottom:791.100000px;}
.y2b0{bottom:792.009000px;}
.y2c2{bottom:792.045180px;}
.y9a{bottom:792.533880px;}
.y321{bottom:792.733320px;}
.y1e3{bottom:793.440000px;}
.y396{bottom:794.163450px;}
.y36c{bottom:794.693520px;}
.y194{bottom:794.882880px;}
.y121{bottom:794.884680px;}
.yf4{bottom:795.064680px;}
.yc6{bottom:795.782520px;}
.y6e{bottom:796.142010px;}
.y3bc{bottom:796.319850px;}
.y342{bottom:797.038200px;}
.y2ff{bottom:797.213160px;}
.y15e{bottom:801.160920px;}
.y217{bottom:803.517480px;}
.y277{bottom:803.700000px;}
.y438{bottom:808.020000px;}
.y47b{bottom:808.024500px;}
.y3f2{bottom:808.560000px;}
.y2af{bottom:808.567380px;}
.y2c1{bottom:808.603560px;}
.y11{bottom:809.639850px;}
.y4ba{bottom:810.362010px;}
.y264{bottom:812.164500px;}
.y99{bottom:814.674960px;}
.y320{bottom:815.770800px;}
.y395{bottom:816.663090px;}
.y36b{bottom:817.013880px;}
.y193{bottom:817.382520px;}
.y120{bottom:817.384320px;}
.yf3{bottom:817.564320px;}
.yc5{bottom:818.282160px;}
.y6d{bottom:818.641650px;}
.y2fe{bottom:819.354240px;}
.y341{bottom:819.896400px;}
.y276{bottom:821.508480px;}
.y15d{bottom:823.122720px;}
.y2ae{bottom:825.125760px;}
.y2c0{bottom:825.161940px;}
.y1e2{bottom:825.844500px;}
.y216{bottom:826.017120px;}
.y47a{bottom:826.560000px;}
.y479{bottom:826.564500px;}
.y3f1{bottom:827.100000px;}
.y3f0{bottom:827.104350px;}
.y266{bottom:830.308500px;}
.y437{bottom:831.955500px;}
.y4b9{bottom:832.503090px;}
.y3bb{bottom:835.938360px;}
.y98{bottom:836.816040px;}
.y31f{bottom:838.629000px;}
.y36a{bottom:839.154960px;}
.y394{bottom:839.162730px;}
.y10{bottom:839.700000px;}
.y192{bottom:839.882160px;}
.y11f{bottom:839.883960px;}
.yf2{bottom:840.063960px;}
.yc4{bottom:840.781800px;}
.y6c{bottom:841.141290px;}
.y2fd{bottom:841.316040px;}
.y2ad{bottom:841.503240px;}
.y2bf{bottom:841.539420px;}
.y340{bottom:842.933880px;}
.y275{bottom:843.649560px;}
.y1e1{bottom:844.380000px;}
.y262{bottom:844.585500px;}
.y478{bottom:845.100000px;}
.y15c{bottom:845.263800px;}
.y3ef{bottom:845.639850px;}
.y3ee{bottom:845.644350px;}
.y215{bottom:848.516760px;}
.y436{bottom:850.680000px;}
.y435{bottom:850.689000px;}
.y4b8{bottom:855.002730px;}
.y2ac{bottom:858.061620px;}
.y2be{bottom:858.097800px;}
.y3ba{bottom:858.438000px;}
.y97{bottom:859.136400px;}
.y369{bottom:861.296040px;}
.y393{bottom:861.662370px;}
.y31e{bottom:861.666480px;}
.y1e0{bottom:862.380360px;}
.y191{bottom:862.381800px;}
.y11e{bottom:862.383600px;}
.yf1{bottom:862.563600px;}
.yc3{bottom:863.281440px;}
.y2fc{bottom:863.457120px;}
.y6b{bottom:863.640930px;}
.y477{bottom:863.824500px;}
.y3ed{bottom:864.368850px;}
.y274{bottom:865.611360px;}
.y33f{bottom:865.792080px;}
.y15b{bottom:867.225600px;}
.y434{bottom:869.224500px;}
.y214{bottom:871.016400px;}
.y2ab{bottom:874.620000px;}
.y2bd{bottom:874.656180px;}
.y268{bottom:876.709500px;}
.y4b7{bottom:877.502370px;}
.y3b9{bottom:880.937640px;}
.y96{bottom:881.277480px;}
.y368{bottom:883.616400px;}
.y392{bottom:884.162010px;}
.y31d{bottom:884.524680px;}
.y190{bottom:884.881440px;}
.y1df{bottom:884.882160px;}
.y11d{bottom:884.883240px;}
.yf0{bottom:885.063240px;}
.y2fb{bottom:885.418920px;}
.yc2{bottom:885.781080px;}
.y6a{bottom:886.140570px;}
.y273{bottom:887.752440px;}
.y433{bottom:887.760000px;}
.y476{bottom:887.764500px;}
.y432{bottom:887.769000px;}
.y3ec{bottom:888.304350px;}
.y33e{bottom:888.829560px;}
.y15a{bottom:889.366680px;}
.y2bc{bottom:891.214560px;}
.y213{bottom:893.516040px;}
.y4b6{bottom:900.002010px;}
.y95{bottom:903.418560px;}
.y3b8{bottom:903.437280px;}
.y367{bottom:905.757480px;}
.y475{bottom:906.300000px;}
.y474{bottom:906.304350px;}
.y431{bottom:906.304500px;}
.y391{bottom:906.661650px;}
.y3eb{bottom:906.839850px;}
.y18f{bottom:907.381080px;}
.y1de{bottom:907.381800px;}
.y11c{bottom:907.382880px;}
.y2fa{bottom:907.560000px;}
.yef{bottom:907.562880px;}
.y2bb{bottom:907.592040px;}
.yf{bottom:907.928490px;}
.yc1{bottom:908.280720px;}
.y69{bottom:908.640210px;}
.y272{bottom:909.714240px;}
.y159{bottom:911.328480px;}
.y1b8{bottom:911.508480px;}
.y212{bottom:914.940000px;}
.y4ad{bottom:915.660210px;}
.y4b5{bottom:922.501650px;}
.y2ba{bottom:924.150420px;}
.y473{bottom:924.839850px;}
.y472{bottom:924.844500px;}
.y94{bottom:925.738920px;}
.y3b7{bottom:926.474760px;}
.y366{bottom:927.898560px;}
.y390{bottom:929.161290px;}
.y18e{bottom:929.880720px;}
.y1dd{bottom:929.881440px;}
.y11b{bottom:929.882520px;}
.yee{bottom:930.062520px;}
.y42f{bottom:930.235500px;}
.y430{bottom:930.240000px;}
.yc0{bottom:930.780360px;}
.y68{bottom:931.139850px;}
.y271{bottom:931.855320px;}
.y158{bottom:933.469560px;}
.y1b7{bottom:933.649560px;}
.y2f9{bottom:938.159850px;}
.y211{bottom:941.760000px;}
.y2a7{bottom:943.200000px;}
.y4b4{bottom:945.001290px;}
.ye{bottom:946.632990px;}
.y93{bottom:947.880000px;}
.y470{bottom:948.775350px;}
.y471{bottom:948.780000px;}
.y42e{bottom:948.960000px;}
.y42d{bottom:948.964500px;}
.y3b6{bottom:949.332960px;}
.y365{bottom:950.218920px;}
.y3ea{bottom:950.220000px;}
.y38f{bottom:951.660930px;}
.y18d{bottom:952.380360px;}
.y1dc{bottom:952.381080px;}
.y11a{bottom:952.382160px;}
.yed{bottom:952.562160px;}
.ybf{bottom:953.280000px;}
.y270{bottom:953.817120px;}
.y157{bottom:955.431360px;}
.y1b6{bottom:955.611360px;}
.y4ac{bottom:961.942500px;}
.y67{bottom:962.100000px;}
.y46f{bottom:967.499850px;}
.y42c{bottom:967.500000px;}
.y4b3{bottom:967.500930px;}
.y46e{bottom:967.504350px;}
.y3e9{bottom:969.120000px;}
.y364{bottom:972.360000px;}
.y3b5{bottom:972.370440px;}
.y38e{bottom:974.160570px;}
.y1db{bottom:974.880720px;}
.y119{bottom:974.881800px;}
.yec{bottom:975.061800px;}
.ybe{bottom:975.779640px;}
.y26f{bottom:975.958200px;}
.y2a6{bottom:977.220000px;}
.y156{bottom:977.572440px;}
.y1b5{bottom:977.752440px;}
.y2f8{bottom:977.758200px;}
.y92{bottom:978.298560px;}
.y210{bottom:979.917330px;}
.y4ab{bottom:980.478000px;}
.yd{bottom:985.139850px;}
.y46d{bottom:986.039850px;}
.y4b2{bottom:990.000570px;}
.y42b{bottom:991.260000px;}
.y42a{bottom:991.264500px;}
.y3e8{bottom:993.424350px;}
.y2a5{bottom:995.038770px;}
.y3b4{bottom:995.228640px;}
.y38d{bottom:996.660210px;}
.y1da{bottom:997.380360px;}
.y118{bottom:997.381440px;}
.yeb{bottom:997.561440px;}
.y91{bottom:997.740000px;}
.y26e{bottom:997.920000px;}
.ybd{bottom:998.279280px;}
.y4aa{bottom:999.013500px;}
.y155{bottom:999.534240px;}
.y1b4{bottom:999.714240px;}
.y2f7{bottom:999.720000px;}
.y66{bottom:1000.979850px;}
.y4d6{bottom:1001.893320px;}
.y20f{bottom:1002.416970px;}
.y363{bottom:1002.960000px;}
.y428{bottom:1009.259850px;}
.y429{bottom:1009.260000px;}
.y46c{bottom:1010.339850px;}
.y46b{bottom:1010.344500px;}
.y3e7{bottom:1012.499850px;}
.y4b1{bottom:1012.500210px;}
.y3e6{bottom:1012.504350px;}
.y2a4{bottom:1017.177120px;}
.y4a9{bottom:1017.549000px;}
.y3b3{bottom:1018.266120px;}
.y38c{bottom:1019.159850px;}
.yc{bottom:1019.866170px;}
.y1d9{bottom:1019.880000px;}
.y1d8{bottom:1019.880360px;}
.y117{bottom:1019.881080px;}
.yea{bottom:1020.061080px;}
.ybc{bottom:1020.778920px;}
.y154{bottom:1021.675320px;}
.y1b3{bottom:1021.855320px;}
.y20e{bottom:1024.916610px;}
.y90{bottom:1026.360000px;}
.y427{bottom:1027.255350px;}
.y62{bottom:1028.520000px;}
.y46a{bottom:1029.420000px;}
.y469{bottom:1029.424500px;}
.y3e5{bottom:1031.404350px;}
.y4d5{bottom:1033.386840px;}
.y4b0{bottom:1034.999850px;}
.y4a8{bottom:1036.084500px;}
.y2a3{bottom:1039.138920px;}
.yb{bottom:1039.854090px;}
.y362{bottom:1041.124320px;}
.y1d7{bottom:1042.380000px;}
.y1d6{bottom:1042.380360px;}
.y116{bottom:1042.380720px;}
.ye9{bottom:1042.560720px;}
.ybb{bottom:1043.278560px;}
.y153{bottom:1043.637120px;}
.y1b2{bottom:1043.817120px;}
.y20d{bottom:1047.416250px;}
.y38b{bottom:1049.940000px;}
.y426{bottom:1050.839850px;}
.y425{bottom:1050.844500px;}
.y468{bottom:1053.904350px;}
.y64{bottom:1054.800000px;}
.y4a7{bottom:1054.809000px;}
.y3e4{bottom:1055.344500px;}
.y4af{bottom:1057.499850px;}
.ya{bottom:1059.659850px;}
.y2a2{bottom:1061.280000px;}
.y361{bottom:1064.161800px;}
.y1d5{bottom:1064.880000px;}
.y115{bottom:1064.880360px;}
.ye8{bottom:1065.060360px;}
.yba{bottom:1065.778200px;}
.y8f{bottom:1065.958200px;}
.y20c{bottom:1069.915890px;}
.y467{bottom:1072.979850px;}
.y466{bottom:1072.984500px;}
.y4a6{bottom:1073.344500px;}
.y3e3{bottom:1073.880000px;}
.y424{bottom:1074.240000px;}
.y423{bottom:1074.244500px;}
.y4{bottom:1079.648850px;}
.y360{bottom:1087.020000px;}
.y114{bottom:1087.380000px;}
.ye7{bottom:1087.560000px;}
.yb9{bottom:1087.740000px;}
.y8e{bottom:1087.920000px;}
.y4ae{bottom:1088.460000px;}
.y2a1{bottom:1089.720000px;}
.y20b{bottom:1091.339850px;}
.y4a5{bottom:1091.880000px;}
.y465{bottom:1092.060000px;}
.y3e2{bottom:1092.240000px;}
.y3{bottom:1097.644350px;}
.y2{bottom:1115.644350px;}
.y60{bottom:1118.159850px;}
.y8d{bottom:1119.424500px;}
.y1{bottom:1133.639850px;}
.y5f{bottom:1135.260000px;}
.h32{height:19.080000px;}
.h13{height:22.234500px;}
.hf{height:23.994141px;}
.h20{height:25.380000px;}
.h4{height:25.560000px;}
.h23{height:25.561500px;}
.h1d{height:27.540000px;}
.h1c{height:27.720000px;}
.h2c{height:28.554000px;}
.h9{height:28.615680px;}
.hb{height:32.152148px;}
.h2e{height:32.940000px;}
.h2f{height:33.120000px;}
.h2d{height:33.121500px;}
.h28{height:35.859243px;}
.h26{height:35.866564px;}
.h2{height:36.624023px;}
.h5{height:36.650391px;}
.h3{height:38.759766px;}
.h24{height:39.191040px;}
.h15{height:40.559766px;}
.h14{height:41.165107px;}
.h11{height:41.679360px;}
.h30{height:41.684400px;}
.h1a{height:41.902031px;}
.h1f{height:42.478500px;}
.h12{height:43.933903px;}
.h8{height:46.445625px;}
.ha{height:46.656000px;}
.h37{height:46.674000px;}
.h36{height:49.179742px;}
.h22{height:49.498500px;}
.h6{height:49.680000px;}
.hd{height:50.484375px;}
.he{height:51.632640px;}
.h31{height:51.643560px;}
.h1b{height:51.651360px;}
.h18{height:54.425581px;}
.h35{height:54.792000px;}
.h19{height:54.863400px;}
.h17{height:54.911520px;}
.h16{height:61.918500px;}
.h2b{height:66.030000px;}
.h21{height:74.096640px;}
.h1e{height:74.820240px;}
.h7{height:92.386406px;}
.h27{height:98.152500px;}
.h2a{height:109.456500px;}
.h29{height:130.575000px;}
.h34{height:284.220000px;}
.h25{height:326.584500px;}
.h33{height:360.360000px;}
.h10{height:498.060000px;}
.hc{height:574.020000px;}
.h0{height:1211.940000px;}
.h1{height:1212.000000px;}
.wb{width:26.460000px;}
.we{width:30.628500px;}
.wd{width:30.630000px;}
.wa{width:63.720000px;}
.wf{width:68.100000px;}
.w11{width:75.831000px;}
.w8{width:77.940000px;}
.w10{width:79.102500px;}
.w5{width:79.357500px;}
.w9{width:85.140000px;}
.w14{width:85.680000px;}
.w7{width:102.780000px;}
.w13{width:103.860000px;}
.w12{width:105.481500px;}
.w16{width:106.380000px;}
.w4{width:219.060000px;}
.w15{width:225.180000px;}
.w6{width:263.700000px;}
.w18{width:294.840000px;}
.w17{width:321.840000px;}
.w2{width:335.880000px;}
.wc{width:491.263500px;}
.w3{width:497.520000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4f{left:1.980000px;}
.x2d{left:6.364800px;}
.x76{left:7.450200px;}
.x6a{left:11.982750px;}
.x56{left:13.680000px;}
.xc{left:14.940000px;}
.x53{left:19.260000px;}
.x79{left:20.700000px;}
.x58{left:22.140000px;}
.x64{left:23.400000px;}
.x5a{left:24.480000px;}
.x5c{left:25.740000px;}
.x7d{left:27.000000px;}
.x55{left:34.560000px;}
.x7b{left:37.080000px;}
.x8f{left:41.220000px;}
.x91{left:58.140000px;}
.x47{left:64.620000px;}
.x8c{left:68.400000px;}
.x5{left:84.955500px;}
.x6{left:87.120000px;}
.x1d{left:91.800000px;}
.x85{left:94.680000px;}
.x86{left:97.200000px;}
.x89{left:104.400000px;}
.x20{left:106.380000px;}
.x4c{left:110.160000px;}
.x7{left:114.480000px;}
.x51{left:116.280000px;}
.x21{left:126.720000px;}
.x27{left:131.580000px;}
.x23{left:136.080000px;}
.x28{left:139.320000px;}
.x24{left:141.300000px;}
.x25{left:144.540000px;}
.x1a{left:148.680000px;}
.x2b{left:152.460000px;}
.x2c{left:160.840500px;}
.x2a{left:164.340000px;}
.x26{left:168.480000px;}
.x18{left:176.400000px;}
.x80{left:185.940000px;}
.x8a{left:191.340000px;}
.x8d{left:193.500000px;}
.x19{left:195.840000px;}
.x1b{left:197.640000px;}
.x17{left:202.140000px;}
.x1f{left:206.280000px;}
.x1c{left:216.000000px;}
.x1e{left:221.760000px;}
.x14{left:225.900000px;}
.x16{left:236.340000px;}
.x4e{left:263.160000px;}
.x29{left:265.320000px;}
.xa{left:271.615500px;}
.x22{left:283.860000px;}
.x10{left:288.000000px;}
.x90{left:291.960000px;}
.x11{left:303.300000px;}
.xb{left:310.500000px;}
.x4d{left:312.480000px;}
.x66{left:315.540000px;}
.x68{left:317.707560px;}
.x62{left:319.680000px;}
.x7a{left:323.460000px;}
.xd{left:325.440000px;}
.x84{left:327.060000px;}
.x83{left:328.680000px;}
.x9{left:335.880000px;}
.x82{left:338.940000px;}
.x30{left:340.546320px;}
.xa2{left:345.240000px;}
.x52{left:346.500000px;}
.x93{left:348.840000px;}
.xc3{left:353.160000px;}
.xac{left:355.320000px;}
.xca{left:364.140000px;}
.x69{left:367.206000px;}
.x37{left:368.280000px;}
.x36{left:372.420000px;}
.xe{left:377.280000px;}
.xa3{left:379.800000px;}
.xcf{left:381.420000px;}
.x32{left:383.580000px;}
.x75{left:386.832000px;}
.x54{left:394.560000px;}
.xad{left:396.900000px;}
.x6b{left:398.133000px;}
.x13{left:400.500000px;}
.xbd{left:403.020000px;}
.xb0{left:409.500000px;}
.x4a{left:411.300000px;}
.x4b{left:413.458740px;}
.x49{left:415.440000px;}
.x33{left:417.600000px;}
.xbc{left:419.040000px;}
.x45{left:421.380000px;}
.x6c{left:428.761500px;}
.xb2{left:431.280000px;}
.x12{left:433.980000px;}
.x39{left:438.120000px;}
.xb8{left:440.820000px;}
.x38{left:451.980000px;}
.xc5{left:453.240000px;}
.xa9{left:456.300000px;}
.xa6{left:457.740000px;}
.x6d{left:459.688500px;}
.xcd{left:463.320000px;}
.xae{left:465.660000px;}
.xc9{left:468.720000px;}
.x8{left:469.980000px;}
.x3b{left:471.420000px;}
.xb3{left:473.400000px;}
.xaf{left:476.460000px;}
.x15{left:484.380000px;}
.x34{left:485.820000px;}
.xbe{left:487.980000px;}
.x87{left:489.600000px;}
.x9f{left:491.940000px;}
.x57{left:493.200000px;}
.xf{left:494.460000px;}
.x88{left:496.080000px;}
.xa8{left:503.280000px;}
.x3a{left:506.520000px;}
.xab{left:511.380000px;}
.x8b{left:513.180000px;}
.x8e{left:515.345220px;}
.x92{left:516.960000px;}
.x7c{left:519.480000px;}
.x6e{left:521.245500px;}
.x99{left:522.540000px;}
.xbf{left:525.060000px;}
.xb7{left:533.700000px;}
.x77{left:535.222500px;}
.xd0{left:536.940000px;}
.xb6{left:539.100000px;}
.xc7{left:540.720000px;}
.xa0{left:546.120000px;}
.x9d{left:548.640000px;}
.xa1{left:549.900000px;}
.x6f{left:551.874000px;}
.x40{left:557.640000px;}
.x94{left:558.900000px;}
.xc2{left:561.420000px;}
.x59{left:563.400000px;}
.xb9{left:567.360000px;}
.xc4{left:573.120000px;}
.x5b{left:579.420000px;}
.x50{left:581.220000px;}
.x1{left:582.840000px;}
.x48{left:590.040000px;}
.xa5{left:597.060000px;}
.x9a{left:608.040000px;}
.xb1{left:609.120000px;}
.x96{left:610.560000px;}
.x70{left:613.432500px;}
.x7e{left:621.180000px;}
.x2{left:623.704500px;}
.x42{left:630.180000px;}
.x7f{left:631.262160px;}
.xc6{left:634.860000px;}
.x41{left:637.560000px;}
.xb4{left:642.780000px;}
.xcb{left:645.300000px;}
.xa4{left:646.380000px;}
.x5e{left:648.540000px;}
.xc1{left:653.580000px;}
.x5d{left:654.660000px;}
.x9b{left:662.040000px;}
.x5f{left:664.740000px;}
.x43{left:666.720000px;}
.x3c{left:669.600000px;}
.x71{left:674.988000px;}
.x3{left:678.604500px;}
.x63{left:685.800000px;}
.x9c{left:687.240000px;}
.x4{left:688.324500px;}
.x78{left:690.748500px;}
.x95{left:693.180000px;}
.xcc{left:696.420000px;}
.xb5{left:698.760000px;}
.x44{left:701.280000px;}
.x72{left:705.618000px;}
.xba{left:711.540000px;}
.xc8{left:714.600000px;}
.x2f{left:719.460000px;}
.x9e{left:720.540000px;}
.x65{left:725.760000px;}
.x67{left:728.640000px;}
.x3d{left:732.420000px;}
.x3e{left:734.040000px;}
.x73{left:736.545000px;}
.xa7{left:737.820000px;}
.x31{left:741.240000px;}
.x98{left:745.020000px;}
.xbb{left:747.000000px;}
.xd1{left:756.540000px;}
.x3f{left:760.320000px;}
.xaa{left:765.360000px;}
.x74{left:767.173500px;}
.xc0{left:770.220000px;}
.x97{left:774.900000px;}
.x60{left:783.360000px;}
.x35{left:787.500000px;}
.x46{left:788.760000px;}
.x61{left:789.840000px;}
.x81{left:793.260000px;}
.xce{left:804.600000px;}
.x2e{left:807.840000px;}
@media print{
.v2{vertical-align:-18.559467pt;}
.v5{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.439467pt;}
.v3{vertical-align:21.162240pt;}
.v4{vertical-align:29.458560pt;}
.ls117{letter-spacing:-1.619086pt;}
.lsfc{letter-spacing:-1.536000pt;}
.lsd0{letter-spacing:-1.434240pt;}
.ls10b{letter-spacing:-1.416700pt;}
.ls10c{letter-spacing:-1.315508pt;}
.lsd3{letter-spacing:-1.274880pt;}
.ls10f{letter-spacing:-1.248000pt;}
.lsd1{letter-spacing:-1.221760pt;}
.lsf2{letter-spacing:-1.152000pt;}
.ls118{letter-spacing:-1.113122pt;}
.ls10d{letter-spacing:-1.062525pt;}
.ls10e{letter-spacing:-1.011929pt;}
.lsf4{letter-spacing:-1.008000pt;}
.ls119{letter-spacing:-0.960000pt;}
.ls55{letter-spacing:-0.903040pt;}
.ls4c{letter-spacing:-0.883200pt;}
.ls11b{letter-spacing:-0.816000pt;}
.lsd2{letter-spacing:-0.796800pt;}
.ls11a{letter-spacing:-0.758947pt;}
.ls54{letter-spacing:-0.743680pt;}
.ls56{letter-spacing:-0.690560pt;}
.ls10a{letter-spacing:-0.672000pt;}
.ls52{letter-spacing:-0.588800pt;}
.lsf6{letter-spacing:-0.576000pt;}
.ls30{letter-spacing:-0.557440pt;}
.lsf0{letter-spacing:-0.556561pt;}
.lsa8{letter-spacing:-0.537600pt;}
.ls4d{letter-spacing:-0.529920pt;}
.ls100{letter-spacing:-0.505964pt;}
.ls17{letter-spacing:-0.480000pt;}
.ls24{letter-spacing:-0.471680pt;}
.lsf3{letter-spacing:-0.432000pt;}
.ls116{letter-spacing:-0.404772pt;}
.ls27{letter-spacing:-0.385920pt;}
.lsed{letter-spacing:-0.354175pt;}
.ls61{letter-spacing:-0.353280pt;}
.ls16{letter-spacing:-0.336000pt;}
.ls69{letter-spacing:-0.318720pt;}
.lsad{letter-spacing:-0.310919pt;}
.ls32{letter-spacing:-0.300160pt;}
.ls14{letter-spacing:-0.294400pt;}
.lsc{letter-spacing:-0.288000pt;}
.ls2c{letter-spacing:-0.271197pt;}
.ls42{letter-spacing:-0.265600pt;}
.ls26{letter-spacing:-0.257280pt;}
.lsef{letter-spacing:-0.252982pt;}
.lsb{letter-spacing:-0.240000pt;}
.ls12{letter-spacing:-0.235520pt;}
.lse{letter-spacing:-0.234240pt;}
.ls28{letter-spacing:-0.214400pt;}
.ls44{letter-spacing:-0.212480pt;}
.ls115{letter-spacing:-0.202386pt;}
.lsab{letter-spacing:-0.201600pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls4b{letter-spacing:-0.176640pt;}
.ls53{letter-spacing:-0.167980pt;}
.ls1b{letter-spacing:-0.159360pt;}
.lsf5{letter-spacing:-0.151789pt;}
.ls8f{letter-spacing:-0.144000pt;}
.ls33{letter-spacing:-0.128640pt;}
.ls3f{letter-spacing:-0.128000pt;}
.lsac{letter-spacing:-0.120960pt;}
.lsf{letter-spacing:-0.117120pt;}
.ls8d{letter-spacing:-0.111987pt;}
.ls1f{letter-spacing:-0.106240pt;}
.lsd{letter-spacing:-0.096000pt;}
.lsb0{letter-spacing:-0.088834pt;}
.lsae{letter-spacing:-0.088816pt;}
.ls1a{letter-spacing:-0.064000pt;}
.ls5b{letter-spacing:-0.055993pt;}
.ls1c{letter-spacing:-0.053120pt;}
.lsfe{letter-spacing:-0.050596pt;}
.lsf1{letter-spacing:-0.048000pt;}
.ls2b{letter-spacing:-0.045199pt;}
.ls25{letter-spacing:-0.042880pt;}
.ls9{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.042880pt;}
.ls35{letter-spacing:0.048000pt;}
.lsec{letter-spacing:0.050596pt;}
.ls1e{letter-spacing:0.053120pt;}
.ls57{letter-spacing:0.055993pt;}
.ls13{letter-spacing:0.058880pt;}
.ls40{letter-spacing:0.064000pt;}
.lse2{letter-spacing:0.071680pt;}
.lsa9{letter-spacing:0.080640pt;}
.ls5{letter-spacing:0.085760pt;}
.ls2d{letter-spacing:0.090399pt;}
.ls101{letter-spacing:0.096000pt;}
.ls21{letter-spacing:0.106240pt;}
.ls6f{letter-spacing:0.111552pt;}
.ls70{letter-spacing:0.111987pt;}
.ls11{letter-spacing:0.117120pt;}
.ls4f{letter-spacing:0.117760pt;}
.ls59{letter-spacing:0.122176pt;}
.ls46{letter-spacing:0.128000pt;}
.ls2a{letter-spacing:0.128640pt;}
.ls15{letter-spacing:0.144000pt;}
.ls49{letter-spacing:0.148736pt;}
.lseb{letter-spacing:0.151789pt;}
.lsd7{letter-spacing:0.154048pt;}
.ls4e{letter-spacing:0.159360pt;}
.lsfd{letter-spacing:0.192000pt;}
.lsaa{letter-spacing:0.201600pt;}
.lsff{letter-spacing:0.202386pt;}
.ls3c{letter-spacing:0.212480pt;}
.ls71{letter-spacing:0.223974pt;}
.ls1{letter-spacing:0.234240pt;}
.ls7{letter-spacing:0.235840pt;}
.lsde{letter-spacing:0.239040pt;}
.lsce{letter-spacing:0.240000pt;}
.lsee{letter-spacing:0.252982pt;}
.ls2f{letter-spacing:0.257280pt;}
.ls1d{letter-spacing:0.265600pt;}
.ls2e{letter-spacing:0.271197pt;}
.ls19{letter-spacing:0.288000pt;}
.ls51{letter-spacing:0.292160pt;}
.ls60{letter-spacing:0.294400pt;}
.lse4{letter-spacing:0.303579pt;}
.ls43{letter-spacing:0.318720pt;}
.lsd9{letter-spacing:0.324032pt;}
.ls18{letter-spacing:0.336000pt;}
.ls10{letter-spacing:0.351360pt;}
.lsea{letter-spacing:0.354175pt;}
.ls47{letter-spacing:0.371840pt;}
.lsaf{letter-spacing:0.399672pt;}
.ls64{letter-spacing:0.424960pt;}
.lsda{letter-spacing:0.435584pt;}
.ls107{letter-spacing:0.455368pt;}
.ls0{letter-spacing:0.468480pt;}
.ls20{letter-spacing:0.478080pt;}
.lsa4{letter-spacing:0.483392pt;}
.ls4{letter-spacing:0.504320pt;}
.ls5f{letter-spacing:0.531200pt;}
.lsdc{letter-spacing:0.552448pt;}
.lse9{letter-spacing:0.576000pt;}
.ls41{letter-spacing:0.584320pt;}
.ls65{letter-spacing:0.610880pt;}
.ls45{letter-spacing:0.637440pt;}
.ls63{letter-spacing:0.642752pt;}
.ls91{letter-spacing:0.658688pt;}
.ls5c{letter-spacing:0.690560pt;}
.lsa3{letter-spacing:0.706496pt;}
.ls22{letter-spacing:0.743680pt;}
.ls5d{letter-spacing:0.796800pt;}
.ls68{letter-spacing:0.849920pt;}
.ls73{letter-spacing:0.903040pt;}
.ls90{letter-spacing:0.986240pt;}
.ls31{letter-spacing:1.029120pt;}
.ls11f{letter-spacing:1.115520pt;}
.ls11e{letter-spacing:1.168640pt;}
.lse3{letter-spacing:1.180800pt;}
.lse8{letter-spacing:1.214400pt;}
.ls8e{letter-spacing:1.221760pt;}
.ls34{letter-spacing:1.228177pt;}
.ls23{letter-spacing:1.243520pt;}
.lse7{letter-spacing:1.248000pt;}
.ls36{letter-spacing:1.274880pt;}
.ls11c{letter-spacing:1.278080pt;}
.ls11d{letter-spacing:1.328000pt;}
.ls6d{letter-spacing:1.381120pt;}
.lsa7{letter-spacing:1.440000pt;}
.ls6e{letter-spacing:1.584000pt;}
.lscd{letter-spacing:1.650560pt;}
.ls92{letter-spacing:1.699840pt;}
.ls72{letter-spacing:1.859200pt;}
.lsf7{letter-spacing:1.872000pt;}
.ls37{letter-spacing:1.912320pt;}
.ls104{letter-spacing:2.496000pt;}
.ls3a{letter-spacing:2.549760pt;}
.ls111{letter-spacing:2.577600pt;}
.lsfa{letter-spacing:2.631015pt;}
.ls106{letter-spacing:2.990400pt;}
.ls102{letter-spacing:3.139200pt;}
.ls75{letter-spacing:3.168000pt;}
.ls39{letter-spacing:3.187200pt;}
.lsdd{letter-spacing:3.208448pt;}
.ls110{letter-spacing:3.339365pt;}
.ls5e{letter-spacing:3.346560pt;}
.ls108{letter-spacing:3.772800pt;}
.lse0{letter-spacing:3.792000pt;}
.lsdf{letter-spacing:3.811200pt;}
.ls2{letter-spacing:3.824640pt;}
.ls113{letter-spacing:3.997119pt;}
.ls93{letter-spacing:4.416000pt;}
.ls105{letter-spacing:4.435200pt;}
.ls62{letter-spacing:4.462080pt;}
.lsdb{letter-spacing:4.653312pt;}
.lsa5{letter-spacing:4.695808pt;}
.ls103{letter-spacing:5.016000pt;}
.ls6{letter-spacing:5.016960pt;}
.lse5{letter-spacing:5.088000pt;}
.ls38{letter-spacing:5.099520pt;}
.ls48{letter-spacing:5.736960pt;}
.lsd4{letter-spacing:5.774144pt;}
.ls112{letter-spacing:6.336000pt;}
.ls3b{letter-spacing:6.374400pt;}
.lsd5{letter-spacing:6.416896pt;}
.lsd6{letter-spacing:6.491264pt;}
.ls114{letter-spacing:6.678730pt;}
.lse6{letter-spacing:7.008000pt;}
.ls50{letter-spacing:7.011840pt;}
.lsd8{letter-spacing:7.059648pt;}
.lsf8{letter-spacing:7.632000pt;}
.ls3{letter-spacing:7.702400pt;}
.ls6b{letter-spacing:7.713024pt;}
.ls58{letter-spacing:8.339840pt;}
.lse1{letter-spacing:8.928000pt;}
.ls5a{letter-spacing:8.977280pt;}
.lsa6{letter-spacing:9.041024pt;}
.lscf{letter-spacing:9.614720pt;}
.ls109{letter-spacing:10.176000pt;}
.ls74{letter-spacing:10.252160pt;}
.ls3d{letter-spacing:12.164480pt;}
.lsf9{letter-spacing:12.768000pt;}
.ls3e{letter-spacing:12.801920pt;}
.ls67{letter-spacing:13.439360pt;}
.ls66{letter-spacing:14.076800pt;}
.ls4a{letter-spacing:14.714240pt;}
.lsfb{letter-spacing:16.608000pt;}
.ls6a{letter-spacing:19.813760pt;}
.ls6c{letter-spacing:22.416640pt;}
.ls76{letter-spacing:26.800000pt;}
.ls7d{letter-spacing:30.599168pt;}
.ls77{letter-spacing:33.189120pt;}
.ls7c{letter-spacing:35.697600pt;}
.ls78{letter-spacing:38.935040pt;}
.ls79{letter-spacing:44.054912pt;}
.lsa2{letter-spacing:46.576256pt;}
.ls99{letter-spacing:47.219456pt;}
.lsba{letter-spacing:48.523008pt;}
.ls82{letter-spacing:49.166208pt;}
.lsa0{letter-spacing:49.826560pt;}
.ls7e{letter-spacing:50.409728pt;}
.lsc1{letter-spacing:53.685760pt;}
.lsa1{letter-spacing:55.555328pt;}
.ls85{letter-spacing:55.572480pt;}
.ls98{letter-spacing:56.824576pt;}
.lsc0{letter-spacing:58.128128pt;}
.lsc2{letter-spacing:59.371648pt;}
.ls9d{letter-spacing:59.397376pt;}
.lsb9{letter-spacing:60.718080pt;}
.lsc5{letter-spacing:62.604800pt;}
.ls9c{letter-spacing:62.613376pt;}
.lsbf{letter-spacing:63.891200pt;}
.lsb8{letter-spacing:64.517248pt;}
.ls97{letter-spacing:67.072896pt;}
.ls9f{letter-spacing:67.716096pt;}
.ls9a{letter-spacing:67.750400pt;}
.ls9e{letter-spacing:69.036800pt;}
.lsb7{letter-spacing:69.619968pt;}
.ls96{letter-spacing:70.323200pt;}
.ls9b{letter-spacing:74.105216pt;}
.ls89{letter-spacing:74.139520pt;}
.lsc4{letter-spacing:77.938688pt;}
.lsbe{letter-spacing:78.581888pt;}
.lsb6{letter-spacing:84.971008pt;}
.lsc3{letter-spacing:92.063360pt;}
.lsbc{letter-spacing:92.689408pt;}
.lsb4{letter-spacing:93.932928pt;}
.lsbd{letter-spacing:94.636160pt;}
.lsb5{letter-spacing:95.279360pt;}
.lsbb{letter-spacing:98.452480pt;}
.ls7a{letter-spacing:102.954880pt;}
.lsb3{letter-spacing:104.824448pt;}
.ls95{letter-spacing:141.975680pt;}
.lsca{letter-spacing:147.764480pt;}
.lsb2{letter-spacing:157.326720pt;}
.lscc{letter-spacing:262.296960pt;}
.lsc6{letter-spacing:265.512960pt;}
.ls8{letter-spacing:300.705920pt;}
.lsc8{letter-spacing:343.597440pt;}
.ls8c{letter-spacing:364.694400pt;}
.ls7f{letter-spacing:373.656320pt;}
.ls80{letter-spacing:381.331840pt;}
.ls7b{letter-spacing:389.007360pt;}
.ls8a{letter-spacing:389.650560pt;}
.lsc7{letter-spacing:437.032960pt;}
.ls83{letter-spacing:536.214400pt;}
.ls86{letter-spacing:557.997440pt;}
.lscb{letter-spacing:585.526400pt;}
.ls94{letter-spacing:646.930560pt;}
.lsc9{letter-spacing:652.719360pt;}
.ls88{letter-spacing:681.491840pt;}
.ls8b{letter-spacing:687.923840pt;}
.ls81{letter-spacing:702.631680pt;}
.ls87{letter-spacing:717.982720pt;}
.ls84{letter-spacing:783.889280pt;}
.lsb1{letter-spacing:1005.364480pt;}
.ws2{word-spacing:-25.883520pt;}
.ws118{word-spacing:-14.501760pt;}
.ws1f8{word-spacing:-14.272000pt;}
.ws5b{word-spacing:-14.144000pt;}
.ws13a{word-spacing:-14.080000pt;}
.wsa{word-spacing:-14.016000pt;}
.ws153{word-spacing:-13.952000pt;}
.ws154{word-spacing:-13.888000pt;}
.ws10f{word-spacing:-13.606395pt;}
.wsa8{word-spacing:-13.494409pt;}
.wsc0{word-spacing:-13.492480pt;}
.wsbf{word-spacing:-13.438415pt;}
.ws10e{word-spacing:-13.382422pt;}
.wsca{word-spacing:-13.333120pt;}
.wsa7{word-spacing:-13.326428pt;}
.wse5{word-spacing:-13.280000pt;}
.wsfb{word-spacing:-13.226880pt;}
.ws8e{word-spacing:-13.173760pt;}
.ws63{word-spacing:-13.120640pt;}
.ws61{word-spacing:-13.067520pt;}
.ws5d{word-spacing:-13.014400pt;}
.wscb{word-spacing:-13.012480pt;}
.ws152{word-spacing:-12.961280pt;}
.ws8a{word-spacing:-12.953600pt;}
.ws8d{word-spacing:-12.908160pt;}
.wsb{word-spacing:-12.855040pt;}
.wsc{word-spacing:-12.801920pt;}
.ws62{word-spacing:-12.748800pt;}
.ws5f{word-spacing:-12.695680pt;}
.ws4{word-spacing:-12.659200pt;}
.wsd{word-spacing:-12.642560pt;}
.ws5e{word-spacing:-12.589440pt;}
.ws5c{word-spacing:-12.536320pt;}
.ws186{word-spacing:-12.497321pt;}
.wsed{word-spacing:-12.483200pt;}
.ws8c{word-spacing:-12.423680pt;}
.wsa6{word-spacing:-12.364800pt;}
.ws187{word-spacing:-12.345532pt;}
.ws1d4{word-spacing:-12.244339pt;}
.ws160{word-spacing:-12.193743pt;}
.ws1b1{word-spacing:-12.143146pt;}
.ws13b{word-spacing:-12.111360pt;}
.ws8b{word-spacing:-12.070400pt;}
.ws1b2{word-spacing:-12.041953pt;}
.ws1cf{word-spacing:-11.991357pt;}
.ws161{word-spacing:-11.940760pt;}
.ws7{word-spacing:-11.904000pt;}
.ws8{word-spacing:-11.856000pt;}
.ws15f{word-spacing:-11.839568pt;}
.ws136{word-spacing:-11.808000pt;}
.ws1d5{word-spacing:-11.760000pt;}
.ws9{word-spacing:-11.712000pt;}
.ws1d3{word-spacing:-11.687778pt;}
.ws189{word-spacing:-11.664000pt;}
.ws162{word-spacing:-11.637182pt;}
.ws1b0{word-spacing:-11.616000pt;}
.ws18{word-spacing:-11.577600pt;}
.ws135{word-spacing:-11.568000pt;}
.ws188{word-spacing:-11.520000pt;}
.ws105{word-spacing:-11.473920pt;}
.ws1d1{word-spacing:-11.434796pt;}
.ws1af{word-spacing:-11.424000pt;}
.ws184{word-spacing:-11.376000pt;}
.ws13c{word-spacing:-11.367680pt;}
.ws112{word-spacing:-11.363200pt;}
.ws11e{word-spacing:-11.328000pt;}
.ws111{word-spacing:-11.320320pt;}
.ws1d0{word-spacing:-11.280000pt;}
.ws6{word-spacing:-11.232000pt;}
.ws16{word-spacing:-11.164274pt;}
.ws5a{word-spacing:-11.136000pt;}
.ws134{word-spacing:-11.088000pt;}
.ws1d2{word-spacing:-10.878235pt;}
.ws1b3{word-spacing:-10.777042pt;}
.ws1{word-spacing:-10.752000pt;}
.ws15{word-spacing:-10.621880pt;}
.ws0{word-spacing:-10.608000pt;}
.ws17{word-spacing:-10.591360pt;}
.ws1c{word-spacing:-10.569920pt;}
.ws14{word-spacing:-10.462720pt;}
.ws125{word-spacing:-10.435880pt;}
.ws110{word-spacing:-10.419840pt;}
.ws13{word-spacing:-10.376960pt;}
.ws12{word-spacing:-10.334080pt;}
.wsf{word-spacing:-10.291200pt;}
.ws1a{word-spacing:-10.205440pt;}
.ws1b{word-spacing:-10.119680pt;}
.ws10{word-spacing:-10.076800pt;}
.ws11f{word-spacing:-10.033920pt;}
.ws185{word-spacing:-10.032000pt;}
.ws126{word-spacing:-9.949423pt;}
.ws11{word-spacing:-9.948160pt;}
.wse{word-spacing:-9.862400pt;}
.ws19{word-spacing:-9.776640pt;}
.ws124{word-spacing:-9.727338pt;}
.ws123{word-spacing:-9.596160pt;}
.ws3{word-spacing:-8.166400pt;}
.ws60{word-spacing:-7.840000pt;}
.ws5{word-spacing:-7.095040pt;}
.ws122{word-spacing:-6.558720pt;}
.ws121{word-spacing:-6.478080pt;}
.ws120{word-spacing:-5.940480pt;}
.ws130{word-spacing:-4.085536pt;}
.ws12f{word-spacing:-2.531256pt;}
.ws59{word-spacing:-1.948143pt;}
.ws131{word-spacing:-1.509872pt;}
.ws53{word-spacing:-1.243520pt;}
.ws137{word-spacing:-1.221760pt;}
.ws55{word-spacing:-1.029120pt;}
.ws1ab{word-spacing:-1.011929pt;}
.ws107{word-spacing:-1.008000pt;}
.ws54{word-spacing:-0.986240pt;}
.ws1c9{word-spacing:-0.961332pt;}
.ws10d{word-spacing:-0.903040pt;}
.ws91{word-spacing:-0.883200pt;}
.ws1b4{word-spacing:-0.860140pt;}
.wsf2{word-spacing:-0.849920pt;}
.wsc8{word-spacing:-0.796800pt;}
.ws3d{word-spacing:-0.743680pt;}
.ws1ad{word-spacing:-0.720000pt;}
.wsdc{word-spacing:-0.690560pt;}
.ws116{word-spacing:-0.686080pt;}
.ws7c{word-spacing:-0.637440pt;}
.ws195{word-spacing:-0.624000pt;}
.ws25{word-spacing:-0.585600pt;}
.ws69{word-spacing:-0.584320pt;}
.ws182{word-spacing:-0.556561pt;}
.ws13e{word-spacing:-0.531200pt;}
.ws1db{word-spacing:-0.480000pt;}
.ws36{word-spacing:-0.478080pt;}
.wsd7{word-spacing:-0.471040pt;}
.wse7{word-spacing:-0.424960pt;}
.ws19a{word-spacing:-0.404772pt;}
.ws1c8{word-spacing:-0.384000pt;}
.wsef{word-spacing:-0.371840pt;}
.ws164{word-spacing:-0.354175pt;}
.ws138{word-spacing:-0.336000pt;}
.ws7a{word-spacing:-0.318720pt;}
.ws1a3{word-spacing:-0.303579pt;}
.wsd8{word-spacing:-0.294400pt;}
.ws172{word-spacing:-0.288000pt;}
.ws2e{word-spacing:-0.265600pt;}
.ws1da{word-spacing:-0.252982pt;}
.ws1bd{word-spacing:-0.240000pt;}
.ws27{word-spacing:-0.235520pt;}
.ws10c{word-spacing:-0.223974pt;}
.ws133{word-spacing:-0.214400pt;}
.ws66{word-spacing:-0.212480pt;}
.ws179{word-spacing:-0.202386pt;}
.ws29{word-spacing:-0.192000pt;}
.wse0{word-spacing:-0.159360pt;}
.ws178{word-spacing:-0.151789pt;}
.ws170{word-spacing:-0.144000pt;}
.ws132{word-spacing:-0.128640pt;}
.ws24{word-spacing:-0.117120pt;}
.ws39{word-spacing:-0.106240pt;}
.ws169{word-spacing:-0.101193pt;}
.ws17f{word-spacing:-0.096000pt;}
.ws51{word-spacing:-0.090399pt;}
.ws46{word-spacing:-0.085760pt;}
.ws13d{word-spacing:-0.064000pt;}
.wsbe{word-spacing:-0.055993pt;}
.ws73{word-spacing:-0.053120pt;}
.ws16e{word-spacing:-0.050596pt;}
.ws64{word-spacing:-0.048000pt;}
.ws57{word-spacing:-0.042880pt;}
.ws1e{word-spacing:0.000000pt;}
.ws117{word-spacing:0.042880pt;}
.ws50{word-spacing:0.045199pt;}
.ws1d{word-spacing:0.048000pt;}
.ws44{word-spacing:0.053120pt;}
.ws26{word-spacing:0.058880pt;}
.ws90{word-spacing:0.064000pt;}
.ws22{word-spacing:0.096000pt;}
.ws67{word-spacing:0.106240pt;}
.ws28{word-spacing:0.117760pt;}
.ws68{word-spacing:0.128000pt;}
.ws58{word-spacing:0.128640pt;}
.ws23{word-spacing:0.144000pt;}
.ws1c7{word-spacing:0.151789pt;}
.ws34{word-spacing:0.159360pt;}
.wsb6{word-spacing:0.167980pt;}
.ws56{word-spacing:0.171520pt;}
.ws92{word-spacing:0.176640pt;}
.ws1f{word-spacing:0.192000pt;}
.ws16f{word-spacing:0.202386pt;}
.wscf{word-spacing:0.212480pt;}
.ws4b{word-spacing:0.214400pt;}
.wsb4{word-spacing:0.235520pt;}
.ws65{word-spacing:0.240000pt;}
.ws19c{word-spacing:0.252982pt;}
.ws12b{word-spacing:0.257280pt;}
.wsa5{word-spacing:0.265600pt;}
.ws20{word-spacing:0.288000pt;}
.ws93{word-spacing:0.294400pt;}
.ws52{word-spacing:0.300160pt;}
.ws15d{word-spacing:0.318720pt;}
.ws12c{word-spacing:0.322560pt;}
.ws21{word-spacing:0.336000pt;}
.wse4{word-spacing:0.371840pt;}
.ws1d9{word-spacing:0.404772pt;}
.ws166{word-spacing:0.432000pt;}
.ws165{word-spacing:0.455368pt;}
.ws2a{word-spacing:0.480000pt;}
.ws1a9{word-spacing:0.505964pt;}
.ws1a4{word-spacing:0.528000pt;}
.wsde{word-spacing:0.531200pt;}
.wsa9{word-spacing:0.584320pt;}
.ws1ba{word-spacing:0.624000pt;}
.wsa0{word-spacing:0.637440pt;}
.ws1e6{word-spacing:0.657754pt;}
.ws108{word-spacing:0.690560pt;}
.ws9f{word-spacing:0.743680pt;}
.ws147{word-spacing:0.765440pt;}
.ws43{word-spacing:0.796800pt;}
.ws1e5{word-spacing:0.816000pt;}
.ws19f{word-spacing:0.860140pt;}
.wsbb{word-spacing:0.903040pt;}
.ws6c{word-spacing:0.956160pt;}
.ws1f9{word-spacing:1.009280pt;}
.ws1ce{word-spacing:1.056000pt;}
.ws151{word-spacing:1.062400pt;}
.ws174{word-spacing:1.104000pt;}
.ws1f1{word-spacing:1.152000pt;}
.ws1bb{word-spacing:1.163718pt;}
.wsb5{word-spacing:1.168640pt;}
.ws1f5{word-spacing:1.200000pt;}
.ws6d{word-spacing:1.221760pt;}
.ws1e7{word-spacing:1.264911pt;}
.ws6a{word-spacing:1.274880pt;}
.ws1cb{word-spacing:1.315508pt;}
.ws149{word-spacing:1.328000pt;}
.ws12d{word-spacing:1.370880pt;}
.wsec{word-spacing:1.381120pt;}
.ws3a{word-spacing:1.434240pt;}
.ws106{word-spacing:1.487360pt;}
.ws1df{word-spacing:1.536000pt;}
.ws6b{word-spacing:1.540480pt;}
.ws1e9{word-spacing:1.568490pt;}
.ws1e0{word-spacing:1.584000pt;}
.ws1cd{word-spacing:1.619086pt;}
.ws1cc{word-spacing:1.669683pt;}
.ws18d{word-spacing:1.680000pt;}
.wsa3{word-spacing:1.699840pt;}
.ws1e8{word-spacing:1.720279pt;}
.ws173{word-spacing:1.728000pt;}
.ws48{word-spacing:1.758080pt;}
.ws82{word-spacing:1.806080pt;}
.ws1a5{word-spacing:1.821472pt;}
.ws77{word-spacing:1.859200pt;}
.ws47{word-spacing:1.886720pt;}
.wsfc{word-spacing:1.912320pt;}
.ws190{word-spacing:1.920000pt;}
.ws10b{word-spacing:1.965440pt;}
.ws76{word-spacing:2.018560pt;}
.ws18e{word-spacing:2.023858pt;}
.ws3e{word-spacing:2.071680pt;}
.ws175{word-spacing:2.112000pt;}
.wsdd{word-spacing:2.124800pt;}
.wsd9{word-spacing:2.177920pt;}
.ws114{word-spacing:2.208000pt;}
.ws18f{word-spacing:2.226243pt;}
.ws1a6{word-spacing:2.327436pt;}
.ws16a{word-spacing:2.352000pt;}
.wsc6{word-spacing:2.443520pt;}
.ws183{word-spacing:2.448000pt;}
.ws196{word-spacing:2.479226pt;}
.ws35{word-spacing:2.496640pt;}
.ws83{word-spacing:2.549760pt;}
.ws158{word-spacing:2.602880pt;}
.ws1e2{word-spacing:2.640000pt;}
.ws2f{word-spacing:2.656000pt;}
.ws30{word-spacing:2.709120pt;}
.ws1ea{word-spacing:2.736000pt;}
.wsd6{word-spacing:2.762240pt;}
.wsc9{word-spacing:2.815360pt;}
.ws19e{word-spacing:2.832000pt;}
.ws113{word-spacing:2.855663pt;}
.wsd2{word-spacing:2.868480pt;}
.ws1b5{word-spacing:2.880000pt;}
.ws197{word-spacing:2.883997pt;}
.ws14a{word-spacing:2.921600pt;}
.ws181{word-spacing:2.928000pt;}
.wsba{word-spacing:2.974720pt;}
.ws1a8{word-spacing:3.024000pt;}
.wscc{word-spacing:3.080960pt;}
.wse9{word-spacing:3.134080pt;}
.ws33{word-spacing:3.187200pt;}
.ws1bc{word-spacing:3.187576pt;}
.ws1b6{word-spacing:3.216000pt;}
.wsb9{word-spacing:3.240320pt;}
.ws3c{word-spacing:3.293440pt;}
.ws2d{word-spacing:3.346560pt;}
.ws115{word-spacing:3.408000pt;}
.wsc5{word-spacing:3.452800pt;}
.ws127{word-spacing:3.504000pt;}
.ws191{word-spacing:3.592347pt;}
.wsb3{word-spacing:3.612160pt;}
.ws167{word-spacing:3.648000pt;}
.ws72{word-spacing:3.718400pt;}
.ws1f7{word-spacing:3.744000pt;}
.ws85{word-spacing:3.771520pt;}
.ws1ee{word-spacing:3.794733pt;}
.ws71{word-spacing:3.824640pt;}
.ws1c2{word-spacing:3.840000pt;}
.ws1eb{word-spacing:3.845330pt;}
.wsf9{word-spacing:3.877760pt;}
.wsdf{word-spacing:3.930880pt;}
.ws171{word-spacing:3.946523pt;}
.ws3f{word-spacing:3.984000pt;}
.ws168{word-spacing:4.032000pt;}
.ws18a{word-spacing:4.080000pt;}
.wsb2{word-spacing:4.090240pt;}
.ws14d{word-spacing:4.196480pt;}
.wsa4{word-spacing:4.249600pt;}
.ws19d{word-spacing:4.250101pt;}
.ws1be{word-spacing:4.272000pt;}
.ws49{word-spacing:4.288000pt;}
.ws180{word-spacing:4.320000pt;}
.wsbc{word-spacing:4.355840pt;}
.ws1ef{word-spacing:4.368000pt;}
.ws9d{word-spacing:4.408960pt;}
.wsa1{word-spacing:4.462080pt;}
.ws1e1{word-spacing:4.503083pt;}
.wsac{word-spacing:4.515200pt;}
.ws11d{word-spacing:4.568320pt;}
.ws1f0{word-spacing:4.604276pt;}
.ws6f{word-spacing:4.621440pt;}
.ws4d{word-spacing:4.631040pt;}
.ws18b{word-spacing:4.656000pt;}
.wsb7{word-spacing:4.674560pt;}
.ws70{word-spacing:4.727680pt;}
.ws18c{word-spacing:4.806662pt;}
.ws119{word-spacing:4.887040pt;}
.ws1bf{word-spacing:4.907855pt;}
.ws128{word-spacing:4.944000pt;}
.wsc3{word-spacing:4.993280pt;}
.ws7d{word-spacing:5.046400pt;}
.ws163{word-spacing:5.059644pt;}
.ws4a{word-spacing:5.059840pt;}
.ws75{word-spacing:5.099520pt;}
.ws37{word-spacing:5.152640pt;}
.ws38{word-spacing:5.205760pt;}
.ws74{word-spacing:5.258880pt;}
.ws17b{word-spacing:5.312626pt;}
.ws17a{word-spacing:5.328000pt;}
.ws14b{word-spacing:5.365120pt;}
.wse3{word-spacing:5.524480pt;}
.ws129{word-spacing:5.568000pt;}
.ws1ac{word-spacing:5.616205pt;}
.ws13f{word-spacing:5.630720pt;}
.wse2{word-spacing:5.683840pt;}
.wsb0{word-spacing:5.736960pt;}
.wsaf{word-spacing:5.790080pt;}
.wsb1{word-spacing:5.843200pt;}
.ws84{word-spacing:5.896320pt;}
.ws1aa{word-spacing:5.952000pt;}
.ws1b9{word-spacing:5.970380pt;}
.wsb8{word-spacing:6.002560pt;}
.ws1c0{word-spacing:6.048000pt;}
.wsd0{word-spacing:6.108800pt;}
.wsf0{word-spacing:6.161920pt;}
.ws176{word-spacing:6.192000pt;}
.ws1f2{word-spacing:6.240000pt;}
.wsf1{word-spacing:6.268160pt;}
.ws1c1{word-spacing:6.288000pt;}
.wsd1{word-spacing:6.321280pt;}
.ws3b{word-spacing:6.374400pt;}
.ws177{word-spacing:6.375152pt;}
.ws1f3{word-spacing:6.476345pt;}
.ws7e{word-spacing:6.480640pt;}
.ws1c6{word-spacing:6.526941pt;}
.ws1ec{word-spacing:6.528000pt;}
.ws32{word-spacing:6.533760pt;}
.ws86{word-spacing:6.640000pt;}
.ws1f4{word-spacing:6.678730pt;}
.ws4f{word-spacing:6.689524pt;}
.ws1a1{word-spacing:6.720000pt;}
.ws9c{word-spacing:6.746240pt;}
.ws1ed{word-spacing:6.816000pt;}
.ws7b{word-spacing:6.852480pt;}
.ws12a{word-spacing:6.864000pt;}
.ws1a7{word-spacing:6.931713pt;}
.ws41{word-spacing:6.958720pt;}
.ws4e{word-spacing:6.989440pt;}
.ws97{word-spacing:7.011840pt;}
.ws17e{word-spacing:7.056000pt;}
.ws8f{word-spacing:7.064960pt;}
.ws19b{word-spacing:7.083502pt;}
.wsee{word-spacing:7.118080pt;}
.ws1dd{word-spacing:7.200000pt;}
.ws40{word-spacing:7.224320pt;}
.ws17c{word-spacing:7.235291pt;}
.ws1d7{word-spacing:7.248000pt;}
.ws101{word-spacing:7.330560pt;}
.ws17d{word-spacing:7.336484pt;}
.ws192{word-spacing:7.344000pt;}
.ws1a0{word-spacing:7.437677pt;}
.ws1dc{word-spacing:7.440000pt;}
.ws1de{word-spacing:7.488000pt;}
.ws15c{word-spacing:7.489920pt;}
.ws140{word-spacing:7.596160pt;}
.ws31{word-spacing:7.649280pt;}
.ws193{word-spacing:7.680000pt;}
.ws80{word-spacing:7.702400pt;}
.ws139{word-spacing:7.755520pt;}
.ws7f{word-spacing:7.808640pt;}
.ws4c{word-spacing:7.847040pt;}
.ws2b{word-spacing:7.861760pt;}
.ws194{word-spacing:7.872000pt;}
.ws81{word-spacing:7.968000pt;}
.ws10a{word-spacing:8.007056pt;}
.wse8{word-spacing:8.233600pt;}
.wsea{word-spacing:8.286720pt;}
.wsf6{word-spacing:8.339840pt;}
.ws146{word-spacing:8.392960pt;}
.ws1d6{word-spacing:8.399009pt;}
.ws109{word-spacing:8.446080pt;}
.ws6e{word-spacing:8.499200pt;}
.ws16c{word-spacing:8.784000pt;}
.wsff{word-spacing:8.924160pt;}
.wse1{word-spacing:8.977280pt;}
.ws79{word-spacing:9.030400pt;}
.ws157{word-spacing:9.083520pt;}
.ws78{word-spacing:9.136640pt;}
.ws16d{word-spacing:9.157956pt;}
.ws16b{word-spacing:9.168000pt;}
.wsc7{word-spacing:9.242880pt;}
.ws14c{word-spacing:9.349120pt;}
.wsc4{word-spacing:9.508480pt;}
.ws15e{word-spacing:9.561600pt;}
.ws1c5{word-spacing:9.600000pt;}
.ws102{word-spacing:9.614720pt;}
.wsae{word-spacing:9.774080pt;}
.ws1d8{word-spacing:9.792000pt;}
.ws1c3{word-spacing:10.032000pt;}
.ws12e{word-spacing:10.145920pt;}
.ws42{word-spacing:10.199040pt;}
.wsc2{word-spacing:10.252160pt;}
.ws2c{word-spacing:10.305280pt;}
.wseb{word-spacing:10.358400pt;}
.ws9e{word-spacing:10.411520pt;}
.ws1c4{word-spacing:10.675849pt;}
.wsce{word-spacing:10.836480pt;}
.ws1ca{word-spacing:10.979428pt;}
.ws9b{word-spacing:11.048960pt;}
.ws148{word-spacing:11.314560pt;}
.ws15b{word-spacing:11.420800pt;}
.ws15a{word-spacing:11.580160pt;}
.ws100{word-spacing:11.633280pt;}
.wsc1{word-spacing:11.686400pt;}
.ws87{word-spacing:11.792640pt;}
.wsbd{word-spacing:12.111360pt;}
.ws142{word-spacing:12.164480pt;}
.ws89{word-spacing:12.323840pt;}
.wsd3{word-spacing:12.536320pt;}
.ws1a2{word-spacing:12.624000pt;}
.wsd5{word-spacing:12.748800pt;}
.ws11a{word-spacing:12.908160pt;}
.ws88{word-spacing:12.961280pt;}
.wsd4{word-spacing:13.067520pt;}
.wsad{word-spacing:13.226880pt;}
.wsfa{word-spacing:13.386240pt;}
.wsaa{word-spacing:13.439360pt;}
.ws143{word-spacing:13.545600pt;}
.wsab{word-spacing:13.598720pt;}
.ws198{word-spacing:13.728000pt;}
.wsf8{word-spacing:14.183040pt;}
.ws199{word-spacing:14.256000pt;}
.wsf7{word-spacing:14.342400pt;}
.ws145{word-spacing:14.501760pt;}
.ws144{word-spacing:14.767360pt;}
.wsa2{word-spacing:14.873600pt;}
.ws95{word-spacing:15.086080pt;}
.ws96{word-spacing:15.245440pt;}
.ws94{word-spacing:15.511040pt;}
.ws1b7{word-spacing:15.792000pt;}
.ws1e4{word-spacing:16.320000pt;}
.ws1ae{word-spacing:16.464000pt;}
.ws1b8{word-spacing:16.646230pt;}
.ws98{word-spacing:16.785920pt;}
.ws1e3{word-spacing:16.848000pt;}
.ws141{word-spacing:17.210880pt;}
.ws14e{word-spacing:17.423360pt;}
.ws11b{word-spacing:17.848320pt;}
.ws11c{word-spacing:18.060800pt;}
.wsdb{word-spacing:18.698240pt;}
.ws45{word-spacing:19.124480pt;}
.ws159{word-spacing:19.335680pt;}
.wsfd{word-spacing:19.813760pt;}
.ws1f6{word-spacing:20.016000pt;}
.wsfe{word-spacing:20.026240pt;}
.ws156{word-spacing:20.451200pt;}
.ws155{word-spacing:20.610560pt;}
.ws9a{word-spacing:21.301120pt;}
.ws103{word-spacing:22.363520pt;}
.ws104{word-spacing:22.576000pt;}
.ws99{word-spacing:23.000960pt;}
.wscd{word-spacing:23.213440pt;}
.wsf5{word-spacing:23.797760pt;}
.wsf3{word-spacing:23.850880pt;}
.wse6{word-spacing:24.488320pt;}
.wsf4{word-spacing:24.594560pt;}
.wsda{word-spacing:25.125760pt;}
.ws14f{word-spacing:26.241280pt;}
.ws150{word-spacing:26.400640pt;}
._14{margin-left:-102.954880pt;}
._41{margin-left:-6.958720pt;}
._43{margin-left:-5.056640pt;}
._42{margin-left:-1.919360pt;}
._4{margin-left:-1.000960pt;}
._0{width:1.075200pt;}
._a{width:2.033280pt;}
._e{width:3.025920pt;}
._7{width:4.627840pt;}
._c{width:5.949440pt;}
._5{width:7.706240pt;}
._b{width:9.208320pt;}
._10{width:10.508800pt;}
._8{width:11.531520pt;}
._1{width:12.720000pt;}
._6{width:14.195200pt;}
._d{width:15.733760pt;}
._f{width:17.000960pt;}
._2b{width:18.152064pt;}
._13{width:19.210240pt;}
._22{width:27.143040pt;}
._15{width:30.602944pt;}
._3f{width:34.343680pt;}
._40{width:35.271808pt;}
._3e{width:43.148672pt;}
._24{width:48.312064pt;}
._12{width:49.483520pt;}
._26{width:53.743360pt;}
._27{width:55.560704pt;}
._21{width:57.244800pt;}
._16{width:59.238848pt;}
._17{width:60.163648pt;}
._2a{width:61.214976pt;}
._25{width:62.130304pt;}
._2c{width:65.174400pt;}
._28{width:69.067904pt;}
._1d{width:82.200960pt;}
._20{width:86.660480pt;}
._23{width:87.653120pt;}
._1e{width:89.833600pt;}
._29{width:93.386240pt;}
._1f{width:95.022080pt;}
._34{width:96.308480pt;}
._35{width:98.152320pt;}
._1c{width:100.725120pt;}
._36{width:107.941760pt;}
._33{width:111.616640pt;}
._1a{width:119.763840pt;}
._1b{width:127.010560pt;}
._2f{width:127.911040pt;}
._32{width:128.897280pt;}
._31{width:130.869760pt;}
._2e{width:136.872960pt;}
._3d{width:138.802560pt;}
._3b{width:141.975680pt;}
._3c{width:143.262080pt;}
._3a{width:156.726400pt;}
._19{width:159.256320pt;}
._38{width:172.720640pt;}
._39{width:174.007040pt;}
._37{width:176.536960pt;}
._2{width:300.124800pt;}
._11{width:424.426240pt;}
._30{width:432.616320pt;}
._9{width:607.920000pt;}
._18{width:612.280320pt;}
._2d{width:679.516160pt;}
._44{width:754.728960pt;}
._3{width:851.184000pt;}
.fsc{font-size:26.880000pt;}
.fs4{font-size:29.440000pt;}
.fs8{font-size:32.000000pt;}
.fs3{font-size:37.120000pt;}
.fsd{font-size:40.320000pt;}
.fsa{font-size:42.350933pt;}
.fs5{font-size:42.880000pt;}
.fsf{font-size:44.408000pt;}
.fse{font-size:44.417067pt;}
.fs9{font-size:45.199489pt;}
.fs0{font-size:48.000000pt;}
.fs10{font-size:50.596443pt;}
.fs7{font-size:53.120000pt;}
.fsb{font-size:55.993396pt;}
.fs11{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs2{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y27c{bottom:4.159867pt;}
.y202{bottom:4.160000pt;}
.y65{bottom:4.960000pt;}
.y3a{bottom:5.120000pt;}
.y2a8{bottom:5.279867pt;}
.y265{bottom:6.285733pt;}
.y26b{bottom:6.285867pt;}
.y269{bottom:6.471867pt;}
.y26a{bottom:6.472000pt;}
.y267{bottom:6.489200pt;}
.y263{bottom:6.764533pt;}
.y5e{bottom:7.241467pt;}
.y7{bottom:7.360000pt;}
.y243{bottom:7.999867pt;}
.y204{bottom:8.000000pt;}
.y246{bottom:8.159867pt;}
.y1f5{bottom:8.160000pt;}
.y1eb{bottom:8.959867pt;}
.y1e5{bottom:9.119867pt;}
.y26d{bottom:14.915600pt;}
.y26c{bottom:14.915733pt;}
.y286{bottom:18.719867pt;}
.y283{bottom:18.879867pt;}
.y289{bottom:18.880000pt;}
.y1fb{bottom:23.040000pt;}
.y23e{bottom:26.079867pt;}
.y23c{bottom:33.439867pt;}
.y27b{bottom:33.599867pt;}
.y200{bottom:33.600000pt;}
.y63{bottom:41.759867pt;}
.y2cb{bottom:54.239867pt;}
.y9{bottom:59.520000pt;}
.y6{bottom:70.400000pt;}
.y8{bottom:77.760000pt;}
.y2e9{bottom:86.399867pt;}
.y61{bottom:97.120000pt;}
.y5{bottom:97.127867pt;}
.y113{bottom:112.623680pt;}
.ye5{bottom:112.944000pt;}
.ye6{bottom:112.960000pt;}
.y34{bottom:114.240000pt;}
.y13e{bottom:114.240960pt;}
.y259{bottom:114.242880pt;}
.y31c{bottom:114.384960pt;}
.y4d4{bottom:114.435067pt;}
.y152{bottom:114.701760pt;}
.y2f6{bottom:114.868160pt;}
.y3e1{bottom:115.524000pt;}
.y3b2{bottom:115.714560pt;}
.y2d1{bottom:115.839867pt;}
.yb8{bottom:115.958080pt;}
.y422{bottom:116.644000pt;}
.y35f{bottom:116.807680pt;}
.y232{bottom:117.133760pt;}
.y1b1{bottom:117.328960pt;}
.y38a{bottom:117.718400pt;}
.y8c{bottom:118.060347pt;}
.y33d{bottom:118.072320pt;}
.y1d4{bottom:118.239040pt;}
.y17b{bottom:118.241600pt;}
.y2a0{bottom:118.560000pt;}
.y18c{bottom:118.724480pt;}
.y4a4{bottom:119.676000pt;}
.y464{bottom:120.324000pt;}
.y16{bottom:124.320000pt;}
.y20a{bottom:124.488320pt;}
.y2d0{bottom:130.399867pt;}
.y3e0{bottom:132.000000pt;}
.y112{bottom:132.304640pt;}
.ye4{bottom:132.943680pt;}
.y151{bottom:134.223360pt;}
.y13d{bottom:134.240640pt;}
.y258{bottom:134.242560pt;}
.y4d3{bottom:134.275387pt;}
.y31b{bottom:134.384640pt;}
.y2f5{bottom:134.549120pt;}
.yb7{bottom:135.639040pt;}
.y4a3{bottom:135.840000pt;}
.y4a2{bottom:135.848000pt;}
.y3b1{bottom:136.032960pt;}
.y1b0{bottom:137.009920pt;}
.y389{bottom:137.240000pt;}
.y463{bottom:137.280000pt;}
.y462{bottom:137.284000pt;}
.y35e{bottom:137.285440pt;}
.y421{bottom:137.440000pt;}
.y420{bottom:137.444000pt;}
.y8b{bottom:137.581947pt;}
.y231{bottom:137.611520pt;}
.y33c{bottom:137.753280pt;}
.y1d3{bottom:137.915840pt;}
.y17a{bottom:138.241280pt;}
.y18b{bottom:138.724160pt;}
.y29f{bottom:142.718880pt;}
.y209{bottom:147.525600pt;}
.y111{bottom:151.826240pt;}
.y4a1{bottom:151.844000pt;}
.y25b{bottom:151.962533pt;}
.y5b{bottom:151.999867pt;}
.ye3{bottom:152.943360pt;}
.y3df{bottom:153.120000pt;}
.y41f{bottom:153.440000pt;}
.y41e{bottom:153.444000pt;}
.y150{bottom:153.904320pt;}
.y4d2{bottom:153.956347pt;}
.y2f4{bottom:154.070720pt;}
.y39{bottom:154.240000pt;}
.y13c{bottom:154.240320pt;}
.y257{bottom:154.242240pt;}
.y461{bottom:154.244000pt;}
.y31a{bottom:154.384320pt;}
.yb6{bottom:155.160640pt;}
.y3b0{bottom:156.510720pt;}
.y1af{bottom:156.690880pt;}
.y388{bottom:156.920960pt;}
.y2aa{bottom:156.959867pt;}
.y8a{bottom:157.262907pt;}
.y33b{bottom:157.274880pt;}
.y1d2{bottom:157.437440pt;}
.y35d{bottom:157.603840pt;}
.y230{bottom:157.929920pt;}
.y179{bottom:158.240960pt;}
.y18a{bottom:158.723840pt;}
.y208{bottom:162.083360pt;}
.y29e{bottom:165.599520pt;}
.y59{bottom:166.560000pt;}
.y3de{bottom:169.444000pt;}
.y110{bottom:171.507200pt;}
.y38{bottom:172.000000pt;}
.y25c{bottom:172.450800pt;}
.y4a0{bottom:172.644000pt;}
.ye2{bottom:172.943040pt;}
.y14f{bottom:173.425920pt;}
.y2f3{bottom:173.751680pt;}
.y13b{bottom:174.240000pt;}
.y256{bottom:174.241920pt;}
.y41d{bottom:174.244000pt;}
.y319{bottom:174.384000pt;}
.y2e2{bottom:174.399867pt;}
.yb5{bottom:174.841600pt;}
.y460{bottom:176.000000pt;}
.y387{bottom:176.442560pt;}
.y89{bottom:176.784507pt;}
.y3af{bottom:176.829120pt;}
.y33a{bottom:176.955840pt;}
.y1d1{bottom:177.118400pt;}
.y1ae{bottom:177.168640pt;}
.y35c{bottom:178.081600pt;}
.y178{bottom:178.240640pt;}
.y22f{bottom:178.407680pt;}
.y189{bottom:178.723520pt;}
.y29d{bottom:180.318080pt;}
.y57{bottom:181.279867pt;}
.y4d1{bottom:181.472507pt;}
.y37{bottom:185.129920pt;}
.y207{bottom:185.281440pt;}
.y3dd{bottom:185.920000pt;}
.y3dc{bottom:185.924000pt;}
.y49f{bottom:188.640000pt;}
.y49e{bottom:188.644000pt;}
.y41c{bottom:190.240000pt;}
.y10f{bottom:191.028800pt;}
.ye1{bottom:192.464640pt;}
.y45f{bottom:192.800000pt;}
.y25d{bottom:192.939200pt;}
.y14e{bottom:193.106880pt;}
.y2f2{bottom:193.273280pt;}
.y255{bottom:194.241600pt;}
.yb4{bottom:194.363200pt;}
.y318{bottom:194.383680pt;}
.y55{bottom:195.999867pt;}
.y386{bottom:196.123520pt;}
.y88{bottom:196.465467pt;}
.y339{bottom:196.477440pt;}
.y1cf{bottom:196.639040pt;}
.y1d0{bottom:196.640000pt;}
.y3ae{bottom:197.306880pt;}
.y1ad{bottom:197.487040pt;}
.y177{bottom:198.240320pt;}
.y35b{bottom:198.400000pt;}
.y188{bottom:198.723200pt;}
.y22e{bottom:198.726080pt;}
.y206{bottom:200.000000pt;}
.y4d0{bottom:201.153467pt;}
.y13a{bottom:201.438720pt;}
.y3db{bottom:202.244000pt;}
.y36{bottom:202.885280pt;}
.y29c{bottom:203.522240pt;}
.y3b{bottom:205.920000pt;}
.y41b{bottom:206.236000pt;}
.y49d{bottom:209.440000pt;}
.y10e{bottom:210.709760pt;}
.y54{bottom:210.719867pt;}
.ye0{bottom:212.145600pt;}
.y14d{bottom:212.628480pt;}
.y2f1{bottom:212.954240pt;}
.y25e{bottom:213.427467pt;}
.yb3{bottom:214.044160pt;}
.y254{bottom:214.241280pt;}
.y317{bottom:214.383360pt;}
.y45e{bottom:214.400000pt;}
.y385{bottom:215.645120pt;}
.y87{bottom:215.987067pt;}
.y338{bottom:216.158400pt;}
.y1cd{bottom:216.318400pt;}
.y1ce{bottom:216.320000pt;}
.y3ad{bottom:217.625280pt;}
.y1ac{bottom:217.964800pt;}
.y29b{bottom:218.080000pt;}
.y176{bottom:218.240000pt;}
.y139{bottom:218.720000pt;}
.y187{bottom:218.722880pt;}
.y35a{bottom:218.908480pt;}
.y22d{bottom:219.203840pt;}
.y35{bottom:220.800000pt;}
.y2d{bottom:221.120000pt;}
.y205{bottom:222.880000pt;}
.y3da{bottom:223.364000pt;}
.y52{bottom:225.279867pt;}
.y49c{bottom:225.600000pt;}
.y49b{bottom:225.612000pt;}
.y41a{bottom:227.200000pt;}
.y419{bottom:227.212000pt;}
.y4cf{bottom:228.669627pt;}
.y10d{bottom:230.231360pt;}
.y45d{bottom:231.360000pt;}
.ydf{bottom:231.667200pt;}
.y14c{bottom:232.309440pt;}
.y2f0{bottom:232.475840pt;}
.yb2{bottom:233.565760pt;}
.y25f{bottom:233.915733pt;}
.y253{bottom:234.240960pt;}
.y316{bottom:234.383040pt;}
.y384{bottom:235.326080pt;}
.y86{bottom:235.668027pt;}
.y337{bottom:235.680000pt;}
.y1cb{bottom:235.839040pt;}
.y1cc{bottom:235.840000pt;}
.y203{bottom:237.760000pt;}
.y3ac{bottom:238.103040pt;}
.y1ab{bottom:238.283200pt;}
.y33{bottom:238.584480pt;}
.y186{bottom:238.722560pt;}
.y359{bottom:239.226880pt;}
.y22c{bottom:239.522240pt;}
.y3d9{bottom:239.840000pt;}
.y51{bottom:239.999867pt;}
.y29a{bottom:241.281440pt;}
.y49a{bottom:241.608000pt;}
.y418{bottom:243.208000pt;}
.y175{bottom:245.760000pt;}
.y45c{bottom:248.160000pt;}
.y4ce{bottom:248.350587pt;}
.y10c{bottom:249.912320pt;}
.yde{bottom:251.348160pt;}
.y2ef{bottom:251.360000pt;}
.y14b{bottom:251.831040pt;}
.y138{bottom:252.467840pt;}
.yb1{bottom:253.246720pt;}
.y252{bottom:254.240640pt;}
.y315{bottom:254.382720pt;}
.y260{bottom:254.404267pt;}
.y4f{bottom:254.719867pt;}
.y383{bottom:254.847680pt;}
.y85{bottom:255.189627pt;}
.y1c9{bottom:255.515840pt;}
.y1ca{bottom:255.520000pt;}
.y299{bottom:256.000000pt;}
.y3d8{bottom:256.160000pt;}
.y3d7{bottom:256.164000pt;}
.y32{bottom:256.339840pt;}
.y3ab{bottom:258.421440pt;}
.y185{bottom:258.722240pt;}
.y1aa{bottom:258.760960pt;}
.y417{bottom:259.204000pt;}
.y358{bottom:259.704640pt;}
.y22b{bottom:260.000000pt;}
.y1ff{bottom:260.640000pt;}
.y499{bottom:262.404000pt;}
.y336{bottom:262.720000pt;}
.y2cf{bottom:264.800000pt;}
.y45b{bottom:264.964000pt;}
.y10b{bottom:269.433920pt;}
.y4d{bottom:269.439867pt;}
.ydd{bottom:270.869760pt;}
.y297{bottom:271.040000pt;}
.y14a{bottom:271.512000pt;}
.y137{bottom:272.148800pt;}
.y3d6{bottom:272.484000pt;}
.yb0{bottom:272.768320pt;}
.y251{bottom:274.240320pt;}
.y31{bottom:274.254560pt;}
.y314{bottom:274.382400pt;}
.y382{bottom:274.528640pt;}
.y29{bottom:274.559867pt;}
.y84{bottom:274.870587pt;}
.y261{bottom:274.892533pt;}
.y1c8{bottom:275.037440pt;}
.y4cd{bottom:275.866747pt;}
.y2ee{bottom:277.766560pt;}
.y498{bottom:278.400000pt;}
.y184{bottom:278.721920pt;}
.y3aa{bottom:278.899200pt;}
.y1a9{bottom:279.079360pt;}
.y298{bottom:279.200000pt;}
.y201{bottom:279.520000pt;}
.y416{bottom:280.000000pt;}
.y415{bottom:280.004000pt;}
.y357{bottom:280.023040pt;}
.y174{bottom:280.914880pt;}
.y45a{bottom:281.920000pt;}
.y4b{bottom:283.999867pt;}
.y22a{bottom:287.520000pt;}
.y10a{bottom:289.114880pt;}
.ydc{bottom:290.550720pt;}
.y149{bottom:291.033600pt;}
.y136{bottom:291.670400pt;}
.y30{bottom:292.009920pt;}
.yaf{bottom:292.449280pt;}
.y2ed{bottom:292.485120pt;}
.y3d5{bottom:293.760000pt;}
.y381{bottom:294.050240pt;}
.y250{bottom:294.244347pt;}
.y313{bottom:294.382080pt;}
.y83{bottom:294.392187pt;}
.y497{bottom:294.396000pt;}
.y1c7{bottom:294.718400pt;}
.y4cc{bottom:295.547707pt;}
.y414{bottom:296.000000pt;}
.y335{bottom:296.690240pt;}
.y4a{bottom:298.719867pt;}
.y459{bottom:298.720000pt;}
.y183{bottom:298.721600pt;}
.y3a9{bottom:299.217600pt;}
.y1a8{bottom:299.557120pt;}
.y173{bottom:300.436480pt;}
.y356{bottom:300.500800pt;}
.y296{bottom:301.602907pt;}
.y2ec{bottom:307.203680pt;}
.y109{bottom:308.636480pt;}
.y2f{bottom:309.765280pt;}
.ydb{bottom:310.072320pt;}
.y26{bottom:310.240000pt;}
.y148{bottom:310.714560pt;}
.y135{bottom:311.351360pt;}
.yae{bottom:311.970880pt;}
.y229{bottom:312.960000pt;}
.y1fe{bottom:313.124027pt;}
.y48{bottom:313.439867pt;}
.y380{bottom:313.731200pt;}
.y82{bottom:314.073147pt;}
.y1c6{bottom:314.240000pt;}
.y24f{bottom:314.244027pt;}
.y312{bottom:314.381760pt;}
.y2dc{bottom:314.576667pt;}
.y3d4{bottom:314.880000pt;}
.y496{bottom:315.360000pt;}
.y495{bottom:315.364000pt;}
.y295{bottom:316.321467pt;}
.y413{bottom:317.124000pt;}
.y334{bottom:317.168000pt;}
.y182{bottom:318.721280pt;}
.y3a8{bottom:319.695360pt;}
.y1a7{bottom:319.875520pt;}
.y172{bottom:320.117440pt;}
.y458{bottom:320.324000pt;}
.y355{bottom:320.819200pt;}
.y2eb{bottom:321.922240pt;}
.y4cb{bottom:323.063867pt;}
.y2e{bottom:327.680000pt;}
.y1fd{bottom:327.681787pt;}
.y24{bottom:327.999867pt;}
.y108{bottom:328.317440pt;}
.y2db{bottom:329.134427pt;}
.yda{bottom:329.753280pt;}
.y147{bottom:330.236160pt;}
.y134{bottom:330.872960pt;}
.y294{bottom:331.040027pt;}
.y3d3{bottom:331.360000pt;}
.y3d2{bottom:331.363867pt;}
.y494{bottom:331.367867pt;}
.yad{bottom:331.651840pt;}
.y1c5{bottom:332.960000pt;}
.y37f{bottom:333.252800pt;}
.y81{bottom:333.594747pt;}
.y412{bottom:333.600000pt;}
.y5d{bottom:333.717333pt;}
.y5c{bottom:333.760000pt;}
.y311{bottom:334.222080pt;}
.y24e{bottom:334.403067pt;}
.y2ea{bottom:336.480000pt;}
.y456{bottom:337.279867pt;}
.y457{bottom:337.280000pt;}
.y333{bottom:337.486400pt;}
.y181{bottom:338.720960pt;}
.y171{bottom:339.639040pt;}
.y3a7{bottom:340.013760pt;}
.y1a6{bottom:340.353280pt;}
.y354{bottom:341.296960pt;}
.y1fa{bottom:342.560000pt;}
.y45{bottom:342.719867pt;}
.y4ca{bottom:342.744827pt;}
.y2da{bottom:343.852987pt;}
.y2c{bottom:345.449787pt;}
.y22{bottom:345.759867pt;}
.y493{bottom:347.363867pt;}
.y107{bottom:347.839040pt;}
.y3d1{bottom:347.839867pt;}
.y228{bottom:348.329280pt;}
.yd9{bottom:349.274880pt;}
.y146{bottom:349.917120pt;}
.y411{bottom:350.079867pt;}
.y410{bottom:350.084000pt;}
.y133{bottom:350.553920pt;}
.y1fc{bottom:350.879867pt;}
.yac{bottom:351.173440pt;}
.y2e8{bottom:351.207867pt;}
.y293{bottom:351.517147pt;}
.y37e{bottom:352.933760pt;}
.y80{bottom:353.275707pt;}
.y310{bottom:353.903040pt;}
.y455{bottom:354.079867pt;}
.y24d{bottom:354.721467pt;}
.y43{bottom:357.439867pt;}
.y332{bottom:357.964160pt;}
.y2d9{bottom:358.571547pt;}
.y180{bottom:358.720640pt;}
.y170{bottom:359.320000pt;}
.y3a6{bottom:360.491520pt;}
.y1a5{bottom:360.671680pt;}
.y353{bottom:361.615360pt;}
.y2b{bottom:363.205147pt;}
.y3d0{bottom:364.315867pt;}
.y1f9{bottom:365.600000pt;}
.y1c4{bottom:365.611520pt;}
.y2e7{bottom:365.926427pt;}
.y292{bottom:366.235707pt;}
.y40f{bottom:366.560000pt;}
.y40e{bottom:366.563867pt;}
.y106{bottom:367.520000pt;}
.y105{bottom:367.526400pt;}
.y492{bottom:368.159867pt;}
.y491{bottom:368.163867pt;}
.y227{bottom:368.647680pt;}
.yd8{bottom:368.955840pt;}
.y145{bottom:369.438720pt;}
.y132{bottom:370.075520pt;}
.y4c9{bottom:370.260987pt;}
.yab{bottom:370.854400pt;}
.y454{bottom:370.879867pt;}
.y42{bottom:372.159867pt;}
.y37d{bottom:372.455360pt;}
.y5a{bottom:372.480000pt;}
.y7f{bottom:372.797307pt;}
.y2d8{bottom:373.290107pt;}
.y30f{bottom:373.424640pt;}
.y24c{bottom:375.039867pt;}
.y331{bottom:378.282560pt;}
.y17f{bottom:378.720320pt;}
.y16f{bottom:378.841600pt;}
.y2e6{bottom:380.644987pt;}
.y3a5{bottom:380.809920pt;}
.y2a{bottom:381.119867pt;}
.y1a4{bottom:381.149440pt;}
.y352{bottom:382.093120pt;}
.y490{bottom:384.159867pt;}
.y291{bottom:385.441307pt;}
.y3cf{bottom:385.763867pt;}
.y1c3{bottom:386.089280pt;}
.y40{bottom:386.719867pt;}
.y104{bottom:387.048000pt;}
.y58{bottom:387.199867pt;}
.y40c{bottom:387.836000pt;}
.y40d{bottom:387.839867pt;}
.y2d7{bottom:387.847867pt;}
.yd7{bottom:388.477440pt;}
.y1f8{bottom:388.641307pt;}
.y144{bottom:389.119680pt;}
.y226{bottom:389.125440pt;}
.y131{bottom:389.756480pt;}
.y4c8{bottom:389.941947pt;}
.yaa{bottom:390.376000pt;}
.y37c{bottom:392.136320pt;}
.y453{bottom:392.323867pt;}
.y7e{bottom:392.478267pt;}
.y30e{bottom:393.105600pt;}
.y24b{bottom:394.720800pt;}
.y2e5{bottom:395.202747pt;}
.y16e{bottom:398.522560pt;}
.y17e{bottom:398.720000pt;}
.y330{bottom:398.760320pt;}
.y28{bottom:398.884507pt;}
.y1e{bottom:399.200000pt;}
.y48f{bottom:400.155867pt;}
.y290{bottom:400.159867pt;}
.y3a4{bottom:401.287680pt;}
.y3e{bottom:401.439867pt;}
.y1a3{bottom:401.467840pt;}
.y56{bottom:401.919867pt;}
.y3ce{bottom:402.239867pt;}
.y3cd{bottom:402.244000pt;}
.y351{bottom:402.411520pt;}
.y2d6{bottom:402.566427pt;}
.y1f7{bottom:403.359867pt;}
.y40b{bottom:404.480000pt;}
.y40a{bottom:404.487867pt;}
.y1c2{bottom:406.407680pt;}
.y103{bottom:406.728960pt;}
.yd6{bottom:408.158400pt;}
.y24a{bottom:408.480000pt;}
.y143{bottom:408.641280pt;}
.y452{bottom:408.799867pt;}
.y451{bottom:408.803867pt;}
.y130{bottom:409.278080pt;}
.y225{bottom:409.443840pt;}
.y2e4{bottom:409.921307pt;}
.ya9{bottom:410.056960pt;}
.y37b{bottom:411.657920pt;}
.y7d{bottom:411.989307pt;}
.y30d{bottom:412.627200pt;}
.y3c{bottom:416.159867pt;}
.y27{bottom:416.639867pt;}
.y2d5{bottom:417.284987pt;}
.y4c7{bottom:417.458107pt;}
.y16d{bottom:418.044160pt;}
.y1f4{bottom:418.400000pt;}
.y32f{bottom:419.078720pt;}
.y28f{bottom:419.521307pt;}
.y409{bottom:420.963867pt;}
.y48e{bottom:421.119867pt;}
.y3a3{bottom:421.606080pt;}
.y1a2{bottom:421.945600pt;}
.y350{bottom:422.889280pt;}
.y3cc{bottom:423.520000pt;}
.y3cb{bottom:423.523867pt;}
.y248{bottom:424.000000pt;}
.y2e3{bottom:424.639867pt;}
.y450{bottom:425.279867pt;}
.y44f{bottom:425.287867pt;}
.y17d{bottom:426.080000pt;}
.y1f6{bottom:426.560000pt;}
.y102{bottom:426.728640pt;}
.y1c1{bottom:426.885440pt;}
.yd4{bottom:427.679040pt;}
.yd5{bottom:427.680000pt;}
.y142{bottom:428.322240pt;}
.y12f{bottom:428.959040pt;}
.ya8{bottom:429.578560pt;}
.y224{bottom:429.921600pt;}
.y53{bottom:431.199867pt;}
.y37a{bottom:431.338880pt;}
.y7c{bottom:431.670267pt;}
.y2d4{bottom:432.003547pt;}
.y249{bottom:432.159867pt;}
.y247{bottom:432.164187pt;}
.y30c{bottom:432.308160pt;}
.y28e{bottom:434.239867pt;}
.y25{bottom:434.560000pt;}
.y48d{bottom:437.127867pt;}
.y4c6{bottom:437.139067pt;}
.y16c{bottom:437.725120pt;}
.y2e1{bottom:439.218107pt;}
.y32e{bottom:439.556480pt;}
.y3ca{bottom:439.999867pt;}
.y3a2{bottom:442.083840pt;}
.y408{bottom:442.239867pt;}
.y1a1{bottom:442.264000pt;}
.y34f{bottom:443.207680pt;}
.y2d3{bottom:446.561307pt;}
.y44e{bottom:446.563867pt;}
.y245{bottom:446.720000pt;}
.y101{bottom:446.728320pt;}
.y1c0{bottom:447.203840pt;}
.yd2{bottom:447.357440pt;}
.yd3{bottom:447.360000pt;}
.y141{bottom:447.843840pt;}
.y12e{bottom:448.480640pt;}
.ya7{bottom:449.259520pt;}
.y1f3{bottom:449.612667pt;}
.y223{bottom:450.240000pt;}
.y379{bottom:450.860480pt;}
.y7b{bottom:451.191867pt;}
.y17c{bottom:451.520000pt;}
.y30b{bottom:451.829760pt;}
.y23{bottom:452.319867pt;}
.y1a{bottom:452.639867pt;}
.y48c{bottom:453.123867pt;}
.y2e0{bottom:453.936667pt;}
.y244{bottom:454.879867pt;}
.y28d{bottom:455.520000pt;}
.y3c9{bottom:456.475867pt;}
.y16b{bottom:457.246720pt;}
.y407{bottom:458.719867pt;}
.y406{bottom:458.723867pt;}
.y32d{bottom:459.874880pt;}
.y50{bottom:460.639867pt;}
.y2d2{bottom:461.279867pt;}
.y3a1{bottom:462.402240pt;}
.y1a0{bottom:462.741760pt;}
.y44d{bottom:463.039867pt;}
.y34e{bottom:463.685440pt;}
.y4c5{bottom:464.655227pt;}
.y100{bottom:466.728000pt;}
.yd1{bottom:466.879040pt;}
.y140{bottom:467.524800pt;}
.y1bf{bottom:467.681600pt;}
.y12d{bottom:468.161600pt;}
.y2df{bottom:468.655227pt;}
.ya6{bottom:468.781120pt;}
.y48b{bottom:469.119867pt;}
.y48a{bottom:469.123867pt;}
.y242{bottom:469.440000pt;}
.y21{bottom:470.089787pt;}
.y28b{bottom:470.400000pt;}
.y378{bottom:470.541440pt;}
.y19{bottom:470.559867pt;}
.y222{bottom:470.717760pt;}
.y7a{bottom:470.872827pt;}
.y30a{bottom:471.510720pt;}
.y1f2{bottom:471.524347pt;}
.y405{bottom:475.199867pt;}
.y4e{bottom:475.359867pt;}
.y16a{bottom:476.927680pt;}
.y241{bottom:477.439867pt;}
.y3c8{bottom:477.919867pt;}
.y44c{bottom:479.683867pt;}
.y32c{bottom:480.352640pt;}
.y28c{bottom:481.919867pt;}
.y3a0{bottom:482.880000pt;}
.y19f{bottom:483.060160pt;}
.y2de{bottom:483.373787pt;}
.y34d{bottom:484.003840pt;}
.y4c4{bottom:484.336187pt;}
.y488{bottom:485.111867pt;}
.y489{bottom:485.119867pt;}
.y1f1{bottom:486.242907pt;}
.yd0{bottom:486.560000pt;}
.yff{bottom:486.727680pt;}
.y13f{bottom:487.046400pt;}
.y12c{bottom:487.683200pt;}
.y1be{bottom:488.000000pt;}
.y20{bottom:488.004507pt;}
.ya5{bottom:488.462080pt;}
.y4c{bottom:489.919867pt;}
.y377{bottom:490.063040pt;}
.y221{bottom:490.080000pt;}
.y79{bottom:490.394427pt;}
.y309{bottom:491.032320pt;}
.y3c7{bottom:494.403867pt;}
.y17{bottom:495.039867pt;}
.y169{bottom:496.449280pt;}
.y404{bottom:496.643867pt;}
.y2dd{bottom:497.931547pt;}
.y288{bottom:499.680000pt;}
.y240{bottom:500.480000pt;}
.y32b{bottom:500.671040pt;}
.y44b{bottom:500.959867pt;}
.y44a{bottom:500.963867pt;}
.y487{bottom:501.275867pt;}
.y19e{bottom:503.537920pt;}
.y34c{bottom:504.481600pt;}
.y1f{bottom:505.759867pt;}
.yfe{bottom:506.727360pt;}
.y12b{bottom:507.364160pt;}
.y1f0{bottom:507.522107pt;}
.ya4{bottom:507.983680pt;}
.y1bd{bottom:508.477760pt;}
.y376{bottom:509.744000pt;}
.y78{bottom:510.075387pt;}
.y308{bottom:510.713280pt;}
.y39f{bottom:510.720000pt;}
.y3c6{bottom:510.883867pt;}
.y28a{bottom:511.199867pt;}
.y4c3{bottom:511.852347pt;}
.y403{bottom:513.119867pt;}
.y402{bottom:513.123867pt;}
.ycf{bottom:513.440000pt;}
.y23b{bottom:515.360000pt;}
.y168{bottom:516.130240pt;}
.y449{bottom:517.439867pt;}
.y448{bottom:517.447867pt;}
.y2a9{bottom:517.760000pt;}
.y49{bottom:519.359867pt;}
.y32a{bottom:521.148800pt;}
.y1ef{bottom:522.079867pt;}
.y486{bottom:522.243867pt;}
.y220{bottom:522.726880pt;}
.y1d{bottom:523.529787pt;}
.y19d{bottom:523.856320pt;}
.y34b{bottom:524.816000pt;}
.yfd{bottom:526.727040pt;}
.y23f{bottom:526.879867pt;}
.y12a{bottom:526.885760pt;}
.y3c5{bottom:527.359867pt;}
.ya3{bottom:527.664640pt;}
.y1bc{bottom:527.840000pt;}
.y2ce{bottom:527.842747pt;}
.y285{bottom:529.120000pt;}
.y375{bottom:529.265600pt;}
.y77{bottom:529.596987pt;}
.y307{bottom:530.234880pt;}
.y4c2{bottom:531.533307pt;}
.y47{bottom:533.919867pt;}
.y447{bottom:533.923867pt;}
.y23a{bottom:534.239867pt;}
.y401{bottom:534.399867pt;}
.y400{bottom:534.403867pt;}
.y167{bottom:535.651840pt;}
.y485{bottom:538.719867pt;}
.y484{bottom:538.723867pt;}
.y287{bottom:540.479867pt;}
.y23d{bottom:541.439867pt;}
.y1c{bottom:541.444507pt;}
.y329{bottom:541.467200pt;}
.y2cd{bottom:542.561307pt;}
.y21f{bottom:543.204640pt;}
.y1ee{bottom:543.361307pt;}
.y3c4{bottom:543.835867pt;}
.y19c{bottom:544.334080pt;}
.y34a{bottom:545.293760pt;}
.y39e{bottom:545.925627pt;}
.y129{bottom:546.566720pt;}
.yfc{bottom:546.726720pt;}
.ya2{bottom:547.186240pt;}
.yce{bottom:547.364800pt;}
.y46{bottom:548.639867pt;}
.y374{bottom:548.946560pt;}
.y76{bottom:549.277947pt;}
.y306{bottom:549.915840pt;}
.y3ff{bottom:550.879867pt;}
.y1bb{bottom:551.680000pt;}
.y446{bottom:555.195867pt;}
.y483{bottom:555.199867pt;}
.y166{bottom:555.332800pt;}
.y2cc{bottom:557.279867pt;}
.y1ed{bottom:558.079867pt;}
.y282{bottom:558.400000pt;}
.y4c1{bottom:559.049467pt;}
.y1b{bottom:559.199867pt;}
.y328{bottom:561.944960pt;}
.y44{bottom:563.359867pt;}
.y21e{bottom:563.523040pt;}
.y19b{bottom:564.652480pt;}
.y3c3{bottom:565.284000pt;}
.y349{bottom:565.612160pt;}
.y39d{bottom:565.925307pt;}
.y128{bottom:566.566400pt;}
.yfb{bottom:566.726400pt;}
.ya1{bottom:566.867200pt;}
.ycd{bottom:567.364480pt;}
.y239{bottom:567.839867pt;}
.y373{bottom:568.468160pt;}
.y75{bottom:568.799547pt;}
.y305{bottom:569.437440pt;}
.y284{bottom:569.919867pt;}
.y482{bottom:571.675867pt;}
.y445{bottom:571.839867pt;}
.y444{bottom:571.848000pt;}
.y2b9{bottom:572.023360pt;}
.y3fe{bottom:572.155867pt;}
.y1ea{bottom:572.320000pt;}
.y165{bottom:574.854400pt;}
.y4c0{bottom:578.730427pt;}
.y1ec{bottom:581.279867pt;}
.y3c2{bottom:581.760000pt;}
.y3c1{bottom:581.764000pt;}
.y327{bottom:582.263360pt;}
.y21d{bottom:584.000800pt;}
.y19a{bottom:585.130240pt;}
.y39c{bottom:585.924987pt;}
.y1ba{bottom:586.080000pt;}
.y348{bottom:586.089920pt;}
.ya0{bottom:586.388800pt;}
.y127{bottom:586.566080pt;}
.y2b8{bottom:586.581120pt;}
.y2ca{bottom:586.613280pt;}
.yfa{bottom:586.726080pt;}
.ycc{bottom:587.364160pt;}
.y372{bottom:587.989760pt;}
.y280{bottom:588.160000pt;}
.y443{bottom:588.324000pt;}
.y74{bottom:588.480507pt;}
.y3fd{bottom:588.799867pt;}
.y3fc{bottom:588.803867pt;}
.y304{bottom:589.118400pt;}
.y41{bottom:592.639867pt;}
.y481{bottom:593.119867pt;}
.y480{bottom:593.127867pt;}
.y164{bottom:594.535360pt;}
.y18{bottom:594.879867pt;}
.y238{bottom:595.516000pt;}
.y281{bottom:596.319867pt;}
.y3c0{bottom:598.240000pt;}
.y2b7{bottom:601.299680pt;}
.y2c9{bottom:601.331840pt;}
.y326{bottom:602.741120pt;}
.y21c{bottom:604.319200pt;}
.y3fb{bottom:605.279867pt;}
.y3fa{bottom:605.284000pt;}
.y199{bottom:605.448640pt;}
.y39b{bottom:605.924667pt;}
.y9f{bottom:606.069760pt;}
.y1e9{bottom:606.234587pt;}
.y1b9{bottom:606.235680pt;}
.y4bf{bottom:606.246587pt;}
.y347{bottom:606.408320pt;}
.y126{bottom:606.565760pt;}
.yf9{bottom:606.725760pt;}
.y3f{bottom:607.359867pt;}
.ycb{bottom:607.363840pt;}
.y371{bottom:607.830080pt;}
.y73{bottom:608.002107pt;}
.y303{bottom:608.640000pt;}
.y442{bottom:609.600000pt;}
.y441{bottom:609.603867pt;}
.y237{bottom:612.160000pt;}
.y163{bottom:614.056960pt;}
.y2b6{bottom:616.018240pt;}
.y2c8{bottom:616.050400pt;}
.y27f{bottom:619.199867pt;}
.y3bf{bottom:621.760000pt;}
.y3d{bottom:622.079867pt;}
.y325{bottom:623.059520pt;}
.y21b{bottom:624.796960pt;}
.y9e{bottom:625.591360pt;}
.y39a{bottom:625.924347pt;}
.y198{bottom:625.926400pt;}
.y4be{bottom:625.927547pt;}
.y440{bottom:626.079867pt;}
.y43f{bottom:626.083867pt;}
.y3f9{bottom:626.560000pt;}
.y125{bottom:626.565440pt;}
.yf8{bottom:626.725440pt;}
.y346{bottom:626.886080pt;}
.yca{bottom:627.363520pt;}
.y370{bottom:627.511040pt;}
.y72{bottom:627.683067pt;}
.y236{bottom:628.160000pt;}
.y2b5{bottom:630.736800pt;}
.y2c7{bottom:630.768960pt;}
.y1e8{bottom:630.879867pt;}
.y162{bottom:633.737920pt;}
.y27a{bottom:634.080000pt;}
.y302{bottom:635.680000pt;}
.y3f8{bottom:643.039867pt;}
.y324{bottom:643.537280pt;}
.y21a{bottom:645.115360pt;}
.y9d{bottom:645.272320pt;}
.y2b4{bottom:645.294560pt;}
.y2c6{bottom:645.326720pt;}
.y27e{bottom:645.601307pt;}
.y399{bottom:645.924027pt;}
.y197{bottom:646.244800pt;}
.y124{bottom:646.565120pt;}
.yf7{bottom:646.725120pt;}
.y36f{bottom:647.192000pt;}
.y345{bottom:647.204480pt;}
.y43e{bottom:647.359867pt;}
.y43d{bottom:647.360000pt;}
.yc9{bottom:647.363200pt;}
.y71{bottom:647.682747pt;}
.y235{bottom:648.644000pt;}
.y15{bottom:651.203040pt;}
.y279{bottom:652.959867pt;}
.y161{bottom:653.259520pt;}
.y4bd{bottom:653.443707pt;}
.y1e7{bottom:655.519867pt;}
.y3f7{bottom:659.515867pt;}
.y2b3{bottom:660.013120pt;}
.y2c5{bottom:660.045280pt;}
.y3be{bottom:660.160320pt;}
.y27d{bottom:660.319867pt;}
.y47f{bottom:663.839867pt;}
.y47e{bottom:663.844000pt;}
.y323{bottom:663.855680pt;}
.y43c{bottom:664.004000pt;}
.y9c{bottom:664.953280pt;}
.y234{bottom:665.120000pt;}
.y219{bottom:665.593120pt;}
.y14{bottom:665.600000pt;}
.y398{bottom:665.923707pt;}
.y196{bottom:666.563200pt;}
.y123{bottom:666.564800pt;}
.yf6{bottom:666.724800pt;}
.y36e{bottom:667.032320pt;}
.yc8{bottom:667.362880pt;}
.y344{bottom:667.682240pt;}
.y70{bottom:667.682427pt;}
.y301{bottom:669.431360pt;}
.y1e4{bottom:671.360000pt;}
.y160{bottom:672.940480pt;}
.y4bc{bottom:673.124667pt;}
.y2b2{bottom:674.731680pt;}
.y2c4{bottom:674.763840pt;}
.y3bd{bottom:680.160000pt;}
.y1e6{bottom:680.479867pt;}
.y47d{bottom:680.488000pt;}
.y3f6{bottom:680.959867pt;}
.y3f5{bottom:680.964000pt;}
.y13{bottom:682.084000pt;}
.y322{bottom:684.333440pt;}
.y9b{bottom:684.634240pt;}
.y218{bottom:684.796000pt;}
.y233{bottom:685.280000pt;}
.y43b{bottom:685.283867pt;}
.y397{bottom:685.923387pt;}
.y25a{bottom:686.232000pt;}
.y278{bottom:686.560000pt;}
.y195{bottom:686.562880pt;}
.y122{bottom:686.564480pt;}
.y36d{bottom:686.713280pt;}
.yf5{bottom:686.724480pt;}
.yc7{bottom:687.362560pt;}
.y6f{bottom:687.682107pt;}
.y343{bottom:688.000640pt;}
.y300{bottom:689.112320pt;}
.y2b1{bottom:689.289440pt;}
.y2c3{bottom:689.321600pt;}
.y15f{bottom:692.462080pt;}
.y47c{bottom:696.964000pt;}
.y3f4{bottom:697.440000pt;}
.y3f3{bottom:697.444000pt;}
.y4bb{bottom:700.640827pt;}
.y43a{bottom:701.759867pt;}
.y439{bottom:701.764000pt;}
.y12{bottom:703.200000pt;}
.y2b0{bottom:704.008000pt;}
.y2c2{bottom:704.040160pt;}
.y9a{bottom:704.474560pt;}
.y321{bottom:704.651840pt;}
.y1e3{bottom:705.280000pt;}
.y396{bottom:705.923067pt;}
.y36c{bottom:706.394240pt;}
.y194{bottom:706.562560pt;}
.y121{bottom:706.564160pt;}
.yf4{bottom:706.724160pt;}
.yc6{bottom:707.362240pt;}
.y6e{bottom:707.681787pt;}
.y3bc{bottom:707.839867pt;}
.y342{bottom:708.478400pt;}
.y2ff{bottom:708.633920pt;}
.y15e{bottom:712.143040pt;}
.y217{bottom:714.237760pt;}
.y277{bottom:714.400000pt;}
.y438{bottom:718.240000pt;}
.y47b{bottom:718.244000pt;}
.y3f2{bottom:718.720000pt;}
.y2af{bottom:718.726560pt;}
.y2c1{bottom:718.758720pt;}
.y11{bottom:719.679867pt;}
.y4ba{bottom:720.321787pt;}
.y264{bottom:721.924000pt;}
.y99{bottom:724.155520pt;}
.y320{bottom:725.129600pt;}
.y395{bottom:725.922747pt;}
.y36b{bottom:726.234560pt;}
.y193{bottom:726.562240pt;}
.y120{bottom:726.563840pt;}
.yf3{bottom:726.723840pt;}
.yc5{bottom:727.361920pt;}
.y6d{bottom:727.681467pt;}
.y2fe{bottom:728.314880pt;}
.y341{bottom:728.796800pt;}
.y276{bottom:730.229760pt;}
.y15d{bottom:731.664640pt;}
.y2ae{bottom:733.445120pt;}
.y2c0{bottom:733.477280pt;}
.y1e2{bottom:734.084000pt;}
.y216{bottom:734.237440pt;}
.y47a{bottom:734.720000pt;}
.y479{bottom:734.724000pt;}
.y3f1{bottom:735.200000pt;}
.y3f0{bottom:735.203867pt;}
.y266{bottom:738.052000pt;}
.y437{bottom:739.516000pt;}
.y4b9{bottom:740.002747pt;}
.y3bb{bottom:743.056320pt;}
.y98{bottom:743.836480pt;}
.y31f{bottom:745.448000pt;}
.y36a{bottom:745.915520pt;}
.y394{bottom:745.922427pt;}
.y10{bottom:746.400000pt;}
.y192{bottom:746.561920pt;}
.y11f{bottom:746.563520pt;}
.yf2{bottom:746.723520pt;}
.yc4{bottom:747.361600pt;}
.y6c{bottom:747.681147pt;}
.y2fd{bottom:747.836480pt;}
.y2ad{bottom:748.002880pt;}
.y2bf{bottom:748.035040pt;}
.y340{bottom:749.274560pt;}
.y275{bottom:749.910720pt;}
.y1e1{bottom:750.560000pt;}
.y262{bottom:750.742667pt;}
.y478{bottom:751.200000pt;}
.y15c{bottom:751.345600pt;}
.y3ef{bottom:751.679867pt;}
.y3ee{bottom:751.683867pt;}
.y215{bottom:754.237120pt;}
.y436{bottom:756.160000pt;}
.y435{bottom:756.168000pt;}
.y4b8{bottom:760.002427pt;}
.y2ac{bottom:762.721440pt;}
.y2be{bottom:762.753600pt;}
.y3ba{bottom:763.056000pt;}
.y97{bottom:763.676800pt;}
.y369{bottom:765.596480pt;}
.y393{bottom:765.922107pt;}
.y31e{bottom:765.925760pt;}
.y1e0{bottom:766.560320pt;}
.y191{bottom:766.561600pt;}
.y11e{bottom:766.563200pt;}
.yf1{bottom:766.723200pt;}
.yc3{bottom:767.361280pt;}
.y2fc{bottom:767.517440pt;}
.y6b{bottom:767.680827pt;}
.y477{bottom:767.844000pt;}
.y3ed{bottom:768.327867pt;}
.y274{bottom:769.432320pt;}
.y33f{bottom:769.592960pt;}
.y15b{bottom:770.867200pt;}
.y434{bottom:772.644000pt;}
.y214{bottom:774.236800pt;}
.y2ab{bottom:777.440000pt;}
.y2bd{bottom:777.472160pt;}
.y268{bottom:779.297333pt;}
.y4b7{bottom:780.002107pt;}
.y3b9{bottom:783.055680pt;}
.y96{bottom:783.357760pt;}
.y368{bottom:785.436800pt;}
.y392{bottom:785.921787pt;}
.y31d{bottom:786.244160pt;}
.y190{bottom:786.561280pt;}
.y1df{bottom:786.561920pt;}
.y11d{bottom:786.562880pt;}
.yf0{bottom:786.722880pt;}
.y2fb{bottom:787.039040pt;}
.yc2{bottom:787.360960pt;}
.y6a{bottom:787.680507pt;}
.y273{bottom:789.113280pt;}
.y433{bottom:789.120000pt;}
.y476{bottom:789.124000pt;}
.y432{bottom:789.128000pt;}
.y3ec{bottom:789.603867pt;}
.y33e{bottom:790.070720pt;}
.y15a{bottom:790.548160pt;}
.y2bc{bottom:792.190720pt;}
.y213{bottom:794.236480pt;}
.y4b6{bottom:800.001787pt;}
.y95{bottom:803.038720pt;}
.y3b8{bottom:803.055360pt;}
.y367{bottom:805.117760pt;}
.y475{bottom:805.600000pt;}
.y474{bottom:805.603867pt;}
.y431{bottom:805.604000pt;}
.y391{bottom:805.921467pt;}
.y3eb{bottom:806.079867pt;}
.y18f{bottom:806.560960pt;}
.y1de{bottom:806.561600pt;}
.y11c{bottom:806.562560pt;}
.y2fa{bottom:806.720000pt;}
.yef{bottom:806.722560pt;}
.y2bb{bottom:806.748480pt;}
.yf{bottom:807.047547pt;}
.yc1{bottom:807.360640pt;}
.y69{bottom:807.680187pt;}
.y272{bottom:808.634880pt;}
.y159{bottom:810.069760pt;}
.y1b8{bottom:810.229760pt;}
.y212{bottom:813.280000pt;}
.y4ad{bottom:813.920187pt;}
.y4b5{bottom:820.001467pt;}
.y2ba{bottom:821.467040pt;}
.y473{bottom:822.079867pt;}
.y472{bottom:822.084000pt;}
.y94{bottom:822.879040pt;}
.y3b7{bottom:823.533120pt;}
.y366{bottom:824.798720pt;}
.y390{bottom:825.921147pt;}
.y18e{bottom:826.560640pt;}
.y1dd{bottom:826.561280pt;}
.y11b{bottom:826.562240pt;}
.yee{bottom:826.722240pt;}
.y42f{bottom:826.876000pt;}
.y430{bottom:826.880000pt;}
.yc0{bottom:827.360320pt;}
.y68{bottom:827.679867pt;}
.y271{bottom:828.315840pt;}
.y158{bottom:829.750720pt;}
.y1b7{bottom:829.910720pt;}
.y2f9{bottom:833.919867pt;}
.y211{bottom:837.120000pt;}
.y2a7{bottom:838.400000pt;}
.y4b4{bottom:840.001147pt;}
.ye{bottom:841.451547pt;}
.y93{bottom:842.560000pt;}
.y470{bottom:843.355867pt;}
.y471{bottom:843.360000pt;}
.y42e{bottom:843.520000pt;}
.y42d{bottom:843.524000pt;}
.y3b6{bottom:843.851520pt;}
.y365{bottom:844.639040pt;}
.y3ea{bottom:844.640000pt;}
.y38f{bottom:845.920827pt;}
.y18d{bottom:846.560320pt;}
.y1dc{bottom:846.560960pt;}
.y11a{bottom:846.561920pt;}
.yed{bottom:846.721920pt;}
.ybf{bottom:847.360000pt;}
.y270{bottom:847.837440pt;}
.y157{bottom:849.272320pt;}
.y1b6{bottom:849.432320pt;}
.y4ac{bottom:855.060000pt;}
.y67{bottom:855.200000pt;}
.y46f{bottom:859.999867pt;}
.y42c{bottom:860.000000pt;}
.y4b3{bottom:860.000827pt;}
.y46e{bottom:860.003867pt;}
.y3e9{bottom:861.440000pt;}
.y364{bottom:864.320000pt;}
.y3b5{bottom:864.329280pt;}
.y38e{bottom:865.920507pt;}
.y1db{bottom:866.560640pt;}
.y119{bottom:866.561600pt;}
.yec{bottom:866.721600pt;}
.ybe{bottom:867.359680pt;}
.y26f{bottom:867.518400pt;}
.y2a6{bottom:868.640000pt;}
.y156{bottom:868.953280pt;}
.y1b5{bottom:869.113280pt;}
.y2f8{bottom:869.118400pt;}
.y92{bottom:869.598720pt;}
.y210{bottom:871.037627pt;}
.y4ab{bottom:871.536000pt;}
.yd{bottom:875.679867pt;}
.y46d{bottom:876.479867pt;}
.y4b2{bottom:880.000507pt;}
.y42b{bottom:881.120000pt;}
.y42a{bottom:881.124000pt;}
.y3e8{bottom:883.043867pt;}
.y2a5{bottom:884.478907pt;}
.y3b4{bottom:884.647680pt;}
.y38d{bottom:885.920187pt;}
.y1da{bottom:886.560320pt;}
.y118{bottom:886.561280pt;}
.yeb{bottom:886.721280pt;}
.y91{bottom:886.880000pt;}
.y26e{bottom:887.040000pt;}
.ybd{bottom:887.359360pt;}
.y4aa{bottom:888.012000pt;}
.y155{bottom:888.474880pt;}
.y1b4{bottom:888.634880pt;}
.y2f7{bottom:888.640000pt;}
.y66{bottom:889.759867pt;}
.y4d6{bottom:890.571840pt;}
.y20f{bottom:891.037307pt;}
.y363{bottom:891.520000pt;}
.y428{bottom:897.119867pt;}
.y429{bottom:897.120000pt;}
.y46c{bottom:898.079867pt;}
.y46b{bottom:898.084000pt;}
.y3e7{bottom:899.999867pt;}
.y4b1{bottom:900.000187pt;}
.y3e6{bottom:900.003867pt;}
.y2a4{bottom:904.157440pt;}
.y4a9{bottom:904.488000pt;}
.y3b3{bottom:905.125440pt;}
.y38c{bottom:905.919867pt;}
.yc{bottom:906.547707pt;}
.y1d9{bottom:906.560000pt;}
.y1d8{bottom:906.560320pt;}
.y117{bottom:906.560960pt;}
.yea{bottom:906.720960pt;}
.ybc{bottom:907.359040pt;}
.y154{bottom:908.155840pt;}
.y1b3{bottom:908.315840pt;}
.y20e{bottom:911.036987pt;}
.y90{bottom:912.320000pt;}
.y427{bottom:913.115867pt;}
.y62{bottom:914.240000pt;}
.y46a{bottom:915.040000pt;}
.y469{bottom:915.044000pt;}
.y3e5{bottom:916.803867pt;}
.y4d5{bottom:918.566080pt;}
.y4b0{bottom:919.999867pt;}
.y4a8{bottom:920.964000pt;}
.y2a3{bottom:923.679040pt;}
.yb{bottom:924.314747pt;}
.y362{bottom:925.443840pt;}
.y1d7{bottom:926.560000pt;}
.y1d6{bottom:926.560320pt;}
.y116{bottom:926.560640pt;}
.ye9{bottom:926.720640pt;}
.ybb{bottom:927.358720pt;}
.y153{bottom:927.677440pt;}
.y1b2{bottom:927.837440pt;}
.y20d{bottom:931.036667pt;}
.y38b{bottom:933.280000pt;}
.y426{bottom:934.079867pt;}
.y425{bottom:934.084000pt;}
.y468{bottom:936.803867pt;}
.y64{bottom:937.600000pt;}
.y4a7{bottom:937.608000pt;}
.y3e4{bottom:938.084000pt;}
.y4af{bottom:939.999867pt;}
.ya{bottom:941.919867pt;}
.y2a2{bottom:943.360000pt;}
.y361{bottom:945.921600pt;}
.y1d5{bottom:946.560000pt;}
.y115{bottom:946.560320pt;}
.ye8{bottom:946.720320pt;}
.yba{bottom:947.358400pt;}
.y8f{bottom:947.518400pt;}
.y20c{bottom:951.036347pt;}
.y467{bottom:953.759867pt;}
.y466{bottom:953.764000pt;}
.y4a6{bottom:954.084000pt;}
.y3e3{bottom:954.560000pt;}
.y424{bottom:954.880000pt;}
.y423{bottom:954.884000pt;}
.y4{bottom:959.687867pt;}
.y360{bottom:966.240000pt;}
.y114{bottom:966.560000pt;}
.ye7{bottom:966.720000pt;}
.yb9{bottom:966.880000pt;}
.y8e{bottom:967.040000pt;}
.y4ae{bottom:967.520000pt;}
.y2a1{bottom:968.640000pt;}
.y20b{bottom:970.079867pt;}
.y4a5{bottom:970.560000pt;}
.y465{bottom:970.720000pt;}
.y3e2{bottom:970.880000pt;}
.y3{bottom:975.683867pt;}
.y2{bottom:991.683867pt;}
.y60{bottom:993.919867pt;}
.y8d{bottom:995.044000pt;}
.y1{bottom:1007.679867pt;}
.y5f{bottom:1009.120000pt;}
.h32{height:16.960000pt;}
.h13{height:19.764000pt;}
.hf{height:21.328125pt;}
.h20{height:22.560000pt;}
.h4{height:22.720000pt;}
.h23{height:22.721333pt;}
.h1d{height:24.480000pt;}
.h1c{height:24.640000pt;}
.h2c{height:25.381333pt;}
.h9{height:25.436160pt;}
.hb{height:28.579687pt;}
.h2e{height:29.280000pt;}
.h2f{height:29.440000pt;}
.h2d{height:29.441333pt;}
.h28{height:31.874883pt;}
.h26{height:31.881391pt;}
.h2{height:32.554688pt;}
.h5{height:32.578125pt;}
.h3{height:34.453125pt;}
.h24{height:34.836480pt;}
.h15{height:36.053125pt;}
.h14{height:36.591206pt;}
.h11{height:37.048320pt;}
.h30{height:37.052800pt;}
.h1a{height:37.246250pt;}
.h1f{height:37.758667pt;}
.h12{height:39.052358pt;}
.h8{height:41.285000pt;}
.ha{height:41.472000pt;}
.h37{height:41.488000pt;}
.h36{height:43.715326pt;}
.h22{height:43.998667pt;}
.h6{height:44.160000pt;}
.hd{height:44.875000pt;}
.he{height:45.895680pt;}
.h31{height:45.905387pt;}
.h1b{height:45.912320pt;}
.h18{height:48.378295pt;}
.h35{height:48.704000pt;}
.h19{height:48.767467pt;}
.h17{height:48.810240pt;}
.h16{height:55.038667pt;}
.h2b{height:58.693333pt;}
.h21{height:65.863680pt;}
.h1e{height:66.506880pt;}
.h7{height:82.121250pt;}
.h27{height:87.246667pt;}
.h2a{height:97.294667pt;}
.h29{height:116.066667pt;}
.h34{height:252.640000pt;}
.h25{height:290.297333pt;}
.h33{height:320.320000pt;}
.h10{height:442.720000pt;}
.hc{height:510.240000pt;}
.h0{height:1077.280000pt;}
.h1{height:1077.333333pt;}
.wb{width:23.520000pt;}
.we{width:27.225333pt;}
.wd{width:27.226667pt;}
.wa{width:56.640000pt;}
.wf{width:60.533333pt;}
.w11{width:67.405333pt;}
.w8{width:69.280000pt;}
.w10{width:70.313333pt;}
.w5{width:70.540000pt;}
.w9{width:75.680000pt;}
.w14{width:76.160000pt;}
.w7{width:91.360000pt;}
.w13{width:92.320000pt;}
.w12{width:93.761333pt;}
.w16{width:94.560000pt;}
.w4{width:194.720000pt;}
.w15{width:200.160000pt;}
.w6{width:234.400000pt;}
.w18{width:262.080000pt;}
.w17{width:286.080000pt;}
.w2{width:298.560000pt;}
.wc{width:436.678667pt;}
.w3{width:442.240000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4f{left:1.760000pt;}
.x2d{left:5.657600pt;}
.x76{left:6.622400pt;}
.x6a{left:10.651333pt;}
.x56{left:12.160000pt;}
.xc{left:13.280000pt;}
.x53{left:17.120000pt;}
.x79{left:18.400000pt;}
.x58{left:19.680000pt;}
.x64{left:20.800000pt;}
.x5a{left:21.760000pt;}
.x5c{left:22.880000pt;}
.x7d{left:24.000000pt;}
.x55{left:30.720000pt;}
.x7b{left:32.960000pt;}
.x8f{left:36.640000pt;}
.x91{left:51.680000pt;}
.x47{left:57.440000pt;}
.x8c{left:60.800000pt;}
.x5{left:75.516000pt;}
.x6{left:77.440000pt;}
.x1d{left:81.600000pt;}
.x85{left:84.160000pt;}
.x86{left:86.400000pt;}
.x89{left:92.800000pt;}
.x20{left:94.560000pt;}
.x4c{left:97.920000pt;}
.x7{left:101.760000pt;}
.x51{left:103.360000pt;}
.x21{left:112.640000pt;}
.x27{left:116.960000pt;}
.x23{left:120.960000pt;}
.x28{left:123.840000pt;}
.x24{left:125.600000pt;}
.x25{left:128.480000pt;}
.x1a{left:132.160000pt;}
.x2b{left:135.520000pt;}
.x2c{left:142.969333pt;}
.x2a{left:146.080000pt;}
.x26{left:149.760000pt;}
.x18{left:156.800000pt;}
.x80{left:165.280000pt;}
.x8a{left:170.080000pt;}
.x8d{left:172.000000pt;}
.x19{left:174.080000pt;}
.x1b{left:175.680000pt;}
.x17{left:179.680000pt;}
.x1f{left:183.360000pt;}
.x1c{left:192.000000pt;}
.x1e{left:197.120000pt;}
.x14{left:200.800000pt;}
.x16{left:210.080000pt;}
.x4e{left:233.920000pt;}
.x29{left:235.840000pt;}
.xa{left:241.436000pt;}
.x22{left:252.320000pt;}
.x10{left:256.000000pt;}
.x90{left:259.520000pt;}
.x11{left:269.600000pt;}
.xb{left:276.000000pt;}
.x4d{left:277.760000pt;}
.x66{left:280.480000pt;}
.x68{left:282.406720pt;}
.x62{left:284.160000pt;}
.x7a{left:287.520000pt;}
.xd{left:289.280000pt;}
.x84{left:290.720000pt;}
.x83{left:292.160000pt;}
.x9{left:298.560000pt;}
.x82{left:301.280000pt;}
.x30{left:302.707840pt;}
.xa2{left:306.880000pt;}
.x52{left:308.000000pt;}
.x93{left:310.080000pt;}
.xc3{left:313.920000pt;}
.xac{left:315.840000pt;}
.xca{left:323.680000pt;}
.x69{left:326.405333pt;}
.x37{left:327.360000pt;}
.x36{left:331.040000pt;}
.xe{left:335.360000pt;}
.xa3{left:337.600000pt;}
.xcf{left:339.040000pt;}
.x32{left:340.960000pt;}
.x75{left:343.850667pt;}
.x54{left:350.720000pt;}
.xad{left:352.800000pt;}
.x6b{left:353.896000pt;}
.x13{left:356.000000pt;}
.xbd{left:358.240000pt;}
.xb0{left:364.000000pt;}
.x4a{left:365.600000pt;}
.x4b{left:367.518880pt;}
.x49{left:369.280000pt;}
.x33{left:371.200000pt;}
.xbc{left:372.480000pt;}
.x45{left:374.560000pt;}
.x6c{left:381.121333pt;}
.xb2{left:383.360000pt;}
.x12{left:385.760000pt;}
.x39{left:389.440000pt;}
.xb8{left:391.840000pt;}
.x38{left:401.760000pt;}
.xc5{left:402.880000pt;}
.xa9{left:405.600000pt;}
.xa6{left:406.880000pt;}
.x6d{left:408.612000pt;}
.xcd{left:411.840000pt;}
.xae{left:413.920000pt;}
.xc9{left:416.640000pt;}
.x8{left:417.760000pt;}
.x3b{left:419.040000pt;}
.xb3{left:420.800000pt;}
.xaf{left:423.520000pt;}
.x15{left:430.560000pt;}
.x34{left:431.840000pt;}
.xbe{left:433.760000pt;}
.x87{left:435.200000pt;}
.x9f{left:437.280000pt;}
.x57{left:438.400000pt;}
.xf{left:439.520000pt;}
.x88{left:440.960000pt;}
.xa8{left:447.360000pt;}
.x3a{left:450.240000pt;}
.xab{left:454.560000pt;}
.x8b{left:456.160000pt;}
.x8e{left:458.084640pt;}
.x92{left:459.520000pt;}
.x7c{left:461.760000pt;}
.x6e{left:463.329333pt;}
.x99{left:464.480000pt;}
.xbf{left:466.720000pt;}
.xb7{left:474.400000pt;}
.x77{left:475.753333pt;}
.xd0{left:477.280000pt;}
.xb6{left:479.200000pt;}
.xc7{left:480.640000pt;}
.xa0{left:485.440000pt;}
.x9d{left:487.680000pt;}
.xa1{left:488.800000pt;}
.x6f{left:490.554667pt;}
.x40{left:495.680000pt;}
.x94{left:496.800000pt;}
.xc2{left:499.040000pt;}
.x59{left:500.800000pt;}
.xb9{left:504.320000pt;}
.xc4{left:509.440000pt;}
.x5b{left:515.040000pt;}
.x50{left:516.640000pt;}
.x1{left:518.080000pt;}
.x48{left:524.480000pt;}
.xa5{left:530.720000pt;}
.x9a{left:540.480000pt;}
.xb1{left:541.440000pt;}
.x96{left:542.720000pt;}
.x70{left:545.273333pt;}
.x7e{left:552.160000pt;}
.x2{left:554.404000pt;}
.x42{left:560.160000pt;}
.x7f{left:561.121920pt;}
.xc6{left:564.320000pt;}
.x41{left:566.720000pt;}
.xb4{left:571.360000pt;}
.xcb{left:573.600000pt;}
.xa4{left:574.560000pt;}
.x5e{left:576.480000pt;}
.xc1{left:580.960000pt;}
.x5d{left:581.920000pt;}
.x9b{left:588.480000pt;}
.x5f{left:590.880000pt;}
.x43{left:592.640000pt;}
.x3c{left:595.200000pt;}
.x71{left:599.989333pt;}
.x3{left:603.204000pt;}
.x63{left:609.600000pt;}
.x9c{left:610.880000pt;}
.x4{left:611.844000pt;}
.x78{left:613.998667pt;}
.x95{left:616.160000pt;}
.xcc{left:619.040000pt;}
.xb5{left:621.120000pt;}
.x44{left:623.360000pt;}
.x72{left:627.216000pt;}
.xba{left:632.480000pt;}
.xc8{left:635.200000pt;}
.x2f{left:639.520000pt;}
.x9e{left:640.480000pt;}
.x65{left:645.120000pt;}
.x67{left:647.680000pt;}
.x3d{left:651.040000pt;}
.x3e{left:652.480000pt;}
.x73{left:654.706667pt;}
.xa7{left:655.840000pt;}
.x31{left:658.880000pt;}
.x98{left:662.240000pt;}
.xbb{left:664.000000pt;}
.xd1{left:672.480000pt;}
.x3f{left:675.840000pt;}
.xaa{left:680.320000pt;}
.x74{left:681.932000pt;}
.xc0{left:684.640000pt;}
.x97{left:688.800000pt;}
.x60{left:696.320000pt;}
.x35{left:700.000000pt;}
.x46{left:701.120000pt;}
.x61{left:702.080000pt;}
.x81{left:705.120000pt;}
.xce{left:715.200000pt;}
.x2e{left:718.080000pt;}
}




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