
    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_5d4c5641d24c32b4b24baff7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.007000;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_90c6d30992dbe5d961015d18.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.007000;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_edef4739dae7ddef2614ae3c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.055000;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_8082b418dedfcc2113960e99.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.043000;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_ba0b812d47ee15bf2c274693.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.689000;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_9819cd2727409ed6b4c04549.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.718000;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_d3ce10611e83ba7d4daae8d6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.743000;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_1c0e5b76e2947f17b431b4d7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.007000;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_59e61be66b7770d7a6a7e5f5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.007000;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_88f502592d486cc718b7ecc3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.007000;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_edef4739dae7ddef2614ae3c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.055000;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_1f73700ec04ec03a654f448f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.049000;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_8082b418dedfcc2113960e99.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.043000;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_64f7ebc7cfaeb66ec75e8e7f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.689000;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_9819cd2727409ed6b4c04549.woff2')format("woff");}.fff{font-family:fff;line-height:0.718000;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_d3ce10611e83ba7d4daae8d6.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.743000;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_a13c0a5c6dd767e97eabcc15.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.552000;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_efff74a3a38abf72f00ef9b9.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.388000;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_a1f25b8e452ca9c2aedf67e8.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.773000;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_45bcdcbbce05b9ae66f56164.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.813000;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_72605ef42c7c87dadeae7851.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.719000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_a5f652b5ee2d8acbc473f81a.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.724000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_aa29bea1d4a205acdb7eda3a.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.639000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_34cf601939628f8c6301e8a5.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.731000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281276,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);}
.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);}
.v8{vertical-align:-18.368400px;}
.v3{vertical-align:-14.965610px;}
.v1{vertical-align:-12.244379px;}
.v2{vertical-align:-3.064136px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.361108px;}
.v6{vertical-align:14.967000px;}
.v7{vertical-align:18.367806px;}
.v5{vertical-align:41.838616px;}
.ls22{letter-spacing:-8.371148px;}
.ls99{letter-spacing:-2.327061px;}
.ls8d{letter-spacing:-1.986640px;}
.ls19{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.004184px;}
.lsb9{letter-spacing:0.012553px;}
.ls23{letter-spacing:0.023910px;}
.ls39{letter-spacing:0.033474px;}
.ls24{letter-spacing:0.092046px;}
.ls4d{letter-spacing:0.096238px;}
.ls25{letter-spacing:0.184091px;}
.ls2a{letter-spacing:0.205030px;}
.ls69{letter-spacing:0.223538px;}
.ls58{letter-spacing:0.335341px;}
.ls47{letter-spacing:0.351480px;}
.ls42{letter-spacing:0.396312px;}
.ls94{letter-spacing:0.439349px;}
.lsb4{letter-spacing:0.447121px;}
.ls50{letter-spacing:0.452202px;}
.lsaa{letter-spacing:0.457283px;}
.ls63{letter-spacing:0.467445px;}
.ls5d{letter-spacing:0.472526px;}
.ls80{letter-spacing:0.482687px;}
.ls9f{letter-spacing:0.487768px;}
.ls40{letter-spacing:0.497930px;}
.ls70{letter-spacing:0.528416px;}
.ls60{letter-spacing:0.543658px;}
.lsa0{letter-spacing:0.553820px;}
.lsa7{letter-spacing:0.558901px;}
.ls20{letter-spacing:0.569063px;}
.ls52{letter-spacing:0.573246px;}
.ls9a{letter-spacing:0.579225px;}
.lsa1{letter-spacing:0.584306px;}
.ls4a{letter-spacing:0.585799px;}
.ls93{letter-spacing:0.589387px;}
.ls1f{letter-spacing:0.589983px;}
.ls5f{letter-spacing:0.594468px;}
.ls71{letter-spacing:0.599549px;}
.ls51{letter-spacing:0.604629px;}
.ls7d{letter-spacing:0.609710px;}
.ls15{letter-spacing:0.609725px;}
.ls18{letter-spacing:0.613312px;}
.ls8e{letter-spacing:0.614791px;}
.ls6c{letter-spacing:0.619872px;}
.ls3e{letter-spacing:0.624953px;}
.ls64{letter-spacing:0.630034px;}
.ls16{letter-spacing:0.631245px;}
.ls7a{letter-spacing:0.635115px;}
.ls3f{letter-spacing:0.640196px;}
.ls74{letter-spacing:0.645277px;}
.ls73{letter-spacing:0.650358px;}
.ls75{letter-spacing:0.655439px;}
.ls67{letter-spacing:0.660520px;}
.ls96{letter-spacing:0.665601px;}
.ls8a{letter-spacing:0.670681px;}
.ls1a{letter-spacing:0.672473px;}
.ls7c{letter-spacing:0.675762px;}
.ls78{letter-spacing:0.680843px;}
.ls6d{letter-spacing:0.691005px;}
.ls5b{letter-spacing:0.696086px;}
.ls6a{letter-spacing:0.701167px;}
.ls95{letter-spacing:0.706248px;}
.ls90{letter-spacing:0.711329px;}
.ls55{letter-spacing:0.716410px;}
.ls1b{letter-spacing:0.720891px;}
.ls57{letter-spacing:0.721491px;}
.ls7{letter-spacing:0.726270px;}
.ls79{letter-spacing:0.726572px;}
.lsa{letter-spacing:0.728065px;}
.ls4{letter-spacing:0.731650px;}
.lsc{letter-spacing:0.731652px;}
.ls35{letter-spacing:0.736733px;}
.ls34{letter-spacing:0.741814px;}
.ls44{letter-spacing:0.746895px;}
.ls8{letter-spacing:0.747789px;}
.ls9{letter-spacing:0.748986px;}
.lsf{letter-spacing:0.751976px;}
.ls5{letter-spacing:0.753169px;}
.ls41{letter-spacing:0.757057px;}
.lsb{letter-spacing:0.757355px;}
.ls37{letter-spacing:0.762138px;}
.ls36{letter-spacing:0.767219px;}
.ls10{letter-spacing:0.772300px;}
.ls12{letter-spacing:0.774710px;}
.ls1{letter-spacing:0.777381px;}
.ls53{letter-spacing:0.782462px;}
.ls77{letter-spacing:0.787543px;}
.ls0{letter-spacing:0.792624px;}
.ls54{letter-spacing:0.797704px;}
.ls3{letter-spacing:0.802785px;}
.ls2{letter-spacing:0.807866px;}
.ls5a{letter-spacing:0.812947px;}
.lse{letter-spacing:0.818028px;}
.ls61{letter-spacing:0.823109px;}
.lsd{letter-spacing:0.828190px;}
.ls7f{letter-spacing:0.833271px;}
.ls11{letter-spacing:0.838352px;}
.ls97{letter-spacing:0.843433px;}
.ls8f{letter-spacing:0.848514px;}
.ls32{letter-spacing:0.854791px;}
.ls3b{letter-spacing:0.866746px;}
.ls8b{letter-spacing:0.868837px;}
.ls13{letter-spacing:0.875135px;}
.ls2d{letter-spacing:0.908589px;}
.ls2e{letter-spacing:0.926522px;}
.ls33{letter-spacing:0.932499px;}
.ls31{letter-spacing:0.938477px;}
.ls2f{letter-spacing:0.944454px;}
.ls14{letter-spacing:0.950454px;}
.ls21{letter-spacing:0.964801px;}
.ls5e{letter-spacing:0.970456px;}
.ls2c{letter-spacing:0.986297px;}
.ls30{letter-spacing:0.998253px;}
.ls3d{letter-spacing:1.010208px;}
.ls89{letter-spacing:1.036508px;}
.ls3c{letter-spacing:1.069983px;}
.lsb2{letter-spacing:1.330601px;}
.ls87{letter-spacing:1.359891px;}
.ls9d{letter-spacing:1.364075px;}
.lsae{letter-spacing:1.372444px;}
.lsa5{letter-spacing:1.376628px;}
.ls45{letter-spacing:1.380812px;}
.ls6e{letter-spacing:1.384997px;}
.ls9b{letter-spacing:1.389181px;}
.ls6f{letter-spacing:1.393365px;}
.ls85{letter-spacing:1.397550px;}
.ls91{letter-spacing:1.401734px;}
.ls9c{letter-spacing:1.405918px;}
.ls84{letter-spacing:1.410102px;}
.lsac{letter-spacing:1.414287px;}
.lsa4{letter-spacing:1.418471px;}
.lsa6{letter-spacing:1.435208px;}
.ls9e{letter-spacing:1.460314px;}
.lsad{letter-spacing:1.477051px;}
.lsaf{letter-spacing:1.497972px;}
.ls6b{letter-spacing:2.966700px;}
.ls5c{letter-spacing:2.967300px;}
.ls49{letter-spacing:3.043500px;}
.lsb7{letter-spacing:5.648778px;}
.lsb8{letter-spacing:6.326631px;}
.ls2b{letter-spacing:7.347596px;}
.ls1e{letter-spacing:8.231063px;}
.ls29{letter-spacing:8.778159px;}
.lsb0{letter-spacing:9.191384px;}
.lsb5{letter-spacing:9.968765px;}
.ls17{letter-spacing:10.067642px;}
.ls88{letter-spacing:10.959544px;}
.lsb3{letter-spacing:11.111972px;}
.ls48{letter-spacing:11.527691px;}
.ls4e{letter-spacing:11.540244px;}
.ls3a{letter-spacing:11.803854px;}
.ls7b{letter-spacing:11.960486px;}
.ls46{letter-spacing:12.205545px;}
.ls76{letter-spacing:12.321231px;}
.ls6{letter-spacing:12.653243px;}
.ls43{letter-spacing:12.661653px;}
.ls8c{letter-spacing:12.732786px;}
.ls65{letter-spacing:13.418710px;}
.lsa8{letter-spacing:14.018258px;}
.ls27{letter-spacing:14.216015px;}
.ls59{letter-spacing:14.282466px;}
.ls56{letter-spacing:14.500946px;}
.ls1c{letter-spacing:14.546925px;}
.ls66{letter-spacing:14.709263px;}
.ls7e{letter-spacing:14.790558px;}
.ls72{letter-spacing:14.856610px;}
.lsab{letter-spacing:14.861691px;}
.lsb1{letter-spacing:14.892177px;}
.ls92{letter-spacing:14.912500px;}
.lsba{letter-spacing:14.978552px;}
.ls68{letter-spacing:15.039523px;}
.ls81{letter-spacing:15.064928px;}
.ls82{letter-spacing:15.720366px;}
.lsa9{letter-spacing:16.548556px;}
.ls98{letter-spacing:16.853412px;}
.lsb6{letter-spacing:17.234481px;}
.lsa2{letter-spacing:17.412313px;}
.ls26{letter-spacing:18.568930px;}
.lsa3{letter-spacing:18.789242px;}
.ls86{letter-spacing:19.195716px;}
.ls83{letter-spacing:19.465005px;}
.ls62{letter-spacing:22.630418px;}
.ls1d{letter-spacing:22.858685px;}
.ls28{letter-spacing:28.504359px;}
.ls4f{letter-spacing:102.761733px;}
.ls4c{letter-spacing:269.752163px;}
.ls4b{letter-spacing:287.778041px;}
.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;}
}
.wse{word-spacing:-22.912483px;}
.wsa5{word-spacing:-22.681227px;}
.ws122{word-spacing:-19.246525px;}
.ws1b5{word-spacing:-18.840051px;}
.ws1b1{word-spacing:-17.463122px;}
.ws277{word-spacing:-17.285290px;}
.ws1ed{word-spacing:-16.599366px;}
.ws110{word-spacing:-15.115737px;}
.ws293{word-spacing:-15.029361px;}
.ws153{word-spacing:-14.963309px;}
.ws21b{word-spacing:-14.942986px;}
.ws1f9{word-spacing:-14.912500px;}
.wsdb{word-spacing:-14.907419px;}
.wsfa{word-spacing:-14.841367px;}
.wsbd{word-spacing:-14.760073px;}
.wsd{word-spacing:-14.600723px;}
.wsbc{word-spacing:-13.469519px;}
.ws133{word-spacing:-12.783595px;}
.wsf2{word-spacing:-12.011295px;}
.ws24d{word-spacing:-11.162781px;}
.ws28b{word-spacing:-10.019574px;}
.ws188{word-spacing:-8.576593px;}
.wsf{word-spacing:-8.284861px;}
.ws231{word-spacing:-0.919647px;}
.ws18a{word-spacing:-0.899323px;}
.ws196{word-spacing:-0.878999px;}
.ws1de{word-spacing:-0.873918px;}
.ws17{word-spacing:-0.868837px;}
.ws181{word-spacing:-0.863756px;}
.ws8f{word-spacing:-0.858675px;}
.ws272{word-spacing:-0.853595px;}
.ws105{word-spacing:-0.848514px;}
.ws9c{word-spacing:-0.843433px;}
.ws18d{word-spacing:-0.838352px;}
.wsd9{word-spacing:-0.807866px;}
.ws1eb{word-spacing:-0.792624px;}
.ws10{word-spacing:-0.790829px;}
.wsa{word-spacing:-0.785448px;}
.ws14{word-spacing:-0.782462px;}
.ws12{word-spacing:-0.769908px;}
.ws8c{word-spacing:-0.767219px;}
.ws10f{word-spacing:-0.701167px;}
.ws201{word-spacing:-0.655439px;}
.ws24{word-spacing:-0.649178px;}
.ws75{word-spacing:-0.627642px;}
.ws1dc{word-spacing:-0.609710px;}
.wsbe{word-spacing:-0.523335px;}
.ws2f{word-spacing:-0.065754px;}
.ws1dd{word-spacing:-0.050809px;}
.ws2c{word-spacing:-0.043831px;}
.ws32{word-spacing:-0.041843px;}
.ws26{word-spacing:-0.035866px;}
.wsf1{word-spacing:-0.033869px;}
.ws28{word-spacing:0.000000px;}
.ws13f{word-spacing:1.935831px;}
.ws1fc{word-spacing:2.276252px;}
.ws1cf{word-spacing:5.987705px;}
.ws168{word-spacing:6.167629px;}
.ws1ce{word-spacing:6.175997px;}
.ws169{word-spacing:6.205287px;}
.ws1c9{word-spacing:6.351737px;}
.ws1d4{word-spacing:6.372658px;}
.ws1d0{word-spacing:6.422870px;}
.ws207{word-spacing:6.686479px;}
.ws1d3{word-spacing:7.188593px;}
.ws20f{word-spacing:7.201146px;}
.ws1cb{word-spacing:7.410360px;}
.ws1d2{word-spacing:7.427097px;}
.ws1ca{word-spacing:7.485677px;}
.ws1be{word-spacing:7.510783px;}
.ws129{word-spacing:7.552625px;}
.ws20c{word-spacing:7.724181px;}
.ws20d{word-spacing:7.757655px;}
.ws1bf{word-spacing:7.774392px;}
.ws214{word-spacing:7.794131px;}
.ws1c0{word-spacing:7.807866px;}
.ws215{word-spacing:7.936397px;}
.ws216{word-spacing:8.139634px;}
.wseb{word-spacing:8.220929px;}
.wsb1{word-spacing:8.297142px;}
.ws117{word-spacing:8.383518px;}
.wsec{word-spacing:8.393680px;}
.ws21c{word-spacing:8.444489px;}
.ws1f4{word-spacing:8.454651px;}
.ws38{word-spacing:8.544300px;}
.ws1c3{word-spacing:8.561350px;}
.ws116{word-spacing:8.566431px;}
.ws104{word-spacing:8.586755px;}
.ws234{word-spacing:8.688373px;}
.ws21a{word-spacing:8.718859px;}
.ws197{word-spacing:8.723940px;}
.ws200{word-spacing:8.734101px;}
.ws21e{word-spacing:8.759506px;}
.ws21{word-spacing:8.765699px;}
.wse7{word-spacing:8.786988px;}
.ws143{word-spacing:8.825558px;}
.ws19{word-spacing:8.835720px;}
.ws25{word-spacing:8.851778px;}
.ws233{word-spacing:8.876367px;}
.ws1fa{word-spacing:8.901772px;}
.ws236{word-spacing:8.911934px;}
.ws39{word-spacing:8.929254px;}
.ws12f{word-spacing:8.937338px;}
.ws203{word-spacing:8.967824px;}
.ws102{word-spacing:8.993228px;}
.ws175{word-spacing:9.008471px;}
.ws1c4{word-spacing:9.028795px;}
.ws123{word-spacing:9.038957px;}
.ws11b{word-spacing:9.054199px;}
.wsb3{word-spacing:9.069442px;}
.ws232{word-spacing:9.074523px;}
.wse8{word-spacing:9.109178px;}
.ws222{word-spacing:9.130413px;}
.ws235{word-spacing:9.140575px;}
.ws12e{word-spacing:9.186303px;}
.ws135{word-spacing:9.216789px;}
.ws103{word-spacing:9.232032px;}
.ws20{word-spacing:9.260653px;}
.ws1f5{word-spacing:9.308245px;}
.ws136{word-spacing:9.338731px;}
.wsfb{word-spacing:9.343812px;}
.ws1fb{word-spacing:9.384459px;}
.ws21d{word-spacing:9.399702px;}
.ws22{word-spacing:9.414878px;}
.ws275{word-spacing:9.470835px;}
.wsfc{word-spacing:9.506401px;}
.wsee{word-spacing:9.516563px;}
.ws23{word-spacing:9.547582px;}
.wsdc{word-spacing:9.582615px;}
.ws1ef{word-spacing:9.587696px;}
.ws23c{word-spacing:9.602939px;}
.ws273{word-spacing:9.608020px;}
.ws130{word-spacing:9.623262px;}
.ws27b{word-spacing:9.684234px;}
.ws29e{word-spacing:9.690792px;}
.ws137{word-spacing:9.699476px;}
.ws6c{word-spacing:9.724881px;}
.ws59{word-spacing:9.755366px;}
.ws1cd{word-spacing:9.774478px;}
.ws27c{word-spacing:9.775690px;}
.wscc{word-spacing:9.846823px;}
.ws1d5{word-spacing:9.883269px;}
.ws23d{word-spacing:9.897632px;}
.ws20e{word-spacing:9.900006px;}
.ws1cc{word-spacing:9.912559px;}
.wscd{word-spacing:9.917956px;}
.ws23e{word-spacing:9.928118px;}
.ws127{word-spacing:9.929296px;}
.ws111{word-spacing:9.933199px;}
.ws20b{word-spacing:9.962771px;}
.ws24b{word-spacing:9.978927px;}
.ws1c1{word-spacing:9.996245px;}
.ws1d6{word-spacing:10.046456px;}
.wsce{word-spacing:10.075464px;}
.ws274{word-spacing:10.090707px;}
.wscb{word-spacing:10.095788px;}
.ws1bd{word-spacing:10.096668px;}
.ws212{word-spacing:10.105036px;}
.wsea{word-spacing:10.109220px;}
.ws209{word-spacing:10.113405px;}
.ws198{word-spacing:10.121193px;}
.ws12b{word-spacing:10.121773px;}
.ws12c{word-spacing:10.125958px;}
.ws24a{word-spacing:10.126274px;}
.ws167{word-spacing:10.130142px;}
.ws208{word-spacing:10.134326px;}
.ws1bc{word-spacing:10.138510px;}
.ws254{word-spacing:10.146879px;}
.ws213{word-spacing:10.163616px;}
.ws128{word-spacing:10.171985px;}
.ws112{word-spacing:10.187245px;}
.wsdd{word-spacing:10.197406px;}
.ws51{word-spacing:10.217730px;}
.ws16a{word-spacing:10.243117px;}
.ws113{word-spacing:10.248216px;}
.ws211{word-spacing:10.251486px;}
.ws253{word-spacing:10.255670px;}
.wsbf{word-spacing:10.258377px;}
.wse9{word-spacing:10.259855px;}
.ws210{word-spacing:10.268223px;}
.ws2a2{word-spacing:10.272407px;}
.ws1d1{word-spacing:10.293329px;}
.ws7{word-spacing:10.339672px;}
.ws202{word-spacing:10.354915px;}
.ws1ab{word-spacing:10.370158px;}
.ws24f{word-spacing:10.395562px;}
.ws22b{word-spacing:10.400643px;}
.ws26b{word-spacing:10.420967px;}
.ws24e{word-spacing:10.426048px;}
.ws20a{word-spacing:10.427226px;}
.wsb5{word-spacing:10.436210px;}
.ws252{word-spacing:10.469069px;}
.ws245{word-spacing:10.481938px;}
.ws12a{word-spacing:10.485806px;}
.ws22e{word-spacing:10.487019px;}
.ws1d7{word-spacing:10.494174px;}
.ws240{word-spacing:10.507343px;}
.ws13d{word-spacing:10.527666px;}
.wsc2{word-spacing:10.537828px;}
.ws14e{word-spacing:10.558152px;}
.ws19e{word-spacing:10.578475px;}
.ws132{word-spacing:10.598799px;}
.ws1b8{word-spacing:10.629285px;}
.wsf5{word-spacing:10.639446px;}
.ws10e{word-spacing:10.700418px;}
.ws237{word-spacing:10.715660px;}
.ws244{word-spacing:10.725822px;}
.wsb0{word-spacing:10.746146px;}
.ws18c{word-spacing:10.756308px;}
.ws5{word-spacing:10.766469px;}
.ws219{word-spacing:10.781712px;}
.ws243{word-spacing:10.786793px;}
.wsc0{word-spacing:10.796955px;}
.wsf0{word-spacing:10.802036px;}
.ws14f{word-spacing:10.812198px;}
.wsf6{word-spacing:10.822360px;}
.ws18b{word-spacing:10.837602px;}
.ws241{word-spacing:10.847764px;}
.ws13{word-spacing:10.849838px;}
.ws152{word-spacing:10.852845px;}
.ws6b{word-spacing:10.888412px;}
.wsc1{word-spacing:10.908735px;}
.ws22c{word-spacing:11.061163px;}
.ws6a{word-spacing:11.081487px;}
.ws186{word-spacing:11.086567px;}
.ws6d{word-spacing:11.096711px;}
.ws173{word-spacing:11.106891px;}
.ws124{word-spacing:11.137377px;}
.ws14b{word-spacing:11.178024px;}
.wsa2{word-spacing:11.188186px;}
.ws295{word-spacing:11.197133px;}
.ws166{word-spacing:11.201318px;}
.ws229{word-spacing:11.218671px;}
.ws28c{word-spacing:11.269481px;}
.ws125{word-spacing:11.289804px;}
.wsa3{word-spacing:11.315209px;}
.ws1f7{word-spacing:11.335533px;}
.ws25b{word-spacing:11.350775px;}
.ws2a1{word-spacing:11.368689px;}
.ws25a{word-spacing:11.391423px;}
.ws11{word-spacing:11.397979px;}
.ws118{word-spacing:11.416827px;}
.ws185{word-spacing:11.437151px;}
.ws192{word-spacing:11.462556px;}
.wsac{word-spacing:11.467636px;}
.ws5f{word-spacing:11.498401px;}
.ws17f{word-spacing:11.513365px;}
.ws3e{word-spacing:11.519323px;}
.ws80{word-spacing:11.527691px;}
.ws65{word-spacing:11.536060px;}
.ws37{word-spacing:11.540244px;}
.ws84{word-spacing:11.548613px;}
.ws25c{word-spacing:11.548931px;}
.ws3b{word-spacing:11.556981px;}
.ws7a{word-spacing:11.565350px;}
.ws31{word-spacing:11.569534px;}
.ws296{word-spacing:11.577903px;}
.ws87{word-spacing:11.582087px;}
.ws71{word-spacing:11.603008px;}
.ws178{word-spacing:11.609902px;}
.ws19c{word-spacing:11.620064px;}
.ws86{word-spacing:11.623930px;}
.wsf4{word-spacing:11.625145px;}
.ws63{word-spacing:11.632298px;}
.ws85{word-spacing:11.636483px;}
.ws3a{word-spacing:11.644851px;}
.ws29d{word-spacing:11.649036px;}
.ws191{word-spacing:11.650550px;}
.ws66{word-spacing:11.657404px;}
.ws33{word-spacing:11.665773px;}
.ws88{word-spacing:11.669957px;}
.ws7e{word-spacing:11.695063px;}
.ws204{word-spacing:11.696278px;}
.ws190{word-spacing:11.701359px;}
.ws6f{word-spacing:11.703431px;}
.ws36{word-spacing:11.720168px;}
.ws34{word-spacing:11.732721px;}
.ws74{word-spacing:11.736905px;}
.ws70{word-spacing:11.741090px;}
.ws183{word-spacing:11.747087px;}
.ws2a0{word-spacing:11.753643px;}
.ws83{word-spacing:11.762011px;}
.ws3c{word-spacing:11.766195px;}
.wsab{word-spacing:11.772492px;}
.ws6e{word-spacing:11.774564px;}
.ws89{word-spacing:11.787734px;}
.ws35{word-spacing:11.791301px;}
.ws19a{word-spacing:11.808058px;}
.ws7c{word-spacing:11.820591px;}
.ws61{word-spacing:11.824775px;}
.ws100{word-spacing:11.828382px;}
.ws62{word-spacing:11.828960px;}
.ws1c8{word-spacing:11.833144px;}
.ws184{word-spacing:11.853786px;}
.wsff{word-spacing:11.869029px;}
.ws64{word-spacing:11.870802px;}
.ws29f{word-spacing:11.879171px;}
.wse6{word-spacing:11.883355px;}
.ws72{word-spacing:11.895908px;}
.ws101{word-spacing:11.899515px;}
.ws3d{word-spacing:11.900092px;}
.ws251{word-spacing:11.904277px;}
.ws1d9{word-spacing:11.909676px;}
.wsbb{word-spacing:11.919838px;}
.ws60{word-spacing:11.925198px;}
.ws73{word-spacing:11.929382px;}
.ws81{word-spacing:11.937751px;}
.ws79{word-spacing:11.962857px;}
.ws77{word-spacing:11.971225px;}
.ws1d8{word-spacing:11.975728px;}
.ws7b{word-spacing:12.013068px;}
.wsaa{word-spacing:12.036699px;}
.ws1bb{word-spacing:12.038174px;}
.ws82{word-spacing:12.050726px;}
.ws40{word-spacing:12.075832px;}
.ws206{word-spacing:12.080016px;}
.ws24c{word-spacing:12.117994px;}
.ws144{word-spacing:12.123075px;}
.wsb2{word-spacing:12.128156px;}
.ws19d{word-spacing:12.138318px;}
.ws1ff{word-spacing:12.148480px;}
.ws1aa{word-spacing:12.184046px;}
.ws164{word-spacing:12.199289px;}
.ws1da{word-spacing:12.214532px;}
.ws227{word-spacing:12.224694px;}
.ws163{word-spacing:12.229774px;}
.ws26a{word-spacing:12.239936px;}
.ws1c5{word-spacing:12.265341px;}
.ws146{word-spacing:12.290745px;}
.ws96{word-spacing:12.300907px;}
.ws1fe{word-spacing:12.346636px;}
.ws3f{word-spacing:12.347810px;}
.ws41{word-spacing:12.360363px;}
.ws145{word-spacing:12.422849px;}
.ws1f0{word-spacing:12.443173px;}
.wsb4{word-spacing:12.448254px;}
.ws92{word-spacing:12.478740px;}
.ws1f2{word-spacing:12.483820px;}
.ws126{word-spacing:12.499063px;}
.ws1a4{word-spacing:12.529549px;}
.ws1a3{word-spacing:12.610843px;}
.wsc9{word-spacing:12.641329px;}
.ws238{word-spacing:12.646410px;}
.wsc3{word-spacing:12.651491px;}
.ws284{word-spacing:12.661653px;}
.ws1df{word-spacing:12.666734px;}
.ws1f8{word-spacing:12.671814px;}
.ws25d{word-spacing:12.692138px;}
.wsc4{word-spacing:12.763271px;}
.ws93{word-spacing:12.814080px;}
.ws98{word-spacing:12.854728px;}
.ws8{word-spacing:12.864889px;}
.ws270{word-spacing:12.885213px;}
.ws25e{word-spacing:12.890294px;}
.ws97{word-spacing:12.895375px;}
.ws194{word-spacing:12.905537px;}
.ws161{word-spacing:12.925860px;}
.ws13c{word-spacing:12.946184px;}
.ws1e9{word-spacing:12.951265px;}
.ws1e{word-spacing:12.971589px;}
.wsf7{word-spacing:12.981751px;}
.wsa8{word-spacing:12.986832px;}
.ws217{word-spacing:12.991912px;}
.ws140{word-spacing:13.012236px;}
.ws18{word-spacing:13.022398px;}
.ws165{word-spacing:13.027479px;}
.ws94{word-spacing:13.032560px;}
.ws223{word-spacing:13.037641px;}
.ws15c{word-spacing:13.042722px;}
.wsb9{word-spacing:13.047803px;}
.ws174{word-spacing:13.057964px;}
.ws156{word-spacing:13.068126px;}
.ws155{word-spacing:13.073207px;}
.ws8b{word-spacing:13.078288px;}
.wsba{word-spacing:13.083369px;}
.ws9{word-spacing:13.088450px;}
.ws106{word-spacing:13.093531px;}
.ws283{word-spacing:13.098612px;}
.wse3{word-spacing:13.103693px;}
.ws114{word-spacing:13.108774px;}
.ws115{word-spacing:13.113855px;}
.ws1ea{word-spacing:13.118935px;}
.wsa7{word-spacing:13.124016px;}
.ws5d{word-spacing:13.129097px;}
.wsd6{word-spacing:13.134178px;}
.ws218{word-spacing:13.139259px;}
.wse5{word-spacing:13.144340px;}
.wsf8{word-spacing:13.149421px;}
.ws6{word-spacing:13.154502px;}
.ws90{word-spacing:13.159583px;}
.wsae{word-spacing:13.164664px;}
.ws226{word-spacing:13.169745px;}
.wsc7{word-spacing:13.174826px;}
.ws177{word-spacing:13.184987px;}
.ws8a{word-spacing:13.195149px;}
.ws1af{word-spacing:13.200230px;}
.ws1ad{word-spacing:13.205311px;}
.ws176{word-spacing:13.210392px;}
.ws11c{word-spacing:13.215473px;}
.ws151{word-spacing:13.220554px;}
.wsa9{word-spacing:13.225635px;}
.wsd7{word-spacing:13.230716px;}
.ws15{word-spacing:13.235797px;}
.ws1a2{word-spacing:13.240878px;}
.wsca{word-spacing:13.245958px;}
.ws16b{word-spacing:13.251039px;}
.ws147{word-spacing:13.256120px;}
.ws281{word-spacing:13.261201px;}
.wsdf{word-spacing:13.266282px;}
.wsb8{word-spacing:13.271363px;}
.ws28d{word-spacing:13.276444px;}
.ws14a{word-spacing:13.291687px;}
.wsb6{word-spacing:13.296768px;}
.ws10d{word-spacing:13.301849px;}
.ws16f{word-spacing:13.306929px;}
.ws282{word-spacing:13.317091px;}
.ws149{word-spacing:13.322172px;}
.ws193{word-spacing:13.327253px;}
.ws287{word-spacing:13.332334px;}
.ws16{word-spacing:13.347577px;}
.ws1f{word-spacing:13.352658px;}
.ws249{word-spacing:13.357739px;}
.ws148{word-spacing:13.367901px;}
.wse4{word-spacing:13.378062px;}
.ws150{word-spacing:13.388224px;}
.ws1d{word-spacing:13.393305px;}
.wsc8{word-spacing:13.398386px;}
.ws3{word-spacing:13.403467px;}
.wsf3{word-spacing:13.408548px;}
.ws182{word-spacing:13.413629px;}
.ws5c{word-spacing:13.418710px;}
.ws278{word-spacing:13.423791px;}
.ws242{word-spacing:13.433952px;}
.ws10a{word-spacing:13.439033px;}
.ws5b{word-spacing:13.449195px;}
.ws1f3{word-spacing:13.454276px;}
.ws4{word-spacing:13.459357px;}
.ws14d{word-spacing:13.469519px;}
.ws131{word-spacing:13.479681px;}
.ws17a{word-spacing:13.489843px;}
.ws9f{word-spacing:13.494924px;}
.ws162{word-spacing:13.500004px;}
.ws95{word-spacing:13.505085px;}
.ws1b{word-spacing:13.515247px;}
.wsf9{word-spacing:13.520328px;}
.ws267{word-spacing:13.530490px;}
.ws195{word-spacing:13.540652px;}
.ws187{word-spacing:13.545733px;}
.ws1a{word-spacing:13.555895px;}
.ws10b{word-spacing:13.566056px;}
.ws265{word-spacing:13.576218px;}
.ws154{word-spacing:13.581299px;}
.ws5a{word-spacing:13.591461px;}
.ws14c{word-spacing:13.601623px;}
.ws221{word-spacing:13.606704px;}
.wsda{word-spacing:13.616866px;}
.ws250{word-spacing:13.627027px;}
.ws157{word-spacing:13.642270px;}
.ws1a0{word-spacing:13.662594px;}
.wsef{word-spacing:13.672756px;}
.ws276{word-spacing:13.677837px;}
.ws1ba{word-spacing:13.687998px;}
.ws1ac{word-spacing:13.698160px;}
.ws228{word-spacing:13.718484px;}
.ws1ee{word-spacing:13.733727px;}
.ws248{word-spacing:13.743889px;}
.ws19b{word-spacing:13.779455px;}
.ws11a{word-spacing:13.789617px;}
.ws9e{word-spacing:13.794698px;}
.ws15b{word-spacing:13.799779px;}
.ws179{word-spacing:13.815021px;}
.ws54{word-spacing:13.820102px;}
.wse2{word-spacing:13.835345px;}
.ws1c{word-spacing:13.850588px;}
.ws19f{word-spacing:13.855669px;}
.wse0{word-spacing:13.860750px;}
.ws9d{word-spacing:13.911559px;}
.ws279{word-spacing:13.921721px;}
.ws1a1{word-spacing:13.926802px;}
.ws58{word-spacing:13.931883px;}
.wsb{word-spacing:13.939010px;}
.ws1b9{word-spacing:13.942044px;}
.wsaf{word-spacing:13.962368px;}
.ws1ae{word-spacing:13.992854px;}
.ws69{word-spacing:14.069067px;}
.wscf{word-spacing:14.079229px;}
.ws1c6{word-spacing:14.135119px;}
.ws13b{word-spacing:14.150362px;}
.ws25f{word-spacing:14.155443px;}
.ws224{word-spacing:14.175767px;}
.wsa4{word-spacing:14.180848px;}
.wsc{word-spacing:14.213379px;}
.ws1f1{word-spacing:14.226576px;}
.ws225{word-spacing:14.231657px;}
.ws1f6{word-spacing:14.257062px;}
.ws255{word-spacing:14.277385px;}
.ws23b{word-spacing:14.338356px;}
.ws199{word-spacing:14.399327px;}
.ws11d{word-spacing:14.419651px;}
.wsd5{word-spacing:14.439975px;}
.ws22d{word-spacing:14.445056px;}
.ws55{word-spacing:14.500946px;}
.ws15e{word-spacing:14.536512px;}
.wsd4{word-spacing:14.566998px;}
.wsd3{word-spacing:14.577159px;}
.wsa1{word-spacing:14.587321px;}
.ws11e{word-spacing:14.592402px;}
.ws264{word-spacing:14.597483px;}
.ws15a{word-spacing:14.607645px;}
.ws1ec{word-spacing:14.617807px;}
.ws160{word-spacing:14.638131px;}
.ws263{word-spacing:14.648292px;}
.ws15d{word-spacing:14.694021px;}
.ws1a7{word-spacing:14.749911px;}
.ws239{word-spacing:14.805801px;}
.ws260{word-spacing:14.815963px;}
.wsd2{word-spacing:14.836286px;}
.ws18e{word-spacing:14.846448px;}
.ws27e{word-spacing:14.871853px;}
.ws142{word-spacing:14.922662px;}
.ws141{word-spacing:14.927743px;}
.ws18f{word-spacing:14.968390px;}
.ws42{word-spacing:15.081384px;}
.ws189{word-spacing:15.105575px;}
.ws1db{word-spacing:15.161465px;}
.wsa0{word-spacing:15.176708px;}
.ws27d{word-spacing:15.202113px;}
.ws1a6{word-spacing:15.222436px;}
.wsc6{word-spacing:15.268165px;}
.wsad{word-spacing:15.288488px;}
.ws43{word-spacing:15.296576px;}
.ws12d{word-spacing:15.329136px;}
.ws16c{word-spacing:15.364702px;}
.ws21f{word-spacing:15.385026px;}
.ws1a5{word-spacing:15.400269px;}
.ws26c{word-spacing:15.420592px;}
.ws109{word-spacing:15.451078px;}
.ws261{word-spacing:15.486644px;}
.wse1{word-spacing:15.506968px;}
.ws134{word-spacing:15.542534px;}
.wsc5{word-spacing:15.562858px;}
.ws16d{word-spacing:15.618748px;}
.ws1c7{word-spacing:15.628910px;}
.wsb7{word-spacing:15.673378px;}
.ws4f{word-spacing:15.715005px;}
.ws17e{word-spacing:15.771176px;}
.ws22a{word-spacing:15.826704px;}
.ws1b2{word-spacing:15.847389px;}
.ws23f{word-spacing:15.852470px;}
.ws17d{word-spacing:15.867713px;}
.ws5e{word-spacing:15.872134px;}
.ws50{word-spacing:15.889170px;}
.ws220{word-spacing:15.903280px;}
.ws294{word-spacing:15.906207px;}
.ws1b3{word-spacing:15.908361px;}
.ws28a{word-spacing:15.938846px;}
.ws28e{word-spacing:15.974352px;}
.ws4d{word-spacing:15.978018px;}
.ws68{word-spacing:15.991388px;}
.ws280{word-spacing:16.042497px;}
.ws262{word-spacing:16.106516px;}
.ws13e{word-spacing:16.177649px;}
.ws138{word-spacing:16.187811px;}
.ws269{word-spacing:16.218297px;}
.ws289{word-spacing:16.228458px;}
.ws1b0{word-spacing:16.279268px;}
.ws4a{word-spacing:16.420357px;}
.ws268{word-spacing:16.472343px;}
.ws288{word-spacing:16.563799px;}
.ws4b{word-spacing:16.581751px;}
.ws28f{word-spacing:16.695903px;}
.ws159{word-spacing:16.777198px;}
.ws1a8{word-spacing:16.787360px;}
.ws1b4{word-spacing:16.873735px;}
.ws27a{word-spacing:16.878816px;}
.ws1a9{word-spacing:16.899140px;}
.ws1b6{word-spacing:16.909302px;}
.ws290{word-spacing:16.924545px;}
.ws10c{word-spacing:16.944868px;}
.ws205{word-spacing:16.960111px;}
.ws1e6{word-spacing:16.970273px;}
.ws158{word-spacing:17.010920px;}
.ws49{word-spacing:17.024091px;}
.ws17b{word-spacing:17.061729px;}
.ws291{word-spacing:17.143024px;}
.ws292{word-spacing:17.254804px;}
.ws13a{word-spacing:17.320856px;}
.ws1b7{word-spacing:17.336099px;}
.ws139{word-spacing:17.371665px;}
.ws17c{word-spacing:17.493608px;}
.ws48{word-spacing:17.585982px;}
.ws121{word-spacing:17.620631px;}
.ws120{word-spacing:17.818786px;}
.ws4e{word-spacing:17.837039px;}
.wsfe{word-spacing:17.905162px;}
.ws247{word-spacing:17.910243px;}
.ws47{word-spacing:17.944635px;}
.ws27{word-spacing:18.027643px;}
.ws257{word-spacing:18.042347px;}
.ws246{word-spacing:18.067752px;}
.ws2d{word-spacing:18.108652px;}
.ws2e{word-spacing:18.220433px;}
.ws1fd{word-spacing:18.250665px;}
.ws256{word-spacing:18.276069px;}
.ws2b{word-spacing:18.332215px;}
.ws30{word-spacing:18.463723px;}
.ws91{word-spacing:18.570763px;}
.wsfd{word-spacing:18.591086px;}
.ws2ab{word-spacing:18.636783px;}
.ws29c{word-spacing:18.653520px;}
.ws2a4{word-spacing:18.674442px;}
.ws298{word-spacing:18.691179px;}
.ws297{word-spacing:18.707916px;}
.ws29b{word-spacing:18.724653px;}
.ws2a8{word-spacing:18.733022px;}
.ws2ac{word-spacing:18.812523px;}
.ws2aa{word-spacing:18.825076px;}
.ws29a{word-spacing:18.845997px;}
.ws2a7{word-spacing:18.850181px;}
.ws2a9{word-spacing:18.892024px;}
.ws285{word-spacing:18.895941px;}
.ws2a3{word-spacing:18.900393px;}
.ws299{word-spacing:18.929683px;}
.ws286{word-spacing:18.931508px;}
.ws23a{word-spacing:18.941670px;}
.ws1e5{word-spacing:19.012803px;}
.ws2a6{word-spacing:19.063580px;}
.ws15f{word-spacing:19.083936px;}
.wsde{word-spacing:19.180473px;}
.ws27f{word-spacing:19.231282px;}
.ws26f{word-spacing:19.277010px;}
.ws271{word-spacing:19.287172px;}
.ws2a5{word-spacing:19.310452px;}
.ws53{word-spacing:19.409114px;}
.wsd0{word-spacing:19.444681px;}
.ws26e{word-spacing:19.454843px;}
.ws52{word-spacing:19.536137px;}
.ws26d{word-spacing:19.597108px;}
.ws259{word-spacing:19.835912px;}
.ws9a{word-spacing:19.922287px;}
.ws108{word-spacing:20.028987px;}
.ws258{word-spacing:20.039148px;}
.wsd1{word-spacing:20.069634px;}
.ws9b{word-spacing:20.130605px;}
.ws16e{word-spacing:20.277952px;}
.ws44{word-spacing:20.281861px;}
.ws107{word-spacing:20.293194px;}
.ws99{word-spacing:20.567564px;}
.ws57{word-spacing:20.577726px;}
.ws56{word-spacing:20.608212px;}
.wsed{word-spacing:20.633616px;}
.ws172{word-spacing:20.867338px;}
.wsa6{word-spacing:20.892743px;}
.ws22f{word-spacing:21.141708px;}
.ws171{word-spacing:21.187436px;}
.ws230{word-spacing:21.578667px;}
.ws170{word-spacing:21.588829px;}
.ws1e7{word-spacing:21.827632px;}
.ws180{word-spacing:21.878442px;}
.ws4c{word-spacing:21.907757px;}
.ws266{word-spacing:21.974979px;}
.ws1e8{word-spacing:22.010545px;}
.ws11f{word-spacing:22.991163px;}
.ws119{word-spacing:23.433203px;}
.ws8d{word-spacing:23.524660px;}
.ws8e{word-spacing:24.053075px;}
.wsd8{word-spacing:26.121010px;}
.ws1e4{word-spacing:31.252739px;}
.ws2a{word-spacing:33.139759px;}
.ws29{word-spacing:33.558190px;}
.ws1e3{word-spacing:34.829707px;}
.ws1e0{word-spacing:35.134562px;}
.ws1e2{word-spacing:35.149805px;}
.ws1e1{word-spacing:35.312394px;}
.ws46{word-spacing:35.949046px;}
.ws45{word-spacing:36.020777px;}
.ws0{word-spacing:39.968290px;}
.ws1{word-spacing:39.982636px;}
.ws2{word-spacing:40.326943px;}
.ws1c2{word-spacing:79.622664px;}
.ws67{word-spacing:102.498123px;}
.ws76{word-spacing:558.647407px;}
.ws78{word-spacing:587.849497px;}
.ws7d{word-spacing:760.517996px;}
.ws7f{word-spacing:834.738754px;}
._7{margin-left:-42.360388px;}
._5{margin-left:-35.329015px;}
._6{margin-left:-22.352986px;}
._43{margin-left:-21.287036px;}
._4e{margin-left:-18.809782px;}
._4f{margin-left:-17.644956px;}
._53{margin-left:-16.324996px;}
._49{margin-left:-15.250713px;}
._4{margin-left:-14.089644px;}
._44{margin-left:-12.148264px;}
._50{margin-left:-11.147517px;}
._4c{margin-left:-10.146813px;}
._8{margin-left:-7.822200px;}
._4a{margin-left:-3.111504px;}
._9{margin-left:-1.126199px;}
._3{width:1.000941px;}
._51{width:2.723373px;}
._59{width:6.033732px;}
._b{width:7.782761px;}
._f{width:9.360604px;}
._42{width:10.874719px;}
._2{width:12.234855px;}
._10{width:13.398386px;}
._1{width:15.090332px;}
._e{width:16.345320px;}
._c{width:17.406655px;}
._55{width:18.611410px;}
._48{width:19.642837px;}
._52{width:20.787503px;}
._4b{width:22.057728px;}
._41{width:23.819137px;}
._4d{width:24.830456px;}
._54{width:27.843442px;}
._46{width:28.859626px;}
._47{width:30.963126px;}
._58{width:33.142841px;}
._a{width:34.765663px;}
._57{width:36.729971px;}
._d{width:37.964084px;}
._0{width:41.173364px;}
._56{width:80.299599px;}
._45{width:103.430298px;}
._40{width:168.827309px;}
._14{width:227.457461px;}
._2d{width:294.623482px;}
._3f{width:298.263806px;}
._13{width:389.138040px;}
._3e{width:410.607581px;}
._34{width:427.336332px;}
._32{width:443.240780px;}
._2c{width:472.656269px;}
._38{width:476.823812px;}
._3a{width:483.044938px;}
._33{width:494.238764px;}
._3c{width:498.820572px;}
._12{width:504.251767px;}
._11{width:519.113431px;}
._3b{width:533.039613px;}
._22{width:535.466496px;}
._19{width:547.031846px;}
._39{width:550.521535px;}
._17{width:558.689250px;}
._36{width:560.906918px;}
._3d{width:562.204045px;}
._24{width:588.527351px;}
._1b{width:600.059226px;}
._1c{width:609.955028px;}
._25{width:621.520378px;}
._2e{width:659.555504px;}
._16{width:662.890375px;}
._37{width:687.757551px;}
._2f{width:712.193746px;}
._35{width:723.784202px;}
._2a{width:757.467656px;}
._26{width:790.368649px;}
._1d{width:801.933999px;}
._28{width:836.450125px;}
._23{width:838.482787px;}
._31{width:843.241211px;}
._1f{width:848.015475px;}
._1a{width:850.115085px;}
._30{width:858.555676px;}
._15{width:865.501581px;}
._2b{width:898.092938px;}
._18{width:980.728284px;}
._21{width:992.293633px;}
._1e{width:1005.005476px;}
._27{width:1016.570826px;}
._20{width:1042.655628px;}
._29{width:1054.220977px;}
.fc5{color:rgb(2,150,211);}
.fc4{color:rgb(2,150,210);}
.fc3{color:rgb(169,59,69);}
.fc2{color:rgb(68,65,65);}
.fc7{color:rgb(177,177,177);}
.fc6{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(189,188,188);}
.fsb{font-size:27.891000px;}
.fse{font-size:29.289000px;}
.fs10{font-size:33.869400px;}
.fsf{font-size:35.565000px;}
.fs5{font-size:35.866200px;}
.fs4{font-size:41.842800px;}
.fsa{font-size:43.831200px;}
.fs2{font-size:50.809200px;}
.fs3{font-size:53.797800px;}
.fsc{font-size:56.787600px;}
.fsd{font-size:59.775600px;}
.fs9{font-size:65.754000px;}
.fs7{font-size:83.685600px;}
.fs6{font-size:95.999400px;}
.fs0{font-size:107.596800px;}
.fs8{font-size:119.551800px;}
.fs1{font-size:143.461200px;}
.y0{bottom:0.000000px;}
.y6a{bottom:19.559246px;}
.y69{bottom:30.018900px;}
.yea{bottom:77.385750px;}
.y11c{bottom:77.385781px;}
.y1a6{bottom:77.386024px;}
.y114{bottom:77.386055px;}
.yce{bottom:77.386086px;}
.y264{bottom:77.386173px;}
.y6e{bottom:77.386184px;}
.y154{bottom:77.386448px;}
.y19a{bottom:77.386966px;}
.y219{bottom:77.388027px;}
.y68{bottom:80.191630px;}
.y142{bottom:80.362200px;}
.y1d1{bottom:87.846642px;}
.y17f{bottom:88.271557px;}
.y2d{bottom:92.352635px;}
.y218{bottom:94.990875px;}
.y11b{bottom:95.329050px;}
.y1a5{bottom:95.329293px;}
.y113{bottom:95.329324px;}
.ycd{bottom:95.329355px;}
.y263{bottom:95.329442px;}
.y6d{bottom:95.329453px;}
.y153{bottom:95.329717px;}
.y199{bottom:95.330235px;}
.y67{bottom:97.454923px;}
.y1d0{bottom:105.789911px;}
.y17e{bottom:106.214826px;}
.y2c{bottom:107.319600px;}
.y6c{bottom:112.932300px;}
.ye9{bottom:112.933149px;}
.y1a4{bottom:113.272562px;}
.y112{bottom:113.272593px;}
.ycc{bottom:113.272624px;}
.y262{bottom:113.272711px;}
.y198{bottom:113.273504px;}
.y66{bottom:113.867762px;}
.y141{bottom:115.909468px;}
.y201{bottom:116.248800px;}
.y2b{bottom:122.286686px;}
.y1cf{bottom:123.733180px;}
.y17d{bottom:124.158095px;}
.y65{bottom:129.940627px;}
.y1a3{bottom:131.215831px;}
.y111{bottom:131.215862px;}
.ycb{bottom:131.215893px;}
.y261{bottom:131.215979px;}
.y11a{bottom:131.215985px;}
.y152{bottom:131.216255px;}
.y197{bottom:131.216773px;}
.y23e{bottom:131.221613px;}
.y2a{bottom:137.168469px;}
.y217{bottom:138.700759px;}
.y17c{bottom:142.016259px;}
.y64{bottom:147.883866px;}
.y1a2{bottom:149.159100px;}
.yca{bottom:149.159162px;}
.y260{bottom:149.159248px;}
.y119{bottom:149.159254px;}
.y151{bottom:149.159523px;}
.y196{bottom:149.160042px;}
.y23d{bottom:149.164882px;}
.y29{bottom:152.135435px;}
.ye8{bottom:154.771985px;}
.y216{bottom:156.644028px;}
.y200{bottom:158.088516px;}
.y140{bottom:159.619352px;}
.y1ce{bottom:159.619718px;}
.y17b{bottom:159.959528px;}
.y63{bottom:166.507050px;}
.y25f{bottom:166.932307px;}
.y28{bottom:167.102400px;}
.y25e{bottom:167.102517px;}
.y150{bottom:167.102792px;}
.y195{bottom:167.103311px;}
.y82{bottom:167.357400px;}
.ye7{bottom:172.715254px;}
.y215{bottom:174.587297px;}
.y1ff{bottom:176.031785px;}
.y13f{bottom:177.562621px;}
.y1cd{bottom:177.562987px;}
.y17a{bottom:177.902797px;}
.y1e1{bottom:184.448621px;}
.y25d{bottom:185.045786px;}
.y118{bottom:185.045792px;}
.yc9{bottom:185.045848px;}
.y14f{bottom:185.046061px;}
.y194{bottom:185.046580px;}
.y23c{bottom:185.051420px;}
.y81{bottom:185.725662px;}
.ye6{bottom:190.658523px;}
.y214{bottom:192.445461px;}
.y1b0{bottom:193.973033px;}
.y1fe{bottom:193.975054px;}
.y13e{bottom:195.505890px;}
.y179{bottom:195.846066px;}
.y1e0{bottom:199.415791px;}
.y7f{bottom:200.437800px;}
.y7e{bottom:202.138165px;}
.y80{bottom:202.138500px;}
.y110{bottom:202.563533px;}
.y25c{bottom:202.903950px;}
.y117{bottom:202.903955px;}
.yc8{bottom:202.904012px;}
.y14e{bottom:202.904225px;}
.y193{bottom:202.904743px;}
.y23b{bottom:202.909584px;}
.ye5{bottom:208.601792px;}
.y1af{bottom:208.940203px;}
.y213{bottom:210.388730px;}
.y1fd{bottom:211.918323px;}
.y13d{bottom:213.364054px;}
.y1cc{bottom:213.364419px;}
.y178{bottom:213.789335px;}
.y1df{bottom:214.297183px;}
.yb{bottom:214.554542px;}
.y7d{bottom:218.551003px;}
.y116{bottom:220.847224px;}
.y192{bottom:220.848012px;}
.y23a{bottom:220.852853px;}
.y25b{bottom:223.823550px;}
.y1ae{bottom:223.907372px;}
.y62{bottom:224.418750px;}
.y212{bottom:228.331999px;}
.y1de{bottom:229.264352px;}
.y13c{bottom:231.307323px;}
.y1cb{bottom:231.307688px;}
.y177{bottom:231.732604px;}
.ya{bottom:232.412705px;}
.y7c{bottom:235.048573px;}
.y1ad{bottom:238.789810px;}
.y10f{bottom:238.790493px;}
.yc7{bottom:238.790550px;}
.y14d{bottom:238.790763px;}
.y191{bottom:238.791281px;}
.y1dd{bottom:244.231522px;}
.ye4{bottom:244.488329px;}
.y211{bottom:246.275268px;}
.y1fc{bottom:247.804861px;}
.y1ca{bottom:249.250957px;}
.y176{bottom:249.675873px;}
.y9{bottom:250.355974px;}
.y7b{bottom:251.461411px;}
.y1ac{bottom:253.756980px;}
.y10e{bottom:256.733762px;}
.y14c{bottom:256.734032px;}
.y190{bottom:256.734550px;}
.y239{bottom:256.739391px;}
.y1dc{bottom:259.198692px;}
.ye3{bottom:262.346493px;}
.y61{bottom:262.346735px;}
.y25a{bottom:263.027088px;}
.y210{bottom:263.878115px;}
.y1fb{bottom:265.748129px;}
.y13b{bottom:267.193861px;}
.y1c9{bottom:267.194226px;}
.y175{bottom:267.619142px;}
.y8{bottom:268.299243px;}
.y1ab{bottom:268.724149px;}
.y7a{bottom:269.404650px;}
.y1db{bottom:274.081129px;}
.yc6{bottom:274.336950px;}
.y115{bottom:274.677031px;}
.y18f{bottom:274.677819px;}
.y27{bottom:278.079425px;}
.ye2{bottom:280.289762px;}
.y60{bottom:280.290004px;}
.y259{bottom:280.629936px;}
.y1aa{bottom:283.605541px;}
.y1fa{bottom:283.606293px;}
.y13a{bottom:285.137129px;}
.y1c8{bottom:285.137495px;}
.y7{bottom:286.242512px;}
.y79{bottom:287.347950px;}
.y1da{bottom:289.048299px;}
.y14b{bottom:289.644421px;}
.y10d{bottom:292.620300px;}
.y18e{bottom:292.621088px;}
.y238{bottom:292.625929px;}
.yc5{bottom:293.725950px;}
.y26{bottom:296.022694px;}
.y5f{bottom:298.233273px;}
.y1a9{bottom:298.572711px;}
.y1f9{bottom:301.549562px;}
.y139{bottom:303.080398px;}
.y174{bottom:303.420574px;}
.y1d9{bottom:304.015469px;}
.y6{bottom:304.185781px;}
.y14a{bottom:307.587690px;}
.y20f{bottom:307.588000px;}
.y18d{bottom:310.564357px;}
.y237{bottom:310.569198px;}
.y1a8{bottom:313.539880px;}
.y25{bottom:313.880857px;}
.ye0{bottom:316.176393px;}
.y258{bottom:318.642839px;}
.y1d8{bottom:318.982638px;}
.y1f8{bottom:319.492831px;}
.ye1{bottom:320.768400px;}
.y138{bottom:321.023667px;}
.y1c7{bottom:321.024033px;}
.y173{bottom:321.363843px;}
.y5{bottom:322.129050px;}
.y149{bottom:325.445854px;}
.y20e{bottom:325.446163px;}
.y236{bottom:328.086939px;}
.y1a7{bottom:328.507050px;}
.y10b{bottom:328.507167px;}
.y18c{bottom:328.507626px;}
.yc4{bottom:329.783967px;}
.y24{bottom:331.824126px;}
.y10c{bottom:333.099150px;}
.y1d7{bottom:333.864030px;}
.y5e{bottom:334.119811px;}
.y257{bottom:336.160581px;}
.y122{bottom:337.350630px;}
.y1f7{bottom:337.436100px;}
.y1c6{bottom:338.967302px;}
.y172{bottom:339.307112px;}
.y78{bottom:341.177850px;}
.y148{bottom:343.389123px;}
.y20d{bottom:343.389432px;}
.y10a{bottom:346.365331px;}
.y18b{bottom:346.365790px;}
.yc3{bottom:347.727236px;}
.y1d6{bottom:348.831200px;}
.ydf{bottom:352.062931px;}
.y5d{bottom:352.063079px;}
.y121{bottom:352.317799px;}
.y137{bottom:356.825100px;}
.y1f6{bottom:358.355850px;}
.y77{bottom:359.546112px;}
.y147{bottom:361.332392px;}
.y20c{bottom:361.332701px;}
.y1d5{bottom:363.798369px;}
.y109{bottom:364.308786px;}
.yc2{bottom:365.670505px;}
.y120{bottom:367.199191px;}
.y23{bottom:367.710664px;}
.yde{bottom:370.006200px;}
.y5c{bottom:370.006348px;}
.y235{bottom:371.541508px;}
.y75{bottom:374.258100px;}
.y256{bottom:374.258589px;}
.y1c5{bottom:374.768735px;}
.y171{bottom:375.193650px;}
.y74{bottom:375.958615px;}
.y76{bottom:375.958950px;}
.y1d4{bottom:378.765539px;}
.y146{bottom:379.275661px;}
.y20b{bottom:379.275970px;}
.y11f{bottom:382.166361px;}
.y108{bottom:382.252055px;}
.y18a{bottom:382.252328px;}
.yc1{bottom:383.613774px;}
.y22{bottom:385.653933px;}
.y5b{bottom:387.864512px;}
.y234{bottom:389.484777px;}
.y255{bottom:392.201858px;}
.y136{bottom:392.372095px;}
.y73{bottom:392.456185px;}
.y1c4{bottom:392.712004px;}
.y1d3{bottom:393.646930px;}
.y11e{bottom:397.133530px;}
.y107{bottom:400.195324px;}
.y189{bottom:400.195597px;}
.y1f5{bottom:400.196199px;}
.yc0{bottom:401.471937px;}
.y21{bottom:403.597202px;}
.y5a{bottom:405.807781px;}
.ydd{bottom:405.808235px;}
.y233{bottom:407.342940px;}
.y1d2{bottom:408.614100px;}
.y72{bottom:408.869023px;}
.y254{bottom:409.719600px;}
.y1c3{bottom:410.655273px;}
.y170{bottom:410.655509px;}
.y11d{bottom:412.100700px;}
.y145{bottom:415.162198px;}
.y20a{bottom:415.162508px;}
.y188{bottom:418.138866px;}
.y1f4{bottom:418.139468px;}
.ybf{bottom:419.415206px;}
.y20{bottom:421.540471px;}
.y59{bottom:423.751050px;}
.ydc{bottom:423.751504px;}
.y71{bottom:425.281861px;}
.y253{bottom:429.193650px;}
.y209{bottom:432.680250px;}
.y106{bottom:436.081862px;}
.y135{bottom:436.081979px;}
.y187{bottom:436.082135px;}
.y1f3{bottom:436.082737px;}
.ybe{bottom:437.358475px;}
.ydb{bottom:441.694773px;}
.y70{bottom:443.225100px;}
.y232{bottom:443.229478px;}
.y58{bottom:444.670800px;}
.y1c2{bottom:446.541811px;}
.y144{bottom:451.048736px;}
.y208{bottom:452.154150px;}
.y105{bottom:454.025131px;}
.y134{bottom:454.025248px;}
.y186{bottom:454.025404px;}
.y1f2{bottom:454.026006px;}
.y16f{bottom:454.365393px;}
.ybd{bottom:455.301744px;}
.y1f{bottom:457.341904px;}
.yda{bottom:459.638042px;}
.y231{bottom:460.832326px;}
.y6f{bottom:461.168400px;}
.y1c1{bottom:464.485079px;}
.y252{bottom:468.312710px;}
.y143{bottom:468.906900px;}
.y104{bottom:471.968400px;}
.y1f1{bottom:471.969275px;}
.y16e{bottom:472.308662px;}
.ybc{bottom:473.245013px;}
.y1e{bottom:475.285173px;}
.y57{bottom:482.259814px;}
.y1c0{bottom:482.428348px;}
.y251{bottom:486.255979px;}
.y133{bottom:489.826681px;}
.y185{bottom:489.826836px;}
.y1f0{bottom:489.827438px;}
.y16d{bottom:490.251931px;}
.ybb{bottom:491.188282px;}
.y1d{bottom:493.228442px;}
.yd9{bottom:495.524579px;}
.y207{bottom:496.970161px;}
.y56{bottom:500.202954px;}
.y1bf{bottom:500.286512px;}
.y6b{bottom:501.647100px;}
.y159{bottom:501.730853px;}
.y250{bottom:504.199248px;}
.y230{bottom:504.201788px;}
.y103{bottom:507.769950px;}
.y184{bottom:507.770105px;}
.y16c{bottom:508.195200px;}
.yba{bottom:509.131551px;}
.y1c{bottom:511.171711px;}
.yd8{bottom:513.467848px;}
.y206{bottom:514.913429px;}
.y158{bottom:516.698023px;}
.y55{bottom:518.146095px;}
.y24f{bottom:522.142517px;}
.y22f{bottom:522.145057px;}
.y1ef{bottom:525.713976px;}
.yb9{bottom:527.074820px;}
.yd7{bottom:531.411117px;}
.y157{bottom:531.665193px;}
.y205{bottom:532.856698px;}
.y54{bottom:536.089236px;}
.y1be{bottom:536.173050px;}
.ya1{bottom:539.147241px;}
.y24e{bottom:540.085786px;}
.y22e{bottom:540.088326px;}
.y102{bottom:543.316401px;}
.y183{bottom:543.656643px;}
.y132{bottom:543.657157px;}
.y1ee{bottom:543.657245px;}
.y16b{bottom:544.082011px;}
.y156{bottom:546.632362px;}
.y1b{bottom:547.058248px;}
.yd6{bottom:549.269281px;}
.y204{bottom:550.799967px;}
.y53{bottom:554.032377px;}
.ya0{bottom:554.794356px;}
.y22d{bottom:558.031595px;}
.y155{bottom:561.514800px;}
.y182{bottom:561.599912px;}
.y131{bottom:561.600426px;}
.y1ed{bottom:561.600514px;}
.y16a{bottom:561.940174px;}
.yb8{bottom:562.876253px;}
.y1a{bottom:565.001517px;}
.yd5{bottom:567.212550px;}
.yd3{bottom:567.212586px;}
.y203{bottom:568.658131px;}
.y9f{bottom:570.526203px;}
.y1bd{bottom:571.720045px;}
.y52{bottom:571.975517px;}
.yd4{bottom:572.910150px;}
.y24d{bottom:575.887219px;}
.y22c{bottom:575.974864px;}
.y181{bottom:579.543181px;}
.yb7{bottom:580.819522px;}
.y19{bottom:582.944786px;}
.y9e{bottom:583.197249px;}
.yd2{bottom:585.155855px;}
.y202{bottom:586.601400px;}
.y51{bottom:589.833478px;}
.y22b{bottom:593.492606px;}
.y24c{bottom:593.830488px;}
.y180{bottom:597.486450px;}
.y101{bottom:597.486629px;}
.y130{bottom:597.486964px;}
.y1ec{bottom:597.487052px;}
.y169{bottom:597.826712px;}
.yb6{bottom:598.762791px;}
.y9d{bottom:598.929096px;}
.y18{bottom:600.802950px;}
.y50{bottom:607.776619px;}
.y9c{bottom:611.600142px;}
.y24b{bottom:611.773757px;}
.y100{bottom:615.429898px;}
.y1bc{bottom:615.429929px;}
.y12f{bottom:615.430233px;}
.y1eb{bottom:615.430321px;}
.yb5{bottom:616.706060px;}
.y17{bottom:618.746250px;}
.yd1{bottom:621.042393px;}
.y4f{bottom:625.719759px;}
.y9b{bottom:627.331988px;}
.y24a{bottom:629.717025px;}
.y1a1{bottom:630.821110px;}
.yff{bottom:633.288062px;}
.y1bb{bottom:633.288093px;}
.y12e{bottom:633.288397px;}
.y1ea{bottom:633.288485px;}
.y168{bottom:633.713250px;}
.yb4{bottom:634.649329px;}
.y22a{bottom:636.947175px;}
.y21e{bottom:637.199600px;}
.yd0{bottom:638.985662px;}
.y9a{bottom:642.979104px;}
.y4e{bottom:643.662900px;}
.y1a0{bottom:645.788280px;}
.y249{bottom:647.660294px;}
.y16{bottom:648.594391px;}
.yfe{bottom:651.231331px;}
.y1ba{bottom:651.231362px;}
.y12d{bottom:651.231666px;}
.y1e9{bottom:651.231754px;}
.y21d{bottom:652.166769px;}
.yb3{bottom:652.592598px;}
.y229{bottom:654.890444px;}
.y99{bottom:659.391942px;}
.y19f{bottom:660.755450px;}
.y15{bottom:663.561561px;}
.y4d{bottom:664.582500px;}
.y248{bottom:665.178036px;}
.y21c{bottom:667.048161px;}
.yfd{bottom:669.174600px;}
.y1b9{bottom:669.174631px;}
.y12c{bottom:669.174935px;}
.y1e8{bottom:669.175023px;}
.y167{bottom:669.600092px;}
.yb2{bottom:670.535867px;}
.y228{bottom:672.748607px;}
.ycf{bottom:674.872200px;}
.y19e{bottom:675.722619px;}
.y98{bottom:677.335181px;}
.y14{bottom:678.528730px;}
.y21b{bottom:682.015330px;}
.y284{bottom:683.380887px;}
.y279{bottom:684.910241px;}
.y291{bottom:684.915472px;}
.y1b8{bottom:687.117900px;}
.y12b{bottom:687.118204px;}
.y1e7{bottom:687.118292px;}
.y166{bottom:687.543361px;}
.yb1{bottom:688.394030px;}
.y97{bottom:690.090958px;}
.y19d{bottom:690.604011px;}
.y227{bottom:690.691876px;}
.y13{bottom:693.495900px;}
.y283{bottom:695.371988px;}
.y278{bottom:696.815564px;}
.y290{bottom:696.820794px;}
.y21a{bottom:696.982500px;}
.yfb{bottom:702.935250px;}
.y247{bottom:703.276045px;}
.yfc{bottom:705.061200px;}
.yfa{bottom:705.061442px;}
.y12a{bottom:705.061473px;}
.y1e6{bottom:705.061561px;}
.yee{bottom:705.315223px;}
.y165{bottom:705.401524px;}
.y19c{bottom:705.571180px;}
.y96{bottom:706.163824px;}
.yb0{bottom:706.337299px;}
.y277{bottom:708.805618px;}
.y28f{bottom:708.810849px;}
.yed{bottom:720.197661px;}
.y12{bottom:720.200539px;}
.y11{bottom:720.370002px;}
.y19b{bottom:720.538350px;}
.y276{bottom:720.626209px;}
.y275{bottom:720.710941px;}
.y282{bottom:720.714079px;}
.y28e{bottom:720.716171px;}
.y246{bottom:721.219314px;}
.y129{bottom:723.004742px;}
.y1e5{bottom:723.004829px;}
.y1b7{bottom:723.005257px;}
.y164{bottom:723.344793px;}
.y95{bottom:724.022331px;}
.y4c{bottom:726.235915px;}
.y226{bottom:726.578414px;}
.y274{bottom:732.700995px;}
.y281{bottom:732.704134px;}
.y28d{bottom:732.706226px;}
.yec{bottom:735.164830px;}
.y4b{bottom:738.906961px;}
.yf9{bottom:740.947979px;}
.y128{bottom:740.948011px;}
.y1b6{bottom:740.948526px;}
.yf{bottom:741.289276px;}
.y94{bottom:741.965569px;}
.yaf{bottom:742.223837px;}
.y225{bottom:744.181261px;}
.y10{bottom:744.350371px;}
.y28c{bottom:744.526817px;}
.y273{bottom:744.606318px;}
.y280{bottom:744.609456px;}
.y28b{bottom:744.611549px;}
.yeb{bottom:750.132000px;}
.y93{bottom:754.550838px;}
.y92{bottom:754.721347px;}
.y272{bottom:756.511641px;}
.y271{bottom:756.596372px;}
.y27f{bottom:756.599511px;}
.y4a{bottom:756.850200px;}
.y245{bottom:757.020746px;}
.y127{bottom:758.891279px;}
.y1e4{bottom:758.891367px;}
.y1b5{bottom:758.891795px;}
.y163{bottom:759.231331px;}
.y49{bottom:759.996600px;}
.yae{bottom:760.167106px;}
.ye{bottom:762.208551px;}
.y28a{bottom:770.038372px;}
.y91{bottom:770.368462px;}
.y48{bottom:774.793500px;}
.y244{bottom:774.964015px;}
.yf8{bottom:776.749412px;}
.y126{bottom:776.749443px;}
.y1e3{bottom:776.749531px;}
.y1b4{bottom:776.749959px;}
.y162{bottom:777.174600px;}
.y47{bottom:777.939900px;}
.yad{bottom:778.110375px;}
.y270{bottom:782.023196px;}
.y27e{bottom:782.026334px;}
.y289{bottom:782.028426px;}
.yd{bottom:783.127825px;}
.y90{bottom:786.866032px;}
.y224{bottom:787.550724px;}
.y46{bottom:792.736800px;}
.y243{bottom:792.907284px;}
.y26f{bottom:793.928519px;}
.y27d{bottom:793.931657px;}
.y288{bottom:793.933749px;}
.yf7{bottom:794.692681px;}
.y1e2{bottom:794.692800px;}
.y1b3{bottom:794.693228px;}
.y45{bottom:795.798300px;}
.yac{bottom:796.053644px;}
.yc{bottom:804.047100px;}
.y8f{bottom:804.724539px;}
.y223{bottom:805.493993px;}
.y26e{bottom:805.918573px;}
.y27c{bottom:805.921711px;}
.y287{bottom:805.923803px;}
.y44{bottom:810.595122px;}
.y242{bottom:810.850553px;}
.yf6{bottom:812.635950px;}
.y125{bottom:812.635981px;}
.y161{bottom:813.061535px;}
.y26d{bottom:817.908627px;}
.y27b{bottom:817.911766px;}
.y286{bottom:817.913858px;}
.y8e{bottom:821.222109px;}
.y43{bottom:822.926196px;}
.y42{bottom:823.350900px;}
.y222{bottom:823.437262px;}
.y41{bottom:826.497450px;}
.y241{bottom:828.793822px;}
.y26c{bottom:829.813950px;}
.y27a{bottom:829.817088px;}
.y285{bottom:829.819180px;}
.y124{bottom:830.579250px;}
.y1b2{bottom:830.579766px;}
.y160{bottom:831.004804px;}
.yab{bottom:831.855077px;}
.y8d{bottom:839.165348px;}
.y40{bottom:841.039109px;}
.y3f{bottom:841.294350px;}
.y3e{bottom:844.440750px;}
.yf5{bottom:848.522581px;}
.y1b1{bottom:848.523035px;}
.y15f{bottom:848.862967px;}
.yaa{bottom:849.798346px;}
.y26b{bottom:853.454850px;}
.y8c{bottom:855.238213px;}
.y3d{bottom:859.237404px;}
.y221{bottom:859.323800px;}
.y240{bottom:864.680360px;}
.yf4{bottom:866.465850px;}
.yf2{bottom:866.466304px;}
.y15e{bottom:866.806236px;}
.ya9{bottom:867.741614px;}
.y8b{bottom:871.651052px;}
.y3b{bottom:871.653209px;}
.y3c{bottom:871.823718px;}
.y3a{bottom:871.908450px;}
.yf3{bottom:872.078550px;}
.y39{bottom:875.054850px;}
.y4{bottom:876.073232px;}
.y220{bottom:877.181964px;}
.y23f{bottom:882.198102px;}
.yf1{bottom:884.409573px;}
.ya8{bottom:885.684883px;}
.y8a{bottom:887.723917px;}
.y21f{bottom:894.784811px;}
.y26a{bottom:895.294350px;}
.yf0{bottom:902.352842px;}
.y37{bottom:902.437423px;}
.y38{bottom:902.608383px;}
.y15d{bottom:902.692774px;}
.y33{bottom:902.777700px;}
.ya7{bottom:903.287731px;}
.y35{bottom:903.543150px;}
.y89{bottom:904.136755px;}
.y36{bottom:906.519103px;}
.y34{bottom:907.710000px;}
.y269{bottom:916.213950px;}
.y3{bottom:917.913691px;}
.y88{bottom:920.209621px;}
.y123{bottom:920.211005px;}
.y15c{bottom:920.636043px;}
.y87{bottom:936.622459px;}
.ya6{bottom:938.154274px;}
.y15b{bottom:938.579312px;}
.y32{bottom:944.362091px;}
.y268{bottom:952.015562px;}
.y86{bottom:952.695325px;}
.ya5{bottom:956.097543px;}
.y2{bottom:959.754150px;}
.y85{bottom:969.108163px;}
.y267{bottom:969.958831px;}
.yef{bottom:974.040812px;}
.y15a{bottom:974.465850px;}
.y31{bottom:975.741450px;}
.y84{bottom:987.051402px;}
.y266{bottom:987.902100px;}
.ya4{bottom:991.984081px;}
.y1{bottom:1000.232850px;}
.y83{bottom:1005.165150px;}
.y30{bottom:1005.590400px;}
.y265{bottom:1008.821850px;}
.ya3{bottom:1009.927350px;}
.ya2{bottom:1054.402800px;}
.y2f{bottom:1061.461050px;}
.y2e{bottom:1077.667650px;}
.h1b{height:20.653066px;}
.h11{height:21.420288px;}
.h1a{height:26.011699px;}
.h8{height:27.545242px;}
.h18{height:31.633157px;}
.h7{height:32.135270px;}
.h13{height:32.474197px;}
.h19{height:32.817308px;}
.h12{height:33.156235px;}
.he{height:33.662362px;}
.h14{height:33.834088px;}
.h4{height:39.021466px;}
.ha{height:39.057203px;}
.h1c{height:39.702309px;}
.h5{height:41.316710px;}
.h6{height:41.994563px;}
.h15{height:43.612877px;}
.h16{height:45.907661px;}
.hd{height:50.499072px;}
.h10{height:51.176338px;}
.hf{height:51.860180px;}
.hb{height:64.270541px;}
.h9{height:68.927569px;}
.h17{height:73.973886px;}
.h2{height:82.634342px;}
.hc{height:91.815782px;}
.h3{height:110.178202px;}
.h0{height:1174.479000px;}
.h1{height:1174.500000px;}
.w0{width:904.479000px;}
.w1{width:904.500000px;}
.x0{left:0.000000px;}
.x1{left:86.485050px;}
.x13{left:90.566850px;}
.x23{left:104.428319px;}
.x1c{left:106.894500px;}
.x1d{left:111.231450px;}
.x32{left:113.273921px;}
.x2f{left:114.293434px;}
.x22{left:115.313400px;}
.x24{left:117.014100px;}
.x33{left:118.970100px;}
.x2a{left:121.436638px;}
.x34{left:128.752295px;}
.x21{left:143.102850px;}
.x14{left:171.354836px;}
.x35{left:198.481488px;}
.x18{left:204.008957px;}
.x7{left:236.834550px;}
.x17{left:250.951348px;}
.x26{left:261.580950px;}
.x27{left:270.510150px;}
.x8{left:275.357400px;}
.x1b{left:314.645235px;}
.x36{left:335.310583px;}
.x1f{left:336.502056px;}
.x28{left:345.174750px;}
.x29{left:357.930600px;}
.x1e{left:383.188161px;}
.x9{left:417.798300px;}
.xa{left:428.768400px;}
.xb{left:432.595283px;}
.x1a{left:457.936950px;}
.x30{left:478.431300px;}
.x31{left:483.873900px;}
.x15{left:500.968355px;}
.x20{left:504.710112px;}
.x19{left:535.323351px;}
.xc{left:556.157250px;}
.x25{left:563.470800px;}
.xd{left:576.821850px;}
.x37{left:584.136115px;}
.x2b{left:586.856550px;}
.x2c{left:595.105350px;}
.x2d{left:612.708450px;}
.x16{left:623.594957px;}
.x2e{left:625.464450px;}
.xe{left:637.710054px;}
.x38{left:668.580116px;}
.xf{left:681.676466px;}
.x2{left:682.780950px;}
.x3{left:685.842045px;}
.x4{left:706.676588px;}
.x6{left:723.854850px;}
.x10{left:733.804593px;}
.x5{left:751.389300px;}
.x11{left:759.911550px;}
.x12{left:788.824950px;}
@media print{
.v8{vertical-align:-16.327467pt;}
.v3{vertical-align:-13.302765pt;}
.v1{vertical-align:-10.883893pt;}
.v2{vertical-align:-2.723677pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.209874pt;}
.v6{vertical-align:13.304000pt;}
.v7{vertical-align:16.326939pt;}
.v5{vertical-align:37.189881pt;}
.ls22{letter-spacing:-7.441020pt;}
.ls99{letter-spacing:-2.068499pt;}
.ls8d{letter-spacing:-1.765902pt;}
.ls19{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.003719pt;}
.lsb9{letter-spacing:0.011158pt;}
.ls23{letter-spacing:0.021254pt;}
.ls39{letter-spacing:0.029755pt;}
.ls24{letter-spacing:0.081818pt;}
.ls4d{letter-spacing:0.085545pt;}
.ls25{letter-spacing:0.163636pt;}
.ls2a{letter-spacing:0.182249pt;}
.ls69{letter-spacing:0.198700pt;}
.ls58{letter-spacing:0.298081pt;}
.ls47{letter-spacing:0.312426pt;}
.ls42{letter-spacing:0.352277pt;}
.ls94{letter-spacing:0.390533pt;}
.lsb4{letter-spacing:0.397441pt;}
.ls50{letter-spacing:0.401957pt;}
.lsaa{letter-spacing:0.406474pt;}
.ls63{letter-spacing:0.415506pt;}
.ls5d{letter-spacing:0.420023pt;}
.ls80{letter-spacing:0.429055pt;}
.ls9f{letter-spacing:0.433572pt;}
.ls40{letter-spacing:0.442605pt;}
.ls70{letter-spacing:0.469703pt;}
.ls60{letter-spacing:0.483252pt;}
.lsa0{letter-spacing:0.492285pt;}
.lsa7{letter-spacing:0.496801pt;}
.ls20{letter-spacing:0.505834pt;}
.ls52{letter-spacing:0.509552pt;}
.ls9a{letter-spacing:0.514867pt;}
.lsa1{letter-spacing:0.519383pt;}
.ls4a{letter-spacing:0.520710pt;}
.ls93{letter-spacing:0.523899pt;}
.ls1f{letter-spacing:0.524430pt;}
.ls5f{letter-spacing:0.528416pt;}
.ls71{letter-spacing:0.532932pt;}
.ls51{letter-spacing:0.537448pt;}
.ls7d{letter-spacing:0.541965pt;}
.ls15{letter-spacing:0.541978pt;}
.ls18{letter-spacing:0.545166pt;}
.ls8e{letter-spacing:0.546481pt;}
.ls6c{letter-spacing:0.550998pt;}
.ls3e{letter-spacing:0.555514pt;}
.ls64{letter-spacing:0.560030pt;}
.ls16{letter-spacing:0.561107pt;}
.ls7a{letter-spacing:0.564547pt;}
.ls3f{letter-spacing:0.569063pt;}
.ls74{letter-spacing:0.573579pt;}
.ls73{letter-spacing:0.578096pt;}
.ls75{letter-spacing:0.582612pt;}
.ls67{letter-spacing:0.587129pt;}
.ls96{letter-spacing:0.591645pt;}
.ls8a{letter-spacing:0.596161pt;}
.ls1a{letter-spacing:0.597753pt;}
.ls7c{letter-spacing:0.600678pt;}
.ls78{letter-spacing:0.605194pt;}
.ls6d{letter-spacing:0.614227pt;}
.ls5b{letter-spacing:0.618743pt;}
.ls6a{letter-spacing:0.623260pt;}
.ls95{letter-spacing:0.627776pt;}
.ls90{letter-spacing:0.632292pt;}
.ls55{letter-spacing:0.636809pt;}
.ls1b{letter-spacing:0.640792pt;}
.ls57{letter-spacing:0.641325pt;}
.ls7{letter-spacing:0.645574pt;}
.ls79{letter-spacing:0.645841pt;}
.lsa{letter-spacing:0.647169pt;}
.ls4{letter-spacing:0.650356pt;}
.lsc{letter-spacing:0.650358pt;}
.ls35{letter-spacing:0.654874pt;}
.ls34{letter-spacing:0.659391pt;}
.ls44{letter-spacing:0.663907pt;}
.ls8{letter-spacing:0.664702pt;}
.ls9{letter-spacing:0.665765pt;}
.lsf{letter-spacing:0.668423pt;}
.ls5{letter-spacing:0.669484pt;}
.ls41{letter-spacing:0.672940pt;}
.lsb{letter-spacing:0.673204pt;}
.ls37{letter-spacing:0.677456pt;}
.ls36{letter-spacing:0.681972pt;}
.ls10{letter-spacing:0.686489pt;}
.ls12{letter-spacing:0.688631pt;}
.ls1{letter-spacing:0.691005pt;}
.ls53{letter-spacing:0.695521pt;}
.ls77{letter-spacing:0.700038pt;}
.ls0{letter-spacing:0.704554pt;}
.ls54{letter-spacing:0.709071pt;}
.ls3{letter-spacing:0.713587pt;}
.ls2{letter-spacing:0.718103pt;}
.ls5a{letter-spacing:0.722620pt;}
.lse{letter-spacing:0.727136pt;}
.ls61{letter-spacing:0.731652pt;}
.lsd{letter-spacing:0.736169pt;}
.ls7f{letter-spacing:0.740685pt;}
.ls11{letter-spacing:0.745202pt;}
.ls97{letter-spacing:0.749718pt;}
.ls8f{letter-spacing:0.754234pt;}
.ls32{letter-spacing:0.759814pt;}
.ls3b{letter-spacing:0.770441pt;}
.ls8b{letter-spacing:0.772300pt;}
.ls13{letter-spacing:0.777898pt;}
.ls2d{letter-spacing:0.807635pt;}
.ls2e{letter-spacing:0.823575pt;}
.ls33{letter-spacing:0.828888pt;}
.ls31{letter-spacing:0.834202pt;}
.ls2f{letter-spacing:0.839515pt;}
.ls14{letter-spacing:0.844848pt;}
.ls21{letter-spacing:0.857601pt;}
.ls5e{letter-spacing:0.862627pt;}
.ls2c{letter-spacing:0.876709pt;}
.ls30{letter-spacing:0.887336pt;}
.ls3d{letter-spacing:0.897962pt;}
.ls89{letter-spacing:0.921340pt;}
.ls3c{letter-spacing:0.951096pt;}
.lsb2{letter-spacing:1.182756pt;}
.ls87{letter-spacing:1.208792pt;}
.ls9d{letter-spacing:1.212511pt;}
.lsae{letter-spacing:1.219950pt;}
.lsa5{letter-spacing:1.223669pt;}
.ls45{letter-spacing:1.227389pt;}
.ls6e{letter-spacing:1.231108pt;}
.ls9b{letter-spacing:1.234828pt;}
.ls6f{letter-spacing:1.238547pt;}
.ls85{letter-spacing:1.242266pt;}
.ls91{letter-spacing:1.245986pt;}
.ls9c{letter-spacing:1.249705pt;}
.ls84{letter-spacing:1.253424pt;}
.lsac{letter-spacing:1.257144pt;}
.lsa4{letter-spacing:1.260863pt;}
.lsa6{letter-spacing:1.275740pt;}
.ls9e{letter-spacing:1.298057pt;}
.lsad{letter-spacing:1.312934pt;}
.lsaf{letter-spacing:1.331531pt;}
.ls6b{letter-spacing:2.637067pt;}
.ls5c{letter-spacing:2.637600pt;}
.ls49{letter-spacing:2.705333pt;}
.lsb7{letter-spacing:5.021136pt;}
.lsb8{letter-spacing:5.623672pt;}
.ls2b{letter-spacing:6.531196pt;}
.ls1e{letter-spacing:7.316501pt;}
.ls29{letter-spacing:7.802808pt;}
.lsb0{letter-spacing:8.170119pt;}
.lsb5{letter-spacing:8.861124pt;}
.ls17{letter-spacing:8.949015pt;}
.ls88{letter-spacing:9.741817pt;}
.lsb3{letter-spacing:9.877308pt;}
.ls48{letter-spacing:10.246837pt;}
.ls4e{letter-spacing:10.257995pt;}
.ls3a{letter-spacing:10.492315pt;}
.ls7b{letter-spacing:10.631543pt;}
.ls46{letter-spacing:10.849373pt;}
.ls76{letter-spacing:10.952205pt;}
.ls6{letter-spacing:11.247327pt;}
.ls43{letter-spacing:11.254802pt;}
.ls8c{letter-spacing:11.318032pt;}
.ls65{letter-spacing:11.927742pt;}
.lsa8{letter-spacing:12.460674pt;}
.ls27{letter-spacing:12.636458pt;}
.ls59{letter-spacing:12.695525pt;}
.ls56{letter-spacing:12.889729pt;}
.ls1c{letter-spacing:12.930600pt;}
.ls66{letter-spacing:13.074901pt;}
.ls7e{letter-spacing:13.147163pt;}
.ls72{letter-spacing:13.205876pt;}
.lsab{letter-spacing:13.210392pt;}
.lsb1{letter-spacing:13.237490pt;}
.ls92{letter-spacing:13.255556pt;}
.lsba{letter-spacing:13.314269pt;}
.ls68{letter-spacing:13.368465pt;}
.ls81{letter-spacing:13.391047pt;}
.ls82{letter-spacing:13.973659pt;}
.lsa9{letter-spacing:14.709828pt;}
.ls98{letter-spacing:14.980810pt;}
.lsb6{letter-spacing:15.319538pt;}
.lsa2{letter-spacing:15.477611pt;}
.ls26{letter-spacing:16.505715pt;}
.lsa3{letter-spacing:16.701549pt;}
.ls86{letter-spacing:17.062858pt;}
.ls83{letter-spacing:17.302226pt;}
.ls62{letter-spacing:20.115927pt;}
.ls1d{letter-spacing:20.318831pt;}
.ls28{letter-spacing:25.337208pt;}
.ls4f{letter-spacing:91.343762pt;}
.ls4c{letter-spacing:239.779700pt;}
.ls4b{letter-spacing:255.802703pt;}
.wse{word-spacing:-20.366652pt;}
.wsa5{word-spacing:-20.161091pt;}
.ws122{word-spacing:-17.108022pt;}
.ws1b5{word-spacing:-16.746712pt;}
.ws1b1{word-spacing:-15.522775pt;}
.ws277{word-spacing:-15.364702pt;}
.ws1ed{word-spacing:-14.754992pt;}
.ws110{word-spacing:-13.436211pt;}
.ws293{word-spacing:-13.359432pt;}
.ws153{word-spacing:-13.300719pt;}
.ws21b{word-spacing:-13.282654pt;}
.ws1f9{word-spacing:-13.255556pt;}
.wsdb{word-spacing:-13.251039pt;}
.wsfa{word-spacing:-13.192327pt;}
.wsbd{word-spacing:-13.120065pt;}
.wsd{word-spacing:-12.978420pt;}
.wsbc{word-spacing:-11.972906pt;}
.ws133{word-spacing:-11.363195pt;}
.wsf2{word-spacing:-10.676707pt;}
.ws24d{word-spacing:-9.922472pt;}
.ws28b{word-spacing:-8.906288pt;}
.ws188{word-spacing:-7.623638pt;}
.wsf{word-spacing:-7.364321pt;}
.ws231{word-spacing:-0.817464pt;}
.ws18a{word-spacing:-0.799398pt;}
.ws196{word-spacing:-0.781333pt;}
.ws1de{word-spacing:-0.776816pt;}
.ws17{word-spacing:-0.772300pt;}
.ws181{word-spacing:-0.767783pt;}
.ws8f{word-spacing:-0.763267pt;}
.ws272{word-spacing:-0.758751pt;}
.ws105{word-spacing:-0.754234pt;}
.ws9c{word-spacing:-0.749718pt;}
.ws18d{word-spacing:-0.745202pt;}
.wsd9{word-spacing:-0.718103pt;}
.ws1eb{word-spacing:-0.704554pt;}
.ws10{word-spacing:-0.702959pt;}
.wsa{word-spacing:-0.698176pt;}
.ws14{word-spacing:-0.695521pt;}
.ws12{word-spacing:-0.684362pt;}
.ws8c{word-spacing:-0.681972pt;}
.ws10f{word-spacing:-0.623260pt;}
.ws201{word-spacing:-0.582612pt;}
.ws24{word-spacing:-0.577047pt;}
.ws75{word-spacing:-0.557904pt;}
.ws1dc{word-spacing:-0.541965pt;}
.wsbe{word-spacing:-0.465186pt;}
.ws2f{word-spacing:-0.058448pt;}
.ws1dd{word-spacing:-0.045164pt;}
.ws2c{word-spacing:-0.038961pt;}
.ws32{word-spacing:-0.037194pt;}
.ws26{word-spacing:-0.031881pt;}
.wsf1{word-spacing:-0.030106pt;}
.ws28{word-spacing:0.000000pt;}
.ws13f{word-spacing:1.720738pt;}
.ws1fc{word-spacing:2.023335pt;}
.ws1cf{word-spacing:5.322404pt;}
.ws168{word-spacing:5.482337pt;}
.ws1ce{word-spacing:5.489775pt;}
.ws169{word-spacing:5.515811pt;}
.ws1c9{word-spacing:5.645988pt;}
.ws1d4{word-spacing:5.664585pt;}
.ws1d0{word-spacing:5.709218pt;}
.ws207{word-spacing:5.943537pt;}
.ws1d3{word-spacing:6.389860pt;}
.ws20f{word-spacing:6.401019pt;}
.ws1cb{word-spacing:6.586987pt;}
.ws1d2{word-spacing:6.601864pt;}
.ws1ca{word-spacing:6.653935pt;}
.ws1be{word-spacing:6.676251pt;}
.ws129{word-spacing:6.713445pt;}
.ws20c{word-spacing:6.865939pt;}
.ws20d{word-spacing:6.895693pt;}
.ws1bf{word-spacing:6.910571pt;}
.ws214{word-spacing:6.928117pt;}
.ws1c0{word-spacing:6.940326pt;}
.ws215{word-spacing:7.054575pt;}
.ws216{word-spacing:7.235230pt;}
.wseb{word-spacing:7.307492pt;}
.wsb1{word-spacing:7.375238pt;}
.ws117{word-spacing:7.452016pt;}
.wsec{word-spacing:7.461049pt;}
.ws21c{word-spacing:7.506212pt;}
.ws1f4{word-spacing:7.515245pt;}
.ws38{word-spacing:7.594933pt;}
.ws1c3{word-spacing:7.610089pt;}
.ws116{word-spacing:7.614605pt;}
.ws104{word-spacing:7.632671pt;}
.ws234{word-spacing:7.722998pt;}
.ws21a{word-spacing:7.750097pt;}
.ws197{word-spacing:7.754613pt;}
.ws200{word-spacing:7.763646pt;}
.ws21e{word-spacing:7.786228pt;}
.ws21{word-spacing:7.791733pt;}
.wse7{word-spacing:7.810656pt;}
.ws143{word-spacing:7.844940pt;}
.ws19{word-spacing:7.853973pt;}
.ws25{word-spacing:7.868247pt;}
.ws233{word-spacing:7.890104pt;}
.ws1fa{word-spacing:7.912686pt;}
.ws236{word-spacing:7.921719pt;}
.ws39{word-spacing:7.937114pt;}
.ws12f{word-spacing:7.944301pt;}
.ws203{word-spacing:7.971399pt;}
.ws102{word-spacing:7.993981pt;}
.ws175{word-spacing:8.007530pt;}
.ws1c4{word-spacing:8.025595pt;}
.ws123{word-spacing:8.034628pt;}
.ws11b{word-spacing:8.048177pt;}
.wsb3{word-spacing:8.061726pt;}
.ws232{word-spacing:8.066243pt;}
.wse8{word-spacing:8.097047pt;}
.ws222{word-spacing:8.115923pt;}
.ws235{word-spacing:8.124956pt;}
.ws12e{word-spacing:8.165603pt;}
.ws135{word-spacing:8.192701pt;}
.ws103{word-spacing:8.206250pt;}
.ws20{word-spacing:8.231691pt;}
.ws1f5{word-spacing:8.273996pt;}
.ws136{word-spacing:8.301094pt;}
.wsfb{word-spacing:8.305611pt;}
.ws1fb{word-spacing:8.341742pt;}
.ws21d{word-spacing:8.355291pt;}
.ws22{word-spacing:8.368780pt;}
.ws275{word-spacing:8.418520pt;}
.wsfc{word-spacing:8.450135pt;}
.wsee{word-spacing:8.459167pt;}
.ws23{word-spacing:8.486740pt;}
.wsdc{word-spacing:8.517880pt;}
.ws1ef{word-spacing:8.522396pt;}
.ws23c{word-spacing:8.535946pt;}
.ws273{word-spacing:8.540462pt;}
.ws130{word-spacing:8.554011pt;}
.ws27b{word-spacing:8.608208pt;}
.ws29e{word-spacing:8.614038pt;}
.ws137{word-spacing:8.621757pt;}
.ws6c{word-spacing:8.644339pt;}
.ws59{word-spacing:8.671437pt;}
.ws1cd{word-spacing:8.688425pt;}
.ws27c{word-spacing:8.689502pt;}
.wscc{word-spacing:8.752732pt;}
.ws1d5{word-spacing:8.785128pt;}
.ws23d{word-spacing:8.797895pt;}
.ws20e{word-spacing:8.800006pt;}
.ws1cc{word-spacing:8.811164pt;}
.wscd{word-spacing:8.815961pt;}
.ws23e{word-spacing:8.824993pt;}
.ws127{word-spacing:8.826041pt;}
.ws111{word-spacing:8.829510pt;}
.ws20b{word-spacing:8.855796pt;}
.ws24b{word-spacing:8.870157pt;}
.ws1c1{word-spacing:8.885551pt;}
.ws1d6{word-spacing:8.930183pt;}
.wsce{word-spacing:8.955968pt;}
.ws274{word-spacing:8.969517pt;}
.wscb{word-spacing:8.974034pt;}
.ws1bd{word-spacing:8.974816pt;}
.ws212{word-spacing:8.982254pt;}
.wsea{word-spacing:8.985974pt;}
.ws209{word-spacing:8.989693pt;}
.ws198{word-spacing:8.996616pt;}
.ws12b{word-spacing:8.997132pt;}
.ws12c{word-spacing:9.000851pt;}
.ws24a{word-spacing:9.001132pt;}
.ws167{word-spacing:9.004571pt;}
.ws208{word-spacing:9.008290pt;}
.ws1bc{word-spacing:9.012009pt;}
.ws254{word-spacing:9.019448pt;}
.ws213{word-spacing:9.034325pt;}
.ws128{word-spacing:9.041764pt;}
.ws112{word-spacing:9.055329pt;}
.wsdd{word-spacing:9.064361pt;}
.ws51{word-spacing:9.082427pt;}
.ws16a{word-spacing:9.104993pt;}
.ws113{word-spacing:9.109525pt;}
.ws211{word-spacing:9.112432pt;}
.ws253{word-spacing:9.116151pt;}
.wsbf{word-spacing:9.118558pt;}
.wse9{word-spacing:9.119871pt;}
.ws210{word-spacing:9.127309pt;}
.ws2a2{word-spacing:9.131029pt;}
.ws1d1{word-spacing:9.149626pt;}
.ws7{word-spacing:9.190820pt;}
.ws202{word-spacing:9.204369pt;}
.ws1ab{word-spacing:9.217918pt;}
.ws24f{word-spacing:9.240500pt;}
.ws22b{word-spacing:9.245016pt;}
.ws26b{word-spacing:9.263082pt;}
.ws24e{word-spacing:9.267598pt;}
.ws20a{word-spacing:9.268645pt;}
.wsb5{word-spacing:9.276631pt;}
.ws252{word-spacing:9.305839pt;}
.ws245{word-spacing:9.317278pt;}
.ws12a{word-spacing:9.320716pt;}
.ws22e{word-spacing:9.321795pt;}
.ws1d7{word-spacing:9.328155pt;}
.ws240{word-spacing:9.339860pt;}
.ws13d{word-spacing:9.357926pt;}
.wsc2{word-spacing:9.366958pt;}
.ws14e{word-spacing:9.385024pt;}
.ws19e{word-spacing:9.403089pt;}
.ws132{word-spacing:9.421155pt;}
.ws1b8{word-spacing:9.448253pt;}
.wsf5{word-spacing:9.457286pt;}
.ws10e{word-spacing:9.511482pt;}
.ws237{word-spacing:9.525031pt;}
.ws244{word-spacing:9.534064pt;}
.wsb0{word-spacing:9.552130pt;}
.ws18c{word-spacing:9.561162pt;}
.ws5{word-spacing:9.570195pt;}
.ws219{word-spacing:9.583744pt;}
.ws243{word-spacing:9.588261pt;}
.wsc0{word-spacing:9.597293pt;}
.wsf0{word-spacing:9.601810pt;}
.ws14f{word-spacing:9.610842pt;}
.wsf6{word-spacing:9.619875pt;}
.ws18b{word-spacing:9.633424pt;}
.ws241{word-spacing:9.642457pt;}
.ws13{word-spacing:9.644300pt;}
.ws152{word-spacing:9.646973pt;}
.ws6b{word-spacing:9.678588pt;}
.wsc1{word-spacing:9.696654pt;}
.ws22c{word-spacing:9.832145pt;}
.ws6a{word-spacing:9.850210pt;}
.ws186{word-spacing:9.854727pt;}
.ws6d{word-spacing:9.863743pt;}
.ws173{word-spacing:9.872792pt;}
.ws124{word-spacing:9.899890pt;}
.ws14b{word-spacing:9.936021pt;}
.wsa2{word-spacing:9.945054pt;}
.ws295{word-spacing:9.953007pt;}
.ws166{word-spacing:9.956727pt;}
.ws229{word-spacing:9.972152pt;}
.ws28c{word-spacing:10.017316pt;}
.ws125{word-spacing:10.035382pt;}
.wsa3{word-spacing:10.057963pt;}
.ws1f7{word-spacing:10.076029pt;}
.ws25b{word-spacing:10.089578pt;}
.ws2a1{word-spacing:10.105501pt;}
.ws25a{word-spacing:10.125709pt;}
.ws11{word-spacing:10.131537pt;}
.ws118{word-spacing:10.148291pt;}
.ws185{word-spacing:10.166356pt;}
.ws192{word-spacing:10.188938pt;}
.wsac{word-spacing:10.193455pt;}
.ws5f{word-spacing:10.220801pt;}
.ws17f{word-spacing:10.234102pt;}
.ws3e{word-spacing:10.239398pt;}
.ws80{word-spacing:10.246837pt;}
.ws65{word-spacing:10.254276pt;}
.ws37{word-spacing:10.257995pt;}
.ws84{word-spacing:10.265434pt;}
.ws25c{word-spacing:10.265717pt;}
.ws3b{word-spacing:10.272872pt;}
.ws7a{word-spacing:10.280311pt;}
.ws31{word-spacing:10.284030pt;}
.ws296{word-spacing:10.291469pt;}
.ws87{word-spacing:10.295188pt;}
.ws71{word-spacing:10.313785pt;}
.ws178{word-spacing:10.319913pt;}
.ws19c{word-spacing:10.328946pt;}
.ws86{word-spacing:10.332382pt;}
.wsf4{word-spacing:10.333462pt;}
.ws63{word-spacing:10.339821pt;}
.ws85{word-spacing:10.343540pt;}
.ws3a{word-spacing:10.350979pt;}
.ws29d{word-spacing:10.354698pt;}
.ws191{word-spacing:10.356044pt;}
.ws66{word-spacing:10.362137pt;}
.ws33{word-spacing:10.369576pt;}
.ws88{word-spacing:10.373295pt;}
.ws7e{word-spacing:10.395611pt;}
.ws204{word-spacing:10.396691pt;}
.ws190{word-spacing:10.401208pt;}
.ws6f{word-spacing:10.403050pt;}
.ws36{word-spacing:10.417927pt;}
.ws34{word-spacing:10.429085pt;}
.ws74{word-spacing:10.432805pt;}
.ws70{word-spacing:10.436524pt;}
.ws183{word-spacing:10.441855pt;}
.ws2a0{word-spacing:10.447682pt;}
.ws83{word-spacing:10.455121pt;}
.ws3c{word-spacing:10.458840pt;}
.wsab{word-spacing:10.464437pt;}
.ws6e{word-spacing:10.466279pt;}
.ws89{word-spacing:10.477986pt;}
.ws35{word-spacing:10.481156pt;}
.ws19a{word-spacing:10.496052pt;}
.ws7c{word-spacing:10.507192pt;}
.ws61{word-spacing:10.510911pt;}
.ws100{word-spacing:10.514117pt;}
.ws62{word-spacing:10.514631pt;}
.ws1c8{word-spacing:10.518350pt;}
.ws184{word-spacing:10.536699pt;}
.wsff{word-spacing:10.550248pt;}
.ws64{word-spacing:10.551824pt;}
.ws29f{word-spacing:10.559263pt;}
.wse6{word-spacing:10.562982pt;}
.ws72{word-spacing:10.574140pt;}
.ws101{word-spacing:10.577346pt;}
.ws3d{word-spacing:10.577860pt;}
.ws251{word-spacing:10.581579pt;}
.ws1d9{word-spacing:10.586379pt;}
.wsbb{word-spacing:10.595412pt;}
.ws60{word-spacing:10.600176pt;}
.ws73{word-spacing:10.603895pt;}
.ws81{word-spacing:10.611334pt;}
.ws79{word-spacing:10.633650pt;}
.ws77{word-spacing:10.641089pt;}
.ws1d8{word-spacing:10.645092pt;}
.ws7b{word-spacing:10.678283pt;}
.wsaa{word-spacing:10.699288pt;}
.ws1bb{word-spacing:10.700599pt;}
.ws82{word-spacing:10.711757pt;}
.ws40{word-spacing:10.734073pt;}
.ws206{word-spacing:10.737792pt;}
.ws24c{word-spacing:10.771550pt;}
.ws144{word-spacing:10.776067pt;}
.wsb2{word-spacing:10.780583pt;}
.ws19d{word-spacing:10.789616pt;}
.ws1ff{word-spacing:10.798649pt;}
.ws1aa{word-spacing:10.830263pt;}
.ws164{word-spacing:10.843812pt;}
.ws1da{word-spacing:10.857361pt;}
.ws227{word-spacing:10.866394pt;}
.ws163{word-spacing:10.870911pt;}
.ws26a{word-spacing:10.879943pt;}
.ws1c5{word-spacing:10.902525pt;}
.ws146{word-spacing:10.925107pt;}
.ws96{word-spacing:10.934140pt;}
.ws1fe{word-spacing:10.974787pt;}
.ws3f{word-spacing:10.975831pt;}
.ws41{word-spacing:10.986989pt;}
.ws145{word-spacing:11.042533pt;}
.ws1f0{word-spacing:11.060598pt;}
.wsb4{word-spacing:11.065115pt;}
.ws92{word-spacing:11.092213pt;}
.ws1f2{word-spacing:11.096729pt;}
.ws126{word-spacing:11.110278pt;}
.ws1a4{word-spacing:11.137377pt;}
.ws1a3{word-spacing:11.209639pt;}
.wsc9{word-spacing:11.236737pt;}
.ws238{word-spacing:11.241253pt;}
.wsc3{word-spacing:11.245770pt;}
.ws284{word-spacing:11.254802pt;}
.ws1df{word-spacing:11.259319pt;}
.ws1f8{word-spacing:11.263835pt;}
.ws25d{word-spacing:11.281901pt;}
.wsc4{word-spacing:11.345130pt;}
.ws93{word-spacing:11.390294pt;}
.ws98{word-spacing:11.426425pt;}
.ws8{word-spacing:11.435457pt;}
.ws270{word-spacing:11.453523pt;}
.ws25e{word-spacing:11.458039pt;}
.ws97{word-spacing:11.462556pt;}
.ws194{word-spacing:11.471588pt;}
.ws161{word-spacing:11.489654pt;}
.ws13c{word-spacing:11.507719pt;}
.ws1e9{word-spacing:11.512236pt;}
.ws1e{word-spacing:11.530301pt;}
.wsf7{word-spacing:11.539334pt;}
.wsa8{word-spacing:11.543850pt;}
.ws217{word-spacing:11.548367pt;}
.ws140{word-spacing:11.566432pt;}
.ws18{word-spacing:11.575465pt;}
.ws165{word-spacing:11.579981pt;}
.ws94{word-spacing:11.584498pt;}
.ws223{word-spacing:11.589014pt;}
.ws15c{word-spacing:11.593530pt;}
.wsb9{word-spacing:11.598047pt;}
.ws174{word-spacing:11.607079pt;}
.ws156{word-spacing:11.616112pt;}
.ws155{word-spacing:11.620629pt;}
.ws8b{word-spacing:11.625145pt;}
.wsba{word-spacing:11.629661pt;}
.ws9{word-spacing:11.634178pt;}
.ws106{word-spacing:11.638694pt;}
.ws283{word-spacing:11.643210pt;}
.wse3{word-spacing:11.647727pt;}
.ws114{word-spacing:11.652243pt;}
.ws115{word-spacing:11.656760pt;}
.ws1ea{word-spacing:11.661276pt;}
.wsa7{word-spacing:11.665792pt;}
.ws5d{word-spacing:11.670309pt;}
.wsd6{word-spacing:11.674825pt;}
.ws218{word-spacing:11.679341pt;}
.wse5{word-spacing:11.683858pt;}
.wsf8{word-spacing:11.688374pt;}
.ws6{word-spacing:11.692891pt;}
.ws90{word-spacing:11.697407pt;}
.wsae{word-spacing:11.701923pt;}
.ws226{word-spacing:11.706440pt;}
.wsc7{word-spacing:11.710956pt;}
.ws177{word-spacing:11.719989pt;}
.ws8a{word-spacing:11.729022pt;}
.ws1af{word-spacing:11.733538pt;}
.ws1ad{word-spacing:11.738054pt;}
.ws176{word-spacing:11.742571pt;}
.ws11c{word-spacing:11.747087pt;}
.ws151{word-spacing:11.751603pt;}
.wsa9{word-spacing:11.756120pt;}
.wsd7{word-spacing:11.760636pt;}
.ws15{word-spacing:11.765153pt;}
.ws1a2{word-spacing:11.769669pt;}
.wsca{word-spacing:11.774185pt;}
.ws16b{word-spacing:11.778702pt;}
.ws147{word-spacing:11.783218pt;}
.ws281{word-spacing:11.787734pt;}
.wsdf{word-spacing:11.792251pt;}
.wsb8{word-spacing:11.796767pt;}
.ws28d{word-spacing:11.801284pt;}
.ws14a{word-spacing:11.814833pt;}
.wsb6{word-spacing:11.819349pt;}
.ws10d{word-spacing:11.823865pt;}
.ws16f{word-spacing:11.828382pt;}
.ws282{word-spacing:11.837415pt;}
.ws149{word-spacing:11.841931pt;}
.ws193{word-spacing:11.846447pt;}
.ws287{word-spacing:11.850964pt;}
.ws16{word-spacing:11.864513pt;}
.ws1f{word-spacing:11.869029pt;}
.ws249{word-spacing:11.873545pt;}
.ws148{word-spacing:11.882578pt;}
.wse4{word-spacing:11.891611pt;}
.ws150{word-spacing:11.900644pt;}
.ws1d{word-spacing:11.905160pt;}
.wsc8{word-spacing:11.909676pt;}
.ws3{word-spacing:11.914193pt;}
.wsf3{word-spacing:11.918709pt;}
.ws182{word-spacing:11.923226pt;}
.ws5c{word-spacing:11.927742pt;}
.ws278{word-spacing:11.932258pt;}
.ws242{word-spacing:11.941291pt;}
.ws10a{word-spacing:11.945807pt;}
.ws5b{word-spacing:11.954840pt;}
.ws1f3{word-spacing:11.959357pt;}
.ws4{word-spacing:11.963873pt;}
.ws14d{word-spacing:11.972906pt;}
.ws131{word-spacing:11.981938pt;}
.ws17a{word-spacing:11.990971pt;}
.ws9f{word-spacing:11.995488pt;}
.ws162{word-spacing:12.000004pt;}
.ws95{word-spacing:12.004520pt;}
.ws1b{word-spacing:12.013553pt;}
.wsf9{word-spacing:12.018069pt;}
.ws267{word-spacing:12.027102pt;}
.ws195{word-spacing:12.036135pt;}
.ws187{word-spacing:12.040651pt;}
.ws1a{word-spacing:12.049684pt;}
.ws10b{word-spacing:12.058717pt;}
.ws265{word-spacing:12.067750pt;}
.ws154{word-spacing:12.072266pt;}
.ws5a{word-spacing:12.081299pt;}
.ws14c{word-spacing:12.090331pt;}
.ws221{word-spacing:12.094848pt;}
.wsda{word-spacing:12.103881pt;}
.ws250{word-spacing:12.112913pt;}
.ws157{word-spacing:12.126462pt;}
.ws1a0{word-spacing:12.144528pt;}
.wsef{word-spacing:12.153561pt;}
.ws276{word-spacing:12.158077pt;}
.ws1ba{word-spacing:12.167110pt;}
.ws1ac{word-spacing:12.176143pt;}
.ws228{word-spacing:12.194208pt;}
.ws1ee{word-spacing:12.207757pt;}
.ws248{word-spacing:12.216790pt;}
.ws19b{word-spacing:12.248404pt;}
.ws11a{word-spacing:12.257437pt;}
.ws9e{word-spacing:12.261954pt;}
.ws15b{word-spacing:12.266470pt;}
.ws179{word-spacing:12.280019pt;}
.ws54{word-spacing:12.284535pt;}
.wse2{word-spacing:12.298085pt;}
.ws1c{word-spacing:12.311634pt;}
.ws19f{word-spacing:12.316150pt;}
.wse0{word-spacing:12.320666pt;}
.ws9d{word-spacing:12.365830pt;}
.ws279{word-spacing:12.374863pt;}
.ws1a1{word-spacing:12.379379pt;}
.ws58{word-spacing:12.383896pt;}
.wsb{word-spacing:12.390231pt;}
.ws1b9{word-spacing:12.392928pt;}
.wsaf{word-spacing:12.410994pt;}
.ws1ae{word-spacing:12.438092pt;}
.ws69{word-spacing:12.505838pt;}
.wscf{word-spacing:12.514871pt;}
.ws1c6{word-spacing:12.564551pt;}
.ws13b{word-spacing:12.578100pt;}
.ws25f{word-spacing:12.582616pt;}
.ws224{word-spacing:12.600682pt;}
.wsa4{word-spacing:12.605198pt;}
.wsc{word-spacing:12.634114pt;}
.ws1f1{word-spacing:12.645845pt;}
.ws225{word-spacing:12.650362pt;}
.ws1f6{word-spacing:12.672944pt;}
.ws255{word-spacing:12.691009pt;}
.ws23b{word-spacing:12.745206pt;}
.ws199{word-spacing:12.799402pt;}
.ws11d{word-spacing:12.817468pt;}
.wsd5{word-spacing:12.835533pt;}
.ws22d{word-spacing:12.840049pt;}
.ws55{word-spacing:12.889729pt;}
.ws15e{word-spacing:12.921344pt;}
.wsd4{word-spacing:12.948442pt;}
.wsd3{word-spacing:12.957475pt;}
.wsa1{word-spacing:12.966508pt;}
.ws11e{word-spacing:12.971024pt;}
.ws264{word-spacing:12.975541pt;}
.ws15a{word-spacing:12.984573pt;}
.ws1ec{word-spacing:12.993606pt;}
.ws160{word-spacing:13.011672pt;}
.ws263{word-spacing:13.020704pt;}
.ws15d{word-spacing:13.061352pt;}
.ws1a7{word-spacing:13.111032pt;}
.ws239{word-spacing:13.160712pt;}
.ws260{word-spacing:13.169745pt;}
.wsd2{word-spacing:13.187810pt;}
.ws18e{word-spacing:13.196843pt;}
.ws27e{word-spacing:13.219425pt;}
.ws142{word-spacing:13.264588pt;}
.ws141{word-spacing:13.269105pt;}
.ws18f{word-spacing:13.305236pt;}
.ws42{word-spacing:13.405675pt;}
.ws189{word-spacing:13.427178pt;}
.ws1db{word-spacing:13.476858pt;}
.wsa0{word-spacing:13.490407pt;}
.ws27d{word-spacing:13.512989pt;}
.ws1a6{word-spacing:13.531055pt;}
.wsc6{word-spacing:13.571702pt;}
.wsad{word-spacing:13.589767pt;}
.ws43{word-spacing:13.596956pt;}
.ws12d{word-spacing:13.625898pt;}
.ws16c{word-spacing:13.657513pt;}
.ws21f{word-spacing:13.675578pt;}
.ws1a5{word-spacing:13.689128pt;}
.ws26c{word-spacing:13.707193pt;}
.ws109{word-spacing:13.734291pt;}
.ws261{word-spacing:13.765906pt;}
.wse1{word-spacing:13.783971pt;}
.ws134{word-spacing:13.815586pt;}
.wsc5{word-spacing:13.833652pt;}
.ws16d{word-spacing:13.883332pt;}
.ws1c7{word-spacing:13.892364pt;}
.wsb7{word-spacing:13.931891pt;}
.ws4f{word-spacing:13.968894pt;}
.ws17e{word-spacing:14.018823pt;}
.ws22a{word-spacing:14.068181pt;}
.ws1b2{word-spacing:14.086568pt;}
.ws23f{word-spacing:14.091085pt;}
.ws17d{word-spacing:14.104634pt;}
.ws5e{word-spacing:14.108564pt;}
.ws50{word-spacing:14.123707pt;}
.ws220{word-spacing:14.136249pt;}
.ws294{word-spacing:14.138850pt;}
.ws1b3{word-spacing:14.140765pt;}
.ws28a{word-spacing:14.167863pt;}
.ws28e{word-spacing:14.199424pt;}
.ws4d{word-spacing:14.202683pt;}
.ws68{word-spacing:14.214567pt;}
.ws280{word-spacing:14.259997pt;}
.ws262{word-spacing:14.316903pt;}
.ws13e{word-spacing:14.380133pt;}
.ws138{word-spacing:14.389165pt;}
.ws269{word-spacing:14.416264pt;}
.ws289{word-spacing:14.425296pt;}
.ws1b0{word-spacing:14.470460pt;}
.ws4a{word-spacing:14.595873pt;}
.ws268{word-spacing:14.642082pt;}
.ws288{word-spacing:14.723377pt;}
.ws4b{word-spacing:14.739335pt;}
.ws28f{word-spacing:14.840803pt;}
.ws159{word-spacing:14.913065pt;}
.ws1a8{word-spacing:14.922097pt;}
.ws1b4{word-spacing:14.998876pt;}
.ws27a{word-spacing:15.003392pt;}
.ws1a9{word-spacing:15.021458pt;}
.ws1b6{word-spacing:15.030490pt;}
.ws290{word-spacing:15.044040pt;}
.ws10c{word-spacing:15.062105pt;}
.ws205{word-spacing:15.075654pt;}
.ws1e6{word-spacing:15.084687pt;}
.ws158{word-spacing:15.120818pt;}
.ws49{word-spacing:15.132525pt;}
.ws17b{word-spacing:15.165982pt;}
.ws291{word-spacing:15.238244pt;}
.ws292{word-spacing:15.337604pt;}
.ws13a{word-spacing:15.396317pt;}
.ws1b7{word-spacing:15.409866pt;}
.ws139{word-spacing:15.441480pt;}
.ws17c{word-spacing:15.549873pt;}
.ws48{word-spacing:15.631984pt;}
.ws121{word-spacing:15.662783pt;}
.ws120{word-spacing:15.838921pt;}
.ws4e{word-spacing:15.855146pt;}
.wsfe{word-spacing:15.915700pt;}
.ws247{word-spacing:15.920216pt;}
.ws47{word-spacing:15.950787pt;}
.ws27{word-spacing:16.024571pt;}
.ws257{word-spacing:16.037642pt;}
.ws246{word-spacing:16.060224pt;}
.ws2d{word-spacing:16.096579pt;}
.ws2e{word-spacing:16.195941pt;}
.ws1fd{word-spacing:16.222813pt;}
.ws256{word-spacing:16.245395pt;}
.ws2b{word-spacing:16.295302pt;}
.ws30{word-spacing:16.412198pt;}
.ws91{word-spacing:16.507345pt;}
.wsfd{word-spacing:16.525410pt;}
.ws2ab{word-spacing:16.566029pt;}
.ws29c{word-spacing:16.580907pt;}
.ws2a4{word-spacing:16.599504pt;}
.ws298{word-spacing:16.614381pt;}
.ws297{word-spacing:16.629259pt;}
.ws29b{word-spacing:16.644136pt;}
.ws2a8{word-spacing:16.651575pt;}
.ws2ac{word-spacing:16.722243pt;}
.ws2aa{word-spacing:16.733401pt;}
.ws29a{word-spacing:16.751997pt;}
.ws2a7{word-spacing:16.755717pt;}
.ws2a9{word-spacing:16.792910pt;}
.ws285{word-spacing:16.796392pt;}
.ws2a3{word-spacing:16.800349pt;}
.ws299{word-spacing:16.826385pt;}
.ws286{word-spacing:16.828007pt;}
.ws23a{word-spacing:16.837040pt;}
.ws1e5{word-spacing:16.900269pt;}
.ws2a6{word-spacing:16.945404pt;}
.ws15f{word-spacing:16.963498pt;}
.wsde{word-spacing:17.049309pt;}
.ws27f{word-spacing:17.094473pt;}
.ws26f{word-spacing:17.135120pt;}
.ws271{word-spacing:17.144153pt;}
.ws2a5{word-spacing:17.164846pt;}
.ws53{word-spacing:17.252546pt;}
.wsd0{word-spacing:17.284161pt;}
.ws26e{word-spacing:17.293193pt;}
.ws52{word-spacing:17.365455pt;}
.ws26d{word-spacing:17.419652pt;}
.ws259{word-spacing:17.631921pt;}
.ws9a{word-spacing:17.708700pt;}
.ws108{word-spacing:17.803544pt;}
.ws258{word-spacing:17.812576pt;}
.wsd1{word-spacing:17.839675pt;}
.ws9b{word-spacing:17.893871pt;}
.ws16e{word-spacing:18.024846pt;}
.ws44{word-spacing:18.028321pt;}
.ws107{word-spacing:18.038395pt;}
.ws99{word-spacing:18.282279pt;}
.ws57{word-spacing:18.291312pt;}
.ws56{word-spacing:18.318410pt;}
.wsed{word-spacing:18.340992pt;}
.ws172{word-spacing:18.548745pt;}
.wsa6{word-spacing:18.571327pt;}
.ws22f{word-spacing:18.792629pt;}
.ws171{word-spacing:18.833277pt;}
.ws230{word-spacing:19.181038pt;}
.ws170{word-spacing:19.190070pt;}
.ws1e7{word-spacing:19.402340pt;}
.ws180{word-spacing:19.447504pt;}
.ws4c{word-spacing:19.473562pt;}
.ws266{word-spacing:19.533315pt;}
.ws1e8{word-spacing:19.564929pt;}
.ws11f{word-spacing:20.436589pt;}
.ws119{word-spacing:20.829514pt;}
.ws8d{word-spacing:20.910809pt;}
.ws8e{word-spacing:21.380511pt;}
.wsd8{word-spacing:23.218675pt;}
.ws1e4{word-spacing:27.780212pt;}
.ws2a{word-spacing:29.457564pt;}
.ws29{word-spacing:29.829502pt;}
.ws1e3{word-spacing:30.959739pt;}
.ws1e0{word-spacing:31.230722pt;}
.ws1e2{word-spacing:31.244271pt;}
.ws1e1{word-spacing:31.388795pt;}
.ws46{word-spacing:31.954707pt;}
.ws45{word-spacing:32.018468pt;}
.ws0{word-spacing:35.527369pt;}
.ws1{word-spacing:35.540121pt;}
.ws2{word-spacing:35.846172pt;}
.ws1c2{word-spacing:70.775701pt;}
.ws67{word-spacing:91.109443pt;}
.ws76{word-spacing:496.575473pt;}
.ws78{word-spacing:522.532886pt;}
.ws7d{word-spacing:676.015996pt;}
.ws7f{word-spacing:741.990004pt;}
._7{margin-left:-37.653678pt;}
._5{margin-left:-31.403569pt;}
._6{margin-left:-19.869321pt;}
._43{margin-left:-18.921810pt;}
._4e{margin-left:-16.719806pt;}
._4f{margin-left:-15.684406pt;}
._53{margin-left:-14.511108pt;}
._49{margin-left:-13.556189pt;}
._4{margin-left:-12.524128pt;}
._44{margin-left:-10.798457pt;}
._50{margin-left:-9.908904pt;}
._4c{margin-left:-9.019389pt;}
._8{margin-left:-6.953067pt;}
._4a{margin-left:-2.765782pt;}
._9{margin-left:-1.001065pt;}
._3{width:0.889726pt;}
._51{width:2.420776pt;}
._59{width:5.363317pt;}
._b{width:6.918010pt;}
._f{width:8.320537pt;}
._42{width:9.666417pt;}
._2{width:10.875427pt;}
._10{width:11.909676pt;}
._1{width:13.413629pt;}
._e{width:14.529173pt;}
._c{width:15.472582pt;}
._55{width:16.543476pt;}
._48{width:17.460299pt;}
._52{width:18.477780pt;}
._4b{width:19.606869pt;}
._41{width:21.172566pt;}
._4d{width:22.071516pt;}
._54{width:24.749726pt;}
._46{width:25.653001pt;}
._47{width:27.522779pt;}
._58{width:29.460303pt;}
._a{width:30.902812pt;}
._57{width:32.648863pt;}
._d{width:33.745852pt;}
._0{width:36.598546pt;}
._56{width:71.377421pt;}
._45{width:91.938043pt;}
._40{width:150.068719pt;}
._14{width:202.184410pt;}
._2d{width:261.887540pt;}
._3f{width:265.123383pt;}
._13{width:345.900480pt;}
._3e{width:364.984516pt;}
._34{width:379.854517pt;}
._32{width:393.991805pt;}
._2c{width:420.138906pt;}
._38{width:423.843388pt;}
._3a{width:429.373278pt;}
._33{width:439.323346pt;}
._3c{width:443.396064pt;}
._12{width:448.223793pt;}
._11{width:461.434161pt;}
._3b{width:473.812990pt;}
._22{width:475.970219pt;}
._19{width:486.250530pt;}
._39{width:489.352476pt;}
._17{width:496.612667pt;}
._36{width:498.583927pt;}
._3d{width:499.736929pt;}
._24{width:523.135423pt;}
._1b{width:533.385979pt;}
._1c{width:542.182247pt;}
._25{width:552.462558pt;}
._2e{width:586.271559pt;}
._16{width:589.235889pt;}
._37{width:611.340045pt;}
._2f{width:633.061108pt;}
._35{width:643.363735pt;}
._2a{width:673.304583pt;}
._26{width:702.549910pt;}
._1d{width:712.830221pt;}
._28{width:743.511222pt;}
._23{width:745.318033pt;}
._31{width:749.547743pt;}
._1f{width:753.791533pt;}
._1a{width:755.657853pt;}
._30{width:763.160601pt;}
._15{width:769.334739pt;}
._2b{width:798.304834pt;}
._18{width:871.758474pt;}
._21{width:882.038785pt;}
._1e{width:893.338201pt;}
._27{width:903.618512pt;}
._20{width:926.805002pt;}
._29{width:937.085313pt;}
.fsb{font-size:24.792000pt;}
.fse{font-size:26.034667pt;}
.fs10{font-size:30.106133pt;}
.fsf{font-size:31.613333pt;}
.fs5{font-size:31.881067pt;}
.fs4{font-size:37.193600pt;}
.fsa{font-size:38.961067pt;}
.fs2{font-size:45.163733pt;}
.fs3{font-size:47.820267pt;}
.fsc{font-size:50.477867pt;}
.fsd{font-size:53.133867pt;}
.fs9{font-size:58.448000pt;}
.fs7{font-size:74.387200pt;}
.fs6{font-size:85.332800pt;}
.fs0{font-size:95.641600pt;}
.fs8{font-size:106.268267pt;}
.fs1{font-size:127.521067pt;}
.y0{bottom:0.000000pt;}
.y6a{bottom:17.385997pt;}
.y69{bottom:26.683467pt;}
.yea{bottom:68.787333pt;}
.y11c{bottom:68.787361pt;}
.y1a6{bottom:68.787577pt;}
.y114{bottom:68.787605pt;}
.yce{bottom:68.787632pt;}
.y264{bottom:68.787709pt;}
.y6e{bottom:68.787719pt;}
.y154{bottom:68.787953pt;}
.y19a{bottom:68.788414pt;}
.y219{bottom:68.789358pt;}
.y68{bottom:71.281449pt;}
.y142{bottom:71.433067pt;}
.y1d1{bottom:78.085904pt;}
.y17f{bottom:78.463606pt;}
.y2d{bottom:82.091231pt;}
.y218{bottom:84.436333pt;}
.y11b{bottom:84.736933pt;}
.y1a5{bottom:84.737149pt;}
.y113{bottom:84.737177pt;}
.ycd{bottom:84.737205pt;}
.y263{bottom:84.737281pt;}
.y6d{bottom:84.737291pt;}
.y153{bottom:84.737526pt;}
.y199{bottom:84.737986pt;}
.y67{bottom:86.626598pt;}
.y1d0{bottom:94.035476pt;}
.y17e{bottom:94.413179pt;}
.y2c{bottom:95.395200pt;}
.y6c{bottom:100.384267pt;}
.ye9{bottom:100.385021pt;}
.y1a4{bottom:100.686722pt;}
.y112{bottom:100.686749pt;}
.ycc{bottom:100.686777pt;}
.y262{bottom:100.686854pt;}
.y198{bottom:100.687559pt;}
.y66{bottom:101.215788pt;}
.y141{bottom:103.030638pt;}
.y201{bottom:103.332267pt;}
.y2b{bottom:108.699277pt;}
.y1cf{bottom:109.985049pt;}
.y17d{bottom:110.362751pt;}
.y65{bottom:115.502780pt;}
.y1a3{bottom:116.636294pt;}
.y111{bottom:116.636322pt;}
.ycb{bottom:116.636349pt;}
.y261{bottom:116.636426pt;}
.y11a{bottom:116.636431pt;}
.y152{bottom:116.636671pt;}
.y197{bottom:116.637131pt;}
.y23e{bottom:116.641434pt;}
.y2a{bottom:121.927528pt;}
.y217{bottom:123.289564pt;}
.y17c{bottom:126.236674pt;}
.y64{bottom:131.452325pt;}
.y1a2{bottom:132.585867pt;}
.yca{bottom:132.585922pt;}
.y260{bottom:132.585999pt;}
.y119{bottom:132.586003pt;}
.y151{bottom:132.586243pt;}
.y196{bottom:132.586704pt;}
.y23d{bottom:132.591006pt;}
.y29{bottom:135.231498pt;}
.ye8{bottom:137.575097pt;}
.y216{bottom:139.239136pt;}
.y200{bottom:140.523125pt;}
.y140{bottom:141.883868pt;}
.y1ce{bottom:141.884193pt;}
.y17b{bottom:142.186247pt;}
.y63{bottom:148.006267pt;}
.y25f{bottom:148.384273pt;}
.y28{bottom:148.535467pt;}
.y25e{bottom:148.535571pt;}
.y150{bottom:148.535816pt;}
.y195{bottom:148.536276pt;}
.y82{bottom:148.762133pt;}
.ye7{bottom:153.524670pt;}
.y215{bottom:155.188709pt;}
.y1ff{bottom:156.472697pt;}
.y13f{bottom:157.833441pt;}
.y1cd{bottom:157.833766pt;}
.y17a{bottom:158.135819pt;}
.y1e1{bottom:163.954330pt;}
.y25d{bottom:164.485143pt;}
.y118{bottom:164.485148pt;}
.yc9{bottom:164.485199pt;}
.y14f{bottom:164.485388pt;}
.y194{bottom:164.485849pt;}
.y23c{bottom:164.490151pt;}
.y81{bottom:165.089477pt;}
.ye6{bottom:169.474242pt;}
.y214{bottom:171.062632pt;}
.y1b0{bottom:172.420474pt;}
.y1fe{bottom:172.422270pt;}
.y13e{bottom:173.783013pt;}
.y179{bottom:174.085392pt;}
.y1e0{bottom:177.258481pt;}
.y7f{bottom:178.166933pt;}
.y7e{bottom:179.678369pt;}
.y80{bottom:179.678667pt;}
.y110{bottom:180.056474pt;}
.y25c{bottom:180.359067pt;}
.y117{bottom:180.359071pt;}
.yc8{bottom:180.359122pt;}
.y14e{bottom:180.359311pt;}
.y193{bottom:180.359772pt;}
.y23b{bottom:180.364074pt;}
.ye5{bottom:185.423815pt;}
.y1af{bottom:185.724625pt;}
.y213{bottom:187.012204pt;}
.y1fd{bottom:188.371842pt;}
.y13d{bottom:189.656937pt;}
.y1cc{bottom:189.657261pt;}
.y178{bottom:190.034964pt;}
.y1df{bottom:190.486385pt;}
.yb{bottom:190.715148pt;}
.y7d{bottom:194.267558pt;}
.y116{bottom:196.308644pt;}
.y192{bottom:196.309344pt;}
.y23a{bottom:196.313647pt;}
.y25b{bottom:198.954267pt;}
.y1ae{bottom:199.028776pt;}
.y62{bottom:199.483333pt;}
.y212{bottom:202.961777pt;}
.y1de{bottom:203.790535pt;}
.y13c{bottom:205.606509pt;}
.y1cb{bottom:205.606834pt;}
.y177{bottom:205.984537pt;}
.ya{bottom:206.589071pt;}
.y7c{bottom:208.932065pt;}
.y1ad{bottom:212.257609pt;}
.y10f{bottom:212.258216pt;}
.yc7{bottom:212.258267pt;}
.y14d{bottom:212.258456pt;}
.y191{bottom:212.258917pt;}
.y1dd{bottom:217.094686pt;}
.ye4{bottom:217.322960pt;}
.y211{bottom:218.911349pt;}
.y1fc{bottom:220.270987pt;}
.y1ca{bottom:221.556406pt;}
.y176{bottom:221.934109pt;}
.y9{bottom:222.538644pt;}
.y7b{bottom:223.521254pt;}
.y1ac{bottom:225.561760pt;}
.y10e{bottom:228.207788pt;}
.y14c{bottom:228.208028pt;}
.y190{bottom:228.208489pt;}
.y239{bottom:228.212792pt;}
.y1dc{bottom:230.398837pt;}
.ye3{bottom:233.196883pt;}
.y61{bottom:233.197097pt;}
.y25a{bottom:233.801856pt;}
.y210{bottom:234.558325pt;}
.y1fb{bottom:236.220560pt;}
.y13b{bottom:237.505654pt;}
.y1c9{bottom:237.505979pt;}
.y175{bottom:237.883681pt;}
.y8{bottom:238.488216pt;}
.y1ab{bottom:238.865911pt;}
.y7a{bottom:239.470800pt;}
.y1db{bottom:243.627671pt;}
.yc6{bottom:243.855067pt;}
.y115{bottom:244.157361pt;}
.y18f{bottom:244.158061pt;}
.y27{bottom:247.181711pt;}
.ye2{bottom:249.146455pt;}
.y60{bottom:249.146670pt;}
.y259{bottom:249.448832pt;}
.y1aa{bottom:252.093815pt;}
.y1fa{bottom:252.094483pt;}
.y13a{bottom:253.455226pt;}
.y1c8{bottom:253.455551pt;}
.y7{bottom:254.437788pt;}
.y79{bottom:255.420400pt;}
.y1da{bottom:256.931821pt;}
.y14b{bottom:257.461708pt;}
.y10d{bottom:260.106933pt;}
.y18e{bottom:260.107634pt;}
.y238{bottom:260.111936pt;}
.yc5{bottom:261.089733pt;}
.y26{bottom:263.131283pt;}
.y5f{bottom:265.096242pt;}
.y1a9{bottom:265.397965pt;}
.y1f9{bottom:268.044055pt;}
.y139{bottom:269.404799pt;}
.y174{bottom:269.707177pt;}
.y1d9{bottom:270.235972pt;}
.y6{bottom:270.387361pt;}
.y14a{bottom:273.411280pt;}
.y20f{bottom:273.411555pt;}
.y18d{bottom:276.057206pt;}
.y237{bottom:276.061509pt;}
.y1a8{bottom:278.702116pt;}
.y25{bottom:279.005206pt;}
.ye0{bottom:281.045683pt;}
.y258{bottom:283.238079pt;}
.y1d8{bottom:283.540123pt;}
.y1f8{bottom:283.993628pt;}
.ye1{bottom:285.127467pt;}
.y138{bottom:285.354371pt;}
.y1c7{bottom:285.354696pt;}
.y173{bottom:285.656749pt;}
.y5{bottom:286.336933pt;}
.y149{bottom:289.285203pt;}
.y20e{bottom:289.285478pt;}
.y236{bottom:291.632835pt;}
.y1a7{bottom:292.006267pt;}
.y10b{bottom:292.006371pt;}
.y18c{bottom:292.006779pt;}
.yc4{bottom:293.141304pt;}
.y24{bottom:294.954779pt;}
.y10c{bottom:296.088133pt;}
.y1d7{bottom:296.768027pt;}
.y5e{bottom:296.995387pt;}
.y257{bottom:298.809405pt;}
.y122{bottom:299.867227pt;}
.y1f7{bottom:299.943200pt;}
.y1c6{bottom:301.304268pt;}
.y172{bottom:301.606322pt;}
.y78{bottom:303.269200pt;}
.y148{bottom:305.234776pt;}
.y20d{bottom:305.235051pt;}
.y10a{bottom:307.880294pt;}
.y18b{bottom:307.880702pt;}
.yc3{bottom:309.090876pt;}
.y1d6{bottom:310.072177pt;}
.ydf{bottom:312.944828pt;}
.y5d{bottom:312.944960pt;}
.y121{bottom:313.171377pt;}
.y137{bottom:317.177867pt;}
.y1f6{bottom:318.538533pt;}
.y77{bottom:319.596544pt;}
.y147{bottom:321.184348pt;}
.y20c{bottom:321.184623pt;}
.y1d5{bottom:323.376328pt;}
.y109{bottom:323.830032pt;}
.yc2{bottom:325.040449pt;}
.y120{bottom:326.399281pt;}
.y23{bottom:326.853924pt;}
.yde{bottom:328.894400pt;}
.y5c{bottom:328.894532pt;}
.y235{bottom:330.259118pt;}
.y75{bottom:332.673867pt;}
.y256{bottom:332.674301pt;}
.y1c5{bottom:333.127764pt;}
.y171{bottom:333.505467pt;}
.y74{bottom:334.185435pt;}
.y76{bottom:334.185733pt;}
.y1d4{bottom:336.680479pt;}
.y146{bottom:337.133920pt;}
.y20b{bottom:337.134196pt;}
.y11f{bottom:339.703432pt;}
.y108{bottom:339.779605pt;}
.y18a{bottom:339.779847pt;}
.yc1{bottom:340.990021pt;}
.y22{bottom:342.803496pt;}
.y5b{bottom:344.768455pt;}
.y234{bottom:346.208690pt;}
.y255{bottom:348.623874pt;}
.y136{bottom:348.775196pt;}
.y73{bottom:348.849942pt;}
.y1c4{bottom:349.077337pt;}
.y1d3{bottom:349.908383pt;}
.y11e{bottom:353.007583pt;}
.y107{bottom:355.729177pt;}
.y189{bottom:355.729419pt;}
.y1f5{bottom:355.729954pt;}
.yc0{bottom:356.863944pt;}
.y21{bottom:358.753068pt;}
.y5a{bottom:360.718028pt;}
.ydd{bottom:360.718431pt;}
.y233{bottom:362.082614pt;}
.y1d2{bottom:363.212533pt;}
.y72{bottom:363.439132pt;}
.y254{bottom:364.195200pt;}
.y1c3{bottom:365.026909pt;}
.y170{bottom:365.027119pt;}
.y11d{bottom:366.311733pt;}
.y145{bottom:369.033065pt;}
.y20a{bottom:369.033341pt;}
.y188{bottom:371.678992pt;}
.y1f4{bottom:371.679527pt;}
.ybf{bottom:372.813517pt;}
.y20{bottom:374.702641pt;}
.y59{bottom:376.667600pt;}
.ydc{bottom:376.668003pt;}
.y71{bottom:378.028321pt;}
.y253{bottom:381.505467pt;}
.y209{bottom:384.604667pt;}
.y106{bottom:387.628322pt;}
.y135{bottom:387.628426pt;}
.y187{bottom:387.628564pt;}
.y1f3{bottom:387.629099pt;}
.ybe{bottom:388.763089pt;}
.ydb{bottom:392.617576pt;}
.y70{bottom:393.977867pt;}
.y232{bottom:393.981758pt;}
.y58{bottom:395.262933pt;}
.y1c2{bottom:396.926054pt;}
.y144{bottom:400.932210pt;}
.y208{bottom:401.914800pt;}
.y105{bottom:403.577894pt;}
.y134{bottom:403.577999pt;}
.y186{bottom:403.578137pt;}
.y1f2{bottom:403.578672pt;}
.y16f{bottom:403.880349pt;}
.ybd{bottom:404.712661pt;}
.y1f{bottom:406.526137pt;}
.yda{bottom:408.567148pt;}
.y231{bottom:409.628734pt;}
.y6f{bottom:409.927467pt;}
.y1c1{bottom:412.875626pt;}
.y252{bottom:416.277965pt;}
.y143{bottom:416.806133pt;}
.y104{bottom:419.527467pt;}
.y1f1{bottom:419.528244pt;}
.y16e{bottom:419.829922pt;}
.ybc{bottom:420.662234pt;}
.y1e{bottom:422.475709pt;}
.y57{bottom:428.675390pt;}
.y1c0{bottom:428.825199pt;}
.y251{bottom:432.227537pt;}
.y133{bottom:435.401494pt;}
.y185{bottom:435.401632pt;}
.y1f0{bottom:435.402167pt;}
.y16d{bottom:435.779494pt;}
.ybb{bottom:436.611806pt;}
.y1d{bottom:438.425281pt;}
.yd9{bottom:440.466293pt;}
.y207{bottom:441.751254pt;}
.y56{bottom:444.624848pt;}
.y1bf{bottom:444.699122pt;}
.y6b{bottom:445.908533pt;}
.y159{bottom:445.982981pt;}
.y250{bottom:448.177109pt;}
.y230{bottom:448.179368pt;}
.y103{bottom:451.351067pt;}
.y184{bottom:451.351205pt;}
.y16c{bottom:451.729067pt;}
.yba{bottom:452.561379pt;}
.y1c{bottom:454.374854pt;}
.yd8{bottom:456.415865pt;}
.y206{bottom:457.700826pt;}
.y158{bottom:459.287132pt;}
.y55{bottom:460.574307pt;}
.y24f{bottom:464.126682pt;}
.y22f{bottom:464.128940pt;}
.y1ef{bottom:467.301312pt;}
.yb9{bottom:468.510951pt;}
.yd7{bottom:472.365438pt;}
.y157{bottom:472.591282pt;}
.y205{bottom:473.650399pt;}
.y54{bottom:476.523765pt;}
.y1be{bottom:476.598267pt;}
.ya1{bottom:479.241992pt;}
.y24e{bottom:480.076254pt;}
.y22e{bottom:480.078512pt;}
.y102{bottom:482.947912pt;}
.y183{bottom:483.250349pt;}
.y132{bottom:483.250806pt;}
.y1ee{bottom:483.250885pt;}
.y16b{bottom:483.628454pt;}
.y156{bottom:485.895433pt;}
.y1b{bottom:486.273999pt;}
.yd6{bottom:488.239361pt;}
.y204{bottom:489.599971pt;}
.y53{bottom:492.473224pt;}
.ya0{bottom:493.150539pt;}
.y22d{bottom:496.028085pt;}
.y155{bottom:499.124267pt;}
.y182{bottom:499.199922pt;}
.y131{bottom:499.200379pt;}
.y1ed{bottom:499.200457pt;}
.y16a{bottom:499.502377pt;}
.yb8{bottom:500.334447pt;}
.y1a{bottom:502.223571pt;}
.yd5{bottom:504.188933pt;}
.yd3{bottom:504.188965pt;}
.y203{bottom:505.473894pt;}
.y9f{bottom:507.134403pt;}
.y1bd{bottom:508.195596pt;}
.y52{bottom:508.422682pt;}
.yd4{bottom:509.253467pt;}
.y24d{bottom:511.899750pt;}
.y22c{bottom:511.977657pt;}
.y181{bottom:515.149494pt;}
.yb7{bottom:516.284019pt;}
.y19{bottom:518.173143pt;}
.y9e{bottom:518.397555pt;}
.yd2{bottom:520.138538pt;}
.y202{bottom:521.423467pt;}
.y51{bottom:524.296425pt;}
.y22b{bottom:527.548983pt;}
.y24c{bottom:527.849322pt;}
.y180{bottom:531.099067pt;}
.y101{bottom:531.099226pt;}
.y130{bottom:531.099524pt;}
.y1ec{bottom:531.099602pt;}
.y169{bottom:531.401522pt;}
.yb6{bottom:532.233592pt;}
.y9d{bottom:532.381419pt;}
.y18{bottom:534.047067pt;}
.y50{bottom:540.245883pt;}
.y9c{bottom:543.644570pt;}
.y24b{bottom:543.798895pt;}
.y100{bottom:547.048799pt;}
.y1bc{bottom:547.048826pt;}
.y12f{bottom:547.049096pt;}
.y1eb{bottom:547.049174pt;}
.yb5{bottom:548.183164pt;}
.y17{bottom:549.996667pt;}
.yd1{bottom:552.037683pt;}
.y4f{bottom:556.195342pt;}
.y9b{bottom:557.628434pt;}
.y24a{bottom:559.748467pt;}
.y1a1{bottom:560.729876pt;}
.yff{bottom:562.922722pt;}
.y1bb{bottom:562.922749pt;}
.y12e{bottom:562.923019pt;}
.y1ea{bottom:562.923097pt;}
.y168{bottom:563.300667pt;}
.yb4{bottom:564.132737pt;}
.y22a{bottom:566.175266pt;}
.y21e{bottom:566.399644pt;}
.yd0{bottom:567.987255pt;}
.y9a{bottom:571.536981pt;}
.y4e{bottom:572.144800pt;}
.y1a0{bottom:574.034027pt;}
.y249{bottom:575.698040pt;}
.y16{bottom:576.528348pt;}
.yfe{bottom:578.872294pt;}
.y1ba{bottom:578.872322pt;}
.y12d{bottom:578.872592pt;}
.y1e9{bottom:578.872670pt;}
.y21d{bottom:579.703795pt;}
.yb3{bottom:580.082309pt;}
.y229{bottom:582.124839pt;}
.y99{bottom:586.126171pt;}
.y19f{bottom:587.338177pt;}
.y15{bottom:589.832499pt;}
.y4d{bottom:590.740000pt;}
.y248{bottom:591.269366pt;}
.y21c{bottom:592.931699pt;}
.yfd{bottom:594.821867pt;}
.y1b9{bottom:594.821894pt;}
.y12c{bottom:594.822164pt;}
.y1e8{bottom:594.822242pt;}
.y167{bottom:595.200081pt;}
.yb2{bottom:596.031881pt;}
.y228{bottom:597.998762pt;}
.ycf{bottom:599.886400pt;}
.y19e{bottom:600.642328pt;}
.y98{bottom:602.075716pt;}
.y14{bottom:603.136649pt;}
.y21b{bottom:606.235849pt;}
.y284{bottom:607.449677pt;}
.y279{bottom:608.809104pt;}
.y291{bottom:608.813753pt;}
.y1b8{bottom:610.771467pt;}
.y12b{bottom:610.771737pt;}
.y1e7{bottom:610.771815pt;}
.y166{bottom:611.149654pt;}
.yb1{bottom:611.905805pt;}
.y97{bottom:613.414185pt;}
.y19d{bottom:613.870232pt;}
.y227{bottom:613.948334pt;}
.y13{bottom:616.440800pt;}
.y283{bottom:618.108433pt;}
.y278{bottom:619.391613pt;}
.y290{bottom:619.396262pt;}
.y21a{bottom:619.540000pt;}
.yfb{bottom:624.831333pt;}
.y247{bottom:625.134262pt;}
.yfc{bottom:626.721067pt;}
.yfa{bottom:626.721281pt;}
.y12a{bottom:626.721309pt;}
.y1e6{bottom:626.721387pt;}
.yee{bottom:626.946865pt;}
.y165{bottom:627.023577pt;}
.y19c{bottom:627.174383pt;}
.y96{bottom:627.701177pt;}
.yb0{bottom:627.855377pt;}
.y277{bottom:630.049439pt;}
.y28f{bottom:630.054088pt;}
.yed{bottom:640.175699pt;}
.y12{bottom:640.178257pt;}
.y11{bottom:640.328891pt;}
.y19b{bottom:640.478533pt;}
.y276{bottom:640.556631pt;}
.y275{bottom:640.631948pt;}
.y282{bottom:640.634737pt;}
.y28e{bottom:640.636597pt;}
.y246{bottom:641.083834pt;}
.y129{bottom:642.670881pt;}
.y1e5{bottom:642.670960pt;}
.y1b7{bottom:642.671340pt;}
.y164{bottom:642.973149pt;}
.y95{bottom:643.575405pt;}
.y4c{bottom:645.543036pt;}
.y226{bottom:645.847479pt;}
.y274{bottom:651.289774pt;}
.y281{bottom:651.292563pt;}
.y28d{bottom:651.294423pt;}
.yec{bottom:653.479849pt;}
.y4b{bottom:656.806188pt;}
.yf9{bottom:658.620426pt;}
.y128{bottom:658.620454pt;}
.y1b6{bottom:658.620912pt;}
.yf{bottom:658.923801pt;}
.y94{bottom:659.524951pt;}
.yaf{bottom:659.754522pt;}
.y225{bottom:661.494455pt;}
.y10{bottom:661.644774pt;}
.y28c{bottom:661.801615pt;}
.y273{bottom:661.872283pt;}
.y280{bottom:661.875072pt;}
.y28b{bottom:661.876932pt;}
.yeb{bottom:666.784000pt;}
.y93{bottom:670.711856pt;}
.y92{bottom:670.863420pt;}
.y272{bottom:672.454792pt;}
.y271{bottom:672.530109pt;}
.y27f{bottom:672.532898pt;}
.y4a{bottom:672.755733pt;}
.y245{bottom:672.907330pt;}
.y127{bottom:674.570026pt;}
.y1e4{bottom:674.570104pt;}
.y1b5{bottom:674.570485pt;}
.y163{bottom:674.872294pt;}
.y49{bottom:675.552533pt;}
.yae{bottom:675.704094pt;}
.ye{bottom:677.518712pt;}
.y28a{bottom:684.478553pt;}
.y91{bottom:684.771966pt;}
.y48{bottom:688.705333pt;}
.y244{bottom:688.856902pt;}
.yf8{bottom:690.443922pt;}
.y126{bottom:690.443949pt;}
.y1e3{bottom:690.444028pt;}
.y1b4{bottom:690.444408pt;}
.y162{bottom:690.821867pt;}
.y47{bottom:691.502133pt;}
.yad{bottom:691.653667pt;}
.y270{bottom:695.131730pt;}
.y27e{bottom:695.134519pt;}
.y289{bottom:695.136379pt;}
.yd{bottom:696.113623pt;}
.y90{bottom:699.436473pt;}
.y224{bottom:700.045088pt;}
.y46{bottom:704.654933pt;}
.y243{bottom:704.806475pt;}
.y26f{bottom:705.714239pt;}
.y27d{bottom:705.717028pt;}
.y288{bottom:705.718888pt;}
.yf7{bottom:706.393494pt;}
.y1e2{bottom:706.393600pt;}
.y1b3{bottom:706.393980pt;}
.y45{bottom:707.376267pt;}
.yac{bottom:707.603239pt;}
.yc{bottom:714.708533pt;}
.y8f{bottom:715.310701pt;}
.y223{bottom:715.994661pt;}
.y26e{bottom:716.372065pt;}
.y27c{bottom:716.374854pt;}
.y287{bottom:716.376714pt;}
.y44{bottom:720.528998pt;}
.y242{bottom:720.756047pt;}
.yf6{bottom:722.343067pt;}
.y125{bottom:722.343094pt;}
.y161{bottom:722.721364pt;}
.y26d{bottom:727.029891pt;}
.y27b{bottom:727.032680pt;}
.y286{bottom:727.034540pt;}
.y8e{bottom:729.975208pt;}
.y43{bottom:731.489952pt;}
.y42{bottom:731.867467pt;}
.y222{bottom:731.944233pt;}
.y41{bottom:734.664400pt;}
.y241{bottom:736.705620pt;}
.y26c{bottom:737.612400pt;}
.y27a{bottom:737.615190pt;}
.y285{bottom:737.617049pt;}
.y124{bottom:738.292667pt;}
.y1b2{bottom:738.293125pt;}
.y160{bottom:738.670937pt;}
.yab{bottom:739.426735pt;}
.y8d{bottom:745.924754pt;}
.y40{bottom:747.590319pt;}
.y3f{bottom:747.817200pt;}
.y3e{bottom:750.614000pt;}
.yf5{bottom:754.242294pt;}
.y1b1{bottom:754.242697pt;}
.y15f{bottom:754.544860pt;}
.yaa{bottom:755.376307pt;}
.y26b{bottom:758.626533pt;}
.y8c{bottom:760.211745pt;}
.y3d{bottom:763.766581pt;}
.y221{bottom:763.843378pt;}
.y240{bottom:768.604765pt;}
.yf4{bottom:770.191867pt;}
.yf2{bottom:770.192270pt;}
.y15e{bottom:770.494432pt;}
.ya9{bottom:771.325880pt;}
.y8b{bottom:774.800935pt;}
.y3b{bottom:774.802852pt;}
.y3c{bottom:774.954416pt;}
.y3a{bottom:775.029733pt;}
.yf3{bottom:775.180933pt;}
.y39{bottom:777.826533pt;}
.y4{bottom:778.731762pt;}
.y220{bottom:779.717301pt;}
.y23f{bottom:784.176091pt;}
.yf1{bottom:786.141842pt;}
.ya8{bottom:787.275452pt;}
.y8a{bottom:789.087926pt;}
.y21f{bottom:795.364277pt;}
.y26a{bottom:795.817200pt;}
.yf0{bottom:802.091415pt;}
.y37{bottom:802.166598pt;}
.y38{bottom:802.318563pt;}
.y15d{bottom:802.393577pt;}
.y33{bottom:802.469067pt;}
.ya7{bottom:802.922427pt;}
.y35{bottom:803.149467pt;}
.y89{bottom:803.677116pt;}
.y36{bottom:805.794758pt;}
.y34{bottom:806.853333pt;}
.y269{bottom:814.412400pt;}
.y3{bottom:815.923281pt;}
.y88{bottom:817.964108pt;}
.y123{bottom:817.965338pt;}
.y15c{bottom:818.343149pt;}
.y87{bottom:832.553297pt;}
.ya6{bottom:833.914910pt;}
.y15b{bottom:834.292722pt;}
.y32{bottom:839.432970pt;}
.y268{bottom:846.236055pt;}
.y86{bottom:846.840289pt;}
.ya5{bottom:849.864483pt;}
.y2{bottom:853.114800pt;}
.y85{bottom:861.429478pt;}
.y267{bottom:862.185628pt;}
.yef{bottom:865.814055pt;}
.y15a{bottom:866.191867pt;}
.y31{bottom:867.325733pt;}
.y84{bottom:877.379024pt;}
.y266{bottom:878.135200pt;}
.ya4{bottom:881.763628pt;}
.y1{bottom:889.095867pt;}
.y83{bottom:893.480133pt;}
.y30{bottom:893.858133pt;}
.y265{bottom:896.730533pt;}
.ya3{bottom:897.713200pt;}
.ya2{bottom:937.246933pt;}
.y2f{bottom:943.520933pt;}
.y2e{bottom:957.926800pt;}
.h1b{height:18.358281pt;}
.h11{height:19.040256pt;}
.h1a{height:23.121510pt;}
.h8{height:24.484659pt;}
.h18{height:28.118362pt;}
.h7{height:28.564685pt;}
.h13{height:28.865953pt;}
.h19{height:29.170940pt;}
.h12{height:29.472209pt;}
.he{height:29.922099pt;}
.h14{height:30.074745pt;}
.h4{height:34.685747pt;}
.ha{height:34.717514pt;}
.h1c{height:35.290941pt;}
.h5{height:36.725965pt;}
.h6{height:37.328500pt;}
.h15{height:38.767002pt;}
.h16{height:40.806810pt;}
.hd{height:44.888064pt;}
.h10{height:45.490078pt;}
.hf{height:46.097938pt;}
.hb{height:57.129370pt;}
.h9{height:61.268950pt;}
.h17{height:65.754565pt;}
.h2{height:73.452749pt;}
.hc{height:81.614029pt;}
.h3{height:97.936179pt;}
.h0{height:1043.981333pt;}
.h1{height:1044.000000pt;}
.w0{width:803.981333pt;}
.w1{width:804.000000pt;}
.x0{left:0.000000pt;}
.x1{left:76.875600pt;}
.x13{left:80.503867pt;}
.x23{left:92.825172pt;}
.x1c{left:95.017333pt;}
.x1d{left:98.872400pt;}
.x32{left:100.687930pt;}
.x2f{left:101.594163pt;}
.x22{left:102.500800pt;}
.x24{left:104.012533pt;}
.x33{left:105.751200pt;}
.x2a{left:107.943678pt;}
.x34{left:114.446485pt;}
.x21{left:127.202533pt;}
.x14{left:152.315410pt;}
.x35{left:176.427990pt;}
.x18{left:181.341295pt;}
.x7{left:210.519600pt;}
.x17{left:223.067865pt;}
.x26{left:232.516400pt;}
.x27{left:240.453467pt;}
.x8{left:244.762133pt;}
.x1b{left:279.684654pt;}
.x36{left:298.053851pt;}
.x1f{left:299.112939pt;}
.x28{left:306.822000pt;}
.x29{left:318.160533pt;}
.x1e{left:340.611698pt;}
.x9{left:371.376267pt;}
.xa{left:381.127467pt;}
.xb{left:384.529140pt;}
.x1a{left:407.055067pt;}
.x30{left:425.272267pt;}
.x31{left:430.110133pt;}
.x15{left:445.305204pt;}
.x20{left:448.631211pt;}
.x19{left:475.842979pt;}
.xc{left:494.362000pt;}
.x25{left:500.862933pt;}
.xd{left:512.730533pt;}
.x37{left:519.232103pt;}
.x2b{left:521.650267pt;}
.x2c{left:528.982533pt;}
.x2d{left:544.629733pt;}
.x16{left:554.306628pt;}
.x2e{left:555.968400pt;}
.xe{left:566.853381pt;}
.x38{left:594.293437pt;}
.xf{left:605.934637pt;}
.x2{left:606.916400pt;}
.x3{left:609.637373pt;}
.x4{left:628.156967pt;}
.x6{left:643.426533pt;}
.x10{left:652.270750pt;}
.x5{left:667.901600pt;}
.x11{left:675.476933pt;}
.x12{left:701.177733pt;}
}




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