
    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_5fb4c931fc9b081ba06bf4a8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_ad2ddfc60746bf9efec8cc93.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_11be985badc9df59f63189c9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.431000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1b384f8ff7bd195ccf14a6c0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895000;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_43027275b869c084cbab792e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.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:ff6;src:url('chunks/assets/font_2d8b4ab0dcabd85d89a7b737.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.713000;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_1b2abaad6f29ed8072783765.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.313477;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_a9aed262e085ea8a77250843.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f45aac87fb78867b8bf51100.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_29b90c17bc0910a142d8fc3d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.866000;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_9ca2db05382990651ea3577e.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_244565f9d082b54b10d49157.woff2')format("woff");}.ffc{font-family:ffc;line-height:3.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b47932dddae3013fe8ebefeb.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.792000;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_377e876a84e8591c38df7d7c.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_707b2786919efab6a15d14b6.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_5deaeb4f55ac03dc07ceb541.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666000;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_cce0851c6f590f000bdec5ff.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.644000;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_4a714f6e6f686eb7d6dce855.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.687012;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_1653bb3aa74d2316e8f939ea.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.982422;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_028eeac677b80a5d3367891b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.860840;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_783792baf4762f5dfd8677b9.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.980957;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_eae35872c7598c5997eea5e3.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.980957;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_1eba25633b452ad6ce708c66.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.936035;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_82428b382c6a03803364d353.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.444000;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_73c79ca7de75f62d5d66cbb9.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.678000;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_7e419b4ee27f1f55614e23fa.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_7c282356a9d6e6e9572b2b5a.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_9d4622f678fcb071f36049aa.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.725000;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_448c0bb994d7360768bcffb3.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_1f357c8c5d19aee1d06de4d1.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.666504;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_561167bbb39f1dab5ad23b48.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_1f357c8c5d19aee1d06de4d1.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.666504;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_c1ba275253de3878c94b8d1b.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_1f357c8c5d19aee1d06de4d1.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.666504;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_9c8c52ec55d7a6687df4a196.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_1f357c8c5d19aee1d06de4d1.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.666504;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_b8a5bcac3120d47488ca76c1.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_926c62ed243cc03565e41a21.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_0ce27e511ac395a6a3cbc299.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_28fb74f311d7e840034212b4.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.000000,-0.249292,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249292,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249292,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.249292,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249292,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249292,0.250000,0.000000,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(0.250709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250709,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);}
.vb{vertical-align:-53.454000px;}
.v12{vertical-align:-41.508000px;}
.v13{vertical-align:-29.550000px;}
.v2{vertical-align:-21.696000px;}
.v1e{vertical-align:-16.805863px;}
.va{vertical-align:-12.540000px;}
.v15{vertical-align:-8.964000px;}
.v14{vertical-align:-6.564000px;}
.v0{vertical-align:0.000000px;}
.v1d{vertical-align:5.814000px;}
.v17{vertical-align:8.970000px;}
.ve{vertical-align:11.952000px;}
.v3{vertical-align:13.068000px;}
.v1c{vertical-align:14.778000px;}
.v11{vertical-align:18.036000px;}
.vf{vertical-align:20.610000px;}
.v7{vertical-align:21.696000px;}
.v1{vertical-align:23.754000px;}
.vc{vertical-align:26.682000px;}
.v1b{vertical-align:30.054000px;}
.v16{vertical-align:32.412000px;}
.v19{vertical-align:35.106000px;}
.v4{vertical-align:40.434000px;}
.v10{vertical-align:41.574000px;}
.vd{vertical-align:44.718000px;}
.v6{vertical-align:56.028000px;}
.v5{vertical-align:81.444000px;}
.v18{vertical-align:84.546000px;}
.v8{vertical-align:120.546000px;}
.v1a{vertical-align:131.382000px;}
.v9{vertical-align:186.246000px;}
.ls86{letter-spacing:-0.718092px;}
.ls87{letter-spacing:-0.528034px;}
.ls85{letter-spacing:-0.127388px;}
.ls88{letter-spacing:-0.113828px;}
.lsdd{letter-spacing:-0.009003px;}
.lse1{letter-spacing:-0.008233px;}
.lsdb{letter-spacing:-0.007781px;}
.lsd4{letter-spacing:-0.007203px;}
.lsde{letter-spacing:-0.006602px;}
.lsd3{letter-spacing:-0.006225px;}
.lsd5{letter-spacing:-0.005282px;}
.lsdc{letter-spacing:-0.004489px;}
.lse2{letter-spacing:-0.004117px;}
.lsdf{letter-spacing:-0.003890px;}
.lsd2{letter-spacing:-0.003591px;}
.lsd7{letter-spacing:-0.003112px;}
.ls3{letter-spacing:0.000000px;}
.lsca{letter-spacing:0.000141px;}
.ls28{letter-spacing:0.000300px;}
.ls53{letter-spacing:0.000312px;}
.ls4f{letter-spacing:0.000387px;}
.ls37{letter-spacing:0.000993px;}
.lsac{letter-spacing:0.001120px;}
.ls5b{letter-spacing:0.001140px;}
.ls38{letter-spacing:0.001480px;}
.ls6{letter-spacing:0.001698px;}
.ls90{letter-spacing:0.002023px;}
.lsa7{letter-spacing:0.002222px;}
.ls3f{letter-spacing:0.002245px;}
.lsa4{letter-spacing:0.002338px;}
.ls5c{letter-spacing:0.002525px;}
.ls72{letter-spacing:0.002685px;}
.lsb7{letter-spacing:0.002823px;}
.ls79{letter-spacing:0.002891px;}
.ls46{letter-spacing:0.003031px;}
.lscd{letter-spacing:0.003112px;}
.lsa{letter-spacing:0.003269px;}
.ls78{letter-spacing:0.003413px;}
.ls6f{letter-spacing:0.003415px;}
.lsd8{letter-spacing:0.003601px;}
.lscf{letter-spacing:0.003890px;}
.ls7f{letter-spacing:0.004200px;}
.lse0{letter-spacing:0.004502px;}
.lsc6{letter-spacing:0.004528px;}
.ls8c{letter-spacing:0.004648px;}
.ls94{letter-spacing:0.004893px;}
.ls4a{letter-spacing:0.006000px;}
.lsc8{letter-spacing:0.006141px;}
.lsce{letter-spacing:0.006225px;}
.ls65{letter-spacing:0.006993px;}
.lsd0{letter-spacing:0.007781px;}
.ls55{letter-spacing:0.230183px;}
.ls8a{letter-spacing:0.260223px;}
.ls89{letter-spacing:0.265598px;}
.ls56{letter-spacing:0.270317px;}
.ls2a{letter-spacing:0.464387px;}
.ls8{letter-spacing:1.612648px;}
.ls1e{letter-spacing:1.659172px;}
.ls13{letter-spacing:1.661249px;}
.ls4{letter-spacing:1.665333px;}
.lsb0{letter-spacing:2.144023px;}
.lsaa{letter-spacing:2.144222px;}
.ls6a{letter-spacing:2.145415px;}
.ls66{letter-spacing:2.151415px;}
.lscc{letter-spacing:2.153687px;}
.lsc4{letter-spacing:2.380800px;}
.lse3{letter-spacing:2.400000px;}
.lsbf{letter-spacing:2.420908px;}
.ls58{letter-spacing:2.982648px;}
.ls83{letter-spacing:2.983140px;}
.ls41{letter-spacing:2.984525px;}
.ls1{letter-spacing:2.984915px;}
.ls39{letter-spacing:2.986363px;}
.ls1f{letter-spacing:2.986982px;}
.lsa3{letter-spacing:2.988300px;}
.ls98{letter-spacing:2.989140px;}
.lsa5{letter-spacing:2.990234px;}
.ls40{letter-spacing:2.990525px;}
.ls0{letter-spacing:2.990915px;}
.lsc1{letter-spacing:3.422408px;}
.lsa6{letter-spacing:4.490282px;}
.ls68{letter-spacing:4.491110px;}
.ls99{letter-spacing:5.408908px;}
.ls71{letter-spacing:5.920010px;}
.ls70{letter-spacing:6.240990px;}
.lsc0{letter-spacing:8.304065px;}
.ls26{letter-spacing:9.960000px;}
.ls24{letter-spacing:9.960538px;}
.ls7e{letter-spacing:9.961409px;}
.lsb{letter-spacing:9.962338px;}
.ls5d{letter-spacing:9.967409px;}
.ls3a{letter-spacing:10.162363px;}
.ls34{letter-spacing:10.165480px;}
.ls31{letter-spacing:10.424387px;}
.ls92{letter-spacing:12.949140px;}
.ls5f{letter-spacing:13.278538px;}
.ls5e{letter-spacing:13.281269px;}
.ls67{letter-spacing:13.282188px;}
.ls10{letter-spacing:13.282200px;}
.lsf{letter-spacing:13.284538px;}
.lse{letter-spacing:13.286245px;}
.ls2c{letter-spacing:13.286338px;}
.lsc2{letter-spacing:13.377269px;}
.ls81{letter-spacing:13.407652px;}
.ls95{letter-spacing:13.960868px;}
.lsa1{letter-spacing:13.966868px;}
.lse4{letter-spacing:14.400000px;}
.ls93{letter-spacing:15.368908px;}
.ls14{letter-spacing:15.906300px;}
.ls2b{letter-spacing:16.268525px;}
.ls9c{letter-spacing:16.273140px;}
.lsa8{letter-spacing:16.274234px;}
.ls4d{letter-spacing:16.599269px;}
.ls43{letter-spacing:16.601607px;}
.ls12{letter-spacing:16.602538px;}
.ls33{letter-spacing:16.603698px;}
.ls7d{letter-spacing:16.604338px;}
.ls1a{letter-spacing:16.604400px;}
.ls80{letter-spacing:16.605269px;}
.ls3e{letter-spacing:16.606188px;}
.ls4e{letter-spacing:16.607607px;}
.lsd{letter-spacing:16.617617px;}
.ls22{letter-spacing:17.066387px;}
.ls91{letter-spacing:17.566188px;}
.ls18{letter-spacing:17.682538px;}
.lsa9{letter-spacing:17.774282px;}
.ls57{letter-spacing:17.878188px;}
.lsc{letter-spacing:17.970000px;}
.lsab{letter-spacing:18.002282px;}
.ls8f{letter-spacing:18.165269px;}
.ls1b{letter-spacing:18.257249px;}
.ls35{letter-spacing:18.267333px;}
.ls9d{letter-spacing:18.692908px;}
.ls5a{letter-spacing:18.748172px;}
.ls29{letter-spacing:19.588982px;}
.ls44{letter-spacing:19.590648px;}
.ls30{letter-spacing:19.594982px;}
.ls9{letter-spacing:19.596000px;}
.ls6c{letter-spacing:20.106648px;}
.ls15{letter-spacing:20.182379px;}
.ls5{letter-spacing:20.460000px;}
.ls9a{letter-spacing:20.602868px;}
.ls3c{letter-spacing:20.635698px;}
.ls73{letter-spacing:21.000000px;}
.ls63{letter-spacing:21.093110px;}
.ls7c{letter-spacing:21.099110px;}
.ls8b{letter-spacing:21.552305px;}
.ls16{letter-spacing:21.564300px;}
.ls77{letter-spacing:21.643409px;}
.ls45{letter-spacing:21.896525px;}
.ls75{letter-spacing:21.946438px;}
.ls3d{letter-spacing:22.293333px;}
.ls36{letter-spacing:22.340086px;}
.ls8d{letter-spacing:22.347269px;}
.ls2f{letter-spacing:22.665333px;}
.ls17{letter-spacing:22.871249px;}
.ls9e{letter-spacing:23.121269px;}
.ls9f{letter-spacing:23.123607px;}
.ls47{letter-spacing:23.988648px;}
.ls7b{letter-spacing:23.989140px;}
.ls6b{letter-spacing:24.741269px;}
.ls21{letter-spacing:25.281175px;}
.ls61{letter-spacing:25.317110px;}
.ls20{letter-spacing:25.685915px;}
.ls2{letter-spacing:26.084915px;}
.ls6e{letter-spacing:26.427415px;}
.ls82{letter-spacing:26.565269px;}
.lsaf{letter-spacing:27.434245px;}
.ls8e{letter-spacing:27.516305px;}
.lsa0{letter-spacing:27.524525px;}
.ls49{letter-spacing:28.139607px;}
.ls48{letter-spacing:28.150188px;}
.ls1d{letter-spacing:28.443172px;}
.ls7{letter-spacing:28.500300px;}
.ls2e{letter-spacing:28.858982px;}
.ls62{letter-spacing:28.882172px;}
.ls6d{letter-spacing:29.223031px;}
.lsbe{letter-spacing:29.304065px;}
.ls32{letter-spacing:29.886000px;}
.ls96{letter-spacing:29.889269px;}
.ls59{letter-spacing:30.568172px;}
.lsb5{letter-spacing:30.680245px;}
.lsb4{letter-spacing:30.684000px;}
.ls51{letter-spacing:30.719607px;}
.lsbb{letter-spacing:31.238727px;}
.ls52{letter-spacing:31.640525px;}
.lsae{letter-spacing:31.922282px;}
.lsbd{letter-spacing:32.720525px;}
.lsb3{letter-spacing:33.182245px;}
.ls4c{letter-spacing:33.473607px;}
.lsb8{letter-spacing:33.668525px;}
.ls50{letter-spacing:33.703140px;}
.lsba{letter-spacing:34.232525px;}
.lsb1{letter-spacing:36.164234px;}
.ls54{letter-spacing:36.295140px;}
.ls4b{letter-spacing:36.457140px;}
.lsb6{letter-spacing:37.454525px;}
.lsb2{letter-spacing:37.670282px;}
.lsbc{letter-spacing:38.480525px;}
.lsb9{letter-spacing:38.486525px;}
.ls74{letter-spacing:40.306438px;}
.ls25{letter-spacing:54.795269px;}
.ls19{letter-spacing:57.995249px;}
.ls23{letter-spacing:59.775269px;}
.ls60{letter-spacing:62.980200px;}
.ls76{letter-spacing:90.906538px;}
.lsa2{letter-spacing:100.263269px;}
.lsad{letter-spacing:107.583269px;}
.ls7a{letter-spacing:126.512525px;}
.ls3b{letter-spacing:131.883269px;}
.ls84{letter-spacing:142.586338px;}
.ls1c{letter-spacing:144.048538px;}
.lsd9{letter-spacing:146.855304px;}
.lsd6{letter-spacing:152.326665px;}
.lsc5{letter-spacing:152.704888px;}
.lsd1{letter-spacing:153.107843px;}
.ls2d{letter-spacing:157.755269px;}
.lsda{letter-spacing:157.798026px;}
.ls42{letter-spacing:182.511269px;}
.ls11{letter-spacing:205.485269px;}
.ls27{letter-spacing:239.664000px;}
.ls69{letter-spacing:249.399269px;}
.lsc9{letter-spacing:277.035569px;}
.lsc7{letter-spacing:363.444411px;}
.lsc3{letter-spacing:371.997269px;}
.lscb{letter-spacing:377.494059px;}
.ls97{letter-spacing:403.210200px;}
.ls64{letter-spacing:457.042188px;}
.ls9b{letter-spacing:458.128200px;}
.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;}
}
.ws4{word-spacing:-59.775600px;}
.wscd{word-spacing:-55.555443px;}
.wsbb{word-spacing:-50.463605px;}
.ws8a{word-spacing:-47.654765px;}
.wsd0{word-spacing:-47.502000px;}
.ws140{word-spacing:-45.006701px;}
.wse0{word-spacing:-43.157983px;}
.ws5f{word-spacing:-38.937826px;}
.wscc{word-spacing:-36.000000px;}
.ws6d{word-spacing:-33.223278px;}
.ws10c{word-spacing:-33.211407px;}
.ws141{word-spacing:-33.004914px;}
.ws92{word-spacing:-29.015076px;}
.ws58{word-spacing:-28.955301px;}
.wsb0{word-spacing:-26.480591px;}
.ws75{word-spacing:-25.679975px;}
.ws78{word-spacing:-25.667643px;}
.ws10a{word-spacing:-23.312543px;}
.ws68{word-spacing:-22.355009px;}
.ws66{word-spacing:-22.329627px;}
.ws6f{word-spacing:-19.714612px;}
.ws77{word-spacing:-18.084488px;}
.ws10d{word-spacing:-18.046020px;}
.ws107{word-spacing:-18.040020px;}
.ws71{word-spacing:-17.374736px;}
.ws57{word-spacing:-16.605662px;}
.ws2{word-spacing:-16.500000px;}
.ws72{word-spacing:-15.232957px;}
.ws44{word-spacing:-15.000000px;}
.ws6b{word-spacing:-14.808070px;}
.ws79{word-spacing:-13.686488px;}
.ws195{word-spacing:-12.000000px;}
.ws13b{word-spacing:-10.004290px;}
.wsb6{word-spacing:-7.609122px;}
.ws13c{word-spacing:-7.336479px;}
.wsb7{word-spacing:-7.018417px;}
.ws8c{word-spacing:-6.623136px;}
.wse2{word-spacing:-3.335478px;}
.wscb{word-spacing:-3.320193px;}
.ws129{word-spacing:-1.140000px;}
.ws34{word-spacing:-1.080000px;}
.ws175{word-spacing:-0.912000px;}
.ws199{word-spacing:-0.864000px;}
.ws35{word-spacing:-0.840000px;}
.ws180{word-spacing:-0.816000px;}
.ws1d{word-spacing:-0.720000px;}
.ws14e{word-spacing:-0.660000px;}
.wsf0{word-spacing:-0.480000px;}
.ws81{word-spacing:-0.360000px;}
.wsba{word-spacing:-0.303540px;}
.wsa9{word-spacing:-0.240000px;}
.ws19d{word-spacing:-0.144000px;}
.wsb1{word-spacing:-0.120000px;}
.ws14f{word-spacing:-0.072000px;}
.ws5{word-spacing:-0.060000px;}
.wsa4{word-spacing:-0.059776px;}
.ws6{word-spacing:-0.054000px;}
.ws148{word-spacing:-0.048000px;}
.ws10b{word-spacing:-0.047821px;}
.ws8d{word-spacing:-0.041843px;}
.ws89{word-spacing:-0.015471px;}
.ws50{word-spacing:0.000000px;}
.ws67{word-spacing:0.011955px;}
.wsd4{word-spacing:0.060000px;}
.wsb9{word-spacing:0.075885px;}
.ws157{word-spacing:0.144000px;}
.ws124{word-spacing:0.180000px;}
.wsb3{word-spacing:0.240000px;}
.ws8e{word-spacing:0.360000px;}
.ws4e{word-spacing:0.480000px;}
.wsb8{word-spacing:0.490016px;}
.wsdb{word-spacing:0.600000px;}
.ws156{word-spacing:0.660000px;}
.ws19e{word-spacing:0.768000px;}
.ws1e{word-spacing:0.840000px;}
.ws6e{word-spacing:0.900000px;}
.ws61{word-spacing:0.960000px;}
.ws37{word-spacing:1.080000px;}
.ws11f{word-spacing:1.140000px;}
.ws17c{word-spacing:1.200000px;}
.ws128{word-spacing:1.260000px;}
.wsbe{word-spacing:1.320000px;}
.ws183{word-spacing:1.392000px;}
.ws5b{word-spacing:1.500000px;}
.ws19a{word-spacing:1.536000px;}
.ws17e{word-spacing:1.584000px;}
.wsc4{word-spacing:1.800000px;}
.ws18d{word-spacing:1.824000px;}
.ws43{word-spacing:1.860000px;}
.ws96{word-spacing:1.920000px;}
.ws33{word-spacing:1.980000px;}
.wsc3{word-spacing:2.100000px;}
.ws7b{word-spacing:2.160000px;}
.ws3d{word-spacing:2.220000px;}
.ws7f{word-spacing:2.310000px;}
.ws80{word-spacing:2.340000px;}
.wsf1{word-spacing:2.400000px;}
.ws30{word-spacing:2.460000px;}
.ws167{word-spacing:2.544000px;}
.wsab{word-spacing:2.640000px;}
.wse1{word-spacing:2.700000px;}
.ws73{word-spacing:2.760000px;}
.ws173{word-spacing:2.784000px;}
.ws163{word-spacing:2.826000px;}
.ws165{word-spacing:2.832000px;}
.ws4f{word-spacing:2.880000px;}
.ws69{word-spacing:2.940000px;}
.ws65{word-spacing:2.970000px;}
.wsc9{word-spacing:3.000000px;}
.ws46{word-spacing:3.120000px;}
.wsdc{word-spacing:3.180000px;}
.wsc6{word-spacing:3.240000px;}
.ws158{word-spacing:3.312000px;}
.wsb4{word-spacing:3.360000px;}
.wsa5{word-spacing:3.480000px;}
.ws25{word-spacing:3.540000px;}
.ws2a{word-spacing:3.600000px;}
.ws127{word-spacing:3.720000px;}
.wsbc{word-spacing:3.744000px;}
.ws19{word-spacing:3.780000px;}
.ws136{word-spacing:3.840000px;}
.ws1a4{word-spacing:3.888000px;}
.ws95{word-spacing:3.900000px;}
.wsb5{word-spacing:3.960000px;}
.ws179{word-spacing:4.032000px;}
.wsaa{word-spacing:4.080000px;}
.ws13d{word-spacing:4.176000px;}
.ws42{word-spacing:4.200000px;}
.ws45{word-spacing:4.260000px;}
.ws19b{word-spacing:4.272000px;}
.ws14a{word-spacing:4.320000px;}
.wsa7{word-spacing:4.380000px;}
.ws10e{word-spacing:4.388877px;}
.ws120{word-spacing:4.395538px;}
.ws39{word-spacing:4.440000px;}
.ws147{word-spacing:4.464000px;}
.ws59{word-spacing:4.560000px;}
.ws5e{word-spacing:4.620000px;}
.wsb2{word-spacing:4.740000px;}
.ws15d{word-spacing:4.761600px;}
.ws15c{word-spacing:4.780800px;}
.wsac{word-spacing:4.800000px;}
.ws93{word-spacing:4.818000px;}
.ws162{word-spacing:4.848000px;}
.ws94{word-spacing:4.860000px;}
.ws168{word-spacing:4.944000px;}
.wsdf{word-spacing:4.980000px;}
.ws181{word-spacing:4.992000px;}
.ws24{word-spacing:5.040000px;}
.ws91{word-spacing:5.160000px;}
.wsde{word-spacing:5.220000px;}
.ws48{word-spacing:5.280000px;}
.wsca{word-spacing:5.340000px;}
.ws104{word-spacing:5.400000px;}
.ws5c{word-spacing:5.460000px;}
.ws176{word-spacing:5.472000px;}
.wsdd{word-spacing:5.520000px;}
.ws63{word-spacing:5.571086px;}
.ws60{word-spacing:5.580000px;}
.ws90{word-spacing:5.628000px;}
.ws8f{word-spacing:5.640000px;}
.ws16c{word-spacing:5.664000px;}
.ws38{word-spacing:5.700000px;}
.ws139{word-spacing:5.760000px;}
.ws166{word-spacing:5.808000px;}
.wsc0{word-spacing:5.820000px;}
.ws56{word-spacing:5.868000px;}
.ws2e{word-spacing:5.880000px;}
.ws7c{word-spacing:5.940000px;}
.ws22{word-spacing:6.000000px;}
.ws4d{word-spacing:6.120000px;}
.ws170{word-spacing:6.144000px;}
.ws11d{word-spacing:6.180000px;}
.ws16a{word-spacing:6.192000px;}
.ws74{word-spacing:6.240000px;}
.ws197{word-spacing:6.288000px;}
.ws5a{word-spacing:6.300000px;}
.ws196{word-spacing:6.336000px;}
.ws11c{word-spacing:6.360000px;}
.ws126{word-spacing:6.420000px;}
.ws178{word-spacing:6.432000px;}
.ws2c{word-spacing:6.480000px;}
.ws76{word-spacing:6.498000px;}
.ws2d{word-spacing:6.540000px;}
.ws70{word-spacing:6.558000px;}
.ws18e{word-spacing:6.576000px;}
.ws1{word-spacing:6.600000px;}
.ws51{word-spacing:6.660000px;}
.wsee{word-spacing:6.662877px;}
.ws16e{word-spacing:6.672000px;}
.wseb{word-spacing:6.720000px;}
.ws135{word-spacing:6.780000px;}
.ws11b{word-spacing:6.900000px;}
.ws40{word-spacing:6.960000px;}
.ws1a{word-spacing:7.080000px;}
.wsa6{word-spacing:7.200000px;}
.wsc8{word-spacing:7.260000px;}
.ws1a2{word-spacing:7.296000px;}
.wsd7{word-spacing:7.380000px;}
.ws17d{word-spacing:7.392000px;}
.ws189{word-spacing:7.440000px;}
.ws18b{word-spacing:7.488000px;}
.ws12c{word-spacing:7.500000px;}
.ws26{word-spacing:7.560000px;}
.ws105{word-spacing:7.620000px;}
.wsa8{word-spacing:7.740000px;}
.ws4a{word-spacing:7.800000px;}
.wsd6{word-spacing:7.920000px;}
.wse9{word-spacing:7.980000px;}
.wsec{word-spacing:8.040000px;}
.ws14d{word-spacing:8.100000px;}
.ws1b{word-spacing:8.160000px;}
.wsef{word-spacing:8.280000px;}
.ws9f{word-spacing:8.340000px;}
.wsda{word-spacing:8.400000px;}
.ws123{word-spacing:8.460000px;}
.wsd8{word-spacing:8.580000px;}
.ws112{word-spacing:8.640000px;}
.wsd3{word-spacing:8.700000px;}
.ws27{word-spacing:8.760000px;}
.ws134{word-spacing:8.940000px;}
.ws64{word-spacing:9.000000px;}
.ws62{word-spacing:9.060000px;}
.ws6c{word-spacing:9.114000px;}
.ws6a{word-spacing:9.120000px;}
.ws14{word-spacing:9.180000px;}
.ws1a0{word-spacing:9.216000px;}
.wsc7{word-spacing:9.240000px;}
.ws18a{word-spacing:9.264000px;}
.wsf5{word-spacing:9.300000px;}
.wse5{word-spacing:9.360000px;}
.wsd1{word-spacing:9.420000px;}
.ws185{word-spacing:9.504000px;}
.ws3c{word-spacing:9.540000px;}
.ws15b{word-spacing:9.552000px;}
.ws11a{word-spacing:9.600000px;}
.ws118{word-spacing:9.612000px;}
.wsd9{word-spacing:9.660000px;}
.ws36{word-spacing:9.720000px;}
.wsc2{word-spacing:9.744000px;}
.wsbd{word-spacing:9.780000px;}
.ws11e{word-spacing:9.840000px;}
.ws47{word-spacing:9.900000px;}
.ws12a{word-spacing:9.960000px;}
.ws21{word-spacing:10.080000px;}
.ws18{word-spacing:10.140000px;}
.ws172{word-spacing:10.176000px;}
.wsea{word-spacing:10.200000px;}
.ws3a{word-spacing:10.260000px;}
.ws2f{word-spacing:10.680000px;}
.ws17{word-spacing:10.800000px;}
.ws8b{word-spacing:10.860000px;}
.ws41{word-spacing:10.920000px;}
.ws18f{word-spacing:11.088000px;}
.ws198{word-spacing:11.136000px;}
.ws52{word-spacing:11.220000px;}
.wse7{word-spacing:11.460000px;}
.wsf4{word-spacing:11.520000px;}
.ws125{word-spacing:11.580000px;}
.ws131{word-spacing:11.640000px;}
.ws12d{word-spacing:11.700000px;}
.ws7e{word-spacing:11.760000px;}
.ws32{word-spacing:11.820000px;}
.ws15a{word-spacing:11.904000px;}
.ws108{word-spacing:11.994000px;}
.ws12b{word-spacing:12.060000px;}
.ws9b{word-spacing:12.240000px;}
.ws97{word-spacing:12.300000px;}
.ws16f{word-spacing:12.336000px;}
.ws1c{word-spacing:12.360000px;}
.ws3f{word-spacing:12.420000px;}
.wsf9{word-spacing:12.426000px;}
.ws9a{word-spacing:12.480000px;}
.ws29{word-spacing:12.540000px;}
.wsa2{word-spacing:12.660000px;}
.wsed{word-spacing:12.720000px;}
.ws161{word-spacing:12.816000px;}
.ws110{word-spacing:12.900000px;}
.ws54{word-spacing:12.960000px;}
.ws102{word-spacing:13.102812px;}
.ws17b{word-spacing:13.104000px;}
.ws103{word-spacing:13.140000px;}
.ws28{word-spacing:13.200000px;}
.ws88{word-spacing:13.300165px;}
.ws111{word-spacing:13.320000px;}
.ws184{word-spacing:13.344000px;}
.ws14b{word-spacing:13.380000px;}
.ws23{word-spacing:13.440000px;}
.ws4c{word-spacing:13.500000px;}
.ws17f{word-spacing:13.536000px;}
.ws133{word-spacing:13.560000px;}
.wsad{word-spacing:13.620000px;}
.wsae{word-spacing:13.680000px;}
.ws122{word-spacing:13.800000px;}
.ws191{word-spacing:13.872000px;}
.wsc{word-spacing:14.040000px;}
.ws3e{word-spacing:14.160000px;}
.wsc5{word-spacing:14.220000px;}
.wsa0{word-spacing:14.274000px;}
.wsa1{word-spacing:14.280000px;}
.ws82{word-spacing:14.400000px;}
.ws7d{word-spacing:14.460000px;}
.wsf7{word-spacing:14.520000px;}
.ws20{word-spacing:14.580000px;}
.ws101{word-spacing:14.632738px;}
.ws115{word-spacing:14.634000px;}
.ws117{word-spacing:14.640000px;}
.wsf2{word-spacing:14.700000px;}
.ws174{word-spacing:14.736000px;}
.ws5d{word-spacing:14.760000px;}
.ws164{word-spacing:14.784000px;}
.ws137{word-spacing:14.880000px;}
.ws14c{word-spacing:14.940000px;}
.wsce{word-spacing:15.000000px;}
.wsaf{word-spacing:15.060000px;}
.wsa3{word-spacing:15.120000px;}
.ws10f{word-spacing:15.180000px;}
.ws159{word-spacing:15.264000px;}
.ws114{word-spacing:15.480000px;}
.ws12f{word-spacing:15.540000px;}
.ws186{word-spacing:15.648000px;}
.wsfc{word-spacing:15.660000px;}
.wsfd{word-spacing:15.684000px;}
.ws193{word-spacing:15.762000px;}
.ws194{word-spacing:15.792000px;}
.ws17a{word-spacing:15.984000px;}
.wse4{word-spacing:16.020000px;}
.ws4b{word-spacing:16.080000px;}
.ws13e{word-spacing:16.116000px;}
.ws130{word-spacing:16.140000px;}
.ws9d{word-spacing:16.200000px;}
.ws19c{word-spacing:16.224000px;}
.ws100{word-spacing:16.260000px;}
.ws3b{word-spacing:16.320000px;}
.ws153{word-spacing:16.440000px;}
.ws16b{word-spacing:16.512000px;}
.ws9{word-spacing:16.524000px;}
.ws31{word-spacing:16.560000px;}
.ws2b{word-spacing:16.620000px;}
.ws15f{word-spacing:16.752000px;}
.ws16{word-spacing:16.860000px;}
.ws169{word-spacing:16.896000px;}
.ws154{word-spacing:16.920000px;}
.ws182{word-spacing:16.944000px;}
.ws9c{word-spacing:17.340000px;}
.ws177{word-spacing:17.424000px;}
.ws16d{word-spacing:17.616000px;}
.wsf3{word-spacing:17.640000px;}
.ws7{word-spacing:17.712000px;}
.wsf8{word-spacing:17.728673px;}
.ws1f{word-spacing:17.760000px;}
.wsfe{word-spacing:17.884860px;}
.ws121{word-spacing:18.120000px;}
.wsfa{word-spacing:18.180000px;}
.ws98{word-spacing:18.300000px;}
.ws12e{word-spacing:18.540000px;}
.wsd2{word-spacing:18.720000px;}
.ws55{word-spacing:18.840000px;}
.ws13a{word-spacing:18.900000px;}
.wsff{word-spacing:18.901045px;}
.ws9e{word-spacing:18.960000px;}
.ws152{word-spacing:19.080000px;}
.ws132{word-spacing:19.320000px;}
.ws106{word-spacing:19.374000px;}
.ws188{word-spacing:19.392000px;}
.ws18c{word-spacing:19.440000px;}
.ws15{word-spacing:19.500000px;}
.wsd5{word-spacing:19.680000px;}
.wscf{word-spacing:19.938000px;}
.ws99{word-spacing:19.980000px;}
.ws12{word-spacing:20.196000px;}
.wsf6{word-spacing:20.400000px;}
.wse3{word-spacing:20.820000px;}
.ws8{word-spacing:20.844000px;}
.ws0{word-spacing:20.916000px;}
.ws3{word-spacing:20.940000px;}
.ws1a1{word-spacing:21.168000px;}
.ws155{word-spacing:21.240000px;}
.ws160{word-spacing:21.504000px;}
.wsf{word-spacing:21.546000px;}
.ws138{word-spacing:21.660000px;}
.ws171{word-spacing:21.696000px;}
.wsd{word-spacing:21.870000px;}
.wse{word-spacing:21.978000px;}
.ws19f{word-spacing:21.984000px;}
.ws190{word-spacing:23.040000px;}
.wse8{word-spacing:23.364000px;}
.ws151{word-spacing:23.700000px;}
.ws150{word-spacing:24.000000px;}
.wsb{word-spacing:24.246000px;}
.ws119{word-spacing:24.570000px;}
.ws53{word-spacing:24.684000px;}
.ws10{word-spacing:24.894000px;}
.wsa{word-spacing:25.866000px;}
.ws49{word-spacing:26.928000px;}
.ws187{word-spacing:27.600000px;}
.ws149{word-spacing:28.548000px;}
.ws116{word-spacing:29.568000px;}
.ws11{word-spacing:30.024000px;}
.ws113{word-spacing:30.420000px;}
.wse6{word-spacing:32.934000px;}
.ws192{word-spacing:32.976000px;}
.wsfb{word-spacing:35.128673px;}
.ws13{word-spacing:35.928000px;}
.ws84{word-spacing:43.169938px;}
.wsbf{word-spacing:45.180000px;}
.ws85{word-spacing:46.517372px;}
.ws87{word-spacing:68.096364px;}
.ws86{word-spacing:71.384022px;}
.ws13f{word-spacing:92.045217px;}
.ws143{word-spacing:112.154335px;}
.ws7a{word-spacing:113.121807px;}
.ws142{word-spacing:119.133588px;}
.ws83{word-spacing:132.893114px;}
.ws15e{word-spacing:160.549415px;}
.ws144{word-spacing:262.689435px;}
.ws145{word-spacing:266.484158px;}
.ws146{word-spacing:285.487963px;}
.wsc1{word-spacing:362.085687px;}
.ws109{word-spacing:445.878000px;}
.ws1a3{word-spacing:1027.344000px;}
._1b{margin-left:-20.974120px;}
._e{margin-left:-16.099962px;}
._17{margin-left:-7.740000px;}
._5{margin-left:-6.660000px;}
._22{margin-left:-5.563750px;}
._4{margin-left:-3.948000px;}
._0{margin-left:-2.352000px;}
._1{margin-left:-1.320000px;}
._d{width:1.075736px;}
._b{width:2.123350px;}
._14{width:3.232423px;}
._3{width:4.296000px;}
._2{width:5.502000px;}
._1f{width:6.587540px;}
._15{width:7.842157px;}
._f{width:9.148808px;}
._30{width:13.836000px;}
._c{width:14.916000px;}
._21{width:16.800000px;}
._7{width:18.012000px;}
._6{width:19.872000px;}
._1a{width:21.492000px;}
._1d{width:22.572000px;}
._10{width:24.583976px;}
._23{width:28.992000px;}
._2f{width:30.000000px;}
._a{width:33.000000px;}
._8{width:36.000000px;}
._27{width:47.520000px;}
._26{width:54.000000px;}
._18{width:72.000000px;}
._2a{width:74.124000px;}
._2d{width:75.438000px;}
._19{width:78.604914px;}
._2b{width:120.720000px;}
._20{width:149.242075px;}
._25{width:156.430186px;}
._24{width:164.409253px;}
._16{width:167.268091px;}
._2c{width:178.494000px;}
._13{width:181.777600px;}
._29{width:194.478000px;}
._28{width:240.719863px;}
._11{width:264.088601px;}
._12{width:278.853174px;}
._1e{width:411.616907px;}
._9{width:413.160000px;}
._1c{width:443.520000px;}
._2e{width:1234.440000px;}
.fc3{color:rgb(76,76,78);}
.fc2{color:transparent;}
.fc1{color:rgb(192,0,0);}
.fc4{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs17{font-size:26.334397px;}
.fs19{font-size:26.409213px;}
.fs8{font-size:29.887800px;}
.fs15{font-size:31.122643px;}
.fs1d{font-size:33.011516px;}
.fsb{font-size:34.232342px;}
.fs14{font-size:35.865600px;}
.fs16{font-size:35.910570px;}
.fs18{font-size:36.012563px;}
.fse{font-size:37.942560px;}
.fsd{font-size:38.018445px;}
.fs13{font-size:38.400000px;}
.fs1a{font-size:38.903304px;}
.fs1e{font-size:41.167440px;}
.fs7{font-size:41.842800px;}
.fs12{font-size:41.999400px;}
.fs9{font-size:44.265960px;}
.fsa{font-size:44.324981px;}
.fs10{font-size:44.392795px;}
.fs1b{font-size:44.888213px;}
.fs1c{font-size:45.015704px;}
.fs2{font-size:47.820600px;}
.fs11{font-size:48.000000px;}
.fsf{font-size:50.463605px;}
.fs5{font-size:54.000000px;}
.fsc{font-size:56.913840px;}
.fs4{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1c0{bottom:1.455562px;}
.y1da{bottom:2.567816px;}
.y1bf{bottom:2.652943px;}
.y1e3{bottom:2.816604px;}
.y1c9{bottom:2.851974px;}
.y1c1{bottom:5.046906px;}
.y1ec{bottom:11.847989px;}
.y1be{bottom:15.021621px;}
.y1d9{bottom:18.029662px;}
.y1cc{bottom:23.300949px;}
.y1c2{bottom:23.300977px;}
.yd1{bottom:27.770002px;}
.yd0{bottom:28.241682px;}
.y1e6{bottom:28.378271px;}
.y1db{bottom:28.378857px;}
.yd3{bottom:31.793494px;}
.y1cf{bottom:40.401314px;}
.yc2{bottom:43.897077px;}
.yca{bottom:45.047992px;}
.y1c3{bottom:47.241293px;}
.y1dc{bottom:53.441339px;}
.y1d5{bottom:55.920427px;}
.y1d0{bottom:57.500872px;}
.y51{bottom:58.605091px;}
.ybf{bottom:58.605109px;}
.y1c8{bottom:63.102317px;}
.y1c4{bottom:71.181608px;}
.yd9{bottom:72.676602px;}
.y1d1{bottom:74.601208px;}
.y1cd{bottom:75.371879px;}
.y1dd{bottom:78.502847px;}
.y1e9{bottom:78.503233px;}
.y1e2{bottom:78.877897px;}
.y1ce{bottom:80.159806px;}
.y1cb{bottom:83.152127px;}
.y1d2{bottom:91.701545px;}
.y1e7{bottom:93.840168px;}
.y1c5{bottom:95.121923px;}
.y1ea{bottom:99.825676px;}
.yd5{bottom:101.663137px;}
.y1e5{bottom:103.565714px;}
.y1de{bottom:103.566301px;}
.y1d3{bottom:108.801881px;}
.yc5{bottom:118.602033px;}
.y1c6{bottom:119.062238px;}
.y1d4{bottom:125.902217px;}
.y1df{bottom:128.628782px;}
.y1e8{bottom:128.629168px;}
.y1bc{bottom:136.113000px;}
.y88{bottom:136.114500px;}
.yc3{bottom:136.720336px;}
.ycb{bottom:138.921338px;}
.yd6{bottom:139.874457px;}
.yc8{bottom:141.933882px;}
.y1c7{bottom:143.002554px;}
.y1ca{bottom:143.003304px;}
.y26d{bottom:144.636000px;}
.y215{bottom:149.614500px;}
.y1bb{bottom:152.913000px;}
.ybe{bottom:152.914500px;}
.y1e0{bottom:153.691263px;}
.yd4{bottom:157.857649px;}
.y26c{bottom:158.136000px;}
.yc6{bottom:158.386064px;}
.yda{bottom:159.320019px;}
.ycc{bottom:161.644531px;}
.yd8{bottom:161.651905px;}
.y242{bottom:163.114500px;}
.y15d{bottom:164.187000px;}
.y18b{bottom:165.741000px;}
.y214{bottom:166.852500px;}
.y1ba{bottom:169.713000px;}
.ybd{bottom:169.714500px;}
.y87{bottom:171.343500px;}
.y10b{bottom:171.354000px;}
.y26b{bottom:171.636000px;}
.y2f{bottom:173.914500px;}
.yce{bottom:178.109008px;}
.y1e1{bottom:178.753744px;}
.y1e4{bottom:178.754130px;}
.y213{bottom:180.352500px;}
.y241{bottom:181.543500px;}
.y15a{bottom:181.872000px;}
.y18a{bottom:182.541000px;}
.y203{bottom:184.573500px;}
.y1b9{bottom:186.513000px;}
.ybc{bottom:186.514500px;}
.ycf{bottom:187.749151px;}
.y83{bottom:187.768500px;}
.y86{bottom:188.143500px;}
.y10a{bottom:188.154000px;}
.y2e{bottom:190.714500px;}
.y84{bottom:190.903500px;}
.yc7{bottom:191.597830px;}
.y212{bottom:193.852500px;}
.y240{bottom:195.043500px;}
.y15c{bottom:196.108500px;}
.y263{bottom:197.085000px;}
.yc4{bottom:198.502090px;}
.y189{bottom:199.341000px;}
.y15b{bottom:200.608500px;}
.yd7{bottom:201.720830px;}
.y1b8{bottom:203.313000px;}
.ybb{bottom:203.314500px;}
.y85{bottom:204.943500px;}
.y109{bottom:204.954000px;}
.y211{bottom:207.352500px;}
.y2d{bottom:207.514500px;}
.y23f{bottom:208.543500px;}
.y262{bottom:210.585000px;}
.y188{bottom:216.141000px;}
.y1b7{bottom:220.113000px;}
.yba{bottom:220.114500px;}
.y202{bottom:220.434000px;}
.y159{bottom:220.989000px;}
.y108{bottom:222.055500px;}
.y261{bottom:224.085000px;}
.y2c{bottom:224.314500px;}
.y23e{bottom:226.972500px;}
.y187{bottom:232.941000px;}
.ycd{bottom:234.597292px;}
.y107{bottom:236.400000px;}
.y210{bottom:236.749500px;}
.y82{bottom:236.785500px;}
.y1b6{bottom:236.913000px;}
.yb9{bottom:236.914500px;}
.y201{bottom:237.234000px;}
.y260{bottom:237.585000px;}
.y158{bottom:238.392000px;}
.y23d{bottom:240.472500px;}
.y2b{bottom:241.114500px;}
.y106{bottom:246.745500px;}
.yf1{bottom:248.233500px;}
.y186{bottom:249.741000px;}
.y7e{bottom:253.210500px;}
.y81{bottom:253.585500px;}
.y1b5{bottom:253.713000px;}
.yb8{bottom:253.714500px;}
.y23c{bottom:253.972500px;}
.y200{bottom:254.034000px;}
.y157{bottom:255.192000px;}
.y7f{bottom:256.345500px;}
.y25f{bottom:257.835000px;}
.y2a{bottom:257.914500px;}
.yc9{bottom:260.517471px;}
.y185{bottom:266.632500px;}
.y23b{bottom:267.472500px;}
.y20f{bottom:270.199500px;}
.y80{bottom:270.385500px;}
.y1b4{bottom:270.513000px;}
.yb7{bottom:270.514500px;}
.y1ff{bottom:270.834000px;}
.y25e{bottom:271.335000px;}
.y156{bottom:271.992000px;}
.y29{bottom:274.714500px;}
.y26a{bottom:276.030000px;}
.yf0{bottom:283.027500px;}
.yd2{bottom:283.068097px;}
.y184{bottom:283.432500px;}
.y25d{bottom:284.835000px;}
.y23a{bottom:285.901500px;}
.y20e{bottom:286.999500px;}
.y1b3{bottom:287.115000px;}
.y1fe{bottom:287.634000px;}
.yb6{bottom:287.635500px;}
.y155{bottom:288.792000px;}
.y28{bottom:291.514500px;}
.y126{bottom:293.004000px;}
.y105{bottom:297.046500px;}
.y239{bottom:299.401500px;}
.yef{bottom:299.827500px;}
.y183{bottom:300.232500px;}
.y7d{bottom:301.552500px;}
.y20d{bottom:303.799500px;}
.y1b2{bottom:303.915000px;}
.y1fd{bottom:304.434000px;}
.yb5{bottom:304.435500px;}
.y25c{bottom:305.085000px;}
.y154{bottom:305.592000px;}
.y50{bottom:306.574500px;}
.y27{bottom:308.314500px;}
.yc1{bottom:310.335120px;}
.y238{bottom:312.901500px;}
.yee{bottom:316.627500px;}
.y182{bottom:317.032500px;}
.y7c{bottom:318.352500px;}
.y25b{bottom:318.585000px;}
.y20c{bottom:320.599500px;}
.y1b1{bottom:320.715000px;}
.y1fc{bottom:321.234000px;}
.yb4{bottom:321.235500px;}
.y153{bottom:322.392000px;}
.y103{bottom:322.855500px;}
.y104{bottom:323.553000px;}
.y26{bottom:325.114500px;}
.y237{bottom:331.330500px;}
.y25a{bottom:332.085000px;}
.y7b{bottom:335.152500px;}
.y125{bottom:336.495000px;}
.y20b{bottom:337.399500px;}
.y1b0{bottom:337.515000px;}
.y1fb{bottom:338.034000px;}
.yb3{bottom:338.035500px;}
.y152{bottom:339.192000px;}
.y102{bottom:341.466000px;}
.y25{bottom:341.914500px;}
.y4f{bottom:342.636000px;}
.y236{bottom:344.830500px;}
.y181{bottom:351.013500px;}
.y7a{bottom:351.952500px;}
.y259{bottom:352.335000px;}
.y124{bottom:353.295000px;}
.y20a{bottom:354.199500px;}
.y1af{bottom:354.315000px;}
.y1fa{bottom:354.834000px;}
.yb2{bottom:354.835500px;}
.y151{bottom:355.992000px;}
.y235{bottom:358.330500px;}
.y4e{bottom:359.436000px;}
.y24{bottom:359.544000px;}
.yed{bottom:361.546500px;}
.y258{bottom:365.835000px;}
.y79{bottom:368.752500px;}
.y209{bottom:370.999500px;}
.y1ae{bottom:371.115000px;}
.y1f9{bottom:371.634000px;}
.yb1{bottom:371.635500px;}
.y150{bottom:372.792000px;}
.y4d{bottom:376.236000px;}
.y23{bottom:376.344000px;}
.y234{bottom:376.759500px;}
.y257{bottom:379.335000px;}
.y78{bottom:385.552500px;}
.y101{bottom:386.830500px;}
.y123{bottom:387.756000px;}
.y208{bottom:387.799500px;}
.y1ad{bottom:387.915000px;}
.y1f8{bottom:388.434000px;}
.yb0{bottom:388.435500px;}
.y233{bottom:390.259500px;}
.yec{bottom:390.861000px;}
.y256{bottom:392.835000px;}
.y4c{bottom:393.036000px;}
.y22{bottom:393.144000px;}
.y14f{bottom:393.946500px;}
.y14e{bottom:397.641000px;}
.y180{bottom:400.968000px;}
.y77{bottom:402.352500px;}
.y100{bottom:403.630500px;}
.y232{bottom:403.759500px;}
.y207{bottom:404.599500px;}
.y1ac{bottom:404.715000px;}
.y1f7{bottom:405.234000px;}
.yaf{bottom:405.235500px;}
.y14d{bottom:407.892000px;}
.y4b{bottom:409.836000px;}
.y21{bottom:409.944000px;}
.y255{bottom:413.085000px;}
.y269{bottom:414.316500px;}
.y231{bottom:417.259500px;}
.y17f{bottom:417.768000px;}
.y76{bottom:419.152500px;}
.yff{bottom:420.430500px;}
.y206{bottom:421.399500px;}
.y1ab{bottom:421.515000px;}
.yae{bottom:422.035500px;}
.yeb{bottom:425.655000px;}
.y4a{bottom:426.396000px;}
.y254{bottom:426.585000px;}
.y20{bottom:426.744000px;}
.y122{bottom:426.985500px;}
.y17e{bottom:434.568000px;}
.y230{bottom:435.690000px;}
.y1f6{bottom:436.893000px;}
.yfe{bottom:437.230500px;}
.y205{bottom:438.199500px;}
.y1aa{bottom:438.315000px;}
.yad{bottom:438.835500px;}
.y253{bottom:440.085000px;}
.y14c{bottom:441.349500px;}
.yea{bottom:442.455000px;}
.y49{bottom:443.196000px;}
.y1f{bottom:443.544000px;}
.y75{bottom:444.049500px;}
.y74{bottom:447.805500px;}
.y22f{bottom:449.190000px;}
.y17d{bottom:451.368000px;}
.y252{bottom:453.585000px;}
.yfd{bottom:454.030500px;}
.y204{bottom:454.999500px;}
.y1a9{bottom:455.115000px;}
.yac{bottom:455.635500px;}
.y73{bottom:458.056500px;}
.y14b{bottom:458.149500px;}
.ye9{bottom:459.255000px;}
.y48{bottom:459.996000px;}
.y1e{bottom:460.344000px;}
.y22e{bottom:462.690000px;}
.y121{bottom:468.121500px;}
.y17c{bottom:468.259500px;}
.y1f5{bottom:471.799500px;}
.y1a8{bottom:471.915000px;}
.yab{bottom:472.435500px;}
.y251{bottom:473.835000px;}
.y14a{bottom:474.949500px;}
.y22d{bottom:476.190000px;}
.y47{bottom:476.796000px;}
.y1d{bottom:477.144000px;}
.yfc{bottom:482.265000px;}
.y120{bottom:484.921500px;}
.y17b{bottom:485.059500px;}
.ye8{bottom:485.068500px;}
.y250{bottom:487.335000px;}
.y1f4{bottom:488.599500px;}
.y1a7{bottom:488.715000px;}
.yaa{bottom:489.235500px;}
.yfb{bottom:490.288500px;}
.y149{bottom:491.749500px;}
.y46{bottom:493.596000px;}
.y72{bottom:493.893000px;}
.y1c{bottom:493.944000px;}
.y22c{bottom:494.619000px;}
.ye7{bottom:495.414000px;}
.y24f{bottom:500.835000px;}
.y11f{bottom:501.721500px;}
.y17a{bottom:501.859500px;}
.y1f3{bottom:505.399500px;}
.y1a6{bottom:505.515000px;}
.ya9{bottom:506.035500px;}
.y22b{bottom:508.119000px;}
.y148{bottom:508.549500px;}
.y45{bottom:510.396000px;}
.y1b{bottom:510.744000px;}
.y71{bottom:512.782500px;}
.yfa{bottom:513.537000px;}
.y24e{bottom:514.335000px;}
.y22a{bottom:521.619000px;}
.y1a5{bottom:522.117000px;}
.y1f2{bottom:522.199500px;}
.ya8{bottom:522.835500px;}
.y147{bottom:525.349500px;}
.y44{bottom:527.196000px;}
.y1a{bottom:527.544000px;}
.y70{bottom:529.582500px;}
.ye6{bottom:530.208000px;}
.yf9{bottom:530.337000px;}
.y24d{bottom:534.585000px;}
.y229{bottom:535.119000px;}
.y179{bottom:535.839000px;}
.y11e{bottom:536.182500px;}
.y1a4{bottom:538.917000px;}
.y1f1{bottom:538.999500px;}
.ya7{bottom:539.635500px;}
.y146{bottom:542.149500px;}
.y43{bottom:543.996000px;}
.y19{bottom:544.344000px;}
.y6f{bottom:546.382500px;}
.ye5{bottom:547.008000px;}
.yf8{bottom:547.137000px;}
.y24c{bottom:548.085000px;}
.y268{bottom:552.604500px;}
.y228{bottom:553.548000px;}
.y1a3{bottom:555.717000px;}
.y1f0{bottom:555.799500px;}
.ya6{bottom:556.435500px;}
.y145{bottom:558.949500px;}
.y42{bottom:560.796000px;}
.y18{bottom:561.144000px;}
.y24b{bottom:561.585000px;}
.y6e{bottom:563.182500px;}
.ye4{bottom:563.808000px;}
.yf7{bottom:563.937000px;}
.y227{bottom:567.048000px;}
.y1a2{bottom:572.517000px;}
.y1ef{bottom:572.599500px;}
.ya5{bottom:573.235500px;}
.y178{bottom:573.268500px;}
.y144{bottom:575.749500px;}
.y41{bottom:577.596000px;}
.y17{bottom:577.944000px;}
.y6d{bottom:579.982500px;}
.y226{bottom:580.548000px;}
.ye3{bottom:580.608000px;}
.yf6{bottom:580.737000px;}
.y24a{bottom:581.835000px;}
.y1a1{bottom:589.317000px;}
.ya4{bottom:590.035500px;}
.y177{bottom:590.068500px;}
.y143{bottom:592.272000px;}
.y11d{bottom:593.595000px;}
.y225{bottom:594.048000px;}
.y40{bottom:594.396000px;}
.y16{bottom:594.744000px;}
.y249{bottom:595.335000px;}
.ye2{bottom:597.408000px;}
.yf5{bottom:597.537000px;}
.y1a0{bottom:606.117000px;}
.ya3{bottom:606.835500px;}
.y176{bottom:606.868500px;}
.y6c{bottom:607.566000px;}
.y248{bottom:608.835000px;}
.y142{bottom:609.072000px;}
.y3f{bottom:611.196000px;}
.y15{bottom:611.544000px;}
.y224{bottom:612.477000px;}
.ye1{bottom:614.208000px;}
.yf4{bottom:614.337000px;}
.y1ee{bottom:618.037500px;}
.y247{bottom:622.335000px;}
.y19f{bottom:622.917000px;}
.ya2{bottom:623.635500px;}
.y175{bottom:623.668500px;}
.y141{bottom:625.872000px;}
.y223{bottom:625.977000px;}
.y3e{bottom:627.996000px;}
.ye0{bottom:631.008000px;}
.yf3{bottom:631.137000px;}
.y1ed{bottom:631.537500px;}
.y6b{bottom:635.149500px;}
.y222{bottom:639.477000px;}
.y19e{bottom:639.717000px;}
.ya1{bottom:640.435500px;}
.y174{bottom:640.468500px;}
.y246{bottom:642.585000px;}
.y140{bottom:642.672000px;}
.y3d{bottom:644.554500px;}
.y14{bottom:648.553500px;}
.y11c{bottom:651.009000px;}
.y6a{bottom:651.949500px;}
.y245{bottom:656.085000px;}
.y19d{bottom:656.517000px;}
.y1eb{bottom:656.737500px;}
.ya0{bottom:657.235500px;}
.y173{bottom:657.268500px;}
.y221{bottom:657.906000px;}
.ydf{bottom:657.936000px;}
.yf2{bottom:658.204500px;}
.y13f{bottom:659.472000px;}
.y3c{bottom:661.354500px;}
.y69{bottom:668.896500px;}
.y244{bottom:669.585000px;}
.y220{bottom:671.406000px;}
.y19c{bottom:673.119000px;}
.y172{bottom:674.068500px;}
.yde{bottom:675.004500px;}
.y13e{bottom:676.272000px;}
.y3b{bottom:678.154500px;}
.y21f{bottom:684.906000px;}
.y68{bottom:685.696500px;}
.y1d8{bottom:688.756500px;}
.y13{bottom:689.764500px;}
.y243{bottom:689.835000px;}
.y19b{bottom:689.919000px;}
.y171{bottom:690.868500px;}
.y267{bottom:690.891000px;}
.ydd{bottom:691.804500px;}
.y9f{bottom:692.157000px;}
.y13d{bottom:693.072000px;}
.y3a{bottom:694.954500px;}
.y67{bottom:702.496500px;}
.y21e{bottom:703.335000px;}
.y19a{bottom:706.719000px;}
.y12{bottom:707.014500px;}
.y170{bottom:707.668500px;}
.y11b{bottom:708.421500px;}
.y13c{bottom:709.594500px;}
.y39{bottom:711.754500px;}
.y21d{bottom:716.835000px;}
.y66{bottom:719.296500px;}
.y199{bottom:723.519000px;}
.y11{bottom:724.264500px;}
.y16f{bottom:724.468500px;}
.y13b{bottom:726.394500px;}
.y38{bottom:728.554500px;}
.y9e{bottom:730.528500px;}
.ydc{bottom:734.782500px;}
.y65{bottom:736.096500px;}
.y198{bottom:740.319000px;}
.y16e{bottom:741.268500px;}
.y10{bottom:741.514500px;}
.y13a{bottom:743.194500px;}
.y37{bottom:745.354500px;}
.y9d{bottom:747.328500px;}
.ydb{bottom:748.282500px;}
.y64{bottom:752.896500px;}
.y197{bottom:757.119000px;}
.y16d{bottom:758.068500px;}
.yf{bottom:758.764500px;}
.y11a{bottom:759.682500px;}
.y139{bottom:759.994500px;}
.y36{bottom:762.154500px;}
.y21c{bottom:762.273000px;}
.y9c{bottom:764.128500px;}
.y63{bottom:769.696500px;}
.yc0{bottom:773.482500px;}
.y196{bottom:773.919000px;}
.y16c{bottom:774.868500px;}
.ye{bottom:776.014500px;}
.y119{bottom:776.482500px;}
.y138{bottom:776.794500px;}
.y35{bottom:778.954500px;}
.y9b{bottom:780.928500px;}
.y62{bottom:786.496500px;}
.y195{bottom:790.719000px;}
.y16b{bottom:791.668500px;}
.yd{bottom:793.264500px;}
.y118{bottom:793.282500px;}
.y137{bottom:793.594500px;}
.y34{bottom:795.754500px;}
.y61{bottom:803.296500px;}
.y194{bottom:807.519000px;}
.y9a{bottom:809.281500px;}
.y117{bottom:810.082500px;}
.y136{bottom:810.394500px;}
.yc{bottom:810.514500px;}
.y33{bottom:812.313000px;}
.y60{bottom:820.096500px;}
.y193{bottom:824.319000px;}
.y16a{bottom:825.648000px;}
.y116{bottom:826.882500px;}
.y135{bottom:827.194500px;}
.yb{bottom:827.763000px;}
.y32{bottom:829.113000px;}
.y266{bottom:833.430000px;}
.y5f{bottom:836.896500px;}
.y192{bottom:841.119000px;}
.y115{bottom:843.682500px;}
.y134{bottom:843.994500px;}
.y99{bottom:844.632000px;}
.ya{bottom:845.013000px;}
.y31{bottom:845.913000px;}
.y5e{bottom:853.696500px;}
.y191{bottom:857.919000px;}
.y114{bottom:860.482500px;}
.y133{bottom:860.794500px;}
.y98{bottom:861.432000px;}
.y9{bottom:862.263000px;}
.y30{bottom:862.713000px;}
.y169{bottom:863.079000px;}
.y5d{bottom:870.645000px;}
.y190{bottom:874.719000px;}
.y113{bottom:877.282500px;}
.y132{bottom:877.594500px;}
.y97{bottom:878.232000px;}
.y8{bottom:879.513000px;}
.y168{bottom:879.879000px;}
.y5c{bottom:887.445000px;}
.y18f{bottom:891.519000px;}
.y112{bottom:894.082500px;}
.y131{bottom:894.394500px;}
.y96{bottom:895.032000px;}
.y167{bottom:896.679000px;}
.y5b{bottom:904.245000px;}
.y1d7{bottom:908.508000px;}
.y111{bottom:910.882500px;}
.y130{bottom:911.194500px;}
.y166{bottom:913.479000px;}
.y5a{bottom:921.045000px;}
.y1d6{bottom:922.008000px;}
.y18e{bottom:923.691000px;}
.y94{bottom:924.690000px;}
.y7{bottom:927.933000px;}
.y12f{bottom:927.994500px;}
.y93{bottom:929.842500px;}
.y165{bottom:930.279000px;}
.y95{bottom:931.483500px;}
.y59{bottom:937.845000px;}
.y92{bottom:944.388000px;}
.y12e{bottom:944.794500px;}
.y6{bottom:946.123500px;}
.y164{bottom:947.170500px;}
.y1bd{bottom:947.208000px;}
.y110{bottom:950.172000px;}
.y58{bottom:954.645000px;}
.y18d{bottom:959.313000px;}
.y12d{bottom:961.317000px;}
.y91{bottom:962.904000px;}
.y5{bottom:969.738000px;}
.y21b{bottom:970.680000px;}
.y57{bottom:971.445000px;}
.y18c{bottom:976.113000px;}
.y12c{bottom:978.117000px;}
.y90{bottom:979.672500px;}
.y265{bottom:980.691000px;}
.y4{bottom:982.839000px;}
.y56{bottom:988.245000px;}
.y10f{bottom:992.913000px;}
.y163{bottom:994.888500px;}
.y12b{bottom:994.917000px;}
.y3{bottom:1002.144000px;}
.y21a{bottom:1006.408500px;}
.y8e{bottom:1008.618000px;}
.y162{bottom:1008.985500px;}
.y10e{bottom:1009.713000px;}
.y12a{bottom:1011.717000px;}
.y8b{bottom:1015.278000px;}
.y219{bottom:1020.505500px;}
.y55{bottom:1022.454000px;}
.y161{bottom:1023.084000px;}
.y8f{bottom:1025.041500px;}
.y8d{bottom:1025.418000px;}
.y10d{bottom:1026.513000px;}
.y129{bottom:1028.517000px;}
.y218{bottom:1034.604000px;}
.y160{bottom:1037.181000px;}
.y8c{bottom:1042.218000px;}
.y8a{bottom:1042.278000px;}
.y10c{bottom:1043.313000px;}
.y128{bottom:1045.317000px;}
.y217{bottom:1048.701000px;}
.y15f{bottom:1054.866000px;}
.y89{bottom:1055.778000px;}
.y54{bottom:1060.113000px;}
.y127{bottom:1062.117000px;}
.y2{bottom:1063.344000px;}
.y216{bottom:1066.386000px;}
.y53{bottom:1076.913000px;}
.y15e{bottom:1080.213000px;}
.y264{bottom:1085.359500px;}
.y1{bottom:1088.844000px;}
.y52{bottom:1093.713000px;}
.h13{height:3.000000px;}
.h1b{height:7.971280px;}
.h46{height:19.185019px;}
.h3{height:22.236579px;}
.h44{height:22.673332px;}
.h26{height:23.401015px;}
.h45{height:26.161411px;}
.h47{height:26.235715px;}
.h40{height:26.419200px;}
.h24{height:27.546338px;}
.h3d{height:28.202047px;}
.h49{height:28.341665px;}
.h18{height:28.740000px;}
.h3e{height:29.415488px;}
.h22{height:29.914106px;}
.h4d{height:29.991123px;}
.h2a{height:30.494850px;}
.h29{height:30.555840px;}
.h33{height:31.382100px;}
.h4c{height:32.019120px;}
.h15{height:32.291700px;}
.h4a{height:32.701764px;}
.h4b{height:32.794644px;}
.h2d{height:33.024000px;}
.h4f{height:33.264000px;}
.h41{height:33.312000px;}
.h2c{height:33.663091px;}
.h25{height:35.620265px;}
.h23{height:35.667758px;}
.h42{height:35.865450px;}
.h7{height:37.476000px;}
.h6{height:37.746000px;}
.h2b{height:40.558151px;}
.h4{height:41.160000px;}
.h9{height:41.280000px;}
.h4e{height:41.580000px;}
.h5{height:44.831700px;}
.h38{height:45.470047px;}
.h28{height:45.742276px;}
.hb{height:45.804000px;}
.h2{height:45.990579px;}
.h3b{height:49.892047px;}
.h8{height:49.968000px;}
.h36{height:50.591587px;}
.h20{height:50.820000px;}
.h1a{height:53.072100px;}
.h11{height:53.078100px;}
.h19{height:56.060100px;}
.h34{height:58.256047px;}
.h1d{height:58.281280px;}
.h1{height:58.296000px;}
.h3c{height:59.939700px;}
.h31{height:59.940000px;}
.h3f{height:59.945700px;}
.h39{height:60.248047px;}
.ha{height:60.410156px;}
.hc{height:63.888000px;}
.hf{height:63.894000px;}
.h1f{height:64.422000px;}
.h1c{height:65.441700px;}
.h30{height:73.374000px;}
.h1e{height:78.891280px;}
.hd{height:85.265700px;}
.h37{height:85.277700px;}
.h2e{height:86.213700px;}
.h2f{height:87.546000px;}
.h3a{height:97.062000px;}
.h10{height:97.308000px;}
.h16{height:123.540000px;}
.h12{height:123.546000px;}
.he{height:126.275700px;}
.h35{height:128.928000px;}
.h32{height:134.382000px;}
.h43{height:158.265360px;}
.h17{height:189.240000px;}
.h14{height:189.246000px;}
.h48{height:197.831700px;}
.h27{height:301.953216px;}
.h21{height:331.994700px;}
.h0{height:1188.000000px;}
.w3{width:181.445640px;}
.w4{width:226.807050px;}
.w2{width:302.397460px;}
.w1{width:415.804918px;}
.w5{width:680.406300px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x66{left:9.603350px;}
.x73{left:12.004188px;}
.x68{left:14.805165px;}
.x69{left:17.206062px;}
.x64{left:18.406421px;}
.x6e{left:21.407828px;}
.x72{left:23.008027px;}
.x65{left:25.009085px;}
.x6c{left:27.009422px;}
.x60{left:30.610679px;}
.x3b{left:34.942726px;}
.x70{left:38.263348px;}
.x2d{left:41.713290px;}
.x76{left:44.265442px;}
.x6d{left:57.320037px;}
.x61{left:59.120665px;}
.x6b{left:61.521502px;}
.xc{left:81.000000px;}
.x5c{left:86.259000px;}
.x4e{left:88.471500px;}
.x71{left:91.907112px;}
.x5f{left:93.000000px;}
.x77{left:94.908159px;}
.x2b{left:97.276500px;}
.x1{left:101.772000px;}
.xd{left:103.500000px;}
.x11{left:108.750000px;}
.x6f{left:113.547000px;}
.x83{left:114.916500px;}
.x2f{left:116.376438px;}
.x78{left:118.803000px;}
.x3c{left:120.107964px;}
.x85{left:121.591500px;}
.x81{left:123.669000px;}
.x84{left:125.754000px;}
.x13{left:129.129000px;}
.x50{left:131.055000px;}
.x82{left:132.834000px;}
.x42{left:133.995000px;}
.x21{left:137.929500px;}
.x62{left:144.050253px;}
.x18{left:146.406000px;}
.x2c{left:148.217189px;}
.x10{left:149.860500px;}
.x37{left:153.719694px;}
.x14{left:156.526500px;}
.x1c{left:158.406000px;}
.x63{left:159.655377px;}
.x12{left:163.924500px;}
.x1d{left:165.048000px;}
.x5e{left:166.075500px;}
.x31{left:170.319429px;}
.x41{left:176.563332px;}
.x19{left:177.793500px;}
.x1e{left:185.644500px;}
.x40{left:193.242249px;}
.x3f{left:197.186694px;}
.x1a{left:198.390000px;}
.x43{left:200.368500px;}
.x35{left:207.176989px;}
.x4f{left:208.899000px;}
.x1f{left:209.919000px;}
.x5d{left:212.845500px;}
.x3{left:214.359000px;}
.x3e{left:215.857595px;}
.x45{left:221.334000px;}
.x36{left:228.473834px;}
.x8{left:238.816500px;}
.xb{left:241.350000px;}
.x15{left:242.676000px;}
.x30{left:245.516229px;}
.x6{left:247.930500px;}
.x7e{left:250.923000px;}
.x7d{left:252.243000px;}
.x44{left:259.245000px;}
.x3d{left:266.700626px;}
.x7{left:271.117500px;}
.x67{left:274.930500px;}
.x33{left:283.050074px;}
.x34{left:288.878425px;}
.x32{left:294.503891px;}
.x39{left:295.739649px;}
.x16{left:311.887500px;}
.x9{left:335.820000px;}
.x7c{left:337.362000px;}
.x17{left:339.285000px;}
.x74{left:345.598500px;}
.x38{left:347.573859px;}
.x20{left:354.969000px;}
.x1b{left:360.327000px;}
.x2e{left:364.634697px;}
.x2{left:382.413000px;}
.x2a{left:447.750000px;}
.x6a{left:461.625000px;}
.x4{left:463.428000px;}
.xf{left:472.500000px;}
.x4c{left:483.409500px;}
.x5b{left:484.500000px;}
.xe{left:495.000000px;}
.x25{left:496.206000px;}
.x51{left:497.602500px;}
.x7b{left:499.992000px;}
.x49{left:503.382000px;}
.x26{left:515.761500px;}
.x3a{left:518.328000px;}
.x46{left:525.495000px;}
.x4a{left:532.530000px;}
.x29{left:535.618500px;}
.x47{left:552.715500px;}
.x7a{left:569.755500px;}
.x22{left:572.305500px;}
.x79{left:576.004500px;}
.x75{left:577.651500px;}
.x56{left:590.488500px;}
.x23{left:593.110500px;}
.x27{left:594.436500px;}
.x52{left:597.909000px;}
.xa{left:601.993500px;}
.x53{left:612.724500px;}
.x48{left:616.338000px;}
.x4b{left:623.836500px;}
.x7f{left:628.291500px;}
.x58{left:634.249500px;}
.x57{left:636.147000px;}
.x5{left:648.429000px;}
.x59{left:658.405500px;}
.x28{left:682.341000px;}
.x5a{left:688.708500px;}
.x54{left:706.299000px;}
.x80{left:730.776000px;}
.x55{left:740.626500px;}
.x4d{left:812.010000px;}
.x24{left:819.510000px;}
@media print{
.vb{vertical-align:-47.514667pt;}
.v12{vertical-align:-36.896000pt;}
.v13{vertical-align:-26.266667pt;}
.v2{vertical-align:-19.285333pt;}
.v1e{vertical-align:-14.938545pt;}
.va{vertical-align:-11.146667pt;}
.v15{vertical-align:-7.968000pt;}
.v14{vertical-align:-5.834667pt;}
.v0{vertical-align:0.000000pt;}
.v1d{vertical-align:5.168000pt;}
.v17{vertical-align:7.973333pt;}
.ve{vertical-align:10.624000pt;}
.v3{vertical-align:11.616000pt;}
.v1c{vertical-align:13.136000pt;}
.v11{vertical-align:16.032000pt;}
.vf{vertical-align:18.320000pt;}
.v7{vertical-align:19.285333pt;}
.v1{vertical-align:21.114667pt;}
.vc{vertical-align:23.717333pt;}
.v1b{vertical-align:26.714667pt;}
.v16{vertical-align:28.810667pt;}
.v19{vertical-align:31.205333pt;}
.v4{vertical-align:35.941333pt;}
.v10{vertical-align:36.954667pt;}
.vd{vertical-align:39.749333pt;}
.v6{vertical-align:49.802667pt;}
.v5{vertical-align:72.394667pt;}
.v18{vertical-align:75.152000pt;}
.v8{vertical-align:107.152000pt;}
.v1a{vertical-align:116.784000pt;}
.v9{vertical-align:165.552000pt;}
.ls86{letter-spacing:-0.638304pt;}
.ls87{letter-spacing:-0.469364pt;}
.ls85{letter-spacing:-0.113233pt;}
.ls88{letter-spacing:-0.101180pt;}
.lsdd{letter-spacing:-0.008003pt;}
.lse1{letter-spacing:-0.007319pt;}
.lsdb{letter-spacing:-0.006916pt;}
.lsd4{letter-spacing:-0.006402pt;}
.lsde{letter-spacing:-0.005869pt;}
.lsd3{letter-spacing:-0.005533pt;}
.lsd5{letter-spacing:-0.004695pt;}
.lsdc{letter-spacing:-0.003990pt;}
.lse2{letter-spacing:-0.003659pt;}
.lsdf{letter-spacing:-0.003458pt;}
.lsd2{letter-spacing:-0.003192pt;}
.lsd7{letter-spacing:-0.002766pt;}
.ls3{letter-spacing:0.000000pt;}
.lsca{letter-spacing:0.000125pt;}
.ls28{letter-spacing:0.000267pt;}
.ls53{letter-spacing:0.000278pt;}
.ls4f{letter-spacing:0.000344pt;}
.ls37{letter-spacing:0.000882pt;}
.lsac{letter-spacing:0.000996pt;}
.ls5b{letter-spacing:0.001014pt;}
.ls38{letter-spacing:0.001316pt;}
.ls6{letter-spacing:0.001509pt;}
.ls90{letter-spacing:0.001799pt;}
.lsa7{letter-spacing:0.001975pt;}
.ls3f{letter-spacing:0.001995pt;}
.lsa4{letter-spacing:0.002079pt;}
.ls5c{letter-spacing:0.002245pt;}
.ls72{letter-spacing:0.002387pt;}
.lsb7{letter-spacing:0.002509pt;}
.ls79{letter-spacing:0.002570pt;}
.ls46{letter-spacing:0.002694pt;}
.lscd{letter-spacing:0.002766pt;}
.lsa{letter-spacing:0.002906pt;}
.ls78{letter-spacing:0.003033pt;}
.ls6f{letter-spacing:0.003035pt;}
.lsd8{letter-spacing:0.003201pt;}
.lscf{letter-spacing:0.003458pt;}
.ls7f{letter-spacing:0.003733pt;}
.lse0{letter-spacing:0.004001pt;}
.lsc6{letter-spacing:0.004025pt;}
.ls8c{letter-spacing:0.004132pt;}
.ls94{letter-spacing:0.004349pt;}
.ls4a{letter-spacing:0.005333pt;}
.lsc8{letter-spacing:0.005459pt;}
.lsce{letter-spacing:0.005533pt;}
.ls65{letter-spacing:0.006216pt;}
.lsd0{letter-spacing:0.006916pt;}
.ls55{letter-spacing:0.204607pt;}
.ls8a{letter-spacing:0.231309pt;}
.ls89{letter-spacing:0.236087pt;}
.ls56{letter-spacing:0.240282pt;}
.ls2a{letter-spacing:0.412788pt;}
.ls8{letter-spacing:1.433465pt;}
.ls1e{letter-spacing:1.474820pt;}
.ls13{letter-spacing:1.476666pt;}
.ls4{letter-spacing:1.480296pt;}
.lsb0{letter-spacing:1.905799pt;}
.lsaa{letter-spacing:1.905975pt;}
.ls6a{letter-spacing:1.907035pt;}
.ls66{letter-spacing:1.912369pt;}
.lscc{letter-spacing:1.914388pt;}
.lsc4{letter-spacing:2.116267pt;}
.lse3{letter-spacing:2.133333pt;}
.lsbf{letter-spacing:2.151919pt;}
.ls58{letter-spacing:2.651242pt;}
.ls83{letter-spacing:2.651680pt;}
.ls41{letter-spacing:2.652911pt;}
.ls1{letter-spacing:2.653258pt;}
.ls39{letter-spacing:2.654545pt;}
.ls1f{letter-spacing:2.655095pt;}
.lsa3{letter-spacing:2.656267pt;}
.ls98{letter-spacing:2.657014pt;}
.lsa5{letter-spacing:2.657986pt;}
.ls40{letter-spacing:2.658245pt;}
.ls0{letter-spacing:2.658591pt;}
.lsc1{letter-spacing:3.042140pt;}
.lsa6{letter-spacing:3.991361pt;}
.ls68{letter-spacing:3.992098pt;}
.ls99{letter-spacing:4.807919pt;}
.ls71{letter-spacing:5.262231pt;}
.ls70{letter-spacing:5.547547pt;}
.lsc0{letter-spacing:7.381391pt;}
.ls26{letter-spacing:8.853333pt;}
.ls24{letter-spacing:8.853812pt;}
.ls7e{letter-spacing:8.854586pt;}
.lsb{letter-spacing:8.855412pt;}
.ls5d{letter-spacing:8.859919pt;}
.ls3a{letter-spacing:9.033212pt;}
.ls34{letter-spacing:9.035982pt;}
.ls31{letter-spacing:9.266122pt;}
.ls92{letter-spacing:11.510347pt;}
.ls5f{letter-spacing:11.803145pt;}
.ls5e{letter-spacing:11.805573pt;}
.ls67{letter-spacing:11.806390pt;}
.ls10{letter-spacing:11.806400pt;}
.lsf{letter-spacing:11.808479pt;}
.lse{letter-spacing:11.809995pt;}
.ls2c{letter-spacing:11.810079pt;}
.lsc2{letter-spacing:11.890906pt;}
.ls81{letter-spacing:11.917913pt;}
.ls95{letter-spacing:12.409660pt;}
.lsa1{letter-spacing:12.414993pt;}
.lse4{letter-spacing:12.800000pt;}
.ls93{letter-spacing:13.661252pt;}
.ls14{letter-spacing:14.138933pt;}
.ls2b{letter-spacing:14.460911pt;}
.ls9c{letter-spacing:14.465014pt;}
.lsa8{letter-spacing:14.465986pt;}
.ls4d{letter-spacing:14.754906pt;}
.ls43{letter-spacing:14.756984pt;}
.ls12{letter-spacing:14.757812pt;}
.ls33{letter-spacing:14.758842pt;}
.ls7d{letter-spacing:14.759412pt;}
.ls1a{letter-spacing:14.759467pt;}
.ls80{letter-spacing:14.760239pt;}
.ls3e{letter-spacing:14.761056pt;}
.ls4e{letter-spacing:14.762318pt;}
.lsd{letter-spacing:14.771215pt;}
.ls22{letter-spacing:15.170122pt;}
.ls91{letter-spacing:15.614390pt;}
.ls18{letter-spacing:15.717812pt;}
.lsa9{letter-spacing:15.799361pt;}
.ls57{letter-spacing:15.891723pt;}
.lsc{letter-spacing:15.973333pt;}
.lsab{letter-spacing:16.002028pt;}
.ls8f{letter-spacing:16.146906pt;}
.ls1b{letter-spacing:16.228666pt;}
.ls35{letter-spacing:16.237630pt;}
.ls9d{letter-spacing:16.615919pt;}
.ls5a{letter-spacing:16.665042pt;}
.ls29{letter-spacing:17.412428pt;}
.ls44{letter-spacing:17.413909pt;}
.ls30{letter-spacing:17.417761pt;}
.ls9{letter-spacing:17.418667pt;}
.ls6c{letter-spacing:17.872576pt;}
.ls15{letter-spacing:17.939892pt;}
.ls5{letter-spacing:18.186667pt;}
.ls9a{letter-spacing:18.313660pt;}
.ls3c{letter-spacing:18.342842pt;}
.ls73{letter-spacing:18.666667pt;}
.ls63{letter-spacing:18.749431pt;}
.ls7c{letter-spacing:18.754764pt;}
.ls8b{letter-spacing:19.157605pt;}
.ls16{letter-spacing:19.168267pt;}
.ls77{letter-spacing:19.238586pt;}
.ls45{letter-spacing:19.463578pt;}
.ls75{letter-spacing:19.507945pt;}
.ls3d{letter-spacing:19.816296pt;}
.ls36{letter-spacing:19.857855pt;}
.ls8d{letter-spacing:19.864239pt;}
.ls2f{letter-spacing:20.146963pt;}
.ls17{letter-spacing:20.329999pt;}
.ls9e{letter-spacing:20.552239pt;}
.ls9f{letter-spacing:20.554318pt;}
.ls47{letter-spacing:21.323242pt;}
.ls7b{letter-spacing:21.323680pt;}
.ls6b{letter-spacing:21.992239pt;}
.ls21{letter-spacing:22.472156pt;}
.ls61{letter-spacing:22.504098pt;}
.ls20{letter-spacing:22.831925pt;}
.ls2{letter-spacing:23.186591pt;}
.ls6e{letter-spacing:23.491035pt;}
.ls82{letter-spacing:23.613573pt;}
.lsaf{letter-spacing:24.385995pt;}
.ls8e{letter-spacing:24.458938pt;}
.lsa0{letter-spacing:24.466245pt;}
.ls49{letter-spacing:25.012984pt;}
.ls48{letter-spacing:25.022390pt;}
.ls1d{letter-spacing:25.282820pt;}
.ls7{letter-spacing:25.333600pt;}
.ls2e{letter-spacing:25.652428pt;}
.ls62{letter-spacing:25.673042pt;}
.ls6d{letter-spacing:25.976027pt;}
.lsbe{letter-spacing:26.048058pt;}
.ls32{letter-spacing:26.565333pt;}
.ls96{letter-spacing:26.568239pt;}
.ls59{letter-spacing:27.171709pt;}
.lsb5{letter-spacing:27.271329pt;}
.lsb4{letter-spacing:27.274667pt;}
.ls51{letter-spacing:27.306318pt;}
.lsbb{letter-spacing:27.767757pt;}
.ls52{letter-spacing:28.124911pt;}
.lsae{letter-spacing:28.375361pt;}
.lsbd{letter-spacing:29.084911pt;}
.lsb3{letter-spacing:29.495329pt;}
.ls4c{letter-spacing:29.754318pt;}
.lsb8{letter-spacing:29.927578pt;}
.ls50{letter-spacing:29.958347pt;}
.lsba{letter-spacing:30.428911pt;}
.lsb1{letter-spacing:32.145986pt;}
.ls54{letter-spacing:32.262347pt;}
.ls4b{letter-spacing:32.406347pt;}
.lsb6{letter-spacing:33.292911pt;}
.lsb2{letter-spacing:33.484695pt;}
.lsbc{letter-spacing:34.204911pt;}
.lsb9{letter-spacing:34.210245pt;}
.ls74{letter-spacing:35.827945pt;}
.ls25{letter-spacing:48.706906pt;}
.ls19{letter-spacing:51.551333pt;}
.ls23{letter-spacing:53.133573pt;}
.ls60{letter-spacing:55.982400pt;}
.ls76{letter-spacing:80.805812pt;}
.lsa2{letter-spacing:89.122906pt;}
.lsad{letter-spacing:95.629573pt;}
.ls7a{letter-spacing:112.455578pt;}
.ls3b{letter-spacing:117.229573pt;}
.ls84{letter-spacing:126.743412pt;}
.ls1c{letter-spacing:128.043145pt;}
.lsd9{letter-spacing:130.538048pt;}
.lsd6{letter-spacing:135.401480pt;}
.lsc5{letter-spacing:135.737678pt;}
.lsd1{letter-spacing:136.095861pt;}
.ls2d{letter-spacing:140.226906pt;}
.lsda{letter-spacing:140.264912pt;}
.ls42{letter-spacing:162.232239pt;}
.ls11{letter-spacing:182.653573pt;}
.ls27{letter-spacing:213.034667pt;}
.ls69{letter-spacing:221.688239pt;}
.lsc9{letter-spacing:246.253839pt;}
.lsc7{letter-spacing:323.061699pt;}
.lsc3{letter-spacing:330.664239pt;}
.lscb{letter-spacing:335.550275pt;}
.ls97{letter-spacing:358.409067pt;}
.ls64{letter-spacing:406.259723pt;}
.ls9b{letter-spacing:407.225067pt;}
.ws4{word-spacing:-53.133867pt;}
.wscd{word-spacing:-49.382616pt;}
.wsbb{word-spacing:-44.856538pt;}
.ws8a{word-spacing:-42.359791pt;}
.wsd0{word-spacing:-42.224000pt;}
.ws140{word-spacing:-40.005956pt;}
.wse0{word-spacing:-38.362652pt;}
.ws5f{word-spacing:-34.611401pt;}
.wscc{word-spacing:-32.000000pt;}
.ws6d{word-spacing:-29.531803pt;}
.ws10c{word-spacing:-29.521250pt;}
.ws141{word-spacing:-29.337701pt;}
.ws92{word-spacing:-25.791179pt;}
.ws58{word-spacing:-25.738045pt;}
.wsb0{word-spacing:-23.538303pt;}
.ws75{word-spacing:-22.826644pt;}
.ws78{word-spacing:-22.815682pt;}
.ws10a{word-spacing:-20.722260pt;}
.ws68{word-spacing:-19.871119pt;}
.ws66{word-spacing:-19.848558pt;}
.ws6f{word-spacing:-17.524100pt;}
.ws77{word-spacing:-16.075101pt;}
.ws10d{word-spacing:-16.040906pt;}
.ws107{word-spacing:-16.035573pt;}
.ws71{word-spacing:-15.444210pt;}
.ws57{word-spacing:-14.760588pt;}
.ws2{word-spacing:-14.666667pt;}
.ws72{word-spacing:-13.540407pt;}
.ws44{word-spacing:-13.333333pt;}
.ws6b{word-spacing:-13.162729pt;}
.ws79{word-spacing:-12.165767pt;}
.ws195{word-spacing:-10.666667pt;}
.ws13b{word-spacing:-8.892702pt;}
.wsb6{word-spacing:-6.763664pt;}
.ws13c{word-spacing:-6.521315pt;}
.wsb7{word-spacing:-6.238593pt;}
.ws8c{word-spacing:-5.887232pt;}
.wse2{word-spacing:-2.964870pt;}
.wscb{word-spacing:-2.951282pt;}
.ws129{word-spacing:-1.013333pt;}
.ws34{word-spacing:-0.960000pt;}
.ws175{word-spacing:-0.810667pt;}
.ws199{word-spacing:-0.768000pt;}
.ws35{word-spacing:-0.746667pt;}
.ws180{word-spacing:-0.725333pt;}
.ws1d{word-spacing:-0.640000pt;}
.ws14e{word-spacing:-0.586667pt;}
.wsf0{word-spacing:-0.426667pt;}
.ws81{word-spacing:-0.320000pt;}
.wsba{word-spacing:-0.269814pt;}
.wsa9{word-spacing:-0.213333pt;}
.ws19d{word-spacing:-0.128000pt;}
.wsb1{word-spacing:-0.106667pt;}
.ws14f{word-spacing:-0.064000pt;}
.ws5{word-spacing:-0.053333pt;}
.wsa4{word-spacing:-0.053134pt;}
.ws6{word-spacing:-0.048000pt;}
.ws148{word-spacing:-0.042667pt;}
.ws10b{word-spacing:-0.042507pt;}
.ws8d{word-spacing:-0.037194pt;}
.ws89{word-spacing:-0.013752pt;}
.ws50{word-spacing:0.000000pt;}
.ws67{word-spacing:0.010627pt;}
.wsd4{word-spacing:0.053333pt;}
.wsb9{word-spacing:0.067453pt;}
.ws157{word-spacing:0.128000pt;}
.ws124{word-spacing:0.160000pt;}
.wsb3{word-spacing:0.213333pt;}
.ws8e{word-spacing:0.320000pt;}
.ws4e{word-spacing:0.426667pt;}
.wsb8{word-spacing:0.435569pt;}
.wsdb{word-spacing:0.533333pt;}
.ws156{word-spacing:0.586667pt;}
.ws19e{word-spacing:0.682667pt;}
.ws1e{word-spacing:0.746667pt;}
.ws6e{word-spacing:0.800000pt;}
.ws61{word-spacing:0.853333pt;}
.ws37{word-spacing:0.960000pt;}
.ws11f{word-spacing:1.013333pt;}
.ws17c{word-spacing:1.066667pt;}
.ws128{word-spacing:1.120000pt;}
.wsbe{word-spacing:1.173333pt;}
.ws183{word-spacing:1.237333pt;}
.ws5b{word-spacing:1.333333pt;}
.ws19a{word-spacing:1.365333pt;}
.ws17e{word-spacing:1.408000pt;}
.wsc4{word-spacing:1.600000pt;}
.ws18d{word-spacing:1.621333pt;}
.ws43{word-spacing:1.653333pt;}
.ws96{word-spacing:1.706667pt;}
.ws33{word-spacing:1.760000pt;}
.wsc3{word-spacing:1.866667pt;}
.ws7b{word-spacing:1.920000pt;}
.ws3d{word-spacing:1.973333pt;}
.ws7f{word-spacing:2.053333pt;}
.ws80{word-spacing:2.080000pt;}
.wsf1{word-spacing:2.133333pt;}
.ws30{word-spacing:2.186667pt;}
.ws167{word-spacing:2.261333pt;}
.wsab{word-spacing:2.346667pt;}
.wse1{word-spacing:2.400000pt;}
.ws73{word-spacing:2.453333pt;}
.ws173{word-spacing:2.474667pt;}
.ws163{word-spacing:2.512000pt;}
.ws165{word-spacing:2.517333pt;}
.ws4f{word-spacing:2.560000pt;}
.ws69{word-spacing:2.613333pt;}
.ws65{word-spacing:2.640000pt;}
.wsc9{word-spacing:2.666667pt;}
.ws46{word-spacing:2.773333pt;}
.wsdc{word-spacing:2.826667pt;}
.wsc6{word-spacing:2.880000pt;}
.ws158{word-spacing:2.944000pt;}
.wsb4{word-spacing:2.986667pt;}
.wsa5{word-spacing:3.093333pt;}
.ws25{word-spacing:3.146667pt;}
.ws2a{word-spacing:3.200000pt;}
.ws127{word-spacing:3.306667pt;}
.wsbc{word-spacing:3.328000pt;}
.ws19{word-spacing:3.360000pt;}
.ws136{word-spacing:3.413333pt;}
.ws1a4{word-spacing:3.456000pt;}
.ws95{word-spacing:3.466667pt;}
.wsb5{word-spacing:3.520000pt;}
.ws179{word-spacing:3.584000pt;}
.wsaa{word-spacing:3.626667pt;}
.ws13d{word-spacing:3.712000pt;}
.ws42{word-spacing:3.733333pt;}
.ws45{word-spacing:3.786667pt;}
.ws19b{word-spacing:3.797333pt;}
.ws14a{word-spacing:3.840000pt;}
.wsa7{word-spacing:3.893333pt;}
.ws10e{word-spacing:3.901224pt;}
.ws120{word-spacing:3.907145pt;}
.ws39{word-spacing:3.946667pt;}
.ws147{word-spacing:3.968000pt;}
.ws59{word-spacing:4.053333pt;}
.ws5e{word-spacing:4.106667pt;}
.wsb2{word-spacing:4.213333pt;}
.ws15d{word-spacing:4.232533pt;}
.ws15c{word-spacing:4.249600pt;}
.wsac{word-spacing:4.266667pt;}
.ws93{word-spacing:4.282667pt;}
.ws162{word-spacing:4.309333pt;}
.ws94{word-spacing:4.320000pt;}
.ws168{word-spacing:4.394667pt;}
.wsdf{word-spacing:4.426667pt;}
.ws181{word-spacing:4.437333pt;}
.ws24{word-spacing:4.480000pt;}
.ws91{word-spacing:4.586667pt;}
.wsde{word-spacing:4.640000pt;}
.ws48{word-spacing:4.693333pt;}
.wsca{word-spacing:4.746667pt;}
.ws104{word-spacing:4.800000pt;}
.ws5c{word-spacing:4.853333pt;}
.ws176{word-spacing:4.864000pt;}
.wsdd{word-spacing:4.906667pt;}
.ws63{word-spacing:4.952076pt;}
.ws60{word-spacing:4.960000pt;}
.ws90{word-spacing:5.002667pt;}
.ws8f{word-spacing:5.013333pt;}
.ws16c{word-spacing:5.034667pt;}
.ws38{word-spacing:5.066667pt;}
.ws139{word-spacing:5.120000pt;}
.ws166{word-spacing:5.162667pt;}
.wsc0{word-spacing:5.173333pt;}
.ws56{word-spacing:5.216000pt;}
.ws2e{word-spacing:5.226667pt;}
.ws7c{word-spacing:5.280000pt;}
.ws22{word-spacing:5.333333pt;}
.ws4d{word-spacing:5.440000pt;}
.ws170{word-spacing:5.461333pt;}
.ws11d{word-spacing:5.493333pt;}
.ws16a{word-spacing:5.504000pt;}
.ws74{word-spacing:5.546667pt;}
.ws197{word-spacing:5.589333pt;}
.ws5a{word-spacing:5.600000pt;}
.ws196{word-spacing:5.632000pt;}
.ws11c{word-spacing:5.653333pt;}
.ws126{word-spacing:5.706667pt;}
.ws178{word-spacing:5.717333pt;}
.ws2c{word-spacing:5.760000pt;}
.ws76{word-spacing:5.776000pt;}
.ws2d{word-spacing:5.813333pt;}
.ws70{word-spacing:5.829333pt;}
.ws18e{word-spacing:5.845333pt;}
.ws1{word-spacing:5.866667pt;}
.ws51{word-spacing:5.920000pt;}
.wsee{word-spacing:5.922557pt;}
.ws16e{word-spacing:5.930667pt;}
.wseb{word-spacing:5.973333pt;}
.ws135{word-spacing:6.026667pt;}
.ws11b{word-spacing:6.133333pt;}
.ws40{word-spacing:6.186667pt;}
.ws1a{word-spacing:6.293333pt;}
.wsa6{word-spacing:6.400000pt;}
.wsc8{word-spacing:6.453333pt;}
.ws1a2{word-spacing:6.485333pt;}
.wsd7{word-spacing:6.560000pt;}
.ws17d{word-spacing:6.570667pt;}
.ws189{word-spacing:6.613333pt;}
.ws18b{word-spacing:6.656000pt;}
.ws12c{word-spacing:6.666667pt;}
.ws26{word-spacing:6.720000pt;}
.ws105{word-spacing:6.773333pt;}
.wsa8{word-spacing:6.880000pt;}
.ws4a{word-spacing:6.933333pt;}
.wsd6{word-spacing:7.040000pt;}
.wse9{word-spacing:7.093333pt;}
.wsec{word-spacing:7.146667pt;}
.ws14d{word-spacing:7.200000pt;}
.ws1b{word-spacing:7.253333pt;}
.wsef{word-spacing:7.360000pt;}
.ws9f{word-spacing:7.413333pt;}
.wsda{word-spacing:7.466667pt;}
.ws123{word-spacing:7.520000pt;}
.wsd8{word-spacing:7.626667pt;}
.ws112{word-spacing:7.680000pt;}
.wsd3{word-spacing:7.733333pt;}
.ws27{word-spacing:7.786667pt;}
.ws134{word-spacing:7.946667pt;}
.ws64{word-spacing:8.000000pt;}
.ws62{word-spacing:8.053333pt;}
.ws6c{word-spacing:8.101333pt;}
.ws6a{word-spacing:8.106667pt;}
.ws14{word-spacing:8.160000pt;}
.ws1a0{word-spacing:8.192000pt;}
.wsc7{word-spacing:8.213333pt;}
.ws18a{word-spacing:8.234667pt;}
.wsf5{word-spacing:8.266667pt;}
.wse5{word-spacing:8.320000pt;}
.wsd1{word-spacing:8.373333pt;}
.ws185{word-spacing:8.448000pt;}
.ws3c{word-spacing:8.480000pt;}
.ws15b{word-spacing:8.490667pt;}
.ws11a{word-spacing:8.533333pt;}
.ws118{word-spacing:8.544000pt;}
.wsd9{word-spacing:8.586667pt;}
.ws36{word-spacing:8.640000pt;}
.wsc2{word-spacing:8.661333pt;}
.wsbd{word-spacing:8.693333pt;}
.ws11e{word-spacing:8.746667pt;}
.ws47{word-spacing:8.800000pt;}
.ws12a{word-spacing:8.853333pt;}
.ws21{word-spacing:8.960000pt;}
.ws18{word-spacing:9.013333pt;}
.ws172{word-spacing:9.045333pt;}
.wsea{word-spacing:9.066667pt;}
.ws3a{word-spacing:9.120000pt;}
.ws2f{word-spacing:9.493333pt;}
.ws17{word-spacing:9.600000pt;}
.ws8b{word-spacing:9.653333pt;}
.ws41{word-spacing:9.706667pt;}
.ws18f{word-spacing:9.856000pt;}
.ws198{word-spacing:9.898667pt;}
.ws52{word-spacing:9.973333pt;}
.wse7{word-spacing:10.186667pt;}
.wsf4{word-spacing:10.240000pt;}
.ws125{word-spacing:10.293333pt;}
.ws131{word-spacing:10.346667pt;}
.ws12d{word-spacing:10.400000pt;}
.ws7e{word-spacing:10.453333pt;}
.ws32{word-spacing:10.506667pt;}
.ws15a{word-spacing:10.581333pt;}
.ws108{word-spacing:10.661333pt;}
.ws12b{word-spacing:10.720000pt;}
.ws9b{word-spacing:10.880000pt;}
.ws97{word-spacing:10.933333pt;}
.ws16f{word-spacing:10.965333pt;}
.ws1c{word-spacing:10.986667pt;}
.ws3f{word-spacing:11.040000pt;}
.wsf9{word-spacing:11.045333pt;}
.ws9a{word-spacing:11.093333pt;}
.ws29{word-spacing:11.146667pt;}
.wsa2{word-spacing:11.253333pt;}
.wsed{word-spacing:11.306667pt;}
.ws161{word-spacing:11.392000pt;}
.ws110{word-spacing:11.466667pt;}
.ws54{word-spacing:11.520000pt;}
.ws102{word-spacing:11.646944pt;}
.ws17b{word-spacing:11.648000pt;}
.ws103{word-spacing:11.680000pt;}
.ws28{word-spacing:11.733333pt;}
.ws88{word-spacing:11.822369pt;}
.ws111{word-spacing:11.840000pt;}
.ws184{word-spacing:11.861333pt;}
.ws14b{word-spacing:11.893333pt;}
.ws23{word-spacing:11.946667pt;}
.ws4c{word-spacing:12.000000pt;}
.ws17f{word-spacing:12.032000pt;}
.ws133{word-spacing:12.053333pt;}
.wsad{word-spacing:12.106667pt;}
.wsae{word-spacing:12.160000pt;}
.ws122{word-spacing:12.266667pt;}
.ws191{word-spacing:12.330667pt;}
.wsc{word-spacing:12.480000pt;}
.ws3e{word-spacing:12.586667pt;}
.wsc5{word-spacing:12.640000pt;}
.wsa0{word-spacing:12.688000pt;}
.wsa1{word-spacing:12.693333pt;}
.ws82{word-spacing:12.800000pt;}
.ws7d{word-spacing:12.853333pt;}
.wsf7{word-spacing:12.906667pt;}
.ws20{word-spacing:12.960000pt;}
.ws101{word-spacing:13.006879pt;}
.ws115{word-spacing:13.008000pt;}
.ws117{word-spacing:13.013333pt;}
.wsf2{word-spacing:13.066667pt;}
.ws174{word-spacing:13.098667pt;}
.ws5d{word-spacing:13.120000pt;}
.ws164{word-spacing:13.141333pt;}
.ws137{word-spacing:13.226667pt;}
.ws14c{word-spacing:13.280000pt;}
.wsce{word-spacing:13.333333pt;}
.wsaf{word-spacing:13.386667pt;}
.wsa3{word-spacing:13.440000pt;}
.ws10f{word-spacing:13.493333pt;}
.ws159{word-spacing:13.568000pt;}
.ws114{word-spacing:13.760000pt;}
.ws12f{word-spacing:13.813333pt;}
.ws186{word-spacing:13.909333pt;}
.wsfc{word-spacing:13.920000pt;}
.wsfd{word-spacing:13.941333pt;}
.ws193{word-spacing:14.010667pt;}
.ws194{word-spacing:14.037333pt;}
.ws17a{word-spacing:14.208000pt;}
.wse4{word-spacing:14.240000pt;}
.ws4b{word-spacing:14.293333pt;}
.ws13e{word-spacing:14.325333pt;}
.ws130{word-spacing:14.346667pt;}
.ws9d{word-spacing:14.400000pt;}
.ws19c{word-spacing:14.421333pt;}
.ws100{word-spacing:14.453333pt;}
.ws3b{word-spacing:14.506667pt;}
.ws153{word-spacing:14.613333pt;}
.ws16b{word-spacing:14.677333pt;}
.ws9{word-spacing:14.688000pt;}
.ws31{word-spacing:14.720000pt;}
.ws2b{word-spacing:14.773333pt;}
.ws15f{word-spacing:14.890667pt;}
.ws16{word-spacing:14.986667pt;}
.ws169{word-spacing:15.018667pt;}
.ws154{word-spacing:15.040000pt;}
.ws182{word-spacing:15.061333pt;}
.ws9c{word-spacing:15.413333pt;}
.ws177{word-spacing:15.488000pt;}
.ws16d{word-spacing:15.658667pt;}
.wsf3{word-spacing:15.680000pt;}
.ws7{word-spacing:15.744000pt;}
.wsf8{word-spacing:15.758820pt;}
.ws1f{word-spacing:15.786667pt;}
.wsfe{word-spacing:15.897653pt;}
.ws121{word-spacing:16.106667pt;}
.wsfa{word-spacing:16.160000pt;}
.ws98{word-spacing:16.266667pt;}
.ws12e{word-spacing:16.480000pt;}
.wsd2{word-spacing:16.640000pt;}
.ws55{word-spacing:16.746667pt;}
.ws13a{word-spacing:16.800000pt;}
.wsff{word-spacing:16.800929pt;}
.ws9e{word-spacing:16.853333pt;}
.ws152{word-spacing:16.960000pt;}
.ws132{word-spacing:17.173333pt;}
.ws106{word-spacing:17.221333pt;}
.ws188{word-spacing:17.237333pt;}
.ws18c{word-spacing:17.280000pt;}
.ws15{word-spacing:17.333333pt;}
.wsd5{word-spacing:17.493333pt;}
.wscf{word-spacing:17.722667pt;}
.ws99{word-spacing:17.760000pt;}
.ws12{word-spacing:17.952000pt;}
.wsf6{word-spacing:18.133333pt;}
.wse3{word-spacing:18.506667pt;}
.ws8{word-spacing:18.528000pt;}
.ws0{word-spacing:18.592000pt;}
.ws3{word-spacing:18.613333pt;}
.ws1a1{word-spacing:18.816000pt;}
.ws155{word-spacing:18.880000pt;}
.ws160{word-spacing:19.114667pt;}
.wsf{word-spacing:19.152000pt;}
.ws138{word-spacing:19.253333pt;}
.ws171{word-spacing:19.285333pt;}
.wsd{word-spacing:19.440000pt;}
.wse{word-spacing:19.536000pt;}
.ws19f{word-spacing:19.541333pt;}
.ws190{word-spacing:20.480000pt;}
.wse8{word-spacing:20.768000pt;}
.ws151{word-spacing:21.066667pt;}
.ws150{word-spacing:21.333333pt;}
.wsb{word-spacing:21.552000pt;}
.ws119{word-spacing:21.840000pt;}
.ws53{word-spacing:21.941333pt;}
.ws10{word-spacing:22.128000pt;}
.wsa{word-spacing:22.992000pt;}
.ws49{word-spacing:23.936000pt;}
.ws187{word-spacing:24.533333pt;}
.ws149{word-spacing:25.376000pt;}
.ws116{word-spacing:26.282667pt;}
.ws11{word-spacing:26.688000pt;}
.ws113{word-spacing:27.040000pt;}
.wse6{word-spacing:29.274667pt;}
.ws192{word-spacing:29.312000pt;}
.wsfb{word-spacing:31.225487pt;}
.ws13{word-spacing:31.936000pt;}
.ws84{word-spacing:38.373279pt;}
.wsbf{word-spacing:40.160000pt;}
.ws85{word-spacing:41.348775pt;}
.ws87{word-spacing:60.530101pt;}
.ws86{word-spacing:63.452464pt;}
.ws13f{word-spacing:81.817971pt;}
.ws143{word-spacing:99.692742pt;}
.ws7a{word-spacing:100.552718pt;}
.ws142{word-spacing:105.896523pt;}
.ws83{word-spacing:118.127212pt;}
.ws15e{word-spacing:142.710591pt;}
.ws144{word-spacing:233.501720pt;}
.ws145{word-spacing:236.874807pt;}
.ws146{word-spacing:253.767078pt;}
.wsc1{word-spacing:321.853944pt;}
.ws109{word-spacing:396.336000pt;}
.ws1a3{word-spacing:913.194667pt;}
._1b{margin-left:-18.643662pt;}
._e{margin-left:-14.311077pt;}
._17{margin-left:-6.880000pt;}
._5{margin-left:-5.920000pt;}
._22{margin-left:-4.945556pt;}
._4{margin-left:-3.509333pt;}
._0{margin-left:-2.090667pt;}
._1{margin-left:-1.173333pt;}
._d{width:0.956210pt;}
._b{width:1.887422pt;}
._14{width:2.873265pt;}
._3{width:3.818667pt;}
._2{width:4.890667pt;}
._1f{width:5.855591pt;}
._15{width:6.970807pt;}
._f{width:8.132274pt;}
._30{width:12.298667pt;}
._c{width:13.258667pt;}
._21{width:14.933333pt;}
._7{width:16.010667pt;}
._6{width:17.664000pt;}
._1a{width:19.104000pt;}
._1d{width:20.064000pt;}
._10{width:21.852423pt;}
._23{width:25.770667pt;}
._2f{width:26.666667pt;}
._a{width:29.333333pt;}
._8{width:32.000000pt;}
._27{width:42.240000pt;}
._26{width:48.000000pt;}
._18{width:64.000000pt;}
._2a{width:65.888000pt;}
._2d{width:67.056000pt;}
._19{width:69.871035pt;}
._2b{width:107.306667pt;}
._20{width:132.659623pt;}
._25{width:139.049054pt;}
._24{width:146.141558pt;}
._16{width:148.682747pt;}
._2c{width:158.661333pt;}
._13{width:161.580089pt;}
._29{width:172.869333pt;}
._28{width:213.973212pt;}
._11{width:234.745423pt;}
._12{width:247.869488pt;}
._1e{width:365.881695pt;}
._9{width:367.253333pt;}
._1c{width:394.240000pt;}
._2e{width:1097.280000pt;}
.fs17{font-size:23.408353pt;}
.fs19{font-size:23.474856pt;}
.fs8{font-size:26.566933pt;}
.fs15{font-size:27.664572pt;}
.fs1d{font-size:29.343570pt;}
.fsb{font-size:30.428749pt;}
.fs14{font-size:31.880533pt;}
.fs16{font-size:31.920507pt;}
.fs18{font-size:32.011167pt;}
.fse{font-size:33.726720pt;}
.fsd{font-size:33.794173pt;}
.fs13{font-size:34.133333pt;}
.fs1a{font-size:34.580715pt;}
.fs1e{font-size:36.593280pt;}
.fs7{font-size:37.193600pt;}
.fs12{font-size:37.332800pt;}
.fs9{font-size:39.347520pt;}
.fsa{font-size:39.399983pt;}
.fs10{font-size:39.460262pt;}
.fs1b{font-size:39.900633pt;}
.fs1c{font-size:40.013959pt;}
.fs2{font-size:42.507200pt;}
.fs11{font-size:42.666667pt;}
.fsf{font-size:44.856538pt;}
.fs5{font-size:48.000000pt;}
.fsc{font-size:50.590080pt;}
.fs4{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1c0{bottom:1.293833pt;}
.y1da{bottom:2.282503pt;}
.y1bf{bottom:2.358172pt;}
.y1e3{bottom:2.503648pt;}
.y1c9{bottom:2.535088pt;}
.y1c1{bottom:4.486139pt;}
.y1ec{bottom:10.531546pt;}
.y1be{bottom:13.352552pt;}
.y1d9{bottom:16.026366pt;}
.y1cc{bottom:20.711955pt;}
.y1c2{bottom:20.711980pt;}
.yd1{bottom:24.684446pt;}
.yd0{bottom:25.103718pt;}
.y1e6{bottom:25.225130pt;}
.y1db{bottom:25.225651pt;}
.yd3{bottom:28.260883pt;}
.y1cf{bottom:35.912279pt;}
.yc2{bottom:39.019624pt;}
.yca{bottom:40.042660pt;}
.y1c3{bottom:41.992260pt;}
.y1dc{bottom:47.503412pt;}
.y1d5{bottom:49.707046pt;}
.y1d0{bottom:51.111886pt;}
.y51{bottom:52.093415pt;}
.ybf{bottom:52.093431pt;}
.y1c8{bottom:56.090949pt;}
.y1c4{bottom:63.272540pt;}
.yd9{bottom:64.601424pt;}
.y1d1{bottom:66.312185pt;}
.y1cd{bottom:66.997226pt;}
.y1dd{bottom:69.780308pt;}
.y1e9{bottom:69.780651pt;}
.y1e2{bottom:70.113686pt;}
.y1ce{bottom:71.253161pt;}
.y1cb{bottom:73.913001pt;}
.y1d2{bottom:81.512484pt;}
.y1e7{bottom:83.413483pt;}
.y1c5{bottom:84.552821pt;}
.y1ea{bottom:88.733934pt;}
.yd5{bottom:90.367233pt;}
.y1e5{bottom:92.058412pt;}
.y1de{bottom:92.058934pt;}
.y1d3{bottom:96.712783pt;}
.yc5{bottom:105.424029pt;}
.y1c6{bottom:105.833101pt;}
.y1d4{bottom:111.913082pt;}
.y1df{bottom:114.336695pt;}
.y1e8{bottom:114.337038pt;}
.y1bc{bottom:120.989333pt;}
.y88{bottom:120.990667pt;}
.yc3{bottom:121.529187pt;}
.ycb{bottom:123.485634pt;}
.yd6{bottom:124.332851pt;}
.yc8{bottom:126.163451pt;}
.y1c7{bottom:127.113381pt;}
.y1ca{bottom:127.114048pt;}
.y26d{bottom:128.565333pt;}
.y215{bottom:132.990667pt;}
.y1bb{bottom:135.922667pt;}
.ybe{bottom:135.924000pt;}
.y1e0{bottom:136.614456pt;}
.yd4{bottom:140.317911pt;}
.y26c{bottom:140.565333pt;}
.yc6{bottom:140.787613pt;}
.yda{bottom:141.617795pt;}
.ycc{bottom:143.684027pt;}
.yd8{bottom:143.690583pt;}
.y242{bottom:144.990667pt;}
.y15d{bottom:145.944000pt;}
.y18b{bottom:147.325333pt;}
.y214{bottom:148.313333pt;}
.y1ba{bottom:150.856000pt;}
.ybd{bottom:150.857333pt;}
.y87{bottom:152.305333pt;}
.y10b{bottom:152.314667pt;}
.y26b{bottom:152.565333pt;}
.y2f{bottom:154.590667pt;}
.yce{bottom:158.319119pt;}
.y1e1{bottom:158.892217pt;}
.y1e4{bottom:158.892560pt;}
.y213{bottom:160.313333pt;}
.y241{bottom:161.372000pt;}
.y15a{bottom:161.664000pt;}
.y18a{bottom:162.258667pt;}
.y203{bottom:164.065333pt;}
.y1b9{bottom:165.789333pt;}
.ybc{bottom:165.790667pt;}
.ycf{bottom:166.888134pt;}
.y83{bottom:166.905333pt;}
.y86{bottom:167.238667pt;}
.y10a{bottom:167.248000pt;}
.y2e{bottom:169.524000pt;}
.y84{bottom:169.692000pt;}
.yc7{bottom:170.309182pt;}
.y212{bottom:172.313333pt;}
.y240{bottom:173.372000pt;}
.y15c{bottom:174.318667pt;}
.y263{bottom:175.186667pt;}
.yc4{bottom:176.446303pt;}
.y189{bottom:177.192000pt;}
.y15b{bottom:178.318667pt;}
.yd7{bottom:179.307404pt;}
.y1b8{bottom:180.722667pt;}
.ybb{bottom:180.724000pt;}
.y85{bottom:182.172000pt;}
.y109{bottom:182.181333pt;}
.y211{bottom:184.313333pt;}
.y2d{bottom:184.457333pt;}
.y23f{bottom:185.372000pt;}
.y262{bottom:187.186667pt;}
.y188{bottom:192.125333pt;}
.y1b7{bottom:195.656000pt;}
.yba{bottom:195.657333pt;}
.y202{bottom:195.941333pt;}
.y159{bottom:196.434667pt;}
.y108{bottom:197.382667pt;}
.y261{bottom:199.186667pt;}
.y2c{bottom:199.390667pt;}
.y23e{bottom:201.753333pt;}
.y187{bottom:207.058667pt;}
.ycd{bottom:208.530926pt;}
.y107{bottom:210.133333pt;}
.y210{bottom:210.444000pt;}
.y82{bottom:210.476000pt;}
.y1b6{bottom:210.589333pt;}
.yb9{bottom:210.590667pt;}
.y201{bottom:210.874667pt;}
.y260{bottom:211.186667pt;}
.y158{bottom:211.904000pt;}
.y23d{bottom:213.753333pt;}
.y2b{bottom:214.324000pt;}
.y106{bottom:219.329333pt;}
.yf1{bottom:220.652000pt;}
.y186{bottom:221.992000pt;}
.y7e{bottom:225.076000pt;}
.y81{bottom:225.409333pt;}
.y1b5{bottom:225.522667pt;}
.yb8{bottom:225.524000pt;}
.y23c{bottom:225.753333pt;}
.y200{bottom:225.808000pt;}
.y157{bottom:226.837333pt;}
.y7f{bottom:227.862667pt;}
.y25f{bottom:229.186667pt;}
.y2a{bottom:229.257333pt;}
.yc9{bottom:231.571085pt;}
.y185{bottom:237.006667pt;}
.y23b{bottom:237.753333pt;}
.y20f{bottom:240.177333pt;}
.y80{bottom:240.342667pt;}
.y1b4{bottom:240.456000pt;}
.yb7{bottom:240.457333pt;}
.y1ff{bottom:240.741333pt;}
.y25e{bottom:241.186667pt;}
.y156{bottom:241.770667pt;}
.y29{bottom:244.190667pt;}
.y26a{bottom:245.360000pt;}
.yf0{bottom:251.580000pt;}
.yd2{bottom:251.616087pt;}
.y184{bottom:251.940000pt;}
.y25d{bottom:253.186667pt;}
.y23a{bottom:254.134667pt;}
.y20e{bottom:255.110667pt;}
.y1b3{bottom:255.213333pt;}
.y1fe{bottom:255.674667pt;}
.yb6{bottom:255.676000pt;}
.y155{bottom:256.704000pt;}
.y28{bottom:259.124000pt;}
.y126{bottom:260.448000pt;}
.y105{bottom:264.041333pt;}
.y239{bottom:266.134667pt;}
.yef{bottom:266.513333pt;}
.y183{bottom:266.873333pt;}
.y7d{bottom:268.046667pt;}
.y20d{bottom:270.044000pt;}
.y1b2{bottom:270.146667pt;}
.y1fd{bottom:270.608000pt;}
.yb5{bottom:270.609333pt;}
.y25c{bottom:271.186667pt;}
.y154{bottom:271.637333pt;}
.y50{bottom:272.510667pt;}
.y27{bottom:274.057333pt;}
.yc1{bottom:275.853440pt;}
.y238{bottom:278.134667pt;}
.yee{bottom:281.446667pt;}
.y182{bottom:281.806667pt;}
.y7c{bottom:282.980000pt;}
.y25b{bottom:283.186667pt;}
.y20c{bottom:284.977333pt;}
.y1b1{bottom:285.080000pt;}
.y1fc{bottom:285.541333pt;}
.yb4{bottom:285.542667pt;}
.y153{bottom:286.570667pt;}
.y103{bottom:286.982667pt;}
.y104{bottom:287.602667pt;}
.y26{bottom:288.990667pt;}
.y237{bottom:294.516000pt;}
.y25a{bottom:295.186667pt;}
.y7b{bottom:297.913333pt;}
.y125{bottom:299.106667pt;}
.y20b{bottom:299.910667pt;}
.y1b0{bottom:300.013333pt;}
.y1fb{bottom:300.474667pt;}
.yb3{bottom:300.476000pt;}
.y152{bottom:301.504000pt;}
.y102{bottom:303.525333pt;}
.y25{bottom:303.924000pt;}
.y4f{bottom:304.565333pt;}
.y236{bottom:306.516000pt;}
.y181{bottom:312.012000pt;}
.y7a{bottom:312.846667pt;}
.y259{bottom:313.186667pt;}
.y124{bottom:314.040000pt;}
.y20a{bottom:314.844000pt;}
.y1af{bottom:314.946667pt;}
.y1fa{bottom:315.408000pt;}
.yb2{bottom:315.409333pt;}
.y151{bottom:316.437333pt;}
.y235{bottom:318.516000pt;}
.y4e{bottom:319.498667pt;}
.y24{bottom:319.594667pt;}
.yed{bottom:321.374667pt;}
.y258{bottom:325.186667pt;}
.y79{bottom:327.780000pt;}
.y209{bottom:329.777333pt;}
.y1ae{bottom:329.880000pt;}
.y1f9{bottom:330.341333pt;}
.yb1{bottom:330.342667pt;}
.y150{bottom:331.370667pt;}
.y4d{bottom:334.432000pt;}
.y23{bottom:334.528000pt;}
.y234{bottom:334.897333pt;}
.y257{bottom:337.186667pt;}
.y78{bottom:342.713333pt;}
.y101{bottom:343.849333pt;}
.y123{bottom:344.672000pt;}
.y208{bottom:344.710667pt;}
.y1ad{bottom:344.813333pt;}
.y1f8{bottom:345.274667pt;}
.yb0{bottom:345.276000pt;}
.y233{bottom:346.897333pt;}
.yec{bottom:347.432000pt;}
.y256{bottom:349.186667pt;}
.y4c{bottom:349.365333pt;}
.y22{bottom:349.461333pt;}
.y14f{bottom:350.174667pt;}
.y14e{bottom:353.458667pt;}
.y180{bottom:356.416000pt;}
.y77{bottom:357.646667pt;}
.y100{bottom:358.782667pt;}
.y232{bottom:358.897333pt;}
.y207{bottom:359.644000pt;}
.y1ac{bottom:359.746667pt;}
.y1f7{bottom:360.208000pt;}
.yaf{bottom:360.209333pt;}
.y14d{bottom:362.570667pt;}
.y4b{bottom:364.298667pt;}
.y21{bottom:364.394667pt;}
.y255{bottom:367.186667pt;}
.y269{bottom:368.281333pt;}
.y231{bottom:370.897333pt;}
.y17f{bottom:371.349333pt;}
.y76{bottom:372.580000pt;}
.yff{bottom:373.716000pt;}
.y206{bottom:374.577333pt;}
.y1ab{bottom:374.680000pt;}
.yae{bottom:375.142667pt;}
.yeb{bottom:378.360000pt;}
.y4a{bottom:379.018667pt;}
.y254{bottom:379.186667pt;}
.y20{bottom:379.328000pt;}
.y122{bottom:379.542667pt;}
.y17e{bottom:386.282667pt;}
.y230{bottom:387.280000pt;}
.y1f6{bottom:388.349333pt;}
.yfe{bottom:388.649333pt;}
.y205{bottom:389.510667pt;}
.y1aa{bottom:389.613333pt;}
.yad{bottom:390.076000pt;}
.y253{bottom:391.186667pt;}
.y14c{bottom:392.310667pt;}
.yea{bottom:393.293333pt;}
.y49{bottom:393.952000pt;}
.y1f{bottom:394.261333pt;}
.y75{bottom:394.710667pt;}
.y74{bottom:398.049333pt;}
.y22f{bottom:399.280000pt;}
.y17d{bottom:401.216000pt;}
.y252{bottom:403.186667pt;}
.yfd{bottom:403.582667pt;}
.y204{bottom:404.444000pt;}
.y1a9{bottom:404.546667pt;}
.yac{bottom:405.009333pt;}
.y73{bottom:407.161333pt;}
.y14b{bottom:407.244000pt;}
.ye9{bottom:408.226667pt;}
.y48{bottom:408.885333pt;}
.y1e{bottom:409.194667pt;}
.y22e{bottom:411.280000pt;}
.y121{bottom:416.108000pt;}
.y17c{bottom:416.230667pt;}
.y1f5{bottom:419.377333pt;}
.y1a8{bottom:419.480000pt;}
.yab{bottom:419.942667pt;}
.y251{bottom:421.186667pt;}
.y14a{bottom:422.177333pt;}
.y22d{bottom:423.280000pt;}
.y47{bottom:423.818667pt;}
.y1d{bottom:424.128000pt;}
.yfc{bottom:428.680000pt;}
.y120{bottom:431.041333pt;}
.y17b{bottom:431.164000pt;}
.ye8{bottom:431.172000pt;}
.y250{bottom:433.186667pt;}
.y1f4{bottom:434.310667pt;}
.y1a7{bottom:434.413333pt;}
.yaa{bottom:434.876000pt;}
.yfb{bottom:435.812000pt;}
.y149{bottom:437.110667pt;}
.y46{bottom:438.752000pt;}
.y72{bottom:439.016000pt;}
.y1c{bottom:439.061333pt;}
.y22c{bottom:439.661333pt;}
.ye7{bottom:440.368000pt;}
.y24f{bottom:445.186667pt;}
.y11f{bottom:445.974667pt;}
.y17a{bottom:446.097333pt;}
.y1f3{bottom:449.244000pt;}
.y1a6{bottom:449.346667pt;}
.ya9{bottom:449.809333pt;}
.y22b{bottom:451.661333pt;}
.y148{bottom:452.044000pt;}
.y45{bottom:453.685333pt;}
.y1b{bottom:453.994667pt;}
.y71{bottom:455.806667pt;}
.yfa{bottom:456.477333pt;}
.y24e{bottom:457.186667pt;}
.y22a{bottom:463.661333pt;}
.y1a5{bottom:464.104000pt;}
.y1f2{bottom:464.177333pt;}
.ya8{bottom:464.742667pt;}
.y147{bottom:466.977333pt;}
.y44{bottom:468.618667pt;}
.y1a{bottom:468.928000pt;}
.y70{bottom:470.740000pt;}
.ye6{bottom:471.296000pt;}
.yf9{bottom:471.410667pt;}
.y24d{bottom:475.186667pt;}
.y229{bottom:475.661333pt;}
.y179{bottom:476.301333pt;}
.y11e{bottom:476.606667pt;}
.y1a4{bottom:479.037333pt;}
.y1f1{bottom:479.110667pt;}
.ya7{bottom:479.676000pt;}
.y146{bottom:481.910667pt;}
.y43{bottom:483.552000pt;}
.y19{bottom:483.861333pt;}
.y6f{bottom:485.673333pt;}
.ye5{bottom:486.229333pt;}
.yf8{bottom:486.344000pt;}
.y24c{bottom:487.186667pt;}
.y268{bottom:491.204000pt;}
.y228{bottom:492.042667pt;}
.y1a3{bottom:493.970667pt;}
.y1f0{bottom:494.044000pt;}
.ya6{bottom:494.609333pt;}
.y145{bottom:496.844000pt;}
.y42{bottom:498.485333pt;}
.y18{bottom:498.794667pt;}
.y24b{bottom:499.186667pt;}
.y6e{bottom:500.606667pt;}
.ye4{bottom:501.162667pt;}
.yf7{bottom:501.277333pt;}
.y227{bottom:504.042667pt;}
.y1a2{bottom:508.904000pt;}
.y1ef{bottom:508.977333pt;}
.ya5{bottom:509.542667pt;}
.y178{bottom:509.572000pt;}
.y144{bottom:511.777333pt;}
.y41{bottom:513.418667pt;}
.y17{bottom:513.728000pt;}
.y6d{bottom:515.540000pt;}
.y226{bottom:516.042667pt;}
.ye3{bottom:516.096000pt;}
.yf6{bottom:516.210667pt;}
.y24a{bottom:517.186667pt;}
.y1a1{bottom:523.837333pt;}
.ya4{bottom:524.476000pt;}
.y177{bottom:524.505333pt;}
.y143{bottom:526.464000pt;}
.y11d{bottom:527.640000pt;}
.y225{bottom:528.042667pt;}
.y40{bottom:528.352000pt;}
.y16{bottom:528.661333pt;}
.y249{bottom:529.186667pt;}
.ye2{bottom:531.029333pt;}
.yf5{bottom:531.144000pt;}
.y1a0{bottom:538.770667pt;}
.ya3{bottom:539.409333pt;}
.y176{bottom:539.438667pt;}
.y6c{bottom:540.058667pt;}
.y248{bottom:541.186667pt;}
.y142{bottom:541.397333pt;}
.y3f{bottom:543.285333pt;}
.y15{bottom:543.594667pt;}
.y224{bottom:544.424000pt;}
.ye1{bottom:545.962667pt;}
.yf4{bottom:546.077333pt;}
.y1ee{bottom:549.366667pt;}
.y247{bottom:553.186667pt;}
.y19f{bottom:553.704000pt;}
.ya2{bottom:554.342667pt;}
.y175{bottom:554.372000pt;}
.y141{bottom:556.330667pt;}
.y223{bottom:556.424000pt;}
.y3e{bottom:558.218667pt;}
.ye0{bottom:560.896000pt;}
.yf3{bottom:561.010667pt;}
.y1ed{bottom:561.366667pt;}
.y6b{bottom:564.577333pt;}
.y222{bottom:568.424000pt;}
.y19e{bottom:568.637333pt;}
.ya1{bottom:569.276000pt;}
.y174{bottom:569.305333pt;}
.y246{bottom:571.186667pt;}
.y140{bottom:571.264000pt;}
.y3d{bottom:572.937333pt;}
.y14{bottom:576.492000pt;}
.y11c{bottom:578.674667pt;}
.y6a{bottom:579.510667pt;}
.y245{bottom:583.186667pt;}
.y19d{bottom:583.570667pt;}
.y1eb{bottom:583.766667pt;}
.ya0{bottom:584.209333pt;}
.y173{bottom:584.238667pt;}
.y221{bottom:584.805333pt;}
.ydf{bottom:584.832000pt;}
.yf2{bottom:585.070667pt;}
.y13f{bottom:586.197333pt;}
.y3c{bottom:587.870667pt;}
.y69{bottom:594.574667pt;}
.y244{bottom:595.186667pt;}
.y220{bottom:596.805333pt;}
.y19c{bottom:598.328000pt;}
.y172{bottom:599.172000pt;}
.yde{bottom:600.004000pt;}
.y13e{bottom:601.130667pt;}
.y3b{bottom:602.804000pt;}
.y21f{bottom:608.805333pt;}
.y68{bottom:609.508000pt;}
.y1d8{bottom:612.228000pt;}
.y13{bottom:613.124000pt;}
.y243{bottom:613.186667pt;}
.y19b{bottom:613.261333pt;}
.y171{bottom:614.105333pt;}
.y267{bottom:614.125333pt;}
.ydd{bottom:614.937333pt;}
.y9f{bottom:615.250667pt;}
.y13d{bottom:616.064000pt;}
.y3a{bottom:617.737333pt;}
.y67{bottom:624.441333pt;}
.y21e{bottom:625.186667pt;}
.y19a{bottom:628.194667pt;}
.y12{bottom:628.457333pt;}
.y170{bottom:629.038667pt;}
.y11b{bottom:629.708000pt;}
.y13c{bottom:630.750667pt;}
.y39{bottom:632.670667pt;}
.y21d{bottom:637.186667pt;}
.y66{bottom:639.374667pt;}
.y199{bottom:643.128000pt;}
.y11{bottom:643.790667pt;}
.y16f{bottom:643.972000pt;}
.y13b{bottom:645.684000pt;}
.y38{bottom:647.604000pt;}
.y9e{bottom:649.358667pt;}
.ydc{bottom:653.140000pt;}
.y65{bottom:654.308000pt;}
.y198{bottom:658.061333pt;}
.y16e{bottom:658.905333pt;}
.y10{bottom:659.124000pt;}
.y13a{bottom:660.617333pt;}
.y37{bottom:662.537333pt;}
.y9d{bottom:664.292000pt;}
.ydb{bottom:665.140000pt;}
.y64{bottom:669.241333pt;}
.y197{bottom:672.994667pt;}
.y16d{bottom:673.838667pt;}
.yf{bottom:674.457333pt;}
.y11a{bottom:675.273333pt;}
.y139{bottom:675.550667pt;}
.y36{bottom:677.470667pt;}
.y21c{bottom:677.576000pt;}
.y9c{bottom:679.225333pt;}
.y63{bottom:684.174667pt;}
.yc0{bottom:687.540000pt;}
.y196{bottom:687.928000pt;}
.y16c{bottom:688.772000pt;}
.ye{bottom:689.790667pt;}
.y119{bottom:690.206667pt;}
.y138{bottom:690.484000pt;}
.y35{bottom:692.404000pt;}
.y9b{bottom:694.158667pt;}
.y62{bottom:699.108000pt;}
.y195{bottom:702.861333pt;}
.y16b{bottom:703.705333pt;}
.yd{bottom:705.124000pt;}
.y118{bottom:705.140000pt;}
.y137{bottom:705.417333pt;}
.y34{bottom:707.337333pt;}
.y61{bottom:714.041333pt;}
.y194{bottom:717.794667pt;}
.y9a{bottom:719.361333pt;}
.y117{bottom:720.073333pt;}
.y136{bottom:720.350667pt;}
.yc{bottom:720.457333pt;}
.y33{bottom:722.056000pt;}
.y60{bottom:728.974667pt;}
.y193{bottom:732.728000pt;}
.y16a{bottom:733.909333pt;}
.y116{bottom:735.006667pt;}
.y135{bottom:735.284000pt;}
.yb{bottom:735.789333pt;}
.y32{bottom:736.989333pt;}
.y266{bottom:740.826667pt;}
.y5f{bottom:743.908000pt;}
.y192{bottom:747.661333pt;}
.y115{bottom:749.940000pt;}
.y134{bottom:750.217333pt;}
.y99{bottom:750.784000pt;}
.ya{bottom:751.122667pt;}
.y31{bottom:751.922667pt;}
.y5e{bottom:758.841333pt;}
.y191{bottom:762.594667pt;}
.y114{bottom:764.873333pt;}
.y133{bottom:765.150667pt;}
.y98{bottom:765.717333pt;}
.y9{bottom:766.456000pt;}
.y30{bottom:766.856000pt;}
.y169{bottom:767.181333pt;}
.y5d{bottom:773.906667pt;}
.y190{bottom:777.528000pt;}
.y113{bottom:779.806667pt;}
.y132{bottom:780.084000pt;}
.y97{bottom:780.650667pt;}
.y8{bottom:781.789333pt;}
.y168{bottom:782.114667pt;}
.y5c{bottom:788.840000pt;}
.y18f{bottom:792.461333pt;}
.y112{bottom:794.740000pt;}
.y131{bottom:795.017333pt;}
.y96{bottom:795.584000pt;}
.y167{bottom:797.048000pt;}
.y5b{bottom:803.773333pt;}
.y1d7{bottom:807.562667pt;}
.y111{bottom:809.673333pt;}
.y130{bottom:809.950667pt;}
.y166{bottom:811.981333pt;}
.y5a{bottom:818.706667pt;}
.y1d6{bottom:819.562667pt;}
.y18e{bottom:821.058667pt;}
.y94{bottom:821.946667pt;}
.y7{bottom:824.829333pt;}
.y12f{bottom:824.884000pt;}
.y93{bottom:826.526667pt;}
.y165{bottom:826.914667pt;}
.y95{bottom:827.985333pt;}
.y59{bottom:833.640000pt;}
.y92{bottom:839.456000pt;}
.y12e{bottom:839.817333pt;}
.y6{bottom:840.998667pt;}
.y164{bottom:841.929333pt;}
.y1bd{bottom:841.962667pt;}
.y110{bottom:844.597333pt;}
.y58{bottom:848.573333pt;}
.y18d{bottom:852.722667pt;}
.y12d{bottom:854.504000pt;}
.y91{bottom:855.914667pt;}
.y5{bottom:861.989333pt;}
.y21b{bottom:862.826667pt;}
.y57{bottom:863.506667pt;}
.y18c{bottom:867.656000pt;}
.y12c{bottom:869.437333pt;}
.y90{bottom:870.820000pt;}
.y265{bottom:871.725333pt;}
.y4{bottom:873.634667pt;}
.y56{bottom:878.440000pt;}
.y10f{bottom:882.589333pt;}
.y163{bottom:884.345333pt;}
.y12b{bottom:884.370667pt;}
.y3{bottom:890.794667pt;}
.y21a{bottom:894.585333pt;}
.y8e{bottom:896.549333pt;}
.y162{bottom:896.876000pt;}
.y10e{bottom:897.522667pt;}
.y12a{bottom:899.304000pt;}
.y8b{bottom:902.469333pt;}
.y219{bottom:907.116000pt;}
.y55{bottom:908.848000pt;}
.y161{bottom:909.408000pt;}
.y8f{bottom:911.148000pt;}
.y8d{bottom:911.482667pt;}
.y10d{bottom:912.456000pt;}
.y129{bottom:914.237333pt;}
.y218{bottom:919.648000pt;}
.y160{bottom:921.938667pt;}
.y8c{bottom:926.416000pt;}
.y8a{bottom:926.469333pt;}
.y10c{bottom:927.389333pt;}
.y128{bottom:929.170667pt;}
.y217{bottom:932.178667pt;}
.y15f{bottom:937.658667pt;}
.y89{bottom:938.469333pt;}
.y54{bottom:942.322667pt;}
.y127{bottom:944.104000pt;}
.y2{bottom:945.194667pt;}
.y216{bottom:947.898667pt;}
.y53{bottom:957.256000pt;}
.y15e{bottom:960.189333pt;}
.y264{bottom:964.764000pt;}
.y1{bottom:967.861333pt;}
.y52{bottom:972.189333pt;}
.h13{height:2.666667pt;}
.h1b{height:7.085582pt;}
.h46{height:17.053351pt;}
.h3{height:19.765848pt;}
.h44{height:20.154073pt;}
.h26{height:20.800902pt;}
.h45{height:23.254588pt;}
.h47{height:23.320636pt;}
.h40{height:23.483733pt;}
.h24{height:24.485634pt;}
.h3d{height:25.068486pt;}
.h49{height:25.192591pt;}
.h18{height:25.546667pt;}
.h3e{height:26.147101pt;}
.h22{height:26.590316pt;}
.h4d{height:26.658776pt;}
.h2a{height:27.106534pt;}
.h29{height:27.160747pt;}
.h33{height:27.895200pt;}
.h4c{height:28.461440pt;}
.h15{height:28.703733pt;}
.h4a{height:29.068235pt;}
.h4b{height:29.150794pt;}
.h2d{height:29.354667pt;}
.h4f{height:29.568000pt;}
.h41{height:29.610667pt;}
.h2c{height:29.922748pt;}
.h25{height:31.662458pt;}
.h23{height:31.704674pt;}
.h42{height:31.880400pt;}
.h7{height:33.312000pt;}
.h6{height:33.552000pt;}
.h2b{height:36.051690pt;}
.h4{height:36.586667pt;}
.h9{height:36.693333pt;}
.h4e{height:36.960000pt;}
.h5{height:39.850400pt;}
.h38{height:40.417820pt;}
.h28{height:40.659801pt;}
.hb{height:40.714667pt;}
.h2{height:40.880515pt;}
.h3b{height:44.348486pt;}
.h8{height:44.416000pt;}
.h36{height:44.970300pt;}
.h20{height:45.173333pt;}
.h1a{height:47.175200pt;}
.h11{height:47.180533pt;}
.h19{height:49.831200pt;}
.h34{height:51.783153pt;}
.h1d{height:51.805582pt;}
.h1{height:51.818667pt;}
.h3c{height:53.279733pt;}
.h31{height:53.280000pt;}
.h3f{height:53.285067pt;}
.h39{height:53.553820pt;}
.ha{height:53.697917pt;}
.hc{height:56.789333pt;}
.hf{height:56.794667pt;}
.h1f{height:57.264000pt;}
.h1c{height:58.170400pt;}
.h30{height:65.221333pt;}
.h1e{height:70.125582pt;}
.hd{height:75.791733pt;}
.h37{height:75.802400pt;}
.h2e{height:76.634400pt;}
.h2f{height:77.818667pt;}
.h3a{height:86.277333pt;}
.h10{height:86.496000pt;}
.h16{height:109.813333pt;}
.h12{height:109.818667pt;}
.he{height:112.245067pt;}
.h35{height:114.602667pt;}
.h32{height:119.450667pt;}
.h43{height:140.680320pt;}
.h17{height:168.213333pt;}
.h14{height:168.218667pt;}
.h48{height:175.850400pt;}
.h27{height:268.402859pt;}
.h21{height:295.106400pt;}
.h0{height:1056.000000pt;}
.w3{width:161.285013pt;}
.w4{width:201.606267pt;}
.w2{width:268.797743pt;}
.w1{width:369.604371pt;}
.w5{width:604.805600pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x66{left:8.536311pt;}
.x73{left:10.670389pt;}
.x68{left:13.160147pt;}
.x69{left:15.294278pt;}
.x64{left:16.361263pt;}
.x6e{left:19.029181pt;}
.x72{left:20.451579pt;}
.x65{left:22.230297pt;}
.x6c{left:24.008376pt;}
.x60{left:27.209492pt;}
.x3b{left:31.060201pt;}
.x70{left:34.011865pt;}
.x2d{left:37.078480pt;}
.x76{left:39.347060pt;}
.x6d{left:50.951144pt;}
.x61{left:52.551702pt;}
.x6b{left:54.685780pt;}
.xc{left:72.000000pt;}
.x5c{left:76.674667pt;}
.x4e{left:78.641333pt;}
.x71{left:81.695211pt;}
.x5f{left:82.666667pt;}
.x77{left:84.362808pt;}
.x2b{left:86.468000pt;}
.x1{left:90.464000pt;}
.xd{left:92.000000pt;}
.x11{left:96.666667pt;}
.x6f{left:100.930667pt;}
.x83{left:102.148000pt;}
.x2f{left:103.445723pt;}
.x78{left:105.602667pt;}
.x3c{left:106.762635pt;}
.x85{left:108.081333pt;}
.x81{left:109.928000pt;}
.x84{left:111.781333pt;}
.x13{left:114.781333pt;}
.x50{left:116.493333pt;}
.x82{left:118.074667pt;}
.x42{left:119.106667pt;}
.x21{left:122.604000pt;}
.x62{left:128.044669pt;}
.x18{left:130.138667pt;}
.x2c{left:131.748613pt;}
.x10{left:133.209333pt;}
.x37{left:136.639728pt;}
.x14{left:139.134667pt;}
.x1c{left:140.805333pt;}
.x63{left:141.915891pt;}
.x12{left:145.710667pt;}
.x1d{left:146.709333pt;}
.x5e{left:147.622667pt;}
.x31{left:151.395048pt;}
.x41{left:156.945184pt;}
.x19{left:158.038667pt;}
.x1e{left:165.017333pt;}
.x40{left:171.770888pt;}
.x3f{left:175.277061pt;}
.x1a{left:176.346667pt;}
.x43{left:178.105333pt;}
.x35{left:184.157323pt;}
.x4f{left:185.688000pt;}
.x1f{left:186.594667pt;}
.x5d{left:189.196000pt;}
.x3{left:190.541333pt;}
.x3e{left:191.873418pt;}
.x45{left:196.741333pt;}
.x36{left:203.087853pt;}
.x8{left:212.281333pt;}
.xb{left:214.533333pt;}
.x15{left:215.712000pt;}
.x30{left:218.236648pt;}
.x6{left:220.382667pt;}
.x7e{left:223.042667pt;}
.x7d{left:224.216000pt;}
.x44{left:230.440000pt;}
.x3d{left:237.067223pt;}
.x7{left:240.993333pt;}
.x67{left:244.382667pt;}
.x33{left:251.600066pt;}
.x34{left:256.780823pt;}
.x32{left:261.781237pt;}
.x39{left:262.879688pt;}
.x16{left:277.233333pt;}
.x9{left:298.506667pt;}
.x7c{left:299.877333pt;}
.x17{left:301.586667pt;}
.x74{left:307.198667pt;}
.x38{left:308.954541pt;}
.x20{left:315.528000pt;}
.x1b{left:320.290667pt;}
.x2e{left:324.119731pt;}
.x2{left:339.922667pt;}
.x2a{left:398.000000pt;}
.x6a{left:410.333333pt;}
.x4{left:411.936000pt;}
.xf{left:420.000000pt;}
.x4c{left:429.697333pt;}
.x5b{left:430.666667pt;}
.xe{left:440.000000pt;}
.x25{left:441.072000pt;}
.x51{left:442.313333pt;}
.x7b{left:444.437333pt;}
.x49{left:447.450667pt;}
.x26{left:458.454667pt;}
.x3a{left:460.736000pt;}
.x46{left:467.106667pt;}
.x4a{left:473.360000pt;}
.x29{left:476.105333pt;}
.x47{left:491.302667pt;}
.x7a{left:506.449333pt;}
.x22{left:508.716000pt;}
.x79{left:512.004000pt;}
.x75{left:513.468000pt;}
.x56{left:524.878667pt;}
.x23{left:527.209333pt;}
.x27{left:528.388000pt;}
.x52{left:531.474667pt;}
.xa{left:535.105333pt;}
.x53{left:544.644000pt;}
.x48{left:547.856000pt;}
.x4b{left:554.521333pt;}
.x7f{left:558.481333pt;}
.x58{left:563.777333pt;}
.x57{left:565.464000pt;}
.x5{left:576.381333pt;}
.x59{left:585.249333pt;}
.x28{left:606.525333pt;}
.x5a{left:612.185333pt;}
.x54{left:627.821333pt;}
.x80{left:649.578667pt;}
.x55{left:658.334667pt;}
.x4d{left:721.786667pt;}
.x24{left:728.453333pt;}
}




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