
    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_ad8a37f94f273e2172fedeec.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_e4716189da95a9c2ce17de92.woff')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_a97ab42badb86f42a649d23a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.628000;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_b9077bb4f72f18ce221d16f3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_087d449d4472d317d9f92d12.woff')format("woff");}.ff5{font-family:ff5;line-height:0.704000;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_51b5a80aaf68b3e4a6396e99.woff')format("woff");}.ff6{font-family:ff6;line-height:0.859000;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_507e1531b514b5b12c579cf2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.921000;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_786660211d9870f2abf450a3.woff')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_7f1e9c06596902c4789ef2cd.woff')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_0b2cbaab874124ec19216569.woff')format("woff");}.ffa{font-family:ffa;line-height:0.919000;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_39c7eab19e24a12ec72319a5.woff')format("woff");}.ffb{font-family:ffb;line-height:1.001000;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_162b9e1f2c9942ba83b70f66.woff')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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_b4aabab24d27f2ce171b8672.woff')format("woff");}.ffd{font-family:ffd;line-height:1.001000;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_d18efdd4fee2043a76eca8d2.woff')format("woff");}.ffe{font-family:ffe;line-height:1.001000;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_127d525461bef61654453a69.woff')format("woff");}.fff{font-family:fff;line-height:0.431000;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_02926488f9cd42b712ed3a8b.woff')format("woff");}.ff10{font-family:ff10;line-height:1.000000;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_889c6492fcf22ff6e31c3f08.woff')format("woff");}.ff11{font-family:ff11;line-height:2.999000;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_66a365b6be084f8f072e8553.woff')format("woff");}.ff12{font-family:ff12;line-height:0.887000;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_fe4b431d3a5744cc78bb0b1c.woff')format("woff");}.ff13{font-family:ff13;line-height:0.919000;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_34ba18ee4edeaa58f5744a01.woff')format("woff");}.ff14{font-family:ff14;line-height:0.701190;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_1c32ca30e34ac2d46bc17b70.woff')format("woff");}.ff15{font-family:ff15;line-height:1.000000;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;}
.m1b{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m24{transform:matrix(0.150145,-0.199891,0.199891,0.150145,0,0);-ms-transform:matrix(0.150145,-0.199891,0.199891,0.150145,0,0);-webkit-transform:matrix(0.150145,-0.199891,0.199891,0.150145,0,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);}
.m22{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);}
.m1e{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);}
.m14{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);}
.m19{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);}
.mc{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);}
.m13{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);}
.m1f{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);}
.m29{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);}
.m23{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);}
.m12{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);}
.m20{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);}
.m4{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);}
.m18{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);}
.m17{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);}
.md{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);}
.ma{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);}
.m6{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);}
.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);}
.mf{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);}
.m9{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);}
.me{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);}
.m10{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);}
.m28{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);}
.m15{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);}
.m11{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);}
.m25{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);}
.m27{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);}
.m21{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);}
.mb{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);}
.m5{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);}
.m16{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);}
.m26{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);}
.m2{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);}
.m1d{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);}
.m1c{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);}
.m1a{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);}
.m8{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);}
.m1{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);}
.m7{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);}
.v13{vertical-align:-51.144000px;}
.v5{vertical-align:-14.946000px;}
.v2{vertical-align:-9.822000px;}
.vc{vertical-align:-8.238000px;}
.v8{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v16{vertical-align:9.792000px;}
.v19{vertical-align:13.980000px;}
.v14{vertical-align:18.132000px;}
.v3{vertical-align:22.572000px;}
.va{vertical-align:24.738000px;}
.v1{vertical-align:25.770000px;}
.v9{vertical-align:28.242000px;}
.vb{vertical-align:29.622000px;}
.v7{vertical-align:34.470000px;}
.v15{vertical-align:36.660000px;}
.v11{vertical-align:38.448000px;}
.v17{vertical-align:42.864000px;}
.v4{vertical-align:47.820000px;}
.v6{vertical-align:49.206000px;}
.v10{vertical-align:51.474000px;}
.v1a{vertical-align:89.238000px;}
.v18{vertical-align:97.728000px;}
.v12{vertical-align:105.204000px;}
.ve{vertical-align:114.624000px;}
.vd{vertical-align:133.554000px;}
.v1b{vertical-align:154.410000px;}
.vf{vertical-align:156.678000px;}
.ls4{letter-spacing:0.000000px;}
.ls63{letter-spacing:0.000503px;}
.ls76{letter-spacing:0.000760px;}
.lsac{letter-spacing:0.001028px;}
.ls7e{letter-spacing:0.001165px;}
.ls25{letter-spacing:0.001288px;}
.ls56{letter-spacing:0.001943px;}
.ls8f{letter-spacing:0.002473px;}
.ls22{letter-spacing:0.003471px;}
.ls5b{letter-spacing:0.003744px;}
.ls4a{letter-spacing:0.003888px;}
.ls83{letter-spacing:0.003894px;}
.ls88{letter-spacing:0.004980px;}
.ls34{letter-spacing:0.005587px;}
.lsa8{letter-spacing:0.007805px;}
.lsaf{letter-spacing:0.008379px;}
.ls18{letter-spacing:0.012977px;}
.ls4e{letter-spacing:0.013805px;}
.ls35{letter-spacing:0.019999px;}
.lsa6{letter-spacing:0.022562px;}
.ls1a{letter-spacing:0.029964px;}
.ls51{letter-spacing:0.032701px;}
.ls6a{letter-spacing:0.051186px;}
.ls46{letter-spacing:0.430387px;}
.ls29{letter-spacing:0.458182px;}
.lsa{letter-spacing:0.573850px;}
.ls78{letter-spacing:0.586737px;}
.ls74{letter-spacing:0.592737px;}
.ls20{letter-spacing:0.645581px;}
.ls4d{letter-spacing:1.936742px;}
.ls5c{letter-spacing:2.008474px;}
.ls90{letter-spacing:2.573587px;}
.ls43{letter-spacing:2.582323px;}
.ls4c{letter-spacing:2.984915px;}
.ls57{letter-spacing:2.986200px;}
.ls1b{letter-spacing:2.987971px;}
.ls71{letter-spacing:2.989256px;}
.lsa5{letter-spacing:2.989289px;}
.ls16{letter-spacing:2.990915px;}
.ls72{letter-spacing:2.991056px;}
.ls17{letter-spacing:2.992200px;}
.ls89{letter-spacing:3.289956px;}
.lsb4{letter-spacing:3.873485px;}
.lse{letter-spacing:4.160410px;}
.ls77{letter-spacing:4.173471px;}
.ls58{letter-spacing:4.232141px;}
.lsc{letter-spacing:4.703907px;}
.lsb1{letter-spacing:5.005059px;}
.lsaa{letter-spacing:5.164646px;}
.ls45{letter-spacing:5.523302px;}
.ls5{letter-spacing:5.595034px;}
.ls64{letter-spacing:5.662328px;}
.ls6d{letter-spacing:5.666765px;}
.ls7c{letter-spacing:5.743488px;}
.ls1f{letter-spacing:6.168883px;}
.lsbc{letter-spacing:6.240614px;}
.ls96{letter-spacing:7.164664px;}
.ls31{letter-spacing:7.171473px;}
.ls0{letter-spacing:7.175412px;}
.ls1c{letter-spacing:8.056807px;}
.lsbf{letter-spacing:9.540250px;}
.lsbb{letter-spacing:9.752840px;}
.ls91{letter-spacing:9.755443px;}
.ls70{letter-spacing:9.758840px;}
.lsb0{letter-spacing:11.120915px;}
.ls6e{letter-spacing:11.907379px;}
.ls65{letter-spacing:11.949657px;}
.ls23{letter-spacing:11.953473px;}
.lsb9{letter-spacing:11.955657px;}
.ls73{letter-spacing:11.979110px;}
.ls24{letter-spacing:14.947289px;}
.lsb3{letter-spacing:15.780864px;}
.ls2b{letter-spacing:15.924326px;}
.ls44{letter-spacing:15.996058px;}
.ls6c{letter-spacing:16.217644px;}
.ls6b{letter-spacing:16.223644px;}
.lsa3{letter-spacing:16.345473px;}
.ls2{letter-spacing:16.349412px;}
.ls19{letter-spacing:17.302571px;}
.ls28{letter-spacing:18.261833px;}
.lsbd{letter-spacing:19.008768px;}
.lsa7{letter-spacing:19.582618px;}
.ls2d{letter-spacing:19.869542px;}
.ls52{letter-spacing:19.940920px;}
.ls12{letter-spacing:19.941274px;}
.ls7d{letter-spacing:20.013005px;}
.ls98{letter-spacing:20.084736px;}
.ls33{letter-spacing:20.515123px;}
.lsb2{letter-spacing:20.755059px;}
.ls84{letter-spacing:20.945510px;}
.ls4b{letter-spacing:21.447629px;}
.lsa1{letter-spacing:21.519360px;}
.ls3{letter-spacing:21.796382px;}
.ls37{letter-spacing:21.806285px;}
.ls2a{letter-spacing:21.861836px;}
.ls50{letter-spacing:21.949747px;}
.ls49{letter-spacing:22.021478px;}
.ls1e{letter-spacing:22.093210px;}
.lsc5{letter-spacing:22.667059px;}
.lsa2{letter-spacing:22.810522px;}
.ls8a{letter-spacing:22.910915px;}
.ls36{letter-spacing:22.953984px;}
.ls5a{letter-spacing:23.025715px;}
.ls32{letter-spacing:23.097446px;}
.ls94{letter-spacing:23.142716px;}
.ls7a{letter-spacing:23.169178px;}
.ls3e{letter-spacing:23.240909px;}
.ls79{letter-spacing:23.287256px;}
.ls39{letter-spacing:23.312640px;}
.ls26{letter-spacing:23.384371px;}
.ls3d{letter-spacing:23.456102px;}
.ls3a{letter-spacing:23.527834px;}
.ls68{letter-spacing:23.577962px;}
.ls9a{letter-spacing:23.599565px;}
.ls3c{letter-spacing:23.671296px;}
.ls62{letter-spacing:23.713473px;}
.ls47{letter-spacing:23.743027px;}
.ls21{letter-spacing:23.814758px;}
.ls3f{letter-spacing:23.886490px;}
.ls8c{letter-spacing:23.912400px;}
.ls80{letter-spacing:24.029952px;}
.ls67{letter-spacing:24.245146px;}
.ls99{letter-spacing:24.623907px;}
.ls48{letter-spacing:24.629907px;}
.ls55{letter-spacing:24.695907px;}
.ls6f{letter-spacing:25.392845px;}
.ls75{letter-spacing:25.464576px;}
.ls38{letter-spacing:25.608038px;}
.ls53{letter-spacing:25.679770px;}
.lsc1{letter-spacing:25.966694px;}
.ls1{letter-spacing:26.116385px;}
.ls8d{letter-spacing:26.396915px;}
.ls60{letter-spacing:26.566677px;}
.ls6{letter-spacing:26.899200px;}
.lsc4{letter-spacing:26.970931px;}
.ls92{letter-spacing:27.126716px;}
.ls5f{letter-spacing:27.141894px;}
.ls30{letter-spacing:27.186125px;}
.ls5d{letter-spacing:27.257856px;}
.lsae{letter-spacing:27.360023px;}
.ls8{letter-spacing:27.544781px;}
.ls3b{letter-spacing:27.616512px;}
.ls54{letter-spacing:27.617907px;}
.ls81{letter-spacing:27.975168px;}
.lsa9{letter-spacing:28.046899px;}
.lsad{letter-spacing:28.341842px;}
.ls40{letter-spacing:28.620749px;}
.lsb7{letter-spacing:28.883464px;}
.ls9d{letter-spacing:28.979405px;}
.ls5e{letter-spacing:29.051136px;}
.lsc0{letter-spacing:29.266330px;}
.ls8e{letter-spacing:29.624986px;}
.lsb5{letter-spacing:29.696717px;}
.ls42{letter-spacing:30.127104px;}
.ls9b{letter-spacing:30.414029px;}
.lsbe{letter-spacing:30.629222px;}
.ls2f{letter-spacing:30.700954px;}
.ls9c{letter-spacing:30.987878px;}
.lsc2{letter-spacing:31.203072px;}
.ls87{letter-spacing:32.494234px;}
.ls86{letter-spacing:32.565965px;}
.lsc3{letter-spacing:32.637696px;}
.ls59{letter-spacing:33.283277px;}
.ls9f{letter-spacing:33.713664px;}
.ls7f{letter-spacing:34.215782px;}
.lsb6{letter-spacing:34.997518px;}
.ls85{letter-spacing:35.148288px;}
.ls7{letter-spacing:35.865600px;}
.ls1d{letter-spacing:38.734650px;}
.lsba{letter-spacing:38.744001px;}
.ls9e{letter-spacing:39.165235px;}
.ls69{letter-spacing:39.560989px;}
.lsa0{letter-spacing:40.312934px;}
.ls95{letter-spacing:40.667073px;}
.ls7b{letter-spacing:41.611488px;}
.ls41{letter-spacing:42.106214px;}
.ls93{letter-spacing:44.651518px;}
.lsb8{letter-spacing:52.742915px;}
.lsa4{letter-spacing:68.861952px;}
.ls66{letter-spacing:70.224845px;}
.ls2c{letter-spacing:82.203955px;}
.ls8b{letter-spacing:90.857644px;}
.ls61{letter-spacing:109.097236px;}
.ls27{letter-spacing:130.736665px;}
.ls10{letter-spacing:132.200602px;}
.lsd{letter-spacing:173.230848px;}
.lsab{letter-spacing:180.646404px;}
.lsb{letter-spacing:200.058317px;}
.ls11{letter-spacing:201.421210px;}
.ls13{letter-spacing:203.357952px;}
.lsf{letter-spacing:206.729318px;}
.ls14{letter-spacing:217.847654px;}
.ls82{letter-spacing:222.151526px;}
.ls15{letter-spacing:276.954163px;}
.ls4f{letter-spacing:575.355955px;}
.ls97{letter-spacing:664.087450px;}
.ls2e{letter-spacing:825.482650px;}
.ls9{letter-spacing:1186.025907px;}
.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;}
}
.ws12e{word-spacing:-200.157291px;}
.ws42{word-spacing:-96.836625px;}
.wse4{word-spacing:-71.731200px;}
.ws19{word-spacing:-67.248000px;}
.wscf{word-spacing:-65.605356px;}
.wsa3{word-spacing:-65.246700px;}
.wsa1{word-spacing:-59.752090px;}
.ws16{word-spacing:-58.101975px;}
.ws20{word-spacing:-57.786655px;}
.ws55{word-spacing:-47.324343px;}
.ws1d{word-spacing:-45.664082px;}
.ws1e{word-spacing:-43.296952px;}
.ws8{word-spacing:-42.637126px;}
.ws1f{word-spacing:-37.630188px;}
.ws90{word-spacing:-35.865600px;}
.ws25{word-spacing:-35.119596px;}
.ws1c{word-spacing:-35.047864px;}
.wsce{word-spacing:-33.756703px;}
.ws2a{word-spacing:-33.684972px;}
.ws6e{word-spacing:-33.211407px;}
.wsd7{word-spacing:-33.111122px;}
.ws131{word-spacing:-32.727300px;}
.wsbb{word-spacing:-26.043693px;}
.ws9{word-spacing:-26.037693px;}
.ws13a{word-spacing:-25.966694px;}
.wsfb{word-spacing:-25.794540px;}
.ws78{word-spacing:-25.722808px;}
.ws4e{word-spacing:-25.651077px;}
.ws100{word-spacing:-25.148959px;}
.ws111{word-spacing:-25.077228px;}
.ws106{word-spacing:-24.862034px;}
.ws98{word-spacing:-24.646840px;}
.ws110{word-spacing:-24.431647px;}
.ws121{word-spacing:-24.359916px;}
.ws7b{word-spacing:-23.929528px;}
.ws9a{word-spacing:-23.570872px;}
.wsf8{word-spacing:-22.279711px;}
.wse3{word-spacing:-22.057344px;}
.wsee{word-spacing:-20.629893px;}
.ws80{word-spacing:-20.558162px;}
.wsbd{word-spacing:-19.510886px;}
.ws22{word-spacing:-19.367325px;}
.ws123{word-spacing:-19.051807px;}
.ws102{word-spacing:-19.044634px;}
.ws4c{word-spacing:-18.908344px;}
.ws4b{word-spacing:-18.836613px;}
.wsa{word-spacing:-18.183288px;}
.ws12a{word-spacing:-17.825203px;}
.ws112{word-spacing:-17.760645px;}
.ws2e{word-spacing:-17.301477px;}
.ws14f{word-spacing:-17.287219px;}
.ws51{word-spacing:-16.971602px;}
.ws146{word-spacing:-16.899871px;}
.wsaa{word-spacing:-16.756408px;}
.ws58{word-spacing:-16.749235px;}
.ws7{word-spacing:-16.690923px;}
.wsb1{word-spacing:-16.684677px;}
.wsb4{word-spacing:-16.612946px;}
.wsc5{word-spacing:-16.541215px;}
.ws150{word-spacing:-16.397752px;}
.wsf0{word-spacing:-16.318848px;}
.ws46{word-spacing:-16.254290px;}
.ws39{word-spacing:-16.182559px;}
.ws45{word-spacing:-16.139475px;}
.ws138{word-spacing:-16.110828px;}
.ws33{word-spacing:-16.039096px;}
.ws64{word-spacing:-15.967365px;}
.ws74{word-spacing:-15.895634px;}
.wsf1{word-spacing:-15.816730px;}
.ws11c{word-spacing:-15.673267px;}
.ws12b{word-spacing:-15.465247px;}
.wsc{word-spacing:-15.447286px;}
.wsc4{word-spacing:-15.250053px;}
.wsb3{word-spacing:-15.207014px;}
.ws105{word-spacing:-15.178322px;}
.wsec{word-spacing:-15.106591px;}
.ws10c{word-spacing:-15.034860px;}
.wsb6{word-spacing:-14.963128px;}
.ws85{word-spacing:-14.891397px;}
.ws11b{word-spacing:-14.884224px;}
.ws72{word-spacing:-14.676204px;}
.ws73{word-spacing:-14.604472px;}
.ws59{word-spacing:-14.532741px;}
.ws69{word-spacing:-14.465467px;}
.ws137{word-spacing:-14.461010px;}
.wsba{word-spacing:-14.389279px;}
.wsfa{word-spacing:-14.245816px;}
.wsf9{word-spacing:-14.174085px;}
.ws1{word-spacing:-14.082230px;}
.ws77{word-spacing:-13.951718px;}
.ws40{word-spacing:-13.879987px;}
.wsf6{word-spacing:-13.808256px;}
.ws7e{word-spacing:-13.736525px;}
.wsbc{word-spacing:-13.671967px;}
.wsf5{word-spacing:-13.664794px;}
.ws11d{word-spacing:-13.600236px;}
.wsd8{word-spacing:-13.593062px;}
.ws10b{word-spacing:-13.521331px;}
.ws48{word-spacing:-13.456773px;}
.ws17{word-spacing:-13.449600px;}
.ws83{word-spacing:-13.377869px;}
.ws7d{word-spacing:-13.313311px;}
.wsd9{word-spacing:-13.306138px;}
.ws9b{word-spacing:-13.241580px;}
.wsc2{word-spacing:-13.162675px;}
.wsb7{word-spacing:-13.098117px;}
.ws7c{word-spacing:-13.090944px;}
.ws10d{word-spacing:-13.019213px;}
.ws8c{word-spacing:-12.954655px;}
.wsb2{word-spacing:-12.875750px;}
.ws31{word-spacing:-12.811192px;}
.ws32{word-spacing:-12.739461px;}
.ws9d{word-spacing:-12.667730px;}
.ws136{word-spacing:-12.524268px;}
.ws142{word-spacing:-12.452536px;}
.ws35{word-spacing:-12.309074px;}
.ws3f{word-spacing:-12.237343px;}
.ws34{word-spacing:-12.165612px;}
.ws38{word-spacing:-12.093880px;}
.ws44{word-spacing:-12.022149px;}
.ws53{word-spacing:-11.950418px;}
.ws3d{word-spacing:-11.878687px;}
.ws37{word-spacing:-11.806956px;}
.ws24{word-spacing:-11.735224px;}
.wsc0{word-spacing:-11.735016px;}
.ws29{word-spacing:-11.663493px;}
.ws3b{word-spacing:-11.591762px;}
.ws84{word-spacing:-11.520031px;}
.ws4d{word-spacing:-11.448300px;}
.ws9c{word-spacing:-11.405261px;}
.ws4f{word-spacing:-11.376568px;}
.ws107{word-spacing:-11.369395px;}
.ws143{word-spacing:-11.333530px;}
.ws3a{word-spacing:-11.304837px;}
.ws52{word-spacing:-11.233106px;}
.ws4{word-spacing:-11.192737px;}
.ws157{word-spacing:-11.190067px;}
.ws5a{word-spacing:-11.161375px;}
.ws11a{word-spacing:-11.154202px;}
.ws10{word-spacing:-11.127282px;}
.ws91{word-spacing:-11.089644px;}
.ws153{word-spacing:-11.017912px;}
.wsa6{word-spacing:-10.946181px;}
.ws2{word-spacing:-10.930918px;}
.ws14e{word-spacing:-10.903142px;}
.wsd6{word-spacing:-10.874450px;}
.wsd{word-spacing:-10.865464px;}
.wsf7{word-spacing:-10.759680px;}
.ws13{word-spacing:-10.734554px;}
.ws116{word-spacing:-10.730988px;}
.wse{word-spacing:-10.669100px;}
.ws3c{word-spacing:-10.587525px;}
.wsa5{word-spacing:-10.544486px;}
.ws14c{word-spacing:-10.472755px;}
.wsc6{word-spacing:-10.444063px;}
.ws15{word-spacing:-10.407281px;}
.wsa9{word-spacing:-10.401024px;}
.ws133{word-spacing:-10.380886px;}
.ws125{word-spacing:-10.365158px;}
.wsb8{word-spacing:-10.329293px;}
.ws92{word-spacing:-10.257562px;}
.ws97{word-spacing:-10.185830px;}
.ws65{word-spacing:-10.174301px;}
.wsc9{word-spacing:-10.149965px;}
.ws141{word-spacing:-10.114099px;}
.wsac{word-spacing:-10.085407px;}
.wsc7{word-spacing:-10.013676px;}
.ws86{word-spacing:-9.970637px;}
.ws108{word-spacing:-9.941944px;}
.wsa7{word-spacing:-9.898906px;}
.ws2c{word-spacing:-9.870213px;}
.ws41{word-spacing:-9.798482px;}
.wsfc{word-spacing:-9.791309px;}
.ws4a{word-spacing:-9.726751px;}
.wsdc{word-spacing:-9.719578px;}
.ws8b{word-spacing:-9.655020px;}
.ws8d{word-spacing:-9.611981px;}
.ws81{word-spacing:-9.583288px;}
.ws7f{word-spacing:-9.511557px;}
.wsc8{word-spacing:-9.468518px;}
.ws54{word-spacing:-9.439826px;}
.ws99{word-spacing:-9.253325px;}
.ws30{word-spacing:-9.224632px;}
.ws5d{word-spacing:-9.152901px;}
.ws152{word-spacing:-9.109862px;}
.ws66{word-spacing:-9.081170px;}
.wscd{word-spacing:-9.002266px;}
.wsc3{word-spacing:-8.865976px;}
.ws49{word-spacing:-8.794245px;}
.ws5e{word-spacing:-8.722514px;}
.ws12{word-spacing:-8.705462px;}
.ws2f{word-spacing:-8.650783px;}
.ws156{word-spacing:-8.579052px;}
.ws8f{word-spacing:-8.571878px;}
.ws147{word-spacing:-8.536013px;}
.wsfd{word-spacing:-8.507320px;}
.wsdd{word-spacing:-8.435589px;}
.wsdf{word-spacing:-8.428416px;}
.wse1{word-spacing:-8.356685px;}
.ws151{word-spacing:-8.220396px;}
.ws12d{word-spacing:-8.141491px;}
.ws6d{word-spacing:-7.933471px;}
.ws61{word-spacing:-7.861740px;}
.ws9e{word-spacing:-7.646546px;}
.ws5b{word-spacing:-7.574815px;}
.ws82{word-spacing:-7.503084px;}
.wse2{word-spacing:-7.287890px;}
.wsa2{word-spacing:-7.244851px;}
.ws5c{word-spacing:-7.216159px;}
.wsab{word-spacing:-7.072696px;}
.ws88{word-spacing:-7.000965px;}
.ws14d{word-spacing:-6.957926px;}
.ws47{word-spacing:-6.929234px;}
.ws8e{word-spacing:-6.886195px;}
.ws96{word-spacing:-6.814464px;}
.wsb{word-spacing:-6.794187px;}
.wsde{word-spacing:-6.742733px;}
.ws43{word-spacing:-6.714040px;}
.ws5{word-spacing:-6.676369px;}
.ws10a{word-spacing:-6.671002px;}
.ws56{word-spacing:-6.599270px;}
.wsae{word-spacing:-6.498847px;}
.ws89{word-spacing:-6.455808px;}
.ws103{word-spacing:-6.276480px;}
.wsb0{word-spacing:-6.249190px;}
.ws62{word-spacing:-6.211922px;}
.ws117{word-spacing:-6.140191px;}
.ws63{word-spacing:-6.068460px;}
.ws148{word-spacing:-5.996728px;}
.ws145{word-spacing:-5.924997px;}
.ws122{word-spacing:-5.853266px;}
.ws57{word-spacing:-5.638072px;}
.ws12f{word-spacing:-5.629096px;}
.ws149{word-spacing:-5.595034px;}
.wsd1{word-spacing:-5.559168px;}
.ws144{word-spacing:-5.523302px;}
.ws126{word-spacing:-5.494610px;}
.ws14{word-spacing:-5.432732px;}
.ws104{word-spacing:-5.422879px;}
.ws132{word-spacing:-5.367277px;}
.ws119{word-spacing:-5.064223px;}
.ws114{word-spacing:-5.057050px;}
.wsa0{word-spacing:-4.992492px;}
.ws127{word-spacing:-4.920760px;}
.wsad{word-spacing:-4.913587px;}
.wsd2{word-spacing:-4.849029px;}
.wsaf{word-spacing:-4.805990px;}
.ws8a{word-spacing:-4.734259px;}
.ws10e{word-spacing:-4.705567px;}
.wsf{word-spacing:-4.581822px;}
.wsd3{word-spacing:-4.540055px;}
.ws13f{word-spacing:-4.490373px;}
.ws6c{word-spacing:-4.418642px;}
.ws93{word-spacing:-4.275180px;}
.ws140{word-spacing:-4.232141px;}
.wsbf{word-spacing:-3.916524px;}
.ws94{word-spacing:-3.844792px;}
.ws50{word-spacing:-3.701330px;}
.ws14a{word-spacing:-3.658291px;}
.wsc1{word-spacing:-3.586560px;}
.ws95{word-spacing:-3.514829px;}
.wsa8{word-spacing:-3.486136px;}
.wsdb{word-spacing:-3.414405px;}
.ws70{word-spacing:-3.335501px;}
.ws124{word-spacing:-3.270943px;}
.ws5f{word-spacing:-3.199212px;}
.wsb5{word-spacing:-3.055749px;}
.ws71{word-spacing:-2.912287px;}
.wse9{word-spacing:-2.618189px;}
.ws11{word-spacing:-2.552729px;}
.ws79{word-spacing:-2.481900px;}
.wsb9{word-spacing:-2.410168px;}
.ws14b{word-spacing:-2.367130px;}
.ws60{word-spacing:-2.338437px;}
.wsea{word-spacing:-2.266706px;}
.ws3{word-spacing:-1.898183px;}
.wsca{word-spacing:-1.836319px;}
.ws7a{word-spacing:-1.764588px;}
.wscb{word-spacing:-1.721549px;}
.ws13c{word-spacing:-1.692856px;}
.ws13d{word-spacing:-1.649818px;}
.ws13e{word-spacing:-1.621125px;}
.ws36{word-spacing:-1.477663px;}
.ws118{word-spacing:-1.405932px;}
.ws13b{word-spacing:-1.047276px;}
.wsf2{word-spacing:-1.040102px;}
.wsf3{word-spacing:-0.975544px;}
.wsf4{word-spacing:-0.903813px;}
.ws155{word-spacing:-0.789043px;}
.ws154{word-spacing:-0.760351px;}
.ws26{word-spacing:-0.047821px;}
.ws18{word-spacing:0.000000px;}
.ws6f{word-spacing:0.143462px;}
.ws134{word-spacing:0.286925px;}
.wseb{word-spacing:0.427855px;}
.ws6b{word-spacing:0.430387px;}
.ws115{word-spacing:0.502118px;}
.wsa4{word-spacing:0.645581px;}
.ws87{word-spacing:0.681446px;}
.ws1b{word-spacing:0.746004px;}
.wsed{word-spacing:0.789043px;}
.wsd5{word-spacing:2.151936px;}
.wscc{word-spacing:3.514829px;}
.wse6{word-spacing:3.598295px;}
.ws129{word-spacing:3.698307px;}
.ws2d{word-spacing:3.873485px;}
.ws113{word-spacing:3.945216px;}
.ws139{word-spacing:4.088678px;}
.ws9f{word-spacing:4.626662px;}
.ws109{word-spacing:5.666765px;}
.wsfe{word-spacing:6.240614px;}
.wsef{word-spacing:6.384077px;}
.wsff{word-spacing:7.101389px;}
.wsda{word-spacing:7.782835px;}
.ws130{word-spacing:11.716373px;}
.ws12c{word-spacing:12.422433px;}
.ws11f{word-spacing:16.880672px;}
.wse5{word-spacing:22.860151px;}
.ws11e{word-spacing:22.864686px;}
.wse7{word-spacing:22.866151px;}
.ws120{word-spacing:22.869072px;}
.wse8{word-spacing:23.094151px;}
.ws21{word-spacing:24.639667px;}
.ws6a{word-spacing:25.290931px;}
.ws75{word-spacing:26.780669px;}
.ws76{word-spacing:26.884282px;}
.ws6{word-spacing:27.229114px;}
.ws101{word-spacing:29.876045px;}
.ws3e{word-spacing:30.091238px;}
.wsd4{word-spacing:30.698307px;}
.ws23{word-spacing:31.454131px;}
.wse0{word-spacing:34.359245px;}
.ws10f{word-spacing:35.817581px;}
.wsbe{word-spacing:36.539873px;}
.ws0{word-spacing:37.316475px;}
.ws128{word-spacing:58.101975px;}
.ws135{word-spacing:89.778931px;}
.ws68{word-spacing:111.222175px;}
.ws2b{word-spacing:179.297479px;}
.ws67{word-spacing:185.231518px;}
.ws27{word-spacing:239.078669px;}
.ws28{word-spacing:244.726282px;}
.wsd0{word-spacing:638.579835px;}
.ws1a{word-spacing:1176.284083px;}
._4d{margin-left:-180.646404px;}
._48{margin-left:-41.030246px;}
._1c{margin-left:-37.802342px;}
._1b{margin-left:-35.865600px;}
._1e{margin-left:-33.928858px;}
._42{margin-left:-30.127104px;}
._12{margin-left:-27.425502px;}
._46{margin-left:-19.721009px;}
._4c{margin-left:-17.556000px;}
._1d{margin-left:-12.481229px;}
._3d{margin-left:-9.953341px;}
._36{margin-left:-8.740130px;}
._3{margin-left:-7.058330px;}
._5{margin-left:-5.432732px;}
._1f{margin-left:-4.232141px;}
._0{margin-left:-3.223350px;}
._2{margin-left:-1.338742px;}
._c{width:1.172027px;}
._4{width:2.324084px;}
._37{width:3.485639px;}
._4f{width:4.853570px;}
._43{width:6.451254px;}
._4e{width:7.909307px;}
._38{width:9.755443px;}
._49{width:18.520990px;}
._34{width:20.221145px;}
._41{width:21.275461px;}
._a{width:22.823925px;}
._14{width:24.016549px;}
._24{width:25.071602px;}
._9{width:27.081106px;}
._40{width:28.518475px;}
._8{width:29.699290px;}
._39{width:30.916147px;}
._b{width:31.938189px;}
._6{width:33.054573px;}
._3c{width:34.622018px;}
._27{width:35.670039px;}
._f{width:36.764866px;}
._4a{width:37.874074px;}
._1a{width:38.912487px;}
._26{width:40.773221px;}
._2d{width:42.063047px;}
._3a{width:44.401613px;}
._16{width:46.415558px;}
._4b{width:47.820559px;}
._22{width:49.015661px;}
._1{width:50.209875px;}
._2a{width:51.393716px;}
._47{width:52.524180px;}
._2b{width:54.449471px;}
._7{width:56.124242px;}
._2c{width:57.267761px;}
._3b{width:59.512745px;}
._11{width:60.828058px;}
._17{width:62.190950px;}
._e{width:64.988467px;}
._3e{width:66.520306px;}
._19{width:68.324758px;}
._45{width:69.770129px;}
._13{width:71.802931px;}
._44{width:78.809936px;}
._25{width:80.338944px;}
._28{width:87.120168px;}
._20{width:96.908851px;}
._29{width:97.912012px;}
._35{width:116.203950px;}
._15{width:131.934450px;}
._23{width:133.081261px;}
._32{width:139.153222px;}
._3f{width:187.156404px;}
._21{width:605.563670px;}
._10{width:746.286851px;}
._18{width:924.399961px;}
._2f{width:1099.639296px;}
._31{width:1312.289064px;}
._33{width:1351.143242px;}
._2e{width:1550.756813px;}
._d{width:1978.743643px;}
._30{width:2235.933235px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs3{font-size:47.820600px;}
.fs6{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs8{font-size:71.729928px;}
.fs5{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs4{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y20{bottom:63.168000px;}
.ycb{bottom:63.169500px;}
.ye3{bottom:108.000000px;}
.y11d{bottom:110.530500px;}
.y61{bottom:113.154000px;}
.y1e0{bottom:114.102000px;}
.y139{bottom:115.039500px;}
.y269{bottom:115.147500px;}
.y100{bottom:116.554500px;}
.y42{bottom:116.830500px;}
.yaa{bottom:122.059500px;}
.y229{bottom:126.214500px;}
.y11c{bottom:129.265500px;}
.y22a{bottom:130.747500px;}
.y24b{bottom:132.060000px;}
.ye2{bottom:132.919500px;}
.y97{bottom:134.773500px;}
.y11a{bottom:135.448500px;}
.y60{bottom:138.073500px;}
.y1df{bottom:139.020000px;}
.y138{bottom:139.959000px;}
.y268{bottom:140.067000px;}
.yff{bottom:141.474000px;}
.y11b{bottom:142.888500px;}
.y152{bottom:142.891500px;}
.ya9{bottom:146.977500px;}
.y1fe{bottom:148.795500px;}
.y1f{bottom:150.708000px;}
.y227{bottom:151.134000px;}
.y228{bottom:155.667000px;}
.y24a{bottom:156.978000px;}
.ye1{bottom:157.837500px;}
.y41{bottom:159.309000px;}
.y96{bottom:159.693000px;}
.y5f{bottom:162.991500px;}
.y119{bottom:163.855500px;}
.y1de{bottom:163.939500px;}
.y137{bottom:164.877000px;}
.y267{bottom:164.986500px;}
.yfe{bottom:166.393500px;}
.y151{bottom:167.811000px;}
.yca{bottom:167.844000px;}
.y226{bottom:171.537000px;}
.ya8{bottom:171.897000px;}
.y189{bottom:172.888500px;}
.y1fd{bottom:173.715000px;}
.y173{bottom:175.563000px;}
.y225{bottom:176.053500px;}
.y249{bottom:181.897500px;}
.ye0{bottom:182.757000px;}
.y1c1{bottom:184.437000px;}
.y95{bottom:184.611000px;}
.y5e{bottom:187.911000px;}
.y118{bottom:188.287500px;}
.y1dd{bottom:188.857500px;}
.y136{bottom:189.796500px;}
.y266{bottom:189.904500px;}
.yfd{bottom:191.311500px;}
.y150{bottom:192.730500px;}
.yc9{bottom:192.763500px;}
.y1e{bottom:193.185000px;}
.y1a9{bottom:195.034500px;}
.ya7{bottom:196.816500px;}
.y1fc{bottom:198.633000px;}
.y172{bottom:200.482500px;}
.y40{bottom:201.786000px;}
.y248{bottom:206.815500px;}
.ydf{bottom:207.675000px;}
.y1c0{bottom:209.356500px;}
.y188{bottom:209.388000px;}
.y94{bottom:209.530500px;}
.y5d{bottom:212.829000px;}
.y1dc{bottom:213.777000px;}
.y79{bottom:213.789000px;}
.y135{bottom:214.716000px;}
.y265{bottom:214.824000px;}
.yfc{bottom:216.231000px;}
.yc8{bottom:217.681500px;}
.y1a8{bottom:219.952500px;}
.y1fb{bottom:223.552500px;}
.y117{bottom:225.994500px;}
.y224{bottom:226.065000px;}
.y3f{bottom:226.705500px;}
.y247{bottom:231.735000px;}
.y14f{bottom:232.593000px;}
.yde{bottom:232.594500px;}
.y1bf{bottom:234.274500px;}
.y1d{bottom:235.863000px;}
.y5c{bottom:237.748500px;}
.y1db{bottom:238.696500px;}
.y78{bottom:238.708500px;}
.ya6{bottom:239.493000px;}
.y134{bottom:239.634000px;}
.y264{bottom:239.743500px;}
.y171{bottom:239.919000px;}
.yfb{bottom:241.149000px;}
.yc7{bottom:242.601000px;}
.y1a7{bottom:244.872000px;}
.y116{bottom:250.912500px;}
.y3e{bottom:251.623500px;}
.y93{bottom:252.208500px;}
.y246{bottom:256.654500px;}
.y14e{bottom:257.512500px;}
.ydd{bottom:257.514000px;}
.y187{bottom:258.081000px;}
.y1be{bottom:259.194000px;}
.yfa{bottom:259.884000px;}
.y5b{bottom:262.668000px;}
.y1d9{bottom:263.614500px;}
.y77{bottom:263.628000px;}
.y263{bottom:264.661500px;}
.y170{bottom:264.838500px;}
.yf9{bottom:266.068500px;}
.yc6{bottom:267.520500px;}
.y1da{bottom:268.147500px;}
.y223{bottom:268.743000px;}
.y115{bottom:269.647500px;}
.y1a6{bottom:269.791500px;}
.y1fa{bottom:273.565500px;}
.y113{bottom:275.832000px;}
.y133{bottom:276.135000px;}
.y3d{bottom:276.543000px;}
.ya5{bottom:277.300500px;}
.y245{bottom:281.572500px;}
.y14d{bottom:282.430500px;}
.y114{bottom:282.892500px;}
.y5a{bottom:287.586000px;}
.y76{bottom:288.546000px;}
.y262{bottom:289.581000px;}
.yf8{bottom:290.988000px;}
.y1f9{bottom:292.300500px;}
.yc5{bottom:292.438500px;}
.ydc{bottom:294.013500px;}
.y1f7{bottom:298.483500px;}
.y1c{bottom:300.694500px;}
.y112{bottom:300.750000px;}
.y3c{bottom:301.462500px;}
.y16f{bottom:304.276500px;}
.y1f8{bottom:305.922000px;}
.y244{bottom:306.492000px;}
.y1bd{bottom:309.205500px;}
.y59{bottom:312.505500px;}
.y75{bottom:313.465500px;}
.y1d8{bottom:313.627500px;}
.y261{bottom:314.499000px;}
.yf7{bottom:315.906000px;}
.y92{bottom:317.040000px;}
.y1f6{bottom:317.218500px;}
.y1a5{bottom:319.803000px;}
.y186{bottom:322.912500px;}
.y1f5{bottom:323.403000px;}
.y1b{bottom:324.066000px;}
.y111{bottom:325.669500px;}
.y14c{bottom:326.776500px;}
.yc4{bottom:328.939500px;}
.y243{bottom:331.410000px;}
.y132{bottom:332.161500px;}
.y222{bottom:333.574500px;}
.y1bc{bottom:334.125000px;}
.y58{bottom:337.423500px;}
.y74{bottom:338.383500px;}
.y1d6{bottom:338.545500px;}
.y260{bottom:339.418500px;}
.yf6{bottom:340.825500px;}
.y91{bottom:341.958000px;}
.ya4{bottom:342.133500px;}
.y1d7{bottom:343.078500px;}
.ydb{bottom:343.395000px;}
.y3b{bottom:343.939500px;}
.y1a4{bottom:344.722500px;}
.y16e{bottom:346.920000px;}
.y1a{bottom:347.439000px;}
.y185{bottom:347.830500px;}
.y1f4{bottom:348.322500px;}
.y14b{bottom:351.696000px;}
.y242{bottom:356.329500px;}
.y131{bottom:357.081000px;}
.y221{bottom:358.494000px;}
.y1bb{bottom:359.044500px;}
.y110{bottom:362.170500px;}
.y57{bottom:362.343000px;}
.y1d5{bottom:363.465000px;}
.y25f{bottom:364.338000px;}
.yf5{bottom:365.745000px;}
.y90{bottom:366.877500px;}
.ya3{bottom:367.051500px;}
.yda{bottom:368.314500px;}
.y3a{bottom:368.859000px;}
.y1a3{bottom:369.640500px;}
.y19{bottom:370.810500px;}
.y16d{bottom:371.839500px;}
.y184{bottom:372.750000px;}
.y73{bottom:374.884500px;}
.y241{bottom:381.249000px;}
.y130{bottom:382.000500px;}
.y1ba{bottom:383.962500px;}
.yc3{bottom:384.966000px;}
.y56{bottom:387.262500px;}
.y1d4{bottom:388.384500px;}
.y220{bottom:388.576500px;}
.y21f{bottom:389.143500px;}
.y25e{bottom:389.256000px;}
.y8f{bottom:391.795500px;}
.ya2{bottom:391.971000px;}
.yd9{bottom:393.232500px;}
.y39{bottom:393.777000px;}
.y18{bottom:394.183500px;}
.y16c{bottom:396.757500px;}
.y1f3{bottom:398.334000px;}
.y21e{bottom:401.445000px;}
.y14a{bottom:401.707500px;}
.yf4{bottom:402.244500px;}
.y240{bottom:406.167000px;}
.y12f{bottom:406.918500px;}
.yc2{bottom:409.885500px;}
.y25d{bottom:414.175500px;}
.ya1{bottom:416.889000px;}
.y17{bottom:417.555000px;}
.y10f{bottom:418.197000px;}
.y38{bottom:418.696500px;}
.y1a2{bottom:419.653500px;}
.y183{bottom:422.763000px;}
.y1f2{bottom:423.253500px;}
.y149{bottom:426.627000px;}
.y1b9{bottom:426.640500px;}
.yd8{bottom:429.733500px;}
.y55{bottom:429.939000px;}
.y72{bottom:430.912500px;}
.y23f{bottom:431.086500px;}
.y12e{bottom:431.838000px;}
.y16b{bottom:433.258500px;}
.yc1{bottom:434.805000px;}
.y1d3{bottom:438.396000px;}
.y25c{bottom:439.093500px;}
.y16{bottom:440.928000px;}
.y8e{bottom:441.808500px;}
.y10e{bottom:443.116500px;}
.y37{bottom:443.616000px;}
.y1a0{bottom:444.573000px;}
.y182{bottom:447.681000px;}
.y1a1{bottom:449.106000px;}
.y148{bottom:451.546500px;}
.yf3{bottom:452.257500px;}
.y21d{bottom:454.758000px;}
.y71{bottom:455.830500px;}
.y23e{bottom:456.006000px;}
.y12d{bottom:456.757500px;}
.yc0{bottom:459.723000px;}
.y1d2{bottom:463.315500px;}
.y25b{bottom:464.013000px;}
.y15{bottom:464.299500px;}
.y8d{bottom:466.728000px;}
.y54{bottom:467.748000px;}
.y10d{bottom:468.034500px;}
.y19f{bottom:469.491000px;}
.y1f1{bottom:473.265000px;}
.y147{bottom:476.464500px;}
.yf2{bottom:477.175500px;}
.y21c{bottom:479.676000px;}
.y70{bottom:480.750000px;}
.y23d{bottom:480.924000px;}
.ybf{bottom:484.642500px;}
.yd7{bottom:485.130000px;}
.y36{bottom:486.093000px;}
.y14{bottom:487.672500px;}
.y1d1{bottom:488.233500px;}
.y25a{bottom:488.932500px;}
.y169{bottom:489.066000px;}
.y1b8{bottom:491.472000px;}
.y8c{bottom:491.646000px;}
.y10c{bottom:492.954000px;}
.y12c{bottom:493.257000px;}
.y16a{bottom:493.599000px;}
.y181{bottom:497.694000px;}
.yf1{bottom:502.095000px;}
.y21b{bottom:504.595500px;}
.y6f{bottom:505.668000px;}
.y23c{bottom:505.843500px;}
.y168{bottom:507.801000px;}
.ybe{bottom:509.560500px;}
.yd6{bottom:510.048000px;}
.y35{bottom:511.012500px;}
.y13{bottom:511.044000px;}
.y146{bottom:512.965500px;}
.y1cf{bottom:513.153000px;}
.y259{bottom:513.850500px;}
.y167{bottom:513.984000px;}
.y1f0{bottom:515.943000px;}
.y1b7{bottom:516.391500px;}
.y8b{bottom:516.565500px;}
.y1d0{bottom:517.686000px;}
.y10b{bottom:517.873500px;}
.y19e{bottom:519.504000px;}
.y180{bottom:522.612000px;}
.yf0{bottom:527.014500px;}
.ya0{bottom:528.147000px;}
.ybd{bottom:528.295500px;}
.y21a{bottom:529.513500px;}
.y23b{bottom:530.761500px;}
.y12{bottom:534.417000px;}
.ybb{bottom:534.480000px;}
.yd5{bottom:534.967500px;}
.ybc{bottom:535.102500px;}
.y1ce{bottom:535.381500px;}
.y34{bottom:535.930500px;}
.y1cd{bottom:538.072500px;}
.y258{bottom:538.770000px;}
.y1b6{bottom:541.309500px;}
.y8a{bottom:541.483500px;}
.y10a{bottom:542.791500px;}
.y19c{bottom:544.422000px;}
.y6e{bottom:548.346000px;}
.y19d{bottom:548.955000px;}
.y12b{bottom:549.285000px;}
.y166{bottom:550.485000px;}
.yef{bottom:551.932500px;}
.y219{bottom:554.433000px;}
.y53{bottom:554.980500px;}
.y23a{bottom:555.681000px;}
.y11{bottom:557.788500px;}
.yb9{bottom:559.399500px;}
.yd4{bottom:559.887000px;}
.y33{bottom:560.850000px;}
.y257{bottom:563.689500px;}
.yba{bottom:563.932500px;}
.y1b5{bottom:566.229000px;}
.y89{bottom:566.403000px;}
.y109{bottom:567.711000px;}
.y145{bottom:568.992000px;}
.y17f{bottom:572.625000px;}
.y12a{bottom:574.203000px;}
.y10{bottom:575.518500px;}
.y52{bottom:576.649500px;}
.yee{bottom:576.852000px;}
.y19b{bottom:578.632500px;}
.y218{bottom:579.352500px;}
.y239{bottom:580.600500px;}
.y1ef{bottom:580.774500px;}
.ye{bottom:581.161500px;}
.yf{bottom:581.728500px;}
.y9f{bottom:584.173500px;}
.yb8{bottom:584.317500px;}
.yd3{bottom:584.805000px;}
.y1cc{bottom:588.084000px;}
.y256{bottom:588.607500px;}
.y88{bottom:591.322500px;}
.y108{bottom:592.629000px;}
.y217{bottom:598.087500px;}
.yd{bottom:598.890000px;}
.y129{bottom:599.122500px;}
.yed{bottom:601.770000px;}
.y1b4{bottom:602.728500px;}
.y19a{bottom:603.064500px;}
.y32{bottom:603.328500px;}
.y215{bottom:604.270500px;}
.yb{bottom:604.533000px;}
.yc{bottom:605.101500px;}
.y238{bottom:605.518500px;}
.y1ee{bottom:605.694000px;}
.y165{bottom:606.292500px;}
.y9e{bottom:609.093000px;}
.yd2{bottom:609.724500px;}
.yb7{bottom:610.432500px;}
.y216{bottom:611.331000px;}
.y144{bottom:611.670000px;}
.y17e{bottom:612.487500px;}
.y1cb{bottom:613.003500px;}
.y6d{bottom:613.177500px;}
.y255{bottom:613.527000px;}
.y51{bottom:613.860000px;}
.y107{bottom:617.548500px;}
.y128{bottom:624.042000px;}
.yec{bottom:626.689500px;}
.y87{bottom:627.822000px;}
.ya{bottom:627.906000px;}
.y31{bottom:628.246500px;}
.y237{bottom:630.438000px;}
.y1ed{bottom:630.612000px;}
.y163{bottom:631.212000px;}
.y9d{bottom:634.012500px;}
.yd1{bottom:634.642500px;}
.yb6{bottom:634.864500px;}
.y50{bottom:635.527500px;}
.y164{bottom:635.745000px;}
.y1ca{bottom:637.921500px;}
.y6c{bottom:638.097000px;}
.y254{bottom:638.445000px;}
.y199{bottom:642.928500px;}
.y214{bottom:646.948500px;}
.y127{bottom:648.960000px;}
.y9{bottom:651.277500px;}
.yeb{bottom:651.609000px;}
.y17d{bottom:652.350000px;}
.y30{bottom:653.166000px;}
.y236{bottom:655.356000px;}
.y1ec{bottom:655.531500px;}
.y161{bottom:656.130000px;}
.y4f{bottom:657.196500px;}
.y1b3{bottom:658.756500px;}
.y9c{bottom:658.930500px;}
.yd0{bottom:659.562000px;}
.y162{bottom:660.663000px;}
.y1c9{bottom:662.841000px;}
.y6b{bottom:663.015000px;}
.y253{bottom:663.364500px;}
.y106{bottom:667.561500px;}
.yb5{bottom:672.571500px;}
.yea{bottom:676.527000px;}
.y15f{bottom:676.533000px;}
.y2f{bottom:678.084000px;}
.y4e{bottom:678.865500px;}
.y235{bottom:680.275500px;}
.y1eb{bottom:680.449500px;}
.y15e{bottom:681.049500px;}
.y1b2{bottom:683.676000px;}
.y86{bottom:683.850000px;}
.ycf{bottom:684.481500px;}
.y8{bottom:684.667500px;}
.y213{bottom:684.756000px;}
.y160{bottom:685.582500px;}
.y1c8{bottom:687.760500px;}
.y6a{bottom:687.934500px;}
.y252{bottom:688.284000px;}
.y143{bottom:689.287500px;}
.y17c{bottom:692.214000px;}
.y105{bottom:692.479500px;}
.y198{bottom:692.940000px;}
.y4d{bottom:700.534500px;}
.y142{bottom:701.421000px;}
.ye9{bottom:701.446500px;}
.y2e{bottom:703.003500px;}
.y126{bottom:703.281000px;}
.y234{bottom:705.195000px;}
.y1ea{bottom:705.369000px;}
.y15d{bottom:705.967500px;}
.y1b1{bottom:708.594000px;}
.y85{bottom:708.768000px;}
.yb4{bottom:709.072500px;}
.y251{bottom:713.202000px;}
.y197{bottom:713.425500px;}
.y104{bottom:717.399000px;}
.y196{bottom:717.859500px;}
.y141{bottom:720.156000px;}
.yce{bottom:720.981000px;}
.y4c{bottom:722.203500px;}
.y125{bottom:724.950000px;}
.y140{bottom:726.339000px;}
.ye8{bottom:726.364500px;}
.y2d{bottom:727.923000px;}
.y233{bottom:730.113000px;}
.y1e9{bottom:730.288500px;}
.y1b0{bottom:733.513500px;}
.y84{bottom:733.687500px;}
.y1c7{bottom:737.772000px;}
.y69{bottom:737.947500px;}
.y250{bottom:738.121500px;}
.y212{bottom:739.077000px;}
.y17b{bottom:742.225500px;}
.y103{bottom:742.317000px;}
.y195{bottom:742.779000px;}
.y4b{bottom:743.871000px;}
.y124{bottom:746.619000px;}
.y13f{bottom:751.258500px;}
.ye7{bottom:751.284000px;}
.y2c{bottom:752.841000px;}
.y7{bottom:753.805500px;}
.y232{bottom:755.032500px;}
.y1e8{bottom:755.206500px;}
.y15c{bottom:755.760000px;}
.y83{bottom:758.607000px;}
.y211{bottom:760.746000px;}
.y1c6{bottom:762.691500px;}
.y68{bottom:762.865500px;}
.yb3{bottom:762.990000px;}
.y24f{bottom:763.039500px;}
.y4a{bottom:765.540000px;}
.y1af{bottom:770.013000px;}
.y9b{bottom:770.188500px;}
.ye6{bottom:776.203500px;}
.ycd{bottom:776.377500px;}
.y2b{bottom:777.760500px;}
.y6{bottom:778.725000px;}
.y231{bottom:779.952000px;}
.y1e7{bottom:780.126000px;}
.y15a{bottom:780.679500px;}
.y17a{bottom:782.089500px;}
.yb2{bottom:783.313500px;}
.y82{bottom:783.525000px;}
.y102{bottom:784.995000px;}
.y15b{bottom:785.212500px;}
.y122{bottom:787.018500px;}
.y49{bottom:787.209000px;}
.y1c5{bottom:787.609500px;}
.y67{bottom:787.785000px;}
.y24e{bottom:787.959000px;}
.y194{bottom:792.790500px;}
.y13e{bottom:796.360500px;}
.y13d{bottom:796.927500px;}
.y207{bottom:796.956000px;}
.ye5{bottom:801.121500px;}
.ycc{bottom:801.297000px;}
.y2a{bottom:802.678500px;}
.y230{bottom:804.870000px;}
.y1e6{bottom:805.044000px;}
.y159{bottom:805.599000px;}
.y81{bottom:808.444500px;}
.y48{bottom:808.878000px;}
.y1c4{bottom:812.529000px;}
.y66{bottom:812.703000px;}
.y24d{bottom:812.878500px;}
.yaf{bottom:816.840000px;}
.y206{bottom:817.279500px;}
.y193{bottom:817.710000px;}
.y13c{bottom:821.361000px;}
.y5{bottom:821.883000px;}
.y179{bottom:821.952000px;}
.y101{bottom:822.802500px;}
.y123{bottom:823.192500px;}
.y1e5{bottom:823.779000px;}
.y1ae{bottom:826.041000px;}
.y9a{bottom:826.215000px;}
.y22f{bottom:829.789500px;}
.y1e4{bottom:829.963500px;}
.y47{bottom:830.547000px;}
.y210{bottom:837.603000px;}
.ye4{bottom:837.622500px;}
.y24c{bottom:837.796500px;}
.yab{bottom:842.293500px;}
.y80{bottom:844.945500px;}
.y158{bottom:845.035500px;}
.y29{bottom:845.157000px;}
.y203{bottom:850.807500px;}
.y1ad{bottom:850.960500px;}
.y99{bottom:851.134500px;}
.y46{bottom:852.813000px;}
.y4{bottom:852.816000px;}
.y1e3{bottom:854.883000px;}
.y20f{bottom:857.926500px;}
.y178{bottom:861.814500px;}
.y13b{bottom:862.542000px;}
.y65{bottom:862.716000px;}
.y192{bottom:863.289000px;}
.y191{bottom:867.721500px;}
.y156{bottom:869.955000px;}
.y28{bottom:870.076500px;}
.y22e{bottom:872.466000px;}
.y157{bottom:874.488000px;}
.y1ab{bottom:875.878500px;}
.y98{bottom:876.052500px;}
.y1ff{bottom:876.261000px;}
.y1ac{bottom:880.411500px;}
.y3{bottom:883.750500px;}
.yac{bottom:885.795000px;}
.y13a{bottom:887.460000px;}
.y64{bottom:887.635500px;}
.y200{bottom:888.058500px;}
.y20c{bottom:891.456000px;}
.y190{bottom:892.641000px;}
.y155{bottom:894.874500px;}
.y27{bottom:894.994500px;}
.y1e2{bottom:897.559500px;}
.y1aa{bottom:900.798000px;}
.y7f{bottom:900.972000px;}
.yb0{bottom:903.703500px;}
.y177{bottom:911.827500px;}
.y45{bottom:912.280500px;}
.y1c3{bottom:912.379500px;}
.y63{bottom:912.553500px;}
.y11f{bottom:913.660500px;}
.y208{bottom:916.908000px;}
.y204{bottom:918.550500px;}
.y26{bottom:919.914000px;}
.y7e{bottom:925.891500px;}
.y18f{bottom:932.503500px;}
.y11e{bottom:935.329500px;}
.y176{bottom:936.745500px;}
.y1c2{bottom:937.297500px;}
.y62{bottom:937.473000px;}
.y154{bottom:937.518000px;}
.y2{bottom:941.022000px;}
.yad{bottom:948.082500px;}
.y209{bottom:950.217000px;}
.y7d{bottom:950.809500px;}
.y18e{bottom:952.906500px;}
.y201{bottom:954.127500px;}
.y20d{bottom:955.120500px;}
.y18d{bottom:957.423000px;}
.y22d{bottom:962.217000px;}
.y25{bottom:962.391000px;}
.y153{bottom:962.437500px;}
.y175{bottom:962.860500px;}
.y174{bottom:963.427500px;}
.y121{bottom:973.806000px;}
.y7c{bottom:975.729000px;}
.y44{bottom:977.112000px;}
.y1{bottom:983.986500px;}
.y22c{bottom:987.136500px;}
.y24{bottom:987.310500px;}
.y18c{bottom:997.285500px;}
.y7b{bottom:1000.648500px;}
.y20a{bottom:1001.380500px;}
.yae{bottom:1010.368500px;}
.y22b{bottom:1012.054500px;}
.y23{bottom:1012.230000px;}
.y205{bottom:1016.421000px;}
.y43{bottom:1019.589000px;}
.y202{bottom:1020.195000px;}
.y18a{bottom:1022.205000px;}
.y7a{bottom:1025.566500px;}
.y18b{bottom:1026.738000px;}
.y22{bottom:1037.148000px;}
.y1e1{bottom:1041.681000px;}
.y20b{bottom:1053.291000px;}
.y120{bottom:1056.591000px;}
.y20e{bottom:1057.068000px;}
.yb1{bottom:1060.273500px;}
.y21{bottom:1062.067500px;}
.h17{height:2.654400px;}
.h8{height:33.665702px;}
.h22{height:35.865450px;}
.h3{height:40.712761px;}
.h5{height:45.687311px;}
.h6{height:46.145493px;}
.h4{height:49.090950px;}
.h12{height:53.797446px;}
.hb{height:53.798400px;}
.h7{height:59.435702px;}
.hc{height:61.893450px;}
.h1a{height:61.899450px;}
.hf{height:61.907702px;}
.h2{height:64.557900px;}
.h24{height:64.562400px;}
.he{height:68.135702px;}
.h20{height:69.867450px;}
.h18{height:70.731450px;}
.h21{height:71.528400px;}
.h9{height:71.662950px;}
.h19{height:71.930400px;}
.h1b{height:72.525450px;}
.ha{height:77.469300px;}
.h16{height:78.530400px;}
.h10{height:78.536400px;}
.h1{height:87.030450px;}
.h1c{height:96.662400px;}
.h1d{height:102.326400px;}
.h11{height:102.998400px;}
.hd{height:103.004400px;}
.h1f{height:105.272400px;}
.h25{height:148.289702px;}
.h13{height:150.489450px;}
.h1e{height:150.495450px;}
.h23{height:151.526400px;}
.h15{height:156.801024px;}
.h14{height:159.069024px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x47{left:105.945000px;}
.x30{left:108.000000px;}
.x1{left:111.888000px;}
.x4e{left:123.636000px;}
.x52{left:125.551500px;}
.x123{left:127.302000px;}
.xd4{left:129.460500px;}
.x32{left:134.338500px;}
.x122{left:143.788500px;}
.x4c{left:144.853500px;}
.x5{left:147.276000px;}
.xa{left:151.897500px;}
.x104{left:153.141000px;}
.x121{left:157.446000px;}
.x137{left:160.243500px;}
.x4b{left:161.340000px;}
.x120{left:167.986500px;}
.xd0{left:171.489000px;}
.x33{left:174.724500px;}
.x9{left:176.443500px;}
.x8e{left:177.747000px;}
.x105{left:179.793000px;}
.x8b{left:183.376500px;}
.x4a{left:185.538000px;}
.x39{left:187.243500px;}
.x8f{left:191.260500px;}
.xe6{left:193.309500px;}
.x106{left:196.096500px;}
.x90{left:198.034500px;}
.xe2{left:201.949500px;}
.x3a{left:203.178000px;}
.x91{left:204.375000px;}
.x55{left:208.330500px;}
.x5c{left:209.401500px;}
.x108{left:210.612000px;}
.x56{left:214.671000px;}
.x130{left:216.736500px;}
.x12c{left:218.319000px;}
.x3f{left:220.261500px;}
.x5d{left:222.132000px;}
.x136{left:224.662500px;}
.xd1{left:226.240500px;}
.xb6{left:227.677500px;}
.x12d{left:232.527000px;}
.x96{left:234.871500px;}
.xb7{left:236.523000px;}
.x57{left:243.873000px;}
.x34{left:245.769000px;}
.x11e{left:247.632000px;}
.x2{left:249.025500px;}
.x58{left:250.215000px;}
.x131{left:252.112500px;}
.x112{left:253.363500px;}
.xbd{left:255.294000px;}
.x6c{left:256.752000px;}
.x40{left:257.784000px;}
.x132{left:258.927000px;}
.x10d{left:262.018500px;}
.xa6{left:264.768000px;}
.xb8{left:266.248500px;}
.x41{left:267.709500px;}
.x6d{left:270.265500px;}
.x97{left:272.239500px;}
.xb5{left:274.011000px;}
.x6e{left:277.230000px;}
.xa7{left:278.281500px;}
.xaf{left:280.603500px;}
.x6f{left:283.570500px;}
.xa8{left:285.015000px;}
.x42{left:287.404500px;}
.xc0{left:290.296500px;}
.xa9{left:291.355500px;}
.x113{left:292.902000px;}
.x70{left:295.519500px;}
.x11c{left:297.894000px;}
.xf7{left:300.583500px;}
.x9a{left:301.941000px;}
.xaa{left:303.069000px;}
.x10f{left:305.248500px;}
.xb0{left:306.292500px;}
.x87{left:309.733500px;}
.x44{left:310.810500px;}
.xb1{left:313.053000px;}
.x71{left:314.161500px;}
.xbb{left:315.759000px;}
.x12e{left:318.858000px;}
.x84{left:320.115000px;}
.xab{left:321.708000px;}
.x88{left:323.245500px;}
.x129{left:327.687000px;}
.x89{left:329.937000px;}
.x18{left:331.765500px;}
.x85{left:333.628500px;}
.x53{left:336.537000px;}
.x86{left:340.422000px;}
.x45{left:341.452500px;}
.x10c{left:345.322500px;}
.x54{left:347.503500px;}
.xea{left:348.714000px;}
.x4{left:351.613500px;}
.xdb{left:355.126500px;}
.x12f{left:356.262000px;}
.x19{left:357.273000px;}
.xb2{left:358.972500px;}
.x46{left:360.268500px;}
.x1a{left:363.183000px;}
.x138{left:364.585500px;}
.x8a{left:366.589500px;}
.xeb{left:371.427000px;}
.x1b{left:373.965000px;}
.xec{left:375.721500px;}
.x1c{left:377.419500px;}
.xdf{left:379.488000px;}
.x6{left:380.541000px;}
.xce{left:383.389500px;}
.x3b{left:384.855000px;}
.x7b{left:386.307000px;}
.xed{left:391.768500px;}
.x1d{left:394.437000px;}
.x5e{left:396.264000px;}
.x133{left:397.542000px;}
.x7c{left:399.820500px;}
.xad{left:401.866500px;}
.x3c{left:403.687500px;}
.x4f{left:405.856500px;}
.xc3{left:407.037000px;}
.x1e{left:408.958500px;}
.x50{left:411.765000px;}
.x7d{left:412.852500px;}
.x72{left:414.037500px;}
.x3{left:415.251000px;}
.x5f{left:416.707500px;}
.x10e{left:418.734000px;}
.x4d{left:420.745500px;}
.x3d{left:422.052000px;}
.x8{left:423.253500px;}
.x7{left:425.733000px;}
.xfb{left:427.738500px;}
.xdd{left:429.798000px;}
.xba{left:431.596500px;}
.xdc{left:433.629000px;}
.x60{left:434.974500px;}
.x9b{left:436.488000px;}
.x1f{left:438.739500px;}
.x20{left:443.275500px;}
.x7e{left:444.807000px;}
.x114{left:446.268000px;}
.xb3{left:447.549000px;}
.xb9{left:450.220500px;}
.x21{left:451.735500px;}
.x115{left:453.234000px;}
.x31{left:454.609500px;}
.x22{left:457.972500px;}
.x116{left:459.574500px;}
.x73{left:461.260500px;}
.x23{left:463.881000px;}
.x2c{left:464.937000px;}
.xb4{left:468.468000px;}
.x124{left:471.129000px;}
.x24{left:472.845000px;}
.xf4{left:473.925000px;}
.x3e{left:476.827500px;}
.x74{left:479.176500px;}
.x61{left:482.458500px;}
.x2d{left:484.459500px;}
.xc1{left:485.923500px;}
.xff{left:487.174500px;}
.x134{left:488.286000px;}
.x92{left:492.447000px;}
.x25{left:497.787000px;}
.xf0{left:499.741500px;}
.xac{left:501.600000px;}
.x26{left:504.024000px;}
.xfc{left:506.064000px;}
.x75{left:508.239000px;}
.x27{left:509.932500px;}
.xe7{left:513.588000px;}
.x135{left:516.051000px;}
.x2e{left:518.322000px;}
.xc2{left:520.101000px;}
.x35{left:522.330000px;}
.x69{left:523.387500px;}
.x28{left:525.169500px;}
.xf1{left:527.073000px;}
.x93{left:529.284000px;}
.x9c{left:530.853000px;}
.x10b{left:532.117500px;}
.xee{left:534.034500px;}
.xa0{left:536.394000px;}
.x36{left:538.264500px;}
.xef{left:540.999000px;}
.x29{left:542.442000px;}
.x2f{left:544.566000px;}
.x62{left:548.233500px;}
.xcf{left:549.979500px;}
.x63{left:554.574000px;}
.xf8{left:557.323500px;}
.xf2{left:560.704500px;}
.xe1{left:562.585500px;}
.x117{left:563.976000px;}
.x64{left:565.497000px;}
.xfd{left:566.593500px;}
.xa1{left:569.518500px;}
.x118{left:570.940500px;}
.x9d{left:573.913500px;}
.x119{left:577.281000px;}
.x94{left:578.626500px;}
.xa2{left:580.428000px;}
.xd2{left:582.408000px;}
.x65{left:583.435500px;}
.xfe{left:585.523500px;}
.xb{left:587.299500px;}
.xf5{left:589.005000px;}
.x95{left:592.138500px;}
.x9e{left:594.187500px;}
.x11a{left:596.742000px;}
.xc{left:599.850000px;}
.xbc{left:601.977000px;}
.x2a{left:604.098000px;}
.xd{left:606.340500px;}
.x11f{left:607.995000px;}
.x66{left:610.066500px;}
.xe{left:612.250500px;}
.x11b{left:615.930000px;}
.x43{left:617.394000px;}
.x2b{left:619.002000px;}
.x8c{left:620.323500px;}
.x67{left:621.993000px;}
.xd5{left:623.002500px;}
.xf{left:625.284000px;}
.x7f{left:627.583500px;}
.x10{left:628.740000px;}
.x51{left:630.367500px;}
.xa3{left:631.804500px;}
.x80{left:634.405500px;}
.xe5{left:637.165500px;}
.xd6{left:639.067500px;}
.x68{left:640.645500px;}
.x125{left:642.009000px;}
.xc6{left:643.597500px;}
.x5a{left:646.794000px;}
.x11{left:648.264000px;}
.x81{left:650.388000px;}
.x59{left:652.771500px;}
.xd7{left:653.842500px;}
.xd9{left:654.874500px;}
.xc7{left:656.629500px;}
.x82{left:658.249500px;}
.x6a{left:660.031500px;}
.xd8{left:661.767000px;}
.x127{left:663.177000px;}
.x12{left:664.689000px;}
.xa4{left:665.947500px;}
.x9f{left:669.064500px;}
.x101{left:670.549500px;}
.x83{left:672.339000px;}
.x100{left:674.379000px;}
.xae{left:676.494000px;}
.x8d{left:678.243000px;}
.x13{left:679.507500px;}
.xcc{left:681.906000px;}
.xe0{left:683.140500px;}
.x14{left:685.999500px;}
.x5b{left:689.151000px;}
.x15{left:691.908000px;}
.x128{left:693.727500px;}
.xfa{left:696.364500px;}
.x111{left:699.729000px;}
.xc4{left:700.821000px;}
.xc8{left:702.339000px;}
.x16{left:704.943000px;}
.x48{left:706.152000px;}
.x110{left:707.854500px;}
.xd3{left:712.075500px;}
.x76{left:713.157000px;}
.xcd{left:715.414500px;}
.xc5{left:719.017500px;}
.xde{left:721.510500px;}
.xf9{left:723.030000px;}
.x17{left:724.213500px;}
.x37{left:725.946000px;}
.xe3{left:728.397000px;}
.x6b{left:729.714000px;}
.x98{left:733.240500px;}
.xc9{left:736.795500px;}
.x109{left:738.087000px;}
.x38{left:739.795500px;}
.x11d{left:741.304500px;}
.xbe{left:742.546500px;}
.x77{left:746.920500px;}
.xe8{left:751.294500px;}
.x12a{left:752.481000px;}
.xca{left:754.993500px;}
.x49{left:757.792500px;}
.x126{left:759.240000px;}
.x78{left:760.869000px;}
.xbf{left:762.657000px;}
.x102{left:764.619000px;}
.x12b{left:765.697500px;}
.xcb{left:768.025500px;}
.x99{left:771.159000px;}
.x10a{left:773.542500px;}
.x79{left:775.735500px;}
.xe4{left:779.731500px;}
.x107{left:782.235000px;}
.xf6{left:787.441500px;}
.xe9{left:789.787500px;}
.xa5{left:796.194000px;}
.x103{left:801.783000px;}
.x7a{left:805.117500px;}
.xf3{left:821.617500px;}
.xda{left:888.255000px;}
@media print{
.v13{vertical-align:-45.461333pt;}
.v5{vertical-align:-13.285333pt;}
.v2{vertical-align:-8.730667pt;}
.vc{vertical-align:-7.322667pt;}
.v8{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v16{vertical-align:8.704000pt;}
.v19{vertical-align:12.426667pt;}
.v14{vertical-align:16.117333pt;}
.v3{vertical-align:20.064000pt;}
.va{vertical-align:21.989333pt;}
.v1{vertical-align:22.906667pt;}
.v9{vertical-align:25.104000pt;}
.vb{vertical-align:26.330667pt;}
.v7{vertical-align:30.640000pt;}
.v15{vertical-align:32.586667pt;}
.v11{vertical-align:34.176000pt;}
.v17{vertical-align:38.101333pt;}
.v4{vertical-align:42.506667pt;}
.v6{vertical-align:43.738667pt;}
.v10{vertical-align:45.754667pt;}
.v1a{vertical-align:79.322667pt;}
.v18{vertical-align:86.869333pt;}
.v12{vertical-align:93.514667pt;}
.ve{vertical-align:101.888000pt;}
.vd{vertical-align:118.714667pt;}
.v1b{vertical-align:137.253333pt;}
.vf{vertical-align:139.269333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls63{letter-spacing:0.000447pt;}
.ls76{letter-spacing:0.000676pt;}
.lsac{letter-spacing:0.000914pt;}
.ls7e{letter-spacing:0.001036pt;}
.ls25{letter-spacing:0.001145pt;}
.ls56{letter-spacing:0.001727pt;}
.ls8f{letter-spacing:0.002198pt;}
.ls22{letter-spacing:0.003086pt;}
.ls5b{letter-spacing:0.003328pt;}
.ls4a{letter-spacing:0.003456pt;}
.ls83{letter-spacing:0.003461pt;}
.ls88{letter-spacing:0.004427pt;}
.ls34{letter-spacing:0.004966pt;}
.lsa8{letter-spacing:0.006938pt;}
.lsaf{letter-spacing:0.007448pt;}
.ls18{letter-spacing:0.011535pt;}
.ls4e{letter-spacing:0.012271pt;}
.ls35{letter-spacing:0.017777pt;}
.lsa6{letter-spacing:0.020055pt;}
.ls1a{letter-spacing:0.026634pt;}
.ls51{letter-spacing:0.029068pt;}
.ls6a{letter-spacing:0.045498pt;}
.ls46{letter-spacing:0.382566pt;}
.ls29{letter-spacing:0.407273pt;}
.lsa{letter-spacing:0.510089pt;}
.ls78{letter-spacing:0.521544pt;}
.ls74{letter-spacing:0.526877pt;}
.ls20{letter-spacing:0.573850pt;}
.ls4d{letter-spacing:1.721549pt;}
.ls5c{letter-spacing:1.785310pt;}
.ls90{letter-spacing:2.287633pt;}
.ls43{letter-spacing:2.295398pt;}
.ls4c{letter-spacing:2.653258pt;}
.ls57{letter-spacing:2.654400pt;}
.ls1b{letter-spacing:2.655975pt;}
.ls71{letter-spacing:2.657117pt;}
.lsa5{letter-spacing:2.657146pt;}
.ls16{letter-spacing:2.658591pt;}
.ls72{letter-spacing:2.658717pt;}
.ls17{letter-spacing:2.659733pt;}
.ls89{letter-spacing:2.924405pt;}
.lsb4{letter-spacing:3.443098pt;}
.lse{letter-spacing:3.698142pt;}
.ls77{letter-spacing:3.709752pt;}
.ls58{letter-spacing:3.761903pt;}
.lsc{letter-spacing:4.181251pt;}
.lsb1{letter-spacing:4.448942pt;}
.lsaa{letter-spacing:4.590797pt;}
.ls45{letter-spacing:4.909602pt;}
.ls5{letter-spacing:4.973363pt;}
.ls64{letter-spacing:5.033181pt;}
.ls6d{letter-spacing:5.037124pt;}
.ls7c{letter-spacing:5.105323pt;}
.ls1f{letter-spacing:5.483452pt;}
.lsbc{letter-spacing:5.547213pt;}
.ls96{letter-spacing:6.368591pt;}
.ls31{letter-spacing:6.374642pt;}
.ls0{letter-spacing:6.378144pt;}
.ls1c{letter-spacing:7.161606pt;}
.lsbf{letter-spacing:8.480222pt;}
.lsbb{letter-spacing:8.669191pt;}
.ls91{letter-spacing:8.671505pt;}
.ls70{letter-spacing:8.674524pt;}
.lsb0{letter-spacing:9.885258pt;}
.ls6e{letter-spacing:10.584337pt;}
.ls65{letter-spacing:10.621918pt;}
.ls23{letter-spacing:10.625309pt;}
.lsb9{letter-spacing:10.627251pt;}
.ls73{letter-spacing:10.648098pt;}
.ls24{letter-spacing:13.286479pt;}
.lsb3{letter-spacing:14.027435pt;}
.ls2b{letter-spacing:14.154957pt;}
.ls44{letter-spacing:14.218718pt;}
.ls6c{letter-spacing:14.415684pt;}
.ls6b{letter-spacing:14.421017pt;}
.lsa3{letter-spacing:14.529309pt;}
.ls2{letter-spacing:14.532811pt;}
.ls19{letter-spacing:15.380063pt;}
.ls28{letter-spacing:16.232741pt;}
.lsbd{letter-spacing:16.896683pt;}
.lsa7{letter-spacing:17.406771pt;}
.ls2d{letter-spacing:17.661815pt;}
.ls52{letter-spacing:17.725262pt;}
.ls12{letter-spacing:17.725577pt;}
.ls7d{letter-spacing:17.789338pt;}
.ls98{letter-spacing:17.853099pt;}
.ls33{letter-spacing:18.235665pt;}
.lsb2{letter-spacing:18.448942pt;}
.ls84{letter-spacing:18.618231pt;}
.ls4b{letter-spacing:19.064559pt;}
.lsa1{letter-spacing:19.128320pt;}
.ls3{letter-spacing:19.374562pt;}
.ls37{letter-spacing:19.383364pt;}
.ls2a{letter-spacing:19.432743pt;}
.ls50{letter-spacing:19.510886pt;}
.ls49{letter-spacing:19.574647pt;}
.ls1e{letter-spacing:19.638409pt;}
.lsc5{letter-spacing:20.148497pt;}
.lsa2{letter-spacing:20.276019pt;}
.ls8a{letter-spacing:20.365258pt;}
.ls36{letter-spacing:20.403541pt;}
.ls5a{letter-spacing:20.467302pt;}
.ls32{letter-spacing:20.531063pt;}
.ls94{letter-spacing:20.571303pt;}
.ls7a{letter-spacing:20.594825pt;}
.ls3e{letter-spacing:20.658586pt;}
.ls79{letter-spacing:20.699783pt;}
.ls39{letter-spacing:20.722347pt;}
.ls26{letter-spacing:20.786108pt;}
.ls3d{letter-spacing:20.849869pt;}
.ls3a{letter-spacing:20.913630pt;}
.ls68{letter-spacing:20.958188pt;}
.ls9a{letter-spacing:20.977391pt;}
.ls3c{letter-spacing:21.041152pt;}
.ls62{letter-spacing:21.078642pt;}
.ls47{letter-spacing:21.104913pt;}
.ls21{letter-spacing:21.168674pt;}
.ls3f{letter-spacing:21.232435pt;}
.ls8c{letter-spacing:21.255467pt;}
.ls80{letter-spacing:21.359957pt;}
.ls67{letter-spacing:21.551241pt;}
.ls99{letter-spacing:21.887918pt;}
.ls48{letter-spacing:21.893251pt;}
.ls55{letter-spacing:21.951918pt;}
.ls6f{letter-spacing:22.571418pt;}
.ls75{letter-spacing:22.635179pt;}
.ls38{letter-spacing:22.762701pt;}
.ls53{letter-spacing:22.826462pt;}
.lsc1{letter-spacing:23.081506pt;}
.ls1{letter-spacing:23.214565pt;}
.ls8d{letter-spacing:23.463925pt;}
.ls60{letter-spacing:23.614824pt;}
.ls6{letter-spacing:23.910400pt;}
.lsc4{letter-spacing:23.974161pt;}
.ls92{letter-spacing:24.112637pt;}
.ls5f{letter-spacing:24.126128pt;}
.ls30{letter-spacing:24.165444pt;}
.ls5d{letter-spacing:24.229205pt;}
.lsae{letter-spacing:24.320020pt;}
.ls8{letter-spacing:24.484250pt;}
.ls3b{letter-spacing:24.548011pt;}
.ls54{letter-spacing:24.549251pt;}
.ls81{letter-spacing:24.866816pt;}
.lsa9{letter-spacing:24.930577pt;}
.lsad{letter-spacing:25.192748pt;}
.ls40{letter-spacing:25.440666pt;}
.lsb7{letter-spacing:25.674191pt;}
.ls9d{letter-spacing:25.759471pt;}
.ls5e{letter-spacing:25.823232pt;}
.lsc0{letter-spacing:26.014515pt;}
.ls8e{letter-spacing:26.333321pt;}
.lsb5{letter-spacing:26.397082pt;}
.ls42{letter-spacing:26.779648pt;}
.ls9b{letter-spacing:27.034692pt;}
.lsbe{letter-spacing:27.225975pt;}
.ls2f{letter-spacing:27.289737pt;}
.ls9c{letter-spacing:27.544781pt;}
.lsc2{letter-spacing:27.736064pt;}
.ls87{letter-spacing:28.883763pt;}
.ls86{letter-spacing:28.947524pt;}
.lsc3{letter-spacing:29.011285pt;}
.ls59{letter-spacing:29.585135pt;}
.ls9f{letter-spacing:29.967701pt;}
.ls7f{letter-spacing:30.414029pt;}
.lsb6{letter-spacing:31.108905pt;}
.ls85{letter-spacing:31.242923pt;}
.ls7{letter-spacing:31.880533pt;}
.ls1d{letter-spacing:34.430800pt;}
.lsba{letter-spacing:34.439112pt;}
.ls9e{letter-spacing:34.813542pt;}
.ls69{letter-spacing:35.165324pt;}
.lsa0{letter-spacing:35.833719pt;}
.ls95{letter-spacing:36.148509pt;}
.ls7b{letter-spacing:36.987989pt;}
.ls41{letter-spacing:37.427746pt;}
.ls93{letter-spacing:39.690238pt;}
.lsb8{letter-spacing:46.882591pt;}
.lsa4{letter-spacing:61.210624pt;}
.ls66{letter-spacing:62.422084pt;}
.ls2c{letter-spacing:73.070182pt;}
.ls8b{letter-spacing:80.762350pt;}
.ls61{letter-spacing:96.975321pt;}
.ls27{letter-spacing:116.210369pt;}
.ls10{letter-spacing:117.511646pt;}
.lsd{letter-spacing:153.982976pt;}
.lsab{letter-spacing:160.574582pt;}
.lsb{letter-spacing:177.829615pt;}
.ls11{letter-spacing:179.041075pt;}
.ls13{letter-spacing:180.762624pt;}
.lsf{letter-spacing:183.759394pt;}
.ls14{letter-spacing:193.642359pt;}
.ls82{letter-spacing:197.468023pt;}
.ls15{letter-spacing:246.181478pt;}
.ls4f{letter-spacing:511.427516pt;}
.ls97{letter-spacing:590.299955pt;}
.ls2e{letter-spacing:733.762355pt;}
.ls9{letter-spacing:1054.245251pt;}
.ws12e{word-spacing:-177.917592pt;}
.ws42{word-spacing:-86.077000pt;}
.wse4{word-spacing:-63.761067pt;}
.ws19{word-spacing:-59.776000pt;}
.wscf{word-spacing:-58.315872pt;}
.wsa3{word-spacing:-57.997066pt;}
.wsa1{word-spacing:-53.112969pt;}
.ws16{word-spacing:-51.646200pt;}
.ws20{word-spacing:-51.365915pt;}
.ws55{word-spacing:-42.066082pt;}
.ws1d{word-spacing:-40.590295pt;}
.ws1e{word-spacing:-38.486180pt;}
.ws8{word-spacing:-37.899668pt;}
.ws1f{word-spacing:-33.449056pt;}
.ws90{word-spacing:-31.880533pt;}
.ws25{word-spacing:-31.217418pt;}
.ws1c{word-spacing:-31.153657pt;}
.wsce{word-spacing:-30.005958pt;}
.ws2a{word-spacing:-29.942197pt;}
.ws6e{word-spacing:-29.521250pt;}
.wsd7{word-spacing:-29.432108pt;}
.ws131{word-spacing:-29.090933pt;}
.wsbb{word-spacing:-23.149949pt;}
.ws9{word-spacing:-23.144616pt;}
.ws13a{word-spacing:-23.081506pt;}
.wsfb{word-spacing:-22.928480pt;}
.ws78{word-spacing:-22.864719pt;}
.ws4e{word-spacing:-22.800957pt;}
.ws100{word-spacing:-22.354630pt;}
.ws111{word-spacing:-22.290869pt;}
.ws106{word-spacing:-22.099586pt;}
.ws98{word-spacing:-21.908303pt;}
.ws110{word-spacing:-21.717019pt;}
.ws121{word-spacing:-21.653258pt;}
.ws7b{word-spacing:-21.270692pt;}
.ws9a{word-spacing:-20.951887pt;}
.wsf8{word-spacing:-19.804187pt;}
.wse3{word-spacing:-19.606528pt;}
.wsee{word-spacing:-18.337683pt;}
.ws80{word-spacing:-18.273922pt;}
.wsbd{word-spacing:-17.343010pt;}
.ws22{word-spacing:-17.215400pt;}
.ws123{word-spacing:-16.934939pt;}
.ws102{word-spacing:-16.928563pt;}
.ws4c{word-spacing:-16.807417pt;}
.ws4b{word-spacing:-16.743656pt;}
.wsa{word-spacing:-16.162923pt;}
.ws12a{word-spacing:-15.844625pt;}
.ws112{word-spacing:-15.787240pt;}
.ws2e{word-spacing:-15.379091pt;}
.ws14f{word-spacing:-15.366417pt;}
.ws51{word-spacing:-15.085868pt;}
.ws146{word-spacing:-15.022107pt;}
.wsaa{word-spacing:-14.894585pt;}
.ws58{word-spacing:-14.888209pt;}
.ws7{word-spacing:-14.836376pt;}
.wsb1{word-spacing:-14.830824pt;}
.wsb4{word-spacing:-14.767063pt;}
.wsc5{word-spacing:-14.703302pt;}
.ws150{word-spacing:-14.575780pt;}
.wsf0{word-spacing:-14.505643pt;}
.ws46{word-spacing:-14.448258pt;}
.ws39{word-spacing:-14.384497pt;}
.ws45{word-spacing:-14.346200pt;}
.ws138{word-spacing:-14.320736pt;}
.ws33{word-spacing:-14.256975pt;}
.ws64{word-spacing:-14.193213pt;}
.ws74{word-spacing:-14.129452pt;}
.wsf1{word-spacing:-14.059315pt;}
.ws11c{word-spacing:-13.931793pt;}
.ws12b{word-spacing:-13.746886pt;}
.wsc{word-spacing:-13.730921pt;}
.wsc4{word-spacing:-13.555603pt;}
.wsb3{word-spacing:-13.517346pt;}
.ws105{word-spacing:-13.491842pt;}
.wsec{word-spacing:-13.428081pt;}
.ws10c{word-spacing:-13.364320pt;}
.wsb6{word-spacing:-13.300559pt;}
.ws85{word-spacing:-13.236797pt;}
.ws11b{word-spacing:-13.230421pt;}
.ws72{word-spacing:-13.045514pt;}
.ws73{word-spacing:-12.981753pt;}
.ws59{word-spacing:-12.917992pt;}
.ws69{word-spacing:-12.858193pt;}
.ws137{word-spacing:-12.854231pt;}
.wsba{word-spacing:-12.790470pt;}
.wsfa{word-spacing:-12.662948pt;}
.wsf9{word-spacing:-12.599187pt;}
.ws1{word-spacing:-12.517538pt;}
.ws77{word-spacing:-12.401527pt;}
.ws40{word-spacing:-12.337766pt;}
.wsf6{word-spacing:-12.274005pt;}
.ws7e{word-spacing:-12.210244pt;}
.wsbc{word-spacing:-12.152859pt;}
.wsf5{word-spacing:-12.146483pt;}
.ws11d{word-spacing:-12.089098pt;}
.wsd8{word-spacing:-12.082722pt;}
.ws10b{word-spacing:-12.018961pt;}
.ws48{word-spacing:-11.961576pt;}
.ws17{word-spacing:-11.955200pt;}
.ws83{word-spacing:-11.891439pt;}
.ws7d{word-spacing:-11.834054pt;}
.wsd9{word-spacing:-11.827678pt;}
.ws9b{word-spacing:-11.770293pt;}
.wsc2{word-spacing:-11.700156pt;}
.wsb7{word-spacing:-11.642771pt;}
.ws7c{word-spacing:-11.636395pt;}
.ws10d{word-spacing:-11.572634pt;}
.ws8c{word-spacing:-11.515249pt;}
.wsb2{word-spacing:-11.445111pt;}
.ws31{word-spacing:-11.387727pt;}
.ws32{word-spacing:-11.323965pt;}
.ws9d{word-spacing:-11.260204pt;}
.ws136{word-spacing:-11.132682pt;}
.ws142{word-spacing:-11.068921pt;}
.ws35{word-spacing:-10.941399pt;}
.ws3f{word-spacing:-10.877638pt;}
.ws34{word-spacing:-10.813877pt;}
.ws38{word-spacing:-10.750116pt;}
.ws44{word-spacing:-10.686355pt;}
.ws53{word-spacing:-10.622594pt;}
.ws3d{word-spacing:-10.558833pt;}
.ws37{word-spacing:-10.495072pt;}
.ws24{word-spacing:-10.431311pt;}
.wsc0{word-spacing:-10.431125pt;}
.ws29{word-spacing:-10.367549pt;}
.ws3b{word-spacing:-10.303788pt;}
.ws84{word-spacing:-10.240027pt;}
.ws4d{word-spacing:-10.176266pt;}
.ws9c{word-spacing:-10.138010pt;}
.ws4f{word-spacing:-10.112505pt;}
.ws107{word-spacing:-10.106129pt;}
.ws143{word-spacing:-10.074249pt;}
.ws3a{word-spacing:-10.048744pt;}
.ws52{word-spacing:-9.984983pt;}
.ws4{word-spacing:-9.949099pt;}
.ws157{word-spacing:-9.946726pt;}
.ws5a{word-spacing:-9.921222pt;}
.ws11a{word-spacing:-9.914846pt;}
.ws10{word-spacing:-9.890917pt;}
.ws91{word-spacing:-9.857461pt;}
.ws153{word-spacing:-9.793700pt;}
.wsa6{word-spacing:-9.729939pt;}
.ws2{word-spacing:-9.716372pt;}
.ws14e{word-spacing:-9.691682pt;}
.wsd6{word-spacing:-9.666178pt;}
.wsd{word-spacing:-9.658190pt;}
.wsf7{word-spacing:-9.564160pt;}
.ws13{word-spacing:-9.541826pt;}
.ws116{word-spacing:-9.538656pt;}
.wse{word-spacing:-9.483644pt;}
.ws3c{word-spacing:-9.411133pt;}
.wsa5{word-spacing:-9.372877pt;}
.ws14c{word-spacing:-9.309116pt;}
.wsc6{word-spacing:-9.283611pt;}
.ws15{word-spacing:-9.250917pt;}
.wsa9{word-spacing:-9.245355pt;}
.ws133{word-spacing:-9.227454pt;}
.ws125{word-spacing:-9.213474pt;}
.wsb8{word-spacing:-9.181594pt;}
.ws92{word-spacing:-9.117833pt;}
.ws97{word-spacing:-9.054071pt;}
.ws65{word-spacing:-9.043823pt;}
.wsc9{word-spacing:-9.022191pt;}
.ws141{word-spacing:-8.990310pt;}
.wsac{word-spacing:-8.964806pt;}
.wsc7{word-spacing:-8.901045pt;}
.ws86{word-spacing:-8.862788pt;}
.ws108{word-spacing:-8.837284pt;}
.wsa7{word-spacing:-8.799027pt;}
.ws2c{word-spacing:-8.773523pt;}
.ws41{word-spacing:-8.709762pt;}
.wsfc{word-spacing:-8.703386pt;}
.ws4a{word-spacing:-8.646001pt;}
.wsdc{word-spacing:-8.639625pt;}
.ws8b{word-spacing:-8.582240pt;}
.ws8d{word-spacing:-8.543983pt;}
.ws81{word-spacing:-8.518479pt;}
.ws7f{word-spacing:-8.454717pt;}
.wsc8{word-spacing:-8.416461pt;}
.ws54{word-spacing:-8.390956pt;}
.ws99{word-spacing:-8.225178pt;}
.ws30{word-spacing:-8.199673pt;}
.ws5d{word-spacing:-8.135912pt;}
.ws152{word-spacing:-8.097655pt;}
.ws66{word-spacing:-8.072151pt;}
.wscd{word-spacing:-8.002014pt;}
.wsc3{word-spacing:-7.880868pt;}
.ws49{word-spacing:-7.817107pt;}
.ws5e{word-spacing:-7.753346pt;}
.ws12{word-spacing:-7.738188pt;}
.ws2f{word-spacing:-7.689585pt;}
.ws156{word-spacing:-7.625824pt;}
.ws8f{word-spacing:-7.619447pt;}
.ws147{word-spacing:-7.587567pt;}
.wsfd{word-spacing:-7.562063pt;}
.wsdd{word-spacing:-7.498301pt;}
.wsdf{word-spacing:-7.491925pt;}
.wse1{word-spacing:-7.428164pt;}
.ws151{word-spacing:-7.307018pt;}
.ws12d{word-spacing:-7.236881pt;}
.ws6d{word-spacing:-7.051974pt;}
.ws61{word-spacing:-6.988213pt;}
.ws9e{word-spacing:-6.796930pt;}
.ws5b{word-spacing:-6.733169pt;}
.ws82{word-spacing:-6.669408pt;}
.wse2{word-spacing:-6.478124pt;}
.wsa2{word-spacing:-6.439868pt;}
.ws5c{word-spacing:-6.414363pt;}
.wsab{word-spacing:-6.286841pt;}
.ws88{word-spacing:-6.223080pt;}
.ws14d{word-spacing:-6.184823pt;}
.ws47{word-spacing:-6.159319pt;}
.ws8e{word-spacing:-6.121062pt;}
.ws96{word-spacing:-6.057301pt;}
.wsb{word-spacing:-6.039278pt;}
.wsde{word-spacing:-5.993540pt;}
.ws43{word-spacing:-5.968036pt;}
.ws5{word-spacing:-5.934550pt;}
.ws10a{word-spacing:-5.929779pt;}
.ws56{word-spacing:-5.866018pt;}
.wsae{word-spacing:-5.776753pt;}
.ws89{word-spacing:-5.738496pt;}
.ws103{word-spacing:-5.579093pt;}
.wsb0{word-spacing:-5.554836pt;}
.ws62{word-spacing:-5.521708pt;}
.ws117{word-spacing:-5.457947pt;}
.ws63{word-spacing:-5.394186pt;}
.ws148{word-spacing:-5.330425pt;}
.ws145{word-spacing:-5.266664pt;}
.ws122{word-spacing:-5.202903pt;}
.ws57{word-spacing:-5.011620pt;}
.ws12f{word-spacing:-5.003641pt;}
.ws149{word-spacing:-4.973363pt;}
.wsd1{word-spacing:-4.941483pt;}
.ws144{word-spacing:-4.909602pt;}
.ws126{word-spacing:-4.884098pt;}
.ws14{word-spacing:-4.829095pt;}
.ws104{word-spacing:-4.820337pt;}
.ws132{word-spacing:-4.770913pt;}
.ws119{word-spacing:-4.501531pt;}
.ws114{word-spacing:-4.495155pt;}
.wsa0{word-spacing:-4.437770pt;}
.ws127{word-spacing:-4.374009pt;}
.wsad{word-spacing:-4.367633pt;}
.wsd2{word-spacing:-4.310248pt;}
.wsaf{word-spacing:-4.271991pt;}
.ws8a{word-spacing:-4.208230pt;}
.ws10e{word-spacing:-4.182726pt;}
.wsf{word-spacing:-4.072731pt;}
.wsd3{word-spacing:-4.035604pt;}
.ws13f{word-spacing:-3.991443pt;}
.ws6c{word-spacing:-3.927682pt;}
.ws93{word-spacing:-3.800160pt;}
.ws140{word-spacing:-3.761903pt;}
.wsbf{word-spacing:-3.481354pt;}
.ws94{word-spacing:-3.417593pt;}
.ws50{word-spacing:-3.290071pt;}
.ws14a{word-spacing:-3.251814pt;}
.wsc1{word-spacing:-3.188053pt;}
.ws95{word-spacing:-3.124292pt;}
.wsa8{word-spacing:-3.098788pt;}
.wsdb{word-spacing:-3.035027pt;}
.ws70{word-spacing:-2.964890pt;}
.ws124{word-spacing:-2.907505pt;}
.ws5f{word-spacing:-2.843744pt;}
.wsb5{word-spacing:-2.716221pt;}
.ws71{word-spacing:-2.588699pt;}
.wse9{word-spacing:-2.327279pt;}
.ws11{word-spacing:-2.269093pt;}
.ws79{word-spacing:-2.206133pt;}
.wsb9{word-spacing:-2.142372pt;}
.ws14b{word-spacing:-2.104115pt;}
.ws60{word-spacing:-2.078611pt;}
.wsea{word-spacing:-2.014850pt;}
.ws3{word-spacing:-1.687274pt;}
.wsca{word-spacing:-1.632283pt;}
.ws7a{word-spacing:-1.568522pt;}
.wscb{word-spacing:-1.530266pt;}
.ws13c{word-spacing:-1.504761pt;}
.ws13d{word-spacing:-1.466505pt;}
.ws13e{word-spacing:-1.441000pt;}
.ws36{word-spacing:-1.313478pt;}
.ws118{word-spacing:-1.249717pt;}
.ws13b{word-spacing:-0.930912pt;}
.wsf2{word-spacing:-0.924535pt;}
.wsf3{word-spacing:-0.867151pt;}
.wsf4{word-spacing:-0.803389pt;}
.ws155{word-spacing:-0.701372pt;}
.ws154{word-spacing:-0.675867pt;}
.ws26{word-spacing:-0.042507pt;}
.ws18{word-spacing:0.000000pt;}
.ws6f{word-spacing:0.127522pt;}
.ws134{word-spacing:0.255044pt;}
.wseb{word-spacing:0.380315pt;}
.ws6b{word-spacing:0.382566pt;}
.ws115{word-spacing:0.446327pt;}
.wsa4{word-spacing:0.573850pt;}
.ws87{word-spacing:0.605730pt;}
.ws1b{word-spacing:0.663115pt;}
.wsed{word-spacing:0.701372pt;}
.wsd5{word-spacing:1.912832pt;}
.wscc{word-spacing:3.124292pt;}
.wse6{word-spacing:3.198484pt;}
.ws129{word-spacing:3.287384pt;}
.ws2d{word-spacing:3.443098pt;}
.ws113{word-spacing:3.506859pt;}
.ws139{word-spacing:3.634381pt;}
.ws9f{word-spacing:4.112589pt;}
.ws109{word-spacing:5.037124pt;}
.wsfe{word-spacing:5.547213pt;}
.wsef{word-spacing:5.674735pt;}
.wsff{word-spacing:6.312346pt;}
.wsda{word-spacing:6.918076pt;}
.ws130{word-spacing:10.414554pt;}
.ws12c{word-spacing:11.042162pt;}
.ws11f{word-spacing:15.005042pt;}
.wse5{word-spacing:20.320134pt;}
.ws11e{word-spacing:20.324165pt;}
.wse7{word-spacing:20.325467pt;}
.ws120{word-spacing:20.328064pt;}
.wse8{word-spacing:20.528134pt;}
.ws21{word-spacing:21.901926pt;}
.ws6a{word-spacing:22.480828pt;}
.ws75{word-spacing:23.805039pt;}
.ws76{word-spacing:23.897139pt;}
.ws6{word-spacing:24.203657pt;}
.ws101{word-spacing:26.556484pt;}
.ws3e{word-spacing:26.747767pt;}
.wsd4{word-spacing:27.287384pt;}
.ws23{word-spacing:27.959228pt;}
.wse0{word-spacing:30.541551pt;}
.ws10f{word-spacing:31.837850pt;}
.wsbe{word-spacing:32.479887pt;}
.ws0{word-spacing:33.170200pt;}
.ws128{word-spacing:51.646200pt;}
.ws135{word-spacing:79.803494pt;}
.ws68{word-spacing:98.864155pt;}
.ws2b{word-spacing:159.375536pt;}
.ws67{word-spacing:164.650238pt;}
.ws27{word-spacing:212.514372pt;}
.ws28{word-spacing:217.534473pt;}
.wsd0{word-spacing:567.626520pt;}
.ws1a{word-spacing:1045.585852pt;}
._4d{margin-left:-160.574582pt;}
._48{margin-left:-36.471330pt;}
._1c{margin-left:-33.602082pt;}
._1b{margin-left:-31.880533pt;}
._1e{margin-left:-30.158985pt;}
._42{margin-left:-26.779648pt;}
._12{margin-left:-24.378224pt;}
._46{margin-left:-17.529786pt;}
._4c{margin-left:-15.605333pt;}
._1d{margin-left:-11.094426pt;}
._3d{margin-left:-8.847414pt;}
._36{margin-left:-7.769005pt;}
._3{margin-left:-6.274071pt;}
._5{margin-left:-4.829095pt;}
._1f{margin-left:-3.761903pt;}
._0{margin-left:-2.865200pt;}
._2{margin-left:-1.189993pt;}
._c{width:1.041802pt;}
._4{width:2.065853pt;}
._37{width:3.098346pt;}
._4f{width:4.314285pt;}
._43{width:5.734448pt;}
._4e{width:7.030495pt;}
._38{width:8.671505pt;}
._49{width:16.463102pt;}
._34{width:17.974351pt;}
._41{width:18.911521pt;}
._a{width:20.287933pt;}
._14{width:21.348043pt;}
._24{width:22.285868pt;}
._9{width:24.072094pt;}
._40{width:25.349756pt;}
._8{width:26.399369pt;}
._39{width:27.481020pt;}
._b{width:28.389501pt;}
._6{width:29.381843pt;}
._3c{width:30.775127pt;}
._27{width:31.706701pt;}
._f{width:32.679881pt;}
._4a{width:33.665843pt;}
._1a{width:34.588877pt;}
._26{width:36.242863pt;}
._2d{width:37.389375pt;}
._3a{width:39.468100pt;}
._16{width:41.258274pt;}
._4b{width:42.507164pt;}
._22{width:43.569477pt;}
._1{width:44.631000pt;}
._2a{width:45.683303pt;}
._47{width:46.688160pt;}
._2b{width:48.399530pt;}
._7{width:49.888215pt;}
._2c{width:50.904677pt;}
._3b{width:52.900218pt;}
._11{width:54.069385pt;}
._17{width:55.280845pt;}
._e{width:57.767526pt;}
._3e{width:59.129161pt;}
._19{width:60.733118pt;}
._45{width:62.017893pt;}
._13{width:63.824828pt;}
._44{width:70.053276pt;}
._25{width:71.412395pt;}
._28{width:77.440149pt;}
._20{width:86.141201pt;}
._29{width:87.032899pt;}
._35{width:103.292400pt;}
._15{width:117.275067pt;}
._23{width:118.294454pt;}
._32{width:123.691753pt;}
._3f{width:166.361248pt;}
._21{width:538.278818pt;}
._10{width:663.366090pt;}
._18{width:821.688854pt;}
._2f{width:977.457152pt;}
._31{width:1166.479168pt;}
._33{width:1201.016215pt;}
._2e{width:1378.450500pt;}
._d{width:1758.883238pt;}
._30{width:1987.496209pt;}
.fs7{font-size:31.880533pt;}
.fs3{font-size:42.507200pt;}
.fs6{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs8{font-size:63.759936pt;}
.fs5{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs4{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:56.149333pt;}
.ycb{bottom:56.150667pt;}
.ye3{bottom:96.000000pt;}
.y11d{bottom:98.249333pt;}
.y61{bottom:100.581333pt;}
.y1e0{bottom:101.424000pt;}
.y139{bottom:102.257333pt;}
.y269{bottom:102.353333pt;}
.y100{bottom:103.604000pt;}
.y42{bottom:103.849333pt;}
.yaa{bottom:108.497333pt;}
.y229{bottom:112.190667pt;}
.y11c{bottom:114.902667pt;}
.y22a{bottom:116.220000pt;}
.y24b{bottom:117.386667pt;}
.ye2{bottom:118.150667pt;}
.y97{bottom:119.798667pt;}
.y11a{bottom:120.398667pt;}
.y60{bottom:122.732000pt;}
.y1df{bottom:123.573333pt;}
.y138{bottom:124.408000pt;}
.y268{bottom:124.504000pt;}
.yff{bottom:125.754667pt;}
.y11b{bottom:127.012000pt;}
.y152{bottom:127.014667pt;}
.ya9{bottom:130.646667pt;}
.y1fe{bottom:132.262667pt;}
.y1f{bottom:133.962667pt;}
.y227{bottom:134.341333pt;}
.y228{bottom:138.370667pt;}
.y24a{bottom:139.536000pt;}
.ye1{bottom:140.300000pt;}
.y41{bottom:141.608000pt;}
.y96{bottom:141.949333pt;}
.y5f{bottom:144.881333pt;}
.y119{bottom:145.649333pt;}
.y1de{bottom:145.724000pt;}
.y137{bottom:146.557333pt;}
.y267{bottom:146.654667pt;}
.yfe{bottom:147.905333pt;}
.y151{bottom:149.165333pt;}
.yca{bottom:149.194667pt;}
.y226{bottom:152.477333pt;}
.ya8{bottom:152.797333pt;}
.y189{bottom:153.678667pt;}
.y1fd{bottom:154.413333pt;}
.y173{bottom:156.056000pt;}
.y225{bottom:156.492000pt;}
.y249{bottom:161.686667pt;}
.ye0{bottom:162.450667pt;}
.y1c1{bottom:163.944000pt;}
.y95{bottom:164.098667pt;}
.y5e{bottom:167.032000pt;}
.y118{bottom:167.366667pt;}
.y1dd{bottom:167.873333pt;}
.y136{bottom:168.708000pt;}
.y266{bottom:168.804000pt;}
.yfd{bottom:170.054667pt;}
.y150{bottom:171.316000pt;}
.yc9{bottom:171.345333pt;}
.y1e{bottom:171.720000pt;}
.y1a9{bottom:173.364000pt;}
.ya7{bottom:174.948000pt;}
.y1fc{bottom:176.562667pt;}
.y172{bottom:178.206667pt;}
.y40{bottom:179.365333pt;}
.y248{bottom:183.836000pt;}
.ydf{bottom:184.600000pt;}
.y1c0{bottom:186.094667pt;}
.y188{bottom:186.122667pt;}
.y94{bottom:186.249333pt;}
.y5d{bottom:189.181333pt;}
.y1dc{bottom:190.024000pt;}
.y79{bottom:190.034667pt;}
.y135{bottom:190.858667pt;}
.y265{bottom:190.954667pt;}
.yfc{bottom:192.205333pt;}
.yc8{bottom:193.494667pt;}
.y1a8{bottom:195.513333pt;}
.y1fb{bottom:198.713333pt;}
.y117{bottom:200.884000pt;}
.y224{bottom:200.946667pt;}
.y3f{bottom:201.516000pt;}
.y247{bottom:205.986667pt;}
.y14f{bottom:206.749333pt;}
.yde{bottom:206.750667pt;}
.y1bf{bottom:208.244000pt;}
.y1d{bottom:209.656000pt;}
.y5c{bottom:211.332000pt;}
.y1db{bottom:212.174667pt;}
.y78{bottom:212.185333pt;}
.ya6{bottom:212.882667pt;}
.y134{bottom:213.008000pt;}
.y264{bottom:213.105333pt;}
.y171{bottom:213.261333pt;}
.yfb{bottom:214.354667pt;}
.yc7{bottom:215.645333pt;}
.y1a7{bottom:217.664000pt;}
.y116{bottom:223.033333pt;}
.y3e{bottom:223.665333pt;}
.y93{bottom:224.185333pt;}
.y246{bottom:228.137333pt;}
.y14e{bottom:228.900000pt;}
.ydd{bottom:228.901333pt;}
.y187{bottom:229.405333pt;}
.y1be{bottom:230.394667pt;}
.yfa{bottom:231.008000pt;}
.y5b{bottom:233.482667pt;}
.y1d9{bottom:234.324000pt;}
.y77{bottom:234.336000pt;}
.y263{bottom:235.254667pt;}
.y170{bottom:235.412000pt;}
.yf9{bottom:236.505333pt;}
.yc6{bottom:237.796000pt;}
.y1da{bottom:238.353333pt;}
.y223{bottom:238.882667pt;}
.y115{bottom:239.686667pt;}
.y1a6{bottom:239.814667pt;}
.y1fa{bottom:243.169333pt;}
.y113{bottom:245.184000pt;}
.y133{bottom:245.453333pt;}
.y3d{bottom:245.816000pt;}
.ya5{bottom:246.489333pt;}
.y245{bottom:250.286667pt;}
.y14d{bottom:251.049333pt;}
.y114{bottom:251.460000pt;}
.y5a{bottom:255.632000pt;}
.y76{bottom:256.485333pt;}
.y262{bottom:257.405333pt;}
.yf8{bottom:258.656000pt;}
.y1f9{bottom:259.822667pt;}
.yc5{bottom:259.945333pt;}
.ydc{bottom:261.345333pt;}
.y1f7{bottom:265.318667pt;}
.y1c{bottom:267.284000pt;}
.y112{bottom:267.333333pt;}
.y3c{bottom:267.966667pt;}
.y16f{bottom:270.468000pt;}
.y1f8{bottom:271.930667pt;}
.y244{bottom:272.437333pt;}
.y1bd{bottom:274.849333pt;}
.y59{bottom:277.782667pt;}
.y75{bottom:278.636000pt;}
.y1d8{bottom:278.780000pt;}
.y261{bottom:279.554667pt;}
.yf7{bottom:280.805333pt;}
.y92{bottom:281.813333pt;}
.y1f6{bottom:281.972000pt;}
.y1a5{bottom:284.269333pt;}
.y186{bottom:287.033333pt;}
.y1f5{bottom:287.469333pt;}
.y1b{bottom:288.058667pt;}
.y111{bottom:289.484000pt;}
.y14c{bottom:290.468000pt;}
.yc4{bottom:292.390667pt;}
.y243{bottom:294.586667pt;}
.y132{bottom:295.254667pt;}
.y222{bottom:296.510667pt;}
.y1bc{bottom:297.000000pt;}
.y58{bottom:299.932000pt;}
.y74{bottom:300.785333pt;}
.y1d6{bottom:300.929333pt;}
.y260{bottom:301.705333pt;}
.yf6{bottom:302.956000pt;}
.y91{bottom:303.962667pt;}
.ya4{bottom:304.118667pt;}
.y1d7{bottom:304.958667pt;}
.ydb{bottom:305.240000pt;}
.y3b{bottom:305.724000pt;}
.y1a4{bottom:306.420000pt;}
.y16e{bottom:308.373333pt;}
.y1a{bottom:308.834667pt;}
.y185{bottom:309.182667pt;}
.y1f4{bottom:309.620000pt;}
.y14b{bottom:312.618667pt;}
.y242{bottom:316.737333pt;}
.y131{bottom:317.405333pt;}
.y221{bottom:318.661333pt;}
.y1bb{bottom:319.150667pt;}
.y110{bottom:321.929333pt;}
.y57{bottom:322.082667pt;}
.y1d5{bottom:323.080000pt;}
.y25f{bottom:323.856000pt;}
.yf5{bottom:325.106667pt;}
.y90{bottom:326.113333pt;}
.ya3{bottom:326.268000pt;}
.yda{bottom:327.390667pt;}
.y3a{bottom:327.874667pt;}
.y1a3{bottom:328.569333pt;}
.y19{bottom:329.609333pt;}
.y16d{bottom:330.524000pt;}
.y184{bottom:331.333333pt;}
.y73{bottom:333.230667pt;}
.y241{bottom:338.888000pt;}
.y130{bottom:339.556000pt;}
.y1ba{bottom:341.300000pt;}
.yc3{bottom:342.192000pt;}
.y56{bottom:344.233333pt;}
.y1d4{bottom:345.230667pt;}
.y220{bottom:345.401333pt;}
.y21f{bottom:345.905333pt;}
.y25e{bottom:346.005333pt;}
.y8f{bottom:348.262667pt;}
.ya2{bottom:348.418667pt;}
.yd9{bottom:349.540000pt;}
.y39{bottom:350.024000pt;}
.y18{bottom:350.385333pt;}
.y16c{bottom:352.673333pt;}
.y1f3{bottom:354.074667pt;}
.y21e{bottom:356.840000pt;}
.y14a{bottom:357.073333pt;}
.yf4{bottom:357.550667pt;}
.y240{bottom:361.037333pt;}
.y12f{bottom:361.705333pt;}
.yc2{bottom:364.342667pt;}
.y25d{bottom:368.156000pt;}
.ya1{bottom:370.568000pt;}
.y17{bottom:371.160000pt;}
.y10f{bottom:371.730667pt;}
.y38{bottom:372.174667pt;}
.y1a2{bottom:373.025333pt;}
.y183{bottom:375.789333pt;}
.y1f2{bottom:376.225333pt;}
.y149{bottom:379.224000pt;}
.y1b9{bottom:379.236000pt;}
.yd8{bottom:381.985333pt;}
.y55{bottom:382.168000pt;}
.y72{bottom:383.033333pt;}
.y23f{bottom:383.188000pt;}
.y12e{bottom:383.856000pt;}
.y16b{bottom:385.118667pt;}
.yc1{bottom:386.493333pt;}
.y1d3{bottom:389.685333pt;}
.y25c{bottom:390.305333pt;}
.y16{bottom:391.936000pt;}
.y8e{bottom:392.718667pt;}
.y10e{bottom:393.881333pt;}
.y37{bottom:394.325333pt;}
.y1a0{bottom:395.176000pt;}
.y182{bottom:397.938667pt;}
.y1a1{bottom:399.205333pt;}
.y148{bottom:401.374667pt;}
.yf3{bottom:402.006667pt;}
.y21d{bottom:404.229333pt;}
.y71{bottom:405.182667pt;}
.y23e{bottom:405.338667pt;}
.y12d{bottom:406.006667pt;}
.yc0{bottom:408.642667pt;}
.y1d2{bottom:411.836000pt;}
.y25b{bottom:412.456000pt;}
.y15{bottom:412.710667pt;}
.y8d{bottom:414.869333pt;}
.y54{bottom:415.776000pt;}
.y10d{bottom:416.030667pt;}
.y19f{bottom:417.325333pt;}
.y1f1{bottom:420.680000pt;}
.y147{bottom:423.524000pt;}
.yf2{bottom:424.156000pt;}
.y21c{bottom:426.378667pt;}
.y70{bottom:427.333333pt;}
.y23d{bottom:427.488000pt;}
.ybf{bottom:430.793333pt;}
.yd7{bottom:431.226667pt;}
.y36{bottom:432.082667pt;}
.y14{bottom:433.486667pt;}
.y1d1{bottom:433.985333pt;}
.y25a{bottom:434.606667pt;}
.y169{bottom:434.725333pt;}
.y1b8{bottom:436.864000pt;}
.y8c{bottom:437.018667pt;}
.y10c{bottom:438.181333pt;}
.y12c{bottom:438.450667pt;}
.y16a{bottom:438.754667pt;}
.y181{bottom:442.394667pt;}
.yf1{bottom:446.306667pt;}
.y21b{bottom:448.529333pt;}
.y6f{bottom:449.482667pt;}
.y23c{bottom:449.638667pt;}
.y168{bottom:451.378667pt;}
.ybe{bottom:452.942667pt;}
.yd6{bottom:453.376000pt;}
.y35{bottom:454.233333pt;}
.y13{bottom:454.261333pt;}
.y146{bottom:455.969333pt;}
.y1cf{bottom:456.136000pt;}
.y259{bottom:456.756000pt;}
.y167{bottom:456.874667pt;}
.y1f0{bottom:458.616000pt;}
.y1b7{bottom:459.014667pt;}
.y8b{bottom:459.169333pt;}
.y1d0{bottom:460.165333pt;}
.y10b{bottom:460.332000pt;}
.y19e{bottom:461.781333pt;}
.y180{bottom:464.544000pt;}
.yf0{bottom:468.457333pt;}
.ya0{bottom:469.464000pt;}
.ybd{bottom:469.596000pt;}
.y21a{bottom:470.678667pt;}
.y23b{bottom:471.788000pt;}
.y12{bottom:475.037333pt;}
.ybb{bottom:475.093333pt;}
.yd5{bottom:475.526667pt;}
.ybc{bottom:475.646667pt;}
.y1ce{bottom:475.894667pt;}
.y34{bottom:476.382667pt;}
.y1cd{bottom:478.286667pt;}
.y258{bottom:478.906667pt;}
.y1b6{bottom:481.164000pt;}
.y8a{bottom:481.318667pt;}
.y10a{bottom:482.481333pt;}
.y19c{bottom:483.930667pt;}
.y6e{bottom:487.418667pt;}
.y19d{bottom:487.960000pt;}
.y12b{bottom:488.253333pt;}
.y166{bottom:489.320000pt;}
.yef{bottom:490.606667pt;}
.y219{bottom:492.829333pt;}
.y53{bottom:493.316000pt;}
.y23a{bottom:493.938667pt;}
.y11{bottom:495.812000pt;}
.yb9{bottom:497.244000pt;}
.yd4{bottom:497.677333pt;}
.y33{bottom:498.533333pt;}
.y257{bottom:501.057333pt;}
.yba{bottom:501.273333pt;}
.y1b5{bottom:503.314667pt;}
.y89{bottom:503.469333pt;}
.y109{bottom:504.632000pt;}
.y145{bottom:505.770667pt;}
.y17f{bottom:509.000000pt;}
.y12a{bottom:510.402667pt;}
.y10{bottom:511.572000pt;}
.y52{bottom:512.577333pt;}
.yee{bottom:512.757333pt;}
.y19b{bottom:514.340000pt;}
.y218{bottom:514.980000pt;}
.y239{bottom:516.089333pt;}
.y1ef{bottom:516.244000pt;}
.ye{bottom:516.588000pt;}
.yf{bottom:517.092000pt;}
.y9f{bottom:519.265333pt;}
.yb8{bottom:519.393333pt;}
.yd3{bottom:519.826667pt;}
.y1cc{bottom:522.741333pt;}
.y256{bottom:523.206667pt;}
.y88{bottom:525.620000pt;}
.y108{bottom:526.781333pt;}
.y217{bottom:531.633333pt;}
.yd{bottom:532.346667pt;}
.y129{bottom:532.553333pt;}
.yed{bottom:534.906667pt;}
.y1b4{bottom:535.758667pt;}
.y19a{bottom:536.057333pt;}
.y32{bottom:536.292000pt;}
.y215{bottom:537.129333pt;}
.yb{bottom:537.362667pt;}
.yc{bottom:537.868000pt;}
.y238{bottom:538.238667pt;}
.y1ee{bottom:538.394667pt;}
.y165{bottom:538.926667pt;}
.y9e{bottom:541.416000pt;}
.yd2{bottom:541.977333pt;}
.yb7{bottom:542.606667pt;}
.y216{bottom:543.405333pt;}
.y144{bottom:543.706667pt;}
.y17e{bottom:544.433333pt;}
.y1cb{bottom:544.892000pt;}
.y6d{bottom:545.046667pt;}
.y255{bottom:545.357333pt;}
.y51{bottom:545.653333pt;}
.y107{bottom:548.932000pt;}
.y128{bottom:554.704000pt;}
.yec{bottom:557.057333pt;}
.y87{bottom:558.064000pt;}
.ya{bottom:558.138667pt;}
.y31{bottom:558.441333pt;}
.y237{bottom:560.389333pt;}
.y1ed{bottom:560.544000pt;}
.y163{bottom:561.077333pt;}
.y9d{bottom:563.566667pt;}
.yd1{bottom:564.126667pt;}
.yb6{bottom:564.324000pt;}
.y50{bottom:564.913333pt;}
.y164{bottom:565.106667pt;}
.y1ca{bottom:567.041333pt;}
.y6c{bottom:567.197333pt;}
.y254{bottom:567.506667pt;}
.y199{bottom:571.492000pt;}
.y214{bottom:575.065333pt;}
.y127{bottom:576.853333pt;}
.y9{bottom:578.913333pt;}
.yeb{bottom:579.208000pt;}
.y17d{bottom:579.866667pt;}
.y30{bottom:580.592000pt;}
.y236{bottom:582.538667pt;}
.y1ec{bottom:582.694667pt;}
.y161{bottom:583.226667pt;}
.y4f{bottom:584.174667pt;}
.y1b3{bottom:585.561333pt;}
.y9c{bottom:585.716000pt;}
.yd0{bottom:586.277333pt;}
.y162{bottom:587.256000pt;}
.y1c9{bottom:589.192000pt;}
.y6b{bottom:589.346667pt;}
.y253{bottom:589.657333pt;}
.y106{bottom:593.388000pt;}
.yb5{bottom:597.841333pt;}
.yea{bottom:601.357333pt;}
.y15f{bottom:601.362667pt;}
.y2f{bottom:602.741333pt;}
.y4e{bottom:603.436000pt;}
.y235{bottom:604.689333pt;}
.y1eb{bottom:604.844000pt;}
.y15e{bottom:605.377333pt;}
.y1b2{bottom:607.712000pt;}
.y86{bottom:607.866667pt;}
.ycf{bottom:608.428000pt;}
.y8{bottom:608.593333pt;}
.y213{bottom:608.672000pt;}
.y160{bottom:609.406667pt;}
.y1c8{bottom:611.342667pt;}
.y6a{bottom:611.497333pt;}
.y252{bottom:611.808000pt;}
.y143{bottom:612.700000pt;}
.y17c{bottom:615.301333pt;}
.y105{bottom:615.537333pt;}
.y198{bottom:615.946667pt;}
.y4d{bottom:622.697333pt;}
.y142{bottom:623.485333pt;}
.ye9{bottom:623.508000pt;}
.y2e{bottom:624.892000pt;}
.y126{bottom:625.138667pt;}
.y234{bottom:626.840000pt;}
.y1ea{bottom:626.994667pt;}
.y15d{bottom:627.526667pt;}
.y1b1{bottom:629.861333pt;}
.y85{bottom:630.016000pt;}
.yb4{bottom:630.286667pt;}
.y251{bottom:633.957333pt;}
.y197{bottom:634.156000pt;}
.y104{bottom:637.688000pt;}
.y196{bottom:638.097333pt;}
.y141{bottom:640.138667pt;}
.yce{bottom:640.872000pt;}
.y4c{bottom:641.958667pt;}
.y125{bottom:644.400000pt;}
.y140{bottom:645.634667pt;}
.ye8{bottom:645.657333pt;}
.y2d{bottom:647.042667pt;}
.y233{bottom:648.989333pt;}
.y1e9{bottom:649.145333pt;}
.y1b0{bottom:652.012000pt;}
.y84{bottom:652.166667pt;}
.y1c7{bottom:655.797333pt;}
.y69{bottom:655.953333pt;}
.y250{bottom:656.108000pt;}
.y212{bottom:656.957333pt;}
.y17b{bottom:659.756000pt;}
.y103{bottom:659.837333pt;}
.y195{bottom:660.248000pt;}
.y4b{bottom:661.218667pt;}
.y124{bottom:663.661333pt;}
.y13f{bottom:667.785333pt;}
.ye7{bottom:667.808000pt;}
.y2c{bottom:669.192000pt;}
.y7{bottom:670.049333pt;}
.y232{bottom:671.140000pt;}
.y1e8{bottom:671.294667pt;}
.y15c{bottom:671.786667pt;}
.y83{bottom:674.317333pt;}
.y211{bottom:676.218667pt;}
.y1c6{bottom:677.948000pt;}
.y68{bottom:678.102667pt;}
.yb3{bottom:678.213333pt;}
.y24f{bottom:678.257333pt;}
.y4a{bottom:680.480000pt;}
.y1af{bottom:684.456000pt;}
.y9b{bottom:684.612000pt;}
.ye6{bottom:689.958667pt;}
.ycd{bottom:690.113333pt;}
.y2b{bottom:691.342667pt;}
.y6{bottom:692.200000pt;}
.y231{bottom:693.290667pt;}
.y1e7{bottom:693.445333pt;}
.y15a{bottom:693.937333pt;}
.y17a{bottom:695.190667pt;}
.yb2{bottom:696.278667pt;}
.y82{bottom:696.466667pt;}
.y102{bottom:697.773333pt;}
.y15b{bottom:697.966667pt;}
.y122{bottom:699.572000pt;}
.y49{bottom:699.741333pt;}
.y1c5{bottom:700.097333pt;}
.y67{bottom:700.253333pt;}
.y24e{bottom:700.408000pt;}
.y194{bottom:704.702667pt;}
.y13e{bottom:707.876000pt;}
.y13d{bottom:708.380000pt;}
.y207{bottom:708.405333pt;}
.ye5{bottom:712.108000pt;}
.ycc{bottom:712.264000pt;}
.y2a{bottom:713.492000pt;}
.y230{bottom:715.440000pt;}
.y1e6{bottom:715.594667pt;}
.y159{bottom:716.088000pt;}
.y81{bottom:718.617333pt;}
.y48{bottom:719.002667pt;}
.y1c4{bottom:722.248000pt;}
.y66{bottom:722.402667pt;}
.y24d{bottom:722.558667pt;}
.yaf{bottom:726.080000pt;}
.y206{bottom:726.470667pt;}
.y193{bottom:726.853333pt;}
.y13c{bottom:730.098667pt;}
.y5{bottom:730.562667pt;}
.y179{bottom:730.624000pt;}
.y101{bottom:731.380000pt;}
.y123{bottom:731.726667pt;}
.y1e5{bottom:732.248000pt;}
.y1ae{bottom:734.258667pt;}
.y9a{bottom:734.413333pt;}
.y22f{bottom:737.590667pt;}
.y1e4{bottom:737.745333pt;}
.y47{bottom:738.264000pt;}
.y210{bottom:744.536000pt;}
.ye4{bottom:744.553333pt;}
.y24c{bottom:744.708000pt;}
.yab{bottom:748.705333pt;}
.y80{bottom:751.062667pt;}
.y158{bottom:751.142667pt;}
.y29{bottom:751.250667pt;}
.y203{bottom:756.273333pt;}
.y1ad{bottom:756.409333pt;}
.y99{bottom:756.564000pt;}
.y46{bottom:758.056000pt;}
.y4{bottom:758.058667pt;}
.y1e3{bottom:759.896000pt;}
.y20f{bottom:762.601333pt;}
.y178{bottom:766.057333pt;}
.y13b{bottom:766.704000pt;}
.y65{bottom:766.858667pt;}
.y192{bottom:767.368000pt;}
.y191{bottom:771.308000pt;}
.y156{bottom:773.293333pt;}
.y28{bottom:773.401333pt;}
.y22e{bottom:775.525333pt;}
.y157{bottom:777.322667pt;}
.y1ab{bottom:778.558667pt;}
.y98{bottom:778.713333pt;}
.y1ff{bottom:778.898667pt;}
.y1ac{bottom:782.588000pt;}
.y3{bottom:785.556000pt;}
.yac{bottom:787.373333pt;}
.y13a{bottom:788.853333pt;}
.y64{bottom:789.009333pt;}
.y200{bottom:789.385333pt;}
.y20c{bottom:792.405333pt;}
.y190{bottom:793.458667pt;}
.y155{bottom:795.444000pt;}
.y27{bottom:795.550667pt;}
.y1e2{bottom:797.830667pt;}
.y1aa{bottom:800.709333pt;}
.y7f{bottom:800.864000pt;}
.yb0{bottom:803.292000pt;}
.y177{bottom:810.513333pt;}
.y45{bottom:810.916000pt;}
.y1c3{bottom:811.004000pt;}
.y63{bottom:811.158667pt;}
.y11f{bottom:812.142667pt;}
.y208{bottom:815.029333pt;}
.y204{bottom:816.489333pt;}
.y26{bottom:817.701333pt;}
.y7e{bottom:823.014667pt;}
.y18f{bottom:828.892000pt;}
.y11e{bottom:831.404000pt;}
.y176{bottom:832.662667pt;}
.y1c2{bottom:833.153333pt;}
.y62{bottom:833.309333pt;}
.y154{bottom:833.349333pt;}
.y2{bottom:836.464000pt;}
.yad{bottom:842.740000pt;}
.y209{bottom:844.637333pt;}
.y7d{bottom:845.164000pt;}
.y18e{bottom:847.028000pt;}
.y201{bottom:848.113333pt;}
.y20d{bottom:848.996000pt;}
.y18d{bottom:851.042667pt;}
.y22d{bottom:855.304000pt;}
.y25{bottom:855.458667pt;}
.y153{bottom:855.500000pt;}
.y175{bottom:855.876000pt;}
.y174{bottom:856.380000pt;}
.y121{bottom:865.605333pt;}
.y7c{bottom:867.314667pt;}
.y44{bottom:868.544000pt;}
.y1{bottom:874.654667pt;}
.y22c{bottom:877.454667pt;}
.y24{bottom:877.609333pt;}
.y18c{bottom:886.476000pt;}
.y7b{bottom:889.465333pt;}
.y20a{bottom:890.116000pt;}
.yae{bottom:898.105333pt;}
.y22b{bottom:899.604000pt;}
.y23{bottom:899.760000pt;}
.y205{bottom:903.485333pt;}
.y43{bottom:906.301333pt;}
.y202{bottom:906.840000pt;}
.y18a{bottom:908.626667pt;}
.y7a{bottom:911.614667pt;}
.y18b{bottom:912.656000pt;}
.y22{bottom:921.909333pt;}
.y1e1{bottom:925.938667pt;}
.y20b{bottom:936.258667pt;}
.y120{bottom:939.192000pt;}
.y20e{bottom:939.616000pt;}
.yb1{bottom:942.465333pt;}
.y21{bottom:944.060000pt;}
.h17{height:2.359467pt;}
.h8{height:29.925069pt;}
.h22{height:31.880400pt;}
.h3{height:36.189121pt;}
.h5{height:40.610943pt;}
.h6{height:41.018216pt;}
.h4{height:43.636400pt;}
.h12{height:47.819952pt;}
.hb{height:47.820800pt;}
.h7{height:52.831735pt;}
.hc{height:55.016400pt;}
.h1a{height:55.021733pt;}
.hf{height:55.029069pt;}
.h2{height:57.384800pt;}
.h24{height:57.388800pt;}
.he{height:60.565069pt;}
.h20{height:62.104400pt;}
.h18{height:62.872400pt;}
.h21{height:63.580800pt;}
.h9{height:63.700400pt;}
.h19{height:63.938133pt;}
.h1b{height:64.467067pt;}
.ha{height:68.861600pt;}
.h16{height:69.804800pt;}
.h10{height:69.810133pt;}
.h1{height:77.360400pt;}
.h1c{height:85.922133pt;}
.h1d{height:90.956800pt;}
.h11{height:91.554133pt;}
.hd{height:91.559467pt;}
.h1f{height:93.575467pt;}
.h25{height:131.813069pt;}
.h13{height:133.768400pt;}
.h1e{height:133.773733pt;}
.h23{height:134.690133pt;}
.h15{height:139.378688pt;}
.h14{height:141.394688pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x47{left:94.173333pt;}
.x30{left:96.000000pt;}
.x1{left:99.456000pt;}
.x4e{left:109.898667pt;}
.x52{left:111.601333pt;}
.x123{left:113.157333pt;}
.xd4{left:115.076000pt;}
.x32{left:119.412000pt;}
.x122{left:127.812000pt;}
.x4c{left:128.758667pt;}
.x5{left:130.912000pt;}
.xa{left:135.020000pt;}
.x104{left:136.125333pt;}
.x121{left:139.952000pt;}
.x137{left:142.438667pt;}
.x4b{left:143.413333pt;}
.x120{left:149.321333pt;}
.xd0{left:152.434667pt;}
.x33{left:155.310667pt;}
.x9{left:156.838667pt;}
.x8e{left:157.997333pt;}
.x105{left:159.816000pt;}
.x8b{left:163.001333pt;}
.x4a{left:164.922667pt;}
.x39{left:166.438667pt;}
.x8f{left:170.009333pt;}
.xe6{left:171.830667pt;}
.x106{left:174.308000pt;}
.x90{left:176.030667pt;}
.xe2{left:179.510667pt;}
.x3a{left:180.602667pt;}
.x91{left:181.666667pt;}
.x55{left:185.182667pt;}
.x5c{left:186.134667pt;}
.x108{left:187.210667pt;}
.x56{left:190.818667pt;}
.x130{left:192.654667pt;}
.x12c{left:194.061333pt;}
.x3f{left:195.788000pt;}
.x5d{left:197.450667pt;}
.x136{left:199.700000pt;}
.xd1{left:201.102667pt;}
.xb6{left:202.380000pt;}
.x12d{left:206.690667pt;}
.x96{left:208.774667pt;}
.xb7{left:210.242667pt;}
.x57{left:216.776000pt;}
.x34{left:218.461333pt;}
.x11e{left:220.117333pt;}
.x2{left:221.356000pt;}
.x58{left:222.413333pt;}
.x131{left:224.100000pt;}
.x112{left:225.212000pt;}
.xbd{left:226.928000pt;}
.x6c{left:228.224000pt;}
.x40{left:229.141333pt;}
.x132{left:230.157333pt;}
.x10d{left:232.905333pt;}
.xa6{left:235.349333pt;}
.xb8{left:236.665333pt;}
.x41{left:237.964000pt;}
.x6d{left:240.236000pt;}
.x97{left:241.990667pt;}
.xb5{left:243.565333pt;}
.x6e{left:246.426667pt;}
.xa7{left:247.361333pt;}
.xaf{left:249.425333pt;}
.x6f{left:252.062667pt;}
.xa8{left:253.346667pt;}
.x42{left:255.470667pt;}
.xc0{left:258.041333pt;}
.xa9{left:258.982667pt;}
.x113{left:260.357333pt;}
.x70{left:262.684000pt;}
.x11c{left:264.794667pt;}
.xf7{left:267.185333pt;}
.x9a{left:268.392000pt;}
.xaa{left:269.394667pt;}
.x10f{left:271.332000pt;}
.xb0{left:272.260000pt;}
.x87{left:275.318667pt;}
.x44{left:276.276000pt;}
.xb1{left:278.269333pt;}
.x71{left:279.254667pt;}
.xbb{left:280.674667pt;}
.x12e{left:283.429333pt;}
.x84{left:284.546667pt;}
.xab{left:285.962667pt;}
.x88{left:287.329333pt;}
.x129{left:291.277333pt;}
.x89{left:293.277333pt;}
.x18{left:294.902667pt;}
.x85{left:296.558667pt;}
.x53{left:299.144000pt;}
.x86{left:302.597333pt;}
.x45{left:303.513333pt;}
.x10c{left:306.953333pt;}
.x54{left:308.892000pt;}
.xea{left:309.968000pt;}
.x4{left:312.545333pt;}
.xdb{left:315.668000pt;}
.x12f{left:316.677333pt;}
.x19{left:317.576000pt;}
.xb2{left:319.086667pt;}
.x46{left:320.238667pt;}
.x1a{left:322.829333pt;}
.x138{left:324.076000pt;}
.x8a{left:325.857333pt;}
.xeb{left:330.157333pt;}
.x1b{left:332.413333pt;}
.xec{left:333.974667pt;}
.x1c{left:335.484000pt;}
.xdf{left:337.322667pt;}
.x6{left:338.258667pt;}
.xce{left:340.790667pt;}
.x3b{left:342.093333pt;}
.x7b{left:343.384000pt;}
.xed{left:348.238667pt;}
.x1d{left:350.610667pt;}
.x5e{left:352.234667pt;}
.x133{left:353.370667pt;}
.x7c{left:355.396000pt;}
.xad{left:357.214667pt;}
.x3c{left:358.833333pt;}
.x4f{left:360.761333pt;}
.xc3{left:361.810667pt;}
.x1e{left:363.518667pt;}
.x50{left:366.013333pt;}
.x7d{left:366.980000pt;}
.x72{left:368.033333pt;}
.x3{left:369.112000pt;}
.x5f{left:370.406667pt;}
.x10e{left:372.208000pt;}
.x4d{left:373.996000pt;}
.x3d{left:375.157333pt;}
.x8{left:376.225333pt;}
.x7{left:378.429333pt;}
.xfb{left:380.212000pt;}
.xdd{left:382.042667pt;}
.xba{left:383.641333pt;}
.xdc{left:385.448000pt;}
.x60{left:386.644000pt;}
.x9b{left:387.989333pt;}
.x1f{left:389.990667pt;}
.x20{left:394.022667pt;}
.x7e{left:395.384000pt;}
.x114{left:396.682667pt;}
.xb3{left:397.821333pt;}
.xb9{left:400.196000pt;}
.x21{left:401.542667pt;}
.x115{left:402.874667pt;}
.x31{left:404.097333pt;}
.x22{left:407.086667pt;}
.x116{left:408.510667pt;}
.x73{left:410.009333pt;}
.x23{left:412.338667pt;}
.x2c{left:413.277333pt;}
.xb4{left:416.416000pt;}
.x124{left:418.781333pt;}
.x24{left:420.306667pt;}
.xf4{left:421.266667pt;}
.x3e{left:423.846667pt;}
.x74{left:425.934667pt;}
.x61{left:428.852000pt;}
.x2d{left:430.630667pt;}
.xc1{left:431.932000pt;}
.xff{left:433.044000pt;}
.x134{left:434.032000pt;}
.x92{left:437.730667pt;}
.x25{left:442.477333pt;}
.xf0{left:444.214667pt;}
.xac{left:445.866667pt;}
.x26{left:448.021333pt;}
.xfc{left:449.834667pt;}
.x75{left:451.768000pt;}
.x27{left:453.273333pt;}
.xe7{left:456.522667pt;}
.x135{left:458.712000pt;}
.x2e{left:460.730667pt;}
.xc2{left:462.312000pt;}
.x35{left:464.293333pt;}
.x69{left:465.233333pt;}
.x28{left:466.817333pt;}
.xf1{left:468.509333pt;}
.x93{left:470.474667pt;}
.x9c{left:471.869333pt;}
.x10b{left:472.993333pt;}
.xee{left:474.697333pt;}
.xa0{left:476.794667pt;}
.x36{left:478.457333pt;}
.xef{left:480.888000pt;}
.x29{left:482.170667pt;}
.x2f{left:484.058667pt;}
.x62{left:487.318667pt;}
.xcf{left:488.870667pt;}
.x63{left:492.954667pt;}
.xf8{left:495.398667pt;}
.xf2{left:498.404000pt;}
.xe1{left:500.076000pt;}
.x117{left:501.312000pt;}
.x64{left:502.664000pt;}
.xfd{left:503.638667pt;}
.xa1{left:506.238667pt;}
.x118{left:507.502667pt;}
.x9d{left:510.145333pt;}
.x119{left:513.138667pt;}
.x94{left:514.334667pt;}
.xa2{left:515.936000pt;}
.xd2{left:517.696000pt;}
.x65{left:518.609333pt;}
.xfe{left:520.465333pt;}
.xb{left:522.044000pt;}
.xf5{left:523.560000pt;}
.x95{left:526.345333pt;}
.x9e{left:528.166667pt;}
.x11a{left:530.437333pt;}
.xc{left:533.200000pt;}
.xbc{left:535.090667pt;}
.x2a{left:536.976000pt;}
.xd{left:538.969333pt;}
.x11f{left:540.440000pt;}
.x66{left:542.281333pt;}
.xe{left:544.222667pt;}
.x11b{left:547.493333pt;}
.x43{left:548.794667pt;}
.x2b{left:550.224000pt;}
.x8c{left:551.398667pt;}
.x67{left:552.882667pt;}
.xd5{left:553.780000pt;}
.xf{left:555.808000pt;}
.x7f{left:557.852000pt;}
.x10{left:558.880000pt;}
.x51{left:560.326667pt;}
.xa3{left:561.604000pt;}
.x80{left:563.916000pt;}
.xe5{left:566.369333pt;}
.xd6{left:568.060000pt;}
.x68{left:569.462667pt;}
.x125{left:570.674667pt;}
.xc6{left:572.086667pt;}
.x5a{left:574.928000pt;}
.x11{left:576.234667pt;}
.x81{left:578.122667pt;}
.x59{left:580.241333pt;}
.xd7{left:581.193333pt;}
.xd9{left:582.110667pt;}
.xc7{left:583.670667pt;}
.x82{left:585.110667pt;}
.x6a{left:586.694667pt;}
.xd8{left:588.237333pt;}
.x127{left:589.490667pt;}
.x12{left:590.834667pt;}
.xa4{left:591.953333pt;}
.x9f{left:594.724000pt;}
.x101{left:596.044000pt;}
.x83{left:597.634667pt;}
.x100{left:599.448000pt;}
.xae{left:601.328000pt;}
.x8d{left:602.882667pt;}
.x13{left:604.006667pt;}
.xcc{left:606.138667pt;}
.xe0{left:607.236000pt;}
.x14{left:609.777333pt;}
.x5b{left:612.578667pt;}
.x15{left:615.029333pt;}
.x128{left:616.646667pt;}
.xfa{left:618.990667pt;}
.x111{left:621.981333pt;}
.xc4{left:622.952000pt;}
.xc8{left:624.301333pt;}
.x16{left:626.616000pt;}
.x48{left:627.690667pt;}
.x110{left:629.204000pt;}
.xd3{left:632.956000pt;}
.x76{left:633.917333pt;}
.xcd{left:635.924000pt;}
.xc5{left:639.126667pt;}
.xde{left:641.342667pt;}
.xf9{left:642.693333pt;}
.x17{left:643.745333pt;}
.x37{left:645.285333pt;}
.xe3{left:647.464000pt;}
.x6b{left:648.634667pt;}
.x98{left:651.769333pt;}
.xc9{left:654.929333pt;}
.x109{left:656.077333pt;}
.x38{left:657.596000pt;}
.x11d{left:658.937333pt;}
.xbe{left:660.041333pt;}
.x77{left:663.929333pt;}
.xe8{left:667.817333pt;}
.x12a{left:668.872000pt;}
.xca{left:671.105333pt;}
.x49{left:673.593333pt;}
.x126{left:674.880000pt;}
.x78{left:676.328000pt;}
.xbf{left:677.917333pt;}
.x102{left:679.661333pt;}
.x12b{left:680.620000pt;}
.xcb{left:682.689333pt;}
.x99{left:685.474667pt;}
.x10a{left:687.593333pt;}
.x79{left:689.542667pt;}
.xe4{left:693.094667pt;}
.x107{left:695.320000pt;}
.xf6{left:699.948000pt;}
.xe9{left:702.033333pt;}
.xa5{left:707.728000pt;}
.x103{left:712.696000pt;}
.x7a{left:715.660000pt;}
.xf3{left:730.326667pt;}
.xda{left:789.560000pt;}
}




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