
    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_d7cc6a511781f786d5d75814.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_587ab8137dc5f2fb2d8bf4b2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;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_653ab62644a9f0bc0c4de8bb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.226000;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_cb6d40f88bb58c4aadeb4975.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;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_d74efa75994c40bdde7843e6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.691000;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_cdfafeeae0c9dd20f6807f1e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_58bde91d162cfe6a2af2d8fb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.933594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a10f2adc836837a235c5ee79.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_353e2d6c8bf07d350e8fa3fc.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.215332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_602e5a42daa0b5c6f74d254a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.775391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_eb649bc68caef8e7583008fc.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_516fd606be3e76cc3bec3345.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b12d1945764a119ec4879543.woff2')format("woff");}.fff{font-family:fff;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_331fd85d075a09c9b7f4c608.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.933594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_d906b448bfc6bd22c9c38654.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_60c25b89dae2dd90b00a16a8.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.215332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_602e5a42daa0b5c6f74d254a.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.775391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_eb649bc68caef8e7583008fc.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_516fd606be3e76cc3bec3345.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_8603b7a2fbebefcd65ae90ad.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_a5fe2f841181c86e3fbc2c32.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_51f3f5ad94c7c4dc87ee896d.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.494000;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:ff19;src:url('chunks/assets/font_84c2bc688a46526bbec94333.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.522000;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:ff1a;src:url('chunks/assets/font_8d21c977f513e7fc60184440.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.m8{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-61.164000px;}
.v1{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:17.358000px;}
.v4{vertical-align:19.530000px;}
.v8{vertical-align:21.702000px;}
.v5{vertical-align:32.880000px;}
.v2{vertical-align:42.258000px;}
.v3{vertical-align:54.156000px;}
.ls128{letter-spacing:-4.422600px;}
.ls127{letter-spacing:-4.325400px;}
.ls86{letter-spacing:-3.703813px;}
.ls8f{letter-spacing:-3.238326px;}
.ls111{letter-spacing:-1.911816px;}
.lsf6{letter-spacing:-1.881756px;}
.ls11d{letter-spacing:-1.737468px;}
.lsfd{letter-spacing:-1.551096px;}
.ls130{letter-spacing:-1.418832px;}
.ls121{letter-spacing:-1.190376px;}
.lsfc{letter-spacing:-1.160316px;}
.ls126{letter-spacing:-0.480960px;}
.ls87{letter-spacing:-0.475970px;}
.ls12f{letter-spacing:-0.456912px;}
.ls112{letter-spacing:-0.450900px;}
.ls92{letter-spacing:-0.448615px;}
.ls10a{letter-spacing:-0.438876px;}
.ls7d{letter-spacing:-0.437674px;}
.ls10f{letter-spacing:-0.408816px;}
.ls122{letter-spacing:-0.390780px;}
.ls12c{letter-spacing:-0.384768px;}
.ls72{letter-spacing:-0.382964px;}
.ls7e{letter-spacing:-0.372023px;}
.ls7f{letter-spacing:-0.355610px;}
.ls106{letter-spacing:-0.348696px;}
.ls71{letter-spacing:-0.317313px;}
.ls115{letter-spacing:-0.312624px;}
.ls88{letter-spacing:-0.306372px;}
.ls114{letter-spacing:-0.300600px;}
.ls81{letter-spacing:-0.279017px;}
.ls10e{letter-spacing:-0.270540px;}
.ls78{letter-spacing:-0.268075px;}
.ls11a{letter-spacing:-0.246492px;}
.ls85{letter-spacing:-0.246191px;}
.ls84{letter-spacing:-0.235250px;}
.ls116{letter-spacing:-0.234468px;}
.ls109{letter-spacing:-0.228456px;}
.ls12a{letter-spacing:-0.226800px;}
.ls65{letter-spacing:-0.224308px;}
.ls6f{letter-spacing:-0.218837px;}
.ls123{letter-spacing:-0.216432px;}
.ls79{letter-spacing:-0.213366px;}
.ls129{letter-spacing:-0.210600px;}
.lsf9{letter-spacing:-0.210420px;}
.ls7b{letter-spacing:-0.207895px;}
.ls11f{letter-spacing:-0.198396px;}
.ls76{letter-spacing:-0.196953px;}
.ls105{letter-spacing:-0.192384px;}
.ls5e{letter-spacing:-0.191482px;}
.ls113{letter-spacing:-0.186372px;}
.ls6b{letter-spacing:-0.186011px;}
.ls119{letter-spacing:-0.174348px;}
.ls75{letter-spacing:-0.169599px;}
.lsf4{letter-spacing:-0.168336px;}
.ls80{letter-spacing:-0.164128px;}
.ls10b{letter-spacing:-0.162324px;}
.ls82{letter-spacing:-0.158657px;}
.ls6c{letter-spacing:-0.153186px;}
.ls5f{letter-spacing:-0.147715px;}
.ls118{letter-spacing:-0.144288px;}
.ls120{letter-spacing:-0.138276px;}
.ls91{letter-spacing:-0.136773px;}
.ls124{letter-spacing:-0.132264px;}
.ls89{letter-spacing:-0.131302px;}
.lsf8{letter-spacing:-0.126252px;}
.ls67{letter-spacing:-0.125831px;}
.ls108{letter-spacing:-0.120240px;}
.ls6e{letter-spacing:-0.114889px;}
.lsff{letter-spacing:-0.114228px;}
.ls62{letter-spacing:-0.103947px;}
.ls12e{letter-spacing:-0.102204px;}
.ls7c{letter-spacing:-0.098477px;}
.ls11e{letter-spacing:-0.096192px;}
.ls103{letter-spacing:-0.090180px;}
.ls90{letter-spacing:-0.088452px;}
.ls6a{letter-spacing:-0.087535px;}
.lsf5{letter-spacing:-0.084168px;}
.ls77{letter-spacing:-0.082064px;}
.ls8e{letter-spacing:-0.078624px;}
.ls107{letter-spacing:-0.078156px;}
.lsee{letter-spacing:-0.076608px;}
.ls69{letter-spacing:-0.076593px;}
.ls110{letter-spacing:-0.072144px;}
.ls60{letter-spacing:-0.071122px;}
.ls58{letter-spacing:-0.069713px;}
.ls104{letter-spacing:-0.066132px;}
.ls6d{letter-spacing:-0.065651px;}
.ls5c{letter-spacing:-0.060180px;}
.lsf3{letter-spacing:-0.060120px;}
.ls66{letter-spacing:-0.054709px;}
.ls102{letter-spacing:-0.054108px;}
.ls73{letter-spacing:-0.049238px;}
.lsfa{letter-spacing:-0.048096px;}
.ls61{letter-spacing:-0.043767px;}
.lsfb{letter-spacing:-0.042084px;}
.ls8d{letter-spacing:-0.039312px;}
.ls70{letter-spacing:-0.038296px;}
.ls10d{letter-spacing:-0.036072px;}
.ls74{letter-spacing:-0.032826px;}
.ls117{letter-spacing:-0.030060px;}
.lsec{letter-spacing:-0.028728px;}
.ls68{letter-spacing:-0.027355px;}
.ls56{letter-spacing:-0.026142px;}
.lsf7{letter-spacing:-0.024048px;}
.ls64{letter-spacing:-0.021884px;}
.ls12b{letter-spacing:-0.021600px;}
.ls11b{letter-spacing:-0.018036px;}
.ls5b{letter-spacing:-0.016413px;}
.ls101{letter-spacing:-0.012024px;}
.ls63{letter-spacing:-0.010942px;}
.lsf1{letter-spacing:-0.010800px;}
.ls8a{letter-spacing:-0.009828px;}
.ls100{letter-spacing:-0.006012px;}
.ls5d{letter-spacing:-0.005471px;}
.ls8c{letter-spacing:-0.004914px;}
.ls0{letter-spacing:0.000000px;}
.ls14c{letter-spacing:0.000604px;}
.ls14b{letter-spacing:0.001902px;}
.ls137{letter-spacing:0.002642px;}
.ls14d{letter-spacing:0.003021px;}
.ls13a{letter-spacing:0.003389px;}
.ls27{letter-spacing:0.005471px;}
.lsc3{letter-spacing:0.006012px;}
.ls4c{letter-spacing:0.009828px;}
.lsf2{letter-spacing:0.010800px;}
.ls1d{letter-spacing:0.010942px;}
.lsbe{letter-spacing:0.012024px;}
.ls49{letter-spacing:0.014742px;}
.ls20{letter-spacing:0.016413px;}
.lsb3{letter-spacing:0.018036px;}
.ls42{letter-spacing:0.021884px;}
.lsac{letter-spacing:0.024048px;}
.ls18{letter-spacing:0.027355px;}
.lsc0{letter-spacing:0.030060px;}
.ls25{letter-spacing:0.032826px;}
.lscb{letter-spacing:0.036072px;}
.ls1a{letter-spacing:0.038296px;}
.lsaf{letter-spacing:0.042084px;}
.ls3a{letter-spacing:0.043767px;}
.lsb1{letter-spacing:0.048096px;}
.lse1{letter-spacing:0.048600px;}
.ls48{letter-spacing:0.049140px;}
.ls2e{letter-spacing:0.049238px;}
.ls47{letter-spacing:0.054054px;}
.lsd1{letter-spacing:0.054108px;}
.ls21{letter-spacing:0.054709px;}
.lscf{letter-spacing:0.060120px;}
.ls1e{letter-spacing:0.060180px;}
.ls3c{letter-spacing:0.065651px;}
.lsb7{letter-spacing:0.066132px;}
.lse2{letter-spacing:0.070200px;}
.ls41{letter-spacing:0.071122px;}
.lse9{letter-spacing:0.072144px;}
.ls33{letter-spacing:0.076593px;}
.lsae{letter-spacing:0.078156px;}
.ls2f{letter-spacing:0.082064px;}
.ls4b{letter-spacing:0.083538px;}
.lsca{letter-spacing:0.084168px;}
.ls1f{letter-spacing:0.087535px;}
.lsba{letter-spacing:0.090180px;}
.ls13{letter-spacing:0.091499px;}
.lsab{letter-spacing:0.091800px;}
.ls50{letter-spacing:0.093006px;}
.lsad{letter-spacing:0.096192px;}
.ls1b{letter-spacing:0.098477px;}
.lsa6{letter-spacing:0.100548px;}
.lse4{letter-spacing:0.102204px;}
.lse0{letter-spacing:0.102600px;}
.ls22{letter-spacing:0.103947px;}
.lsc1{letter-spacing:0.108216px;}
.ls36{letter-spacing:0.109418px;}
.lsb4{letter-spacing:0.114228px;}
.ls23{letter-spacing:0.114889px;}
.lsbc{letter-spacing:0.120240px;}
.ls7a{letter-spacing:0.125831px;}
.lsea{letter-spacing:0.126252px;}
.ls12{letter-spacing:0.130712px;}
.ls125{letter-spacing:0.132264px;}
.ls8b{letter-spacing:0.132678px;}
.ls35{letter-spacing:0.136773px;}
.ls11c{letter-spacing:0.138276px;}
.ls5a{letter-spacing:0.139427px;}
.ls83{letter-spacing:0.142244px;}
.lsa5{letter-spacing:0.143640px;}
.ls131{letter-spacing:0.144288px;}
.lsfe{letter-spacing:0.150300px;}
.lsf0{letter-spacing:0.153216px;}
.lsde{letter-spacing:0.162324px;}
.ls4d{letter-spacing:0.167076px;}
.ls11{letter-spacing:0.174283px;}
.lse7{letter-spacing:0.174348px;}
.ls38{letter-spacing:0.175069px;}
.ls10c{letter-spacing:0.180360px;}
.lsaa{letter-spacing:0.183600px;}
.lsa4{letter-spacing:0.191520px;}
.lsce{letter-spacing:0.192384px;}
.ls12d{letter-spacing:0.198396px;}
.lsdb{letter-spacing:0.246492px;}
.ls51{letter-spacing:0.268992px;}
.ls53{letter-spacing:0.298878px;}
.ls57{letter-spacing:0.370352px;}
.ls59{letter-spacing:0.392137px;}
.lsed{letter-spacing:0.406980px;}
.ls2d{letter-spacing:0.415790px;}
.lsef{letter-spacing:0.430920px;}
.lsd5{letter-spacing:0.456912px;}
.ls6{letter-spacing:0.597756px;}
.ls1{letter-spacing:0.627642px;}
.ls13d{letter-spacing:0.642088px;}
.ls13e{letter-spacing:0.648088px;}
.ls14a{letter-spacing:0.672000px;}
.ls2c{letter-spacing:0.744045px;}
.lsd6{letter-spacing:0.817632px;}
.ls3{letter-spacing:0.896634px;}
.ls95{letter-spacing:1.016185px;}
.ls45{letter-spacing:1.072300px;}
.ls94{letter-spacing:1.075961px;}
.ls93{letter-spacing:1.494390px;}
.ls1c{letter-spacing:1.723340px;}
.ls4a{letter-spacing:1.808352px;}
.ls37{letter-spacing:2.051595px;}
.ls46{letter-spacing:2.137590px;}
.lsb2{letter-spacing:2.254500px;}
.ls39{letter-spacing:2.379850px;}
.lsb0{letter-spacing:2.615220px;}
.ls133{letter-spacing:2.988600px;}
.ls3d{letter-spacing:3.036361px;}
.ls3b{letter-spacing:3.364616px;}
.ls44{letter-spacing:3.692871px;}
.ls19{letter-spacing:4.021126px;}
.lsdc{letter-spacing:4.058100px;}
.ls17{letter-spacing:4.349381px;}
.lsb6{letter-spacing:4.418820px;}
.lsb5{letter-spacing:4.779540px;}
.lsdd{letter-spacing:5.140260px;}
.lsc6{letter-spacing:5.494968px;}
.lsc4{letter-spacing:5.500980px;}
.lsc5{letter-spacing:5.855688px;}
.ls28{letter-spacing:5.985186px;}
.ls29{letter-spacing:6.313442px;}
.ls26{letter-spacing:7.954718px;}
.ls24{letter-spacing:8.282973px;}
.lsbb{letter-spacing:9.456876px;}
.lsbd{letter-spacing:9.817596px;}
.ls2b{letter-spacing:9.918778px;}
.ls2a{letter-spacing:10.247033px;}
.ls15{letter-spacing:10.735845px;}
.ls16{letter-spacing:10.740202px;}
.ls141{letter-spacing:10.901945px;}
.ls140{letter-spacing:10.908067px;}
.lsd4{letter-spacing:11.260476px;}
.lsd3{letter-spacing:11.621196px;}
.lsa8{letter-spacing:11.797632px;}
.lsa9{letter-spacing:11.802420px;}
.ls43{letter-spacing:11.888309px;}
.ls139{letter-spacing:11.951700px;}
.ls5{letter-spacing:11.954850px;}
.ls138{letter-spacing:11.957700px;}
.ls32{letter-spacing:12.211093px;}
.ls34{letter-spacing:12.539349px;}
.lsd0{letter-spacing:12.703356px;}
.ls4f{letter-spacing:13.195859px;}
.ls4e{letter-spacing:13.524114px;}
.lsd2{letter-spacing:13.779504px;}
.ls3f{letter-spacing:13.852369px;}
.lsb{letter-spacing:14.107042px;}
.ls13f{letter-spacing:14.118000px;}
.ls13c{letter-spacing:14.124000px;}
.ls40{letter-spacing:14.180625px;}
.lsa{letter-spacing:14.346144px;}
.ls144{letter-spacing:14.493833px;}
.lsb9{letter-spacing:14.500944px;}
.lsc{letter-spacing:14.585246px;}
.ls9b{letter-spacing:14.645022px;}
.ls142{letter-spacing:14.665141px;}
.ls52{letter-spacing:14.686963px;}
.lsa1{letter-spacing:14.764573px;}
.lsb8{letter-spacing:14.861664px;}
.ls9a{letter-spacing:14.884124px;}
.lse{letter-spacing:14.943900px;}
.ls148{letter-spacing:14.944200px;}
.ls143{letter-spacing:14.991960px;}
.lsa2{letter-spacing:15.003676px;}
.ls147{letter-spacing:15.047494px;}
.ls9f{letter-spacing:15.063451px;}
.lsd8{letter-spacing:15.222384px;}
.ls146{letter-spacing:15.271384px;}
.ls145{letter-spacing:15.277506px;}
.ls55{letter-spacing:15.302554px;}
.lsd{letter-spacing:15.362329px;}
.ls99{letter-spacing:15.422105px;}
.lscd{letter-spacing:15.943824px;}
.lsf{letter-spacing:16.079636px;}
.ls9c{letter-spacing:16.139412px;}
.lscc{letter-spacing:16.304544px;}
.ls136{letter-spacing:16.440600px;}
.ls96{letter-spacing:16.617617px;}
.lsdf{letter-spacing:16.665264px;}
.ls54{letter-spacing:16.796944px;}
.ls9{letter-spacing:16.856719px;}
.ls9e{letter-spacing:17.693578px;}
.ls31{letter-spacing:18.114216px;}
.lsa3{letter-spacing:18.410885px;}
.ls30{letter-spacing:18.442471px;}
.lsd9{letter-spacing:18.462852px;}
.lsa0{letter-spacing:18.590212px;}
.lsda{letter-spacing:18.823572px;}
.lsc2{letter-spacing:19.184292px;}
.lsbf{letter-spacing:19.545012px;}
.ls8{letter-spacing:19.666172px;}
.ls7{letter-spacing:19.725948px;}
.lsc8{letter-spacing:23.146200px;}
.lsd7{letter-spacing:23.491727px;}
.lsc7{letter-spacing:23.506920px;}
.ls10{letter-spacing:23.551586px;}
.ls98{letter-spacing:23.850464px;}
.lsc9{letter-spacing:23.867640px;}
.ls97{letter-spacing:23.910240px;}
.ls4{letter-spacing:26.659918px;}
.ls9d{letter-spacing:27.257674px;}
.ls2{letter-spacing:28.453654px;}
.ls3e{letter-spacing:32.858346px;}
.lse6{letter-spacing:50.518836px;}
.lse8{letter-spacing:162.161676px;}
.ls13b{letter-spacing:187.104600px;}
.ls132{letter-spacing:341.922600px;}
.ls134{letter-spacing:351.354600px;}
.ls135{letter-spacing:364.800600px;}
.ls149{letter-spacing:369.829133px;}
.lseb{letter-spacing:444.149734px;}
.lse5{letter-spacing:878.124744px;}
.lse3{letter-spacing:889.289028px;}
.ls14{letter-spacing:1915.206799px;}
.lsa7{letter-spacing:2104.622856px;}
.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;}
}
.ws10d{word-spacing:-60.120000px;}
.ws84{word-spacing:-54.709200px;}
.wsc0{word-spacing:-49.140000px;}
.ws100{word-spacing:-47.880000px;}
.ws6a{word-spacing:-43.570800px;}
.wsf{word-spacing:-22.718660px;}
.wsd8{word-spacing:-16.019861px;}
.ws40{word-spacing:-15.541656px;}
.wsce{word-spacing:-15.242778px;}
.ws2f{word-spacing:-14.943900px;}
.ws169{word-spacing:-13.449600px;}
.ws34{word-spacing:-11.955150px;}
.wse{word-spacing:-10.460700px;}
.ws197{word-spacing:-4.064741px;}
.wsdb{word-spacing:-3.945190px;}
.ws4d{word-spacing:-3.466985px;}
.wsee{word-spacing:-2.988780px;}
.ws1a3{word-spacing:-2.929004px;}
.ws19d{word-spacing:-2.869229px;}
.ws63{word-spacing:-2.510575px;}
.wse8{word-spacing:-2.450800px;}
.ws193{word-spacing:-2.391024px;}
.wse0{word-spacing:-2.331248px;}
.ws23{word-spacing:-2.151922px;}
.ws5e{word-spacing:-2.092146px;}
.ws46{word-spacing:-2.032370px;}
.wsda{word-spacing:-1.912819px;}
.ws32{word-spacing:-1.793268px;}
.ws18{word-spacing:-1.775347px;}
.ws194{word-spacing:-1.733492px;}
.ws1d1{word-spacing:-1.721549px;}
.ws185{word-spacing:-1.721542px;}
.ws62{word-spacing:-1.673717px;}
.ws16{word-spacing:-1.613952px;}
.wsea{word-spacing:-1.613941px;}
.ws19f{word-spacing:-1.554166px;}
.wsdd{word-spacing:-1.494390px;}
.ws47{word-spacing:-1.434614px;}
.wsde{word-spacing:-1.374839px;}
.ws20d{word-spacing:-1.344960px;}
.ws50{word-spacing:-1.315063px;}
.ws4{word-spacing:-1.297127px;}
.ws51{word-spacing:-1.255288px;}
.ws39{word-spacing:-1.195512px;}
.ws13{word-spacing:-1.183565px;}
.ws5d{word-spacing:-1.135736px;}
.ws2b{word-spacing:-1.075961px;}
.ws190{word-spacing:-1.052053px;}
.ws3{word-spacing:-1.046070px;}
.ws1d7{word-spacing:-1.022170px;}
.ws54{word-spacing:-1.016185px;}
.ws1b4{word-spacing:-0.968371px;}
.wsd3{word-spacing:-0.956410px;}
.ws1af{word-spacing:-0.914573px;}
.ws4f{word-spacing:-0.896634px;}
.ws24{word-spacing:-0.836858px;}
.ws29{word-spacing:-0.777083px;}
.ws28{word-spacing:-0.717307px;}
.ws1cf{word-spacing:-0.699379px;}
.ws26{word-spacing:-0.657532px;}
.ws1ac{word-spacing:-0.645581px;}
.ws27{word-spacing:-0.597756px;}
.ws4e{word-spacing:-0.537980px;}
.ws1e{word-spacing:-0.484186px;}
.ws106{word-spacing:-0.478800px;}
.ws4c{word-spacing:-0.478205px;}
.ws2{word-spacing:-0.460271px;}
.ws101{word-spacing:-0.454860px;}
.ws70{word-spacing:-0.435708px;}
.ws14{word-spacing:-0.430387px;}
.ws68{word-spacing:-0.418429px;}
.ws6b{word-spacing:-0.413923px;}
.ws1a{word-spacing:-0.376589px;}
.ws43{word-spacing:-0.358654px;}
.ws1f{word-spacing:-0.322790px;}
.ws150{word-spacing:-0.306612px;}
.ws44{word-spacing:-0.298878px;}
.ws19{word-spacing:-0.268992px;}
.ws15f{word-spacing:-0.258516px;}
.ws10c{word-spacing:-0.252504px;}
.ws134{word-spacing:-0.240480px;}
.ws102{word-spacing:-0.239400px;}
.ws30{word-spacing:-0.239102px;}
.ws15d{word-spacing:-0.234468px;}
.ws73{word-spacing:-0.229779px;}
.ws152{word-spacing:-0.222444px;}
.ws6c{word-spacing:-0.217854px;}
.ws16a{word-spacing:-0.215194px;}
.ws11f{word-spacing:-0.210420px;}
.ws165{word-spacing:-0.204408px;}
.ws107{word-spacing:-0.201096px;}
.ws149{word-spacing:-0.198396px;}
.wsaf{word-spacing:-0.196953px;}
.ws154{word-spacing:-0.192384px;}
.ws74{word-spacing:-0.191482px;}
.ws164{word-spacing:-0.186372px;}
.ws71{word-spacing:-0.182997px;}
.wsbb{word-spacing:-0.181818px;}
.wsa3{word-spacing:-0.180540px;}
.ws12f{word-spacing:-0.180360px;}
.ws37{word-spacing:-0.179327px;}
.ws119{word-spacing:-0.174348px;}
.ws89{word-spacing:-0.169599px;}
.ws130{word-spacing:-0.168336px;}
.wsaa{word-spacing:-0.164128px;}
.ws15c{word-spacing:-0.162324px;}
.ws15{word-spacing:-0.161395px;}
.ws88{word-spacing:-0.158657px;}
.ws13a{word-spacing:-0.156312px;}
.ws77{word-spacing:-0.153186px;}
.ws12c{word-spacing:-0.150300px;}
.ws104{word-spacing:-0.148428px;}
.wsc8{word-spacing:-0.147715px;}
.ws10a{word-spacing:-0.145800px;}
.ws137{word-spacing:-0.144288px;}
.ws91{word-spacing:-0.142244px;}
.ws110{word-spacing:-0.138276px;}
.wsa4{word-spacing:-0.136773px;}
.ws6e{word-spacing:-0.135069px;}
.wsc3{word-spacing:-0.132678px;}
.ws163{word-spacing:-0.132264px;}
.ws9c{word-spacing:-0.131302px;}
.ws124{word-spacing:-0.126252px;}
.wsa1{word-spacing:-0.125831px;}
.ws15b{word-spacing:-0.124200px;}
.wsb0{word-spacing:-0.120360px;}
.ws139{word-spacing:-0.120240px;}
.wse1{word-spacing:-0.119551px;}
.ws7d{word-spacing:-0.114889px;}
.ws142{word-spacing:-0.114228px;}
.ws87{word-spacing:-0.109418px;}
.ws112{word-spacing:-0.108216px;}
.ws1b{word-spacing:-0.107597px;}
.ws99{word-spacing:-0.103947px;}
.wsba{word-spacing:-0.103194px;}
.ws10b{word-spacing:-0.102600px;}
.ws13b{word-spacing:-0.102204px;}
.wsac{word-spacing:-0.098477px;}
.wsbc{word-spacing:-0.098280px;}
.ws120{word-spacing:-0.096192px;}
.ws76{word-spacing:-0.093006px;}
.ws128{word-spacing:-0.090180px;}
.ws8e{word-spacing:-0.087535px;}
.ws10e{word-spacing:-0.084168px;}
.ws75{word-spacing:-0.082064px;}
.ws118{word-spacing:-0.078156px;}
.wsb2{word-spacing:-0.076593px;}
.ws11c{word-spacing:-0.072144px;}
.ws80{word-spacing:-0.071122px;}
.ws131{word-spacing:-0.066132px;}
.ws7b{word-spacing:-0.065651px;}
.ws109{word-spacing:-0.064800px;}
.wsc2{word-spacing:-0.063882px;}
.ws92{word-spacing:-0.060180px;}
.ws11d{word-spacing:-0.060120px;}
.ws53{word-spacing:-0.059776px;}
.wsb9{word-spacing:-0.058968px;}
.ws7c{word-spacing:-0.054709px;}
.ws122{word-spacing:-0.054108px;}
.ws17{word-spacing:-0.053798px;}
.ws79{word-spacing:-0.049238px;}
.wsbd{word-spacing:-0.049140px;}
.ws123{word-spacing:-0.048096px;}
.ws103{word-spacing:-0.047880px;}
.ws35{word-spacing:-0.047821px;}
.wsbe{word-spacing:-0.044226px;}
.ws83{word-spacing:-0.043767px;}
.ws6d{word-spacing:-0.043571px;}
.ws108{word-spacing:-0.043200px;}
.ws148{word-spacing:-0.042084px;}
.wsb8{word-spacing:-0.039312px;}
.ws72{word-spacing:-0.038296px;}
.ws114{word-spacing:-0.036072px;}
.ws85{word-spacing:-0.032826px;}
.ws15a{word-spacing:-0.032400px;}
.ws144{word-spacing:-0.030060px;}
.ws8b{word-spacing:-0.027355px;}
.ws135{word-spacing:-0.024048px;}
.ws9b{word-spacing:-0.021884px;}
.wsff{word-spacing:-0.019152px;}
.ws11a{word-spacing:-0.018036px;}
.ws69{word-spacing:-0.017428px;}
.ws96{word-spacing:-0.016413px;}
.ws117{word-spacing:-0.012024px;}
.ws81{word-spacing:-0.010942px;}
.wsbf{word-spacing:-0.009828px;}
.ws188{word-spacing:-0.007662px;}
.ws1d0{word-spacing:-0.006182px;}
.ws125{word-spacing:-0.006012px;}
.ws9a{word-spacing:-0.005471px;}
.ws196{word-spacing:-0.005449px;}
.ws186{word-spacing:-0.003790px;}
.ws0{word-spacing:0.000000px;}
.ws191{word-spacing:0.001825px;}
.ws18b{word-spacing:0.003274px;}
.ws78{word-spacing:0.005471px;}
.ws17c{word-spacing:0.005635px;}
.ws127{word-spacing:0.006012px;}
.ws93{word-spacing:0.010942px;}
.ws13c{word-spacing:0.012024px;}
.ws7f{word-spacing:0.016413px;}
.ws12b{word-spacing:0.018036px;}
.ws8c{word-spacing:0.021884px;}
.ws111{word-spacing:0.024048px;}
.ws6f{word-spacing:0.026142px;}
.ws9f{word-spacing:0.027355px;}
.ws105{word-spacing:0.028728px;}
.wsc1{word-spacing:0.029484px;}
.ws126{word-spacing:0.030060px;}
.ws8d{word-spacing:0.032826px;}
.ws14b{word-spacing:0.036072px;}
.wsc5{word-spacing:0.039312px;}
.ws160{word-spacing:0.042084px;}
.wsa6{word-spacing:0.043767px;}
.ws82{word-spacing:0.049238px;}
.ws1{word-spacing:0.051541px;}
.ws1b3{word-spacing:0.053798px;}
.ws121{word-spacing:0.054108px;}
.ws3a{word-spacing:0.059776px;}
.ws12d{word-spacing:0.060120px;}
.ws94{word-spacing:0.060180px;}
.ws115{word-spacing:0.066132px;}
.ws8a{word-spacing:0.071122px;}
.ws153{word-spacing:0.072144px;}
.wsb7{word-spacing:0.076593px;}
.ws14d{word-spacing:0.078156px;}
.wsc6{word-spacing:0.082064px;}
.ws145{word-spacing:0.084168px;}
.ws7e{word-spacing:0.093006px;}
.ws90{word-spacing:0.098477px;}
.ws133{word-spacing:0.102204px;}
.wsae{word-spacing:0.103947px;}
.ws1b1{word-spacing:0.107597px;}
.ws10f{word-spacing:0.108216px;}
.wsab{word-spacing:0.109418px;}
.ws146{word-spacing:0.114228px;}
.ws9d{word-spacing:0.114889px;}
.ws36{word-spacing:0.119551px;}
.ws13f{word-spacing:0.126252px;}
.ws8f{word-spacing:0.131302px;}
.ws129{word-spacing:0.132264px;}
.ws1ec{word-spacing:0.135704px;}
.ws7a{word-spacing:0.136773px;}
.ws14c{word-spacing:0.138276px;}
.ws9e{word-spacing:0.142244px;}
.ws116{word-spacing:0.150300px;}
.wsa5{word-spacing:0.153186px;}
.ws151{word-spacing:0.156312px;}
.ws158{word-spacing:0.156600px;}
.wsa2{word-spacing:0.158657px;}
.ws16b{word-spacing:0.161395px;}
.ws95{word-spacing:0.164128px;}
.ws12e{word-spacing:0.168336px;}
.ws86{word-spacing:0.169599px;}
.ws159{word-spacing:0.172800px;}
.ws143{word-spacing:0.174348px;}
.ws3c{word-spacing:0.179327px;}
.wsb1{word-spacing:0.180540px;}
.ws147{word-spacing:0.186372px;}
.wsb3{word-spacing:0.191482px;}
.ws136{word-spacing:0.210420px;}
.wsa0{word-spacing:0.213366px;}
.ws168{word-spacing:0.215194px;}
.wsad{word-spacing:0.224308px;}
.wsdf{word-spacing:0.239102px;}
.ws140{word-spacing:0.240480px;}
.wsb6{word-spacing:0.251662px;}
.ws141{word-spacing:0.252504px;}
.ws97{word-spacing:0.262604px;}
.ws1c2{word-spacing:0.268992px;}
.ws12a{word-spacing:0.288576px;}
.ws31{word-spacing:0.298878px;}
.wsa9{word-spacing:0.300901px;}
.wsa8{word-spacing:0.317313px;}
.wsca{word-spacing:0.322790px;}
.ws15e{word-spacing:0.324648px;}
.ws98{word-spacing:0.328255px;}
.ws14f{word-spacing:0.330660px;}
.ws138{word-spacing:0.348696px;}
.ws5a{word-spacing:0.358654px;}
.ws132{word-spacing:0.378756px;}
.wsa7{word-spacing:0.382964px;}
.ws13e{word-spacing:0.390780px;}
.wsc7{word-spacing:0.393906px;}
.ws161{word-spacing:0.396792px;}
.ws57{word-spacing:0.418429px;}
.ws155{word-spacing:0.420840px;}
.wsb5{word-spacing:0.421261px;}
.ws1fc{word-spacing:0.430387px;}
.ws198{word-spacing:0.537980px;}
.wsc9{word-spacing:0.537984px;}
.ws1be{word-spacing:0.591782px;}
.wse7{word-spacing:0.597756px;}
.ws18e{word-spacing:0.649267px;}
.wscc{word-spacing:0.657532px;}
.ws195{word-spacing:0.668486px;}
.ws1db{word-spacing:0.699379px;}
.wscd{word-spacing:0.717307px;}
.ws1bc{word-spacing:0.753178px;}
.ws16d{word-spacing:0.777083px;}
.ws1f0{word-spacing:0.806976px;}
.ws192{word-spacing:0.836858px;}
.ws1f7{word-spacing:0.914573px;}
.ws45{word-spacing:0.956410px;}
.ws205{word-spacing:0.968371px;}
.wse6{word-spacing:1.016185px;}
.wsf0{word-spacing:1.075961px;}
.ws11b{word-spacing:1.100196px;}
.ws1e9{word-spacing:1.129766px;}
.ws14e{word-spacing:1.130256px;}
.ws5f{word-spacing:1.135736px;}
.ws60{word-spacing:1.195512px;}
.ws166{word-spacing:1.315063px;}
.ws1dd{word-spacing:1.344960px;}
.ws162{word-spacing:1.358712px;}
.ws56{word-spacing:1.374839px;}
.wsd{word-spacing:1.380812px;}
.ws1a5{word-spacing:1.434614px;}
.ws11e{word-spacing:1.490976px;}
.ws19b{word-spacing:1.494390px;}
.ws189{word-spacing:1.554166px;}
.ws1aa{word-spacing:1.560154px;}
.ws64{word-spacing:1.613941px;}
.ws1ed{word-spacing:1.613952px;}
.ws1d{word-spacing:1.667750px;}
.ws14a{word-spacing:1.677348px;}
.ws1da{word-spacing:1.721549px;}
.ws42{word-spacing:1.733492px;}
.ws3d{word-spacing:1.793268px;}
.ws113{word-spacing:1.821636px;}
.ws13d{word-spacing:1.851696px;}
.ws1a0{word-spacing:1.853044px;}
.wsfb{word-spacing:1.912819px;}
.ws1d4{word-spacing:1.936742px;}
.ws65{word-spacing:1.972595px;}
.ws61{word-spacing:2.032370px;}
.ws3f{word-spacing:2.092146px;}
.ws1b9{word-spacing:2.098138px;}
.ws3e{word-spacing:2.151922px;}
.wsd2{word-spacing:2.211697px;}
.wsf8{word-spacing:2.271473px;}
.wsf9{word-spacing:2.331248px;}
.ws1a8{word-spacing:2.474726px;}
.ws1ff{word-spacing:2.528525px;}
.ws5{word-spacing:2.531395px;}
.wsd4{word-spacing:2.570351px;}
.ws19c{word-spacing:2.630126px;}
.ws1a1{word-spacing:2.689902px;}
.ws1f4{word-spacing:2.743718px;}
.wsf2{word-spacing:2.809453px;}
.ws20b{word-spacing:2.851315px;}
.ws10{word-spacing:2.869236px;}
.wsfa{word-spacing:2.929004px;}
.wsd0{word-spacing:2.988780px;}
.wse9{word-spacing:3.048556px;}
.ws12{word-spacing:3.066509px;}
.ws2e{word-spacing:3.108331px;}
.ws1e4{word-spacing:3.120307px;}
.ws18f{word-spacing:3.156160px;}
.ws1a9{word-spacing:3.174106px;}
.ws11{word-spacing:3.186508px;}
.wsc4{word-spacing:3.189186px;}
.ws1f5{word-spacing:3.217546px;}
.ws1dc{word-spacing:3.219312px;}
.ws20{word-spacing:3.219667px;}
.ws211{word-spacing:3.219734px;}
.ws1c0{word-spacing:3.219802px;}
.ws1fe{word-spacing:3.220032px;}
.ws212{word-spacing:3.220387px;}
.ws210{word-spacing:3.221875px;}
.ws1f6{word-spacing:3.221952px;}
.ws1b5{word-spacing:3.222893px;}
.ws1ab{word-spacing:3.224822px;}
.ws1f1{word-spacing:3.225072px;}
.ws1fd{word-spacing:3.225850px;}
.ws1ae{word-spacing:3.227904px;}
.ws1e8{word-spacing:3.281702px;}
.wseb{word-spacing:3.287658px;}
.wscf{word-spacing:3.347434px;}
.ws58{word-spacing:3.407209px;}
.ws1f2{word-spacing:3.443098px;}
.ws1b8{word-spacing:3.496896px;}
.wse5{word-spacing:3.526760px;}
.ws21{word-spacing:3.586536px;}
.wsd1{word-spacing:3.646312px;}
.wsb4{word-spacing:3.649104px;}
.ws1cb{word-spacing:3.658291px;}
.wsf4{word-spacing:3.765863px;}
.ws48{word-spacing:3.885414px;}
.ws49{word-spacing:3.945190px;}
.ws16f{word-spacing:4.004965px;}
.ws199{word-spacing:4.064741px;}
.ws22{word-spacing:4.124516px;}
.ws38{word-spacing:4.184292px;}
.wsd9{word-spacing:4.244068px;}
.ws156{word-spacing:4.271400px;}
.wsd6{word-spacing:4.303843px;}
.ws1e2{word-spacing:4.357670px;}
.ws157{word-spacing:4.368600px;}
.wsef{word-spacing:4.423394px;}
.ws16c{word-spacing:4.542946px;}
.ws1fa{word-spacing:4.572864px;}
.ws59{word-spacing:4.602721px;}
.wse4{word-spacing:4.662497px;}
.ws52{word-spacing:4.722272px;}
.ws207{word-spacing:4.788058px;}
.ws16e{word-spacing:4.901599px;}
.wsf1{word-spacing:5.021150px;}
.wse3{word-spacing:5.080926px;}
.ws1ce{word-spacing:5.110848px;}
.ws41{word-spacing:5.140702px;}
.ws4b{word-spacing:5.200477px;}
.ws4a{word-spacing:5.260253px;}
.ws1a7{word-spacing:5.320028px;}
.ws1a4{word-spacing:5.379804px;}
.ws1bf{word-spacing:5.379840px;}
.wsb{word-spacing:5.481407px;}
.ws66{word-spacing:5.499355px;}
.ws67{word-spacing:5.559131px;}
.ws1c{word-spacing:5.648832px;}
.wsd5{word-spacing:5.678682px;}
.ws5c{word-spacing:5.738458px;}
.ws19a{word-spacing:5.858009px;}
.ws25{word-spacing:5.917784px;}
.ws202{word-spacing:5.971622px;}
.wsfc{word-spacing:6.037336px;}
.ws1df{word-spacing:6.079219px;}
.wsdc{word-spacing:6.097111px;}
.ws2c{word-spacing:6.156887px;}
.ws2a{word-spacing:6.276438px;}
.ws179{word-spacing:6.395989px;}
.wsd7{word-spacing:6.455765px;}
.ws3b{word-spacing:6.575316px;}
.wsfe{word-spacing:6.754643px;}
.ws1a2{word-spacing:6.874194px;}
.ws1e7{word-spacing:6.886195px;}
.ws1e0{word-spacing:6.939994px;}
.ws19e{word-spacing:6.993745px;}
.ws1e1{word-spacing:7.047590px;}
.ws1a6{word-spacing:7.053521px;}
.wsfd{word-spacing:7.232848px;}
.ws1e5{word-spacing:7.316582px;}
.wse2{word-spacing:7.471950px;}
.ws55{word-spacing:7.531726px;}
.wscb{word-spacing:7.890379px;}
.wsf6{word-spacing:8.069706px;}
.wsf3{word-spacing:8.129482px;}
.ws167{word-spacing:8.488135px;}
.ws201{word-spacing:8.500147px;}
.ws9{word-spacing:9.833058px;}
.ws6{word-spacing:10.412831px;}
.ws1d2{word-spacing:11.620454px;}
.ws1c7{word-spacing:11.781850px;}
.wsa{word-spacing:11.841512px;}
.ws33{word-spacing:11.910929px;}
.ws20f{word-spacing:12.535027px;}
.ws209{word-spacing:13.019213px;}
.ws1c5{word-spacing:13.073011px;}
.ws1b6{word-spacing:13.234406px;}
.ws1d9{word-spacing:13.288205px;}
.ws1d6{word-spacing:13.342003px;}
.ws1d8{word-spacing:13.382534px;}
.ws1fb{word-spacing:13.384464px;}
.ws1c4{word-spacing:13.384867px;}
.ws1c8{word-spacing:13.386134px;}
.ws1f3{word-spacing:13.386499px;}
.ws1ef{word-spacing:13.386605px;}
.ws1eb{word-spacing:13.386691px;}
.ws213{word-spacing:13.386960px;}
.ws1ad{word-spacing:13.387315px;}
.ws1bb{word-spacing:13.387334px;}
.ws1d3{word-spacing:13.389139px;}
.ws1ca{word-spacing:13.389197px;}
.ws1c1{word-spacing:13.389475px;}
.ws1d5{word-spacing:13.389773px;}
.ws1cd{word-spacing:13.390301px;}
.ws1c6{word-spacing:13.391002px;}
.ws1f9{word-spacing:13.391030px;}
.ws1e3{word-spacing:13.391414px;}
.ws1e6{word-spacing:13.392499px;}
.ws20a{word-spacing:13.395024px;}
.ws1b0{word-spacing:13.395802px;}
.ws1ee{word-spacing:13.449600px;}
.ws1b2{word-spacing:13.503398px;}
.ws1c9{word-spacing:13.557197px;}
.ws1b7{word-spacing:13.610995px;}
.ws1c3{word-spacing:13.664794px;}
.ws1bd{word-spacing:14.148979px;}
.ws206{word-spacing:14.364173px;}
.ws1ea{word-spacing:14.525568px;}
.ws1de{word-spacing:14.728303px;}
.ws5b{word-spacing:14.884124px;}
.ws204{word-spacing:15.386342px;}
.ws1ba{word-spacing:15.440141px;}
.ws7{word-spacing:15.481836px;}
.ws200{word-spacing:15.924326px;}
.ws20c{word-spacing:16.247117px;}
.ws1f8{word-spacing:16.623706px;}
.ws1cc{word-spacing:17.054093px;}
.wsf7{word-spacing:17.454475px;}
.ws20e{word-spacing:17.914867px;}
.ws208{word-spacing:18.183859px;}
.wsec{word-spacing:18.525325px;}
.wsed{word-spacing:18.543662px;}
.ws203{word-spacing:19.367424px;}
.ws8{word-spacing:22.339429px;}
.wsc{word-spacing:22.720640px;}
.ws2d{word-spacing:23.970016px;}
.wsf5{word-spacing:28.273859px;}
.ws17a{word-spacing:116.712643px;}
.ws18a{word-spacing:144.196570px;}
.ws17e{word-spacing:170.863718px;}
.ws180{word-spacing:171.563098px;}
.ws18c{word-spacing:194.174198px;}
.ws187{word-spacing:223.532352px;}
.ws17b{word-spacing:224.926934px;}
.ws18d{word-spacing:240.371251px;}
.ws181{word-spacing:297.989338px;}
.ws182{word-spacing:304.875533px;}
.ws17d{word-spacing:312.891494px;}
.ws17f{word-spacing:315.043430px;}
.ws183{word-spacing:315.527616px;}
.ws184{word-spacing:315.742810px;}
.ws178{word-spacing:317.464358px;}
.ws177{word-spacing:337.638758px;}
.ws174{word-spacing:355.015642px;}
.ws176{word-spacing:357.296794px;}
.ws175{word-spacing:371.208960px;}
.ws171{word-spacing:380.462285px;}
.ws172{word-spacing:393.911885px;}
.ws173{word-spacing:407.361485px;}
.ws170{word-spacing:534.717494px;}
._15{margin-left:-8.004024px;}
._5{margin-left:-6.557440px;}
._7{margin-left:-5.308087px;}
._12{margin-left:-4.303843px;}
._8{margin-left:-3.174106px;}
._3{margin-left:-1.297127px;}
._0{width:1.255284px;}
._1b{width:2.742945px;}
._16{width:4.315808px;}
._1{width:11.255713px;}
._2{width:13.264168px;}
._1a{width:14.310234px;}
._9{width:15.523765px;}
._a{width:16.719260px;}
._d{width:18.572335px;}
._b{width:20.108560px;}
._17{width:21.447493px;}
._c{width:22.894034px;}
._19{width:24.245014px;}
._4{width:25.314894px;}
._7b{width:26.791603px;}
._79{width:28.154308px;}
._18{width:29.451434px;}
._13{width:31.184927px;}
._7a{width:32.195498px;}
._6{width:33.355008px;}
._1e{width:34.711687px;}
._11{width:36.504955px;}
._14{width:37.598852px;}
._3b{width:38.878123px;}
._e{width:40.211042px;}
._1d{width:41.424491px;}
._1f{width:44.592598px;}
._23{width:88.767360px;}
._22{width:90.865498px;}
._68{width:109.156954px;}
._69{width:124.059110px;}
._4f{width:133.312435px;}
._3f{width:148.531417px;}
._56{width:158.216650px;}
._54{width:162.417370px;}
._53{width:168.496589px;}
._76{width:169.500432px;}
._50{width:172.854259px;}
._58{width:176.673946px;}
._4d{width:178.987277px;}
._55{width:190.172698px;}
._4a{width:191.629901px;}
._51{width:192.634115px;}
._5c{width:196.636675px;}
._3d{width:198.132409px;}
._4e{width:200.546448px;}
._5d{width:202.625616px;}
._4b{width:206.606323px;}
._6c{width:208.235699px;}
._5a{width:209.598566px;}
._3e{width:212.396083px;}
._4c{width:226.652659px;}
._40{width:228.212813px;}
._5e{width:236.766758px;}
._25{width:238.542106px;}
._6d{width:242.039002px;}
._63{width:247.923869px;}
._5b{width:250.141718px;}
._59{width:251.508182px;}
._30{width:261.394489px;}
._43{width:263.074176px;}
._70{width:272.577827px;}
._45{width:276.523776px;}
._32{width:278.460518px;}
._49{width:279.960880px;}
._71{width:283.271894px;}
._33{width:284.653300px;}
._5f{width:290.457562px;}
._72{width:301.055846px;}
._65{width:304.283750px;}
._39{width:305.951501px;}
._52{width:308.049638px;}
._64{width:309.586858px;}
._47{width:311.438938px;}
._42{width:314.613043px;}
._3a{width:317.141568px;}
._48{width:318.325133px;}
._61{width:323.382182px;}
._41{width:326.341094px;}
._44{width:328.493030px;}
._6a{width:331.670179px;}
._38{width:341.670451px;}
._2a{width:351.518746px;}
._60{width:352.810954px;}
._37{width:354.800448px;}
._66{width:365.022144px;}
._2e{width:369.971597px;}
._31{width:376.212211px;}
._62{width:385.738195px;}
._2b{width:393.858086px;}
._2f{width:401.282266px;}
._2c{width:407.791872px;}
._2d{width:420.811085px;}
._36{width:429.096038px;}
._73{width:440.788090px;}
._34{width:446.903309px;}
._35{width:453.950899px;}
._27{width:455.080666px;}
._26{width:467.777088px;}
._29{width:470.736000px;}
._28{width:484.185600px;}
._77{width:497.007293px;}
._6e{width:555.169008px;}
._74{width:565.008595px;}
._57{width:571.633507px;}
._6b{width:597.933494px;}
._78{width:610.127654px;}
._6f{width:641.294246px;}
._24{width:707.502758px;}
._75{width:729.936691px;}
._67{width:756.028915px;}
._20{width:823.599706px;}
._f{width:906.055177px;}
._21{width:991.773504px;}
._46{width:1121.104253px;}
._3c{width:2538.421452px;}
._10{width:2561.117921px;}
._1c{width:2562.331452px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(81,125,151);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fsb{font-size:43.570800px;}
.fs12{font-size:45.429600px;}
.fs9{font-size:47.820600px;}
.fse{font-size:47.880000px;}
.fsd{font-size:49.140000px;}
.fsa{font-size:53.798400px;}
.fs10{font-size:54.000000px;}
.fsc{font-size:54.709200px;}
.fs13{font-size:56.058000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fsf{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:90.874640px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.y12b{bottom:-831.254550px;}
.y154{bottom:-754.034550px;}
.y153{bottom:-732.974550px;}
.y151{bottom:-732.973587px;}
.y14e{bottom:-722.894469px;}
.y152{bottom:-712.724550px;}
.y150{bottom:-712.723668px;}
.y14d{bottom:-702.644550px;}
.y14f{bottom:-692.563929px;}
.y14c{bottom:-671.504550px;}
.y14b{bottom:-641.534550px;}
.y14a{bottom:-605.802138px;}
.y149{bottom:-586.542696px;}
.y148{bottom:-567.283254px;}
.y147{bottom:-548.113992px;}
.y146{bottom:-528.851808px;}
.y145{bottom:-509.682546px;}
.y144{bottom:-490.423104px;}
.y143{bottom:-471.163662px;}
.y142{bottom:-451.991400px;}
.y141{bottom:-432.731958px;}
.y140{bottom:-413.562696px;}
.y13f{bottom:-394.303254px;}
.y13e{bottom:-375.043812px;}
.y13d{bottom:-355.872138px;}
.y13c{bottom:-336.612696px;}
.y13b{bottom:-317.443434px;}
.y13a{bottom:-298.183992px;}
.y139{bottom:-278.921400px;}
.y138{bottom:-259.752138px;}
.y137{bottom:-240.492696px;}
.y136{bottom:-221.233254px;}
.y135{bottom:-202.063992px;}
.y134{bottom:-182.804550px;}
.y133{bottom:-163.633434px;}
.yb5{bottom:-150.706510px;}
.y132{bottom:-144.373992px;}
.y131{bottom:-125.114550px;}
.y130{bottom:-105.944739px;}
.yd4{bottom:-90.181903px;}
.y12f{bottom:-86.685297px;}
.yd3{bottom:-72.655810px;}
.y12e{bottom:-63.014550px;}
.yd2{bottom:-39.158710px;}
.y12d{bottom:-26.204550px;}
.yd1{bottom:-23.352011px;}
.y12c{bottom:-3.704550px;}
.yd0{bottom:-2.957780px;}
.y0{bottom:0.000000px;}
.y39{bottom:9.233944px;}
.y38{bottom:26.903761px;}
.y66{bottom:31.890000px;}
.y6{bottom:35.925007px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y65{bottom:103.621500px;}
.yf5{bottom:104.353500px;}
.y36{bottom:104.646000px;}
.y272{bottom:113.320500px;}
.y2ef{bottom:116.458500px;}
.y215{bottom:116.598000px;}
.y2b9{bottom:116.997000px;}
.y11d{bottom:117.355500px;}
.ye2{bottom:119.148000px;}
.y64{bottom:122.449500px;}
.y35{bottom:122.535000px;}
.yf4{bottom:123.183000px;}
.y246{bottom:129.570000px;}
.y271{bottom:132.150000px;}
.y2ee{bottom:133.719000px;}
.y2b8{bottom:134.256000px;}
.y214{bottom:135.427500px;}
.y1d8{bottom:135.463500px;}
.y11c{bottom:136.185000px;}
.ye1{bottom:137.977500px;}
.y22{bottom:139.264499px;}
.y34{bottom:140.422500px;}
.y63{bottom:141.279000px;}
.yf3{bottom:142.012500px;}
.y2ed{bottom:150.978000px;}
.y270{bottom:150.979500px;}
.y2b7{bottom:151.516500px;}
.y245{bottom:151.531500px;}
.y213{bottom:154.257000px;}
.y1d7{bottom:154.293000px;}
.y11b{bottom:155.014500px;}
.ye0{bottom:156.807000px;}
.y33{bottom:158.310000px;}
.y62{bottom:160.108500px;}
.yf2{bottom:160.842000px;}
.y1a7{bottom:164.592000px;}
.y2ec{bottom:168.238500px;}
.y2b6{bottom:168.777000px;}
.y244{bottom:169.614000px;}
.y26f{bottom:169.807500px;}
.y212{bottom:173.086500px;}
.y1d6{bottom:173.122500px;}
.y11a{bottom:173.844000px;}
.ydf{bottom:175.636500px;}
.y9a{bottom:176.085000px;}
.y32{bottom:176.199000px;}
.y61{bottom:178.938000px;}
.yf1{bottom:179.671500px;}
.y2f2{bottom:180.942000px;}
.y2eb{bottom:185.499000px;}
.y2b5{bottom:186.037500px;}
.y243{bottom:187.696500px;}
.y26e{bottom:188.637000px;}
.y211{bottom:191.916000px;}
.y1d5{bottom:191.952000px;}
.y119{bottom:192.672000px;}
.y31{bottom:194.086500px;}
.yde{bottom:194.466000px;}
.y99{bottom:194.914500px;}
.y19{bottom:196.933500px;}
.y60{bottom:197.767500px;}
.y2f1{bottom:198.202500px;}
.y1a6{bottom:198.216000px;}
.yf0{bottom:198.501000px;}
.y2ea{bottom:202.759500px;}
.y2b4{bottom:203.298000px;}
.y15b{bottom:203.784000px;}
.y242{bottom:205.779000px;}
.y26d{bottom:207.466500px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y210{bottom:210.745500px;}
.y1d4{bottom:210.780000px;}
.y118{bottom:211.501500px;}
.y30{bottom:211.974000px;}
.ydd{bottom:213.295500px;}
.y98{bottom:213.744000px;}
.y2f0{bottom:215.461500px;}
.y5f{bottom:216.597000px;}
.y1a5{bottom:217.045500px;}
.yef{bottom:217.330500px;}
.y2e9{bottom:220.020000px;}
.y2b3{bottom:220.558500px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y15a{bottom:222.613500px;}
.y241{bottom:223.861500px;}
.y26c{bottom:226.296000px;}
.y20f{bottom:229.575000px;}
.y1d3{bottom:229.609500px;}
.y2f{bottom:229.863000px;}
.y117{bottom:230.331000px;}
.ydc{bottom:232.125000px;}
.y97{bottom:232.573500px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y5e{bottom:235.426500px;}
.y1a4{bottom:235.875000px;}
.yee{bottom:236.160000px;}
.y2e8{bottom:237.280500px;}
.y2b2{bottom:237.819000px;}
.y159{bottom:241.441500px;}
.y240{bottom:241.942500px;}
.y26b{bottom:245.125500px;}
.y20e{bottom:248.404500px;}
.y1d2{bottom:248.439000px;}
.y116{bottom:249.160500px;}
.ydb{bottom:250.954500px;}
.y96{bottom:251.403000px;}
.y5d{bottom:254.256000px;}
.y2e7{bottom:254.541000px;}
.y1a3{bottom:254.704500px;}
.yed{bottom:254.989500px;}
.y2b1{bottom:255.079500px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y23f{bottom:260.025000px;}
.y158{bottom:260.271000px;}
.yd6{bottom:266.377500px;}
.y1d1{bottom:267.268500px;}
.y115{bottom:267.990000px;}
.y26a{bottom:268.438500px;}
.yda{bottom:269.784000px;}
.y95{bottom:270.232500px;}
.y20d{bottom:271.717500px;}
.y2e6{bottom:271.801500px;}
.y2b0{bottom:272.340000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y5c{bottom:273.085500px;}
.y1a2{bottom:273.534000px;}
.yec{bottom:273.819000px;}
.y23e{bottom:278.107500px;}
.y157{bottom:279.100500px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.yd5{bottom:285.610500px;}
.y114{bottom:286.819500px;}
.yd9{bottom:288.613500px;}
.y94{bottom:289.062000px;}
.y2af{bottom:289.599000px;}
.y1d0{bottom:290.581500px;}
.y5b{bottom:291.915000px;}
.y1a1{bottom:292.363500px;}
.yeb{bottom:292.648500px;}
.y23d{bottom:296.190000px;}
.y2e{bottom:299.892000px;}
.y156{bottom:302.413500px;}
.y12a{bottom:304.905585px;}
.y113{bottom:305.649000px;}
.y2e5{bottom:306.321000px;}
.y2ae{bottom:306.859500px;}
.yd8{bottom:307.443000px;}
.y93{bottom:307.891500px;}
.yb2{bottom:308.038500px;}
.y20c{bottom:308.712000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y5a{bottom:310.744500px;}
.y1cf{bottom:310.756500px;}
.y1a0{bottom:311.193000px;}
.yea{bottom:311.478000px;}
.y23c{bottom:314.272500px;}
.y129{bottom:314.535450px;}
.y2d{bottom:317.779500px;}
.y269{bottom:322.237500px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y2e4{bottom:323.581500px;}
.y2ad{bottom:324.120000px;}
.y112{bottom:324.478500px;}
.y283{bottom:326.272500px;}
.y92{bottom:326.719500px;}
.y59{bottom:329.574000px;}
.y19f{bottom:330.022500px;}
.ye9{bottom:330.307500px;}
.yd7{bottom:330.754500px;}
.y20b{bottom:331.038000px;}
.y23b{bottom:332.355000px;}
.y155{bottom:332.841000px;}
.y2c{bottom:335.667000px;}
.y2e3{bottom:340.842000px;}
.y268{bottom:341.067000px;}
.y2ac{bottom:341.380500px;}
.y111{bottom:343.308000px;}
.y282{bottom:345.102000px;}
.y91{bottom:345.549000px;}
.y10{bottom:348.133500px;}
.y58{bottom:348.403500px;}
.y19e{bottom:348.852000px;}
.y20a{bottom:349.120500px;}
.ye8{bottom:349.137000px;}
.y23a{bottom:350.436000px;}
.y2b{bottom:353.554500px;}
.y1ce{bottom:354.066000px;}
.y128{bottom:355.270500px;}
.y2e2{bottom:358.102500px;}
.y2ab{bottom:358.641000px;}
.y267{bottom:359.896500px;}
.y110{bottom:362.137500px;}
.y281{bottom:363.931500px;}
.y90{bottom:364.378500px;}
.y209{bottom:367.203000px;}
.y57{bottom:367.233000px;}
.y19d{bottom:367.681500px;}
.ye7{bottom:367.966500px;}
.y239{bottom:368.518500px;}
.ycf{bottom:371.488397px;}
.y1cd{bottom:373.792500px;}
.y2e1{bottom:375.363000px;}
.y2aa{bottom:375.901500px;}
.y1ca{bottom:376.617000px;}
.y266{bottom:378.726000px;}
.y2a{bottom:380.409000px;}
.y10f{bottom:380.967000px;}
.y280{bottom:382.761000px;}
.y8f{bottom:383.208000px;}
.y208{bottom:385.285500px;}
.y56{bottom:386.062500px;}
.y19c{bottom:386.511000px;}
.y238{bottom:386.601000px;}
.yf{bottom:386.785499px;}
.ye6{bottom:386.796000px;}
.yce{bottom:389.014490px;}
.y2e0{bottom:392.623500px;}
.y1c9{bottom:393.055500px;}
.y2a9{bottom:393.162000px;}
.y1cc{bottom:393.517500px;}
.y265{bottom:397.555500px;}
.y29{bottom:398.298000px;}
.y10e{bottom:399.796500px;}
.y27f{bottom:401.589000px;}
.y8e{bottom:402.037500px;}
.y207{bottom:403.368000px;}
.y55{bottom:404.892000px;}
.y19b{bottom:405.340500px;}
.ycd{bottom:406.459697px;}
.ye{bottom:408.044999px;}
.y2df{bottom:409.884000px;}
.y2a8{bottom:410.422500px;}
.y237{bottom:411.886500px;}
.y1cb{bottom:413.244000px;}
.y28{bottom:416.185500px;}
.y264{bottom:416.383500px;}
.y10d{bottom:418.626000px;}
.y27e{bottom:420.418500px;}
.y8d{bottom:420.867000px;}
.y206{bottom:421.449000px;}
.ye5{bottom:423.558000px;}
.y54{bottom:423.721500px;}
.ycc{bottom:423.985790px;}
.y19a{bottom:424.170000px;}
.y2de{bottom:427.144500px;}
.y2a7{bottom:427.681500px;}
.y27{bottom:434.073000px;}
.y263{bottom:435.213000px;}
.y10c{bottom:437.455500px;}
.y27d{bottom:439.248000px;}
.y8c{bottom:439.696500px;}
.y1c8{bottom:440.172000px;}
.ycb{bottom:441.431505px;}
.y53{bottom:442.551000px;}
.y199{bottom:442.999500px;}
.y2dd{bottom:444.403500px;}
.y2a6{bottom:444.942000px;}
.y205{bottom:446.734500px;}
.y236{bottom:447.645000px;}
.y26{bottom:451.962000px;}
.y262{bottom:454.042500px;}
.y10b{bottom:456.285000px;}
.y27c{bottom:458.077500px;}
.y8b{bottom:458.526000px;}
.yca{bottom:458.957597px;}
.y1c7{bottom:459.898500px;}
.ye4{bottom:460.320000px;}
.y52{bottom:461.380500px;}
.y2dc{bottom:461.664000px;}
.y198{bottom:461.829000px;}
.y2a5{bottom:462.202500px;}
.y1c4{bottom:462.517500px;}
.y25{bottom:469.849500px;}
.y261{bottom:472.872000px;}
.y10a{bottom:475.114500px;}
.yc9{bottom:476.486048px;}
.y27b{bottom:476.907000px;}
.y8a{bottom:477.355500px;}
.y2db{bottom:478.924500px;}
.y1c3{bottom:478.956000px;}
.y2a4{bottom:479.463000px;}
.y1c6{bottom:479.623500px;}
.y197{bottom:480.658500px;}
.y204{bottom:482.493000px;}
.y51{bottom:484.693500px;}
.y235{bottom:484.749000px;}
.y24{bottom:487.737000px;}
.y260{bottom:491.701500px;}
.yc8{bottom:493.930077px;}
.y109{bottom:493.944000px;}
.y27a{bottom:495.736500px;}
.y89{bottom:496.185000px;}
.y2a3{bottom:496.723500px;}
.ye3{bottom:497.082000px;}
.y1c5{bottom:499.350000px;}
.y196{bottom:499.488000px;}
.yd{bottom:502.864502px;}
.y234{bottom:503.578500px;}
.y23{bottom:505.626000px;}
.y25f{bottom:510.531000px;}
.yc7{bottom:511.456169px;}
.y108{bottom:512.773500px;}
.y2da{bottom:513.445500px;}
.y2a2{bottom:513.984000px;}
.y279{bottom:514.566000px;}
.y88{bottom:515.014500px;}
.y195{bottom:518.317500px;}
.y203{bottom:519.597000px;}
.yc{bottom:520.864502px;}
.y233{bottom:522.408000px;}
.y1c2{bottom:526.278000px;}
.yc6{bottom:528.900197px;}
.y25e{bottom:529.360500px;}
.y2d9{bottom:530.706000px;}
.y2a1{bottom:531.244500px;}
.y107{bottom:531.603000px;}
.y278{bottom:533.395500px;}
.y87{bottom:533.844000px;}
.y194{bottom:537.145500px;}
.y202{bottom:538.426500px;}
.yb{bottom:538.864499px;}
.y1bf{bottom:538.966500px;}
.y232{bottom:541.237500px;}
.y1c1{bottom:546.004500px;}
.yc5{bottom:546.426289px;}
.y2d8{bottom:547.966500px;}
.y25d{bottom:548.190000px;}
.y2a0{bottom:548.505000px;}
.y106{bottom:550.432500px;}
.y277{bottom:552.225000px;}
.y86{bottom:552.673500px;}
.y1be{bottom:555.405000px;}
.y193{bottom:555.975000px;}
.ya{bottom:556.864499px;}
.y50{bottom:559.843500px;}
.y231{bottom:560.067000px;}
.yc4{bottom:563.952889px;}
.y2d7{bottom:565.227000px;}
.y1c0{bottom:565.731000px;}
.y29f{bottom:565.765500px;}
.y25c{bottom:567.019500px;}
.y105{bottom:569.262000px;}
.y276{bottom:571.054500px;}
.y85{bottom:571.503000px;}
.y192{bottom:574.804500px;}
.y201{bottom:578.488500px;}
.y230{bottom:578.896500px;}
.yc3{bottom:581.397590px;}
.y2d6{bottom:582.487500px;}
.y29e{bottom:583.024500px;}
.y25b{bottom:585.849000px;}
.y104{bottom:588.091500px;}
.y275{bottom:589.884000px;}
.y84{bottom:590.332500px;}
.y1bd{bottom:592.659000px;}
.y200{bottom:592.686000px;}
.y191{bottom:593.634000px;}
.y4f{bottom:597.232500px;}
.y22f{bottom:597.726000px;}
.yc2{bottom:598.925877px;}
.y2d5{bottom:599.746500px;}
.y29d{bottom:600.285000px;}
.y25a{bottom:604.678500px;}
.y1bc{bottom:606.048000px;}
.y1ff{bottom:606.882000px;}
.y103{bottom:606.921000px;}
.y274{bottom:608.713500px;}
.y83{bottom:609.162000px;}
.yc1{bottom:616.369905px;}
.y4e{bottom:616.690500px;}
.y2d4{bottom:617.007000px;}
.y29c{bottom:617.545500px;}
.y22e{bottom:621.039000px;}
.y1fe{bottom:621.079500px;}
.y259{bottom:623.508000px;}
.y102{bottom:625.750500px;}
.y82{bottom:627.991500px;}
.y273{bottom:632.026500px;}
.yc0{bottom:633.895997px;}
.y2d3{bottom:634.267500px;}
.y29b{bottom:634.806000px;}
.y4d{bottom:636.147000px;}
.y18d{bottom:641.539500px;}
.y127{bottom:642.337500px;}
.y101{bottom:644.580000px;}
.y9{bottom:645.510000px;}
.y1fd{bottom:645.801000px;}
.y1bb{bottom:646.515000px;}
.y81{bottom:646.821000px;}
.ybf{bottom:651.422090px;}
.y2d2{bottom:651.528000px;}
.y29a{bottom:652.066500px;}
.y22d{bottom:654.663000px;}
.y190{bottom:655.101000px;}
.y4c{bottom:655.603500px;}
.y18c{bottom:657.978000px;}
.y126{bottom:661.167000px;}
.y188{bottom:663.319500px;}
.y100{bottom:663.409500px;}
.y1fc{bottom:665.527500px;}
.y80{bottom:665.650500px;}
.y1ba{bottom:666.241500px;}
.y1f8{bottom:666.600000px;}
.y8{bottom:666.771000px;}
.y2d1{bottom:668.788500px;}
.ybe{bottom:668.866789px;}
.y299{bottom:669.327000px;}
.y18f{bottom:671.539500px;}
.y22c{bottom:673.492500px;}
.y18b{bottom:674.416500px;}
.y1fa{bottom:674.895000px;}
.y4b{bottom:675.061500px;}
.y1b7{bottom:677.361000px;}
.yb1{bottom:678.651000px;}
.y187{bottom:679.758000px;}
.y125{bottom:679.996500px;}
.yff{bottom:682.239000px;}
.y1f7{bottom:683.038500px;}
.y7f{bottom:684.480000px;}
.y1fb{bottom:685.254000px;}
.y1b9{bottom:685.968000px;}
.y2d0{bottom:686.049000px;}
.ybd{bottom:686.393897px;}
.y298{bottom:686.587500px;}
.y18e{bottom:687.978000px;}
.y18a{bottom:690.855000px;}
.y22b{bottom:692.322000px;}
.y4a{bottom:694.518000px;}
.yb0{bottom:697.480500px;}
.y124{bottom:698.826000px;}
.yfe{bottom:701.067000px;}
.y7e{bottom:703.309500px;}
.y297{bottom:703.848000px;}
.ybc{bottom:703.922954px;}
.y1f9{bottom:704.979000px;}
.y1b8{bottom:705.693000px;}
.y189{bottom:707.292000px;}
.y22a{bottom:711.150000px;}
.y49{bottom:713.974500px;}
.yaf{bottom:716.310000px;}
.y123{bottom:717.655500px;}
.yfd{bottom:719.896500px;}
.y2cf{bottom:720.570000px;}
.y296{bottom:721.107000px;}
.ybb{bottom:721.366983px;}
.y7d{bottom:722.139000px;}
.y7{bottom:726.298500px;}
.y229{bottom:729.979500px;}
.y184{bottom:730.410000px;}
.y1f6{bottom:731.907000px;}
.y1b6{bottom:732.621000px;}
.y48{bottom:733.432500px;}
.yae{bottom:735.139500px;}
.y122{bottom:736.485000px;}
.y2ce{bottom:737.829000px;}
.y295{bottom:738.367500px;}
.yfc{bottom:738.726000px;}
.yba{bottom:738.893075px;}
.y7c{bottom:740.968500px;}
.y186{bottom:743.971500px;}
.y183{bottom:746.848500px;}
.y228{bottom:748.809000px;}
.y1f4{bottom:751.138500px;}
.y1f5{bottom:751.633500px;}
.y180{bottom:752.191500px;}
.y1b5{bottom:752.347500px;}
.y3{bottom:752.599495px;}
.y1f2{bottom:752.685000px;}
.y47{bottom:752.889000px;}
.yad{bottom:753.969000px;}
.y2cd{bottom:755.089500px;}
.y121{bottom:755.314500px;}
.y294{bottom:755.628000px;}
.yfb{bottom:757.555500px;}
.y7b{bottom:759.798000px;}
.y185{bottom:760.410000px;}
.yb9{bottom:760.432087px;}
.y1b2{bottom:761.509500px;}
.y182{bottom:763.287000px;}
.y227{bottom:767.638500px;}
.y1f3{bottom:771.360000px;}
.y1b4{bottom:772.074000px;}
.y46{bottom:772.347000px;}
.y2cc{bottom:772.350000px;}
.yac{bottom:772.798500px;}
.y293{bottom:772.888500px;}
.y258{bottom:774.144000px;}
.yfa{bottom:776.385000px;}
.y7a{bottom:778.627500px;}
.y181{bottom:779.725500px;}
.yb8{bottom:782.053163px;}
.y226{bottom:786.468000px;}
.y2cb{bottom:789.610500px;}
.y292{bottom:790.149000px;}
.yab{bottom:791.628000px;}
.y1b3{bottom:791.799000px;}
.y45{bottom:791.803500px;}
.y257{bottom:792.973500px;}
.y79{bottom:797.457000px;}
.y1f1{bottom:798.288000px;}
.y120{bottom:798.801000px;}
.yf9{bottom:799.698000px;}
.y17f{bottom:804.337500px;}
.y225{bottom:805.297500px;}
.y2ca{bottom:806.871000px;}
.y17c{bottom:807.214500px;}
.y291{bottom:807.409500px;}
.y1ed{bottom:809.224500px;}
.yaa{bottom:810.457500px;}
.y44{bottom:811.260000px;}
.y256{bottom:811.803000px;}
.y179{bottom:812.556000px;}
.yb7{bottom:815.959189px;}
.y78{bottom:816.286500px;}
.y1ef{bottom:817.518000px;}
.y1f0{bottom:818.014500px;}
.y1b1{bottom:818.727000px;}
.y17e{bottom:820.776000px;}
.y17b{bottom:823.653000px;}
.y224{bottom:824.127000px;}
.y2c9{bottom:824.131500px;}
.y290{bottom:824.670000px;}
.y1ec{bottom:825.663000px;}
.y178{bottom:828.994500px;}
.ya9{bottom:829.287000px;}
.y255{bottom:830.632500px;}
.y43{bottom:830.718000px;}
.yb6{bottom:833.403889px;}
.y77{bottom:835.114500px;}
.y11f{bottom:836.908500px;}
.y17d{bottom:837.214500px;}
.y1ee{bottom:837.739500px;}
.yf8{bottom:837.805500px;}
.y1b0{bottom:838.453500px;}
.y17a{bottom:840.091500px;}
.y2c8{bottom:841.392000px;}
.y28f{bottom:841.930500px;}
.ya8{bottom:848.116500px;}
.y254{bottom:849.462000px;}
.y42{bottom:850.174500px;}
.y76{bottom:853.944000px;}
.y1af{bottom:858.180000px;}
.y2c7{bottom:858.652500px;}
.y28e{bottom:859.191000px;}
.y1ac{bottom:859.435500px;}
.y223{bottom:864.261000px;}
.y1eb{bottom:864.667500px;}
.ya7{bottom:866.946000px;}
.y174{bottom:867.579000px;}
.y253{bottom:868.291500px;}
.y1e9{bottom:869.559000px;}
.y41{bottom:869.631000px;}
.y75{bottom:872.773500px;}
.y177{bottom:872.922000px;}
.y11e{bottom:873.670500px;}
.yf7{bottom:874.567500px;}
.y2c6{bottom:875.913000px;}
.y1ae{bottom:877.905000px;}
.y221{bottom:878.457000px;}
.y2{bottom:879.369000px;}
.y28d{bottom:880.933500px;}
.y170{bottom:881.142000px;}
.y222{bottom:882.798000px;}
.yb4{bottom:883.199212px;}
.y173{bottom:884.017500px;}
.ya6{bottom:885.775500px;}
.y1e8{bottom:885.997500px;}
.y252{bottom:887.121000px;}
.y176{bottom:889.360500px;}
.y1ea{bottom:891.597000px;}
.y74{bottom:891.603000px;}
.yb3{bottom:891.962390px;}
.y220{bottom:892.654500px;}
.y2c5{bottom:893.172000px;}
.y16f{bottom:897.579000px;}
.y1ad{bottom:897.631500px;}
.y172{bottom:900.456000px;}
.ya5{bottom:904.605000px;}
.y175{bottom:905.799000px;}
.y40{bottom:905.920500px;}
.y251{bottom:905.950500px;}
.y73{bottom:910.432500px;}
.yf6{bottom:911.329500px;}
.y28c{bottom:914.557500px;}
.y21f{bottom:914.980500px;}
.y171{bottom:916.894500px;}
.y1e7{bottom:918.525000px;}
.y3f{bottom:922.060500px;}
.ya4{bottom:923.434500px;}
.y1ab{bottom:924.559500px;}
.y250{bottom:924.778500px;}
.y2c4{bottom:927.693000px;}
.y72{bottom:929.262000px;}
.y21e{bottom:933.063000px;}
.y1aa{bottom:933.721500px;}
.y1e3{bottom:935.550000px;}
.y16b{bottom:940.012500px;}
.y28b{bottom:941.098500px;}
.ya3{bottom:942.264000px;}
.y1e5{bottom:942.297000px;}
.y24f{bottom:943.608000px;}
.y2c3{bottom:944.953500px;}
.y16e{bottom:945.355500px;}
.y1e6{bottom:945.453000px;}
.y71{bottom:948.091500px;}
.y21d{bottom:951.144000px;}
.y1e2{bottom:951.988500px;}
.y167{bottom:953.574000px;}
.y16a{bottom:956.451000px;}
.ya2{bottom:961.093500px;}
.y16d{bottom:961.794000px;}
.y2c2{bottom:962.214000px;}
.y24e{bottom:962.437500px;}
.y1{bottom:966.726000px;}
.y70{bottom:966.921000px;}
.y28a{bottom:967.639500px;}
.y3e{bottom:968.781000px;}
.y21c{bottom:969.226500px;}
.y166{bottom:970.012500px;}
.y1a9{bottom:971.214000px;}
.y1e4{bottom:972.381000px;}
.y169{bottom:972.889500px;}
.y16c{bottom:978.231000px;}
.y2c1{bottom:979.474500px;}
.ya1{bottom:979.923000px;}
.y24d{bottom:981.267000px;}
.y6f{bottom:985.750500px;}
.y21b{bottom:987.309000px;}
.y168{bottom:989.328000px;}
.y289{bottom:994.179000px;}
.y2c0{bottom:996.735000px;}
.ya0{bottom:998.752500px;}
.y1e1{bottom:999.309000px;}
.y24c{bottom:1000.096500px;}
.y6e{bottom:1004.580000px;}
.y1a8{bottom:1005.135000px;}
.y21a{bottom:1005.391500px;}
.y3d{bottom:1008.699000px;}
.y1dd{bottom:1011.792000px;}
.y165{bottom:1013.940000px;}
.y2bf{bottom:1013.995500px;}
.y162{bottom:1016.817000px;}
.y9f{bottom:1017.582000px;}
.y1df{bottom:1018.540500px;}
.y24b{bottom:1018.926000px;}
.y1e0{bottom:1019.035500px;}
.y288{bottom:1020.720000px;}
.y15f{bottom:1022.158500px;}
.y6d{bottom:1023.409500px;}
.y219{bottom:1023.474000px;}
.y1dc{bottom:1028.230500px;}
.y164{bottom:1030.378500px;}
.y2be{bottom:1031.254500px;}
.y161{bottom:1033.254000px;}
.y9e{bottom:1036.411500px;}
.y3c{bottom:1036.944000px;}
.y24a{bottom:1037.755500px;}
.y15e{bottom:1038.597000px;}
.y1de{bottom:1038.762000px;}
.y218{bottom:1041.556500px;}
.y6c{bottom:1042.239000px;}
.y163{bottom:1046.817000px;}
.y287{bottom:1047.261000px;}
.y2bd{bottom:1048.515000px;}
.y160{bottom:1049.692500px;}
.y9d{bottom:1055.241000px;}
.y249{bottom:1056.585000px;}
.y6b{bottom:1061.068500px;}
.y286{bottom:1064.835000px;}
.y3b{bottom:1065.187500px;}
.y1da{bottom:1065.690000px;}
.y2bc{bottom:1065.775500px;}
.y217{bottom:1066.840500px;}
.y1d9{bottom:1073.908500px;}
.y9c{bottom:1074.070500px;}
.y216{bottom:1075.059000px;}
.y248{bottom:1075.414500px;}
.y15d{bottom:1078.675500px;}
.y6a{bottom:1079.898000px;}
.y1db{bottom:1082.128500px;}
.y285{bottom:1082.409000px;}
.y2bb{bottom:1083.036000px;}
.y3a{bottom:1093.432500px;}
.y247{bottom:1094.244000px;}
.y9b{bottom:1097.382000px;}
.y69{bottom:1098.727500px;}
.y284{bottom:1099.983000px;}
.y2ba{bottom:1100.296500px;}
.y68{bottom:1117.557000px;}
.y15c{bottom:1119.037500px;}
.y37{bottom:1136.919000px;}
.y67{bottom:1177.662000px;}
.h2a{height:22.380041px;}
.h24{height:27.974981px;}
.h14{height:31.529261px;}
.h7{height:32.130000px;}
.h2b{height:33.821261px;}
.h1b{height:34.647539px;}
.h20{height:38.896243px;}
.h9{height:39.457760px;}
.h17{height:39.589372px;}
.h16{height:40.283923px;}
.h13{height:40.698701px;}
.he{height:43.217759px;}
.h1c{height:43.504805px;}
.hc{height:43.815515px;}
.h1f{height:44.268047px;}
.h1a{height:44.723848px;}
.hf{height:45.094826px;}
.h6{height:45.900000px;}
.h18{height:45.900791px;}
.h3{height:48.195000px;}
.h1d{height:50.440430px;}
.h10{height:50.731891px;}
.ha{height:50.930649px;}
.h15{height:51.102881px;}
.h27{height:51.179261px;}
.h2{height:55.080000px;}
.h1e{height:56.157012px;}
.h11{height:56.368391px;}
.h23{height:58.987760px;}
.hb{height:61.613006px;}
.h28{height:64.542113px;}
.h26{height:71.770243px;}
.h25{height:71.776243px;}
.hd{height:77.792486px;}
.h5{height:78.030000px;}
.h29{height:82.656344px;}
.h21{height:92.989891px;}
.h22{height:104.887891px;}
.h4{height:119.055004px;}
.h19{height:267.319500px;}
.h12{height:349.586055px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:197.527766px;}
.w5{width:520.353015px;}
.w6{width:588.339000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.xd{left:-181.770225px;}
.x15{left:-96.478500px;}
.x1b{left:-74.879210px;}
.x1a{left:-61.288500px;}
.x19{left:-57.058500px;}
.x20{left:-52.378500px;}
.xe{left:-3.801525px;}
.x0{left:0.000000px;}
.xf{left:25.189612px;}
.x1c{left:30.870218px;}
.x5{left:53.574000px;}
.x6{left:58.054042px;}
.x77{left:63.226500px;}
.x5c{left:64.321500px;}
.x23{left:65.701500px;}
.x2c{left:67.099500px;}
.x31{left:68.566500px;}
.x53{left:73.870500px;}
.x71{left:75.505500px;}
.x22{left:77.698500px;}
.x21{left:81.726000px;}
.x32{left:83.152500px;}
.x7e{left:84.879000px;}
.x28{left:85.929000px;}
.x62{left:87.118500px;}
.x78{left:91.671000px;}
.x17{left:99.091500px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x63{left:107.461500px;}
.x74{left:110.500500px;}
.x18{left:130.951394px;}
.x75{left:133.594500px;}
.x6f{left:144.192000px;}
.x79{left:147.648000px;}
.x72{left:152.422500px;}
.x76{left:162.039000px;}
.x24{left:167.862000px;}
.x70{left:172.638000px;}
.x54{left:174.775500px;}
.x7a{left:176.094000px;}
.x73{left:180.868500px;}
.x5b{left:190.215000px;}
.x5d{left:191.950500px;}
.x59{left:193.954500px;}
.x29{left:195.055500px;}
.x4{left:203.484001px;}
.x68{left:221.713500px;}
.x6e{left:226.200000px;}
.x8{left:248.526000px;}
.x7{left:249.591000px;}
.x4a{left:262.720500px;}
.x4d{left:265.396500px;}
.x4b{left:268.711500px;}
.x47{left:278.779500px;}
.x9{left:281.592000px;}
.x61{left:284.241000px;}
.x55{left:287.046000px;}
.x56{left:289.654500px;}
.x41{left:305.005500px;}
.x3c{left:309.100500px;}
.x12{left:314.767500px;}
.x37{left:317.338500px;}
.xb{left:319.404000px;}
.x45{left:321.964500px;}
.x39{left:327.001500px;}
.xa{left:338.640000px;}
.x7b{left:356.311500px;}
.x51{left:358.903500px;}
.x69{left:365.076000px;}
.x6a{left:371.970000px;}
.x52{left:374.341500px;}
.x5e{left:376.945500px;}
.x66{left:383.719500px;}
.x5f{left:389.070000px;}
.x57{left:395.961000px;}
.x67{left:398.763000px;}
.x36{left:401.137500px;}
.x58{left:408.280500px;}
.xc{left:418.540500px;}
.x40{left:444.018000px;}
.x43{left:448.435500px;}
.x3{left:454.959000px;}
.x6b{left:457.342500px;}
.x4e{left:458.434500px;}
.x50{left:461.313000px;}
.x4c{left:463.314000px;}
.x60{left:464.692500px;}
.x4f{left:466.356000px;}
.x49{left:467.527500px;}
.x3b{left:469.821000px;}
.x3e{left:471.078000px;}
.x42{left:472.873500px;}
.x44{left:474.742500px;}
.x3d{left:477.171000px;}
.x3f{left:482.268000px;}
.x48{left:485.859000px;}
.x38{left:492.348000px;}
.x46{left:493.666500px;}
.x3a{left:496.261500px;}
.x10{left:523.390094px;}
.x1e{left:544.951500px;}
.x1f{left:547.921500px;}
.x7c{left:550.836000px;}
.x1d{left:556.113766px;}
.x16{left:592.021350px;}
.x5a{left:610.642500px;}
.x35{left:639.816000px;}
.x2b{left:641.337000px;}
.x7d{left:652.380000px;}
.x2d{left:661.167000px;}
.x2a{left:663.433500px;}
.x26{left:673.063500px;}
.x27{left:674.745000px;}
.x30{left:676.977000px;}
.x34{left:678.483000px;}
.x33{left:682.081500px;}
.x25{left:683.466000px;}
.x2e{left:687.549000px;}
.x2f{left:689.916000px;}
.x13{left:696.427500px;}
.x6c{left:702.531000px;}
.x6d{left:710.433000px;}
.x11{left:787.477500px;}
.x14{left:793.570500px;}
.x64{left:806.203500px;}
.x65{left:821.247000px;}
@media print{
.v6{vertical-align:-54.368000pt;}
.v1{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:15.429333pt;}
.v4{vertical-align:17.360000pt;}
.v8{vertical-align:19.290667pt;}
.v5{vertical-align:29.226667pt;}
.v2{vertical-align:37.562667pt;}
.v3{vertical-align:48.138667pt;}
.ls128{letter-spacing:-3.931200pt;}
.ls127{letter-spacing:-3.844800pt;}
.ls86{letter-spacing:-3.292278pt;}
.ls8f{letter-spacing:-2.878512pt;}
.ls111{letter-spacing:-1.699392pt;}
.lsf6{letter-spacing:-1.672672pt;}
.ls11d{letter-spacing:-1.544416pt;}
.lsfd{letter-spacing:-1.378752pt;}
.ls130{letter-spacing:-1.261184pt;}
.ls121{letter-spacing:-1.058112pt;}
.lsfc{letter-spacing:-1.031392pt;}
.ls126{letter-spacing:-0.427520pt;}
.ls87{letter-spacing:-0.423084pt;}
.ls12f{letter-spacing:-0.406144pt;}
.ls112{letter-spacing:-0.400800pt;}
.ls92{letter-spacing:-0.398769pt;}
.ls10a{letter-spacing:-0.390112pt;}
.ls7d{letter-spacing:-0.389043pt;}
.ls10f{letter-spacing:-0.363392pt;}
.ls122{letter-spacing:-0.347360pt;}
.ls12c{letter-spacing:-0.342016pt;}
.ls72{letter-spacing:-0.340413pt;}
.ls7e{letter-spacing:-0.330687pt;}
.ls7f{letter-spacing:-0.316098pt;}
.ls106{letter-spacing:-0.309952pt;}
.ls71{letter-spacing:-0.282056pt;}
.ls115{letter-spacing:-0.277888pt;}
.ls88{letter-spacing:-0.272330pt;}
.ls114{letter-spacing:-0.267200pt;}
.ls81{letter-spacing:-0.248015pt;}
.ls10e{letter-spacing:-0.240480pt;}
.ls78{letter-spacing:-0.238289pt;}
.ls11a{letter-spacing:-0.219104pt;}
.ls85{letter-spacing:-0.218837pt;}
.ls84{letter-spacing:-0.209111pt;}
.ls116{letter-spacing:-0.208416pt;}
.ls109{letter-spacing:-0.203072pt;}
.ls12a{letter-spacing:-0.201600pt;}
.ls65{letter-spacing:-0.199385pt;}
.ls6f{letter-spacing:-0.194522pt;}
.ls123{letter-spacing:-0.192384pt;}
.ls79{letter-spacing:-0.189659pt;}
.ls129{letter-spacing:-0.187200pt;}
.lsf9{letter-spacing:-0.187040pt;}
.ls7b{letter-spacing:-0.184796pt;}
.ls11f{letter-spacing:-0.176352pt;}
.ls76{letter-spacing:-0.175069pt;}
.ls105{letter-spacing:-0.171008pt;}
.ls5e{letter-spacing:-0.170206pt;}
.ls113{letter-spacing:-0.165664pt;}
.ls6b{letter-spacing:-0.165343pt;}
.ls119{letter-spacing:-0.154976pt;}
.ls75{letter-spacing:-0.150754pt;}
.lsf4{letter-spacing:-0.149632pt;}
.ls80{letter-spacing:-0.145891pt;}
.ls10b{letter-spacing:-0.144288pt;}
.ls82{letter-spacing:-0.141028pt;}
.ls6c{letter-spacing:-0.136165pt;}
.ls5f{letter-spacing:-0.131302pt;}
.ls118{letter-spacing:-0.128256pt;}
.ls120{letter-spacing:-0.122912pt;}
.ls91{letter-spacing:-0.121576pt;}
.ls124{letter-spacing:-0.117568pt;}
.ls89{letter-spacing:-0.116713pt;}
.lsf8{letter-spacing:-0.112224pt;}
.ls67{letter-spacing:-0.111850pt;}
.ls108{letter-spacing:-0.106880pt;}
.ls6e{letter-spacing:-0.102124pt;}
.lsff{letter-spacing:-0.101536pt;}
.ls62{letter-spacing:-0.092398pt;}
.ls12e{letter-spacing:-0.090848pt;}
.ls7c{letter-spacing:-0.087535pt;}
.ls11e{letter-spacing:-0.085504pt;}
.ls103{letter-spacing:-0.080160pt;}
.ls90{letter-spacing:-0.078624pt;}
.ls6a{letter-spacing:-0.077809pt;}
.lsf5{letter-spacing:-0.074816pt;}
.ls77{letter-spacing:-0.072946pt;}
.ls8e{letter-spacing:-0.069888pt;}
.ls107{letter-spacing:-0.069472pt;}
.lsee{letter-spacing:-0.068096pt;}
.ls69{letter-spacing:-0.068083pt;}
.ls110{letter-spacing:-0.064128pt;}
.ls60{letter-spacing:-0.063220pt;}
.ls58{letter-spacing:-0.061967pt;}
.ls104{letter-spacing:-0.058784pt;}
.ls6d{letter-spacing:-0.058356pt;}
.ls5c{letter-spacing:-0.053493pt;}
.lsf3{letter-spacing:-0.053440pt;}
.ls66{letter-spacing:-0.048630pt;}
.ls102{letter-spacing:-0.048096pt;}
.ls73{letter-spacing:-0.043767pt;}
.lsfa{letter-spacing:-0.042752pt;}
.ls61{letter-spacing:-0.038904pt;}
.lsfb{letter-spacing:-0.037408pt;}
.ls8d{letter-spacing:-0.034944pt;}
.ls70{letter-spacing:-0.034041pt;}
.ls10d{letter-spacing:-0.032064pt;}
.ls74{letter-spacing:-0.029178pt;}
.ls117{letter-spacing:-0.026720pt;}
.lsec{letter-spacing:-0.025536pt;}
.ls68{letter-spacing:-0.024315pt;}
.ls56{letter-spacing:-0.023238pt;}
.lsf7{letter-spacing:-0.021376pt;}
.ls64{letter-spacing:-0.019452pt;}
.ls12b{letter-spacing:-0.019200pt;}
.ls11b{letter-spacing:-0.016032pt;}
.ls5b{letter-spacing:-0.014589pt;}
.ls101{letter-spacing:-0.010688pt;}
.ls63{letter-spacing:-0.009726pt;}
.lsf1{letter-spacing:-0.009600pt;}
.ls8a{letter-spacing:-0.008736pt;}
.ls100{letter-spacing:-0.005344pt;}
.ls5d{letter-spacing:-0.004863pt;}
.ls8c{letter-spacing:-0.004368pt;}
.ls0{letter-spacing:0.000000pt;}
.ls14c{letter-spacing:0.000536pt;}
.ls14b{letter-spacing:0.001691pt;}
.ls137{letter-spacing:0.002348pt;}
.ls14d{letter-spacing:0.002686pt;}
.ls13a{letter-spacing:0.003012pt;}
.ls27{letter-spacing:0.004863pt;}
.lsc3{letter-spacing:0.005344pt;}
.ls4c{letter-spacing:0.008736pt;}
.lsf2{letter-spacing:0.009600pt;}
.ls1d{letter-spacing:0.009726pt;}
.lsbe{letter-spacing:0.010688pt;}
.ls49{letter-spacing:0.013104pt;}
.ls20{letter-spacing:0.014589pt;}
.lsb3{letter-spacing:0.016032pt;}
.ls42{letter-spacing:0.019452pt;}
.lsac{letter-spacing:0.021376pt;}
.ls18{letter-spacing:0.024315pt;}
.lsc0{letter-spacing:0.026720pt;}
.ls25{letter-spacing:0.029178pt;}
.lscb{letter-spacing:0.032064pt;}
.ls1a{letter-spacing:0.034041pt;}
.lsaf{letter-spacing:0.037408pt;}
.ls3a{letter-spacing:0.038904pt;}
.lsb1{letter-spacing:0.042752pt;}
.lse1{letter-spacing:0.043200pt;}
.ls48{letter-spacing:0.043680pt;}
.ls2e{letter-spacing:0.043767pt;}
.ls47{letter-spacing:0.048048pt;}
.lsd1{letter-spacing:0.048096pt;}
.ls21{letter-spacing:0.048630pt;}
.lscf{letter-spacing:0.053440pt;}
.ls1e{letter-spacing:0.053493pt;}
.ls3c{letter-spacing:0.058356pt;}
.lsb7{letter-spacing:0.058784pt;}
.lse2{letter-spacing:0.062400pt;}
.ls41{letter-spacing:0.063220pt;}
.lse9{letter-spacing:0.064128pt;}
.ls33{letter-spacing:0.068083pt;}
.lsae{letter-spacing:0.069472pt;}
.ls2f{letter-spacing:0.072946pt;}
.ls4b{letter-spacing:0.074256pt;}
.lsca{letter-spacing:0.074816pt;}
.ls1f{letter-spacing:0.077809pt;}
.lsba{letter-spacing:0.080160pt;}
.ls13{letter-spacing:0.081332pt;}
.lsab{letter-spacing:0.081600pt;}
.ls50{letter-spacing:0.082672pt;}
.lsad{letter-spacing:0.085504pt;}
.ls1b{letter-spacing:0.087535pt;}
.lsa6{letter-spacing:0.089376pt;}
.lse4{letter-spacing:0.090848pt;}
.lse0{letter-spacing:0.091200pt;}
.ls22{letter-spacing:0.092398pt;}
.lsc1{letter-spacing:0.096192pt;}
.ls36{letter-spacing:0.097261pt;}
.lsb4{letter-spacing:0.101536pt;}
.ls23{letter-spacing:0.102124pt;}
.lsbc{letter-spacing:0.106880pt;}
.ls7a{letter-spacing:0.111850pt;}
.lsea{letter-spacing:0.112224pt;}
.ls12{letter-spacing:0.116189pt;}
.ls125{letter-spacing:0.117568pt;}
.ls8b{letter-spacing:0.117936pt;}
.ls35{letter-spacing:0.121576pt;}
.ls11c{letter-spacing:0.122912pt;}
.ls5a{letter-spacing:0.123935pt;}
.ls83{letter-spacing:0.126439pt;}
.lsa5{letter-spacing:0.127680pt;}
.ls131{letter-spacing:0.128256pt;}
.lsfe{letter-spacing:0.133600pt;}
.lsf0{letter-spacing:0.136192pt;}
.lsde{letter-spacing:0.144288pt;}
.ls4d{letter-spacing:0.148512pt;}
.ls11{letter-spacing:0.154918pt;}
.lse7{letter-spacing:0.154976pt;}
.ls38{letter-spacing:0.155617pt;}
.ls10c{letter-spacing:0.160320pt;}
.lsaa{letter-spacing:0.163200pt;}
.lsa4{letter-spacing:0.170240pt;}
.lsce{letter-spacing:0.171008pt;}
.ls12d{letter-spacing:0.176352pt;}
.lsdb{letter-spacing:0.219104pt;}
.ls51{letter-spacing:0.239104pt;}
.ls53{letter-spacing:0.265669pt;}
.ls57{letter-spacing:0.329202pt;}
.ls59{letter-spacing:0.348566pt;}
.lsed{letter-spacing:0.361760pt;}
.ls2d{letter-spacing:0.369591pt;}
.lsef{letter-spacing:0.383040pt;}
.lsd5{letter-spacing:0.406144pt;}
.ls6{letter-spacing:0.531339pt;}
.ls1{letter-spacing:0.557904pt;}
.ls13d{letter-spacing:0.570745pt;}
.ls13e{letter-spacing:0.576078pt;}
.ls14a{letter-spacing:0.597333pt;}
.ls2c{letter-spacing:0.661373pt;}
.lsd6{letter-spacing:0.726784pt;}
.ls3{letter-spacing:0.797008pt;}
.ls95{letter-spacing:0.903276pt;}
.ls45{letter-spacing:0.953156pt;}
.ls94{letter-spacing:0.956410pt;}
.ls93{letter-spacing:1.328347pt;}
.ls1c{letter-spacing:1.531858pt;}
.ls4a{letter-spacing:1.607424pt;}
.ls37{letter-spacing:1.823640pt;}
.ls46{letter-spacing:1.900080pt;}
.lsb2{letter-spacing:2.004000pt;}
.ls39{letter-spacing:2.115422pt;}
.lsb0{letter-spacing:2.324640pt;}
.ls133{letter-spacing:2.656533pt;}
.ls3d{letter-spacing:2.698987pt;}
.ls3b{letter-spacing:2.990770pt;}
.ls44{letter-spacing:3.282552pt;}
.ls19{letter-spacing:3.574334pt;}
.lsdc{letter-spacing:3.607200pt;}
.ls17{letter-spacing:3.866117pt;}
.lsb6{letter-spacing:3.927840pt;}
.lsb5{letter-spacing:4.248480pt;}
.lsdd{letter-spacing:4.569120pt;}
.lsc6{letter-spacing:4.884416pt;}
.lsc4{letter-spacing:4.889760pt;}
.lsc5{letter-spacing:5.205056pt;}
.ls28{letter-spacing:5.320166pt;}
.ls29{letter-spacing:5.611948pt;}
.ls26{letter-spacing:7.070860pt;}
.ls24{letter-spacing:7.362643pt;}
.lsbb{letter-spacing:8.406112pt;}
.lsbd{letter-spacing:8.726752pt;}
.ls2b{letter-spacing:8.816692pt;}
.ls2a{letter-spacing:9.108474pt;}
.ls15{letter-spacing:9.542973pt;}
.ls16{letter-spacing:9.546846pt;}
.ls141{letter-spacing:9.690618pt;}
.ls140{letter-spacing:9.696060pt;}
.lsd4{letter-spacing:10.009312pt;}
.lsd3{letter-spacing:10.329952pt;}
.lsa8{letter-spacing:10.486784pt;}
.lsa9{letter-spacing:10.491040pt;}
.ls43{letter-spacing:10.567386pt;}
.ls139{letter-spacing:10.623733pt;}
.ls5{letter-spacing:10.626533pt;}
.ls138{letter-spacing:10.629067pt;}
.ls32{letter-spacing:10.854305pt;}
.ls34{letter-spacing:11.146088pt;}
.lsd0{letter-spacing:11.291872pt;}
.ls4f{letter-spacing:11.729652pt;}
.ls4e{letter-spacing:12.021435pt;}
.lsd2{letter-spacing:12.248448pt;}
.ls3f{letter-spacing:12.313217pt;}
.lsb{letter-spacing:12.539593pt;}
.ls13f{letter-spacing:12.549333pt;}
.ls13c{letter-spacing:12.554667pt;}
.ls40{letter-spacing:12.605000pt;}
.lsa{letter-spacing:12.752128pt;}
.ls144{letter-spacing:12.883407pt;}
.lsb9{letter-spacing:12.889728pt;}
.lsc{letter-spacing:12.964663pt;}
.ls9b{letter-spacing:13.017797pt;}
.ls142{letter-spacing:13.035681pt;}
.ls52{letter-spacing:13.055078pt;}
.lsa1{letter-spacing:13.124065pt;}
.lsb8{letter-spacing:13.210368pt;}
.ls9a{letter-spacing:13.230333pt;}
.lse{letter-spacing:13.283467pt;}
.ls148{letter-spacing:13.283733pt;}
.ls143{letter-spacing:13.326186pt;}
.lsa2{letter-spacing:13.336601pt;}
.ls147{letter-spacing:13.375550pt;}
.ls9f{letter-spacing:13.389734pt;}
.lsd8{letter-spacing:13.531008pt;}
.ls146{letter-spacing:13.574563pt;}
.ls145{letter-spacing:13.580005pt;}
.ls55{letter-spacing:13.602270pt;}
.lsd{letter-spacing:13.655404pt;}
.ls99{letter-spacing:13.708538pt;}
.lscd{letter-spacing:14.172288pt;}
.lsf{letter-spacing:14.293010pt;}
.ls9c{letter-spacing:14.346144pt;}
.lscc{letter-spacing:14.492928pt;}
.ls136{letter-spacing:14.613867pt;}
.ls96{letter-spacing:14.771215pt;}
.lsdf{letter-spacing:14.813568pt;}
.ls54{letter-spacing:14.930617pt;}
.ls9{letter-spacing:14.983750pt;}
.ls9e{letter-spacing:15.727625pt;}
.ls31{letter-spacing:16.101525pt;}
.lsa3{letter-spacing:16.365231pt;}
.ls30{letter-spacing:16.393308pt;}
.lsd9{letter-spacing:16.411424pt;}
.lsa0{letter-spacing:16.524633pt;}
.lsda{letter-spacing:16.732064pt;}
.lsc2{letter-spacing:17.052704pt;}
.lsbf{letter-spacing:17.373344pt;}
.ls8{letter-spacing:17.481042pt;}
.ls7{letter-spacing:17.534176pt;}
.lsc8{letter-spacing:20.574400pt;}
.lsd7{letter-spacing:20.881535pt;}
.lsc7{letter-spacing:20.895040pt;}
.ls10{letter-spacing:20.934743pt;}
.ls98{letter-spacing:21.200413pt;}
.lsc9{letter-spacing:21.215680pt;}
.ls97{letter-spacing:21.253547pt;}
.ls4{letter-spacing:23.697705pt;}
.ls9d{letter-spacing:24.229043pt;}
.ls2{letter-spacing:25.292137pt;}
.ls3e{letter-spacing:29.207418pt;}
.lse6{letter-spacing:44.905632pt;}
.lse8{letter-spacing:144.143712pt;}
.ls13b{letter-spacing:166.315200pt;}
.ls132{letter-spacing:303.931200pt;}
.ls134{letter-spacing:312.315200pt;}
.ls135{letter-spacing:324.267200pt;}
.ls149{letter-spacing:328.737007pt;}
.lseb{letter-spacing:394.799764pt;}
.lse5{letter-spacing:780.555328pt;}
.lse3{letter-spacing:790.479136pt;}
.ls14{letter-spacing:1702.406044pt;}
.lsa7{letter-spacing:1870.775872pt;}
.ws10d{word-spacing:-53.440000pt;}
.ws84{word-spacing:-48.630400pt;}
.wsc0{word-spacing:-43.680000pt;}
.ws100{word-spacing:-42.560000pt;}
.ws6a{word-spacing:-38.729600pt;}
.wsf{word-spacing:-20.194365pt;}
.wsd8{word-spacing:-14.239876pt;}
.ws40{word-spacing:-13.814805pt;}
.wsce{word-spacing:-13.549136pt;}
.ws2f{word-spacing:-13.283467pt;}
.ws169{word-spacing:-11.955200pt;}
.ws34{word-spacing:-10.626800pt;}
.wse{word-spacing:-9.298400pt;}
.ws197{word-spacing:-3.613103pt;}
.wsdb{word-spacing:-3.506835pt;}
.ws4d{word-spacing:-3.081764pt;}
.wsee{word-spacing:-2.656693pt;}
.ws1a3{word-spacing:-2.603559pt;}
.ws19d{word-spacing:-2.550426pt;}
.ws63{word-spacing:-2.231622pt;}
.wse8{word-spacing:-2.178489pt;}
.ws193{word-spacing:-2.125355pt;}
.wse0{word-spacing:-2.072221pt;}
.ws23{word-spacing:-1.912819pt;}
.ws5e{word-spacing:-1.859685pt;}
.ws46{word-spacing:-1.806551pt;}
.wsda{word-spacing:-1.700284pt;}
.ws32{word-spacing:-1.594016pt;}
.ws18{word-spacing:-1.578086pt;}
.ws194{word-spacing:-1.540882pt;}
.ws1d1{word-spacing:-1.530266pt;}
.ws185{word-spacing:-1.530259pt;}
.ws62{word-spacing:-1.487748pt;}
.ws16{word-spacing:-1.434624pt;}
.wsea{word-spacing:-1.434614pt;}
.ws19f{word-spacing:-1.381481pt;}
.wsdd{word-spacing:-1.328347pt;}
.ws47{word-spacing:-1.275213pt;}
.wsde{word-spacing:-1.222079pt;}
.ws20d{word-spacing:-1.195520pt;}
.ws50{word-spacing:-1.168945pt;}
.ws4{word-spacing:-1.153002pt;}
.ws51{word-spacing:-1.115811pt;}
.ws39{word-spacing:-1.062677pt;}
.ws13{word-spacing:-1.052058pt;}
.ws5d{word-spacing:-1.009543pt;}
.ws2b{word-spacing:-0.956410pt;}
.ws190{word-spacing:-0.935158pt;}
.ws3{word-spacing:-0.929840pt;}
.ws1d7{word-spacing:-0.908595pt;}
.ws54{word-spacing:-0.903276pt;}
.ws1b4{word-spacing:-0.860774pt;}
.wsd3{word-spacing:-0.850142pt;}
.ws1af{word-spacing:-0.812954pt;}
.ws4f{word-spacing:-0.797008pt;}
.ws24{word-spacing:-0.743874pt;}
.ws29{word-spacing:-0.690740pt;}
.ws28{word-spacing:-0.637606pt;}
.ws1cf{word-spacing:-0.621670pt;}
.ws26{word-spacing:-0.584473pt;}
.ws1ac{word-spacing:-0.573850pt;}
.ws27{word-spacing:-0.531339pt;}
.ws4e{word-spacing:-0.478205pt;}
.ws1e{word-spacing:-0.430387pt;}
.ws106{word-spacing:-0.425600pt;}
.ws4c{word-spacing:-0.425071pt;}
.ws2{word-spacing:-0.409130pt;}
.ws101{word-spacing:-0.404320pt;}
.ws70{word-spacing:-0.387296pt;}
.ws14{word-spacing:-0.382566pt;}
.ws68{word-spacing:-0.371937pt;}
.ws6b{word-spacing:-0.367931pt;}
.ws1a{word-spacing:-0.334746pt;}
.ws43{word-spacing:-0.318803pt;}
.ws1f{word-spacing:-0.286925pt;}
.ws150{word-spacing:-0.272544pt;}
.ws44{word-spacing:-0.265669pt;}
.ws19{word-spacing:-0.239104pt;}
.ws15f{word-spacing:-0.229792pt;}
.ws10c{word-spacing:-0.224448pt;}
.ws134{word-spacing:-0.213760pt;}
.ws102{word-spacing:-0.212800pt;}
.ws30{word-spacing:-0.212535pt;}
.ws15d{word-spacing:-0.208416pt;}
.ws73{word-spacing:-0.204248pt;}
.ws152{word-spacing:-0.197728pt;}
.ws6c{word-spacing:-0.193648pt;}
.ws16a{word-spacing:-0.191283pt;}
.ws11f{word-spacing:-0.187040pt;}
.ws165{word-spacing:-0.181696pt;}
.ws107{word-spacing:-0.178752pt;}
.ws149{word-spacing:-0.176352pt;}
.wsaf{word-spacing:-0.175069pt;}
.ws154{word-spacing:-0.171008pt;}
.ws74{word-spacing:-0.170206pt;}
.ws164{word-spacing:-0.165664pt;}
.ws71{word-spacing:-0.162664pt;}
.wsbb{word-spacing:-0.161616pt;}
.wsa3{word-spacing:-0.160480pt;}
.ws12f{word-spacing:-0.160320pt;}
.ws37{word-spacing:-0.159402pt;}
.ws119{word-spacing:-0.154976pt;}
.ws89{word-spacing:-0.150754pt;}
.ws130{word-spacing:-0.149632pt;}
.wsaa{word-spacing:-0.145891pt;}
.ws15c{word-spacing:-0.144288pt;}
.ws15{word-spacing:-0.143462pt;}
.ws88{word-spacing:-0.141028pt;}
.ws13a{word-spacing:-0.138944pt;}
.ws77{word-spacing:-0.136165pt;}
.ws12c{word-spacing:-0.133600pt;}
.ws104{word-spacing:-0.131936pt;}
.wsc8{word-spacing:-0.131302pt;}
.ws10a{word-spacing:-0.129600pt;}
.ws137{word-spacing:-0.128256pt;}
.ws91{word-spacing:-0.126439pt;}
.ws110{word-spacing:-0.122912pt;}
.wsa4{word-spacing:-0.121576pt;}
.ws6e{word-spacing:-0.120062pt;}
.wsc3{word-spacing:-0.117936pt;}
.ws163{word-spacing:-0.117568pt;}
.ws9c{word-spacing:-0.116713pt;}
.ws124{word-spacing:-0.112224pt;}
.wsa1{word-spacing:-0.111850pt;}
.ws15b{word-spacing:-0.110400pt;}
.wsb0{word-spacing:-0.106987pt;}
.ws139{word-spacing:-0.106880pt;}
.wse1{word-spacing:-0.106268pt;}
.ws7d{word-spacing:-0.102124pt;}
.ws142{word-spacing:-0.101536pt;}
.ws87{word-spacing:-0.097261pt;}
.ws112{word-spacing:-0.096192pt;}
.ws1b{word-spacing:-0.095642pt;}
.ws99{word-spacing:-0.092398pt;}
.wsba{word-spacing:-0.091728pt;}
.ws10b{word-spacing:-0.091200pt;}
.ws13b{word-spacing:-0.090848pt;}
.wsac{word-spacing:-0.087535pt;}
.wsbc{word-spacing:-0.087360pt;}
.ws120{word-spacing:-0.085504pt;}
.ws76{word-spacing:-0.082672pt;}
.ws128{word-spacing:-0.080160pt;}
.ws8e{word-spacing:-0.077809pt;}
.ws10e{word-spacing:-0.074816pt;}
.ws75{word-spacing:-0.072946pt;}
.ws118{word-spacing:-0.069472pt;}
.wsb2{word-spacing:-0.068083pt;}
.ws11c{word-spacing:-0.064128pt;}
.ws80{word-spacing:-0.063220pt;}
.ws131{word-spacing:-0.058784pt;}
.ws7b{word-spacing:-0.058356pt;}
.ws109{word-spacing:-0.057600pt;}
.wsc2{word-spacing:-0.056784pt;}
.ws92{word-spacing:-0.053493pt;}
.ws11d{word-spacing:-0.053440pt;}
.ws53{word-spacing:-0.053134pt;}
.wsb9{word-spacing:-0.052416pt;}
.ws7c{word-spacing:-0.048630pt;}
.ws122{word-spacing:-0.048096pt;}
.ws17{word-spacing:-0.047821pt;}
.ws79{word-spacing:-0.043767pt;}
.wsbd{word-spacing:-0.043680pt;}
.ws123{word-spacing:-0.042752pt;}
.ws103{word-spacing:-0.042560pt;}
.ws35{word-spacing:-0.042507pt;}
.wsbe{word-spacing:-0.039312pt;}
.ws83{word-spacing:-0.038904pt;}
.ws6d{word-spacing:-0.038730pt;}
.ws108{word-spacing:-0.038400pt;}
.ws148{word-spacing:-0.037408pt;}
.wsb8{word-spacing:-0.034944pt;}
.ws72{word-spacing:-0.034041pt;}
.ws114{word-spacing:-0.032064pt;}
.ws85{word-spacing:-0.029178pt;}
.ws15a{word-spacing:-0.028800pt;}
.ws144{word-spacing:-0.026720pt;}
.ws8b{word-spacing:-0.024315pt;}
.ws135{word-spacing:-0.021376pt;}
.ws9b{word-spacing:-0.019452pt;}
.wsff{word-spacing:-0.017024pt;}
.ws11a{word-spacing:-0.016032pt;}
.ws69{word-spacing:-0.015492pt;}
.ws96{word-spacing:-0.014589pt;}
.ws117{word-spacing:-0.010688pt;}
.ws81{word-spacing:-0.009726pt;}
.wsbf{word-spacing:-0.008736pt;}
.ws188{word-spacing:-0.006811pt;}
.ws1d0{word-spacing:-0.005495pt;}
.ws125{word-spacing:-0.005344pt;}
.ws9a{word-spacing:-0.004863pt;}
.ws196{word-spacing:-0.004843pt;}
.ws186{word-spacing:-0.003369pt;}
.ws0{word-spacing:0.000000pt;}
.ws191{word-spacing:0.001622pt;}
.ws18b{word-spacing:0.002910pt;}
.ws78{word-spacing:0.004863pt;}
.ws17c{word-spacing:0.005009pt;}
.ws127{word-spacing:0.005344pt;}
.ws93{word-spacing:0.009726pt;}
.ws13c{word-spacing:0.010688pt;}
.ws7f{word-spacing:0.014589pt;}
.ws12b{word-spacing:0.016032pt;}
.ws8c{word-spacing:0.019452pt;}
.ws111{word-spacing:0.021376pt;}
.ws6f{word-spacing:0.023238pt;}
.ws9f{word-spacing:0.024315pt;}
.ws105{word-spacing:0.025536pt;}
.wsc1{word-spacing:0.026208pt;}
.ws126{word-spacing:0.026720pt;}
.ws8d{word-spacing:0.029178pt;}
.ws14b{word-spacing:0.032064pt;}
.wsc5{word-spacing:0.034944pt;}
.ws160{word-spacing:0.037408pt;}
.wsa6{word-spacing:0.038904pt;}
.ws82{word-spacing:0.043767pt;}
.ws1{word-spacing:0.045814pt;}
.ws1b3{word-spacing:0.047821pt;}
.ws121{word-spacing:0.048096pt;}
.ws3a{word-spacing:0.053134pt;}
.ws12d{word-spacing:0.053440pt;}
.ws94{word-spacing:0.053493pt;}
.ws115{word-spacing:0.058784pt;}
.ws8a{word-spacing:0.063220pt;}
.ws153{word-spacing:0.064128pt;}
.wsb7{word-spacing:0.068083pt;}
.ws14d{word-spacing:0.069472pt;}
.wsc6{word-spacing:0.072946pt;}
.ws145{word-spacing:0.074816pt;}
.ws7e{word-spacing:0.082672pt;}
.ws90{word-spacing:0.087535pt;}
.ws133{word-spacing:0.090848pt;}
.wsae{word-spacing:0.092398pt;}
.ws1b1{word-spacing:0.095642pt;}
.ws10f{word-spacing:0.096192pt;}
.wsab{word-spacing:0.097261pt;}
.ws146{word-spacing:0.101536pt;}
.ws9d{word-spacing:0.102124pt;}
.ws36{word-spacing:0.106268pt;}
.ws13f{word-spacing:0.112224pt;}
.ws8f{word-spacing:0.116713pt;}
.ws129{word-spacing:0.117568pt;}
.ws1ec{word-spacing:0.120626pt;}
.ws7a{word-spacing:0.121576pt;}
.ws14c{word-spacing:0.122912pt;}
.ws9e{word-spacing:0.126439pt;}
.ws116{word-spacing:0.133600pt;}
.wsa5{word-spacing:0.136165pt;}
.ws151{word-spacing:0.138944pt;}
.ws158{word-spacing:0.139200pt;}
.wsa2{word-spacing:0.141028pt;}
.ws16b{word-spacing:0.143462pt;}
.ws95{word-spacing:0.145891pt;}
.ws12e{word-spacing:0.149632pt;}
.ws86{word-spacing:0.150754pt;}
.ws159{word-spacing:0.153600pt;}
.ws143{word-spacing:0.154976pt;}
.ws3c{word-spacing:0.159402pt;}
.wsb1{word-spacing:0.160480pt;}
.ws147{word-spacing:0.165664pt;}
.wsb3{word-spacing:0.170206pt;}
.ws136{word-spacing:0.187040pt;}
.wsa0{word-spacing:0.189659pt;}
.ws168{word-spacing:0.191283pt;}
.wsad{word-spacing:0.199385pt;}
.wsdf{word-spacing:0.212535pt;}
.ws140{word-spacing:0.213760pt;}
.wsb6{word-spacing:0.223700pt;}
.ws141{word-spacing:0.224448pt;}
.ws97{word-spacing:0.233426pt;}
.ws1c2{word-spacing:0.239104pt;}
.ws12a{word-spacing:0.256512pt;}
.ws31{word-spacing:0.265669pt;}
.wsa9{word-spacing:0.267467pt;}
.wsa8{word-spacing:0.282056pt;}
.wsca{word-spacing:0.286925pt;}
.ws15e{word-spacing:0.288576pt;}
.ws98{word-spacing:0.291782pt;}
.ws14f{word-spacing:0.293920pt;}
.ws138{word-spacing:0.309952pt;}
.ws5a{word-spacing:0.318803pt;}
.ws132{word-spacing:0.336672pt;}
.wsa7{word-spacing:0.340413pt;}
.ws13e{word-spacing:0.347360pt;}
.wsc7{word-spacing:0.350139pt;}
.ws161{word-spacing:0.352704pt;}
.ws57{word-spacing:0.371937pt;}
.ws155{word-spacing:0.374080pt;}
.wsb5{word-spacing:0.374454pt;}
.ws1fc{word-spacing:0.382566pt;}
.ws198{word-spacing:0.478205pt;}
.wsc9{word-spacing:0.478208pt;}
.ws1be{word-spacing:0.526029pt;}
.wse7{word-spacing:0.531339pt;}
.ws18e{word-spacing:0.577126pt;}
.wscc{word-spacing:0.584473pt;}
.ws195{word-spacing:0.594210pt;}
.ws1db{word-spacing:0.621670pt;}
.wscd{word-spacing:0.637606pt;}
.ws1bc{word-spacing:0.669491pt;}
.ws16d{word-spacing:0.690740pt;}
.ws1f0{word-spacing:0.717312pt;}
.ws192{word-spacing:0.743874pt;}
.ws1f7{word-spacing:0.812954pt;}
.ws45{word-spacing:0.850142pt;}
.ws205{word-spacing:0.860774pt;}
.wse6{word-spacing:0.903276pt;}
.wsf0{word-spacing:0.956410pt;}
.ws11b{word-spacing:0.977952pt;}
.ws1e9{word-spacing:1.004237pt;}
.ws14e{word-spacing:1.004672pt;}
.ws5f{word-spacing:1.009543pt;}
.ws60{word-spacing:1.062677pt;}
.ws166{word-spacing:1.168945pt;}
.ws1dd{word-spacing:1.195520pt;}
.ws162{word-spacing:1.207744pt;}
.ws56{word-spacing:1.222079pt;}
.wsd{word-spacing:1.227389pt;}
.ws1a5{word-spacing:1.275213pt;}
.ws11e{word-spacing:1.325312pt;}
.ws19b{word-spacing:1.328347pt;}
.ws189{word-spacing:1.381481pt;}
.ws1aa{word-spacing:1.386803pt;}
.ws64{word-spacing:1.434614pt;}
.ws1ed{word-spacing:1.434624pt;}
.ws1d{word-spacing:1.482445pt;}
.ws14a{word-spacing:1.490976pt;}
.ws1da{word-spacing:1.530266pt;}
.ws42{word-spacing:1.540882pt;}
.ws3d{word-spacing:1.594016pt;}
.ws113{word-spacing:1.619232pt;}
.ws13d{word-spacing:1.645952pt;}
.ws1a0{word-spacing:1.647150pt;}
.wsfb{word-spacing:1.700284pt;}
.ws1d4{word-spacing:1.721549pt;}
.ws65{word-spacing:1.753418pt;}
.ws61{word-spacing:1.806551pt;}
.ws3f{word-spacing:1.859685pt;}
.ws1b9{word-spacing:1.865011pt;}
.ws3e{word-spacing:1.912819pt;}
.wsd2{word-spacing:1.965953pt;}
.wsf8{word-spacing:2.019087pt;}
.wsf9{word-spacing:2.072221pt;}
.ws1a8{word-spacing:2.199757pt;}
.ws1ff{word-spacing:2.247578pt;}
.ws5{word-spacing:2.250129pt;}
.wsd4{word-spacing:2.284756pt;}
.ws19c{word-spacing:2.337890pt;}
.ws1a1{word-spacing:2.391024pt;}
.ws1f4{word-spacing:2.438861pt;}
.wsf2{word-spacing:2.497292pt;}
.ws20b{word-spacing:2.534502pt;}
.ws10{word-spacing:2.550432pt;}
.wsfa{word-spacing:2.603559pt;}
.wsd0{word-spacing:2.656693pt;}
.wse9{word-spacing:2.709827pt;}
.ws12{word-spacing:2.725786pt;}
.ws2e{word-spacing:2.762961pt;}
.ws1e4{word-spacing:2.773606pt;}
.ws18f{word-spacing:2.805475pt;}
.ws1a9{word-spacing:2.821427pt;}
.ws11{word-spacing:2.832451pt;}
.wsc4{word-spacing:2.834832pt;}
.ws1f5{word-spacing:2.860041pt;}
.ws1dc{word-spacing:2.861611pt;}
.ws20{word-spacing:2.861926pt;}
.ws211{word-spacing:2.861986pt;}
.ws1c0{word-spacing:2.862046pt;}
.ws1fe{word-spacing:2.862251pt;}
.ws212{word-spacing:2.862566pt;}
.ws210{word-spacing:2.863889pt;}
.ws1f6{word-spacing:2.863957pt;}
.ws1b5{word-spacing:2.864794pt;}
.ws1ab{word-spacing:2.866509pt;}
.ws1f1{word-spacing:2.866731pt;}
.ws1fd{word-spacing:2.867422pt;}
.ws1ae{word-spacing:2.869248pt;}
.ws1e8{word-spacing:2.917069pt;}
.wseb{word-spacing:2.922363pt;}
.wscf{word-spacing:2.975497pt;}
.ws58{word-spacing:3.028630pt;}
.ws1f2{word-spacing:3.060531pt;}
.ws1b8{word-spacing:3.108352pt;}
.wse5{word-spacing:3.134898pt;}
.ws21{word-spacing:3.188032pt;}
.wsd1{word-spacing:3.241166pt;}
.wsb4{word-spacing:3.243648pt;}
.ws1cb{word-spacing:3.251814pt;}
.wsf4{word-spacing:3.347434pt;}
.ws48{word-spacing:3.453701pt;}
.ws49{word-spacing:3.506835pt;}
.ws16f{word-spacing:3.559969pt;}
.ws199{word-spacing:3.613103pt;}
.ws22{word-spacing:3.666237pt;}
.ws38{word-spacing:3.719371pt;}
.wsd9{word-spacing:3.772505pt;}
.ws156{word-spacing:3.796800pt;}
.wsd6{word-spacing:3.825638pt;}
.ws1e2{word-spacing:3.873485pt;}
.ws157{word-spacing:3.883200pt;}
.wsef{word-spacing:3.931906pt;}
.ws16c{word-spacing:4.038174pt;}
.ws1fa{word-spacing:4.064768pt;}
.ws59{word-spacing:4.091308pt;}
.wse4{word-spacing:4.144442pt;}
.ws52{word-spacing:4.197575pt;}
.ws207{word-spacing:4.256051pt;}
.ws16e{word-spacing:4.356977pt;}
.wsf1{word-spacing:4.463245pt;}
.wse3{word-spacing:4.516379pt;}
.ws1ce{word-spacing:4.542976pt;}
.ws41{word-spacing:4.569513pt;}
.ws4b{word-spacing:4.622646pt;}
.ws4a{word-spacing:4.675780pt;}
.ws1a7{word-spacing:4.728914pt;}
.ws1a4{word-spacing:4.782048pt;}
.ws1bf{word-spacing:4.782080pt;}
.wsb{word-spacing:4.872362pt;}
.ws66{word-spacing:4.888316pt;}
.ws67{word-spacing:4.941450pt;}
.ws1c{word-spacing:5.021184pt;}
.wsd5{word-spacing:5.047717pt;}
.ws5c{word-spacing:5.100851pt;}
.ws19a{word-spacing:5.207119pt;}
.ws25{word-spacing:5.260253pt;}
.ws202{word-spacing:5.308109pt;}
.wsfc{word-spacing:5.366521pt;}
.ws1df{word-spacing:5.403750pt;}
.wsdc{word-spacing:5.419654pt;}
.ws2c{word-spacing:5.472788pt;}
.ws2a{word-spacing:5.579056pt;}
.ws179{word-spacing:5.685324pt;}
.wsd7{word-spacing:5.738458pt;}
.ws3b{word-spacing:5.844725pt;}
.wsfe{word-spacing:6.004127pt;}
.ws1a2{word-spacing:6.110395pt;}
.ws1e7{word-spacing:6.121062pt;}
.ws1e0{word-spacing:6.168883pt;}
.ws19e{word-spacing:6.216662pt;}
.ws1e1{word-spacing:6.264525pt;}
.ws1a6{word-spacing:6.269796pt;}
.wsfd{word-spacing:6.429198pt;}
.ws1e5{word-spacing:6.503629pt;}
.wse2{word-spacing:6.641733pt;}
.ws55{word-spacing:6.694867pt;}
.wscb{word-spacing:7.013670pt;}
.wsf6{word-spacing:7.173072pt;}
.wsf3{word-spacing:7.226206pt;}
.ws167{word-spacing:7.545009pt;}
.ws201{word-spacing:7.555686pt;}
.ws9{word-spacing:8.740496pt;}
.ws6{word-spacing:9.255850pt;}
.ws1d2{word-spacing:10.329293pt;}
.ws1c7{word-spacing:10.472755pt;}
.wsa{word-spacing:10.525789pt;}
.ws33{word-spacing:10.587492pt;}
.ws20f{word-spacing:11.142246pt;}
.ws209{word-spacing:11.572634pt;}
.ws1c5{word-spacing:11.620454pt;}
.ws1b6{word-spacing:11.763917pt;}
.ws1d9{word-spacing:11.811738pt;}
.ws1d6{word-spacing:11.859558pt;}
.ws1d8{word-spacing:11.895586pt;}
.ws1fb{word-spacing:11.897301pt;}
.ws1c4{word-spacing:11.897660pt;}
.ws1c8{word-spacing:11.898786pt;}
.ws1f3{word-spacing:11.899110pt;}
.ws1ef{word-spacing:11.899204pt;}
.ws1eb{word-spacing:11.899281pt;}
.ws213{word-spacing:11.899520pt;}
.ws1ad{word-spacing:11.899836pt;}
.ws1bb{word-spacing:11.899853pt;}
.ws1d3{word-spacing:11.901457pt;}
.ws1ca{word-spacing:11.901508pt;}
.ws1c1{word-spacing:11.901756pt;}
.ws1d5{word-spacing:11.902020pt;}
.ws1cd{word-spacing:11.902490pt;}
.ws1c6{word-spacing:11.903113pt;}
.ws1f9{word-spacing:11.903138pt;}
.ws1e3{word-spacing:11.903479pt;}
.ws1e6{word-spacing:11.904444pt;}
.ws20a{word-spacing:11.906688pt;}
.ws1b0{word-spacing:11.907379pt;}
.ws1ee{word-spacing:11.955200pt;}
.ws1b2{word-spacing:12.003021pt;}
.ws1c9{word-spacing:12.050842pt;}
.ws1b7{word-spacing:12.098662pt;}
.ws1c3{word-spacing:12.146483pt;}
.ws1bd{word-spacing:12.576870pt;}
.ws206{word-spacing:12.768154pt;}
.ws1ea{word-spacing:12.911616pt;}
.ws1de{word-spacing:13.091825pt;}
.ws5b{word-spacing:13.230333pt;}
.ws204{word-spacing:13.676749pt;}
.ws1ba{word-spacing:13.724570pt;}
.ws7{word-spacing:13.761632pt;}
.ws200{word-spacing:14.154957pt;}
.ws20c{word-spacing:14.441882pt;}
.ws1f8{word-spacing:14.776627pt;}
.ws1cc{word-spacing:15.159194pt;}
.wsf7{word-spacing:15.515089pt;}
.ws20e{word-spacing:15.924326pt;}
.ws208{word-spacing:16.163430pt;}
.wsec{word-spacing:16.466956pt;}
.wsed{word-spacing:16.483255pt;}
.ws203{word-spacing:17.215488pt;}
.ws8{word-spacing:19.857270pt;}
.wsc{word-spacing:20.196125pt;}
.ws2d{word-spacing:21.306681pt;}
.wsf5{word-spacing:25.132319pt;}
.ws17a{word-spacing:103.744572pt;}
.ws18a{word-spacing:128.174729pt;}
.ws17e{word-spacing:151.878861pt;}
.ws180{word-spacing:152.500531pt;}
.ws18c{word-spacing:172.599287pt;}
.ws187{word-spacing:198.695424pt;}
.ws17b{word-spacing:199.935053pt;}
.ws18d{word-spacing:213.663334pt;}
.ws181{word-spacing:264.879411pt;}
.ws182{word-spacing:271.000474pt;}
.ws17d{word-spacing:278.125773pt;}
.ws17f{word-spacing:280.038605pt;}
.ws183{word-spacing:280.468992pt;}
.ws184{word-spacing:280.660275pt;}
.ws178{word-spacing:282.190541pt;}
.ws177{word-spacing:300.123341pt;}
.ws174{word-spacing:315.569459pt;}
.ws176{word-spacing:317.597150pt;}
.ws175{word-spacing:329.963520pt;}
.ws171{word-spacing:338.188698pt;}
.ws172{word-spacing:350.143898pt;}
.ws173{word-spacing:362.099098pt;}
.ws170{word-spacing:475.304439pt;}
._15{margin-left:-7.114688pt;}
._5{margin-left:-5.828835pt;}
._7{margin-left:-4.718299pt;}
._12{margin-left:-3.825638pt;}
._8{margin-left:-2.821427pt;}
._3{margin-left:-1.153002pt;}
._0{width:1.115808pt;}
._1b{width:2.438173pt;}
._16{width:3.836274pt;}
._1{width:10.005078pt;}
._2{width:11.790371pt;}
._1a{width:12.720208pt;}
._9{width:13.798902pt;}
._a{width:14.861565pt;}
._d{width:16.508742pt;}
._b{width:17.874275pt;}
._17{width:19.064438pt;}
._c{width:20.350253pt;}
._19{width:21.551123pt;}
._4{width:22.502128pt;}
._7b{width:23.814758pt;}
._79{width:25.026051pt;}
._18{width:26.179053pt;}
._13{width:27.719935pt;}
._7a{width:28.618221pt;}
._6{width:29.648896pt;}
._1e{width:30.854833pt;}
._11{width:32.448849pt;}
._14{width:33.421202pt;}
._3b{width:34.558332pt;}
._e{width:35.743149pt;}
._1d{width:36.821770pt;}
._1f{width:39.637865pt;}
._23{width:78.904320pt;}
._22{width:80.769331pt;}
._68{width:97.028403pt;}
._69{width:110.274765pt;}
._4f{width:118.499942pt;}
._3f{width:132.027926pt;}
._56{width:140.637022pt;}
._54{width:144.370995pt;}
._53{width:149.774746pt;}
._76{width:150.667051pt;}
._50{width:153.648230pt;}
._58{width:157.043507pt;}
._4d{width:159.099802pt;}
._55{width:169.042398pt;}
._4a{width:170.337690pt;}
._51{width:171.230325pt;}
._5c{width:174.788156pt;}
._3d{width:176.117697pt;}
._4e{width:178.263509pt;}
._5d{width:180.111659pt;}
._4b{width:183.650065pt;}
._6c{width:185.098399pt;}
._5a{width:186.309837pt;}
._3e{width:188.796518pt;}
._4c{width:201.469030pt;}
._40{width:202.855834pt;}
._5e{width:210.459341pt;}
._25{width:212.037427pt;}
._6d{width:215.145779pt;}
._63{width:220.376772pt;}
._5b{width:222.348194pt;}
._59{width:223.562829pt;}
._30{width:232.350657pt;}
._43{width:233.843712pt;}
._70{width:242.291402pt;}
._45{width:245.798912pt;}
._32{width:247.520461pt;}
._49{width:248.854115pt;}
._71{width:251.797239pt;}
._33{width:253.025155pt;}
._5f{width:258.184499pt;}
._72{width:267.605197pt;}
._65{width:270.474445pt;}
._39{width:271.956890pt;}
._52{width:273.821901pt;}
._64{width:275.188318pt;}
._47{width:276.834611pt;}
._42{width:279.656038pt;}
._3a{width:281.903616pt;}
._48{width:282.955674pt;}
._61{width:287.450829pt;}
._41{width:290.080973pt;}
._44{width:291.993805pt;}
._6a{width:294.817937pt;}
._38{width:303.707068pt;}
._2a{width:312.461107pt;}
._60{width:313.609737pt;}
._37{width:315.378176pt;}
._66{width:324.464128pt;}
._2e{width:328.863642pt;}
._31{width:334.410854pt;}
._62{width:342.878396pt;}
._2b{width:350.096077pt;}
._2f{width:356.695347pt;}
._2c{width:362.481664pt;}
._2d{width:374.054298pt;}
._36{width:381.418701pt;}
._73{width:391.811635pt;}
._34{width:397.247386pt;}
._35{width:403.511910pt;}
._27{width:404.516147pt;}
._26{width:415.801856pt;}
._29{width:418.432000pt;}
._28{width:430.387200pt;}
._77{width:441.784260pt;}
._6e{width:493.483563pt;}
._74{width:502.229862pt;}
._57{width:508.118673pt;}
._6b{width:531.496439pt;}
._78{width:542.335693pt;}
._6f{width:570.039330pt;}
._24{width:628.891341pt;}
._75{width:648.832614pt;}
._67{width:672.025702pt;}
._20{width:732.088627pt;}
._f{width:805.382379pt;}
._21{width:881.576448pt;}
._46{width:996.537114pt;}
._3c{width:2256.374624pt;}
._10{width:2276.549263pt;}
._1c{width:2277.627957pt;}
.fs11{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fsb{font-size:38.729600pt;}
.fs12{font-size:40.381867pt;}
.fs9{font-size:42.507200pt;}
.fse{font-size:42.560000pt;}
.fsd{font-size:43.680000pt;}
.fsa{font-size:47.820800pt;}
.fs10{font-size:48.000000pt;}
.fsc{font-size:48.630400pt;}
.fs13{font-size:49.829333pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fsf{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:80.777458pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.y12b{bottom:-738.892933pt;}
.y154{bottom:-670.252933pt;}
.y153{bottom:-651.532933pt;}
.y151{bottom:-651.532077pt;}
.y14e{bottom:-642.572861pt;}
.y152{bottom:-633.532933pt;}
.y150{bottom:-633.532149pt;}
.y14d{bottom:-624.572933pt;}
.y14f{bottom:-615.612381pt;}
.y14c{bottom:-596.892933pt;}
.y14b{bottom:-570.252933pt;}
.y14a{bottom:-538.490789pt;}
.y149{bottom:-521.371285pt;}
.y148{bottom:-504.251781pt;}
.y147{bottom:-487.212437pt;}
.y146{bottom:-470.090496pt;}
.y145{bottom:-453.051152pt;}
.y144{bottom:-435.931648pt;}
.y143{bottom:-418.812144pt;}
.y142{bottom:-401.770133pt;}
.y141{bottom:-384.650629pt;}
.y140{bottom:-367.611285pt;}
.y13f{bottom:-350.491781pt;}
.y13e{bottom:-333.372277pt;}
.y13d{bottom:-316.330789pt;}
.y13c{bottom:-299.211285pt;}
.y13b{bottom:-282.171941pt;}
.y13a{bottom:-265.052437pt;}
.y139{bottom:-247.930133pt;}
.y138{bottom:-230.890789pt;}
.y137{bottom:-213.771285pt;}
.y136{bottom:-196.651781pt;}
.y135{bottom:-179.612437pt;}
.y134{bottom:-162.492933pt;}
.y133{bottom:-145.451941pt;}
.yb5{bottom:-133.961343pt;}
.y132{bottom:-128.332437pt;}
.y131{bottom:-111.212933pt;}
.y130{bottom:-94.173101pt;}
.yd4{bottom:-80.161691pt;}
.y12f{bottom:-77.053597pt;}
.yd3{bottom:-64.582943pt;}
.y12e{bottom:-56.012933pt;}
.yd2{bottom:-34.807743pt;}
.y12d{bottom:-23.292933pt;}
.yd1{bottom:-20.757343pt;}
.y12c{bottom:-3.292933pt;}
.yd0{bottom:-2.629138pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:8.207950pt;}
.y38{bottom:23.914454pt;}
.y66{bottom:28.346667pt;}
.y6{bottom:31.933340pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y65{bottom:92.108000pt;}
.yf5{bottom:92.758667pt;}
.y36{bottom:93.018667pt;}
.y272{bottom:100.729333pt;}
.y2ef{bottom:103.518667pt;}
.y215{bottom:103.642667pt;}
.y2b9{bottom:103.997333pt;}
.y11d{bottom:104.316000pt;}
.ye2{bottom:105.909333pt;}
.y64{bottom:108.844000pt;}
.y35{bottom:108.920000pt;}
.yf4{bottom:109.496000pt;}
.y246{bottom:115.173333pt;}
.y271{bottom:117.466667pt;}
.y2ee{bottom:118.861333pt;}
.y2b8{bottom:119.338667pt;}
.y214{bottom:120.380000pt;}
.y1d8{bottom:120.412000pt;}
.y11c{bottom:121.053333pt;}
.ye1{bottom:122.646667pt;}
.y22{bottom:123.790666pt;}
.y34{bottom:124.820000pt;}
.y63{bottom:125.581333pt;}
.yf3{bottom:126.233333pt;}
.y2ed{bottom:134.202667pt;}
.y270{bottom:134.204000pt;}
.y2b7{bottom:134.681333pt;}
.y245{bottom:134.694667pt;}
.y213{bottom:137.117333pt;}
.y1d7{bottom:137.149333pt;}
.y11b{bottom:137.790667pt;}
.ye0{bottom:139.384000pt;}
.y33{bottom:140.720000pt;}
.y62{bottom:142.318667pt;}
.yf2{bottom:142.970667pt;}
.y1a7{bottom:146.304000pt;}
.y2ec{bottom:149.545333pt;}
.y2b6{bottom:150.024000pt;}
.y244{bottom:150.768000pt;}
.y26f{bottom:150.940000pt;}
.y212{bottom:153.854667pt;}
.y1d6{bottom:153.886667pt;}
.y11a{bottom:154.528000pt;}
.ydf{bottom:156.121333pt;}
.y9a{bottom:156.520000pt;}
.y32{bottom:156.621333pt;}
.y61{bottom:159.056000pt;}
.yf1{bottom:159.708000pt;}
.y2f2{bottom:160.837333pt;}
.y2eb{bottom:164.888000pt;}
.y2b5{bottom:165.366667pt;}
.y243{bottom:166.841333pt;}
.y26e{bottom:167.677333pt;}
.y211{bottom:170.592000pt;}
.y1d5{bottom:170.624000pt;}
.y119{bottom:171.264000pt;}
.y31{bottom:172.521333pt;}
.yde{bottom:172.858667pt;}
.y99{bottom:173.257333pt;}
.y19{bottom:175.052000pt;}
.y60{bottom:175.793333pt;}
.y2f1{bottom:176.180000pt;}
.y1a6{bottom:176.192000pt;}
.yf0{bottom:176.445333pt;}
.y2ea{bottom:180.230667pt;}
.y2b4{bottom:180.709333pt;}
.y15b{bottom:181.141333pt;}
.y242{bottom:182.914667pt;}
.y26d{bottom:184.414667pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y210{bottom:187.329333pt;}
.y1d4{bottom:187.360000pt;}
.y118{bottom:188.001333pt;}
.y30{bottom:188.421333pt;}
.ydd{bottom:189.596000pt;}
.y98{bottom:189.994667pt;}
.y2f0{bottom:191.521333pt;}
.y5f{bottom:192.530667pt;}
.y1a5{bottom:192.929333pt;}
.yef{bottom:193.182667pt;}
.y2e9{bottom:195.573333pt;}
.y2b3{bottom:196.052000pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y15a{bottom:197.878667pt;}
.y241{bottom:198.988000pt;}
.y26c{bottom:201.152000pt;}
.y20f{bottom:204.066667pt;}
.y1d3{bottom:204.097333pt;}
.y2f{bottom:204.322667pt;}
.y117{bottom:204.738667pt;}
.ydc{bottom:206.333333pt;}
.y97{bottom:206.732000pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y5e{bottom:209.268000pt;}
.y1a4{bottom:209.666667pt;}
.yee{bottom:209.920000pt;}
.y2e8{bottom:210.916000pt;}
.y2b2{bottom:211.394667pt;}
.y159{bottom:214.614667pt;}
.y240{bottom:215.060000pt;}
.y26b{bottom:217.889333pt;}
.y20e{bottom:220.804000pt;}
.y1d2{bottom:220.834667pt;}
.y116{bottom:221.476000pt;}
.ydb{bottom:223.070667pt;}
.y96{bottom:223.469333pt;}
.y5d{bottom:226.005333pt;}
.y2e7{bottom:226.258667pt;}
.y1a3{bottom:226.404000pt;}
.yed{bottom:226.657333pt;}
.y2b1{bottom:226.737333pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y23f{bottom:231.133333pt;}
.y158{bottom:231.352000pt;}
.yd6{bottom:236.780000pt;}
.y1d1{bottom:237.572000pt;}
.y115{bottom:238.213333pt;}
.y26a{bottom:238.612000pt;}
.yda{bottom:239.808000pt;}
.y95{bottom:240.206667pt;}
.y20d{bottom:241.526667pt;}
.y2e6{bottom:241.601333pt;}
.y2b0{bottom:242.080000pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y5c{bottom:242.742667pt;}
.y1a2{bottom:243.141333pt;}
.yec{bottom:243.394667pt;}
.y23e{bottom:247.206667pt;}
.y157{bottom:248.089333pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.yd5{bottom:253.876000pt;}
.y114{bottom:254.950667pt;}
.yd9{bottom:256.545333pt;}
.y94{bottom:256.944000pt;}
.y2af{bottom:257.421333pt;}
.y1d0{bottom:258.294667pt;}
.y5b{bottom:259.480000pt;}
.y1a1{bottom:259.878667pt;}
.yeb{bottom:260.132000pt;}
.y23d{bottom:263.280000pt;}
.y2e{bottom:266.570667pt;}
.y156{bottom:268.812000pt;}
.y12a{bottom:271.027187pt;}
.y113{bottom:271.688000pt;}
.y2e5{bottom:272.285333pt;}
.y2ae{bottom:272.764000pt;}
.yd8{bottom:273.282667pt;}
.y93{bottom:273.681333pt;}
.yb2{bottom:273.812000pt;}
.y20c{bottom:274.410667pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y5a{bottom:276.217333pt;}
.y1cf{bottom:276.228000pt;}
.y1a0{bottom:276.616000pt;}
.yea{bottom:276.869333pt;}
.y23c{bottom:279.353333pt;}
.y129{bottom:279.587067pt;}
.y2d{bottom:282.470667pt;}
.y269{bottom:286.433333pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y2e4{bottom:287.628000pt;}
.y2ad{bottom:288.106667pt;}
.y112{bottom:288.425333pt;}
.y283{bottom:290.020000pt;}
.y92{bottom:290.417333pt;}
.y59{bottom:292.954667pt;}
.y19f{bottom:293.353333pt;}
.ye9{bottom:293.606667pt;}
.yd7{bottom:294.004000pt;}
.y20b{bottom:294.256000pt;}
.y23b{bottom:295.426667pt;}
.y155{bottom:295.858667pt;}
.y2c{bottom:298.370667pt;}
.y2e3{bottom:302.970667pt;}
.y268{bottom:303.170667pt;}
.y2ac{bottom:303.449333pt;}
.y111{bottom:305.162667pt;}
.y282{bottom:306.757333pt;}
.y91{bottom:307.154667pt;}
.y10{bottom:309.452000pt;}
.y58{bottom:309.692000pt;}
.y19e{bottom:310.090667pt;}
.y20a{bottom:310.329333pt;}
.ye8{bottom:310.344000pt;}
.y23a{bottom:311.498667pt;}
.y2b{bottom:314.270667pt;}
.y1ce{bottom:314.725333pt;}
.y128{bottom:315.796000pt;}
.y2e2{bottom:318.313333pt;}
.y2ab{bottom:318.792000pt;}
.y267{bottom:319.908000pt;}
.y110{bottom:321.900000pt;}
.y281{bottom:323.494667pt;}
.y90{bottom:323.892000pt;}
.y209{bottom:326.402667pt;}
.y57{bottom:326.429333pt;}
.y19d{bottom:326.828000pt;}
.ye7{bottom:327.081333pt;}
.y239{bottom:327.572000pt;}
.ycf{bottom:330.211909pt;}
.y1cd{bottom:332.260000pt;}
.y2e1{bottom:333.656000pt;}
.y2aa{bottom:334.134667pt;}
.y1ca{bottom:334.770667pt;}
.y266{bottom:336.645333pt;}
.y2a{bottom:338.141333pt;}
.y10f{bottom:338.637333pt;}
.y280{bottom:340.232000pt;}
.y8f{bottom:340.629333pt;}
.y208{bottom:342.476000pt;}
.y56{bottom:343.166667pt;}
.y19c{bottom:343.565333pt;}
.y238{bottom:343.645333pt;}
.yf{bottom:343.809333pt;}
.ye6{bottom:343.818667pt;}
.yce{bottom:345.790657pt;}
.y2e0{bottom:348.998667pt;}
.y1c9{bottom:349.382667pt;}
.y2a9{bottom:349.477333pt;}
.y1cc{bottom:349.793333pt;}
.y265{bottom:353.382667pt;}
.y29{bottom:354.042667pt;}
.y10e{bottom:355.374667pt;}
.y27f{bottom:356.968000pt;}
.y8e{bottom:357.366667pt;}
.y207{bottom:358.549333pt;}
.y55{bottom:359.904000pt;}
.y19b{bottom:360.302667pt;}
.ycd{bottom:361.297509pt;}
.ye{bottom:362.706666pt;}
.y2df{bottom:364.341333pt;}
.y2a8{bottom:364.820000pt;}
.y237{bottom:366.121333pt;}
.y1cb{bottom:367.328000pt;}
.y28{bottom:369.942667pt;}
.y264{bottom:370.118667pt;}
.y10d{bottom:372.112000pt;}
.y27e{bottom:373.705333pt;}
.y8d{bottom:374.104000pt;}
.y206{bottom:374.621333pt;}
.ye5{bottom:376.496000pt;}
.y54{bottom:376.641333pt;}
.ycc{bottom:376.876257pt;}
.y19a{bottom:377.040000pt;}
.y2de{bottom:379.684000pt;}
.y2a7{bottom:380.161333pt;}
.y27{bottom:385.842667pt;}
.y263{bottom:386.856000pt;}
.y10c{bottom:388.849333pt;}
.y27d{bottom:390.442667pt;}
.y8c{bottom:390.841333pt;}
.y1c8{bottom:391.264000pt;}
.ycb{bottom:392.383560pt;}
.y53{bottom:393.378667pt;}
.y199{bottom:393.777333pt;}
.y2dd{bottom:395.025333pt;}
.y2a6{bottom:395.504000pt;}
.y205{bottom:397.097333pt;}
.y236{bottom:397.906667pt;}
.y26{bottom:401.744000pt;}
.y262{bottom:403.593333pt;}
.y10b{bottom:405.586667pt;}
.y27c{bottom:407.180000pt;}
.y8b{bottom:407.578667pt;}
.yca{bottom:407.962309pt;}
.y1c7{bottom:408.798667pt;}
.ye4{bottom:409.173333pt;}
.y52{bottom:410.116000pt;}
.y2dc{bottom:410.368000pt;}
.y198{bottom:410.514667pt;}
.y2a5{bottom:410.846667pt;}
.y1c4{bottom:411.126667pt;}
.y25{bottom:417.644000pt;}
.y261{bottom:420.330667pt;}
.y10a{bottom:422.324000pt;}
.yc9{bottom:423.543154pt;}
.y27b{bottom:423.917333pt;}
.y8a{bottom:424.316000pt;}
.y2db{bottom:425.710667pt;}
.y1c3{bottom:425.738667pt;}
.y2a4{bottom:426.189333pt;}
.y1c6{bottom:426.332000pt;}
.y197{bottom:427.252000pt;}
.y204{bottom:428.882667pt;}
.y51{bottom:430.838667pt;}
.y235{bottom:430.888000pt;}
.y24{bottom:433.544000pt;}
.y260{bottom:437.068000pt;}
.yc8{bottom:439.048957pt;}
.y109{bottom:439.061333pt;}
.y27a{bottom:440.654667pt;}
.y89{bottom:441.053333pt;}
.y2a3{bottom:441.532000pt;}
.ye3{bottom:441.850667pt;}
.y1c5{bottom:443.866667pt;}
.y196{bottom:443.989333pt;}
.yd{bottom:446.990669pt;}
.y234{bottom:447.625333pt;}
.y23{bottom:449.445333pt;}
.y25f{bottom:453.805333pt;}
.yc7{bottom:454.627706pt;}
.y108{bottom:455.798667pt;}
.y2da{bottom:456.396000pt;}
.y2a2{bottom:456.874667pt;}
.y279{bottom:457.392000pt;}
.y88{bottom:457.790667pt;}
.y195{bottom:460.726667pt;}
.y203{bottom:461.864000pt;}
.yc{bottom:462.990669pt;}
.y233{bottom:464.362667pt;}
.y1c2{bottom:467.802667pt;}
.yc6{bottom:470.133509pt;}
.y25e{bottom:470.542667pt;}
.y2d9{bottom:471.738667pt;}
.y2a1{bottom:472.217333pt;}
.y107{bottom:472.536000pt;}
.y278{bottom:474.129333pt;}
.y87{bottom:474.528000pt;}
.y194{bottom:477.462667pt;}
.y202{bottom:478.601333pt;}
.yb{bottom:478.990666pt;}
.y1bf{bottom:479.081333pt;}
.y232{bottom:481.100000pt;}
.y1c1{bottom:485.337333pt;}
.yc5{bottom:485.712257pt;}
.y2d8{bottom:487.081333pt;}
.y25d{bottom:487.280000pt;}
.y2a0{bottom:487.560000pt;}
.y106{bottom:489.273333pt;}
.y277{bottom:490.866667pt;}
.y86{bottom:491.265333pt;}
.y1be{bottom:493.693333pt;}
.y193{bottom:494.200000pt;}
.ya{bottom:494.990666pt;}
.y50{bottom:497.638667pt;}
.y231{bottom:497.837333pt;}
.yc4{bottom:501.291457pt;}
.y2d7{bottom:502.424000pt;}
.y1c0{bottom:502.872000pt;}
.y29f{bottom:502.902667pt;}
.y25c{bottom:504.017333pt;}
.y105{bottom:506.010667pt;}
.y276{bottom:507.604000pt;}
.y85{bottom:508.002667pt;}
.y192{bottom:510.937333pt;}
.y201{bottom:514.212000pt;}
.y230{bottom:514.574667pt;}
.yc3{bottom:516.797857pt;}
.y2d6{bottom:517.766667pt;}
.y29e{bottom:518.244000pt;}
.y25b{bottom:520.754667pt;}
.y104{bottom:522.748000pt;}
.y275{bottom:524.341333pt;}
.y84{bottom:524.740000pt;}
.y1bd{bottom:526.808000pt;}
.y200{bottom:526.832000pt;}
.y191{bottom:527.674667pt;}
.y4f{bottom:530.873333pt;}
.y22f{bottom:531.312000pt;}
.yc2{bottom:532.378557pt;}
.y2d5{bottom:533.108000pt;}
.y29d{bottom:533.586667pt;}
.y25a{bottom:537.492000pt;}
.y1bc{bottom:538.709333pt;}
.y1ff{bottom:539.450667pt;}
.y103{bottom:539.485333pt;}
.y274{bottom:541.078667pt;}
.y83{bottom:541.477333pt;}
.yc1{bottom:547.884360pt;}
.y4e{bottom:548.169333pt;}
.y2d4{bottom:548.450667pt;}
.y29c{bottom:548.929333pt;}
.y22e{bottom:552.034667pt;}
.y1fe{bottom:552.070667pt;}
.y259{bottom:554.229333pt;}
.y102{bottom:556.222667pt;}
.y82{bottom:558.214667pt;}
.y273{bottom:561.801333pt;}
.yc0{bottom:563.463109pt;}
.y2d3{bottom:563.793333pt;}
.y29b{bottom:564.272000pt;}
.y4d{bottom:565.464000pt;}
.y18d{bottom:570.257333pt;}
.y127{bottom:570.966667pt;}
.y101{bottom:572.960000pt;}
.y9{bottom:573.786667pt;}
.y1fd{bottom:574.045333pt;}
.y1bb{bottom:574.680000pt;}
.y81{bottom:574.952000pt;}
.ybf{bottom:579.041857pt;}
.y2d2{bottom:579.136000pt;}
.y29a{bottom:579.614667pt;}
.y22d{bottom:581.922667pt;}
.y190{bottom:582.312000pt;}
.y4c{bottom:582.758667pt;}
.y18c{bottom:584.869333pt;}
.y126{bottom:587.704000pt;}
.y188{bottom:589.617333pt;}
.y100{bottom:589.697333pt;}
.y1fc{bottom:591.580000pt;}
.y80{bottom:591.689333pt;}
.y1ba{bottom:592.214667pt;}
.y1f8{bottom:592.533333pt;}
.y8{bottom:592.685334pt;}
.y2d1{bottom:594.478667pt;}
.ybe{bottom:594.548257pt;}
.y299{bottom:594.957333pt;}
.y18f{bottom:596.924000pt;}
.y22c{bottom:598.660000pt;}
.y18b{bottom:599.481333pt;}
.y1fa{bottom:599.906667pt;}
.y4b{bottom:600.054667pt;}
.y1b7{bottom:602.098667pt;}
.yb1{bottom:603.245333pt;}
.y187{bottom:604.229333pt;}
.y125{bottom:604.441333pt;}
.yff{bottom:606.434667pt;}
.y1f7{bottom:607.145333pt;}
.y7f{bottom:608.426667pt;}
.y1fb{bottom:609.114667pt;}
.y1b9{bottom:609.749333pt;}
.y2d0{bottom:609.821333pt;}
.ybd{bottom:610.127909pt;}
.y298{bottom:610.300000pt;}
.y18e{bottom:611.536000pt;}
.y18a{bottom:614.093333pt;}
.y22b{bottom:615.397333pt;}
.y4a{bottom:617.349333pt;}
.yb0{bottom:619.982667pt;}
.y124{bottom:621.178667pt;}
.yfe{bottom:623.170667pt;}
.y7e{bottom:625.164000pt;}
.y297{bottom:625.642667pt;}
.ybc{bottom:625.709293pt;}
.y1f9{bottom:626.648000pt;}
.y1b8{bottom:627.282667pt;}
.y189{bottom:628.704000pt;}
.y22a{bottom:632.133333pt;}
.y49{bottom:634.644000pt;}
.yaf{bottom:636.720000pt;}
.y123{bottom:637.916000pt;}
.yfd{bottom:639.908000pt;}
.y2cf{bottom:640.506667pt;}
.y296{bottom:640.984000pt;}
.ybb{bottom:641.215096pt;}
.y7d{bottom:641.901333pt;}
.y7{bottom:645.598667pt;}
.y229{bottom:648.870667pt;}
.y184{bottom:649.253333pt;}
.y1f6{bottom:650.584000pt;}
.y1b6{bottom:651.218667pt;}
.y48{bottom:651.940000pt;}
.yae{bottom:653.457333pt;}
.y122{bottom:654.653333pt;}
.y2ce{bottom:655.848000pt;}
.y295{bottom:656.326667pt;}
.yfc{bottom:656.645333pt;}
.yba{bottom:656.793844pt;}
.y7c{bottom:658.638667pt;}
.y186{bottom:661.308000pt;}
.y183{bottom:663.865333pt;}
.y228{bottom:665.608000pt;}
.y1f4{bottom:667.678667pt;}
.y1f5{bottom:668.118667pt;}
.y180{bottom:668.614667pt;}
.y1b5{bottom:668.753333pt;}
.y3{bottom:668.977329pt;}
.y1f2{bottom:669.053333pt;}
.y47{bottom:669.234667pt;}
.yad{bottom:670.194667pt;}
.y2cd{bottom:671.190667pt;}
.y121{bottom:671.390667pt;}
.y294{bottom:671.669333pt;}
.yfb{bottom:673.382667pt;}
.y7b{bottom:675.376000pt;}
.y185{bottom:675.920000pt;}
.yb9{bottom:675.939633pt;}
.y1b2{bottom:676.897333pt;}
.y182{bottom:678.477333pt;}
.y227{bottom:682.345333pt;}
.y1f3{bottom:685.653333pt;}
.y1b4{bottom:686.288000pt;}
.y46{bottom:686.530667pt;}
.y2cc{bottom:686.533333pt;}
.yac{bottom:686.932000pt;}
.y293{bottom:687.012000pt;}
.y258{bottom:688.128000pt;}
.yfa{bottom:690.120000pt;}
.y7a{bottom:692.113333pt;}
.y181{bottom:693.089333pt;}
.yb8{bottom:695.158367pt;}
.y226{bottom:699.082667pt;}
.y2cb{bottom:701.876000pt;}
.y292{bottom:702.354667pt;}
.yab{bottom:703.669333pt;}
.y1b3{bottom:703.821333pt;}
.y45{bottom:703.825333pt;}
.y257{bottom:704.865333pt;}
.y79{bottom:708.850667pt;}
.y1f1{bottom:709.589333pt;}
.y120{bottom:710.045333pt;}
.yf9{bottom:710.842667pt;}
.y17f{bottom:714.966667pt;}
.y225{bottom:715.820000pt;}
.y2ca{bottom:717.218667pt;}
.y17c{bottom:717.524000pt;}
.y291{bottom:717.697333pt;}
.y1ed{bottom:719.310667pt;}
.yaa{bottom:720.406667pt;}
.y44{bottom:721.120000pt;}
.y256{bottom:721.602667pt;}
.y179{bottom:722.272000pt;}
.yb7{bottom:725.297057pt;}
.y78{bottom:725.588000pt;}
.y1ef{bottom:726.682667pt;}
.y1f0{bottom:727.124000pt;}
.y1b1{bottom:727.757333pt;}
.y17e{bottom:729.578667pt;}
.y17b{bottom:732.136000pt;}
.y224{bottom:732.557333pt;}
.y2c9{bottom:732.561333pt;}
.y290{bottom:733.040000pt;}
.y1ec{bottom:733.922667pt;}
.y178{bottom:736.884000pt;}
.ya9{bottom:737.144000pt;}
.y255{bottom:738.340000pt;}
.y43{bottom:738.416000pt;}
.yb6{bottom:740.803457pt;}
.y77{bottom:742.324000pt;}
.y11f{bottom:743.918667pt;}
.y17d{bottom:744.190667pt;}
.y1ee{bottom:744.657333pt;}
.yf8{bottom:744.716000pt;}
.y1b0{bottom:745.292000pt;}
.y17a{bottom:746.748000pt;}
.y2c8{bottom:747.904000pt;}
.y28f{bottom:748.382667pt;}
.ya8{bottom:753.881333pt;}
.y254{bottom:755.077333pt;}
.y42{bottom:755.710667pt;}
.y76{bottom:759.061333pt;}
.y1af{bottom:762.826667pt;}
.y2c7{bottom:763.246667pt;}
.y28e{bottom:763.725333pt;}
.y1ac{bottom:763.942667pt;}
.y223{bottom:768.232000pt;}
.y1eb{bottom:768.593333pt;}
.ya7{bottom:770.618667pt;}
.y174{bottom:771.181333pt;}
.y253{bottom:771.814667pt;}
.y1e9{bottom:772.941333pt;}
.y41{bottom:773.005333pt;}
.y75{bottom:775.798667pt;}
.y177{bottom:775.930667pt;}
.y11e{bottom:776.596000pt;}
.yf7{bottom:777.393333pt;}
.y2c6{bottom:778.589333pt;}
.y1ae{bottom:780.360000pt;}
.y221{bottom:780.850667pt;}
.y2{bottom:781.661334pt;}
.y28d{bottom:783.052000pt;}
.y170{bottom:783.237333pt;}
.y222{bottom:784.709333pt;}
.yb4{bottom:785.065967pt;}
.y173{bottom:785.793333pt;}
.ya6{bottom:787.356000pt;}
.y1e8{bottom:787.553333pt;}
.y252{bottom:788.552000pt;}
.y176{bottom:790.542667pt;}
.y1ea{bottom:792.530667pt;}
.y74{bottom:792.536000pt;}
.yb3{bottom:792.855457pt;}
.y220{bottom:793.470667pt;}
.y2c5{bottom:793.930667pt;}
.y16f{bottom:797.848000pt;}
.y1ad{bottom:797.894667pt;}
.y172{bottom:800.405333pt;}
.ya5{bottom:804.093333pt;}
.y175{bottom:805.154667pt;}
.y40{bottom:805.262667pt;}
.y251{bottom:805.289333pt;}
.y73{bottom:809.273333pt;}
.yf6{bottom:810.070667pt;}
.y28c{bottom:812.940000pt;}
.y21f{bottom:813.316000pt;}
.y171{bottom:815.017333pt;}
.y1e7{bottom:816.466667pt;}
.y3f{bottom:819.609333pt;}
.ya4{bottom:820.830667pt;}
.y1ab{bottom:821.830667pt;}
.y250{bottom:822.025333pt;}
.y2c4{bottom:824.616000pt;}
.y72{bottom:826.010667pt;}
.y21e{bottom:829.389333pt;}
.y1aa{bottom:829.974667pt;}
.y1e3{bottom:831.600000pt;}
.y16b{bottom:835.566667pt;}
.y28b{bottom:836.532000pt;}
.ya3{bottom:837.568000pt;}
.y1e5{bottom:837.597333pt;}
.y24f{bottom:838.762667pt;}
.y2c3{bottom:839.958667pt;}
.y16e{bottom:840.316000pt;}
.y1e6{bottom:840.402667pt;}
.y71{bottom:842.748000pt;}
.y21d{bottom:845.461333pt;}
.y1e2{bottom:846.212000pt;}
.y167{bottom:847.621333pt;}
.y16a{bottom:850.178667pt;}
.ya2{bottom:854.305333pt;}
.y16d{bottom:854.928000pt;}
.y2c2{bottom:855.301333pt;}
.y24e{bottom:855.500000pt;}
.y1{bottom:859.312000pt;}
.y70{bottom:859.485333pt;}
.y28a{bottom:860.124000pt;}
.y3e{bottom:861.138667pt;}
.y21c{bottom:861.534667pt;}
.y166{bottom:862.233333pt;}
.y1a9{bottom:863.301333pt;}
.y1e4{bottom:864.338667pt;}
.y169{bottom:864.790667pt;}
.y16c{bottom:869.538667pt;}
.y2c1{bottom:870.644000pt;}
.ya1{bottom:871.042667pt;}
.y24d{bottom:872.237333pt;}
.y6f{bottom:876.222667pt;}
.y21b{bottom:877.608000pt;}
.y168{bottom:879.402667pt;}
.y289{bottom:883.714667pt;}
.y2c0{bottom:885.986667pt;}
.ya0{bottom:887.780000pt;}
.y1e1{bottom:888.274667pt;}
.y24c{bottom:888.974667pt;}
.y6e{bottom:892.960000pt;}
.y1a8{bottom:893.453333pt;}
.y21a{bottom:893.681333pt;}
.y3d{bottom:896.621333pt;}
.y1dd{bottom:899.370667pt;}
.y165{bottom:901.280000pt;}
.y2bf{bottom:901.329333pt;}
.y162{bottom:903.837333pt;}
.y9f{bottom:904.517333pt;}
.y1df{bottom:905.369333pt;}
.y24b{bottom:905.712000pt;}
.y1e0{bottom:905.809333pt;}
.y288{bottom:907.306667pt;}
.y15f{bottom:908.585333pt;}
.y6d{bottom:909.697333pt;}
.y219{bottom:909.754667pt;}
.y1dc{bottom:913.982667pt;}
.y164{bottom:915.892000pt;}
.y2be{bottom:916.670667pt;}
.y161{bottom:918.448000pt;}
.y9e{bottom:921.254667pt;}
.y3c{bottom:921.728000pt;}
.y24a{bottom:922.449333pt;}
.y15e{bottom:923.197333pt;}
.y1de{bottom:923.344000pt;}
.y218{bottom:925.828000pt;}
.y6c{bottom:926.434667pt;}
.y163{bottom:930.504000pt;}
.y287{bottom:930.898667pt;}
.y2bd{bottom:932.013333pt;}
.y160{bottom:933.060000pt;}
.y9d{bottom:937.992000pt;}
.y249{bottom:939.186667pt;}
.y6b{bottom:943.172000pt;}
.y286{bottom:946.520000pt;}
.y3b{bottom:946.833333pt;}
.y1da{bottom:947.280000pt;}
.y2bc{bottom:947.356000pt;}
.y217{bottom:948.302667pt;}
.y1d9{bottom:954.585333pt;}
.y9c{bottom:954.729333pt;}
.y216{bottom:955.608000pt;}
.y248{bottom:955.924000pt;}
.y15d{bottom:958.822667pt;}
.y6a{bottom:959.909333pt;}
.y1db{bottom:961.892000pt;}
.y285{bottom:962.141333pt;}
.y2bb{bottom:962.698667pt;}
.y3a{bottom:971.940000pt;}
.y247{bottom:972.661333pt;}
.y9b{bottom:975.450667pt;}
.y69{bottom:976.646667pt;}
.y284{bottom:977.762667pt;}
.y2ba{bottom:978.041333pt;}
.y68{bottom:993.384000pt;}
.y15c{bottom:994.700000pt;}
.y37{bottom:1010.594667pt;}
.y67{bottom:1046.810667pt;}
.h2a{height:19.893370pt;}
.h24{height:24.866650pt;}
.h14{height:28.026009pt;}
.h7{height:28.560000pt;}
.h2b{height:30.063343pt;}
.h1b{height:30.797812pt;}
.h20{height:34.574438pt;}
.h9{height:35.073565pt;}
.h17{height:35.190553pt;}
.h16{height:35.807931pt;}
.h13{height:36.176623pt;}
.he{height:38.415786pt;}
.h1c{height:38.670937pt;}
.hc{height:38.947124pt;}
.h1f{height:39.349375pt;}
.h1a{height:39.754531pt;}
.hf{height:40.084290pt;}
.h6{height:40.800000pt;}
.h18{height:40.800703pt;}
.h3{height:42.840000pt;}
.h1d{height:44.835938pt;}
.h10{height:45.095014pt;}
.ha{height:45.271688pt;}
.h15{height:45.424783pt;}
.h27{height:45.492676pt;}
.h2{height:48.960000pt;}
.h1e{height:49.917344pt;}
.h11{height:50.105236pt;}
.h23{height:52.433565pt;}
.hb{height:54.767117pt;}
.h28{height:57.370767pt;}
.h26{height:63.795772pt;}
.h25{height:63.801105pt;}
.hd{height:69.148877pt;}
.h5{height:69.360000pt;}
.h29{height:73.472306pt;}
.h21{height:82.657681pt;}
.h22{height:93.233681pt;}
.h4{height:105.826671pt;}
.h19{height:237.617333pt;}
.h12{height:310.743160pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:175.580236pt;}
.w5{width:462.536013pt;}
.w6{width:522.968000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.xd{left:-161.573533pt;}
.x15{left:-85.758667pt;}
.x1b{left:-66.559298pt;}
.x1a{left:-54.478667pt;}
.x19{left:-50.718667pt;}
.x20{left:-46.558667pt;}
.xe{left:-3.379133pt;}
.x0{left:0.000000pt;}
.xf{left:22.390766pt;}
.x1c{left:27.440194pt;}
.x5{left:47.621333pt;}
.x6{left:51.603593pt;}
.x77{left:56.201333pt;}
.x5c{left:57.174667pt;}
.x23{left:58.401333pt;}
.x2c{left:59.644000pt;}
.x31{left:60.948000pt;}
.x53{left:65.662667pt;}
.x71{left:67.116000pt;}
.x22{left:69.065333pt;}
.x21{left:72.645333pt;}
.x32{left:73.913333pt;}
.x7e{left:75.448000pt;}
.x28{left:76.381333pt;}
.x62{left:77.438667pt;}
.x78{left:81.485333pt;}
.x17{left:88.081333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x63{left:95.521333pt;}
.x74{left:98.222667pt;}
.x18{left:116.401239pt;}
.x75{left:118.750667pt;}
.x6f{left:128.170667pt;}
.x79{left:131.242667pt;}
.x72{left:135.486667pt;}
.x76{left:144.034667pt;}
.x24{left:149.210667pt;}
.x70{left:153.456000pt;}
.x54{left:155.356000pt;}
.x7a{left:156.528000pt;}
.x73{left:160.772000pt;}
.x5b{left:169.080000pt;}
.x5d{left:170.622667pt;}
.x59{left:172.404000pt;}
.x29{left:173.382667pt;}
.x4{left:180.874667pt;}
.x68{left:197.078667pt;}
.x6e{left:201.066667pt;}
.x8{left:220.912000pt;}
.x7{left:221.858667pt;}
.x4a{left:233.529333pt;}
.x4d{left:235.908000pt;}
.x4b{left:238.854667pt;}
.x47{left:247.804000pt;}
.x9{left:250.304000pt;}
.x61{left:252.658667pt;}
.x55{left:255.152000pt;}
.x56{left:257.470667pt;}
.x41{left:271.116000pt;}
.x3c{left:274.756000pt;}
.x12{left:279.793333pt;}
.x37{left:282.078667pt;}
.xb{left:283.914667pt;}
.x45{left:286.190667pt;}
.x39{left:290.668000pt;}
.xa{left:301.013333pt;}
.x7b{left:316.721333pt;}
.x51{left:319.025333pt;}
.x69{left:324.512000pt;}
.x6a{left:330.640000pt;}
.x52{left:332.748000pt;}
.x5e{left:335.062667pt;}
.x66{left:341.084000pt;}
.x5f{left:345.840000pt;}
.x57{left:351.965333pt;}
.x67{left:354.456000pt;}
.x36{left:356.566667pt;}
.x58{left:362.916000pt;}
.xc{left:372.036000pt;}
.x40{left:394.682667pt;}
.x43{left:398.609333pt;}
.x3{left:404.408000pt;}
.x6b{left:406.526667pt;}
.x4e{left:407.497333pt;}
.x50{left:410.056000pt;}
.x4c{left:411.834667pt;}
.x60{left:413.060000pt;}
.x4f{left:414.538667pt;}
.x49{left:415.580000pt;}
.x3b{left:417.618667pt;}
.x3e{left:418.736000pt;}
.x42{left:420.332000pt;}
.x44{left:421.993333pt;}
.x3d{left:424.152000pt;}
.x3f{left:428.682667pt;}
.x48{left:431.874667pt;}
.x38{left:437.642667pt;}
.x46{left:438.814667pt;}
.x3a{left:441.121333pt;}
.x10{left:465.235639pt;}
.x1e{left:484.401333pt;}
.x1f{left:487.041333pt;}
.x7c{left:489.632000pt;}
.x1d{left:494.323347pt;}
.x16{left:526.241200pt;}
.x5a{left:542.793333pt;}
.x35{left:568.725333pt;}
.x2b{left:570.077333pt;}
.x7d{left:579.893333pt;}
.x2d{left:587.704000pt;}
.x2a{left:589.718667pt;}
.x26{left:598.278667pt;}
.x27{left:599.773333pt;}
.x30{left:601.757333pt;}
.x34{left:603.096000pt;}
.x33{left:606.294667pt;}
.x25{left:607.525333pt;}
.x2e{left:611.154667pt;}
.x2f{left:613.258667pt;}
.x13{left:619.046667pt;}
.x6c{left:624.472000pt;}
.x6d{left:631.496000pt;}
.x11{left:699.980000pt;}
.x14{left:705.396000pt;}
.x64{left:716.625333pt;}
.x65{left:729.997333pt;}
}




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