
    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_981f4f95e01be718e9ec6354.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d43da312abc9b729dda640e0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.010000;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_47b34c458c0806a8a5fddab1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986000;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_051a5d79a864b195cdfe0b01.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.191000;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_4724a965f49415787cc499f9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_673fe8c49f0b0680284419ed.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6f151561a78cb30e4e227b87.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_56f695f363eab1b7f50624ef.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f90a2e3439c1c153efc58be6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.708000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_07b6100d59029649338b1dac.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.773000;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_bcefc1e682d384eaef91c122.woff2')format("woff");}.ffb{font-family:ffb;line-height:2.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f42421d8f44cb0eb3a0f4a94.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.580000;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_ae667d96c77d4a300bab8c59.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_2b8f6b7697b2c26bcacd151f.woff2')format("woff");}.ffe{font-family:ffe;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;}
.m7{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);}
.m19{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);}
.m1e{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);}
.m1d{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);}
.m12{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);}
.m21{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);}
.m9{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);}
.ma{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);}
.me{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);}
.m17{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);}
.mb{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);}
.m16{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);}
.md{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);}
.m14{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);}
.m1f{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);}
.m6{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);}
.m10{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);}
.m28{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);}
.m23{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);}
.m13{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);}
.m11{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);}
.m29{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);}
.m24{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);}
.m22{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);}
.m8{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);}
.m18{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);}
.m1b{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);}
.m26{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);}
.mf{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);}
.m25{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);}
.m3{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);}
.m27{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);}
.m15{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);}
.m5{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);}
.m4{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);}
.m20{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);}
.m1a{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vc{vertical-align:-84.318000px;}
.v2{vertical-align:-19.524000px;}
.ve{vertical-align:-12.510000px;}
.v4{vertical-align:-11.148000px;}
.v3{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:11.148000px;}
.v1{vertical-align:21.696000px;}
.v5{vertical-align:24.684000px;}
.va{vertical-align:27.858000px;}
.v7{vertical-align:36.822000px;}
.v12{vertical-align:44.124000px;}
.vf{vertical-align:48.450000px;}
.v10{vertical-align:52.602000px;}
.v6{vertical-align:66.378000px;}
.v9{vertical-align:84.318000px;}
.v11{vertical-align:102.246000px;}
.vb{vertical-align:121.140000px;}
.vd{vertical-align:212.208000px;}
.ls6{letter-spacing:0.000000px;}
.ls99{letter-spacing:0.004800px;}
.ls52{letter-spacing:0.428370px;}
.ls90{letter-spacing:0.447988px;}
.ls93{letter-spacing:0.453388px;}
.ls48{letter-spacing:0.542815px;}
.ls1f{letter-spacing:0.548815px;}
.ls67{letter-spacing:0.564571px;}
.ls70{letter-spacing:0.564600px;}
.ls71{letter-spacing:0.565200px;}
.ls6f{letter-spacing:0.570571px;}
.ls68{letter-spacing:0.570600px;}
.ls8e{letter-spacing:0.592151px;}
.ls3b{letter-spacing:0.670741px;}
.ls28{letter-spacing:0.676741px;}
.ls82{letter-spacing:0.714777px;}
.ls89{letter-spacing:0.716570px;}
.ls6b{letter-spacing:0.717483px;}
.ls6c{letter-spacing:0.742200px;}
.ls3a{letter-spacing:0.747292px;}
.ls77{letter-spacing:0.748200px;}
.ls18{letter-spacing:0.820741px;}
.ls65{letter-spacing:0.882571px;}
.ls2f{letter-spacing:0.884012px;}
.ls6d{letter-spacing:0.888571px;}
.ls4e{letter-spacing:0.891181px;}
.ls51{letter-spacing:0.896755px;}
.ls92{letter-spacing:0.938113px;}
.ls8f{letter-spacing:0.943513px;}
.ls7f{letter-spacing:0.993634px;}
.ls64{letter-spacing:0.999292px;}
.ls7a{letter-spacing:0.999634px;}
.ls50{letter-spacing:1.021258px;}
.ls1e{letter-spacing:1.131943px;}
.ls12{letter-spacing:1.135740px;}
.ls46{letter-spacing:1.137943px;}
.ls7{letter-spacing:1.275394px;}
.ls24{letter-spacing:1.311292px;}
.ls2d{letter-spacing:1.311634px;}
.ls11{letter-spacing:1.314583px;}
.ls13{letter-spacing:1.317292px;}
.ls14{letter-spacing:1.317634px;}
.ls16{letter-spacing:1.414741px;}
.lsf{letter-spacing:1.420741px;}
.ls7c{letter-spacing:1.474893px;}
.ls54{letter-spacing:1.488583px;}
.ls5e{letter-spacing:1.490570px;}
.ls10{letter-spacing:1.491634px;}
.ls3d{letter-spacing:1.492200px;}
.ls74{letter-spacing:1.494390px;}
.lse{letter-spacing:1.494583px;}
.ls20{letter-spacing:1.497634px;}
.ls2b{letter-spacing:1.498483px;}
.ls3{letter-spacing:1.861130px;}
.ls2c{letter-spacing:2.014741px;}
.ls3f{letter-spacing:2.092200px;}
.ls6e{letter-spacing:2.154600px;}
.ls66{letter-spacing:2.160600px;}
.ls72{letter-spacing:2.241483px;}
.ls81{letter-spacing:2.434741px;}
.ls3e{letter-spacing:2.440741px;}
.ls47{letter-spacing:2.983200px;}
.ls21{letter-spacing:2.989200px;}
.ls25{letter-spacing:3.555943px;}
.ls7d{letter-spacing:3.558571px;}
.ls43{letter-spacing:3.561943px;}
.ls5b{letter-spacing:3.585986px;}
.ls55{letter-spacing:3.733200px;}
.ls73{letter-spacing:4.036200px;}
.ls15{letter-spacing:4.299943px;}
.ls78{letter-spacing:4.302571px;}
.ls3c{letter-spacing:4.303200px;}
.ls17{letter-spacing:4.305943px;}
.ls76{letter-spacing:9.244893px;}
.ls80{letter-spacing:9.566383px;}
.ls79{letter-spacing:10.690893px;}
.ls35{letter-spacing:10.700012px;}
.ls56{letter-spacing:10.701181px;}
.ls7e{letter-spacing:10.706100px;}
.ls45{letter-spacing:10.709108px;}
.ls4d{letter-spacing:11.452483px;}
.ls2e{letter-spacing:11.458483px;}
.ls22{letter-spacing:11.606100px;}
.lsb{letter-spacing:11.835569px;}
.ls5{letter-spacing:11.954850px;}
.ls1c{letter-spacing:12.300783px;}
.ls33{letter-spacing:12.342783px;}
.ls29{letter-spacing:12.370200px;}
.ls9b{letter-spacing:12.889176px;}
.ls4a{letter-spacing:13.042741px;}
.ls41{letter-spacing:13.048741px;}
.ls1a{letter-spacing:13.053483px;}
.ls1b{letter-spacing:13.079108px;}
.ls2a{letter-spacing:13.083483px;}
.ls31{letter-spacing:13.089483px;}
.ls32{letter-spacing:13.115108px;}
.ls57{letter-spacing:13.258766px;}
.ls9c{letter-spacing:13.436004px;}
.ls95{letter-spacing:13.448400px;}
.ls96{letter-spacing:13.454400px;}
.ls61{letter-spacing:13.456766px;}
.ls98{letter-spacing:13.493228px;}
.ls42{letter-spacing:13.683483px;}
.ls4b{letter-spacing:13.689483px;}
.ls9a{letter-spacing:14.032753px;}
.ls5d{letter-spacing:14.175483px;}
.lsc{letter-spacing:14.704798px;}
.ls1d{letter-spacing:14.863258px;}
.ls37{letter-spacing:14.943900px;}
.lsd{letter-spacing:15.003601px;}
.ls9{letter-spacing:15.003676px;}
.ls38{letter-spacing:15.006125px;}
.lsa{letter-spacing:15.063451px;}
.ls36{letter-spacing:15.171368px;}
.ls8{letter-spacing:15.242778px;}
.ls4f{letter-spacing:15.355200px;}
.ls44{letter-spacing:15.361200px;}
.ls97{letter-spacing:15.409224px;}
.ls5a{letter-spacing:15.614570px;}
.ls23{letter-spacing:15.616741px;}
.ls19{letter-spacing:15.885943px;}
.ls30{letter-spacing:15.927943px;}
.ls4{letter-spacing:15.932571px;}
.ls59{letter-spacing:15.991834px;}
.ls58{letter-spacing:16.221483px;}
.ls62{letter-spacing:16.425483px;}
.ls94{letter-spacing:16.626871px;}
.ls86{letter-spacing:17.134200px;}
.ls84{letter-spacing:17.319483px;}
.ls49{letter-spacing:17.475483px;}
.ls26{letter-spacing:18.028741px;}
.ls6a{letter-spacing:18.069483px;}
.ls87{letter-spacing:18.095108px;}
.ls27{letter-spacing:18.095400px;}
.ls8b{letter-spacing:18.098725px;}
.ls63{letter-spacing:18.144335px;}
.ls88{letter-spacing:18.220483px;}
.ls40{letter-spacing:18.669483px;}
.ls4c{letter-spacing:18.695400px;}
.ls83{letter-spacing:18.700200px;}
.ls39{letter-spacing:18.712200px;}
.ls8a{letter-spacing:20.467200px;}
.ls75{letter-spacing:20.901943px;}
.ls7b{letter-spacing:20.904571px;}
.ls69{letter-spacing:20.907943px;}
.ls60{letter-spacing:26.259483px;}
.ls5c{letter-spacing:26.341771px;}
.ls53{letter-spacing:28.207200px;}
.ls5f{letter-spacing:29.098457px;}
.ls0{letter-spacing:57.415200px;}
.ls34{letter-spacing:57.637258px;}
.ls1{letter-spacing:70.236600px;}
.ls2{letter-spacing:72.353510px;}
.ls85{letter-spacing:76.060200px;}
.ls91{letter-spacing:432.896940px;}
.ls8c{letter-spacing:535.493860px;}
.ls8d{letter-spacing:557.786200px;}
.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;}
}
.ws105{word-spacing:-16.438290px;}
.ws5b{word-spacing:-14.943900px;}
.ws136{word-spacing:-13.449600px;}
.ws86{word-spacing:-12.493140px;}
.ws1b{word-spacing:-11.955150px;}
.ws1{word-spacing:-11.357400px;}
.ws10c{word-spacing:-5.379804px;}
.wse5{word-spacing:-3.639764px;}
.wse1{word-spacing:-3.633764px;}
.ws64{word-spacing:-3.109876px;}
.ws63{word-spacing:-3.108331px;}
.wsbd{word-spacing:-2.998636px;}
.wsbc{word-spacing:-2.988780px;}
.ws160{word-spacing:-2.958912px;}
.wsb1{word-spacing:-2.929004px;}
.wsb2{word-spacing:-2.918023px;}
.ws6b{word-spacing:-2.749678px;}
.wsb0{word-spacing:-2.570351px;}
.wsf4{word-spacing:-2.538961px;}
.wsf5{word-spacing:-2.532375px;}
.ws9e{word-spacing:-2.510575px;}
.ws118{word-spacing:-2.450800px;}
.ws44{word-spacing:-2.391024px;}
.ws4a{word-spacing:-2.271473px;}
.ws99{word-spacing:-2.211697px;}
.ws18c{word-spacing:-2.151936px;}
.ws70{word-spacing:-2.151922px;}
.ws45{word-spacing:-2.092146px;}
.ws7c{word-spacing:-2.032370px;}
.ws2e{word-spacing:-1.912819px;}
.ws4{word-spacing:-1.908367px;}
.ws143{word-spacing:-1.882944px;}
.wsab{word-spacing:-1.853044px;}
.wsa9{word-spacing:-1.808261px;}
.wsa8{word-spacing:-1.803678px;}
.wsaa{word-spacing:-1.793268px;}
.ws1c{word-spacing:-1.733492px;}
.ws9d{word-spacing:-1.673717px;}
.ws191{word-spacing:-1.613952px;}
.ws34{word-spacing:-1.613941px;}
.ws33{word-spacing:-1.577642px;}
.ws35{word-spacing:-1.554166px;}
.ws2f{word-spacing:-1.434614px;}
.wse3{word-spacing:-1.374839px;}
.ws3{word-spacing:-1.322630px;}
.ws4f{word-spacing:-1.255288px;}
.ws1d{word-spacing:-1.195512px;}
.ws16f{word-spacing:-1.129766px;}
.wsf9{word-spacing:-1.029795px;}
.wsf8{word-spacing:-1.019572px;}
.wsf7{word-spacing:-1.016185px;}
.ws185{word-spacing:-0.987978px;}
.ws186{word-spacing:-0.968371px;}
.ws49{word-spacing:-0.836858px;}
.ws18b{word-spacing:-0.806976px;}
.ws14b{word-spacing:-0.753178px;}
.ws1f{word-spacing:-0.717307px;}
.ws17d{word-spacing:-0.699379px;}
.ws13{word-spacing:-0.657532px;}
.ws130{word-spacing:-0.645581px;}
.ws2d{word-spacing:-0.597756px;}
.ws174{word-spacing:-0.537984px;}
.wsd0{word-spacing:-0.537980px;}
.ws17e{word-spacing:-0.484186px;}
.ws73{word-spacing:-0.478205px;}
.ws4d{word-spacing:-0.435411px;}
.ws4c{word-spacing:-0.430485px;}
.ws4b{word-spacing:-0.418429px;}
.ws150{word-spacing:-0.376589px;}
.ws56{word-spacing:-0.358654px;}
.wsa2{word-spacing:-0.333701px;}
.wse7{word-spacing:-0.322826px;}
.ws145{word-spacing:-0.322790px;}
.wsd2{word-spacing:-0.304024px;}
.wsa{word-spacing:-0.298878px;}
.ws15b{word-spacing:-0.268992px;}
.wsb4{word-spacing:-0.244906px;}
.ws55{word-spacing:-0.240826px;}
.ws6e{word-spacing:-0.240017px;}
.ws5c{word-spacing:-0.239198px;}
.ws8{word-spacing:-0.239102px;}
.wscf{word-spacing:-0.229049px;}
.wsc0{word-spacing:-0.226712px;}
.ws14e{word-spacing:-0.215194px;}
.wsf3{word-spacing:-0.206632px;}
.wsf0{word-spacing:-0.200615px;}
.ws82{word-spacing:-0.189001px;}
.ws83{word-spacing:-0.184445px;}
.ws37{word-spacing:-0.179327px;}
.ws7a{word-spacing:-0.178912px;}
.wsa3{word-spacing:-0.175620px;}
.ws84{word-spacing:-0.174751px;}
.wsaf{word-spacing:-0.174692px;}
.ws15a{word-spacing:-0.161395px;}
.wsc6{word-spacing:-0.147541px;}
.wsa4{word-spacing:-0.146133px;}
.wse{word-spacing:-0.119551px;}
.ws12c{word-spacing:-0.112308px;}
.ws146{word-spacing:-0.107597px;}
.ws25{word-spacing:-0.081040px;}
.ws87{word-spacing:-0.062287px;}
.wsc{word-spacing:-0.059776px;}
.ws137{word-spacing:-0.053798px;}
.wsde{word-spacing:-0.045655px;}
.wsee{word-spacing:-0.008660px;}
.ws144{word-spacing:-0.007267px;}
.ws15f{word-spacing:-0.007190px;}
.wsc1{word-spacing:-0.006845px;}
.wsdf{word-spacing:-0.006553px;}
.ws182{word-spacing:-0.006259px;}
.ws149{word-spacing:-0.006221px;}
.ws140{word-spacing:-0.004771px;}
.wsac{word-spacing:-0.004770px;}
.wscb{word-spacing:-0.004657px;}
.ws111{word-spacing:-0.004382px;}
.ws165{word-spacing:-0.003859px;}
.ws161{word-spacing:-0.003610px;}
.ws1a{word-spacing:-0.003082px;}
.ws92{word-spacing:-0.002971px;}
.wsed{word-spacing:-0.002807px;}
.ws13b{word-spacing:-0.001910px;}
.ws5e{word-spacing:-0.001808px;}
.ws142{word-spacing:-0.001296px;}
.ws155{word-spacing:-0.001133px;}
.wscc{word-spacing:-0.000832px;}
.ws10b{word-spacing:-0.000808px;}
.ws18a{word-spacing:-0.000806px;}
.wsad{word-spacing:-0.000648px;}
.ws13a{word-spacing:-0.000221px;}
.ws0{word-spacing:0.000000px;}
.wsd8{word-spacing:0.002345px;}
.ws72{word-spacing:0.006576px;}
.ws58{word-spacing:0.031235px;}
.wsd3{word-spacing:0.032439px;}
.ws6d{word-spacing:0.035978px;}
.ws85{word-spacing:0.044930px;}
.ws62{word-spacing:0.048239px;}
.wsff{word-spacing:0.052669px;}
.ws153{word-spacing:0.053798px;}
.ws1e{word-spacing:0.054828px;}
.ws5a{word-spacing:0.055066px;}
.wsd{word-spacing:0.059776px;}
.wsd5{word-spacing:0.066366px;}
.wsd7{word-spacing:0.068536px;}
.wsd6{word-spacing:0.070100px;}
.wsfa{word-spacing:0.075132px;}
.ws36{word-spacing:0.078458px;}
.ws61{word-spacing:0.098379px;}
.ws12f{word-spacing:0.107597px;}
.ws19{word-spacing:0.119551px;}
.ws71{word-spacing:0.120447px;}
.wsca{word-spacing:0.126449px;}
.wsc9{word-spacing:0.127688px;}
.ws48{word-spacing:0.133341px;}
.ws6c{word-spacing:0.135102px;}
.wse4{word-spacing:0.140944px;}
.ws94{word-spacing:0.146050px;}
.ws100{word-spacing:0.147702px;}
.ws101{word-spacing:0.149076px;}
.wsc8{word-spacing:0.153497px;}
.ws148{word-spacing:0.161395px;}
.ws59{word-spacing:0.163114px;}
.ws166{word-spacing:0.178905px;}
.ws14{word-spacing:0.179327px;}
.ws7f{word-spacing:0.186029px;}
.ws107{word-spacing:0.186471px;}
.ws97{word-spacing:0.208067px;}
.ws14f{word-spacing:0.215194px;}
.ws115{word-spacing:0.218598px;}
.ws96{word-spacing:0.228102px;}
.ws95{word-spacing:0.228864px;}
.ws2c{word-spacing:0.239102px;}
.wsda{word-spacing:0.266084px;}
.ws43{word-spacing:0.268791px;}
.ws16e{word-spacing:0.268992px;}
.ws42{word-spacing:0.281899px;}
.ws26{word-spacing:0.298878px;}
.ws14d{word-spacing:0.322790px;}
.ws79{word-spacing:0.358654px;}
.ws14c{word-spacing:0.376589px;}
.ws52{word-spacing:0.380395px;}
.ws54{word-spacing:0.409237px;}
.ws51{word-spacing:0.418429px;}
.ws163{word-spacing:0.430387px;}
.ws69{word-spacing:0.444854px;}
.ws6a{word-spacing:0.478205px;}
.ws11f{word-spacing:0.537980px;}
.ws194{word-spacing:0.537984px;}
.ws11e{word-spacing:0.564017px;}
.ws53{word-spacing:0.571631px;}
.ws162{word-spacing:0.591782px;}
.ws7e{word-spacing:0.597756px;}
.ws81{word-spacing:0.657532px;}
.ws13c{word-spacing:0.699379px;}
.wsd1{word-spacing:0.717307px;}
.ws103{word-spacing:0.742126px;}
.ws15d{word-spacing:0.753178px;}
.wsb{word-spacing:0.777083px;}
.ws4e{word-spacing:0.836858px;}
.ws178{word-spacing:0.860774px;}
.ws74{word-spacing:0.896634px;}
.ws11{word-spacing:0.956410px;}
.ws114{word-spacing:0.962932px;}
.ws172{word-spacing:0.968371px;}
.ws113{word-spacing:0.979539px;}
.ws12{word-spacing:1.016185px;}
.wsfe{word-spacing:1.029195px;}
.ws3a{word-spacing:1.075961px;}
.ws16d{word-spacing:1.075968px;}
.wsec{word-spacing:1.101986px;}
.wseb{word-spacing:1.106813px;}
.ws16c{word-spacing:1.129766px;}
.ws24{word-spacing:1.135736px;}
.ws8e{word-spacing:1.195512px;}
.wsef{word-spacing:1.206895px;}
.wsc7{word-spacing:1.255288px;}
.ws12e{word-spacing:1.291162px;}
.ws32{word-spacing:1.315063px;}
.wsd9{word-spacing:1.341260px;}
.ws8f{word-spacing:1.374839px;}
.ws91{word-spacing:1.434614px;}
.ws16b{word-spacing:1.452557px;}
.ws13d{word-spacing:1.506355px;}
.ws77{word-spacing:1.554166px;}
.ws76{word-spacing:1.613941px;}
.ws131{word-spacing:1.613952px;}
.ws10f{word-spacing:1.644801px;}
.ws10e{word-spacing:1.662816px;}
.ws110{word-spacing:1.666084px;}
.wsdb{word-spacing:1.673717px;}
.ws93{word-spacing:1.733492px;}
.ws11b{word-spacing:1.758494px;}
.ws11c{word-spacing:1.762126px;}
.ws80{word-spacing:1.793268px;}
.ws180{word-spacing:1.882944px;}
.ws20{word-spacing:1.912819px;}
.ws12d{word-spacing:1.966973px;}
.wscd{word-spacing:1.972595px;}
.ws177{word-spacing:2.044339px;}
.ws31{word-spacing:2.092146px;}
.ws154{word-spacing:2.151936px;}
.wsa6{word-spacing:2.180486px;}
.wsa5{word-spacing:2.206404px;}
.ws39{word-spacing:2.211697px;}
.ws38{word-spacing:2.271473px;}
.ws124{word-spacing:2.331248px;}
.ws90{word-spacing:2.391024px;}
.ws8d{word-spacing:2.450800px;}
.ws134{word-spacing:2.474726px;}
.wsfc{word-spacing:2.497186px;}
.wsfb{word-spacing:2.500570px;}
.ws18{word-spacing:2.510575px;}
.wsfd{word-spacing:2.523080px;}
.wsf1{word-spacing:2.570351px;}
.ws2a{word-spacing:2.630126px;}
.ws175{word-spacing:2.689920px;}
.ws78{word-spacing:2.749678px;}
.ws121{word-spacing:2.798987px;}
.wsae{word-spacing:2.809453px;}
.ws138{word-spacing:2.851315px;}
.ws6{word-spacing:2.869229px;}
.ws169{word-spacing:2.905114px;}
.ws98{word-spacing:2.929004px;}
.ws168{word-spacing:2.958912px;}
.wsb3{word-spacing:2.988780px;}
.wsb9{word-spacing:3.105130px;}
.wsb8{word-spacing:3.107968px;}
.wsba{word-spacing:3.108331px;}
.wsbb{word-spacing:3.120236px;}
.ws147{word-spacing:3.120307px;}
.wsdc{word-spacing:3.156157px;}
.ws5{word-spacing:3.168107px;}
.ws171{word-spacing:3.219408px;}
.ws132{word-spacing:3.222576px;}
.ws176{word-spacing:3.225082px;}
.ws16a{word-spacing:3.225763px;}
.ws2{word-spacing:3.227904px;}
.ws159{word-spacing:3.228000px;}
.ws6f{word-spacing:3.287658px;}
.ws157{word-spacing:3.335501px;}
.ws18e{word-spacing:3.389299px;}
.ws187{word-spacing:3.443098px;}
.ws7{word-spacing:3.466985px;}
.ws17b{word-spacing:3.550694px;}
.ws10{word-spacing:3.586536px;}
.ws120{word-spacing:3.595426px;}
.ws3d{word-spacing:3.706087px;}
.ws13f{word-spacing:3.712090px;}
.wsd4{word-spacing:3.758584px;}
.ws30{word-spacing:3.765863px;}
.ws21{word-spacing:3.825638px;}
.ws112{word-spacing:3.847629px;}
.wsb5{word-spacing:3.885414px;}
.ws8a{word-spacing:3.945190px;}
.ws3c{word-spacing:4.064741px;}
.ws3b{word-spacing:4.124516px;}
.ws9{word-spacing:4.184292px;}
.wsa0{word-spacing:4.244068px;}
.ws57{word-spacing:4.294420px;}
.ws47{word-spacing:4.303843px;}
.ws17c{word-spacing:4.357670px;}
.ws22{word-spacing:4.363619px;}
.ws29{word-spacing:4.423394px;}
.ws28{word-spacing:4.483170px;}
.ws27{word-spacing:4.542946px;}
.wsbe{word-spacing:4.602721px;}
.wsbf{word-spacing:4.609111px;}
.wsb6{word-spacing:4.662497px;}
.ws192{word-spacing:4.680461px;}
.ws23{word-spacing:4.782048px;}
.wsc5{word-spacing:4.841824px;}
.ws68{word-spacing:4.901599px;}
.ws8b{word-spacing:4.961375px;}
.wsea{word-spacing:5.003510px;}
.ws50{word-spacing:5.021150px;}
.ws122{word-spacing:5.260253px;}
.wsb7{word-spacing:5.419011px;}
.ws7b{word-spacing:5.439580px;}
.ws156{word-spacing:5.541235px;}
.ws60{word-spacing:5.559131px;}
.wsa1{word-spacing:5.678682px;}
.ws5f{word-spacing:5.738458px;}
.ws9a{word-spacing:5.858009px;}
.ws15e{word-spacing:5.864026px;}
.ws5d{word-spacing:6.276438px;}
.ws193{word-spacing:6.294413px;}
.ws189{word-spacing:6.402010px;}
.ws184{word-spacing:6.509606px;}
.ws41{word-spacing:6.635092px;}
.ws12b{word-spacing:6.874194px;}
.ws3e{word-spacing:7.113296px;}
.wsc4{word-spacing:7.223930px;}
.wsc2{word-spacing:7.232848px;}
.wsc3{word-spacing:7.292623px;}
.ws17{word-spacing:7.352399px;}
.ws16{word-spacing:7.412174px;}
.ws9b{word-spacing:7.471950px;}
.ws179{word-spacing:7.531776px;}
.ws9f{word-spacing:7.591501px;}
.wse8{word-spacing:7.651277px;}
.ws9c{word-spacing:7.711052px;}
.ws183{word-spacing:7.908365px;}
.ws151{word-spacing:7.962163px;}
.ws109{word-spacing:7.985291px;}
.ws10a{word-spacing:8.003068px;}
.ws108{word-spacing:8.009930px;}
.wsce{word-spacing:8.069706px;}
.ws2b{word-spacing:8.129482px;}
.ws129{word-spacing:8.368584px;}
.ws15{word-spacing:8.488135px;}
.ws164{word-spacing:8.553946px;}
.ws3f{word-spacing:8.787013px;}
.ws125{word-spacing:8.987400px;}
.ws141{word-spacing:9.138288px;}
.ws17a{word-spacing:9.141370px;}
.ws18d{word-spacing:9.143626px;}
.ws152{word-spacing:9.143827px;}
.ws170{word-spacing:9.145805px;}
.ws190{word-spacing:9.145882px;}
.ws181{word-spacing:9.146266px;}
.ws15c{word-spacing:9.147562px;}
.ws18f{word-spacing:9.147658px;}
.ws119{word-spacing:10.580281px;}
.ws17f{word-spacing:10.652083px;}
.wsa7{word-spacing:10.699832px;}
.ws75{word-spacing:10.759608px;}
.ws66{word-spacing:10.797048px;}
.ws67{word-spacing:10.804926px;}
.ws65{word-spacing:10.819384px;}
.ws7d{word-spacing:10.879159px;}
.ws135{word-spacing:11.136269px;}
.ws158{word-spacing:11.297664px;}
.ws139{word-spacing:11.566656px;}
.wsf6{word-spacing:11.656242px;}
.ws46{word-spacing:12.433325px;}
.ws88{word-spacing:12.955613px;}
.ws188{word-spacing:13.019213px;}
.ws123{word-spacing:13.192355px;}
.ws12a{word-spacing:13.389734px;}
.ws8c{word-spacing:13.449510px;}
.ws40{word-spacing:14.405920px;}
.ws13e{word-spacing:15.278746px;}
.wse0{word-spacing:17.429110px;}
.ws11a{word-spacing:17.938541px;}
.ws133{word-spacing:19.206029px;}
.wsf2{word-spacing:23.419762px;}
.ws14a{word-spacing:23.456102px;}
.ws173{word-spacing:24.155482px;}
.wsf{word-spacing:29.828024px;}
.ws167{word-spacing:31.256870px;}
.ws102{word-spacing:57.532278px;}
.ws127{word-spacing:149.274420px;}
.ws128{word-spacing:161.427479px;}
.ws104{word-spacing:213.339116px;}
.wse9{word-spacing:330.857946px;}
.ws126{word-spacing:350.178930px;}
.ws89{word-spacing:444.790240px;}
.wse6{word-spacing:687.060746px;}
.ws116{word-spacing:727.947257px;}
.wse2{word-spacing:767.040499px;}
.wsdd{word-spacing:868.180814px;}
.ws11d{word-spacing:917.555460px;}
.ws10d{word-spacing:960.892770px;}
.ws117{word-spacing:1053.365623px;}
.ws106{word-spacing:1085.763998px;}
._4{margin-left:-7.908365px;}
._0{margin-left:-5.917824px;}
._13{margin-left:-4.542946px;}
._b{margin-left:-3.443062px;}
._3{margin-left:-1.936742px;}
._6{width:1.091170px;}
._1{width:2.986534px;}
._27{width:3.992002px;}
._25{width:5.110283px;}
._46{width:6.677296px;}
._45{width:10.054428px;}
._20{width:12.373549px;}
._16{width:13.987490px;}
._14{width:15.266701px;}
._5{width:16.677504px;}
._9{width:18.076154px;}
._7{width:19.630320px;}
._c{width:21.399665px;}
._15{width:23.232313px;}
._e{width:24.472144px;}
._10{width:25.703508px;}
._17{width:27.138122px;}
._1f{width:28.238006px;}
._8{width:30.031274px;}
._a{width:31.561517px;}
._19{width:33.055907px;}
._1e{width:35.052425px;}
._1c{width:36.283789px;}
._1b{width:39.053863px;}
._18{width:40.348530px;}
._23{width:41.619074px;}
._f{width:43.636188px;}
._44{width:45.784212px;}
._42{width:49.811633px;}
._1d{width:51.466792px;}
._2{width:54.429634px;}
._21{width:56.308615px;}
._d{width:59.895151px;}
._40{width:61.868160px;}
._1a{width:63.206732px;}
._2e{width:64.590359px;}
._3f{width:70.088466px;}
._28{width:77.918400px;}
._41{width:79.484117px;}
._3e{width:88.767360px;}
._43{width:97.769887px;}
._39{width:104.923020px;}
._2b{width:109.485124px;}
._35{width:137.218199px;}
._3a{width:144.916750px;}
._30{width:149.274420px;}
._37{width:164.574685px;}
._32{width:173.483700px;}
._36{width:209.603946px;}
._2d{width:211.201759px;}
._2c{width:216.430963px;}
._2f{width:284.846388px;}
._34{width:296.127913px;}
._2a{width:298.500422px;}
._31{width:317.238405px;}
._38{width:321.547657px;}
._3b{width:343.239172px;}
._3d{width:346.676890px;}
._3c{width:366.616937px;}
._29{width:472.468308px;}
._24{width:483.046624px;}
._26{width:532.959250px;}
._33{width:547.517076px;}
._11{width:717.498482px;}
._22{width:1922.198700px;}
._12{width:1946.108700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(61,100,144);}
.fsb{font-size:35.865600px;}
.fsc{font-size:37.371600px;}
.fsf{font-size:37.658520px;}
.fs10{font-size:39.240180px;}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.236800px;}
.fsa{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fse{font-size:48.418560px;}
.fs5{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs9{font-size:62.286600px;}
.fsd{font-size:83.686200px;}
.fs0{font-size:102.515176px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y15{bottom:3.425340px;}
.y14{bottom:14.151273px;}
.y2{bottom:18.594411px;}
.y30{bottom:63.780000px;}
.y2f{bottom:108.612000px;}
.y298{bottom:108.957000px;}
.y264{bottom:109.899000px;}
.y16f{bottom:114.334500px;}
.y105{bottom:115.437000px;}
.ya1{bottom:118.396500px;}
.ybe{bottom:119.863500px;}
.y1fc{bottom:120.867000px;}
.y1e2{bottom:126.915000px;}
.y1b9{bottom:127.186500px;}
.y297{bottom:128.325000px;}
.y2e{bottom:128.875500px;}
.y263{bottom:129.265500px;}
.y16e{bottom:134.599500px;}
.y104{bottom:135.702000px;}
.ya0{bottom:138.660000px;}
.y18b{bottom:139.081500px;}
.ybd{bottom:140.128500px;}
.y1fb{bottom:141.130500px;}
.y12d{bottom:142.579500px;}
.y1e1{bottom:147.178500px;}
.y1b8{bottom:147.451500px;}
.y296{bottom:147.691500px;}
.y262{bottom:148.633500px;}
.y142{bottom:148.887000px;}
.y2d{bottom:149.139000px;}
.y8f{bottom:151.426500px;}
.y233{bottom:151.804500px;}
.y16d{bottom:154.863000px;}
.y103{bottom:155.965500px;}
.y9f{bottom:158.925000px;}
.ye2{bottom:159.276000px;}
.y18a{bottom:159.346500px;}
.ybc{bottom:160.392000px;}
.y1fa{bottom:161.395500px;}
.y12c{bottom:162.843000px;}
.y61{bottom:163.650000px;}
.y203{bottom:166.306500px;}
.y295{bottom:167.059500px;}
.y1e0{bottom:167.443500px;}
.y1b7{bottom:167.715000px;}
.y261{bottom:168.001500px;}
.y141{bottom:169.150500px;}
.y2c{bottom:169.404000px;}
.y8e{bottom:171.690000px;}
.y232{bottom:172.069500px;}
.y16c{bottom:175.126500px;}
.y102{bottom:176.230500px;}
.y9e{bottom:179.188500px;}
.ye1{bottom:179.541000px;}
.y189{bottom:179.610000px;}
.ybb{bottom:180.657000px;}
.y1f9{bottom:181.659000px;}
.y12b{bottom:183.108000px;}
.y60{bottom:183.913500px;}
.y13b{bottom:186.417000px;}
.y294{bottom:186.427500px;}
.y202{bottom:186.570000px;}
.y260{bottom:187.368000px;}
.y1b6{bottom:187.978500px;}
.y140{bottom:189.415500px;}
.y2b{bottom:189.667500px;}
.y8d{bottom:191.953500px;}
.y231{bottom:192.333000px;}
.y101{bottom:196.494000px;}
.y1df{bottom:196.674000px;}
.y16b{bottom:196.885500px;}
.y9d{bottom:199.452000px;}
.ye0{bottom:199.804500px;}
.y188{bottom:199.875000px;}
.yba{bottom:200.920500px;}
.y1f8{bottom:201.924000px;}
.y12a{bottom:203.371500px;}
.y5f{bottom:204.178500px;}
.y293{bottom:205.794000px;}
.y13a{bottom:206.680500px;}
.y25f{bottom:206.736000px;}
.y201{bottom:206.835000px;}
.y1b5{bottom:208.243500px;}
.y13f{bottom:209.679000px;}
.y2a{bottom:209.932500px;}
.y8c{bottom:212.218500px;}
.y230{bottom:212.598000px;}
.y100{bottom:216.757500px;}
.y16a{bottom:217.149000px;}
.y9c{bottom:219.717000px;}
.ydf{bottom:220.068000px;}
.y187{bottom:220.138500px;}
.yb9{bottom:221.184000px;}
.y1f7{bottom:222.187500px;}
.y129{bottom:223.635000px;}
.y5e{bottom:224.442000px;}
.y292{bottom:225.162000px;}
.y25e{bottom:226.102500px;}
.y139{bottom:226.945500px;}
.y200{bottom:227.098500px;}
.y1b4{bottom:228.507000px;}
.y13e{bottom:229.942500px;}
.y29{bottom:230.196000px;}
.y8b{bottom:232.482000px;}
.y1de{bottom:232.555500px;}
.y22f{bottom:232.861500px;}
.yff{bottom:237.022500px;}
.y169{bottom:237.414000px;}
.y9b{bottom:239.980500px;}
.yde{bottom:240.333000px;}
.y186{bottom:240.402000px;}
.yb8{bottom:241.449000px;}
.yc9{bottom:242.275500px;}
.y1f6{bottom:242.451000px;}
.y128{bottom:243.900000px;}
.y291{bottom:244.528500px;}
.y5d{bottom:244.707000px;}
.y25d{bottom:245.470500px;}
.y138{bottom:247.209000px;}
.y1ff{bottom:247.363500px;}
.y1b3{bottom:248.772000px;}
.y1dd{bottom:250.156500px;}
.y28{bottom:250.459500px;}
.y8a{bottom:252.747000px;}
.y22e{bottom:253.125000px;}
.yfe{bottom:257.286000px;}
.y168{bottom:257.677500px;}
.y9a{bottom:260.245500px;}
.ydd{bottom:260.596500px;}
.yb7{bottom:261.712500px;}
.yc8{bottom:262.539000px;}
.y1f5{bottom:262.716000px;}
.y290{bottom:263.896500px;}
.y25c{bottom:264.838500px;}
.y5c{bottom:264.970500px;}
.y13d{bottom:265.150500px;}
.y127{bottom:265.657500px;}
.y1fe{bottom:267.627000px;}
.y1b2{bottom:269.035500px;}
.y89{bottom:273.010500px;}
.y22d{bottom:273.390000px;}
.y137{bottom:276.439500px;}
.yfd{bottom:277.551000px;}
.y185{bottom:277.554000px;}
.y167{bottom:277.942500px;}
.y27{bottom:279.690000px;}
.y99{bottom:280.509000px;}
.ydc{bottom:280.861500px;}
.yb6{bottom:281.977500px;}
.yc7{bottom:282.804000px;}
.y1f4{bottom:282.979500px;}
.y28f{bottom:283.264500px;}
.y25b{bottom:284.205000px;}
.y5b{bottom:285.234000px;}
.y126{bottom:285.922500px;}
.y1dc{bottom:287.307000px;}
.y1b1{bottom:289.299000px;}
.y88{bottom:293.274000px;}
.y22c{bottom:293.653500px;}
.yfc{bottom:297.814500px;}
.y166{bottom:298.206000px;}
.y13c{bottom:300.151500px;}
.y98{bottom:300.772500px;}
.ydb{bottom:301.125000px;}
.yb5{bottom:302.241000px;}
.y1fd{bottom:302.628000px;}
.y28e{bottom:302.631000px;}
.yc6{bottom:303.067500px;}
.y1f3{bottom:303.244500px;}
.y25a{bottom:303.573000px;}
.y5a{bottom:305.499000px;}
.y125{bottom:306.186000px;}
.y1b0{bottom:309.564000px;}
.y136{bottom:311.259000px;}
.y87{bottom:313.539000px;}
.y22b{bottom:313.918500px;}
.y184{bottom:314.704500px;}
.y1db{bottom:317.703000px;}
.yfb{bottom:318.078000px;}
.y165{bottom:318.469500px;}
.y97{bottom:321.037500px;}
.yda{bottom:321.388500px;}
.y28d{bottom:321.999000px;}
.yb4{bottom:322.504500px;}
.y259{bottom:322.939500px;}
.yc5{bottom:323.332500px;}
.y1f2{bottom:323.508000px;}
.y59{bottom:325.762500px;}
.y124{bottom:326.451000px;}
.y1af{bottom:329.827500px;}
.y135{bottom:331.524000px;}
.y86{bottom:333.802500px;}
.y22a{bottom:334.182000px;}
.y183{bottom:334.968000px;}
.y1da{bottom:337.966500px;}
.yfa{bottom:338.343000px;}
.y164{bottom:338.734500px;}
.y28c{bottom:341.367000px;}
.yd9{bottom:341.653500px;}
.y258{bottom:342.307500px;}
.yb3{bottom:342.769500px;}
.yc4{bottom:343.596000px;}
.y1f1{bottom:343.771500px;}
.y58{bottom:346.027500px;}
.y123{bottom:346.714500px;}
.y1ae{bottom:350.092500px;}
.y134{bottom:351.787500px;}
.y85{bottom:354.067500px;}
.y229{bottom:354.445500px;}
.y96{bottom:356.037000px;}
.y26{bottom:356.098500px;}
.y1d9{bottom:358.231500px;}
.yf9{bottom:358.606500px;}
.y163{bottom:358.998000px;}
.y28b{bottom:360.733500px;}
.y257{bottom:361.675500px;}
.yd8{bottom:361.917000px;}
.yb2{bottom:363.033000px;}
.yc3{bottom:363.859500px;}
.y1f0{bottom:364.036500px;}
.y182{bottom:365.364000px;}
.y57{bottom:366.291000px;}
.y122{bottom:366.978000px;}
.y1ad{bottom:370.356000px;}
.y133{bottom:372.051000px;}
.y84{bottom:374.331000px;}
.y228{bottom:374.710500px;}
.y25{bottom:376.363500px;}
.y1d8{bottom:378.495000px;}
.yf8{bottom:378.871500px;}
.y162{bottom:379.263000px;}
.y28a{bottom:380.101500px;}
.y256{bottom:381.042000px;}
.yd7{bottom:382.182000px;}
.yb1{bottom:383.298000px;}
.yc2{bottom:384.124500px;}
.y1ef{bottom:384.300000px;}
.y181{bottom:385.629000px;}
.y56{bottom:386.554500px;}
.y121{bottom:387.243000px;}
.y1ac{bottom:390.619500px;}
.y132{bottom:392.316000px;}
.y83{bottom:394.594500px;}
.y227{bottom:394.974000px;}
.y1d7{bottom:398.760000px;}
.yf7{bottom:399.135000px;}
.y289{bottom:399.468000px;}
.y161{bottom:399.526500px;}
.y255{bottom:400.410000px;}
.yd6{bottom:402.445500px;}
.yb0{bottom:403.561500px;}
.yc1{bottom:404.388000px;}
.y1ee{bottom:404.565000px;}
.y180{bottom:405.892500px;}
.y55{bottom:406.819500px;}
.y120{bottom:407.506500px;}
.y1ab{bottom:410.884500px;}
.y131{bottom:412.579500px;}
.y24{bottom:414.559500px;}
.y82{bottom:414.859500px;}
.y226{bottom:415.239000px;}
.y288{bottom:418.836000px;}
.y1d6{bottom:419.023500px;}
.yf6{bottom:419.398500px;}
.y254{bottom:419.776500px;}
.y160{bottom:419.790000px;}
.yd5{bottom:422.709000px;}
.yaf{bottom:423.825000px;}
.yc0{bottom:424.653000px;}
.y1ed{bottom:424.828500px;}
.y17f{bottom:426.157500px;}
.y54{bottom:427.083000px;}
.y11f{bottom:427.771500px;}
.y1aa{bottom:431.148000px;}
.y130{bottom:432.844500px;}
.y23{bottom:434.824500px;}
.y81{bottom:435.123000px;}
.y225{bottom:435.502500px;}
.y287{bottom:438.204000px;}
.y253{bottom:439.144500px;}
.y1d5{bottom:439.287000px;}
.yf5{bottom:439.663500px;}
.yd4{bottom:442.974000px;}
.yae{bottom:444.090000px;}
.y1ec{bottom:445.092000px;}
.y17e{bottom:446.421000px;}
.y53{bottom:447.348000px;}
.y11e{bottom:449.529000px;}
.y1a9{bottom:451.413000px;}
.y12f{bottom:453.108000px;}
.y22{bottom:455.088000px;}
.y80{bottom:455.388000px;}
.y224{bottom:455.766000px;}
.y286{bottom:457.570500px;}
.y15f{bottom:457.987500px;}
.y252{bottom:458.512500px;}
.y1d4{bottom:459.552000px;}
.ybf{bottom:459.652500px;}
.yf4{bottom:459.927000px;}
.yd3{bottom:463.237500px;}
.yad{bottom:464.353500px;}
.y1eb{bottom:465.357000px;}
.y17d{bottom:466.684500px;}
.y52{bottom:467.611500px;}
.y11d{bottom:469.794000px;}
.y1a8{bottom:471.676500px;}
.y21{bottom:475.351500px;}
.y7f{bottom:475.651500px;}
.y223{bottom:476.031000px;}
.y285{bottom:476.938500px;}
.y251{bottom:477.879000px;}
.y15e{bottom:478.251000px;}
.y1d3{bottom:479.815500px;}
.yf3{bottom:480.192000px;}
.yd2{bottom:483.502500px;}
.yac{bottom:484.618500px;}
.y1ea{bottom:485.620500px;}
.y17c{bottom:486.949500px;}
.y51{bottom:487.875000px;}
.y12e{bottom:488.109000px;}
.y11c{bottom:490.057500px;}
.y1a7{bottom:491.940000px;}
.y20{bottom:495.616500px;}
.y7e{bottom:495.915000px;}
.y222{bottom:496.294500px;}
.y284{bottom:496.305000px;}
.y250{bottom:497.247000px;}
.y15d{bottom:498.516000px;}
.yf2{bottom:500.455500px;}
.yd1{bottom:503.766000px;}
.yab{bottom:504.882000px;}
.y1e9{bottom:505.885500px;}
.y17b{bottom:507.213000px;}
.y50{bottom:508.140000px;}
.y11b{bottom:510.321000px;}
.y1a6{bottom:512.205000px;}
.y283{bottom:515.673000px;}
.y1f{bottom:515.880000px;}
.y7d{bottom:516.180000px;}
.y221{bottom:516.558000px;}
.y24f{bottom:516.613500px;}
.y1d2{bottom:516.966000px;}
.yf1{bottom:520.719000px;}
.yd0{bottom:524.029500px;}
.yaa{bottom:525.145500px;}
.y1e8{bottom:526.149000px;}
.y17a{bottom:527.478000px;}
.y4f{bottom:528.403500px;}
.y15c{bottom:529.240500px;}
.y11a{bottom:530.586000px;}
.y1a5{bottom:532.468500px;}
.y282{bottom:535.041000px;}
.y24e{bottom:535.981500px;}
.y1e{bottom:536.145000px;}
.y7c{bottom:536.443500px;}
.y220{bottom:536.823000px;}
.ycf{bottom:544.294500px;}
.ya9{bottom:545.410500px;}
.y1e7{bottom:546.412500px;}
.y179{bottom:547.741500px;}
.y4e{bottom:548.667000px;}
.y15b{bottom:549.504000px;}
.y119{bottom:550.849500px;}
.yf0{bottom:551.515500px;}
.y1a4{bottom:552.733500px;}
.y1d1{bottom:554.118000px;}
.y281{bottom:554.407500px;}
.y24d{bottom:555.349500px;}
.y1d{bottom:556.408500px;}
.y7b{bottom:556.708500px;}
.y21f{bottom:557.086500px;}
.yef{bottom:560.721000px;}
.yce{bottom:564.558000px;}
.ya8{bottom:565.674000px;}
.y1e6{bottom:566.677500px;}
.y178{bottom:568.005000px;}
.y4d{bottom:568.932000px;}
.y15a{bottom:569.769000px;}
.y118{bottom:571.114500px;}
.y1a3{bottom:572.997000px;}
.y280{bottom:573.775500px;}
.y1d0{bottom:574.381500px;}
.y24c{bottom:574.716000px;}
.y1c{bottom:576.672000px;}
.y7a{bottom:576.972000px;}
.y21e{bottom:577.351500px;}
.ycd{bottom:584.823000px;}
.ya7{bottom:585.939000px;}
.y177{bottom:588.270000px;}
.y4c{bottom:589.195500px;}
.y159{bottom:590.032500px;}
.y117{bottom:591.378000px;}
.y27f{bottom:593.142000px;}
.y1a2{bottom:593.260500px;}
.y24b{bottom:594.084000px;}
.y1cf{bottom:594.646500px;}
.y1b{bottom:596.937000px;}
.y79{bottom:597.235500px;}
.y21d{bottom:597.615000px;}
.yee{bottom:600.493500px;}
.y1e5{bottom:601.677000px;}
.ycc{bottom:605.086500px;}
.ya6{bottom:606.202500px;}
.y176{bottom:608.533500px;}
.y4b{bottom:609.460500px;}
.y158{bottom:610.297500px;}
.y27e{bottom:612.510000px;}
.y24a{bottom:613.450500px;}
.y1a1{bottom:613.525500px;}
.y1a{bottom:617.200500px;}
.y78{bottom:617.500500px;}
.y21c{bottom:617.878500px;}
.yed{bottom:620.758500px;}
.ycb{bottom:625.350000px;}
.ya5{bottom:626.466000px;}
.y116{bottom:626.586000px;}
.y1ce{bottom:628.473000px;}
.y175{bottom:628.798500px;}
.y4a{bottom:629.724000px;}
.y157{bottom:630.561000px;}
.y27d{bottom:631.878000px;}
.y249{bottom:632.818500px;}
.y1a0{bottom:633.789000px;}
.y19{bottom:637.465500px;}
.y77{bottom:637.764000px;}
.y21b{bottom:638.143500px;}
.yec{bottom:641.022000px;}
.y1cd{bottom:644.728500px;}
.ya4{bottom:646.731000px;}
.y115{bottom:646.849500px;}
.y174{bottom:649.062000px;}
.y49{bottom:649.987500px;}
.y156{bottom:650.824500px;}
.y27c{bottom:651.244500px;}
.y248{bottom:652.186500px;}
.y19f{bottom:654.054000px;}
.y18{bottom:657.729000px;}
.y76{bottom:658.029000px;}
.y21a{bottom:658.407000px;}
.yca{bottom:660.351000px;}
.yeb{bottom:661.285500px;}
.ya3{bottom:666.994500px;}
.y114{bottom:667.114500px;}
.y173{bottom:669.325500px;}
.y48{bottom:670.252500px;}
.y27b{bottom:670.612500px;}
.y155{bottom:671.089500px;}
.y247{bottom:671.553000px;}
.y19e{bottom:674.317500px;}
.y17{bottom:677.992500px;}
.y75{bottom:678.292500px;}
.y219{bottom:678.672000px;}
.yea{bottom:681.550500px;}
.y1cc{bottom:681.879000px;}
.y113{bottom:687.378000px;}
.y172{bottom:689.590500px;}
.y27a{bottom:689.979000px;}
.y47{bottom:690.516000px;}
.y246{bottom:690.921000px;}
.y154{bottom:692.848500px;}
.y19d{bottom:694.581000px;}
.ya2{bottom:696.225000px;}
.y16{bottom:698.257500px;}
.y74{bottom:698.556000px;}
.y218{bottom:698.935500px;}
.ye9{bottom:701.814000px;}
.y1cb{bottom:702.144000px;}
.y112{bottom:707.643000px;}
.y279{bottom:709.347000px;}
.y171{bottom:709.854000px;}
.y245{bottom:710.287500px;}
.y46{bottom:710.781000px;}
.y153{bottom:713.112000px;}
.y19c{bottom:714.846000px;}
.y73{bottom:718.821000px;}
.y217{bottom:719.199000px;}
.ye8{bottom:722.077500px;}
.y1ca{bottom:722.407500px;}
.y111{bottom:727.906500px;}
.y278{bottom:728.715000px;}
.y244{bottom:729.655500px;}
.y170{bottom:730.119000px;}
.y45{bottom:731.044500px;}
.y152{bottom:733.375500px;}
.y13{bottom:733.664964px;}
.y12{bottom:734.058000px;}
.y19b{bottom:735.109500px;}
.y72{bottom:739.084500px;}
.y216{bottom:739.464000px;}
.ye7{bottom:742.342500px;}
.y1c9{bottom:742.671000px;}
.y277{bottom:748.081500px;}
.y110{bottom:748.170000px;}
.y243{bottom:749.023500px;}
.y44{bottom:751.308000px;}
.y151{bottom:753.640500px;}
.y19a{bottom:755.374500px;}
.y71{bottom:759.349500px;}
.y215{bottom:759.727500px;}
.ye6{bottom:762.606000px;}
.y276{bottom:767.449500px;}
.y242{bottom:768.390000px;}
.y43{bottom:771.573000px;}
.y11{bottom:773.430000px;}
.y150{bottom:773.904000px;}
.y199{bottom:775.638000px;}
.y10f{bottom:777.400500px;}
.y70{bottom:779.613000px;}
.y1c8{bottom:779.908500px;}
.y214{bottom:779.992500px;}
.ye5{bottom:782.871000px;}
.y1c4{bottom:785.382000px;}
.y275{bottom:786.816000px;}
.y241{bottom:787.758000px;}
.y1c3{bottom:789.864000px;}
.y42{bottom:791.836500px;}
.y14f{bottom:794.169000px;}
.y1c2{bottom:794.347500px;}
.y198{bottom:795.901500px;}
.y10{bottom:796.470000px;}
.y1c1{bottom:798.831000px;}
.y6f{bottom:799.876500px;}
.y213{bottom:800.256000px;}
.ye4{bottom:803.134500px;}
.y1c0{bottom:803.314500px;}
.y1c7{bottom:804.225000px;}
.y274{bottom:806.184000px;}
.y240{bottom:807.124500px;}
.y1bf{bottom:807.798000px;}
.yf{bottom:809.745000px;}
.y41{bottom:812.101500px;}
.y10e{bottom:812.220000px;}
.y14e{bottom:814.432500px;}
.y197{bottom:816.166500px;}
.y1ba{bottom:817.510500px;}
.y6e{bottom:820.141500px;}
.y212{bottom:820.519500px;}
.ye3{bottom:823.398000px;}
.y273{bottom:825.552000px;}
.y23f{bottom:826.492500px;}
.y1c6{bottom:828.541500px;}
.y40{bottom:832.365000px;}
.y10d{bottom:832.485000px;}
.ye{bottom:832.783500px;}
.y14d{bottom:834.696000px;}
.y196{bottom:836.430000px;}
.y1be{bottom:839.179500px;}
.y6d{bottom:840.405000px;}
.y211{bottom:840.784500px;}
.y95{bottom:843.663000px;}
.y272{bottom:844.918500px;}
.y23e{bottom:845.860500px;}
.yd{bottom:846.058500px;}
.y1bd{bottom:848.146500px;}
.y3f{bottom:852.628500px;}
.y1bc{bottom:852.630000px;}
.y10c{bottom:852.748500px;}
.y1c5{bottom:852.859500px;}
.y14c{bottom:854.961000px;}
.y195{bottom:856.695000px;}
.y1bb{bottom:857.112000px;}
.y6c{bottom:860.668500px;}
.y94{bottom:863.926500px;}
.y271{bottom:864.286500px;}
.y23d{bottom:865.227000px;}
.yc{bottom:869.097000px;}
.y210{bottom:870.015000px;}
.y3e{bottom:872.893500px;}
.y10b{bottom:873.013500px;}
.y14b{bottom:875.224500px;}
.y194{bottom:876.958500px;}
.y6b{bottom:880.933500px;}
.yb{bottom:882.372000px;}
.y270{bottom:883.653000px;}
.y93{bottom:884.191500px;}
.y23c{bottom:884.595000px;}
.y3d{bottom:893.157000px;}
.y10a{bottom:893.277000px;}
.y14a{bottom:895.488000px;}
.y193{bottom:897.222000px;}
.ya{bottom:900.529500px;}
.y6a{bottom:901.197000px;}
.y26f{bottom:903.021000px;}
.y92{bottom:904.455000px;}
.y29c{bottom:910.110000px;}
.y20f{bottom:912.663300px;}
.y23b{bottom:912.928500px;}
.y3c{bottom:913.422000px;}
.y109{bottom:913.540500px;}
.y149{bottom:915.753000px;}
.y192{bottom:917.487000px;}
.y26e{bottom:922.389000px;}
.y9{bottom:923.568000px;}
.y91{bottom:924.718500px;}
.y20d{bottom:927.457950px;}
.y29b{bottom:929.478000px;}
.y69{bottom:930.427500px;}
.y3b{bottom:933.685500px;}
.y108{bottom:933.805500px;}
.y148{bottom:936.016500px;}
.y26d{bottom:941.755500px;}
.y20e{bottom:942.252600px;}
.y90{bottom:944.983500px;}
.y8{bottom:945.786000px;}
.y29a{bottom:948.844500px;}
.y299{bottom:949.249500px;}
.y191{bottom:951.663000px;}
.y23a{bottom:952.380000px;}
.y3a{bottom:953.949000px;}
.y147{bottom:956.281500px;}
.y190{bottom:960.868500px;}
.y26c{bottom:961.123500px;}
.y107{bottom:963.036000px;}
.y20c{bottom:963.798600px;}
.y68{bottom:965.247000px;}
.y7{bottom:966.049500px;}
.y1e4{bottom:967.695000px;}
.y39{bottom:974.214000px;}
.y146{bottom:976.545000px;}
.y106{bottom:979.923000px;}
.y26b{bottom:980.490000px;}
.y1e3{bottom:980.980500px;}
.y20b{bottom:985.343250px;}
.y67{bottom:985.512000px;}
.y38{bottom:994.477500px;}
.y145{bottom:996.808500px;}
.y26a{bottom:999.858000px;}
.y20a{bottom:1000.137900px;}
.y239{bottom:1000.710000px;}
.y18f{bottom:1001.232000px;}
.y66{bottom:1005.775500px;}
.y6{bottom:1010.451000px;}
.y37{bottom:1014.742500px;}
.y209{bottom:1014.932550px;}
.y238{bottom:1015.908000px;}
.y144{bottom:1017.073500px;}
.y269{bottom:1019.226000px;}
.y18e{bottom:1021.497000px;}
.y65{bottom:1026.039000px;}
.y208{bottom:1029.727200px;}
.y237{bottom:1031.106000px;}
.y36{bottom:1035.006000px;}
.y143{bottom:1037.337000px;}
.y268{bottom:1038.592500px;}
.y5{bottom:1040.848500px;}
.y18d{bottom:1041.760500px;}
.y207{bottom:1044.521850px;}
.y64{bottom:1046.304000px;}
.y35{bottom:1055.269500px;}
.y267{bottom:1057.960500px;}
.y236{bottom:1061.502000px;}
.y206{bottom:1066.067850px;}
.y63{bottom:1066.567500px;}
.y4{bottom:1071.244500px;}
.y34{bottom:1075.534500px;}
.y266{bottom:1077.327000px;}
.y18c{bottom:1078.911000px;}
.y235{bottom:1085.667000px;}
.y62{bottom:1086.832500px;}
.y205{bottom:1087.612500px;}
.y33{bottom:1095.798000px;}
.y265{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y234{bottom:1100.865000px;}
.y32{bottom:1116.063000px;}
.y204{bottom:1117.543500px;}
.y1{bottom:1137.954000px;}
.y31{bottom:1168.366500px;}
.h1a{height:2.391024px;}
.h9{height:25.508090px;}
.h11{height:28.811839px;}
.hb{height:33.112997px;}
.ha{height:34.199443px;}
.h20{height:34.861363px;}
.h7{height:37.993262px;}
.h14{height:38.017282px;}
.h22{height:38.734848px;}
.h23{height:39.488026px;}
.h1c{height:41.250077px;}
.hc{height:43.038432px;}
.he{height:43.421105px;}
.h4{height:43.875290px;}
.h21{height:43.964052px;}
.hf{height:46.714950px;}
.h8{height:48.848947px;}
.h2{height:50.931027px;}
.h1b{height:52.592177px;}
.hd{height:54.276245px;}
.h6{height:54.405312px;}
.h1d{height:54.753936px;}
.h16{height:54.790714px;}
.h15{height:54.796714px;}
.h10{height:55.041326px;}
.h12{height:68.769024px;}
.h3{height:69.505289px;}
.h5{height:77.469696px;}
.h17{height:86.709024px;}
.h1e{height:104.637024px;}
.h13{height:105.591024px;}
.h1f{height:107.418245px;}
.h18{height:123.531024px;}
.h19{height:214.599024px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:211.537947px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:29.274117px;}
.x2{left:57.111683px;}
.x19{left:112.561500px;}
.x3{left:113.754000px;}
.x1{left:114.802500px;}
.x6{left:122.110500px;}
.x4{left:123.307500px;}
.x9e{left:130.699500px;}
.x59{left:132.030000px;}
.xbf{left:139.549500px;}
.xd2{left:142.036500px;}
.x103{left:143.248500px;}
.x5{left:146.170500px;}
.xb8{left:156.504000px;}
.x100{left:158.235000px;}
.xc0{left:159.394500px;}
.xf9{left:162.477000px;}
.xb9{left:163.975500px;}
.xd3{left:166.447500px;}
.xba{left:167.692500px;}
.x17{left:171.387000px;}
.x30{left:173.098500px;}
.x107{left:174.637500px;}
.x28{left:175.710000px;}
.xb0{left:178.000500px;}
.xbb{left:179.070000px;}
.x74{left:182.086500px;}
.x18{left:186.331500px;}
.x31{left:188.043000px;}
.x9{left:190.113000px;}
.xd4{left:192.148500px;}
.x95{left:195.352500px;}
.x75{left:197.029500px;}
.x51{left:201.330000px;}
.xb5{left:203.175000px;}
.x9a{left:205.719000px;}
.x104{left:208.041000px;}
.x96{left:210.295500px;}
.x9d{left:211.824000px;}
.x38{left:215.596500px;}
.xa{left:216.790500px;}
.x66{left:218.790000px;}
.xc1{left:219.835500px;}
.x88{left:220.840500px;}
.x39{left:223.068000px;}
.x102{left:226.791000px;}
.x67{left:233.733000px;}
.x89{left:235.785000px;}
.x32{left:238.906500px;}
.xc2{left:244.246500px;}
.xab{left:247.501500px;}
.xb7{left:249.349500px;}
.xc3{left:250.858500px;}
.x33{left:253.851000px;}
.x5a{left:255.765000px;}
.x106{left:256.867500px;}
.x10c{left:258.028500px;}
.xd6{left:263.028000px;}
.x82{left:265.653000px;}
.x5f{left:267.874500px;}
.xad{left:270.570000px;}
.xf6{left:272.875500px;}
.x5d{left:276.949500px;}
.x70{left:278.701500px;}
.x26{left:280.105500px;}
.x105{left:281.449950px;}
.x4f{left:283.785000px;}
.xd7{left:289.153500px;}
.x68{left:290.820000px;}
.x5e{left:291.894000px;}
.x22{left:293.842500px;}
.x27{left:295.050000px;}
.xa2{left:296.473500px;}
.x50{left:298.728000px;}
.xd8{left:301.483500px;}
.x69{left:305.763000px;}
.x23{left:308.785500px;}
.xf2{left:312.166500px;}
.xf0{left:316.213500px;}
.xfe{left:318.358500px;}
.x29{left:320.509500px;}
.xf3{left:321.910500px;}
.x97{left:323.445000px;}
.x3a{left:326.890500px;}
.xcb{left:328.060500px;}
.x44{left:329.848500px;}
.xf1{left:330.930000px;}
.xe3{left:333.759000px;}
.x2a{left:335.454000px;}
.xb{left:336.561000px;}
.x98{left:338.388000px;}
.x56{left:340.858500px;}
.x34{left:342.385500px;}
.xc{left:344.032500px;}
.xa3{left:346.228500px;}
.xfa{left:348.612000px;}
.xa4{left:352.798500px;}
.x3d{left:358.704000px;}
.xe4{left:364.882500px;}
.x35{left:367.281000px;}
.xea{left:369.766500px;}
.xf{left:372.561000px;}
.x3e{left:373.648500px;}
.xff{left:374.959500px;}
.x83{left:377.340000px;}
.x8a{left:378.622500px;}
.x10{left:380.032500px;}
.xa0{left:382.527000px;}
.x4a{left:384.012000px;}
.x79{left:387.909000px;}
.x84{left:392.283000px;}
.x8b{left:393.565500px;}
.xf4{left:395.617500px;}
.x4b{left:398.956500px;}
.x52{left:401.191500px;}
.xf5{left:404.938500px;}
.xd9{left:407.308500px;}
.x24{left:409.657500px;}
.x60{left:410.742000px;}
.xda{left:411.754500px;}
.xae{left:414.970500px;}
.x53{left:416.136000px;}
.x61{left:418.213500px;}
.x85{left:421.347000px;}
.x25{left:424.600500px;}
.xdb{left:426.471000px;}
.xaf{left:429.915000px;}
.x6e{left:434.454000px;}
.x86{left:436.290000px;}
.xb6{left:438.423000px;}
.xce{left:440.853000px;}
.xf7{left:442.257000px;}
.xe0{left:445.083000px;}
.x6f{left:449.398500px;}
.x71{left:450.618000px;}
.x36{left:453.825000px;}
.xe1{left:455.646000px;}
.xf8{left:457.993500px;}
.x9b{left:459.984000px;}
.x41{left:463.941000px;}
.x3b{left:465.841500px;}
.x1a{left:467.877000px;}
.x1c{left:468.886500px;}
.x2b{left:469.971000px;}
.xd5{left:472.450500px;}
.x7a{left:474.517500px;}
.x76{left:475.914000px;}
.x2c{left:477.444000px;}
.x42{left:478.885500px;}
.x3c{left:480.784500px;}
.x1b{left:482.821500px;}
.x1d{left:483.831000px;}
.x91{left:486.568500px;}
.x7b{left:489.462000px;}
.x77{left:490.858500px;}
.xcc{left:494.580000px;}
.xa7{left:496.303500px;}
.x43{left:497.517000px;}
.x93{left:499.030500px;}
.x92{left:501.513000px;}
.xa8{left:502.974000px;}
.x5b{left:507.499500px;}
.x20{left:512.028000px;}
.x94{left:513.975000px;}
.x54{left:517.014000px;}
.xc4{left:518.631000px;}
.xb3{left:520.173000px;}
.x5c{left:522.444000px;}
.xc5{left:524.631000px;}
.x21{left:526.972500px;}
.x55{left:531.958500px;}
.xb4{left:535.117500px;}
.xcf{left:536.563500px;}
.xeb{left:537.907500px;}
.xfb{left:543.327000px;}
.xed{left:544.863000px;}
.xac{left:546.517500px;}
.xec{left:548.893500px;}
.x99{left:550.729500px;}
.x64{left:556.299000px;}
.x3f{left:557.349000px;}
.x6a{left:559.062000px;}
.xbc{left:560.580000px;}
.x47{left:564.550500px;}
.x6b{left:566.533500px;}
.x7e{left:568.419000px;}
.x65{left:571.243500px;}
.x40{left:572.293500px;}
.xee{left:576.265500px;}
.x13{left:577.272000px;}
.xbd{left:580.041000px;}
.x62{left:581.481000px;}
.x7f{left:583.363500px;}
.x14{left:584.743500px;}
.x2e{left:586.261500px;}
.xef{left:588.490500px;}
.xe2{left:590.449500px;}
.x63{left:596.425500px;}
.xc6{left:599.889000px;}
.x2f{left:601.206000px;}
.x10b{left:604.107000px;}
.x80{left:607.089000px;}
.xfc{left:611.224500px;}
.x9f{left:612.288000px;}
.xdc{left:614.203500px;}
.xe8{left:618.358500px;}
.xdd{left:621.025500px;}
.x81{left:622.032000px;}
.x7c{left:623.757000px;}
.x48{left:626.110500px;}
.x8c{left:627.111000px;}
.xc7{left:630.933000px;}
.xe9{left:634.557000px;}
.x58{left:635.674500px;}
.x1e{left:637.068000px;}
.x7d{left:638.700000px;}
.x49{left:641.055000px;}
.x4c{left:642.144000px;}
.x45{left:643.177500px;}
.x1f{left:644.539500px;}
.x8d{left:645.732000px;}
.xc8{left:647.895000px;}
.x4d{left:649.617000px;}
.x37{left:651.075000px;}
.xa9{left:654.876000px;}
.x46{left:658.122000px;}
.x8e{left:660.675000px;}
.xa1{left:661.710000px;}
.xb1{left:662.904000px;}
.xd1{left:664.425000px;}
.xcd{left:668.493000px;}
.xd0{left:672.400500px;}
.xd{left:677.242500px;}
.xa5{left:679.624500px;}
.x108{left:680.658000px;}
.xe{left:684.714000px;}
.xbe{left:686.517000px;}
.x10a{left:687.610500px;}
.xc9{left:688.998000px;}
.xb2{left:691.912500px;}
.xfd{left:693.471000px;}
.x57{left:700.317000px;}
.x7{left:701.339982px;}
.x8f{left:704.484000px;}
.x6c{left:706.402500px;}
.x109{left:707.556000px;}
.x15{left:709.801500px;}
.x6d{left:713.874000px;}
.xa6{left:715.417500px;}
.x16{left:717.273000px;}
.x90{left:719.428500px;}
.xca{left:721.606500px;}
.x9c{left:728.431500px;}
.xde{left:732.858000px;}
.xe5{left:735.189000px;}
.x72{left:737.494500px;}
.xaa{left:744.154500px;}
.x101{left:750.390000px;}
.x73{left:752.439000px;}
.x2d{left:756.895500px;}
.x4e{left:758.091000px;}
.xe6{left:759.600000px;}
.x11{left:764.620500px;}
.xe7{left:766.162500px;}
.x87{left:771.091500px;}
.x12{left:772.092000px;}
.x78{left:773.109000px;}
.xdf{left:777.064500px;}
@media print{
.vc{vertical-align:-74.949333pt;}
.v2{vertical-align:-17.354667pt;}
.ve{vertical-align:-11.120000pt;}
.v4{vertical-align:-9.909333pt;}
.v3{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:9.909333pt;}
.v1{vertical-align:19.285333pt;}
.v5{vertical-align:21.941333pt;}
.va{vertical-align:24.762667pt;}
.v7{vertical-align:32.730667pt;}
.v12{vertical-align:39.221333pt;}
.vf{vertical-align:43.066667pt;}
.v10{vertical-align:46.757333pt;}
.v6{vertical-align:59.002667pt;}
.v9{vertical-align:74.949333pt;}
.v11{vertical-align:90.885333pt;}
.vb{vertical-align:107.680000pt;}
.vd{vertical-align:188.629333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls99{letter-spacing:0.004267pt;}
.ls52{letter-spacing:0.380773pt;}
.ls90{letter-spacing:0.398212pt;}
.ls93{letter-spacing:0.403012pt;}
.ls48{letter-spacing:0.482502pt;}
.ls1f{letter-spacing:0.487835pt;}
.ls67{letter-spacing:0.501841pt;}
.ls70{letter-spacing:0.501867pt;}
.ls71{letter-spacing:0.502400pt;}
.ls6f{letter-spacing:0.507174pt;}
.ls68{letter-spacing:0.507200pt;}
.ls8e{letter-spacing:0.526356pt;}
.ls3b{letter-spacing:0.596214pt;}
.ls28{letter-spacing:0.601548pt;}
.ls82{letter-spacing:0.635357pt;}
.ls89{letter-spacing:0.636951pt;}
.ls6b{letter-spacing:0.637762pt;}
.ls6c{letter-spacing:0.659733pt;}
.ls3a{letter-spacing:0.664259pt;}
.ls77{letter-spacing:0.665067pt;}
.ls18{letter-spacing:0.729548pt;}
.ls65{letter-spacing:0.784508pt;}
.ls2f{letter-spacing:0.785788pt;}
.ls6d{letter-spacing:0.789841pt;}
.ls4e{letter-spacing:0.792161pt;}
.ls51{letter-spacing:0.797116pt;}
.ls92{letter-spacing:0.833878pt;}
.ls8f{letter-spacing:0.838678pt;}
.ls7f{letter-spacing:0.883230pt;}
.ls64{letter-spacing:0.888259pt;}
.ls7a{letter-spacing:0.888563pt;}
.ls50{letter-spacing:0.907785pt;}
.ls1e{letter-spacing:1.006172pt;}
.ls12{letter-spacing:1.009547pt;}
.ls46{letter-spacing:1.011505pt;}
.ls7{letter-spacing:1.133683pt;}
.ls24{letter-spacing:1.165593pt;}
.ls2d{letter-spacing:1.165897pt;}
.ls11{letter-spacing:1.168518pt;}
.ls13{letter-spacing:1.170926pt;}
.ls14{letter-spacing:1.171230pt;}
.ls16{letter-spacing:1.257548pt;}
.lsf{letter-spacing:1.262881pt;}
.ls7c{letter-spacing:1.311016pt;}
.ls54{letter-spacing:1.323185pt;}
.ls5e{letter-spacing:1.324951pt;}
.ls10{letter-spacing:1.325897pt;}
.ls3d{letter-spacing:1.326400pt;}
.ls74{letter-spacing:1.328347pt;}
.lse{letter-spacing:1.328518pt;}
.ls20{letter-spacing:1.331230pt;}
.ls2b{letter-spacing:1.331985pt;}
.ls3{letter-spacing:1.654338pt;}
.ls2c{letter-spacing:1.790881pt;}
.ls3f{letter-spacing:1.859733pt;}
.ls6e{letter-spacing:1.915200pt;}
.ls66{letter-spacing:1.920533pt;}
.ls72{letter-spacing:1.992429pt;}
.ls81{letter-spacing:2.164214pt;}
.ls3e{letter-spacing:2.169548pt;}
.ls47{letter-spacing:2.651733pt;}
.ls21{letter-spacing:2.657067pt;}
.ls25{letter-spacing:3.160838pt;}
.ls7d{letter-spacing:3.163174pt;}
.ls43{letter-spacing:3.166172pt;}
.ls5b{letter-spacing:3.187543pt;}
.ls55{letter-spacing:3.318400pt;}
.ls73{letter-spacing:3.587733pt;}
.ls15{letter-spacing:3.822172pt;}
.ls78{letter-spacing:3.824508pt;}
.ls3c{letter-spacing:3.825067pt;}
.ls17{letter-spacing:3.827505pt;}
.ls76{letter-spacing:8.217682pt;}
.ls80{letter-spacing:8.503452pt;}
.ls79{letter-spacing:9.503016pt;}
.ls35{letter-spacing:9.511121pt;}
.ls56{letter-spacing:9.512161pt;}
.ls7e{letter-spacing:9.516533pt;}
.ls45{letter-spacing:9.519207pt;}
.ls4d{letter-spacing:10.179985pt;}
.ls2e{letter-spacing:10.185318pt;}
.ls22{letter-spacing:10.316533pt;}
.lsb{letter-spacing:10.520506pt;}
.ls5{letter-spacing:10.626533pt;}
.ls1c{letter-spacing:10.934029pt;}
.ls33{letter-spacing:10.971362pt;}
.ls29{letter-spacing:10.995733pt;}
.ls9b{letter-spacing:11.457045pt;}
.ls4a{letter-spacing:11.593548pt;}
.ls41{letter-spacing:11.598881pt;}
.ls1a{letter-spacing:11.603096pt;}
.ls1b{letter-spacing:11.625874pt;}
.ls2a{letter-spacing:11.629762pt;}
.ls31{letter-spacing:11.635096pt;}
.ls32{letter-spacing:11.657874pt;}
.ls57{letter-spacing:11.785570pt;}
.ls9c{letter-spacing:11.943115pt;}
.ls95{letter-spacing:11.954133pt;}
.ls96{letter-spacing:11.959467pt;}
.ls61{letter-spacing:11.961570pt;}
.ls98{letter-spacing:11.993981pt;}
.ls42{letter-spacing:12.163096pt;}
.ls4b{letter-spacing:12.168429pt;}
.ls9a{letter-spacing:12.473558pt;}
.ls5d{letter-spacing:12.600429pt;}
.lsc{letter-spacing:13.070931pt;}
.ls1d{letter-spacing:13.211785pt;}
.ls37{letter-spacing:13.283467pt;}
.lsd{letter-spacing:13.336534pt;}
.ls9{letter-spacing:13.336601pt;}
.ls38{letter-spacing:13.338778pt;}
.lsa{letter-spacing:13.389734pt;}
.ls36{letter-spacing:13.485660pt;}
.ls8{letter-spacing:13.549136pt;}
.ls4f{letter-spacing:13.649067pt;}
.ls44{letter-spacing:13.654400pt;}
.ls97{letter-spacing:13.697088pt;}
.ls5a{letter-spacing:13.879618pt;}
.ls23{letter-spacing:13.881548pt;}
.ls19{letter-spacing:14.120838pt;}
.ls30{letter-spacing:14.158172pt;}
.ls4{letter-spacing:14.162285pt;}
.ls59{letter-spacing:14.214963pt;}
.ls58{letter-spacing:14.419096pt;}
.ls62{letter-spacing:14.600429pt;}
.ls94{letter-spacing:14.779441pt;}
.ls86{letter-spacing:15.230400pt;}
.ls84{letter-spacing:15.395096pt;}
.ls49{letter-spacing:15.533762pt;}
.ls26{letter-spacing:16.025548pt;}
.ls6a{letter-spacing:16.061762pt;}
.ls87{letter-spacing:16.084541pt;}
.ls27{letter-spacing:16.084800pt;}
.ls8b{letter-spacing:16.087756pt;}
.ls63{letter-spacing:16.128298pt;}
.ls88{letter-spacing:16.195985pt;}
.ls40{letter-spacing:16.595096pt;}
.ls4c{letter-spacing:16.618133pt;}
.ls83{letter-spacing:16.622400pt;}
.ls39{letter-spacing:16.633067pt;}
.ls8a{letter-spacing:18.193067pt;}
.ls75{letter-spacing:18.579505pt;}
.ls7b{letter-spacing:18.581841pt;}
.ls69{letter-spacing:18.584838pt;}
.ls60{letter-spacing:23.341762pt;}
.ls5c{letter-spacing:23.414908pt;}
.ls53{letter-spacing:25.073067pt;}
.ls5f{letter-spacing:25.865295pt;}
.ls0{letter-spacing:51.035733pt;}
.ls34{letter-spacing:51.233118pt;}
.ls1{letter-spacing:62.432533pt;}
.ls2{letter-spacing:64.314231pt;}
.ls85{letter-spacing:67.609067pt;}
.ls91{letter-spacing:384.797280pt;}
.ls8c{letter-spacing:475.994542pt;}
.ls8d{letter-spacing:495.809956pt;}
.ws105{word-spacing:-14.611813pt;}
.ws5b{word-spacing:-13.283467pt;}
.ws136{word-spacing:-11.955200pt;}
.ws86{word-spacing:-11.105013pt;}
.ws1b{word-spacing:-10.626800pt;}
.ws1{word-spacing:-10.095467pt;}
.ws10c{word-spacing:-4.782048pt;}
.wse5{word-spacing:-3.235346pt;}
.wse1{word-spacing:-3.230013pt;}
.ws64{word-spacing:-2.764334pt;}
.ws63{word-spacing:-2.762961pt;}
.wsbd{word-spacing:-2.665455pt;}
.wsbc{word-spacing:-2.656693pt;}
.ws160{word-spacing:-2.630144pt;}
.wsb1{word-spacing:-2.603559pt;}
.wsb2{word-spacing:-2.593798pt;}
.ws6b{word-spacing:-2.444158pt;}
.wsb0{word-spacing:-2.284756pt;}
.wsf4{word-spacing:-2.256854pt;}
.wsf5{word-spacing:-2.251000pt;}
.ws9e{word-spacing:-2.231622pt;}
.ws118{word-spacing:-2.178489pt;}
.ws44{word-spacing:-2.125355pt;}
.ws4a{word-spacing:-2.019087pt;}
.ws99{word-spacing:-1.965953pt;}
.ws18c{word-spacing:-1.912832pt;}
.ws70{word-spacing:-1.912819pt;}
.ws45{word-spacing:-1.859685pt;}
.ws7c{word-spacing:-1.806551pt;}
.ws2e{word-spacing:-1.700284pt;}
.ws4{word-spacing:-1.696326pt;}
.ws143{word-spacing:-1.673728pt;}
.wsab{word-spacing:-1.647150pt;}
.wsa9{word-spacing:-1.607343pt;}
.wsa8{word-spacing:-1.603269pt;}
.wsaa{word-spacing:-1.594016pt;}
.ws1c{word-spacing:-1.540882pt;}
.ws9d{word-spacing:-1.487748pt;}
.ws191{word-spacing:-1.434624pt;}
.ws34{word-spacing:-1.434614pt;}
.ws33{word-spacing:-1.402349pt;}
.ws35{word-spacing:-1.381481pt;}
.ws2f{word-spacing:-1.275213pt;}
.wse3{word-spacing:-1.222079pt;}
.ws3{word-spacing:-1.175671pt;}
.ws4f{word-spacing:-1.115811pt;}
.ws1d{word-spacing:-1.062677pt;}
.ws16f{word-spacing:-1.004237pt;}
.wsf9{word-spacing:-0.915373pt;}
.wsf8{word-spacing:-0.906286pt;}
.wsf7{word-spacing:-0.903276pt;}
.ws185{word-spacing:-0.878203pt;}
.ws186{word-spacing:-0.860774pt;}
.ws49{word-spacing:-0.743874pt;}
.ws18b{word-spacing:-0.717312pt;}
.ws14b{word-spacing:-0.669491pt;}
.ws1f{word-spacing:-0.637606pt;}
.ws17d{word-spacing:-0.621670pt;}
.ws13{word-spacing:-0.584473pt;}
.ws130{word-spacing:-0.573850pt;}
.ws2d{word-spacing:-0.531339pt;}
.ws174{word-spacing:-0.478208pt;}
.wsd0{word-spacing:-0.478205pt;}
.ws17e{word-spacing:-0.430387pt;}
.ws73{word-spacing:-0.425071pt;}
.ws4d{word-spacing:-0.387032pt;}
.ws4c{word-spacing:-0.382653pt;}
.ws4b{word-spacing:-0.371937pt;}
.ws150{word-spacing:-0.334746pt;}
.ws56{word-spacing:-0.318803pt;}
.wsa2{word-spacing:-0.296623pt;}
.wse7{word-spacing:-0.286956pt;}
.ws145{word-spacing:-0.286925pt;}
.wsd2{word-spacing:-0.270244pt;}
.wsa{word-spacing:-0.265669pt;}
.ws15b{word-spacing:-0.239104pt;}
.wsb4{word-spacing:-0.217694pt;}
.ws55{word-spacing:-0.214068pt;}
.ws6e{word-spacing:-0.213348pt;}
.ws5c{word-spacing:-0.212620pt;}
.ws8{word-spacing:-0.212535pt;}
.wscf{word-spacing:-0.203599pt;}
.wsc0{word-spacing:-0.201522pt;}
.ws14e{word-spacing:-0.191283pt;}
.wsf3{word-spacing:-0.183673pt;}
.wsf0{word-spacing:-0.178324pt;}
.ws82{word-spacing:-0.168001pt;}
.ws83{word-spacing:-0.163951pt;}
.ws37{word-spacing:-0.159402pt;}
.ws7a{word-spacing:-0.159033pt;}
.wsa3{word-spacing:-0.156107pt;}
.ws84{word-spacing:-0.155335pt;}
.wsaf{word-spacing:-0.155282pt;}
.ws15a{word-spacing:-0.143462pt;}
.wsc6{word-spacing:-0.131147pt;}
.wsa4{word-spacing:-0.129896pt;}
.wse{word-spacing:-0.106268pt;}
.ws12c{word-spacing:-0.099829pt;}
.ws146{word-spacing:-0.095642pt;}
.ws25{word-spacing:-0.072036pt;}
.ws87{word-spacing:-0.055366pt;}
.wsc{word-spacing:-0.053134pt;}
.ws137{word-spacing:-0.047821pt;}
.wsde{word-spacing:-0.040582pt;}
.wsee{word-spacing:-0.007698pt;}
.ws144{word-spacing:-0.006460pt;}
.ws15f{word-spacing:-0.006391pt;}
.wsc1{word-spacing:-0.006084pt;}
.wsdf{word-spacing:-0.005825pt;}
.ws182{word-spacing:-0.005564pt;}
.ws149{word-spacing:-0.005530pt;}
.ws140{word-spacing:-0.004241pt;}
.wsac{word-spacing:-0.004240pt;}
.wscb{word-spacing:-0.004140pt;}
.ws111{word-spacing:-0.003895pt;}
.ws165{word-spacing:-0.003430pt;}
.ws161{word-spacing:-0.003209pt;}
.ws1a{word-spacing:-0.002739pt;}
.ws92{word-spacing:-0.002641pt;}
.wsed{word-spacing:-0.002495pt;}
.ws13b{word-spacing:-0.001698pt;}
.ws5e{word-spacing:-0.001607pt;}
.ws142{word-spacing:-0.001152pt;}
.ws155{word-spacing:-0.001007pt;}
.wscc{word-spacing:-0.000739pt;}
.ws10b{word-spacing:-0.000718pt;}
.ws18a{word-spacing:-0.000717pt;}
.wsad{word-spacing:-0.000576pt;}
.ws13a{word-spacing:-0.000196pt;}
.ws0{word-spacing:0.000000pt;}
.wsd8{word-spacing:0.002084pt;}
.ws72{word-spacing:0.005845pt;}
.ws58{word-spacing:0.027764pt;}
.wsd3{word-spacing:0.028835pt;}
.ws6d{word-spacing:0.031980pt;}
.ws85{word-spacing:0.039937pt;}
.ws62{word-spacing:0.042879pt;}
.wsff{word-spacing:0.046817pt;}
.ws153{word-spacing:0.047821pt;}
.ws1e{word-spacing:0.048736pt;}
.ws5a{word-spacing:0.048948pt;}
.wsd{word-spacing:0.053134pt;}
.wsd5{word-spacing:0.058992pt;}
.wsd7{word-spacing:0.060921pt;}
.wsd6{word-spacing:0.062311pt;}
.wsfa{word-spacing:0.066784pt;}
.ws36{word-spacing:0.069741pt;}
.ws61{word-spacing:0.087448pt;}
.ws12f{word-spacing:0.095642pt;}
.ws19{word-spacing:0.106268pt;}
.ws71{word-spacing:0.107064pt;}
.wsca{word-spacing:0.112399pt;}
.wsc9{word-spacing:0.113501pt;}
.ws48{word-spacing:0.118525pt;}
.ws6c{word-spacing:0.120091pt;}
.wse4{word-spacing:0.125284pt;}
.ws94{word-spacing:0.129822pt;}
.ws100{word-spacing:0.131291pt;}
.ws101{word-spacing:0.132512pt;}
.wsc8{word-spacing:0.136441pt;}
.ws148{word-spacing:0.143462pt;}
.ws59{word-spacing:0.144990pt;}
.ws166{word-spacing:0.159027pt;}
.ws14{word-spacing:0.159402pt;}
.ws7f{word-spacing:0.165359pt;}
.ws107{word-spacing:0.165752pt;}
.ws97{word-spacing:0.184949pt;}
.ws14f{word-spacing:0.191283pt;}
.ws115{word-spacing:0.194309pt;}
.ws96{word-spacing:0.202758pt;}
.ws95{word-spacing:0.203434pt;}
.ws2c{word-spacing:0.212535pt;}
.wsda{word-spacing:0.236519pt;}
.ws43{word-spacing:0.238926pt;}
.ws16e{word-spacing:0.239104pt;}
.ws42{word-spacing:0.250577pt;}
.ws26{word-spacing:0.265669pt;}
.ws14d{word-spacing:0.286925pt;}
.ws79{word-spacing:0.318803pt;}
.ws14c{word-spacing:0.334746pt;}
.ws52{word-spacing:0.338129pt;}
.ws54{word-spacing:0.363766pt;}
.ws51{word-spacing:0.371937pt;}
.ws163{word-spacing:0.382566pt;}
.ws69{word-spacing:0.395426pt;}
.ws6a{word-spacing:0.425071pt;}
.ws11f{word-spacing:0.478205pt;}
.ws194{word-spacing:0.478208pt;}
.ws11e{word-spacing:0.501348pt;}
.ws53{word-spacing:0.508117pt;}
.ws162{word-spacing:0.526029pt;}
.ws7e{word-spacing:0.531339pt;}
.ws81{word-spacing:0.584473pt;}
.ws13c{word-spacing:0.621670pt;}
.wsd1{word-spacing:0.637606pt;}
.ws103{word-spacing:0.659667pt;}
.ws15d{word-spacing:0.669491pt;}
.wsb{word-spacing:0.690740pt;}
.ws4e{word-spacing:0.743874pt;}
.ws178{word-spacing:0.765133pt;}
.ws74{word-spacing:0.797008pt;}
.ws11{word-spacing:0.850142pt;}
.ws114{word-spacing:0.855940pt;}
.ws172{word-spacing:0.860774pt;}
.ws113{word-spacing:0.870701pt;}
.ws12{word-spacing:0.903276pt;}
.wsfe{word-spacing:0.914840pt;}
.ws3a{word-spacing:0.956410pt;}
.ws16d{word-spacing:0.956416pt;}
.wsec{word-spacing:0.979543pt;}
.wseb{word-spacing:0.983834pt;}
.ws16c{word-spacing:1.004237pt;}
.ws24{word-spacing:1.009543pt;}
.ws8e{word-spacing:1.062677pt;}
.wsef{word-spacing:1.072795pt;}
.wsc7{word-spacing:1.115811pt;}
.ws12e{word-spacing:1.147699pt;}
.ws32{word-spacing:1.168945pt;}
.wsd9{word-spacing:1.192231pt;}
.ws8f{word-spacing:1.222079pt;}
.ws91{word-spacing:1.275213pt;}
.ws16b{word-spacing:1.291162pt;}
.ws13d{word-spacing:1.338982pt;}
.ws77{word-spacing:1.381481pt;}
.ws76{word-spacing:1.434614pt;}
.ws131{word-spacing:1.434624pt;}
.ws10f{word-spacing:1.462045pt;}
.ws10e{word-spacing:1.478058pt;}
.ws110{word-spacing:1.480963pt;}
.wsdb{word-spacing:1.487748pt;}
.ws93{word-spacing:1.540882pt;}
.ws11b{word-spacing:1.563106pt;}
.ws11c{word-spacing:1.566334pt;}
.ws80{word-spacing:1.594016pt;}
.ws180{word-spacing:1.673728pt;}
.ws20{word-spacing:1.700284pt;}
.ws12d{word-spacing:1.748421pt;}
.wscd{word-spacing:1.753418pt;}
.ws177{word-spacing:1.817190pt;}
.ws31{word-spacing:1.859685pt;}
.ws154{word-spacing:1.912832pt;}
.wsa6{word-spacing:1.938210pt;}
.wsa5{word-spacing:1.961248pt;}
.ws39{word-spacing:1.965953pt;}
.ws38{word-spacing:2.019087pt;}
.ws124{word-spacing:2.072221pt;}
.ws90{word-spacing:2.125355pt;}
.ws8d{word-spacing:2.178489pt;}
.ws134{word-spacing:2.199757pt;}
.wsfc{word-spacing:2.219721pt;}
.wsfb{word-spacing:2.222729pt;}
.ws18{word-spacing:2.231622pt;}
.wsfd{word-spacing:2.242738pt;}
.wsf1{word-spacing:2.284756pt;}
.ws2a{word-spacing:2.337890pt;}
.ws175{word-spacing:2.391040pt;}
.ws78{word-spacing:2.444158pt;}
.ws121{word-spacing:2.487989pt;}
.wsae{word-spacing:2.497292pt;}
.ws138{word-spacing:2.534502pt;}
.ws6{word-spacing:2.550426pt;}
.ws169{word-spacing:2.582323pt;}
.ws98{word-spacing:2.603559pt;}
.ws168{word-spacing:2.630144pt;}
.wsb3{word-spacing:2.656693pt;}
.wsb9{word-spacing:2.760116pt;}
.wsb8{word-spacing:2.762638pt;}
.wsba{word-spacing:2.762961pt;}
.wsbb{word-spacing:2.773543pt;}
.ws147{word-spacing:2.773606pt;}
.wsdc{word-spacing:2.805473pt;}
.ws5{word-spacing:2.816095pt;}
.ws171{word-spacing:2.861696pt;}
.ws132{word-spacing:2.864512pt;}
.ws176{word-spacing:2.866739pt;}
.ws16a{word-spacing:2.867345pt;}
.ws2{word-spacing:2.869248pt;}
.ws159{word-spacing:2.869333pt;}
.ws6f{word-spacing:2.922363pt;}
.ws157{word-spacing:2.964890pt;}
.ws18e{word-spacing:3.012710pt;}
.ws187{word-spacing:3.060531pt;}
.ws7{word-spacing:3.081764pt;}
.ws17b{word-spacing:3.156173pt;}
.ws10{word-spacing:3.188032pt;}
.ws120{word-spacing:3.195934pt;}
.ws3d{word-spacing:3.294300pt;}
.ws13f{word-spacing:3.299635pt;}
.wsd4{word-spacing:3.340963pt;}
.ws30{word-spacing:3.347434pt;}
.ws21{word-spacing:3.400567pt;}
.ws112{word-spacing:3.420115pt;}
.wsb5{word-spacing:3.453701pt;}
.ws8a{word-spacing:3.506835pt;}
.ws3c{word-spacing:3.613103pt;}
.ws3b{word-spacing:3.666237pt;}
.ws9{word-spacing:3.719371pt;}
.wsa0{word-spacing:3.772505pt;}
.ws57{word-spacing:3.817262pt;}
.ws47{word-spacing:3.825638pt;}
.ws17c{word-spacing:3.873485pt;}
.ws22{word-spacing:3.878772pt;}
.ws29{word-spacing:3.931906pt;}
.ws28{word-spacing:3.985040pt;}
.ws27{word-spacing:4.038174pt;}
.wsbe{word-spacing:4.091308pt;}
.wsbf{word-spacing:4.096988pt;}
.wsb6{word-spacing:4.144442pt;}
.ws192{word-spacing:4.160410pt;}
.ws23{word-spacing:4.250709pt;}
.wsc5{word-spacing:4.303843pt;}
.ws68{word-spacing:4.356977pt;}
.ws8b{word-spacing:4.410111pt;}
.wsea{word-spacing:4.447565pt;}
.ws50{word-spacing:4.463245pt;}
.ws122{word-spacing:4.675780pt;}
.wsb7{word-spacing:4.816899pt;}
.ws7b{word-spacing:4.835182pt;}
.ws156{word-spacing:4.925542pt;}
.ws60{word-spacing:4.941450pt;}
.wsa1{word-spacing:5.047717pt;}
.ws5f{word-spacing:5.100851pt;}
.ws9a{word-spacing:5.207119pt;}
.ws15e{word-spacing:5.212467pt;}
.ws5d{word-spacing:5.579056pt;}
.ws193{word-spacing:5.595034pt;}
.ws189{word-spacing:5.690675pt;}
.ws184{word-spacing:5.786317pt;}
.ws41{word-spacing:5.897859pt;}
.ws12b{word-spacing:6.110395pt;}
.ws3e{word-spacing:6.322930pt;}
.wsc4{word-spacing:6.421271pt;}
.wsc2{word-spacing:6.429198pt;}
.wsc3{word-spacing:6.482332pt;}
.ws17{word-spacing:6.535466pt;}
.ws16{word-spacing:6.588599pt;}
.ws9b{word-spacing:6.641733pt;}
.ws179{word-spacing:6.694912pt;}
.ws9f{word-spacing:6.748001pt;}
.wse8{word-spacing:6.801135pt;}
.ws9c{word-spacing:6.854269pt;}
.ws183{word-spacing:7.029658pt;}
.ws151{word-spacing:7.077478pt;}
.ws109{word-spacing:7.098036pt;}
.ws10a{word-spacing:7.113838pt;}
.ws108{word-spacing:7.119938pt;}
.wsce{word-spacing:7.173072pt;}
.ws2b{word-spacing:7.226206pt;}
.ws129{word-spacing:7.438741pt;}
.ws15{word-spacing:7.545009pt;}
.ws164{word-spacing:7.603507pt;}
.ws3f{word-spacing:7.810678pt;}
.ws125{word-spacing:7.988800pt;}
.ws141{word-spacing:8.122923pt;}
.ws17a{word-spacing:8.125662pt;}
.ws18d{word-spacing:8.127667pt;}
.ws152{word-spacing:8.127846pt;}
.ws170{word-spacing:8.129604pt;}
.ws190{word-spacing:8.129673pt;}
.ws181{word-spacing:8.130014pt;}
.ws15c{word-spacing:8.131166pt;}
.ws18f{word-spacing:8.131251pt;}
.ws119{word-spacing:9.404694pt;}
.ws17f{word-spacing:9.468518pt;}
.wsa7{word-spacing:9.510962pt;}
.ws75{word-spacing:9.564096pt;}
.ws66{word-spacing:9.597376pt;}
.ws67{word-spacing:9.604378pt;}
.ws65{word-spacing:9.617230pt;}
.ws7d{word-spacing:9.670364pt;}
.ws135{word-spacing:9.898906pt;}
.ws158{word-spacing:10.042368pt;}
.ws139{word-spacing:10.281472pt;}
.wsf6{word-spacing:10.361104pt;}
.ws46{word-spacing:11.051844pt;}
.ws88{word-spacing:11.516100pt;}
.ws188{word-spacing:11.572634pt;}
.ws123{word-spacing:11.726538pt;}
.ws12a{word-spacing:11.901986pt;}
.ws8c{word-spacing:11.955120pt;}
.ws40{word-spacing:12.805262pt;}
.ws13e{word-spacing:13.581107pt;}
.wse0{word-spacing:15.492542pt;}
.ws11a{word-spacing:15.945370pt;}
.ws133{word-spacing:17.072026pt;}
.wsf2{word-spacing:20.817566pt;}
.ws14a{word-spacing:20.849869pt;}
.ws173{word-spacing:21.471539pt;}
.wsf{word-spacing:26.513799pt;}
.ws167{word-spacing:27.783885pt;}
.ws102{word-spacing:51.139803pt;}
.ws127{word-spacing:132.688374pt;}
.ws128{word-spacing:143.491092pt;}
.ws104{word-spacing:189.634770pt;}
.wse9{word-spacing:294.095952pt;}
.ws126{word-spacing:311.270160pt;}
.ws89{word-spacing:395.369102pt;}
.wse6{word-spacing:610.720663pt;}
.ws116{word-spacing:647.064228pt;}
.wse2{word-spacing:681.813777pt;}
.wsdd{word-spacing:771.716279pt;}
.ws11d{word-spacing:815.604853pt;}
.ws10d{word-spacing:854.126907pt;}
.ws117{word-spacing:936.324998pt;}
.ws106{word-spacing:965.123554pt;}
._4{margin-left:-7.029658pt;}
._0{margin-left:-5.260288pt;}
._13{margin-left:-4.038174pt;}
._b{margin-left:-3.060499pt;}
._3{margin-left:-1.721549pt;}
._6{width:0.969929pt;}
._1{width:2.654697pt;}
._27{width:3.548447pt;}
._25{width:4.542474pt;}
._46{width:5.935375pt;}
._45{width:8.937269pt;}
._20{width:10.998710pt;}
._16{width:12.433325pt;}
._14{width:13.570401pt;}
._5{width:14.824448pt;}
._9{width:16.067693pt;}
._7{width:17.449173pt;}
._c{width:19.021924pt;}
._15{width:20.650945pt;}
._e{width:21.753017pt;}
._10{width:22.847563pt;}
._17{width:24.122775pt;}
._1f{width:25.100450pt;}
._8{width:26.694466pt;}
._a{width:28.054682pt;}
._19{width:29.383028pt;}
._1e{width:31.157711pt;}
._1c{width:32.252257pt;}
._1b{width:34.714544pt;}
._18{width:35.865360pt;}
._23{width:36.994732pt;}
._f{width:38.787723pt;}
._44{width:40.697078pt;}
._42{width:44.277007pt;}
._1d{width:45.748259pt;}
._2{width:48.381897pt;}
._21{width:50.052102pt;}
._d{width:53.240134pt;}
._40{width:54.993920pt;}
._1a{width:56.183762pt;}
._2e{width:57.413652pt;}
._3f{width:62.300859pt;}
._28{width:69.260800pt;}
._41{width:70.652548pt;}
._3e{width:78.904320pt;}
._43{width:86.906566pt;}
._39{width:93.264906pt;}
._2b{width:97.320110pt;}
._35{width:121.971732pt;}
._3a{width:128.814889pt;}
._30{width:132.688374pt;}
._37{width:146.288609pt;}
._32{width:154.207734pt;}
._36{width:186.314619pt;}
._2d{width:187.734897pt;}
._2c{width:192.383078pt;}
._2f{width:253.196790pt;}
._34{width:263.224812pt;}
._2a{width:265.333709pt;}
._31{width:281.989693pt;}
._38{width:285.820140pt;}
._3b{width:305.101486pt;}
._3d{width:308.157235pt;}
._3c{width:325.881722pt;}
._29{width:419.971830pt;}
._24{width:429.374777pt;}
._26{width:473.741555pt;}
._33{width:486.681846pt;}
._11{width:637.776429pt;}
._22{width:1708.621067pt;}
._12{width:1729.874400pt;}
.fsb{font-size:31.880533pt;}
.fsc{font-size:33.219200pt;}
.fsf{font-size:33.474240pt;}
.fs10{font-size:34.880160pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:41.988267pt;}
.fsa{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fse{font-size:43.038720pt;}
.fs5{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs9{font-size:55.365867pt;}
.fsd{font-size:74.387733pt;}
.fs0{font-size:91.124601pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:3.044747pt;}
.y14{bottom:12.578910pt;}
.y2{bottom:16.528366pt;}
.y30{bottom:56.693333pt;}
.y2f{bottom:96.544000pt;}
.y298{bottom:96.850667pt;}
.y264{bottom:97.688000pt;}
.y16f{bottom:101.630667pt;}
.y105{bottom:102.610667pt;}
.ya1{bottom:105.241333pt;}
.ybe{bottom:106.545333pt;}
.y1fc{bottom:107.437333pt;}
.y1e2{bottom:112.813333pt;}
.y1b9{bottom:113.054667pt;}
.y297{bottom:114.066667pt;}
.y2e{bottom:114.556000pt;}
.y263{bottom:114.902667pt;}
.y16e{bottom:119.644000pt;}
.y104{bottom:120.624000pt;}
.ya0{bottom:123.253333pt;}
.y18b{bottom:123.628000pt;}
.ybd{bottom:124.558667pt;}
.y1fb{bottom:125.449333pt;}
.y12d{bottom:126.737333pt;}
.y1e1{bottom:130.825333pt;}
.y1b8{bottom:131.068000pt;}
.y296{bottom:131.281333pt;}
.y262{bottom:132.118667pt;}
.y142{bottom:132.344000pt;}
.y2d{bottom:132.568000pt;}
.y8f{bottom:134.601333pt;}
.y233{bottom:134.937333pt;}
.y16d{bottom:137.656000pt;}
.y103{bottom:138.636000pt;}
.y9f{bottom:141.266667pt;}
.ye2{bottom:141.578667pt;}
.y18a{bottom:141.641333pt;}
.ybc{bottom:142.570667pt;}
.y1fa{bottom:143.462667pt;}
.y12c{bottom:144.749333pt;}
.y61{bottom:145.466667pt;}
.y203{bottom:147.828000pt;}
.y295{bottom:148.497333pt;}
.y1e0{bottom:148.838667pt;}
.y1b7{bottom:149.080000pt;}
.y261{bottom:149.334667pt;}
.y141{bottom:150.356000pt;}
.y2c{bottom:150.581333pt;}
.y8e{bottom:152.613333pt;}
.y232{bottom:152.950667pt;}
.y16c{bottom:155.668000pt;}
.y102{bottom:156.649333pt;}
.y9e{bottom:159.278667pt;}
.ye1{bottom:159.592000pt;}
.y189{bottom:159.653333pt;}
.ybb{bottom:160.584000pt;}
.y1f9{bottom:161.474667pt;}
.y12b{bottom:162.762667pt;}
.y60{bottom:163.478667pt;}
.y13b{bottom:165.704000pt;}
.y294{bottom:165.713333pt;}
.y202{bottom:165.840000pt;}
.y260{bottom:166.549333pt;}
.y1b6{bottom:167.092000pt;}
.y140{bottom:168.369333pt;}
.y2b{bottom:168.593333pt;}
.y8d{bottom:170.625333pt;}
.y231{bottom:170.962667pt;}
.y101{bottom:174.661333pt;}
.y1df{bottom:174.821333pt;}
.y16b{bottom:175.009333pt;}
.y9d{bottom:177.290667pt;}
.ye0{bottom:177.604000pt;}
.y188{bottom:177.666667pt;}
.yba{bottom:178.596000pt;}
.y1f8{bottom:179.488000pt;}
.y12a{bottom:180.774667pt;}
.y5f{bottom:181.492000pt;}
.y293{bottom:182.928000pt;}
.y13a{bottom:183.716000pt;}
.y25f{bottom:183.765333pt;}
.y201{bottom:183.853333pt;}
.y1b5{bottom:185.105333pt;}
.y13f{bottom:186.381333pt;}
.y2a{bottom:186.606667pt;}
.y8c{bottom:188.638667pt;}
.y230{bottom:188.976000pt;}
.y100{bottom:192.673333pt;}
.y16a{bottom:193.021333pt;}
.y9c{bottom:195.304000pt;}
.ydf{bottom:195.616000pt;}
.y187{bottom:195.678667pt;}
.yb9{bottom:196.608000pt;}
.y1f7{bottom:197.500000pt;}
.y129{bottom:198.786667pt;}
.y5e{bottom:199.504000pt;}
.y292{bottom:200.144000pt;}
.y25e{bottom:200.980000pt;}
.y139{bottom:201.729333pt;}
.y200{bottom:201.865333pt;}
.y1b4{bottom:203.117333pt;}
.y13e{bottom:204.393333pt;}
.y29{bottom:204.618667pt;}
.y8b{bottom:206.650667pt;}
.y1de{bottom:206.716000pt;}
.y22f{bottom:206.988000pt;}
.yff{bottom:210.686667pt;}
.y169{bottom:211.034667pt;}
.y9b{bottom:213.316000pt;}
.yde{bottom:213.629333pt;}
.y186{bottom:213.690667pt;}
.yb8{bottom:214.621333pt;}
.yc9{bottom:215.356000pt;}
.y1f6{bottom:215.512000pt;}
.y128{bottom:216.800000pt;}
.y291{bottom:217.358667pt;}
.y5d{bottom:217.517333pt;}
.y25d{bottom:218.196000pt;}
.y138{bottom:219.741333pt;}
.y1ff{bottom:219.878667pt;}
.y1b3{bottom:221.130667pt;}
.y1dd{bottom:222.361333pt;}
.y28{bottom:222.630667pt;}
.y8a{bottom:224.664000pt;}
.y22e{bottom:225.000000pt;}
.yfe{bottom:228.698667pt;}
.y168{bottom:229.046667pt;}
.y9a{bottom:231.329333pt;}
.ydd{bottom:231.641333pt;}
.yb7{bottom:232.633333pt;}
.yc8{bottom:233.368000pt;}
.y1f5{bottom:233.525333pt;}
.y290{bottom:234.574667pt;}
.y25c{bottom:235.412000pt;}
.y5c{bottom:235.529333pt;}
.y13d{bottom:235.689333pt;}
.y127{bottom:236.140000pt;}
.y1fe{bottom:237.890667pt;}
.y1b2{bottom:239.142667pt;}
.y89{bottom:242.676000pt;}
.y22d{bottom:243.013333pt;}
.y137{bottom:245.724000pt;}
.yfd{bottom:246.712000pt;}
.y185{bottom:246.714667pt;}
.y167{bottom:247.060000pt;}
.y27{bottom:248.613333pt;}
.y99{bottom:249.341333pt;}
.ydc{bottom:249.654667pt;}
.yb6{bottom:250.646667pt;}
.yc7{bottom:251.381333pt;}
.y1f4{bottom:251.537333pt;}
.y28f{bottom:251.790667pt;}
.y25b{bottom:252.626667pt;}
.y5b{bottom:253.541333pt;}
.y126{bottom:254.153333pt;}
.y1dc{bottom:255.384000pt;}
.y1b1{bottom:257.154667pt;}
.y88{bottom:260.688000pt;}
.y22c{bottom:261.025333pt;}
.yfc{bottom:264.724000pt;}
.y166{bottom:265.072000pt;}
.y13c{bottom:266.801333pt;}
.y98{bottom:267.353333pt;}
.ydb{bottom:267.666667pt;}
.yb5{bottom:268.658667pt;}
.y1fd{bottom:269.002667pt;}
.y28e{bottom:269.005333pt;}
.yc6{bottom:269.393333pt;}
.y1f3{bottom:269.550667pt;}
.y25a{bottom:269.842667pt;}
.y5a{bottom:271.554667pt;}
.y125{bottom:272.165333pt;}
.y1b0{bottom:275.168000pt;}
.y136{bottom:276.674667pt;}
.y87{bottom:278.701333pt;}
.y22b{bottom:279.038667pt;}
.y184{bottom:279.737333pt;}
.y1db{bottom:282.402667pt;}
.yfb{bottom:282.736000pt;}
.y165{bottom:283.084000pt;}
.y97{bottom:285.366667pt;}
.yda{bottom:285.678667pt;}
.y28d{bottom:286.221333pt;}
.yb4{bottom:286.670667pt;}
.y259{bottom:287.057333pt;}
.yc5{bottom:287.406667pt;}
.y1f2{bottom:287.562667pt;}
.y59{bottom:289.566667pt;}
.y124{bottom:290.178667pt;}
.y1af{bottom:293.180000pt;}
.y135{bottom:294.688000pt;}
.y86{bottom:296.713333pt;}
.y22a{bottom:297.050667pt;}
.y183{bottom:297.749333pt;}
.y1da{bottom:300.414667pt;}
.yfa{bottom:300.749333pt;}
.y164{bottom:301.097333pt;}
.y28c{bottom:303.437333pt;}
.yd9{bottom:303.692000pt;}
.y258{bottom:304.273333pt;}
.yb3{bottom:304.684000pt;}
.yc4{bottom:305.418667pt;}
.y1f1{bottom:305.574667pt;}
.y58{bottom:307.580000pt;}
.y123{bottom:308.190667pt;}
.y1ae{bottom:311.193333pt;}
.y134{bottom:312.700000pt;}
.y85{bottom:314.726667pt;}
.y229{bottom:315.062667pt;}
.y96{bottom:316.477333pt;}
.y26{bottom:316.532000pt;}
.y1d9{bottom:318.428000pt;}
.yf9{bottom:318.761333pt;}
.y163{bottom:319.109333pt;}
.y28b{bottom:320.652000pt;}
.y257{bottom:321.489333pt;}
.yd8{bottom:321.704000pt;}
.yb2{bottom:322.696000pt;}
.yc3{bottom:323.430667pt;}
.y1f0{bottom:323.588000pt;}
.y182{bottom:324.768000pt;}
.y57{bottom:325.592000pt;}
.y122{bottom:326.202667pt;}
.y1ad{bottom:329.205333pt;}
.y133{bottom:330.712000pt;}
.y84{bottom:332.738667pt;}
.y228{bottom:333.076000pt;}
.y25{bottom:334.545333pt;}
.y1d8{bottom:336.440000pt;}
.yf8{bottom:336.774667pt;}
.y162{bottom:337.122667pt;}
.y28a{bottom:337.868000pt;}
.y256{bottom:338.704000pt;}
.yd7{bottom:339.717333pt;}
.yb1{bottom:340.709333pt;}
.yc2{bottom:341.444000pt;}
.y1ef{bottom:341.600000pt;}
.y181{bottom:342.781333pt;}
.y56{bottom:343.604000pt;}
.y121{bottom:344.216000pt;}
.y1ac{bottom:347.217333pt;}
.y132{bottom:348.725333pt;}
.y83{bottom:350.750667pt;}
.y227{bottom:351.088000pt;}
.y1d7{bottom:354.453333pt;}
.yf7{bottom:354.786667pt;}
.y289{bottom:355.082667pt;}
.y161{bottom:355.134667pt;}
.y255{bottom:355.920000pt;}
.yd6{bottom:357.729333pt;}
.yb0{bottom:358.721333pt;}
.yc1{bottom:359.456000pt;}
.y1ee{bottom:359.613333pt;}
.y180{bottom:360.793333pt;}
.y55{bottom:361.617333pt;}
.y120{bottom:362.228000pt;}
.y1ab{bottom:365.230667pt;}
.y131{bottom:366.737333pt;}
.y24{bottom:368.497333pt;}
.y82{bottom:368.764000pt;}
.y226{bottom:369.101333pt;}
.y288{bottom:372.298667pt;}
.y1d6{bottom:372.465333pt;}
.yf6{bottom:372.798667pt;}
.y254{bottom:373.134667pt;}
.y160{bottom:373.146667pt;}
.yd5{bottom:375.741333pt;}
.yaf{bottom:376.733333pt;}
.yc0{bottom:377.469333pt;}
.y1ed{bottom:377.625333pt;}
.y17f{bottom:378.806667pt;}
.y54{bottom:379.629333pt;}
.y11f{bottom:380.241333pt;}
.y1aa{bottom:383.242667pt;}
.y130{bottom:384.750667pt;}
.y23{bottom:386.510667pt;}
.y81{bottom:386.776000pt;}
.y225{bottom:387.113333pt;}
.y287{bottom:389.514667pt;}
.y253{bottom:390.350667pt;}
.y1d5{bottom:390.477333pt;}
.yf5{bottom:390.812000pt;}
.yd4{bottom:393.754667pt;}
.yae{bottom:394.746667pt;}
.y1ec{bottom:395.637333pt;}
.y17e{bottom:396.818667pt;}
.y53{bottom:397.642667pt;}
.y11e{bottom:399.581333pt;}
.y1a9{bottom:401.256000pt;}
.y12f{bottom:402.762667pt;}
.y22{bottom:404.522667pt;}
.y80{bottom:404.789333pt;}
.y224{bottom:405.125333pt;}
.y286{bottom:406.729333pt;}
.y15f{bottom:407.100000pt;}
.y252{bottom:407.566667pt;}
.y1d4{bottom:408.490667pt;}
.ybf{bottom:408.580000pt;}
.yf4{bottom:408.824000pt;}
.yd3{bottom:411.766667pt;}
.yad{bottom:412.758667pt;}
.y1eb{bottom:413.650667pt;}
.y17d{bottom:414.830667pt;}
.y52{bottom:415.654667pt;}
.y11d{bottom:417.594667pt;}
.y1a8{bottom:419.268000pt;}
.y21{bottom:422.534667pt;}
.y7f{bottom:422.801333pt;}
.y223{bottom:423.138667pt;}
.y285{bottom:423.945333pt;}
.y251{bottom:424.781333pt;}
.y15e{bottom:425.112000pt;}
.y1d3{bottom:426.502667pt;}
.yf3{bottom:426.837333pt;}
.yd2{bottom:429.780000pt;}
.yac{bottom:430.772000pt;}
.y1ea{bottom:431.662667pt;}
.y17c{bottom:432.844000pt;}
.y51{bottom:433.666667pt;}
.y12e{bottom:433.874667pt;}
.y11c{bottom:435.606667pt;}
.y1a7{bottom:437.280000pt;}
.y20{bottom:440.548000pt;}
.y7e{bottom:440.813333pt;}
.y222{bottom:441.150667pt;}
.y284{bottom:441.160000pt;}
.y250{bottom:441.997333pt;}
.y15d{bottom:443.125333pt;}
.yf2{bottom:444.849333pt;}
.yd1{bottom:447.792000pt;}
.yab{bottom:448.784000pt;}
.y1e9{bottom:449.676000pt;}
.y17b{bottom:450.856000pt;}
.y50{bottom:451.680000pt;}
.y11b{bottom:453.618667pt;}
.y1a6{bottom:455.293333pt;}
.y283{bottom:458.376000pt;}
.y1f{bottom:458.560000pt;}
.y7d{bottom:458.826667pt;}
.y221{bottom:459.162667pt;}
.y24f{bottom:459.212000pt;}
.y1d2{bottom:459.525333pt;}
.yf1{bottom:462.861333pt;}
.yd0{bottom:465.804000pt;}
.yaa{bottom:466.796000pt;}
.y1e8{bottom:467.688000pt;}
.y17a{bottom:468.869333pt;}
.y4f{bottom:469.692000pt;}
.y15c{bottom:470.436000pt;}
.y11a{bottom:471.632000pt;}
.y1a5{bottom:473.305333pt;}
.y282{bottom:475.592000pt;}
.y24e{bottom:476.428000pt;}
.y1e{bottom:476.573333pt;}
.y7c{bottom:476.838667pt;}
.y220{bottom:477.176000pt;}
.ycf{bottom:483.817333pt;}
.ya9{bottom:484.809333pt;}
.y1e7{bottom:485.700000pt;}
.y179{bottom:486.881333pt;}
.y4e{bottom:487.704000pt;}
.y15b{bottom:488.448000pt;}
.y119{bottom:489.644000pt;}
.yf0{bottom:490.236000pt;}
.y1a4{bottom:491.318667pt;}
.y1d1{bottom:492.549333pt;}
.y281{bottom:492.806667pt;}
.y24d{bottom:493.644000pt;}
.y1d{bottom:494.585333pt;}
.y7b{bottom:494.852000pt;}
.y21f{bottom:495.188000pt;}
.yef{bottom:498.418667pt;}
.yce{bottom:501.829333pt;}
.ya8{bottom:502.821333pt;}
.y1e6{bottom:503.713333pt;}
.y178{bottom:504.893333pt;}
.y4d{bottom:505.717333pt;}
.y15a{bottom:506.461333pt;}
.y118{bottom:507.657333pt;}
.y1a3{bottom:509.330667pt;}
.y280{bottom:510.022667pt;}
.y1d0{bottom:510.561333pt;}
.y24c{bottom:510.858667pt;}
.y1c{bottom:512.597333pt;}
.y7a{bottom:512.864000pt;}
.y21e{bottom:513.201333pt;}
.ycd{bottom:519.842667pt;}
.ya7{bottom:520.834667pt;}
.y177{bottom:522.906667pt;}
.y4c{bottom:523.729333pt;}
.y159{bottom:524.473333pt;}
.y117{bottom:525.669333pt;}
.y27f{bottom:527.237333pt;}
.y1a2{bottom:527.342667pt;}
.y24b{bottom:528.074667pt;}
.y1cf{bottom:528.574667pt;}
.y1b{bottom:530.610667pt;}
.y79{bottom:530.876000pt;}
.y21d{bottom:531.213333pt;}
.yee{bottom:533.772000pt;}
.y1e5{bottom:534.824000pt;}
.ycc{bottom:537.854667pt;}
.ya6{bottom:538.846667pt;}
.y176{bottom:540.918667pt;}
.y4b{bottom:541.742667pt;}
.y158{bottom:542.486667pt;}
.y27e{bottom:544.453333pt;}
.y24a{bottom:545.289333pt;}
.y1a1{bottom:545.356000pt;}
.y1a{bottom:548.622667pt;}
.y78{bottom:548.889333pt;}
.y21c{bottom:549.225333pt;}
.yed{bottom:551.785333pt;}
.ycb{bottom:555.866667pt;}
.ya5{bottom:556.858667pt;}
.y116{bottom:556.965333pt;}
.y1ce{bottom:558.642667pt;}
.y175{bottom:558.932000pt;}
.y4a{bottom:559.754667pt;}
.y157{bottom:560.498667pt;}
.y27d{bottom:561.669333pt;}
.y249{bottom:562.505333pt;}
.y1a0{bottom:563.368000pt;}
.y19{bottom:566.636000pt;}
.y77{bottom:566.901333pt;}
.y21b{bottom:567.238667pt;}
.yec{bottom:569.797333pt;}
.y1cd{bottom:573.092000pt;}
.ya4{bottom:574.872000pt;}
.y115{bottom:574.977333pt;}
.y174{bottom:576.944000pt;}
.y49{bottom:577.766667pt;}
.y156{bottom:578.510667pt;}
.y27c{bottom:578.884000pt;}
.y248{bottom:579.721333pt;}
.y19f{bottom:581.381333pt;}
.y18{bottom:584.648000pt;}
.y76{bottom:584.914667pt;}
.y21a{bottom:585.250667pt;}
.yca{bottom:586.978667pt;}
.yeb{bottom:587.809333pt;}
.ya3{bottom:592.884000pt;}
.y114{bottom:592.990667pt;}
.y173{bottom:594.956000pt;}
.y48{bottom:595.780000pt;}
.y27b{bottom:596.100000pt;}
.y155{bottom:596.524000pt;}
.y247{bottom:596.936000pt;}
.y19e{bottom:599.393333pt;}
.y17{bottom:602.660000pt;}
.y75{bottom:602.926667pt;}
.y219{bottom:603.264000pt;}
.yea{bottom:605.822667pt;}
.y1cc{bottom:606.114667pt;}
.y113{bottom:611.002667pt;}
.y172{bottom:612.969333pt;}
.y27a{bottom:613.314667pt;}
.y47{bottom:613.792000pt;}
.y246{bottom:614.152000pt;}
.y154{bottom:615.865333pt;}
.y19d{bottom:617.405333pt;}
.ya2{bottom:618.866667pt;}
.y16{bottom:620.673333pt;}
.y74{bottom:620.938667pt;}
.y218{bottom:621.276000pt;}
.ye9{bottom:623.834667pt;}
.y1cb{bottom:624.128000pt;}
.y112{bottom:629.016000pt;}
.y279{bottom:630.530667pt;}
.y171{bottom:630.981333pt;}
.y245{bottom:631.366667pt;}
.y46{bottom:631.805333pt;}
.y153{bottom:633.877333pt;}
.y19c{bottom:635.418667pt;}
.y73{bottom:638.952000pt;}
.y217{bottom:639.288000pt;}
.ye8{bottom:641.846667pt;}
.y1ca{bottom:642.140000pt;}
.y111{bottom:647.028000pt;}
.y278{bottom:647.746667pt;}
.y244{bottom:648.582667pt;}
.y170{bottom:648.994667pt;}
.y45{bottom:649.817333pt;}
.y152{bottom:651.889333pt;}
.y13{bottom:652.146634pt;}
.y12{bottom:652.496000pt;}
.y19b{bottom:653.430667pt;}
.y72{bottom:656.964000pt;}
.y216{bottom:657.301333pt;}
.ye7{bottom:659.860000pt;}
.y1c9{bottom:660.152000pt;}
.y277{bottom:664.961333pt;}
.y110{bottom:665.040000pt;}
.y243{bottom:665.798667pt;}
.y44{bottom:667.829333pt;}
.y151{bottom:669.902667pt;}
.y19a{bottom:671.444000pt;}
.y71{bottom:674.977333pt;}
.y215{bottom:675.313333pt;}
.ye6{bottom:677.872000pt;}
.y276{bottom:682.177333pt;}
.y242{bottom:683.013333pt;}
.y43{bottom:685.842667pt;}
.y11{bottom:687.493333pt;}
.y150{bottom:687.914667pt;}
.y199{bottom:689.456000pt;}
.y10f{bottom:691.022667pt;}
.y70{bottom:692.989333pt;}
.y1c8{bottom:693.252000pt;}
.y214{bottom:693.326667pt;}
.ye5{bottom:695.885333pt;}
.y1c4{bottom:698.117333pt;}
.y275{bottom:699.392000pt;}
.y241{bottom:700.229333pt;}
.y1c3{bottom:702.101333pt;}
.y42{bottom:703.854667pt;}
.y14f{bottom:705.928000pt;}
.y1c2{bottom:706.086667pt;}
.y198{bottom:707.468000pt;}
.y10{bottom:707.973333pt;}
.y1c1{bottom:710.072000pt;}
.y6f{bottom:711.001333pt;}
.y213{bottom:711.338667pt;}
.ye4{bottom:713.897333pt;}
.y1c0{bottom:714.057333pt;}
.y1c7{bottom:714.866667pt;}
.y274{bottom:716.608000pt;}
.y240{bottom:717.444000pt;}
.y1bf{bottom:718.042667pt;}
.yf{bottom:719.773333pt;}
.y41{bottom:721.868000pt;}
.y10e{bottom:721.973333pt;}
.y14e{bottom:723.940000pt;}
.y197{bottom:725.481333pt;}
.y1ba{bottom:726.676000pt;}
.y6e{bottom:729.014667pt;}
.y212{bottom:729.350667pt;}
.ye3{bottom:731.909333pt;}
.y273{bottom:733.824000pt;}
.y23f{bottom:734.660000pt;}
.y1c6{bottom:736.481333pt;}
.y40{bottom:739.880000pt;}
.y10d{bottom:739.986667pt;}
.ye{bottom:740.252000pt;}
.y14d{bottom:741.952000pt;}
.y196{bottom:743.493333pt;}
.y1be{bottom:745.937333pt;}
.y6d{bottom:747.026667pt;}
.y211{bottom:747.364000pt;}
.y95{bottom:749.922667pt;}
.y272{bottom:751.038667pt;}
.y23e{bottom:751.876000pt;}
.yd{bottom:752.052000pt;}
.y1bd{bottom:753.908000pt;}
.y3f{bottom:757.892000pt;}
.y1bc{bottom:757.893333pt;}
.y10c{bottom:757.998667pt;}
.y1c5{bottom:758.097333pt;}
.y14c{bottom:759.965333pt;}
.y195{bottom:761.506667pt;}
.y1bb{bottom:761.877333pt;}
.y6c{bottom:765.038667pt;}
.y94{bottom:767.934667pt;}
.y271{bottom:768.254667pt;}
.y23d{bottom:769.090667pt;}
.yc{bottom:772.530667pt;}
.y210{bottom:773.346667pt;}
.y3e{bottom:775.905333pt;}
.y10b{bottom:776.012000pt;}
.y14b{bottom:777.977333pt;}
.y194{bottom:779.518667pt;}
.y6b{bottom:783.052000pt;}
.yb{bottom:784.330667pt;}
.y270{bottom:785.469333pt;}
.y93{bottom:785.948000pt;}
.y23c{bottom:786.306667pt;}
.y3d{bottom:793.917333pt;}
.y10a{bottom:794.024000pt;}
.y14a{bottom:795.989333pt;}
.y193{bottom:797.530667pt;}
.ya{bottom:800.470667pt;}
.y6a{bottom:801.064000pt;}
.y26f{bottom:802.685333pt;}
.y92{bottom:803.960000pt;}
.y29c{bottom:808.986667pt;}
.y20f{bottom:811.256267pt;}
.y23b{bottom:811.492000pt;}
.y3c{bottom:811.930667pt;}
.y109{bottom:812.036000pt;}
.y149{bottom:814.002667pt;}
.y192{bottom:815.544000pt;}
.y26e{bottom:819.901333pt;}
.y9{bottom:820.949333pt;}
.y91{bottom:821.972000pt;}
.y20d{bottom:824.407067pt;}
.y29b{bottom:826.202667pt;}
.y69{bottom:827.046667pt;}
.y3b{bottom:829.942667pt;}
.y108{bottom:830.049333pt;}
.y148{bottom:832.014667pt;}
.y26d{bottom:837.116000pt;}
.y20e{bottom:837.557867pt;}
.y90{bottom:839.985333pt;}
.y8{bottom:840.698667pt;}
.y29a{bottom:843.417333pt;}
.y299{bottom:843.777333pt;}
.y191{bottom:845.922667pt;}
.y23a{bottom:846.560000pt;}
.y3a{bottom:847.954667pt;}
.y147{bottom:850.028000pt;}
.y190{bottom:854.105333pt;}
.y26c{bottom:854.332000pt;}
.y107{bottom:856.032000pt;}
.y20c{bottom:856.709867pt;}
.y68{bottom:857.997333pt;}
.y7{bottom:858.710667pt;}
.y1e4{bottom:860.173333pt;}
.y39{bottom:865.968000pt;}
.y146{bottom:868.040000pt;}
.y106{bottom:871.042667pt;}
.y26b{bottom:871.546667pt;}
.y1e3{bottom:871.982667pt;}
.y20b{bottom:875.860667pt;}
.y67{bottom:876.010667pt;}
.y38{bottom:883.980000pt;}
.y145{bottom:886.052000pt;}
.y26a{bottom:888.762667pt;}
.y20a{bottom:889.011467pt;}
.y239{bottom:889.520000pt;}
.y18f{bottom:889.984000pt;}
.y66{bottom:894.022667pt;}
.y6{bottom:898.178667pt;}
.y37{bottom:901.993333pt;}
.y209{bottom:902.162267pt;}
.y238{bottom:903.029333pt;}
.y144{bottom:904.065333pt;}
.y269{bottom:905.978667pt;}
.y18e{bottom:907.997333pt;}
.y65{bottom:912.034667pt;}
.y208{bottom:915.313067pt;}
.y237{bottom:916.538667pt;}
.y36{bottom:920.005333pt;}
.y143{bottom:922.077333pt;}
.y268{bottom:923.193333pt;}
.y5{bottom:925.198667pt;}
.y18d{bottom:926.009333pt;}
.y207{bottom:928.463867pt;}
.y64{bottom:930.048000pt;}
.y35{bottom:938.017333pt;}
.y267{bottom:940.409333pt;}
.y236{bottom:943.557333pt;}
.y206{bottom:947.615867pt;}
.y63{bottom:948.060000pt;}
.y4{bottom:952.217333pt;}
.y34{bottom:956.030667pt;}
.y266{bottom:957.624000pt;}
.y18c{bottom:959.032000pt;}
.y235{bottom:965.037333pt;}
.y62{bottom:966.073333pt;}
.y205{bottom:966.766667pt;}
.y33{bottom:974.042667pt;}
.y265{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y234{bottom:978.546667pt;}
.y32{bottom:992.056000pt;}
.y204{bottom:993.372000pt;}
.y1{bottom:1011.514667pt;}
.y31{bottom:1038.548000pt;}
.h1a{height:2.125355pt;}
.h9{height:22.673858pt;}
.h11{height:25.610524pt;}
.hb{height:29.433775pt;}
.ha{height:30.399505pt;}
.h20{height:30.987878pt;}
.h7{height:33.771789pt;}
.h14{height:33.793139pt;}
.h22{height:34.430976pt;}
.h23{height:35.100467pt;}
.h1c{height:36.666735pt;}
.hc{height:38.256384pt;}
.he{height:38.596538pt;}
.h4{height:39.000258pt;}
.h21{height:39.079158pt;}
.hf{height:41.524400pt;}
.h8{height:43.421286pt;}
.h2{height:45.272024pt;}
.h1b{height:46.748602pt;}
.hd{height:48.245551pt;}
.h6{height:48.360277pt;}
.h1d{height:48.670165pt;}
.h16{height:48.702857pt;}
.h15{height:48.708190pt;}
.h10{height:48.925623pt;}
.h12{height:61.128021pt;}
.h3{height:61.782479pt;}
.h5{height:68.861952pt;}
.h17{height:77.074688pt;}
.h1e{height:93.010688pt;}
.h13{height:93.858688pt;}
.h1f{height:95.482884pt;}
.h18{height:109.805355pt;}
.h19{height:190.754688pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:188.033730pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:26.021437pt;}
.x2{left:50.765941pt;}
.x19{left:100.054667pt;}
.x3{left:101.114667pt;}
.x1{left:102.046667pt;}
.x6{left:108.542667pt;}
.x4{left:109.606667pt;}
.x9e{left:116.177333pt;}
.x59{left:117.360000pt;}
.xbf{left:124.044000pt;}
.xd2{left:126.254667pt;}
.x103{left:127.332000pt;}
.x5{left:129.929333pt;}
.xb8{left:139.114667pt;}
.x100{left:140.653333pt;}
.xc0{left:141.684000pt;}
.xf9{left:144.424000pt;}
.xb9{left:145.756000pt;}
.xd3{left:147.953333pt;}
.xba{left:149.060000pt;}
.x17{left:152.344000pt;}
.x30{left:153.865333pt;}
.x107{left:155.233333pt;}
.x28{left:156.186667pt;}
.xb0{left:158.222667pt;}
.xbb{left:159.173333pt;}
.x74{left:161.854667pt;}
.x18{left:165.628000pt;}
.x31{left:167.149333pt;}
.x9{left:168.989333pt;}
.xd4{left:170.798667pt;}
.x95{left:173.646667pt;}
.x75{left:175.137333pt;}
.x51{left:178.960000pt;}
.xb5{left:180.600000pt;}
.x9a{left:182.861333pt;}
.x104{left:184.925333pt;}
.x96{left:186.929333pt;}
.x9d{left:188.288000pt;}
.x38{left:191.641333pt;}
.xa{left:192.702667pt;}
.x66{left:194.480000pt;}
.xc1{left:195.409333pt;}
.x88{left:196.302667pt;}
.x39{left:198.282667pt;}
.x102{left:201.592000pt;}
.x67{left:207.762667pt;}
.x89{left:209.586667pt;}
.x32{left:212.361333pt;}
.xc2{left:217.108000pt;}
.xab{left:220.001333pt;}
.xb7{left:221.644000pt;}
.xc3{left:222.985333pt;}
.x33{left:225.645333pt;}
.x5a{left:227.346667pt;}
.x106{left:228.326667pt;}
.x10c{left:229.358667pt;}
.xd6{left:233.802667pt;}
.x82{left:236.136000pt;}
.x5f{left:238.110667pt;}
.xad{left:240.506667pt;}
.xf6{left:242.556000pt;}
.x5d{left:246.177333pt;}
.x70{left:247.734667pt;}
.x26{left:248.982667pt;}
.x105{left:250.177733pt;}
.x4f{left:252.253333pt;}
.xd7{left:257.025333pt;}
.x68{left:258.506667pt;}
.x5e{left:259.461333pt;}
.x22{left:261.193333pt;}
.x27{left:262.266667pt;}
.xa2{left:263.532000pt;}
.x50{left:265.536000pt;}
.xd8{left:267.985333pt;}
.x69{left:271.789333pt;}
.x23{left:274.476000pt;}
.xf2{left:277.481333pt;}
.xf0{left:281.078667pt;}
.xfe{left:282.985333pt;}
.x29{left:284.897333pt;}
.xf3{left:286.142667pt;}
.x97{left:287.506667pt;}
.x3a{left:290.569333pt;}
.xcb{left:291.609333pt;}
.x44{left:293.198667pt;}
.xf1{left:294.160000pt;}
.xe3{left:296.674667pt;}
.x2a{left:298.181333pt;}
.xb{left:299.165333pt;}
.x98{left:300.789333pt;}
.x56{left:302.985333pt;}
.x34{left:304.342667pt;}
.xc{left:305.806667pt;}
.xa3{left:307.758667pt;}
.xfa{left:309.877333pt;}
.xa4{left:313.598667pt;}
.x3d{left:318.848000pt;}
.xe4{left:324.340000pt;}
.x35{left:326.472000pt;}
.xea{left:328.681333pt;}
.xf{left:331.165333pt;}
.x3e{left:332.132000pt;}
.xff{left:333.297333pt;}
.x83{left:335.413333pt;}
.x8a{left:336.553333pt;}
.x10{left:337.806667pt;}
.xa0{left:340.024000pt;}
.x4a{left:341.344000pt;}
.x79{left:344.808000pt;}
.x84{left:348.696000pt;}
.x8b{left:349.836000pt;}
.xf4{left:351.660000pt;}
.x4b{left:354.628000pt;}
.x52{left:356.614667pt;}
.xf5{left:359.945333pt;}
.xd9{left:362.052000pt;}
.x24{left:364.140000pt;}
.x60{left:365.104000pt;}
.xda{left:366.004000pt;}
.xae{left:368.862667pt;}
.x53{left:369.898667pt;}
.x61{left:371.745333pt;}
.x85{left:374.530667pt;}
.x25{left:377.422667pt;}
.xdb{left:379.085333pt;}
.xaf{left:382.146667pt;}
.x6e{left:386.181333pt;}
.x86{left:387.813333pt;}
.xb6{left:389.709333pt;}
.xce{left:391.869333pt;}
.xf7{left:393.117333pt;}
.xe0{left:395.629333pt;}
.x6f{left:399.465333pt;}
.x71{left:400.549333pt;}
.x36{left:403.400000pt;}
.xe1{left:405.018667pt;}
.xf8{left:407.105333pt;}
.x9b{left:408.874667pt;}
.x41{left:412.392000pt;}
.x3b{left:414.081333pt;}
.x1a{left:415.890667pt;}
.x1c{left:416.788000pt;}
.x2b{left:417.752000pt;}
.xd5{left:419.956000pt;}
.x7a{left:421.793333pt;}
.x76{left:423.034667pt;}
.x2c{left:424.394667pt;}
.x42{left:425.676000pt;}
.x3c{left:427.364000pt;}
.x1b{left:429.174667pt;}
.x1d{left:430.072000pt;}
.x91{left:432.505333pt;}
.x7b{left:435.077333pt;}
.x77{left:436.318667pt;}
.xcc{left:439.626667pt;}
.xa7{left:441.158667pt;}
.x43{left:442.237333pt;}
.x93{left:443.582667pt;}
.x92{left:445.789333pt;}
.xa8{left:447.088000pt;}
.x5b{left:451.110667pt;}
.x20{left:455.136000pt;}
.x94{left:456.866667pt;}
.x54{left:459.568000pt;}
.xc4{left:461.005333pt;}
.xb3{left:462.376000pt;}
.x5c{left:464.394667pt;}
.xc5{left:466.338667pt;}
.x21{left:468.420000pt;}
.x55{left:472.852000pt;}
.xb4{left:475.660000pt;}
.xcf{left:476.945333pt;}
.xeb{left:478.140000pt;}
.xfb{left:482.957333pt;}
.xed{left:484.322667pt;}
.xac{left:485.793333pt;}
.xec{left:487.905333pt;}
.x99{left:489.537333pt;}
.x64{left:494.488000pt;}
.x3f{left:495.421333pt;}
.x6a{left:496.944000pt;}
.xbc{left:498.293333pt;}
.x47{left:501.822667pt;}
.x6b{left:503.585333pt;}
.x7e{left:505.261333pt;}
.x65{left:507.772000pt;}
.x40{left:508.705333pt;}
.xee{left:512.236000pt;}
.x13{left:513.130667pt;}
.xbd{left:515.592000pt;}
.x62{left:516.872000pt;}
.x7f{left:518.545333pt;}
.x14{left:519.772000pt;}
.x2e{left:521.121333pt;}
.xef{left:523.102667pt;}
.xe2{left:524.844000pt;}
.x63{left:530.156000pt;}
.xc6{left:533.234667pt;}
.x2f{left:534.405333pt;}
.x10b{left:536.984000pt;}
.x80{left:539.634667pt;}
.xfc{left:543.310667pt;}
.x9f{left:544.256000pt;}
.xdc{left:545.958667pt;}
.xe8{left:549.652000pt;}
.xdd{left:552.022667pt;}
.x81{left:552.917333pt;}
.x7c{left:554.450667pt;}
.x48{left:556.542667pt;}
.x8c{left:557.432000pt;}
.xc7{left:560.829333pt;}
.xe9{left:564.050667pt;}
.x58{left:565.044000pt;}
.x1e{left:566.282667pt;}
.x7d{left:567.733333pt;}
.x49{left:569.826667pt;}
.x4c{left:570.794667pt;}
.x45{left:571.713333pt;}
.x1f{left:572.924000pt;}
.x8d{left:573.984000pt;}
.xc8{left:575.906667pt;}
.x4d{left:577.437333pt;}
.x37{left:578.733333pt;}
.xa9{left:582.112000pt;}
.x46{left:584.997333pt;}
.x8e{left:587.266667pt;}
.xa1{left:588.186667pt;}
.xb1{left:589.248000pt;}
.xd1{left:590.600000pt;}
.xcd{left:594.216000pt;}
.xd0{left:597.689333pt;}
.xd{left:601.993333pt;}
.xa5{left:604.110667pt;}
.x108{left:605.029333pt;}
.xe{left:608.634667pt;}
.xbe{left:610.237333pt;}
.x10a{left:611.209333pt;}
.xc9{left:612.442667pt;}
.xb2{left:615.033333pt;}
.xfd{left:616.418667pt;}
.x57{left:622.504000pt;}
.x7{left:623.413317pt;}
.x8f{left:626.208000pt;}
.x6c{left:627.913333pt;}
.x109{left:628.938667pt;}
.x15{left:630.934667pt;}
.x6d{left:634.554667pt;}
.xa6{left:635.926667pt;}
.x16{left:637.576000pt;}
.x90{left:639.492000pt;}
.xca{left:641.428000pt;}
.x9c{left:647.494667pt;}
.xde{left:651.429333pt;}
.xe5{left:653.501333pt;}
.x72{left:655.550667pt;}
.xaa{left:661.470667pt;}
.x101{left:667.013333pt;}
.x73{left:668.834667pt;}
.x2d{left:672.796000pt;}
.x4e{left:673.858667pt;}
.xe6{left:675.200000pt;}
.x11{left:679.662667pt;}
.xe7{left:681.033333pt;}
.x87{left:685.414667pt;}
.x12{left:686.304000pt;}
.x78{left:687.208000pt;}
.xdf{left:690.724000pt;}
}




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