
    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_fcad1bef86d43881dd05767d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_238e7e70545870c0f235b614.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_227137c9bd64e95f773a3e4f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.894000;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_60cdf927108436864e58dbb3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5de562d9afec8158223dffbb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6bc44b417164ddef6f2302b7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.011000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.736000;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_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.660000;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_37e018c9111f89f364364fc6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.885000;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_c4a811bc9bb4924201ff6d67.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e5ed41723b8cf56846f9464c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.988000;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_0aa408893504ba2de39e5d12.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_fd2eefb18af6c10c1c15e866.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_1a8b4ba2ac8650f6b59c80c0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.997000;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_6244e3abc09046c6874799dc.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.990000;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_3ec7169a1a847181943aaf53.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.285000;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_88b326565e9e436bc62fc82d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.932000;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;}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.ve{vertical-align:-41.886000px;}
.v19{vertical-align:-23.820000px;}
.v2{vertical-align:-11.760000px;}
.v15{vertical-align:-10.464000px;}
.v3{vertical-align:-8.970000px;}
.v1d{vertical-align:-2.790000px;}
.v0{vertical-align:0.000000px;}
.v13{vertical-align:1.464000px;}
.vf{vertical-align:3.006000px;}
.vb{vertical-align:6.246000px;}
.v10{vertical-align:8.232000px;}
.v1a{vertical-align:10.848000px;}
.v1c{vertical-align:12.354000px;}
.v6{vertical-align:14.760000px;}
.v8{vertical-align:16.020000px;}
.va{vertical-align:18.006000px;}
.v1e{vertical-align:19.524000px;}
.v1b{vertical-align:20.562000px;}
.v1{vertical-align:21.696000px;}
.v12{vertical-align:23.550000px;}
.vd{vertical-align:24.690000px;}
.v5{vertical-align:31.500000px;}
.v11{vertical-align:33.654000px;}
.v7{vertical-align:38.316000px;}
.v4{vertical-align:40.464000px;}
.v9{vertical-align:44.934000px;}
.v18{vertical-align:46.548000px;}
.v14{vertical-align:51.912000px;}
.vc{vertical-align:57.174000px;}
.v17{vertical-align:65.694000px;}
.v16{vertical-align:78.942000px;}
.ls0{letter-spacing:0.000000px;}
.lsd0{letter-spacing:0.000435px;}
.lsd9{letter-spacing:0.528965px;}
.lsd8{letter-spacing:0.533908px;}
.ls33{letter-spacing:0.542815px;}
.lsdb{letter-spacing:0.546230px;}
.ls3d{letter-spacing:0.548815px;}
.lsdc{letter-spacing:0.551335px;}
.lsd7{letter-spacing:0.554888px;}
.lsd6{letter-spacing:0.555309px;}
.lsd5{letter-spacing:0.560499px;}
.lsbc{letter-spacing:0.564600px;}
.lsbb{letter-spacing:0.570571px;}
.lsb5{letter-spacing:0.570600px;}
.lsda{letter-spacing:0.573000px;}
.lsd4{letter-spacing:0.582524px;}
.lscf{letter-spacing:0.642088px;}
.ls46{letter-spacing:0.648088px;}
.lsa{letter-spacing:0.670741px;}
.lsce{letter-spacing:0.673555px;}
.ls16{letter-spacing:0.676741px;}
.lsbd{letter-spacing:0.699292px;}
.ls7b{letter-spacing:0.720783px;}
.ls4a{letter-spacing:0.741762px;}
.ls3{letter-spacing:0.743675px;}
.lsb4{letter-spacing:0.745897px;}
.ls2d{letter-spacing:0.747292px;}
.lsa1{letter-spacing:0.747762px;}
.ls71{letter-spacing:0.748483px;}
.ls3b{letter-spacing:0.749413px;}
.lsd2{letter-spacing:0.749675px;}
.ls10{letter-spacing:0.820741px;}
.ls25{letter-spacing:0.882571px;}
.ls23{letter-spacing:0.888571px;}
.ls96{letter-spacing:0.993634px;}
.ls36{letter-spacing:0.994200px;}
.ls48{letter-spacing:0.994483px;}
.ls1b{letter-spacing:0.995675px;}
.ls58{letter-spacing:0.998570px;}
.ls42{letter-spacing:1.000200px;}
.ls4d{letter-spacing:1.000483px;}
.ls8{letter-spacing:1.001675px;}
.lsad{letter-spacing:1.050337px;}
.lsa8{letter-spacing:1.131943px;}
.lsb7{letter-spacing:1.134571px;}
.ls62{letter-spacing:1.137943px;}
.ls8a{letter-spacing:1.158600px;}
.ls8e{letter-spacing:1.160815px;}
.ls5{letter-spacing:1.166383px;}
.ls18{letter-spacing:1.275394px;}
.ls83{letter-spacing:1.290783px;}
.ls21{letter-spacing:1.311292px;}
.lsa3{letter-spacing:1.311762px;}
.ls3c{letter-spacing:1.312115px;}
.ls85{letter-spacing:1.312483px;}
.ls80{letter-spacing:1.313675px;}
.ls49{letter-spacing:1.315625px;}
.ls11{letter-spacing:1.317292px;}
.lsa9{letter-spacing:1.317762px;}
.ls31{letter-spacing:1.318115px;}
.ls86{letter-spacing:1.319675px;}
.ls6c{letter-spacing:1.420741px;}
.ls32{letter-spacing:1.452571px;}
.ls3a{letter-spacing:1.467483px;}
.ls69{letter-spacing:1.491762px;}
.ls6d{letter-spacing:1.491986px;}
.ls6{letter-spacing:1.493108px;}
.lsb2{letter-spacing:1.497762px;}
.ls20{letter-spacing:1.499108px;}
.ls67{letter-spacing:1.794337px;}
.ls2{letter-spacing:1.861130px;}
.ls61{letter-spacing:1.906115px;}
.ls89{letter-spacing:1.975771px;}
.ls39{letter-spacing:2.092200px;}
.lsb8{letter-spacing:2.154600px;}
.lsb0{letter-spacing:2.177108px;}
.ls5d{letter-spacing:2.183108px;}
.lse{letter-spacing:2.191625px;}
.ls4b{letter-spacing:2.197625px;}
.ls8b{letter-spacing:2.224514px;}
.ls6e{letter-spacing:2.252576px;}
.ls1f{letter-spacing:2.314741px;}
.lsf{letter-spacing:2.320741px;}
.lsdd{letter-spacing:2.323625px;}
.ls35{letter-spacing:2.434741px;}
.ls3e{letter-spacing:2.440741px;}
.lse2{letter-spacing:2.536742px;}
.lse6{letter-spacing:2.542742px;}
.ls8d{letter-spacing:2.545771px;}
.lsa4{letter-spacing:2.598583px;}
.ls9f{letter-spacing:2.604583px;}
.ls7{letter-spacing:2.614741px;}
.ls4c{letter-spacing:2.620741px;}
.ls8c{letter-spacing:2.702815px;}
.ls55{letter-spacing:2.804383px;}
.ls64{letter-spacing:2.810383px;}
.ls73{letter-spacing:2.908483px;}
.lsc0{letter-spacing:2.933108px;}
.lsb3{letter-spacing:2.989200px;}
.lsca{letter-spacing:3.555886px;}
.ls59{letter-spacing:3.555943px;}
.ls9a{letter-spacing:3.561943px;}
.ls24{letter-spacing:3.733200px;}
.ls34{letter-spacing:3.739200px;}
.ls9e{letter-spacing:3.876571px;}
.ls8f{letter-spacing:4.282457px;}
.lsc7{letter-spacing:4.299886px;}
.ls12{letter-spacing:4.303771px;}
.ls6b{letter-spacing:4.305943px;}
.ls7f{letter-spacing:4.322160px;}
.lsba{letter-spacing:4.400383px;}
.ls9{letter-spacing:4.620571px;}
.ls1c{letter-spacing:4.626571px;}
.ls26{letter-spacing:6.007200px;}
.ls1d{letter-spacing:7.215292px;}
.lsb{letter-spacing:7.221292px;}
.ls90{letter-spacing:7.223675px;}
.ls68{letter-spacing:8.056741px;}
.ls84{letter-spacing:8.371200px;}
.ls6a{letter-spacing:9.190741px;}
.ls7e{letter-spacing:9.386383px;}
.ls82{letter-spacing:9.560383px;}
.ls15{letter-spacing:10.434571px;}
.ls17{letter-spacing:11.954850px;}
.lsb9{letter-spacing:12.072571px;}
.ls1a{letter-spacing:12.123483px;}
.lsc2{letter-spacing:12.255483px;}
.lsc3{letter-spacing:12.289897px;}
.ls45{letter-spacing:12.339483px;}
.ls7c{letter-spacing:12.370200px;}
.ls98{letter-spacing:12.390571px;}
.ls54{letter-spacing:12.396571px;}
.ls14{letter-spacing:12.489483px;}
.lsc8{letter-spacing:12.598741px;}
.ls19{letter-spacing:12.676741px;}
.ls13{letter-spacing:13.042741px;}
.ls22{letter-spacing:13.048741px;}
.ls99{letter-spacing:13.083483px;}
.ls57{letter-spacing:13.089483px;}
.ls9d{letter-spacing:13.119762px;}
.ls79{letter-spacing:13.143483px;}
.lsec{letter-spacing:13.436004px;}
.lsc1{letter-spacing:13.727108px;}
.lsc6{letter-spacing:13.822741px;}
.ls47{letter-spacing:14.390725px;}
.ls76{letter-spacing:14.549108px;}
.lsd{letter-spacing:14.583483px;}
.ls29{letter-spacing:14.704798px;}
.ls27{letter-spacing:14.943900px;}
.ls78{letter-spacing:14.970583px;}
.ls28{letter-spacing:15.063451px;}
.ls2a{letter-spacing:15.123227px;}
.ls4{letter-spacing:15.183002px;}
.ls77{letter-spacing:15.183483px;}
.lse7{letter-spacing:15.615725px;}
.lse4{letter-spacing:15.621725px;}
.lsa5{letter-spacing:15.687762px;}
.lsd1{letter-spacing:15.688483px;}
.lsd3{letter-spacing:15.691625px;}
.ls75{letter-spacing:15.692570px;}
.ls9b{letter-spacing:15.693634px;}
.lsa0{letter-spacing:15.694483px;}
.ls92{letter-spacing:15.695675px;}
.ls56{letter-spacing:15.927943px;}
.lsbf{letter-spacing:16.106383px;}
.ls3f{letter-spacing:16.242571px;}
.ls97{letter-spacing:16.248571px;}
.lsbe{letter-spacing:16.649675px;}
.lsc9{letter-spacing:17.022571px;}
.lsde{letter-spacing:17.186100px;}
.ls50{letter-spacing:17.319483px;}
.ls5c{letter-spacing:17.325483px;}
.ls51{letter-spacing:17.544583px;}
.ls37{letter-spacing:17.826571px;}
.ls72{letter-spacing:18.069483px;}
.ls87{letter-spacing:18.094483px;}
.ls70{letter-spacing:18.098100px;}
.ls5b{letter-spacing:18.098725px;}
.ls41{letter-spacing:18.445142px;}
.ls30{letter-spacing:18.451142px;}
.ls93{letter-spacing:18.512383px;}
.ls4f{letter-spacing:18.518383px;}
.ls94{letter-spacing:18.816571px;}
.lsdf{letter-spacing:18.822571px;}
.ls4e{letter-spacing:19.055675px;}
.ls2c{letter-spacing:19.084200px;}
.lse9{letter-spacing:19.125403px;}
.lsea{letter-spacing:19.125797px;}
.lse3{letter-spacing:19.126948px;}
.ls60{letter-spacing:19.540514px;}
.ls88{letter-spacing:19.563483px;}
.lsb1{letter-spacing:19.719483px;}
.ls6f{letter-spacing:20.341200px;}
.ls7d{letter-spacing:20.859483px;}
.lsb6{letter-spacing:20.907943px;}
.lsae{letter-spacing:20.911092px;}
.lscd{letter-spacing:20.921460px;}
.lsab{letter-spacing:21.222571px;}
.lse1{letter-spacing:21.228571px;}
.ls63{letter-spacing:21.469200px;}
.lsc{letter-spacing:22.056571px;}
.ls1e{letter-spacing:22.062571px;}
.ls74{letter-spacing:22.315771px;}
.ls43{letter-spacing:23.367483px;}
.ls40{letter-spacing:23.373483px;}
.ls91{letter-spacing:24.630571px;}
.lse0{letter-spacing:24.792571px;}
.ls38{letter-spacing:24.957483px;}
.lsc5{letter-spacing:25.845483px;}
.lsc4{letter-spacing:26.268571px;}
.ls1{letter-spacing:28.241510px;}
.ls2e{letter-spacing:28.819142px;}
.lsac{letter-spacing:29.667483px;}
.ls5e{letter-spacing:32.283762px;}
.ls53{letter-spacing:33.015483px;}
.lsa6{letter-spacing:33.045762px;}
.ls95{letter-spacing:33.909483px;}
.ls2f{letter-spacing:34.245483px;}
.ls65{letter-spacing:35.091943px;}
.ls52{letter-spacing:35.853943px;}
.ls66{letter-spacing:40.029483px;}
.ls2b{letter-spacing:40.185483px;}
.lsaf{letter-spacing:42.513483px;}
.ls5f{letter-spacing:42.615483px;}
.lsa7{letter-spacing:44.607483px;}
.lsa2{letter-spacing:48.981483px;}
.ls81{letter-spacing:53.052571px;}
.lscc{letter-spacing:65.797897px;}
.lscb{letter-spacing:68.011897px;}
.lsaa{letter-spacing:68.709943px;}
.ls5a{letter-spacing:70.484100px;}
.lse5{letter-spacing:73.744800px;}
.lse8{letter-spacing:73.750800px;}
.ls9c{letter-spacing:98.650200px;}
.lseb{letter-spacing:107.614800px;}
.ls7a{letter-spacing:124.980583px;}
.ls44{letter-spacing:199.909142px;}
.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;}
}
.ws58{word-spacing:-47.337600px;}
.ws1{word-spacing:-16.529216px;}
.ws1f{word-spacing:-14.943900px;}
.ws7b{word-spacing:-13.449600px;}
.ws1d{word-spacing:-11.955150px;}
.ws90{word-spacing:-11.631887px;}
.wsb2{word-spacing:-11.441709px;}
.wsa0{word-spacing:-11.080049px;}
.ws6c{word-spacing:-4.782048px;}
.ws5c{word-spacing:-4.244068px;}
.ws60{word-spacing:-3.526760px;}
.wsc4{word-spacing:-3.168107px;}
.ws80{word-spacing:-3.108331px;}
.ws82{word-spacing:-2.869229px;}
.ws83{word-spacing:-2.809453px;}
.ws91{word-spacing:-2.630126px;}
.ws43{word-spacing:-2.510575px;}
.ws2e{word-spacing:-2.271473px;}
.wsc3{word-spacing:-2.092146px;}
.ws7e{word-spacing:-2.032370px;}
.ws4b{word-spacing:-1.912819px;}
.ws4{word-spacing:-1.908367px;}
.wsee{word-spacing:-1.667750px;}
.wsd8{word-spacing:-1.613952px;}
.ws8a{word-spacing:-1.613941px;}
.wsdb{word-spacing:-1.560154px;}
.ws3d{word-spacing:-1.554166px;}
.wsea{word-spacing:-1.506355px;}
.ws89{word-spacing:-1.494390px;}
.ws3{word-spacing:-1.322630px;}
.ws93{word-spacing:-1.315063px;}
.ws92{word-spacing:-1.255288px;}
.wse2{word-spacing:-1.237363px;}
.wsa6{word-spacing:-1.135736px;}
.ws95{word-spacing:-1.075961px;}
.wsf0{word-spacing:-1.022170px;}
.ws56{word-spacing:-1.016185px;}
.wsf8{word-spacing:-0.968371px;}
.ws5b{word-spacing:-0.841904px;}
.ws15{word-spacing:-0.836858px;}
.ws68{word-spacing:-0.717307px;}
.wsca{word-spacing:-0.699379px;}
.ws6b{word-spacing:-0.597756px;}
.wsb3{word-spacing:-0.537980px;}
.ws5d{word-spacing:-0.478205px;}
.ws9{word-spacing:-0.418429px;}
.ws7f{word-spacing:-0.358654px;}
.wsde{word-spacing:-0.322790px;}
.ws5{word-spacing:-0.298878px;}
.ws6{word-spacing:-0.239102px;}
.wsa{word-spacing:-0.179327px;}
.wscb{word-spacing:-0.161395px;}
.ws10{word-spacing:-0.119551px;}
.wsfd{word-spacing:-0.107597px;}
.ws7{word-spacing:-0.059776px;}
.wsc0{word-spacing:-0.053798px;}
.ws1e{word-spacing:-0.047821px;}
.ws66{word-spacing:-0.045430px;}
.ws7c{word-spacing:-0.004363px;}
.ws7d{word-spacing:-0.001069px;}
.ws0{word-spacing:0.000000px;}
.ws21{word-spacing:0.059776px;}
.wsd1{word-spacing:0.107597px;}
.wsb{word-spacing:0.119551px;}
.wsed{word-spacing:0.161395px;}
.wse{word-spacing:0.179327px;}
.wsc{word-spacing:0.239102px;}
.wsd4{word-spacing:0.268992px;}
.ws8{word-spacing:0.298878px;}
.ws64{word-spacing:0.305960px;}
.ws27{word-spacing:0.358654px;}
.ws55{word-spacing:0.418429px;}
.ws84{word-spacing:0.478205px;}
.ws53{word-spacing:0.537980px;}
.wsb9{word-spacing:0.673200px;}
.ws62{word-spacing:0.745424px;}
.ws67{word-spacing:0.748009px;}
.wsf1{word-spacing:0.753178px;}
.wsd{word-spacing:0.777083px;}
.ws6a{word-spacing:0.805424px;}
.ws1a{word-spacing:0.896634px;}
.wsf{word-spacing:0.956410px;}
.wsa5{word-spacing:1.016185px;}
.ws39{word-spacing:1.135736px;}
.ws18{word-spacing:1.195512px;}
.ws94{word-spacing:1.255288px;}
.ws31{word-spacing:1.315063px;}
.ws6d{word-spacing:1.374839px;}
.ws17{word-spacing:1.554166px;}
.ws16{word-spacing:1.613941px;}
.wsfb{word-spacing:1.613952px;}
.wsdd{word-spacing:1.721549px;}
.ws4e{word-spacing:1.733492px;}
.wsec{word-spacing:1.775347px;}
.ws4d{word-spacing:2.032370px;}
.ws87{word-spacing:2.151922px;}
.ws85{word-spacing:2.211697px;}
.ws63{word-spacing:2.238175px;}
.wse0{word-spacing:2.259533px;}
.ws29{word-spacing:2.391024px;}
.ws22{word-spacing:2.450800px;}
.wsd7{word-spacing:2.474726px;}
.ws20{word-spacing:2.510575px;}
.ws32{word-spacing:2.570351px;}
.wsda{word-spacing:2.582323px;}
.ws26{word-spacing:2.630126px;}
.wsc2{word-spacing:2.689902px;}
.wsbb{word-spacing:2.809453px;}
.ws28{word-spacing:2.929004px;}
.ws2a{word-spacing:2.988780px;}
.ws4f{word-spacing:3.048556px;}
.ws2d{word-spacing:3.108331px;}
.ws2{word-spacing:3.227904px;}
.wsfa{word-spacing:3.281702px;}
.wsc9{word-spacing:3.335501px;}
.wsd3{word-spacing:3.389299px;}
.wsc5{word-spacing:3.466985px;}
.ws11{word-spacing:3.583475px;}
.ws12{word-spacing:3.586536px;}
.wsc6{word-spacing:3.706087px;}
.ws2b{word-spacing:3.825638px;}
.ws3f{word-spacing:3.885414px;}
.ws25{word-spacing:3.945190px;}
.wsb4{word-spacing:4.064741px;}
.ws96{word-spacing:4.094493px;}
.ws38{word-spacing:4.124516px;}
.ws59{word-spacing:4.184292px;}
.ws6e{word-spacing:4.244068px;}
.wse7{word-spacing:4.357670px;}
.wsf2{word-spacing:4.402328px;}
.wsf4{word-spacing:4.411469px;}
.ws69{word-spacing:4.483170px;}
.ws41{word-spacing:4.542946px;}
.ws88{word-spacing:4.662497px;}
.ws14{word-spacing:4.722272px;}
.wscc{word-spacing:4.971331px;}
.wsbf{word-spacing:4.977955px;}
.ws76{word-spacing:4.979587px;}
.wsc8{word-spacing:5.003251px;}
.ws35{word-spacing:5.021150px;}
.ws44{word-spacing:5.260253px;}
.ws13{word-spacing:5.379804px;}
.wsc7{word-spacing:5.379840px;}
.ws86{word-spacing:5.439580px;}
.ws5a{word-spacing:5.618906px;}
.ws70{word-spacing:5.798233px;}
.wse4{word-spacing:5.810227px;}
.ws75{word-spacing:5.977560px;}
.wsba{word-spacing:6.216662px;}
.ws2f{word-spacing:6.276438px;}
.ws30{word-spacing:6.336214px;}
.ws4c{word-spacing:6.395989px;}
.wsc1{word-spacing:6.515540px;}
.ws65{word-spacing:6.993745px;}
.ws71{word-spacing:7.531726px;}
.ws37{word-spacing:7.711052px;}
.ws33{word-spacing:7.830604px;}
.ws34{word-spacing:7.890379px;}
.ws2c{word-spacing:8.906564px;}
.wsd5{word-spacing:9.143098px;}
.wsf5{word-spacing:9.145296px;}
.wse6{word-spacing:9.147686px;}
.ws74{word-spacing:9.922750px;}
.wsef{word-spacing:11.711702px;}
.wsd9{word-spacing:11.728051px;}
.wsdc{word-spacing:11.835648px;}
.wseb{word-spacing:11.889446px;}
.ws1c{word-spacing:11.907329px;}
.wse3{word-spacing:12.158438px;}
.ws81{word-spacing:12.552876px;}
.ws23{word-spacing:12.955613px;}
.ws24{word-spacing:13.058861px;}
.wsdf{word-spacing:13.073011px;}
.wse9{word-spacing:13.392499px;}
.wsd6{word-spacing:13.395802px;}
.wsf9{word-spacing:13.449600px;}
.wsd2{word-spacing:13.503398px;}
.wsf7{word-spacing:13.664794px;}
.ws36{word-spacing:14.884124px;}
.wsfc{word-spacing:15.009754px;}
.wse8{word-spacing:17.699674px;}
.wsf3{word-spacing:17.807270px;}
.ws19{word-spacing:17.932680px;}
.ws5e{word-spacing:17.938541px;}
.ws54{word-spacing:18.470660px;}
.wsbd{word-spacing:19.085287px;}
.ws6f{word-spacing:20.084602px;}
.ws73{word-spacing:24.986201px;}
.ws72{word-spacing:26.121937px;}
.wse5{word-spacing:26.838970px;}
.wse1{word-spacing:26.842186px;}
.wsf6{word-spacing:26.844970px;}
.ws5f{word-spacing:26.958796px;}
.ws1b{word-spacing:32.372326px;}
.ws57{word-spacing:32.887325px;}
.ws40{word-spacing:32.981885px;}
.ws42{word-spacing:32.983103px;}
.ws3e{word-spacing:35.489526px;}
.wsa2{word-spacing:47.998774px;}
.wsa3{word-spacing:48.549637px;}
.wsa4{word-spacing:48.550626px;}
.ws9f{word-spacing:48.556446px;}
.ws99{word-spacing:48.569132px;}
.wsa7{word-spacing:49.565484px;}
.wsaf{word-spacing:50.141359px;}
.wsad{word-spacing:50.146463px;}
.ws8d{word-spacing:50.389333px;}
.ws8b{word-spacing:50.435860px;}
.wsb1{word-spacing:57.133550px;}
.wsab{word-spacing:57.137634px;}
.ws3a{word-spacing:58.263667px;}
.ws4a{word-spacing:58.317466px;}
.ws46{word-spacing:58.929062px;}
.ws47{word-spacing:58.954445px;}
.ws49{word-spacing:58.954800px;}
.wscf{word-spacing:58.956000px;}
.ws9a{word-spacing:60.940272px;}
.wsac{word-spacing:62.929401px;}
.ws3b{word-spacing:63.535910px;}
.ws52{word-spacing:65.526451px;}
.ws9c{word-spacing:66.524617px;}
.ws9b{word-spacing:67.070481px;}
.wsa9{word-spacing:68.696022px;}
.ws45{word-spacing:68.754355px;}
.wsa8{word-spacing:69.885960px;}
.ws98{word-spacing:72.020322px;}
.ws51{word-spacing:72.789235px;}
.ws79{word-spacing:73.972800px;}
.wsb0{word-spacing:74.371110px;}
.wsa1{word-spacing:75.565937px;}
.ws8c{word-spacing:75.607263px;}
.ws3c{word-spacing:76.985510px;}
.wsae{word-spacing:78.032457px;}
.ws50{word-spacing:78.760858px;}
.ws7a{word-spacing:80.751398px;}
.ws9e{word-spacing:85.006140px;}
.ws78{word-spacing:87.422400px;}
.ws8e{word-spacing:89.239834px;}
.ws48{word-spacing:89.935680px;}
.wsbc{word-spacing:89.956570px;}
.ws97{word-spacing:90.446428px;}
.wsd0{word-spacing:91.726272px;}
.wsaa{word-spacing:93.398656px;}
.ws9d{word-spacing:94.091780px;}
.ws8f{word-spacing:94.951073px;}
.wsce{word-spacing:103.185331px;}
.ws77{word-spacing:109.789066px;}
.wscd{word-spacing:114.214003px;}
.wsb7{word-spacing:121.679030px;}
.wsbe{word-spacing:134.689066px;}
.wsb8{word-spacing:135.802800px;}
.wsb6{word-spacing:158.260800px;}
.wsb5{word-spacing:173.486890px;}
.ws61{word-spacing:622.921528px;}
._35{margin-left:-12.056839px;}
._6{margin-left:-7.054265px;}
._7{margin-left:-5.678682px;}
._4{margin-left:-4.303843px;}
._b{margin-left:-3.040988px;}
._2{margin-left:-1.322630px;}
._3{width:1.091170px;}
._14{width:2.988780px;}
._13{width:4.184292px;}
._15{width:5.798233px;}
._78{width:7.972472px;}
._27{width:10.693393px;}
._36{width:11.811714px;}
._19{width:13.733254px;}
._12{width:15.123323px;}
._1{width:16.677504px;}
._a{width:17.880472px;}
._5{width:18.948865px;}
._7f{width:20.012976px;}
._8{width:21.041011px;}
._d{width:22.116972px;}
._1a{width:23.379827px;}
._c{width:24.388445px;}
._1b{width:25.405374px;}
._11{width:26.420815px;}
._16{width:27.915205px;}
._26{width:30.784434px;}
._28{width:32.159273px;}
._9{width:33.175458px;}
._4a{width:35.267604px;}
._10{width:36.590234px;}
._18{width:38.017282px;}
._3a{width:39.227928px;}
._80{width:40.480331px;}
._3b{width:41.910263px;}
._38{width:44.212612px;}
._17{width:46.027212px;}
._37{width:48.179134px;}
._3c{width:49.202886px;}
._5e{width:59.123144px;}
._64{width:60.214596px;}
._55{width:62.067747px;}
._5a{width:63.130707px;}
._66{width:67.532501px;}
._39{width:69.673124px;}
._40{width:71.767066px;}
._60{width:73.093924px;}
._56{width:74.653570px;}
._58{width:76.560955px;}
._63{width:77.859064px;}
._32{width:78.976051px;}
._4e{width:80.233645px;}
._21{width:81.450778px;}
._61{width:82.699662px;}
._0{width:84.312650px;}
._31{width:86.238835px;}
._57{width:87.286051px;}
._49{width:88.725600px;}
._59{width:90.007101px;}
._4f{width:91.193991px;}
._5d{width:92.407613px;}
._54{width:93.685846px;}
._22{width:94.900378px;}
._2c{width:96.245338px;}
._53{width:97.917343px;}
._6a{width:99.806246px;}
._45{width:100.872000px;}
._48{width:102.181200px;}
._43{width:104.195808px;}
._47{width:106.114714px;}
._69{width:108.126235px;}
._2d{width:109.587341px;}
._3f{width:112.169664px;}
._33{width:113.460826px;}
._2a{width:116.634931px;}
._62{width:120.107736px;}
._1c{width:121.153968px;}
._34{width:122.606554px;}
._1d{width:124.704720px;}
._30{width:127.986394px;}
._2f{width:129.869338px;}
._7d{width:130.999104px;}
._6d{width:134.980186px;}
._2e{width:136.002355px;}
._2b{width:138.369485px;}
._7e{width:139.805131px;}
._23{width:141.220771px;}
._67{width:142.399979px;}
._46{width:145.793664px;}
._20{width:150.151334px;}
._5f{width:155.282322px;}
._1e{width:156.876134px;}
._25{width:163.600934px;}
._44{width:167.474419px;}
._41{width:169.131612px;}
._52{width:170.616512px;}
._50{width:174.478298px;}
._68{width:175.515819px;}
._51{width:178.433140px;}
._72{width:179.686656px;}
._6b{width:180.870221px;}
._29{width:183.882931px;}
._3e{width:185.550682px;}
._6c{width:192.921062px;}
._73{width:198.516096px;}
._42{width:206.316864px;}
._76{width:218.529101px;}
._71{width:222.779174px;}
._1f{width:225.630490px;}
._75{width:230.418547px;}
._74{width:231.763507px;}
._70{width:234.937613px;}
._6f{width:236.228774px;}
._24{width:239.080090px;}
._77{width:247.257446px;}
._3d{width:267.700838px;}
._7c{width:286.519745px;}
._6e{width:302.400806px;}
._4d{width:396.973025px;}
._65{width:405.677242px;}
._4c{width:409.861155px;}
._5b{width:416.343939px;}
._5c{width:422.593087px;}
._e{width:689.139969px;}
._7a{width:698.195635px;}
._7b{width:786.425011px;}
._4b{width:1736.270102px;}
._f{width:1760.180102px;}
._79{width:3215.954102px;}
.fc5{color:transparent;}
.fc3{color:rgb(12,11,11);}
.fc4{color:rgb(8,117,183);}
.fc2{color:rgb(40,65,113);}
.fc1{color:rgb(14,15,14);}
.fc0{color:rgb(0,0,0);}
.fs17{font-size:34.470935px;}
.fs1a{font-size:35.596088px;}
.fs14{font-size:36.187746px;}
.fs12{font-size:41.842800px;}
.fsb{font-size:41.936104px;}
.fs4{font-size:42.000000px;}
.fs16{font-size:44.320198px;}
.fsc{font-size:45.429600px;}
.fs19{font-size:45.766837px;}
.fs18{font-size:46.181702px;}
.fs13{font-size:46.527546px;}
.fsa{font-size:47.236800px;}
.fsf{font-size:47.337600px;}
.fs1b{font-size:47.689101px;}
.fse{font-size:47.820600px;}
.fs15{font-size:48.481761px;}
.fs5{font-size:52.197584px;}
.fs9{font-size:53.798400px;}
.fs10{font-size:56.058000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fsd{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.116865px;}
.fs0{font-size:72.000000px;}
.fs11{font-size:83.686200px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y2e{bottom:3.425340px;}
.y24{bottom:5.788613px;}
.y2d{bottom:14.151273px;}
.y23{bottom:22.317924px;}
.y22{bottom:38.654567px;}
.y52{bottom:63.780000px;}
.y4{bottom:97.125005px;}
.y15a{bottom:105.774000px;}
.y51{bottom:108.612000px;}
.y84{bottom:109.612500px;}
.yda{bottom:117.310500px;}
.y157{bottom:117.621000px;}
.y159{bottom:118.921500px;}
.y212{bottom:120.448500px;}
.y156{bottom:122.029500px;}
.y15b{bottom:125.653500px;}
.y1a0{bottom:128.875500px;}
.y83{bottom:129.876000px;}
.yf9{bottom:133.330500px;}
.yd9{bottom:133.749000px;}
.y158{bottom:138.168000px;}
.y20{bottom:139.264499px;}
.y211{bottom:140.712000px;}
.y50{bottom:145.762500px;}
.y124{bottom:147.757500px;}
.y1e7{bottom:149.139000px;}
.y82{bottom:150.141000px;}
.yd8{bottom:150.187500px;}
.y155{bottom:153.225000px;}
.y210{bottom:160.977000px;}
.y19f{bottom:163.245000px;}
.y4f{bottom:166.026000px;}
.yd7{bottom:166.626000px;}
.y1e6{bottom:169.404000px;}
.y81{bottom:170.404500px;}
.y154{bottom:173.490000px;}
.y121{bottom:177.093000px;}
.y20f{bottom:181.240500px;}
.y122{bottom:181.879500px;}
.y4e{bottom:186.291000px;}
.y123{bottom:187.344000px;}
.yd6{bottom:190.566000px;}
.y80{bottom:190.668000px;}
.y153{bottom:193.753500px;}
.y28e{bottom:196.708500px;}
.y17{bottom:196.933500px;}
.y120{bottom:197.461500px;}
.y1e5{bottom:198.634500px;}
.y20e{bottom:201.504000px;}
.y4d{bottom:206.554500px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y7f{bottom:210.933000px;}
.y28d{bottom:216.076500px;}
.y20d{bottom:221.769000px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.yd5{bottom:222.186000px;}
.y152{bottom:222.984000px;}
.y4c{bottom:226.818000px;}
.y11f{bottom:230.389500px;}
.y7e{bottom:231.196500px;}
.y9f{bottom:232.602000px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y28c{bottom:235.443000px;}
.y1e4{bottom:237.204000px;}
.y20c{bottom:242.032500px;}
.y4b{bottom:247.083000px;}
.y11e{bottom:250.654500px;}
.y232{bottom:251.232000px;}
.y7d{bottom:251.461500px;}
.y9e{bottom:252.865500px;}
.y28b{bottom:254.811000px;}
.y1e3{bottom:257.372111px;}
.y151{bottom:257.803500px;}
.yd4{bottom:258.553500px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y20b{bottom:262.297500px;}
.y4a{bottom:267.346500px;}
.y231{bottom:267.670500px;}
.y1e2{bottom:270.914476px;}
.y11d{bottom:270.918000px;}
.y7c{bottom:271.725000px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y9d{bottom:273.130500px;}
.y28a{bottom:274.177500px;}
.y150{bottom:278.067000px;}
.yd3{bottom:278.817000px;}
.y20a{bottom:282.561000px;}
.y1e1{bottom:284.456841px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y49{bottom:287.611500px;}
.y230{bottom:290.487000px;}
.y11c{bottom:291.183000px;}
.y7b{bottom:291.988500px;}
.y9c{bottom:293.394000px;}
.y289{bottom:293.545500px;}
.y181{bottom:294.919500px;}
.y1e0{bottom:297.999206px;}
.y14f{bottom:298.332000px;}
.yd2{bottom:299.080500px;}
.y1b4{bottom:299.739000px;}
.y209{bottom:302.824500px;}
.y11a{bottom:306.291000px;}
.y22f{bottom:306.925500px;}
.y11b{bottom:307.153500px;}
.y48{bottom:307.875000px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y118{bottom:311.446500px;}
.y1df{bottom:311.540335px;}
.y7a{bottom:312.253500px;}
.y288{bottom:312.913500px;}
.y9b{bottom:313.659000px;}
.y119{bottom:315.070500px;}
.y180{bottom:315.183000px;}
.y14e{bottom:318.595500px;}
.yd1{bottom:319.345500px;}
.y1b3{bottom:320.002500px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y1de{bottom:325.082701px;}
.y47{bottom:328.138500px;}
.y22e{bottom:329.742000px;}
.y117{bottom:331.710000px;}
.y208{bottom:332.055000px;}
.y287{bottom:332.280000px;}
.y79{bottom:332.517000px;}
.y9a{bottom:333.922500px;}
.y1dd{bottom:338.625066px;}
.y14d{bottom:338.860500px;}
.y1b2{bottom:340.267500px;}
.y17f{bottom:344.413500px;}
.y22d{bottom:346.179000px;}
.ye{bottom:348.133500px;}
.y46{bottom:348.403500px;}
.yd0{bottom:350.091000px;}
.y286{bottom:351.648000px;}
.y1dc{bottom:352.167431px;}
.y78{bottom:352.782000px;}
.y99{bottom:354.186000px;}
.y14c{bottom:359.124000px;}
.y1b1{bottom:360.531000px;}
.y116{bottom:365.170500px;}
.y1db{bottom:365.709796px;}
.y207{bottom:366.874500px;}
.y45{bottom:368.667000px;}
.y115{bottom:368.862000px;}
.y22c{bottom:368.995500px;}
.ycf{bottom:370.356000px;}
.y285{bottom:371.014500px;}
.y77{bottom:373.045500px;}
.y98{bottom:374.451000px;}
.y17e{bottom:379.233000px;}
.y1da{bottom:379.252161px;}
.y14b{bottom:379.387500px;}
.y1b0{bottom:380.796000px;}
.y22b{bottom:385.434000px;}
.yd{bottom:386.785499px;}
.y206{bottom:387.139500px;}
.y44{bottom:388.932000px;}
.y284{bottom:390.382500px;}
.y1d9{bottom:392.794526px;}
.y76{bottom:393.309000px;}
.y97{bottom:394.714500px;}
.y17d{bottom:399.496500px;}
.yce{bottom:399.657000px;}
.y1af{bottom:401.059500px;}
.ycd{bottom:403.347000px;}
.y114{bottom:406.012500px;}
.y1d8{bottom:406.336891px;}
.y205{bottom:407.403000px;}
.yc{bottom:408.044999px;}
.y22a{bottom:408.250500px;}
.y14a{bottom:408.618000px;}
.y43{bottom:409.195500px;}
.y283{bottom:409.750500px;}
.y75{bottom:413.574000px;}
.yc8{bottom:413.950500px;}
.y96{bottom:414.979500px;}
.y17c{bottom:419.761500px;}
.yca{bottom:419.886000px;}
.ycb{bottom:420.538500px;}
.y1ae{bottom:421.323000px;}
.y229{bottom:424.689000px;}
.ycc{bottom:425.041500px;}
.y1d7{bottom:426.057906px;}
.y204{bottom:427.666500px;}
.y282{bottom:429.117000px;}
.y42{bottom:429.459000px;}
.yc9{bottom:430.929000px;}
.y74{bottom:433.837500px;}
.y95{bottom:435.243000px;}
.y1d6{bottom:439.817760px;}
.y1ad{bottom:441.588000px;}
.y149{bottom:443.437500px;}
.y203{bottom:447.931500px;}
.y281{bottom:448.485000px;}
.y17b{bottom:448.992000px;}
.y41{bottom:449.724000px;}
.y73{bottom:454.102500px;}
.y94{bottom:455.506500px;}
.y228{bottom:456.847500px;}
.y24e{bottom:460.050000px;}
.yc7{bottom:461.452500px;}
.y1ac{bottom:461.851500px;}
.y148{bottom:463.702500px;}
.y227{bottom:464.217000px;}
.y280{bottom:467.851500px;}
.y202{bottom:468.195000px;}
.y1d5{bottom:468.463500px;}
.y40{bottom:469.987500px;}
.y113{bottom:470.062500px;}
.y25f{bottom:472.837500px;}
.y72{bottom:474.366000px;}
.y93{bottom:475.771500px;}
.yc6{bottom:479.853000px;}
.y1ab{bottom:482.116500px;}
.y17a{bottom:483.811500px;}
.y147{bottom:483.966000px;}
.y27f{bottom:487.219500px;}
.y226{bottom:488.121000px;}
.y201{bottom:488.460000px;}
.yf8{bottom:488.464500px;}
.y24d{bottom:489.280500px;}
.y3f{bottom:490.252500px;}
.y112{bottom:490.326000px;}
.y25e{bottom:494.539500px;}
.y71{bottom:494.629500px;}
.y92{bottom:496.035000px;}
.yc5{bottom:500.118000px;}
.y1aa{bottom:502.380000px;}
.yb{bottom:502.864502px;}
.y146{bottom:504.231000px;}
.y1d4{bottom:504.385500px;}
.yf7{bottom:504.901500px;}
.y27e{bottom:506.587500px;}
.y200{bottom:508.723500px;}
.y111{bottom:510.591000px;}
.y25d{bottom:510.978000px;}
.y70{bottom:514.894500px;}
.y91{bottom:516.300000px;}
.y19e{bottom:516.565500px;}
.y179{bottom:518.631000px;}
.y3e{bottom:519.483000px;}
.y225{bottom:519.741000px;}
.yc4{bottom:520.381500px;}
.ya{bottom:520.864502px;}
.yf6{bottom:521.340000px;}
.y1a9{bottom:522.643500px;}
.y24c{bottom:524.100000px;}
.y1d3{bottom:524.650500px;}
.y27d{bottom:525.954000px;}
.y25c{bottom:527.416500px;}
.y145{bottom:528.271500px;}
.y1ff{bottom:528.987000px;}
.y110{bottom:530.854500px;}
.y142{bottom:533.940000px;}
.y6f{bottom:535.158000px;}
.y19d{bottom:536.829000px;}
.yf5{bottom:537.778500px;}
.y9{bottom:538.864499px;}
.y178{bottom:538.894500px;}
.y141{bottom:540.004500px;}
.y144{bottom:541.264500px;}
.y1a8{bottom:542.908500px;}
.y25b{bottom:543.853500px;}
.y140{bottom:544.372500px;}
.y13f{bottom:544.738500px;}
.y1d2{bottom:544.914000px;}
.y27c{bottom:545.322000px;}
.y90{bottom:545.529000px;}
.y24b{bottom:548.265000px;}
.y1fe{bottom:549.252000px;}
.yc3{bottom:549.682500px;}
.y10f{bottom:551.119500px;}
.yc2{bottom:552.424500px;}
.yf4{bottom:554.217000px;}
.y6e{bottom:555.423000px;}
.y224{bottom:556.845000px;}
.y8{bottom:556.864499px;}
.y19c{bottom:557.092500px;}
.y177{bottom:559.159500px;}
.y25a{bottom:560.292000px;}
.y143{bottom:560.512500px;}
.y1a7{bottom:563.172000px;}
.y24a{bottom:563.463000px;}
.ybd{bottom:563.859000px;}
.y27b{bottom:564.688500px;}
.y1d1{bottom:565.177500px;}
.y1fd{bottom:569.515500px;}
.ybf{bottom:569.796000px;}
.yc0{bottom:570.448500px;}
.yf3{bottom:570.655500px;}
.y10e{bottom:571.383000px;}
.yc1{bottom:574.951500px;}
.y13e{bottom:575.568000px;}
.y6d{bottom:575.686500px;}
.y259{bottom:576.730500px;}
.y223{bottom:577.108500px;}
.y19b{bottom:577.357500px;}
.y176{bottom:579.423000px;}
.y8f{bottom:580.348500px;}
.ybe{bottom:580.839000px;}
.y1a6{bottom:583.437000px;}
.y27a{bottom:584.056500px;}
.y1d0{bottom:585.442500px;}
.yf2{bottom:587.094000px;}
.y249{bottom:587.626500px;}
.y1fc{bottom:589.780500px;}
.y10d{bottom:591.646500px;}
.y258{bottom:593.169000px;}
.y3d{bottom:595.890000px;}
.y6c{bottom:595.950000px;}
.y222{bottom:597.373500px;}
.y19a{bottom:597.621000px;}
.y175{bottom:599.686500px;}
.y248{bottom:602.824500px;}
.y279{bottom:603.424500px;}
.yf1{bottom:603.532500px;}
.y1cf{bottom:605.706000px;}
.y13c{bottom:606.364500px;}
.y257{bottom:609.607500px;}
.y1fb{bottom:610.044000px;}
.ybc{bottom:611.361000px;}
.y10c{bottom:611.911500px;}
.y139{bottom:612.214500px;}
.y1a5{bottom:612.667500px;}
.y8e{bottom:615.168000px;}
.y6b{bottom:616.215000px;}
.y221{bottom:617.637000px;}
.y199{bottom:617.886000px;}
.y247{bottom:618.022500px;}
.y13b{bottom:619.357500px;}
.y174{bottom:619.951500px;}
.yf0{bottom:619.971000px;}
.y138{bottom:622.465500px;}
.y13d{bottom:622.681500px;}
.y278{bottom:622.791000px;}
.y1ce{bottom:625.971000px;}
.y256{bottom:626.046000px;}
.y137{bottom:626.089500px;}
.ybb{bottom:629.763000px;}
.y1fa{bottom:630.307500px;}
.y10b{bottom:632.175000px;}
.y246{bottom:633.220500px;}
.y3c{bottom:634.087500px;}
.yef{bottom:636.409500px;}
.y6a{bottom:636.478500px;}
.y220{bottom:637.900500px;}
.y198{bottom:638.149500px;}
.y13a{bottom:638.605500px;}
.y173{bottom:640.215000px;}
.y277{bottom:642.159000px;}
.y255{bottom:642.484500px;}
.yb7{bottom:644.871000px;}
.y7{bottom:645.510000px;}
.yb8{bottom:645.525000px;}
.y1cd{bottom:646.234500px;}
.yb6{bottom:646.336500px;}
.y1a4{bottom:647.487000px;}
.y245{bottom:648.418500px;}
.y8d{bottom:649.987500px;}
.yb5{bottom:650.026500px;}
.yba{bottom:650.028000px;}
.yb9{bottom:650.244000px;}
.y1f9{bottom:650.572500px;}
.y10a{bottom:652.438500px;}
.yee{bottom:652.848000px;}
.y3b{bottom:654.351000px;}
.y69{bottom:656.743500px;}
.y21f{bottom:658.165500px;}
.y197{bottom:658.413000px;}
.y254{bottom:658.923000px;}
.y172{bottom:660.480000px;}
.y276{bottom:661.527000px;}
.y1cc{bottom:666.498000px;}
.y6{bottom:666.771000px;}
.y1a3{bottom:667.750500px;}
.yed{bottom:669.285000px;}
.y8c{bottom:670.252500px;}
.y136{bottom:670.548000px;}
.y109{bottom:672.703500px;}
.y3a{bottom:674.616000px;}
.y253{bottom:675.361500px;}
.y68{bottom:677.007000px;}
.y21e{bottom:678.429000px;}
.y196{bottom:678.678000px;}
.y1f8{bottom:679.803000px;}
.y171{bottom:680.743500px;}
.y275{bottom:680.893500px;}
.y244{bottom:681.550500px;}
.yb4{bottom:682.365000px;}
.yb3{bottom:682.582500px;}
.y1cb{bottom:686.763000px;}
.y1a2{bottom:688.014000px;}
.y8b{bottom:690.516000px;}
.y135{bottom:690.813000px;}
.yb2{bottom:692.617500px;}
.y108{bottom:692.967000px;}
.yec{bottom:693.225000px;}
.y39{bottom:694.879500px;}
.y67{bottom:697.270500px;}
.y21d{bottom:698.694000px;}
.y195{bottom:698.941500px;}
.y252{bottom:699.300000px;}
.y274{bottom:700.261500px;}
.y170{bottom:701.007000px;}
.y243{bottom:701.814000px;}
.y1ca{bottom:707.026500px;}
.y8a{bottom:710.781000px;}
.y134{bottom:711.076500px;}
.y107{bottom:713.232000px;}
.y38{bottom:715.144500px;}
.y251{bottom:716.002500px;}
.y66{bottom:717.535500px;}
.y21c{bottom:718.957500px;}
.y194{bottom:719.206500px;}
.y1f7{bottom:719.554500px;}
.y273{bottom:719.628000px;}
.y16f{bottom:721.272000px;}
.y242{bottom:722.077500px;}
.y1a1{bottom:723.015000px;}
.yeb{bottom:724.845000px;}
.y5{bottom:726.298500px;}
.y1c9{bottom:727.291500px;}
.y89{bottom:731.044500px;}
.y133{bottom:731.340000px;}
.yb1{bottom:732.555000px;}
.y106{bottom:733.495500px;}
.y37{bottom:735.408000px;}
.y65{bottom:737.799000px;}
.y272{bottom:738.996000px;}
.y21b{bottom:739.221000px;}
.y193{bottom:739.470000px;}
.y1f6{bottom:739.956438px;}
.y16e{bottom:741.535500px;}
.y241{bottom:742.342500px;}
.y1c8{bottom:747.555000px;}
.y250{bottom:747.622500px;}
.y88{bottom:751.308000px;}
.y3{bottom:752.599495px;}
.y105{bottom:753.759000px;}
.y1f5{bottom:753.939558px;}
.y36{bottom:755.671500px;}
.y64{bottom:758.064000px;}
.y271{bottom:758.364000px;}
.y21a{bottom:759.486000px;}
.y192{bottom:759.733500px;}
.y16d{bottom:761.800500px;}
.yea{bottom:761.949000px;}
.y240{bottom:762.606000px;}
.yb0{bottom:763.300500px;}
.y132{bottom:764.800500px;}
.y1c7{bottom:767.818500px;}
.y1f4{bottom:767.923955px;}
.y131{bottom:768.492000px;}
.y87{bottom:771.573000px;}
.y35{bottom:775.936500px;}
.y270{bottom:777.730500px;}
.y191{bottom:779.998500px;}
.y1f3{bottom:781.908351px;}
.y16c{bottom:782.064000px;}
.ye9{bottom:782.212500px;}
.y23f{bottom:782.871000px;}
.y104{bottom:784.156500px;}
.y16b{bottom:785.688000px;}
.y1c6{bottom:788.083500px;}
.y219{bottom:788.716500px;}
.y86{bottom:791.836500px;}
.yaf{bottom:792.531000px;}
.y63{bottom:795.214500px;}
.y1f2{bottom:795.892747px;}
.y34{bottom:796.200000px;}
.y26f{bottom:797.098500px;}
.y24f{bottom:798.445500px;}
.y190{bottom:800.262000px;}
.y169{bottom:802.327500px;}
.ye8{bottom:802.477500px;}
.y16a{bottom:802.545000px;}
.y23e{bottom:803.134500px;}
.y103{bottom:804.420000px;}
.y130{bottom:805.642500px;}
.y1c5{bottom:808.347000px;}
.y1f1{bottom:809.877144px;}
.y85{bottom:812.101500px;}
.y33{bottom:816.465000px;}
.ye7{bottom:822.741000px;}
.y23d{bottom:823.398000px;}
.y1f0{bottom:823.861540px;}
.y102{bottom:824.683500px;}
.y12f{bottom:825.906000px;}
.yae{bottom:827.350500px;}
.y168{bottom:831.558000px;}
.y218{bottom:832.236000px;}
.y62{bottom:832.365000px;}
.y26e{bottom:835.833000px;}
.y32{bottom:836.728500px;}
.y1c4{bottom:837.577500px;}
.y1ef{bottom:837.845936px;}
.y18f{bottom:842.760000px;}
.ye6{bottom:843.006000px;}
.y23c{bottom:843.663000px;}
.y101{bottom:844.948500px;}
.y12e{bottom:846.171000px;}
.yad{bottom:847.615500px;}
.y217{bottom:848.674500px;}
.y1ee{bottom:851.830333px;}
.y61{bottom:852.628500px;}
.y26d{bottom:855.201000px;}
.y31{bottom:856.992000px;}
.y167{bottom:861.970500px;}
.ye5{bottom:863.269500px;}
.y23b{bottom:863.926500px;}
.y18e{bottom:864.460500px;}
.y216{bottom:865.111500px;}
.y100{bottom:865.212000px;}
.y1ed{bottom:865.814729px;}
.y166{bottom:866.377500px;}
.y12c{bottom:866.434500px;}
.yac{bottom:867.879000px;}
.y165{bottom:869.703000px;}
.y12d{bottom:870.058500px;}
.y60{bottom:872.893500px;}
.y26c{bottom:874.567500px;}
.y1c3{bottom:876.147000px;}
.y30{bottom:877.257000px;}
.y2{bottom:879.369000px;}
.y1ec{bottom:879.799125px;}
.y18d{bottom:880.899000px;}
.y23a{bottom:884.191500px;}
.y164{bottom:886.642500px;}
.y215{bottom:889.051500px;}
.y5f{bottom:893.157000px;}
.y1eb{bottom:893.782246px;}
.y26b{bottom:893.935500px;}
.ye4{bottom:895.488000px;}
.yff{bottom:895.608000px;}
.y1c2{bottom:896.672589px;}
.y18c{bottom:897.337500px;}
.y2f{bottom:897.520500px;}
.y239{bottom:904.455000px;}
.y214{bottom:905.490000px;}
.y163{bottom:906.906000px;}
.y12b{bottom:908.656500px;}
.y1c1{bottom:910.889426px;}
.y26a{bottom:913.302000px;}
.y5e{bottom:913.422000px;}
.y18b{bottom:913.776000px;}
.yab{bottom:914.040000px;}
.y1ea{bottom:914.148243px;}
.ye3{bottom:915.753000px;}
.yfe{bottom:915.873000px;}
.y298{bottom:922.081500px;}
.y238{bottom:924.718500px;}
.y1c0{bottom:925.106263px;}
.y162{bottom:927.169500px;}
.y2c{bottom:928.295964px;}
.y1e9{bottom:928.357227px;}
.y2b{bottom:928.689000px;}
.y18a{bottom:930.214500px;}
.yaa{bottom:930.477000px;}
.y269{bottom:932.670000px;}
.y5d{bottom:933.685500px;}
.ye2{bottom:936.016500px;}
.yfd{bottom:936.136500px;}
.y213{bottom:937.110000px;}
.y1bf{bottom:939.323099px;}
.y297{bottom:941.449500px;}
.y237{bottom:944.983500px;}
.y12a{bottom:945.807000px;}
.y189{bottom:946.651500px;}
.ya9{bottom:946.915500px;}
.y268{bottom:952.038000px;}
.y1be{bottom:953.539936px;}
.y5c{bottom:953.949000px;}
.ye1{bottom:954.786000px;}
.yfc{bottom:956.400000px;}
.y1e8{bottom:957.456000px;}
.y296{bottom:960.817500px;}
.y295{bottom:961.222500px;}
.y188{bottom:963.090000px;}
.ya8{bottom:963.354000px;}
.y129{bottom:963.672000px;}
.y236{bottom:965.247000px;}
.y1{bottom:966.726000px;}
.y1bd{bottom:967.756773px;}
.y2a{bottom:968.061000px;}
.y267{bottom:971.404500px;}
.y5b{bottom:974.214000px;}
.ye0{bottom:975.051000px;}
.y187{bottom:979.528500px;}
.ya7{bottom:979.792500px;}
.y1bc{bottom:981.973610px;}
.y235{bottom:985.512000px;}
.yfb{bottom:985.630500px;}
.y29{bottom:986.218500px;}
.y294{bottom:990.264000px;}
.y266{bottom:990.772500px;}
.y161{bottom:991.219500px;}
.ydf{bottom:993.820500px;}
.y5a{bottom:994.477500px;}
.y186{bottom:995.967000px;}
.y1bb{bottom:996.189149px;}
.ya6{bottom:996.231000px;}
.y128{bottom:997.131000px;}
.y127{bottom:1000.822500px;}
.y28{bottom:1004.376000px;}
.y293{bottom:1005.462000px;}
.y234{bottom:1005.775500px;}
.y265{bottom:1010.139000px;}
.y1ba{bottom:1010.405986px;}
.y160{bottom:1011.484500px;}
.y185{bottom:1012.405500px;}
.ya5{bottom:1012.669500px;}
.yde{bottom:1014.084000px;}
.y59{bottom:1014.742500px;}
.yfa{bottom:1020.450000px;}
.y1b9{bottom:1024.622823px;}
.y233{bottom:1026.039000px;}
.y27{bottom:1026.841500px;}
.y184{bottom:1028.844000px;}
.ya4{bottom:1029.108000px;}
.y264{bottom:1029.507000px;}
.y15e{bottom:1031.748000px;}
.y58{bottom:1035.006000px;}
.y15f{bottom:1035.073500px;}
.y126{bottom:1037.973000px;}
.y292{bottom:1038.592500px;}
.y1b8{bottom:1038.839659px;}
.y183{bottom:1045.282500px;}
.ya3{bottom:1045.546500px;}
.ydd{bottom:1046.304000px;}
.y263{bottom:1048.875000px;}
.y15d{bottom:1052.013000px;}
.y1b7{bottom:1053.056496px;}
.y57{bottom:1055.269500px;}
.y291{bottom:1057.960500px;}
.y125{bottom:1058.236500px;}
.ya2{bottom:1061.985000px;}
.ydc{bottom:1066.567500px;}
.y262{bottom:1068.241500px;}
.y182{bottom:1069.222500px;}
.y26{bottom:1071.244500px;}
.y1b6{bottom:1073.761005px;}
.y56{bottom:1075.534500px;}
.y290{bottom:1077.327000px;}
.y15c{bottom:1081.243500px;}
.ya1{bottom:1085.923500px;}
.ydb{bottom:1086.832500px;}
.y261{bottom:1087.609500px;}
.y1b5{bottom:1088.206162px;}
.y55{bottom:1095.798000px;}
.y28f{bottom:1096.695000px;}
.y25{bottom:1100.145000px;}
.y260{bottom:1115.943000px;}
.y54{bottom:1116.063000px;}
.ya0{bottom:1117.543500px;}
.y21{bottom:1137.954000px;}
.y53{bottom:1168.366500px;}
.h12{height:25.508090px;}
.h47{height:32.043503px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h21{height:33.072749px;}
.h4a{height:33.089423px;}
.h14{height:33.112997px;}
.h25{height:33.299897px;}
.h4d{height:33.318257px;}
.h43{height:33.639416px;}
.h45{height:33.872054px;}
.h13{height:34.199443px;}
.h49{height:34.636276px;}
.h18{height:35.052500px;}
.h3b{height:35.503200px;}
.h4c{height:35.766826px;}
.hc{height:36.277321px;}
.h46{height:36.361321px;}
.h1a{height:38.896243px;}
.h4f{height:39.057638px;}
.h11{height:39.165235px;}
.h53{height:39.434227px;}
.h48{height:41.011691px;}
.h28{height:42.043500px;}
.h4b{height:42.350338px;}
.h19{height:42.500452px;}
.h44{height:43.054261px;}
.h10{height:43.217759px;}
.h15{height:43.516637px;}
.he{height:43.815515px;}
.h36{height:44.380637px;}
.hd{height:44.827234px;}
.h29{height:44.831700px;}
.h30{height:44.980637px;}
.h7{height:45.960000px;}
.h35{height:46.445641px;}
.h17{height:46.714950px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h42{height:49.776344px;}
.h52{height:49.782344px;}
.h26{height:50.352749px;}
.hb{height:50.931027px;}
.h24{height:54.360749px;}
.h16{height:54.768749px;}
.h1d{height:54.774749px;}
.h2{height:55.152000px;}
.h38{height:56.065200px;}
.h2e{height:56.622749px;}
.h41{height:56.818637px;}
.h3c{height:57.762749px;}
.h2b{height:57.983897px;}
.h3f{height:57.989897px;}
.h31{height:58.012637px;}
.h2a{height:60.193200px;}
.h2d{height:61.480950px;}
.h2f{height:63.886950px;}
.h3e{height:64.348950px;}
.h20{height:64.720950px;}
.h23{height:64.726950px;}
.h3a{height:65.024177px;}
.h1e{height:71.388749px;}
.h4e{height:71.770243px;}
.h40{height:74.446637px;}
.h2c{height:74.953200px;}
.h37{height:77.068637px;}
.hf{height:77.792486px;}
.h5{height:78.132000px;}
.h22{height:78.227897px;}
.h1f{height:78.233897px;}
.h34{height:82.051200px;}
.h39{height:83.986637px;}
.h1b{height:84.279515px;}
.h1c{height:84.526637px;}
.h32{height:98.626950px;}
.h3d{height:101.458637px;}
.h27{height:103.888950px;}
.h33{height:114.445200px;}
.h4{height:119.055004px;}
.h50{height:892.914000px;}
.h51{height:893.250000px;}
.h0{height:1262.833500px;}
.ha{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:75.364879px;}
.w4{width:209.166223px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.w6{width:1262.835000px;}
.w7{width:1263.000000px;}
.x0{left:0.000000px;}
.xa{left:29.274117px;}
.x6{left:60.141348px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:114.802500px;}
.xa5{left:117.784500px;}
.x8{left:122.110500px;}
.x7{left:123.307500px;}
.xbf{left:125.789122px;}
.xa6{left:127.372500px;}
.xb8{left:136.245000px;}
.x61{left:143.919000px;}
.xe{left:146.692500px;}
.xe2{left:152.421000px;}
.x69{left:154.183500px;}
.x1d{left:155.455500px;}
.x10{left:158.133000px;}
.x19{left:161.115000px;}
.xe3{left:165.130500px;}
.x6a{left:166.959000px;}
.xae{left:168.127500px;}
.x1e{left:172.399500px;}
.x11{left:174.967500px;}
.xaf{left:180.837000px;}
.xde{left:184.114500px;}
.xb{left:188.350500px;}
.x31{left:193.572000px;}
.xb0{left:195.981000px;}
.x1a{left:199.456500px;}
.x1f{left:202.186500px;}
.x4{left:203.484001px;}
.x2d{left:208.425000px;}
.xa0{left:216.114000px;}
.x62{left:217.399500px;}
.xd1{left:223.966500px;}
.xcd{left:225.724500px;}
.xc7{left:228.037500px;}
.x63{left:229.416000px;}
.xc8{left:230.867205px;}
.xbe{left:232.200000px;}
.x32{left:233.589000px;}
.x2a{left:235.074000px;}
.xb7{left:238.306500px;}
.x20{left:243.975000px;}
.xcb{left:246.769500px;}
.x2b{left:250.941000px;}
.x8e{left:252.981000px;}
.xad{left:255.024000px;}
.x33{left:256.228500px;}
.x67{left:257.458500px;}
.xcc{left:258.573000px;}
.xe0{left:259.947000px;}
.xb3{left:262.935000px;}
.x6c{left:265.039500px;}
.x6b{left:266.698500px;}
.xce{left:270.813000px;}
.x68{left:273.451500px;}
.x18{left:275.530500px;}
.x6f{left:276.531000px;}
.x7f{left:278.206500px;}
.xd8{left:281.281500px;}
.x79{left:282.570000px;}
.x78{left:284.991000px;}
.x21{left:286.866000px;}
.x72{left:293.875500px;}
.x4f{left:295.624500px;}
.x46{left:298.240500px;}
.x50{left:300.069000px;}
.x2c{left:301.162500px;}
.x12{left:302.985000px;}
.x6d{left:304.224000px;}
.x48{left:305.988000px;}
.x22{left:307.188000px;}
.x47{left:310.150500px;}
.x34{left:313.735500px;}
.x1b{left:316.521000px;}
.x4c{left:319.425000px;}
.x73{left:322.819500px;}
.x64{left:324.819000px;}
.x4d{left:327.052500px;}
.x44{left:330.072000px;}
.xc9{left:331.537500px;}
.x9b{left:333.700500px;}
.x65{left:335.115000px;}
.x35{left:339.184500px;}
.x76{left:341.401500px;}
.xca{left:343.356000px;}
.x4b{left:346.096500px;}
.xf{left:348.354000px;}
.x82{left:350.496000px;}
.x77{left:351.697500px;}
.x1c{left:356.839500px;}
.xc4{left:358.302000px;}
.x96{left:360.780000px;}
.x45{left:362.628000px;}
.xdb{left:366.450000px;}
.x3e{left:367.717500px;}
.x37{left:370.236000px;}
.x36{left:372.552000px;}
.xdc{left:373.557000px;}
.x7c{left:374.835000px;}
.x13{left:376.006500px;}
.x39{left:379.432500px;}
.x9c{left:380.449500px;}
.x38{left:382.848000px;}
.xa1{left:384.090000px;}
.x4e{left:385.438500px;}
.x9d{left:386.982000px;}
.x5b{left:389.692500px;}
.xa2{left:391.212000px;}
.xe1{left:392.467500px;}
.xaa{left:395.002500px;}
.xb5{left:396.306000px;}
.x6e{left:398.181000px;}
.x84{left:404.253000px;}
.x5c{left:405.423000px;}
.x83{left:410.193000px;}
.x8a{left:413.454000px;}
.x74{left:420.697500px;}
.x7d{left:423.619500px;}
.x85{left:426.015000px;}
.x2e{left:427.228500px;}
.x3f{left:430.629000px;}
.xa3{left:432.660000px;}
.x8c{left:433.981500px;}
.x7e{left:435.645000px;}
.x8b{left:439.921500px;}
.x70{left:442.629000px;}
.x3a{left:444.660000px;}
.x9e{left:447.210000px;}
.x66{left:449.391000px;}
.x40{left:452.949000px;}
.x3{left:454.959000px;}
.x56{left:456.039000px;}
.x97{left:458.022000px;}
.x8d{left:459.664500px;}
.x57{left:464.116500px;}
.x26{left:467.470500px;}
.x16{left:470.916000px;}
.x42{left:472.764000px;}
.x27{left:475.756500px;}
.x43{left:478.905000px;}
.x58{left:480.468000px;}
.x30{left:482.301000px;}
.x17{left:483.432000px;}
.x2f{left:484.617000px;}
.x3c{left:486.795000px;}
.xd9{left:488.254500px;}
.x86{left:490.407000px;}
.x3d{left:492.937500px;}
.xa4{left:495.021000px;}
.xd7{left:498.030000px;}
.x98{left:501.439500px;}
.x75{left:503.070000px;}
.x87{left:504.508500px;}
.x7b{left:506.770500px;}
.x41{left:509.665500px;}
.x59{left:517.287000px;}
.x99{left:518.827500px;}
.xd5{left:520.257000px;}
.x9f{left:521.392500px;}
.x3b{left:523.696500px;}
.x89{left:526.272000px;}
.x88{left:527.430000px;}
.x8f{left:528.820500px;}
.x5a{left:530.268000px;}
.xd6{left:532.294500px;}
.x28{left:535.969500px;}
.x90{left:540.852000px;}
.xa7{left:548.068500px;}
.x29{left:549.168000px;}
.xcf{left:555.514500px;}
.xda{left:559.761000px;}
.x9a{left:566.004000px;}
.xd0{left:567.130500px;}
.x25{left:570.142500px;}
.xac{left:571.657500px;}
.xdf{left:576.546000px;}
.xd2{left:581.766000px;}
.x71{left:586.126500px;}
.x14{left:593.269500px;}
.x49{left:595.293000px;}
.x5d{left:597.054000px;}
.xb4{left:600.736500px;}
.xb6{left:604.144500px;}
.xba{left:606.964500px;}
.x15{left:609.679500px;}
.x5e{left:610.902000px;}
.x80{left:615.261000px;}
.x4a{left:619.383000px;}
.x81{left:627.292500px;}
.xdd{left:633.481500px;}
.xbb{left:648.318000px;}
.xbc{left:656.605500px;}
.xc0{left:659.593500px;}
.x5f{left:662.901000px;}
.x23{left:665.518500px;}
.xa8{left:671.698500px;}
.x51{left:677.374500px;}
.xc1{left:679.918500px;}
.xa9{left:680.926500px;}
.x24{left:685.840500px;}
.xb9{left:689.490000px;}
.x60{left:694.074000px;}
.xb1{left:696.480000px;}
.x91{left:699.532500px;}
.x9{left:701.339982px;}
.xbd{left:703.143000px;}
.xb2{left:709.750500px;}
.x92{left:711.339000px;}
.x54{left:718.461000px;}
.xab{left:719.500500px;}
.x55{left:731.779500px;}
.xc2{left:739.281000px;}
.xc{left:744.217500px;}
.xc3{left:747.358500px;}
.xc5{left:749.965500px;}
.x93{left:751.752000px;}
.xd3{left:755.607000px;}
.x52{left:758.317500px;}
.x94{left:759.829500px;}
.xc6{left:762.166500px;}
.xd{left:764.803500px;}
.xd4{left:767.640000px;}
.x7a{left:768.882000px;}
.x53{left:771.091500px;}
.x95{left:776.202000px;}
@media print{
.ve{vertical-align:-37.232000pt;}
.v19{vertical-align:-21.173333pt;}
.v2{vertical-align:-10.453333pt;}
.v15{vertical-align:-9.301333pt;}
.v3{vertical-align:-7.973333pt;}
.v1d{vertical-align:-2.480000pt;}
.v0{vertical-align:0.000000pt;}
.v13{vertical-align:1.301333pt;}
.vf{vertical-align:2.672000pt;}
.vb{vertical-align:5.552000pt;}
.v10{vertical-align:7.317333pt;}
.v1a{vertical-align:9.642667pt;}
.v1c{vertical-align:10.981333pt;}
.v6{vertical-align:13.120000pt;}
.v8{vertical-align:14.240000pt;}
.va{vertical-align:16.005333pt;}
.v1e{vertical-align:17.354667pt;}
.v1b{vertical-align:18.277333pt;}
.v1{vertical-align:19.285333pt;}
.v12{vertical-align:20.933333pt;}
.vd{vertical-align:21.946667pt;}
.v5{vertical-align:28.000000pt;}
.v11{vertical-align:29.914667pt;}
.v7{vertical-align:34.058667pt;}
.v4{vertical-align:35.968000pt;}
.v9{vertical-align:39.941333pt;}
.v18{vertical-align:41.376000pt;}
.v14{vertical-align:46.144000pt;}
.vc{vertical-align:50.821333pt;}
.v17{vertical-align:58.394667pt;}
.v16{vertical-align:70.170667pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd0{letter-spacing:0.000387pt;}
.lsd9{letter-spacing:0.470191pt;}
.lsd8{letter-spacing:0.474584pt;}
.ls33{letter-spacing:0.482502pt;}
.lsdb{letter-spacing:0.485538pt;}
.ls3d{letter-spacing:0.487835pt;}
.lsdc{letter-spacing:0.490075pt;}
.lsd7{letter-spacing:0.493234pt;}
.lsd6{letter-spacing:0.493608pt;}
.lsd5{letter-spacing:0.498221pt;}
.lsbc{letter-spacing:0.501867pt;}
.lsbb{letter-spacing:0.507174pt;}
.lsb5{letter-spacing:0.507200pt;}
.lsda{letter-spacing:0.509333pt;}
.lsd4{letter-spacing:0.517799pt;}
.lscf{letter-spacing:0.570745pt;}
.ls46{letter-spacing:0.576078pt;}
.lsa{letter-spacing:0.596214pt;}
.lsce{letter-spacing:0.598716pt;}
.ls16{letter-spacing:0.601548pt;}
.lsbd{letter-spacing:0.621593pt;}
.ls7b{letter-spacing:0.640696pt;}
.ls4a{letter-spacing:0.659344pt;}
.ls3{letter-spacing:0.661044pt;}
.lsb4{letter-spacing:0.663020pt;}
.ls2d{letter-spacing:0.664259pt;}
.lsa1{letter-spacing:0.664677pt;}
.ls71{letter-spacing:0.665318pt;}
.ls3b{letter-spacing:0.666145pt;}
.lsd2{letter-spacing:0.666378pt;}
.ls10{letter-spacing:0.729548pt;}
.ls25{letter-spacing:0.784508pt;}
.ls23{letter-spacing:0.789841pt;}
.ls96{letter-spacing:0.883230pt;}
.ls36{letter-spacing:0.883733pt;}
.ls48{letter-spacing:0.883985pt;}
.ls1b{letter-spacing:0.885044pt;}
.ls58{letter-spacing:0.887618pt;}
.ls42{letter-spacing:0.889067pt;}
.ls4d{letter-spacing:0.889318pt;}
.ls8{letter-spacing:0.890378pt;}
.lsad{letter-spacing:0.933633pt;}
.lsa8{letter-spacing:1.006172pt;}
.lsb7{letter-spacing:1.008508pt;}
.ls62{letter-spacing:1.011505pt;}
.ls8a{letter-spacing:1.029867pt;}
.ls8e{letter-spacing:1.031835pt;}
.ls5{letter-spacing:1.036785pt;}
.ls18{letter-spacing:1.133683pt;}
.ls83{letter-spacing:1.147362pt;}
.ls21{letter-spacing:1.165593pt;}
.lsa3{letter-spacing:1.166011pt;}
.ls3c{letter-spacing:1.166324pt;}
.ls85{letter-spacing:1.166652pt;}
.ls80{letter-spacing:1.167711pt;}
.ls49{letter-spacing:1.169444pt;}
.ls11{letter-spacing:1.170926pt;}
.lsa9{letter-spacing:1.171344pt;}
.ls31{letter-spacing:1.171658pt;}
.ls86{letter-spacing:1.173044pt;}
.ls6c{letter-spacing:1.262881pt;}
.ls32{letter-spacing:1.291174pt;}
.ls3a{letter-spacing:1.304429pt;}
.ls69{letter-spacing:1.326011pt;}
.ls6d{letter-spacing:1.326210pt;}
.ls6{letter-spacing:1.327207pt;}
.lsb2{letter-spacing:1.331344pt;}
.ls20{letter-spacing:1.332541pt;}
.ls67{letter-spacing:1.594966pt;}
.ls2{letter-spacing:1.654338pt;}
.ls61{letter-spacing:1.694324pt;}
.ls89{letter-spacing:1.756241pt;}
.ls39{letter-spacing:1.859733pt;}
.lsb8{letter-spacing:1.915200pt;}
.lsb0{letter-spacing:1.935207pt;}
.ls5d{letter-spacing:1.940541pt;}
.lse{letter-spacing:1.948111pt;}
.ls4b{letter-spacing:1.953444pt;}
.ls8b{letter-spacing:1.977346pt;}
.ls6e{letter-spacing:2.002290pt;}
.ls1f{letter-spacing:2.057548pt;}
.lsf{letter-spacing:2.062881pt;}
.lsdd{letter-spacing:2.065444pt;}
.ls35{letter-spacing:2.164214pt;}
.ls3e{letter-spacing:2.169548pt;}
.lse2{letter-spacing:2.254882pt;}
.lse6{letter-spacing:2.260215pt;}
.ls8d{letter-spacing:2.262908pt;}
.lsa4{letter-spacing:2.309852pt;}
.ls9f{letter-spacing:2.315185pt;}
.ls7{letter-spacing:2.324214pt;}
.ls4c{letter-spacing:2.329548pt;}
.ls8c{letter-spacing:2.402502pt;}
.ls55{letter-spacing:2.492785pt;}
.ls64{letter-spacing:2.498118pt;}
.ls73{letter-spacing:2.585318pt;}
.lsc0{letter-spacing:2.607207pt;}
.lsb3{letter-spacing:2.657067pt;}
.lsca{letter-spacing:3.160787pt;}
.ls59{letter-spacing:3.160838pt;}
.ls9a{letter-spacing:3.166172pt;}
.ls24{letter-spacing:3.318400pt;}
.ls34{letter-spacing:3.323733pt;}
.ls9e{letter-spacing:3.445841pt;}
.ls8f{letter-spacing:3.806628pt;}
.lsc7{letter-spacing:3.822121pt;}
.ls12{letter-spacing:3.825574pt;}
.ls6b{letter-spacing:3.827505pt;}
.ls7f{letter-spacing:3.841920pt;}
.lsba{letter-spacing:3.911452pt;}
.ls9{letter-spacing:4.107174pt;}
.ls1c{letter-spacing:4.112508pt;}
.ls26{letter-spacing:5.339733pt;}
.ls1d{letter-spacing:6.413593pt;}
.lsb{letter-spacing:6.418926pt;}
.ls90{letter-spacing:6.421044pt;}
.ls68{letter-spacing:7.161548pt;}
.ls84{letter-spacing:7.441067pt;}
.ls6a{letter-spacing:8.169548pt;}
.ls7e{letter-spacing:8.343452pt;}
.ls82{letter-spacing:8.498118pt;}
.ls15{letter-spacing:9.275174pt;}
.ls17{letter-spacing:10.626533pt;}
.lsb9{letter-spacing:10.731174pt;}
.ls1a{letter-spacing:10.776429pt;}
.lsc2{letter-spacing:10.893762pt;}
.lsc3{letter-spacing:10.924353pt;}
.ls45{letter-spacing:10.968429pt;}
.ls7c{letter-spacing:10.995733pt;}
.ls98{letter-spacing:11.013841pt;}
.ls54{letter-spacing:11.019174pt;}
.ls14{letter-spacing:11.101762pt;}
.lsc8{letter-spacing:11.198881pt;}
.ls19{letter-spacing:11.268214pt;}
.ls13{letter-spacing:11.593548pt;}
.ls22{letter-spacing:11.598881pt;}
.ls99{letter-spacing:11.629762pt;}
.ls57{letter-spacing:11.635096pt;}
.ls9d{letter-spacing:11.662011pt;}
.ls79{letter-spacing:11.683096pt;}
.lsec{letter-spacing:11.943115pt;}
.lsc1{letter-spacing:12.201874pt;}
.lsc6{letter-spacing:12.286881pt;}
.ls47{letter-spacing:12.791756pt;}
.ls76{letter-spacing:12.932541pt;}
.lsd{letter-spacing:12.963096pt;}
.ls29{letter-spacing:13.070931pt;}
.ls27{letter-spacing:13.283467pt;}
.ls78{letter-spacing:13.307185pt;}
.ls28{letter-spacing:13.389734pt;}
.ls2a{letter-spacing:13.442868pt;}
.ls4{letter-spacing:13.496002pt;}
.ls77{letter-spacing:13.496429pt;}
.lse7{letter-spacing:13.880644pt;}
.lse4{letter-spacing:13.885978pt;}
.lsa5{letter-spacing:13.944677pt;}
.lsd1{letter-spacing:13.945318pt;}
.lsd3{letter-spacing:13.948111pt;}
.ls75{letter-spacing:13.948951pt;}
.ls9b{letter-spacing:13.949897pt;}
.lsa0{letter-spacing:13.950652pt;}
.ls92{letter-spacing:13.951711pt;}
.ls56{letter-spacing:14.158172pt;}
.lsbf{letter-spacing:14.316785pt;}
.ls3f{letter-spacing:14.437841pt;}
.ls97{letter-spacing:14.443174pt;}
.lsbe{letter-spacing:14.799711pt;}
.lsc9{letter-spacing:15.131174pt;}
.lsde{letter-spacing:15.276533pt;}
.ls50{letter-spacing:15.395096pt;}
.ls5c{letter-spacing:15.400429pt;}
.ls51{letter-spacing:15.595185pt;}
.ls37{letter-spacing:15.845841pt;}
.ls72{letter-spacing:16.061762pt;}
.ls87{letter-spacing:16.083985pt;}
.ls70{letter-spacing:16.087200pt;}
.ls5b{letter-spacing:16.087756pt;}
.ls41{letter-spacing:16.395682pt;}
.ls30{letter-spacing:16.401015pt;}
.ls93{letter-spacing:16.455452pt;}
.ls4f{letter-spacing:16.460785pt;}
.ls94{letter-spacing:16.725841pt;}
.lsdf{letter-spacing:16.731174pt;}
.ls4e{letter-spacing:16.938378pt;}
.ls2c{letter-spacing:16.963733pt;}
.lse9{letter-spacing:17.000358pt;}
.lsea{letter-spacing:17.000708pt;}
.lse3{letter-spacing:17.001731pt;}
.ls60{letter-spacing:17.369346pt;}
.ls88{letter-spacing:17.389762pt;}
.lsb1{letter-spacing:17.528429pt;}
.ls6f{letter-spacing:18.081067pt;}
.ls7d{letter-spacing:18.541762pt;}
.lsb6{letter-spacing:18.584838pt;}
.lsae{letter-spacing:18.587637pt;}
.lscd{letter-spacing:18.596853pt;}
.lsab{letter-spacing:18.864508pt;}
.lse1{letter-spacing:18.869841pt;}
.ls63{letter-spacing:19.083733pt;}
.lsc{letter-spacing:19.605841pt;}
.ls1e{letter-spacing:19.611174pt;}
.ls74{letter-spacing:19.836241pt;}
.ls43{letter-spacing:20.771096pt;}
.ls40{letter-spacing:20.776429pt;}
.ls91{letter-spacing:21.893841pt;}
.lse0{letter-spacing:22.037841pt;}
.ls38{letter-spacing:22.184429pt;}
.lsc5{letter-spacing:22.973762pt;}
.lsc4{letter-spacing:23.349841pt;}
.ls1{letter-spacing:25.103565pt;}
.ls2e{letter-spacing:25.617015pt;}
.lsac{letter-spacing:26.371096pt;}
.ls5e{letter-spacing:28.696677pt;}
.ls53{letter-spacing:29.347096pt;}
.lsa6{letter-spacing:29.374011pt;}
.ls95{letter-spacing:30.141762pt;}
.ls2f{letter-spacing:30.440429pt;}
.ls65{letter-spacing:31.192838pt;}
.ls52{letter-spacing:31.870172pt;}
.ls66{letter-spacing:35.581762pt;}
.ls2b{letter-spacing:35.720429pt;}
.lsaf{letter-spacing:37.789762pt;}
.ls5f{letter-spacing:37.880429pt;}
.lsa7{letter-spacing:39.651096pt;}
.lsa2{letter-spacing:43.539096pt;}
.ls81{letter-spacing:47.157841pt;}
.lscc{letter-spacing:58.487020pt;}
.lscb{letter-spacing:60.455020pt;}
.lsaa{letter-spacing:61.075505pt;}
.ls5a{letter-spacing:62.652533pt;}
.lse5{letter-spacing:65.550933pt;}
.lse8{letter-spacing:65.556267pt;}
.ls9c{letter-spacing:87.689067pt;}
.lseb{letter-spacing:95.657600pt;}
.ls7a{letter-spacing:111.093852pt;}
.ls44{letter-spacing:177.697015pt;}
.ws58{word-spacing:-42.077867pt;}
.ws1{word-spacing:-14.692637pt;}
.ws1f{word-spacing:-13.283467pt;}
.ws7b{word-spacing:-11.955200pt;}
.ws1d{word-spacing:-10.626800pt;}
.ws90{word-spacing:-10.339455pt;}
.wsb2{word-spacing:-10.170408pt;}
.wsa0{word-spacing:-9.848933pt;}
.ws6c{word-spacing:-4.250709pt;}
.ws5c{word-spacing:-3.772505pt;}
.ws60{word-spacing:-3.134898pt;}
.wsc4{word-spacing:-2.816095pt;}
.ws80{word-spacing:-2.762961pt;}
.ws82{word-spacing:-2.550426pt;}
.ws83{word-spacing:-2.497292pt;}
.ws91{word-spacing:-2.337890pt;}
.ws43{word-spacing:-2.231622pt;}
.ws2e{word-spacing:-2.019087pt;}
.wsc3{word-spacing:-1.859685pt;}
.ws7e{word-spacing:-1.806551pt;}
.ws4b{word-spacing:-1.700284pt;}
.ws4{word-spacing:-1.696326pt;}
.wsee{word-spacing:-1.482445pt;}
.wsd8{word-spacing:-1.434624pt;}
.ws8a{word-spacing:-1.434614pt;}
.wsdb{word-spacing:-1.386803pt;}
.ws3d{word-spacing:-1.381481pt;}
.wsea{word-spacing:-1.338982pt;}
.ws89{word-spacing:-1.328347pt;}
.ws3{word-spacing:-1.175671pt;}
.ws93{word-spacing:-1.168945pt;}
.ws92{word-spacing:-1.115811pt;}
.wse2{word-spacing:-1.099878pt;}
.wsa6{word-spacing:-1.009543pt;}
.ws95{word-spacing:-0.956410pt;}
.wsf0{word-spacing:-0.908595pt;}
.ws56{word-spacing:-0.903276pt;}
.wsf8{word-spacing:-0.860774pt;}
.ws5b{word-spacing:-0.748359pt;}
.ws15{word-spacing:-0.743874pt;}
.ws68{word-spacing:-0.637606pt;}
.wsca{word-spacing:-0.621670pt;}
.ws6b{word-spacing:-0.531339pt;}
.wsb3{word-spacing:-0.478205pt;}
.ws5d{word-spacing:-0.425071pt;}
.ws9{word-spacing:-0.371937pt;}
.ws7f{word-spacing:-0.318803pt;}
.wsde{word-spacing:-0.286925pt;}
.ws5{word-spacing:-0.265669pt;}
.ws6{word-spacing:-0.212535pt;}
.wsa{word-spacing:-0.159402pt;}
.wscb{word-spacing:-0.143462pt;}
.ws10{word-spacing:-0.106268pt;}
.wsfd{word-spacing:-0.095642pt;}
.ws7{word-spacing:-0.053134pt;}
.wsc0{word-spacing:-0.047821pt;}
.ws1e{word-spacing:-0.042507pt;}
.ws66{word-spacing:-0.040382pt;}
.ws7c{word-spacing:-0.003878pt;}
.ws7d{word-spacing:-0.000950pt;}
.ws0{word-spacing:0.000000pt;}
.ws21{word-spacing:0.053134pt;}
.wsd1{word-spacing:0.095642pt;}
.wsb{word-spacing:0.106268pt;}
.wsed{word-spacing:0.143462pt;}
.wse{word-spacing:0.159402pt;}
.wsc{word-spacing:0.212535pt;}
.wsd4{word-spacing:0.239104pt;}
.ws8{word-spacing:0.265669pt;}
.ws64{word-spacing:0.271965pt;}
.ws27{word-spacing:0.318803pt;}
.ws55{word-spacing:0.371937pt;}
.ws84{word-spacing:0.425071pt;}
.ws53{word-spacing:0.478205pt;}
.wsb9{word-spacing:0.598400pt;}
.ws62{word-spacing:0.662599pt;}
.ws67{word-spacing:0.664897pt;}
.wsf1{word-spacing:0.669491pt;}
.wsd{word-spacing:0.690740pt;}
.ws6a{word-spacing:0.715933pt;}
.ws1a{word-spacing:0.797008pt;}
.wsf{word-spacing:0.850142pt;}
.wsa5{word-spacing:0.903276pt;}
.ws39{word-spacing:1.009543pt;}
.ws18{word-spacing:1.062677pt;}
.ws94{word-spacing:1.115811pt;}
.ws31{word-spacing:1.168945pt;}
.ws6d{word-spacing:1.222079pt;}
.ws17{word-spacing:1.381481pt;}
.ws16{word-spacing:1.434614pt;}
.wsfb{word-spacing:1.434624pt;}
.wsdd{word-spacing:1.530266pt;}
.ws4e{word-spacing:1.540882pt;}
.wsec{word-spacing:1.578086pt;}
.ws4d{word-spacing:1.806551pt;}
.ws87{word-spacing:1.912819pt;}
.ws85{word-spacing:1.965953pt;}
.ws63{word-spacing:1.989489pt;}
.wse0{word-spacing:2.008474pt;}
.ws29{word-spacing:2.125355pt;}
.ws22{word-spacing:2.178489pt;}
.wsd7{word-spacing:2.199757pt;}
.ws20{word-spacing:2.231622pt;}
.ws32{word-spacing:2.284756pt;}
.wsda{word-spacing:2.295398pt;}
.ws26{word-spacing:2.337890pt;}
.wsc2{word-spacing:2.391024pt;}
.wsbb{word-spacing:2.497292pt;}
.ws28{word-spacing:2.603559pt;}
.ws2a{word-spacing:2.656693pt;}
.ws4f{word-spacing:2.709827pt;}
.ws2d{word-spacing:2.762961pt;}
.ws2{word-spacing:2.869248pt;}
.wsfa{word-spacing:2.917069pt;}
.wsc9{word-spacing:2.964890pt;}
.wsd3{word-spacing:3.012710pt;}
.wsc5{word-spacing:3.081764pt;}
.ws11{word-spacing:3.185311pt;}
.ws12{word-spacing:3.188032pt;}
.wsc6{word-spacing:3.294300pt;}
.ws2b{word-spacing:3.400567pt;}
.ws3f{word-spacing:3.453701pt;}
.ws25{word-spacing:3.506835pt;}
.wsb4{word-spacing:3.613103pt;}
.ws96{word-spacing:3.639550pt;}
.ws38{word-spacing:3.666237pt;}
.ws59{word-spacing:3.719371pt;}
.ws6e{word-spacing:3.772505pt;}
.wse7{word-spacing:3.873485pt;}
.wsf2{word-spacing:3.913181pt;}
.wsf4{word-spacing:3.921306pt;}
.ws69{word-spacing:3.985040pt;}
.ws41{word-spacing:4.038174pt;}
.ws88{word-spacing:4.144442pt;}
.ws14{word-spacing:4.197575pt;}
.wscc{word-spacing:4.418961pt;}
.wsbf{word-spacing:4.424849pt;}
.ws76{word-spacing:4.426300pt;}
.wsc8{word-spacing:4.447334pt;}
.ws35{word-spacing:4.463245pt;}
.ws44{word-spacing:4.675780pt;}
.ws13{word-spacing:4.782048pt;}
.wsc7{word-spacing:4.782080pt;}
.ws86{word-spacing:4.835182pt;}
.ws5a{word-spacing:4.994583pt;}
.ws70{word-spacing:5.153985pt;}
.wse4{word-spacing:5.164646pt;}
.ws75{word-spacing:5.313387pt;}
.wsba{word-spacing:5.525922pt;}
.ws2f{word-spacing:5.579056pt;}
.ws30{word-spacing:5.632190pt;}
.ws4c{word-spacing:5.685324pt;}
.wsc1{word-spacing:5.791591pt;}
.ws65{word-spacing:6.216662pt;}
.ws71{word-spacing:6.694867pt;}
.ws37{word-spacing:6.854269pt;}
.ws33{word-spacing:6.960537pt;}
.ws34{word-spacing:7.013670pt;}
.ws2c{word-spacing:7.916946pt;}
.wsd5{word-spacing:8.127198pt;}
.wsf5{word-spacing:8.129152pt;}
.wse6{word-spacing:8.131277pt;}
.ws74{word-spacing:8.820222pt;}
.wsef{word-spacing:10.410402pt;}
.wsd9{word-spacing:10.424934pt;}
.wsdc{word-spacing:10.520576pt;}
.wseb{word-spacing:10.568397pt;}
.ws1c{word-spacing:10.584293pt;}
.wse3{word-spacing:10.807501pt;}
.ws81{word-spacing:11.158112pt;}
.ws23{word-spacing:11.516100pt;}
.ws24{word-spacing:11.607876pt;}
.wsdf{word-spacing:11.620454pt;}
.wse9{word-spacing:11.904444pt;}
.wsd6{word-spacing:11.907379pt;}
.wsf9{word-spacing:11.955200pt;}
.wsd2{word-spacing:12.003021pt;}
.wsf7{word-spacing:12.146483pt;}
.ws36{word-spacing:13.230333pt;}
.wsfc{word-spacing:13.342003pt;}
.wse8{word-spacing:15.733043pt;}
.wsf3{word-spacing:15.828685pt;}
.ws19{word-spacing:15.940160pt;}
.ws5e{word-spacing:15.945370pt;}
.ws54{word-spacing:16.418365pt;}
.wsbd{word-spacing:16.964700pt;}
.ws6f{word-spacing:17.852979pt;}
.ws73{word-spacing:22.209956pt;}
.ws72{word-spacing:23.219500pt;}
.wse5{word-spacing:23.856862pt;}
.wse1{word-spacing:23.859721pt;}
.wsf6{word-spacing:23.862195pt;}
.ws5f{word-spacing:23.963374pt;}
.ws1b{word-spacing:28.775401pt;}
.ws57{word-spacing:29.233178pt;}
.ws40{word-spacing:29.317231pt;}
.ws42{word-spacing:29.318314pt;}
.ws3e{word-spacing:31.546245pt;}
.wsa2{word-spacing:42.665577pt;}
.wsa3{word-spacing:43.155233pt;}
.wsa4{word-spacing:43.156112pt;}
.ws9f{word-spacing:43.161286pt;}
.ws99{word-spacing:43.172562pt;}
.wsa7{word-spacing:44.058208pt;}
.wsaf{word-spacing:44.570097pt;}
.wsad{word-spacing:44.574634pt;}
.ws8d{word-spacing:44.790518pt;}
.ws8b{word-spacing:44.831876pt;}
.wsb1{word-spacing:50.785378pt;}
.wsab{word-spacing:50.789008pt;}
.ws3a{word-spacing:51.789926pt;}
.ws4a{word-spacing:51.837747pt;}
.ws46{word-spacing:52.381389pt;}
.ws47{word-spacing:52.403951pt;}
.ws49{word-spacing:52.404267pt;}
.wscf{word-spacing:52.405333pt;}
.ws9a{word-spacing:54.169131pt;}
.wsac{word-spacing:55.937245pt;}
.ws3b{word-spacing:56.476365pt;}
.ws52{word-spacing:58.245734pt;}
.ws9c{word-spacing:59.132993pt;}
.ws9b{word-spacing:59.618206pt;}
.wsa9{word-spacing:61.063131pt;}
.ws45{word-spacing:61.114982pt;}
.wsa8{word-spacing:62.120853pt;}
.ws98{word-spacing:64.018064pt;}
.ws51{word-spacing:64.701542pt;}
.ws79{word-spacing:65.753600pt;}
.wsb0{word-spacing:66.107653pt;}
.wsa1{word-spacing:67.169722pt;}
.ws8c{word-spacing:67.206456pt;}
.ws3c{word-spacing:68.431565pt;}
.wsae{word-spacing:69.362184pt;}
.ws50{word-spacing:70.009651pt;}
.ws7a{word-spacing:71.779021pt;}
.ws9e{word-spacing:75.561013pt;}
.ws78{word-spacing:77.708800pt;}
.ws8e{word-spacing:79.324297pt;}
.ws48{word-spacing:79.942827pt;}
.wsbc{word-spacing:79.961395pt;}
.ws97{word-spacing:80.396825pt;}
.wsd0{word-spacing:81.534464pt;}
.wsaa{word-spacing:83.021028pt;}
.ws9d{word-spacing:83.637138pt;}
.ws8f{word-spacing:84.400954pt;}
.wsce{word-spacing:91.720294pt;}
.ws77{word-spacing:97.590281pt;}
.wscd{word-spacing:101.523558pt;}
.wsb7{word-spacing:108.159138pt;}
.wsbe{word-spacing:119.723614pt;}
.wsb8{word-spacing:120.713600pt;}
.wsb6{word-spacing:140.676267pt;}
.wsb5{word-spacing:154.210569pt;}
.ws61{word-spacing:553.708025pt;}
._35{margin-left:-10.717190pt;}
._6{margin-left:-6.270458pt;}
._7{margin-left:-5.047717pt;}
._4{margin-left:-3.825638pt;}
._b{margin-left:-2.703101pt;}
._2{margin-left:-1.175671pt;}
._3{width:0.969929pt;}
._14{width:2.656693pt;}
._13{width:3.719371pt;}
._15{width:5.153985pt;}
._78{width:7.086642pt;}
._27{width:9.505238pt;}
._36{width:10.499301pt;}
._19{width:12.207337pt;}
._12{width:13.442954pt;}
._1{width:14.824448pt;}
._a{width:15.893753pt;}
._5{width:16.843436pt;}
._7f{width:17.789312pt;}
._8{width:18.703121pt;}
._d{width:19.659531pt;}
._1a{width:20.782068pt;}
._c{width:21.678618pt;}
._1b{width:22.582555pt;}
._11{width:23.485169pt;}
._16{width:24.813516pt;}
._26{width:27.363941pt;}
._28{width:28.586020pt;}
._9{width:29.489296pt;}
._4a{width:31.348981pt;}
._10{width:32.524653pt;}
._18{width:33.793139pt;}
._3a{width:34.869269pt;}
._80{width:35.982516pt;}
._3b{width:37.253567pt;}
._38{width:39.300100pt;}
._17{width:40.913077pt;}
._37{width:42.825897pt;}
._3c{width:43.735899pt;}
._5e{width:52.553906pt;}
._64{width:53.524085pt;}
._55{width:55.171330pt;}
._5a{width:56.116184pt;}
._66{width:60.028890pt;}
._39{width:61.931666pt;}
._40{width:63.792947pt;}
._60{width:64.972377pt;}
._56{width:66.358729pt;}
._58{width:68.054182pt;}
._63{width:69.208057pt;}
._32{width:70.200934pt;}
._4e{width:71.318796pt;}
._21{width:72.400691pt;}
._61{width:73.510811pt;}
._0{width:74.944578pt;}
._31{width:76.656742pt;}
._57{width:77.587601pt;}
._49{width:78.867200pt;}
._59{width:80.006312pt;}
._4f{width:81.061325pt;}
._5d{width:82.140100pt;}
._54{width:83.276308pt;}
._22{width:84.355891pt;}
._2c{width:85.551411pt;}
._53{width:87.037639pt;}
._6a{width:88.716663pt;}
._45{width:89.664000pt;}
._48{width:90.827733pt;}
._43{width:92.618496pt;}
._47{width:94.324190pt;}
._69{width:96.112209pt;}
._2d{width:97.410970pt;}
._3f{width:99.706368pt;}
._33{width:100.854067pt;}
._2a{width:103.675494pt;}
._62{width:106.762432pt;}
._1c{width:107.692416pt;}
._34{width:108.983603pt;}
._1d{width:110.848640pt;}
._30{width:113.765683pt;}
._2f{width:115.439411pt;}
._7d{width:116.443648pt;}
._6d{width:119.982387pt;}
._2e{width:120.890982pt;}
._2b{width:122.995098pt;}
._7e{width:124.271227pt;}
._23{width:125.529574pt;}
._67{width:126.577760pt;}
._46{width:129.594368pt;}
._20{width:133.467853pt;}
._5f{width:138.028731pt;}
._1e{width:139.445453pt;}
._25{width:145.423053pt;}
._44{width:148.866150pt;}
._41{width:150.339211pt;}
._52{width:151.659122pt;}
._50{width:155.091821pt;}
._68{width:156.014062pt;}
._51{width:158.607235pt;}
._72{width:159.721472pt;}
._6b{width:160.773530pt;}
._29{width:163.451494pt;}
._3e{width:164.933939pt;}
._6c{width:171.485389pt;}
._73{width:176.458752pt;}
._42{width:183.392768pt;}
._76{width:194.248090pt;}
._71{width:198.025933pt;}
._1f{width:200.560435pt;}
._75{width:204.816486pt;}
._74{width:206.012006pt;}
._70{width:208.833434pt;}
._6f{width:209.981133pt;}
._24{width:212.515635pt;}
._77{width:219.784397pt;}
._3d{width:237.956301pt;}
._7c{width:254.684218pt;}
._6e{width:268.800717pt;}
._4d{width:352.864911pt;}
._65{width:360.601993pt;}
._4c{width:364.321027pt;}
._5b{width:370.083501pt;}
._5c{width:375.638299pt;}
._e{width:612.568861pt;}
._7a{width:620.618342pt;}
._7b{width:699.044454pt;}
._4b{width:1543.351202pt;}
._f{width:1564.604535pt;}
._79{width:2858.625869pt;}
.fs17{font-size:30.640832pt;}
.fs1a{font-size:31.640967pt;}
.fs14{font-size:32.166885pt;}
.fs12{font-size:37.193600pt;}
.fsb{font-size:37.276537pt;}
.fs4{font-size:37.333333pt;}
.fs16{font-size:39.395731pt;}
.fsc{font-size:40.381867pt;}
.fs19{font-size:40.681633pt;}
.fs18{font-size:41.050401pt;}
.fs13{font-size:41.357819pt;}
.fsa{font-size:41.988267pt;}
.fsf{font-size:42.077867pt;}
.fs1b{font-size:42.390312pt;}
.fse{font-size:42.507200pt;}
.fs15{font-size:43.094899pt;}
.fs5{font-size:46.397853pt;}
.fs9{font-size:47.820800pt;}
.fs10{font-size:49.829333pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fsd{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.770546pt;}
.fs0{font-size:64.000000pt;}
.fs11{font-size:74.387733pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:3.044747pt;}
.y24{bottom:5.145434pt;}
.y2d{bottom:12.578910pt;}
.y23{bottom:19.838154pt;}
.y22{bottom:34.359615pt;}
.y52{bottom:56.693333pt;}
.y4{bottom:86.333337pt;}
.y15a{bottom:94.021333pt;}
.y51{bottom:96.544000pt;}
.y84{bottom:97.433333pt;}
.yda{bottom:104.276000pt;}
.y157{bottom:104.552000pt;}
.y159{bottom:105.708000pt;}
.y212{bottom:107.065333pt;}
.y156{bottom:108.470667pt;}
.y15b{bottom:111.692000pt;}
.y1a0{bottom:114.556000pt;}
.y83{bottom:115.445333pt;}
.yf9{bottom:118.516000pt;}
.yd9{bottom:118.888000pt;}
.y158{bottom:122.816000pt;}
.y20{bottom:123.790666pt;}
.y211{bottom:125.077333pt;}
.y50{bottom:129.566667pt;}
.y124{bottom:131.340000pt;}
.y1e7{bottom:132.568000pt;}
.y82{bottom:133.458667pt;}
.yd8{bottom:133.500000pt;}
.y155{bottom:136.200000pt;}
.y210{bottom:143.090667pt;}
.y19f{bottom:145.106667pt;}
.y4f{bottom:147.578667pt;}
.yd7{bottom:148.112000pt;}
.y1e6{bottom:150.581333pt;}
.y81{bottom:151.470667pt;}
.y154{bottom:154.213333pt;}
.y121{bottom:157.416000pt;}
.y20f{bottom:161.102667pt;}
.y122{bottom:161.670667pt;}
.y4e{bottom:165.592000pt;}
.y123{bottom:166.528000pt;}
.yd6{bottom:169.392000pt;}
.y80{bottom:169.482667pt;}
.y153{bottom:172.225333pt;}
.y28e{bottom:174.852000pt;}
.y17{bottom:175.052000pt;}
.y120{bottom:175.521333pt;}
.y1e5{bottom:176.564000pt;}
.y20e{bottom:179.114667pt;}
.y4d{bottom:183.604000pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y7f{bottom:187.496000pt;}
.y28d{bottom:192.068000pt;}
.y20d{bottom:197.128000pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.yd5{bottom:197.498667pt;}
.y152{bottom:198.208000pt;}
.y4c{bottom:201.616000pt;}
.y11f{bottom:204.790667pt;}
.y7e{bottom:205.508000pt;}
.y9f{bottom:206.757333pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y28c{bottom:209.282667pt;}
.y1e4{bottom:210.848000pt;}
.y20c{bottom:215.140000pt;}
.y4b{bottom:219.629333pt;}
.y11e{bottom:222.804000pt;}
.y232{bottom:223.317333pt;}
.y7d{bottom:223.521333pt;}
.y9e{bottom:224.769333pt;}
.y28b{bottom:226.498667pt;}
.y1e3{bottom:228.775210pt;}
.y151{bottom:229.158667pt;}
.yd4{bottom:229.825333pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y20b{bottom:233.153333pt;}
.y4a{bottom:237.641333pt;}
.y231{bottom:237.929333pt;}
.y1e2{bottom:240.812868pt;}
.y11d{bottom:240.816000pt;}
.y7c{bottom:241.533333pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y9d{bottom:242.782667pt;}
.y28a{bottom:243.713333pt;}
.y150{bottom:247.170667pt;}
.yd3{bottom:247.837333pt;}
.y20a{bottom:251.165333pt;}
.y1e1{bottom:252.850525pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y49{bottom:255.654667pt;}
.y230{bottom:258.210667pt;}
.y11c{bottom:258.829333pt;}
.y7b{bottom:259.545333pt;}
.y9c{bottom:260.794667pt;}
.y289{bottom:260.929333pt;}
.y181{bottom:262.150667pt;}
.y1e0{bottom:264.888183pt;}
.y14f{bottom:265.184000pt;}
.yd2{bottom:265.849333pt;}
.y1b4{bottom:266.434667pt;}
.y209{bottom:269.177333pt;}
.y11a{bottom:272.258667pt;}
.y22f{bottom:272.822667pt;}
.y11b{bottom:273.025333pt;}
.y48{bottom:273.666667pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y118{bottom:276.841333pt;}
.y1df{bottom:276.924743pt;}
.y7a{bottom:277.558667pt;}
.y288{bottom:278.145333pt;}
.y9b{bottom:278.808000pt;}
.y119{bottom:280.062667pt;}
.y180{bottom:280.162667pt;}
.y14e{bottom:283.196000pt;}
.yd1{bottom:283.862667pt;}
.y1b3{bottom:284.446667pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y1de{bottom:288.962400pt;}
.y47{bottom:291.678667pt;}
.y22e{bottom:293.104000pt;}
.y117{bottom:294.853333pt;}
.y208{bottom:295.160000pt;}
.y287{bottom:295.360000pt;}
.y79{bottom:295.570667pt;}
.y9a{bottom:296.820000pt;}
.y1dd{bottom:301.000058pt;}
.y14d{bottom:301.209333pt;}
.y1b2{bottom:302.460000pt;}
.y17f{bottom:306.145333pt;}
.y22d{bottom:307.714667pt;}
.ye{bottom:309.452000pt;}
.y46{bottom:309.692000pt;}
.yd0{bottom:311.192000pt;}
.y286{bottom:312.576000pt;}
.y1dc{bottom:313.037716pt;}
.y78{bottom:313.584000pt;}
.y99{bottom:314.832000pt;}
.y14c{bottom:319.221333pt;}
.y1b1{bottom:320.472000pt;}
.y116{bottom:324.596000pt;}
.y1db{bottom:325.075374pt;}
.y207{bottom:326.110667pt;}
.y45{bottom:327.704000pt;}
.y115{bottom:327.877333pt;}
.y22c{bottom:327.996000pt;}
.ycf{bottom:329.205333pt;}
.y285{bottom:329.790667pt;}
.y77{bottom:331.596000pt;}
.y98{bottom:332.845333pt;}
.y17e{bottom:337.096000pt;}
.y1da{bottom:337.113032pt;}
.y14b{bottom:337.233333pt;}
.y1b0{bottom:338.485333pt;}
.y22b{bottom:342.608000pt;}
.yd{bottom:343.809333pt;}
.y206{bottom:344.124000pt;}
.y44{bottom:345.717333pt;}
.y284{bottom:347.006667pt;}
.y1d9{bottom:349.150690pt;}
.y76{bottom:349.608000pt;}
.y97{bottom:350.857333pt;}
.y17d{bottom:355.108000pt;}
.yce{bottom:355.250667pt;}
.y1af{bottom:356.497333pt;}
.ycd{bottom:358.530667pt;}
.y114{bottom:360.900000pt;}
.y1d8{bottom:361.188347pt;}
.y205{bottom:362.136000pt;}
.yc{bottom:362.706666pt;}
.y22a{bottom:362.889333pt;}
.y14a{bottom:363.216000pt;}
.y43{bottom:363.729333pt;}
.y283{bottom:364.222667pt;}
.y75{bottom:367.621333pt;}
.yc8{bottom:367.956000pt;}
.y96{bottom:368.870667pt;}
.y17c{bottom:373.121333pt;}
.yca{bottom:373.232000pt;}
.ycb{bottom:373.812000pt;}
.y1ae{bottom:374.509333pt;}
.y229{bottom:377.501333pt;}
.ycc{bottom:377.814667pt;}
.y1d7{bottom:378.718139pt;}
.y204{bottom:380.148000pt;}
.y282{bottom:381.437333pt;}
.y42{bottom:381.741333pt;}
.yc9{bottom:383.048000pt;}
.y74{bottom:385.633333pt;}
.y95{bottom:386.882667pt;}
.y1d6{bottom:390.949120pt;}
.y1ad{bottom:392.522667pt;}
.y149{bottom:394.166667pt;}
.y203{bottom:398.161333pt;}
.y281{bottom:398.653333pt;}
.y17b{bottom:399.104000pt;}
.y41{bottom:399.754667pt;}
.y73{bottom:403.646667pt;}
.y94{bottom:404.894667pt;}
.y228{bottom:406.086667pt;}
.y24e{bottom:408.933333pt;}
.yc7{bottom:410.180000pt;}
.y1ac{bottom:410.534667pt;}
.y148{bottom:412.180000pt;}
.y227{bottom:412.637333pt;}
.y280{bottom:415.868000pt;}
.y202{bottom:416.173333pt;}
.y1d5{bottom:416.412000pt;}
.y40{bottom:417.766667pt;}
.y113{bottom:417.833333pt;}
.y25f{bottom:420.300000pt;}
.y72{bottom:421.658667pt;}
.y93{bottom:422.908000pt;}
.yc6{bottom:426.536000pt;}
.y1ab{bottom:428.548000pt;}
.y17a{bottom:430.054667pt;}
.y147{bottom:430.192000pt;}
.y27f{bottom:433.084000pt;}
.y226{bottom:433.885333pt;}
.y201{bottom:434.186667pt;}
.yf8{bottom:434.190667pt;}
.y24d{bottom:434.916000pt;}
.y3f{bottom:435.780000pt;}
.y112{bottom:435.845333pt;}
.y25e{bottom:439.590667pt;}
.y71{bottom:439.670667pt;}
.y92{bottom:440.920000pt;}
.yc5{bottom:444.549333pt;}
.y1aa{bottom:446.560000pt;}
.yb{bottom:446.990669pt;}
.y146{bottom:448.205333pt;}
.y1d4{bottom:448.342667pt;}
.yf7{bottom:448.801333pt;}
.y27e{bottom:450.300000pt;}
.y200{bottom:452.198667pt;}
.y111{bottom:453.858667pt;}
.y25d{bottom:454.202667pt;}
.y70{bottom:457.684000pt;}
.y91{bottom:458.933333pt;}
.y19e{bottom:459.169333pt;}
.y179{bottom:461.005333pt;}
.y3e{bottom:461.762667pt;}
.y225{bottom:461.992000pt;}
.yc4{bottom:462.561333pt;}
.ya{bottom:462.990669pt;}
.yf6{bottom:463.413333pt;}
.y1a9{bottom:464.572000pt;}
.y24c{bottom:465.866667pt;}
.y1d3{bottom:466.356000pt;}
.y27d{bottom:467.514667pt;}
.y25c{bottom:468.814667pt;}
.y145{bottom:469.574667pt;}
.y1ff{bottom:470.210667pt;}
.y110{bottom:471.870667pt;}
.y142{bottom:474.613333pt;}
.y6f{bottom:475.696000pt;}
.y19d{bottom:477.181333pt;}
.yf5{bottom:478.025333pt;}
.y9{bottom:478.990666pt;}
.y178{bottom:479.017333pt;}
.y141{bottom:480.004000pt;}
.y144{bottom:481.124000pt;}
.y1a8{bottom:482.585333pt;}
.y25b{bottom:483.425333pt;}
.y140{bottom:483.886667pt;}
.y13f{bottom:484.212000pt;}
.y1d2{bottom:484.368000pt;}
.y27c{bottom:484.730667pt;}
.y90{bottom:484.914667pt;}
.y24b{bottom:487.346667pt;}
.y1fe{bottom:488.224000pt;}
.yc3{bottom:488.606667pt;}
.y10f{bottom:489.884000pt;}
.yc2{bottom:491.044000pt;}
.yf4{bottom:492.637333pt;}
.y6e{bottom:493.709333pt;}
.y224{bottom:494.973333pt;}
.y8{bottom:494.990666pt;}
.y19c{bottom:495.193333pt;}
.y177{bottom:497.030667pt;}
.y25a{bottom:498.037333pt;}
.y143{bottom:498.233333pt;}
.y1a7{bottom:500.597333pt;}
.y24a{bottom:500.856000pt;}
.ybd{bottom:501.208000pt;}
.y27b{bottom:501.945333pt;}
.y1d1{bottom:502.380000pt;}
.y1fd{bottom:506.236000pt;}
.ybf{bottom:506.485333pt;}
.yc0{bottom:507.065333pt;}
.yf3{bottom:507.249333pt;}
.y10e{bottom:507.896000pt;}
.yc1{bottom:511.068000pt;}
.y13e{bottom:511.616000pt;}
.y6d{bottom:511.721333pt;}
.y259{bottom:512.649333pt;}
.y223{bottom:512.985333pt;}
.y19b{bottom:513.206667pt;}
.y176{bottom:515.042667pt;}
.y8f{bottom:515.865333pt;}
.ybe{bottom:516.301333pt;}
.y1a6{bottom:518.610667pt;}
.y27a{bottom:519.161333pt;}
.y1d0{bottom:520.393333pt;}
.yf2{bottom:521.861333pt;}
.y249{bottom:522.334667pt;}
.y1fc{bottom:524.249333pt;}
.y10d{bottom:525.908000pt;}
.y258{bottom:527.261333pt;}
.y3d{bottom:529.680000pt;}
.y6c{bottom:529.733333pt;}
.y222{bottom:530.998667pt;}
.y19a{bottom:531.218667pt;}
.y175{bottom:533.054667pt;}
.y248{bottom:535.844000pt;}
.y279{bottom:536.377333pt;}
.yf1{bottom:536.473333pt;}
.y1cf{bottom:538.405333pt;}
.y13c{bottom:538.990667pt;}
.y257{bottom:541.873333pt;}
.y1fb{bottom:542.261333pt;}
.ybc{bottom:543.432000pt;}
.y10c{bottom:543.921333pt;}
.y139{bottom:544.190667pt;}
.y1a5{bottom:544.593333pt;}
.y8e{bottom:546.816000pt;}
.y6b{bottom:547.746667pt;}
.y221{bottom:549.010667pt;}
.y199{bottom:549.232000pt;}
.y247{bottom:549.353333pt;}
.y13b{bottom:550.540000pt;}
.y174{bottom:551.068000pt;}
.yf0{bottom:551.085333pt;}
.y138{bottom:553.302667pt;}
.y13d{bottom:553.494667pt;}
.y278{bottom:553.592000pt;}
.y1ce{bottom:556.418667pt;}
.y256{bottom:556.485333pt;}
.y137{bottom:556.524000pt;}
.ybb{bottom:559.789333pt;}
.y1fa{bottom:560.273333pt;}
.y10b{bottom:561.933333pt;}
.y246{bottom:562.862667pt;}
.y3c{bottom:563.633333pt;}
.yef{bottom:565.697333pt;}
.y6a{bottom:565.758667pt;}
.y220{bottom:567.022667pt;}
.y198{bottom:567.244000pt;}
.y13a{bottom:567.649333pt;}
.y173{bottom:569.080000pt;}
.y277{bottom:570.808000pt;}
.y255{bottom:571.097333pt;}
.yb7{bottom:573.218667pt;}
.y7{bottom:573.786667pt;}
.yb8{bottom:573.800000pt;}
.y1cd{bottom:574.430667pt;}
.yb6{bottom:574.521333pt;}
.y1a4{bottom:575.544000pt;}
.y245{bottom:576.372000pt;}
.y8d{bottom:577.766667pt;}
.yb5{bottom:577.801333pt;}
.yba{bottom:577.802667pt;}
.yb9{bottom:577.994667pt;}
.y1f9{bottom:578.286667pt;}
.y10a{bottom:579.945333pt;}
.yee{bottom:580.309333pt;}
.y3b{bottom:581.645333pt;}
.y69{bottom:583.772000pt;}
.y21f{bottom:585.036000pt;}
.y197{bottom:585.256000pt;}
.y254{bottom:585.709333pt;}
.y172{bottom:587.093333pt;}
.y276{bottom:588.024000pt;}
.y1cc{bottom:592.442667pt;}
.y6{bottom:592.685334pt;}
.y1a3{bottom:593.556000pt;}
.yed{bottom:594.920000pt;}
.y8c{bottom:595.780000pt;}
.y136{bottom:596.042667pt;}
.y109{bottom:597.958667pt;}
.y3a{bottom:599.658667pt;}
.y253{bottom:600.321333pt;}
.y68{bottom:601.784000pt;}
.y21e{bottom:603.048000pt;}
.y196{bottom:603.269333pt;}
.y1f8{bottom:604.269333pt;}
.y171{bottom:605.105333pt;}
.y275{bottom:605.238667pt;}
.y244{bottom:605.822667pt;}
.yb4{bottom:606.546667pt;}
.yb3{bottom:606.740000pt;}
.y1cb{bottom:610.456000pt;}
.y1a2{bottom:611.568000pt;}
.y8b{bottom:613.792000pt;}
.y135{bottom:614.056000pt;}
.yb2{bottom:615.660000pt;}
.y108{bottom:615.970667pt;}
.yec{bottom:616.200000pt;}
.y39{bottom:617.670667pt;}
.y67{bottom:619.796000pt;}
.y21d{bottom:621.061333pt;}
.y195{bottom:621.281333pt;}
.y252{bottom:621.600000pt;}
.y274{bottom:622.454667pt;}
.y170{bottom:623.117333pt;}
.y243{bottom:623.834667pt;}
.y1ca{bottom:628.468000pt;}
.y8a{bottom:631.805333pt;}
.y134{bottom:632.068000pt;}
.y107{bottom:633.984000pt;}
.y38{bottom:635.684000pt;}
.y251{bottom:636.446667pt;}
.y66{bottom:637.809333pt;}
.y21c{bottom:639.073333pt;}
.y194{bottom:639.294667pt;}
.y1f7{bottom:639.604000pt;}
.y273{bottom:639.669333pt;}
.y16f{bottom:641.130667pt;}
.y242{bottom:641.846667pt;}
.y1a1{bottom:642.680000pt;}
.yeb{bottom:644.306667pt;}
.y5{bottom:645.598667pt;}
.y1c9{bottom:646.481333pt;}
.y89{bottom:649.817333pt;}
.y133{bottom:650.080000pt;}
.yb1{bottom:651.160000pt;}
.y106{bottom:651.996000pt;}
.y37{bottom:653.696000pt;}
.y65{bottom:655.821333pt;}
.y272{bottom:656.885333pt;}
.y21b{bottom:657.085333pt;}
.y193{bottom:657.306667pt;}
.y1f6{bottom:657.739056pt;}
.y16e{bottom:659.142667pt;}
.y241{bottom:659.860000pt;}
.y1c8{bottom:664.493333pt;}
.y250{bottom:664.553333pt;}
.y88{bottom:667.829333pt;}
.y3{bottom:668.977329pt;}
.y105{bottom:670.008000pt;}
.y1f5{bottom:670.168496pt;}
.y36{bottom:671.708000pt;}
.y64{bottom:673.834667pt;}
.y271{bottom:674.101333pt;}
.y21a{bottom:675.098667pt;}
.y192{bottom:675.318667pt;}
.y16d{bottom:677.156000pt;}
.yea{bottom:677.288000pt;}
.y240{bottom:677.872000pt;}
.yb0{bottom:678.489333pt;}
.y132{bottom:679.822667pt;}
.y1c7{bottom:682.505333pt;}
.y1f4{bottom:682.599071pt;}
.y131{bottom:683.104000pt;}
.y87{bottom:685.842667pt;}
.y35{bottom:689.721333pt;}
.y270{bottom:691.316000pt;}
.y191{bottom:693.332000pt;}
.y1f3{bottom:695.029645pt;}
.y16c{bottom:695.168000pt;}
.ye9{bottom:695.300000pt;}
.y23f{bottom:695.885333pt;}
.y104{bottom:697.028000pt;}
.y16b{bottom:698.389333pt;}
.y1c6{bottom:700.518667pt;}
.y219{bottom:701.081333pt;}
.y86{bottom:703.854667pt;}
.yaf{bottom:704.472000pt;}
.y63{bottom:706.857333pt;}
.y1f2{bottom:707.460220pt;}
.y34{bottom:707.733333pt;}
.y26f{bottom:708.532000pt;}
.y24f{bottom:709.729333pt;}
.y190{bottom:711.344000pt;}
.y169{bottom:713.180000pt;}
.ye8{bottom:713.313333pt;}
.y16a{bottom:713.373333pt;}
.y23e{bottom:713.897333pt;}
.y103{bottom:715.040000pt;}
.y130{bottom:716.126667pt;}
.y1c5{bottom:718.530667pt;}
.y1f1{bottom:719.890794pt;}
.y85{bottom:721.868000pt;}
.y33{bottom:725.746667pt;}
.ye7{bottom:731.325333pt;}
.y23d{bottom:731.909333pt;}
.y1f0{bottom:732.321369pt;}
.y102{bottom:733.052000pt;}
.y12f{bottom:734.138667pt;}
.yae{bottom:735.422667pt;}
.y168{bottom:739.162667pt;}
.y218{bottom:739.765333pt;}
.y62{bottom:739.880000pt;}
.y26e{bottom:742.962667pt;}
.y32{bottom:743.758667pt;}
.y1c4{bottom:744.513333pt;}
.y1ef{bottom:744.751943pt;}
.y18f{bottom:749.120000pt;}
.ye6{bottom:749.338667pt;}
.y23c{bottom:749.922667pt;}
.y101{bottom:751.065333pt;}
.y12e{bottom:752.152000pt;}
.yad{bottom:753.436000pt;}
.y217{bottom:754.377333pt;}
.y1ee{bottom:757.182518pt;}
.y61{bottom:757.892000pt;}
.y26d{bottom:760.178667pt;}
.y31{bottom:761.770667pt;}
.y167{bottom:766.196000pt;}
.ye5{bottom:767.350667pt;}
.y23b{bottom:767.934667pt;}
.y18e{bottom:768.409333pt;}
.y216{bottom:768.988000pt;}
.y100{bottom:769.077333pt;}
.y1ed{bottom:769.613092pt;}
.y166{bottom:770.113333pt;}
.y12c{bottom:770.164000pt;}
.yac{bottom:771.448000pt;}
.y165{bottom:773.069333pt;}
.y12d{bottom:773.385333pt;}
.y60{bottom:775.905333pt;}
.y26c{bottom:777.393333pt;}
.y1c3{bottom:778.797333pt;}
.y30{bottom:779.784000pt;}
.y2{bottom:781.661334pt;}
.y1ec{bottom:782.043667pt;}
.y18d{bottom:783.021333pt;}
.y23a{bottom:785.948000pt;}
.y164{bottom:788.126667pt;}
.y215{bottom:790.268000pt;}
.y5f{bottom:793.917333pt;}
.y1eb{bottom:794.473107pt;}
.y26b{bottom:794.609333pt;}
.ye4{bottom:795.989333pt;}
.yff{bottom:796.096000pt;}
.y1c2{bottom:797.042302pt;}
.y18c{bottom:797.633333pt;}
.y2f{bottom:797.796000pt;}
.y239{bottom:803.960000pt;}
.y214{bottom:804.880000pt;}
.y163{bottom:806.138667pt;}
.y12b{bottom:807.694667pt;}
.y1c1{bottom:809.679490pt;}
.y26a{bottom:811.824000pt;}
.y5e{bottom:811.930667pt;}
.y18b{bottom:812.245333pt;}
.yab{bottom:812.480000pt;}
.y1ea{bottom:812.576216pt;}
.ye3{bottom:814.002667pt;}
.yfe{bottom:814.109333pt;}
.y298{bottom:819.628000pt;}
.y238{bottom:821.972000pt;}
.y1c0{bottom:822.316678pt;}
.y162{bottom:824.150667pt;}
.y2c{bottom:825.151968pt;}
.y1e9{bottom:825.206424pt;}
.y2b{bottom:825.501333pt;}
.y18a{bottom:826.857333pt;}
.yaa{bottom:827.090667pt;}
.y269{bottom:829.040000pt;}
.y5d{bottom:829.942667pt;}
.ye2{bottom:832.014667pt;}
.yfd{bottom:832.121333pt;}
.y213{bottom:832.986667pt;}
.y1bf{bottom:834.953866pt;}
.y297{bottom:836.844000pt;}
.y237{bottom:839.985333pt;}
.y12a{bottom:840.717333pt;}
.y189{bottom:841.468000pt;}
.ya9{bottom:841.702667pt;}
.y268{bottom:846.256000pt;}
.y1be{bottom:847.591054pt;}
.y5c{bottom:847.954667pt;}
.ye1{bottom:848.698667pt;}
.yfc{bottom:850.133333pt;}
.y1e8{bottom:851.072000pt;}
.y296{bottom:854.060000pt;}
.y295{bottom:854.420000pt;}
.y188{bottom:856.080000pt;}
.ya8{bottom:856.314667pt;}
.y129{bottom:856.597333pt;}
.y236{bottom:857.997333pt;}
.y1{bottom:859.312000pt;}
.y1bd{bottom:860.228243pt;}
.y2a{bottom:860.498667pt;}
.y267{bottom:863.470667pt;}
.y5b{bottom:865.968000pt;}
.ye0{bottom:866.712000pt;}
.y187{bottom:870.692000pt;}
.ya7{bottom:870.926667pt;}
.y1bc{bottom:872.865431pt;}
.y235{bottom:876.010667pt;}
.yfb{bottom:876.116000pt;}
.y29{bottom:876.638667pt;}
.y294{bottom:880.234667pt;}
.y266{bottom:880.686667pt;}
.y161{bottom:881.084000pt;}
.ydf{bottom:883.396000pt;}
.y5a{bottom:883.980000pt;}
.y186{bottom:885.304000pt;}
.y1bb{bottom:885.501466pt;}
.ya6{bottom:885.538667pt;}
.y128{bottom:886.338667pt;}
.y127{bottom:889.620000pt;}
.y28{bottom:892.778667pt;}
.y293{bottom:893.744000pt;}
.y234{bottom:894.022667pt;}
.y265{bottom:897.901333pt;}
.y1ba{bottom:898.138654pt;}
.y160{bottom:899.097333pt;}
.y185{bottom:899.916000pt;}
.ya5{bottom:900.150667pt;}
.yde{bottom:901.408000pt;}
.y59{bottom:901.993333pt;}
.yfa{bottom:907.066667pt;}
.y1b9{bottom:910.775842pt;}
.y233{bottom:912.034667pt;}
.y27{bottom:912.748000pt;}
.y184{bottom:914.528000pt;}
.ya4{bottom:914.762667pt;}
.y264{bottom:915.117333pt;}
.y15e{bottom:917.109333pt;}
.y58{bottom:920.005333pt;}
.y15f{bottom:920.065333pt;}
.y126{bottom:922.642667pt;}
.y292{bottom:923.193333pt;}
.y1b8{bottom:923.413030pt;}
.y183{bottom:929.140000pt;}
.ya3{bottom:929.374667pt;}
.ydd{bottom:930.048000pt;}
.y263{bottom:932.333333pt;}
.y15d{bottom:935.122667pt;}
.y1b7{bottom:936.050219pt;}
.y57{bottom:938.017333pt;}
.y291{bottom:940.409333pt;}
.y125{bottom:940.654667pt;}
.ya2{bottom:943.986667pt;}
.ydc{bottom:948.060000pt;}
.y262{bottom:949.548000pt;}
.y182{bottom:950.420000pt;}
.y26{bottom:952.217333pt;}
.y1b6{bottom:954.454227pt;}
.y56{bottom:956.030667pt;}
.y290{bottom:957.624000pt;}
.y15c{bottom:961.105333pt;}
.ya1{bottom:965.265333pt;}
.ydb{bottom:966.073333pt;}
.y261{bottom:966.764000pt;}
.y1b5{bottom:967.294366pt;}
.y55{bottom:974.042667pt;}
.y28f{bottom:974.840000pt;}
.y25{bottom:977.906667pt;}
.y260{bottom:991.949333pt;}
.y54{bottom:992.056000pt;}
.ya0{bottom:993.372000pt;}
.y21{bottom:1011.514667pt;}
.y53{bottom:1038.548000pt;}
.h12{height:22.673858pt;}
.h47{height:28.483114pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h21{height:29.397999pt;}
.h4a{height:29.412820pt;}
.h14{height:29.433775pt;}
.h25{height:29.599908pt;}
.h4d{height:29.616229pt;}
.h43{height:29.901703pt;}
.h45{height:30.108492pt;}
.h13{height:30.399505pt;}
.h49{height:30.787801pt;}
.h18{height:31.157778pt;}
.h3b{height:31.558400pt;}
.h4c{height:31.792734pt;}
.hc{height:32.246508pt;}
.h46{height:32.321174pt;}
.h1a{height:34.574438pt;}
.h4f{height:34.717901pt;}
.h11{height:34.813542pt;}
.h53{height:35.052646pt;}
.h48{height:36.454836pt;}
.h28{height:37.372000pt;}
.h4b{height:37.644745pt;}
.h19{height:37.778179pt;}
.h44{height:38.270454pt;}
.h10{height:38.415786pt;}
.h15{height:38.681455pt;}
.he{height:38.947124pt;}
.h36{height:39.449455pt;}
.hd{height:39.846430pt;}
.h29{height:39.850400pt;}
.h30{height:39.982788pt;}
.h7{height:40.853333pt;}
.h35{height:41.285014pt;}
.h17{height:41.524400pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h42{height:44.245639pt;}
.h52{height:44.250973pt;}
.h26{height:44.757999pt;}
.hb{height:45.272024pt;}
.h24{height:48.320666pt;}
.h16{height:48.683332pt;}
.h1d{height:48.688666pt;}
.h2{height:49.024000pt;}
.h38{height:49.835733pt;}
.h2e{height:50.331332pt;}
.h41{height:50.505455pt;}
.h3c{height:51.344666pt;}
.h2b{height:51.541242pt;}
.h3f{height:51.546575pt;}
.h31{height:51.566788pt;}
.h2a{height:53.505067pt;}
.h2d{height:54.649733pt;}
.h2f{height:56.788400pt;}
.h3e{height:57.199067pt;}
.h20{height:57.529733pt;}
.h23{height:57.535067pt;}
.h3a{height:57.799269pt;}
.h1e{height:63.456666pt;}
.h4e{height:63.795772pt;}
.h40{height:66.174788pt;}
.h2c{height:66.625067pt;}
.h37{height:68.505455pt;}
.hf{height:69.148877pt;}
.h5{height:69.450667pt;}
.h22{height:69.535908pt;}
.h1f{height:69.541242pt;}
.h34{height:72.934400pt;}
.h39{height:74.654788pt;}
.h1b{height:74.915124pt;}
.h1c{height:75.134788pt;}
.h32{height:87.668400pt;}
.h3d{height:90.185455pt;}
.h27{height:92.345733pt;}
.h33{height:101.729067pt;}
.h4{height:105.826671pt;}
.h50{height:793.701333pt;}
.h51{height:794.000000pt;}
.h0{height:1122.518667pt;}
.ha{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:66.991004pt;}
.w4{width:185.925531pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.w6{width:1122.520000pt;}
.w7{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xa{left:26.021437pt;}
.x6{left:53.458976pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:102.046667pt;}
.xa5{left:104.697333pt;}
.x8{left:108.542667pt;}
.x7{left:109.606667pt;}
.xbf{left:111.812553pt;}
.xa6{left:113.220000pt;}
.xb8{left:121.106667pt;}
.x61{left:127.928000pt;}
.xe{left:130.393333pt;}
.xe2{left:135.485333pt;}
.x69{left:137.052000pt;}
.x1d{left:138.182667pt;}
.x10{left:140.562667pt;}
.x19{left:143.213333pt;}
.xe3{left:146.782667pt;}
.x6a{left:148.408000pt;}
.xae{left:149.446667pt;}
.x1e{left:153.244000pt;}
.x11{left:155.526667pt;}
.xaf{left:160.744000pt;}
.xde{left:163.657333pt;}
.xb{left:167.422667pt;}
.x31{left:172.064000pt;}
.xb0{left:174.205333pt;}
.x1a{left:177.294667pt;}
.x1f{left:179.721333pt;}
.x4{left:180.874667pt;}
.x2d{left:185.266667pt;}
.xa0{left:192.101333pt;}
.x62{left:193.244000pt;}
.xd1{left:199.081333pt;}
.xcd{left:200.644000pt;}
.xc7{left:202.700000pt;}
.x63{left:203.925333pt;}
.xc8{left:205.215293pt;}
.xbe{left:206.400000pt;}
.x32{left:207.634667pt;}
.x2a{left:208.954667pt;}
.xb7{left:211.828000pt;}
.x20{left:216.866667pt;}
.xcb{left:219.350667pt;}
.x2b{left:223.058667pt;}
.x8e{left:224.872000pt;}
.xad{left:226.688000pt;}
.x33{left:227.758667pt;}
.x67{left:228.852000pt;}
.xcc{left:229.842667pt;}
.xe0{left:231.064000pt;}
.xb3{left:233.720000pt;}
.x6c{left:235.590667pt;}
.x6b{left:237.065333pt;}
.xce{left:240.722667pt;}
.x68{left:243.068000pt;}
.x18{left:244.916000pt;}
.x6f{left:245.805333pt;}
.x7f{left:247.294667pt;}
.xd8{left:250.028000pt;}
.x79{left:251.173333pt;}
.x78{left:253.325333pt;}
.x21{left:254.992000pt;}
.x72{left:261.222667pt;}
.x4f{left:262.777333pt;}
.x46{left:265.102667pt;}
.x50{left:266.728000pt;}
.x2c{left:267.700000pt;}
.x12{left:269.320000pt;}
.x6d{left:270.421333pt;}
.x48{left:271.989333pt;}
.x22{left:273.056000pt;}
.x47{left:275.689333pt;}
.x34{left:278.876000pt;}
.x1b{left:281.352000pt;}
.x4c{left:283.933333pt;}
.x73{left:286.950667pt;}
.x64{left:288.728000pt;}
.x4d{left:290.713333pt;}
.x44{left:293.397333pt;}
.xc9{left:294.700000pt;}
.x9b{left:296.622667pt;}
.x65{left:297.880000pt;}
.x35{left:301.497333pt;}
.x76{left:303.468000pt;}
.xca{left:305.205333pt;}
.x4b{left:307.641333pt;}
.xf{left:309.648000pt;}
.x82{left:311.552000pt;}
.x77{left:312.620000pt;}
.x1c{left:317.190667pt;}
.xc4{left:318.490667pt;}
.x96{left:320.693333pt;}
.x45{left:322.336000pt;}
.xdb{left:325.733333pt;}
.x3e{left:326.860000pt;}
.x37{left:329.098667pt;}
.x36{left:331.157333pt;}
.xdc{left:332.050667pt;}
.x7c{left:333.186667pt;}
.x13{left:334.228000pt;}
.x39{left:337.273333pt;}
.x9c{left:338.177333pt;}
.x38{left:340.309333pt;}
.xa1{left:341.413333pt;}
.x4e{left:342.612000pt;}
.x9d{left:343.984000pt;}
.x5b{left:346.393333pt;}
.xa2{left:347.744000pt;}
.xe1{left:348.860000pt;}
.xaa{left:351.113333pt;}
.xb5{left:352.272000pt;}
.x6e{left:353.938667pt;}
.x84{left:359.336000pt;}
.x5c{left:360.376000pt;}
.x83{left:364.616000pt;}
.x8a{left:367.514667pt;}
.x74{left:373.953333pt;}
.x7d{left:376.550667pt;}
.x85{left:378.680000pt;}
.x2e{left:379.758667pt;}
.x3f{left:382.781333pt;}
.xa3{left:384.586667pt;}
.x8c{left:385.761333pt;}
.x7e{left:387.240000pt;}
.x8b{left:391.041333pt;}
.x70{left:393.448000pt;}
.x3a{left:395.253333pt;}
.x9e{left:397.520000pt;}
.x66{left:399.458667pt;}
.x40{left:402.621333pt;}
.x3{left:404.408000pt;}
.x56{left:405.368000pt;}
.x97{left:407.130667pt;}
.x8d{left:408.590667pt;}
.x57{left:412.548000pt;}
.x26{left:415.529333pt;}
.x16{left:418.592000pt;}
.x42{left:420.234667pt;}
.x27{left:422.894667pt;}
.x43{left:425.693333pt;}
.x58{left:427.082667pt;}
.x30{left:428.712000pt;}
.x17{left:429.717333pt;}
.x2f{left:430.770667pt;}
.x3c{left:432.706667pt;}
.xd9{left:434.004000pt;}
.x86{left:435.917333pt;}
.x3d{left:438.166667pt;}
.xa4{left:440.018667pt;}
.xd7{left:442.693333pt;}
.x98{left:445.724000pt;}
.x75{left:447.173333pt;}
.x87{left:448.452000pt;}
.x7b{left:450.462667pt;}
.x41{left:453.036000pt;}
.x59{left:459.810667pt;}
.x99{left:461.180000pt;}
.xd5{left:462.450667pt;}
.x9f{left:463.460000pt;}
.x3b{left:465.508000pt;}
.x89{left:467.797333pt;}
.x88{left:468.826667pt;}
.x8f{left:470.062667pt;}
.x5a{left:471.349333pt;}
.xd6{left:473.150667pt;}
.x28{left:476.417333pt;}
.x90{left:480.757333pt;}
.xa7{left:487.172000pt;}
.x29{left:488.149333pt;}
.xcf{left:493.790667pt;}
.xda{left:497.565333pt;}
.x9a{left:503.114667pt;}
.xd0{left:504.116000pt;}
.x25{left:506.793333pt;}
.xac{left:508.140000pt;}
.xdf{left:512.485333pt;}
.xd2{left:517.125333pt;}
.x71{left:521.001333pt;}
.x14{left:527.350667pt;}
.x49{left:529.149333pt;}
.x5d{left:530.714667pt;}
.xb4{left:533.988000pt;}
.xb6{left:537.017333pt;}
.xba{left:539.524000pt;}
.x15{left:541.937333pt;}
.x5e{left:543.024000pt;}
.x80{left:546.898667pt;}
.x4a{left:550.562667pt;}
.x81{left:557.593333pt;}
.xdd{left:563.094667pt;}
.xbb{left:576.282667pt;}
.xbc{left:583.649333pt;}
.xc0{left:586.305333pt;}
.x5f{left:589.245333pt;}
.x23{left:591.572000pt;}
.xa8{left:597.065333pt;}
.x51{left:602.110667pt;}
.xc1{left:604.372000pt;}
.xa9{left:605.268000pt;}
.x24{left:609.636000pt;}
.xb9{left:612.880000pt;}
.x60{left:616.954667pt;}
.xb1{left:619.093333pt;}
.x91{left:621.806667pt;}
.x9{left:623.413317pt;}
.xbd{left:625.016000pt;}
.xb2{left:630.889333pt;}
.x92{left:632.301333pt;}
.x54{left:638.632000pt;}
.xab{left:639.556000pt;}
.x55{left:650.470667pt;}
.xc2{left:657.138667pt;}
.xc{left:661.526667pt;}
.xc3{left:664.318667pt;}
.xc5{left:666.636000pt;}
.x93{left:668.224000pt;}
.xd3{left:671.650667pt;}
.x52{left:674.060000pt;}
.x94{left:675.404000pt;}
.xc6{left:677.481333pt;}
.xd{left:679.825333pt;}
.xd4{left:682.346667pt;}
.x7a{left:683.450667pt;}
.x53{left:685.414667pt;}
.x95{left:689.957333pt;}
}




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