
    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_5da24f1d318648b111b17422.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.740234;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_856f0966a47ded1ea2cc2938.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_30db6b5b527d14243c60bd08.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_bf9ab05bac44ca910cc02940.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_97bda8000bfb9cba9325126e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_77e1ee6c78ad77dc3dce5e55.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893066;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_b5e5016e381f0eca13964cc5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_63262f8cc26112ca01036491.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093262;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;}
.m1a{transform:matrix(0.000000,-0.099308,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.099308,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.099308,0.250000,0.000000,0,0);}
.m10{transform:matrix(0.000000,-0.117750,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.117750,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.117750,0.250000,0.000000,0,0);}
.m16{transform:matrix(0.000000,-0.119130,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.119130,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.119130,0.250000,0.000000,0,0);}
.m12{transform:matrix(0.000000,-0.122057,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.122057,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.122057,0.250000,0.000000,0,0);}
.m1c{transform:matrix(0.000000,-0.129725,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.129725,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.129725,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.130425,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.130425,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.130425,0.250000,0.000000,0,0);}
.m18{transform:matrix(0.000000,-0.132370,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.132370,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.132370,0.250000,0.000000,0,0);}
.m14{transform:matrix(0.000000,-0.136675,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.136675,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.136675,0.250000,0.000000,0,0);}
.m24{transform:matrix(0.000000,-0.139155,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.139155,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.139155,0.250000,0.000000,0,0);}
.m22{transform:matrix(0.000000,-0.140615,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.140615,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.140615,0.250000,0.000000,0,0);}
.m20{transform:matrix(0.000000,-0.141202,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.141202,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.141202,0.250000,0.000000,0,0);}
.m1e{transform:matrix(0.000000,-0.152842,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.152842,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.152842,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.181020,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.181020,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.181020,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.193158,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.193158,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.193158,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.198930,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.198930,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.198930,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.233708,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.233708,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.233708,0.250000,0.000000,0,0);}
.m19{transform:matrix(0.099308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099308,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.117750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.119130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119130,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.122057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122057,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.129725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129725,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.132370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132370,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.136675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136675,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.139155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139155,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.140615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140615,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.141202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141202,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.148040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148040,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.152842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152842,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.179443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179443,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.181020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181020,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.181535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181535,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.181858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181858,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.193158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193158,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.198930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198930,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.233708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233708,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v11{vertical-align:-43.200000px;}
.v2{vertical-align:-33.114000px;}
.v10{vertical-align:-28.794000px;}
.v3{vertical-align:-27.354000px;}
.vb{vertical-align:-14.394000px;}
.v7{vertical-align:-12.960000px;}
.v4{vertical-align:-8.634000px;}
.v6{vertical-align:-5.760000px;}
.v8{vertical-align:-4.326000px;}
.ve{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:2.874000px;}
.v14{vertical-align:4.320000px;}
.v13{vertical-align:5.760000px;}
.v5{vertical-align:8.634000px;}
.vf{vertical-align:12.960000px;}
.va{vertical-align:14.394000px;}
.v9{vertical-align:27.354000px;}
.v1{vertical-align:33.114000px;}
.v12{vertical-align:36.000000px;}
.vd{vertical-align:37.440000px;}
.lsb2{letter-spacing:-2.556000px;}
.lsa3{letter-spacing:-2.202000px;}
.ls40{letter-spacing:-2.016000px;}
.lsa0{letter-spacing:-1.956000px;}
.lsac{letter-spacing:-1.950000px;}
.lsb5{letter-spacing:-1.884000px;}
.lsa5{letter-spacing:-1.830000px;}
.ls63{letter-spacing:-1.800000px;}
.lsbb{letter-spacing:-1.728000px;}
.lsa9{letter-spacing:-1.704000px;}
.lsbe{letter-spacing:-1.656000px;}
.lsb0{letter-spacing:-1.632000px;}
.ls56{letter-spacing:-1.590000px;}
.lsca{letter-spacing:-1.464000px;}
.ls1d{letter-spacing:-1.440000px;}
.ls25{letter-spacing:-1.434000px;}
.ls58{letter-spacing:-1.428000px;}
.lsb9{letter-spacing:-1.410000px;}
.ls7a{letter-spacing:-1.272000px;}
.lsce{letter-spacing:-1.194000px;}
.lsd{letter-spacing:-1.188000px;}
.ls7d{letter-spacing:-1.152000px;}
.ls7e{letter-spacing:-1.086000px;}
.ls62{letter-spacing:-0.942000px;}
.ls1e{letter-spacing:-0.936000px;}
.ls41{letter-spacing:-0.876000px;}
.ls21{letter-spacing:-0.834000px;}
.lscf{letter-spacing:-0.828000px;}
.ls24{letter-spacing:-0.816000px;}
.ls12{letter-spacing:-0.726000px;}
.ls5a{letter-spacing:-0.720000px;}
.ls5c{letter-spacing:-0.714000px;}
.ls83{letter-spacing:-0.672000px;}
.ls7c{letter-spacing:-0.624000px;}
.ls16{letter-spacing:-0.516000px;}
.ls10{letter-spacing:-0.504000px;}
.ls1c{letter-spacing:-0.498000px;}
.ls64{letter-spacing:-0.492000px;}
.lsd5{letter-spacing:-0.480000px;}
.ls14{letter-spacing:-0.468000px;}
.ls42{letter-spacing:-0.402000px;}
.ls5d{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.336000px;}
.ls17{letter-spacing:-0.324000px;}
.lscd{letter-spacing:-0.312000px;}
.ls18{letter-spacing:-0.300000px;}
.ls15{letter-spacing:-0.288000px;}
.lscc{letter-spacing:-0.282000px;}
.ls1a{letter-spacing:-0.276000px;}
.lsd4{letter-spacing:-0.264000px;}
.ls3d{letter-spacing:-0.258000px;}
.lsf{letter-spacing:-0.252000px;}
.lsd2{letter-spacing:-0.234000px;}
.ls19{letter-spacing:-0.192000px;}
.ls1f{letter-spacing:-0.180000px;}
.ls3a{letter-spacing:-0.150000px;}
.ls57{letter-spacing:-0.144000px;}
.lsd3{letter-spacing:-0.120000px;}
.ls61{letter-spacing:-0.072000px;}
.ls84{letter-spacing:-0.036000px;}
.ls13{letter-spacing:-0.012000px;}
.lsd1{letter-spacing:-0.006000px;}
.ls1b{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.006000px;}
.ls50{letter-spacing:0.011280px;}
.ls8{letter-spacing:0.012000px;}
.ls51{letter-spacing:0.012960px;}
.ls3b{letter-spacing:0.018000px;}
.ls34{letter-spacing:0.126000px;}
.ls32{letter-spacing:0.132000px;}
.ls33{letter-spacing:0.174000px;}
.ls68{letter-spacing:0.227280px;}
.lsc9{letter-spacing:0.234000px;}
.lsbc{letter-spacing:0.240000px;}
.ls3{letter-spacing:0.246000px;}
.ls67{letter-spacing:0.248892px;}
.lsc3{letter-spacing:0.252000px;}
.lsb3{letter-spacing:0.258000px;}
.lsb6{letter-spacing:0.264000px;}
.ls36{letter-spacing:0.288000px;}
.ls7b{letter-spacing:0.294000px;}
.lsa{letter-spacing:0.360000px;}
.ls7f{letter-spacing:0.366000px;}
.ls6b{letter-spacing:0.390000px;}
.ls81{letter-spacing:0.396000px;}
.ls87{letter-spacing:0.402000px;}
.ls9d{letter-spacing:0.408000px;}
.lsa7{letter-spacing:0.432000px;}
.ls98{letter-spacing:0.444000px;}
.ls3c{letter-spacing:0.450000px;}
.ls4f{letter-spacing:0.460560px;}
.ls35{letter-spacing:0.462000px;}
.ls7{letter-spacing:0.468000px;}
.ls9a{letter-spacing:0.474000px;}
.ls55{letter-spacing:0.486000px;}
.ls4d{letter-spacing:0.486720px;}
.ls78{letter-spacing:0.500880px;}
.lsc5{letter-spacing:0.503784px;}
.ls31{letter-spacing:0.504000px;}
.ls8f{letter-spacing:0.534000px;}
.ls92{letter-spacing:0.546000px;}
.ls30{letter-spacing:0.558000px;}
.ls45{letter-spacing:0.564000px;}
.lsc2{letter-spacing:0.570000px;}
.ls26{letter-spacing:0.576000px;}
.lsb{letter-spacing:0.582000px;}
.ls29{letter-spacing:0.588000px;}
.ls79{letter-spacing:0.594000px;}
.lsc7{letter-spacing:0.600000px;}
.ls2d{letter-spacing:0.612000px;}
.ls53{letter-spacing:0.630000px;}
.ls5{letter-spacing:0.648000px;}
.ls69{letter-spacing:0.666000px;}
.ls74{letter-spacing:0.705360px;}
.ls6{letter-spacing:0.714000px;}
.ls2{letter-spacing:0.720000px;}
.ls4e{letter-spacing:0.722640px;}
.ls11{letter-spacing:0.726000px;}
.ls6f{letter-spacing:0.798000px;}
.ls86{letter-spacing:0.804000px;}
.ls9c{letter-spacing:0.822000px;}
.ls89{letter-spacing:0.858000px;}
.ls97{letter-spacing:0.894000px;}
.ls9f{letter-spacing:0.906000px;}
.ls8d{letter-spacing:0.930000px;}
.lsb8{letter-spacing:0.948000px;}
.ls90{letter-spacing:1.068000px;}
.ls94{letter-spacing:1.074000px;}
.lsaf{letter-spacing:1.092000px;}
.lsa6{letter-spacing:1.122000px;}
.ls3f{letter-spacing:1.440000px;}
.ls23{letter-spacing:1.458000px;}
.ls4{letter-spacing:1.728000px;}
.ls6c{letter-spacing:1.734000px;}
.ls59{letter-spacing:2.160000px;}
.ls80{letter-spacing:2.172000px;}
.lsd0{letter-spacing:2.520000px;}
.lsbf{letter-spacing:2.880000px;}
.lsa1{letter-spacing:2.946000px;}
.lsaa{letter-spacing:2.958000px;}
.lsad{letter-spacing:3.396000px;}
.ls8a{letter-spacing:3.486000px;}
.ls20{letter-spacing:3.600000px;}
.ls66{letter-spacing:4.026000px;}
.ls95{letter-spacing:4.158000px;}
.ls82{letter-spacing:4.374000px;}
.ls5b{letter-spacing:5.040000px;}
.ls22{letter-spacing:6.480000px;}
.lsba{letter-spacing:10.368000px;}
.ls1{letter-spacing:10.581042px;}
.ls52{letter-spacing:11.532960px;}
.ls0{letter-spacing:12.711108px;}
.lsbd{letter-spacing:13.566000px;}
.lsc0{letter-spacing:13.698000px;}
.lscb{letter-spacing:14.058000px;}
.ls70{letter-spacing:15.966000px;}
.lsab{letter-spacing:16.734000px;}
.lsa2{letter-spacing:17.364000px;}
.lsb1{letter-spacing:17.400000px;}
.lsc6{letter-spacing:20.663784px;}
.lsa8{letter-spacing:21.768000px;}
.ls3e{letter-spacing:22.320000px;}
.lsc8{letter-spacing:23.982216px;}
.lsb7{letter-spacing:24.390000px;}
.lsa4{letter-spacing:25.314000px;}
.ls54{letter-spacing:25.937280px;}
.lsc4{letter-spacing:31.321500px;}
.lsae{letter-spacing:32.718000px;}
.lsb4{letter-spacing:40.938000px;}
.ls4c{letter-spacing:49.939200px;}
.ls49{letter-spacing:50.465280px;}
.ls5f{letter-spacing:51.114000px;}
.ls5e{letter-spacing:52.554000px;}
.ls60{letter-spacing:81.360000px;}
.ls48{letter-spacing:91.772304px;}
.ls6a{letter-spacing:103.596155px;}
.ls4a{letter-spacing:104.405760px;}
.ls71{letter-spacing:110.034000px;}
.ls6d{letter-spacing:120.161257px;}
.ls65{letter-spacing:123.611528px;}
.ls6e{letter-spacing:132.053979px;}
.ls99{letter-spacing:151.678885px;}
.ls39{letter-spacing:161.634000px;}
.ls9b{letter-spacing:164.001130px;}
.lsc1{letter-spacing:164.115200px;}
.ls9e{letter-spacing:164.757460px;}
.ls8c{letter-spacing:169.510877px;}
.ls76{letter-spacing:170.175000px;}
.ls91{letter-spacing:175.136910px;}
.ls96{letter-spacing:178.515152px;}
.ls85{letter-spacing:180.218104px;}
.ls2b{letter-spacing:183.358710px;}
.ls8b{letter-spacing:189.872008px;}
.ls8e{letter-spacing:194.472300px;}
.ls88{letter-spacing:196.525189px;}
.ls46{letter-spacing:224.544000px;}
.ls93{letter-spacing:236.706925px;}
.ls2e{letter-spacing:254.448000px;}
.ls75{letter-spacing:271.683900px;}
.ls77{letter-spacing:313.194000px;}
.ls47{letter-spacing:361.800000px;}
.ls73{letter-spacing:368.994000px;}
.ls44{letter-spacing:396.360000px;}
.ls43{letter-spacing:423.714000px;}
.ls2a{letter-spacing:441.000000px;}
.ls2c{letter-spacing:456.840000px;}
.ls2f{letter-spacing:481.320000px;}
.ls28{letter-spacing:487.074000px;}
.ls4b{letter-spacing:491.394000px;}
.ls72{letter-spacing:508.680000px;}
.lsc{letter-spacing:513.000000px;}
.ls27{letter-spacing:515.874000px;}
.ls37{letter-spacing:518.610318px;}
.ls38{letter-spacing:779.703762px;}
.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;}
}
.ws6f{word-spacing:-60.486000px;}
.ws175{word-spacing:-44.270568px;}
.ws17f{word-spacing:-42.394554px;}
.ws186{word-spacing:-35.041848px;}
.ws15a{word-spacing:-29.643900px;}
.wsc{word-spacing:-27.720000px;}
.ws14{word-spacing:-26.808000px;}
.ws16b{word-spacing:-26.802048px;}
.wse{word-spacing:-26.532000px;}
.ws10{word-spacing:-26.484000px;}
.ws161{word-spacing:-25.729356px;}
.ws152{word-spacing:-21.267336px;}
.ws17{word-spacing:-21.238500px;}
.ws12{word-spacing:-21.132000px;}
.ws179{word-spacing:-21.005490px;}
.ws19{word-spacing:-19.438500px;}
.ws18a{word-spacing:-19.316820px;}
.ws1b4{word-spacing:-19.222500px;}
.ws1b5{word-spacing:-19.078500px;}
.ws17d{word-spacing:-18.120828px;}
.ws1b3{word-spacing:-17.437968px;}
.ws19a{word-spacing:-17.183592px;}
.ws191{word-spacing:-17.086800px;}
.ws1b{word-spacing:-16.578000px;}
.ws12e{word-spacing:-15.588000px;}
.ws66{word-spacing:-15.570000px;}
.ws158{word-spacing:-15.287100px;}
.wsca{word-spacing:-15.138000px;}
.ws16{word-spacing:-15.132000px;}
.ws112{word-spacing:-15.120000px;}
.ws17e{word-spacing:-15.036828px;}
.ws5e{word-spacing:-14.272500px;}
.wsc6{word-spacing:-14.184000px;}
.ws63{word-spacing:-14.140500px;}
.ws12f{word-spacing:-14.020500px;}
.ws70{word-spacing:-13.933500px;}
.ws6c{word-spacing:-13.690500px;}
.ws1bc{word-spacing:-13.680000px;}
.wscf{word-spacing:-13.606500px;}
.ws5f{word-spacing:-13.448580px;}
.wsc2{word-spacing:-13.446000px;}
.ws75{word-spacing:-13.063500px;}
.ws11b{word-spacing:-13.054500px;}
.wscc{word-spacing:-12.958500px;}
.ws1{word-spacing:-12.956892px;}
.ws0{word-spacing:-12.872892px;}
.wsd2{word-spacing:-12.736500px;}
.ws174{word-spacing:-12.620568px;}
.ws7{word-spacing:-12.604500px;}
.ws3{word-spacing:-12.598500px;}
.ws1bb{word-spacing:-12.112500px;}
.ws173{word-spacing:-12.086568px;}
.ws9{word-spacing:-11.866500px;}
.ws1d{word-spacing:-11.859000px;}
.ws118{word-spacing:-11.626500px;}
.ws15{word-spacing:-11.520000px;}
.ws71{word-spacing:-11.449500px;}
.ws151{word-spacing:-11.442504px;}
.ws119{word-spacing:-11.158500px;}
.ws6{word-spacing:-11.152500px;}
.ws184{word-spacing:-11.095848px;}
.ws1b9{word-spacing:-11.050500px;}
.ws150{word-spacing:-11.040504px;}
.ws16a{word-spacing:-10.998048px;}
.wsc9{word-spacing:-10.942500px;}
.ws177{word-spacing:-10.879260px;}
.ws199{word-spacing:-10.693824px;}
.ws169{word-spacing:-10.536048px;}
.ws1a{word-spacing:-10.440000px;}
.wsd4{word-spacing:-10.434000px;}
.ws1b2{word-spacing:-10.345824px;}
.ws198{word-spacing:-10.237824px;}
.ws18f{word-spacing:-10.195824px;}
.ws12a{word-spacing:-10.188000px;}
.ws65{word-spacing:-9.738000px;}
.wsd0{word-spacing:-9.720000px;}
.ws159{word-spacing:-9.599100px;}
.ws188{word-spacing:-9.422820px;}
.ws160{word-spacing:-9.407316px;}
.ws67{word-spacing:-9.229500px;}
.ws74{word-spacing:-9.022500px;}
.wsb8{word-spacing:-9.019500px;}
.wscb{word-spacing:-9.006000px;}
.ws185{word-spacing:-8.767848px;}
.ws178{word-spacing:-8.701260px;}
.ws73{word-spacing:-8.548500px;}
.wscd{word-spacing:-8.280000px;}
.ws190{word-spacing:-8.059824px;}
.ws121{word-spacing:-7.700436px;}
.ws189{word-spacing:-7.538820px;}
.ws11a{word-spacing:-6.840000px;}
.ws1a6{word-spacing:-2.862000px;}
.ws1a1{word-spacing:-2.544000px;}
.ws2{word-spacing:-2.506500px;}
.ws1a5{word-spacing:-2.496000px;}
.ws1ac{word-spacing:-2.424000px;}
.ws1b7{word-spacing:-2.182320px;}
.ws4{word-spacing:-1.105200px;}
.ws138{word-spacing:-1.080000px;}
.ws139{word-spacing:-1.026000px;}
.ws1c9{word-spacing:-1.008000px;}
.ws80{word-spacing:-0.738000px;}
.ws1d7{word-spacing:-0.600000px;}
.wsb{word-spacing:-0.500832px;}
.ws13e{word-spacing:-0.396000px;}
.ws23{word-spacing:-0.366000px;}
.ws135{word-spacing:-0.294000px;}
.ws1b8{word-spacing:-0.235140px;}
.ws55{word-spacing:-0.132000px;}
.ws1db{word-spacing:-0.108000px;}
.ws1e9{word-spacing:-0.096000px;}
.ws1c6{word-spacing:-0.078000px;}
.ws1e4{word-spacing:-0.072000px;}
.ws1cb{word-spacing:-0.048000px;}
.ws21{word-spacing:0.000000px;}
.ws1bd{word-spacing:0.054000px;}
.ws26{word-spacing:0.072000px;}
.ws1aa{word-spacing:0.078000px;}
.ws20{word-spacing:0.084000px;}
.ws1a7{word-spacing:0.090000px;}
.ws7b{word-spacing:0.108000px;}
.ws1a3{word-spacing:0.126000px;}
.ws7a{word-spacing:0.132000px;}
.ws4f{word-spacing:0.138000px;}
.ws78{word-spacing:0.144000px;}
.ws1c0{word-spacing:0.150000px;}
.wsd8{word-spacing:0.156000px;}
.ws82{word-spacing:0.162000px;}
.ws91{word-spacing:0.216000px;}
.ws22{word-spacing:0.252000px;}
.ws1a9{word-spacing:0.276000px;}
.ws24{word-spacing:0.288000px;}
.ws25{word-spacing:0.300000px;}
.ws13{word-spacing:0.330000px;}
.ws7c{word-spacing:0.360000px;}
.ws83{word-spacing:0.414000px;}
.wsb0{word-spacing:0.432000px;}
.ws95{word-spacing:0.546000px;}
.wsd{word-spacing:0.570000px;}
.ws52{word-spacing:0.576000px;}
.ws94{word-spacing:0.588000px;}
.ws96{word-spacing:0.594000px;}
.wsec{word-spacing:0.702000px;}
.ws4c{word-spacing:0.714000px;}
.ws27{word-spacing:0.720000px;}
.ws111{word-spacing:0.732000px;}
.ws4d{word-spacing:0.900000px;}
.ws9d{word-spacing:0.906000px;}
.ws1f{word-spacing:0.936000px;}
.ws19f{word-spacing:1.032000px;}
.ws1a4{word-spacing:1.038000px;}
.wsa8{word-spacing:1.074000px;}
.ws11{word-spacing:1.101600px;}
.ws8{word-spacing:1.223040px;}
.ws77{word-spacing:1.248000px;}
.ws13a{word-spacing:1.344000px;}
.ws1d0{word-spacing:1.410000px;}
.ws13b{word-spacing:1.446000px;}
.wsf{word-spacing:1.537200px;}
.ws136{word-spacing:1.566000px;}
.ws13d{word-spacing:1.590000px;}
.ws8a{word-spacing:1.656000px;}
.ws3b{word-spacing:1.692000px;}
.ws50{word-spacing:1.800000px;}
.ws1d6{word-spacing:1.920000px;}
.ws13f{word-spacing:2.016000px;}
.ws14c{word-spacing:2.088000px;}
.wseb{word-spacing:2.142000px;}
.ws59{word-spacing:2.154000px;}
.ws105{word-spacing:2.160000px;}
.ws4b{word-spacing:2.412000px;}
.ws103{word-spacing:2.520000px;}
.ws5{word-spacing:2.542320px;}
.wsfd{word-spacing:2.556000px;}
.wsdb{word-spacing:2.610000px;}
.wsa2{word-spacing:2.652000px;}
.ws134{word-spacing:2.694000px;}
.ws1ab{word-spacing:2.718000px;}
.ws98{word-spacing:2.724000px;}
.ws1d2{word-spacing:2.760000px;}
.wse4{word-spacing:2.844000px;}
.wsa6{word-spacing:2.916000px;}
.ws51{word-spacing:2.922000px;}
.wsf7{word-spacing:2.928000px;}
.ws106{word-spacing:2.958000px;}
.wse5{word-spacing:3.096000px;}
.wsa1{word-spacing:3.132000px;}
.ws1d3{word-spacing:3.240000px;}
.ws13c{word-spacing:3.258000px;}
.ws1a2{word-spacing:3.312000px;}
.ws41{word-spacing:3.342000px;}
.ws137{word-spacing:3.432000px;}
.wsea{word-spacing:3.582000px;}
.ws109{word-spacing:3.600000px;}
.wsb5{word-spacing:3.852000px;}
.ws1e5{word-spacing:3.918000px;}
.wsae{word-spacing:3.954000px;}
.ws9f{word-spacing:3.990000px;}
.ws33{word-spacing:3.996000px;}
.ws1de{word-spacing:4.194000px;}
.ws44{word-spacing:4.284000px;}
.ws1c1{word-spacing:4.332000px;}
.ws1f5{word-spacing:4.536000px;}
.ws146{word-spacing:4.572000px;}
.ws8c{word-spacing:4.782000px;}
.ws1e1{word-spacing:4.800000px;}
.ws7d{word-spacing:4.896000px;}
.wsa3{word-spacing:4.932000px;}
.wse9{word-spacing:5.022000px;}
.ws132{word-spacing:5.032320px;}
.wsde{word-spacing:5.040000px;}
.wse1{word-spacing:5.052000px;}
.ws14b{word-spacing:5.076000px;}
.ws147{word-spacing:5.292000px;}
.ws14a{word-spacing:5.532000px;}
.ws3c{word-spacing:5.604000px;}
.ws145{word-spacing:5.976000px;}
.wsac{word-spacing:6.012000px;}
.ws1d5{word-spacing:6.120000px;}
.ws6d{word-spacing:6.194880px;}
.ws90{word-spacing:6.300000px;}
.ws1a8{word-spacing:6.312000px;}
.ws89{word-spacing:6.336000px;}
.ws141{word-spacing:6.480000px;}
.ws1da{word-spacing:6.528000px;}
.ws1ca{word-spacing:6.762000px;}
.ws38{word-spacing:6.798000px;}
.ws7f{word-spacing:6.834000px;}
.ws1be{word-spacing:7.086000px;}
.ws1e3{word-spacing:7.122000px;}
.ws1e8{word-spacing:7.206000px;}
.ws8f{word-spacing:7.254000px;}
.ws142{word-spacing:7.266000px;}
.ws3d{word-spacing:7.302000px;}
.ws140{word-spacing:7.416000px;}
.ws2c{word-spacing:7.500000px;}
.ws56{word-spacing:7.560000px;}
.wsa9{word-spacing:7.608000px;}
.ws54{word-spacing:7.740000px;}
.ws1a0{word-spacing:7.752000px;}
.wsff{word-spacing:7.860000px;}
.wsfe{word-spacing:7.932000px;}
.ws149{word-spacing:7.992000px;}
.ws8d{word-spacing:8.112000px;}
.ws9b{word-spacing:8.172000px;}
.wse0{word-spacing:8.250000px;}
.ws1e0{word-spacing:8.274000px;}
.ws3a{word-spacing:8.346000px;}
.ws86{word-spacing:8.478000px;}
.ws40{word-spacing:8.526000px;}
.ws6e{word-spacing:8.640000px;}
.ws35{word-spacing:8.646000px;}
.ws57{word-spacing:8.658000px;}
.ws34{word-spacing:8.856000px;}
.ws1f6{word-spacing:9.000000px;}
.ws1d4{word-spacing:9.108000px;}
.ws1c8{word-spacing:9.168000px;}
.ws1bf{word-spacing:9.360000px;}
.ws4e{word-spacing:9.534000px;}
.wsd7{word-spacing:9.576000px;}
.ws1df{word-spacing:9.762000px;}
.ws3f{word-spacing:9.786000px;}
.ws76{word-spacing:9.858000px;}
.ws104{word-spacing:10.128000px;}
.ws2b{word-spacing:10.182000px;}
.ws1dd{word-spacing:10.440000px;}
.ws10a{word-spacing:10.692000px;}
.ws19e{word-spacing:10.740000px;}
.ws81{word-spacing:10.872000px;}
.ws9e{word-spacing:10.950000px;}
.ws87{word-spacing:11.052000px;}
.ws1f4{word-spacing:11.274000px;}
.ws10d{word-spacing:11.772000px;}
.ws1dc{word-spacing:11.880000px;}
.ws148{word-spacing:12.006000px;}
.ws5c{word-spacing:12.212028px;}
.ws99{word-spacing:12.216000px;}
.wse8{word-spacing:12.594000px;}
.ws85{word-spacing:12.648000px;}
.ws1e7{word-spacing:12.720000px;}
.ws2e{word-spacing:12.774000px;}
.ws19c{word-spacing:12.798000px;}
.ws10c{word-spacing:13.200000px;}
.wse6{word-spacing:13.320000px;}
.ws1ba{word-spacing:13.363176px;}
.ws93{word-spacing:13.452000px;}
.ws1e6{word-spacing:13.572000px;}
.wsdd{word-spacing:13.620000px;}
.wsdc{word-spacing:13.674000px;}
.wse7{word-spacing:13.794000px;}
.wsab{word-spacing:13.830000px;}
.wsed{word-spacing:14.028000px;}
.wsad{word-spacing:14.076000px;}
.ws1f3{word-spacing:14.154000px;}
.ws133{word-spacing:14.652000px;}
.ws10e{word-spacing:14.808000px;}
.ws43{word-spacing:15.006000px;}
.wsf8{word-spacing:15.336000px;}
.ws2a{word-spacing:15.360000px;}
.ws143{word-spacing:15.414000px;}
.wsb4{word-spacing:15.846000px;}
.ws110{word-spacing:16.068000px;}
.ws45{word-spacing:16.086000px;}
.ws1cf{word-spacing:16.200000px;}
.ws53{word-spacing:16.272000px;}
.ws1d1{word-spacing:16.812000px;}
.wsdf{word-spacing:16.914000px;}
.ws1ce{word-spacing:17.172000px;}
.ws88{word-spacing:17.292000px;}
.wsef{word-spacing:17.532000px;}
.ws1ec{word-spacing:17.640000px;}
.ws37{word-spacing:17.712000px;}
.wsfb{word-spacing:17.736000px;}
.ws49{word-spacing:17.784000px;}
.ws79{word-spacing:17.904000px;}
.wsa4{word-spacing:17.946000px;}
.ws8e{word-spacing:18.006000px;}
.ws1c7{word-spacing:18.366000px;}
.ws10f{word-spacing:18.486000px;}
.wsf9{word-spacing:18.966000px;}
.ws1cc{word-spacing:19.182000px;}
.ws100{word-spacing:19.416000px;}
.ws1c4{word-spacing:19.548000px;}
.ws3e{word-spacing:19.590000px;}
.ws19d{word-spacing:19.770000px;}
.ws1eb{word-spacing:19.950000px;}
.ws1c3{word-spacing:20.028000px;}
.ws1ea{word-spacing:20.052000px;}
.wsee{word-spacing:20.226000px;}
.ws1f2{word-spacing:20.412000px;}
.ws10b{word-spacing:20.418000px;}
.wsb1{word-spacing:20.874000px;}
.ws29{word-spacing:21.054000px;}
.wsd9{word-spacing:21.498000px;}
.ws1ee{word-spacing:21.600000px;}
.ws36{word-spacing:21.846000px;}
.ws1d9{word-spacing:21.960000px;}
.ws9a{word-spacing:22.320000px;}
.wsb6{word-spacing:22.668000px;}
.ws19b{word-spacing:22.836000px;}
.ws42{word-spacing:22.854000px;}
.wsa5{word-spacing:22.932000px;}
.ws1c{word-spacing:23.040000px;}
.ws1ef{word-spacing:23.250000px;}
.ws58{word-spacing:23.292000px;}
.ws31{word-spacing:23.538000px;}
.ws102{word-spacing:23.772000px;}
.ws1d8{word-spacing:23.868000px;}
.ws46{word-spacing:23.994000px;}
.ws1ed{word-spacing:24.228000px;}
.ws2d{word-spacing:24.912000px;}
.ws5b{word-spacing:25.486500px;}
.ws101{word-spacing:25.554000px;}
.ws107{word-spacing:25.650000px;}
.wsd5{word-spacing:25.715520px;}
.ws28{word-spacing:26.154000px;}
.ws1c5{word-spacing:27.102000px;}
.ws1e2{word-spacing:27.720000px;}
.ws1cd{word-spacing:27.918000px;}
.ws1f8{word-spacing:28.296000px;}
.ws92{word-spacing:28.428000px;}
.ws7e{word-spacing:29.622000px;}
.ws62{word-spacing:30.015420px;}
.ws6b{word-spacing:30.614028px;}
.ws108{word-spacing:30.786000px;}
.wsda{word-spacing:31.248000px;}
.ws48{word-spacing:31.452000px;}
.wsc8{word-spacing:32.512320px;}
.ws144{word-spacing:32.604000px;}
.wsb7{word-spacing:33.834000px;}
.wsb2{word-spacing:33.990000px;}
.ws30{word-spacing:34.554000px;}
.wsfa{word-spacing:35.526000px;}
.ws39{word-spacing:35.844000px;}
.ws47{word-spacing:35.958000px;}
.wsfc{word-spacing:36.534000px;}
.wsd3{word-spacing:36.820560px;}
.wsc7{word-spacing:37.037280px;}
.wse2{word-spacing:37.650000px;}
.ws1b6{word-spacing:37.840176px;}
.wse3{word-spacing:38.142000px;}
.ws97{word-spacing:38.172000px;}
.wsd6{word-spacing:39.336000px;}
.wsc4{word-spacing:39.499920px;}
.wsaa{word-spacing:39.948000px;}
.ws4a{word-spacing:39.996000px;}
.wsb3{word-spacing:42.582000px;}
.wsa7{word-spacing:42.690000px;}
.ws1f7{word-spacing:43.410000px;}
.ws8b{word-spacing:43.740000px;}
.wsaf{word-spacing:44.316000px;}
.ws18{word-spacing:44.640000px;}
.ws84{word-spacing:45.852000px;}
.ws1c2{word-spacing:46.218000px;}
.ws1f0{word-spacing:47.412000px;}
.ws9c{word-spacing:49.002000px;}
.ws2f{word-spacing:51.978000px;}
.wsa0{word-spacing:55.692000px;}
.ws61{word-spacing:57.520500px;}
.ws6a{word-spacing:58.294500px;}
.wsf6{word-spacing:59.760000px;}
.ws68{word-spacing:64.555950px;}
.wsf4{word-spacing:68.400000px;}
.ws32{word-spacing:71.286000px;}
.wsf5{word-spacing:73.656000px;}
.ws1f1{word-spacing:75.096000px;}
.wsf2{word-spacing:82.800000px;}
.wsf3{word-spacing:88.194000px;}
.ws120{word-spacing:89.154426px;}
.wsf1{word-spacing:89.820000px;}
.wsf0{word-spacing:90.204000px;}
.ws11f{word-spacing:90.694813px;}
.ws11d{word-spacing:92.222363px;}
.ws11c{word-spacing:95.307976px;}
.ws11e{word-spacing:95.314395px;}
.ws69{word-spacing:99.958500px;}
.ws125{word-spacing:100.981136px;}
.ws123{word-spacing:104.608040px;}
.ws124{word-spacing:108.241899px;}
.ws113{word-spacing:109.660652px;}
.ws116{word-spacing:109.668418px;}
.ws117{word-spacing:109.675126px;}
.ws122{word-spacing:110.036500px;}
.ws129{word-spacing:110.961034px;}
.ws114{word-spacing:113.402654px;}
.ws127{word-spacing:114.938495px;}
.ws115{word-spacing:115.266418px;}
.ws187{word-spacing:116.803941px;}
.ws128{word-spacing:118.907764px;}
.ws126{word-spacing:120.896495px;}
.wsd1{word-spacing:124.744008px;}
.ws18c{word-spacing:126.634308px;}
.wsce{word-spacing:126.972000px;}
.ws195{word-spacing:127.112339px;}
.ws1b0{word-spacing:128.806629px;}
.ws18e{word-spacing:129.173215px;}
.ws193{word-spacing:129.672521px;}
.ws166{word-spacing:130.802228px;}
.ws1ae{word-spacing:131.382893px;}
.ws163{word-spacing:133.425239px;}
.ws164{word-spacing:133.436214px;}
.ws1ad{word-spacing:133.990869px;}
.ws1af{word-spacing:134.019997px;}
.ws1b1{word-spacing:134.050506px;}
.ws18b{word-spacing:134.751406px;}
.ws18d{word-spacing:134.786614px;}
.ws176{word-spacing:134.878937px;}
.ws194{word-spacing:135.254213px;}
.ws192{word-spacing:135.300089px;}
.ws196{word-spacing:137.825063px;}
.ws181{word-spacing:137.857163px;}
.ws165{word-spacing:139.170959px;}
.ws162{word-spacing:139.229125px;}
.ws14e{word-spacing:139.952738px;}
.ws183{word-spacing:140.620701px;}
.ws167{word-spacing:141.826895px;}
.ws197{word-spacing:145.516276px;}
.ws14d{word-spacing:145.907798px;}
.ws14f{word-spacing:145.919299px;}
.ws15e{word-spacing:146.346073px;}
.ws180{word-spacing:146.705800px;}
.ws182{word-spacing:146.744116px;}
.ws15c{word-spacing:149.283214px;}
.ws168{word-spacing:149.706902px;}
.ws170{word-spacing:150.047660px;}
.ws15d{word-spacing:152.859985px;}
.ws16d{word-spacing:153.056978px;}
.ws16e{word-spacing:153.069569px;}
.ws156{word-spacing:155.046423px;}
.ws154{word-spacing:155.058237px;}
.ws130{word-spacing:155.080500px;}
.ws15b{word-spacing:155.862126px;}
.ws16f{word-spacing:159.669554px;}
.ws16c{word-spacing:159.694736px;}
.ws153{word-spacing:161.711176px;}
.ws171{word-spacing:162.716645px;}
.wsbf{word-spacing:163.660650px;}
.ws15f{word-spacing:164.645414px;}
.ws155{word-spacing:164.726051px;}
.wsb9{word-spacing:166.667400px;}
.ws157{word-spacing:167.275722px;}
.wsbc{word-spacing:169.382700px;}
.ws172{word-spacing:171.757189px;}
.ws17a{word-spacing:183.802163px;}
.ws17c{word-spacing:183.810995px;}
.ws5d{word-spacing:185.332500px;}
.ws60{word-spacing:186.629550px;}
.ws17b{word-spacing:191.655833px;}
.ws1e{word-spacing:206.440632px;}
.wsc0{word-spacing:209.945190px;}
.wsbd{word-spacing:212.819190px;}
.wsba{word-spacing:213.041190px;}
.wsc1{word-spacing:218.697420px;}
.wsbb{word-spacing:218.913420px;}
.wsbe{word-spacing:223.017420px;}
.ws64{word-spacing:241.184850px;}
.ws131{word-spacing:278.775420px;}
.wsc3{word-spacing:310.221840px;}
.ws12d{word-spacing:338.349420px;}
.wsc5{word-spacing:341.556480px;}
.ws12c{word-spacing:347.643120px;}
.ws12b{word-spacing:360.769500px;}
.ws5a{word-spacing:403.467540px;}
.ws72{word-spacing:566.882136px;}
.wsa{word-spacing:1263.210000px;}
._14{margin-left:-282.980070px;}
._24{margin-left:-258.581682px;}
._21{margin-left:-244.718088px;}
._15{margin-left:-223.703208px;}
._29{margin-left:-219.752430px;}
._2c{margin-left:-217.292310px;}
._30{margin-left:-214.180806px;}
._28{margin-left:-204.267000px;}
._11{margin-left:-202.146360px;}
._17{margin-left:-200.360934px;}
._2f{margin-left:-199.261800px;}
._27{margin-left:-190.859238px;}
._2a{margin-left:-189.425238px;}
._2e{margin-left:-187.985238px;}
._49{margin-left:-186.759744px;}
._1f{margin-left:-178.483500px;}
._13{margin-left:-174.349290px;}
._1d{margin-left:-172.327500px;}
._32{margin-left:-165.327360px;}
._12{margin-left:-163.047000px;}
._16{margin-left:-161.289000px;}
._35{margin-left:-157.524240px;}
._b{margin-left:-153.551724px;}
._a{margin-left:-144.672000px;}
._e{margin-left:-142.927986px;}
._f{margin-left:-141.509016px;}
._2b{margin-left:-140.351448px;}
._2d{margin-left:-139.051290px;}
._31{margin-left:-137.605290px;}
._34{margin-left:-133.296000px;}
._d{margin-left:-131.613000px;}
._4a{margin-left:-129.567684px;}
._47{margin-left:-121.388058px;}
._46{margin-left:-112.183164px;}
._26{margin-left:-110.267682px;}
._23{margin-left:-108.827682px;}
._25{margin-left:-107.387682px;}
._22{margin-left:-94.293000px;}
._20{margin-left:-92.181912px;}
._1c{margin-left:-90.253500px;}
._1e{margin-left:-86.383152px;}
._3b{margin-left:-80.703150px;}
._10{margin-left:-63.825000px;}
._33{margin-left:-40.405800px;}
._18{margin-left:-24.252480px;}
._1a{margin-left:-23.224320px;}
._1b{margin-left:-21.954240px;}
._19{margin-left:-20.865600px;}
._38{margin-left:-19.246146px;}
._5e{margin-left:-17.241546px;}
._58{margin-left:-16.220460px;}
._3a{margin-left:-14.303556px;}
._52{margin-left:-11.243568px;}
._56{margin-left:-10.105500px;}
._4e{margin-left:-8.853390px;}
._9{margin-left:-7.739928px;}
._7{margin-left:-6.441924px;}
._8{margin-left:-4.748388px;}
._6{margin-left:-3.507336px;}
._4{margin-left:-2.345214px;}
._2{margin-left:-1.004454px;}
._0{width:1.995588px;}
._1{width:3.942618px;}
._4b{width:5.089644px;}
._50{width:6.096786px;}
._5b{width:7.263330px;}
._57{width:9.483738px;}
._53{width:10.527600px;}
._63{width:12.597600px;}
._48{width:14.484390px;}
._37{width:19.220880px;}
._5{width:23.109666px;}
._64{width:25.624986px;}
._36{width:27.872880px;}
._3e{width:34.212450px;}
._c{width:35.683014px;}
._40{width:97.038412px;}
._3f{width:100.138441px;}
._43{width:112.207868px;}
._41{width:115.846949px;}
._42{width:117.641550px;}
._39{width:122.796126px;}
._44{width:127.297680px;}
._45{width:129.269838px;}
._61{width:136.611124px;}
._62{width:140.563237px;}
._3c{width:145.830126px;}
._59{width:149.449576px;}
._4d{width:153.334800px;}
._4c{width:157.373511px;}
._5f{width:158.730751px;}
._55{width:162.600360px;}
._60{width:163.613563px;}
._54{width:165.501191px;}
._3d{width:167.037000px;}
._4f{width:170.428042px;}
._51{width:174.324226px;}
._5c{width:204.102238px;}
._5a{width:207.146996px;}
._5d{width:213.230471px;}
._3{width:470.484120px;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(218,37,29);}
.fc0{color:rgb(0,0,0);}
.fs17{font-size:21.462000px;}
.fs18{font-size:24.726000px;}
.fs15{font-size:25.746000px;}
.fs19{font-size:27.180000px;}
.fs16{font-size:30.240000px;}
.fs25{font-size:32.190000px;}
.fs26{font-size:35.208000px;}
.fs14{font-size:36.000000px;}
.fs20{font-size:36.216000px;}
.fs22{font-size:37.170000px;}
.fs12{font-size:37.632000px;}
.fs11{font-size:37.698000px;}
.fs1b{font-size:37.794000px;}
.fsb{font-size:37.950000px;}
.fs1d{font-size:38.268000px;}
.fse{font-size:38.304000px;}
.fs24{font-size:38.316000px;}
.fs1{font-size:38.880000px;}
.fs1f{font-size:40.422000px;}
.fs21{font-size:41.556000px;}
.fs1e{font-size:42.450000px;}
.fs5{font-size:44.640000px;}
.fs0{font-size:47.514000px;}
.fs23{font-size:50.226000px;}
.fs8{font-size:53.172000px;}
.fs13{font-size:53.760000px;}
.fs10{font-size:53.862000px;}
.fs1a{font-size:54.000000px;}
.fsa{font-size:54.210000px;}
.fs9{font-size:54.714000px;}
.fs6{font-size:60.480000px;}
.fs4{font-size:72.000000px;}
.fsf{font-size:73.386000px;}
.fsc{font-size:73.518000px;}
.fsd{font-size:74.556000px;}
.fs7{font-size:83.514000px;}
.fs3{font-size:86.400000px;}
.fs1c{font-size:90.288000px;}
.fs2{font-size:108.000000px;}
.y119{bottom:-1.081500px;}
.y170{bottom:-0.360000px;}
.y0{bottom:0.000000px;}
.y179{bottom:0.360000px;}
.y19f{bottom:0.361500px;}
.ye0{bottom:1.798500px;}
.ydd{bottom:1.800000px;}
.ye8{bottom:1.801500px;}
.y42{bottom:2.878500px;}
.ya6{bottom:2.880000px;}
.y204{bottom:3.601500px;}
.y53{bottom:3.960000px;}
.y4c{bottom:4.321500px;}
.y154{bottom:5.400000px;}
.y2{bottom:55.440000px;}
.ya5{bottom:119.158500px;}
.ya8{bottom:129.241500px;}
.y2c{bottom:132.129000px;}
.yaa{bottom:132.481500px;}
.y10d{bottom:136.440000px;}
.y1e8{bottom:136.849500px;}
.ya4{bottom:137.518500px;}
.yd1{bottom:138.601500px;}
.ya7{bottom:141.840000px;}
.ya9{bottom:141.841500px;}
.y2b{bottom:150.129000px;}
.y1e7{bottom:150.528000px;}
.y41{bottom:153.360000px;}
.y10c{bottom:154.440000px;}
.y43{bottom:156.238500px;}
.y40{bottom:156.240000px;}
.yd0{bottom:156.601500px;}
.y15f{bottom:157.683000px;}
.y74{bottom:162.001500px;}
.y1e6{bottom:167.806500px;}
.ya3{bottom:168.123000px;}
.y2a{bottom:168.129000px;}
.y15e{bottom:175.683000px;}
.y72{bottom:180.001500px;}
.y10b{bottom:181.440000px;}
.y1e5{bottom:181.485000px;}
.ycf{bottom:182.880000px;}
.y3f{bottom:183.960000px;}
.y18a{bottom:185.398500px;}
.ya2{bottom:186.123000px;}
.y29{bottom:186.129000px;}
.y73{bottom:186.840000px;}
.y137{bottom:189.000000px;}
.y15d{bottom:193.683000px;}
.y1e4{bottom:195.163500px;}
.yce{bottom:196.558500px;}
.y71{bottom:198.001500px;}
.y10a{bottom:199.440000px;}
.y3e{bottom:201.960000px;}
.y28{bottom:204.129000px;}
.y1e3{bottom:208.842000px;}
.y188{bottom:211.318500px;}
.ya1{bottom:213.123000px;}
.y136{bottom:214.200000px;}
.y1b5{bottom:215.280000px;}
.y109{bottom:217.440000px;}
.y3d{bottom:220.320000px;}
.y15c{bottom:220.683000px;}
.y27{bottom:222.129000px;}
.y184{bottom:225.000000px;}
.y70{bottom:225.001500px;}
.y1e2{bottom:226.120500px;}
.y1b1{bottom:226.798500px;}
.ya0{bottom:231.123000px;}
.y108{bottom:235.440000px;}
.y132{bottom:238.680000px;}
.y15b{bottom:238.683000px;}
.y1e1{bottom:239.799000px;}
.y26{bottom:240.129000px;}
.y6f{bottom:243.001500px;}
.y189{bottom:245.878500px;}
.y12b{bottom:246.958500px;}
.y9f{bottom:249.123000px;}
.y1b6{bottom:249.478500px;}
.y185{bottom:250.558500px;}
.y1b2{bottom:251.638500px;}
.y12c{bottom:252.000000px;}
.y1e0{bottom:253.477500px;}
.y15a{bottom:256.683000px;}
.y25{bottom:258.129000px;}
.y6e{bottom:261.001500px;}
.y107{bottom:262.440000px;}
.y9e{bottom:267.123000px;}
.y3c{bottom:267.480000px;}
.y12d{bottom:267.840000px;}
.y186{bottom:268.200000px;}
.y1b3{bottom:269.280000px;}
.y135{bottom:270.718500px;}
.y1df{bottom:270.756000px;}
.y24{bottom:276.129000px;}
.y134{bottom:279.000000px;}
.y106{bottom:280.440000px;}
.y3b{bottom:281.158500px;}
.y12e{bottom:283.318500px;}
.y159{bottom:283.683000px;}
.y1de{bottom:284.434500px;}
.y9d{bottom:285.123000px;}
.y187{bottom:285.840000px;}
.y1b4{bottom:287.638500px;}
.y6d{bottom:288.001500px;}
.y23{bottom:294.129000px;}
.y1dd{bottom:298.113000px;}
.y105{bottom:298.440000px;}
.y12f{bottom:298.798500px;}
.y9c{bottom:303.123000px;}
.y6c{bottom:306.001500px;}
.y22{bottom:312.129000px;}
.y130{bottom:314.280000px;}
.y133{bottom:315.358500px;}
.y1dc{bottom:315.391500px;}
.y104{bottom:316.440000px;}
.y158{bottom:316.441500px;}
.y9b{bottom:321.123000px;}
.y1db{bottom:329.070000px;}
.y131{bottom:329.760000px;}
.y21{bottom:330.129000px;}
.y6b{bottom:333.001500px;}
.y183{bottom:334.440000px;}
.y1b0{bottom:338.040000px;}
.y1da{bottom:342.748500px;}
.y103{bottom:343.440000px;}
.y157{bottom:344.520000px;}
.y20{bottom:348.129000px;}
.y9a{bottom:348.481500px;}
.y6a{bottom:351.001500px;}
.y1d9{bottom:356.427000px;}
.y181{bottom:360.360000px;}
.y102{bottom:361.440000px;}
.y156{bottom:362.520000px;}
.y1ae{bottom:364.318500px;}
.y1f{bottom:366.129000px;}
.y69{bottom:369.001500px;}
.y99{bottom:369.721500px;}
.y1d8{bottom:370.105500px;}
.y17d{bottom:372.238500px;}
.y1aa{bottom:375.840000px;}
.y101{bottom:379.440000px;}
.y1e{bottom:384.129000px;}
.y1d7{bottom:387.384000px;}
.y153{bottom:390.238500px;}
.y155{bottom:392.040000px;}
.y182{bottom:396.000000px;}
.y68{bottom:396.001500px;}
.y17e{bottom:397.438500px;}
.y100{bottom:397.440000px;}
.y1af{bottom:398.518500px;}
.y1ab{bottom:400.680000px;}
.y1d6{bottom:401.062500px;}
.y1d{bottom:402.129000px;}
.y67{bottom:414.001500px;}
.y1d5{bottom:414.741000px;}
.y17f{bottom:415.438500px;}
.yff{bottom:415.440000px;}
.y98{bottom:417.601500px;}
.y1ac{bottom:419.040000px;}
.y1c{bottom:420.129000px;}
.y152{bottom:423.360000px;}
.y1d4{bottom:428.419500px;}
.y180{bottom:434.520000px;}
.y97{bottom:435.601500px;}
.y1ad{bottom:436.680000px;}
.y1b{bottom:438.129000px;}
.y66{bottom:441.001500px;}
.y151{bottom:441.360000px;}
.y3a{bottom:442.083000px;}
.y1d3{bottom:442.098000px;}
.yfe{bottom:443.518500px;}
.y96{bottom:453.601500px;}
.ycd{bottom:454.329000px;}
.y1a{bottom:456.129000px;}
.y65{bottom:459.001500px;}
.y150{bottom:459.360000px;}
.y1d2{bottom:459.376500px;}
.y39{bottom:460.083000px;}
.y95{bottom:471.601500px;}
.ycc{bottom:472.323000px;}
.y1d1{bottom:473.055000px;}
.y19{bottom:474.129000px;}
.y64{bottom:477.001500px;}
.y14f{bottom:477.360000px;}
.y38{bottom:478.083000px;}
.y17c{bottom:484.200000px;}
.y1a9{bottom:487.800000px;}
.ycb{bottom:490.323000px;}
.y1d0{bottom:490.333500px;}
.y18{bottom:492.129000px;}
.y63{bottom:495.001500px;}
.y37{bottom:496.083000px;}
.y94{bottom:498.601500px;}
.y17b{bottom:502.200000px;}
.yfd{bottom:503.278500px;}
.y1cf{bottom:504.012000px;}
.y14e{bottom:504.360000px;}
.y1a8{bottom:505.800000px;}
.yca{bottom:508.323000px;}
.y17{bottom:510.129000px;}
.y62{bottom:513.001500px;}
.y93{bottom:516.601500px;}
.y1ce{bottom:517.690500px;}
.yfc{bottom:521.278500px;}
.y14d{bottom:522.360000px;}
.y36{bottom:522.361500px;}
.yc9{bottom:526.323000px;}
.y17a{bottom:528.478500px;}
.y61{bottom:531.001500px;}
.y1cd{bottom:531.369000px;}
.y1a7{bottom:532.078500px;}
.y92{bottom:534.601500px;}
.y35{bottom:536.040000px;}
.y16{bottom:538.207500px;}
.yfb{bottom:539.278500px;}
.y14c{bottom:540.360000px;}
.y12a{bottom:543.961500px;}
.yc8{bottom:544.323000px;}
.y1cc{bottom:548.647500px;}
.y60{bottom:549.001500px;}
.y91{bottom:552.601500px;}
.y177{bottom:553.680000px;}
.y20c{bottom:554.758500px;}
.yfa{bottom:557.278500px;}
.y1a5{bottom:557.638500px;}
.y20b{bottom:558.360000px;}
.y1cb{bottom:562.326000px;}
.y148{bottom:563.758500px;}
.y173{bottom:567.000000px;}
.y1a2{bottom:568.080000px;}
.y129{bottom:569.161500px;}
.y90{bottom:570.601500px;}
.yc7{bottom:572.401500px;}
.y20a{bottom:572.758500px;}
.y5f{bottom:576.001500px;}
.y1ca{bottom:576.004500px;}
.y14b{bottom:577.080000px;}
.yf9{bottom:584.278500px;}
.y149{bottom:585.000000px;}
.y14a{bottom:588.240000px;}
.y178{bottom:588.598500px;}
.y8f{bottom:588.601500px;}
.y174{bottom:590.400000px;}
.y125{bottom:591.478500px;}
.y1a6{bottom:594.000000px;}
.y5e{bottom:594.001500px;}
.y209{bottom:594.360000px;}
.yc6{bottom:597.240000px;}
.y15{bottom:597.607500px;}
.y11e{bottom:598.680000px;}
.y1c9{bottom:600.843000px;}
.yf8{bottom:602.278500px;}
.y11f{bottom:603.000000px;}
.y8e{bottom:606.601500px;}
.y208{bottom:608.758500px;}
.y175{bottom:610.560000px;}
.y1a3{bottom:611.638500px;}
.y147{bottom:614.158500px;}
.y14{bottom:615.607500px;}
.y120{bottom:619.560000px;}
.yf7{bottom:620.278500px;}
.y5d{bottom:621.001500px;}
.y8d{bottom:624.601500px;}
.y128{bottom:625.680000px;}
.y207{bottom:626.758500px;}
.y176{bottom:630.720000px;}
.y146{bottom:632.158500px;}
.y1a4{bottom:633.240000px;}
.y13{bottom:633.246000px;}
.y127{bottom:634.318500px;}
.y121{bottom:636.118500px;}
.yf6{bottom:638.278500px;}
.y5c{bottom:639.001500px;}
.y8c{bottom:642.601500px;}
.y206{bottom:644.758500px;}
.y205{bottom:648.360000px;}
.y145{bottom:650.158500px;}
.y12{bottom:650.884500px;}
.y122{bottom:652.680000px;}
.yf5{bottom:656.278500px;}
.yc5{bottom:657.000000px;}
.y8b{bottom:660.601500px;}
.y203{bottom:662.758500px;}
.y5b{bottom:666.001500px;}
.y202{bottom:666.435000px;}
.y11{bottom:668.523000px;}
.y123{bottom:669.240000px;}
.y1c8{bottom:669.603000px;}
.y126{bottom:669.958500px;}
.yf4{bottom:674.278500px;}
.yc4{bottom:675.000000px;}
.y172{bottom:677.518500px;}
.y8a{bottom:678.601500px;}
.y1a1{bottom:681.478500px;}
.y5a{bottom:684.001500px;}
.y124{bottom:685.798500px;}
.y1c7{bottom:687.603000px;}
.yf3{bottom:692.278500px;}
.y10{bottom:696.601500px;}
.y16f{bottom:697.678500px;}
.y19e{bottom:701.638500px;}
.y59{bottom:702.001500px;}
.yc3{bottom:702.720000px;}
.y34{bottom:704.889000px;}
.yf2{bottom:710.278500px;}
.y201{bottom:710.355000px;}
.y16b{bottom:711.000000px;}
.y19a{bottom:714.598500px;}
.y89{bottom:714.601500px;}
.yc2{bottom:720.720000px;}
.y33{bottom:722.889000px;}
.y1c6{bottom:724.681500px;}
.yf1{bottom:728.278500px;}
.y200{bottom:728.355000px;}
.y58{bottom:729.001500px;}
.y171{bottom:731.518500px;}
.y88{bottom:732.601500px;}
.y16c{bottom:737.278500px;}
.y1a0{bottom:739.078500px;}
.y19b{bottom:740.880000px;}
.y32{bottom:740.889000px;}
.yf0{bottom:746.278500px;}
.y1ff{bottom:746.355000px;}
.y57{bottom:747.001500px;}
.yc1{bottom:748.440000px;}
.y87{bottom:750.601500px;}
.y16d{bottom:754.200000px;}
.yf{bottom:756.361500px;}
.y19c{bottom:760.318500px;}
.yef{bottom:764.278500px;}
.y1fe{bottom:764.355000px;}
.yc0{bottom:766.440000px;}
.y86{bottom:768.601500px;}
.y31{bottom:768.967500px;}
.y16e{bottom:772.198500px;}
.ye{bottom:774.361500px;}
.y56{bottom:775.080000px;}
.y19d{bottom:778.680000px;}
.yee{bottom:782.278500px;}
.y1fd{bottom:782.355000px;}
.yd{bottom:792.361500px;}
.y1c5{bottom:793.441500px;}
.ybf{bottom:794.160000px;}
.y85{bottom:795.601500px;}
.y55{bottom:799.918500px;}
.yed{bottom:800.278500px;}
.y1fc{bottom:800.355000px;}
.yc{bottom:810.361500px;}
.y1c4{bottom:811.441500px;}
.y84{bottom:813.601500px;}
.yba{bottom:821.160000px;}
.y16a{bottom:826.558500px;}
.yec{bottom:828.360000px;}
.yb{bottom:828.361500px;}
.y30{bottom:828.727500px;}
.y1fb{bottom:828.795000px;}
.y199{bottom:830.518500px;}
.ybc{bottom:831.600000px;}
.y83{bottom:831.601500px;}
.ybe{bottom:835.200000px;}
.y144{bottom:835.558500px;}
.y1c3{bottom:838.441500px;}
.ybb{bottom:840.600000px;}
.yeb{bottom:842.758500px;}
.ybd{bottom:844.200000px;}
.yea{bottom:846.000000px;}
.ya{bottom:846.361500px;}
.y2f{bottom:846.727500px;}
.y82{bottom:849.601500px;}
.y168{bottom:851.040000px;}
.y197{bottom:854.278500px;}
.y1c2{bottom:856.441500px;}
.y52{bottom:858.958500px;}
.ye9{bottom:859.678500px;}
.y143{bottom:860.758500px;}
.y54{bottom:862.918500px;}
.y164{bottom:863.638500px;}
.y9{bottom:864.361500px;}
.y2e{bottom:864.727500px;}
.y81{bottom:867.601500px;}
.yb5{bottom:870.480000px;}
.y194{bottom:870.838500px;}
.y1c1{bottom:874.441500px;}
.ye7{bottom:876.598500px;}
.ye6{bottom:879.838500px;}
.y13f{bottom:880.918500px;}
.yb7{bottom:880.920000px;}
.y11d{bottom:882.360000px;}
.y8{bottom:882.361500px;}
.y2d{bottom:882.727500px;}
.yb9{bottom:884.520000px;}
.y169{bottom:884.878500px;}
.y80{bottom:885.601500px;}
.y198{bottom:885.958500px;}
.y165{bottom:887.760000px;}
.y138{bottom:889.558500px;}
.yb6{bottom:889.920000px;}
.y51{bottom:890.635500px;}
.y1fa{bottom:891.075000px;}
.ye5{bottom:893.518500px;}
.yb8{bottom:893.520000px;}
.y139{bottom:895.318500px;}
.ye4{bottom:896.760000px;}
.y1c0{bottom:901.441500px;}
.y7f{bottom:903.601500px;}
.y1f9{bottom:904.753500px;}
.y166{bottom:905.040000px;}
.y11c{bottom:907.560000px;}
.y50{bottom:908.278500px;}
.ye3{bottom:910.440000px;}
.y13a{bottom:911.518500px;}
.y195{bottom:913.318500px;}
.ye2{bottom:913.680000px;}
.y4f{bottom:917.998500px;}
.y1f8{bottom:918.432000px;}
.y1bf{bottom:919.441500px;}
.yb4{bottom:919.795500px;}
.y142{bottom:921.598500px;}
.y7e{bottom:921.601500px;}
.y167{bottom:921.958500px;}
.y141{bottom:922.318500px;}
.y13b{bottom:927.360000px;}
.y118{bottom:927.720000px;}
.y196{bottom:930.598500px;}
.ye1{bottom:931.680000px;}
.y111{bottom:935.278500px;}
.y1f7{bottom:935.710500px;}
.y1be{bottom:937.441500px;}
.yb3{bottom:937.795500px;}
.y7d{bottom:939.601500px;}
.y4e{bottom:940.678500px;}
.y112{bottom:940.680000px;}
.y13c{bottom:943.558500px;}
.ydf{bottom:946.440000px;}
.y1f6{bottom:949.389000px;}
.yde{bottom:949.680000px;}
.y7{bottom:954.721500px;}
.y113{bottom:958.318500px;}
.y13d{bottom:959.400000px;}
.y4b{bottom:960.118500px;}
.y140{bottom:962.278500px;}
.y1f5{bottom:963.067500px;}
.ydc{bottom:963.360000px;}
.y4d{bottom:964.440000px;}
.yb2{bottom:964.795500px;}
.y1bd{bottom:965.520000px;}
.ydb{bottom:966.598500px;}
.y7c{bottom:966.960000px;}
.y11b{bottom:972.000000px;}
.y13e{bottom:974.878500px;}
.y114{bottom:975.958500px;}
.y163{bottom:976.318500px;}
.y193{bottom:980.280000px;}
.y1f4{bottom:980.346000px;}
.yb1{bottom:982.795500px;}
.yda{bottom:984.987000px;}
.yd9{bottom:986.427000px;}
.y7b{bottom:988.200000px;}
.y4a{bottom:992.517000px;}
.y115{bottom:993.238500px;}
.y1f3{bottom:994.024500px;}
.y162{bottom:994.318500px;}
.y6{bottom:997.560000px;}
.y192{bottom:998.280000px;}
.yb0{bottom:1000.795500px;}
.y1f2{bottom:1007.703000px;}
.y7a{bottom:1009.440000px;}
.y11a{bottom:1010.160000px;}
.y116{bottom:1010.518500px;}
.yd8{bottom:1015.587000px;}
.y49{bottom:1016.278500px;}
.yaf{bottom:1018.795500px;}
.y161{bottom:1021.318500px;}
.y191{bottom:1024.558500px;}
.y1f1{bottom:1024.981500px;}
.y5{bottom:1027.441500px;}
.y117{bottom:1027.800000px;}
.yae{bottom:1036.795500px;}
.y1f0{bottom:1038.660000px;}
.y160{bottom:1039.318500px;}
.yd7{bottom:1039.345500px;}
.y48{bottom:1044.357000px;}
.y18f{bottom:1044.720000px;}
.y1bb{bottom:1050.838500px;}
.y1ef{bottom:1055.938500px;}
.y18b{bottom:1056.958500px;}
.y110{bottom:1057.318500px;}
.y79{bottom:1057.320000px;}
.yd6{bottom:1057.345500px;}
.y47{bottom:1062.357000px;}
.y1b7{bottom:1062.360000px;}
.yad{bottom:1066.315500px;}
.y1ee{bottom:1069.617000px;}
.y10f{bottom:1075.318500px;}
.y78{bottom:1075.320000px;}
.yd5{bottom:1075.345500px;}
.y4{bottom:1077.120000px;}
.y18c{bottom:1080.360000px;}
.y190{bottom:1082.878500px;}
.y1ed{bottom:1083.295500px;}
.y1b8{bottom:1084.680000px;}
.y1bc{bottom:1085.398500px;}
.y46{bottom:1092.598500px;}
.y10e{bottom:1093.318500px;}
.y77{bottom:1093.320000px;}
.yac{bottom:1100.157000px;}
.y1ec{bottom:1100.574000px;}
.yd4{bottom:1102.345500px;}
.y18d{bottom:1102.680000px;}
.y1b9{bottom:1104.838500px;}
.y3{bottom:1108.800000px;}
.y1eb{bottom:1114.252500px;}
.y45{bottom:1120.318500px;}
.y76{bottom:1120.320000px;}
.yd3{bottom:1120.345500px;}
.y18e{bottom:1124.638500px;}
.y1ba{bottom:1126.080000px;}
.y1ea{bottom:1127.931000px;}
.yab{bottom:1133.998500px;}
.y44{bottom:1138.318500px;}
.y75{bottom:1138.320000px;}
.yd2{bottom:1138.336500px;}
.y1e9{bottom:1141.609500px;}
.y1{bottom:1189.080000px;}
.h2e{height:5.038500px;}
.h32{height:6.478500px;}
.h42{height:9.000000px;}
.h3c{height:9.360000px;}
.h45{height:9.718500px;}
.h2c{height:10.078500px;}
.h2a{height:10.080000px;}
.h1b{height:14.760000px;}
.h33{height:15.118500px;}
.h2f{height:15.635402px;}
.hf{height:16.198500px;}
.h4b{height:17.278500px;}
.h18{height:17.638500px;}
.h13{height:18.000000px;}
.h30{height:18.013277px;}
.h37{height:18.720000px;}
.h2d{height:18.756363px;}
.h31{height:19.801055px;}
.h47{height:23.450918px;}
.h48{height:25.649578px;}
.h22{height:26.129250px;}
.h1d{height:26.175076px;}
.h35{height:26.241732px;}
.h16{height:26.350049px;}
.h3f{height:26.383922px;}
.h41{height:27.078926px;}
.h3a{height:27.878836px;}
.h44{height:27.913805px;}
.h3d{height:29.448059px;}
.h40{height:30.274195px;}
.h3b{height:30.925488px;}
.h2b{height:31.587891px;}
.h3{height:32.201871px;}
.h4a{height:32.990678px;}
.h6{height:34.114922px;}
.h2{height:34.614691px;}
.h43{height:36.590426px;}
.h10{height:36.919230px;}
.h27{height:37.081559px;}
.h23{height:37.327500px;}
.h1e{height:37.398322px;}
.h36{height:37.494141px;}
.ha{height:40.959844px;}
.hb{height:40.989375px;}
.hc{height:41.690751px;}
.h49{height:41.760000px;}
.h8{height:41.993438px;}
.h28{height:42.841559px;}
.h46{height:45.360000px;}
.he{height:46.655314px;}
.h1c{height:47.260749px;}
.h34{height:47.381836px;}
.h3e{height:47.880000px;}
.h29{height:48.008329px;}
.hd{height:48.796875px;}
.h1a{height:50.954537px;}
.h14{height:51.046189px;}
.h19{height:51.766910px;}
.h7{height:53.067656px;}
.h11{height:55.941656px;}
.h9{height:56.600309px;}
.h12{height:57.375656px;}
.h39{height:57.387656px;}
.h20{height:60.261656px;}
.h15{height:61.468922px;}
.h24{height:61.492922px;}
.h26{height:61.504922px;}
.h25{height:61.528922px;}
.h38{height:62.690203px;}
.h5{height:64.109156px;}
.h17{height:70.335656px;}
.h21{height:70.341656px;}
.h4{height:73.195312px;}
.h1f{height:74.838322px;}
.h0{height:1262.878500px;}
.h1{height:1263.000000px;}
.w5{width:4.318500px;}
.w4{width:4.320000px;}
.w6{width:6.840000px;}
.w2{width:7.198500px;}
.w3{width:7.200000px;}
.w7{width:8.638500px;}
.wf{width:9.720000px;}
.we{width:10.080000px;}
.wb{width:10.800000px;}
.wd{width:11.158500px;}
.wc{width:18.000000px;}
.wa{width:18.360000px;}
.w11{width:29.158500px;}
.w9{width:33.840000px;}
.w8{width:34.200000px;}
.w13{width:45.720000px;}
.w10{width:103.680000px;}
.w12{width:248.758500px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x6b{left:8.280000px;}
.xf{left:63.718500px;}
.x2{left:84.960000px;}
.x52{left:87.118500px;}
.x4f{left:88.920000px;}
.x4c{left:91.440000px;}
.x75{left:92.518500px;}
.x55{left:93.598500px;}
.x1a{left:95.757000px;}
.x36{left:97.558500px;}
.x76{left:99.358500px;}
.x1b{left:101.518500px;}
.x69{left:109.800000px;}
.x63{left:111.960000px;}
.x4b{left:113.038500px;}
.x54{left:114.840000px;}
.x8{left:116.979000px;}
.x64{left:118.800000px;}
.x67{left:119.880000px;}
.x62{left:121.680000px;}
.x66{left:123.118500px;}
.x3{left:127.792500px;}
.x6{left:175.303500px;}
.x50{left:185.398500px;}
.x16{left:207.720000px;}
.x1{left:216.360000px;}
.x4{left:230.025000px;}
.x4d{left:232.198500px;}
.x31{left:236.521500px;}
.x35{left:237.958500px;}
.x53{left:239.398500px;}
.x17{left:243.000000px;}
.x2f{left:246.960000px;}
.x34{left:249.840000px;}
.x12{left:253.438500px;}
.x32{left:257.400000px;}
.x6a{left:258.478500px;}
.x15{left:259.918500px;}
.x65{left:262.078500px;}
.x68{left:263.158500px;}
.x10{left:264.949500px;}
.x19{left:269.638500px;}
.x11{left:272.149500px;}
.x18{left:276.118500px;}
.x14{left:280.440000px;}
.x33{left:281.878500px;}
.x13{left:286.558500px;}
.x30{left:288.001500px;}
.x2c{left:294.472500px;}
.x2e{left:295.920000px;}
.x56{left:302.040000px;}
.x2d{left:315.360000px;}
.x5{left:317.505000px;}
.x51{left:325.438500px;}
.x4e{left:331.558500px;}
.x7{left:333.700500px;}
.x1c{left:351.360000px;}
.x1d{left:356.398500px;}
.x1f{left:448.560000px;}
.x9{left:469.777500px;}
.x3d{left:474.118500px;}
.x77{left:475.543500px;}
.x58{left:477.000000px;}
.x1e{left:480.598500px;}
.x73{left:487.078500px;}
.x72{left:495.360000px;}
.x6d{left:497.158500px;}
.x57{left:498.240000px;}
.x70{left:500.398500px;}
.xa{left:501.816000px;}
.x6e{left:504.000000px;}
.x71{left:505.438500px;}
.x6c{left:506.880000px;}
.x2a{left:509.764500px;}
.x28{left:518.403000px;}
.x37{left:542.856000px;}
.x2b{left:545.044500px;}
.x24{left:557.278500px;}
.x78{left:560.139000px;}
.x38{left:575.614500px;}
.x20{left:585.360000px;}
.x5e{left:600.118500px;}
.x5d{left:605.881500px;}
.x39{left:608.373000px;}
.x59{left:615.958500px;}
.xd{left:631.438500px;}
.x5b{left:636.840000px;}
.x21{left:641.520000px;}
.x5c{left:642.598500px;}
.x74{left:644.040000px;}
.x6f{left:645.118500px;}
.x26{left:646.918500px;}
.xe{left:650.520000px;}
.x5f{left:662.038500px;}
.xc{left:663.840000px;}
.x5a{left:667.798500px;}
.xb{left:672.483000px;}
.x3a{left:673.890000px;}
.x22{left:679.680000px;}
.x60{left:686.877000px;}
.x79{left:705.238500px;}
.x3b{left:706.648500px;}
.x27{left:716.758500px;}
.x29{left:720.721500px;}
.x61{left:733.666500px;}
.x23{left:735.840000px;}
.x25{left:739.798500px;}
.x41{left:745.558500px;}
.x3c{left:749.128500px;}
.x3e{left:750.958500px;}
.x42{left:754.200000px;}
.x45{left:757.798500px;}
.x7b{left:763.198500px;}
.x7a{left:779.760000px;}
.x3f{left:797.760000px;}
.x46{left:802.080000px;}
.x48{left:804.238500px;}
.x43{left:805.680000px;}
.x40{left:807.478500px;}
.x47{left:810.720000px;}
.x49{left:812.878500px;}
.x44{left:814.318500px;}
.x4a{left:816.480000px;}
@media print{
.v11{vertical-align:-38.400000pt;}
.v2{vertical-align:-29.434667pt;}
.v10{vertical-align:-25.594667pt;}
.v3{vertical-align:-24.314667pt;}
.vb{vertical-align:-12.794667pt;}
.v7{vertical-align:-11.520000pt;}
.v4{vertical-align:-7.674667pt;}
.v6{vertical-align:-5.120000pt;}
.v8{vertical-align:-3.845333pt;}
.ve{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:2.554667pt;}
.v14{vertical-align:3.840000pt;}
.v13{vertical-align:5.120000pt;}
.v5{vertical-align:7.674667pt;}
.vf{vertical-align:11.520000pt;}
.va{vertical-align:12.794667pt;}
.v9{vertical-align:24.314667pt;}
.v1{vertical-align:29.434667pt;}
.v12{vertical-align:32.000000pt;}
.vd{vertical-align:33.280000pt;}
.lsb2{letter-spacing:-2.272000pt;}
.lsa3{letter-spacing:-1.957333pt;}
.ls40{letter-spacing:-1.792000pt;}
.lsa0{letter-spacing:-1.738667pt;}
.lsac{letter-spacing:-1.733333pt;}
.lsb5{letter-spacing:-1.674667pt;}
.lsa5{letter-spacing:-1.626667pt;}
.ls63{letter-spacing:-1.600000pt;}
.lsbb{letter-spacing:-1.536000pt;}
.lsa9{letter-spacing:-1.514667pt;}
.lsbe{letter-spacing:-1.472000pt;}
.lsb0{letter-spacing:-1.450667pt;}
.ls56{letter-spacing:-1.413333pt;}
.lsca{letter-spacing:-1.301333pt;}
.ls1d{letter-spacing:-1.280000pt;}
.ls25{letter-spacing:-1.274667pt;}
.ls58{letter-spacing:-1.269333pt;}
.lsb9{letter-spacing:-1.253333pt;}
.ls7a{letter-spacing:-1.130667pt;}
.lsce{letter-spacing:-1.061333pt;}
.lsd{letter-spacing:-1.056000pt;}
.ls7d{letter-spacing:-1.024000pt;}
.ls7e{letter-spacing:-0.965333pt;}
.ls62{letter-spacing:-0.837333pt;}
.ls1e{letter-spacing:-0.832000pt;}
.ls41{letter-spacing:-0.778667pt;}
.ls21{letter-spacing:-0.741333pt;}
.lscf{letter-spacing:-0.736000pt;}
.ls24{letter-spacing:-0.725333pt;}
.ls12{letter-spacing:-0.645333pt;}
.ls5a{letter-spacing:-0.640000pt;}
.ls5c{letter-spacing:-0.634667pt;}
.ls83{letter-spacing:-0.597333pt;}
.ls7c{letter-spacing:-0.554667pt;}
.ls16{letter-spacing:-0.458667pt;}
.ls10{letter-spacing:-0.448000pt;}
.ls1c{letter-spacing:-0.442667pt;}
.ls64{letter-spacing:-0.437333pt;}
.lsd5{letter-spacing:-0.426667pt;}
.ls14{letter-spacing:-0.416000pt;}
.ls42{letter-spacing:-0.357333pt;}
.ls5d{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.298667pt;}
.ls17{letter-spacing:-0.288000pt;}
.lscd{letter-spacing:-0.277333pt;}
.ls18{letter-spacing:-0.266667pt;}
.ls15{letter-spacing:-0.256000pt;}
.lscc{letter-spacing:-0.250667pt;}
.ls1a{letter-spacing:-0.245333pt;}
.lsd4{letter-spacing:-0.234667pt;}
.ls3d{letter-spacing:-0.229333pt;}
.lsf{letter-spacing:-0.224000pt;}
.lsd2{letter-spacing:-0.208000pt;}
.ls19{letter-spacing:-0.170667pt;}
.ls1f{letter-spacing:-0.160000pt;}
.ls3a{letter-spacing:-0.133333pt;}
.ls57{letter-spacing:-0.128000pt;}
.lsd3{letter-spacing:-0.106667pt;}
.ls61{letter-spacing:-0.064000pt;}
.ls84{letter-spacing:-0.032000pt;}
.ls13{letter-spacing:-0.010667pt;}
.lsd1{letter-spacing:-0.005333pt;}
.ls1b{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.005333pt;}
.ls50{letter-spacing:0.010027pt;}
.ls8{letter-spacing:0.010667pt;}
.ls51{letter-spacing:0.011520pt;}
.ls3b{letter-spacing:0.016000pt;}
.ls34{letter-spacing:0.112000pt;}
.ls32{letter-spacing:0.117333pt;}
.ls33{letter-spacing:0.154667pt;}
.ls68{letter-spacing:0.202027pt;}
.lsc9{letter-spacing:0.208000pt;}
.lsbc{letter-spacing:0.213333pt;}
.ls3{letter-spacing:0.218667pt;}
.ls67{letter-spacing:0.221237pt;}
.lsc3{letter-spacing:0.224000pt;}
.lsb3{letter-spacing:0.229333pt;}
.lsb6{letter-spacing:0.234667pt;}
.ls36{letter-spacing:0.256000pt;}
.ls7b{letter-spacing:0.261333pt;}
.lsa{letter-spacing:0.320000pt;}
.ls7f{letter-spacing:0.325333pt;}
.ls6b{letter-spacing:0.346667pt;}
.ls81{letter-spacing:0.352000pt;}
.ls87{letter-spacing:0.357333pt;}
.ls9d{letter-spacing:0.362667pt;}
.lsa7{letter-spacing:0.384000pt;}
.ls98{letter-spacing:0.394667pt;}
.ls3c{letter-spacing:0.400000pt;}
.ls4f{letter-spacing:0.409387pt;}
.ls35{letter-spacing:0.410667pt;}
.ls7{letter-spacing:0.416000pt;}
.ls9a{letter-spacing:0.421333pt;}
.ls55{letter-spacing:0.432000pt;}
.ls4d{letter-spacing:0.432640pt;}
.ls78{letter-spacing:0.445227pt;}
.lsc5{letter-spacing:0.447808pt;}
.ls31{letter-spacing:0.448000pt;}
.ls8f{letter-spacing:0.474667pt;}
.ls92{letter-spacing:0.485333pt;}
.ls30{letter-spacing:0.496000pt;}
.ls45{letter-spacing:0.501333pt;}
.lsc2{letter-spacing:0.506667pt;}
.ls26{letter-spacing:0.512000pt;}
.lsb{letter-spacing:0.517333pt;}
.ls29{letter-spacing:0.522667pt;}
.ls79{letter-spacing:0.528000pt;}
.lsc7{letter-spacing:0.533333pt;}
.ls2d{letter-spacing:0.544000pt;}
.ls53{letter-spacing:0.560000pt;}
.ls5{letter-spacing:0.576000pt;}
.ls69{letter-spacing:0.592000pt;}
.ls74{letter-spacing:0.626987pt;}
.ls6{letter-spacing:0.634667pt;}
.ls2{letter-spacing:0.640000pt;}
.ls4e{letter-spacing:0.642347pt;}
.ls11{letter-spacing:0.645333pt;}
.ls6f{letter-spacing:0.709333pt;}
.ls86{letter-spacing:0.714667pt;}
.ls9c{letter-spacing:0.730667pt;}
.ls89{letter-spacing:0.762667pt;}
.ls97{letter-spacing:0.794667pt;}
.ls9f{letter-spacing:0.805333pt;}
.ls8d{letter-spacing:0.826667pt;}
.lsb8{letter-spacing:0.842667pt;}
.ls90{letter-spacing:0.949333pt;}
.ls94{letter-spacing:0.954667pt;}
.lsaf{letter-spacing:0.970667pt;}
.lsa6{letter-spacing:0.997333pt;}
.ls3f{letter-spacing:1.280000pt;}
.ls23{letter-spacing:1.296000pt;}
.ls4{letter-spacing:1.536000pt;}
.ls6c{letter-spacing:1.541333pt;}
.ls59{letter-spacing:1.920000pt;}
.ls80{letter-spacing:1.930667pt;}
.lsd0{letter-spacing:2.240000pt;}
.lsbf{letter-spacing:2.560000pt;}
.lsa1{letter-spacing:2.618667pt;}
.lsaa{letter-spacing:2.629333pt;}
.lsad{letter-spacing:3.018667pt;}
.ls8a{letter-spacing:3.098667pt;}
.ls20{letter-spacing:3.200000pt;}
.ls66{letter-spacing:3.578667pt;}
.ls95{letter-spacing:3.696000pt;}
.ls82{letter-spacing:3.888000pt;}
.ls5b{letter-spacing:4.480000pt;}
.ls22{letter-spacing:5.760000pt;}
.lsba{letter-spacing:9.216000pt;}
.ls1{letter-spacing:9.405371pt;}
.ls52{letter-spacing:10.251520pt;}
.ls0{letter-spacing:11.298763pt;}
.lsbd{letter-spacing:12.058667pt;}
.lsc0{letter-spacing:12.176000pt;}
.lscb{letter-spacing:12.496000pt;}
.ls70{letter-spacing:14.192000pt;}
.lsab{letter-spacing:14.874667pt;}
.lsa2{letter-spacing:15.434667pt;}
.lsb1{letter-spacing:15.466667pt;}
.lsc6{letter-spacing:18.367808pt;}
.lsa8{letter-spacing:19.349333pt;}
.ls3e{letter-spacing:19.840000pt;}
.lsc8{letter-spacing:21.317525pt;}
.lsb7{letter-spacing:21.680000pt;}
.lsa4{letter-spacing:22.501333pt;}
.ls54{letter-spacing:23.055360pt;}
.lsc4{letter-spacing:27.841333pt;}
.lsae{letter-spacing:29.082667pt;}
.lsb4{letter-spacing:36.389333pt;}
.ls4c{letter-spacing:44.390400pt;}
.ls49{letter-spacing:44.858027pt;}
.ls5f{letter-spacing:45.434667pt;}
.ls5e{letter-spacing:46.714667pt;}
.ls60{letter-spacing:72.320000pt;}
.ls48{letter-spacing:81.575381pt;}
.ls6a{letter-spacing:92.085471pt;}
.ls4a{letter-spacing:92.805120pt;}
.ls71{letter-spacing:97.808000pt;}
.ls6d{letter-spacing:106.810006pt;}
.ls65{letter-spacing:109.876913pt;}
.ls6e{letter-spacing:117.381315pt;}
.ls99{letter-spacing:134.825675pt;}
.ls39{letter-spacing:143.674667pt;}
.ls9b{letter-spacing:145.778782pt;}
.lsc1{letter-spacing:145.880178pt;}
.ls9e{letter-spacing:146.451076pt;}
.ls8c{letter-spacing:150.676335pt;}
.ls76{letter-spacing:151.266667pt;}
.ls91{letter-spacing:155.677253pt;}
.ls96{letter-spacing:158.680135pt;}
.ls85{letter-spacing:160.193870pt;}
.ls2b{letter-spacing:162.985520pt;}
.ls8b{letter-spacing:168.775118pt;}
.ls8e{letter-spacing:172.864267pt;}
.ls88{letter-spacing:174.689056pt;}
.ls46{letter-spacing:199.594667pt;}
.ls93{letter-spacing:210.406155pt;}
.ls2e{letter-spacing:226.176000pt;}
.ls75{letter-spacing:241.496800pt;}
.ls77{letter-spacing:278.394667pt;}
.ls47{letter-spacing:321.600000pt;}
.ls73{letter-spacing:327.994667pt;}
.ls44{letter-spacing:352.320000pt;}
.ls43{letter-spacing:376.634667pt;}
.ls2a{letter-spacing:392.000000pt;}
.ls2c{letter-spacing:406.080000pt;}
.ls2f{letter-spacing:427.840000pt;}
.ls28{letter-spacing:432.954667pt;}
.ls4b{letter-spacing:436.794667pt;}
.ls72{letter-spacing:452.160000pt;}
.lsc{letter-spacing:456.000000pt;}
.ls27{letter-spacing:458.554667pt;}
.ls37{letter-spacing:460.986949pt;}
.ls38{letter-spacing:693.070011pt;}
.ws6f{word-spacing:-53.765333pt;}
.ws175{word-spacing:-39.351616pt;}
.ws17f{word-spacing:-37.684048pt;}
.ws186{word-spacing:-31.148309pt;}
.ws15a{word-spacing:-26.350133pt;}
.wsc{word-spacing:-24.640000pt;}
.ws14{word-spacing:-23.829333pt;}
.ws16b{word-spacing:-23.824043pt;}
.wse{word-spacing:-23.584000pt;}
.ws10{word-spacing:-23.541333pt;}
.ws161{word-spacing:-22.870539pt;}
.ws152{word-spacing:-18.904299pt;}
.ws17{word-spacing:-18.878667pt;}
.ws12{word-spacing:-18.784000pt;}
.ws179{word-spacing:-18.671547pt;}
.ws19{word-spacing:-17.278667pt;}
.ws18a{word-spacing:-17.170507pt;}
.ws1b4{word-spacing:-17.086667pt;}
.ws1b5{word-spacing:-16.958667pt;}
.ws17d{word-spacing:-16.107403pt;}
.ws1b3{word-spacing:-15.500416pt;}
.ws19a{word-spacing:-15.274304pt;}
.ws191{word-spacing:-15.188267pt;}
.ws1b{word-spacing:-14.736000pt;}
.ws12e{word-spacing:-13.856000pt;}
.ws66{word-spacing:-13.840000pt;}
.ws158{word-spacing:-13.588533pt;}
.wsca{word-spacing:-13.456000pt;}
.ws16{word-spacing:-13.450667pt;}
.ws112{word-spacing:-13.440000pt;}
.ws17e{word-spacing:-13.366069pt;}
.ws5e{word-spacing:-12.686667pt;}
.wsc6{word-spacing:-12.608000pt;}
.ws63{word-spacing:-12.569333pt;}
.ws12f{word-spacing:-12.462667pt;}
.ws70{word-spacing:-12.385333pt;}
.ws6c{word-spacing:-12.169333pt;}
.ws1bc{word-spacing:-12.160000pt;}
.wscf{word-spacing:-12.094667pt;}
.ws5f{word-spacing:-11.954293pt;}
.wsc2{word-spacing:-11.952000pt;}
.ws75{word-spacing:-11.612000pt;}
.ws11b{word-spacing:-11.604000pt;}
.wscc{word-spacing:-11.518667pt;}
.ws1{word-spacing:-11.517237pt;}
.ws0{word-spacing:-11.442571pt;}
.wsd2{word-spacing:-11.321333pt;}
.ws174{word-spacing:-11.218283pt;}
.ws7{word-spacing:-11.204000pt;}
.ws3{word-spacing:-11.198667pt;}
.ws1bb{word-spacing:-10.766667pt;}
.ws173{word-spacing:-10.743616pt;}
.ws9{word-spacing:-10.548000pt;}
.ws1d{word-spacing:-10.541333pt;}
.ws118{word-spacing:-10.334667pt;}
.ws15{word-spacing:-10.240000pt;}
.ws71{word-spacing:-10.177333pt;}
.ws151{word-spacing:-10.171115pt;}
.ws119{word-spacing:-9.918667pt;}
.ws6{word-spacing:-9.913333pt;}
.ws184{word-spacing:-9.862976pt;}
.ws1b9{word-spacing:-9.822667pt;}
.ws150{word-spacing:-9.813781pt;}
.ws16a{word-spacing:-9.776043pt;}
.wsc9{word-spacing:-9.726667pt;}
.ws177{word-spacing:-9.670453pt;}
.ws199{word-spacing:-9.505621pt;}
.ws169{word-spacing:-9.365376pt;}
.ws1a{word-spacing:-9.280000pt;}
.wsd4{word-spacing:-9.274667pt;}
.ws1b2{word-spacing:-9.196288pt;}
.ws198{word-spacing:-9.100288pt;}
.ws18f{word-spacing:-9.062955pt;}
.ws12a{word-spacing:-9.056000pt;}
.ws65{word-spacing:-8.656000pt;}
.wsd0{word-spacing:-8.640000pt;}
.ws159{word-spacing:-8.532533pt;}
.ws188{word-spacing:-8.375840pt;}
.ws160{word-spacing:-8.362059pt;}
.ws67{word-spacing:-8.204000pt;}
.ws74{word-spacing:-8.020000pt;}
.wsb8{word-spacing:-8.017333pt;}
.wscb{word-spacing:-8.005333pt;}
.ws185{word-spacing:-7.793643pt;}
.ws178{word-spacing:-7.734453pt;}
.ws73{word-spacing:-7.598667pt;}
.wscd{word-spacing:-7.360000pt;}
.ws190{word-spacing:-7.164288pt;}
.ws121{word-spacing:-6.844832pt;}
.ws189{word-spacing:-6.701173pt;}
.ws11a{word-spacing:-6.080000pt;}
.ws1a6{word-spacing:-2.544000pt;}
.ws1a1{word-spacing:-2.261333pt;}
.ws2{word-spacing:-2.228000pt;}
.ws1a5{word-spacing:-2.218667pt;}
.ws1ac{word-spacing:-2.154667pt;}
.ws1b7{word-spacing:-1.939840pt;}
.ws4{word-spacing:-0.982400pt;}
.ws138{word-spacing:-0.960000pt;}
.ws139{word-spacing:-0.912000pt;}
.ws1c9{word-spacing:-0.896000pt;}
.ws80{word-spacing:-0.656000pt;}
.ws1d7{word-spacing:-0.533333pt;}
.wsb{word-spacing:-0.445184pt;}
.ws13e{word-spacing:-0.352000pt;}
.ws23{word-spacing:-0.325333pt;}
.ws135{word-spacing:-0.261333pt;}
.ws1b8{word-spacing:-0.209013pt;}
.ws55{word-spacing:-0.117333pt;}
.ws1db{word-spacing:-0.096000pt;}
.ws1e9{word-spacing:-0.085333pt;}
.ws1c6{word-spacing:-0.069333pt;}
.ws1e4{word-spacing:-0.064000pt;}
.ws1cb{word-spacing:-0.042667pt;}
.ws21{word-spacing:0.000000pt;}
.ws1bd{word-spacing:0.048000pt;}
.ws26{word-spacing:0.064000pt;}
.ws1aa{word-spacing:0.069333pt;}
.ws20{word-spacing:0.074667pt;}
.ws1a7{word-spacing:0.080000pt;}
.ws7b{word-spacing:0.096000pt;}
.ws1a3{word-spacing:0.112000pt;}
.ws7a{word-spacing:0.117333pt;}
.ws4f{word-spacing:0.122667pt;}
.ws78{word-spacing:0.128000pt;}
.ws1c0{word-spacing:0.133333pt;}
.wsd8{word-spacing:0.138667pt;}
.ws82{word-spacing:0.144000pt;}
.ws91{word-spacing:0.192000pt;}
.ws22{word-spacing:0.224000pt;}
.ws1a9{word-spacing:0.245333pt;}
.ws24{word-spacing:0.256000pt;}
.ws25{word-spacing:0.266667pt;}
.ws13{word-spacing:0.293333pt;}
.ws7c{word-spacing:0.320000pt;}
.ws83{word-spacing:0.368000pt;}
.wsb0{word-spacing:0.384000pt;}
.ws95{word-spacing:0.485333pt;}
.wsd{word-spacing:0.506667pt;}
.ws52{word-spacing:0.512000pt;}
.ws94{word-spacing:0.522667pt;}
.ws96{word-spacing:0.528000pt;}
.wsec{word-spacing:0.624000pt;}
.ws4c{word-spacing:0.634667pt;}
.ws27{word-spacing:0.640000pt;}
.ws111{word-spacing:0.650667pt;}
.ws4d{word-spacing:0.800000pt;}
.ws9d{word-spacing:0.805333pt;}
.ws1f{word-spacing:0.832000pt;}
.ws19f{word-spacing:0.917333pt;}
.ws1a4{word-spacing:0.922667pt;}
.wsa8{word-spacing:0.954667pt;}
.ws11{word-spacing:0.979200pt;}
.ws8{word-spacing:1.087147pt;}
.ws77{word-spacing:1.109333pt;}
.ws13a{word-spacing:1.194667pt;}
.ws1d0{word-spacing:1.253333pt;}
.ws13b{word-spacing:1.285333pt;}
.wsf{word-spacing:1.366400pt;}
.ws136{word-spacing:1.392000pt;}
.ws13d{word-spacing:1.413333pt;}
.ws8a{word-spacing:1.472000pt;}
.ws3b{word-spacing:1.504000pt;}
.ws50{word-spacing:1.600000pt;}
.ws1d6{word-spacing:1.706667pt;}
.ws13f{word-spacing:1.792000pt;}
.ws14c{word-spacing:1.856000pt;}
.wseb{word-spacing:1.904000pt;}
.ws59{word-spacing:1.914667pt;}
.ws105{word-spacing:1.920000pt;}
.ws4b{word-spacing:2.144000pt;}
.ws103{word-spacing:2.240000pt;}
.ws5{word-spacing:2.259840pt;}
.wsfd{word-spacing:2.272000pt;}
.wsdb{word-spacing:2.320000pt;}
.wsa2{word-spacing:2.357333pt;}
.ws134{word-spacing:2.394667pt;}
.ws1ab{word-spacing:2.416000pt;}
.ws98{word-spacing:2.421333pt;}
.ws1d2{word-spacing:2.453333pt;}
.wse4{word-spacing:2.528000pt;}
.wsa6{word-spacing:2.592000pt;}
.ws51{word-spacing:2.597333pt;}
.wsf7{word-spacing:2.602667pt;}
.ws106{word-spacing:2.629333pt;}
.wse5{word-spacing:2.752000pt;}
.wsa1{word-spacing:2.784000pt;}
.ws1d3{word-spacing:2.880000pt;}
.ws13c{word-spacing:2.896000pt;}
.ws1a2{word-spacing:2.944000pt;}
.ws41{word-spacing:2.970667pt;}
.ws137{word-spacing:3.050667pt;}
.wsea{word-spacing:3.184000pt;}
.ws109{word-spacing:3.200000pt;}
.wsb5{word-spacing:3.424000pt;}
.ws1e5{word-spacing:3.482667pt;}
.wsae{word-spacing:3.514667pt;}
.ws9f{word-spacing:3.546667pt;}
.ws33{word-spacing:3.552000pt;}
.ws1de{word-spacing:3.728000pt;}
.ws44{word-spacing:3.808000pt;}
.ws1c1{word-spacing:3.850667pt;}
.ws1f5{word-spacing:4.032000pt;}
.ws146{word-spacing:4.064000pt;}
.ws8c{word-spacing:4.250667pt;}
.ws1e1{word-spacing:4.266667pt;}
.ws7d{word-spacing:4.352000pt;}
.wsa3{word-spacing:4.384000pt;}
.wse9{word-spacing:4.464000pt;}
.ws132{word-spacing:4.473173pt;}
.wsde{word-spacing:4.480000pt;}
.wse1{word-spacing:4.490667pt;}
.ws14b{word-spacing:4.512000pt;}
.ws147{word-spacing:4.704000pt;}
.ws14a{word-spacing:4.917333pt;}
.ws3c{word-spacing:4.981333pt;}
.ws145{word-spacing:5.312000pt;}
.wsac{word-spacing:5.344000pt;}
.ws1d5{word-spacing:5.440000pt;}
.ws6d{word-spacing:5.506560pt;}
.ws90{word-spacing:5.600000pt;}
.ws1a8{word-spacing:5.610667pt;}
.ws89{word-spacing:5.632000pt;}
.ws141{word-spacing:5.760000pt;}
.ws1da{word-spacing:5.802667pt;}
.ws1ca{word-spacing:6.010667pt;}
.ws38{word-spacing:6.042667pt;}
.ws7f{word-spacing:6.074667pt;}
.ws1be{word-spacing:6.298667pt;}
.ws1e3{word-spacing:6.330667pt;}
.ws1e8{word-spacing:6.405333pt;}
.ws8f{word-spacing:6.448000pt;}
.ws142{word-spacing:6.458667pt;}
.ws3d{word-spacing:6.490667pt;}
.ws140{word-spacing:6.592000pt;}
.ws2c{word-spacing:6.666667pt;}
.ws56{word-spacing:6.720000pt;}
.wsa9{word-spacing:6.762667pt;}
.ws54{word-spacing:6.880000pt;}
.ws1a0{word-spacing:6.890667pt;}
.wsff{word-spacing:6.986667pt;}
.wsfe{word-spacing:7.050667pt;}
.ws149{word-spacing:7.104000pt;}
.ws8d{word-spacing:7.210667pt;}
.ws9b{word-spacing:7.264000pt;}
.wse0{word-spacing:7.333333pt;}
.ws1e0{word-spacing:7.354667pt;}
.ws3a{word-spacing:7.418667pt;}
.ws86{word-spacing:7.536000pt;}
.ws40{word-spacing:7.578667pt;}
.ws6e{word-spacing:7.680000pt;}
.ws35{word-spacing:7.685333pt;}
.ws57{word-spacing:7.696000pt;}
.ws34{word-spacing:7.872000pt;}
.ws1f6{word-spacing:8.000000pt;}
.ws1d4{word-spacing:8.096000pt;}
.ws1c8{word-spacing:8.149333pt;}
.ws1bf{word-spacing:8.320000pt;}
.ws4e{word-spacing:8.474667pt;}
.wsd7{word-spacing:8.512000pt;}
.ws1df{word-spacing:8.677333pt;}
.ws3f{word-spacing:8.698667pt;}
.ws76{word-spacing:8.762667pt;}
.ws104{word-spacing:9.002667pt;}
.ws2b{word-spacing:9.050667pt;}
.ws1dd{word-spacing:9.280000pt;}
.ws10a{word-spacing:9.504000pt;}
.ws19e{word-spacing:9.546667pt;}
.ws81{word-spacing:9.664000pt;}
.ws9e{word-spacing:9.733333pt;}
.ws87{word-spacing:9.824000pt;}
.ws1f4{word-spacing:10.021333pt;}
.ws10d{word-spacing:10.464000pt;}
.ws1dc{word-spacing:10.560000pt;}
.ws148{word-spacing:10.672000pt;}
.ws5c{word-spacing:10.855136pt;}
.ws99{word-spacing:10.858667pt;}
.wse8{word-spacing:11.194667pt;}
.ws85{word-spacing:11.242667pt;}
.ws1e7{word-spacing:11.306667pt;}
.ws2e{word-spacing:11.354667pt;}
.ws19c{word-spacing:11.376000pt;}
.ws10c{word-spacing:11.733333pt;}
.wse6{word-spacing:11.840000pt;}
.ws1ba{word-spacing:11.878379pt;}
.ws93{word-spacing:11.957333pt;}
.ws1e6{word-spacing:12.064000pt;}
.wsdd{word-spacing:12.106667pt;}
.wsdc{word-spacing:12.154667pt;}
.wse7{word-spacing:12.261333pt;}
.wsab{word-spacing:12.293333pt;}
.wsed{word-spacing:12.469333pt;}
.wsad{word-spacing:12.512000pt;}
.ws1f3{word-spacing:12.581333pt;}
.ws133{word-spacing:13.024000pt;}
.ws10e{word-spacing:13.162667pt;}
.ws43{word-spacing:13.338667pt;}
.wsf8{word-spacing:13.632000pt;}
.ws2a{word-spacing:13.653333pt;}
.ws143{word-spacing:13.701333pt;}
.wsb4{word-spacing:14.085333pt;}
.ws110{word-spacing:14.282667pt;}
.ws45{word-spacing:14.298667pt;}
.ws1cf{word-spacing:14.400000pt;}
.ws53{word-spacing:14.464000pt;}
.ws1d1{word-spacing:14.944000pt;}
.wsdf{word-spacing:15.034667pt;}
.ws1ce{word-spacing:15.264000pt;}
.ws88{word-spacing:15.370667pt;}
.wsef{word-spacing:15.584000pt;}
.ws1ec{word-spacing:15.680000pt;}
.ws37{word-spacing:15.744000pt;}
.wsfb{word-spacing:15.765333pt;}
.ws49{word-spacing:15.808000pt;}
.ws79{word-spacing:15.914667pt;}
.wsa4{word-spacing:15.952000pt;}
.ws8e{word-spacing:16.005333pt;}
.ws1c7{word-spacing:16.325333pt;}
.ws10f{word-spacing:16.432000pt;}
.wsf9{word-spacing:16.858667pt;}
.ws1cc{word-spacing:17.050667pt;}
.ws100{word-spacing:17.258667pt;}
.ws1c4{word-spacing:17.376000pt;}
.ws3e{word-spacing:17.413333pt;}
.ws19d{word-spacing:17.573333pt;}
.ws1eb{word-spacing:17.733333pt;}
.ws1c3{word-spacing:17.802667pt;}
.ws1ea{word-spacing:17.824000pt;}
.wsee{word-spacing:17.978667pt;}
.ws1f2{word-spacing:18.144000pt;}
.ws10b{word-spacing:18.149333pt;}
.wsb1{word-spacing:18.554667pt;}
.ws29{word-spacing:18.714667pt;}
.wsd9{word-spacing:19.109333pt;}
.ws1ee{word-spacing:19.200000pt;}
.ws36{word-spacing:19.418667pt;}
.ws1d9{word-spacing:19.520000pt;}
.ws9a{word-spacing:19.840000pt;}
.wsb6{word-spacing:20.149333pt;}
.ws19b{word-spacing:20.298667pt;}
.ws42{word-spacing:20.314667pt;}
.wsa5{word-spacing:20.384000pt;}
.ws1c{word-spacing:20.480000pt;}
.ws1ef{word-spacing:20.666667pt;}
.ws58{word-spacing:20.704000pt;}
.ws31{word-spacing:20.922667pt;}
.ws102{word-spacing:21.130667pt;}
.ws1d8{word-spacing:21.216000pt;}
.ws46{word-spacing:21.328000pt;}
.ws1ed{word-spacing:21.536000pt;}
.ws2d{word-spacing:22.144000pt;}
.ws5b{word-spacing:22.654667pt;}
.ws101{word-spacing:22.714667pt;}
.ws107{word-spacing:22.800000pt;}
.wsd5{word-spacing:22.858240pt;}
.ws28{word-spacing:23.248000pt;}
.ws1c5{word-spacing:24.090667pt;}
.ws1e2{word-spacing:24.640000pt;}
.ws1cd{word-spacing:24.816000pt;}
.ws1f8{word-spacing:25.152000pt;}
.ws92{word-spacing:25.269333pt;}
.ws7e{word-spacing:26.330667pt;}
.ws62{word-spacing:26.680373pt;}
.ws6b{word-spacing:27.212469pt;}
.ws108{word-spacing:27.365333pt;}
.wsda{word-spacing:27.776000pt;}
.ws48{word-spacing:27.957333pt;}
.wsc8{word-spacing:28.899840pt;}
.ws144{word-spacing:28.981333pt;}
.wsb7{word-spacing:30.074667pt;}
.wsb2{word-spacing:30.213333pt;}
.ws30{word-spacing:30.714667pt;}
.wsfa{word-spacing:31.578667pt;}
.ws39{word-spacing:31.861333pt;}
.ws47{word-spacing:31.962667pt;}
.wsfc{word-spacing:32.474667pt;}
.wsd3{word-spacing:32.729387pt;}
.wsc7{word-spacing:32.922027pt;}
.wse2{word-spacing:33.466667pt;}
.ws1b6{word-spacing:33.635712pt;}
.wse3{word-spacing:33.904000pt;}
.ws97{word-spacing:33.930667pt;}
.wsd6{word-spacing:34.965333pt;}
.wsc4{word-spacing:35.111040pt;}
.wsaa{word-spacing:35.509333pt;}
.ws4a{word-spacing:35.552000pt;}
.wsb3{word-spacing:37.850667pt;}
.wsa7{word-spacing:37.946667pt;}
.ws1f7{word-spacing:38.586667pt;}
.ws8b{word-spacing:38.880000pt;}
.wsaf{word-spacing:39.392000pt;}
.ws18{word-spacing:39.680000pt;}
.ws84{word-spacing:40.757333pt;}
.ws1c2{word-spacing:41.082667pt;}
.ws1f0{word-spacing:42.144000pt;}
.ws9c{word-spacing:43.557333pt;}
.ws2f{word-spacing:46.202667pt;}
.wsa0{word-spacing:49.504000pt;}
.ws61{word-spacing:51.129333pt;}
.ws6a{word-spacing:51.817333pt;}
.wsf6{word-spacing:53.120000pt;}
.ws68{word-spacing:57.383067pt;}
.wsf4{word-spacing:60.800000pt;}
.ws32{word-spacing:63.365333pt;}
.wsf5{word-spacing:65.472000pt;}
.ws1f1{word-spacing:66.752000pt;}
.wsf2{word-spacing:73.600000pt;}
.wsf3{word-spacing:78.394667pt;}
.ws120{word-spacing:79.248379pt;}
.wsf1{word-spacing:79.840000pt;}
.wsf0{word-spacing:80.181333pt;}
.ws11f{word-spacing:80.617612pt;}
.ws11d{word-spacing:81.975434pt;}
.ws11c{word-spacing:84.718201pt;}
.ws11e{word-spacing:84.723906pt;}
.ws69{word-spacing:88.852000pt;}
.ws125{word-spacing:89.761010pt;}
.ws123{word-spacing:92.984925pt;}
.ws124{word-spacing:96.215021pt;}
.ws113{word-spacing:97.476135pt;}
.ws116{word-spacing:97.483038pt;}
.ws117{word-spacing:97.489001pt;}
.ws122{word-spacing:97.810222pt;}
.ws129{word-spacing:98.632030pt;}
.ws114{word-spacing:100.802359pt;}
.ws127{word-spacing:102.167551pt;}
.ws115{word-spacing:102.459038pt;}
.ws187{word-spacing:103.825726pt;}
.ws128{word-spacing:105.695790pt;}
.ws126{word-spacing:107.463551pt;}
.wsd1{word-spacing:110.883563pt;}
.ws18c{word-spacing:112.563830pt;}
.wsce{word-spacing:112.864000pt;}
.ws195{word-spacing:112.988745pt;}
.ws1b0{word-spacing:114.494782pt;}
.ws18e{word-spacing:114.820636pt;}
.ws193{word-spacing:115.264463pt;}
.ws166{word-spacing:116.268647pt;}
.ws1ae{word-spacing:116.784794pt;}
.ws163{word-spacing:118.600213pt;}
.ws164{word-spacing:118.609968pt;}
.ws1ad{word-spacing:119.102995pt;}
.ws1af{word-spacing:119.128887pt;}
.ws1b1{word-spacing:119.156005pt;}
.ws18b{word-spacing:119.779028pt;}
.ws18d{word-spacing:119.810324pt;}
.ws176{word-spacing:119.892388pt;}
.ws194{word-spacing:120.225967pt;}
.ws192{word-spacing:120.266746pt;}
.ws196{word-spacing:122.511167pt;}
.ws181{word-spacing:122.539701pt;}
.ws165{word-spacing:123.707519pt;}
.ws162{word-spacing:123.759222pt;}
.ws14e{word-spacing:124.402434pt;}
.ws183{word-spacing:124.996179pt;}
.ws167{word-spacing:126.068351pt;}
.ws197{word-spacing:129.347801pt;}
.ws14d{word-spacing:129.695821pt;}
.ws14f{word-spacing:129.706044pt;}
.ws15e{word-spacing:130.085399pt;}
.ws180{word-spacing:130.405156pt;}
.ws182{word-spacing:130.439215pt;}
.ws15c{word-spacing:132.696190pt;}
.ws168{word-spacing:133.072802pt;}
.ws170{word-spacing:133.375698pt;}
.ws15d{word-spacing:135.875543pt;}
.ws16d{word-spacing:136.050647pt;}
.ws16e{word-spacing:136.061839pt;}
.ws156{word-spacing:137.819043pt;}
.ws154{word-spacing:137.829544pt;}
.ws130{word-spacing:137.849333pt;}
.ws15b{word-spacing:138.544112pt;}
.ws16f{word-spacing:141.928492pt;}
.ws16c{word-spacing:141.950877pt;}
.ws153{word-spacing:143.743267pt;}
.ws171{word-spacing:144.637018pt;}
.wsbf{word-spacing:145.476133pt;}
.ws15f{word-spacing:146.351479pt;}
.ws155{word-spacing:146.423156pt;}
.wsb9{word-spacing:148.148800pt;}
.ws157{word-spacing:148.689531pt;}
.wsbc{word-spacing:150.562400pt;}
.ws172{word-spacing:152.673057pt;}
.ws17a{word-spacing:163.379701pt;}
.ws17c{word-spacing:163.387551pt;}
.ws5d{word-spacing:164.740000pt;}
.ws60{word-spacing:165.892933pt;}
.ws17b{word-spacing:170.360741pt;}
.ws1e{word-spacing:183.502784pt;}
.wsc0{word-spacing:186.617947pt;}
.wsbd{word-spacing:189.172613pt;}
.wsba{word-spacing:189.369947pt;}
.wsc1{word-spacing:194.397707pt;}
.wsbb{word-spacing:194.589707pt;}
.wsbe{word-spacing:198.237707pt;}
.ws64{word-spacing:214.386533pt;}
.ws131{word-spacing:247.800373pt;}
.wsc3{word-spacing:275.752747pt;}
.ws12d{word-spacing:300.755040pt;}
.wsc5{word-spacing:303.605760pt;}
.ws12c{word-spacing:309.016107pt;}
.ws12b{word-spacing:320.684000pt;}
.ws5a{word-spacing:358.637813pt;}
.ws72{word-spacing:503.895232pt;}
.wsa{word-spacing:1122.853333pt;}
._14{margin-left:-251.537840pt;}
._24{margin-left:-229.850384pt;}
._21{margin-left:-217.527189pt;}
._15{margin-left:-198.847296pt;}
._29{margin-left:-195.335493pt;}
._2c{margin-left:-193.148720pt;}
._30{margin-left:-190.382939pt;}
._28{margin-left:-181.570667pt;}
._11{margin-left:-179.685653pt;}
._17{margin-left:-178.098608pt;}
._2f{margin-left:-177.121600pt;}
._27{margin-left:-169.652656pt;}
._2a{margin-left:-168.377989pt;}
._2e{margin-left:-167.097989pt;}
._49{margin-left:-166.008661pt;}
._1f{margin-left:-158.652000pt;}
._13{margin-left:-154.977147pt;}
._1d{margin-left:-153.180000pt;}
._32{margin-left:-146.957653pt;}
._12{margin-left:-144.930667pt;}
._16{margin-left:-143.368000pt;}
._35{margin-left:-140.021547pt;}
._b{margin-left:-136.490421pt;}
._a{margin-left:-128.597333pt;}
._e{margin-left:-127.047099pt;}
._f{margin-left:-125.785792pt;}
._2b{margin-left:-124.756843pt;}
._2d{margin-left:-123.601147pt;}
._31{margin-left:-122.315813pt;}
._34{margin-left:-118.485333pt;}
._d{margin-left:-116.989333pt;}
._4a{margin-left:-115.171275pt;}
._47{margin-left:-107.900496pt;}
._46{margin-left:-99.718368pt;}
._26{margin-left:-98.015717pt;}
._23{margin-left:-96.735717pt;}
._25{margin-left:-95.455717pt;}
._22{margin-left:-83.816000pt;}
._20{margin-left:-81.939477pt;}
._1c{margin-left:-80.225333pt;}
._1e{margin-left:-76.785024pt;}
._3b{margin-left:-71.736133pt;}
._10{margin-left:-56.733333pt;}
._33{margin-left:-35.916267pt;}
._18{margin-left:-21.557760pt;}
._1a{margin-left:-20.643840pt;}
._1b{margin-left:-19.514880pt;}
._19{margin-left:-18.547200pt;}
._38{margin-left:-17.107685pt;}
._5e{margin-left:-15.325819pt;}
._58{margin-left:-14.418187pt;}
._3a{margin-left:-12.714272pt;}
._52{margin-left:-9.994283pt;}
._56{margin-left:-8.982667pt;}
._4e{margin-left:-7.869680pt;}
._9{margin-left:-6.879936pt;}
._7{margin-left:-5.726155pt;}
._8{margin-left:-4.220789pt;}
._6{margin-left:-3.117632pt;}
._4{margin-left:-2.084635pt;}
._2{margin-left:-0.892848pt;}
._0{width:1.773856pt;}
._1{width:3.504549pt;}
._4b{width:4.524128pt;}
._50{width:5.419365pt;}
._5b{width:6.456293pt;}
._57{width:8.429989pt;}
._53{width:9.357867pt;}
._63{width:11.197867pt;}
._48{width:12.875013pt;}
._37{width:17.085227pt;}
._5{width:20.541925pt;}
._64{width:22.777765pt;}
._36{width:24.775893pt;}
._3e{width:30.411067pt;}
._c{width:31.718235pt;}
._40{width:86.256367pt;}
._3f{width:89.011948pt;}
._43{width:99.740327pt;}
._41{width:102.975066pt;}
._42{width:104.570267pt;}
._39{width:109.152112pt;}
._44{width:113.153494pt;}
._45{width:114.906523pt;}
._61{width:121.432110pt;}
._62{width:124.945100pt;}
._3c{width:129.626779pt;}
._59{width:132.844068pt;}
._4d{width:136.297600pt;}
._4c{width:139.887565pt;}
._5f{width:141.094001pt;}
._55{width:144.533654pt;}
._60{width:145.434278pt;}
._54{width:147.112170pt;}
._3d{width:148.477333pt;}
._4f{width:151.491593pt;}
._51{width:154.954867pt;}
._5c{width:181.424212pt;}
._5a{width:184.130664pt;}
._5d{width:189.538196pt;}
._3{width:418.208107pt;}
.fs17{font-size:19.077333pt;}
.fs18{font-size:21.978667pt;}
.fs15{font-size:22.885333pt;}
.fs19{font-size:24.160000pt;}
.fs16{font-size:26.880000pt;}
.fs25{font-size:28.613333pt;}
.fs26{font-size:31.296000pt;}
.fs14{font-size:32.000000pt;}
.fs20{font-size:32.192000pt;}
.fs22{font-size:33.040000pt;}
.fs12{font-size:33.450667pt;}
.fs11{font-size:33.509333pt;}
.fs1b{font-size:33.594667pt;}
.fsb{font-size:33.733333pt;}
.fs1d{font-size:34.016000pt;}
.fse{font-size:34.048000pt;}
.fs24{font-size:34.058667pt;}
.fs1{font-size:34.560000pt;}
.fs1f{font-size:35.930667pt;}
.fs21{font-size:36.938667pt;}
.fs1e{font-size:37.733333pt;}
.fs5{font-size:39.680000pt;}
.fs0{font-size:42.234667pt;}
.fs23{font-size:44.645333pt;}
.fs8{font-size:47.264000pt;}
.fs13{font-size:47.786667pt;}
.fs10{font-size:47.877333pt;}
.fs1a{font-size:48.000000pt;}
.fsa{font-size:48.186667pt;}
.fs9{font-size:48.634667pt;}
.fs6{font-size:53.760000pt;}
.fs4{font-size:64.000000pt;}
.fsf{font-size:65.232000pt;}
.fsc{font-size:65.349333pt;}
.fsd{font-size:66.272000pt;}
.fs7{font-size:74.234667pt;}
.fs3{font-size:76.800000pt;}
.fs1c{font-size:80.256000pt;}
.fs2{font-size:96.000000pt;}
.y119{bottom:-0.961333pt;}
.y170{bottom:-0.320000pt;}
.y0{bottom:0.000000pt;}
.y179{bottom:0.320000pt;}
.y19f{bottom:0.321333pt;}
.ye0{bottom:1.598667pt;}
.ydd{bottom:1.600000pt;}
.ye8{bottom:1.601333pt;}
.y42{bottom:2.558667pt;}
.ya6{bottom:2.560000pt;}
.y204{bottom:3.201333pt;}
.y53{bottom:3.520000pt;}
.y4c{bottom:3.841333pt;}
.y154{bottom:4.800000pt;}
.y2{bottom:49.280000pt;}
.ya5{bottom:105.918667pt;}
.ya8{bottom:114.881333pt;}
.y2c{bottom:117.448000pt;}
.yaa{bottom:117.761333pt;}
.y10d{bottom:121.280000pt;}
.y1e8{bottom:121.644000pt;}
.ya4{bottom:122.238667pt;}
.yd1{bottom:123.201333pt;}
.ya7{bottom:126.080000pt;}
.ya9{bottom:126.081333pt;}
.y2b{bottom:133.448000pt;}
.y1e7{bottom:133.802667pt;}
.y41{bottom:136.320000pt;}
.y10c{bottom:137.280000pt;}
.y43{bottom:138.878667pt;}
.y40{bottom:138.880000pt;}
.yd0{bottom:139.201333pt;}
.y15f{bottom:140.162667pt;}
.y74{bottom:144.001333pt;}
.y1e6{bottom:149.161333pt;}
.ya3{bottom:149.442667pt;}
.y2a{bottom:149.448000pt;}
.y15e{bottom:156.162667pt;}
.y72{bottom:160.001333pt;}
.y10b{bottom:161.280000pt;}
.y1e5{bottom:161.320000pt;}
.ycf{bottom:162.560000pt;}
.y3f{bottom:163.520000pt;}
.y18a{bottom:164.798667pt;}
.ya2{bottom:165.442667pt;}
.y29{bottom:165.448000pt;}
.y73{bottom:166.080000pt;}
.y137{bottom:168.000000pt;}
.y15d{bottom:172.162667pt;}
.y1e4{bottom:173.478667pt;}
.yce{bottom:174.718667pt;}
.y71{bottom:176.001333pt;}
.y10a{bottom:177.280000pt;}
.y3e{bottom:179.520000pt;}
.y28{bottom:181.448000pt;}
.y1e3{bottom:185.637333pt;}
.y188{bottom:187.838667pt;}
.ya1{bottom:189.442667pt;}
.y136{bottom:190.400000pt;}
.y1b5{bottom:191.360000pt;}
.y109{bottom:193.280000pt;}
.y3d{bottom:195.840000pt;}
.y15c{bottom:196.162667pt;}
.y27{bottom:197.448000pt;}
.y184{bottom:200.000000pt;}
.y70{bottom:200.001333pt;}
.y1e2{bottom:200.996000pt;}
.y1b1{bottom:201.598667pt;}
.ya0{bottom:205.442667pt;}
.y108{bottom:209.280000pt;}
.y132{bottom:212.160000pt;}
.y15b{bottom:212.162667pt;}
.y1e1{bottom:213.154667pt;}
.y26{bottom:213.448000pt;}
.y6f{bottom:216.001333pt;}
.y189{bottom:218.558667pt;}
.y12b{bottom:219.518667pt;}
.y9f{bottom:221.442667pt;}
.y1b6{bottom:221.758667pt;}
.y185{bottom:222.718667pt;}
.y1b2{bottom:223.678667pt;}
.y12c{bottom:224.000000pt;}
.y1e0{bottom:225.313333pt;}
.y15a{bottom:228.162667pt;}
.y25{bottom:229.448000pt;}
.y6e{bottom:232.001333pt;}
.y107{bottom:233.280000pt;}
.y9e{bottom:237.442667pt;}
.y3c{bottom:237.760000pt;}
.y12d{bottom:238.080000pt;}
.y186{bottom:238.400000pt;}
.y1b3{bottom:239.360000pt;}
.y135{bottom:240.638667pt;}
.y1df{bottom:240.672000pt;}
.y24{bottom:245.448000pt;}
.y134{bottom:248.000000pt;}
.y106{bottom:249.280000pt;}
.y3b{bottom:249.918667pt;}
.y12e{bottom:251.838667pt;}
.y159{bottom:252.162667pt;}
.y1de{bottom:252.830667pt;}
.y9d{bottom:253.442667pt;}
.y187{bottom:254.080000pt;}
.y1b4{bottom:255.678667pt;}
.y6d{bottom:256.001333pt;}
.y23{bottom:261.448000pt;}
.y1dd{bottom:264.989333pt;}
.y105{bottom:265.280000pt;}
.y12f{bottom:265.598667pt;}
.y9c{bottom:269.442667pt;}
.y6c{bottom:272.001333pt;}
.y22{bottom:277.448000pt;}
.y130{bottom:279.360000pt;}
.y133{bottom:280.318667pt;}
.y1dc{bottom:280.348000pt;}
.y104{bottom:281.280000pt;}
.y158{bottom:281.281333pt;}
.y9b{bottom:285.442667pt;}
.y1db{bottom:292.506667pt;}
.y131{bottom:293.120000pt;}
.y21{bottom:293.448000pt;}
.y6b{bottom:296.001333pt;}
.y183{bottom:297.280000pt;}
.y1b0{bottom:300.480000pt;}
.y1da{bottom:304.665333pt;}
.y103{bottom:305.280000pt;}
.y157{bottom:306.240000pt;}
.y20{bottom:309.448000pt;}
.y9a{bottom:309.761333pt;}
.y6a{bottom:312.001333pt;}
.y1d9{bottom:316.824000pt;}
.y181{bottom:320.320000pt;}
.y102{bottom:321.280000pt;}
.y156{bottom:322.240000pt;}
.y1ae{bottom:323.838667pt;}
.y1f{bottom:325.448000pt;}
.y69{bottom:328.001333pt;}
.y99{bottom:328.641333pt;}
.y1d8{bottom:328.982667pt;}
.y17d{bottom:330.878667pt;}
.y1aa{bottom:334.080000pt;}
.y101{bottom:337.280000pt;}
.y1e{bottom:341.448000pt;}
.y1d7{bottom:344.341333pt;}
.y153{bottom:346.878667pt;}
.y155{bottom:348.480000pt;}
.y182{bottom:352.000000pt;}
.y68{bottom:352.001333pt;}
.y17e{bottom:353.278667pt;}
.y100{bottom:353.280000pt;}
.y1af{bottom:354.238667pt;}
.y1ab{bottom:356.160000pt;}
.y1d6{bottom:356.500000pt;}
.y1d{bottom:357.448000pt;}
.y67{bottom:368.001333pt;}
.y1d5{bottom:368.658667pt;}
.y17f{bottom:369.278667pt;}
.yff{bottom:369.280000pt;}
.y98{bottom:371.201333pt;}
.y1ac{bottom:372.480000pt;}
.y1c{bottom:373.448000pt;}
.y152{bottom:376.320000pt;}
.y1d4{bottom:380.817333pt;}
.y180{bottom:386.240000pt;}
.y97{bottom:387.201333pt;}
.y1ad{bottom:388.160000pt;}
.y1b{bottom:389.448000pt;}
.y66{bottom:392.001333pt;}
.y151{bottom:392.320000pt;}
.y3a{bottom:392.962667pt;}
.y1d3{bottom:392.976000pt;}
.yfe{bottom:394.238667pt;}
.y96{bottom:403.201333pt;}
.ycd{bottom:403.848000pt;}
.y1a{bottom:405.448000pt;}
.y65{bottom:408.001333pt;}
.y150{bottom:408.320000pt;}
.y1d2{bottom:408.334667pt;}
.y39{bottom:408.962667pt;}
.y95{bottom:419.201333pt;}
.ycc{bottom:419.842667pt;}
.y1d1{bottom:420.493333pt;}
.y19{bottom:421.448000pt;}
.y64{bottom:424.001333pt;}
.y14f{bottom:424.320000pt;}
.y38{bottom:424.962667pt;}
.y17c{bottom:430.400000pt;}
.y1a9{bottom:433.600000pt;}
.ycb{bottom:435.842667pt;}
.y1d0{bottom:435.852000pt;}
.y18{bottom:437.448000pt;}
.y63{bottom:440.001333pt;}
.y37{bottom:440.962667pt;}
.y94{bottom:443.201333pt;}
.y17b{bottom:446.400000pt;}
.yfd{bottom:447.358667pt;}
.y1cf{bottom:448.010667pt;}
.y14e{bottom:448.320000pt;}
.y1a8{bottom:449.600000pt;}
.yca{bottom:451.842667pt;}
.y17{bottom:453.448000pt;}
.y62{bottom:456.001333pt;}
.y93{bottom:459.201333pt;}
.y1ce{bottom:460.169333pt;}
.yfc{bottom:463.358667pt;}
.y14d{bottom:464.320000pt;}
.y36{bottom:464.321333pt;}
.yc9{bottom:467.842667pt;}
.y17a{bottom:469.758667pt;}
.y61{bottom:472.001333pt;}
.y1cd{bottom:472.328000pt;}
.y1a7{bottom:472.958667pt;}
.y92{bottom:475.201333pt;}
.y35{bottom:476.480000pt;}
.y16{bottom:478.406667pt;}
.yfb{bottom:479.358667pt;}
.y14c{bottom:480.320000pt;}
.y12a{bottom:483.521333pt;}
.yc8{bottom:483.842667pt;}
.y1cc{bottom:487.686667pt;}
.y60{bottom:488.001333pt;}
.y91{bottom:491.201333pt;}
.y177{bottom:492.160000pt;}
.y20c{bottom:493.118667pt;}
.yfa{bottom:495.358667pt;}
.y1a5{bottom:495.678667pt;}
.y20b{bottom:496.320000pt;}
.y1cb{bottom:499.845333pt;}
.y148{bottom:501.118667pt;}
.y173{bottom:504.000000pt;}
.y1a2{bottom:504.960000pt;}
.y129{bottom:505.921333pt;}
.y90{bottom:507.201333pt;}
.yc7{bottom:508.801333pt;}
.y20a{bottom:509.118667pt;}
.y5f{bottom:512.001333pt;}
.y1ca{bottom:512.004000pt;}
.y14b{bottom:512.960000pt;}
.yf9{bottom:519.358667pt;}
.y149{bottom:520.000000pt;}
.y14a{bottom:522.880000pt;}
.y178{bottom:523.198667pt;}
.y8f{bottom:523.201333pt;}
.y174{bottom:524.800000pt;}
.y125{bottom:525.758667pt;}
.y1a6{bottom:528.000000pt;}
.y5e{bottom:528.001333pt;}
.y209{bottom:528.320000pt;}
.yc6{bottom:530.880000pt;}
.y15{bottom:531.206667pt;}
.y11e{bottom:532.160000pt;}
.y1c9{bottom:534.082667pt;}
.yf8{bottom:535.358667pt;}
.y11f{bottom:536.000000pt;}
.y8e{bottom:539.201333pt;}
.y208{bottom:541.118667pt;}
.y175{bottom:542.720000pt;}
.y1a3{bottom:543.678667pt;}
.y147{bottom:545.918667pt;}
.y14{bottom:547.206667pt;}
.y120{bottom:550.720000pt;}
.yf7{bottom:551.358667pt;}
.y5d{bottom:552.001333pt;}
.y8d{bottom:555.201333pt;}
.y128{bottom:556.160000pt;}
.y207{bottom:557.118667pt;}
.y176{bottom:560.640000pt;}
.y146{bottom:561.918667pt;}
.y1a4{bottom:562.880000pt;}
.y13{bottom:562.885333pt;}
.y127{bottom:563.838667pt;}
.y121{bottom:565.438667pt;}
.yf6{bottom:567.358667pt;}
.y5c{bottom:568.001333pt;}
.y8c{bottom:571.201333pt;}
.y206{bottom:573.118667pt;}
.y205{bottom:576.320000pt;}
.y145{bottom:577.918667pt;}
.y12{bottom:578.564000pt;}
.y122{bottom:580.160000pt;}
.yf5{bottom:583.358667pt;}
.yc5{bottom:584.000000pt;}
.y8b{bottom:587.201333pt;}
.y203{bottom:589.118667pt;}
.y5b{bottom:592.001333pt;}
.y202{bottom:592.386667pt;}
.y11{bottom:594.242667pt;}
.y123{bottom:594.880000pt;}
.y1c8{bottom:595.202667pt;}
.y126{bottom:595.518667pt;}
.yf4{bottom:599.358667pt;}
.yc4{bottom:600.000000pt;}
.y172{bottom:602.238667pt;}
.y8a{bottom:603.201333pt;}
.y1a1{bottom:605.758667pt;}
.y5a{bottom:608.001333pt;}
.y124{bottom:609.598667pt;}
.y1c7{bottom:611.202667pt;}
.yf3{bottom:615.358667pt;}
.y10{bottom:619.201333pt;}
.y16f{bottom:620.158667pt;}
.y19e{bottom:623.678667pt;}
.y59{bottom:624.001333pt;}
.yc3{bottom:624.640000pt;}
.y34{bottom:626.568000pt;}
.yf2{bottom:631.358667pt;}
.y201{bottom:631.426667pt;}
.y16b{bottom:632.000000pt;}
.y19a{bottom:635.198667pt;}
.y89{bottom:635.201333pt;}
.yc2{bottom:640.640000pt;}
.y33{bottom:642.568000pt;}
.y1c6{bottom:644.161333pt;}
.yf1{bottom:647.358667pt;}
.y200{bottom:647.426667pt;}
.y58{bottom:648.001333pt;}
.y171{bottom:650.238667pt;}
.y88{bottom:651.201333pt;}
.y16c{bottom:655.358667pt;}
.y1a0{bottom:656.958667pt;}
.y19b{bottom:658.560000pt;}
.y32{bottom:658.568000pt;}
.yf0{bottom:663.358667pt;}
.y1ff{bottom:663.426667pt;}
.y57{bottom:664.001333pt;}
.yc1{bottom:665.280000pt;}
.y87{bottom:667.201333pt;}
.y16d{bottom:670.400000pt;}
.yf{bottom:672.321333pt;}
.y19c{bottom:675.838667pt;}
.yef{bottom:679.358667pt;}
.y1fe{bottom:679.426667pt;}
.yc0{bottom:681.280000pt;}
.y86{bottom:683.201333pt;}
.y31{bottom:683.526667pt;}
.y16e{bottom:686.398667pt;}
.ye{bottom:688.321333pt;}
.y56{bottom:688.960000pt;}
.y19d{bottom:692.160000pt;}
.yee{bottom:695.358667pt;}
.y1fd{bottom:695.426667pt;}
.yd{bottom:704.321333pt;}
.y1c5{bottom:705.281333pt;}
.ybf{bottom:705.920000pt;}
.y85{bottom:707.201333pt;}
.y55{bottom:711.038667pt;}
.yed{bottom:711.358667pt;}
.y1fc{bottom:711.426667pt;}
.yc{bottom:720.321333pt;}
.y1c4{bottom:721.281333pt;}
.y84{bottom:723.201333pt;}
.yba{bottom:729.920000pt;}
.y16a{bottom:734.718667pt;}
.yec{bottom:736.320000pt;}
.yb{bottom:736.321333pt;}
.y30{bottom:736.646667pt;}
.y1fb{bottom:736.706667pt;}
.y199{bottom:738.238667pt;}
.ybc{bottom:739.200000pt;}
.y83{bottom:739.201333pt;}
.ybe{bottom:742.400000pt;}
.y144{bottom:742.718667pt;}
.y1c3{bottom:745.281333pt;}
.ybb{bottom:747.200000pt;}
.yeb{bottom:749.118667pt;}
.ybd{bottom:750.400000pt;}
.yea{bottom:752.000000pt;}
.ya{bottom:752.321333pt;}
.y2f{bottom:752.646667pt;}
.y82{bottom:755.201333pt;}
.y168{bottom:756.480000pt;}
.y197{bottom:759.358667pt;}
.y1c2{bottom:761.281333pt;}
.y52{bottom:763.518667pt;}
.ye9{bottom:764.158667pt;}
.y143{bottom:765.118667pt;}
.y54{bottom:767.038667pt;}
.y164{bottom:767.678667pt;}
.y9{bottom:768.321333pt;}
.y2e{bottom:768.646667pt;}
.y81{bottom:771.201333pt;}
.yb5{bottom:773.760000pt;}
.y194{bottom:774.078667pt;}
.y1c1{bottom:777.281333pt;}
.ye7{bottom:779.198667pt;}
.ye6{bottom:782.078667pt;}
.y13f{bottom:783.038667pt;}
.yb7{bottom:783.040000pt;}
.y11d{bottom:784.320000pt;}
.y8{bottom:784.321333pt;}
.y2d{bottom:784.646667pt;}
.yb9{bottom:786.240000pt;}
.y169{bottom:786.558667pt;}
.y80{bottom:787.201333pt;}
.y198{bottom:787.518667pt;}
.y165{bottom:789.120000pt;}
.y138{bottom:790.718667pt;}
.yb6{bottom:791.040000pt;}
.y51{bottom:791.676000pt;}
.y1fa{bottom:792.066667pt;}
.ye5{bottom:794.238667pt;}
.yb8{bottom:794.240000pt;}
.y139{bottom:795.838667pt;}
.ye4{bottom:797.120000pt;}
.y1c0{bottom:801.281333pt;}
.y7f{bottom:803.201333pt;}
.y1f9{bottom:804.225333pt;}
.y166{bottom:804.480000pt;}
.y11c{bottom:806.720000pt;}
.y50{bottom:807.358667pt;}
.ye3{bottom:809.280000pt;}
.y13a{bottom:810.238667pt;}
.y195{bottom:811.838667pt;}
.ye2{bottom:812.160000pt;}
.y4f{bottom:815.998667pt;}
.y1f8{bottom:816.384000pt;}
.y1bf{bottom:817.281333pt;}
.yb4{bottom:817.596000pt;}
.y142{bottom:819.198667pt;}
.y7e{bottom:819.201333pt;}
.y167{bottom:819.518667pt;}
.y141{bottom:819.838667pt;}
.y13b{bottom:824.320000pt;}
.y118{bottom:824.640000pt;}
.y196{bottom:827.198667pt;}
.ye1{bottom:828.160000pt;}
.y111{bottom:831.358667pt;}
.y1f7{bottom:831.742667pt;}
.y1be{bottom:833.281333pt;}
.yb3{bottom:833.596000pt;}
.y7d{bottom:835.201333pt;}
.y4e{bottom:836.158667pt;}
.y112{bottom:836.160000pt;}
.y13c{bottom:838.718667pt;}
.ydf{bottom:841.280000pt;}
.y1f6{bottom:843.901333pt;}
.yde{bottom:844.160000pt;}
.y7{bottom:848.641333pt;}
.y113{bottom:851.838667pt;}
.y13d{bottom:852.800000pt;}
.y4b{bottom:853.438667pt;}
.y140{bottom:855.358667pt;}
.y1f5{bottom:856.060000pt;}
.ydc{bottom:856.320000pt;}
.y4d{bottom:857.280000pt;}
.yb2{bottom:857.596000pt;}
.y1bd{bottom:858.240000pt;}
.ydb{bottom:859.198667pt;}
.y7c{bottom:859.520000pt;}
.y11b{bottom:864.000000pt;}
.y13e{bottom:866.558667pt;}
.y114{bottom:867.518667pt;}
.y163{bottom:867.838667pt;}
.y193{bottom:871.360000pt;}
.y1f4{bottom:871.418667pt;}
.yb1{bottom:873.596000pt;}
.yda{bottom:875.544000pt;}
.yd9{bottom:876.824000pt;}
.y7b{bottom:878.400000pt;}
.y4a{bottom:882.237333pt;}
.y115{bottom:882.878667pt;}
.y1f3{bottom:883.577333pt;}
.y162{bottom:883.838667pt;}
.y6{bottom:886.720000pt;}
.y192{bottom:887.360000pt;}
.yb0{bottom:889.596000pt;}
.y1f2{bottom:895.736000pt;}
.y7a{bottom:897.280000pt;}
.y11a{bottom:897.920000pt;}
.y116{bottom:898.238667pt;}
.yd8{bottom:902.744000pt;}
.y49{bottom:903.358667pt;}
.yaf{bottom:905.596000pt;}
.y161{bottom:907.838667pt;}
.y191{bottom:910.718667pt;}
.y1f1{bottom:911.094667pt;}
.y5{bottom:913.281333pt;}
.y117{bottom:913.600000pt;}
.yae{bottom:921.596000pt;}
.y1f0{bottom:923.253333pt;}
.y160{bottom:923.838667pt;}
.yd7{bottom:923.862667pt;}
.y48{bottom:928.317333pt;}
.y18f{bottom:928.640000pt;}
.y1bb{bottom:934.078667pt;}
.y1ef{bottom:938.612000pt;}
.y18b{bottom:939.518667pt;}
.y110{bottom:939.838667pt;}
.y79{bottom:939.840000pt;}
.yd6{bottom:939.862667pt;}
.y47{bottom:944.317333pt;}
.y1b7{bottom:944.320000pt;}
.yad{bottom:947.836000pt;}
.y1ee{bottom:950.770667pt;}
.y10f{bottom:955.838667pt;}
.y78{bottom:955.840000pt;}
.yd5{bottom:955.862667pt;}
.y4{bottom:957.440000pt;}
.y18c{bottom:960.320000pt;}
.y190{bottom:962.558667pt;}
.y1ed{bottom:962.929333pt;}
.y1b8{bottom:964.160000pt;}
.y1bc{bottom:964.798667pt;}
.y46{bottom:971.198667pt;}
.y10e{bottom:971.838667pt;}
.y77{bottom:971.840000pt;}
.yac{bottom:977.917333pt;}
.y1ec{bottom:978.288000pt;}
.yd4{bottom:979.862667pt;}
.y18d{bottom:980.160000pt;}
.y1b9{bottom:982.078667pt;}
.y3{bottom:985.600000pt;}
.y1eb{bottom:990.446667pt;}
.y45{bottom:995.838667pt;}
.y76{bottom:995.840000pt;}
.yd3{bottom:995.862667pt;}
.y18e{bottom:999.678667pt;}
.y1ba{bottom:1000.960000pt;}
.y1ea{bottom:1002.605333pt;}
.yab{bottom:1007.998667pt;}
.y44{bottom:1011.838667pt;}
.y75{bottom:1011.840000pt;}
.yd2{bottom:1011.854667pt;}
.y1e9{bottom:1014.764000pt;}
.y1{bottom:1056.960000pt;}
.h2e{height:4.478667pt;}
.h32{height:5.758667pt;}
.h42{height:8.000000pt;}
.h3c{height:8.320000pt;}
.h45{height:8.638667pt;}
.h2c{height:8.958667pt;}
.h2a{height:8.960000pt;}
.h1b{height:13.120000pt;}
.h33{height:13.438667pt;}
.h2f{height:13.898135pt;}
.hf{height:14.398667pt;}
.h4b{height:15.358667pt;}
.h18{height:15.678667pt;}
.h13{height:16.000000pt;}
.h30{height:16.011802pt;}
.h37{height:16.640000pt;}
.h2d{height:16.672323pt;}
.h31{height:17.600937pt;}
.h47{height:20.845260pt;}
.h48{height:22.799625pt;}
.h22{height:23.226000pt;}
.h1d{height:23.266734pt;}
.h35{height:23.325984pt;}
.h16{height:23.422266pt;}
.h3f{height:23.452375pt;}
.h41{height:24.070156pt;}
.h3a{height:24.781187pt;}
.h44{height:24.812271pt;}
.h3d{height:26.176052pt;}
.h40{height:26.910396pt;}
.h3b{height:27.489323pt;}
.h2b{height:28.078125pt;}
.h3{height:28.623885pt;}
.h4a{height:29.325047pt;}
.h6{height:30.324375pt;}
.h2{height:30.768615pt;}
.h43{height:32.524823pt;}
.h10{height:32.817094pt;}
.h27{height:32.961385pt;}
.h23{height:33.180000pt;}
.h1e{height:33.242953pt;}
.h36{height:33.328125pt;}
.ha{height:36.408750pt;}
.hb{height:36.435000pt;}
.hc{height:37.058445pt;}
.h49{height:37.120000pt;}
.h8{height:37.327500pt;}
.h28{height:38.081385pt;}
.h46{height:40.320000pt;}
.he{height:41.471391pt;}
.h1c{height:42.009555pt;}
.h34{height:42.117188pt;}
.h3e{height:42.560000pt;}
.h29{height:42.674070pt;}
.hd{height:43.375000pt;}
.h1a{height:45.292922pt;}
.h14{height:45.374391pt;}
.h19{height:46.015031pt;}
.h7{height:47.171250pt;}
.h11{height:49.725917pt;}
.h9{height:50.311385pt;}
.h12{height:51.000583pt;}
.h39{height:51.011250pt;}
.h20{height:53.565917pt;}
.h15{height:54.639042pt;}
.h24{height:54.660375pt;}
.h26{height:54.671042pt;}
.h25{height:54.692375pt;}
.h38{height:55.724625pt;}
.h5{height:56.985917pt;}
.h17{height:62.520583pt;}
.h21{height:62.525917pt;}
.h4{height:65.062500pt;}
.h1f{height:66.522953pt;}
.h0{height:1122.558667pt;}
.h1{height:1122.666667pt;}
.w5{width:3.838667pt;}
.w4{width:3.840000pt;}
.w6{width:6.080000pt;}
.w2{width:6.398667pt;}
.w3{width:6.400000pt;}
.w7{width:7.678667pt;}
.wf{width:8.640000pt;}
.we{width:8.960000pt;}
.wb{width:9.600000pt;}
.wd{width:9.918667pt;}
.wc{width:16.000000pt;}
.wa{width:16.320000pt;}
.w11{width:25.918667pt;}
.w9{width:30.080000pt;}
.w8{width:30.400000pt;}
.w13{width:40.640000pt;}
.w10{width:92.160000pt;}
.w12{width:221.118667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x6b{left:7.360000pt;}
.xf{left:56.638667pt;}
.x2{left:75.520000pt;}
.x52{left:77.438667pt;}
.x4f{left:79.040000pt;}
.x4c{left:81.280000pt;}
.x75{left:82.238667pt;}
.x55{left:83.198667pt;}
.x1a{left:85.117333pt;}
.x36{left:86.718667pt;}
.x76{left:88.318667pt;}
.x1b{left:90.238667pt;}
.x69{left:97.600000pt;}
.x63{left:99.520000pt;}
.x4b{left:100.478667pt;}
.x54{left:102.080000pt;}
.x8{left:103.981333pt;}
.x64{left:105.600000pt;}
.x67{left:106.560000pt;}
.x62{left:108.160000pt;}
.x66{left:109.438667pt;}
.x3{left:113.593333pt;}
.x6{left:155.825333pt;}
.x50{left:164.798667pt;}
.x16{left:184.640000pt;}
.x1{left:192.320000pt;}
.x4{left:204.466667pt;}
.x4d{left:206.398667pt;}
.x31{left:210.241333pt;}
.x35{left:211.518667pt;}
.x53{left:212.798667pt;}
.x17{left:216.000000pt;}
.x2f{left:219.520000pt;}
.x34{left:222.080000pt;}
.x12{left:225.278667pt;}
.x32{left:228.800000pt;}
.x6a{left:229.758667pt;}
.x15{left:231.038667pt;}
.x65{left:232.958667pt;}
.x68{left:233.918667pt;}
.x10{left:235.510667pt;}
.x19{left:239.678667pt;}
.x11{left:241.910667pt;}
.x18{left:245.438667pt;}
.x14{left:249.280000pt;}
.x33{left:250.558667pt;}
.x13{left:254.718667pt;}
.x30{left:256.001333pt;}
.x2c{left:261.753333pt;}
.x2e{left:263.040000pt;}
.x56{left:268.480000pt;}
.x2d{left:280.320000pt;}
.x5{left:282.226667pt;}
.x51{left:289.278667pt;}
.x4e{left:294.718667pt;}
.x7{left:296.622667pt;}
.x1c{left:312.320000pt;}
.x1d{left:316.798667pt;}
.x1f{left:398.720000pt;}
.x9{left:417.580000pt;}
.x3d{left:421.438667pt;}
.x77{left:422.705333pt;}
.x58{left:424.000000pt;}
.x1e{left:427.198667pt;}
.x73{left:432.958667pt;}
.x72{left:440.320000pt;}
.x6d{left:441.918667pt;}
.x57{left:442.880000pt;}
.x70{left:444.798667pt;}
.xa{left:446.058667pt;}
.x6e{left:448.000000pt;}
.x71{left:449.278667pt;}
.x6c{left:450.560000pt;}
.x2a{left:453.124000pt;}
.x28{left:460.802667pt;}
.x37{left:482.538667pt;}
.x2b{left:484.484000pt;}
.x24{left:495.358667pt;}
.x78{left:497.901333pt;}
.x38{left:511.657333pt;}
.x20{left:520.320000pt;}
.x5e{left:533.438667pt;}
.x5d{left:538.561333pt;}
.x39{left:540.776000pt;}
.x59{left:547.518667pt;}
.xd{left:561.278667pt;}
.x5b{left:566.080000pt;}
.x21{left:570.240000pt;}
.x5c{left:571.198667pt;}
.x74{left:572.480000pt;}
.x6f{left:573.438667pt;}
.x26{left:575.038667pt;}
.xe{left:578.240000pt;}
.x5f{left:588.478667pt;}
.xc{left:590.080000pt;}
.x5a{left:593.598667pt;}
.xb{left:597.762667pt;}
.x3a{left:599.013333pt;}
.x22{left:604.160000pt;}
.x60{left:610.557333pt;}
.x79{left:626.878667pt;}
.x3b{left:628.132000pt;}
.x27{left:637.118667pt;}
.x29{left:640.641333pt;}
.x61{left:652.148000pt;}
.x23{left:654.080000pt;}
.x25{left:657.598667pt;}
.x41{left:662.718667pt;}
.x3c{left:665.892000pt;}
.x3e{left:667.518667pt;}
.x42{left:670.400000pt;}
.x45{left:673.598667pt;}
.x7b{left:678.398667pt;}
.x7a{left:693.120000pt;}
.x3f{left:709.120000pt;}
.x46{left:712.960000pt;}
.x48{left:714.878667pt;}
.x43{left:716.160000pt;}
.x40{left:717.758667pt;}
.x47{left:720.640000pt;}
.x49{left:722.558667pt;}
.x44{left:723.838667pt;}
.x4a{left:725.760000pt;}
}




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