
    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_f5fb4e720b45bd19090f4efa.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_11868f070cf39ea7f27c6177.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.911000;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_55da225ac7e412e571494c06.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.643000;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_e0ccb3c337429f359817e00c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005000;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_7876554f7ec7fce6b49a9484.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.952000;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_fcde3c591e8364266dfd692d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.026000;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_6a821ae8ac5f63722338212c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.683000;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_67f582bb72702ceba16a857d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.012000;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_90b6b9edb2bbe16fc76ca88b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a141e4309cbf51294dfd8c2e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.057000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_808bbc1c58a12e1cccb650f0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.496000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5ee884e699f556624ded42db.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b3bbadc97948fcf0979c2a08.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.553000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5557cff5e7ed40b2af3574cd.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.288000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_23186d3c3e08699946c8760a.woff2')format("woff");}.fff{font-family:fff;line-height:0.068000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_d466b4c9697e7237b9609287.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.075000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_81b58b2f1000d36627823b9e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.433154;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_c28455d3be966f24891e514c.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_96f90b2be5ce68b3905e89c8.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_493f0e96649b17f45b11d43f.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_d5d193aa6078749ea23a0cd3.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.284180;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;}
.m6{transform:matrix(0.000000,1.500000,-1.500000,0.000000,0,0);-ms-transform:matrix(0.000000,1.500000,-1.500000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.500000,-1.500000,0.000000,0,0);}
.m5{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281282,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-60.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.081574px;}
.v3{vertical-align:60.000600px;}
.ls60{letter-spacing:-1.556552px;}
.ls5b{letter-spacing:-1.511990px;}
.ls5f{letter-spacing:-1.500064px;}
.ls71{letter-spacing:-1.493788px;}
.ls5c{letter-spacing:-1.487512px;}
.ls74{letter-spacing:-1.481863px;}
.ls75{letter-spacing:-1.474959px;}
.ls5d{letter-spacing:-1.469310px;}
.ls58{letter-spacing:-1.462406px;}
.ls59{letter-spacing:-1.455502px;}
.ls72{letter-spacing:-1.449853px;}
.ls5e{letter-spacing:-1.442949px;}
.ls73{letter-spacing:-1.438788px;}
.ls5a{letter-spacing:-1.349430px;}
.ls19{letter-spacing:-1.192520px;}
.ls76{letter-spacing:-1.138396px;}
.ls15{letter-spacing:-1.130383px;}
.lsc{letter-spacing:-1.110926px;}
.lsf{letter-spacing:-1.085821px;}
.lsd{letter-spacing:-1.079544px;}
.ls10{letter-spacing:-1.073895px;}
.lse{letter-spacing:-1.066991px;}
.ls1b{letter-spacing:-1.063088px;}
.ls12{letter-spacing:-1.061343px;}
.ls14{letter-spacing:-1.054439px;}
.ls11{letter-spacing:-1.047534px;}
.ls13{letter-spacing:-1.041886px;}
.ls16{letter-spacing:-1.034982px;}
.lsb{letter-spacing:-1.029333px;}
.ls18{letter-spacing:-1.016780px;}
.ls55{letter-spacing:-1.010504px;}
.ls17{letter-spacing:-1.004855px;}
.ls38{letter-spacing:-0.991047px;}
.ls3b{letter-spacing:-0.960292px;}
.ls39{letter-spacing:-0.948367px;}
.ls41{letter-spacing:-0.928910px;}
.ls54{letter-spacing:-0.922006px;}
.ls1a{letter-spacing:-0.912055px;}
.ls35{letter-spacing:-0.910081px;}
.ls43{letter-spacing:-0.897528px;}
.ls51{letter-spacing:-0.884975px;}
.ls37{letter-spacing:-0.872422px;}
.ls36{letter-spacing:-0.859870px;}
.ls3a{letter-spacing:-0.853593px;}
.ls34{letter-spacing:-0.847317px;}
.ls3f{letter-spacing:-0.841040px;}
.ls56{letter-spacing:-0.836748px;}
.ls52{letter-spacing:-0.835392px;}
.ls33{letter-spacing:-0.828487px;}
.ls40{letter-spacing:-0.822839px;}
.ls3e{letter-spacing:-0.809031px;}
.ls6f{letter-spacing:-0.803382px;}
.ls3d{letter-spacing:-0.797105px;}
.ls5{letter-spacing:-0.792632px;}
.ls42{letter-spacing:-0.790829px;}
.ls3c{letter-spacing:-0.766351px;}
.ls57{letter-spacing:-0.746894px;}
.ls70{letter-spacing:-0.715512px;}
.ls6e{letter-spacing:-0.639567px;}
.ls6{letter-spacing:-0.436725px;}
.ls7{letter-spacing:-0.357461px;}
.ls4{letter-spacing:-0.122780px;}
.ls77{letter-spacing:-0.006904px;}
.ls8{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.003945px;}
.ls0{letter-spacing:0.004603px;}
.ls1{letter-spacing:0.004931px;}
.ls78{letter-spacing:0.025106px;}
.ls7c{letter-spacing:0.033474px;}
.ls1d{letter-spacing:0.037659px;}
.ls6d{letter-spacing:0.080697px;}
.ls67{letter-spacing:0.167371px;}
.ls6b{letter-spacing:0.169463px;}
.ls6c{letter-spacing:0.175740px;}
.ls3{letter-spacing:0.207122px;}
.ls1c{letter-spacing:0.219675px;}
.ls4d{letter-spacing:0.238504px;}
.ls61{letter-spacing:0.251057px;}
.ls65{letter-spacing:0.297084px;}
.ls7b{letter-spacing:0.485376px;}
.ls4b{letter-spacing:0.527847px;}
.ls49{letter-spacing:0.558601px;}
.ls46{letter-spacing:0.564878px;}
.ls2a{letter-spacing:0.589983px;}
.ls45{letter-spacing:0.596888px;}
.ls4c{letter-spacing:0.602536px;}
.ls44{letter-spacing:0.608813px;}
.ls47{letter-spacing:0.621366px;}
.ls7d{letter-spacing:0.632245px;}
.ls48{letter-spacing:0.646471px;}
.ls79{letter-spacing:0.648563px;}
.ls4a{letter-spacing:0.659024px;}
.ls7a{letter-spacing:0.665301px;}
.ls23{letter-spacing:0.677853px;}
.ls2f{letter-spacing:0.740618px;}
.ls30{letter-spacing:0.815935px;}
.ls27{letter-spacing:0.822839px;}
.ls2c{letter-spacing:0.841040px;}
.ls32{letter-spacing:0.847317px;}
.ls31{letter-spacing:0.872422px;}
.ls25{letter-spacing:0.879326px;}
.ls1f{letter-spacing:0.891252px;}
.ls2e{letter-spacing:0.897528px;}
.ls28{letter-spacing:0.903804px;}
.ls22{letter-spacing:0.910081px;}
.ls2d{letter-spacing:0.916357px;}
.ls21{letter-spacing:0.922006px;}
.ls1e{letter-spacing:0.928910px;}
.ls20{letter-spacing:0.934559px;}
.ls2b{letter-spacing:0.941463px;}
.ls26{letter-spacing:0.948367px;}
.ls24{letter-spacing:0.972845px;}
.ls29{letter-spacing:1.060715px;}
.ls4f{letter-spacing:7.494045px;}
.ls53{letter-spacing:10.161524px;}
.ls9{letter-spacing:10.946076px;}
.ls4e{letter-spacing:13.280905px;}
.ls50{letter-spacing:23.009356px;}
.lsa{letter-spacing:71.430526px;}
.ls63{letter-spacing:120.711038px;}
.ls66{letter-spacing:120.712294px;}
.ls62{letter-spacing:255.412635px;}
.ls68{letter-spacing:536.382853px;}
.ls64{letter-spacing:935.048499px;}
.ls69{letter-spacing:1386.777091px;}
.ls6a{letter-spacing:1386.779183px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2bf{word-spacing:-18.000000px;}
.ws189{word-spacing:-10.224288px;}
.wsdf{word-spacing:-0.740618px;}
.ws16a{word-spacing:-0.590611px;}
.ws296{word-spacing:-0.527219px;}
.ws10{word-spacing:-0.062764px;}
.ws1bc{word-spacing:-0.053798px;}
.ws214{word-spacing:-0.046446px;}
.ws185{word-spacing:-0.041843px;}
.ws1c9{word-spacing:-0.041837px;}
.wsa{word-spacing:-0.039811px;}
.ws34{word-spacing:0.000000px;}
.ws22d{word-spacing:0.576803px;}
.ws2{word-spacing:0.637214px;}
.ws244{word-spacing:0.740618px;}
.ws243{word-spacing:0.765723px;}
.ws4f{word-spacing:1.129756px;}
.ws2a7{word-spacing:7.054696px;}
.ws2a6{word-spacing:7.109092px;}
.ws175{word-spacing:7.125410px;}
.ws2ac{word-spacing:7.289016px;}
.ws270{word-spacing:7.443834px;}
.ws176{word-spacing:7.460153px;}
.ws2ba{word-spacing:7.669785px;}
.ws1be{word-spacing:7.702841px;}
.ws2c{word-spacing:7.710874px;}
.ws31{word-spacing:7.757500px;}
.ws1bf{word-spacing:7.790711px;}
.ws15a{word-spacing:7.895736px;}
.ws28d{word-spacing:7.996159px;}
.ws273{word-spacing:8.075660px;}
.ws28c{word-spacing:8.125872px;}
.ws2b3{word-spacing:8.130056px;}
.ws177{word-spacing:8.142190px;}
.ws17c{word-spacing:8.489904px;}
.ws2ab{word-spacing:8.573590px;}
.ws2a2{word-spacing:8.745145px;}
.ws287{word-spacing:9.096625px;}
.ws2f{word-spacing:9.138349px;}
.ws29a{word-spacing:9.151020px;}
.ws21d{word-spacing:9.175708px;}
.ws172{word-spacing:9.234288px;}
.ws2a{word-spacing:9.260294px;}
.ws29c{word-spacing:9.272364px;}
.ws281{word-spacing:9.297470px;}
.ws29{word-spacing:9.306920px;}
.ws30{word-spacing:9.339200px;}
.ws2a8{word-spacing:9.364419px;}
.ws9{word-spacing:9.500598px;}
.ws2a4{word-spacing:9.544343px;}
.ws2a3{word-spacing:9.632213px;}
.ws32{word-spacing:9.694275px;}
.ws237{word-spacing:9.734727px;}
.ws236{word-spacing:9.741004px;}
.ws2d{word-spacing:9.751661px;}
.ws17b{word-spacing:9.824689px;}
.ws2b{word-spacing:9.859260px;}
.wsf8{word-spacing:9.916744px;}
.ws2e{word-spacing:10.056524px;}
.wsfa{word-spacing:10.155248px;}
.wsf9{word-spacing:10.418857px;}
.ws26{word-spacing:10.431410px;}
.ws1e6{word-spacing:10.450239px;}
.wsaf{word-spacing:10.469069px;}
.ws27{word-spacing:10.487898px;}
.ws17a{word-spacing:10.523046px;}
.wsb0{word-spacing:10.531833px;}
.wsad{word-spacing:10.544386px;}
.ws76{word-spacing:10.600873px;}
.ws206{word-spacing:10.602547px;}
.wsae{word-spacing:10.619703px;}
.wsb1{word-spacing:10.632255px;}
.ws26a{word-spacing:10.644808px;}
.ws2b1{word-spacing:10.728494px;}
.ws22f{word-spacing:10.732678px;}
.ws193{word-spacing:10.745231px;}
.ws198{word-spacing:10.751507px;}
.ws199{word-spacing:10.770337px;}
.ws28{word-spacing:10.776613px;}
.wsf1{word-spacing:10.871387px;}
.ws17e{word-spacing:10.874525px;}
.wsd1{word-spacing:10.902142px;}
.wsac{word-spacing:10.927247px;}
.ws297{word-spacing:10.954445px;}
.ws109{word-spacing:10.974948px;}
.ws151{word-spacing:11.027670px;}
.ws106{word-spacing:11.033946px;}
.ws279{word-spacing:11.050265px;}
.ws258{word-spacing:11.052776px;}
.ws2a1{word-spacing:11.054868px;}
.wsd0{word-spacing:11.059052px;}
.ws22b{word-spacing:11.065328px;}
.ws74{word-spacing:11.090434px;}
.ws28e{word-spacing:11.096711px;}
.wsda{word-spacing:11.109263px;}
.ws178{word-spacing:11.113448px;}
.ws27d{word-spacing:11.117632px;}
.ws2bd{word-spacing:11.126001px;}
.ws170{word-spacing:11.129766px;}
.ws2a5{word-spacing:11.134369px;}
.ws225{word-spacing:11.138135px;}
.ws2a0{word-spacing:11.151106px;}
.ws171{word-spacing:11.163659px;}
.ws292{word-spacing:11.172028px;}
.ws217{word-spacing:11.196715px;}
.ws15e{word-spacing:11.205083px;}
.ws21b{word-spacing:11.213452px;}
.ws271{word-spacing:11.226423px;}
.ws212{word-spacing:11.242742px;}
.ws2b5{word-spacing:11.243160px;}
.ws2b0{word-spacing:11.251529px;}
.ws224{word-spacing:11.259479px;}
.ws92{word-spacing:11.272450px;}
.ws28b{word-spacing:11.276635px;}
.ws222{word-spacing:11.280400px;}
.ws28f{word-spacing:11.293372px;}
.ws20c{word-spacing:11.297138px;}
.ws280{word-spacing:11.305506px;}
.ws27c{word-spacing:11.309690px;}
.ws29f{word-spacing:11.322662px;}
.ws260{word-spacing:11.328938px;}
.ws27a{word-spacing:11.334796px;}
.ws1c0{word-spacing:11.338980px;}
.ws12f{word-spacing:11.341491px;}
.ws274{word-spacing:11.368689px;}
.ws16e{word-spacing:11.376639px;}
.ws29b{word-spacing:11.385426px;}
.ws20b{word-spacing:11.389192px;}
.ws299{word-spacing:11.389610px;}
.ws226{word-spacing:11.397560px;}
.ws29d{word-spacing:11.414716px;}
.ws220{word-spacing:11.418482px;}
.ws277{word-spacing:11.426850px;}
.ws223{word-spacing:11.439403px;}
.ws231{word-spacing:11.441914px;}
.ws27e{word-spacing:11.447772px;}
.ws16f{word-spacing:11.448190px;}
.ws93{word-spacing:11.454467px;}
.ws27f{word-spacing:11.460324px;}
.ws216{word-spacing:11.485430px;}
.ws1de{word-spacing:11.498401px;}
.ws284{word-spacing:11.510954px;}
.ws0{word-spacing:11.518904px;}
.ws218{word-spacing:11.539826px;}
.ws215{word-spacing:11.548613px;}
.ws278{word-spacing:11.561166px;}
.ws213{word-spacing:11.564931px;}
.ws2b8{word-spacing:11.594640px;}
.ws27b{word-spacing:11.598406px;}
.ws221{word-spacing:11.623511px;}
.ws20{word-spacing:11.655312px;}
.ws1f4{word-spacing:11.667865px;}
.ws20d{word-spacing:11.673723px;}
.ws228{word-spacing:11.686276px;}
.ws1b{word-spacing:11.705523px;}
.ws8f{word-spacing:11.711800px;}
.ws19e{word-spacing:11.718076px;}
.wsed{word-spacing:11.743182px;}
.ws25{word-spacing:11.755735px;}
.ws4a{word-spacing:11.762011px;}
.ws230{word-spacing:11.768287px;}
.ws19{word-spacing:11.774564px;}
.ws1a{word-spacing:11.793393px;}
.ws114{word-spacing:11.824775px;}
.wsee{word-spacing:11.944027px;}
.ws2b4{word-spacing:11.946119px;}
.ws291{word-spacing:11.954488px;}
.ws55{word-spacing:11.975409px;}
.ws290{word-spacing:11.996331px;}
.ws113{word-spacing:12.006791px;}
.ws49{word-spacing:12.013068px;}
.ws54{word-spacing:12.025621px;}
.ws188{word-spacing:12.044450px;}
.ws6e{word-spacing:12.063279px;}
.ws15f{word-spacing:12.069556px;}
.ws18f{word-spacing:12.113491px;}
.ws6f{word-spacing:12.132320px;}
.ws252{word-spacing:12.157426px;}
.ws6{word-spacing:12.157665px;}
.ws3d{word-spacing:12.167468px;}
.ws205{word-spacing:12.175836px;}
.ws23b{word-spacing:12.188808px;}
.ws3f{word-spacing:12.201988px;}
.ws28a{word-spacing:12.205545px;}
.ws5{word-spacing:12.215945px;}
.ws293{word-spacing:12.221863px;}
.ws95{word-spacing:12.232743px;}
.ws289{word-spacing:12.285046px;}
.ws285{word-spacing:12.335257px;}
.ws3e{word-spacing:12.339442px;}
.ws23d{word-spacing:12.345718px;}
.ws56{word-spacing:12.364547px;}
.wsce{word-spacing:12.389653px;}
.ws70{word-spacing:12.395929px;}
.ws57{word-spacing:12.408482px;}
.ws1e0{word-spacing:12.439864px;}
.ws142{word-spacing:12.446141px;}
.wsa8{word-spacing:12.464970px;}
.ws18e{word-spacing:12.477523px;}
.ws286{word-spacing:12.498444px;}
.ws23e{word-spacing:12.508905px;}
.ws19d{word-spacing:12.546564px;}
.ws190{word-spacing:12.559116px;}
.ws1e1{word-spacing:12.571669px;}
.ws128{word-spacing:12.596775px;}
.ws24b{word-spacing:12.614977px;}
.ws197{word-spacing:12.697198px;}
.ws1e8{word-spacing:12.734856px;}
.ws24a{word-spacing:12.796993px;}
.ws24e{word-spacing:12.835907px;}
.ws103{word-spacing:12.885490px;}
.ws282{word-spacing:12.891767px;}
.ws1ca{word-spacing:12.904320px;}
.ws33{word-spacing:12.921288px;}
.ws1c7{word-spacing:12.973360px;}
.ws9e{word-spacing:12.992189px;}
.ws123{word-spacing:13.080059px;}
.wsa0{word-spacing:13.142823px;}
.ws47{word-spacing:13.143451px;}
.ws132{word-spacing:13.149100px;}
.ws1c8{word-spacing:13.155376px;}
.ws173{word-spacing:13.175879px;}
.ws182{word-spacing:13.192616px;}
.wsbd{word-spacing:13.193035px;}
.ws124{word-spacing:13.199311px;}
.ws174{word-spacing:13.242828px;}
.ws104{word-spacing:13.243246px;}
.ws2b9{word-spacing:13.247430px;}
.ws2b6{word-spacing:13.322748px;}
.ws5f{word-spacing:13.375051px;}
.ws12c{word-spacing:13.387604px;}
.ws37{word-spacing:13.406433px;}
.ws9d{word-spacing:13.469197px;}
.ws64{word-spacing:13.475474px;}
.ws242{word-spacing:13.525685px;}
.ws180{word-spacing:13.544514px;}
.ws1f3{word-spacing:13.563344px;}
.ws4e{word-spacing:13.582173px;}
.ws2aa{word-spacing:13.594726px;}
.ws126{word-spacing:13.607279px;}
.ws36{word-spacing:13.638661px;}
.ws2ad{word-spacing:13.644937px;}
.ws1ad{word-spacing:13.664394px;}
.ws201{word-spacing:13.732807px;}
.ws5b{word-spacing:13.764189px;}
.ws5a{word-spacing:13.770465px;}
.ws15b{word-spacing:13.799337px;}
.ws6c{word-spacing:13.864612px;}
.ws1b7{word-spacing:13.939929px;}
.ws1ae{word-spacing:13.958130px;}
.ws153{word-spacing:13.996417px;}
.ws1ba{word-spacing:14.021522px;}
.ws200{word-spacing:14.040352px;}
.ws1ac{word-spacing:14.052904px;}
.ws15c{word-spacing:14.100605px;}
.ws5d{word-spacing:14.178433px;}
.ws1a2{word-spacing:14.260026px;}
.ws1a3{word-spacing:14.266303px;}
.ws107{word-spacing:14.277936px;}
.ws13c{word-spacing:14.303961px;}
.ws25c{word-spacing:14.316514px;}
.ws2bb{word-spacing:14.356265px;}
.ws8b{word-spacing:14.360449px;}
.ws157{word-spacing:14.380152px;}
.ws5c{word-spacing:14.391831px;}
.ws2b2{word-spacing:14.402292px;}
.ws1bb{word-spacing:14.407051px;}
.ws16c{word-spacing:14.417810px;}
.ws122{word-spacing:14.435766px;}
.ws16d{word-spacing:14.444709px;}
.ws26f{word-spacing:14.460849px;}
.ws108{word-spacing:14.471608px;}
.ws134{word-spacing:14.485977px;}
.ws97{word-spacing:14.492254px;}
.ws232{word-spacing:14.504807px;}
.ws1bd{word-spacing:14.514646px;}
.ws179{word-spacing:14.525406px;}
.ws208{word-spacing:14.557685px;}
.ws2bc{word-spacing:14.582216px;}
.ws7{word-spacing:14.589963px;}
.ws156{word-spacing:14.616862px;}
.ws235{word-spacing:14.624059px;}
.ws209{word-spacing:14.643761px;}
.wsc3{word-spacing:14.649141px;}
.ws26c{word-spacing:14.659901px;}
.wsf{word-spacing:14.680546px;}
.ws298{word-spacing:14.749587px;}
.ws15d{word-spacing:14.753353px;}
.ws79{word-spacing:14.762140px;}
.wsab{word-spacing:14.768416px;}
.ws11{word-spacing:14.780969px;}
.ws8{word-spacing:14.794395px;}
.ws26e{word-spacing:14.832053px;}
.ws1f5{word-spacing:14.850010px;}
.ws1f6{word-spacing:14.856286px;}
.ws26d{word-spacing:14.858952px;}
.ws12{word-spacing:14.868839px;}
.ws1c{word-spacing:14.881392px;}
.ws1b9{word-spacing:14.900221px;}
.ws2ae{word-spacing:14.933695px;}
.ws135{word-spacing:14.981815px;}
.wsfb{word-spacing:14.994367px;}
.ws7b{word-spacing:15.013197px;}
.ws133{word-spacing:15.013824px;}
.ws1b8{word-spacing:15.057132px;}
.ws8c{word-spacing:15.075961px;}
.ws154{word-spacing:15.126172px;}
.ws24{word-spacing:15.188936px;}
.ws2a9{word-spacing:15.222411px;}
.ws12e{word-spacing:15.289359px;}
.ws2b7{word-spacing:15.377229px;}
.ws1ec{word-spacing:15.389782px;}
.ws125{word-spacing:15.421164px;}
.ws269{word-spacing:15.439993px;}
.ws234{word-spacing:15.496481px;}
.ws18a{word-spacing:15.509034px;}
.ws18{word-spacing:15.515310px;}
.ws4b{word-spacing:15.534139px;}
.ws4c{word-spacing:15.584351px;}
.ws1cd{word-spacing:15.609457px;}
.wsfc{word-spacing:15.652764px;}
.ws86{word-spacing:15.672221px;}
.ws4d{word-spacing:15.684774px;}
.ws233{word-spacing:15.741261px;}
.ws1ce{word-spacing:15.797749px;}
.ws13b{word-spacing:15.835408px;}
.ws196{word-spacing:15.860513px;}
.ws25a{word-spacing:15.873066px;}
.ws295{word-spacing:15.917001px;}
.ws294{word-spacing:15.950475px;}
.ws25b{word-spacing:15.960936px;}
.wscd{word-spacing:16.136676px;}
.ws7d{word-spacing:16.155505px;}
.ws25f{word-spacing:16.199440px;}
.ws8a{word-spacing:16.243375px;}
.ws159{word-spacing:16.305721px;}
.ws238{word-spacing:16.350074px;}
.ws239{word-spacing:16.368903px;}
.ws72{word-spacing:16.500708px;}
.ws1a5{word-spacing:16.525814px;}
.wsa6{word-spacing:16.601131px;}
.ws26b{word-spacing:16.651342px;}
.ws99{word-spacing:16.663895px;}
.wsb3{word-spacing:16.670172px;}
.ws155{word-spacing:16.676448px;}
.ws94{word-spacing:16.682724px;}
.ws80{word-spacing:16.689001px;}
.ws1a8{word-spacing:16.694650px;}
.ws22a{word-spacing:16.701554px;}
.wsc1{word-spacing:16.714106px;}
.ws73{word-spacing:16.720383px;}
.wsc2{word-spacing:16.732936px;}
.wsb4{word-spacing:16.739212px;}
.ws17{word-spacing:16.751765px;}
.wsc{word-spacing:16.770594px;}
.ws1f1{word-spacing:16.776871px;}
.wsd8{word-spacing:16.783147px;}
.ws264{word-spacing:16.789423px;}
.ws71{word-spacing:16.795700px;}
.ws9a{word-spacing:16.808253px;}
.ws16{word-spacing:16.820806px;}
.ws13{word-spacing:16.827082px;}
.ws14a{word-spacing:16.833358px;}
.ws78{word-spacing:16.858464px;}
.ws1a6{word-spacing:16.871017px;}
.ws65{word-spacing:16.877293px;}
.ws77{word-spacing:16.889846px;}
.wsd{word-spacing:16.896123px;}
.wsc9{word-spacing:16.908675px;}
.ws272{word-spacing:16.912860px;}
.ws256{word-spacing:16.927505px;}
.wsd3{word-spacing:16.946334px;}
.wsc0{word-spacing:16.952610px;}
.wsa7{word-spacing:16.958887px;}
.ws15{word-spacing:16.965163px;}
.wsa5{word-spacing:17.009098px;}
.ws98{word-spacing:17.021651px;}
.ws96{word-spacing:17.040480px;}
.wsb2{word-spacing:17.046757px;}
.ws1b6{word-spacing:17.053033px;}
.wsdd{word-spacing:17.053661px;}
.ws35{word-spacing:17.065586px;}
.wsc8{word-spacing:17.103244px;}
.ws194{word-spacing:17.109521px;}
.ws139{word-spacing:17.121446px;}
.wsd2{word-spacing:17.122074px;}
.ws1a4{word-spacing:17.159732px;}
.ws8e{word-spacing:17.166009px;}
.ws13a{word-spacing:17.191114px;}
.ws18d{word-spacing:17.209944px;}
.ws1dd{word-spacing:17.216220px;}
.wsfe{word-spacing:17.235049px;}
.ws101{word-spacing:17.285261px;}
.ws60{word-spacing:17.322919px;}
.ws152{word-spacing:17.360578px;}
.wsdc{word-spacing:17.361205px;}
.wsdb{word-spacing:17.373131px;}
.ws11e{word-spacing:17.423342px;}
.ws18b{word-spacing:17.448448px;}
.ws19c{word-spacing:17.486106px;}
.wsff{word-spacing:17.492383px;}
.ws18c{word-spacing:17.498659px;}
.ws19a{word-spacing:17.504935px;}
.ws100{word-spacing:17.511212px;}
.ws195{word-spacing:17.561423px;}
.wsfd{word-spacing:17.573976px;}
.ws13e{word-spacing:17.623560px;}
.ws118{word-spacing:17.630464px;}
.ws17f{word-spacing:17.636740px;}
.ws11d{word-spacing:17.661846px;}
.ws13f{word-spacing:17.730886px;}
.ws7c{word-spacing:17.737163px;}
.ws10f{word-spacing:17.887797px;}
.ws19b{word-spacing:17.919179px;}
.ws246{word-spacing:17.950561px;}
.ws23f{word-spacing:17.963114px;}
.ws50{word-spacing:17.981943px;}
.ws1a9{word-spacing:18.032155px;}
.wsd9{word-spacing:18.038431px;}
.ws1b2{word-spacing:18.069186px;}
.ws1c2{word-spacing:18.076090px;}
.ws1ab{word-spacing:18.101195px;}
.ws12b{word-spacing:18.176512px;}
.ws1c1{word-spacing:18.258106px;}
.ws184{word-spacing:18.301622px;}
.ws14e{word-spacing:18.333423px;}
.wsf3{word-spacing:18.345976px;}
.ws267{word-spacing:18.415016px;}
.ws1c5{word-spacing:18.421293px;}
.ws240{word-spacing:18.427569px;}
.ws1b3{word-spacing:18.440122px;}
.ws251{word-spacing:18.452675px;}
.ws7a{word-spacing:18.471504px;}
.ws1aa{word-spacing:18.486567px;}
.ws145{word-spacing:18.521715px;}
.ws53{word-spacing:18.527992px;}
.ws259{word-spacing:18.578203px;}
.ws263{word-spacing:18.584480px;}
.ws52{word-spacing:18.597032px;}
.ws1af{word-spacing:18.671722px;}
.ws51{word-spacing:18.678626px;}
.ws1f{word-spacing:18.703732px;}
.ws146{word-spacing:18.722561px;}
.ws2af{word-spacing:18.745574px;}
.wse{word-spacing:18.810431px;}
.ws10b{word-spacing:18.822984px;}
.ws59{word-spacing:18.860642px;}
.ws58{word-spacing:18.866919px;}
.ws1f9{word-spacing:18.910853px;}
.ws23c{word-spacing:19.067764px;}
.ws19f{word-spacing:19.086593px;}
.ws241{word-spacing:19.092870px;}
.wsf2{word-spacing:19.117975px;}
.wsbb{word-spacing:19.149357px;}
.wsba{word-spacing:19.268609px;}
.ws283{word-spacing:19.297899px;}
.ws24c{word-spacing:19.313172px;}
.wsb7{word-spacing:19.350203px;}
.wsf4{word-spacing:19.426148px;}
.ws255{word-spacing:19.469455px;}
.ws120{word-spacing:19.482008px;}
.ws1ff{word-spacing:19.494561px;}
.ws143{word-spacing:19.500837px;}
.wsb6{word-spacing:19.538495px;}
.ws11f{word-spacing:19.613812px;}
.wsca{word-spacing:19.764447px;}
.ws21{word-spacing:19.776999px;}
.ws23{word-spacing:19.833487px;}
.ws288{word-spacing:19.846040px;}
.ws12a{word-spacing:19.858593px;}
.wsbc{word-spacing:19.877422px;}
.wse8{word-spacing:19.902528px;}
.ws22{word-spacing:19.959016px;}
.wsd6{word-spacing:20.021780px;}
.wse9{word-spacing:20.071991px;}
.ws119{word-spacing:20.078268px;}
.ws158{word-spacing:20.171995px;}
.ws229{word-spacing:20.172414px;}
.ws6d{word-spacing:20.197520px;}
.wsd5{word-spacing:20.279113px;}
.ws1df{word-spacing:20.304219px;}
.ws191{word-spacing:20.385812px;}
.ws160{word-spacing:20.410918px;}
.ws147{word-spacing:20.479958px;}
.ws10d{word-spacing:20.630593px;}
.ws14f{word-spacing:20.705910px;}
.ws81{word-spacing:20.718462px;}
.ws87{word-spacing:20.756121px;}
.ws6b{word-spacing:20.806332px;}
.ws1a1{word-spacing:20.850267px;}
.wsbe{word-spacing:20.894202px;}
.ws44{word-spacing:20.938137px;}
.ws181{word-spacing:20.946087px;}
.ws1f0{word-spacing:20.956966px;}
.ws6a{word-spacing:20.975796px;}
.ws43{word-spacing:21.000901px;}
.ws89{word-spacing:21.044836px;}
.ws69{word-spacing:21.145259px;}
.ws10c{word-spacing:21.289617px;}
.ws141{word-spacing:21.295893px;}
.ws22c{word-spacing:21.302169px;}
.wscf{word-spacing:21.320999px;}
.ws150{word-spacing:21.327275px;}
.ws3b{word-spacing:21.402592px;}
.wsec{word-spacing:21.503015px;}
.ws90{word-spacing:21.534397px;}
.ws1ee{word-spacing:21.641096px;}
.wsef{word-spacing:21.810559px;}
.ws1ef{word-spacing:21.848218px;}
.ws1e{word-spacing:21.854494px;}
.ws1d5{word-spacing:21.860771px;}
.ws1d{word-spacing:21.910982px;}
.ws1d4{word-spacing:21.942364px;}
.ws12d{word-spacing:22.042787px;}
.wsaa{word-spacing:22.074169px;}
.ws1ed{word-spacing:22.212250px;}
.ws1e9{word-spacing:22.256185px;}
.ws1f2{word-spacing:22.262462px;}
.ws202{word-spacing:22.318950px;}
.ws1ea{word-spacing:22.331502px;}
.ws127{word-spacing:22.337779px;}
.ws14{word-spacing:22.369161px;}
.ws207{word-spacing:22.374505px;}
.wsb9{word-spacing:22.488413px;}
.wsb8{word-spacing:22.551177px;}
.ws1eb{word-spacing:22.582559px;}
.ws1db{word-spacing:22.588836px;}
.ws275{word-spacing:22.611215px;}
.ws169{word-spacing:22.689258px;}
.ws61{word-spacing:22.726917px;}
.ws16b{word-spacing:22.890104px;}
.ws1da{word-spacing:22.946592px;}
.ws112{word-spacing:22.996803px;}
.wsb{word-spacing:23.003079px;}
.ws75{word-spacing:23.015632px;}
.ws168{word-spacing:23.084673px;}
.ws85{word-spacing:23.128608px;}
.ws1dc{word-spacing:23.141161px;}
.wscc{word-spacing:23.166266px;}
.wscb{word-spacing:23.285518px;}
.ws1c6{word-spacing:23.291795px;}
.ws140{word-spacing:23.379664px;}
.wsc7{word-spacing:23.486364px;}
.ws121{word-spacing:23.536575px;}
.wsd7{word-spacing:23.580510px;}
.ws1d1{word-spacing:23.605616px;}
.ws1d6{word-spacing:23.655827px;}
.ws13d{word-spacing:23.668380px;}
.ws102{word-spacing:23.687209px;}
.ws265{word-spacing:23.693486px;}
.ws3a{word-spacing:23.762526px;}
.ws253{word-spacing:23.850396px;}
.ws1e2{word-spacing:23.913160px;}
.ws1d7{word-spacing:23.944542px;}
.ws29e{word-spacing:23.971740px;}
.wsc5{word-spacing:24.019859px;}
.ws25d{word-spacing:24.026136px;}
.ws204{word-spacing:24.032412px;}
.ws203{word-spacing:24.038689px;}
.wse3{word-spacing:24.132207px;}
.ws83{word-spacing:24.157941px;}
.ws11c{word-spacing:24.208152px;}
.ws11a{word-spacing:24.264640px;}
.ws82{word-spacing:24.283469px;}
.ws1a0{word-spacing:24.302298px;}
.ws25e{word-spacing:24.346233px;}
.ws11b{word-spacing:24.358786px;}
.wse4{word-spacing:24.565280px;}
.ws1d0{word-spacing:24.603566px;}
.ws1cf{word-spacing:24.672607px;}
.ws88{word-spacing:24.710266px;}
.ws1fb{word-spacing:24.722818px;}
.ws1fc{word-spacing:24.785583px;}
.wse6{word-spacing:24.855251px;}
.ws24f{word-spacing:24.905462px;}
.wsd4{word-spacing:24.992704px;}
.ws1fa{word-spacing:25.005257px;}
.ws161{word-spacing:25.012161px;}
.ws105{word-spacing:25.024087px;}
.ws111{word-spacing:25.042916px;}
.ws250{word-spacing:25.068021px;}
.ws91{word-spacing:25.124509px;}
.wsbf{word-spacing:25.275143px;}
.ws192{word-spacing:25.287696px;}
.ws162{word-spacing:25.335397px;}
.ws164{word-spacing:25.344184px;}
.ws167{word-spacing:25.406948px;}
.ws42{word-spacing:25.438330px;}
.ws129{word-spacing:25.482265px;}
.ws187{word-spacing:25.501722px;}
.ws186{word-spacing:25.770981px;}
.ws144{word-spacing:25.890233px;}
.ws1b1{word-spacing:25.909689px;}
.ws1b0{word-spacing:25.946720px;}
.wsa1{word-spacing:26.059696px;}
.wseb{word-spacing:26.229159px;}
.ws136{word-spacing:26.231670px;}
.ws1c4{word-spacing:26.260541px;}
.ws163{word-spacing:26.392346px;}
.ws130{word-spacing:26.398623px;}
.ws45{word-spacing:26.430632px;}
.ws1d3{word-spacing:26.555533px;}
.ws1a7{word-spacing:26.586915px;}
.wsf0{word-spacing:26.599468px;}
.ws138{word-spacing:26.605117px;}
.ws137{word-spacing:26.618297px;}
.ws131{word-spacing:26.737549px;}
.ws46{word-spacing:26.794665px;}
.wse5{word-spacing:26.888811px;}
.ws115{word-spacing:26.919565px;}
.ws266{word-spacing:27.026265px;}
.wsf7{word-spacing:27.101582px;}
.ws247{word-spacing:27.107858px;}
.ws10e{word-spacing:27.271045px;}
.ws8d{word-spacing:27.327533px;}
.ws7f{word-spacing:27.421679px;}
.ws39{word-spacing:27.484443px;}
.ws68{word-spacing:27.496996px;}
.ws38{word-spacing:27.522102px;}
.ws67{word-spacing:27.528378px;}
.ws5e{word-spacing:27.597419px;}
.ws66{word-spacing:27.653907px;}
.ws149{word-spacing:27.999110px;}
.ws148{word-spacing:28.043045px;}
.ws7e{word-spacing:28.306654px;}
.ws257{word-spacing:28.338664px;}
.ws117{word-spacing:28.877808px;}
.ws1f8{word-spacing:28.928020px;}
.ws1b5{word-spacing:28.946849px;}
.ws116{word-spacing:28.965678px;}
.ws1f7{word-spacing:28.971955px;}
.ws9f{word-spacing:29.034719px;}
.ws14b{word-spacing:29.072377px;}
.ws14d{word-spacing:29.091207px;}
.ws1b4{word-spacing:29.110036px;}
.wsa4{word-spacing:29.122589px;}
.wsf5{word-spacing:29.166524px;}
.ws1e7{word-spacing:29.204182px;}
.ws14c{word-spacing:29.285776px;}
.wsf6{word-spacing:29.311509px;}
.ws1e4{word-spacing:29.743954px;}
.ws1fe{word-spacing:30.158198px;}
.ws17d{word-spacing:30.189162px;}
.ws1fd{word-spacing:30.315109px;}
.ws110{word-spacing:30.559889px;}
.ws261{word-spacing:30.911369px;}
.wsea{word-spacing:30.974133px;}
.ws1e3{word-spacing:31.149872px;}
.wse7{word-spacing:31.193807px;}
.ws245{word-spacing:31.237742px;}
.wsc4{word-spacing:31.244019px;}
.ws22e{word-spacing:31.344441px;}
.ws84{word-spacing:32.022295px;}
.ws1d9{word-spacing:32.053677px;}
.ws9b{word-spacing:32.235693px;}
.ws248{word-spacing:32.311010px;}
.ws23a{word-spacing:32.461644px;}
.ws3c{word-spacing:32.612906px;}
.ws183{word-spacing:32.749941px;}
.ws249{word-spacing:32.781742px;}
.ws24d{word-spacing:33.158955px;}
.wsa9{word-spacing:33.798522px;}
.ws48{word-spacing:33.799149px;}
.ws62{word-spacing:34.024473px;}
.ws63{word-spacing:34.137448px;}
.ws262{word-spacing:34.507757px;}
.ws254{word-spacing:34.878066px;}
.wse1{word-spacing:35.292310px;}
.ws40{word-spacing:35.305490px;}
.wse0{word-spacing:35.380180px;}
.ws41{word-spacing:35.480602px;}
.wse2{word-spacing:35.818901px;}
.ws10a{word-spacing:36.128917px;}
.wsb5{word-spacing:36.468447px;}
.ws1c3{word-spacing:36.553870px;}
.ws9c{word-spacing:36.930455px;}
.ws1e5{word-spacing:37.445122px;}
.ws1d2{word-spacing:37.570650px;}
.ws165{word-spacing:37.752666px;}
.wsde{word-spacing:39.020503px;}
.ws1{word-spacing:39.086073px;}
.ws268{word-spacing:39.943137px;}
.wsa3{word-spacing:40.815559px;}
.wsa2{word-spacing:40.991299px;}
.ws4{word-spacing:41.154686px;}
.ws3{word-spacing:41.311659px;}
.ws166{word-spacing:42.485087px;}
.ws1cb{word-spacing:43.357509px;}
.ws1cc{word-spacing:43.401444px;}
.wsc6{word-spacing:48.956076px;}
.ws1d8{word-spacing:50.644433px;}
.ws2be{word-spacing:71.377923px;}
.ws20a{word-spacing:71.893881px;}
.ws20e{word-spacing:110.807685px;}
.ws210{word-spacing:112.791033px;}
.ws276{word-spacing:114.887358px;}
.ws219{word-spacing:120.393870px;}
.ws21f{word-spacing:231.841331px;}
.ws21a{word-spacing:233.883678px;}
.ws21e{word-spacing:911.477194px;}
.ws20f{word-spacing:1120.463569px;}
.ws21c{word-spacing:1120.473612px;}
.ws211{word-spacing:1120.474449px;}
.ws227{word-spacing:1589.622617px;}
.ws2c1{word-spacing:1904.039280px;}
.ws2c0{word-spacing:2069.157420px;}
._59{margin-left:-2611.321200px;}
._4d{margin-left:-2082.024000px;}
._54{margin-left:-1631.580000px;}
._51{margin-left:-1484.997600px;}
._57{margin-left:-1323.420600px;}
._52{margin-left:-1321.620600px;}
._58{margin-left:-1263.359400px;}
._56{margin-left:-1234.979400px;}
._50{margin-left:-1215.058800px;}
._4e{margin-left:-709.990560px;}
._4c{margin-left:-645.984720px;}
._1e{margin-left:-11.493268px;}
._1d{margin-left:-10.486755px;}
._1f{margin-left:-9.286817px;}
._1b{margin-left:-2.303446px;}
._1{margin-left:-1.274428px;}
._a{width:1.301943px;}
._d{width:6.692633px;}
._b{width:8.769286px;}
._c{width:10.225454px;}
._9{width:11.605101px;}
._2{width:13.319231px;}
._11{width:14.485977px;}
._5{width:16.023700px;}
._4{width:17.950561px;}
._7{width:19.864869px;}
._8{width:20.919308px;}
._12{width:21.980023px;}
._6{width:23.021909px;}
._3{width:24.296022px;}
._17{width:25.363013px;}
._f{width:26.775208px;}
._20{width:27.823370px;}
._10{width:28.896638px;}
._14{width:30.308832px;}
._22{width:31.432311px;}
._13{width:33.384278px;}
._15{width:34.934554px;}
._46{width:35.970163px;}
._19{width:37.387641px;}
._1c{width:39.541446px;}
._47{width:41.160762px;}
._18{width:50.035620px;}
._21{width:51.774189px;}
._4b{width:58.096950px;}
._1a{width:70.869992px;}
._35{width:72.028196px;}
._26{width:76.413321px;}
._42{width:78.438513px;}
._4a{width:79.664507px;}
._27{width:85.413708px;}
._0{width:86.939780px;}
._25{width:91.133618px;}
._3f{width:96.977802px;}
._30{width:110.854130px;}
._2a{width:112.837479px;}
._34{width:117.641032px;}
._31{width:120.733215px;}
._29{width:122.871382px;}
._2e{width:126.963608px;}
._38{width:133.283126px;}
._3e{width:136.386607px;}
._33{width:144.584866px;}
._48{width:156.466966px;}
._43{width:188.309337px;}
._49{width:191.744631px;}
._2c{width:197.146536px;}
._23{width:206.100896px;}
._2b{width:222.708303px;}
._24{width:232.879451px;}
._32{width:233.930542px;}
._37{width:260.128319px;}
._3d{width:269.349217px;}
._28{width:327.001482px;}
._3b{width:335.614404px;}
._3a{width:344.140293px;}
._44{width:345.755425px;}
._3c{width:347.753000px;}
._e{width:412.642885px;}
._36{width:422.918569px;}
._55{width:480.059400px;}
._2d{width:604.996677px;}
._2f{width:638.516944px;}
._41{width:767.232091px;}
._40{width:887.600437px;}
._45{width:951.036633px;}
._39{width:1120.466498px;}
._53{width:1238.280000px;}
._16{width:1242.618666px;}
._4f{width:1480.738800px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,109,72);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:24.465600px;}
.fs9{font-size:27.891000px;}
.fs4{font-size:35.866200px;}
.fs8{font-size:41.837400px;}
.fs0{font-size:41.842800px;}
.fs2{font-size:44.830800px;}
.fs7{font-size:47.821200px;}
.fs3{font-size:53.797800px;}
.fsc{font-size:60.000000px;}
.fs6{font-size:62.764200px;}
.fsb{font-size:72.000000px;}
.fs5{font-size:95.641800px;}
.fs1{font-size:155.418000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:31.294500px;}
.y29{bottom:64.713996px;}
.y22e{bottom:64.715427px;}
.yfa{bottom:64.716206px;}
.y23f{bottom:64.799635px;}
.ya7{bottom:64.800000px;}
.ya5{bottom:64.801080px;}
.y6f{bottom:64.971524px;}
.y12e{bottom:65.230091px;}
.ya6{bottom:71.773200px;}
.y28{bottom:76.704963px;}
.y23e{bottom:77.470681px;}
.yf0{bottom:82.657700px;}
.y1cc{bottom:82.658195px;}
.y181{bottom:82.658923px;}
.y145{bottom:82.659541px;}
.y22d{bottom:83.423866px;}
.yf9{bottom:83.424645px;}
.ya4{bottom:83.424787px;}
.y6e{bottom:83.595231px;}
.y12d{bottom:83.853798px;}
.y23d{bottom:90.226458px;}
.y27{bottom:94.563641px;}
.y180{bottom:94.564246px;}
.yef{bottom:94.648800px;}
.y1cb{bottom:94.649296px;}
.y144{bottom:94.650642px;}
.y22c{bottom:102.132305px;}
.ya3{bottom:102.133226px;}
.y6d{bottom:102.303670px;}
.y12c{bottom:102.562237px;}
.y23c{bottom:102.897504px;}
.y17f{bottom:106.554300px;}
.y1ca{bottom:106.639350px;}
.y143{bottom:106.640696px;}
.y26{bottom:112.506604px;}
.y23b{bottom:115.568550px;}
.y142{bottom:118.546019px;}
.y22b{bottom:120.756012px;}
.yf8{bottom:120.756791px;}
.ya2{bottom:120.841665px;}
.y12b{bottom:121.270676px;}
.y23a{bottom:128.324400px;}
.y25{bottom:130.449567px;}
.y141{bottom:130.536073px;}
.y6c{bottom:134.533087px;}
.yf7{bottom:139.465230px;}
.ya1{bottom:139.465372px;}
.y12a{bottom:139.894383px;}
.y24{bottom:142.440534px;}
.y140{bottom:142.441396px;}
.y6b{bottom:153.241526px;}
.y23{bottom:154.346319px;}
.y13f{bottom:154.431450px;}
.yf6{bottom:158.088937px;}
.ya0{bottom:158.173811px;}
.y22a{bottom:158.259191px;}
.y129{bottom:158.602822px;}
.y22{bottom:166.337287px;}
.y6a{bottom:171.949965px;}
.y1f2{bottom:173.651100px;}
.yf5{bottom:176.797376px;}
.y9f{bottom:176.882250px;}
.y229{bottom:176.967630px;}
.y128{bottom:177.226529px;}
.y1f1{bottom:177.733050px;}
.y269{bottom:180.963149px;}
.y21{bottom:184.280250px;}
.y1f0{bottom:185.641650px;}
.y1ef{bottom:189.723600px;}
.y69{bottom:190.573672px;}
.y268{bottom:193.718926px;}
.yf4{bottom:195.505815px;}
.y228{bottom:195.676069px;}
.y127{bottom:195.934968px;}
.y1ee{bottom:197.546846px;}
.y267{bottom:206.389972px;}
.y68{bottom:209.282111px;}
.y9e{bottom:211.237804px;}
.yf3{bottom:214.129522px;}
.y227{bottom:214.299776px;}
.y126{bottom:214.643407px;}
.y266{bottom:219.145750px;}
.y1ed{bottom:227.821158px;}
.y67{bottom:227.990550px;}
.y9d{bottom:229.946243px;}
.y265{bottom:231.816796px;}
.yf2{bottom:232.837961px;}
.y226{bottom:233.008215px;}
.y125{bottom:233.267115px;}
.y1ec{bottom:240.492204px;}
.y264{bottom:244.487842px;}
.y9c{bottom:248.569950px;}
.y9a{bottom:248.570261px;}
.yf1{bottom:251.546400px;}
.y225{bottom:251.716654px;}
.y9b{bottom:255.543300px;}
.y66{bottom:257.073900px;}
.y124{bottom:262.265744px;}
.y1eb{bottom:266.259000px;}
.y1e9{bottom:266.259372px;}
.y99{bottom:267.278700px;}
.y97{bottom:267.281179px;}
.y263{bottom:270.254638px;}
.y224{bottom:270.340361px;}
.y1ea{bottom:270.936150px;}
.y2c5{bottom:271.499865px;}
.y98{bottom:274.251900px;}
.y123{bottom:280.974183px;}
.y262{bottom:283.010416px;}
.y96{bottom:285.989617px;}
.y2c6{bottom:286.499865px;}
.y223{bottom:289.048800px;}
.y1e8{bottom:292.110900px;}
.y1e6{bottom:292.112459px;}
.y261{bottom:295.681462px;}
.y1e7{bottom:296.703000px;}
.y122{bottom:299.682622px;}
.y2c7{bottom:301.500015px;}
.y65{bottom:304.185904px;}
.y95{bottom:304.613325px;}
.y136{bottom:305.462641px;}
.y260{bottom:308.437239px;}
.y2c8{bottom:316.500015px;}
.y135{bottom:317.453742px;}
.y1e5{bottom:317.879255px;}
.y121{bottom:318.306329px;}
.y64{bottom:322.894343px;}
.y94{bottom:323.321764px;}
.y221{bottom:326.381422px;}
.y134{bottom:329.359064px;}
.y1e4{bottom:330.550301px;}
.y222{bottom:333.354300px;}
.y25f{bottom:334.204035px;}
.y120{bottom:337.014768px;}
.y133{bottom:341.349119px;}
.y63{bottom:341.518050px;}
.y61{bottom:341.518365px;}
.y93{bottom:342.030203px;}
.y1e3{bottom:343.221347px;}
.y220{bottom:345.089861px;}
.y25e{bottom:346.875081px;}
.y62{bottom:348.491250px;}
.y132{bottom:353.339173px;}
.y25d{bottom:359.546127px;}
.y60{bottom:360.226804px;}
.y92{bottom:360.653910px;}
.y21f{bottom:363.798300px;}
.y21d{bottom:363.799234px;}
.y131{bottom:365.244496px;}
.y1e2{bottom:369.072875px;}
.y21e{bottom:370.771500px;}
.y25c{bottom:372.301905px;}
.y11f{bottom:374.346914px;}
.y130{bottom:377.234550px;}
.y5f{bottom:378.935243px;}
.y91{bottom:379.362349px;}
.y1e1{bottom:381.743921px;}
.y21c{bottom:382.422941px;}
.y11e{bottom:393.055353px;}
.y5e{bottom:397.558950px;}
.y5c{bottom:397.560045px;}
.y25b{bottom:398.068701px;}
.y90{bottom:398.070788px;}
.y21b{bottom:401.131380px;}
.y5d{bottom:404.532150px;}
.y1e0{bottom:407.510717px;}
.yee{bottom:407.933700px;}
.y25a{bottom:410.739747px;}
.y11d{bottom:411.763792px;}
.y2c3{bottom:415.499955px;}
.y5b{bottom:416.268484px;}
.y8f{bottom:416.694495px;}
.y21a{bottom:419.839819px;}
.y259{bottom:423.495524px;}
.y20{bottom:427.835669px;}
.y11c{bottom:430.387499px;}
.y2c4{bottom:430.499955px;}
.y1df{bottom:433.277513px;}
.y5a{bottom:434.976923px;}
.y8e{bottom:435.402934px;}
.y258{bottom:436.166570px;}
.y219{bottom:438.463526px;}
.y1f{bottom:446.459377px;}
.y11b{bottom:449.095938px;}
.y59{bottom:453.600630px;}
.y8d{bottom:454.026641px;}
.y218{bottom:457.171965px;}
.y2c0{bottom:457.499910px;}
.y1de{bottom:459.044309px;}
.y257{bottom:461.933367px;}
.y1e{bottom:465.167816px;}
.y11a{bottom:467.804377px;}
.y58{bottom:472.309069px;}
.y2c1{bottom:472.499910px;}
.y2be{bottom:472.499955px;}
.y8c{bottom:472.735080px;}
.y256{bottom:474.689144px;}
.y217{bottom:475.880404px;}
.yed{bottom:476.305973px;}
.yc9{bottom:476.562697px;}
.y1d{bottom:483.876254px;}
.y1dd{bottom:484.895837px;}
.y255{bottom:487.360190px;}
.y2bf{bottom:487.499955px;}
.y2c2{bottom:487.500060px;}
.y57{bottom:491.017508px;}
.y216{bottom:494.504111px;}
.yec{bottom:494.929680px;}
.yc8{bottom:495.271136px;}
.y254{bottom:500.031236px;}
.y1c{bottom:502.499962px;}
.y119{bottom:505.136523px;}
.y56{bottom:509.641215px;}
.y8b{bottom:509.641999px;}
.y1dc{bottom:510.662633px;}
.y215{bottom:513.212550px;}
.yeb{bottom:513.638119px;}
.yc7{bottom:513.979575px;}
.y2b8{bottom:514.499685px;}
.y1b{bottom:521.208401px;}
.y1db{bottom:523.333679px;}
.y118{bottom:523.844962px;}
.y253{bottom:525.798032px;}
.y55{bottom:528.349654px;}
.y8a{bottom:528.350438px;}
.y2b9{bottom:529.499685px;}
.yea{bottom:532.346558px;}
.yc6{bottom:532.603282px;}
.y252{bottom:538.553810px;}
.y117{bottom:542.468669px;}
.y54{bottom:547.058093px;}
.y89{bottom:547.058876px;}
.y1da{bottom:549.100476px;}
.y213{bottom:550.545319px;}
.ye9{bottom:550.970265px;}
.y251{bottom:551.224856px;}
.yc5{bottom:551.311721px;}
.y214{bottom:557.517900px;}
.y1a{bottom:558.540547px;}
.y2ba{bottom:559.499835px;}
.y116{bottom:561.177108px;}
.y1d9{bottom:561.856253px;}
.y250{bottom:563.980633px;}
.y53{bottom:565.681800px;}
.y51{bottom:565.681804px;}
.y88{bottom:565.682584px;}
.y212{bottom:569.253758px;}
.ye8{bottom:569.678704px;}
.y1c9{bottom:570.869100px;}
.y52{bottom:572.655000px;}
.y19{bottom:577.248986px;}
.y115{bottom:579.885547px;}
.y50{bottom:584.390243px;}
.y87{bottom:584.391023px;}
.y1d8{bottom:587.623049px;}
.y211{bottom:587.877465px;}
.ye7{bottom:588.387143px;}
.yc4{bottom:588.643867px;}
.y2bb{bottom:589.499985px;}
.y24f{bottom:589.747430px;}
.y18{bottom:595.957425px;}
.y114{bottom:598.509254px;}
.y24e{bottom:602.418475px;}
.y4f{bottom:603.013950px;}
.y4d{bottom:603.014261px;}
.y86{bottom:603.014730px;}
.y2bc{bottom:604.499985px;}
.y210{bottom:606.585904px;}
.ye6{bottom:607.010850px;}
.yc3{bottom:607.352306px;}
.y4e{bottom:609.987300px;}
.y1d7{bottom:613.389846px;}
.y17{bottom:614.581132px;}
.y24d{bottom:615.089521px;}
.y113{bottom:617.217693px;}
.y2bd{bottom:619.499985px;}
.y2b7{bottom:619.500000px;}
.y1a5{bottom:621.721659px;}
.y1c8{bottom:621.722408px;}
.y4c{bottom:621.722700px;}
.y4a{bottom:621.722861px;}
.y85{bottom:621.723169px;}
.y20f{bottom:625.294343px;}
.ye5{bottom:625.719450px;}
.yc2{bottom:626.060745px;}
.y1d6{bottom:626.060892px;}
.y4b{bottom:628.695900px;}
.y16{bottom:633.289571px;}
.y112{bottom:635.926132px;}
.y49{bottom:640.431300px;}
.y84{bottom:640.431608px;}
.y1c7{bottom:640.601879px;}
.y1a4{bottom:640.770594px;}
.y24c{bottom:640.941049px;}
.y20e{bottom:643.918050px;}
.y20c{bottom:643.919625px;}
.yc1{bottom:644.684452px;}
.y20d{bottom:650.891100px;}
.y1d5{bottom:651.827688px;}
.y15{bottom:651.998010px;}
.y24b{bottom:653.612095px;}
.y111{bottom:654.549840px;}
.y83{bottom:659.055315px;}
.y1c4{bottom:659.394908px;}
.y1c6{bottom:659.395050px;}
.y1a3{bottom:659.734797px;}
.y2b6{bottom:661.499955px;}
.y2b5{bottom:661.500000px;}
.ye4{bottom:662.626804px;}
.y20b{bottom:662.628064px;}
.y17e{bottom:663.051750px;}
.yc0{bottom:663.392891px;}
.y1d4{bottom:664.583465px;}
.y24a{bottom:666.283141px;}
.y1c5{bottom:666.368400px;}
.y14{bottom:670.621717px;}
.y110{bottom:673.258278px;}
.y13e{bottom:677.253450px;}
.y47{bottom:677.763600px;}
.y82{bottom:677.763754px;}
.y1c3{bottom:678.274379px;}
.y1a0{bottom:678.695844px;}
.y1a2{bottom:678.699000px;}
.y249{bottom:679.038919px;}
.ye3{bottom:681.335243px;}
.y20a{bottom:681.336502px;}
.ybf{bottom:682.101330px;}
.y48{bottom:684.736800px;}
.y1a1{bottom:685.672200px;}
.y13{bottom:689.330156px;}
.y1d3{bottom:690.350262px;}
.y248{bottom:691.709965px;}
.y10f{bottom:691.966717px;}
.y28b{bottom:694.003705px;}
.y2ad{bottom:694.004853px;}
.y2b3{bottom:695.999955px;}
.y81{bottom:696.472193px;}
.y46{bottom:696.472200px;}
.y44{bottom:696.472354px;}
.y1c0{bottom:697.066637px;}
.y1c2{bottom:697.067550px;}
.ye1{bottom:697.407750px;}
.y19f{bottom:697.660047px;}
.ye2{bottom:699.958950px;}
.ye0{bottom:699.964021px;}
.ybe{bottom:700.725037px;}
.y45{bottom:703.445550px;}
.y1c1{bottom:704.040750px;}
.y247{bottom:704.381011px;}
.y28a{bottom:706.674751px;}
.y2ac{bottom:706.675899px;}
.y12{bottom:708.038595px;}
.y10e{bottom:710.590425px;}
.y2b4{bottom:710.999955px;}
.y80{bottom:715.095900px;}
.y43{bottom:715.096061px;}
.y168{bottom:715.693271px;}
.y17d{bottom:715.693851px;}
.y1bf{bottom:715.946108px;}
.y1d2{bottom:716.117058px;}
.y19e{bottom:716.624250px;}
.y209{bottom:718.668649px;}
.ydf{bottom:718.672460px;}
.y289{bottom:719.345797px;}
.y2ab{bottom:719.346945px;}
.ybd{bottom:719.433476px;}
.y1d1{bottom:728.788104px;}
.y246{bottom:730.232538px;}
.y288{bottom:732.101574px;}
.y2aa{bottom:732.102722px;}
.y42{bottom:733.804500px;}
.y40{bottom:733.804654px;}
.y167{bottom:734.401710px;}
.y17c{bottom:734.402290px;}
.y1be{bottom:734.739279px;}
.y19d{bottom:735.588453px;}
.y208{bottom:737.377088px;}
.yde{bottom:737.380899px;}
.ybc{bottom:738.141915px;}
.y13a{bottom:738.736100px;}
.y41{bottom:740.777700px;}
.y245{bottom:742.903584px;}
.y287{bottom:744.772620px;}
.y2a9{bottom:744.773768px;}
.y11{bottom:745.370741px;}
.y10d{bottom:748.007302px;}
.y2b2{bottom:751.500000px;}
.y3f{bottom:752.513093px;}
.y7e{bottom:752.513719px;}
.y166{bottom:753.025417px;}
.y17b{bottom:753.025997px;}
.y1bb{bottom:753.618224px;}
.y1bd{bottom:753.618750px;}
.y1ce{bottom:754.554900px;}
.y19c{bottom:754.637388px;}
.y244{bottom:755.574630px;}
.y207{bottom:756.000795px;}
.ydd{bottom:756.004606px;}
.ybb{bottom:756.765622px;}
.y286{bottom:757.443666px;}
.y2a8{bottom:757.444814px;}
.y139{bottom:758.891254px;}
.y13d{bottom:758.975986px;}
.y1d0{bottom:759.232050px;}
.y7f{bottom:759.486450px;}
.y1bc{bottom:760.591950px;}
.y10{bottom:764.079180px;}
.y10c{bottom:766.631010px;}
.y1cf{bottom:767.310678px;}
.y243{bottom:768.330408px;}
.y285{bottom:770.199444px;}
.y2a7{bottom:770.200592px;}
.y3e{bottom:771.136800px;}
.y3c{bottom:771.137115px;}
.y7d{bottom:771.137426px;}
.y165{bottom:771.733856px;}
.y17a{bottom:771.734436px;}
.y1ba{bottom:772.411394px;}
.y19b{bottom:773.601591px;}
.y206{bottom:774.709234px;}
.ydc{bottom:774.713045px;}
.yba{bottom:775.474061px;}
.y138{bottom:777.514961px;}
.y3d{bottom:778.110000px;}
.y13c{bottom:779.129570px;}
.y242{bottom:781.001454px;}
.yf{bottom:782.702887px;}
.y284{bottom:782.870490px;}
.y2a6{bottom:782.871638px;}
.y10b{bottom:785.339449px;}
.y3b{bottom:789.845554px;}
.y7c{bottom:789.845865px;}
.y164{bottom:790.442295px;}
.y179{bottom:790.442875px;}
.y1b9{bottom:791.290865px;}
.y2ae{bottom:791.999865px;}
.y19a{bottom:792.565794px;}
.y205{bottom:793.417673px;}
.y1cd{bottom:793.417950px;}
.ydb{bottom:793.421484px;}
.yb9{bottom:794.182500px;}
.y283{bottom:795.626267px;}
.y2a5{bottom:795.627415px;}
.y137{bottom:796.223400px;}
.y13b{bottom:797.838009px;}
.ye{bottom:801.411326px;}
.y10a{bottom:804.047888px;}
.y241{bottom:806.768250px;}
.y282{bottom:808.297313px;}
.y2a4{bottom:808.298461px;}
.y3a{bottom:808.553993px;}
.y7b{bottom:808.554304px;}
.y163{bottom:809.066002px;}
.y178{bottom:809.066582px;}
.y2af{bottom:809.999865px;}
.y1b8{bottom:810.084036px;}
.y199{bottom:811.529997px;}
.y204{bottom:812.041380px;}
.yda{bottom:812.045191px;}
.yb8{bottom:812.806050px;}
.y281{bottom:820.968359px;}
.y2a3{bottom:820.969507px;}
.y39{bottom:827.177700px;}
.y7a{bottom:827.178011px;}
.y37{bottom:827.178172px;}
.y162{bottom:827.774441px;}
.y177{bottom:827.775021px;}
.y2b0{bottom:828.000045px;}
.y1b7{bottom:828.877207px;}
.y196{bottom:830.492403px;}
.y198{bottom:830.494200px;}
.y203{bottom:830.749819px;}
.yd9{bottom:830.753630px;}
.y240{bottom:832.960350px;}
.y280{bottom:833.724137px;}
.y2a2{bottom:833.725285px;}
.y38{bottom:834.150900px;}
.y197{bottom:837.467400px;}
.yd{bottom:838.743472px;}
.y109{bottom:841.380034px;}
.yb7{bottom:841.974600px;}
.y1f3{bottom:844.951650px;}
.y79{bottom:845.886450px;}
.y36{bottom:845.886611px;}
.y77{bottom:845.889977px;}
.y2b1{bottom:846.000045px;}
.y27f{bottom:846.395183px;}
.y2a1{bottom:846.396331px;}
.y161{bottom:846.482880px;}
.y176{bottom:846.483460px;}
.y1b6{bottom:847.756678px;}
.y202{bottom:849.458258px;}
.yd8{bottom:849.462069px;}
.y195{bottom:849.541338px;}
.y78{bottom:852.859650px;}
.y152{bottom:853.117064px;}
.yc{bottom:857.451911px;}
.y27e{bottom:859.066228px;}
.y2a0{bottom:859.067377px;}
.y108{bottom:860.003741px;}
.y35{bottom:864.595050px;}
.y33{bottom:864.595519px;}
.y76{bottom:864.598416px;}
.y160{bottom:865.106587px;}
.y151{bottom:865.107118px;}
.y1b5{bottom:866.549849px;}
.y201{bottom:868.081965px;}
.yd7{bottom:868.085776px;}
.y194{bottom:868.505541px;}
.yb6{bottom:871.143150px;}
.y34{bottom:871.568250px;}
.y27d{bottom:871.822006px;}
.y29f{bottom:871.823154px;}
.yb{bottom:876.160350px;}
.y150{bottom:877.012441px;}
.y107{bottom:878.712180px;}
.y32{bottom:883.219226px;}
.y15f{bottom:883.815026px;}
.y27c{bottom:884.493052px;}
.y29e{bottom:884.494203px;}
.y175{bottom:885.260752px;}
.y1b4{bottom:885.429320px;}
.y200{bottom:886.790404px;}
.yd6{bottom:886.794215px;}
.y239{bottom:887.131105px;}
.y193{bottom:887.469744px;}
.y14f{bottom:889.002495px;}
.y29d{bottom:897.246737px;}
.y27b{bottom:897.248830px;}
.y106{bottom:897.420619px;}
.y14e{bottom:900.907818px;}
.y31{bottom:901.927665px;}
.y75{bottom:901.930562px;}
.y15e{bottom:902.523465px;}
.y238{bottom:903.628200px;}
.y174{bottom:903.969191px;}
.y1ff{bottom:905.498843px;}
.yd5{bottom:905.502654px;}
.ya{bottom:906.009300px;}
.y192{bottom:906.433947px;}
.y29c{bottom:909.917783px;}
.y27a{bottom:909.919875px;}
.y14d{bottom:912.898919px;}
.y105{bottom:916.044326px;}
.y30{bottom:920.636104px;}
.y74{bottom:920.639001px;}
.y15d{bottom:921.147172px;}
.y29b{bottom:922.588829px;}
.y279{bottom:922.590921px;}
.y237{bottom:922.595342px;}
.y173{bottom:922.677630px;}
.y1b3{bottom:922.761466px;}
.y1fe{bottom:924.122550px;}
.y1fc{bottom:924.123022px;}
.yd4{bottom:924.126361px;}
.y14c{bottom:924.890019px;}
.y18f{bottom:925.397259px;}
.y191{bottom:925.398150px;}
.yb5{bottom:927.184043px;}
.y1fd{bottom:931.095750px;}
.y190{bottom:932.371350px;}
.y104{bottom:934.752765px;}
.y29a{bottom:935.344607px;}
.y278{bottom:935.346699px;}
.y14b{bottom:936.795342px;}
.y2f{bottom:939.259811px;}
.y73{bottom:939.262708px;}
.y15c{bottom:939.855611px;}
.y172{bottom:941.301337px;}
.y1b2{bottom:941.640937px;}
.y1fb{bottom:942.831461px;}
.yd3{bottom:942.834800px;}
.y18e{bottom:944.361462px;}
.yb4{bottom:945.807750px;}
.y299{bottom:948.015653px;}
.y277{bottom:948.017745px;}
.y14a{bottom:948.785396px;}
.y6{bottom:949.379400px;}
.y103{bottom:953.461204px;}
.y2e{bottom:957.968250px;}
.y2c{bottom:957.968404px;}
.y72{bottom:957.971147px;}
.y15b{bottom:958.564050px;}
.y236{bottom:959.927488px;}
.y171{bottom:960.009776px;}
.y1b1{bottom:960.434108px;}
.y298{bottom:960.686699px;}
.y276{bottom:960.688791px;}
.y149{bottom:960.690719px;}
.y1fa{bottom:961.539900px;}
.y1f8{bottom:961.540215px;}
.yd2{bottom:961.543239px;}
.y18d{bottom:963.410397px;}
.y2d{bottom:964.941450px;}
.y9{bottom:968.427800px;}
.y1f9{bottom:968.513100px;}
.y102{bottom:972.084911px;}
.y148{bottom:972.680773px;}
.y297{bottom:973.442476px;}
.y275{bottom:973.444568px;}
.y5{bottom:975.911544px;}
.y2b{bottom:976.676843px;}
.y71{bottom:976.679586px;}
.y15a{bottom:977.187757px;}
.y235{bottom:978.635927px;}
.y170{bottom:978.718215px;}
.y1b0{bottom:979.313579px;}
.y1f7{bottom:980.163922px;}
.yb2{bottom:980.164391px;}
.yd1{bottom:980.166947px;}
.y8{bottom:981.864175px;}
.y18a{bottom:982.373694px;}
.y18c{bottom:982.374600px;}
.y147{bottom:984.586096px;}
.y296{bottom:986.113522px;}
.y274{bottom:986.115614px;}
.yb3{bottom:987.136800px;}
.y18b{bottom:989.347800px;}
.y101{bottom:990.793350px;}
.y4{bottom:992.324100px;}
.y7{bottom:995.300550px;}
.y70{bottom:995.303293px;}
.y159{bottom:995.896196px;}
.y146{bottom:996.576150px;}
.y16f{bottom:997.341922px;}
.y234{bottom:997.344366px;}
.y1af{bottom:998.106750px;}
.y1ad{bottom:998.107087px;}
.y295{bottom:998.784568px;}
.y273{bottom:998.786660px;}
.y1f6{bottom:998.872361px;}
.yb1{bottom:998.872830px;}
.yd0{bottom:998.875385px;}
.y189{bottom:1001.337897px;}
.y1ae{bottom:1005.079950px;}
.y100{bottom:1009.502100px;}
.y294{bottom:1011.540346px;}
.y272{bottom:1011.542438px;}
.y233{bottom:1015.968073px;}
.y16e{bottom:1016.050361px;}
.y1ac{bottom:1016.900258px;}
.y1f5{bottom:1017.580800px;}
.yb0{bottom:1017.581269px;}
.ycf{bottom:1017.583824px;}
.y188{bottom:1020.302100px;}
.y293{bottom:1024.211391px;}
.y271{bottom:1024.213484px;}
.y1f4{bottom:1024.554000px;}
.y158{bottom:1030.251750px;}
.y156{bottom:1030.251792px;}
.y3{bottom:1034.164496px;}
.y16d{bottom:1034.758800px;}
.y1ab{bottom:1035.779729px;}
.yaf{bottom:1036.204976px;}
.yff{bottom:1036.207168px;}
.yce{bottom:1036.207532px;}
.y292{bottom:1036.967169px;}
.y270{bottom:1036.969261px;}
.y157{bottom:1037.224950px;}
.y185{bottom:1039.265708px;}
.y187{bottom:1039.265850px;}
.y186{bottom:1046.239050px;}
.y291{bottom:1049.638215px;}
.y26f{bottom:1049.640307px;}
.y155{bottom:1050.406945px;}
.y232{bottom:1053.384951px;}
.y1aa{bottom:1054.572900px;}
.yae{bottom:1054.913415px;}
.yfe{bottom:1054.915607px;}
.ycd{bottom:1054.915971px;}
.yaa{bottom:1057.294511px;}
.y184{bottom:1058.314643px;}
.y290{bottom:1062.309261px;}
.y26e{bottom:1062.311353px;}
.y154{bottom:1070.646831px;}
.y2{bottom:1071.495900px;}
.y231{bottom:1072.008658px;}
.y1a8{bottom:1073.451298px;}
.yad{bottom:1073.621854px;}
.yfd{bottom:1073.624046px;}
.ycc{bottom:1073.624409px;}
.y16b{bottom:1073.624950px;}
.y28f{bottom:1075.065038px;}
.y26d{bottom:1075.067131px;}
.ya9{bottom:1076.002950px;}
.y183{bottom:1076.938350px;}
.y1a9{bottom:1080.424950px;}
.y16c{bottom:1080.595050px;}
.y28e{bottom:1087.736084px;}
.y26c{bottom:1087.738177px;}
.y230{bottom:1090.717097px;}
.y153{bottom:1090.800415px;}
.y1a7{bottom:1092.244468px;}
.yac{bottom:1092.245561px;}
.yfc{bottom:1092.247753px;}
.ycb{bottom:1092.248117px;}
.y16a{bottom:1092.248658px;}
.y12f{bottom:1095.306900px;}
.y28d{bottom:1100.407130px;}
.y26b{bottom:1100.409222px;}
.ya8{bottom:1105.851750px;}
.y182{bottom:1106.106750px;}
.y22f{bottom:1109.425536px;}
.y1a6{bottom:1110.952907px;}
.yab{bottom:1110.954000px;}
.yfb{bottom:1110.956192px;}
.yca{bottom:1110.956556px;}
.y169{bottom:1110.957097px;}
.y28c{bottom:1113.162908px;}
.y26a{bottom:1113.165000px;}
.y1{bottom:1122.349350px;}
.h12{height:16.151321px;}
.h13{height:18.716184px;}
.h11{height:21.336615px;}
.h6{height:27.437643px;}
.ha{height:31.519217px;}
.hc{height:31.712749px;}
.h14{height:31.716842px;}
.h2{height:32.009742px;}
.h4{height:34.295562px;}
.hb{height:36.583218px;}
.h5{height:40.778732px;}
.he{height:41.155317px;}
.hd{height:42.930713px;}
.h9{height:47.575264px;}
.h8{height:48.014613px;}
.h19{height:58.886719px;}
.h18{height:60.468750px;}
.h7{height:63.984364px;}
.h16{height:70.664062px;}
.h17{height:72.562500px;}
.h3{height:103.974642px;}
.h1b{height:118.886719px;}
.h1a{height:118.887319px;}
.hf{height:890.958000px;}
.h10{height:891.000000px;}
.h15{height:1173.000000px;}
.h0{height:1174.479000px;}
.h1{height:1174.500000px;}
.w4{width:889.500000px;}
.w0{width:890.958000px;}
.w1{width:891.000000px;}
.w2{width:1174.479000px;}
.w3{width:1174.500000px;}
.x0{left:0.000000px;}
.x4b{left:31.294500px;}
.x5a{left:39.288150px;}
.x25{left:46.006350px;}
.x42{left:64.714950px;}
.x5{left:70.582650px;}
.x2{left:80.702250px;}
.x1{left:90.396750px;}
.x2d{left:96.519600px;}
.x63{left:115.500000px;}
.x4c{left:116.844000px;}
.x60{left:123.000000px;}
.xc{left:125.518050px;}
.x2e{left:127.558950px;}
.x4d{left:135.722850px;}
.xd{left:138.954300px;}
.x4e{left:150.944850px;}
.x4f{left:165.571650px;}
.x6{left:169.228350px;}
.xa{left:172.204650px;}
.x34{left:176.796750px;}
.x50{left:177.817200px;}
.x30{left:179.518050px;}
.x7{left:181.133850px;}
.xb{left:182.409300px;}
.x15{left:188.957400px;}
.x35{left:193.294350px;}
.x51{left:196.355850px;}
.x64{left:200.490300px;}
.x16{left:203.158950px;}
.xe{left:205.029900px;}
.x19{left:206.645550px;}
.x31{left:210.727500px;}
.xf{left:213.958950px;}
.x2a{left:215.404650px;}
.x53{left:218.891250px;}
.x2b{left:230.201550px;}
.x14{left:243.637800px;}
.x17{left:260.475450px;}
.x5f{left:267.495120px;}
.x8{left:270.935400px;}
.x18{left:275.017200px;}
.x5d{left:276.540105px;}
.x9{left:284.796750px;}
.x5e{left:296.754285px;}
.x5b{left:301.011105px;}
.x47{left:304.355119px;}
.x32{left:326.466000px;}
.x61{left:346.500000px;}
.x13{left:348.661350px;}
.x26{left:350.277000px;}
.x33{left:358.355850px;}
.x36{left:360.991950px;}
.x10{left:369.495900px;}
.x37{left:374.853450px;}
.x11{left:377.999850px;}
.x1a{left:380.295900px;}
.x52{left:392.116350px;}
.x1b{left:396.453450px;}
.x54{left:402.576300px;}
.x12{left:416.437650px;}
.x2f{left:428.343150px;}
.x1c{left:451.644507px;}
.x27{left:461.765676px;}
.x5c{left:468.240105px;}
.x59{left:478.173365px;}
.x55{left:488.551361px;}
.x4a{left:491.101495px;}
.x1f{left:510.916350px;}
.x23{left:515.848650px;}
.x20{left:528.604500px;}
.x56{left:531.921423px;}
.x24{left:543.826650px;}
.x4{left:546.293049px;}
.x21{left:548.248650px;}
.x40{left:561.344700px;}
.x3e{left:564.831300px;}
.x43{left:568.147644px;}
.x22{left:569.508450px;}
.x3c{left:572.825100px;}
.x3a{left:575.461200px;}
.x41{left:578.352600px;}
.x3f{left:579.373050px;}
.x2c{left:584.985600px;}
.x3d{left:591.448650px;}
.x3b{left:593.744700px;}
.x1d{left:622.147800px;}
.x57{left:624.614732px;}
.x48{left:635.584050px;}
.x1e{left:639.325800px;}
.x3{left:665.773050px;}
.x62{left:673.155165px;}
.x58{left:675.893083px;}
.x39{left:681.505350px;}
.x49{left:702.510150px;}
.x44{left:725.640750px;}
.x28{left:731.848650px;}
.x29{left:737.546250px;}
.x45{left:748.261200px;}
.x38{left:809.404500px;}
.x46{left:1064.777922px;}
@media print{
.v2{vertical-align:-53.333333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.628065pt;}
.v3{vertical-align:53.333867pt;}
.ls60{letter-spacing:-1.383602pt;}
.ls5b{letter-spacing:-1.343991pt;}
.ls5f{letter-spacing:-1.333391pt;}
.ls71{letter-spacing:-1.327812pt;}
.ls5c{letter-spacing:-1.322232pt;}
.ls74{letter-spacing:-1.317211pt;}
.ls75{letter-spacing:-1.311074pt;}
.ls5d{letter-spacing:-1.306053pt;}
.ls58{letter-spacing:-1.299916pt;}
.ls59{letter-spacing:-1.293779pt;}
.ls72{letter-spacing:-1.288758pt;}
.ls5e{letter-spacing:-1.282621pt;}
.ls73{letter-spacing:-1.278923pt;}
.ls5a{letter-spacing:-1.199494pt;}
.ls19{letter-spacing:-1.060018pt;}
.ls76{letter-spacing:-1.011907pt;}
.ls15{letter-spacing:-1.004785pt;}
.lsc{letter-spacing:-0.987490pt;}
.lsf{letter-spacing:-0.965174pt;}
.lsd{letter-spacing:-0.959595pt;}
.ls10{letter-spacing:-0.954574pt;}
.lse{letter-spacing:-0.948437pt;}
.ls1b{letter-spacing:-0.944967pt;}
.ls12{letter-spacing:-0.943416pt;}
.ls14{letter-spacing:-0.937279pt;}
.ls11{letter-spacing:-0.931142pt;}
.ls13{letter-spacing:-0.926121pt;}
.ls16{letter-spacing:-0.919984pt;}
.lsb{letter-spacing:-0.914963pt;}
.ls18{letter-spacing:-0.903804pt;}
.ls55{letter-spacing:-0.898225pt;}
.ls17{letter-spacing:-0.893204pt;}
.ls38{letter-spacing:-0.880930pt;}
.ls3b{letter-spacing:-0.853593pt;}
.ls39{letter-spacing:-0.842993pt;}
.ls41{letter-spacing:-0.825698pt;}
.ls54{letter-spacing:-0.819561pt;}
.ls1a{letter-spacing:-0.810716pt;}
.ls35{letter-spacing:-0.808961pt;}
.ls43{letter-spacing:-0.797803pt;}
.ls51{letter-spacing:-0.786645pt;}
.ls37{letter-spacing:-0.775487pt;}
.ls36{letter-spacing:-0.764328pt;}
.ls3a{letter-spacing:-0.758749pt;}
.ls34{letter-spacing:-0.753170pt;}
.ls3f{letter-spacing:-0.747591pt;}
.ls56{letter-spacing:-0.743776pt;}
.ls52{letter-spacing:-0.742570pt;}
.ls33{letter-spacing:-0.736433pt;}
.ls40{letter-spacing:-0.731412pt;}
.ls3e{letter-spacing:-0.719138pt;}
.ls6f{letter-spacing:-0.714117pt;}
.ls3d{letter-spacing:-0.708538pt;}
.ls5{letter-spacing:-0.704562pt;}
.ls42{letter-spacing:-0.702959pt;}
.ls3c{letter-spacing:-0.681201pt;}
.ls57{letter-spacing:-0.663906pt;}
.ls70{letter-spacing:-0.636011pt;}
.ls6e{letter-spacing:-0.568504pt;}
.ls6{letter-spacing:-0.388200pt;}
.ls7{letter-spacing:-0.317743pt;}
.ls4{letter-spacing:-0.109138pt;}
.ls77{letter-spacing:-0.006137pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003507pt;}
.ls0{letter-spacing:0.004091pt;}
.ls1{letter-spacing:0.004383pt;}
.ls78{letter-spacing:0.022316pt;}
.ls7c{letter-spacing:0.029755pt;}
.ls1d{letter-spacing:0.033474pt;}
.ls6d{letter-spacing:0.071730pt;}
.ls67{letter-spacing:0.148774pt;}
.ls6b{letter-spacing:0.150634pt;}
.ls6c{letter-spacing:0.156213pt;}
.ls3{letter-spacing:0.184108pt;}
.ls1c{letter-spacing:0.195266pt;}
.ls4d{letter-spacing:0.212004pt;}
.ls61{letter-spacing:0.223162pt;}
.ls65{letter-spacing:0.264075pt;}
.ls7b{letter-spacing:0.431446pt;}
.ls4b{letter-spacing:0.469197pt;}
.ls49{letter-spacing:0.496535pt;}
.ls46{letter-spacing:0.502114pt;}
.ls2a{letter-spacing:0.524430pt;}
.ls45{letter-spacing:0.530567pt;}
.ls4c{letter-spacing:0.535588pt;}
.ls44{letter-spacing:0.541167pt;}
.ls47{letter-spacing:0.552325pt;}
.ls7d{letter-spacing:0.561995pt;}
.ls48{letter-spacing:0.574641pt;}
.ls79{letter-spacing:0.576501pt;}
.ls4a{letter-spacing:0.585799pt;}
.ls7a{letter-spacing:0.591378pt;}
.ls23{letter-spacing:0.602536pt;}
.ls2f{letter-spacing:0.658327pt;}
.ls30{letter-spacing:0.725275pt;}
.ls27{letter-spacing:0.731412pt;}
.ls2c{letter-spacing:0.747591pt;}
.ls32{letter-spacing:0.753170pt;}
.ls31{letter-spacing:0.775487pt;}
.ls25{letter-spacing:0.781624pt;}
.ls1f{letter-spacing:0.792224pt;}
.ls2e{letter-spacing:0.797803pt;}
.ls28{letter-spacing:0.803382pt;}
.ls22{letter-spacing:0.808961pt;}
.ls2d{letter-spacing:0.814540pt;}
.ls21{letter-spacing:0.819561pt;}
.ls1e{letter-spacing:0.825698pt;}
.ls20{letter-spacing:0.830719pt;}
.ls2b{letter-spacing:0.836856pt;}
.ls26{letter-spacing:0.842993pt;}
.ls24{letter-spacing:0.864751pt;}
.ls29{letter-spacing:0.942858pt;}
.ls4f{letter-spacing:6.661374pt;}
.ls53{letter-spacing:9.032466pt;}
.ls9{letter-spacing:9.729846pt;}
.ls4e{letter-spacing:11.805249pt;}
.ls50{letter-spacing:20.452761pt;}
.lsa{letter-spacing:63.493801pt;}
.ls63{letter-spacing:107.298701pt;}
.ls66{letter-spacing:107.299817pt;}
.ls62{letter-spacing:227.033454pt;}
.ls68{letter-spacing:476.784758pt;}
.ls64{letter-spacing:831.154221pt;}
.ls69{letter-spacing:1232.690748pt;}
.ls6a{letter-spacing:1232.692607pt;}
.ws2bf{word-spacing:-16.000000pt;}
.ws189{word-spacing:-9.088256pt;}
.wsdf{word-spacing:-0.658327pt;}
.ws16a{word-spacing:-0.524988pt;}
.ws296{word-spacing:-0.468639pt;}
.ws10{word-spacing:-0.055790pt;}
.ws1bc{word-spacing:-0.047820pt;}
.ws214{word-spacing:-0.041285pt;}
.ws185{word-spacing:-0.037194pt;}
.ws1c9{word-spacing:-0.037189pt;}
.wsa{word-spacing:-0.035388pt;}
.ws34{word-spacing:0.000000pt;}
.ws22d{word-spacing:0.512714pt;}
.ws2{word-spacing:0.566412pt;}
.ws244{word-spacing:0.658327pt;}
.ws243{word-spacing:0.680643pt;}
.ws4f{word-spacing:1.004227pt;}
.ws2a7{word-spacing:6.270841pt;}
.ws2a6{word-spacing:6.319193pt;}
.ws175{word-spacing:6.333698pt;}
.ws2ac{word-spacing:6.479125pt;}
.ws270{word-spacing:6.616741pt;}
.ws176{word-spacing:6.631247pt;}
.ws2ba{word-spacing:6.817587pt;}
.ws1be{word-spacing:6.846970pt;}
.ws2c{word-spacing:6.854111pt;}
.ws31{word-spacing:6.895556pt;}
.ws1bf{word-spacing:6.925076pt;}
.ws15a{word-spacing:7.018432pt;}
.ws28d{word-spacing:7.107697pt;}
.ws273{word-spacing:7.178365pt;}
.ws28c{word-spacing:7.222997pt;}
.ws2b3{word-spacing:7.226716pt;}
.ws177{word-spacing:7.237503pt;}
.ws17c{word-spacing:7.546581pt;}
.ws2ab{word-spacing:7.620969pt;}
.ws2a2{word-spacing:7.773462pt;}
.ws287{word-spacing:8.085889pt;}
.ws2f{word-spacing:8.122977pt;}
.ws29a{word-spacing:8.134240pt;}
.ws21d{word-spacing:8.156185pt;}
.ws172{word-spacing:8.208256pt;}
.ws2a{word-spacing:8.231373pt;}
.ws29c{word-spacing:8.242102pt;}
.ws281{word-spacing:8.264418pt;}
.ws29{word-spacing:8.272818pt;}
.ws30{word-spacing:8.301511pt;}
.ws2a8{word-spacing:8.323928pt;}
.ws9{word-spacing:8.444976pt;}
.ws2a4{word-spacing:8.483860pt;}
.ws2a3{word-spacing:8.561967pt;}
.ws32{word-spacing:8.617134pt;}
.ws237{word-spacing:8.653091pt;}
.ws236{word-spacing:8.658670pt;}
.ws2d{word-spacing:8.668143pt;}
.ws17b{word-spacing:8.733057pt;}
.ws2b{word-spacing:8.763786pt;}
.wsf8{word-spacing:8.814883pt;}
.ws2e{word-spacing:8.939132pt;}
.wsfa{word-spacing:9.026887pt;}
.wsf9{word-spacing:9.261206pt;}
.ws26{word-spacing:9.272364pt;}
.ws1e6{word-spacing:9.289102pt;}
.wsaf{word-spacing:9.305839pt;}
.ws27{word-spacing:9.322576pt;}
.ws17a{word-spacing:9.353818pt;}
.wsb0{word-spacing:9.361629pt;}
.wsad{word-spacing:9.372787pt;}
.ws76{word-spacing:9.422999pt;}
.ws206{word-spacing:9.424486pt;}
.wsae{word-spacing:9.439736pt;}
.wsb1{word-spacing:9.450894pt;}
.ws26a{word-spacing:9.462052pt;}
.ws2b1{word-spacing:9.536439pt;}
.ws22f{word-spacing:9.540158pt;}
.ws193{word-spacing:9.551316pt;}
.ws198{word-spacing:9.556896pt;}
.ws199{word-spacing:9.573633pt;}
.ws28{word-spacing:9.579212pt;}
.wsf1{word-spacing:9.663455pt;}
.ws17e{word-spacing:9.666245pt;}
.wsd1{word-spacing:9.690792pt;}
.wsac{word-spacing:9.713109pt;}
.ws297{word-spacing:9.737284pt;}
.ws109{word-spacing:9.755509pt;}
.ws151{word-spacing:9.802373pt;}
.ws106{word-spacing:9.807952pt;}
.ws279{word-spacing:9.822458pt;}
.ws258{word-spacing:9.824689pt;}
.ws2a1{word-spacing:9.826549pt;}
.wsd0{word-spacing:9.830268pt;}
.ws22b{word-spacing:9.835848pt;}
.ws74{word-spacing:9.858164pt;}
.ws28e{word-spacing:9.863743pt;}
.wsda{word-spacing:9.874901pt;}
.ws178{word-spacing:9.878620pt;}
.ws27d{word-spacing:9.882340pt;}
.ws2bd{word-spacing:9.889778pt;}
.ws170{word-spacing:9.893126pt;}
.ws2a5{word-spacing:9.897217pt;}
.ws225{word-spacing:9.900564pt;}
.ws2a0{word-spacing:9.912094pt;}
.ws171{word-spacing:9.923252pt;}
.ws292{word-spacing:9.930691pt;}
.ws217{word-spacing:9.952635pt;}
.ws15e{word-spacing:9.960074pt;}
.ws21b{word-spacing:9.967513pt;}
.ws271{word-spacing:9.979043pt;}
.ws212{word-spacing:9.993548pt;}
.ws2b5{word-spacing:9.993920pt;}
.ws2b0{word-spacing:10.001359pt;}
.ws224{word-spacing:10.008426pt;}
.ws92{word-spacing:10.019956pt;}
.ws28b{word-spacing:10.023675pt;}
.ws222{word-spacing:10.027023pt;}
.ws28f{word-spacing:10.038553pt;}
.ws20c{word-spacing:10.041900pt;}
.ws280{word-spacing:10.049339pt;}
.ws27c{word-spacing:10.053058pt;}
.ws29f{word-spacing:10.064588pt;}
.ws260{word-spacing:10.070167pt;}
.ws27a{word-spacing:10.075374pt;}
.ws1c0{word-spacing:10.079094pt;}
.ws12f{word-spacing:10.081325pt;}
.ws274{word-spacing:10.105501pt;}
.ws16e{word-spacing:10.112568pt;}
.ws29b{word-spacing:10.120379pt;}
.ws20b{word-spacing:10.123726pt;}
.ws299{word-spacing:10.124098pt;}
.ws226{word-spacing:10.131165pt;}
.ws29d{word-spacing:10.146414pt;}
.ws220{word-spacing:10.149762pt;}
.ws277{word-spacing:10.157200pt;}
.ws223{word-spacing:10.168358pt;}
.ws231{word-spacing:10.170590pt;}
.ws27e{word-spacing:10.175797pt;}
.ws16f{word-spacing:10.176169pt;}
.ws93{word-spacing:10.181748pt;}
.ws27f{word-spacing:10.186955pt;}
.ws216{word-spacing:10.209271pt;}
.ws1de{word-spacing:10.220801pt;}
.ws284{word-spacing:10.231959pt;}
.ws0{word-spacing:10.239026pt;}
.ws218{word-spacing:10.257623pt;}
.ws215{word-spacing:10.265434pt;}
.ws278{word-spacing:10.276592pt;}
.ws213{word-spacing:10.279939pt;}
.ws2b8{word-spacing:10.306347pt;}
.ws27b{word-spacing:10.309694pt;}
.ws221{word-spacing:10.332010pt;}
.ws20{word-spacing:10.360277pt;}
.ws1f4{word-spacing:10.371435pt;}
.ws20d{word-spacing:10.376642pt;}
.ws228{word-spacing:10.387801pt;}
.ws1b{word-spacing:10.404910pt;}
.ws8f{word-spacing:10.410489pt;}
.ws19e{word-spacing:10.416068pt;}
.wsed{word-spacing:10.438384pt;}
.ws25{word-spacing:10.449542pt;}
.ws4a{word-spacing:10.455121pt;}
.ws230{word-spacing:10.460700pt;}
.ws19{word-spacing:10.466279pt;}
.ws1a{word-spacing:10.483016pt;}
.ws114{word-spacing:10.510911pt;}
.wsee{word-spacing:10.616913pt;}
.ws2b4{word-spacing:10.618773pt;}
.ws291{word-spacing:10.626212pt;}
.ws55{word-spacing:10.644808pt;}
.ws290{word-spacing:10.663405pt;}
.ws113{word-spacing:10.672704pt;}
.ws49{word-spacing:10.678283pt;}
.ws54{word-spacing:10.689441pt;}
.ws188{word-spacing:10.706178pt;}
.ws6e{word-spacing:10.722915pt;}
.ws15f{word-spacing:10.728494pt;}
.ws18f{word-spacing:10.767547pt;}
.ws6f{word-spacing:10.784284pt;}
.ws252{word-spacing:10.806600pt;}
.ws6{word-spacing:10.806813pt;}
.ws3d{word-spacing:10.815527pt;}
.ws205{word-spacing:10.822966pt;}
.ws23b{word-spacing:10.834496pt;}
.ws3f{word-spacing:10.846212pt;}
.ws28a{word-spacing:10.849373pt;}
.ws5{word-spacing:10.858618pt;}
.ws293{word-spacing:10.863879pt;}
.ws95{word-spacing:10.873549pt;}
.ws289{word-spacing:10.920041pt;}
.ws285{word-spacing:10.964673pt;}
.ws3e{word-spacing:10.968393pt;}
.ws23d{word-spacing:10.973972pt;}
.ws56{word-spacing:10.990709pt;}
.wsce{word-spacing:11.013025pt;}
.ws70{word-spacing:11.018604pt;}
.ws57{word-spacing:11.029762pt;}
.ws1e0{word-spacing:11.057657pt;}
.ws142{word-spacing:11.063236pt;}
.wsa8{word-spacing:11.079973pt;}
.ws18e{word-spacing:11.091132pt;}
.ws286{word-spacing:11.109728pt;}
.ws23e{word-spacing:11.119027pt;}
.ws19d{word-spacing:11.152501pt;}
.ws190{word-spacing:11.163659pt;}
.ws1e1{word-spacing:11.174817pt;}
.ws128{word-spacing:11.197133pt;}
.ws24b{word-spacing:11.213312pt;}
.ws197{word-spacing:11.286398pt;}
.ws1e8{word-spacing:11.319872pt;}
.ws24a{word-spacing:11.375105pt;}
.ws24e{word-spacing:11.409695pt;}
.ws103{word-spacing:11.453769pt;}
.ws282{word-spacing:11.459348pt;}
.ws1ca{word-spacing:11.470506pt;}
.ws33{word-spacing:11.485590pt;}
.ws1c7{word-spacing:11.531876pt;}
.ws9e{word-spacing:11.548613pt;}
.ws123{word-spacing:11.626719pt;}
.wsa0{word-spacing:11.682510pt;}
.ws47{word-spacing:11.683068pt;}
.ws132{word-spacing:11.688089pt;}
.ws1c8{word-spacing:11.693668pt;}
.ws173{word-spacing:11.711893pt;}
.ws182{word-spacing:11.726770pt;}
.wsbd{word-spacing:11.727142pt;}
.ws124{word-spacing:11.732721pt;}
.ws174{word-spacing:11.771402pt;}
.ws104{word-spacing:11.771774pt;}
.ws2b9{word-spacing:11.775494pt;}
.ws2b6{word-spacing:11.842442pt;}
.ws5f{word-spacing:11.888934pt;}
.ws12c{word-spacing:11.900092pt;}
.ws37{word-spacing:11.916829pt;}
.ws9d{word-spacing:11.972620pt;}
.ws64{word-spacing:11.978199pt;}
.ws242{word-spacing:12.022831pt;}
.ws180{word-spacing:12.039568pt;}
.ws1f3{word-spacing:12.056305pt;}
.ws4e{word-spacing:12.073043pt;}
.ws2aa{word-spacing:12.084201pt;}
.ws126{word-spacing:12.095359pt;}
.ws36{word-spacing:12.123254pt;}
.ws2ad{word-spacing:12.128833pt;}
.ws1ad{word-spacing:12.146128pt;}
.ws201{word-spacing:12.206940pt;}
.ws5b{word-spacing:12.234835pt;}
.ws5a{word-spacing:12.240414pt;}
.ws15b{word-spacing:12.266077pt;}
.ws6c{word-spacing:12.324099pt;}
.ws1b7{word-spacing:12.391048pt;}
.ws1ae{word-spacing:12.407227pt;}
.ws153{word-spacing:12.441259pt;}
.ws1ba{word-spacing:12.463575pt;}
.ws200{word-spacing:12.480312pt;}
.ws1ac{word-spacing:12.491471pt;}
.ws15c{word-spacing:12.533871pt;}
.ws5d{word-spacing:12.603051pt;}
.ws1a2{word-spacing:12.675579pt;}
.ws1a3{word-spacing:12.681158pt;}
.ws107{word-spacing:12.691499pt;}
.ws13c{word-spacing:12.714632pt;}
.ws25c{word-spacing:12.725790pt;}
.ws2bb{word-spacing:12.761124pt;}
.ws8b{word-spacing:12.764844pt;}
.ws157{word-spacing:12.782357pt;}
.ws5c{word-spacing:12.792739pt;}
.ws2b2{word-spacing:12.802037pt;}
.ws1bb{word-spacing:12.806267pt;}
.ws16c{word-spacing:12.815831pt;}
.ws122{word-spacing:12.831792pt;}
.ws16d{word-spacing:12.839742pt;}
.ws26f{word-spacing:12.854088pt;}
.ws108{word-spacing:12.863652pt;}
.ws134{word-spacing:12.876424pt;}
.ws97{word-spacing:12.882003pt;}
.ws232{word-spacing:12.893161pt;}
.ws1bd{word-spacing:12.901908pt;}
.ws179{word-spacing:12.911472pt;}
.ws208{word-spacing:12.940164pt;}
.ws2bc{word-spacing:12.961970pt;}
.ws7{word-spacing:12.968856pt;}
.ws156{word-spacing:12.992766pt;}
.ws235{word-spacing:12.999163pt;}
.ws209{word-spacing:13.016677pt;}
.wsc3{word-spacing:13.021459pt;}
.ws26c{word-spacing:13.031023pt;}
.wsf{word-spacing:13.049375pt;}
.ws298{word-spacing:13.110744pt;}
.ws15d{word-spacing:13.114091pt;}
.ws79{word-spacing:13.121902pt;}
.wsab{word-spacing:13.127481pt;}
.ws11{word-spacing:13.138639pt;}
.ws8{word-spacing:13.150573pt;}
.ws26e{word-spacing:13.184048pt;}
.ws1f5{word-spacing:13.200009pt;}
.ws1f6{word-spacing:13.205588pt;}
.ws26d{word-spacing:13.207958pt;}
.ws12{word-spacing:13.216746pt;}
.ws1c{word-spacing:13.227904pt;}
.ws1b9{word-spacing:13.244641pt;}
.ws2ae{word-spacing:13.274396pt;}
.ws135{word-spacing:13.317168pt;}
.wsfb{word-spacing:13.328327pt;}
.ws7b{word-spacing:13.345064pt;}
.ws133{word-spacing:13.345622pt;}
.ws1b8{word-spacing:13.384117pt;}
.ws8c{word-spacing:13.400854pt;}
.ws154{word-spacing:13.445486pt;}
.ws24{word-spacing:13.501277pt;}
.ws2a9{word-spacing:13.531032pt;}
.ws12e{word-spacing:13.590541pt;}
.ws2b7{word-spacing:13.668648pt;}
.ws1ec{word-spacing:13.679806pt;}
.ws125{word-spacing:13.707701pt;}
.ws269{word-spacing:13.724438pt;}
.ws234{word-spacing:13.774650pt;}
.ws18a{word-spacing:13.785808pt;}
.ws18{word-spacing:13.791387pt;}
.ws4b{word-spacing:13.808124pt;}
.ws4c{word-spacing:13.852756pt;}
.ws1cd{word-spacing:13.875072pt;}
.wsfc{word-spacing:13.913568pt;}
.ws86{word-spacing:13.930863pt;}
.ws4d{word-spacing:13.942021pt;}
.ws233{word-spacing:13.992232pt;}
.ws1ce{word-spacing:14.042444pt;}
.ws13b{word-spacing:14.075918pt;}
.ws196{word-spacing:14.098234pt;}
.ws25a{word-spacing:14.109392pt;}
.ws295{word-spacing:14.148445pt;}
.ws294{word-spacing:14.178200pt;}
.ws25b{word-spacing:14.187499pt;}
.wscd{word-spacing:14.343712pt;}
.ws7d{word-spacing:14.360449pt;}
.ws25f{word-spacing:14.399502pt;}
.ws8a{word-spacing:14.438556pt;}
.ws159{word-spacing:14.493974pt;}
.ws238{word-spacing:14.533399pt;}
.ws239{word-spacing:14.550136pt;}
.ws72{word-spacing:14.667296pt;}
.ws1a5{word-spacing:14.689612pt;}
.wsa6{word-spacing:14.756561pt;}
.ws26b{word-spacing:14.801193pt;}
.ws99{word-spacing:14.812351pt;}
.wsb3{word-spacing:14.817930pt;}
.ws155{word-spacing:14.823509pt;}
.ws94{word-spacing:14.829088pt;}
.ws80{word-spacing:14.834667pt;}
.ws1a8{word-spacing:14.839688pt;}
.ws22a{word-spacing:14.845825pt;}
.wsc1{word-spacing:14.856984pt;}
.ws73{word-spacing:14.862563pt;}
.wsc2{word-spacing:14.873721pt;}
.wsb4{word-spacing:14.879300pt;}
.ws17{word-spacing:14.890458pt;}
.wsc{word-spacing:14.907195pt;}
.ws1f1{word-spacing:14.912774pt;}
.wsd8{word-spacing:14.918353pt;}
.ws264{word-spacing:14.923932pt;}
.ws71{word-spacing:14.929511pt;}
.ws9a{word-spacing:14.940669pt;}
.ws16{word-spacing:14.951827pt;}
.ws13{word-spacing:14.957406pt;}
.ws14a{word-spacing:14.962985pt;}
.ws78{word-spacing:14.985301pt;}
.ws1a6{word-spacing:14.996460pt;}
.ws65{word-spacing:15.002039pt;}
.ws77{word-spacing:15.013197pt;}
.wsd{word-spacing:15.018776pt;}
.wsc9{word-spacing:15.029934pt;}
.ws272{word-spacing:15.033653pt;}
.ws256{word-spacing:15.046671pt;}
.wsd3{word-spacing:15.063408pt;}
.wsc0{word-spacing:15.068987pt;}
.wsa7{word-spacing:15.074566pt;}
.ws15{word-spacing:15.080145pt;}
.wsa5{word-spacing:15.119198pt;}
.ws98{word-spacing:15.130356pt;}
.ws96{word-spacing:15.147094pt;}
.wsb2{word-spacing:15.152673pt;}
.ws1b6{word-spacing:15.158252pt;}
.wsdd{word-spacing:15.158810pt;}
.ws35{word-spacing:15.169410pt;}
.wsc8{word-spacing:15.202884pt;}
.ws194{word-spacing:15.208463pt;}
.ws139{word-spacing:15.219063pt;}
.wsd2{word-spacing:15.219621pt;}
.ws1a4{word-spacing:15.253095pt;}
.ws8e{word-spacing:15.258674pt;}
.ws13a{word-spacing:15.280991pt;}
.ws18d{word-spacing:15.297728pt;}
.ws1dd{word-spacing:15.303307pt;}
.wsfe{word-spacing:15.320044pt;}
.ws101{word-spacing:15.364676pt;}
.ws60{word-spacing:15.398150pt;}
.ws152{word-spacing:15.431625pt;}
.wsdc{word-spacing:15.432183pt;}
.wsdb{word-spacing:15.442783pt;}
.ws11e{word-spacing:15.487415pt;}
.ws18b{word-spacing:15.509731pt;}
.ws19c{word-spacing:15.543205pt;}
.wsff{word-spacing:15.548784pt;}
.ws18c{word-spacing:15.554364pt;}
.ws19a{word-spacing:15.559943pt;}
.ws100{word-spacing:15.565522pt;}
.ws195{word-spacing:15.610154pt;}
.wsfd{word-spacing:15.621312pt;}
.ws13e{word-spacing:15.665386pt;}
.ws118{word-spacing:15.671523pt;}
.ws17f{word-spacing:15.677102pt;}
.ws11d{word-spacing:15.699419pt;}
.ws13f{word-spacing:15.760788pt;}
.ws7c{word-spacing:15.766367pt;}
.ws10f{word-spacing:15.900264pt;}
.ws19b{word-spacing:15.928159pt;}
.ws246{word-spacing:15.956054pt;}
.ws23f{word-spacing:15.967212pt;}
.ws50{word-spacing:15.983950pt;}
.ws1a9{word-spacing:16.028582pt;}
.wsd9{word-spacing:16.034161pt;}
.ws1b2{word-spacing:16.061498pt;}
.ws1c2{word-spacing:16.067635pt;}
.ws1ab{word-spacing:16.089951pt;}
.ws12b{word-spacing:16.156900pt;}
.ws1c1{word-spacing:16.229427pt;}
.ws184{word-spacing:16.268109pt;}
.ws14e{word-spacing:16.296376pt;}
.wsf3{word-spacing:16.307534pt;}
.ws267{word-spacing:16.368903pt;}
.ws1c5{word-spacing:16.374482pt;}
.ws240{word-spacing:16.380061pt;}
.ws1b3{word-spacing:16.391220pt;}
.ws251{word-spacing:16.402378pt;}
.ws7a{word-spacing:16.419115pt;}
.ws1aa{word-spacing:16.432504pt;}
.ws145{word-spacing:16.463747pt;}
.ws53{word-spacing:16.469326pt;}
.ws259{word-spacing:16.513958pt;}
.ws263{word-spacing:16.519537pt;}
.ws52{word-spacing:16.530696pt;}
.ws1af{word-spacing:16.597086pt;}
.ws51{word-spacing:16.603223pt;}
.ws1f{word-spacing:16.625539pt;}
.ws146{word-spacing:16.642276pt;}
.ws2af{word-spacing:16.662733pt;}
.wse{word-spacing:16.720383pt;}
.ws10b{word-spacing:16.731541pt;}
.ws59{word-spacing:16.765015pt;}
.ws58{word-spacing:16.770594pt;}
.ws1f9{word-spacing:16.809648pt;}
.ws23c{word-spacing:16.949124pt;}
.ws19f{word-spacing:16.965861pt;}
.ws241{word-spacing:16.971440pt;}
.wsf2{word-spacing:16.993756pt;}
.wsbb{word-spacing:17.021651pt;}
.wsba{word-spacing:17.127653pt;}
.ws283{word-spacing:17.153688pt;}
.ws24c{word-spacing:17.167264pt;}
.wsb7{word-spacing:17.200180pt;}
.wsf4{word-spacing:17.267687pt;}
.ws255{word-spacing:17.306182pt;}
.ws120{word-spacing:17.317340pt;}
.ws1ff{word-spacing:17.328498pt;}
.ws143{word-spacing:17.334077pt;}
.wsb6{word-spacing:17.367552pt;}
.ws11f{word-spacing:17.434500pt;}
.wsca{word-spacing:17.568397pt;}
.ws21{word-spacing:17.579555pt;}
.ws23{word-spacing:17.629766pt;}
.ws288{word-spacing:17.640924pt;}
.ws12a{word-spacing:17.652083pt;}
.wsbc{word-spacing:17.668820pt;}
.wse8{word-spacing:17.691136pt;}
.ws22{word-spacing:17.741347pt;}
.wsd6{word-spacing:17.797138pt;}
.wse9{word-spacing:17.841770pt;}
.ws119{word-spacing:17.847349pt;}
.ws158{word-spacing:17.930663pt;}
.ws229{word-spacing:17.931035pt;}
.ws6d{word-spacing:17.953351pt;}
.wsd5{word-spacing:18.025878pt;}
.ws1df{word-spacing:18.048194pt;}
.ws191{word-spacing:18.120722pt;}
.ws160{word-spacing:18.143038pt;}
.ws147{word-spacing:18.204408pt;}
.ws10d{word-spacing:18.338304pt;}
.ws14f{word-spacing:18.405253pt;}
.ws81{word-spacing:18.416411pt;}
.ws87{word-spacing:18.449885pt;}
.ws6b{word-spacing:18.494518pt;}
.ws1a1{word-spacing:18.533571pt;}
.wsbe{word-spacing:18.572624pt;}
.ws44{word-spacing:18.611677pt;}
.ws181{word-spacing:18.618744pt;}
.ws1f0{word-spacing:18.628415pt;}
.ws6a{word-spacing:18.645152pt;}
.ws43{word-spacing:18.667468pt;}
.ws89{word-spacing:18.706521pt;}
.ws69{word-spacing:18.795786pt;}
.ws10c{word-spacing:18.924104pt;}
.ws141{word-spacing:18.929683pt;}
.ws22c{word-spacing:18.935262pt;}
.wscf{word-spacing:18.951999pt;}
.ws150{word-spacing:18.957578pt;}
.ws3b{word-spacing:19.024526pt;}
.wsec{word-spacing:19.113791pt;}
.ws90{word-spacing:19.141686pt;}
.ws1ee{word-spacing:19.236530pt;}
.wsef{word-spacing:19.387164pt;}
.ws1ef{word-spacing:19.420638pt;}
.ws1e{word-spacing:19.426217pt;}
.ws1d5{word-spacing:19.431796pt;}
.ws1d{word-spacing:19.476429pt;}
.ws1d4{word-spacing:19.504324pt;}
.ws12d{word-spacing:19.593588pt;}
.wsaa{word-spacing:19.621484pt;}
.ws1ed{word-spacing:19.744223pt;}
.ws1e9{word-spacing:19.783276pt;}
.ws1f2{word-spacing:19.788855pt;}
.ws202{word-spacing:19.839066pt;}
.ws1ea{word-spacing:19.850224pt;}
.ws127{word-spacing:19.855803pt;}
.ws14{word-spacing:19.883699pt;}
.ws207{word-spacing:19.888449pt;}
.wsb9{word-spacing:19.989700pt;}
.wsb8{word-spacing:20.045491pt;}
.ws1eb{word-spacing:20.073386pt;}
.ws1db{word-spacing:20.078965pt;}
.ws275{word-spacing:20.098858pt;}
.ws169{word-spacing:20.168230pt;}
.ws61{word-spacing:20.201704pt;}
.ws16b{word-spacing:20.346759pt;}
.ws1da{word-spacing:20.396970pt;}
.ws112{word-spacing:20.441603pt;}
.wsb{word-spacing:20.447182pt;}
.ws75{word-spacing:20.458340pt;}
.ws168{word-spacing:20.519709pt;}
.ws85{word-spacing:20.558762pt;}
.ws1dc{word-spacing:20.569920pt;}
.wscc{word-spacing:20.592237pt;}
.wscb{word-spacing:20.698238pt;}
.ws1c6{word-spacing:20.703817pt;}
.ws140{word-spacing:20.781924pt;}
.wsc7{word-spacing:20.876768pt;}
.ws121{word-spacing:20.921400pt;}
.wsd7{word-spacing:20.960453pt;}
.ws1d1{word-spacing:20.982769pt;}
.ws1d6{word-spacing:21.027402pt;}
.ws13d{word-spacing:21.038560pt;}
.ws102{word-spacing:21.055297pt;}
.ws265{word-spacing:21.060876pt;}
.ws3a{word-spacing:21.122245pt;}
.ws253{word-spacing:21.200352pt;}
.ws1e2{word-spacing:21.256142pt;}
.ws1d7{word-spacing:21.284038pt;}
.ws29e{word-spacing:21.308213pt;}
.wsc5{word-spacing:21.350986pt;}
.ws25d{word-spacing:21.356565pt;}
.ws204{word-spacing:21.362144pt;}
.ws203{word-spacing:21.367723pt;}
.wse3{word-spacing:21.450851pt;}
.ws83{word-spacing:21.473725pt;}
.ws11c{word-spacing:21.518357pt;}
.ws11a{word-spacing:21.568569pt;}
.ws82{word-spacing:21.585306pt;}
.ws1a0{word-spacing:21.602043pt;}
.ws25e{word-spacing:21.641096pt;}
.ws11b{word-spacing:21.652254pt;}
.wse4{word-spacing:21.835805pt;}
.ws1d0{word-spacing:21.869837pt;}
.ws1cf{word-spacing:21.931206pt;}
.ws88{word-spacing:21.964680pt;}
.ws1fb{word-spacing:21.975839pt;}
.ws1fc{word-spacing:22.031629pt;}
.wse6{word-spacing:22.093556pt;}
.ws24f{word-spacing:22.138189pt;}
.wsd4{word-spacing:22.215737pt;}
.ws1fa{word-spacing:22.226895pt;}
.ws161{word-spacing:22.233032pt;}
.ws105{word-spacing:22.243632pt;}
.ws111{word-spacing:22.260370pt;}
.ws250{word-spacing:22.282686pt;}
.ws91{word-spacing:22.332897pt;}
.wsbf{word-spacing:22.466794pt;}
.ws192{word-spacing:22.477952pt;}
.ws162{word-spacing:22.520353pt;}
.ws164{word-spacing:22.528164pt;}
.ws167{word-spacing:22.583954pt;}
.ws42{word-spacing:22.611849pt;}
.ws129{word-spacing:22.650902pt;}
.ws187{word-spacing:22.668197pt;}
.ws186{word-spacing:22.907538pt;}
.ws144{word-spacing:23.013540pt;}
.ws1b1{word-spacing:23.030835pt;}
.ws1b0{word-spacing:23.063751pt;}
.wsa1{word-spacing:23.164174pt;}
.wseb{word-spacing:23.314808pt;}
.ws136{word-spacing:23.317040pt;}
.ws1c4{word-spacing:23.342703pt;}
.ws163{word-spacing:23.459863pt;}
.ws130{word-spacing:23.465442pt;}
.ws45{word-spacing:23.493895pt;}
.ws1d3{word-spacing:23.604918pt;}
.ws1a7{word-spacing:23.632813pt;}
.wsf0{word-spacing:23.643972pt;}
.ws138{word-spacing:23.648993pt;}
.ws137{word-spacing:23.660709pt;}
.ws131{word-spacing:23.766710pt;}
.ws46{word-spacing:23.817480pt;}
.wse5{word-spacing:23.901165pt;}
.ws115{word-spacing:23.928503pt;}
.ws266{word-spacing:24.023346pt;}
.wsf7{word-spacing:24.090295pt;}
.ws247{word-spacing:24.095874pt;}
.ws10e{word-spacing:24.240929pt;}
.ws8d{word-spacing:24.291140pt;}
.ws7f{word-spacing:24.374826pt;}
.ws39{word-spacing:24.430616pt;}
.ws68{word-spacing:24.441774pt;}
.ws38{word-spacing:24.464090pt;}
.ws67{word-spacing:24.469669pt;}
.ws5e{word-spacing:24.531039pt;}
.ws66{word-spacing:24.581250pt;}
.ws149{word-spacing:24.888097pt;}
.ws148{word-spacing:24.927151pt;}
.ws7e{word-spacing:25.161470pt;}
.ws257{word-spacing:25.189924pt;}
.ws117{word-spacing:25.669163pt;}
.ws1f8{word-spacing:25.713795pt;}
.ws1b5{word-spacing:25.730532pt;}
.ws116{word-spacing:25.747270pt;}
.ws1f7{word-spacing:25.752849pt;}
.ws9f{word-spacing:25.808639pt;}
.ws14b{word-spacing:25.842113pt;}
.ws14d{word-spacing:25.858850pt;}
.ws1b4{word-spacing:25.875588pt;}
.wsa4{word-spacing:25.886746pt;}
.wsf5{word-spacing:25.925799pt;}
.ws1e7{word-spacing:25.959273pt;}
.ws14c{word-spacing:26.031801pt;}
.wsf6{word-spacing:26.054675pt;}
.ws1e4{word-spacing:26.439071pt;}
.ws1fe{word-spacing:26.807287pt;}
.ws17d{word-spacing:26.834810pt;}
.ws1fd{word-spacing:26.946763pt;}
.ws110{word-spacing:27.164346pt;}
.ws261{word-spacing:27.476772pt;}
.wsea{word-spacing:27.532562pt;}
.ws1e3{word-spacing:27.688776pt;}
.wse7{word-spacing:27.727829pt;}
.ws245{word-spacing:27.766882pt;}
.wsc4{word-spacing:27.772461pt;}
.ws22e{word-spacing:27.861726pt;}
.ws84{word-spacing:28.464262pt;}
.ws1d9{word-spacing:28.492157pt;}
.ws9b{word-spacing:28.653949pt;}
.ws248{word-spacing:28.720898pt;}
.ws23a{word-spacing:28.854795pt;}
.ws3c{word-spacing:28.989250pt;}
.ws183{word-spacing:29.111059pt;}
.ws249{word-spacing:29.139326pt;}
.ws24d{word-spacing:29.474626pt;}
.wsa9{word-spacing:30.043130pt;}
.ws48{word-spacing:30.043688pt;}
.ws62{word-spacing:30.243976pt;}
.ws63{word-spacing:30.344399pt;}
.ws262{word-spacing:30.673562pt;}
.ws254{word-spacing:31.002725pt;}
.wse1{word-spacing:31.370942pt;}
.ws40{word-spacing:31.382658pt;}
.wse0{word-spacing:31.449048pt;}
.ws41{word-spacing:31.538313pt;}
.wse2{word-spacing:31.839023pt;}
.ws10a{word-spacing:32.114593pt;}
.wsb5{word-spacing:32.416397pt;}
.ws1c3{word-spacing:32.492329pt;}
.ws9c{word-spacing:32.827071pt;}
.ws1e5{word-spacing:33.284553pt;}
.ws1d2{word-spacing:33.396133pt;}
.ws165{word-spacing:33.557926pt;}
.wsde{word-spacing:34.684892pt;}
.ws1{word-spacing:34.743176pt;}
.ws268{word-spacing:35.505011pt;}
.wsa3{word-spacing:36.280497pt;}
.wsa2{word-spacing:36.436710pt;}
.ws4{word-spacing:36.581943pt;}
.ws3{word-spacing:36.721474pt;}
.ws166{word-spacing:37.764522pt;}
.ws1cb{word-spacing:38.540008pt;}
.ws1cc{word-spacing:38.579062pt;}
.wsc6{word-spacing:43.516512pt;}
.ws1d8{word-spacing:45.017274pt;}
.ws2be{word-spacing:63.447043pt;}
.ws20a{word-spacing:63.905672pt;}
.ws20e{word-spacing:98.495720pt;}
.ws210{word-spacing:100.258696pt;}
.ws276{word-spacing:102.122096pt;}
.ws219{word-spacing:107.016773pt;}
.ws21f{word-spacing:206.081183pt;}
.ws21a{word-spacing:207.896603pt;}
.ws21e{word-spacing:810.201950pt;}
.ws20f{word-spacing:995.967617pt;}
.ws21c{word-spacing:995.976544pt;}
.ws211{word-spacing:995.977288pt;}
.ws227{word-spacing:1412.997882pt;}
.ws2c1{word-spacing:1692.479360pt;}
.ws2c0{word-spacing:1839.251040pt;}
._59{margin-left:-2321.174400pt;}
._4d{margin-left:-1850.688000pt;}
._54{margin-left:-1450.293333pt;}
._51{margin-left:-1319.997867pt;}
._57{margin-left:-1176.373867pt;}
._52{margin-left:-1174.773867pt;}
._58{margin-left:-1122.986133pt;}
._56{margin-left:-1097.759467pt;}
._50{margin-left:-1080.052267pt;}
._4e{margin-left:-631.102720pt;}
._4c{margin-left:-574.208640pt;}
._1e{margin-left:-10.216238pt;}
._1d{margin-left:-9.321560pt;}
._1f{margin-left:-8.254948pt;}
._1b{margin-left:-2.047508pt;}
._1{margin-left:-1.132825pt;}
._a{width:1.157283pt;}
._d{width:5.949007pt;}
._b{width:7.794921pt;}
._c{width:9.089292pt;}
._9{width:10.315645pt;}
._2{width:11.839316pt;}
._11{width:12.876424pt;}
._5{width:14.243289pt;}
._4{width:15.956054pt;}
._7{width:17.657662pt;}
._8{width:18.594940pt;}
._12{width:19.537798pt;}
._6{width:20.463919pt;}
._3{width:21.596464pt;}
._17{width:22.544901pt;}
._f{width:23.800185pt;}
._20{width:24.731884pt;}
._10{width:25.685900pt;}
._14{width:26.941184pt;}
._22{width:27.939832pt;}
._13{width:29.674914pt;}
._15{width:31.052937pt;}
._46{width:31.973478pt;}
._19{width:33.233458pt;}
._1c{width:35.147952pt;}
._47{width:36.587344pt;}
._18{width:44.476107pt;}
._21{width:46.021501pt;}
._4b{width:51.641733pt;}
._1a{width:62.995548pt;}
._35{width:64.025063pt;}
._26{width:67.922952pt;}
._42{width:69.723123pt;}
._4a{width:70.812895pt;}
._27{width:75.923296pt;}
._0{width:77.279805pt;}
._25{width:81.007661pt;}
._3f{width:86.202491pt;}
._30{width:98.537004pt;}
._2a{width:100.299981pt;}
._34{width:104.569806pt;}
._31{width:107.318413pt;}
._29{width:109.219006pt;}
._2e{width:112.856540pt;}
._38{width:118.473890pt;}
._3e{width:121.232539pt;}
._33{width:128.519881pt;}
._48{width:139.081748pt;}
._43{width:167.386077pt;}
._49{width:170.439672pt;}
._2c{width:175.241366pt;}
._23{width:183.200796pt;}
._2b{width:197.962936pt;}
._24{width:207.003956pt;}
._32{width:207.938260pt;}
._37{width:231.225172pt;}
._3d{width:239.421526pt;}
._28{width:290.667984pt;}
._3b{width:298.323915pt;}
._3a{width:305.902483pt;}
._44{width:307.338156pt;}
._3c{width:309.113778pt;}
._e{width:366.793675pt;}
._36{width:375.927617pt;}
._55{width:426.719467pt;}
._2d{width:537.774824pt;}
._2f{width:567.570617pt;}
._41{width:681.984081pt;}
._40{width:788.978166pt;}
._45{width:845.365896pt;}
._39{width:995.970221pt;}
._53{width:1100.693333pt;}
._16{width:1104.549925pt;}
._4f{width:1316.212267pt;}
.fsa{font-size:21.747200pt;}
.fs9{font-size:24.792000pt;}
.fs4{font-size:31.881067pt;}
.fs8{font-size:37.188800pt;}
.fs0{font-size:37.193600pt;}
.fs2{font-size:39.849600pt;}
.fs7{font-size:42.507733pt;}
.fs3{font-size:47.820267pt;}
.fsc{font-size:53.333333pt;}
.fs6{font-size:55.790400pt;}
.fsb{font-size:64.000000pt;}
.fs5{font-size:85.014933pt;}
.fs1{font-size:138.149333pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:27.817333pt;}
.y29{bottom:57.523552pt;}
.y22e{bottom:57.524824pt;}
.yfa{bottom:57.525516pt;}
.y23f{bottom:57.599675pt;}
.ya7{bottom:57.600000pt;}
.ya5{bottom:57.600960pt;}
.y6f{bottom:57.752466pt;}
.y12e{bottom:57.982303pt;}
.ya6{bottom:63.798400pt;}
.y28{bottom:68.182189pt;}
.y23e{bottom:68.862827pt;}
.yf0{bottom:73.473511pt;}
.y1cc{bottom:73.473951pt;}
.y181{bottom:73.474598pt;}
.y145{bottom:73.475148pt;}
.y22d{bottom:74.154548pt;}
.yf9{bottom:74.155240pt;}
.ya4{bottom:74.155366pt;}
.y6e{bottom:74.306872pt;}
.y12d{bottom:74.536710pt;}
.y23d{bottom:80.201296pt;}
.y27{bottom:84.056569pt;}
.y180{bottom:84.057107pt;}
.yef{bottom:84.132267pt;}
.y1cb{bottom:84.132707pt;}
.y144{bottom:84.133904pt;}
.y22c{bottom:90.784271pt;}
.ya3{bottom:90.785090pt;}
.y6d{bottom:90.936596pt;}
.y12c{bottom:91.166433pt;}
.y23c{bottom:91.464448pt;}
.y17f{bottom:94.714933pt;}
.y1ca{bottom:94.790533pt;}
.y143{bottom:94.791730pt;}
.y26{bottom:100.005870pt;}
.y23b{bottom:102.727600pt;}
.y142{bottom:105.374239pt;}
.y22b{bottom:107.338678pt;}
.yf8{bottom:107.339370pt;}
.ya2{bottom:107.414813pt;}
.y12b{bottom:107.796156pt;}
.y23a{bottom:114.066133pt;}
.y25{bottom:115.955171pt;}
.y141{bottom:116.032065pt;}
.y6c{bottom:119.584966pt;}
.yf7{bottom:123.969093pt;}
.ya1{bottom:123.969220pt;}
.y12a{bottom:124.350563pt;}
.y24{bottom:126.613808pt;}
.y140{bottom:126.614574pt;}
.y6b{bottom:136.214690pt;}
.y23{bottom:137.196728pt;}
.y13f{bottom:137.272400pt;}
.yf6{bottom:140.523500pt;}
.ya0{bottom:140.598943pt;}
.y22a{bottom:140.674836pt;}
.y129{bottom:140.980286pt;}
.y22{bottom:147.855366pt;}
.y6a{bottom:152.844413pt;}
.y1f2{bottom:154.356533pt;}
.yf5{bottom:157.153223pt;}
.y9f{bottom:157.228667pt;}
.y229{bottom:157.304560pt;}
.y128{bottom:157.534693pt;}
.y1f1{bottom:157.984933pt;}
.y269{bottom:160.856132pt;}
.y21{bottom:163.804667pt;}
.y1f0{bottom:165.014800pt;}
.y1ef{bottom:168.643200pt;}
.y69{bottom:169.398820pt;}
.y268{bottom:172.194601pt;}
.yf4{bottom:173.782947pt;}
.y228{bottom:173.934283pt;}
.y127{bottom:174.164416pt;}
.y1ee{bottom:175.597196pt;}
.y267{bottom:183.457753pt;}
.y68{bottom:186.028543pt;}
.y9e{bottom:187.766937pt;}
.yf3{bottom:190.337353pt;}
.y227{bottom:190.488690pt;}
.y126{bottom:190.794140pt;}
.y266{bottom:194.796222pt;}
.y1ed{bottom:202.507696pt;}
.y67{bottom:202.658267pt;}
.y9d{bottom:204.396660pt;}
.y265{bottom:206.059374pt;}
.yf2{bottom:206.967077pt;}
.y226{bottom:207.118413pt;}
.y125{bottom:207.348546pt;}
.y1ec{bottom:213.770848pt;}
.y264{bottom:217.322526pt;}
.y9c{bottom:220.951067pt;}
.y9a{bottom:220.951343pt;}
.yf1{bottom:223.596800pt;}
.y225{bottom:223.748137pt;}
.y9b{bottom:227.149600pt;}
.y66{bottom:228.510133pt;}
.y124{bottom:233.125106pt;}
.y1eb{bottom:236.674667pt;}
.y1e9{bottom:236.674997pt;}
.y99{bottom:237.581067pt;}
.y97{bottom:237.583270pt;}
.y263{bottom:240.226345pt;}
.y224{bottom:240.302543pt;}
.y1ea{bottom:240.832133pt;}
.y2c5{bottom:241.333213pt;}
.y98{bottom:243.779467pt;}
.y123{bottom:249.754829pt;}
.y262{bottom:251.564814pt;}
.y96{bottom:254.212993pt;}
.y2c6{bottom:254.666547pt;}
.y223{bottom:256.932267pt;}
.y1e8{bottom:259.654133pt;}
.y1e6{bottom:259.655519pt;}
.y261{bottom:262.827966pt;}
.y1e7{bottom:263.736000pt;}
.y122{bottom:266.384553pt;}
.y2c7{bottom:268.000013pt;}
.y65{bottom:270.387470pt;}
.y95{bottom:270.767400pt;}
.y136{bottom:271.522348pt;}
.y260{bottom:274.166435pt;}
.y2c8{bottom:281.333347pt;}
.y135{bottom:282.181104pt;}
.y1e5{bottom:282.559338pt;}
.y121{bottom:282.938959pt;}
.y64{bottom:287.017194pt;}
.y94{bottom:287.397123pt;}
.y221{bottom:290.116820pt;}
.y134{bottom:292.763613pt;}
.y1e4{bottom:293.822490pt;}
.y222{bottom:296.314933pt;}
.y25f{bottom:297.070254pt;}
.y120{bottom:299.568683pt;}
.y133{bottom:303.421439pt;}
.y63{bottom:303.571600pt;}
.y61{bottom:303.571880pt;}
.y93{bottom:304.026847pt;}
.y1e3{bottom:305.085642pt;}
.y220{bottom:306.746543pt;}
.y25e{bottom:308.333406pt;}
.y62{bottom:309.770000pt;}
.y132{bottom:314.079265pt;}
.y25d{bottom:319.596557pt;}
.y60{bottom:320.201603pt;}
.y92{bottom:320.581253pt;}
.y21f{bottom:323.376267pt;}
.y21d{bottom:323.377097pt;}
.y131{bottom:324.661774pt;}
.y1e2{bottom:328.064777pt;}
.y21e{bottom:329.574667pt;}
.y25c{bottom:330.935026pt;}
.y11f{bottom:332.752813pt;}
.y130{bottom:335.319600pt;}
.y5f{bottom:336.831327pt;}
.y91{bottom:337.210977pt;}
.y1e1{bottom:339.327929pt;}
.y21c{bottom:339.931503pt;}
.y11e{bottom:349.382536pt;}
.y5e{bottom:353.385733pt;}
.y5c{bottom:353.386706pt;}
.y25b{bottom:353.838845pt;}
.y90{bottom:353.840700pt;}
.y21b{bottom:356.561227pt;}
.y5d{bottom:359.584133pt;}
.y1e0{bottom:362.231748pt;}
.yee{bottom:362.607733pt;}
.y25a{bottom:365.101997pt;}
.y11d{bottom:366.012260pt;}
.y2c3{bottom:369.333293pt;}
.y5b{bottom:370.016430pt;}
.y8f{bottom:370.395107pt;}
.y21a{bottom:373.190950pt;}
.y259{bottom:376.440466pt;}
.y20{bottom:380.298373pt;}
.y11c{bottom:382.566666pt;}
.y2c4{bottom:382.666627pt;}
.y1df{bottom:385.135567pt;}
.y5a{bottom:386.646153pt;}
.y8e{bottom:387.024830pt;}
.y258{bottom:387.703618pt;}
.y219{bottom:389.745356pt;}
.y1f{bottom:396.852779pt;}
.y11b{bottom:399.196389pt;}
.y59{bottom:403.200560pt;}
.y8d{bottom:403.579236pt;}
.y218{bottom:406.375080pt;}
.y2c0{bottom:406.666587pt;}
.y1de{bottom:408.039386pt;}
.y257{bottom:410.607437pt;}
.y1e{bottom:413.482503pt;}
.y11a{bottom:415.826113pt;}
.y58{bottom:419.830283pt;}
.y2c1{bottom:419.999920pt;}
.y2be{bottom:419.999960pt;}
.y8c{bottom:420.208960pt;}
.y256{bottom:421.945906pt;}
.y217{bottom:423.004803pt;}
.yed{bottom:423.383087pt;}
.yc9{bottom:423.611286pt;}
.y1d{bottom:430.112226pt;}
.y1dd{bottom:431.018522pt;}
.y255{bottom:433.209058pt;}
.y2bf{bottom:433.333293pt;}
.y2c2{bottom:433.333387pt;}
.y57{bottom:436.460007pt;}
.y216{bottom:439.559210pt;}
.yec{bottom:439.937493pt;}
.yc8{bottom:440.241010pt;}
.y254{bottom:444.472210pt;}
.y1c{bottom:446.666633pt;}
.y119{bottom:449.010243pt;}
.y56{bottom:453.014413pt;}
.y8b{bottom:453.015110pt;}
.y1dc{bottom:453.922341pt;}
.y215{bottom:456.188933pt;}
.yeb{bottom:456.567217pt;}
.yc7{bottom:456.870733pt;}
.y2b8{bottom:457.333053pt;}
.y1b{bottom:463.296356pt;}
.y1db{bottom:465.185493pt;}
.y118{bottom:465.639966pt;}
.y253{bottom:467.376029pt;}
.y55{bottom:469.644137pt;}
.y8a{bottom:469.644833pt;}
.y2b9{bottom:470.666387pt;}
.yea{bottom:473.196940pt;}
.yc6{bottom:473.425139pt;}
.y252{bottom:478.714498pt;}
.y117{bottom:482.194373pt;}
.y54{bottom:486.273860pt;}
.y89{bottom:486.274557pt;}
.y1da{bottom:488.089312pt;}
.y213{bottom:489.373617pt;}
.ye9{bottom:489.751347pt;}
.y251{bottom:489.977650pt;}
.yc5{bottom:490.054863pt;}
.y214{bottom:495.571467pt;}
.y1a{bottom:496.480486pt;}
.y2ba{bottom:497.333187pt;}
.y116{bottom:498.824096pt;}
.y1d9{bottom:499.427781pt;}
.y250{bottom:501.316119pt;}
.y53{bottom:502.828267pt;}
.y51{bottom:502.828270pt;}
.y88{bottom:502.828963pt;}
.y212{bottom:506.003340pt;}
.ye8{bottom:506.381070pt;}
.y1c9{bottom:507.439200pt;}
.y52{bottom:509.026667pt;}
.y19{bottom:513.110210pt;}
.y115{bottom:515.453820pt;}
.y50{bottom:519.457994pt;}
.y87{bottom:519.458687pt;}
.y1d8{bottom:522.331599pt;}
.y211{bottom:522.557747pt;}
.ye7{bottom:523.010794pt;}
.yc4{bottom:523.238993pt;}
.y2bb{bottom:523.999987pt;}
.y24f{bottom:524.219937pt;}
.y18{bottom:529.739933pt;}
.y114{bottom:532.008226pt;}
.y24e{bottom:535.483089pt;}
.y4f{bottom:536.012400pt;}
.y4d{bottom:536.012677pt;}
.y86{bottom:536.013093pt;}
.y2bc{bottom:537.333320pt;}
.y210{bottom:539.187470pt;}
.ye6{bottom:539.565200pt;}
.yc3{bottom:539.868716pt;}
.y4e{bottom:542.210933pt;}
.y1d7{bottom:545.235418pt;}
.y17{bottom:546.294339pt;}
.y24d{bottom:546.746241pt;}
.y113{bottom:548.637950pt;}
.y2bd{bottom:550.666653pt;}
.y2b7{bottom:550.666667pt;}
.y1a5{bottom:552.641475pt;}
.y1c8{bottom:552.642140pt;}
.y4c{bottom:552.642400pt;}
.y4a{bottom:552.642543pt;}
.y85{bottom:552.642817pt;}
.y20f{bottom:555.817194pt;}
.ye5{bottom:556.195067pt;}
.yc2{bottom:556.498440pt;}
.y1d6{bottom:556.498570pt;}
.y4b{bottom:558.840800pt;}
.y16{bottom:562.924063pt;}
.y112{bottom:565.267673pt;}
.y49{bottom:569.272267pt;}
.y84{bottom:569.272540pt;}
.y1c7{bottom:569.423893pt;}
.y1a4{bottom:569.573861pt;}
.y24c{bottom:569.725377pt;}
.y20e{bottom:572.371600pt;}
.y20c{bottom:572.373000pt;}
.yc1{bottom:573.052846pt;}
.y20d{bottom:578.569867pt;}
.y1d5{bottom:579.402389pt;}
.y15{bottom:579.553786pt;}
.y24b{bottom:580.988529pt;}
.y111{bottom:581.822080pt;}
.y83{bottom:585.826947pt;}
.y1c4{bottom:586.128807pt;}
.y1c6{bottom:586.128933pt;}
.y1a3{bottom:586.430931pt;}
.y2b6{bottom:587.999960pt;}
.y2b5{bottom:588.000000pt;}
.ye4{bottom:589.001603pt;}
.y20b{bottom:589.002723pt;}
.y17e{bottom:589.379333pt;}
.yc0{bottom:589.682570pt;}
.y1d4{bottom:590.740858pt;}
.y24a{bottom:592.251681pt;}
.y1c5{bottom:592.327467pt;}
.y14{bottom:596.108193pt;}
.y110{bottom:598.451803pt;}
.y13e{bottom:602.003067pt;}
.y47{bottom:602.456533pt;}
.y82{bottom:602.456670pt;}
.y1c3{bottom:602.910559pt;}
.y1a0{bottom:603.285195pt;}
.y1a2{bottom:603.288000pt;}
.y249{bottom:603.590150pt;}
.ye3{bottom:605.631327pt;}
.y20a{bottom:605.632447pt;}
.ybf{bottom:606.312293pt;}
.y48{bottom:608.654933pt;}
.y1a1{bottom:609.486400pt;}
.y13{bottom:612.737916pt;}
.y1d3{bottom:613.644677pt;}
.y248{bottom:614.853302pt;}
.y10f{bottom:615.081527pt;}
.y28b{bottom:616.892182pt;}
.y2ad{bottom:616.893203pt;}
.y2b3{bottom:618.666627pt;}
.y81{bottom:619.086394pt;}
.y46{bottom:619.086400pt;}
.y44{bottom:619.086537pt;}
.y1c0{bottom:619.614788pt;}
.y1c2{bottom:619.615600pt;}
.ye1{bottom:619.918000pt;}
.y19f{bottom:620.142264pt;}
.ye2{bottom:622.185733pt;}
.ye0{bottom:622.190241pt;}
.ybe{bottom:622.866700pt;}
.y45{bottom:625.284933pt;}
.y1c1{bottom:625.814000pt;}
.y247{bottom:626.116454pt;}
.y28a{bottom:628.155334pt;}
.y2ac{bottom:628.156355pt;}
.y12{bottom:629.367640pt;}
.y10e{bottom:631.635933pt;}
.y2b4{bottom:631.999960pt;}
.y80{bottom:635.640800pt;}
.y43{bottom:635.640943pt;}
.y168{bottom:636.171796pt;}
.y17d{bottom:636.172312pt;}
.y1bf{bottom:636.396540pt;}
.y1d2{bottom:636.548496pt;}
.y19e{bottom:636.999333pt;}
.y209{bottom:638.816577pt;}
.ydf{bottom:638.819965pt;}
.y289{bottom:639.418486pt;}
.y2ab{bottom:639.419507pt;}
.ybd{bottom:639.496423pt;}
.y1d1{bottom:647.811648pt;}
.y246{bottom:649.095590pt;}
.y288{bottom:650.756955pt;}
.y2aa{bottom:650.757975pt;}
.y42{bottom:652.270667pt;}
.y40{bottom:652.270803pt;}
.y167{bottom:652.801520pt;}
.y17c{bottom:652.802036pt;}
.y1be{bottom:653.101581pt;}
.y19d{bottom:653.856403pt;}
.y208{bottom:655.446300pt;}
.yde{bottom:655.449688pt;}
.ybc{bottom:656.126147pt;}
.y13a{bottom:656.654311pt;}
.y41{bottom:658.469067pt;}
.y245{bottom:660.358742pt;}
.y287{bottom:662.020107pt;}
.y2a9{bottom:662.021127pt;}
.y11{bottom:662.551770pt;}
.y10d{bottom:664.895380pt;}
.y2b2{bottom:668.000000pt;}
.y3f{bottom:668.900527pt;}
.y7e{bottom:668.901083pt;}
.y166{bottom:669.355926pt;}
.y17b{bottom:669.356442pt;}
.y1bb{bottom:669.882865pt;}
.y1bd{bottom:669.883333pt;}
.y1ce{bottom:670.715467pt;}
.y19c{bottom:670.788789pt;}
.y244{bottom:671.621894pt;}
.y207{bottom:672.000706pt;}
.ydd{bottom:672.004094pt;}
.ybb{bottom:672.680553pt;}
.y286{bottom:673.283259pt;}
.y2a8{bottom:673.284279pt;}
.y139{bottom:674.570003pt;}
.y13d{bottom:674.645320pt;}
.y1d0{bottom:674.872933pt;}
.y7f{bottom:675.099067pt;}
.y1bc{bottom:676.081733pt;}
.y10{bottom:679.181493pt;}
.y10c{bottom:681.449786pt;}
.y1cf{bottom:682.053936pt;}
.y243{bottom:682.960363pt;}
.y285{bottom:684.621728pt;}
.y2a7{bottom:684.622748pt;}
.y3e{bottom:685.454933pt;}
.y3c{bottom:685.455213pt;}
.y7d{bottom:685.455490pt;}
.y165{bottom:685.985650pt;}
.y17a{bottom:685.986165pt;}
.y1ba{bottom:686.587906pt;}
.y19b{bottom:687.645859pt;}
.y206{bottom:688.630430pt;}
.ydc{bottom:688.633818pt;}
.yba{bottom:689.310277pt;}
.y138{bottom:691.124410pt;}
.y3d{bottom:691.653333pt;}
.y13c{bottom:692.559618pt;}
.y242{bottom:694.223514pt;}
.yf{bottom:695.735900pt;}
.y284{bottom:695.884880pt;}
.y2a6{bottom:695.885900pt;}
.y10b{bottom:698.079510pt;}
.y3b{bottom:702.084937pt;}
.y7c{bottom:702.085213pt;}
.y164{bottom:702.615373pt;}
.y179{bottom:702.615889pt;}
.y1b9{bottom:703.369658pt;}
.y2ae{bottom:703.999880pt;}
.y19a{bottom:704.502928pt;}
.y205{bottom:705.260153pt;}
.y1cd{bottom:705.260400pt;}
.ydb{bottom:705.263541pt;}
.yb9{bottom:705.940000pt;}
.y283{bottom:707.223349pt;}
.y2a5{bottom:707.224369pt;}
.y137{bottom:707.754133pt;}
.y13b{bottom:709.189341pt;}
.ye{bottom:712.365623pt;}
.y10a{bottom:714.709233pt;}
.y241{bottom:717.127333pt;}
.y282{bottom:718.486501pt;}
.y2a4{bottom:718.487521pt;}
.y3a{bottom:718.714660pt;}
.y7b{bottom:718.714937pt;}
.y163{bottom:719.169779pt;}
.y178{bottom:719.170295pt;}
.y2af{bottom:719.999880pt;}
.y1b8{bottom:720.074699pt;}
.y199{bottom:721.359997pt;}
.y204{bottom:721.814560pt;}
.yda{bottom:721.817948pt;}
.yb8{bottom:722.494267pt;}
.y281{bottom:729.749652pt;}
.y2a3{bottom:729.750673pt;}
.y39{bottom:735.269067pt;}
.y7a{bottom:735.269343pt;}
.y37{bottom:735.269486pt;}
.y162{bottom:735.799503pt;}
.y177{bottom:735.800019pt;}
.y2b0{bottom:736.000040pt;}
.y1b7{bottom:736.779739pt;}
.y196{bottom:738.215469pt;}
.y198{bottom:738.217067pt;}
.y203{bottom:738.444283pt;}
.yd9{bottom:738.447671pt;}
.y240{bottom:740.409200pt;}
.y280{bottom:741.088121pt;}
.y2a2{bottom:741.089142pt;}
.y38{bottom:741.467467pt;}
.y197{bottom:744.415467pt;}
.yd{bottom:745.549753pt;}
.y109{bottom:747.893363pt;}
.yb7{bottom:748.421867pt;}
.y1f3{bottom:751.068133pt;}
.y79{bottom:751.899067pt;}
.y36{bottom:751.899210pt;}
.y77{bottom:751.902202pt;}
.y2b1{bottom:752.000040pt;}
.y27f{bottom:752.351273pt;}
.y2a1{bottom:752.352294pt;}
.y161{bottom:752.429226pt;}
.y176{bottom:752.429742pt;}
.y1b6{bottom:753.561492pt;}
.y202{bottom:755.074007pt;}
.yd8{bottom:755.077395pt;}
.y195{bottom:755.147856pt;}
.y78{bottom:758.097467pt;}
.y152{bottom:758.326279pt;}
.yc{bottom:762.179477pt;}
.y27e{bottom:763.614425pt;}
.y2a0{bottom:763.615446pt;}
.y108{bottom:764.447770pt;}
.y35{bottom:768.528933pt;}
.y33{bottom:768.529350pt;}
.y76{bottom:768.531925pt;}
.y160{bottom:768.983633pt;}
.y151{bottom:768.984105pt;}
.y1b5{bottom:770.266532pt;}
.y201{bottom:771.628413pt;}
.yd7{bottom:771.631801pt;}
.y194{bottom:772.004925pt;}
.yb6{bottom:774.349467pt;}
.y34{bottom:774.727333pt;}
.y27d{bottom:774.952894pt;}
.y29f{bottom:774.953915pt;}
.yb{bottom:778.809200pt;}
.y150{bottom:779.566614pt;}
.y107{bottom:781.077493pt;}
.y32{bottom:785.083756pt;}
.y15f{bottom:785.613356pt;}
.y27c{bottom:786.216046pt;}
.y29e{bottom:786.217069pt;}
.y175{bottom:786.898446pt;}
.y1b4{bottom:787.048284pt;}
.y200{bottom:788.258137pt;}
.yd6{bottom:788.261525pt;}
.y239{bottom:788.560982pt;}
.y193{bottom:788.861995pt;}
.y14f{bottom:790.224440pt;}
.y29d{bottom:797.552655pt;}
.y27b{bottom:797.554515pt;}
.y106{bottom:797.707217pt;}
.y14e{bottom:800.806949pt;}
.y31{bottom:801.713480pt;}
.y75{bottom:801.716055pt;}
.y15e{bottom:802.243080pt;}
.y238{bottom:803.225067pt;}
.y174{bottom:803.528170pt;}
.y1ff{bottom:804.887860pt;}
.yd5{bottom:804.891248pt;}
.ya{bottom:805.341600pt;}
.y192{bottom:805.719064pt;}
.y29c{bottom:808.815807pt;}
.y27a{bottom:808.817667pt;}
.y14d{bottom:811.465705pt;}
.y105{bottom:814.261623pt;}
.y30{bottom:818.343203pt;}
.y74{bottom:818.345779pt;}
.y15d{bottom:818.797486pt;}
.y29b{bottom:820.078959pt;}
.y279{bottom:820.080819pt;}
.y237{bottom:820.084749pt;}
.y173{bottom:820.157893pt;}
.y1b3{bottom:820.232414pt;}
.y1fe{bottom:821.442267pt;}
.y1fc{bottom:821.442686pt;}
.yd4{bottom:821.445655pt;}
.y14c{bottom:822.124461pt;}
.y18f{bottom:822.575342pt;}
.y191{bottom:822.576133pt;}
.yb5{bottom:824.163594pt;}
.y1fd{bottom:827.640667pt;}
.y190{bottom:828.774533pt;}
.y104{bottom:830.891347pt;}
.y29a{bottom:831.417428pt;}
.y278{bottom:831.419288pt;}
.y14b{bottom:832.706970pt;}
.y2f{bottom:834.897610pt;}
.y73{bottom:834.900185pt;}
.y15c{bottom:835.427210pt;}
.y172{bottom:836.712300pt;}
.y1b2{bottom:837.014167pt;}
.y1fb{bottom:838.072410pt;}
.yd3{bottom:838.075378pt;}
.y18e{bottom:839.432411pt;}
.yb4{bottom:840.718000pt;}
.y299{bottom:842.680580pt;}
.y277{bottom:842.682440pt;}
.y14a{bottom:843.364796pt;}
.y6{bottom:843.892800pt;}
.y103{bottom:847.521070pt;}
.y2e{bottom:851.527333pt;}
.y2c{bottom:851.527470pt;}
.y72{bottom:851.529909pt;}
.y15b{bottom:852.056933pt;}
.y236{bottom:853.268878pt;}
.y171{bottom:853.342023pt;}
.y1b1{bottom:853.719207pt;}
.y298{bottom:853.943732pt;}
.y276{bottom:853.945592pt;}
.y149{bottom:853.947305pt;}
.y1fa{bottom:854.702133pt;}
.y1f8{bottom:854.702413pt;}
.yd2{bottom:854.705102pt;}
.y18d{bottom:856.364797pt;}
.y2d{bottom:857.725733pt;}
.y9{bottom:860.824711pt;}
.y1f9{bottom:860.900533pt;}
.y102{bottom:864.075477pt;}
.y148{bottom:864.605132pt;}
.y297{bottom:865.282201pt;}
.y275{bottom:865.284061pt;}
.y5{bottom:867.476928pt;}
.y2b{bottom:868.157194pt;}
.y71{bottom:868.159632pt;}
.y15a{bottom:868.611340pt;}
.y235{bottom:869.898602pt;}
.y170{bottom:869.971747pt;}
.y1b0{bottom:870.500959pt;}
.y1f7{bottom:871.256820pt;}
.yb2{bottom:871.257236pt;}
.yd1{bottom:871.259508pt;}
.y8{bottom:872.768155pt;}
.y18a{bottom:873.221061pt;}
.y18c{bottom:873.221867pt;}
.y147{bottom:875.187641pt;}
.y296{bottom:876.545353pt;}
.y274{bottom:876.547213pt;}
.yb3{bottom:877.454933pt;}
.y18b{bottom:879.420267pt;}
.y101{bottom:880.705200pt;}
.y4{bottom:882.065867pt;}
.y7{bottom:884.711600pt;}
.y70{bottom:884.714039pt;}
.y159{bottom:885.241063pt;}
.y146{bottom:885.845467pt;}
.y16f{bottom:886.526153pt;}
.y234{bottom:886.528325pt;}
.y1af{bottom:887.206000pt;}
.y1ad{bottom:887.206300pt;}
.y295{bottom:887.808505pt;}
.y273{bottom:887.810365pt;}
.y1f6{bottom:887.886543pt;}
.yb1{bottom:887.886960pt;}
.yd0{bottom:887.889232pt;}
.y189{bottom:890.078131pt;}
.y1ae{bottom:893.404400pt;}
.y100{bottom:897.335200pt;}
.y294{bottom:899.146974pt;}
.y272{bottom:899.148834pt;}
.y233{bottom:903.082732pt;}
.y16e{bottom:903.155877pt;}
.y1ac{bottom:903.911340pt;}
.y1f5{bottom:904.516267pt;}
.yb0{bottom:904.516683pt;}
.ycf{bottom:904.518955pt;}
.y188{bottom:906.935200pt;}
.y293{bottom:910.410126pt;}
.y271{bottom:910.411985pt;}
.y1f4{bottom:910.714667pt;}
.y158{bottom:915.779333pt;}
.y156{bottom:915.779370pt;}
.y3{bottom:919.257330pt;}
.y16d{bottom:919.785600pt;}
.y1ab{bottom:920.693093pt;}
.yaf{bottom:921.071090pt;}
.yff{bottom:921.073038pt;}
.yce{bottom:921.073361pt;}
.y292{bottom:921.748595pt;}
.y270{bottom:921.750454pt;}
.y157{bottom:921.977733pt;}
.y185{bottom:923.791740pt;}
.y187{bottom:923.791867pt;}
.y186{bottom:929.990267pt;}
.y291{bottom:933.011747pt;}
.y26f{bottom:933.013606pt;}
.y155{bottom:933.695063pt;}
.y232{bottom:936.342179pt;}
.y1aa{bottom:937.398133pt;}
.yae{bottom:937.700813pt;}
.yfe{bottom:937.702762pt;}
.ycd{bottom:937.703085pt;}
.yaa{bottom:939.817343pt;}
.y184{bottom:940.724127pt;}
.y290{bottom:944.274899pt;}
.y26e{bottom:944.276758pt;}
.y154{bottom:951.686072pt;}
.y2{bottom:952.440800pt;}
.y231{bottom:952.896585pt;}
.y1a8{bottom:954.178931pt;}
.yad{bottom:954.330537pt;}
.yfd{bottom:954.332485pt;}
.ycc{bottom:954.332808pt;}
.y16b{bottom:954.333289pt;}
.y28f{bottom:955.613368pt;}
.y26d{bottom:955.615227pt;}
.ya9{bottom:956.447067pt;}
.y183{bottom:957.278533pt;}
.y1a9{bottom:960.377733pt;}
.y16c{bottom:960.528933pt;}
.y28e{bottom:966.876519pt;}
.y26c{bottom:966.878379pt;}
.y230{bottom:969.526309pt;}
.y153{bottom:969.600369pt;}
.y1a7{bottom:970.883972pt;}
.yac{bottom:970.884943pt;}
.yfc{bottom:970.886892pt;}
.ycb{bottom:970.887215pt;}
.y16a{bottom:970.887696pt;}
.y12f{bottom:973.606133pt;}
.y28d{bottom:978.139671pt;}
.y26b{bottom:978.141531pt;}
.ya8{bottom:982.979333pt;}
.y182{bottom:983.206000pt;}
.y22f{bottom:986.156032pt;}
.y1a6{bottom:987.513695pt;}
.yab{bottom:987.514667pt;}
.yfb{bottom:987.516615pt;}
.yca{bottom:987.516938pt;}
.y169{bottom:987.517419pt;}
.y28c{bottom:989.478140pt;}
.y26a{bottom:989.480000pt;}
.y1{bottom:997.643867pt;}
.h12{height:14.356730pt;}
.h13{height:16.636608pt;}
.h11{height:18.965880pt;}
.h6{height:24.389016pt;}
.ha{height:28.017081pt;}
.hc{height:28.189110pt;}
.h14{height:28.192749pt;}
.h2{height:28.453104pt;}
.h4{height:30.484944pt;}
.hb{height:32.518416pt;}
.h5{height:36.247762pt;}
.he{height:36.582504pt;}
.hd{height:38.160634pt;}
.h9{height:42.289123pt;}
.h8{height:42.679656pt;}
.h19{height:52.343750pt;}
.h18{height:53.750000pt;}
.h7{height:56.874990pt;}
.h16{height:62.812500pt;}
.h17{height:64.500000pt;}
.h3{height:92.421904pt;}
.h1b{height:105.677083pt;}
.h1a{height:105.677617pt;}
.hf{height:791.962667pt;}
.h10{height:792.000000pt;}
.h15{height:1042.666667pt;}
.h0{height:1043.981333pt;}
.h1{height:1044.000000pt;}
.w4{width:790.666667pt;}
.w0{width:791.962667pt;}
.w1{width:792.000000pt;}
.w2{width:1043.981333pt;}
.w3{width:1044.000000pt;}
.x0{left:0.000000pt;}
.x4b{left:27.817333pt;}
.x5a{left:34.922800pt;}
.x25{left:40.894533pt;}
.x42{left:57.524400pt;}
.x5{left:62.740133pt;}
.x2{left:71.735333pt;}
.x1{left:80.352667pt;}
.x2d{left:85.795200pt;}
.x63{left:102.666667pt;}
.x4c{left:103.861333pt;}
.x60{left:109.333333pt;}
.xc{left:111.571600pt;}
.x2e{left:113.385733pt;}
.x4d{left:120.642533pt;}
.xd{left:123.514933pt;}
.x4e{left:134.173200pt;}
.x4f{left:147.174800pt;}
.x6{left:150.425200pt;}
.xa{left:153.070800pt;}
.x34{left:157.152667pt;}
.x50{left:158.059733pt;}
.x30{left:159.571600pt;}
.x7{left:161.007867pt;}
.xb{left:162.141600pt;}
.x15{left:167.962133pt;}
.x35{left:171.817200pt;}
.x51{left:174.538533pt;}
.x64{left:178.213600pt;}
.x16{left:180.585733pt;}
.xe{left:182.248800pt;}
.x19{left:183.684933pt;}
.x31{left:187.313333pt;}
.xf{left:190.185733pt;}
.x2a{left:191.470800pt;}
.x53{left:194.570000pt;}
.x2b{left:204.623600pt;}
.x14{left:216.566933pt;}
.x17{left:231.533733pt;}
.x5f{left:237.773440pt;}
.x8{left:240.831467pt;}
.x18{left:244.459733pt;}
.x5d{left:245.813427pt;}
.x9{left:253.152667pt;}
.x5e{left:263.781587pt;}
.x5b{left:267.565427pt;}
.x47{left:270.537884pt;}
.x32{left:290.192000pt;}
.x61{left:308.000000pt;}
.x13{left:309.921200pt;}
.x26{left:311.357333pt;}
.x33{left:318.538533pt;}
.x36{left:320.881733pt;}
.x10{left:328.440800pt;}
.x37{left:333.203067pt;}
.x11{left:335.999867pt;}
.x1a{left:338.040800pt;}
.x52{left:348.547867pt;}
.x1b{left:352.403067pt;}
.x54{left:357.845600pt;}
.x12{left:370.166800pt;}
.x2f{left:380.749467pt;}
.x1c{left:401.461784pt;}
.x27{left:410.458378pt;}
.x5c{left:416.213427pt;}
.x59{left:425.042991pt;}
.x55{left:434.267876pt;}
.x4a{left:436.534662pt;}
.x1f{left:454.147867pt;}
.x23{left:458.532133pt;}
.x20{left:469.870667pt;}
.x56{left:472.819042pt;}
.x24{left:483.401467pt;}
.x4{left:485.593821pt;}
.x21{left:487.332133pt;}
.x40{left:498.973067pt;}
.x3e{left:502.072267pt;}
.x43{left:505.020128pt;}
.x22{left:506.229733pt;}
.x3c{left:509.177867pt;}
.x3a{left:511.521067pt;}
.x41{left:514.091200pt;}
.x3f{left:514.998267pt;}
.x2c{left:519.987200pt;}
.x3d{left:525.732133pt;}
.x3b{left:527.773067pt;}
.x1d{left:553.020267pt;}
.x57{left:555.213095pt;}
.x48{left:564.963600pt;}
.x1e{left:568.289600pt;}
.x3{left:591.798267pt;}
.x62{left:598.360147pt;}
.x58{left:600.793851pt;}
.x39{left:605.782533pt;}
.x49{left:624.453467pt;}
.x44{left:645.014000pt;}
.x28{left:650.532133pt;}
.x29{left:655.596667pt;}
.x45{left:665.121067pt;}
.x38{left:719.470667pt;}
.x46{left:946.469264pt;}
}




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