
    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_4a37c572420847ea67a4ff75.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.738000;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_8a95393904ae7309420b0b2b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_fd0059928e6eda9a8e4a1062.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.714000;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_14926281af27ed76de4c6d51.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.907000;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_7d98378fbdf518a76c30ce32.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8261ff87f2f50bc8a0825869.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.913000;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_1e8970fcfc2ac2d48ebb3e5c.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_46ad35a87067b87f53f9e412.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.902000;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_8162742c113eb9bf26a12655.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.025000;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_f4e87c99e9781f12781e19b6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.708000;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_8badc070b28889824cd3f3c3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.929000;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_7a2c62003371fabea78e8444.woff2')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_0d4a96d7e3ed79f94c989172.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.898000;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_9846dd9e6f176590d7acfc08.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.653000;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_517e1b1de88e9fc393874dc5.woff2')format("woff");}.fff{font-family:fff;line-height:0.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:ff10;src:url('chunks/assets/font_6943d5e2e4597f6894406eb9.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.521000;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_7e7a1d1023d9105b81d66937.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.820000;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_cbd3514e42826f966b60ca1f.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.869000;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_ecaacfb359ebd29c9e837647.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_3f40a7ebfddb0fb01fc26e08.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.834000;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_8af4b4a69d3328b62cbb661c.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.688000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_62c756af754a4b341b57467a.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_c5262a9715046c6a06690f28.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_9955768b1cc121ee56d7ea02.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_c75a2ba109579f3415e867d7.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.451000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_170fec1e46e88528a6c52967.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.686000;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:ff1b;src:url('chunks/assets/font_cb6b4e66d97b0e416495a0e8.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.710000;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:ff1c;src:url('chunks/assets/font_1892ac3d489403e6e40f399c.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.732000;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:ff1d;src:url('chunks/assets/font_99c828330997f4a44081845a.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_684d1d94be369584d5a9580a.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.922000;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:ff1f;src:url('chunks/assets/font_cb6b4e66d97b0e416495a0e8.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.710000;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:ff20;src:url('chunks/assets/font_1892ac3d489403e6e40f399c.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.732000;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:ff21;src:url('chunks/assets/font_cb6b4e66d97b0e416495a0e8.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.710000;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:ff22;src:url('chunks/assets/font_1892ac3d489403e6e40f399c.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.732000;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:ff23;src:url('chunks/assets/font_cb6b4e66d97b0e416495a0e8.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.710000;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:ff24;src:url('chunks/assets/font_1892ac3d489403e6e40f399c.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.732000;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:ff25;src:url('chunks/assets/font_91a41134dd9f22bae9ee55da.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.966309;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:ff26;src:url('chunks/assets/font_e9efdb2fa66b5ba8db1362e7.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.966309;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:ff27;src:url('chunks/assets/font_c059e977631c260bc8cdd250.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.971191;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;}
.m2{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);}
.m3{transform:matrix(0.248252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248252,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vc{vertical-align:-14.946000px;}
.v1{vertical-align:-8.970000px;}
.v5{vertical-align:-6.012000px;}
.v11{vertical-align:-1.842000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.988000px;}
.v14{vertical-align:5.814000px;}
.vf{vertical-align:7.698000px;}
.vb{vertical-align:9.066000px;}
.v9{vertical-align:11.958000px;}
.v13{vertical-align:14.778000px;}
.ve{vertical-align:16.662000px;}
.v8{vertical-align:18.030000px;}
.v2{vertical-align:21.690000px;}
.v7{vertical-align:28.722000px;}
.v6{vertical-align:35.268000px;}
.v15{vertical-align:36.468000px;}
.v10{vertical-align:38.358000px;}
.v12{vertical-align:39.720000px;}
.v16{vertical-align:43.506000px;}
.vd{vertical-align:46.758000px;}
.v4{vertical-align:56.784000px;}
.va{vertical-align:140.472000px;}
.ls3{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.000065px;}
.ls6d{letter-spacing:0.000312px;}
.ls89{letter-spacing:0.000479px;}
.ls79{letter-spacing:0.000538px;}
.lsa{letter-spacing:0.000767px;}
.ls35{letter-spacing:0.000773px;}
.ls4a{letter-spacing:0.001024px;}
.ls81{letter-spacing:0.002023px;}
.ls8c{letter-spacing:0.002245px;}
.ls2f{letter-spacing:0.002800px;}
.ls6e{letter-spacing:0.002802px;}
.ls9{letter-spacing:0.003269px;}
.ls48{letter-spacing:0.003413px;}
.lsb5{letter-spacing:0.003507px;}
.ls4e{letter-spacing:0.003723px;}
.ls5a{letter-spacing:0.004200px;}
.lsb4{letter-spacing:0.004618px;}
.ls76{letter-spacing:0.005374px;}
.ls55{letter-spacing:0.005781px;}
.ls3e{letter-spacing:0.006767px;}
.ls60{letter-spacing:0.242196px;}
.ls32{letter-spacing:0.464387px;}
.ls70{letter-spacing:1.499737px;}
.ls72{letter-spacing:1.501024px;}
.ls86{letter-spacing:1.505737px;}
.ls2a{letter-spacing:2.137689px;}
.lsa4{letter-spacing:2.142767px;}
.ls26{letter-spacing:2.143689px;}
.ls28{letter-spacing:2.148767px;}
.ls4c{letter-spacing:2.982773px;}
.ls87{letter-spacing:2.983319px;}
.ls64{letter-spacing:2.986362px;}
.ls75{letter-spacing:2.986546px;}
.ls27{letter-spacing:2.987864px;}
.ls2b{letter-spacing:2.988564px;}
.ls7f{letter-spacing:2.988773px;}
.lsb{letter-spacing:2.988775px;}
.ls97{letter-spacing:2.989140px;}
.ls71{letter-spacing:2.989319px;}
.ls4b{letter-spacing:2.989994px;}
.ls98{letter-spacing:2.990845px;}
.lsa3{letter-spacing:2.993864px;}
.ls47{letter-spacing:2.994775px;}
.ls61{letter-spacing:3.230196px;}
.ls57{letter-spacing:3.443602px;}
.ls36{letter-spacing:5.977480px;}
.ls43{letter-spacing:6.517690px;}
.ls49{letter-spacing:8.178384px;}
.ls8{letter-spacing:8.297139px;}
.ls41{letter-spacing:8.303139px;}
.ls56{letter-spacing:8.304065px;}
.ls2{letter-spacing:8.470613px;}
.ls39{letter-spacing:9.420479px;}
.lsb0{letter-spacing:9.956338px;}
.ls5b{letter-spacing:9.962338px;}
.ls54{letter-spacing:13.278538px;}
.ls12{letter-spacing:13.282893px;}
.lsa7{letter-spacing:13.284538px;}
.ls53{letter-spacing:13.287269px;}
.lsf{letter-spacing:13.288893px;}
.lsb8{letter-spacing:14.110059px;}
.lsbc{letter-spacing:14.116059px;}
.lsbb{letter-spacing:15.256059px;}
.ls29{letter-spacing:16.581269px;}
.ls25{letter-spacing:16.598469px;}
.lsad{letter-spacing:16.599269px;}
.ls92{letter-spacing:16.599507px;}
.lsac{letter-spacing:16.600200px;}
.ls23{letter-spacing:16.601607px;}
.lsa0{letter-spacing:16.602312px;}
.ls11{letter-spacing:16.602538px;}
.ls83{letter-spacing:16.605269px;}
.ls14{letter-spacing:16.607602px;}
.ls7d{letter-spacing:16.607607px;}
.lsba{letter-spacing:16.929056px;}
.ls1{letter-spacing:16.932141px;}
.lsb9{letter-spacing:16.935056px;}
.ls0{letter-spacing:16.938141px;}
.ls31{letter-spacing:16.952400px;}
.ls9d{letter-spacing:17.043269px;}
.ls8b{letter-spacing:18.321269px;}
.ls6a{letter-spacing:18.599607px;}
.ls7c{letter-spacing:18.744767px;}
.ls22{letter-spacing:18.750767px;}
.lse{letter-spacing:18.971607px;}
.ls51{letter-spacing:19.092538px;}
.ls44{letter-spacing:19.515269px;}
.ls45{letter-spacing:19.518538px;}
.ls8e{letter-spacing:19.545507px;}
.lsb6{letter-spacing:19.586845px;}
.ls7e{letter-spacing:19.588362px;}
.ls84{letter-spacing:19.590773px;}
.ls99{letter-spacing:19.591140px;}
.ls9a{letter-spacing:19.592845px;}
.ls5e{letter-spacing:19.594362px;}
.ls37{letter-spacing:19.594982px;}
.ls34{letter-spacing:19.596773px;}
.lsa2{letter-spacing:19.597140px;}
.ls13{letter-spacing:19.864200px;}
.ls30{letter-spacing:19.938773px;}
.ls10{letter-spacing:20.051602px;}
.ls2d{letter-spacing:20.759607px;}
.ls2c{letter-spacing:20.763507px;}
.ls69{letter-spacing:21.580362px;}
.lsd{letter-spacing:21.960775px;}
.ls50{letter-spacing:22.086775px;}
.ls40{letter-spacing:22.389199px;}
.ls42{letter-spacing:22.395269px;}
.ls2e{letter-spacing:22.418727px;}
.lsa6{letter-spacing:22.458854px;}
.ls5c{letter-spacing:22.558200px;}
.ls8f{letter-spacing:22.908775px;}
.ls5d{letter-spacing:22.914775px;}
.ls33{letter-spacing:23.118773px;}
.ls17{letter-spacing:23.125690px;}
.ls21{letter-spacing:23.259269px;}
.ls5f{letter-spacing:23.363602px;}
.ls59{letter-spacing:23.988773px;}
.ls6b{letter-spacing:24.557602px;}
.ls9b{letter-spacing:24.577140px;}
.ls9c{letter-spacing:24.578845px;}
.ls20{letter-spacing:25.156982px;}
.ls67{letter-spacing:25.263507px;}
.ls3f{letter-spacing:25.380775px;}
.lsb3{letter-spacing:25.782854px;}
.ls6{letter-spacing:26.066727px;}
.ls4f{letter-spacing:26.130479px;}
.ls1b{letter-spacing:26.306727px;}
.ls1c{letter-spacing:27.248469px;}
.ls19{letter-spacing:27.249507px;}
.ls1a{letter-spacing:27.251607px;}
.lsb2{letter-spacing:27.515870px;}
.ls9f{letter-spacing:27.521870px;}
.ls3d{letter-spacing:27.710727px;}
.ls68{letter-spacing:28.260775px;}
.ls24{letter-spacing:28.834893px;}
.ls1e{letter-spacing:29.394767px;}
.ls16{letter-spacing:29.400775px;}
.ls3c{letter-spacing:29.601507px;}
.ls3a{letter-spacing:29.603607px;}
.ls15{letter-spacing:29.855602px;}
.ls66{letter-spacing:30.053607px;}
.ls63{letter-spacing:30.054538px;}
.ls96{letter-spacing:30.180773px;}
.ls8d{letter-spacing:30.186773px;}
.ls3b{letter-spacing:31.157602px;}
.ls52{letter-spacing:32.081602px;}
.ls4{letter-spacing:32.480446px;}
.ls65{letter-spacing:33.046362px;}
.ls18{letter-spacing:33.208893px;}
.ls46{letter-spacing:34.954893px;}
.lsb7{letter-spacing:35.762338px;}
.ls5{letter-spacing:39.352893px;}
.ls1d{letter-spacing:39.592893px;}
.ls1f{letter-spacing:39.598893px;}
.lsab{letter-spacing:39.878845px;}
.ls7{letter-spacing:41.254893px;}
.lsc{letter-spacing:41.799269px;}
.ls95{letter-spacing:42.467870px;}
.ls73{letter-spacing:43.464773px;}
.ls85{letter-spacing:43.470773px;}
.lsaa{letter-spacing:46.561140px;}
.ls80{letter-spacing:46.782773px;}
.ls77{letter-spacing:46.788773px;}
.ls6f{letter-spacing:50.292773px;}
.ls9e{letter-spacing:50.796773px;}
.ls6c{letter-spacing:51.294773px;}
.lsa9{letter-spacing:57.452338px;}
.ls93{letter-spacing:59.558338px;}
.ls7a{letter-spacing:59.760312px;}
.ls74{letter-spacing:61.098538px;}
.lsa5{letter-spacing:61.124338px;}
.lsae{letter-spacing:66.116338px;}
.lsb1{letter-spacing:76.502338px;}
.lsa8{letter-spacing:86.372845px;}
.lsa1{letter-spacing:93.055140px;}
.ls7b{letter-spacing:102.022200px;}
.ls78{letter-spacing:106.254312px;}
.ls58{letter-spacing:107.578200px;}
.ls88{letter-spacing:119.518200px;}
.ls8a{letter-spacing:155.427269px;}
.ls90{letter-spacing:224.774338px;}
.lsaf{letter-spacing:239.104200px;}
.ls82{letter-spacing:263.340773px;}
.ls4d{letter-spacing:309.512338px;}
.ls94{letter-spacing:413.680200px;}
.ls62{letter-spacing:491.474338px;}
.ls91{letter-spacing:494.046773px;}
.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;}
}
.ws5d{word-spacing:-59.775600px;}
.wscd{word-spacing:-47.654765px;}
.ws94{word-spacing:-46.624968px;}
.ws13e{word-spacing:-46.505417px;}
.wsc9{word-spacing:-43.157983px;}
.wsed{word-spacing:-42.739554px;}
.wse9{word-spacing:-41.518164px;}
.wsd7{word-spacing:-40.337210px;}
.ws9f{word-spacing:-38.937826px;}
.wsb9{word-spacing:-38.794364px;}
.ws16f{word-spacing:-30.545332px;}
.wsb4{word-spacing:-29.881822px;}
.ws89{word-spacing:-29.015076px;}
.wsf5{word-spacing:-29.006029px;}
.wsf6{word-spacing:-29.000029px;}
.wse2{word-spacing:-28.978761px;}
.ws90{word-spacing:-28.955301px;}
.ws120{word-spacing:-25.397521px;}
.wsc0{word-spacing:-25.229210px;}
.wscb{word-spacing:-22.320209px;}
.ws6b{word-spacing:-16.611639px;}
.wsc6{word-spacing:-16.551864px;}
.ws10f{word-spacing:-16.492088px;}
.ws13b{word-spacing:-16.432312px;}
.ws4c{word-spacing:-16.193210px;}
.wsdb{word-spacing:-16.133434px;}
.wsdc{word-spacing:-16.073659px;}
.ws44{word-spacing:-15.894332px;}
.ws115{word-spacing:-15.834556px;}
.ws35{word-spacing:-15.774781px;}
.ws64{word-spacing:-15.715005px;}
.ws1f{word-spacing:-15.595454px;}
.ws22{word-spacing:-15.475903px;}
.ws42{word-spacing:-15.416127px;}
.ws104{word-spacing:-15.356352px;}
.wsa7{word-spacing:-15.197911px;}
.ws6d{word-spacing:-15.177025px;}
.ws21{word-spacing:-14.997698px;}
.wsd8{word-spacing:-14.937922px;}
.wsd6{word-spacing:-14.928875px;}
.wsee{word-spacing:-14.698820px;}
.ws37{word-spacing:-14.639044px;}
.ws1a8{word-spacing:-14.579269px;}
.ws13c{word-spacing:-14.459718px;}
.ws55{word-spacing:-14.340166px;}
.wsa2{word-spacing:-14.328398px;}
.ws7f{word-spacing:-14.220615px;}
.ws13a{word-spacing:-14.101064px;}
.ws4a{word-spacing:-14.041288px;}
.ws6e{word-spacing:-13.987490px;}
.ws143{word-spacing:-13.861962px;}
.ws14d{word-spacing:-13.742410px;}
.ws168{word-spacing:-13.628837px;}
.ws84{word-spacing:-13.563084px;}
.wsaf{word-spacing:-13.443532px;}
.ws31{word-spacing:-13.383757px;}
.wsa3{word-spacing:-13.323981px;}
.ws153{word-spacing:-13.204430px;}
.wsb2{word-spacing:-13.166122px;}
.ws43{word-spacing:-13.144654px;}
.ws80{word-spacing:-13.084879px;}
.ws117{word-spacing:-13.025103px;}
.wsb{word-spacing:-12.971305px;}
.ws39{word-spacing:-12.905552px;}
.ws83{word-spacing:-12.845776px;}
.ws11b{word-spacing:-12.820703px;}
.ws6f{word-spacing:-12.786001px;}
.wsc8{word-spacing:-12.726225px;}
.ws20{word-spacing:-12.666450px;}
.ws151{word-spacing:-12.546898px;}
.ws36{word-spacing:-12.487123px;}
.wsf9{word-spacing:-12.427347px;}
.ws150{word-spacing:-12.367572px;}
.ws144{word-spacing:-12.307796px;}
.ws1ac{word-spacing:-12.134447px;}
.ws152{word-spacing:-12.128469px;}
.wse6{word-spacing:-12.068694px;}
.ws102{word-spacing:-12.008918px;}
.wsfa{word-spacing:-11.949142px;}
.ws16c{word-spacing:-11.895344px;}
.ws49{word-spacing:-11.889367px;}
.ws13d{word-spacing:-11.829591px;}
.ws140{word-spacing:-11.768650px;}
.ws3b{word-spacing:-11.710040px;}
.ws59{word-spacing:-11.650264px;}
.ws3f{word-spacing:-11.590489px;}
.ws3d{word-spacing:-11.530713px;}
.ws2d{word-spacing:-11.470938px;}
.ws67{word-spacing:-11.411162px;}
.ws142{word-spacing:-11.351386px;}
.ws1a7{word-spacing:-11.291611px;}
.ws17c{word-spacing:-11.234130px;}
.wsbf{word-spacing:-11.231835px;}
.ws2a{word-spacing:-11.172060px;}
.wsf0{word-spacing:-11.112284px;}
.ws1b6{word-spacing:-11.058486px;}
.ws7d{word-spacing:-11.052508px;}
.ws149{word-spacing:-11.051341px;}
.ws18{word-spacing:-10.992733px;}
.ws130{word-spacing:-10.955699px;}
.ws1ab{word-spacing:-10.938935px;}
.ws108{word-spacing:-10.907879px;}
.ws1b7{word-spacing:-10.892331px;}
.ws12{word-spacing:-10.879159px;}
.ws79{word-spacing:-10.873182px;}
.ws138{word-spacing:-10.860058px;}
.ws169{word-spacing:-10.855924px;}
.ws1bf{word-spacing:-10.699832px;}
.ws118{word-spacing:-10.693855px;}
.ws1b{word-spacing:-10.574304px;}
.ws30{word-spacing:-10.514528px;}
.wsfc{word-spacing:-10.454752px;}
.ws10d{word-spacing:-10.394977px;}
.ws17d{word-spacing:-10.341179px;}
.wsde{word-spacing:-10.335201px;}
.wsdd{word-spacing:-10.329611px;}
.ws1d{word-spacing:-10.275426px;}
.ws119{word-spacing:-10.238390px;}
.ws1a9{word-spacing:-10.221628px;}
.ws23{word-spacing:-10.215650px;}
.ws81{word-spacing:-10.096099px;}
.ws93{word-spacing:-10.037663px;}
.ws95{word-spacing:-10.036323px;}
.ws4{word-spacing:-9.976548px;}
.ws99{word-spacing:-9.969916px;}
.wsbc{word-spacing:-9.966398px;}
.wsc4{word-spacing:-9.962952px;}
.wsdf{word-spacing:-9.960398px;}
.ws2c{word-spacing:-9.916772px;}
.ws111{word-spacing:-9.856996px;}
.ws68{word-spacing:-9.797221px;}
.ws6c{word-spacing:-9.743423px;}
.wsa5{word-spacing:-9.737445px;}
.ws3e{word-spacing:-9.677670px;}
.ws73{word-spacing:-9.558118px;}
.wsfb{word-spacing:-9.498343px;}
.ws3a{word-spacing:-9.378792px;}
.ws58{word-spacing:-9.319016px;}
.wsf3{word-spacing:-9.287564px;}
.wsf4{word-spacing:-9.259240px;}
.ws7a{word-spacing:-9.199465px;}
.ws13{word-spacing:-9.145667px;}
.ws7e{word-spacing:-9.139689px;}
.ws72{word-spacing:-9.079914px;}
.ws167{word-spacing:-9.020138px;}
.ws135{word-spacing:-8.960362px;}
.wsd9{word-spacing:-8.900587px;}
.wsf1{word-spacing:-8.848781px;}
.wsd{word-spacing:-8.846789px;}
.wsf2{word-spacing:-8.840811px;}
.ws98{word-spacing:-8.781036px;}
.wsc3{word-spacing:-8.756265px;}
.wsb3{word-spacing:-8.721260px;}
.ws7b{word-spacing:-8.661484px;}
.ws197{word-spacing:-8.601709px;}
.ws92{word-spacing:-8.541933px;}
.ws1e{word-spacing:-8.482158px;}
.ws141{word-spacing:-8.470422px;}
.ws109{word-spacing:-8.469028px;}
.ws121{word-spacing:-8.463942px;}
.ws123{word-spacing:-8.463462px;}
.ws124{word-spacing:-8.457462px;}
.ws9{word-spacing:-8.368584px;}
.ws5f{word-spacing:-8.362606px;}
.wseb{word-spacing:-8.302831px;}
.wsec{word-spacing:-8.292381px;}
.ws7{word-spacing:-8.249033px;}
.wsac{word-spacing:-8.243055px;}
.ws11a{word-spacing:-8.229925px;}
.ws110{word-spacing:-8.123504px;}
.ws60{word-spacing:-8.063728px;}
.wsda{word-spacing:-8.003953px;}
.ws27{word-spacing:-7.944177px;}
.ws198{word-spacing:-7.890379px;}
.wsad{word-spacing:-7.884402px;}
.ws131{word-spacing:-7.799540px;}
.ws133{word-spacing:-7.751719px;}
.ws1b5{word-spacing:-7.738161px;}
.ws8{word-spacing:-7.591501px;}
.wsaa{word-spacing:-7.525748px;}
.wsab{word-spacing:-7.471047px;}
.wsa4{word-spacing:-7.465972px;}
.ws1aa{word-spacing:-7.412174px;}
.ws10b{word-spacing:-7.406197px;}
.wsb8{word-spacing:-7.346421px;}
.wsba{word-spacing:-7.317611px;}
.ws136{word-spacing:-7.286646px;}
.ws1a3{word-spacing:-7.226870px;}
.ws85{word-spacing:-7.167094px;}
.ws45{word-spacing:-7.107319px;}
.ws66{word-spacing:-7.047543px;}
.ws38{word-spacing:-6.987768px;}
.ws193{word-spacing:-6.921866px;}
.ws6{word-spacing:-6.874194px;}
.ws57{word-spacing:-6.748665px;}
.ws116{word-spacing:-6.688890px;}
.wsa1{word-spacing:-6.629114px;}
.ws9e{word-spacing:-6.606210px;}
.ws114{word-spacing:-6.569338px;}
.wsc7{word-spacing:-6.509563px;}
.ws24{word-spacing:-6.449787px;}
.ws10{word-spacing:-6.395989px;}
.ws4f{word-spacing:-6.390012px;}
.ws70{word-spacing:-6.330236px;}
.ws10c{word-spacing:-6.270460px;}
.wsea{word-spacing:-6.210685px;}
.ws154{word-spacing:-6.150909px;}
.ws2e{word-spacing:-6.091134px;}
.ws28{word-spacing:-6.031358px;}
.ws4d{word-spacing:-5.971582px;}
.ws82{word-spacing:-5.852031px;}
.ws4b{word-spacing:-5.792256px;}
.wsef{word-spacing:-5.732480px;}
.ws63{word-spacing:-5.672704px;}
.wsa6{word-spacing:-5.612929px;}
.ws26{word-spacing:-5.553153px;}
.ws190{word-spacing:-5.379804px;}
.wsfe{word-spacing:-5.373826px;}
.ws32{word-spacing:-5.314051px;}
.ws54{word-spacing:-5.254275px;}
.ws181{word-spacing:-5.193866px;}
.wse5{word-spacing:-5.074948px;}
.ws134{word-spacing:-5.025945px;}
.ws51{word-spacing:-4.955397px;}
.ws18d{word-spacing:-4.895622px;}
.ws19{word-spacing:-4.835846px;}
.ws182{word-spacing:-4.782048px;}
.ws52{word-spacing:-4.776070px;}
.ws6a{word-spacing:-4.716295px;}
.wsc2{word-spacing:-4.641922px;}
.ws199{word-spacing:-4.602721px;}
.ws5a{word-spacing:-4.596744px;}
.wsb6{word-spacing:-4.357641px;}
.ws1b3{word-spacing:-4.308225px;}
.ws78{word-spacing:-4.297866px;}
.ws5e{word-spacing:-4.238090px;}
.ws62{word-spacing:-4.118539px;}
.ws14e{word-spacing:-4.058763px;}
.ws17f{word-spacing:-3.998988px;}
.ws1b4{word-spacing:-3.945190px;}
.ws18e{word-spacing:-3.879436px;}
.ws8b{word-spacing:-3.819661px;}
.ws8a{word-spacing:-3.801897px;}
.ws53{word-spacing:-3.759885px;}
.wsd2{word-spacing:-3.700110px;}
.ws3c{word-spacing:-3.640334px;}
.ws18f{word-spacing:-3.586536px;}
.ws2f{word-spacing:-3.580558px;}
.ws9d{word-spacing:-3.570398px;}
.ws105{word-spacing:-3.520783px;}
.ws96{word-spacing:-3.472262px;}
.ws97{word-spacing:-3.461007px;}
.ws8d{word-spacing:-3.401232px;}
.ws11{word-spacing:-3.287658px;}
.ws25{word-spacing:-3.281680px;}
.ws71{word-spacing:-3.221905px;}
.ws1a{word-spacing:-3.162129px;}
.ws4e{word-spacing:-3.102354px;}
.ws5c{word-spacing:-3.042578px;}
.ws101{word-spacing:-2.982802px;}
.wsd0{word-spacing:-2.863251px;}
.ws2b{word-spacing:-2.803476px;}
.wsc{word-spacing:-2.689902px;}
.ws14f{word-spacing:-2.504598px;}
.wse{word-spacing:-2.450800px;}
.ws185{word-spacing:-2.346772px;}
.wsd1{word-spacing:-2.325271px;}
.ws74{word-spacing:-2.205720px;}
.wsa8{word-spacing:-2.158670px;}
.wsa9{word-spacing:-2.145944px;}
.ws8c{word-spacing:-1.906842px;}
.ws7c{word-spacing:-1.787290px;}
.wse7{word-spacing:-1.667739px;}
.ws77{word-spacing:-1.428637px;}
.ws34{word-spacing:-1.368861px;}
.wsfd{word-spacing:-1.309086px;}
.ws46{word-spacing:-1.249310px;}
.ws1be{word-spacing:-1.189534px;}
.ws8e{word-spacing:-1.129759px;}
.ws5b{word-spacing:-1.069983px;}
.ws194{word-spacing:-0.950432px;}
.ws19d{word-spacing:-0.830881px;}
.ws29{word-spacing:-0.771105px;}
.ws16e{word-spacing:-0.711330px;}
.ws86{word-spacing:-0.591778px;}
.ws33{word-spacing:-0.532003px;}
.ws1c{word-spacing:-0.472227px;}
.ws41{word-spacing:-0.352676px;}
.ws15b{word-spacing:-0.292900px;}
.ws75{word-spacing:-0.233125px;}
.ws1bd{word-spacing:-0.096097px;}
.ws14{word-spacing:-0.086077px;}
.ws9a{word-spacing:-0.059776px;}
.ws11e{word-spacing:-0.047821px;}
.wsb1{word-spacing:-0.041843px;}
.ws12a{word-spacing:-0.033988px;}
.ws126{word-spacing:-0.032065px;}
.ws47{word-spacing:0.000000px;}
.ws56{word-spacing:0.065753px;}
.wsc1{word-spacing:0.125529px;}
.ws48{word-spacing:0.185304px;}
.ws1a0{word-spacing:0.304856px;}
.ws184{word-spacing:0.358654px;}
.ws61{word-spacing:0.364631px;}
.ws183{word-spacing:0.403176px;}
.wsf{word-spacing:0.537980px;}
.ws1bc{word-spacing:0.603734px;}
.ws76{word-spacing:0.663509px;}
.ws139{word-spacing:0.783060px;}
.wse8{word-spacing:1.022163px;}
.ws10e{word-spacing:1.081938px;}
.ws14c{word-spacing:1.380816px;}
.ws19c{word-spacing:1.500368px;}
.ws158{word-spacing:2.098124px;}
.ws91{word-spacing:2.217675px;}
.ws178{word-spacing:2.358975px;}
.ws179{word-spacing:3.054533px;}
.ws69{word-spacing:3.174084px;}
.ws137{word-spacing:3.472962px;}
.ws112{word-spacing:3.592514px;}
.ws180{word-spacing:3.652289px;}
.ws195{word-spacing:3.891392px;}
.ws1a6{word-spacing:4.788026px;}
.ws113{word-spacing:4.847801px;}
.ws1c6{word-spacing:5.027128px;}
.ws187{word-spacing:5.086904px;}
.ws15e{word-spacing:5.140702px;}
.ws103{word-spacing:5.445557px;}
.ws1c2{word-spacing:5.684660px;}
.ws15d{word-spacing:5.738458px;}
.ws100{word-spacing:5.863986px;}
.wsd5{word-spacing:5.943506px;}
.ws65{word-spacing:5.983538px;}
.ws159{word-spacing:6.103089px;}
.ws15c{word-spacing:6.222640px;}
.ws17b{word-spacing:6.700845px;}
.ws14b{word-spacing:6.939947px;}
.ws16b{word-spacing:6.999723px;}
.ws196{word-spacing:7.597479px;}
.wse4{word-spacing:8.195235px;}
.ws18a{word-spacing:8.249033px;}
.ws148{word-spacing:8.391818px;}
.ws1c9{word-spacing:8.434337px;}
.ws166{word-spacing:8.733215px;}
.ws177{word-spacing:8.787013px;}
.wsa{word-spacing:8.846789px;}
.ws189{word-spacing:8.929274px;}
.ws18b{word-spacing:8.972318px;}
.ws146{word-spacing:9.149476px;}
.ws1c1{word-spacing:9.151644px;}
.wsff{word-spacing:9.450522px;}
.ws16a{word-spacing:9.510298px;}
.ws147{word-spacing:9.697867px;}
.wsbd{word-spacing:9.902232px;}
.ws16d{word-spacing:10.042301px;}
.wsbe{word-spacing:10.825361px;}
.ws186{word-spacing:11.004688px;}
.ws1b8{word-spacing:11.184015px;}
.ws1c4{word-spacing:11.303566px;}
.ws19e{word-spacing:11.536691px;}
.ws8f{word-spacing:11.901322px;}
.ws173{word-spacing:12.379527px;}
.wscc{word-spacing:13.210408px;}
.wsb7{word-spacing:13.515263px;}
.ws1ba{word-spacing:13.590190px;}
.ws162{word-spacing:13.634814px;}
.ws17a{word-spacing:13.694590px;}
.ws40{word-spacing:14.053244px;}
.ws10a{word-spacing:14.059256px;}
.ws1bb{word-spacing:14.292346px;}
.ws17e{word-spacing:14.710775px;}
.ws1c8{word-spacing:14.890102px;}
.ws172{word-spacing:14.949878px;}
.ws174{word-spacing:15.069429px;}
.ws132{word-spacing:15.206951px;}
.ws19f{word-spacing:15.840534px;}
.ws1c5{word-spacing:16.085614px;}
.ws191{word-spacing:16.205165px;}
.wsae{word-spacing:16.368763px;}
.wsd3{word-spacing:16.533684px;}
.wsb0{word-spacing:16.557841px;}
.ws0{word-spacing:16.880672px;}
.ws1{word-spacing:16.886097px;}
.ws128{word-spacing:18.345254px;}
.ws192{word-spacing:18.357087px;}
.ws171{word-spacing:18.536414px;}
.wsd4{word-spacing:19.230771px;}
.ws107{word-spacing:19.462984px;}
.ws161{word-spacing:20.568784px;}
.wse3{word-spacing:20.623239px;}
.ws14a{word-spacing:20.807886px;}
.wsbb{word-spacing:20.921460px;}
.ws9b{word-spacing:20.927438px;}
.ws129{word-spacing:21.158605px;}
.ws127{word-spacing:21.159454px;}
.ws12f{word-spacing:21.159715px;}
.ws176{word-spacing:21.818094px;}
.wsa0{word-spacing:22.116972px;}
.wse0{word-spacing:22.551506px;}
.ws1a5{word-spacing:22.595177px;}
.ws1a1{word-spacing:22.660930px;}
.wsb5{word-spacing:22.834279px;}
.ws5{word-spacing:23.610369px;}
.ws175{word-spacing:23.679520px;}
.ws1a4{word-spacing:24.557939px;}
.ws16{word-spacing:24.687323px;}
.ws15f{word-spacing:24.812852px;}
.ws3{word-spacing:25.034189px;}
.ws1b9{word-spacing:26.008364px;}
.wsf8{word-spacing:26.248143px;}
.ws188{word-spacing:26.367017px;}
.ws87{word-spacing:26.827469px;}
.ws170{word-spacing:27.018571px;}
.ws9c{word-spacing:27.197898px;}
.ws1b0{word-spacing:27.377225px;}
.ws12d{word-spacing:28.538706px;}
.ws1ae{word-spacing:28.578714px;}
.ws1af{word-spacing:29.834002px;}
.ws1a2{word-spacing:31.328392px;}
.ws15a{word-spacing:31.388168px;}
.ws50{word-spacing:31.504255px;}
.ws88{word-spacing:32.398375px;}
.ws163{word-spacing:35.213806px;}
.ws15{word-spacing:36.881545px;}
.ws155{word-spacing:38.680791px;}
.ws19a{word-spacing:38.913916px;}
.ws2{word-spacing:39.974159px;}
.ws157{word-spacing:42.147776px;}
.ws1c0{word-spacing:44.831700px;}
.ws1b1{word-spacing:46.086988px;}
.ws1c3{word-spacing:47.275964px;}
.ws18c{word-spacing:49.141521px;}
.ws1b2{word-spacing:50.097930px;}
.ws1c7{word-spacing:51.407016px;}
.ws19b{word-spacing:51.412994px;}
.ws165{word-spacing:51.646118px;}
.ws164{word-spacing:52.309628px;}
.ws1ad{word-spacing:53.983344px;}
.wse1{word-spacing:65.706771px;}
.ws156{word-spacing:67.731732px;}
.wsf7{word-spacing:69.418143px;}
.ws11d{word-spacing:108.406450px;}
.ws160{word-spacing:109.215999px;}
.ws106{word-spacing:113.458019px;}
.wsca{word-spacing:115.159239px;}
.ws13f{word-spacing:118.050953px;}
.ws12c{word-spacing:124.324986px;}
.ws17{word-spacing:136.604516px;}
.ws11c{word-spacing:139.844178px;}
.ws125{word-spacing:165.080058px;}
.ws122{word-spacing:176.228058px;}
.ws11f{word-spacing:198.354385px;}
.ws145{word-spacing:227.055331px;}
.wscf{word-spacing:282.738588px;}
.ws12e{word-spacing:339.141929px;}
.wsce{word-spacing:429.369971px;}
.ws12b{word-spacing:660.419166px;}
.wsc5{word-spacing:836.944563px;}
._4{margin-left:-12.808258px;}
._3{margin-left:-9.606193px;}
._1b{margin-left:-7.919102px;}
._2b{margin-left:-6.515501px;}
._6{margin-left:-5.379840px;}
._1{margin-left:-4.208213px;}
._5{margin-left:-3.202064px;}
._0{margin-left:-1.434618px;}
._7{width:1.494394px;}
._9{width:3.202064px;}
._1f{width:4.933200px;}
._1e{width:8.383398px;}
._26{width:15.741869px;}
._21{width:17.753389px;}
._28{width:19.319076px;}
._b{width:20.698637px;}
._2d{width:22.052104px;}
._22{width:24.053719px;}
._e{width:25.464409px;}
._d{width:26.779505px;}
._f{width:28.273859px;}
._23{width:29.503339px;}
._11{width:31.561556px;}
._1d{width:32.876580px;}
._c{width:34.490521px;}
._a{width:36.648725px;}
._17{width:38.196612px;}
._30{width:39.296486px;}
._10{width:40.561822px;}
._1c{width:42.082026px;}
._20{width:43.755736px;}
._12{width:45.130582px;}
._8{width:46.864070px;}
._14{width:49.972402px;}
._40{width:51.227689px;}
._15{width:52.781858px;}
._13{width:54.336024px;}
._3e{width:55.975769px;}
._2{width:57.384720px;}
._25{width:58.580088px;}
._2f{width:59.954963px;}
._41{width:61.116470px;}
._44{width:72.926239px;}
._19{width:75.131647px;}
._3f{width:76.692095px;}
._18{width:77.827831px;}
._42{width:80.125099px;}
._43{width:83.193751px;}
._37{width:84.648959px;}
._3d{width:86.583912px;}
._45{width:90.088369px;}
._29{width:91.635995px;}
._27{width:92.806252px;}
._38{width:95.408538px;}
._32{width:97.344959px;}
._46{width:100.461112px;}
._39{width:108.109579px;}
._2e{width:109.748002px;}
._24{width:116.563200px;}
._33{width:120.806058px;}
._1a{width:136.690594px;}
._2a{width:157.389155px;}
._31{width:170.718140px;}
._3c{width:182.793785px;}
._3a{width:201.619579px;}
._34{width:203.173100px;}
._35{width:243.127579px;}
._3b{width:254.203003px;}
._36{width:267.715579px;}
._2c{width:360.930555px;}
._16{width:1203.740143px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:21.437536px;}
.fs7{font-size:28.862700px;}
.fs6{font-size:29.887800px;}
.fsf{font-size:30.525729px;}
.fs10{font-size:30.966118px;}
.fse{font-size:30.974185px;}
.fs9{font-size:32.065084px;}
.fsc{font-size:33.988303px;}
.fsa{font-size:37.895876px;}
.fsd{font-size:40.168817px;}
.fs5{font-size:41.842800px;}
.fs0{font-size:47.820600px;}
.fsb{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y126{bottom:5.609792px;}
.y17a{bottom:7.626360px;}
.y190{bottom:8.074725px;}
.y125{bottom:14.158801px;}
.y127{bottom:18.903892px;}
.y171{bottom:28.346202px;}
.y1bc{bottom:29.026365px;}
.y18a{bottom:30.037315px;}
.y1bb{bottom:40.021400px;}
.y128{bottom:40.839544px;}
.y197{bottom:43.581501px;}
.y17d{bottom:48.555058px;}
.y1ba{bottom:51.016402px;}
.y18f{bottom:51.459779px;}
.y1c1{bottom:51.807370px;}
.y4c{bottom:58.093500px;}
.y4b{bottom:58.453500px;}
.y1b9{bottom:62.011430px;}
.y129{bottom:62.775196px;}
.y198{bottom:68.259109px;}
.y176{bottom:69.274901px;}
.y1b8{bottom:73.006463px;}
.y189{bottom:73.422368px;}
.y19e{bottom:81.293301px;}
.y1b7{bottom:84.001496px;}
.y131{bottom:84.028591px;}
.y12a{bottom:84.710848px;}
.y180{bottom:89.485180px;}
.y175{bottom:89.739962px;}
.y199{bottom:92.936718px;}
.y18e{bottom:94.843324px;}
.y1b6{bottom:94.996491px;}
.y1b4{bottom:98.077589px;}
.y1b5{bottom:105.991524px;}
.y12b{bottom:106.646500px;}
.y177{bottom:110.205023px;}
.yf8{bottom:116.673000px;}
.y188{bottom:116.805913px;}
.y19a{bottom:117.614326px;}
.y28{bottom:121.180500px;}
.y4a{bottom:122.913000px;}
.y1a6{bottom:127.471921px;}
.y12c{bottom:128.582152px;}
.y1ca{bottom:129.429078px;}
.y17f{bottom:130.413879px;}
.y178{bottom:130.670084px;}
.y18d{bottom:138.228377px;}
.y187{bottom:138.498440px;}
.y1a5{bottom:138.628489px;}
.y27{bottom:139.113000px;}
.y1bf{bottom:139.114500px;}
.y1c9{bottom:140.582709px;}
.y49{bottom:140.845500px;}
.y19b{bottom:142.291935px;}
.y1a4{bottom:149.785018px;}
.y12d{bottom:150.517804px;}
.y170{bottom:151.133722px;}
.y1c8{bottom:151.736272px;}
.y195{bottom:153.910500px;}
.y139{bottom:155.465759px;}
.yf7{bottom:157.045500px;}
.y26{bottom:157.047000px;}
.y48{bottom:158.778000px;}
.y186{bottom:160.190966px;}
.y1a3{bottom:160.941576px;}
.y1c7{bottom:162.889969px;}
.y138{bottom:163.187321px;}
.ya1{bottom:165.549000px;}
.y7e{bottom:165.550500px;}
.y19c{bottom:166.969543px;}
.y194{bottom:168.108000px;}
.y137{bottom:170.908855px;}
.y181{bottom:171.344002px;}
.y16e{bottom:171.598783px;}
.y1a2{bottom:172.098134px;}
.y12e{bottom:172.453456px;}
.y1c6{bottom:174.043638px;}
.y223{bottom:174.978000px;}
.y25{bottom:174.979500px;}
.y47{bottom:176.710500px;}
.y136{bottom:178.630427px;}
.y18c{bottom:181.611922px;}
.y185{bottom:181.881984px;}
.y193{bottom:182.304000px;}
.y1a1{bottom:183.254692px;}
.y1c2{bottom:183.421282px;}
.y7d{bottom:183.483000px;}
.y1c5{bottom:185.197307px;}
.yc9{bottom:186.291000px;}
.y135{bottom:186.351999px;}
.y19d{bottom:191.647152px;}
.y16d{bottom:192.063844px;}
.y24{bottom:192.912000px;}
.y134{bottom:194.073552px;}
.y12f{bottom:194.389108px;}
.y1a0{bottom:194.411231px;}
.y46{bottom:194.643000px;}
.y1c4{bottom:196.350841px;}
.y192{bottom:196.501500px;}
.y7c{bottom:201.415500px;}
.y133{bottom:201.795104px;}
.y184{bottom:203.574511px;}
.y19f{bottom:205.567789px;}
.y1f9{bottom:206.355000px;}
.y1c3{bottom:207.504587px;}
.y132{bottom:209.516657px;}
.y23{bottom:210.844500px;}
.yc8{bottom:211.278000px;}
.y17b{bottom:212.272700px;}
.y16f{bottom:212.527482px;}
.y45{bottom:212.575500px;}
.ybf{bottom:214.684500px;}
.y130{bottom:216.324762px;}
.yc5{bottom:219.168000px;}
.y7b{bottom:219.348000px;}
.yc4{bottom:223.651500px;}
.y1f8{bottom:224.287500px;}
.y18b{bottom:224.995466px;}
.y191{bottom:226.314000px;}
.y22{bottom:228.777000px;}
.yc1{bottom:228.856500px;}
.y44{bottom:230.509500px;}
.yc7{bottom:232.797000px;}
.y173{bottom:232.992543px;}
.yc0{bottom:233.365500px;}
.y7a{bottom:237.280500px;}
.y1d1{bottom:237.282000px;}
.y1f7{bottom:242.221500px;}
.y1be{bottom:245.085000px;}
.y21{bottom:246.709500px;}
.y183{bottom:246.787500px;}
.ybe{bottom:247.561500px;}
.y43{bottom:248.442000px;}
.yc3{bottom:250.551000px;}
.y17e{bottom:253.202823px;}
.y172{bottom:253.457604px;}
.yc6{bottom:254.316000px;}
.yc2{bottom:255.034500px;}
.ya0{bottom:255.213000px;}
.y79{bottom:255.214500px;}
.y222{bottom:256.900500px;}
.y1bd{bottom:259.281000px;}
.y1f6{bottom:260.154000px;}
.y20{bottom:264.643500px;}
.y78{bottom:273.147000px;}
.y174{bottom:273.922665px;}
.y221{bottom:274.833000px;}
.y42{bottom:274.878000px;}
.y1f5{bottom:278.086500px;}
.y1f{bottom:282.576000px;}
.y1b3{bottom:284.163000px;}
.y77{bottom:291.079500px;}
.y220{bottom:292.767000px;}
.y41{bottom:292.810500px;}
.y17c{bottom:294.131521px;}
.ybd{bottom:295.351500px;}
.y1e{bottom:300.508500px;}
.ybc{bottom:308.775000px;}
.y76{bottom:309.012000px;}
.y1f4{bottom:309.463500px;}
.y21f{bottom:310.699500px;}
.y40{bottom:310.744500px;}
.ybb{bottom:313.284000px;}
.y16c{bottom:314.851364px;}
.yf6{bottom:317.515500px;}
.y1d{bottom:318.441000px;}
.yba{bottom:326.709000px;}
.y75{bottom:326.944500px;}
.y1f3{bottom:327.396000px;}
.y21e{bottom:328.632000px;}
.y3f{bottom:328.677000px;}
.yb9{bottom:331.216500px;}
.y179{bottom:335.060220px;}
.yf5{bottom:335.448000px;}
.y1c{bottom:336.373500px;}
.y74{bottom:344.877000px;}
.y123{bottom:344.878500px;}
.y1f2{bottom:345.328500px;}
.y21d{bottom:346.564500px;}
.y3e{bottom:346.609500px;}
.yb8{bottom:349.149000px;}
.yf4{bottom:353.382000px;}
.y1b{bottom:354.306000px;}
.y9f{bottom:362.809500px;}
.y73{bottom:362.811000px;}
.y1f1{bottom:363.261000px;}
.y21c{bottom:364.497000px;}
.y3d{bottom:364.542000px;}
.yf3{bottom:366.805500px;}
.yb7{bottom:367.081500px;}
.yf2{bottom:371.314500px;}
.y150{bottom:372.240000px;}
.y72{bottom:380.743500px;}
.y1f0{bottom:381.193500px;}
.y21b{bottom:382.429500px;}
.y3c{bottom:382.474500px;}
.yf1{bottom:384.739500px;}
.yb6{bottom:385.014000px;}
.y263{bottom:387.496500px;}
.yf0{bottom:389.247000px;}
.y14f{bottom:390.172500px;}
.y242{bottom:391.066500px;}
.y1a{bottom:396.795000px;}
.y71{bottom:398.676000px;}
.y122{bottom:398.931000px;}
.y1ef{bottom:399.126000px;}
.y9e{bottom:399.270000px;}
.y3b{bottom:400.407000px;}
.yb5{bottom:402.948000px;}
.y262{bottom:405.429000px;}
.yef{bottom:407.179500px;}
.y241{bottom:408.999000px;}
.y21a{bottom:410.554500px;}
.y14e{bottom:416.608500px;}
.y1ee{bottom:417.060000px;}
.y3a{bottom:418.341000px;}
.yb4{bottom:420.880500px;}
.y261{bottom:423.361500px;}
.y70{bottom:425.112000px;}
.y219{bottom:428.487000px;}
.y14d{bottom:434.541000px;}
.y39{bottom:436.273500px;}
.y240{bottom:441.013500px;}
.y260{bottom:441.294000px;}
.yee{bottom:443.044500px;}
.y6f{bottom:443.046000px;}
.y218{bottom:446.419500px;}
.y1ed{bottom:448.435500px;}
.y121{bottom:449.433000px;}
.y9d{bottom:451.470000px;}
.y14c{bottom:452.475000px;}
.y38{bottom:454.206000px;}
.y23f{bottom:458.946000px;}
.y25f{bottom:459.228000px;}
.y6e{bottom:460.978500px;}
.y19{bottom:460.993500px;}
.yb3{bottom:464.197500px;}
.y217{bottom:464.352000px;}
.y1ec{bottom:466.368000px;}
.y120{bottom:467.365500px;}
.y9c{bottom:469.402500px;}
.y14b{bottom:470.407500px;}
.y37{bottom:472.138500px;}
.y23e{bottom:476.878500px;}
.y25e{bottom:477.160500px;}
.y6d{bottom:478.911000px;}
.y18{bottom:478.926000px;}
.yb2{bottom:482.172000px;}
.y216{bottom:482.284500px;}
.y1eb{bottom:484.302000px;}
.y11f{bottom:485.298000px;}
.y9b{bottom:487.335000px;}
.y14a{bottom:488.340000px;}
.y182{bottom:491.136000px;}
.y25d{bottom:495.093000px;}
.y6c{bottom:496.843500px;}
.y215{bottom:500.218500px;}
.y36{bottom:501.976500px;}
.y1ea{bottom:502.234500px;}
.y11e{bottom:503.230500px;}
.y9a{bottom:505.267500px;}
.y149{bottom:506.272500px;}
.y23d{bottom:508.893000px;}
.y16b{bottom:511.608000px;}
.y25c{bottom:513.025500px;}
.y6b{bottom:514.776000px;}
.yed{bottom:515.464500px;}
.y35{bottom:519.909000px;}
.yec{bottom:519.973500px;}
.y11d{bottom:521.164500px;}
.y17{bottom:521.415000px;}
.y99{bottom:523.200000px;}
.y148{bottom:524.205000px;}
.yb1{bottom:524.376000px;}
.y23c{bottom:526.825500px;}
.y214{bottom:528.342000px;}
.y1b2{bottom:529.567500px;}
.y6a{bottom:532.708500px;}
.y1d0{bottom:532.710000px;}
.y1e9{bottom:533.610000px;}
.y34{bottom:537.843000px;}
.yeb{bottom:537.880500px;}
.y11c{bottom:539.097000px;}
.y98{bottom:541.134000px;}
.y147{bottom:542.137500px;}
.yb0{bottom:542.308500px;}
.yea{bottom:542.389500px;}
.y23b{bottom:544.758000px;}
.y213{bottom:546.274500px;}
.y1b1{bottom:547.500000px;}
.y25b{bottom:548.890500px;}
.y69{bottom:550.642500px;}
.y1e8{bottom:551.544000px;}
.y33{bottom:555.775500px;}
.y11b{bottom:557.029500px;}
.y97{bottom:559.066500px;}
.y146{bottom:560.071500px;}
.yaf{bottom:560.241000px;}
.ye9{bottom:560.296500px;}
.y212{bottom:564.207000px;}
.ye8{bottom:564.805500px;}
.y1b0{bottom:565.432500px;}
.y25a{bottom:566.824500px;}
.y68{bottom:568.575000px;}
.y1e7{bottom:569.476500px;}
.y32{bottom:573.708000px;}
.y11a{bottom:574.962000px;}
.y23a{bottom:576.772500px;}
.y96{bottom:576.999000px;}
.y145{bottom:578.004000px;}
.yae{bottom:578.173500px;}
.y211{bottom:582.139500px;}
.y1af{bottom:583.365000px;}
.y259{bottom:584.757000px;}
.y16{bottom:585.613500px;}
.ye6{bottom:585.621000px;}
.y67{bottom:586.507500px;}
.y1e6{bottom:587.409000px;}
.y31{bottom:591.640500px;}
.y119{bottom:592.894500px;}
.y239{bottom:594.705000px;}
.y144{bottom:595.936500px;}
.yad{bottom:596.106000px;}
.ye7{bottom:599.088000px;}
.y210{bottom:600.073500px;}
.y1ae{bottom:601.297500px;}
.y258{bottom:602.689500px;}
.y95{bottom:603.435000px;}
.y15{bottom:603.546000px;}
.ye5{bottom:603.595500px;}
.y66{bottom:604.440000px;}
.y1e5{bottom:605.341500px;}
.y30{bottom:609.573000px;}
.y118{bottom:610.827000px;}
.y238{bottom:612.637500px;}
.y143{bottom:613.869000px;}
.y20f{bottom:618.006000px;}
.y1ad{bottom:619.231500px;}
.y257{bottom:620.622000px;}
.y94{bottom:621.369000px;}
.y14{bottom:621.480000px;}
.y65{bottom:622.372500px;}
.y1e4{bottom:623.274000px;}
.y2f{bottom:627.507000px;}
.y117{bottom:628.761000px;}
.y237{bottom:630.570000px;}
.y142{bottom:631.801500px;}
.yac{bottom:634.687500px;}
.y1ac{bottom:637.164000px;}
.y256{bottom:638.554500px;}
.y93{bottom:639.301500px;}
.y13{bottom:639.412500px;}
.ye4{bottom:639.682500px;}
.y1cf{bottom:640.306500px;}
.y1e3{bottom:641.206500px;}
.y2e{bottom:645.439500px;}
.y20e{bottom:646.129500px;}
.y116{bottom:646.693500px;}
.y236{bottom:648.502500px;}
.y64{bottom:648.810000px;}
.y141{bottom:649.734000px;}
.ye3{bottom:653.107500px;}
.y1ab{bottom:655.096500px;}
.y255{bottom:656.488500px;}
.y92{bottom:657.234000px;}
.y12{bottom:657.345000px;}
.ye2{bottom:657.615000px;}
.y1ce{bottom:658.239000px;}
.y2d{bottom:663.372000px;}
.y20d{bottom:664.062000px;}
.y115{bottom:664.626000px;}
.y63{bottom:666.742500px;}
.y140{bottom:667.668000px;}
.ye1{bottom:671.040000px;}
.y1e2{bottom:672.583500px;}
.y1aa{bottom:673.029000px;}
.y254{bottom:674.421000px;}
.y91{bottom:675.166500px;}
.y11{bottom:675.277500px;}
.ye0{bottom:675.547500px;}
.y235{bottom:680.517000px;}
.y2c{bottom:681.304500px;}
.y20c{bottom:681.994500px;}
.y114{bottom:682.558500px;}
.y62{bottom:684.675000px;}
.y13f{bottom:685.600500px;}
.y1e1{bottom:690.516000px;}
.y1a9{bottom:690.961500px;}
.y253{bottom:692.353500px;}
.y90{bottom:693.099000px;}
.y10{bottom:693.210000px;}
.ydf{bottom:693.481500px;}
.yab{bottom:694.654500px;}
.y234{bottom:698.449500px;}
.y2b{bottom:699.237000px;}
.y20b{bottom:699.928500px;}
.y1cd{bottom:700.363500px;}
.y61{bottom:702.607500px;}
.y13e{bottom:703.533000px;}
.y1e0{bottom:708.448500px;}
.y113{bottom:708.996000px;}
.y8f{bottom:711.031500px;}
.yf{bottom:711.142500px;}
.yde{bottom:711.414000px;}
.yaa{bottom:712.587000px;}
.y233{bottom:716.382000px;}
.y2a{bottom:717.169500px;}
.y20a{bottom:717.861000px;}
.y60{bottom:720.540000px;}
.y13d{bottom:721.465500px;}
.y1a8{bottom:726.033000px;}
.y1df{bottom:726.382500px;}
.y112{bottom:726.928500px;}
.y252{bottom:728.218500px;}
.y8e{bottom:728.965500px;}
.ye{bottom:729.076500px;}
.ydd{bottom:729.346500px;}
.y232{bottom:734.314500px;}
.y29{bottom:735.103500px;}
.y209{bottom:735.793500px;}
.y5f{bottom:738.474000px;}
.y13c{bottom:739.398000px;}
.y1a7{bottom:740.229000px;}
.y1de{bottom:744.315000px;}
.y111{bottom:744.861000px;}
.y251{bottom:746.151000px;}
.yd{bottom:747.009000px;}
.ydc{bottom:747.279000px;}
.ya9{bottom:751.111500px;}
.y231{bottom:752.248500px;}
.y5e{bottom:756.406500px;}
.y1dd{bottom:762.247500px;}
.y110{bottom:762.793500px;}
.y208{bottom:763.917000px;}
.y250{bottom:764.085000px;}
.yc{bottom:764.941500px;}
.y196{bottom:765.111000px;}
.ydb{bottom:765.211500px;}
.ya8{bottom:769.044000px;}
.y230{bottom:770.181000px;}
.y8d{bottom:770.571000px;}
.y5d{bottom:774.339000px;}
.y1cc{bottom:775.606500px;}
.y1dc{bottom:780.180000px;}
.y10f{bottom:780.726000px;}
.y207{bottom:781.849500px;}
.y24f{bottom:782.017500px;}
.yb{bottom:782.874000px;}
.yda{bottom:783.145500px;}
.y13b{bottom:786.117000px;}
.ya7{bottom:786.976500px;}
.y22f{bottom:788.113500px;}
.y1cb{bottom:789.804000px;}
.y5c{bottom:792.271500px;}
.y1db{bottom:798.112500px;}
.y10e{bottom:798.658500px;}
.y206{bottom:799.783500px;}
.y24e{bottom:799.950000px;}
.y13a{bottom:800.313000px;}
.ya{bottom:800.806500px;}
.yd9{bottom:801.078000px;}
.ya6{bottom:804.909000px;}
.y5b{bottom:810.204000px;}
.y1c0{bottom:814.686000px;}
.y10d{bottom:816.592500px;}
.y205{bottom:817.716000px;}
.y24d{bottom:817.882500px;}
.y9{bottom:818.739000px;}
.y22e{bottom:820.126500px;}
.y124{bottom:825.195000px;}
.y5a{bottom:828.138000px;}
.y8c{bottom:830.356500px;}
.y1da{bottom:831.160500px;}
.y10c{bottom:834.525000px;}
.y204{bottom:835.648500px;}
.y24c{bottom:835.815000px;}
.y22d{bottom:838.060500px;}
.yd8{bottom:842.140500px;}
.y59{bottom:846.070500px;}
.y8b{bottom:848.289000px;}
.ya5{bottom:851.299500px;}
.y10b{bottom:852.457500px;}
.y22c{bottom:855.993000px;}
.y203{bottom:863.772000px;}
.y8a{bottom:866.221500px;}
.ya4{bottom:869.854500px;}
.y10a{bottom:870.390000px;}
.y22b{bottom:873.925500px;}
.yd7{bottom:874.698000px;}
.y8{bottom:874.773000px;}
.y24b{bottom:877.047000px;}
.y16a{bottom:880.942500px;}
.y202{bottom:881.704500px;}
.y89{bottom:884.154000px;}
.y58{bottom:887.662500px;}
.y167{bottom:888.040500px;}
.y1d9{bottom:890.680500px;}
.y22a{bottom:891.858000px;}
.yd6{bottom:892.630500px;}
.y169{bottom:895.138500px;}
.y201{bottom:899.638500px;}
.y88{bottom:902.088000px;}
.y166{bottom:902.238000px;}
.y1d8{bottom:908.613000px;}
.y168{bottom:909.336000px;}
.yd5{bottom:910.564500px;}
.y7{bottom:910.638000px;}
.ya3{bottom:911.517000px;}
.y109{bottom:911.656500px;}
.y200{bottom:917.571000px;}
.y87{bottom:920.020500px;}
.y229{bottom:923.872500px;}
.y165{bottom:924.130500px;}
.y1d7{bottom:926.545500px;}
.yd4{bottom:928.497000px;}
.ya2{bottom:929.449500px;}
.y162{bottom:931.228500px;}
.y1ff{bottom:935.503500px;}
.y86{bottom:937.953000px;}
.y164{bottom:938.326500px;}
.y228{bottom:941.805000px;}
.y1d6{bottom:944.478000px;}
.y161{bottom:945.426000px;}
.y6{bottom:946.504500px;}
.y57{bottom:947.382000px;}
.y24a{bottom:949.908000px;}
.y163{bottom:952.524000px;}
.y1fe{bottom:953.436000px;}
.y85{bottom:955.885500px;}
.y227{bottom:959.737500px;}
.y1d5{bottom:962.412000px;}
.y5{bottom:964.437000px;}
.y108{bottom:964.570500px;}
.yd3{bottom:964.582500px;}
.y56{bottom:965.314500px;}
.y160{bottom:967.318500px;}
.y249{bottom:967.840500px;}
.y105{bottom:968.878500px;}
.y106{bottom:969.222000px;}
.y104{bottom:973.387500px;}
.y84{bottom:973.818000px;}
.y15d{bottom:974.416500px;}
.y226{bottom:977.670000px;}
.y1d4{bottom:980.344500px;}
.y15f{bottom:981.514500px;}
.y1fd{bottom:981.559500px;}
.y107{bottom:982.503000px;}
.y55{bottom:983.247000px;}
.y248{bottom:985.774500px;}
.y15c{bottom:988.614000px;}
.y83{bottom:991.750500px;}
.y225{bottom:995.602500px;}
.y15e{bottom:995.712000px;}
.y1d3{bottom:998.277000px;}
.y1fc{bottom:999.493500px;}
.y54{bottom:1001.181000px;}
.y247{bottom:1003.707000px;}
.y103{bottom:1006.969500px;}
.yd2{bottom:1007.362500px;}
.y82{bottom:1009.684500px;}
.y15b{bottom:1010.506500px;}
.y102{bottom:1011.135000px;}
.yd1{bottom:1011.870000px;}
.y4{bottom:1012.134000px;}
.y224{bottom:1013.536500px;}
.y1fb{bottom:1017.426000px;}
.y158{bottom:1017.604500px;}
.y53{bottom:1019.113500px;}
.y15a{bottom:1024.702500px;}
.y81{bottom:1027.617000px;}
.y157{bottom:1031.802000px;}
.y246{bottom:1033.594500px;}
.y100{bottom:1034.106000px;}
.ycf{bottom:1034.509500px;}
.y101{bottom:1034.577000px;}
.y1fa{bottom:1035.358500px;}
.yff{bottom:1038.271500px;}
.y159{bottom:1038.900000px;}
.y1d2{bottom:1039.828500px;}
.y52{bottom:1045.549500px;}
.y245{bottom:1051.527000px;}
.yd0{bottom:1053.190500px;}
.y156{bottom:1053.694500px;}
.yfd{bottom:1063.018500px;}
.y51{bottom:1063.482000px;}
.yfe{bottom:1063.831500px;}
.yce{bottom:1067.386500px;}
.yfc{bottom:1067.526000px;}
.y155{bottom:1067.890500px;}
.y244{bottom:1069.459500px;}
.ycd{bottom:1075.731000px;}
.y3{bottom:1078.083000px;}
.ycc{bottom:1080.238500px;}
.y80{bottom:1081.414500px;}
.y50{bottom:1081.416000px;}
.y243{bottom:1087.393500px;}
.y154{bottom:1097.629500px;}
.ycb{bottom:1098.147000px;}
.yfa{bottom:1098.210000px;}
.yfb{bottom:1098.552000px;}
.y7f{bottom:1099.347000px;}
.y4f{bottom:1099.348500px;}
.yca{bottom:1102.654500px;}
.yf9{bottom:1102.717500px;}
.y2{bottom:1110.960000px;}
.y153{bottom:1111.827000px;}
.y4e{bottom:1117.281000px;}
.y152{bottom:1126.023000px;}
.y4d{bottom:1135.213500px;}
.y151{bottom:1140.220500px;}
.y1{bottom:1189.350000px;}
.h17{height:0.597756px;}
.h29{height:16.287503px;}
.h28{height:21.928887px;}
.h2d{height:22.060778px;}
.h35{height:22.069818px;}
.h34{height:23.192399px;}
.h31{height:23.383952px;}
.h33{height:23.533121px;}
.h36{height:23.678194px;}
.h2e{height:26.868176px;}
.h32{height:28.479691px;}
.h13{height:29.457331px;}
.hf{height:31.382100px;}
.h18{height:31.893163px;}
.h8{height:34.287370px;}
.h2{height:35.865450px;}
.h2a{height:35.913271px;}
.h2f{height:40.402598px;}
.h7{height:42.380900px;}
.h1b{height:42.500452px;}
.h10{height:44.831700px;}
.h5{height:44.891476px;}
.hb{height:45.833296px;}
.h9{height:46.326090px;}
.ha{height:49.924915px;}
.h20{height:51.147331px;}
.h4{height:51.287808px;}
.hc{height:53.072100px;}
.hd{height:53.078100px;}
.he{height:57.381756px;}
.h12{height:57.387756px;}
.h14{height:58.179331px;}
.h1c{height:58.185331px;}
.h6{height:60.426194px;}
.h23{height:61.104090px;}
.h15{height:62.921476px;}
.h16{height:62.927476px;}
.h26{height:62.988090px;}
.h1d{height:64.356090px;}
.h1f{height:64.362090px;}
.h24{height:67.815331px;}
.h22{height:69.177331px;}
.h21{height:69.740100px;}
.h3{height:72.511265px;}
.h25{height:72.963331px;}
.h19{height:75.417756px;}
.h1e{height:76.215331px;}
.h11{height:80.159476px;}
.h2b{height:92.697271px;}
.h1a{height:159.105756px;}
.h27{height:225.882000px;}
.h30{height:237.920760px;}
.h2c{height:347.254140px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:354.177360px;}
.w4{width:354.177495px;}
.w2{width:361.411200px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x40{left:9.567436px;}
.x3f{left:12.636059px;}
.x51{left:14.210820px;}
.x3e{left:17.229189px;}
.x77{left:19.311750px;}
.x3d{left:26.415449px;}
.x3c{left:27.670349px;}
.x56{left:34.980480px;}
.x79{left:41.713380px;}
.x68{left:43.907790px;}
.x6f{left:46.348200px;}
.x83{left:49.631198px;}
.x41{left:52.093200px;}
.x7d{left:55.231605px;}
.x78{left:60.252660px;}
.x6e{left:63.342540px;}
.x59{left:65.588400px;}
.x5a{left:77.248560px;}
.x76{left:79.950645px;}
.x82{left:81.302468px;}
.x75{left:83.812995px;}
.x1{left:85.039500px;}
.x5{left:89.259000px;}
.x14{left:90.766500px;}
.x9{left:92.928000px;}
.x37{left:93.981000px;}
.x5d{left:96.196320px;}
.x4d{left:98.284500px;}
.xc{left:99.984000px;}
.x34{left:101.569500px;}
.x2{left:102.778500px;}
.x36{left:104.166000px;}
.x4b{left:108.339000px;}
.x32{left:110.097000px;}
.x13{left:111.933000px;}
.x22{left:113.451000px;}
.x1a{left:115.941000px;}
.x4e{left:118.785000px;}
.x6b{left:122.978250px;}
.x58{left:126.075480px;}
.x19{left:127.687500px;}
.x73{left:129.002490px;}
.x6c{left:130.994610px;}
.x6a{left:133.180890px;}
.x43{left:136.098000px;}
.x38{left:139.281000px;}
.x74{left:144.065655px;}
.x52{left:146.845140px;}
.x3{left:149.076000px;}
.x64{left:150.488940px;}
.x87{left:151.503290px;}
.x72{left:155.266470px;}
.x81{left:156.618292px;}
.x54{left:159.234060px;}
.x69{left:161.602530px;}
.x1b{left:163.510500px;}
.x5b{left:164.699760px;}
.x80{left:169.364047px;}
.x4f{left:171.258600px;}
.x1c{left:173.286000px;}
.x33{left:175.147500px;}
.x57{left:178.546200px;}
.x39{left:179.653500px;}
.xf{left:181.507500px;}
.x53{left:182.554380px;}
.x66{left:184.740660px;}
.x4c{left:192.366000px;}
.x63{left:194.214540px;}
.x60{left:199.680240px;}
.x5c{left:201.866520px;}
.x1d{left:204.099000px;}
.x3b{left:207.144000px;}
.x7f{left:209.339370px;}
.x7b{left:210.884310px;}
.x55{left:213.162300px;}
.x35{left:214.288500px;}
.x12{left:215.331000px;}
.x61{left:220.085520px;}
.x7e{left:222.471360px;}
.x7{left:228.888000px;}
.x3a{left:230.365500px;}
.x62{left:239.397660px;}
.x85{left:243.317328px;}
.x86{left:245.610715px;}
.x6d{left:249.053730px;}
.x7c{left:250.666515px;}
.x1e{left:252.084000px;}
.x65{left:255.430380px;}
.x15{left:257.632500px;}
.x10{left:262.639500px;}
.x67{left:264.722070px;}
.x5e{left:265.997400px;}
.x4{left:271.707000px;}
.x70{left:273.454380px;}
.x84{left:274.806203px;}
.x44{left:279.435000px;}
.x16{left:280.962000px;}
.x7a{left:290.062485px;}
.x1f{left:294.333000px;}
.x6{left:302.013000px;}
.x20{left:307.615500px;}
.x17{left:311.289000px;}
.x71{left:314.395290px;}
.x5f{left:316.646220px;}
.x11{left:324.838500px;}
.x50{left:342.152820px;}
.x8{left:345.714000px;}
.x21{left:406.422000px;}
.x18{left:411.366000px;}
.xa{left:453.928500px;}
.xe{left:460.651500px;}
.xd{left:461.817000px;}
.x45{left:466.834500px;}
.xb{left:468.873000px;}
.x2f{left:477.360000px;}
.x2d{left:478.594500px;}
.x88{left:484.641000px;}
.x2a{left:496.407000px;}
.x42{left:501.348000px;}
.x23{left:511.543500px;}
.x27{left:514.035000px;}
.x2e{left:519.609000px;}
.x24{left:521.320500px;}
.x26{left:525.781500px;}
.x2b{left:544.822500px;}
.x25{left:554.320500px;}
.x28{left:561.604500px;}
.x2c{left:566.890500px;}
.x46{left:576.811500px;}
.x48{left:633.550500px;}
.x47{left:646.906500px;}
.x29{left:665.244000px;}
.x4a{left:712.681500px;}
.x30{left:724.270500px;}
.x49{left:734.425500px;}
.x31{left:758.908500px;}
@media print{
.vc{vertical-align:-13.285333pt;}
.v1{vertical-align:-7.973333pt;}
.v5{vertical-align:-5.344000pt;}
.v11{vertical-align:-1.637333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.656000pt;}
.v14{vertical-align:5.168000pt;}
.vf{vertical-align:6.842667pt;}
.vb{vertical-align:8.058667pt;}
.v9{vertical-align:10.629333pt;}
.v13{vertical-align:13.136000pt;}
.ve{vertical-align:14.810667pt;}
.v8{vertical-align:16.026667pt;}
.v2{vertical-align:19.280000pt;}
.v7{vertical-align:25.530667pt;}
.v6{vertical-align:31.349333pt;}
.v15{vertical-align:32.416000pt;}
.v10{vertical-align:34.096000pt;}
.v12{vertical-align:35.306667pt;}
.v16{vertical-align:38.672000pt;}
.vd{vertical-align:41.562667pt;}
.v4{vertical-align:50.474667pt;}
.va{vertical-align:124.864000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.000058pt;}
.ls6d{letter-spacing:0.000278pt;}
.ls89{letter-spacing:0.000425pt;}
.ls79{letter-spacing:0.000479pt;}
.lsa{letter-spacing:0.000681pt;}
.ls35{letter-spacing:0.000687pt;}
.ls4a{letter-spacing:0.000910pt;}
.ls81{letter-spacing:0.001799pt;}
.ls8c{letter-spacing:0.001995pt;}
.ls2f{letter-spacing:0.002489pt;}
.ls6e{letter-spacing:0.002491pt;}
.ls9{letter-spacing:0.002906pt;}
.ls48{letter-spacing:0.003033pt;}
.lsb5{letter-spacing:0.003118pt;}
.ls4e{letter-spacing:0.003310pt;}
.ls5a{letter-spacing:0.003733pt;}
.lsb4{letter-spacing:0.004105pt;}
.ls76{letter-spacing:0.004777pt;}
.ls55{letter-spacing:0.005138pt;}
.ls3e{letter-spacing:0.006015pt;}
.ls60{letter-spacing:0.215286pt;}
.ls32{letter-spacing:0.412788pt;}
.ls70{letter-spacing:1.333099pt;}
.ls72{letter-spacing:1.334244pt;}
.ls86{letter-spacing:1.338433pt;}
.ls2a{letter-spacing:1.900168pt;}
.lsa4{letter-spacing:1.904681pt;}
.ls26{letter-spacing:1.905501pt;}
.ls28{letter-spacing:1.910015pt;}
.ls4c{letter-spacing:2.651354pt;}
.ls87{letter-spacing:2.651839pt;}
.ls64{letter-spacing:2.654544pt;}
.ls75{letter-spacing:2.654708pt;}
.ls27{letter-spacing:2.655879pt;}
.ls2b{letter-spacing:2.656501pt;}
.ls7f{letter-spacing:2.656687pt;}
.lsb{letter-spacing:2.656689pt;}
.ls97{letter-spacing:2.657014pt;}
.ls71{letter-spacing:2.657173pt;}
.ls4b{letter-spacing:2.657773pt;}
.ls98{letter-spacing:2.658529pt;}
.lsa3{letter-spacing:2.661213pt;}
.ls47{letter-spacing:2.662022pt;}
.ls61{letter-spacing:2.871286pt;}
.ls57{letter-spacing:3.060980pt;}
.ls36{letter-spacing:5.313316pt;}
.ls43{letter-spacing:5.793503pt;}
.ls49{letter-spacing:7.269675pt;}
.ls8{letter-spacing:7.375235pt;}
.ls41{letter-spacing:7.380568pt;}
.ls56{letter-spacing:7.381391pt;}
.ls2{letter-spacing:7.529433pt;}
.ls39{letter-spacing:8.373759pt;}
.lsb0{letter-spacing:8.850079pt;}
.ls5b{letter-spacing:8.855412pt;}
.ls54{letter-spacing:11.803145pt;}
.ls12{letter-spacing:11.807016pt;}
.lsa7{letter-spacing:11.808479pt;}
.ls53{letter-spacing:11.810906pt;}
.lsf{letter-spacing:11.812349pt;}
.lsb8{letter-spacing:12.542275pt;}
.lsbc{letter-spacing:12.547608pt;}
.lsbb{letter-spacing:13.560941pt;}
.ls29{letter-spacing:14.738906pt;}
.ls25{letter-spacing:14.754195pt;}
.lsad{letter-spacing:14.754906pt;}
.ls92{letter-spacing:14.755118pt;}
.lsac{letter-spacing:14.755733pt;}
.ls23{letter-spacing:14.756984pt;}
.lsa0{letter-spacing:14.757611pt;}
.ls11{letter-spacing:14.757812pt;}
.ls83{letter-spacing:14.760239pt;}
.ls14{letter-spacing:14.762313pt;}
.ls7d{letter-spacing:14.762318pt;}
.lsba{letter-spacing:15.048050pt;}
.ls1{letter-spacing:15.050792pt;}
.lsb9{letter-spacing:15.053383pt;}
.ls0{letter-spacing:15.056125pt;}
.ls31{letter-spacing:15.068800pt;}
.ls9d{letter-spacing:15.149573pt;}
.ls8b{letter-spacing:16.285573pt;}
.ls6a{letter-spacing:16.532984pt;}
.ls7c{letter-spacing:16.662015pt;}
.ls22{letter-spacing:16.667348pt;}
.lse{letter-spacing:16.863651pt;}
.ls51{letter-spacing:16.971145pt;}
.ls44{letter-spacing:17.346906pt;}
.ls45{letter-spacing:17.349812pt;}
.ls8e{letter-spacing:17.373784pt;}
.lsb6{letter-spacing:17.410529pt;}
.ls7e{letter-spacing:17.411878pt;}
.ls84{letter-spacing:17.414020pt;}
.ls99{letter-spacing:17.414347pt;}
.ls9a{letter-spacing:17.415862pt;}
.ls5e{letter-spacing:17.417211pt;}
.ls37{letter-spacing:17.417761pt;}
.ls34{letter-spacing:17.419354pt;}
.lsa2{letter-spacing:17.419680pt;}
.ls13{letter-spacing:17.657067pt;}
.ls30{letter-spacing:17.723354pt;}
.ls10{letter-spacing:17.823646pt;}
.ls2d{letter-spacing:18.452984pt;}
.ls2c{letter-spacing:18.456451pt;}
.ls69{letter-spacing:19.182544pt;}
.lsd{letter-spacing:19.520689pt;}
.ls50{letter-spacing:19.632689pt;}
.ls40{letter-spacing:19.901510pt;}
.ls42{letter-spacing:19.906906pt;}
.ls2e{letter-spacing:19.927757pt;}
.lsa6{letter-spacing:19.963426pt;}
.ls5c{letter-spacing:20.051733pt;}
.ls8f{letter-spacing:20.363356pt;}
.ls5d{letter-spacing:20.368689pt;}
.ls33{letter-spacing:20.550020pt;}
.ls17{letter-spacing:20.556169pt;}
.ls21{letter-spacing:20.674906pt;}
.ls5f{letter-spacing:20.767646pt;}
.ls59{letter-spacing:21.323354pt;}
.ls6b{letter-spacing:21.828980pt;}
.ls9b{letter-spacing:21.846347pt;}
.ls9c{letter-spacing:21.847862pt;}
.ls20{letter-spacing:22.361761pt;}
.ls67{letter-spacing:22.456451pt;}
.ls3f{letter-spacing:22.560689pt;}
.lsb3{letter-spacing:22.918093pt;}
.ls6{letter-spacing:23.170424pt;}
.ls4f{letter-spacing:23.227092pt;}
.ls1b{letter-spacing:23.383757pt;}
.ls1c{letter-spacing:24.220861pt;}
.ls19{letter-spacing:24.221784pt;}
.ls1a{letter-spacing:24.223651pt;}
.lsb2{letter-spacing:24.458551pt;}
.ls9f{letter-spacing:24.463884pt;}
.ls3d{letter-spacing:24.631757pt;}
.ls68{letter-spacing:25.120689pt;}
.ls24{letter-spacing:25.631016pt;}
.ls1e{letter-spacing:26.128681pt;}
.ls16{letter-spacing:26.134022pt;}
.ls3c{letter-spacing:26.312451pt;}
.ls3a{letter-spacing:26.314318pt;}
.ls15{letter-spacing:26.538313pt;}
.ls66{letter-spacing:26.714318pt;}
.ls63{letter-spacing:26.715145pt;}
.ls96{letter-spacing:26.827354pt;}
.ls8d{letter-spacing:26.832687pt;}
.ls3b{letter-spacing:27.695646pt;}
.ls52{letter-spacing:28.516980pt;}
.ls4{letter-spacing:28.871507pt;}
.ls65{letter-spacing:29.374544pt;}
.ls18{letter-spacing:29.519016pt;}
.ls46{letter-spacing:31.071016pt;}
.lsb7{letter-spacing:31.788745pt;}
.ls5{letter-spacing:34.980349pt;}
.ls1d{letter-spacing:35.193682pt;}
.ls1f{letter-spacing:35.199016pt;}
.lsab{letter-spacing:35.447862pt;}
.ls7{letter-spacing:36.671016pt;}
.lsc{letter-spacing:37.154906pt;}
.ls95{letter-spacing:37.749218pt;}
.ls73{letter-spacing:38.635354pt;}
.ls85{letter-spacing:38.640687pt;}
.lsaa{letter-spacing:41.387680pt;}
.ls80{letter-spacing:41.584687pt;}
.ls77{letter-spacing:41.590020pt;}
.ls6f{letter-spacing:44.704687pt;}
.ls9e{letter-spacing:45.152687pt;}
.ls6c{letter-spacing:45.595354pt;}
.lsa9{letter-spacing:51.068745pt;}
.ls93{letter-spacing:52.940745pt;}
.ls7a{letter-spacing:53.120278pt;}
.ls74{letter-spacing:54.309812pt;}
.lsa5{letter-spacing:54.332745pt;}
.lsae{letter-spacing:58.770079pt;}
.lsb1{letter-spacing:68.002079pt;}
.lsa8{letter-spacing:76.775862pt;}
.lsa1{letter-spacing:82.715680pt;}
.ls7b{letter-spacing:90.686400pt;}
.ls78{letter-spacing:94.448278pt;}
.ls58{letter-spacing:95.625067pt;}
.ls88{letter-spacing:106.238400pt;}
.ls8a{letter-spacing:138.157573pt;}
.ls90{letter-spacing:199.799412pt;}
.lsaf{letter-spacing:212.537067pt;}
.ls82{letter-spacing:234.080687pt;}
.ls4d{letter-spacing:275.122079pt;}
.ls94{letter-spacing:367.715733pt;}
.ls62{letter-spacing:436.866079pt;}
.ls91{letter-spacing:439.152687pt;}
.ws5d{word-spacing:-53.133867pt;}
.wscd{word-spacing:-42.359791pt;}
.ws94{word-spacing:-41.444416pt;}
.ws13e{word-spacing:-41.338148pt;}
.wsc9{word-spacing:-38.362652pt;}
.wsed{word-spacing:-37.990715pt;}
.wse9{word-spacing:-36.905034pt;}
.wsd7{word-spacing:-35.855298pt;}
.ws9f{word-spacing:-34.611401pt;}
.wsb9{word-spacing:-34.483879pt;}
.ws16f{word-spacing:-27.151406pt;}
.wsb4{word-spacing:-26.561620pt;}
.ws89{word-spacing:-25.791179pt;}
.wsf5{word-spacing:-25.783137pt;}
.wsf6{word-spacing:-25.777803pt;}
.wse2{word-spacing:-25.758899pt;}
.ws90{word-spacing:-25.738045pt;}
.ws120{word-spacing:-22.575574pt;}
.wsc0{word-spacing:-22.425964pt;}
.wscb{word-spacing:-19.840186pt;}
.ws6b{word-spacing:-14.765902pt;}
.wsc6{word-spacing:-14.712768pt;}
.ws10f{word-spacing:-14.659634pt;}
.ws13b{word-spacing:-14.606500pt;}
.ws4c{word-spacing:-14.393964pt;}
.wsdb{word-spacing:-14.340831pt;}
.wsdc{word-spacing:-14.287697pt;}
.ws44{word-spacing:-14.128295pt;}
.ws115{word-spacing:-14.075161pt;}
.ws35{word-spacing:-14.022027pt;}
.ws64{word-spacing:-13.968894pt;}
.ws1f{word-spacing:-13.862626pt;}
.ws22{word-spacing:-13.756358pt;}
.ws42{word-spacing:-13.703224pt;}
.ws104{word-spacing:-13.650090pt;}
.wsa7{word-spacing:-13.509254pt;}
.ws6d{word-spacing:-13.490689pt;}
.ws21{word-spacing:-13.331287pt;}
.wsd8{word-spacing:-13.278153pt;}
.wsd6{word-spacing:-13.270111pt;}
.wsee{word-spacing:-13.065618pt;}
.ws37{word-spacing:-13.012484pt;}
.ws1a8{word-spacing:-12.959350pt;}
.ws13c{word-spacing:-12.853082pt;}
.ws55{word-spacing:-12.746815pt;}
.wsa2{word-spacing:-12.736354pt;}
.ws7f{word-spacing:-12.640547pt;}
.ws13a{word-spacing:-12.534279pt;}
.ws4a{word-spacing:-12.481145pt;}
.ws6e{word-spacing:-12.433325pt;}
.ws143{word-spacing:-12.321744pt;}
.ws14d{word-spacing:-12.215476pt;}
.ws168{word-spacing:-12.114522pt;}
.ws84{word-spacing:-12.056074pt;}
.wsaf{word-spacing:-11.949807pt;}
.ws31{word-spacing:-11.896673pt;}
.wsa3{word-spacing:-11.843539pt;}
.ws153{word-spacing:-11.737271pt;}
.wsb2{word-spacing:-11.703220pt;}
.ws43{word-spacing:-11.684137pt;}
.ws80{word-spacing:-11.631003pt;}
.ws117{word-spacing:-11.577870pt;}
.wsb{word-spacing:-11.530049pt;}
.ws39{word-spacing:-11.471602pt;}
.ws83{word-spacing:-11.418468pt;}
.ws11b{word-spacing:-11.396180pt;}
.ws6f{word-spacing:-11.365334pt;}
.wsc8{word-spacing:-11.312200pt;}
.ws20{word-spacing:-11.259066pt;}
.ws151{word-spacing:-11.152799pt;}
.ws36{word-spacing:-11.099665pt;}
.wsf9{word-spacing:-11.046531pt;}
.ws150{word-spacing:-10.993397pt;}
.ws144{word-spacing:-10.940263pt;}
.ws1ac{word-spacing:-10.786175pt;}
.ws152{word-spacing:-10.780862pt;}
.wse6{word-spacing:-10.727728pt;}
.ws102{word-spacing:-10.674594pt;}
.wsfa{word-spacing:-10.621460pt;}
.ws16c{word-spacing:-10.573639pt;}
.ws49{word-spacing:-10.568326pt;}
.ws13d{word-spacing:-10.515192pt;}
.ws140{word-spacing:-10.461022pt;}
.ws3b{word-spacing:-10.408924pt;}
.ws59{word-spacing:-10.355791pt;}
.ws3f{word-spacing:-10.302657pt;}
.ws3d{word-spacing:-10.249523pt;}
.ws2d{word-spacing:-10.196389pt;}
.ws67{word-spacing:-10.143255pt;}
.ws142{word-spacing:-10.090121pt;}
.ws1a7{word-spacing:-10.036987pt;}
.ws17c{word-spacing:-9.985893pt;}
.wsbf{word-spacing:-9.983854pt;}
.ws2a{word-spacing:-9.930720pt;}
.wsf0{word-spacing:-9.877586pt;}
.ws1b6{word-spacing:-9.829765pt;}
.ws7d{word-spacing:-9.824452pt;}
.ws149{word-spacing:-9.823414pt;}
.ws18{word-spacing:-9.771318pt;}
.ws130{word-spacing:-9.738400pt;}
.ws1ab{word-spacing:-9.723498pt;}
.ws108{word-spacing:-9.695892pt;}
.ws1b7{word-spacing:-9.682072pt;}
.ws12{word-spacing:-9.670364pt;}
.ws79{word-spacing:-9.665050pt;}
.ws138{word-spacing:-9.653385pt;}
.ws169{word-spacing:-9.649710pt;}
.ws1bf{word-spacing:-9.510962pt;}
.ws118{word-spacing:-9.505649pt;}
.ws1b{word-spacing:-9.399381pt;}
.ws30{word-spacing:-9.346247pt;}
.wsfc{word-spacing:-9.293113pt;}
.ws10d{word-spacing:-9.239979pt;}
.ws17d{word-spacing:-9.192159pt;}
.wsde{word-spacing:-9.186846pt;}
.wsdd{word-spacing:-9.181877pt;}
.ws1d{word-spacing:-9.133712pt;}
.ws119{word-spacing:-9.100792pt;}
.ws1a9{word-spacing:-9.085891pt;}
.ws23{word-spacing:-9.080578pt;}
.ws81{word-spacing:-8.974310pt;}
.ws93{word-spacing:-8.922367pt;}
.ws95{word-spacing:-8.921176pt;}
.ws4{word-spacing:-8.868042pt;}
.ws99{word-spacing:-8.862148pt;}
.wsbc{word-spacing:-8.859021pt;}
.wsc4{word-spacing:-8.855958pt;}
.wsdf{word-spacing:-8.853687pt;}
.ws2c{word-spacing:-8.814908pt;}
.ws111{word-spacing:-8.761775pt;}
.ws68{word-spacing:-8.708641pt;}
.ws6c{word-spacing:-8.660820pt;}
.wsa5{word-spacing:-8.655507pt;}
.ws3e{word-spacing:-8.602373pt;}
.ws73{word-spacing:-8.496105pt;}
.wsfb{word-spacing:-8.442971pt;}
.ws3a{word-spacing:-8.336704pt;}
.ws58{word-spacing:-8.283570pt;}
.wsf3{word-spacing:-8.255612pt;}
.wsf4{word-spacing:-8.230436pt;}
.ws7a{word-spacing:-8.177302pt;}
.ws13{word-spacing:-8.129482pt;}
.ws7e{word-spacing:-8.124168pt;}
.ws72{word-spacing:-8.071034pt;}
.ws167{word-spacing:-8.017900pt;}
.ws135{word-spacing:-7.964767pt;}
.wsd9{word-spacing:-7.911633pt;}
.wsf1{word-spacing:-7.865583pt;}
.wsd{word-spacing:-7.863812pt;}
.wsf2{word-spacing:-7.858499pt;}
.ws98{word-spacing:-7.805365pt;}
.wsc3{word-spacing:-7.783347pt;}
.wsb3{word-spacing:-7.752231pt;}
.ws7b{word-spacing:-7.699097pt;}
.ws197{word-spacing:-7.645963pt;}
.ws92{word-spacing:-7.592830pt;}
.ws1e{word-spacing:-7.539696pt;}
.ws141{word-spacing:-7.529264pt;}
.ws109{word-spacing:-7.528025pt;}
.ws121{word-spacing:-7.523504pt;}
.ws123{word-spacing:-7.523078pt;}
.ws124{word-spacing:-7.517744pt;}
.ws9{word-spacing:-7.438741pt;}
.ws5f{word-spacing:-7.433428pt;}
.wseb{word-spacing:-7.380294pt;}
.wsec{word-spacing:-7.371006pt;}
.ws7{word-spacing:-7.332474pt;}
.wsac{word-spacing:-7.327160pt;}
.ws11a{word-spacing:-7.315489pt;}
.ws110{word-spacing:-7.220892pt;}
.ws60{word-spacing:-7.167759pt;}
.wsda{word-spacing:-7.114625pt;}
.ws27{word-spacing:-7.061491pt;}
.ws198{word-spacing:-7.013670pt;}
.wsad{word-spacing:-7.008357pt;}
.ws131{word-spacing:-6.932924pt;}
.ws133{word-spacing:-6.890417pt;}
.ws1b5{word-spacing:-6.878366pt;}
.ws8{word-spacing:-6.748001pt;}
.wsaa{word-spacing:-6.689554pt;}
.wsab{word-spacing:-6.640931pt;}
.wsa4{word-spacing:-6.636420pt;}
.ws1aa{word-spacing:-6.588599pt;}
.ws10b{word-spacing:-6.583286pt;}
.wsb8{word-spacing:-6.530152pt;}
.wsba{word-spacing:-6.504543pt;}
.ws136{word-spacing:-6.477018pt;}
.ws1a3{word-spacing:-6.423884pt;}
.ws85{word-spacing:-6.370751pt;}
.ws45{word-spacing:-6.317617pt;}
.ws66{word-spacing:-6.264483pt;}
.ws38{word-spacing:-6.211349pt;}
.ws193{word-spacing:-6.152770pt;}
.ws6{word-spacing:-6.110395pt;}
.ws57{word-spacing:-5.998814pt;}
.ws116{word-spacing:-5.945680pt;}
.wsa1{word-spacing:-5.892546pt;}
.ws9e{word-spacing:-5.872187pt;}
.ws114{word-spacing:-5.839412pt;}
.wsc7{word-spacing:-5.786278pt;}
.ws24{word-spacing:-5.733144pt;}
.ws10{word-spacing:-5.685324pt;}
.ws4f{word-spacing:-5.680010pt;}
.ws70{word-spacing:-5.626876pt;}
.ws10c{word-spacing:-5.573743pt;}
.wsea{word-spacing:-5.520609pt;}
.ws154{word-spacing:-5.467475pt;}
.ws2e{word-spacing:-5.414341pt;}
.ws28{word-spacing:-5.361207pt;}
.ws4d{word-spacing:-5.308073pt;}
.ws82{word-spacing:-5.201806pt;}
.ws4b{word-spacing:-5.148672pt;}
.wsef{word-spacing:-5.095538pt;}
.ws63{word-spacing:-5.042404pt;}
.wsa6{word-spacing:-4.989270pt;}
.ws26{word-spacing:-4.936136pt;}
.ws190{word-spacing:-4.782048pt;}
.wsfe{word-spacing:-4.776735pt;}
.ws32{word-spacing:-4.723601pt;}
.ws54{word-spacing:-4.670467pt;}
.ws181{word-spacing:-4.616770pt;}
.wse5{word-spacing:-4.511065pt;}
.ws134{word-spacing:-4.467507pt;}
.ws51{word-spacing:-4.404798pt;}
.ws18d{word-spacing:-4.351664pt;}
.ws19{word-spacing:-4.298530pt;}
.ws182{word-spacing:-4.250709pt;}
.ws52{word-spacing:-4.245396pt;}
.ws6a{word-spacing:-4.192262pt;}
.wsc2{word-spacing:-4.126153pt;}
.ws199{word-spacing:-4.091308pt;}
.ws5a{word-spacing:-4.085994pt;}
.wsb6{word-spacing:-3.873459pt;}
.ws1b3{word-spacing:-3.829533pt;}
.ws78{word-spacing:-3.820325pt;}
.ws5e{word-spacing:-3.767191pt;}
.ws62{word-spacing:-3.660923pt;}
.ws14e{word-spacing:-3.607790pt;}
.ws17f{word-spacing:-3.554656pt;}
.ws1b4{word-spacing:-3.506835pt;}
.ws18e{word-spacing:-3.448388pt;}
.ws8b{word-spacing:-3.395254pt;}
.ws8a{word-spacing:-3.379464pt;}
.ws53{word-spacing:-3.342120pt;}
.wsd2{word-spacing:-3.288986pt;}
.ws3c{word-spacing:-3.235852pt;}
.ws18f{word-spacing:-3.188032pt;}
.ws2f{word-spacing:-3.182719pt;}
.ws9d{word-spacing:-3.173687pt;}
.ws105{word-spacing:-3.129585pt;}
.ws96{word-spacing:-3.086455pt;}
.ws97{word-spacing:-3.076451pt;}
.ws8d{word-spacing:-3.023317pt;}
.ws11{word-spacing:-2.922363pt;}
.ws25{word-spacing:-2.917049pt;}
.ws71{word-spacing:-2.863915pt;}
.ws1a{word-spacing:-2.810782pt;}
.ws4e{word-spacing:-2.757648pt;}
.ws5c{word-spacing:-2.704514pt;}
.ws101{word-spacing:-2.651380pt;}
.wsd0{word-spacing:-2.545112pt;}
.ws2b{word-spacing:-2.491978pt;}
.wsc{word-spacing:-2.391024pt;}
.ws14f{word-spacing:-2.226309pt;}
.wse{word-spacing:-2.178489pt;}
.ws185{word-spacing:-2.086020pt;}
.wsd1{word-spacing:-2.066907pt;}
.ws74{word-spacing:-1.960640pt;}
.wsa8{word-spacing:-1.918817pt;}
.wsa9{word-spacing:-1.907506pt;}
.ws8c{word-spacing:-1.694970pt;}
.ws7c{word-spacing:-1.588703pt;}
.wse7{word-spacing:-1.482435pt;}
.ws77{word-spacing:-1.269899pt;}
.ws34{word-spacing:-1.216766pt;}
.wsfd{word-spacing:-1.163632pt;}
.ws46{word-spacing:-1.110498pt;}
.ws1be{word-spacing:-1.057364pt;}
.ws8e{word-spacing:-1.004230pt;}
.ws5b{word-spacing:-0.951096pt;}
.ws194{word-spacing:-0.844828pt;}
.ws19d{word-spacing:-0.738561pt;}
.ws29{word-spacing:-0.685427pt;}
.ws16e{word-spacing:-0.632293pt;}
.ws86{word-spacing:-0.526025pt;}
.ws33{word-spacing:-0.472891pt;}
.ws1c{word-spacing:-0.419758pt;}
.ws41{word-spacing:-0.313490pt;}
.ws15b{word-spacing:-0.260356pt;}
.ws75{word-spacing:-0.207222pt;}
.ws1bd{word-spacing:-0.085420pt;}
.ws14{word-spacing:-0.076513pt;}
.ws9a{word-spacing:-0.053134pt;}
.ws11e{word-spacing:-0.042507pt;}
.wsb1{word-spacing:-0.037194pt;}
.ws12a{word-spacing:-0.030212pt;}
.ws126{word-spacing:-0.028502pt;}
.ws47{word-spacing:0.000000pt;}
.ws56{word-spacing:0.058447pt;}
.wsc1{word-spacing:0.111581pt;}
.ws48{word-spacing:0.164715pt;}
.ws1a0{word-spacing:0.270983pt;}
.ws184{word-spacing:0.318803pt;}
.ws61{word-spacing:0.324117pt;}
.ws183{word-spacing:0.358379pt;}
.wsf{word-spacing:0.478205pt;}
.ws1bc{word-spacing:0.536652pt;}
.ws76{word-spacing:0.589786pt;}
.ws139{word-spacing:0.696054pt;}
.wse8{word-spacing:0.908589pt;}
.ws10e{word-spacing:0.961723pt;}
.ws14c{word-spacing:1.227392pt;}
.ws19c{word-spacing:1.333660pt;}
.ws158{word-spacing:1.864999pt;}
.ws91{word-spacing:1.971266pt;}
.ws178{word-spacing:2.096866pt;}
.ws179{word-spacing:2.715141pt;}
.ws69{word-spacing:2.821408pt;}
.ws137{word-spacing:3.087078pt;}
.ws112{word-spacing:3.193345pt;}
.ws180{word-spacing:3.246479pt;}
.ws195{word-spacing:3.459015pt;}
.ws1a6{word-spacing:4.256023pt;}
.ws113{word-spacing:4.309157pt;}
.ws1c6{word-spacing:4.468558pt;}
.ws187{word-spacing:4.521692pt;}
.ws15e{word-spacing:4.569513pt;}
.ws103{word-spacing:4.840495pt;}
.ws1c2{word-spacing:5.053031pt;}
.ws15d{word-spacing:5.100851pt;}
.ws100{word-spacing:5.212432pt;}
.wsd5{word-spacing:5.283117pt;}
.ws65{word-spacing:5.318700pt;}
.ws159{word-spacing:5.424968pt;}
.ws15c{word-spacing:5.531236pt;}
.ws17b{word-spacing:5.956306pt;}
.ws14b{word-spacing:6.168842pt;}
.ws16b{word-spacing:6.221976pt;}
.ws196{word-spacing:6.753314pt;}
.wse4{word-spacing:7.284653pt;}
.ws18a{word-spacing:7.332474pt;}
.ws148{word-spacing:7.459394pt;}
.ws1c9{word-spacing:7.497189pt;}
.ws166{word-spacing:7.762858pt;}
.ws177{word-spacing:7.810678pt;}
.wsa{word-spacing:7.863812pt;}
.ws189{word-spacing:7.937132pt;}
.ws18b{word-spacing:7.975393pt;}
.ws146{word-spacing:8.132867pt;}
.ws1c1{word-spacing:8.134795pt;}
.wsff{word-spacing:8.400464pt;}
.ws16a{word-spacing:8.453598pt;}
.ws147{word-spacing:8.620326pt;}
.wsbd{word-spacing:8.801984pt;}
.ws16d{word-spacing:8.926490pt;}
.wsbe{word-spacing:9.622543pt;}
.ws186{word-spacing:9.781945pt;}
.ws1b8{word-spacing:9.941346pt;}
.ws1c4{word-spacing:10.047614pt;}
.ws19e{word-spacing:10.254836pt;}
.ws8f{word-spacing:10.578953pt;}
.ws173{word-spacing:11.004024pt;}
.wscc{word-spacing:11.742585pt;}
.wsb7{word-spacing:12.013567pt;}
.ws1ba{word-spacing:12.080169pt;}
.ws162{word-spacing:12.119835pt;}
.ws17a{word-spacing:12.172969pt;}
.ws40{word-spacing:12.491772pt;}
.ws10a{word-spacing:12.497117pt;}
.ws1bb{word-spacing:12.704308pt;}
.ws17e{word-spacing:13.076245pt;}
.ws1c8{word-spacing:13.235646pt;}
.ws172{word-spacing:13.288780pt;}
.ws174{word-spacing:13.395048pt;}
.ws132{word-spacing:13.517290pt;}
.ws19f{word-spacing:14.080475pt;}
.ws1c5{word-spacing:14.298324pt;}
.ws191{word-spacing:14.404591pt;}
.wsae{word-spacing:14.550011pt;}
.wsd3{word-spacing:14.696608pt;}
.wsb0{word-spacing:14.718081pt;}
.ws0{word-spacing:15.005042pt;}
.ws1{word-spacing:15.009864pt;}
.ws128{word-spacing:16.306893pt;}
.ws192{word-spacing:16.317410pt;}
.ws171{word-spacing:16.476812pt;}
.wsd4{word-spacing:17.094018pt;}
.ws107{word-spacing:17.300430pt;}
.ws161{word-spacing:18.283364pt;}
.wse3{word-spacing:18.331768pt;}
.ws14a{word-spacing:18.495899pt;}
.wsbb{word-spacing:18.596853pt;}
.ws9b{word-spacing:18.602167pt;}
.ws129{word-spacing:18.807649pt;}
.ws127{word-spacing:18.808404pt;}
.ws12f{word-spacing:18.808636pt;}
.ws176{word-spacing:19.393861pt;}
.wsa0{word-spacing:19.659531pt;}
.wse0{word-spacing:20.045783pt;}
.ws1a5{word-spacing:20.084602pt;}
.ws1a1{word-spacing:20.143049pt;}
.wsb5{word-spacing:20.297137pt;}
.ws5{word-spacing:20.986995pt;}
.ws175{word-spacing:21.048462pt;}
.ws1a4{word-spacing:21.829279pt;}
.ws16{word-spacing:21.944287pt;}
.ws15f{word-spacing:22.055868pt;}
.ws3{word-spacing:22.252612pt;}
.ws1b9{word-spacing:23.118545pt;}
.wsf8{word-spacing:23.331682pt;}
.ws188{word-spacing:23.437349pt;}
.ws87{word-spacing:23.846639pt;}
.ws170{word-spacing:24.016508pt;}
.ws9c{word-spacing:24.175909pt;}
.ws1b0{word-spacing:24.335311pt;}
.ws12d{word-spacing:25.367739pt;}
.ws1ae{word-spacing:25.403302pt;}
.ws1af{word-spacing:26.519113pt;}
.ws1a2{word-spacing:27.847460pt;}
.ws15a{word-spacing:27.900593pt;}
.ws50{word-spacing:28.003782pt;}
.ws88{word-spacing:28.798556pt;}
.ws163{word-spacing:31.301161pt;}
.ws15{word-spacing:32.783596pt;}
.ws155{word-spacing:34.382925pt;}
.ws19a{word-spacing:34.590147pt;}
.ws2{word-spacing:35.532586pt;}
.ws157{word-spacing:37.464689pt;}
.ws1c0{word-spacing:39.850400pt;}
.ws1b1{word-spacing:40.966211pt;}
.ws1c3{word-spacing:42.023079pt;}
.ws18c{word-spacing:43.681352pt;}
.ws1b2{word-spacing:44.531494pt;}
.ws1c7{word-spacing:45.695125pt;}
.ws19b{word-spacing:45.700439pt;}
.ws165{word-spacing:45.907661pt;}
.ws164{word-spacing:46.497447pt;}
.ws1ad{word-spacing:47.985195pt;}
.wse1{word-spacing:58.406018pt;}
.ws156{word-spacing:60.205984pt;}
.wsf7{word-spacing:61.705016pt;}
.ws11d{word-spacing:96.361289pt;}
.ws160{word-spacing:97.080888pt;}
.ws106{word-spacing:100.851572pt;}
.wsca{word-spacing:102.363768pt;}
.ws13f{word-spacing:104.934180pt;}
.ws12c{word-spacing:110.511099pt;}
.ws17{word-spacing:121.426237pt;}
.ws11c{word-spacing:124.305936pt;}
.ws125{word-spacing:146.737830pt;}
.ws122{word-spacing:156.647163pt;}
.ws11f{word-spacing:176.315009pt;}
.ws145{word-spacing:201.826961pt;}
.wscf{word-spacing:251.323189pt;}
.ws12e{word-spacing:301.459492pt;}
.wsce{word-spacing:381.662197pt;}
.ws12b{word-spacing:587.039259pt;}
.wsc5{word-spacing:743.950723pt;}
._4{margin-left:-11.385118pt;}
._3{margin-left:-8.538838pt;}
._1b{margin-left:-7.039202pt;}
._2b{margin-left:-5.791556pt;}
._6{margin-left:-4.782080pt;}
._1{margin-left:-3.740634pt;}
._5{margin-left:-2.846279pt;}
._0{margin-left:-1.275216pt;}
._7{width:1.328350pt;}
._9{width:2.846279pt;}
._1f{width:4.385066pt;}
._1e{width:7.451910pt;}
._26{width:13.992772pt;}
._21{width:15.780790pt;}
._28{width:17.172512pt;}
._b{width:18.398788pt;}
._2d{width:19.601871pt;}
._22{width:21.381084pt;}
._e{width:22.635030pt;}
._d{width:23.804004pt;}
._f{width:25.132319pt;}
._23{width:26.225190pt;}
._11{width:28.054717pt;}
._1d{width:29.223627pt;}
._c{width:30.658241pt;}
._a{width:32.576644pt;}
._17{width:33.952544pt;}
._30{width:34.930210pt;}
._10{width:36.054953pt;}
._1c{width:37.406245pt;}
._20{width:38.893987pt;}
._12{width:40.116073pt;}
._8{width:41.656951pt;}
._14{width:44.419913pt;}
._40{width:45.535724pt;}
._15{width:46.917207pt;}
._13{width:48.298688pt;}
._3e{width:49.756239pt;}
._2{width:51.008640pt;}
._25{width:52.071189pt;}
._2f{width:53.293300pt;}
._41{width:54.325751pt;}
._44{width:64.823324pt;}
._19{width:66.783686pt;}
._3f{width:68.170751pt;}
._18{width:69.180294pt;}
._42{width:71.222310pt;}
._43{width:73.950001pt;}
._37{width:75.243519pt;}
._3d{width:76.963477pt;}
._45{width:80.078550pt;}
._29{width:81.454218pt;}
._27{width:82.494447pt;}
._38{width:84.807589pt;}
._32{width:86.528852pt;}
._46{width:89.298766pt;}
._39{width:96.097404pt;}
._2e{width:97.553779pt;}
._24{width:103.611733pt;}
._33{width:107.383163pt;}
._1a{width:121.502750pt;}
._2a{width:139.901471pt;}
._31{width:151.749458pt;}
._3c{width:162.483364pt;}
._3a{width:179.217404pt;}
._34{width:180.598311pt;}
._35{width:216.113404pt;}
._3b{width:225.958225pt;}
._36{width:237.969404pt;}
._2c{width:320.827160pt;}
._16{width:1069.991238pt;}
.fs8{font-size:19.055587pt;}
.fs7{font-size:25.655733pt;}
.fs6{font-size:26.566933pt;}
.fsf{font-size:27.133981pt;}
.fs10{font-size:27.525438pt;}
.fse{font-size:27.532609pt;}
.fs9{font-size:28.502297pt;}
.fsc{font-size:30.211825pt;}
.fsa{font-size:33.685223pt;}
.fsd{font-size:35.705615pt;}
.fs5{font-size:37.193600pt;}
.fs0{font-size:42.507200pt;}
.fsb{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y126{bottom:4.986482pt;}
.y17a{bottom:6.778986pt;}
.y190{bottom:7.177534pt;}
.y125{bottom:12.585601pt;}
.y127{bottom:16.803460pt;}
.y171{bottom:25.196624pt;}
.y1bc{bottom:25.801213pt;}
.y18a{bottom:26.699835pt;}
.y1bb{bottom:35.574578pt;}
.y128{bottom:36.301817pt;}
.y197{bottom:38.739112pt;}
.y17d{bottom:43.160052pt;}
.y1ba{bottom:45.347913pt;}
.y18f{bottom:45.742026pt;}
.y1c1{bottom:46.050996pt;}
.y4c{bottom:51.638667pt;}
.y4b{bottom:51.958667pt;}
.y1b9{bottom:55.121271pt;}
.y129{bottom:55.800174pt;}
.y198{bottom:60.674764pt;}
.y176{bottom:61.577690pt;}
.y1b8{bottom:64.894634pt;}
.y189{bottom:65.264327pt;}
.y19e{bottom:72.260712pt;}
.y1b7{bottom:74.667997pt;}
.y131{bottom:74.692081pt;}
.y12a{bottom:75.298532pt;}
.y180{bottom:79.542383pt;}
.y175{bottom:79.768855pt;}
.y199{bottom:82.610416pt;}
.y18e{bottom:84.305176pt;}
.y1b6{bottom:84.441325pt;}
.y1b4{bottom:87.180079pt;}
.y1b5{bottom:94.214688pt;}
.y12b{bottom:94.796889pt;}
.y177{bottom:97.960020pt;}
.yf8{bottom:103.709333pt;}
.y188{bottom:103.827478pt;}
.y19a{bottom:104.546068pt;}
.y28{bottom:107.716000pt;}
.y4a{bottom:109.256000pt;}
.y1a6{bottom:113.308374pt;}
.y12c{bottom:114.295246pt;}
.y1ca{bottom:115.048070pt;}
.y17f{bottom:115.923448pt;}
.y178{bottom:116.151186pt;}
.y18d{bottom:122.869668pt;}
.y187{bottom:123.109724pt;}
.y1a5{bottom:123.225323pt;}
.y27{bottom:123.656000pt;}
.y1bf{bottom:123.657333pt;}
.y1c9{bottom:124.962408pt;}
.y49{bottom:125.196000pt;}
.y19b{bottom:126.481720pt;}
.y1a4{bottom:133.142238pt;}
.y12d{bottom:133.793604pt;}
.y170{bottom:134.341086pt;}
.y1c8{bottom:134.876686pt;}
.y195{bottom:136.809333pt;}
.y139{bottom:138.191786pt;}
.yf7{bottom:139.596000pt;}
.y26{bottom:139.597333pt;}
.y48{bottom:141.136000pt;}
.y186{bottom:142.391970pt;}
.y1a3{bottom:143.059179pt;}
.y1c7{bottom:144.791084pt;}
.y138{bottom:145.055397pt;}
.ya1{bottom:147.154667pt;}
.y7e{bottom:147.156000pt;}
.y19c{bottom:148.417372pt;}
.y194{bottom:149.429333pt;}
.y137{bottom:151.918982pt;}
.y181{bottom:152.305779pt;}
.y16e{bottom:152.532252pt;}
.y1a2{bottom:152.976119pt;}
.y12e{bottom:153.291961pt;}
.y1c6{bottom:154.705456pt;}
.y223{bottom:155.536000pt;}
.y25{bottom:155.537333pt;}
.y47{bottom:157.076000pt;}
.y136{bottom:158.782602pt;}
.y18c{bottom:161.432819pt;}
.y185{bottom:161.672875pt;}
.y193{bottom:162.048000pt;}
.y1a1{bottom:162.893060pt;}
.y1c2{bottom:163.041140pt;}
.y7d{bottom:163.096000pt;}
.y1c5{bottom:164.619829pt;}
.yc9{bottom:165.592000pt;}
.y135{bottom:165.646221pt;}
.y19d{bottom:170.353024pt;}
.y16d{bottom:170.723417pt;}
.y24{bottom:171.477333pt;}
.y134{bottom:172.509824pt;}
.y12f{bottom:172.790318pt;}
.y1a0{bottom:172.809983pt;}
.y46{bottom:173.016000pt;}
.y1c4{bottom:174.534081pt;}
.y192{bottom:174.668000pt;}
.y7c{bottom:179.036000pt;}
.y133{bottom:179.373426pt;}
.y184{bottom:180.955121pt;}
.y19f{bottom:182.726924pt;}
.y1f9{bottom:183.426667pt;}
.y1c3{bottom:184.448522pt;}
.y132{bottom:186.237029pt;}
.y23{bottom:187.417333pt;}
.yc8{bottom:187.802667pt;}
.y17b{bottom:188.686845pt;}
.y16f{bottom:188.913317pt;}
.y45{bottom:188.956000pt;}
.ybf{bottom:190.830667pt;}
.y130{bottom:192.288677pt;}
.yc5{bottom:194.816000pt;}
.y7b{bottom:194.976000pt;}
.yc4{bottom:198.801333pt;}
.y1f8{bottom:199.366667pt;}
.y18b{bottom:199.995970pt;}
.y191{bottom:201.168000pt;}
.y22{bottom:203.357333pt;}
.yc1{bottom:203.428000pt;}
.y44{bottom:204.897333pt;}
.yc7{bottom:206.930667pt;}
.y173{bottom:207.104482pt;}
.yc0{bottom:207.436000pt;}
.y7a{bottom:210.916000pt;}
.y1d1{bottom:210.917333pt;}
.y1f7{bottom:215.308000pt;}
.y1be{bottom:217.853333pt;}
.y21{bottom:219.297333pt;}
.y183{bottom:219.366667pt;}
.ybe{bottom:220.054667pt;}
.y43{bottom:220.837333pt;}
.yc3{bottom:222.712000pt;}
.y17e{bottom:225.069176pt;}
.y172{bottom:225.295648pt;}
.yc6{bottom:226.058667pt;}
.yc2{bottom:226.697333pt;}
.ya0{bottom:226.856000pt;}
.y79{bottom:226.857333pt;}
.y222{bottom:228.356000pt;}
.y1bd{bottom:230.472000pt;}
.y1f6{bottom:231.248000pt;}
.y20{bottom:235.238667pt;}
.y78{bottom:242.797333pt;}
.y174{bottom:243.486813pt;}
.y221{bottom:244.296000pt;}
.y42{bottom:244.336000pt;}
.y1f5{bottom:247.188000pt;}
.y1f{bottom:251.178667pt;}
.y1b3{bottom:252.589333pt;}
.y77{bottom:258.737333pt;}
.y220{bottom:260.237333pt;}
.y41{bottom:260.276000pt;}
.y17c{bottom:261.450241pt;}
.ybd{bottom:262.534667pt;}
.y1e{bottom:267.118667pt;}
.ybc{bottom:274.466667pt;}
.y76{bottom:274.677333pt;}
.y1f4{bottom:275.078667pt;}
.y21f{bottom:276.177333pt;}
.y40{bottom:276.217333pt;}
.ybb{bottom:278.474667pt;}
.y16c{bottom:279.867879pt;}
.yf6{bottom:282.236000pt;}
.y1d{bottom:283.058667pt;}
.yba{bottom:290.408000pt;}
.y75{bottom:290.617333pt;}
.y1f3{bottom:291.018667pt;}
.y21e{bottom:292.117333pt;}
.y3f{bottom:292.157333pt;}
.yb9{bottom:294.414667pt;}
.y179{bottom:297.831307pt;}
.yf5{bottom:298.176000pt;}
.y1c{bottom:298.998667pt;}
.y74{bottom:306.557333pt;}
.y123{bottom:306.558667pt;}
.y1f2{bottom:306.958667pt;}
.y21d{bottom:308.057333pt;}
.y3e{bottom:308.097333pt;}
.yb8{bottom:310.354667pt;}
.yf4{bottom:314.117333pt;}
.y1b{bottom:314.938667pt;}
.y9f{bottom:322.497333pt;}
.y73{bottom:322.498667pt;}
.y1f1{bottom:322.898667pt;}
.y21c{bottom:323.997333pt;}
.y3d{bottom:324.037333pt;}
.yf3{bottom:326.049333pt;}
.yb7{bottom:326.294667pt;}
.yf2{bottom:330.057333pt;}
.y150{bottom:330.880000pt;}
.y72{bottom:338.438667pt;}
.y1f0{bottom:338.838667pt;}
.y21b{bottom:339.937333pt;}
.y3c{bottom:339.977333pt;}
.yf1{bottom:341.990667pt;}
.yb6{bottom:342.234667pt;}
.y263{bottom:344.441333pt;}
.yf0{bottom:345.997333pt;}
.y14f{bottom:346.820000pt;}
.y242{bottom:347.614667pt;}
.y1a{bottom:352.706667pt;}
.y71{bottom:354.378667pt;}
.y122{bottom:354.605333pt;}
.y1ef{bottom:354.778667pt;}
.y9e{bottom:354.906667pt;}
.y3b{bottom:355.917333pt;}
.yb5{bottom:358.176000pt;}
.y262{bottom:360.381333pt;}
.yef{bottom:361.937333pt;}
.y241{bottom:363.554667pt;}
.y21a{bottom:364.937333pt;}
.y14e{bottom:370.318667pt;}
.y1ee{bottom:370.720000pt;}
.y3a{bottom:371.858667pt;}
.yb4{bottom:374.116000pt;}
.y261{bottom:376.321333pt;}
.y70{bottom:377.877333pt;}
.y219{bottom:380.877333pt;}
.y14d{bottom:386.258667pt;}
.y39{bottom:387.798667pt;}
.y240{bottom:392.012000pt;}
.y260{bottom:392.261333pt;}
.yee{bottom:393.817333pt;}
.y6f{bottom:393.818667pt;}
.y218{bottom:396.817333pt;}
.y1ed{bottom:398.609333pt;}
.y121{bottom:399.496000pt;}
.y9d{bottom:401.306667pt;}
.y14c{bottom:402.200000pt;}
.y38{bottom:403.738667pt;}
.y23f{bottom:407.952000pt;}
.y25f{bottom:408.202667pt;}
.y6e{bottom:409.758667pt;}
.y19{bottom:409.772000pt;}
.yb3{bottom:412.620000pt;}
.y217{bottom:412.757333pt;}
.y1ec{bottom:414.549333pt;}
.y120{bottom:415.436000pt;}
.y9c{bottom:417.246667pt;}
.y14b{bottom:418.140000pt;}
.y37{bottom:419.678667pt;}
.y23e{bottom:423.892000pt;}
.y25e{bottom:424.142667pt;}
.y6d{bottom:425.698667pt;}
.y18{bottom:425.712000pt;}
.yb2{bottom:428.597333pt;}
.y216{bottom:428.697333pt;}
.y1eb{bottom:430.490667pt;}
.y11f{bottom:431.376000pt;}
.y9b{bottom:433.186667pt;}
.y14a{bottom:434.080000pt;}
.y182{bottom:436.565333pt;}
.y25d{bottom:440.082667pt;}
.y6c{bottom:441.638667pt;}
.y215{bottom:444.638667pt;}
.y36{bottom:446.201333pt;}
.y1ea{bottom:446.430667pt;}
.y11e{bottom:447.316000pt;}
.y9a{bottom:449.126667pt;}
.y149{bottom:450.020000pt;}
.y23d{bottom:452.349333pt;}
.y16b{bottom:454.762667pt;}
.y25c{bottom:456.022667pt;}
.y6b{bottom:457.578667pt;}
.yed{bottom:458.190667pt;}
.y35{bottom:462.141333pt;}
.yec{bottom:462.198667pt;}
.y11d{bottom:463.257333pt;}
.y17{bottom:463.480000pt;}
.y99{bottom:465.066667pt;}
.y148{bottom:465.960000pt;}
.yb1{bottom:466.112000pt;}
.y23c{bottom:468.289333pt;}
.y214{bottom:469.637333pt;}
.y1b2{bottom:470.726667pt;}
.y6a{bottom:473.518667pt;}
.y1d0{bottom:473.520000pt;}
.y1e9{bottom:474.320000pt;}
.y34{bottom:478.082667pt;}
.yeb{bottom:478.116000pt;}
.y11c{bottom:479.197333pt;}
.y98{bottom:481.008000pt;}
.y147{bottom:481.900000pt;}
.yb0{bottom:482.052000pt;}
.yea{bottom:482.124000pt;}
.y23b{bottom:484.229333pt;}
.y213{bottom:485.577333pt;}
.y1b1{bottom:486.666667pt;}
.y25b{bottom:487.902667pt;}
.y69{bottom:489.460000pt;}
.y1e8{bottom:490.261333pt;}
.y33{bottom:494.022667pt;}
.y11b{bottom:495.137333pt;}
.y97{bottom:496.948000pt;}
.y146{bottom:497.841333pt;}
.yaf{bottom:497.992000pt;}
.ye9{bottom:498.041333pt;}
.y212{bottom:501.517333pt;}
.ye8{bottom:502.049333pt;}
.y1b0{bottom:502.606667pt;}
.y25a{bottom:503.844000pt;}
.y68{bottom:505.400000pt;}
.y1e7{bottom:506.201333pt;}
.y32{bottom:509.962667pt;}
.y11a{bottom:511.077333pt;}
.y23a{bottom:512.686667pt;}
.y96{bottom:512.888000pt;}
.y145{bottom:513.781333pt;}
.yae{bottom:513.932000pt;}
.y211{bottom:517.457333pt;}
.y1af{bottom:518.546667pt;}
.y259{bottom:519.784000pt;}
.y16{bottom:520.545333pt;}
.ye6{bottom:520.552000pt;}
.y67{bottom:521.340000pt;}
.y1e6{bottom:522.141333pt;}
.y31{bottom:525.902667pt;}
.y119{bottom:527.017333pt;}
.y239{bottom:528.626667pt;}
.y144{bottom:529.721333pt;}
.yad{bottom:529.872000pt;}
.ye7{bottom:532.522667pt;}
.y210{bottom:533.398667pt;}
.y1ae{bottom:534.486667pt;}
.y258{bottom:535.724000pt;}
.y95{bottom:536.386667pt;}
.y15{bottom:536.485333pt;}
.ye5{bottom:536.529333pt;}
.y66{bottom:537.280000pt;}
.y1e5{bottom:538.081333pt;}
.y30{bottom:541.842667pt;}
.y118{bottom:542.957333pt;}
.y238{bottom:544.566667pt;}
.y143{bottom:545.661333pt;}
.y20f{bottom:549.338667pt;}
.y1ad{bottom:550.428000pt;}
.y257{bottom:551.664000pt;}
.y94{bottom:552.328000pt;}
.y14{bottom:552.426667pt;}
.y65{bottom:553.220000pt;}
.y1e4{bottom:554.021333pt;}
.y2f{bottom:557.784000pt;}
.y117{bottom:558.898667pt;}
.y237{bottom:560.506667pt;}
.y142{bottom:561.601333pt;}
.yac{bottom:564.166667pt;}
.y1ac{bottom:566.368000pt;}
.y256{bottom:567.604000pt;}
.y93{bottom:568.268000pt;}
.y13{bottom:568.366667pt;}
.ye4{bottom:568.606667pt;}
.y1cf{bottom:569.161333pt;}
.y1e3{bottom:569.961333pt;}
.y2e{bottom:573.724000pt;}
.y20e{bottom:574.337333pt;}
.y116{bottom:574.838667pt;}
.y236{bottom:576.446667pt;}
.y64{bottom:576.720000pt;}
.y141{bottom:577.541333pt;}
.ye3{bottom:580.540000pt;}
.y1ab{bottom:582.308000pt;}
.y255{bottom:583.545333pt;}
.y92{bottom:584.208000pt;}
.y12{bottom:584.306667pt;}
.ye2{bottom:584.546667pt;}
.y1ce{bottom:585.101333pt;}
.y2d{bottom:589.664000pt;}
.y20d{bottom:590.277333pt;}
.y115{bottom:590.778667pt;}
.y63{bottom:592.660000pt;}
.y140{bottom:593.482667pt;}
.ye1{bottom:596.480000pt;}
.y1e2{bottom:597.852000pt;}
.y1aa{bottom:598.248000pt;}
.y254{bottom:599.485333pt;}
.y91{bottom:600.148000pt;}
.y11{bottom:600.246667pt;}
.ye0{bottom:600.486667pt;}
.y235{bottom:604.904000pt;}
.y2c{bottom:605.604000pt;}
.y20c{bottom:606.217333pt;}
.y114{bottom:606.718667pt;}
.y62{bottom:608.600000pt;}
.y13f{bottom:609.422667pt;}
.y1e1{bottom:613.792000pt;}
.y1a9{bottom:614.188000pt;}
.y253{bottom:615.425333pt;}
.y90{bottom:616.088000pt;}
.y10{bottom:616.186667pt;}
.ydf{bottom:616.428000pt;}
.yab{bottom:617.470667pt;}
.y234{bottom:620.844000pt;}
.y2b{bottom:621.544000pt;}
.y20b{bottom:622.158667pt;}
.y1cd{bottom:622.545333pt;}
.y61{bottom:624.540000pt;}
.y13e{bottom:625.362667pt;}
.y1e0{bottom:629.732000pt;}
.y113{bottom:630.218667pt;}
.y8f{bottom:632.028000pt;}
.yf{bottom:632.126667pt;}
.yde{bottom:632.368000pt;}
.yaa{bottom:633.410667pt;}
.y233{bottom:636.784000pt;}
.y2a{bottom:637.484000pt;}
.y20a{bottom:638.098667pt;}
.y60{bottom:640.480000pt;}
.y13d{bottom:641.302667pt;}
.y1a8{bottom:645.362667pt;}
.y1df{bottom:645.673333pt;}
.y112{bottom:646.158667pt;}
.y252{bottom:647.305333pt;}
.y8e{bottom:647.969333pt;}
.ye{bottom:648.068000pt;}
.ydd{bottom:648.308000pt;}
.y232{bottom:652.724000pt;}
.y29{bottom:653.425333pt;}
.y209{bottom:654.038667pt;}
.y5f{bottom:656.421333pt;}
.y13c{bottom:657.242667pt;}
.y1a7{bottom:657.981333pt;}
.y1de{bottom:661.613333pt;}
.y111{bottom:662.098667pt;}
.y251{bottom:663.245333pt;}
.yd{bottom:664.008000pt;}
.ydc{bottom:664.248000pt;}
.ya9{bottom:667.654667pt;}
.y231{bottom:668.665333pt;}
.y5e{bottom:672.361333pt;}
.y1dd{bottom:677.553333pt;}
.y110{bottom:678.038667pt;}
.y208{bottom:679.037333pt;}
.y250{bottom:679.186667pt;}
.yc{bottom:679.948000pt;}
.y196{bottom:680.098667pt;}
.ydb{bottom:680.188000pt;}
.ya8{bottom:683.594667pt;}
.y230{bottom:684.605333pt;}
.y8d{bottom:684.952000pt;}
.y5d{bottom:688.301333pt;}
.y1cc{bottom:689.428000pt;}
.y1dc{bottom:693.493333pt;}
.y10f{bottom:693.978667pt;}
.y207{bottom:694.977333pt;}
.y24f{bottom:695.126667pt;}
.yb{bottom:695.888000pt;}
.yda{bottom:696.129333pt;}
.y13b{bottom:698.770667pt;}
.ya7{bottom:699.534667pt;}
.y22f{bottom:700.545333pt;}
.y1cb{bottom:702.048000pt;}
.y5c{bottom:704.241333pt;}
.y1db{bottom:709.433333pt;}
.y10e{bottom:709.918667pt;}
.y206{bottom:710.918667pt;}
.y24e{bottom:711.066667pt;}
.y13a{bottom:711.389333pt;}
.ya{bottom:711.828000pt;}
.yd9{bottom:712.069333pt;}
.ya6{bottom:715.474667pt;}
.y5b{bottom:720.181333pt;}
.y1c0{bottom:724.165333pt;}
.y10d{bottom:725.860000pt;}
.y205{bottom:726.858667pt;}
.y24d{bottom:727.006667pt;}
.y9{bottom:727.768000pt;}
.y22e{bottom:729.001333pt;}
.y124{bottom:733.506667pt;}
.y5a{bottom:736.122667pt;}
.y8c{bottom:738.094667pt;}
.y1da{bottom:738.809333pt;}
.y10c{bottom:741.800000pt;}
.y204{bottom:742.798667pt;}
.y24c{bottom:742.946667pt;}
.y22d{bottom:744.942667pt;}
.yd8{bottom:748.569333pt;}
.y59{bottom:752.062667pt;}
.y8b{bottom:754.034667pt;}
.ya5{bottom:756.710667pt;}
.y10b{bottom:757.740000pt;}
.y22c{bottom:760.882667pt;}
.y203{bottom:767.797333pt;}
.y8a{bottom:769.974667pt;}
.ya4{bottom:773.204000pt;}
.y10a{bottom:773.680000pt;}
.y22b{bottom:776.822667pt;}
.yd7{bottom:777.509333pt;}
.y8{bottom:777.576000pt;}
.y24b{bottom:779.597333pt;}
.y16a{bottom:783.060000pt;}
.y202{bottom:783.737333pt;}
.y89{bottom:785.914667pt;}
.y58{bottom:789.033333pt;}
.y167{bottom:789.369333pt;}
.y1d9{bottom:791.716000pt;}
.y22a{bottom:792.762667pt;}
.yd6{bottom:793.449333pt;}
.y169{bottom:795.678667pt;}
.y201{bottom:799.678667pt;}
.y88{bottom:801.856000pt;}
.y166{bottom:801.989333pt;}
.y1d8{bottom:807.656000pt;}
.y168{bottom:808.298667pt;}
.yd5{bottom:809.390667pt;}
.y7{bottom:809.456000pt;}
.ya3{bottom:810.237333pt;}
.y109{bottom:810.361333pt;}
.y200{bottom:815.618667pt;}
.y87{bottom:817.796000pt;}
.y229{bottom:821.220000pt;}
.y165{bottom:821.449333pt;}
.y1d7{bottom:823.596000pt;}
.yd4{bottom:825.330667pt;}
.ya2{bottom:826.177333pt;}
.y162{bottom:827.758667pt;}
.y1ff{bottom:831.558667pt;}
.y86{bottom:833.736000pt;}
.y164{bottom:834.068000pt;}
.y228{bottom:837.160000pt;}
.y1d6{bottom:839.536000pt;}
.y161{bottom:840.378667pt;}
.y6{bottom:841.337333pt;}
.y57{bottom:842.117333pt;}
.y24a{bottom:844.362667pt;}
.y163{bottom:846.688000pt;}
.y1fe{bottom:847.498667pt;}
.y85{bottom:849.676000pt;}
.y227{bottom:853.100000pt;}
.y1d5{bottom:855.477333pt;}
.y5{bottom:857.277333pt;}
.y108{bottom:857.396000pt;}
.yd3{bottom:857.406667pt;}
.y56{bottom:858.057333pt;}
.y160{bottom:859.838667pt;}
.y249{bottom:860.302667pt;}
.y105{bottom:861.225333pt;}
.y106{bottom:861.530667pt;}
.y104{bottom:865.233333pt;}
.y84{bottom:865.616000pt;}
.y15d{bottom:866.148000pt;}
.y226{bottom:869.040000pt;}
.y1d4{bottom:871.417333pt;}
.y15f{bottom:872.457333pt;}
.y1fd{bottom:872.497333pt;}
.y107{bottom:873.336000pt;}
.y55{bottom:873.997333pt;}
.y248{bottom:876.244000pt;}
.y15c{bottom:878.768000pt;}
.y83{bottom:881.556000pt;}
.y225{bottom:884.980000pt;}
.y15e{bottom:885.077333pt;}
.y1d3{bottom:887.357333pt;}
.y1fc{bottom:888.438667pt;}
.y54{bottom:889.938667pt;}
.y247{bottom:892.184000pt;}
.y103{bottom:895.084000pt;}
.yd2{bottom:895.433333pt;}
.y82{bottom:897.497333pt;}
.y15b{bottom:898.228000pt;}
.y102{bottom:898.786667pt;}
.yd1{bottom:899.440000pt;}
.y4{bottom:899.674667pt;}
.y224{bottom:900.921333pt;}
.y1fb{bottom:904.378667pt;}
.y158{bottom:904.537333pt;}
.y53{bottom:905.878667pt;}
.y15a{bottom:910.846667pt;}
.y81{bottom:913.437333pt;}
.y157{bottom:917.157333pt;}
.y246{bottom:918.750667pt;}
.y100{bottom:919.205333pt;}
.ycf{bottom:919.564000pt;}
.y101{bottom:919.624000pt;}
.y1fa{bottom:920.318667pt;}
.yff{bottom:922.908000pt;}
.y159{bottom:923.466667pt;}
.y1d2{bottom:924.292000pt;}
.y52{bottom:929.377333pt;}
.y245{bottom:934.690667pt;}
.yd0{bottom:936.169333pt;}
.y156{bottom:936.617333pt;}
.yfd{bottom:944.905333pt;}
.y51{bottom:945.317333pt;}
.yfe{bottom:945.628000pt;}
.yce{bottom:948.788000pt;}
.yfc{bottom:948.912000pt;}
.y155{bottom:949.236000pt;}
.y244{bottom:950.630667pt;}
.ycd{bottom:956.205333pt;}
.y3{bottom:958.296000pt;}
.ycc{bottom:960.212000pt;}
.y80{bottom:961.257333pt;}
.y50{bottom:961.258667pt;}
.y243{bottom:966.572000pt;}
.y154{bottom:975.670667pt;}
.ycb{bottom:976.130667pt;}
.yfa{bottom:976.186667pt;}
.yfb{bottom:976.490667pt;}
.y7f{bottom:977.197333pt;}
.y4f{bottom:977.198667pt;}
.yca{bottom:980.137333pt;}
.yf9{bottom:980.193333pt;}
.y2{bottom:987.520000pt;}
.y153{bottom:988.290667pt;}
.y4e{bottom:993.138667pt;}
.y152{bottom:1000.909333pt;}
.y4d{bottom:1009.078667pt;}
.y151{bottom:1013.529333pt;}
.y1{bottom:1057.200000pt;}
.h17{height:0.531339pt;}
.h29{height:14.477780pt;}
.h28{height:19.492344pt;}
.h2d{height:19.609580pt;}
.h35{height:19.617616pt;}
.h34{height:20.615466pt;}
.h31{height:20.785736pt;}
.h33{height:20.918330pt;}
.h36{height:21.047283pt;}
.h2e{height:23.882823pt;}
.h32{height:25.315281pt;}
.h13{height:26.184294pt;}
.hf{height:27.895200pt;}
.h18{height:28.349478pt;}
.h8{height:30.477662pt;}
.h2{height:31.880400pt;}
.h2a{height:31.922907pt;}
.h2f{height:35.913421pt;}
.h7{height:37.671911pt;}
.h1b{height:37.778179pt;}
.h10{height:39.850400pt;}
.h5{height:39.903534pt;}
.hb{height:40.740707pt;}
.h9{height:41.178747pt;}
.ha{height:44.377702pt;}
.h20{height:45.464294pt;}
.h4{height:45.589163pt;}
.hc{height:47.175200pt;}
.hd{height:47.180533pt;}
.he{height:51.006005pt;}
.h12{height:51.011339pt;}
.h14{height:51.714961pt;}
.h1c{height:51.720294pt;}
.h6{height:53.712173pt;}
.h23{height:54.314747pt;}
.h15{height:55.930201pt;}
.h16{height:55.935534pt;}
.h26{height:55.989413pt;}
.h1d{height:57.205413pt;}
.h1f{height:57.210747pt;}
.h24{height:60.280294pt;}
.h22{height:61.490961pt;}
.h21{height:61.991200pt;}
.h3{height:64.454458pt;}
.h25{height:64.856294pt;}
.h19{height:67.038005pt;}
.h1e{height:67.746961pt;}
.h11{height:71.252867pt;}
.h2b{height:82.397574pt;}
.h1a{height:141.427339pt;}
.h27{height:200.784000pt;}
.h30{height:211.485120pt;}
.h2c{height:308.670347pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:314.824320pt;}
.w4{width:314.824440pt;}
.w2{width:321.254400pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x40{left:8.504388pt;}
.x3f{left:11.232052pt;}
.x51{left:12.631840pt;}
.x3e{left:15.314834pt;}
.x77{left:17.166000pt;}
.x3d{left:23.480399pt;}
.x3c{left:24.595866pt;}
.x56{left:31.093760pt;}
.x79{left:37.078560pt;}
.x68{left:39.029147pt;}
.x6f{left:41.198400pt;}
.x83{left:44.116620pt;}
.x41{left:46.305066pt;}
.x7d{left:49.094760pt;}
.x78{left:53.557920pt;}
.x6e{left:56.304480pt;}
.x59{left:58.300800pt;}
.x5a{left:68.665387pt;}
.x76{left:71.067240pt;}
.x82{left:72.268860pt;}
.x75{left:74.500440pt;}
.x1{left:75.590667pt;}
.x5{left:79.341333pt;}
.x14{left:80.681333pt;}
.x9{left:82.602667pt;}
.x37{left:83.538667pt;}
.x5d{left:85.507840pt;}
.x4d{left:87.364000pt;}
.xc{left:88.874667pt;}
.x34{left:90.284000pt;}
.x2{left:91.358667pt;}
.x36{left:92.592000pt;}
.x4b{left:96.301333pt;}
.x32{left:97.864000pt;}
.x13{left:99.496000pt;}
.x22{left:100.845333pt;}
.x1a{left:103.058667pt;}
.x4e{left:105.586667pt;}
.x6b{left:109.314000pt;}
.x58{left:112.067093pt;}
.x19{left:113.500000pt;}
.x73{left:114.668880pt;}
.x6c{left:116.439653pt;}
.x6a{left:118.383013pt;}
.x43{left:120.976000pt;}
.x38{left:123.805333pt;}
.x74{left:128.058360pt;}
.x52{left:130.529013pt;}
.x3{left:132.512000pt;}
.x64{left:133.767947pt;}
.x87{left:134.669591pt;}
.x72{left:138.014640pt;}
.x81{left:139.216260pt;}
.x54{left:141.541387pt;}
.x69{left:143.646693pt;}
.x1b{left:145.342667pt;}
.x5b{left:146.399787pt;}
.x80{left:150.545820pt;}
.x4f{left:152.229867pt;}
.x1c{left:154.032000pt;}
.x33{left:155.686667pt;}
.x57{left:158.707733pt;}
.x39{left:159.692000pt;}
.xf{left:161.340000pt;}
.x53{left:162.270560pt;}
.x66{left:164.213920pt;}
.x4c{left:170.992000pt;}
.x63{left:172.635147pt;}
.x60{left:177.493547pt;}
.x5c{left:179.436907pt;}
.x1d{left:181.421333pt;}
.x3b{left:184.128000pt;}
.x7f{left:186.079440pt;}
.x7b{left:187.452720pt;}
.x55{left:189.477600pt;}
.x35{left:190.478667pt;}
.x12{left:191.405333pt;}
.x61{left:195.631573pt;}
.x7e{left:197.752320pt;}
.x7{left:203.456000pt;}
.x3a{left:204.769333pt;}
.x62{left:212.797920pt;}
.x85{left:216.282069pt;}
.x86{left:218.320635pt;}
.x6d{left:221.381093pt;}
.x7c{left:222.814680pt;}
.x1e{left:224.074667pt;}
.x65{left:227.049227pt;}
.x15{left:229.006667pt;}
.x10{left:233.457333pt;}
.x67{left:235.308507pt;}
.x5e{left:236.442133pt;}
.x4{left:241.517333pt;}
.x70{left:243.070560pt;}
.x84{left:244.272180pt;}
.x44{left:248.386667pt;}
.x16{left:249.744000pt;}
.x7a{left:257.833320pt;}
.x1f{left:261.629333pt;}
.x6{left:268.456000pt;}
.x20{left:273.436000pt;}
.x17{left:276.701333pt;}
.x71{left:279.462480pt;}
.x5f{left:281.463307pt;}
.x11{left:288.745333pt;}
.x50{left:304.135840pt;}
.x8{left:307.301333pt;}
.x21{left:361.264000pt;}
.x18{left:365.658667pt;}
.xa{left:403.492000pt;}
.xe{left:409.468000pt;}
.xd{left:410.504000pt;}
.x45{left:414.964000pt;}
.xb{left:416.776000pt;}
.x2f{left:424.320000pt;}
.x2d{left:425.417333pt;}
.x88{left:430.792000pt;}
.x2a{left:441.250667pt;}
.x42{left:445.642667pt;}
.x23{left:454.705333pt;}
.x27{left:456.920000pt;}
.x2e{left:461.874667pt;}
.x24{left:463.396000pt;}
.x26{left:467.361333pt;}
.x2b{left:484.286667pt;}
.x25{left:492.729333pt;}
.x28{left:499.204000pt;}
.x2c{left:503.902667pt;}
.x46{left:512.721333pt;}
.x48{left:563.156000pt;}
.x47{left:575.028000pt;}
.x29{left:591.328000pt;}
.x4a{left:633.494667pt;}
.x30{left:643.796000pt;}
.x49{left:652.822667pt;}
.x31{left:674.585333pt;}
}




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